@xyne/workflow-sdk 3.2.17 → 3.2.19

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.
Files changed (48) hide show
  1. package/dist/builder/index.d.ts +2 -0
  2. package/dist/builder/index.d.ts.map +1 -1
  3. package/dist/builder/index.js +2 -0
  4. package/dist/builder/index.js.map +1 -1
  5. package/dist/engine/available-context.d.ts.map +1 -1
  6. package/dist/engine/available-context.js +6 -0
  7. package/dist/engine/available-context.js.map +1 -1
  8. package/dist/engine/config-validator.d.ts.map +1 -1
  9. package/dist/engine/config-validator.js +22 -0
  10. package/dist/engine/config-validator.js.map +1 -1
  11. package/dist/engine/variable-resolver.js +1 -1
  12. package/dist/engine/variable-resolver.js.map +1 -1
  13. package/dist/engine/workflow-executor.d.ts.map +1 -1
  14. package/dist/engine/workflow-executor.js +8 -0
  15. package/dist/engine/workflow-executor.js.map +1 -1
  16. package/dist/index.d.ts +2 -2
  17. package/dist/index.d.ts.map +1 -1
  18. package/dist/index.js +3 -1
  19. package/dist/index.js.map +1 -1
  20. package/dist/runtime/workflow-runtime.d.ts.map +1 -1
  21. package/dist/runtime/workflow-runtime.js +2 -0
  22. package/dist/runtime/workflow-runtime.js.map +1 -1
  23. package/dist/steps/base-step.d.ts.map +1 -1
  24. package/dist/steps/base-step.js +1 -0
  25. package/dist/steps/base-step.js.map +1 -1
  26. package/dist/steps/builtin/http-request.step.d.ts +2 -2
  27. package/dist/steps/builtin/wait.step.d.ts +72 -72
  28. package/dist/testing/mock-context.d.ts.map +1 -1
  29. package/dist/testing/mock-context.js +1 -0
  30. package/dist/testing/mock-context.js.map +1 -1
  31. package/dist/types/context.d.ts +2 -0
  32. package/dist/types/context.d.ts.map +1 -1
  33. package/dist/types/index.d.ts +2 -0
  34. package/dist/types/index.d.ts.map +1 -1
  35. package/dist/types/index.js +1 -0
  36. package/dist/types/index.js.map +1 -1
  37. package/dist/types/workflow-config.d.ts +8 -0
  38. package/dist/types/workflow-config.d.ts.map +1 -1
  39. package/dist/types/workflow-config.js.map +1 -1
  40. package/dist/types/workflow-variable.d.ts +193 -0
  41. package/dist/types/workflow-variable.d.ts.map +1 -0
  42. package/dist/types/workflow-variable.js +94 -0
  43. package/dist/types/workflow-variable.js.map +1 -0
  44. package/dist/util/variable-ref.d.ts +1 -1
  45. package/dist/util/variable-ref.d.ts.map +1 -1
  46. package/dist/util/variable-ref.js +1 -1
  47. package/dist/util/variable-ref.js.map +1 -1
  48. package/package.json +1 -1
