@rlvt/workflows-openapi-client 1.0.596 → 1.0.597

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/build/api.d.ts ADDED
@@ -0,0 +1,1633 @@
1
+ import { AxiosInstance, AxiosRequestConfig } from "axios";
2
+ import type { WorkflowStatus, WorkflowVersionState } from "./definitions";
3
+ export * from "./definitions";
4
+ export default class {
5
+ axios: AxiosInstance;
6
+ constructor(configOrInstance: AxiosRequestConfig | AxiosInstance);
7
+ private listTemplatesWorkflow;
8
+ private listTemplateCategoriesWorkflow;
9
+ private listWorkflow;
10
+ private createWorkflow;
11
+ private getWorkflow;
12
+ private updateWorkflow;
13
+ private deleteWorkflow;
14
+ private duplicateWorkflow;
15
+ private publishWorkflow;
16
+ private updateVersionWorkflow;
17
+ private redirect;
18
+ private run;
19
+ private listParameterValuesUsage;
20
+ private getWorkflowIntegrationsOptions;
21
+ private updateWorkflowIntegrationsOptions;
22
+ private listWorkflowsWithContentUsage;
23
+ private updateWorkflowsWithContentUsage;
24
+ private listWorkflowsWithDatasourceUsage;
25
+ get Workflow(): {
26
+ listTemplates: (params: {
27
+ name?: string | undefined;
28
+ categories?: string | undefined;
29
+ page?: number | undefined;
30
+ perPage?: number | undefined;
31
+ }, options?: AxiosRequestConfig<any> | undefined) => Promise<import("axios").AxiosResponse<{
32
+ data: {
33
+ name: string;
34
+ categories: string[];
35
+ description?: string | undefined;
36
+ id: string;
37
+ readonly companyId?: (string & {
38
+ readonly?: "__readonly" | undefined;
39
+ }) | undefined;
40
+ icon: string;
41
+ slug?: string | undefined;
42
+ feature?: string | undefined;
43
+ template: {
44
+ nodes: {
45
+ [x: string]: {
46
+ metadata: {
47
+ [x: string]: unknown;
48
+ };
49
+ type: string;
50
+ paths: {
51
+ options: {
52
+ [x: string]: unknown;
53
+ };
54
+ id: string;
55
+ }[];
56
+ } | {
57
+ options: {
58
+ [x: string]: unknown;
59
+ };
60
+ metadata: {
61
+ [x: string]: unknown;
62
+ };
63
+ type: string;
64
+ };
65
+ };
66
+ entrypoints: {
67
+ [x: string]: {
68
+ type: "email" | "raw" | "mobile-push-image" | "mobile-inbox-image" | "mobile-app-image" | "web-image" | "web-html" | "landing-page";
69
+ };
70
+ };
71
+ edges: {
72
+ [x: string]: {
73
+ to: string;
74
+ };
75
+ };
76
+ };
77
+ metadata?: {
78
+ [x: string]: unknown;
79
+ } | undefined;
80
+ }[];
81
+ paginationCount: number;
82
+ paginationPage: number;
83
+ paginationLimit: number;
84
+ status: "success";
85
+ program: string;
86
+ version: string;
87
+ datetime: string;
88
+ code?: number | undefined;
89
+ message: string;
90
+ }, any>>;
91
+ listTemplateCategories: (params: Record<string, never>, options?: AxiosRequestConfig<any> | undefined) => Promise<import("axios").AxiosResponse<{
92
+ data: string[];
93
+ status: "success";
94
+ program: string;
95
+ version: string;
96
+ datetime: string;
97
+ code?: number | undefined;
98
+ message: string;
99
+ }, any>>;
100
+ list: (params: {
101
+ ids?: string[] | undefined;
102
+ name?: string | undefined;
103
+ resourceGroupIds?: string[] | undefined;
104
+ status?: WorkflowStatus[] | undefined;
105
+ includeArchived?: boolean | undefined;
106
+ sortBy?: "createdAt" | "updatedAt" | undefined;
107
+ sortOrder?: "desc" | "asc" | undefined;
108
+ select?: string[] | undefined;
109
+ page?: number | undefined;
110
+ perPage?: number | undefined;
111
+ entrypointTypes?: ("email" | "raw" | "mobile-push-image" | "mobile-inbox-image" | "mobile-app-image" | "web-image" | "web-html" | "landing-page")[] | undefined;
112
+ }, options?: AxiosRequestConfig<any> | undefined) => Promise<import("axios").AxiosResponse<{
113
+ data: {
114
+ readonly status: WorkflowStatus & {
115
+ readonly?: "__readonly" | undefined;
116
+ };
117
+ name: string;
118
+ readonly createdAt: string & {
119
+ readonly?: "__readonly" | undefined;
120
+ };
121
+ readonly updatedAt: string & {
122
+ readonly?: "__readonly" | undefined;
123
+ };
124
+ resourceGroupIds: string[];
125
+ description?: string | undefined;
126
+ readonly integrations: ({
127
+ url?: unknown;
128
+ code?: string | undefined;
129
+ id: string;
130
+ display?: unknown;
131
+ click?: unknown;
132
+ type: "web-image" | "web-html";
133
+ workflowId: string;
134
+ shortId: string;
135
+ includeContext?: boolean | undefined;
136
+ domain: string;
137
+ filters?: {
138
+ type: "and" | "or";
139
+ conditions: {
140
+ values: string[];
141
+ operator: "empty" | "nempty" | "eq" | "ne" | "contains" | "notcontains";
142
+ field: string;
143
+ }[];
144
+ } | undefined;
145
+ enabled: boolean;
146
+ selector?: string | undefined;
147
+ emplacement?: "replace" | "before" | "after" | undefined;
148
+ parameters?: unknown;
149
+ } | {
150
+ url: string;
151
+ code?: unknown;
152
+ id: string;
153
+ display?: unknown;
154
+ click?: unknown;
155
+ type: "landing-page";
156
+ workflowId?: unknown;
157
+ shortId?: unknown;
158
+ includeContext?: unknown;
159
+ domain?: unknown;
160
+ filters?: unknown;
161
+ enabled?: unknown;
162
+ selector?: unknown;
163
+ emplacement?: unknown;
164
+ parameters: {
165
+ [x: string]: string;
166
+ };
167
+ } | {
168
+ url?: unknown;
169
+ code?: unknown;
170
+ id: string;
171
+ display: string;
172
+ click: string;
173
+ type: "email" | "raw" | "mobile-push-image" | "mobile-inbox-image" | "mobile-app-image";
174
+ workflowId?: unknown;
175
+ shortId?: unknown;
176
+ includeContext?: unknown;
177
+ domain?: unknown;
178
+ filters?: unknown;
179
+ enabled?: unknown;
180
+ selector?: unknown;
181
+ emplacement?: unknown;
182
+ parameters: {
183
+ [x: string]: string;
184
+ };
185
+ })[];
186
+ readonly id: string & {
187
+ readonly?: "__readonly" | undefined;
188
+ };
189
+ readonly companyId: string & {
190
+ readonly?: "__readonly" | undefined;
191
+ };
192
+ readonly versions: {
193
+ readonly createdAt: string & {
194
+ readonly?: "__readonly" | undefined;
195
+ };
196
+ readonly updatedAt: string & {
197
+ readonly?: "__readonly" | undefined;
198
+ };
199
+ id: string;
200
+ analyzeOverrides?: {
201
+ vertexIndividualizedScore: {
202
+ [x: string]: number;
203
+ };
204
+ customVertexNames: {
205
+ name: string;
206
+ vertexId: string;
207
+ }[];
208
+ } | undefined;
209
+ metadata?: {
210
+ [x: string]: unknown;
211
+ } | undefined;
212
+ readonly state: WorkflowVersionState & {
213
+ readonly?: "__readonly" | undefined;
214
+ };
215
+ definition: {
216
+ nodes: {
217
+ [x: string]: {
218
+ metadata: {
219
+ [x: string]: unknown;
220
+ };
221
+ type: string;
222
+ paths: {
223
+ options: {
224
+ [x: string]: unknown;
225
+ };
226
+ id: string;
227
+ }[];
228
+ } | {
229
+ options: {
230
+ [x: string]: unknown;
231
+ };
232
+ metadata: {
233
+ [x: string]: unknown;
234
+ };
235
+ type: string;
236
+ };
237
+ };
238
+ entrypoints: {
239
+ [x: string]: {
240
+ type: "email" | "raw" | "mobile-push-image" | "mobile-inbox-image" | "mobile-app-image" | "web-image" | "web-html" | "landing-page";
241
+ };
242
+ };
243
+ edges: {
244
+ [x: string]: {
245
+ to: string;
246
+ };
247
+ };
248
+ };
249
+ readonly analyze: {
250
+ readonly?: "__readonly" | undefined;
251
+ entrypointTypes: string[];
252
+ entrypointsByBranches: {
253
+ branch: string;
254
+ entrypointIds: string[];
255
+ }[];
256
+ branches: string[];
257
+ individualizedBranches: string[];
258
+ branchesScore: {
259
+ [x: string]: number;
260
+ };
261
+ defaultBranches: string[];
262
+ usedDatasourceFields: {
263
+ [x: string]: string[];
264
+ };
265
+ branchesInfos: {
266
+ [x: string]: (string | import("./definitions").BranchInfosElementType)[][];
267
+ };
268
+ entrypointsPerDataNodeId: {
269
+ [x: string]: string[];
270
+ };
271
+ entrypointsPerPathId: {
272
+ [x: string]: string[];
273
+ };
274
+ outputsForEntrypoint: {
275
+ [x: string]: string[];
276
+ };
277
+ datasForEntrypoint: {
278
+ [x: string]: string[];
279
+ };
280
+ };
281
+ readonly lastSavedBy?: (string & {
282
+ readonly?: "__readonly" | undefined;
283
+ }) | undefined;
284
+ changeDescription?: string | undefined;
285
+ }[];
286
+ _id: string;
287
+ variableProfileId?: string | undefined;
288
+ readonly archivedAt: string & {
289
+ readonly?: "__readonly" | undefined;
290
+ };
291
+ }[];
292
+ paginationCount: number;
293
+ paginationPage: number;
294
+ paginationLimit: number;
295
+ status: "success";
296
+ program: string;
297
+ version: string;
298
+ datetime: string;
299
+ code?: number | undefined;
300
+ message: string;
301
+ }, any>>;
302
+ create: (params: Record<string, never>, data: {
303
+ name: string;
304
+ resourceGroupIds: string[];
305
+ description?: string | undefined;
306
+ }, options?: AxiosRequestConfig<any> | undefined) => Promise<import("axios").AxiosResponse<{
307
+ data: {
308
+ readonly status: WorkflowStatus & {
309
+ readonly?: "__readonly" | undefined;
310
+ };
311
+ name: string;
312
+ readonly createdAt: string & {
313
+ readonly?: "__readonly" | undefined;
314
+ };
315
+ readonly updatedAt: string & {
316
+ readonly?: "__readonly" | undefined;
317
+ };
318
+ resourceGroupIds: string[];
319
+ description?: string | undefined;
320
+ readonly integrations: ({
321
+ url?: unknown;
322
+ code?: string | undefined;
323
+ id: string;
324
+ display?: unknown;
325
+ click?: unknown;
326
+ type: "web-image" | "web-html";
327
+ workflowId: string;
328
+ shortId: string;
329
+ includeContext?: boolean | undefined;
330
+ domain: string;
331
+ filters?: {
332
+ type: "and" | "or";
333
+ conditions: {
334
+ values: string[];
335
+ operator: "empty" | "nempty" | "eq" | "ne" | "contains" | "notcontains";
336
+ field: string;
337
+ }[];
338
+ } | undefined;
339
+ enabled: boolean;
340
+ selector?: string | undefined;
341
+ emplacement?: "replace" | "before" | "after" | undefined;
342
+ parameters?: unknown;
343
+ } | {
344
+ url: string;
345
+ code?: unknown;
346
+ id: string;
347
+ display?: unknown;
348
+ click?: unknown;
349
+ type: "landing-page";
350
+ workflowId?: unknown;
351
+ shortId?: unknown;
352
+ includeContext?: unknown;
353
+ domain?: unknown;
354
+ filters?: unknown;
355
+ enabled?: unknown;
356
+ selector?: unknown;
357
+ emplacement?: unknown;
358
+ parameters: {
359
+ [x: string]: string;
360
+ };
361
+ } | {
362
+ url?: unknown;
363
+ code?: unknown;
364
+ id: string;
365
+ display: string;
366
+ click: string;
367
+ type: "email" | "raw" | "mobile-push-image" | "mobile-inbox-image" | "mobile-app-image";
368
+ workflowId?: unknown;
369
+ shortId?: unknown;
370
+ includeContext?: unknown;
371
+ domain?: unknown;
372
+ filters?: unknown;
373
+ enabled?: unknown;
374
+ selector?: unknown;
375
+ emplacement?: unknown;
376
+ parameters: {
377
+ [x: string]: string;
378
+ };
379
+ })[];
380
+ readonly id: string & {
381
+ readonly?: "__readonly" | undefined;
382
+ };
383
+ readonly companyId: string & {
384
+ readonly?: "__readonly" | undefined;
385
+ };
386
+ readonly versions: {
387
+ readonly createdAt: string & {
388
+ readonly?: "__readonly" | undefined;
389
+ };
390
+ readonly updatedAt: string & {
391
+ readonly?: "__readonly" | undefined;
392
+ };
393
+ id: string;
394
+ analyzeOverrides?: {
395
+ vertexIndividualizedScore: {
396
+ [x: string]: number;
397
+ };
398
+ customVertexNames: {
399
+ name: string;
400
+ vertexId: string;
401
+ }[];
402
+ } | undefined;
403
+ metadata?: {
404
+ [x: string]: unknown;
405
+ } | undefined;
406
+ readonly state: WorkflowVersionState & {
407
+ readonly?: "__readonly" | undefined;
408
+ };
409
+ definition: {
410
+ nodes: {
411
+ [x: string]: {
412
+ metadata: {
413
+ [x: string]: unknown;
414
+ };
415
+ type: string;
416
+ paths: {
417
+ options: {
418
+ [x: string]: unknown;
419
+ };
420
+ id: string;
421
+ }[];
422
+ } | {
423
+ options: {
424
+ [x: string]: unknown;
425
+ };
426
+ metadata: {
427
+ [x: string]: unknown;
428
+ };
429
+ type: string;
430
+ };
431
+ };
432
+ entrypoints: {
433
+ [x: string]: {
434
+ type: "email" | "raw" | "mobile-push-image" | "mobile-inbox-image" | "mobile-app-image" | "web-image" | "web-html" | "landing-page";
435
+ };
436
+ };
437
+ edges: {
438
+ [x: string]: {
439
+ to: string;
440
+ };
441
+ };
442
+ };
443
+ readonly analyze: {
444
+ readonly?: "__readonly" | undefined;
445
+ entrypointTypes: string[];
446
+ entrypointsByBranches: {
447
+ branch: string;
448
+ entrypointIds: string[];
449
+ }[];
450
+ branches: string[];
451
+ individualizedBranches: string[];
452
+ branchesScore: {
453
+ [x: string]: number;
454
+ };
455
+ defaultBranches: string[];
456
+ usedDatasourceFields: {
457
+ [x: string]: string[];
458
+ };
459
+ branchesInfos: {
460
+ [x: string]: (string | import("./definitions").BranchInfosElementType)[][];
461
+ };
462
+ entrypointsPerDataNodeId: {
463
+ [x: string]: string[];
464
+ };
465
+ entrypointsPerPathId: {
466
+ [x: string]: string[];
467
+ };
468
+ outputsForEntrypoint: {
469
+ [x: string]: string[];
470
+ };
471
+ datasForEntrypoint: {
472
+ [x: string]: string[];
473
+ };
474
+ };
475
+ readonly lastSavedBy?: (string & {
476
+ readonly?: "__readonly" | undefined;
477
+ }) | undefined;
478
+ changeDescription?: string | undefined;
479
+ }[];
480
+ _id: string;
481
+ variableProfileId?: string | undefined;
482
+ readonly archivedAt: string & {
483
+ readonly?: "__readonly" | undefined;
484
+ };
485
+ };
486
+ status: "success";
487
+ program: string;
488
+ version: string;
489
+ datetime: string;
490
+ code?: number | undefined;
491
+ message: string;
492
+ }, any>>;
493
+ get: (params: {
494
+ id: string;
495
+ versionId?: string | undefined;
496
+ versions?: WorkflowVersionState[] | undefined;
497
+ select?: string[] | undefined;
498
+ }, options?: AxiosRequestConfig<any> | undefined) => Promise<import("axios").AxiosResponse<{
499
+ data: {
500
+ readonly status: WorkflowStatus & {
501
+ readonly?: "__readonly" | undefined;
502
+ };
503
+ name: string;
504
+ readonly createdAt: string & {
505
+ readonly?: "__readonly" | undefined;
506
+ };
507
+ readonly updatedAt: string & {
508
+ readonly?: "__readonly" | undefined;
509
+ };
510
+ resourceGroupIds: string[];
511
+ description?: string | undefined;
512
+ readonly integrations: ({
513
+ url?: unknown;
514
+ code?: string | undefined;
515
+ id: string;
516
+ display?: unknown;
517
+ click?: unknown;
518
+ type: "web-image" | "web-html";
519
+ workflowId: string;
520
+ shortId: string;
521
+ includeContext?: boolean | undefined;
522
+ domain: string;
523
+ filters?: {
524
+ type: "and" | "or";
525
+ conditions: {
526
+ values: string[];
527
+ operator: "empty" | "nempty" | "eq" | "ne" | "contains" | "notcontains";
528
+ field: string;
529
+ }[];
530
+ } | undefined;
531
+ enabled: boolean;
532
+ selector?: string | undefined;
533
+ emplacement?: "replace" | "before" | "after" | undefined;
534
+ parameters?: unknown;
535
+ } | {
536
+ url: string;
537
+ code?: unknown;
538
+ id: string;
539
+ display?: unknown;
540
+ click?: unknown;
541
+ type: "landing-page";
542
+ workflowId?: unknown;
543
+ shortId?: unknown;
544
+ includeContext?: unknown;
545
+ domain?: unknown;
546
+ filters?: unknown;
547
+ enabled?: unknown;
548
+ selector?: unknown;
549
+ emplacement?: unknown;
550
+ parameters: {
551
+ [x: string]: string;
552
+ };
553
+ } | {
554
+ url?: unknown;
555
+ code?: unknown;
556
+ id: string;
557
+ display: string;
558
+ click: string;
559
+ type: "email" | "raw" | "mobile-push-image" | "mobile-inbox-image" | "mobile-app-image";
560
+ workflowId?: unknown;
561
+ shortId?: unknown;
562
+ includeContext?: unknown;
563
+ domain?: unknown;
564
+ filters?: unknown;
565
+ enabled?: unknown;
566
+ selector?: unknown;
567
+ emplacement?: unknown;
568
+ parameters: {
569
+ [x: string]: string;
570
+ };
571
+ })[];
572
+ readonly id: string & {
573
+ readonly?: "__readonly" | undefined;
574
+ };
575
+ readonly companyId: string & {
576
+ readonly?: "__readonly" | undefined;
577
+ };
578
+ readonly versions: {
579
+ readonly createdAt: string & {
580
+ readonly?: "__readonly" | undefined;
581
+ };
582
+ readonly updatedAt: string & {
583
+ readonly?: "__readonly" | undefined;
584
+ };
585
+ id: string;
586
+ analyzeOverrides?: {
587
+ vertexIndividualizedScore: {
588
+ [x: string]: number;
589
+ };
590
+ customVertexNames: {
591
+ name: string;
592
+ vertexId: string;
593
+ }[];
594
+ } | undefined;
595
+ metadata?: {
596
+ [x: string]: unknown;
597
+ } | undefined;
598
+ readonly state: WorkflowVersionState & {
599
+ readonly?: "__readonly" | undefined;
600
+ };
601
+ definition: {
602
+ nodes: {
603
+ [x: string]: {
604
+ metadata: {
605
+ [x: string]: unknown;
606
+ };
607
+ type: string;
608
+ paths: {
609
+ options: {
610
+ [x: string]: unknown;
611
+ };
612
+ id: string;
613
+ }[];
614
+ } | {
615
+ options: {
616
+ [x: string]: unknown;
617
+ };
618
+ metadata: {
619
+ [x: string]: unknown;
620
+ };
621
+ type: string;
622
+ };
623
+ };
624
+ entrypoints: {
625
+ [x: string]: {
626
+ type: "email" | "raw" | "mobile-push-image" | "mobile-inbox-image" | "mobile-app-image" | "web-image" | "web-html" | "landing-page";
627
+ };
628
+ };
629
+ edges: {
630
+ [x: string]: {
631
+ to: string;
632
+ };
633
+ };
634
+ };
635
+ readonly analyze: {
636
+ readonly?: "__readonly" | undefined;
637
+ entrypointTypes: string[];
638
+ entrypointsByBranches: {
639
+ branch: string;
640
+ entrypointIds: string[];
641
+ }[];
642
+ branches: string[];
643
+ individualizedBranches: string[];
644
+ branchesScore: {
645
+ [x: string]: number;
646
+ };
647
+ defaultBranches: string[];
648
+ usedDatasourceFields: {
649
+ [x: string]: string[];
650
+ };
651
+ branchesInfos: {
652
+ [x: string]: (string | import("./definitions").BranchInfosElementType)[][];
653
+ };
654
+ entrypointsPerDataNodeId: {
655
+ [x: string]: string[];
656
+ };
657
+ entrypointsPerPathId: {
658
+ [x: string]: string[];
659
+ };
660
+ outputsForEntrypoint: {
661
+ [x: string]: string[];
662
+ };
663
+ datasForEntrypoint: {
664
+ [x: string]: string[];
665
+ };
666
+ };
667
+ readonly lastSavedBy?: (string & {
668
+ readonly?: "__readonly" | undefined;
669
+ }) | undefined;
670
+ changeDescription?: string | undefined;
671
+ }[];
672
+ _id: string;
673
+ variableProfileId?: string | undefined;
674
+ readonly archivedAt: string & {
675
+ readonly?: "__readonly" | undefined;
676
+ };
677
+ };
678
+ status: "success";
679
+ program: string;
680
+ version: string;
681
+ datetime: string;
682
+ code?: number | undefined;
683
+ message: string;
684
+ }, any>>;
685
+ update: (params: {
686
+ id: string;
687
+ }, data: {
688
+ name?: string | undefined;
689
+ description?: string | undefined;
690
+ resourceGroupIds?: string[] | undefined;
691
+ variableProfileId?: string | undefined;
692
+ } & {
693
+ metadata?: {
694
+ [key: string]: unknown;
695
+ } | undefined;
696
+ definition?: {
697
+ nodes: {
698
+ [x: string]: {
699
+ metadata: {
700
+ [x: string]: unknown;
701
+ };
702
+ type: string;
703
+ paths: {
704
+ options: {
705
+ [x: string]: unknown;
706
+ };
707
+ id: string;
708
+ }[];
709
+ } | {
710
+ options: {
711
+ [x: string]: unknown;
712
+ };
713
+ metadata: {
714
+ [x: string]: unknown;
715
+ };
716
+ type: string;
717
+ };
718
+ };
719
+ entrypoints: {
720
+ [x: string]: {
721
+ type: "email" | "raw" | "mobile-push-image" | "mobile-inbox-image" | "mobile-app-image" | "web-image" | "web-html" | "landing-page";
722
+ };
723
+ };
724
+ edges: {
725
+ [x: string]: {
726
+ to: string;
727
+ };
728
+ };
729
+ } | undefined;
730
+ analyzeOverrides?: {
731
+ vertexIndividualizedScore: {
732
+ [x: string]: number;
733
+ };
734
+ customVertexNames: {
735
+ name: string;
736
+ vertexId: string;
737
+ }[];
738
+ } | undefined;
739
+ changeDescription?: string | undefined;
740
+ }, options?: AxiosRequestConfig<any> | undefined) => Promise<import("axios").AxiosResponse<{
741
+ data: {
742
+ readonly status: WorkflowStatus & {
743
+ readonly?: "__readonly" | undefined;
744
+ };
745
+ name: string;
746
+ readonly createdAt: string & {
747
+ readonly?: "__readonly" | undefined;
748
+ };
749
+ readonly updatedAt: string & {
750
+ readonly?: "__readonly" | undefined;
751
+ };
752
+ resourceGroupIds: string[];
753
+ description?: string | undefined;
754
+ readonly integrations: ({
755
+ url?: unknown;
756
+ code?: string | undefined;
757
+ id: string;
758
+ display?: unknown;
759
+ click?: unknown;
760
+ type: "web-image" | "web-html";
761
+ workflowId: string;
762
+ shortId: string;
763
+ includeContext?: boolean | undefined;
764
+ domain: string;
765
+ filters?: {
766
+ type: "and" | "or";
767
+ conditions: {
768
+ values: string[];
769
+ operator: "empty" | "nempty" | "eq" | "ne" | "contains" | "notcontains";
770
+ field: string;
771
+ }[];
772
+ } | undefined;
773
+ enabled: boolean;
774
+ selector?: string | undefined;
775
+ emplacement?: "replace" | "before" | "after" | undefined;
776
+ parameters?: unknown;
777
+ } | {
778
+ url: string;
779
+ code?: unknown;
780
+ id: string;
781
+ display?: unknown;
782
+ click?: unknown;
783
+ type: "landing-page";
784
+ workflowId?: unknown;
785
+ shortId?: unknown;
786
+ includeContext?: unknown;
787
+ domain?: unknown;
788
+ filters?: unknown;
789
+ enabled?: unknown;
790
+ selector?: unknown;
791
+ emplacement?: unknown;
792
+ parameters: {
793
+ [x: string]: string;
794
+ };
795
+ } | {
796
+ url?: unknown;
797
+ code?: unknown;
798
+ id: string;
799
+ display: string;
800
+ click: string;
801
+ type: "email" | "raw" | "mobile-push-image" | "mobile-inbox-image" | "mobile-app-image";
802
+ workflowId?: unknown;
803
+ shortId?: unknown;
804
+ includeContext?: unknown;
805
+ domain?: unknown;
806
+ filters?: unknown;
807
+ enabled?: unknown;
808
+ selector?: unknown;
809
+ emplacement?: unknown;
810
+ parameters: {
811
+ [x: string]: string;
812
+ };
813
+ })[];
814
+ readonly id: string & {
815
+ readonly?: "__readonly" | undefined;
816
+ };
817
+ readonly companyId: string & {
818
+ readonly?: "__readonly" | undefined;
819
+ };
820
+ readonly versions: {
821
+ readonly createdAt: string & {
822
+ readonly?: "__readonly" | undefined;
823
+ };
824
+ readonly updatedAt: string & {
825
+ readonly?: "__readonly" | undefined;
826
+ };
827
+ id: string;
828
+ analyzeOverrides?: {
829
+ vertexIndividualizedScore: {
830
+ [x: string]: number;
831
+ };
832
+ customVertexNames: {
833
+ name: string;
834
+ vertexId: string;
835
+ }[];
836
+ } | undefined;
837
+ metadata?: {
838
+ [x: string]: unknown;
839
+ } | undefined;
840
+ readonly state: WorkflowVersionState & {
841
+ readonly?: "__readonly" | undefined;
842
+ };
843
+ definition: {
844
+ nodes: {
845
+ [x: string]: {
846
+ metadata: {
847
+ [x: string]: unknown;
848
+ };
849
+ type: string;
850
+ paths: {
851
+ options: {
852
+ [x: string]: unknown;
853
+ };
854
+ id: string;
855
+ }[];
856
+ } | {
857
+ options: {
858
+ [x: string]: unknown;
859
+ };
860
+ metadata: {
861
+ [x: string]: unknown;
862
+ };
863
+ type: string;
864
+ };
865
+ };
866
+ entrypoints: {
867
+ [x: string]: {
868
+ type: "email" | "raw" | "mobile-push-image" | "mobile-inbox-image" | "mobile-app-image" | "web-image" | "web-html" | "landing-page";
869
+ };
870
+ };
871
+ edges: {
872
+ [x: string]: {
873
+ to: string;
874
+ };
875
+ };
876
+ };
877
+ readonly analyze: {
878
+ readonly?: "__readonly" | undefined;
879
+ entrypointTypes: string[];
880
+ entrypointsByBranches: {
881
+ branch: string;
882
+ entrypointIds: string[];
883
+ }[];
884
+ branches: string[];
885
+ individualizedBranches: string[];
886
+ branchesScore: {
887
+ [x: string]: number;
888
+ };
889
+ defaultBranches: string[];
890
+ usedDatasourceFields: {
891
+ [x: string]: string[];
892
+ };
893
+ branchesInfos: {
894
+ [x: string]: (string | import("./definitions").BranchInfosElementType)[][];
895
+ };
896
+ entrypointsPerDataNodeId: {
897
+ [x: string]: string[];
898
+ };
899
+ entrypointsPerPathId: {
900
+ [x: string]: string[];
901
+ };
902
+ outputsForEntrypoint: {
903
+ [x: string]: string[];
904
+ };
905
+ datasForEntrypoint: {
906
+ [x: string]: string[];
907
+ };
908
+ };
909
+ readonly lastSavedBy?: (string & {
910
+ readonly?: "__readonly" | undefined;
911
+ }) | undefined;
912
+ changeDescription?: string | undefined;
913
+ }[];
914
+ _id: string;
915
+ variableProfileId?: string | undefined;
916
+ readonly archivedAt: string & {
917
+ readonly?: "__readonly" | undefined;
918
+ };
919
+ };
920
+ status: "success";
921
+ program: string;
922
+ version: string;
923
+ datetime: string;
924
+ code?: number | undefined;
925
+ message: string;
926
+ }, any>>;
927
+ delete: (params: {
928
+ id: string;
929
+ }, options?: AxiosRequestConfig<any> | undefined) => Promise<import("axios").AxiosResponse<{
930
+ data: unknown;
931
+ status: "success";
932
+ program: string;
933
+ version: string;
934
+ datetime: string;
935
+ code?: number | undefined;
936
+ message: string;
937
+ }, any>>;
938
+ duplicate: (params: Record<string, never>, data: {
939
+ sourceId: string;
940
+ }, options?: AxiosRequestConfig<any> | undefined) => Promise<import("axios").AxiosResponse<{
941
+ data: {
942
+ readonly status: WorkflowStatus & {
943
+ readonly?: "__readonly" | undefined;
944
+ };
945
+ name: string;
946
+ readonly createdAt: string & {
947
+ readonly?: "__readonly" | undefined;
948
+ };
949
+ readonly updatedAt: string & {
950
+ readonly?: "__readonly" | undefined;
951
+ };
952
+ resourceGroupIds: string[];
953
+ description?: string | undefined;
954
+ readonly integrations: ({
955
+ url?: unknown;
956
+ code?: string | undefined;
957
+ id: string;
958
+ display?: unknown;
959
+ click?: unknown;
960
+ type: "web-image" | "web-html";
961
+ workflowId: string;
962
+ shortId: string;
963
+ includeContext?: boolean | undefined;
964
+ domain: string;
965
+ filters?: {
966
+ type: "and" | "or";
967
+ conditions: {
968
+ values: string[];
969
+ operator: "empty" | "nempty" | "eq" | "ne" | "contains" | "notcontains";
970
+ field: string;
971
+ }[];
972
+ } | undefined;
973
+ enabled: boolean;
974
+ selector?: string | undefined;
975
+ emplacement?: "replace" | "before" | "after" | undefined;
976
+ parameters?: unknown;
977
+ } | {
978
+ url: string;
979
+ code?: unknown;
980
+ id: string;
981
+ display?: unknown;
982
+ click?: unknown;
983
+ type: "landing-page";
984
+ workflowId?: unknown;
985
+ shortId?: unknown;
986
+ includeContext?: unknown;
987
+ domain?: unknown;
988
+ filters?: unknown;
989
+ enabled?: unknown;
990
+ selector?: unknown;
991
+ emplacement?: unknown;
992
+ parameters: {
993
+ [x: string]: string;
994
+ };
995
+ } | {
996
+ url?: unknown;
997
+ code?: unknown;
998
+ id: string;
999
+ display: string;
1000
+ click: string;
1001
+ type: "email" | "raw" | "mobile-push-image" | "mobile-inbox-image" | "mobile-app-image";
1002
+ workflowId?: unknown;
1003
+ shortId?: unknown;
1004
+ includeContext?: unknown;
1005
+ domain?: unknown;
1006
+ filters?: unknown;
1007
+ enabled?: unknown;
1008
+ selector?: unknown;
1009
+ emplacement?: unknown;
1010
+ parameters: {
1011
+ [x: string]: string;
1012
+ };
1013
+ })[];
1014
+ readonly id: string & {
1015
+ readonly?: "__readonly" | undefined;
1016
+ };
1017
+ readonly companyId: string & {
1018
+ readonly?: "__readonly" | undefined;
1019
+ };
1020
+ readonly versions: {
1021
+ readonly createdAt: string & {
1022
+ readonly?: "__readonly" | undefined;
1023
+ };
1024
+ readonly updatedAt: string & {
1025
+ readonly?: "__readonly" | undefined;
1026
+ };
1027
+ id: string;
1028
+ analyzeOverrides?: {
1029
+ vertexIndividualizedScore: {
1030
+ [x: string]: number;
1031
+ };
1032
+ customVertexNames: {
1033
+ name: string;
1034
+ vertexId: string;
1035
+ }[];
1036
+ } | undefined;
1037
+ metadata?: {
1038
+ [x: string]: unknown;
1039
+ } | undefined;
1040
+ readonly state: WorkflowVersionState & {
1041
+ readonly?: "__readonly" | undefined;
1042
+ };
1043
+ definition: {
1044
+ nodes: {
1045
+ [x: string]: {
1046
+ metadata: {
1047
+ [x: string]: unknown;
1048
+ };
1049
+ type: string;
1050
+ paths: {
1051
+ options: {
1052
+ [x: string]: unknown;
1053
+ };
1054
+ id: string;
1055
+ }[];
1056
+ } | {
1057
+ options: {
1058
+ [x: string]: unknown;
1059
+ };
1060
+ metadata: {
1061
+ [x: string]: unknown;
1062
+ };
1063
+ type: string;
1064
+ };
1065
+ };
1066
+ entrypoints: {
1067
+ [x: string]: {
1068
+ type: "email" | "raw" | "mobile-push-image" | "mobile-inbox-image" | "mobile-app-image" | "web-image" | "web-html" | "landing-page";
1069
+ };
1070
+ };
1071
+ edges: {
1072
+ [x: string]: {
1073
+ to: string;
1074
+ };
1075
+ };
1076
+ };
1077
+ readonly analyze: {
1078
+ readonly?: "__readonly" | undefined;
1079
+ entrypointTypes: string[];
1080
+ entrypointsByBranches: {
1081
+ branch: string;
1082
+ entrypointIds: string[];
1083
+ }[];
1084
+ branches: string[];
1085
+ individualizedBranches: string[];
1086
+ branchesScore: {
1087
+ [x: string]: number;
1088
+ };
1089
+ defaultBranches: string[];
1090
+ usedDatasourceFields: {
1091
+ [x: string]: string[];
1092
+ };
1093
+ branchesInfos: {
1094
+ [x: string]: (string | import("./definitions").BranchInfosElementType)[][];
1095
+ };
1096
+ entrypointsPerDataNodeId: {
1097
+ [x: string]: string[];
1098
+ };
1099
+ entrypointsPerPathId: {
1100
+ [x: string]: string[];
1101
+ };
1102
+ outputsForEntrypoint: {
1103
+ [x: string]: string[];
1104
+ };
1105
+ datasForEntrypoint: {
1106
+ [x: string]: string[];
1107
+ };
1108
+ };
1109
+ readonly lastSavedBy?: (string & {
1110
+ readonly?: "__readonly" | undefined;
1111
+ }) | undefined;
1112
+ changeDescription?: string | undefined;
1113
+ }[];
1114
+ _id: string;
1115
+ variableProfileId?: string | undefined;
1116
+ readonly archivedAt: string & {
1117
+ readonly?: "__readonly" | undefined;
1118
+ };
1119
+ };
1120
+ status: "success";
1121
+ program: string;
1122
+ version: string;
1123
+ datetime: string;
1124
+ code?: number | undefined;
1125
+ message: string;
1126
+ }, any>>;
1127
+ publish: (params: {
1128
+ id: string;
1129
+ }, options?: AxiosRequestConfig<any> | undefined) => Promise<import("axios").AxiosResponse<{
1130
+ data: {
1131
+ readonly status: WorkflowStatus & {
1132
+ readonly?: "__readonly" | undefined;
1133
+ };
1134
+ name: string;
1135
+ readonly createdAt: string & {
1136
+ readonly?: "__readonly" | undefined;
1137
+ };
1138
+ readonly updatedAt: string & {
1139
+ readonly?: "__readonly" | undefined;
1140
+ };
1141
+ resourceGroupIds: string[];
1142
+ description?: string | undefined;
1143
+ readonly integrations: ({
1144
+ url?: unknown;
1145
+ code?: string | undefined;
1146
+ id: string;
1147
+ display?: unknown;
1148
+ click?: unknown;
1149
+ type: "web-image" | "web-html";
1150
+ workflowId: string;
1151
+ shortId: string;
1152
+ includeContext?: boolean | undefined;
1153
+ domain: string;
1154
+ filters?: {
1155
+ type: "and" | "or";
1156
+ conditions: {
1157
+ values: string[];
1158
+ operator: "empty" | "nempty" | "eq" | "ne" | "contains" | "notcontains";
1159
+ field: string;
1160
+ }[];
1161
+ } | undefined;
1162
+ enabled: boolean;
1163
+ selector?: string | undefined;
1164
+ emplacement?: "replace" | "before" | "after" | undefined;
1165
+ parameters?: unknown;
1166
+ } | {
1167
+ url: string;
1168
+ code?: unknown;
1169
+ id: string;
1170
+ display?: unknown;
1171
+ click?: unknown;
1172
+ type: "landing-page";
1173
+ workflowId?: unknown;
1174
+ shortId?: unknown;
1175
+ includeContext?: unknown;
1176
+ domain?: unknown;
1177
+ filters?: unknown;
1178
+ enabled?: unknown;
1179
+ selector?: unknown;
1180
+ emplacement?: unknown;
1181
+ parameters: {
1182
+ [x: string]: string;
1183
+ };
1184
+ } | {
1185
+ url?: unknown;
1186
+ code?: unknown;
1187
+ id: string;
1188
+ display: string;
1189
+ click: string;
1190
+ type: "email" | "raw" | "mobile-push-image" | "mobile-inbox-image" | "mobile-app-image";
1191
+ workflowId?: unknown;
1192
+ shortId?: unknown;
1193
+ includeContext?: unknown;
1194
+ domain?: unknown;
1195
+ filters?: unknown;
1196
+ enabled?: unknown;
1197
+ selector?: unknown;
1198
+ emplacement?: unknown;
1199
+ parameters: {
1200
+ [x: string]: string;
1201
+ };
1202
+ })[];
1203
+ readonly id: string & {
1204
+ readonly?: "__readonly" | undefined;
1205
+ };
1206
+ readonly companyId: string & {
1207
+ readonly?: "__readonly" | undefined;
1208
+ };
1209
+ readonly versions: {
1210
+ readonly createdAt: string & {
1211
+ readonly?: "__readonly" | undefined;
1212
+ };
1213
+ readonly updatedAt: string & {
1214
+ readonly?: "__readonly" | undefined;
1215
+ };
1216
+ id: string;
1217
+ analyzeOverrides?: {
1218
+ vertexIndividualizedScore: {
1219
+ [x: string]: number;
1220
+ };
1221
+ customVertexNames: {
1222
+ name: string;
1223
+ vertexId: string;
1224
+ }[];
1225
+ } | undefined;
1226
+ metadata?: {
1227
+ [x: string]: unknown;
1228
+ } | undefined;
1229
+ readonly state: WorkflowVersionState & {
1230
+ readonly?: "__readonly" | undefined;
1231
+ };
1232
+ definition: {
1233
+ nodes: {
1234
+ [x: string]: {
1235
+ metadata: {
1236
+ [x: string]: unknown;
1237
+ };
1238
+ type: string;
1239
+ paths: {
1240
+ options: {
1241
+ [x: string]: unknown;
1242
+ };
1243
+ id: string;
1244
+ }[];
1245
+ } | {
1246
+ options: {
1247
+ [x: string]: unknown;
1248
+ };
1249
+ metadata: {
1250
+ [x: string]: unknown;
1251
+ };
1252
+ type: string;
1253
+ };
1254
+ };
1255
+ entrypoints: {
1256
+ [x: string]: {
1257
+ type: "email" | "raw" | "mobile-push-image" | "mobile-inbox-image" | "mobile-app-image" | "web-image" | "web-html" | "landing-page";
1258
+ };
1259
+ };
1260
+ edges: {
1261
+ [x: string]: {
1262
+ to: string;
1263
+ };
1264
+ };
1265
+ };
1266
+ readonly analyze: {
1267
+ readonly?: "__readonly" | undefined;
1268
+ entrypointTypes: string[];
1269
+ entrypointsByBranches: {
1270
+ branch: string;
1271
+ entrypointIds: string[];
1272
+ }[];
1273
+ branches: string[];
1274
+ individualizedBranches: string[];
1275
+ branchesScore: {
1276
+ [x: string]: number;
1277
+ };
1278
+ defaultBranches: string[];
1279
+ usedDatasourceFields: {
1280
+ [x: string]: string[];
1281
+ };
1282
+ branchesInfos: {
1283
+ [x: string]: (string | import("./definitions").BranchInfosElementType)[][];
1284
+ };
1285
+ entrypointsPerDataNodeId: {
1286
+ [x: string]: string[];
1287
+ };
1288
+ entrypointsPerPathId: {
1289
+ [x: string]: string[];
1290
+ };
1291
+ outputsForEntrypoint: {
1292
+ [x: string]: string[];
1293
+ };
1294
+ datasForEntrypoint: {
1295
+ [x: string]: string[];
1296
+ };
1297
+ };
1298
+ readonly lastSavedBy?: (string & {
1299
+ readonly?: "__readonly" | undefined;
1300
+ }) | undefined;
1301
+ changeDescription?: string | undefined;
1302
+ }[];
1303
+ _id: string;
1304
+ variableProfileId?: string | undefined;
1305
+ readonly archivedAt: string & {
1306
+ readonly?: "__readonly" | undefined;
1307
+ };
1308
+ };
1309
+ status: "success";
1310
+ program: string;
1311
+ version: string;
1312
+ datetime: string;
1313
+ code?: number | undefined;
1314
+ message: string;
1315
+ }, any>>;
1316
+ updateVersion: (params: {
1317
+ id: string;
1318
+ versionId: string;
1319
+ }, data: {
1320
+ analyzeOverrides?: {
1321
+ vertexIndividualizedScore: {
1322
+ [x: string]: number;
1323
+ };
1324
+ customVertexNames: {
1325
+ name: string;
1326
+ vertexId: string;
1327
+ }[];
1328
+ } | undefined;
1329
+ }, options?: AxiosRequestConfig<any> | undefined) => Promise<import("axios").AxiosResponse<{
1330
+ data: {
1331
+ readonly status: WorkflowStatus & {
1332
+ readonly?: "__readonly" | undefined;
1333
+ };
1334
+ name: string;
1335
+ readonly createdAt: string & {
1336
+ readonly?: "__readonly" | undefined;
1337
+ };
1338
+ readonly updatedAt: string & {
1339
+ readonly?: "__readonly" | undefined;
1340
+ };
1341
+ resourceGroupIds: string[];
1342
+ description?: string | undefined;
1343
+ readonly integrations: ({
1344
+ url?: unknown;
1345
+ code?: string | undefined;
1346
+ id: string;
1347
+ display?: unknown;
1348
+ click?: unknown;
1349
+ type: "web-image" | "web-html";
1350
+ workflowId: string;
1351
+ shortId: string;
1352
+ includeContext?: boolean | undefined;
1353
+ domain: string;
1354
+ filters?: {
1355
+ type: "and" | "or";
1356
+ conditions: {
1357
+ values: string[];
1358
+ operator: "empty" | "nempty" | "eq" | "ne" | "contains" | "notcontains";
1359
+ field: string;
1360
+ }[];
1361
+ } | undefined;
1362
+ enabled: boolean;
1363
+ selector?: string | undefined;
1364
+ emplacement?: "replace" | "before" | "after" | undefined;
1365
+ parameters?: unknown;
1366
+ } | {
1367
+ url: string;
1368
+ code?: unknown;
1369
+ id: string;
1370
+ display?: unknown;
1371
+ click?: unknown;
1372
+ type: "landing-page";
1373
+ workflowId?: unknown;
1374
+ shortId?: unknown;
1375
+ includeContext?: unknown;
1376
+ domain?: unknown;
1377
+ filters?: unknown;
1378
+ enabled?: unknown;
1379
+ selector?: unknown;
1380
+ emplacement?: unknown;
1381
+ parameters: {
1382
+ [x: string]: string;
1383
+ };
1384
+ } | {
1385
+ url?: unknown;
1386
+ code?: unknown;
1387
+ id: string;
1388
+ display: string;
1389
+ click: string;
1390
+ type: "email" | "raw" | "mobile-push-image" | "mobile-inbox-image" | "mobile-app-image";
1391
+ workflowId?: unknown;
1392
+ shortId?: unknown;
1393
+ includeContext?: unknown;
1394
+ domain?: unknown;
1395
+ filters?: unknown;
1396
+ enabled?: unknown;
1397
+ selector?: unknown;
1398
+ emplacement?: unknown;
1399
+ parameters: {
1400
+ [x: string]: string;
1401
+ };
1402
+ })[];
1403
+ readonly id: string & {
1404
+ readonly?: "__readonly" | undefined;
1405
+ };
1406
+ readonly companyId: string & {
1407
+ readonly?: "__readonly" | undefined;
1408
+ };
1409
+ readonly versions: {
1410
+ readonly createdAt: string & {
1411
+ readonly?: "__readonly" | undefined;
1412
+ };
1413
+ readonly updatedAt: string & {
1414
+ readonly?: "__readonly" | undefined;
1415
+ };
1416
+ id: string;
1417
+ analyzeOverrides?: {
1418
+ vertexIndividualizedScore: {
1419
+ [x: string]: number;
1420
+ };
1421
+ customVertexNames: {
1422
+ name: string;
1423
+ vertexId: string;
1424
+ }[];
1425
+ } | undefined;
1426
+ metadata?: {
1427
+ [x: string]: unknown;
1428
+ } | undefined;
1429
+ readonly state: WorkflowVersionState & {
1430
+ readonly?: "__readonly" | undefined;
1431
+ };
1432
+ definition: {
1433
+ nodes: {
1434
+ [x: string]: {
1435
+ metadata: {
1436
+ [x: string]: unknown;
1437
+ };
1438
+ type: string;
1439
+ paths: {
1440
+ options: {
1441
+ [x: string]: unknown;
1442
+ };
1443
+ id: string;
1444
+ }[];
1445
+ } | {
1446
+ options: {
1447
+ [x: string]: unknown;
1448
+ };
1449
+ metadata: {
1450
+ [x: string]: unknown;
1451
+ };
1452
+ type: string;
1453
+ };
1454
+ };
1455
+ entrypoints: {
1456
+ [x: string]: {
1457
+ type: "email" | "raw" | "mobile-push-image" | "mobile-inbox-image" | "mobile-app-image" | "web-image" | "web-html" | "landing-page";
1458
+ };
1459
+ };
1460
+ edges: {
1461
+ [x: string]: {
1462
+ to: string;
1463
+ };
1464
+ };
1465
+ };
1466
+ readonly analyze: {
1467
+ readonly?: "__readonly" | undefined;
1468
+ entrypointTypes: string[];
1469
+ entrypointsByBranches: {
1470
+ branch: string;
1471
+ entrypointIds: string[];
1472
+ }[];
1473
+ branches: string[];
1474
+ individualizedBranches: string[];
1475
+ branchesScore: {
1476
+ [x: string]: number;
1477
+ };
1478
+ defaultBranches: string[];
1479
+ usedDatasourceFields: {
1480
+ [x: string]: string[];
1481
+ };
1482
+ branchesInfos: {
1483
+ [x: string]: (string | import("./definitions").BranchInfosElementType)[][];
1484
+ };
1485
+ entrypointsPerDataNodeId: {
1486
+ [x: string]: string[];
1487
+ };
1488
+ entrypointsPerPathId: {
1489
+ [x: string]: string[];
1490
+ };
1491
+ outputsForEntrypoint: {
1492
+ [x: string]: string[];
1493
+ };
1494
+ datasForEntrypoint: {
1495
+ [x: string]: string[];
1496
+ };
1497
+ };
1498
+ readonly lastSavedBy?: (string & {
1499
+ readonly?: "__readonly" | undefined;
1500
+ }) | undefined;
1501
+ changeDescription?: string | undefined;
1502
+ }[];
1503
+ _id: string;
1504
+ variableProfileId?: string | undefined;
1505
+ readonly archivedAt: string & {
1506
+ readonly?: "__readonly" | undefined;
1507
+ };
1508
+ };
1509
+ status: "success";
1510
+ program: string;
1511
+ version: string;
1512
+ datetime: string;
1513
+ code?: number | undefined;
1514
+ message: string;
1515
+ }, any>>;
1516
+ };
1517
+ get RedirectAlias(): {
1518
+ redirect: (params: {
1519
+ alias: string;
1520
+ index: number;
1521
+ user: string;
1522
+ 'no-cache'?: boolean | undefined;
1523
+ 'dry-run'?: boolean | undefined;
1524
+ }, options?: AxiosRequestConfig<any> | undefined) => Promise<import("axios").AxiosResponse<unknown, any>>;
1525
+ };
1526
+ get Runner(): {
1527
+ run: (params: {
1528
+ id: string;
1529
+ indexOrId: string | number;
1530
+ 'rlvt-u'?: string | string[] | undefined;
1531
+ mode?: "debug" | "display" | "click" | "ui-debug" | undefined;
1532
+ 'no-cache'?: boolean | undefined;
1533
+ 'dry-run'?: boolean | undefined;
1534
+ 'rlvt-redirect'?: string | undefined;
1535
+ }, options?: AxiosRequestConfig<any> | undefined) => Promise<import("axios").AxiosResponse<unknown, any>>;
1536
+ };
1537
+ get Usage(): {
1538
+ listParameterValues: (params: {
1539
+ names: string[];
1540
+ }, options?: AxiosRequestConfig<any> | undefined) => Promise<import("axios").AxiosResponse<{
1541
+ data: unknown;
1542
+ status: "success";
1543
+ program: string;
1544
+ version: string;
1545
+ datetime: string;
1546
+ code?: number | undefined;
1547
+ message: string;
1548
+ }, any>>;
1549
+ getWorkflowIntegrationsOptions: (params: {
1550
+ id: string;
1551
+ }, options?: AxiosRequestConfig<any> | undefined) => Promise<import("axios").AxiosResponse<{
1552
+ data: unknown;
1553
+ status: "success";
1554
+ program: string;
1555
+ version: string;
1556
+ datetime: string;
1557
+ code?: number | undefined;
1558
+ message: string;
1559
+ }, any>>;
1560
+ updateWorkflowIntegrationsOptions: (params: {
1561
+ id: string;
1562
+ }, data: {
1563
+ integrationOptions?: ({
1564
+ type: "email" | "raw" | "mobile-push-image" | "mobile-inbox-image" | "mobile-app-image" | "landing-page";
1565
+ parameters: {
1566
+ [key: string]: string | null;
1567
+ };
1568
+ entrypointId?: string | undefined;
1569
+ } | {
1570
+ type: "web-image" | "web-html";
1571
+ filters?: {
1572
+ type: "and" | "or";
1573
+ conditions: {
1574
+ operator: "empty" | "nempty" | "eq" | "ne" | "contains" | "notcontains";
1575
+ field: string;
1576
+ values: string[];
1577
+ }[];
1578
+ } | undefined;
1579
+ enabled?: boolean | undefined;
1580
+ entrypointId?: string | undefined;
1581
+ code?: string | undefined;
1582
+ selector?: string | undefined;
1583
+ emplacement?: "replace" | "before" | "after" | undefined;
1584
+ includeContext?: boolean | undefined;
1585
+ })[] | undefined;
1586
+ variableProfileId?: string | undefined;
1587
+ }, options?: AxiosRequestConfig<any> | undefined) => Promise<import("axios").AxiosResponse<{
1588
+ data: unknown;
1589
+ status: "success";
1590
+ program: string;
1591
+ version: string;
1592
+ datetime: string;
1593
+ code?: number | undefined;
1594
+ message: string;
1595
+ }, any>>;
1596
+ listWorkflowsWithContent: (params: {
1597
+ id: string;
1598
+ }, options?: AxiosRequestConfig<any> | undefined) => Promise<import("axios").AxiosResponse<{
1599
+ data: string[];
1600
+ status: "success";
1601
+ program: string;
1602
+ version: string;
1603
+ datetime: string;
1604
+ code?: number | undefined;
1605
+ message: string;
1606
+ }, any>>;
1607
+ updateWorkflowsWithContent: (params: {
1608
+ id: string;
1609
+ }, options?: AxiosRequestConfig<any> | undefined) => Promise<import("axios").AxiosResponse<{
1610
+ data: unknown;
1611
+ status: "success";
1612
+ program: string;
1613
+ version: string;
1614
+ datetime: string;
1615
+ code?: number | undefined;
1616
+ message: string;
1617
+ }, any>>;
1618
+ listWorkflowsWithDatasource: (params: {
1619
+ id: string;
1620
+ }, options?: AxiosRequestConfig<any> | undefined) => Promise<import("axios").AxiosResponse<{
1621
+ data: {
1622
+ id: string;
1623
+ fields: string[];
1624
+ }[];
1625
+ status: "success";
1626
+ program: string;
1627
+ version: string;
1628
+ datetime: string;
1629
+ code?: number | undefined;
1630
+ message: string;
1631
+ }, any>>;
1632
+ };
1633
+ }