Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
63 changes: 62 additions & 1 deletion dist/nodes/OpenWa/OpenWa.node.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/nodes/OpenWa/OpenWa.node.js.map

Large diffs are not rendered by default.

18 changes: 6 additions & 12 deletions dist/nodes/OpenWa/handlers/automationRule.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/nodes/OpenWa/handlers/automationRule.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 5 additions & 2 deletions dist/nodes/OpenWa/handlers/label.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/nodes/OpenWa/handlers/label.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 12 additions & 0 deletions dist/nodes/OpenWa/handlers/params.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,18 @@ export declare function toQueryParams(options: IDataObject | undefined): IDataOb
* keeps working.
*/
export declare function toEpochMs(ctx: IExecuteFunctions, raw: unknown, label: string, itemIndex: number): number;
/**
* Reads an optional text field from an update collection, for the fields the server
* marks non-empty.
*
* Three states have to stay distinct. Absent means "leave the stored value alone",
* so it returns undefined and the caller omits the key. A real value is trimmed and
* returned. A value that is present but blank is neither: the server refuses it, so
* there is no reading under which it means anything. Dropping it silently would
* report success while leaving the field untouched, so it is refused here with a
* message that names the field and says how to leave it unchanged.
*/
export declare function optionalNonBlank(ctx: IExecuteFunctions, value: string | undefined, label: string, itemIndex: number, maxLength?: number): string | undefined;
/**
* Normalises a list parameter into a trimmed, blank-free array of strings.
*
Expand Down
Loading