@@ -70,16 +70,16 @@ export declare const WaitStepConfigSchema: z.ZodDiscriminatedUnion<"mode", [z.Zo
70
70
  type: "text";
71
71
  name: string;
72
72
  label: string;
73
- required?: boolean | undefined;
74
73
  description?: string | undefined;
74
+ required?: boolean | undefined;
75
75
  placeholder?: string | undefined;
76
76
  defaultValue?: string | undefined;
77
77
  }, {
78
78
  type: "text";
79
79
  name: string;
80
80
  label: string;
81
- required?: boolean | undefined;
82
81
  description?: string | undefined;
82
+ required?: boolean | undefined;
83
83
  placeholder?: string | undefined;
84
84
  defaultValue?: string | undefined;
85
85
  }>, z.ZodObject<{
@@ -95,8 +95,8 @@ export declare const WaitStepConfigSchema: z.ZodDiscriminatedUnion<"mode", [z.Zo
95
95
  type: "textarea";
96
96
  name: string;
97
97
  label: string;
98
- required?: boolean | undefined;
99
98
  description?: string | undefined;
99
+ required?: boolean | undefined;
100
100
  placeholder?: string | undefined;
101
101
  defaultValue?: string | undefined;
102
102
  rows?: number | undefined;
@@ -104,8 +104,8 @@ export declare const WaitStepConfigSchema: z.ZodDiscriminatedUnion<"mode", [z.Zo
104
104
  type: "textarea";
105
105
  name: string;
106
106
  label: string;
107
- required?: boolean | undefined;
108
107
  description?: string | undefined;
108
+ required?: boolean | undefined;
109
109
  placeholder?: string | undefined;
110
110
  defaultValue?: string | undefined;
111
111
  rows?: number | undefined;
@@ -123,20 +123,20 @@ export declare const WaitStepConfigSchema: z.ZodDiscriminatedUnion<"mode", [z.Zo
123
123
  type: "number";
124
124
  name: string;
125
125
  label: string;
126
+ description?: string | undefined;
126
127
  min?: number | undefined;
127
128
  max?: number | undefined;
128
129
  required?: boolean | undefined;
129
- description?: string | undefined;
130
130
  placeholder?: string | undefined;
131
131
  defaultValue?: number | undefined;
132
132
  }, {
133
133
  type: "number";
134
134
  name: string;
135
135
  label: string;
136
+ description?: string | undefined;
136
137
  min?: number | undefined;
137
138
  max?: number | undefined;
138
139
  required?: boolean | undefined;
139
- description?: string | undefined;
140
140
  placeholder?: string | undefined;
141
141
  defaultValue?: number | undefined;
142
142
  }>, z.ZodObject<{
@@ -166,8 +166,8 @@ export declare const WaitStepConfigSchema: z.ZodDiscriminatedUnion<"mode", [z.Zo
166
166
  type: "select";
167
167
  name: string;
168
168
  label: string;
169
- required?: boolean | undefined;
170
169
  description?: string | undefined;
170
+ required?: boolean | undefined;
171
171
  placeholder?: string | undefined;
172
172
  defaultValue?: string | undefined;
173
173
  allowCustomValue?: boolean | undefined;
@@ -179,8 +179,8 @@ export declare const WaitStepConfigSchema: z.ZodDiscriminatedUnion<"mode", [z.Zo
179
179
  type: "select";
180
180
  name: string;
181
181
  label: string;
182
- required?: boolean | undefined;
183
182
  description?: string | undefined;
183
+ required?: boolean | undefined;
184
184
  placeholder?: string | undefined;
185
185
  defaultValue?: string | undefined;
186
186
  allowCustomValue?: boolean | undefined;
@@ -195,15 +195,15 @@ export declare const WaitStepConfigSchema: z.ZodDiscriminatedUnion<"mode", [z.Zo
195
195
  type: "checkbox";
196
196
  name: string;
197
197
  label: string;
198
- required?: boolean | undefined;
199
198
  description?: string | undefined;
199
+ required?: boolean | undefined;
200
200
  defaultValue?: boolean | undefined;
201
201
  }, {
202
202
  type: "checkbox";
203
203
  name: string;
204
204
  label: string;
205
- required?: boolean | undefined;
206
205
  description?: string | undefined;
206
+ required?: boolean | undefined;
207
207
  defaultValue?: boolean | undefined;
208
208
  }>, z.ZodObject<{
209
209
  type: z.ZodLiteral<"attachment">;
@@ -223,8 +223,8 @@ export declare const WaitStepConfigSchema: z.ZodDiscriminatedUnion<"mode", [z.Zo
223
223
  maxSize?: number | undefined;
224
224
  multiple?: boolean | undefined;
225
225
  maxItems?: number | undefined;
226
- required?: boolean | undefined;
227
226
  description?: string | undefined;
227
+ required?: boolean | undefined;
228
228
  }, {
229
229
  type: "attachment";
230
230
  name: string;
@@ -233,8 +233,8 @@ export declare const WaitStepConfigSchema: z.ZodDiscriminatedUnion<"mode", [z.Zo
233
233
  maxSize?: number | undefined;
234
234
  multiple?: boolean | undefined;
235
235
  maxItems?: number | undefined;
236
- required?: boolean | undefined;
237
236
  description?: string | undefined;
237
+ required?: boolean | undefined;
238
238
  }>]>, "many">;
239
239
  description: z.ZodOptional<z.ZodString>;
240
240
  }, "strip", z.ZodTypeAny, {
@@ -242,16 +242,16 @@ export declare const WaitStepConfigSchema: z.ZodDiscriminatedUnion<"mode", [z.Zo
242
242
  type: "text";
243
243
  name: string;
244
244
  label: string;
245
- required?: boolean | undefined;
246
245
  description?: string | undefined;
246
+ required?: boolean | undefined;
247
247
  placeholder?: string | undefined;
248
248
  defaultValue?: string | undefined;
249
249
  } | {
250
250
  type: "textarea";
251
251
  name: string;
252
252
  label: string;
253
- required?: boolean | undefined;
254
253
  description?: string | undefined;
254
+ required?: boolean | undefined;
255
255
  placeholder?: string | undefined;
256
256
  defaultValue?: string | undefined;
257
257
  rows?: number | undefined;
@@ -259,10 +259,10 @@ export declare const WaitStepConfigSchema: z.ZodDiscriminatedUnion<"mode", [z.Zo
259
259
  type: "number";
260
260
  name: string;
261
261
  label: string;
262
+ description?: string | undefined;
262
263
  min?: number | undefined;
263
264
  max?: number | undefined;
264
265
  required?: boolean | undefined;
265
- description?: string | undefined;
266
266
  placeholder?: string | undefined;
267
267
  defaultValue?: number | undefined;
268
268
  } | {
@@ -273,8 +273,8 @@ export declare const WaitStepConfigSchema: z.ZodDiscriminatedUnion<"mode", [z.Zo
273
273
  type: "select";
274
274
  name: string;
275
275
  label: string;
276
- required?: boolean | undefined;
277
276
  description?: string | undefined;
277
+ required?: boolean | undefined;
278
278
  placeholder?: string | undefined;
279
279
  defaultValue?: string | undefined;
280
280
  allowCustomValue?: boolean | undefined;
@@ -282,8 +282,8 @@ export declare const WaitStepConfigSchema: z.ZodDiscriminatedUnion<"mode", [z.Zo
282
282
  type: "checkbox";
283
283
  name: string;
284
284
  label: string;
285
- required?: boolean | undefined;
286
285
  description?: string | undefined;
286
+ required?: boolean | undefined;
287
287
  defaultValue?: boolean | undefined;
288
288
  } | {
289
289
  type: "attachment";
@@ -293,8 +293,8 @@ export declare const WaitStepConfigSchema: z.ZodDiscriminatedUnion<"mode", [z.Zo
293
293
  maxSize?: number | undefined;
294
294
  multiple?: boolean | undefined;
295
295
  maxItems?: number | undefined;
296
- required?: boolean | undefined;
297
296
  description?: string | undefined;
297
+ required?: boolean | undefined;
298
298
  })[];
299
299
  description?: string | undefined;
300
300
  }, {
@@ -302,16 +302,16 @@ export declare const WaitStepConfigSchema: z.ZodDiscriminatedUnion<"mode", [z.Zo
302
302
  type: "text";
303
303
  name: string;
304
304
  label: string;
305
- required?: boolean | undefined;
306
305
  description?: string | undefined;
306
+ required?: boolean | undefined;
307
307
  placeholder?: string | undefined;
308
308
  defaultValue?: string | undefined;
309
309
  } | {
310
310
  type: "textarea";
311
311
  name: string;
312
312
  label: string;
313
- required?: boolean | undefined;
314
313
  description?: string | undefined;
314
+ required?: boolean | undefined;
315
315
  placeholder?: string | undefined;
316
316
  defaultValue?: string | undefined;
317
317
  rows?: number | undefined;
@@ -319,10 +319,10 @@ export declare const WaitStepConfigSchema: z.ZodDiscriminatedUnion<"mode", [z.Zo
319
319
  type: "number";
320
320
  name: string;
321
321
  label: string;
322
+ description?: string | undefined;
322
323
  min?: number | undefined;
323
324
  max?: number | undefined;
324
325
  required?: boolean | undefined;
325
- description?: string | undefined;
326
326
  placeholder?: string | undefined;
327
327
  defaultValue?: number | undefined;
328
328
  } | {
@@ -333,8 +333,8 @@ export declare const WaitStepConfigSchema: z.ZodDiscriminatedUnion<"mode", [z.Zo
333
333
  type: "select";
334
334
  name: string;
335
335
  label: string;
336
- required?: boolean | undefined;
337
336
  description?: string | undefined;
337
+ required?: boolean | undefined;
338
338
  placeholder?: string | undefined;
339
339
  defaultValue?: string | undefined;
340
340
  allowCustomValue?: boolean | undefined;
@@ -342,8 +342,8 @@ export declare const WaitStepConfigSchema: z.ZodDiscriminatedUnion<"mode", [z.Zo
342
342
  type: "checkbox";
343
343
  name: string;
344
344
  label: string;
345
- required?: boolean | undefined;
346
345
  description?: string | undefined;
346
+ required?: boolean | undefined;
347
347
  defaultValue?: boolean | undefined;
348
348
  } | {
349
349
  type: "attachment";
@@ -353,8 +353,8 @@ export declare const WaitStepConfigSchema: z.ZodDiscriminatedUnion<"mode", [z.Zo
353
353
  maxSize?: number | undefined;
354
354
  multiple?: boolean | undefined;
355
355
  maxItems?: number | undefined;
356
- required?: boolean | undefined;
357
356
  description?: string | undefined;
357
+ required?: boolean | undefined;
358
358
  })[];
359
359
  description?: string | undefined;
360
360
  }>>;
@@ -391,16 +391,16 @@ export declare const WaitStepConfigSchema: z.ZodDiscriminatedUnion<"mode", [z.Zo
391
391
  type: "text";
392
392
  name: string;
393
393
  label: string;
394
- required?: boolean | undefined;
395
394
  description?: string | undefined;
395
+ required?: boolean | undefined;
396
396
  placeholder?: string | undefined;
397
397
  defaultValue?: string | undefined;
398
398
  } | {
399
399
  type: "textarea";
400
400
  name: string;
401
401
  label: string;
402
- required?: boolean | undefined;
403
402
  description?: string | undefined;
403
+ required?: boolean | undefined;
404
404
  placeholder?: string | undefined;
405
405
  defaultValue?: string | undefined;
406
406
  rows?: number | undefined;
@@ -408,10 +408,10 @@ export declare const WaitStepConfigSchema: z.ZodDiscriminatedUnion<"mode", [z.Zo
408
408
  type: "number";
409
409
  name: string;
410
410
  label: string;
411
+ description?: string | undefined;
411
412
  min?: number | undefined;
412
413
  max?: number | undefined;
413
414
  required?: boolean | undefined;
414
- description?: string | undefined;
415
415
  placeholder?: string | undefined;
416
416
  defaultValue?: number | undefined;
417
417
  } | {
@@ -422,8 +422,8 @@ export declare const WaitStepConfigSchema: z.ZodDiscriminatedUnion<"mode", [z.Zo
422
422
  type: "select";
423
423
  name: string;
424
424
  label: string;
425
- required?: boolean | undefined;
426
425
  description?: string | undefined;
426
+ required?: boolean | undefined;
427
427
  placeholder?: string | undefined;
428
428
  defaultValue?: string | undefined;
429
429
  allowCustomValue?: boolean | undefined;
@@ -431,8 +431,8 @@ export declare const WaitStepConfigSchema: z.ZodDiscriminatedUnion<"mode", [z.Zo
431
431
  type: "checkbox";
432
432
  name: string;
433
433
  label: string;
434
- required?: boolean | undefined;
435
434
  description?: string | undefined;
435
+ required?: boolean | undefined;
436
436
  defaultValue?: boolean | undefined;
437
437
  } | {
438
438
  type: "attachment";
@@ -442,8 +442,8 @@ export declare const WaitStepConfigSchema: z.ZodDiscriminatedUnion<"mode", [z.Zo
442
442
  maxSize?: number | undefined;
443
443
  multiple?: boolean | undefined;
444
444
  maxItems?: number | undefined;
445
- required?: boolean | undefined;
446
445
  description?: string | undefined;
446
+ required?: boolean | undefined;
447
447
  })[];
448
448
  description?: string | undefined;
449
449
  } | undefined;
@@ -468,16 +468,16 @@ export declare const WaitStepConfigSchema: z.ZodDiscriminatedUnion<"mode", [z.Zo
468
468
  type: "text";
469
469
  name: string;
470
470
  label: string;
471
- required?: boolean | undefined;
472
471
  description?: string | undefined;
472
+ required?: boolean | undefined;
473
473
  placeholder?: string | undefined;
474
474
  defaultValue?: string | undefined;
475
475
  } | {
476
476
  type: "textarea";
477
477
  name: string;
478
478
  label: string;
479
- required?: boolean | undefined;
480
479
  description?: string | undefined;
480
+ required?: boolean | undefined;
481
481
  placeholder?: string | undefined;
482
482
  defaultValue?: string | undefined;
483
483
  rows?: number | undefined;
@@ -485,10 +485,10 @@ export declare const WaitStepConfigSchema: z.ZodDiscriminatedUnion<"mode", [z.Zo
485
485
  type: "number";
486
486
  name: string;
487
487
  label: string;
488
+ description?: string | undefined;
488
489
  min?: number | undefined;
489
490
  max?: number | undefined;
490
491
  required?: boolean | undefined;
491
- description?: string | undefined;
492
492
  placeholder?: string | undefined;
493
493
  defaultValue?: number | undefined;
494
494
  } | {
@@ -499,8 +499,8 @@ export declare const WaitStepConfigSchema: z.ZodDiscriminatedUnion<"mode", [z.Zo
499
499
  type: "select";
500
500
  name: string;
501
501
  label: string;
502
- required?: boolean | undefined;
503
502
  description?: string | undefined;
503
+ required?: boolean | undefined;
504
504
  placeholder?: string | undefined;
505
505
  defaultValue?: string | undefined;
506
506
  allowCustomValue?: boolean | undefined;
@@ -508,8 +508,8 @@ export declare const WaitStepConfigSchema: z.ZodDiscriminatedUnion<"mode", [z.Zo
508
508
  type: "checkbox";
509
509
  name: string;
510
510
  label: string;
511
- required?: boolean | undefined;
512
511
  description?: string | undefined;
512
+ required?: boolean | undefined;
513
513
  defaultValue?: boolean | undefined;
514
514
  } | {
515
515
  type: "attachment";
@@ -519,8 +519,8 @@ export declare const WaitStepConfigSchema: z.ZodDiscriminatedUnion<"mode", [z.Zo
519
519
  maxSize?: number | undefined;
520
520
  multiple?: boolean | undefined;
521
521
  maxItems?: number | undefined;
522
- required?: boolean | undefined;
523
522
  description?: string | undefined;
523
+ required?: boolean | undefined;
524
524
  })[];
525
525
  description?: string | undefined;
526
526
  } | undefined;
@@ -588,16 +588,16 @@ export declare class WaitStep extends BaseActionStep<typeof WaitStepConfigSchema
588
588
  type: "text";
589
589
  name: string;
590
590
  label: string;
591
- required?: boolean | undefined;
592
591
  description?: string | undefined;
592
+ required?: boolean | undefined;
593
593
  placeholder?: string | undefined;
594
594
  defaultValue?: string | undefined;
595
595
  }, {
596
596
  type: "text";
597
597
  name: string;
598
598
  label: string;
599
- required?: boolean | undefined;
600
599
  description?: string | undefined;
600
+ required?: boolean | undefined;
601
601
  placeholder?: string | undefined;
602
602
  defaultValue?: string | undefined;
603
603
  }>, z.ZodObject<{
@@ -613,8 +613,8 @@ export declare class WaitStep extends BaseActionStep<typeof WaitStepConfigSchema
613
613
  type: "textarea";
614
614
  name: string;
615
615
  label: string;
616
- required?: boolean | undefined;
617
616
  description?: string | undefined;
617
+ required?: boolean | undefined;
618
618
  placeholder?: string | undefined;
619
619
  defaultValue?: string | undefined;
620
620
  rows?: number | undefined;
@@ -622,8 +622,8 @@ export declare class WaitStep extends BaseActionStep<typeof WaitStepConfigSchema
622
622
  type: "textarea";
623
623
  name: string;
624
624
  label: string;
625
- required?: boolean | undefined;
626
625
  description?: string | undefined;
626
+ required?: boolean | undefined;
627
627
  placeholder?: string | undefined;
628
628
  defaultValue?: string | undefined;
629
629
  rows?: number | undefined;
@@ -641,20 +641,20 @@ export declare class WaitStep extends BaseActionStep<typeof WaitStepConfigSchema
641
641
  type: "number";
642
642
  name: string;
643
643
  label: string;
644
+ description?: string | undefined;
644
645
  min?: number | undefined;
645
646
  max?: number | undefined;
646
647
  required?: boolean | undefined;
647
- description?: string | undefined;
648
648
  placeholder?: string | undefined;
649
649
  defaultValue?: number | undefined;
650
650
  }, {
651
651
  type: "number";
652
652
  name: string;
653
653
  label: string;
654
+ description?: string | undefined;
654
655
  min?: number | undefined;
655
656
  max?: number | undefined;
656
657
  required?: boolean | undefined;
657
- description?: string | undefined;
658
658
  placeholder?: string | undefined;
659
659
  defaultValue?: number | undefined;
660
660
  }>, z.ZodObject<{
@@ -684,8 +684,8 @@ export declare class WaitStep extends BaseActionStep<typeof WaitStepConfigSchema
684
684
  type: "select";
685
685
  name: string;
686
686
  label: string;
687
- required?: boolean | undefined;
688
687
  description?: string | undefined;
688
+ required?: boolean | undefined;
689
689
  placeholder?: string | undefined;
690
690
  defaultValue?: string | undefined;
691
691
  allowCustomValue?: boolean | undefined;
@@ -697,8 +697,8 @@ export declare class WaitStep extends BaseActionStep<typeof WaitStepConfigSchema
697
697
  type: "select";
698
698
  name: string;
699
699
  label: string;
700
- required?: boolean | undefined;
701
700
  description?: string | undefined;
701
+ required?: boolean | undefined;
702
702
  placeholder?: string | undefined;
703
703
  defaultValue?: string | undefined;
704
704
  allowCustomValue?: boolean | undefined;
@@ -713,15 +713,15 @@ export declare class WaitStep extends BaseActionStep<typeof WaitStepConfigSchema
713
713
  type: "checkbox";
714
714
  name: string;
715
715
  label: string;
716
- required?: boolean | undefined;
717
716
  description?: string | undefined;
717
+ required?: boolean | undefined;
718
718
  defaultValue?: boolean | undefined;
719
719
  }, {
720
720
  type: "checkbox";
721
721
  name: string;
722
722
  label: string;
723
- required?: boolean | undefined;
724
723
  description?: string | undefined;
724
+ required?: boolean | undefined;
725
725
  defaultValue?: boolean | undefined;
726
726
  }>, z.ZodObject<{
727
727
  type: z.ZodLiteral<"attachment">;
@@ -741,8 +741,8 @@ export declare class WaitStep extends BaseActionStep<typeof WaitStepConfigSchema
741
741
  maxSize?: number | undefined;
742
742
  multiple?: boolean | undefined;
743
743
  maxItems?: number | undefined;
744
- required?: boolean | undefined;
745
744
  description?: string | undefined;
745
+ required?: boolean | undefined;
746
746
  }, {
747
747
  type: "attachment";
748
748
  name: string;
@@ -751,8 +751,8 @@ export declare class WaitStep extends BaseActionStep<typeof WaitStepConfigSchema
751
751
  maxSize?: number | undefined;
752
752
  multiple?: boolean | undefined;
753
753
  maxItems?: number | undefined;
754
- required?: boolean | undefined;
755
754
  description?: string | undefined;
755
+ required?: boolean | undefined;
756
756
  }>]>, "many">;
757
757
  description: z.ZodOptional<z.ZodString>;
758
758
  }, "strip", z.ZodTypeAny, {
@@ -760,16 +760,16 @@ export declare class WaitStep extends BaseActionStep<typeof WaitStepConfigSchema
760
760
  type: "text";
761
761
  name: string;
762
762
  label: string;
763
- required?: boolean | undefined;
764
763
  description?: string | undefined;
764
+ required?: boolean | undefined;
765
765
  placeholder?: string | undefined;
766
766
  defaultValue?: string | undefined;
767
767
  } | {
768
768
  type: "textarea";
769
769
  name: string;
770
770
  label: string;
771
- required?: boolean | undefined;
772
771
  description?: string | undefined;
772
+ required?: boolean | undefined;
773
773
  placeholder?: string | undefined;
774
774
  defaultValue?: string | undefined;
775
775
  rows?: number | undefined;
@@ -777,10 +777,10 @@ export declare class WaitStep extends BaseActionStep<typeof WaitStepConfigSchema
777
777
  type: "number";
778
778
  name: string;
779
779
  label: string;
780
+ description?: string | undefined;
780
781
  min?: number | undefined;
781
782
  max?: number | undefined;
782
783
  required?: boolean | undefined;
783
- description?: string | undefined;
784
784
  placeholder?: string | undefined;
785
785
  defaultValue?: number | undefined;
786
786
  } | {
@@ -791,8 +791,8 @@ export declare class WaitStep extends BaseActionStep<typeof WaitStepConfigSchema
791
791
  type: "select";
792
792
  name: string;
793
793
  label: string;
794
- required?: boolean | undefined;
795
794
  description?: string | undefined;
795
+ required?: boolean | undefined;
796
796
  placeholder?: string | undefined;
797
797
  defaultValue?: string | undefined;
798
798
  allowCustomValue?: boolean | undefined;
@@ -800,8 +800,8 @@ export declare class WaitStep extends BaseActionStep<typeof WaitStepConfigSchema
800
800
  type: "checkbox";
801
801
  name: string;
802
802
  label: string;
803
- required?: boolean | undefined;
804
803
  description?: string | undefined;
804
+ required?: boolean | undefined;
805
805
  defaultValue?: boolean | undefined;
806
806
  } | {
807
807
  type: "attachment";
@@ -811,8 +811,8 @@ export declare class WaitStep extends BaseActionStep<typeof WaitStepConfigSchema
811
811
  maxSize?: number | undefined;
812
812
  multiple?: boolean | undefined;
813
813
  maxItems?: number | undefined;
814
- required?: boolean | undefined;
815
814
  description?: string | undefined;
815
+ required?: boolean | undefined;
816
816
  })[];
817
817
  description?: string | undefined;
818
818
  }, {
@@ -820,16 +820,16 @@ export declare class WaitStep extends BaseActionStep<typeof WaitStepConfigSchema
820
820
  type: "text";
821
821
  name: string;
822
822
  label: string;
823
- required?: boolean | undefined;
824
823
  description?: string | undefined;
824
+ required?: boolean | undefined;
825
825
  placeholder?: string | undefined;
826
826
  defaultValue?: string | undefined;
827
827
  } | {
828
828
  type: "textarea";
829
829
  name: string;
830
830
  label: string;
831
- required?: boolean | undefined;
832
831
  description?: string | undefined;
832
+ required?: boolean | undefined;
833
833
  placeholder?: string | undefined;
834
834
  defaultValue?: string | undefined;
835
835
  rows?: number | undefined;
@@ -837,10 +837,10 @@ export declare class WaitStep extends BaseActionStep<typeof WaitStepConfigSchema
837
837
  type: "number";
838
838
  name: string;
839
839
  label: string;
840
+ description?: string | undefined;
840
841
  min?: number | undefined;
841
842
  max?: number | undefined;
842
843
  required?: boolean | undefined;
843
- description?: string | undefined;
844
844
  placeholder?: string | undefined;
845
845
  defaultValue?: number | undefined;
846
846
  } | {
@@ -851,8 +851,8 @@ export declare class WaitStep extends BaseActionStep<typeof WaitStepConfigSchema
851
851
  type: "select";
852
852
  name: string;
853
853
  label: string;
854
- required?: boolean | undefined;
855
854
  description?: string | undefined;
855
+ required?: boolean | undefined;
856
856
  placeholder?: string | undefined;
857
857
  defaultValue?: string | undefined;
858
858
  allowCustomValue?: boolean | undefined;
@@ -860,8 +860,8 @@ export declare class WaitStep extends BaseActionStep<typeof WaitStepConfigSchema
860
860
  type: "checkbox";
861
861
  name: string;
862
862
  label: string;
863
- required?: boolean | undefined;
864
863
  description?: string | undefined;
864
+ required?: boolean | undefined;
865
865
  defaultValue?: boolean | undefined;
866
866
  } | {
867
867
  type: "attachment";
@@ -871,8 +871,8 @@ export declare class WaitStep extends BaseActionStep<typeof WaitStepConfigSchema
871
871
  maxSize?: number | undefined;
872
872
  multiple?: boolean | undefined;
873
873
  maxItems?: number | undefined;
874
- required?: boolean | undefined;
875
874
  description?: string | undefined;
875
+ required?: boolean | undefined;
876
876
  })[];
877
877
  description?: string | undefined;
878
878
  }>>;
@@ -909,16 +909,16 @@ export declare class WaitStep extends BaseActionStep<typeof WaitStepConfigSchema
909
909
  type: "text";
910
910
  name: string;
911
911
  label: string;
912
- required?: boolean | undefined;
913
912
  description?: string | undefined;
913
+ required?: boolean | undefined;
914
914
  placeholder?: string | undefined;
915
915
  defaultValue?: string | undefined;
916
916
  } | {
917
917
  type: "textarea";
918
918
  name: string;
919
919
  label: string;
920
- required?: boolean | undefined;
921
920
  description?: string | undefined;
921
+ required?: boolean | undefined;
922
922
  placeholder?: string | undefined;
923
923
  defaultValue?: string | undefined;
924
924
  rows?: number | undefined;
@@ -926,10 +926,10 @@ export declare class WaitStep extends BaseActionStep<typeof WaitStepConfigSchema
926
926
  type: "number";
927
927
  name: string;
928
928
  label: string;
929
+ description?: string | undefined;
929
930
  min?: number | undefined;
930
931
  max?: number | undefined;
931
932
  required?: boolean | undefined;
932
- description?: string | undefined;
933
933
  placeholder?: string | undefined;
934
934
  defaultValue?: number | undefined;
935
935
  } | {
@@ -940,8 +940,8 @@ export declare class WaitStep extends BaseActionStep<typeof WaitStepConfigSchema
940
940
  type: "select";
941
941
  name: string;
942
942
  label: string;
943
- required?: boolean | undefined;
944
943
  description?: string | undefined;
944
+ required?: boolean | undefined;
945
945
  placeholder?: string | undefined;
946
946
  defaultValue?: string | undefined;
947
947
  allowCustomValue?: boolean | undefined;
@@ -949,8 +949,8 @@ export declare class WaitStep extends BaseActionStep<typeof WaitStepConfigSchema
949
949
  type: "checkbox";
950
950
  name: string;
951
951
  label: string;
952
- required?: boolean | undefined;
953
952
  description?: string | undefined;
953
+ required?: boolean | undefined;
954
954
  defaultValue?: boolean | undefined;
955
955
  } | {
956
956
  type: "attachment";
@@ -960,8 +960,8 @@ export declare class WaitStep extends BaseActionStep<typeof WaitStepConfigSchema
960
960
  maxSize?: number | undefined;
961
961
  multiple?: boolean | undefined;
962
962
  maxItems?: number | undefined;
963
- required?: boolean | undefined;
964
963
  description?: string | undefined;
964
+ required?: boolean | undefined;
965
965
  })[];
966
966
  description?: string | undefined;
967
967
  } | undefined;
@@ -986,16 +986,16 @@ export declare class WaitStep extends BaseActionStep<typeof WaitStepConfigSchema
986
986
  type: "text";
987
987
  name: string;
988
988
  label: string;
989
- required?: boolean | undefined;
990
989
  description?: string | undefined;
990
+ required?: boolean | undefined;
991
991
  placeholder?: string | undefined;
992
992
  defaultValue?: string | undefined;
993
993
  } | {
994
994
  type: "textarea";
995
995
  name: string;
996
996
  label: string;
997
- required?: boolean | undefined;
998
997
  description?: string | undefined;
998
+ required?: boolean | undefined;
999
999
  placeholder?: string | undefined;
1000
1000
  defaultValue?: string | undefined;
1001
1001
  rows?: number | undefined;
@@ -1003,10 +1003,10 @@ export declare class WaitStep extends BaseActionStep<typeof WaitStepConfigSchema
1003
1003
  type: "number";
1004
1004
  name: string;
1005
1005
  label: string;
1006
+ description?: string | undefined;
1006
1007
  min?: number | undefined;
1007
1008
  max?: number | undefined;
1008
1009
  required?: boolean | undefined;
1009
- description?: string | undefined;
1010
1010
  placeholder?: string | undefined;
1011
1011
  defaultValue?: number | undefined;
1012
1012
  } | {
@@ -1017,8 +1017,8 @@ export declare class WaitStep extends BaseActionStep<typeof WaitStepConfigSchema
1017
1017
  type: "select";
1018
1018
  name: string;
1019
1019
  label: string;
1020
- required?: boolean | undefined;
1021
1020
  description?: string | undefined;
1021
+ required?: boolean | undefined;
1022
1022
  placeholder?: string | undefined;
1023
1023
  defaultValue?: string | undefined;
1024
1024
  allowCustomValue?: boolean | undefined;
@@ -1026,8 +1026,8 @@ export declare class WaitStep extends BaseActionStep<typeof WaitStepConfigSchema
1026
1026
  type: "checkbox";
1027
1027
  name: string;
1028
1028
  label: string;
1029
- required?: boolean | undefined;
1030
1029
  description?: string | undefined;
1030
+ required?: boolean | undefined;
1031
1031
  defaultValue?: boolean | undefined;
1032
1032
  } | {
1033
1033
  type: "attachment";
@@ -1037,8 +1037,8 @@ export declare class WaitStep extends BaseActionStep<typeof WaitStepConfigSchema
1037
1037
  maxSize?: number | undefined;
1038
1038
  multiple?: boolean | undefined;
1039
1039
  maxItems?: number | undefined;
1040
- required?: boolean | undefined;
1041
1040
  description?: string | undefined;
1041
+ required?: boolean | undefined;
1042
1042
  })[];
1043
1043
  description?: string | undefined;
1044
1044
  } | undefined;