@rlvt/workflows-openapi-client 1.0.556 → 1.0.558
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 +154 -66
- package/build/api.js +11 -1
- package/build/definitions.d.ts +19 -10
- package/build/definitions.js +1 -1
- package/package.json +1 -1
package/build/api.d.ts
CHANGED
|
@@ -14,6 +14,7 @@ export default class {
|
|
|
14
14
|
private duplicateWorkflow;
|
|
15
15
|
private publishWorkflow;
|
|
16
16
|
private updateVersionWorkflow;
|
|
17
|
+
private redirect;
|
|
17
18
|
private run;
|
|
18
19
|
private listParameterValuesUsage;
|
|
19
20
|
private listWorkflowsWithContentUsage;
|
|
@@ -62,7 +63,7 @@ export default class {
|
|
|
62
63
|
};
|
|
63
64
|
entrypoints: {
|
|
64
65
|
[x: string]: {
|
|
65
|
-
type: "email" | "raw" | "mobile-push-image" | "mobile-inbox-image" | "mobile-app-image" | "web-image" | "web-html" | "landing-page"
|
|
66
|
+
type: "email" | "raw" | "mobile-push-image" | "mobile-inbox-image" | "mobile-app-image" | "web-image" | "web-html" | "landing-page";
|
|
66
67
|
};
|
|
67
68
|
};
|
|
68
69
|
edges: {
|
|
@@ -119,6 +120,21 @@ export default class {
|
|
|
119
120
|
};
|
|
120
121
|
resourceGroupIds: string[];
|
|
121
122
|
description?: string | undefined;
|
|
123
|
+
readonly urls?: ({
|
|
124
|
+
display?: string | undefined;
|
|
125
|
+
click?: unknown;
|
|
126
|
+
type: "landing-page";
|
|
127
|
+
parameters: {
|
|
128
|
+
[x: string]: string;
|
|
129
|
+
};
|
|
130
|
+
} | {
|
|
131
|
+
display: string;
|
|
132
|
+
click: string;
|
|
133
|
+
type: "email" | "raw" | "mobile-push-image" | "mobile-inbox-image" | "mobile-app-image" | "web-image" | "web-html";
|
|
134
|
+
parameters: {
|
|
135
|
+
[x: string]: string;
|
|
136
|
+
};
|
|
137
|
+
})[] | undefined;
|
|
122
138
|
readonly id: string & {
|
|
123
139
|
readonly?: "__readonly" | undefined;
|
|
124
140
|
};
|
|
@@ -172,7 +188,7 @@ export default class {
|
|
|
172
188
|
};
|
|
173
189
|
entrypoints: {
|
|
174
190
|
[x: string]: {
|
|
175
|
-
type: "email" | "raw" | "mobile-push-image" | "mobile-inbox-image" | "mobile-app-image" | "web-image" | "web-html" | "landing-page"
|
|
191
|
+
type: "email" | "raw" | "mobile-push-image" | "mobile-inbox-image" | "mobile-app-image" | "web-image" | "web-html" | "landing-page";
|
|
176
192
|
};
|
|
177
193
|
};
|
|
178
194
|
edges: {
|
|
@@ -210,6 +226,10 @@ export default class {
|
|
|
210
226
|
[x: string]: string[];
|
|
211
227
|
};
|
|
212
228
|
};
|
|
229
|
+
readonly lastSavedBy?: (string & {
|
|
230
|
+
readonly?: "__readonly" | undefined;
|
|
231
|
+
}) | undefined;
|
|
232
|
+
changeDescription?: string | undefined;
|
|
213
233
|
}[];
|
|
214
234
|
_id: string;
|
|
215
235
|
variableProfileId?: string | undefined;
|
|
@@ -219,14 +239,6 @@ export default class {
|
|
|
219
239
|
value: string;
|
|
220
240
|
}[];
|
|
221
241
|
};
|
|
222
|
-
readonly urls?: {
|
|
223
|
-
click: string;
|
|
224
|
-
display: string;
|
|
225
|
-
type: "email" | "raw" | "mobile-push-image" | "mobile-inbox-image" | "mobile-app-image" | "web-image" | "web-html" | "landing-page" | "mobile-sms-preview";
|
|
226
|
-
parameters: {
|
|
227
|
-
[x: string]: string;
|
|
228
|
-
};
|
|
229
|
-
}[] | undefined;
|
|
230
242
|
readonly archivedAt: string & {
|
|
231
243
|
readonly?: "__readonly" | undefined;
|
|
232
244
|
};
|
|
@@ -259,6 +271,21 @@ export default class {
|
|
|
259
271
|
};
|
|
260
272
|
resourceGroupIds: string[];
|
|
261
273
|
description?: string | undefined;
|
|
274
|
+
readonly urls?: ({
|
|
275
|
+
display?: string | undefined;
|
|
276
|
+
click?: unknown;
|
|
277
|
+
type: "landing-page";
|
|
278
|
+
parameters: {
|
|
279
|
+
[x: string]: string;
|
|
280
|
+
};
|
|
281
|
+
} | {
|
|
282
|
+
display: string;
|
|
283
|
+
click: string;
|
|
284
|
+
type: "email" | "raw" | "mobile-push-image" | "mobile-inbox-image" | "mobile-app-image" | "web-image" | "web-html";
|
|
285
|
+
parameters: {
|
|
286
|
+
[x: string]: string;
|
|
287
|
+
};
|
|
288
|
+
})[] | undefined;
|
|
262
289
|
readonly id: string & {
|
|
263
290
|
readonly?: "__readonly" | undefined;
|
|
264
291
|
};
|
|
@@ -312,7 +339,7 @@ export default class {
|
|
|
312
339
|
};
|
|
313
340
|
entrypoints: {
|
|
314
341
|
[x: string]: {
|
|
315
|
-
type: "email" | "raw" | "mobile-push-image" | "mobile-inbox-image" | "mobile-app-image" | "web-image" | "web-html" | "landing-page"
|
|
342
|
+
type: "email" | "raw" | "mobile-push-image" | "mobile-inbox-image" | "mobile-app-image" | "web-image" | "web-html" | "landing-page";
|
|
316
343
|
};
|
|
317
344
|
};
|
|
318
345
|
edges: {
|
|
@@ -350,6 +377,10 @@ export default class {
|
|
|
350
377
|
[x: string]: string[];
|
|
351
378
|
};
|
|
352
379
|
};
|
|
380
|
+
readonly lastSavedBy?: (string & {
|
|
381
|
+
readonly?: "__readonly" | undefined;
|
|
382
|
+
}) | undefined;
|
|
383
|
+
changeDescription?: string | undefined;
|
|
353
384
|
}[];
|
|
354
385
|
_id: string;
|
|
355
386
|
variableProfileId?: string | undefined;
|
|
@@ -359,14 +390,6 @@ export default class {
|
|
|
359
390
|
value: string;
|
|
360
391
|
}[];
|
|
361
392
|
};
|
|
362
|
-
readonly urls?: {
|
|
363
|
-
click: string;
|
|
364
|
-
display: string;
|
|
365
|
-
type: "email" | "raw" | "mobile-push-image" | "mobile-inbox-image" | "mobile-app-image" | "web-image" | "web-html" | "landing-page" | "mobile-sms-preview";
|
|
366
|
-
parameters: {
|
|
367
|
-
[x: string]: string;
|
|
368
|
-
};
|
|
369
|
-
}[] | undefined;
|
|
370
393
|
readonly archivedAt: string & {
|
|
371
394
|
readonly?: "__readonly" | undefined;
|
|
372
395
|
};
|
|
@@ -397,6 +420,21 @@ export default class {
|
|
|
397
420
|
};
|
|
398
421
|
resourceGroupIds: string[];
|
|
399
422
|
description?: string | undefined;
|
|
423
|
+
readonly urls?: ({
|
|
424
|
+
display?: string | undefined;
|
|
425
|
+
click?: unknown;
|
|
426
|
+
type: "landing-page";
|
|
427
|
+
parameters: {
|
|
428
|
+
[x: string]: string;
|
|
429
|
+
};
|
|
430
|
+
} | {
|
|
431
|
+
display: string;
|
|
432
|
+
click: string;
|
|
433
|
+
type: "email" | "raw" | "mobile-push-image" | "mobile-inbox-image" | "mobile-app-image" | "web-image" | "web-html";
|
|
434
|
+
parameters: {
|
|
435
|
+
[x: string]: string;
|
|
436
|
+
};
|
|
437
|
+
})[] | undefined;
|
|
400
438
|
readonly id: string & {
|
|
401
439
|
readonly?: "__readonly" | undefined;
|
|
402
440
|
};
|
|
@@ -450,7 +488,7 @@ export default class {
|
|
|
450
488
|
};
|
|
451
489
|
entrypoints: {
|
|
452
490
|
[x: string]: {
|
|
453
|
-
type: "email" | "raw" | "mobile-push-image" | "mobile-inbox-image" | "mobile-app-image" | "web-image" | "web-html" | "landing-page"
|
|
491
|
+
type: "email" | "raw" | "mobile-push-image" | "mobile-inbox-image" | "mobile-app-image" | "web-image" | "web-html" | "landing-page";
|
|
454
492
|
};
|
|
455
493
|
};
|
|
456
494
|
edges: {
|
|
@@ -488,6 +526,10 @@ export default class {
|
|
|
488
526
|
[x: string]: string[];
|
|
489
527
|
};
|
|
490
528
|
};
|
|
529
|
+
readonly lastSavedBy?: (string & {
|
|
530
|
+
readonly?: "__readonly" | undefined;
|
|
531
|
+
}) | undefined;
|
|
532
|
+
changeDescription?: string | undefined;
|
|
491
533
|
}[];
|
|
492
534
|
_id: string;
|
|
493
535
|
variableProfileId?: string | undefined;
|
|
@@ -497,14 +539,6 @@ export default class {
|
|
|
497
539
|
value: string;
|
|
498
540
|
}[];
|
|
499
541
|
};
|
|
500
|
-
readonly urls?: {
|
|
501
|
-
click: string;
|
|
502
|
-
display: string;
|
|
503
|
-
type: "email" | "raw" | "mobile-push-image" | "mobile-inbox-image" | "mobile-app-image" | "web-image" | "web-html" | "landing-page" | "mobile-sms-preview";
|
|
504
|
-
parameters: {
|
|
505
|
-
[x: string]: string;
|
|
506
|
-
};
|
|
507
|
-
}[] | undefined;
|
|
508
542
|
readonly archivedAt: string & {
|
|
509
543
|
readonly?: "__readonly" | undefined;
|
|
510
544
|
};
|
|
@@ -558,7 +592,7 @@ export default class {
|
|
|
558
592
|
};
|
|
559
593
|
entrypoints: {
|
|
560
594
|
[x: string]: {
|
|
561
|
-
type: "email" | "raw" | "mobile-push-image" | "mobile-inbox-image" | "mobile-app-image" | "web-image" | "web-html" | "landing-page"
|
|
595
|
+
type: "email" | "raw" | "mobile-push-image" | "mobile-inbox-image" | "mobile-app-image" | "web-image" | "web-html" | "landing-page";
|
|
562
596
|
};
|
|
563
597
|
};
|
|
564
598
|
edges: {
|
|
@@ -575,6 +609,7 @@ export default class {
|
|
|
575
609
|
vertexId: string;
|
|
576
610
|
}[];
|
|
577
611
|
} | undefined;
|
|
612
|
+
changeDescription?: string | undefined;
|
|
578
613
|
}, options?: AxiosRequestConfig<any> | undefined) => Promise<import("axios").AxiosResponse<{
|
|
579
614
|
data: {
|
|
580
615
|
readonly status: WorkflowStatus & {
|
|
@@ -589,6 +624,21 @@ export default class {
|
|
|
589
624
|
};
|
|
590
625
|
resourceGroupIds: string[];
|
|
591
626
|
description?: string | undefined;
|
|
627
|
+
readonly urls?: ({
|
|
628
|
+
display?: string | undefined;
|
|
629
|
+
click?: unknown;
|
|
630
|
+
type: "landing-page";
|
|
631
|
+
parameters: {
|
|
632
|
+
[x: string]: string;
|
|
633
|
+
};
|
|
634
|
+
} | {
|
|
635
|
+
display: string;
|
|
636
|
+
click: string;
|
|
637
|
+
type: "email" | "raw" | "mobile-push-image" | "mobile-inbox-image" | "mobile-app-image" | "web-image" | "web-html";
|
|
638
|
+
parameters: {
|
|
639
|
+
[x: string]: string;
|
|
640
|
+
};
|
|
641
|
+
})[] | undefined;
|
|
592
642
|
readonly id: string & {
|
|
593
643
|
readonly?: "__readonly" | undefined;
|
|
594
644
|
};
|
|
@@ -642,7 +692,7 @@ export default class {
|
|
|
642
692
|
};
|
|
643
693
|
entrypoints: {
|
|
644
694
|
[x: string]: {
|
|
645
|
-
type: "email" | "raw" | "mobile-push-image" | "mobile-inbox-image" | "mobile-app-image" | "web-image" | "web-html" | "landing-page"
|
|
695
|
+
type: "email" | "raw" | "mobile-push-image" | "mobile-inbox-image" | "mobile-app-image" | "web-image" | "web-html" | "landing-page";
|
|
646
696
|
};
|
|
647
697
|
};
|
|
648
698
|
edges: {
|
|
@@ -680,6 +730,10 @@ export default class {
|
|
|
680
730
|
[x: string]: string[];
|
|
681
731
|
};
|
|
682
732
|
};
|
|
733
|
+
readonly lastSavedBy?: (string & {
|
|
734
|
+
readonly?: "__readonly" | undefined;
|
|
735
|
+
}) | undefined;
|
|
736
|
+
changeDescription?: string | undefined;
|
|
683
737
|
}[];
|
|
684
738
|
_id: string;
|
|
685
739
|
variableProfileId?: string | undefined;
|
|
@@ -689,14 +743,6 @@ export default class {
|
|
|
689
743
|
value: string;
|
|
690
744
|
}[];
|
|
691
745
|
};
|
|
692
|
-
readonly urls?: {
|
|
693
|
-
click: string;
|
|
694
|
-
display: string;
|
|
695
|
-
type: "email" | "raw" | "mobile-push-image" | "mobile-inbox-image" | "mobile-app-image" | "web-image" | "web-html" | "landing-page" | "mobile-sms-preview";
|
|
696
|
-
parameters: {
|
|
697
|
-
[x: string]: string;
|
|
698
|
-
};
|
|
699
|
-
}[] | undefined;
|
|
700
746
|
readonly archivedAt: string & {
|
|
701
747
|
readonly?: "__readonly" | undefined;
|
|
702
748
|
};
|
|
@@ -735,6 +781,21 @@ export default class {
|
|
|
735
781
|
};
|
|
736
782
|
resourceGroupIds: string[];
|
|
737
783
|
description?: string | undefined;
|
|
784
|
+
readonly urls?: ({
|
|
785
|
+
display?: string | undefined;
|
|
786
|
+
click?: unknown;
|
|
787
|
+
type: "landing-page";
|
|
788
|
+
parameters: {
|
|
789
|
+
[x: string]: string;
|
|
790
|
+
};
|
|
791
|
+
} | {
|
|
792
|
+
display: string;
|
|
793
|
+
click: string;
|
|
794
|
+
type: "email" | "raw" | "mobile-push-image" | "mobile-inbox-image" | "mobile-app-image" | "web-image" | "web-html";
|
|
795
|
+
parameters: {
|
|
796
|
+
[x: string]: string;
|
|
797
|
+
};
|
|
798
|
+
})[] | undefined;
|
|
738
799
|
readonly id: string & {
|
|
739
800
|
readonly?: "__readonly" | undefined;
|
|
740
801
|
};
|
|
@@ -788,7 +849,7 @@ export default class {
|
|
|
788
849
|
};
|
|
789
850
|
entrypoints: {
|
|
790
851
|
[x: string]: {
|
|
791
|
-
type: "email" | "raw" | "mobile-push-image" | "mobile-inbox-image" | "mobile-app-image" | "web-image" | "web-html" | "landing-page"
|
|
852
|
+
type: "email" | "raw" | "mobile-push-image" | "mobile-inbox-image" | "mobile-app-image" | "web-image" | "web-html" | "landing-page";
|
|
792
853
|
};
|
|
793
854
|
};
|
|
794
855
|
edges: {
|
|
@@ -826,6 +887,10 @@ export default class {
|
|
|
826
887
|
[x: string]: string[];
|
|
827
888
|
};
|
|
828
889
|
};
|
|
890
|
+
readonly lastSavedBy?: (string & {
|
|
891
|
+
readonly?: "__readonly" | undefined;
|
|
892
|
+
}) | undefined;
|
|
893
|
+
changeDescription?: string | undefined;
|
|
829
894
|
}[];
|
|
830
895
|
_id: string;
|
|
831
896
|
variableProfileId?: string | undefined;
|
|
@@ -835,14 +900,6 @@ export default class {
|
|
|
835
900
|
value: string;
|
|
836
901
|
}[];
|
|
837
902
|
};
|
|
838
|
-
readonly urls?: {
|
|
839
|
-
click: string;
|
|
840
|
-
display: string;
|
|
841
|
-
type: "email" | "raw" | "mobile-push-image" | "mobile-inbox-image" | "mobile-app-image" | "web-image" | "web-html" | "landing-page" | "mobile-sms-preview";
|
|
842
|
-
parameters: {
|
|
843
|
-
[x: string]: string;
|
|
844
|
-
};
|
|
845
|
-
}[] | undefined;
|
|
846
903
|
readonly archivedAt: string & {
|
|
847
904
|
readonly?: "__readonly" | undefined;
|
|
848
905
|
};
|
|
@@ -870,6 +927,21 @@ export default class {
|
|
|
870
927
|
};
|
|
871
928
|
resourceGroupIds: string[];
|
|
872
929
|
description?: string | undefined;
|
|
930
|
+
readonly urls?: ({
|
|
931
|
+
display?: string | undefined;
|
|
932
|
+
click?: unknown;
|
|
933
|
+
type: "landing-page";
|
|
934
|
+
parameters: {
|
|
935
|
+
[x: string]: string;
|
|
936
|
+
};
|
|
937
|
+
} | {
|
|
938
|
+
display: string;
|
|
939
|
+
click: string;
|
|
940
|
+
type: "email" | "raw" | "mobile-push-image" | "mobile-inbox-image" | "mobile-app-image" | "web-image" | "web-html";
|
|
941
|
+
parameters: {
|
|
942
|
+
[x: string]: string;
|
|
943
|
+
};
|
|
944
|
+
})[] | undefined;
|
|
873
945
|
readonly id: string & {
|
|
874
946
|
readonly?: "__readonly" | undefined;
|
|
875
947
|
};
|
|
@@ -923,7 +995,7 @@ export default class {
|
|
|
923
995
|
};
|
|
924
996
|
entrypoints: {
|
|
925
997
|
[x: string]: {
|
|
926
|
-
type: "email" | "raw" | "mobile-push-image" | "mobile-inbox-image" | "mobile-app-image" | "web-image" | "web-html" | "landing-page"
|
|
998
|
+
type: "email" | "raw" | "mobile-push-image" | "mobile-inbox-image" | "mobile-app-image" | "web-image" | "web-html" | "landing-page";
|
|
927
999
|
};
|
|
928
1000
|
};
|
|
929
1001
|
edges: {
|
|
@@ -961,6 +1033,10 @@ export default class {
|
|
|
961
1033
|
[x: string]: string[];
|
|
962
1034
|
};
|
|
963
1035
|
};
|
|
1036
|
+
readonly lastSavedBy?: (string & {
|
|
1037
|
+
readonly?: "__readonly" | undefined;
|
|
1038
|
+
}) | undefined;
|
|
1039
|
+
changeDescription?: string | undefined;
|
|
964
1040
|
}[];
|
|
965
1041
|
_id: string;
|
|
966
1042
|
variableProfileId?: string | undefined;
|
|
@@ -970,14 +1046,6 @@ export default class {
|
|
|
970
1046
|
value: string;
|
|
971
1047
|
}[];
|
|
972
1048
|
};
|
|
973
|
-
readonly urls?: {
|
|
974
|
-
click: string;
|
|
975
|
-
display: string;
|
|
976
|
-
type: "email" | "raw" | "mobile-push-image" | "mobile-inbox-image" | "mobile-app-image" | "web-image" | "web-html" | "landing-page" | "mobile-sms-preview";
|
|
977
|
-
parameters: {
|
|
978
|
-
[x: string]: string;
|
|
979
|
-
};
|
|
980
|
-
}[] | undefined;
|
|
981
1049
|
readonly archivedAt: string & {
|
|
982
1050
|
readonly?: "__readonly" | undefined;
|
|
983
1051
|
};
|
|
@@ -1015,6 +1083,21 @@ export default class {
|
|
|
1015
1083
|
};
|
|
1016
1084
|
resourceGroupIds: string[];
|
|
1017
1085
|
description?: string | undefined;
|
|
1086
|
+
readonly urls?: ({
|
|
1087
|
+
display?: string | undefined;
|
|
1088
|
+
click?: unknown;
|
|
1089
|
+
type: "landing-page";
|
|
1090
|
+
parameters: {
|
|
1091
|
+
[x: string]: string;
|
|
1092
|
+
};
|
|
1093
|
+
} | {
|
|
1094
|
+
display: string;
|
|
1095
|
+
click: string;
|
|
1096
|
+
type: "email" | "raw" | "mobile-push-image" | "mobile-inbox-image" | "mobile-app-image" | "web-image" | "web-html";
|
|
1097
|
+
parameters: {
|
|
1098
|
+
[x: string]: string;
|
|
1099
|
+
};
|
|
1100
|
+
})[] | undefined;
|
|
1018
1101
|
readonly id: string & {
|
|
1019
1102
|
readonly?: "__readonly" | undefined;
|
|
1020
1103
|
};
|
|
@@ -1068,7 +1151,7 @@ export default class {
|
|
|
1068
1151
|
};
|
|
1069
1152
|
entrypoints: {
|
|
1070
1153
|
[x: string]: {
|
|
1071
|
-
type: "email" | "raw" | "mobile-push-image" | "mobile-inbox-image" | "mobile-app-image" | "web-image" | "web-html" | "landing-page"
|
|
1154
|
+
type: "email" | "raw" | "mobile-push-image" | "mobile-inbox-image" | "mobile-app-image" | "web-image" | "web-html" | "landing-page";
|
|
1072
1155
|
};
|
|
1073
1156
|
};
|
|
1074
1157
|
edges: {
|
|
@@ -1106,6 +1189,10 @@ export default class {
|
|
|
1106
1189
|
[x: string]: string[];
|
|
1107
1190
|
};
|
|
1108
1191
|
};
|
|
1192
|
+
readonly lastSavedBy?: (string & {
|
|
1193
|
+
readonly?: "__readonly" | undefined;
|
|
1194
|
+
}) | undefined;
|
|
1195
|
+
changeDescription?: string | undefined;
|
|
1109
1196
|
}[];
|
|
1110
1197
|
_id: string;
|
|
1111
1198
|
variableProfileId?: string | undefined;
|
|
@@ -1115,14 +1202,6 @@ export default class {
|
|
|
1115
1202
|
value: string;
|
|
1116
1203
|
}[];
|
|
1117
1204
|
};
|
|
1118
|
-
readonly urls?: {
|
|
1119
|
-
click: string;
|
|
1120
|
-
display: string;
|
|
1121
|
-
type: "email" | "raw" | "mobile-push-image" | "mobile-inbox-image" | "mobile-app-image" | "web-image" | "web-html" | "landing-page" | "mobile-sms-preview";
|
|
1122
|
-
parameters: {
|
|
1123
|
-
[x: string]: string;
|
|
1124
|
-
};
|
|
1125
|
-
}[] | undefined;
|
|
1126
1205
|
readonly archivedAt: string & {
|
|
1127
1206
|
readonly?: "__readonly" | undefined;
|
|
1128
1207
|
};
|
|
@@ -1135,12 +1214,21 @@ export default class {
|
|
|
1135
1214
|
message: string;
|
|
1136
1215
|
}, any>>;
|
|
1137
1216
|
};
|
|
1217
|
+
get RedirectAlias(): {
|
|
1218
|
+
redirect: (params: {
|
|
1219
|
+
alias: string;
|
|
1220
|
+
index: number;
|
|
1221
|
+
user: string;
|
|
1222
|
+
'no-cache'?: boolean | undefined;
|
|
1223
|
+
'dry-run'?: boolean | undefined;
|
|
1224
|
+
}, options?: AxiosRequestConfig<any> | undefined) => Promise<import("axios").AxiosResponse<unknown, any>>;
|
|
1225
|
+
};
|
|
1138
1226
|
get Runner(): {
|
|
1139
1227
|
run: (params: {
|
|
1140
1228
|
id: string;
|
|
1141
1229
|
indexOrId: string | number;
|
|
1142
1230
|
'rlvt-u'?: string | string[] | undefined;
|
|
1143
|
-
mode?: "debug" | "
|
|
1231
|
+
mode?: "debug" | "display" | "click" | "ui-debug" | undefined;
|
|
1144
1232
|
'no-cache'?: boolean | undefined;
|
|
1145
1233
|
'dry-run'?: boolean | undefined;
|
|
1146
1234
|
}, options?: AxiosRequestConfig<any> | undefined) => Promise<import("axios").AxiosResponse<unknown, any>>;
|
package/build/api.js
CHANGED
|
@@ -63,6 +63,11 @@ class default_1 {
|
|
|
63
63
|
updateVersionWorkflow(params, data, options) {
|
|
64
64
|
return this.axios.post("/workflows/{id}/versions/{versionId}".replace(/{id}/, String(params["id"])).replace(/{versionId}/, String(params["versionId"])), data, options);
|
|
65
65
|
}
|
|
66
|
+
redirect(params, options) {
|
|
67
|
+
return this.axios.get("/workflows/alias/redirect/{alias}/{index}/{user}".replace(/{alias}/, String(params["alias"])).replace(/{index}/, String(params["index"])).replace(/{user}/, String(params["user"])), Object.assign({}, {
|
|
68
|
+
params: pick(params, "no-cache", "dry-run"),
|
|
69
|
+
}, options));
|
|
70
|
+
}
|
|
66
71
|
run(params, options) {
|
|
67
72
|
return this.axios.get("/workflows/run/{id}/{indexOrId}".replace(/{id}/, String(params["id"])).replace(/{indexOrId}/, String(params["indexOrId"])), Object.assign({}, {
|
|
68
73
|
params: pick(params, "rlvt-u", "mode", "no-cache", "dry-run"),
|
|
@@ -96,6 +101,11 @@ class default_1 {
|
|
|
96
101
|
updateVersion: this.updateVersionWorkflow.bind(this)
|
|
97
102
|
};
|
|
98
103
|
}
|
|
104
|
+
get RedirectAlias() {
|
|
105
|
+
return {
|
|
106
|
+
redirect: this.redirect.bind(this)
|
|
107
|
+
};
|
|
108
|
+
}
|
|
99
109
|
get Runner() {
|
|
100
110
|
return {
|
|
101
111
|
run: this.run.bind(this)
|
|
@@ -119,4 +129,4 @@ function pick(obj, ...keys) {
|
|
|
119
129
|
});
|
|
120
130
|
return ret;
|
|
121
131
|
}
|
|
122
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
132
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYXBpLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vYXBpLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiI7QUFBQSxvQkFBb0I7QUFDcEIsb0JBQW9COzs7Ozs7Ozs7Ozs7Ozs7Ozs7O0FBRXBCLGtEQUFpRTtBQUdqRSxnREFBOEI7QUFFOUI7SUFHSSxZQUFZLGdCQUFvRDtRQUM1RCxJQUFJLENBQUMsS0FBSyxHQUFHLGNBQWMsSUFBSSxnQkFBZ0I7WUFDM0MsQ0FBQyxDQUFDLGdCQUFnQjtZQUNsQixDQUFDLENBQUMsZUFBSyxDQUFDLE1BQU0sQ0FBQyxnQkFBZ0IsQ0FBQyxDQUFBO0lBQ3hDLENBQUM7SUFFTyxxQkFBcUIsQ0FBQyxNQUs3QixFQUFFLE9BQTRCO1FBQzNCLE9BQU8sSUFBSSxDQUFDLEtBQUssQ0FBQyxHQUFHLENBQ2pCLHNCQUFzQixFQUN0QixNQUFNLENBQUMsTUFBTSxDQUNULEVBQUUsRUFDRjtZQUNJLE1BQU0sRUFBRSxJQUFJLENBQUMsTUFBTSxFQUFFLE1BQU0sRUFBRSxZQUFZLEVBQUUsTUFBTSxFQUFFLFNBQVMsQ0FBQztTQUNoRSxFQUNELE9BQU8sQ0FDVixDQUNKLENBQUM7SUFDTixDQUFDO0lBRU8sOEJBQThCLENBQUMsTUFBNkIsRUFBRSxPQUE0QjtRQUM5RixPQUFPLElBQUksQ0FBQyxLQUFLLENBQUMsR0FBRyxDQUNqQixpQ0FBaUMsRUFBRSxPQUFPLENBQzdDLENBQUM7SUFDTixDQUFDO0lBRU8sWUFBWSxDQUFDLE1BV3BCLEVBQUUsT0FBNEI7UUFDM0IsT0FBTyxJQUFJLENBQUMsS0FBSyxDQUFDLEdBQUcsQ0FDakIsWUFBWSxFQUNaLE1BQU0sQ0FBQyxNQUFNLENBQ1QsRUFBRSxFQUNGO1lBQ0ksTUFBTSxFQUFFLElBQUksQ0FBQyxNQUFNLEVBQUUsS0FBSyxFQUFFLE1BQU0sRUFBRSxrQkFBa0IsRUFBRSxRQUFRLEVBQUUsaUJBQWlCLEVBQUUsUUFBUSxFQUFFLFdBQVcsRUFBRSxRQUFRLEVBQUUsTUFB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
|
package/build/definitions.d.ts
CHANGED
|
@@ -43,7 +43,7 @@ export declare type Workflow = {
|
|
|
43
43
|
};
|
|
44
44
|
entrypoints: {
|
|
45
45
|
[key: string]: {
|
|
46
|
-
type: "email" | "raw" | "mobile-push-image" | "mobile-inbox-image" | "mobile-app-image" | "web-image" | "web-html" | "landing-page"
|
|
46
|
+
type: "email" | "raw" | "mobile-push-image" | "mobile-inbox-image" | "mobile-app-image" | "web-image" | "web-html" | "landing-page";
|
|
47
47
|
};
|
|
48
48
|
};
|
|
49
49
|
edges: {
|
|
@@ -124,6 +124,7 @@ export declare type WorkflowAnalyze_Without_OutputsForEntrypoint_DatasForEntrypo
|
|
|
124
124
|
};
|
|
125
125
|
entrypointTypes: string[];
|
|
126
126
|
};
|
|
127
|
+
export declare type ObjectId = string;
|
|
127
128
|
export declare type SerializedWorkflowVersion = {
|
|
128
129
|
readonly createdAt: (string) & readonlyP;
|
|
129
130
|
readonly updatedAt: (string) & readonlyP;
|
|
@@ -142,9 +143,10 @@ export declare type SerializedWorkflowVersion = {
|
|
|
142
143
|
[key: string]: string[];
|
|
143
144
|
};
|
|
144
145
|
}) & readonlyP;
|
|
146
|
+
readonly lastSavedBy?: (ObjectId) & readonlyP;
|
|
147
|
+
changeDescription?: string;
|
|
145
148
|
};
|
|
146
149
|
export declare type WorkflowVersion = SerializedWorkflowVersion;
|
|
147
|
-
export declare type ObjectId = string;
|
|
148
150
|
export declare enum WorkflowStatus {
|
|
149
151
|
DRAFT = "draft",
|
|
150
152
|
PUBLISHING = "publishing",
|
|
@@ -153,6 +155,21 @@ export declare enum WorkflowStatus {
|
|
|
153
155
|
INACTIVE = "inactive"
|
|
154
156
|
}
|
|
155
157
|
export declare type SerializedWorkflow = {
|
|
158
|
+
readonly urls?: (({
|
|
159
|
+
type: "landing-page";
|
|
160
|
+
parameters: {
|
|
161
|
+
[key: string]: string;
|
|
162
|
+
};
|
|
163
|
+
display?: string;
|
|
164
|
+
click?: unknown;
|
|
165
|
+
} | {
|
|
166
|
+
type: "email" | "raw" | "mobile-push-image" | "mobile-inbox-image" | "mobile-app-image" | "web-image" | "web-html";
|
|
167
|
+
parameters: {
|
|
168
|
+
[key: string]: string;
|
|
169
|
+
};
|
|
170
|
+
display: string;
|
|
171
|
+
click: string;
|
|
172
|
+
})[]) & readonlyP;
|
|
156
173
|
readonly id: (string) & readonlyP;
|
|
157
174
|
readonly companyId: (string) & readonlyP;
|
|
158
175
|
resourceGroupIds: string[];
|
|
@@ -169,14 +186,6 @@ export declare type SerializedWorkflow = {
|
|
|
169
186
|
value: string;
|
|
170
187
|
}[];
|
|
171
188
|
};
|
|
172
|
-
readonly urls?: ({
|
|
173
|
-
type: "email" | "raw" | "mobile-push-image" | "mobile-inbox-image" | "mobile-app-image" | "web-image" | "web-html" | "landing-page" | "mobile-sms-preview";
|
|
174
|
-
parameters: {
|
|
175
|
-
[key: string]: string;
|
|
176
|
-
};
|
|
177
|
-
display: string;
|
|
178
|
-
click: string;
|
|
179
|
-
}[]) & readonlyP;
|
|
180
189
|
readonly status: (WorkflowStatus) & readonlyP;
|
|
181
190
|
readonly archivedAt: (string | null) & readonlyP;
|
|
182
191
|
};
|
package/build/definitions.js
CHANGED
|
@@ -17,4 +17,4 @@ var WorkflowStatus;
|
|
|
17
17
|
WorkflowStatus["ERROR"] = "error";
|
|
18
18
|
WorkflowStatus["INACTIVE"] = "inactive";
|
|
19
19
|
})(WorkflowStatus = exports.WorkflowStatus || (exports.WorkflowStatus = {}));
|
|
20
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
20
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZGVmaW5pdGlvbnMuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi9kZWZpbml0aW9ucy50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiO0FBQUEsb0JBQW9CO0FBQ3BCLG9CQUFvQjs7O0FBeUdwQixJQUFZLG9CQUlYO0FBSkQsV0FBWSxvQkFBb0I7SUFDNUIsdUNBQWUsQ0FBQTtJQUNmLHFDQUFhLENBQUE7SUFDYiw2Q0FBcUIsQ0FBQTtBQUN6QixDQUFDLEVBSlcsb0JBQW9CLEdBQXBCLDRCQUFvQixLQUFwQiw0QkFBb0IsUUFJL0I7QUF5REQsSUFBWSxjQU1YO0FBTkQsV0FBWSxjQUFjO0lBQ3RCLGlDQUFlLENBQUE7SUFDZiwyQ0FBeUIsQ0FBQTtJQUN6Qix5Q0FBdUIsQ0FBQTtJQUN2QixpQ0FBZSxDQUFBO0lBQ2YsdUNBQXFCLENBQUE7QUFDekIsQ0FBQyxFQU5XLGNBQWMsR0FBZCxzQkFBYyxLQUFkLHNCQUFjLFFBTXpCIn0=
|
package/package.json
CHANGED