@rlvt/workflows-openapi-client 1.0.593 → 1.0.596

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