How to solve two warnings

i’am almost done with development of an app to connect our heatpump to homey. all functionality seems to be ok.
But by installing i got two different warning wherefor i can not find how to solve . can somebody help me with explaination how to fix this? it goes about:

first lines in CMD shows :
(node:14400) [DEP0040] DeprecationWarning: The punycode module is deprecated. Please use a userland alternative instead.
(Use node --trace-deprecation ... to show where the warning was created)

for all flows i created i got: titleFormatted is missing. Specifying a Flow card’s formatted title will be required in the future.

Thanks for help,

Warning 1 can be ignored, it’s a dependency (of a dependency) of the homey CLI tool that has been deprecated.

How to solve the second warning is explained here: Flow | Homey Apps SDK

Hi Robert,
I found that too, but for me it’s hard to get how to imlentent That’s exactly. I’am struggling to adjust the existing args without faults

You need both, title and titleFormatted.
titleFormatted is used for AdvancedFlow where you will get this text including all needed params.

If your flow action has no parameters, just use simple text like done in title.
If your flow action has a parameter, insert in your text with […] like shown in the example.
The {{…}} text is used to output one of the invludes texts, one for standard text and one for inverted text - used for condition cards where you can invert the condition.