@workglow/tasks 0.2.13 → 0.2.15
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/browser.js +189 -166
- package/dist/browser.js.map +22 -23
- package/dist/bun.js +205 -174
- package/dist/bun.js.map +24 -25
- package/dist/common.d.ts +0 -1
- package/dist/common.d.ts.map +1 -1
- package/dist/electron.js +205 -174
- package/dist/electron.js.map +24 -25
- package/dist/node.js +205 -174
- package/dist/node.js.map +24 -25
- package/dist/task/image/ImageBorderTask.d.ts +76 -58
- package/dist/task/image/ImageBorderTask.d.ts.map +1 -1
- package/dist/task/image/ImageSchemas.d.ts +66 -1
- package/dist/task/image/ImageSchemas.d.ts.map +1 -1
- package/dist/task/image/ImageTextTask.d.ts +91 -254
- package/dist/task/image/ImageTextTask.d.ts.map +1 -1
- package/dist/task/image/ImageTintTask.d.ts +76 -58
- package/dist/task/image/ImageTintTask.d.ts.map +1 -1
- package/dist/task/image/imageRasterCodecBrowser.d.ts +1 -1
- package/dist/task/image/imageRasterCodecBrowser.d.ts.map +1 -1
- package/dist/task/image/imageRasterCodecNode.d.ts +1 -1
- package/dist/task/image/imageRasterCodecNode.d.ts.map +1 -1
- package/dist/task/image/imageRasterCodecRegistry.d.ts +7 -7
- package/dist/task/image/imageRasterCodecRegistry.d.ts.map +1 -1
- package/dist/task/image/imageTaskIo.d.ts +11 -3
- package/dist/task/image/imageTaskIo.d.ts.map +1 -1
- package/dist/task/string/StringConcatTask.d.ts +6 -6
- package/dist/task/string/StringConcatTask.d.ts.map +1 -1
- package/dist/task/string/StringIncludesTask.d.ts +12 -12
- package/dist/task/string/StringIncludesTask.d.ts.map +1 -1
- package/dist/task/string/StringJoinTask.d.ts +12 -12
- package/dist/task/string/StringJoinTask.d.ts.map +1 -1
- package/dist/task/string/StringLengthTask.d.ts +12 -12
- package/dist/task/string/StringLengthTask.d.ts.map +1 -1
- package/dist/task/string/StringLowerCaseTask.d.ts +12 -12
- package/dist/task/string/StringLowerCaseTask.d.ts.map +1 -1
- package/dist/task/string/StringReplaceTask.d.ts +12 -12
- package/dist/task/string/StringReplaceTask.d.ts.map +1 -1
- package/dist/task/string/StringSliceTask.d.ts +12 -12
- package/dist/task/string/StringSliceTask.d.ts.map +1 -1
- package/dist/task/string/StringTemplateTask.d.ts +6 -6
- package/dist/task/string/StringTemplateTask.d.ts.map +1 -1
- package/dist/task/string/StringTrimTask.d.ts +12 -12
- package/dist/task/string/StringTrimTask.d.ts.map +1 -1
- package/dist/task/string/StringUpperCaseTask.d.ts +12 -12
- package/dist/task/string/StringUpperCaseTask.d.ts.map +1 -1
- package/dist/util/SafeFetch.server.d.ts.map +1 -1
- package/package.json +9 -9
- package/dist/task/image/imageTaskTransport.d.ts +0 -21
- package/dist/task/image/imageTaskTransport.d.ts.map +0 -1
|
@@ -54,36 +54,45 @@ declare const inputSchema: {
|
|
|
54
54
|
}];
|
|
55
55
|
};
|
|
56
56
|
readonly color: {
|
|
57
|
-
readonly
|
|
58
|
-
|
|
59
|
-
readonly
|
|
60
|
-
readonly
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
readonly
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
readonly
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
readonly
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
57
|
+
readonly oneOf: readonly [{
|
|
58
|
+
readonly type: "object";
|
|
59
|
+
readonly properties: {
|
|
60
|
+
readonly r: {
|
|
61
|
+
readonly type: "integer";
|
|
62
|
+
readonly minimum: 0;
|
|
63
|
+
readonly maximum: 255;
|
|
64
|
+
readonly title: "Red";
|
|
65
|
+
};
|
|
66
|
+
readonly g: {
|
|
67
|
+
readonly type: "integer";
|
|
68
|
+
readonly minimum: 0;
|
|
69
|
+
readonly maximum: 255;
|
|
70
|
+
readonly title: "Green";
|
|
71
|
+
};
|
|
72
|
+
readonly b: {
|
|
73
|
+
readonly type: "integer";
|
|
74
|
+
readonly minimum: 0;
|
|
75
|
+
readonly maximum: 255;
|
|
76
|
+
readonly title: "Blue";
|
|
77
|
+
};
|
|
78
|
+
readonly a: {
|
|
79
|
+
readonly type: "integer";
|
|
80
|
+
readonly minimum: 0;
|
|
81
|
+
readonly maximum: 255;
|
|
82
|
+
readonly title: "Alpha";
|
|
83
|
+
readonly default: 255;
|
|
84
|
+
};
|
|
83
85
|
};
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
86
|
+
readonly required: readonly ["r", "g", "b"];
|
|
87
|
+
readonly format: "color";
|
|
88
|
+
readonly additionalProperties: false;
|
|
89
|
+
}, {
|
|
90
|
+
readonly type: "string";
|
|
91
|
+
readonly format: "color";
|
|
92
|
+
readonly pattern: "^#([0-9a-fA-F]{3,4}|[0-9a-fA-F]{6}|[0-9a-fA-F]{8})$";
|
|
93
|
+
readonly title: "Color (hex)";
|
|
94
|
+
readonly description: "Color as a `#RRGGBB[AA]` or `#RGB[A]` hex string";
|
|
95
|
+
}];
|
|
87
96
|
};
|
|
88
97
|
readonly amount: {
|
|
89
98
|
readonly type: "number";
|
|
@@ -205,36 +214,45 @@ export declare class ImageTintTask<Input extends ImageTintTaskInput = ImageTintT
|
|
|
205
214
|
}];
|
|
206
215
|
};
|
|
207
216
|
readonly color: {
|
|
208
|
-
readonly
|
|
209
|
-
|
|
210
|
-
readonly
|
|
211
|
-
readonly
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
readonly
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
readonly
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
readonly
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
217
|
+
readonly oneOf: readonly [{
|
|
218
|
+
readonly type: "object";
|
|
219
|
+
readonly properties: {
|
|
220
|
+
readonly r: {
|
|
221
|
+
readonly type: "integer";
|
|
222
|
+
readonly minimum: 0;
|
|
223
|
+
readonly maximum: 255;
|
|
224
|
+
readonly title: "Red";
|
|
225
|
+
};
|
|
226
|
+
readonly g: {
|
|
227
|
+
readonly type: "integer";
|
|
228
|
+
readonly minimum: 0;
|
|
229
|
+
readonly maximum: 255;
|
|
230
|
+
readonly title: "Green";
|
|
231
|
+
};
|
|
232
|
+
readonly b: {
|
|
233
|
+
readonly type: "integer";
|
|
234
|
+
readonly minimum: 0;
|
|
235
|
+
readonly maximum: 255;
|
|
236
|
+
readonly title: "Blue";
|
|
237
|
+
};
|
|
238
|
+
readonly a: {
|
|
239
|
+
readonly type: "integer";
|
|
240
|
+
readonly minimum: 0;
|
|
241
|
+
readonly maximum: 255;
|
|
242
|
+
readonly title: "Alpha";
|
|
243
|
+
readonly default: 255;
|
|
244
|
+
};
|
|
234
245
|
};
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
246
|
+
readonly required: readonly ["r", "g", "b"];
|
|
247
|
+
readonly format: "color";
|
|
248
|
+
readonly additionalProperties: false;
|
|
249
|
+
}, {
|
|
250
|
+
readonly type: "string";
|
|
251
|
+
readonly format: "color";
|
|
252
|
+
readonly pattern: "^#([0-9a-fA-F]{3,4}|[0-9a-fA-F]{6}|[0-9a-fA-F]{8})$";
|
|
253
|
+
readonly title: "Color (hex)";
|
|
254
|
+
readonly description: "Color as a `#RRGGBB[AA]` or `#RGB[A]` hex string";
|
|
255
|
+
}];
|
|
238
256
|
};
|
|
239
257
|
readonly amount: {
|
|
240
258
|
readonly type: "number";
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ImageTintTask.d.ts","sourceRoot":"","sources":["../../../src/task/image/ImageTintTask.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAEH,OAAO,EACL,cAAc,EACd,uBAAuB,EACvB,IAAI,EACJ,UAAU,EAEX,MAAM,sBAAsB,CAAC;AAE9B,OAAO,
|
|
1
|
+
{"version":3,"file":"ImageTintTask.d.ts","sourceRoot":"","sources":["../../../src/task/image/ImageTintTask.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAEH,OAAO,EACL,cAAc,EACd,uBAAuB,EACvB,IAAI,EACJ,UAAU,EAEX,MAAM,sBAAsB,CAAC;AAE9B,OAAO,EAAgD,eAAe,EAAE,MAAM,gBAAgB,CAAC;AAI/F,QAAA,MAAM,WAAW;mBACT,QAAQ;;iBAEZ,KAAK;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBACL,KAAK;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBACL,MAAM;qBACJ,IAAI,EAAE,QAAQ;qBACd,KAAK,EAAE,QAAQ;qBACf,WAAW,EAAE,sDAAsD;qBACnE,OAAO,EAAE,CAAC;qBACV,OAAO,EAAE,CAAC;qBACV,OAAO,EAAE,GAAG;;;;;CAKiB,CAAC;AAEpC,QAAA,MAAM,YAAY;mBACV,QAAQ;;iBAEZ,KAAK;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAI0B,CAAC;AAEpC,MAAM,MAAM,kBAAkB,GAAG,eAAe,CAAC,OAAO,WAAW,CAAC,CAAC;AACrE,MAAM,MAAM,mBAAmB,GAAG,eAAe,CAAC,OAAO,YAAY,CAAC,CAAC;AAEvE,qBAAa,aAAa,CACxB,KAAK,SAAS,kBAAkB,GAAG,kBAAkB,EACrD,MAAM,SAAS,mBAAmB,GAAG,mBAAmB,EACxD,MAAM,SAAS,UAAU,GAAG,UAAU,CACtC,SAAQ,IAAI,CAAC,KAAK,EAAE,MAAM,EAAE,MAAM,CAAC;IACnC,gBAAyB,IAAI,mBAAmB;IAChD,gBAAyB,QAAQ,WAAW;IAC5C,OAAuB,KAAK,SAAgB;IAC5C,OAAuB,WAAW,SAAsC;IAExE,OAAgB,WAAW;uBAvCrB,QAAQ;;qBAEZ,KAAK;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;qBACL,KAAK;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;qBACL,MAAM;yBACJ,IAAI,EAAE,QAAQ;yBACd,KAAK,EAAE,QAAQ;yBACf,WAAW,EAAE,sDAAsD;yBACnE,OAAO,EAAE,CAAC;yBACV,OAAO,EAAE,CAAC;yBACV,OAAO,EAAE,GAAG;;;;;MA+Bf;IAED,OAAgB,YAAY;uBAzBtB,QAAQ;;qBAEZ,KAAK;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MAyBN;IAEc,eAAe,CAC5B,KAAK,EAAE,KAAK,EACZ,OAAO,EAAE,MAAM,EACf,QAAQ,EAAE,uBAAuB,GAChC,OAAO,CAAC,MAAM,CAAC,CAsCjB;CACF;AAED,OAAO,QAAQ,sBAAsB,CAAC,CAAC;IACrC,UAAU,QAAQ;QAChB,SAAS,EAAE,cAAc,CAAC,kBAAkB,EAAE,mBAAmB,EAAE,UAAU,CAAC,CAAC;KAChF;CACF"}
|
|
@@ -3,6 +3,6 @@
|
|
|
3
3
|
* Copyright 2026 Steven Roussey <sroussey@gmail.com>
|
|
4
4
|
* SPDX-License-Identifier: Apache-2.0
|
|
5
5
|
*/
|
|
6
|
-
import type { ImageRasterCodec } from "
|
|
6
|
+
import type { ImageRasterCodec } from "@workglow/util/media";
|
|
7
7
|
export declare function createBrowserImageRasterCodec(): ImageRasterCodec;
|
|
8
8
|
//# sourceMappingURL=imageRasterCodecBrowser.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"imageRasterCodecBrowser.d.ts","sourceRoot":"","sources":["../../../src/task/image/imageRasterCodecBrowser.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAaH,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,
|
|
1
|
+
{"version":3,"file":"imageRasterCodecBrowser.d.ts","sourceRoot":"","sources":["../../../src/task/image/imageRasterCodecBrowser.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAaH,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,sBAAsB,CAAC;AAiI7D,wBAAgB,6BAA6B,IAAI,gBAAgB,CAEhE"}
|
|
@@ -3,6 +3,6 @@
|
|
|
3
3
|
* Copyright 2026 Steven Roussey <sroussey@gmail.com>
|
|
4
4
|
* SPDX-License-Identifier: Apache-2.0
|
|
5
5
|
*/
|
|
6
|
-
import type { ImageRasterCodec } from "
|
|
6
|
+
import type { ImageRasterCodec } from "@workglow/util/media";
|
|
7
7
|
export declare function createNodeImageRasterCodec(): ImageRasterCodec;
|
|
8
8
|
//# sourceMappingURL=imageRasterCodecNode.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"imageRasterCodecNode.d.ts","sourceRoot":"","sources":["../../../src/task/image/imageRasterCodecNode.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAeH,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,
|
|
1
|
+
{"version":3,"file":"imageRasterCodecNode.d.ts","sourceRoot":"","sources":["../../../src/task/image/imageRasterCodecNode.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAeH,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,sBAAsB,CAAC;AAqH7D,wBAAgB,0BAA0B,IAAI,gBAAgB,CAE7D"}
|
|
@@ -2,12 +2,12 @@
|
|
|
2
2
|
* @license
|
|
3
3
|
* Copyright 2026 Steven Roussey <sroussey@gmail.com>
|
|
4
4
|
* SPDX-License-Identifier: Apache-2.0
|
|
5
|
+
*
|
|
6
|
+
* Re-exported from {@link @workglow/util/media} — the registry moved so that
|
|
7
|
+
* the `Image` class can dispatch to the codec without creating a reverse
|
|
8
|
+
* dependency. Implementations (`imageRasterCodecBrowser.ts`,
|
|
9
|
+
* `imageRasterCodecNode.ts`) still live in this package.
|
|
5
10
|
*/
|
|
6
|
-
|
|
7
|
-
export
|
|
8
|
-
decodeDataUri(dataUri: string): Promise<ImageBinary>;
|
|
9
|
-
encodeDataUri(image: ImageBinary, mimeType: string): Promise<string>;
|
|
10
|
-
}
|
|
11
|
-
export declare function registerImageRasterCodec(next: ImageRasterCodec): void;
|
|
12
|
-
export declare function getImageRasterCodec(): ImageRasterCodec;
|
|
11
|
+
export type { ImageRasterCodec } from "@workglow/util/media";
|
|
12
|
+
export { getImageRasterCodec, registerImageRasterCodec } from "@workglow/util/media";
|
|
13
13
|
//# sourceMappingURL=imageRasterCodecRegistry.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"imageRasterCodecRegistry.d.ts","sourceRoot":"","sources":["../../../src/task/image/imageRasterCodecRegistry.ts"],"names":[],"mappings":"AAAA
|
|
1
|
+
{"version":3,"file":"imageRasterCodecRegistry.d.ts","sourceRoot":"","sources":["../../../src/task/image/imageRasterCodecRegistry.ts"],"names":[],"mappings":"AAAA;;;;;;;;;GASG;AAEH,YAAY,EAAE,gBAAgB,EAAE,MAAM,sBAAsB,CAAC;AAC7D,OAAO,EAAE,mBAAmB,EAAE,wBAAwB,EAAE,MAAM,sBAAsB,CAAC"}
|
|
@@ -4,9 +4,17 @@
|
|
|
4
4
|
* SPDX-License-Identifier: Apache-2.0
|
|
5
5
|
*/
|
|
6
6
|
import type { ImageBinary } from "@workglow/util/media";
|
|
7
|
+
import { Image } from "@workglow/util/media";
|
|
7
8
|
/**
|
|
8
|
-
* Decode
|
|
9
|
-
*
|
|
9
|
+
* Decode the input to pixels via the unified {@link Image} class, run `run`,
|
|
10
|
+
* then return output in the same wire form as the input:
|
|
11
|
+
*
|
|
12
|
+
* - data URI string in → data URI string out (re-encoded with input MIME),
|
|
13
|
+
* - `ImageBinary` in → `ImageBinary` out.
|
|
14
|
+
*
|
|
15
|
+
* The legacy wire format is preserved so existing task graphs and caches
|
|
16
|
+
* keep working; `Image` is used internally to funnel decode/encode through
|
|
17
|
+
* the single raster-codec registry.
|
|
10
18
|
*/
|
|
11
|
-
export declare function produceImageOutput(inputImage: ImageBinary | string, run: (image: ImageBinary) => ImageBinary | Promise<ImageBinary>): Promise<ImageBinary | string>;
|
|
19
|
+
export declare function produceImageOutput(inputImage: Image | ImageBinary | string, run: (image: ImageBinary) => ImageBinary | Promise<ImageBinary>): Promise<ImageBinary | string>;
|
|
12
20
|
//# sourceMappingURL=imageTaskIo.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"imageTaskIo.d.ts","sourceRoot":"","sources":["../../../src/task/image/imageTaskIo.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAEH,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,sBAAsB,CAAC;
|
|
1
|
+
{"version":3,"file":"imageTaskIo.d.ts","sourceRoot":"","sources":["../../../src/task/image/imageTaskIo.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAEH,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,sBAAsB,CAAC;AACxD,OAAO,EAAE,KAAK,EAAuB,MAAM,sBAAsB,CAAC;AAElE;;;;;;;;;;GAUG;AACH,wBAAsB,kBAAkB,CACtC,UAAU,EAAE,KAAK,GAAG,WAAW,GAAG,MAAM,EACxC,GAAG,EAAE,CAAC,KAAK,EAAE,WAAW,KAAK,WAAW,GAAG,OAAO,CAAC,WAAW,CAAC,GAC9D,OAAO,CAAC,WAAW,GAAG,MAAM,CAAC,CAS/B"}
|
|
@@ -15,13 +15,13 @@ declare const inputSchema: {
|
|
|
15
15
|
declare const outputSchema: {
|
|
16
16
|
readonly type: "object";
|
|
17
17
|
readonly properties: {
|
|
18
|
-
readonly
|
|
18
|
+
readonly text: {
|
|
19
19
|
readonly type: "string";
|
|
20
|
-
readonly title: "
|
|
20
|
+
readonly title: "Text";
|
|
21
21
|
readonly description: "Concatenation of all input strings";
|
|
22
22
|
};
|
|
23
23
|
};
|
|
24
|
-
readonly required: readonly ["
|
|
24
|
+
readonly required: readonly ["text"];
|
|
25
25
|
readonly additionalProperties: false;
|
|
26
26
|
};
|
|
27
27
|
export type StringConcatTaskInput = FromSchema<typeof inputSchema>;
|
|
@@ -41,13 +41,13 @@ export declare class StringConcatTask<Input extends StringConcatTaskInput = Stri
|
|
|
41
41
|
static outputSchema(): {
|
|
42
42
|
readonly type: "object";
|
|
43
43
|
readonly properties: {
|
|
44
|
-
readonly
|
|
44
|
+
readonly text: {
|
|
45
45
|
readonly type: "string";
|
|
46
|
-
readonly title: "
|
|
46
|
+
readonly title: "Text";
|
|
47
47
|
readonly description: "Concatenation of all input strings";
|
|
48
48
|
};
|
|
49
49
|
};
|
|
50
|
-
readonly required: readonly ["
|
|
50
|
+
readonly required: readonly ["text"];
|
|
51
51
|
readonly additionalProperties: false;
|
|
52
52
|
};
|
|
53
53
|
executeReactive(input: Input, _output: Output, _context: IExecuteReactiveContext): Promise<Output>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"StringConcatTask.d.ts","sourceRoot":"","sources":["../../../src/task/string/StringConcatTask.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAEH,OAAO,EACL,cAAc,EACd,uBAAuB,EACvB,IAAI,EACJ,UAAU,EAEX,MAAM,sBAAsB,CAAC;AAC9B,OAAO,EAAkB,UAAU,EAAE,MAAM,uBAAuB,CAAC;AAEnE,QAAA,MAAM,WAAW;mBACT,QAAQ;;;iBAEU,IAAI,EAAE,QAAQ;;CACL,CAAC;AAEpC,QAAA,MAAM,YAAY;mBACV,QAAQ;;iBAEZ,
|
|
1
|
+
{"version":3,"file":"StringConcatTask.d.ts","sourceRoot":"","sources":["../../../src/task/string/StringConcatTask.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAEH,OAAO,EACL,cAAc,EACd,uBAAuB,EACvB,IAAI,EACJ,UAAU,EAEX,MAAM,sBAAsB,CAAC;AAC9B,OAAO,EAAkB,UAAU,EAAE,MAAM,uBAAuB,CAAC;AAEnE,QAAA,MAAM,WAAW;mBACT,QAAQ;;;iBAEU,IAAI,EAAE,QAAQ;;CACL,CAAC;AAEpC,QAAA,MAAM,YAAY;mBACV,QAAQ;;iBAEZ,IAAI;qBACF,IAAI,EAAE,QAAQ;qBACd,KAAK,EAAE,MAAM;qBACb,WAAW,EAAE,oCAAoC;;;;;CAKpB,CAAC;AAEpC,MAAM,MAAM,qBAAqB,GAAG,UAAU,CAAC,OAAO,WAAW,CAAC,CAAC;AACnE,MAAM,MAAM,sBAAsB,GAAG,UAAU,CAAC,OAAO,YAAY,CAAC,CAAC;AAErE,qBAAa,gBAAgB,CAC3B,KAAK,SAAS,qBAAqB,GAAG,qBAAqB,EAC3D,MAAM,SAAS,sBAAsB,GAAG,sBAAsB,EAC9D,MAAM,SAAS,UAAU,GAAG,UAAU,CACtC,SAAQ,IAAI,CAAC,KAAK,EAAE,MAAM,EAAE,MAAM,CAAC;IACnC,gBAAyB,IAAI,sBAAsB;IACnD,gBAAyB,QAAQ,YAAY;IAC7C,OAAuB,KAAK,SAAY;IACxC,OAAuB,WAAW,SAAoC;IAEtE,OAAgB,WAAW;uBA/BrB,QAAQ;;;qBAEU,IAAI,EAAE,QAAQ;;MA+BrC;IAED,OAAgB,YAAY;uBA7BtB,QAAQ;;qBAEZ,IAAI;yBACF,IAAI,EAAE,QAAQ;yBACd,KAAK,EAAE,MAAM;yBACb,WAAW,EAAE,oCAAoC;;;;;MA0BpD;IAEc,eAAe,CAC5B,KAAK,EAAE,KAAK,EACZ,OAAO,EAAE,MAAM,EACf,QAAQ,EAAE,uBAAuB,GAChC,OAAO,CAAC,MAAM,CAAC,CAEjB;CACF;AAED,OAAO,QAAQ,sBAAsB,CAAC,CAAC;IACrC,UAAU,QAAQ;QAChB,YAAY,EAAE,cAAc,CAAC,qBAAqB,EAAE,sBAAsB,EAAE,UAAU,CAAC,CAAC;KACzF;CACF"}
|
|
@@ -8,9 +8,9 @@ import { FromSchema } from "@workglow/util/schema";
|
|
|
8
8
|
declare const inputSchema: {
|
|
9
9
|
readonly type: "object";
|
|
10
10
|
readonly properties: {
|
|
11
|
-
readonly
|
|
11
|
+
readonly text: {
|
|
12
12
|
readonly type: "string";
|
|
13
|
-
readonly title: "
|
|
13
|
+
readonly title: "Text";
|
|
14
14
|
readonly description: "Input string to search in";
|
|
15
15
|
};
|
|
16
16
|
readonly search: {
|
|
@@ -19,19 +19,19 @@ declare const inputSchema: {
|
|
|
19
19
|
readonly description: "Substring to search for";
|
|
20
20
|
};
|
|
21
21
|
};
|
|
22
|
-
readonly required: readonly ["
|
|
22
|
+
readonly required: readonly ["text", "search"];
|
|
23
23
|
readonly additionalProperties: false;
|
|
24
24
|
};
|
|
25
25
|
declare const outputSchema: {
|
|
26
26
|
readonly type: "object";
|
|
27
27
|
readonly properties: {
|
|
28
|
-
readonly
|
|
28
|
+
readonly included: {
|
|
29
29
|
readonly type: "boolean";
|
|
30
|
-
readonly title: "
|
|
30
|
+
readonly title: "Included";
|
|
31
31
|
readonly description: "Whether the string contains the search substring";
|
|
32
32
|
};
|
|
33
33
|
};
|
|
34
|
-
readonly required: readonly ["
|
|
34
|
+
readonly required: readonly ["included"];
|
|
35
35
|
readonly additionalProperties: false;
|
|
36
36
|
};
|
|
37
37
|
export type StringIncludesTaskInput = FromSchema<typeof inputSchema>;
|
|
@@ -44,9 +44,9 @@ export declare class StringIncludesTask<Input extends StringIncludesTaskInput =
|
|
|
44
44
|
static inputSchema(): {
|
|
45
45
|
readonly type: "object";
|
|
46
46
|
readonly properties: {
|
|
47
|
-
readonly
|
|
47
|
+
readonly text: {
|
|
48
48
|
readonly type: "string";
|
|
49
|
-
readonly title: "
|
|
49
|
+
readonly title: "Text";
|
|
50
50
|
readonly description: "Input string to search in";
|
|
51
51
|
};
|
|
52
52
|
readonly search: {
|
|
@@ -55,19 +55,19 @@ export declare class StringIncludesTask<Input extends StringIncludesTaskInput =
|
|
|
55
55
|
readonly description: "Substring to search for";
|
|
56
56
|
};
|
|
57
57
|
};
|
|
58
|
-
readonly required: readonly ["
|
|
58
|
+
readonly required: readonly ["text", "search"];
|
|
59
59
|
readonly additionalProperties: false;
|
|
60
60
|
};
|
|
61
61
|
static outputSchema(): {
|
|
62
62
|
readonly type: "object";
|
|
63
63
|
readonly properties: {
|
|
64
|
-
readonly
|
|
64
|
+
readonly included: {
|
|
65
65
|
readonly type: "boolean";
|
|
66
|
-
readonly title: "
|
|
66
|
+
readonly title: "Included";
|
|
67
67
|
readonly description: "Whether the string contains the search substring";
|
|
68
68
|
};
|
|
69
69
|
};
|
|
70
|
-
readonly required: readonly ["
|
|
70
|
+
readonly required: readonly ["included"];
|
|
71
71
|
readonly additionalProperties: false;
|
|
72
72
|
};
|
|
73
73
|
executeReactive(input: Input, _output: Output, _context: IExecuteReactiveContext): Promise<Output>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"StringIncludesTask.d.ts","sourceRoot":"","sources":["../../../src/task/string/StringIncludesTask.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAEH,OAAO,EACL,cAAc,EACd,uBAAuB,EACvB,IAAI,EACJ,UAAU,EAEX,MAAM,sBAAsB,CAAC;AAC9B,OAAO,EAAkB,UAAU,EAAE,MAAM,uBAAuB,CAAC;AAEnE,QAAA,MAAM,WAAW;mBACT,QAAQ;;iBAEZ,
|
|
1
|
+
{"version":3,"file":"StringIncludesTask.d.ts","sourceRoot":"","sources":["../../../src/task/string/StringIncludesTask.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAEH,OAAO,EACL,cAAc,EACd,uBAAuB,EACvB,IAAI,EACJ,UAAU,EAEX,MAAM,sBAAsB,CAAC;AAC9B,OAAO,EAAkB,UAAU,EAAE,MAAM,uBAAuB,CAAC;AAEnE,QAAA,MAAM,WAAW;mBACT,QAAQ;;iBAEZ,IAAI;qBACF,IAAI,EAAE,QAAQ;qBACd,KAAK,EAAE,MAAM;qBACb,WAAW,EAAE,2BAA2B;;iBAE1C,MAAM;qBACJ,IAAI,EAAE,QAAQ;qBACd,KAAK,EAAE,QAAQ;qBACf,WAAW,EAAE,yBAAyB;;;;;CAKT,CAAC;AAEpC,QAAA,MAAM,YAAY;mBACV,QAAQ;;iBAEZ,QAAQ;qBACN,IAAI,EAAE,SAAS;qBACf,KAAK,EAAE,UAAU;qBACjB,WAAW,EAAE,kDAAkD;;;;;CAKlC,CAAC;AAEpC,MAAM,MAAM,uBAAuB,GAAG,UAAU,CAAC,OAAO,WAAW,CAAC,CAAC;AACrE,MAAM,MAAM,wBAAwB,GAAG,UAAU,CAAC,OAAO,YAAY,CAAC,CAAC;AAEvE,qBAAa,kBAAkB,CAC7B,KAAK,SAAS,uBAAuB,GAAG,uBAAuB,EAC/D,MAAM,SAAS,wBAAwB,GAAG,wBAAwB,EAClE,MAAM,SAAS,UAAU,GAAG,UAAU,CACtC,SAAQ,IAAI,CAAC,KAAK,EAAE,MAAM,EAAE,MAAM,CAAC;IACnC,gBAAyB,IAAI,wBAAwB;IACrD,gBAAyB,QAAQ,YAAY;IAC7C,OAAuB,KAAK,SAAc;IAC1C,OAAuB,WAAW,SAA6C;IAE/E,OAAgB,WAAW;uBA3CrB,QAAQ;;qBAEZ,IAAI;yBACF,IAAI,EAAE,QAAQ;yBACd,KAAK,EAAE,MAAM;yBACb,WAAW,EAAE,2BAA2B;;qBAE1C,MAAM;yBACJ,IAAI,EAAE,QAAQ;yBACd,KAAK,EAAE,QAAQ;yBACf,WAAW,EAAE,yBAAyB;;;;;MAmCzC;IAED,OAAgB,YAAY;uBA7BtB,QAAQ;;qBAEZ,QAAQ;yBACN,IAAI,EAAE,SAAS;yBACf,KAAK,EAAE,UAAU;yBACjB,WAAW,EAAE,kDAAkD;;;;;MA0BlE;IAEc,eAAe,CAC5B,KAAK,EAAE,KAAK,EACZ,OAAO,EAAE,MAAM,EACf,QAAQ,EAAE,uBAAuB,GAChC,OAAO,CAAC,MAAM,CAAC,CAEjB;CACF;AAED,OAAO,QAAQ,sBAAsB,CAAC,CAAC;IACrC,UAAU,QAAQ;QAChB,cAAc,EAAE,cAAc,CAAC,uBAAuB,EAAE,wBAAwB,EAAE,UAAU,CAAC,CAAC;KAC/F;CACF"}
|
|
@@ -8,12 +8,12 @@ import { FromSchema } from "@workglow/util/schema";
|
|
|
8
8
|
declare const inputSchema: {
|
|
9
9
|
readonly type: "object";
|
|
10
10
|
readonly properties: {
|
|
11
|
-
readonly
|
|
11
|
+
readonly texts: {
|
|
12
12
|
readonly type: "array";
|
|
13
13
|
readonly items: {
|
|
14
14
|
readonly type: "string";
|
|
15
15
|
};
|
|
16
|
-
readonly title: "
|
|
16
|
+
readonly title: "Texts";
|
|
17
17
|
readonly description: "Array of strings to join";
|
|
18
18
|
};
|
|
19
19
|
readonly separator: {
|
|
@@ -23,19 +23,19 @@ declare const inputSchema: {
|
|
|
23
23
|
readonly default: "";
|
|
24
24
|
};
|
|
25
25
|
};
|
|
26
|
-
readonly required: readonly ["
|
|
26
|
+
readonly required: readonly ["texts"];
|
|
27
27
|
readonly additionalProperties: false;
|
|
28
28
|
};
|
|
29
29
|
declare const outputSchema: {
|
|
30
30
|
readonly type: "object";
|
|
31
31
|
readonly properties: {
|
|
32
|
-
readonly
|
|
32
|
+
readonly text: {
|
|
33
33
|
readonly type: "string";
|
|
34
|
-
readonly title: "
|
|
34
|
+
readonly title: "Text";
|
|
35
35
|
readonly description: "Joined string";
|
|
36
36
|
};
|
|
37
37
|
};
|
|
38
|
-
readonly required: readonly ["
|
|
38
|
+
readonly required: readonly ["text"];
|
|
39
39
|
readonly additionalProperties: false;
|
|
40
40
|
};
|
|
41
41
|
export type StringJoinTaskInput = FromSchema<typeof inputSchema>;
|
|
@@ -48,12 +48,12 @@ export declare class StringJoinTask<Input extends StringJoinTaskInput = StringJo
|
|
|
48
48
|
static inputSchema(): {
|
|
49
49
|
readonly type: "object";
|
|
50
50
|
readonly properties: {
|
|
51
|
-
readonly
|
|
51
|
+
readonly texts: {
|
|
52
52
|
readonly type: "array";
|
|
53
53
|
readonly items: {
|
|
54
54
|
readonly type: "string";
|
|
55
55
|
};
|
|
56
|
-
readonly title: "
|
|
56
|
+
readonly title: "Texts";
|
|
57
57
|
readonly description: "Array of strings to join";
|
|
58
58
|
};
|
|
59
59
|
readonly separator: {
|
|
@@ -63,19 +63,19 @@ export declare class StringJoinTask<Input extends StringJoinTaskInput = StringJo
|
|
|
63
63
|
readonly default: "";
|
|
64
64
|
};
|
|
65
65
|
};
|
|
66
|
-
readonly required: readonly ["
|
|
66
|
+
readonly required: readonly ["texts"];
|
|
67
67
|
readonly additionalProperties: false;
|
|
68
68
|
};
|
|
69
69
|
static outputSchema(): {
|
|
70
70
|
readonly type: "object";
|
|
71
71
|
readonly properties: {
|
|
72
|
-
readonly
|
|
72
|
+
readonly text: {
|
|
73
73
|
readonly type: "string";
|
|
74
|
-
readonly title: "
|
|
74
|
+
readonly title: "Text";
|
|
75
75
|
readonly description: "Joined string";
|
|
76
76
|
};
|
|
77
77
|
};
|
|
78
|
-
readonly required: readonly ["
|
|
78
|
+
readonly required: readonly ["text"];
|
|
79
79
|
readonly additionalProperties: false;
|
|
80
80
|
};
|
|
81
81
|
executeReactive(input: Input, _output: Output, _context: IExecuteReactiveContext): Promise<Output>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"StringJoinTask.d.ts","sourceRoot":"","sources":["../../../src/task/string/StringJoinTask.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAEH,OAAO,EACL,cAAc,EACd,uBAAuB,EACvB,IAAI,EACJ,UAAU,EAEX,MAAM,sBAAsB,CAAC;AAC9B,OAAO,EAAkB,UAAU,EAAE,MAAM,uBAAuB,CAAC;AAEnE,QAAA,MAAM,WAAW;mBACT,QAAQ;;iBAEZ,
|
|
1
|
+
{"version":3,"file":"StringJoinTask.d.ts","sourceRoot":"","sources":["../../../src/task/string/StringJoinTask.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAEH,OAAO,EACL,cAAc,EACd,uBAAuB,EACvB,IAAI,EACJ,UAAU,EAEX,MAAM,sBAAsB,CAAC;AAC9B,OAAO,EAAkB,UAAU,EAAE,MAAM,uBAAuB,CAAC;AAEnE,QAAA,MAAM,WAAW;mBACT,QAAQ;;iBAEZ,KAAK;qBACH,IAAI,EAAE,OAAO;qBACb,KAAK;yBAAI,IAAI,EAAE,QAAQ;;qBACvB,KAAK,EAAE,OAAO;qBACd,WAAW,EAAE,0BAA0B;;iBAEzC,SAAS;qBACP,IAAI,EAAE,QAAQ;qBACd,KAAK,EAAE,WAAW;qBAClB,WAAW,EAAE,4BAA4B;qBACzC,OAAO,EAAE,EAAE;;;;;CAKkB,CAAC;AAEpC,QAAA,MAAM,YAAY;mBACV,QAAQ;;iBAEZ,IAAI;qBACF,IAAI,EAAE,QAAQ;qBACd,KAAK,EAAE,MAAM;qBACb,WAAW,EAAE,eAAe;;;;;CAKC,CAAC;AAEpC,MAAM,MAAM,mBAAmB,GAAG,UAAU,CAAC,OAAO,WAAW,CAAC,CAAC;AACjE,MAAM,MAAM,oBAAoB,GAAG,UAAU,CAAC,OAAO,YAAY,CAAC,CAAC;AAEnE,qBAAa,cAAc,CACzB,KAAK,SAAS,mBAAmB,GAAG,mBAAmB,EACvD,MAAM,SAAS,oBAAoB,GAAG,oBAAoB,EAC1D,MAAM,SAAS,UAAU,GAAG,UAAU,CACtC,SAAQ,IAAI,CAAC,KAAK,EAAE,MAAM,EAAE,MAAM,CAAC;IACnC,gBAAyB,IAAI,oBAAoB;IACjD,gBAAyB,QAAQ,YAAY;IAC7C,OAAuB,KAAK,SAAU;IACtC,OAAuB,WAAW,SAAgD;IAElF,OAAgB,WAAW;uBA7CrB,QAAQ;;qBAEZ,KAAK;yBACH,IAAI,EAAE,OAAO;yBACb,KAAK;6BAAI,IAAI,EAAE,QAAQ;;yBACvB,KAAK,EAAE,OAAO;yBACd,WAAW,EAAE,0BAA0B;;qBAEzC,SAAS;yBACP,IAAI,EAAE,QAAQ;yBACd,KAAK,EAAE,WAAW;yBAClB,WAAW,EAAE,4BAA4B;yBACzC,OAAO,EAAE,EAAE;;;;;MAmCd;IAED,OAAgB,YAAY;uBA7BtB,QAAQ;;qBAEZ,IAAI;yBACF,IAAI,EAAE,QAAQ;yBACd,KAAK,EAAE,MAAM;yBACb,WAAW,EAAE,eAAe;;;;;MA0B/B;IAEc,eAAe,CAC5B,KAAK,EAAE,KAAK,EACZ,OAAO,EAAE,MAAM,EACf,QAAQ,EAAE,uBAAuB,GAChC,OAAO,CAAC,MAAM,CAAC,CAGjB;CACF;AAED,OAAO,QAAQ,sBAAsB,CAAC,CAAC;IACrC,UAAU,QAAQ;QAChB,UAAU,EAAE,cAAc,CAAC,mBAAmB,EAAE,oBAAoB,EAAE,UAAU,CAAC,CAAC;KACnF;CACF"}
|
|
@@ -8,25 +8,25 @@ import { FromSchema } from "@workglow/util/schema";
|
|
|
8
8
|
declare const inputSchema: {
|
|
9
9
|
readonly type: "object";
|
|
10
10
|
readonly properties: {
|
|
11
|
-
readonly
|
|
11
|
+
readonly text: {
|
|
12
12
|
readonly type: "string";
|
|
13
|
-
readonly title: "
|
|
13
|
+
readonly title: "Text";
|
|
14
14
|
readonly description: "Input string";
|
|
15
15
|
};
|
|
16
16
|
};
|
|
17
|
-
readonly required: readonly ["
|
|
17
|
+
readonly required: readonly ["text"];
|
|
18
18
|
readonly additionalProperties: false;
|
|
19
19
|
};
|
|
20
20
|
declare const outputSchema: {
|
|
21
21
|
readonly type: "object";
|
|
22
22
|
readonly properties: {
|
|
23
|
-
readonly
|
|
23
|
+
readonly length: {
|
|
24
24
|
readonly type: "integer";
|
|
25
|
-
readonly title: "
|
|
25
|
+
readonly title: "Length";
|
|
26
26
|
readonly description: "Length of the string";
|
|
27
27
|
};
|
|
28
28
|
};
|
|
29
|
-
readonly required: readonly ["
|
|
29
|
+
readonly required: readonly ["length"];
|
|
30
30
|
readonly additionalProperties: false;
|
|
31
31
|
};
|
|
32
32
|
export type StringLengthTaskInput = FromSchema<typeof inputSchema>;
|
|
@@ -39,25 +39,25 @@ export declare class StringLengthTask<Input extends StringLengthTaskInput = Stri
|
|
|
39
39
|
static inputSchema(): {
|
|
40
40
|
readonly type: "object";
|
|
41
41
|
readonly properties: {
|
|
42
|
-
readonly
|
|
42
|
+
readonly text: {
|
|
43
43
|
readonly type: "string";
|
|
44
|
-
readonly title: "
|
|
44
|
+
readonly title: "Text";
|
|
45
45
|
readonly description: "Input string";
|
|
46
46
|
};
|
|
47
47
|
};
|
|
48
|
-
readonly required: readonly ["
|
|
48
|
+
readonly required: readonly ["text"];
|
|
49
49
|
readonly additionalProperties: false;
|
|
50
50
|
};
|
|
51
51
|
static outputSchema(): {
|
|
52
52
|
readonly type: "object";
|
|
53
53
|
readonly properties: {
|
|
54
|
-
readonly
|
|
54
|
+
readonly length: {
|
|
55
55
|
readonly type: "integer";
|
|
56
|
-
readonly title: "
|
|
56
|
+
readonly title: "Length";
|
|
57
57
|
readonly description: "Length of the string";
|
|
58
58
|
};
|
|
59
59
|
};
|
|
60
|
-
readonly required: readonly ["
|
|
60
|
+
readonly required: readonly ["length"];
|
|
61
61
|
readonly additionalProperties: false;
|
|
62
62
|
};
|
|
63
63
|
executeReactive(input: Input, _output: Output, _context: IExecuteReactiveContext): Promise<Output>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"StringLengthTask.d.ts","sourceRoot":"","sources":["../../../src/task/string/StringLengthTask.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAEH,OAAO,EACL,cAAc,EACd,uBAAuB,EACvB,IAAI,EACJ,UAAU,EAEX,MAAM,sBAAsB,CAAC;AAC9B,OAAO,EAAkB,UAAU,EAAE,MAAM,uBAAuB,CAAC;AAEnE,QAAA,MAAM,WAAW;mBACT,QAAQ;;iBAEZ,
|
|
1
|
+
{"version":3,"file":"StringLengthTask.d.ts","sourceRoot":"","sources":["../../../src/task/string/StringLengthTask.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAEH,OAAO,EACL,cAAc,EACd,uBAAuB,EACvB,IAAI,EACJ,UAAU,EAEX,MAAM,sBAAsB,CAAC;AAC9B,OAAO,EAAkB,UAAU,EAAE,MAAM,uBAAuB,CAAC;AAEnE,QAAA,MAAM,WAAW;mBACT,QAAQ;;iBAEZ,IAAI;qBACF,IAAI,EAAE,QAAQ;qBACd,KAAK,EAAE,MAAM;qBACb,WAAW,EAAE,cAAc;;;;;CAKE,CAAC;AAEpC,QAAA,MAAM,YAAY;mBACV,QAAQ;;iBAEZ,MAAM;qBACJ,IAAI,EAAE,SAAS;qBACf,KAAK,EAAE,QAAQ;qBACf,WAAW,EAAE,sBAAsB;;;;;CAKN,CAAC;AAEpC,MAAM,MAAM,qBAAqB,GAAG,UAAU,CAAC,OAAO,WAAW,CAAC,CAAC;AACnE,MAAM,MAAM,sBAAsB,GAAG,UAAU,CAAC,OAAO,YAAY,CAAC,CAAC;AAErE,qBAAa,gBAAgB,CAC3B,KAAK,SAAS,qBAAqB,GAAG,qBAAqB,EAC3D,MAAM,SAAS,sBAAsB,GAAG,sBAAsB,EAC9D,MAAM,SAAS,UAAU,GAAG,UAAU,CACtC,SAAQ,IAAI,CAAC,KAAK,EAAE,MAAM,EAAE,MAAM,CAAC;IACnC,gBAAyB,IAAI,sBAAsB;IACnD,gBAAyB,QAAQ,YAAY;IAC7C,OAAuB,KAAK,SAAY;IACxC,OAAuB,WAAW,SAAoC;IAEtE,OAAgB,WAAW;uBAtCrB,QAAQ;;qBAEZ,IAAI;yBACF,IAAI,EAAE,QAAQ;yBACd,KAAK,EAAE,MAAM;yBACb,WAAW,EAAE,cAAc;;;;;MAmC9B;IAED,OAAgB,YAAY;uBA7BtB,QAAQ;;qBAEZ,MAAM;yBACJ,IAAI,EAAE,SAAS;yBACf,KAAK,EAAE,QAAQ;yBACf,WAAW,EAAE,sBAAsB;;;;;MA0BtC;IAEc,eAAe,CAC5B,KAAK,EAAE,KAAK,EACZ,OAAO,EAAE,MAAM,EACf,QAAQ,EAAE,uBAAuB,GAChC,OAAO,CAAC,MAAM,CAAC,CAEjB;CACF;AAED,OAAO,QAAQ,sBAAsB,CAAC,CAAC;IACrC,UAAU,QAAQ;QAChB,YAAY,EAAE,cAAc,CAAC,qBAAqB,EAAE,sBAAsB,EAAE,UAAU,CAAC,CAAC;KACzF;CACF"}
|
|
@@ -8,25 +8,25 @@ import { FromSchema } from "@workglow/util/schema";
|
|
|
8
8
|
declare const inputSchema: {
|
|
9
9
|
readonly type: "object";
|
|
10
10
|
readonly properties: {
|
|
11
|
-
readonly
|
|
11
|
+
readonly text: {
|
|
12
12
|
readonly type: "string";
|
|
13
|
-
readonly title: "
|
|
13
|
+
readonly title: "Text";
|
|
14
14
|
readonly description: "Input string";
|
|
15
15
|
};
|
|
16
16
|
};
|
|
17
|
-
readonly required: readonly ["
|
|
17
|
+
readonly required: readonly ["text"];
|
|
18
18
|
readonly additionalProperties: false;
|
|
19
19
|
};
|
|
20
20
|
declare const outputSchema: {
|
|
21
21
|
readonly type: "object";
|
|
22
22
|
readonly properties: {
|
|
23
|
-
readonly
|
|
23
|
+
readonly text: {
|
|
24
24
|
readonly type: "string";
|
|
25
|
-
readonly title: "
|
|
25
|
+
readonly title: "Text";
|
|
26
26
|
readonly description: "Lowercased string";
|
|
27
27
|
};
|
|
28
28
|
};
|
|
29
|
-
readonly required: readonly ["
|
|
29
|
+
readonly required: readonly ["text"];
|
|
30
30
|
readonly additionalProperties: false;
|
|
31
31
|
};
|
|
32
32
|
export type StringLowerCaseTaskInput = FromSchema<typeof inputSchema>;
|
|
@@ -39,25 +39,25 @@ export declare class StringLowerCaseTask<Input extends StringLowerCaseTaskInput
|
|
|
39
39
|
static inputSchema(): {
|
|
40
40
|
readonly type: "object";
|
|
41
41
|
readonly properties: {
|
|
42
|
-
readonly
|
|
42
|
+
readonly text: {
|
|
43
43
|
readonly type: "string";
|
|
44
|
-
readonly title: "
|
|
44
|
+
readonly title: "Text";
|
|
45
45
|
readonly description: "Input string";
|
|
46
46
|
};
|
|
47
47
|
};
|
|
48
|
-
readonly required: readonly ["
|
|
48
|
+
readonly required: readonly ["text"];
|
|
49
49
|
readonly additionalProperties: false;
|
|
50
50
|
};
|
|
51
51
|
static outputSchema(): {
|
|
52
52
|
readonly type: "object";
|
|
53
53
|
readonly properties: {
|
|
54
|
-
readonly
|
|
54
|
+
readonly text: {
|
|
55
55
|
readonly type: "string";
|
|
56
|
-
readonly title: "
|
|
56
|
+
readonly title: "Text";
|
|
57
57
|
readonly description: "Lowercased string";
|
|
58
58
|
};
|
|
59
59
|
};
|
|
60
|
-
readonly required: readonly ["
|
|
60
|
+
readonly required: readonly ["text"];
|
|
61
61
|
readonly additionalProperties: false;
|
|
62
62
|
};
|
|
63
63
|
executeReactive(input: Input, _output: Output, _context: IExecuteReactiveContext): Promise<Output>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"StringLowerCaseTask.d.ts","sourceRoot":"","sources":["../../../src/task/string/StringLowerCaseTask.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAEH,OAAO,EACL,cAAc,EACd,uBAAuB,EACvB,IAAI,EACJ,UAAU,EAEX,MAAM,sBAAsB,CAAC;AAC9B,OAAO,EAAkB,UAAU,EAAE,MAAM,uBAAuB,CAAC;AAEnE,QAAA,MAAM,WAAW;mBACT,QAAQ;;iBAEZ,
|
|
1
|
+
{"version":3,"file":"StringLowerCaseTask.d.ts","sourceRoot":"","sources":["../../../src/task/string/StringLowerCaseTask.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAEH,OAAO,EACL,cAAc,EACd,uBAAuB,EACvB,IAAI,EACJ,UAAU,EAEX,MAAM,sBAAsB,CAAC;AAC9B,OAAO,EAAkB,UAAU,EAAE,MAAM,uBAAuB,CAAC;AAEnE,QAAA,MAAM,WAAW;mBACT,QAAQ;;iBAEZ,IAAI;qBACF,IAAI,EAAE,QAAQ;qBACd,KAAK,EAAE,MAAM;qBACb,WAAW,EAAE,cAAc;;;;;CAKE,CAAC;AAEpC,QAAA,MAAM,YAAY;mBACV,QAAQ;;iBAEZ,IAAI;qBACF,IAAI,EAAE,QAAQ;qBACd,KAAK,EAAE,MAAM;qBACb,WAAW,EAAE,mBAAmB;;;;;CAKH,CAAC;AAEpC,MAAM,MAAM,wBAAwB,GAAG,UAAU,CAAC,OAAO,WAAW,CAAC,CAAC;AACtE,MAAM,MAAM,yBAAyB,GAAG,UAAU,CAAC,OAAO,YAAY,CAAC,CAAC;AAExE,qBAAa,mBAAmB,CAC9B,KAAK,SAAS,wBAAwB,GAAG,wBAAwB,EACjE,MAAM,SAAS,yBAAyB,GAAG,yBAAyB,EACpE,MAAM,SAAS,UAAU,GAAG,UAAU,CACtC,SAAQ,IAAI,CAAC,KAAK,EAAE,MAAM,EAAE,MAAM,CAAC;IACnC,gBAAyB,IAAI,yBAAyB;IACtD,gBAAyB,QAAQ,YAAY;IAC7C,OAAuB,KAAK,SAAgB;IAC5C,OAAuB,WAAW,SAAqC;IAEvE,OAAgB,WAAW;uBAtCrB,QAAQ;;qBAEZ,IAAI;yBACF,IAAI,EAAE,QAAQ;yBACd,KAAK,EAAE,MAAM;yBACb,WAAW,EAAE,cAAc;;;;;MAmC9B;IAED,OAAgB,YAAY;uBA7BtB,QAAQ;;qBAEZ,IAAI;yBACF,IAAI,EAAE,QAAQ;yBACd,KAAK,EAAE,MAAM;yBACb,WAAW,EAAE,mBAAmB;;;;;MA0BnC;IAEc,eAAe,CAC5B,KAAK,EAAE,KAAK,EACZ,OAAO,EAAE,MAAM,EACf,QAAQ,EAAE,uBAAuB,GAChC,OAAO,CAAC,MAAM,CAAC,CAEjB;CACF;AAED,OAAO,QAAQ,sBAAsB,CAAC,CAAC;IACrC,UAAU,QAAQ;QAChB,eAAe,EAAE,cAAc,CAC7B,wBAAwB,EACxB,yBAAyB,EACzB,UAAU,CACX,CAAC;KACH;CACF"}
|