@rlvt/workflows-openapi-client 1.0.669 → 1.0.671
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 +228 -302
- package/build/api.js +49 -49
- package/build/definitions.d.ts +161 -170
- package/build/definitions.js +8 -8
- package/package.json +1 -1
package/build/api.d.ts
CHANGED
|
@@ -10,6 +10,15 @@ export default class {
|
|
|
10
10
|
private upsertWorkflowBranchCategorySettings;
|
|
11
11
|
private getWorkflowVariableProfileSettings;
|
|
12
12
|
private upsertWorkflowVariableProfileSettings;
|
|
13
|
+
private listParameterValuesUsage;
|
|
14
|
+
private getWorkflowIntegrationsOptions;
|
|
15
|
+
private updateWorkflowIntegrationsOptions;
|
|
16
|
+
private listWorkflowsWithContentUsage;
|
|
17
|
+
private updateWorkflowsWithContentUsage;
|
|
18
|
+
private listWorkflowsWithDatasourceUsage;
|
|
19
|
+
private run;
|
|
20
|
+
private redirect;
|
|
21
|
+
private listHierarchyWorkflow;
|
|
13
22
|
private listWorkflow;
|
|
14
23
|
private createWorkflow;
|
|
15
24
|
private getWorkflow;
|
|
@@ -18,15 +27,6 @@ export default class {
|
|
|
18
27
|
private duplicateWorkflow;
|
|
19
28
|
private publishWorkflow;
|
|
20
29
|
private updateVersionWorkflow;
|
|
21
|
-
private listHierarchyWorkflow;
|
|
22
|
-
private redirect;
|
|
23
|
-
private run;
|
|
24
|
-
private listParameterValuesUsage;
|
|
25
|
-
private getWorkflowIntegrationsOptions;
|
|
26
|
-
private updateWorkflowIntegrationsOptions;
|
|
27
|
-
private listWorkflowsWithContentUsage;
|
|
28
|
-
private updateWorkflowsWithContentUsage;
|
|
29
|
-
private listWorkflowsWithDatasourceUsage;
|
|
30
30
|
get Workflow(): {
|
|
31
31
|
listTemplates: (params: {
|
|
32
32
|
name?: string | undefined;
|
|
@@ -34,13 +34,17 @@ export default class {
|
|
|
34
34
|
page?: number | undefined;
|
|
35
35
|
perPage?: number | undefined;
|
|
36
36
|
}, options?: AxiosRequestConfig<any> | undefined) => Promise<import("axios").AxiosResponse<{
|
|
37
|
+
paginationCount: number;
|
|
38
|
+
paginationPage: number;
|
|
39
|
+
paginationLimit: number;
|
|
40
|
+
} & {
|
|
41
|
+
status: "success";
|
|
42
|
+
} & {
|
|
37
43
|
data: {
|
|
38
44
|
name: string;
|
|
39
45
|
categories: string[];
|
|
40
46
|
id: string;
|
|
41
|
-
|
|
42
|
-
readonly?: "__readonly" | undefined;
|
|
43
|
-
}) | undefined;
|
|
47
|
+
companyId?: string | undefined;
|
|
44
48
|
description?: string | undefined;
|
|
45
49
|
icon: string;
|
|
46
50
|
slug?: string | undefined;
|
|
@@ -96,22 +100,21 @@ export default class {
|
|
|
96
100
|
[x: string]: unknown;
|
|
97
101
|
} | undefined;
|
|
98
102
|
}[];
|
|
99
|
-
paginationCount: number;
|
|
100
|
-
paginationPage: number;
|
|
101
|
-
paginationLimit: number;
|
|
102
|
-
status: "success";
|
|
103
103
|
program: string;
|
|
104
104
|
version: string;
|
|
105
105
|
datetime: string;
|
|
106
|
+
status: string;
|
|
106
107
|
code?: number | undefined;
|
|
107
108
|
message: string;
|
|
108
109
|
}, any, {}>>;
|
|
109
110
|
listTemplateCategories: (params: Record<string, never>, options?: AxiosRequestConfig<any> | undefined) => Promise<import("axios").AxiosResponse<{
|
|
110
|
-
data: string[];
|
|
111
111
|
status: "success";
|
|
112
|
+
} & {
|
|
113
|
+
data: string[];
|
|
112
114
|
program: string;
|
|
113
115
|
version: string;
|
|
114
116
|
datetime: string;
|
|
117
|
+
status: string;
|
|
115
118
|
code?: number | undefined;
|
|
116
119
|
message: string;
|
|
117
120
|
}, any, {}>>;
|
|
@@ -129,28 +132,30 @@ export default class {
|
|
|
129
132
|
perPage?: number | undefined;
|
|
130
133
|
entrypointTypes?: ("email" | "mobile" | "web" | "landing" | "raw")[] | undefined;
|
|
131
134
|
}, options?: AxiosRequestConfig<any> | undefined) => Promise<import("axios").AxiosResponse<{
|
|
135
|
+
paginationCount: number;
|
|
136
|
+
paginationPage: number;
|
|
137
|
+
paginationLimit: number;
|
|
138
|
+
} & {
|
|
139
|
+
status: "success";
|
|
140
|
+
} & {
|
|
132
141
|
data: {
|
|
133
142
|
readonly status: WorkflowStatus & {
|
|
134
143
|
readonly?: "__readonly" | undefined;
|
|
135
144
|
};
|
|
136
145
|
name: string;
|
|
137
|
-
readonly id: string & {
|
|
138
|
-
readonly?: "__readonly" | undefined;
|
|
139
|
-
};
|
|
140
|
-
readonly companyId: string & {
|
|
141
|
-
readonly?: "__readonly" | undefined;
|
|
142
|
-
};
|
|
143
|
-
resourceGroupIds: string[];
|
|
144
|
-
readonly createdAt: string & {
|
|
145
|
-
readonly?: "__readonly" | undefined;
|
|
146
|
-
};
|
|
147
|
-
readonly updatedAt: string & {
|
|
148
|
-
readonly?: "__readonly" | undefined;
|
|
149
|
-
};
|
|
150
146
|
_id: string;
|
|
147
|
+
id: string;
|
|
148
|
+
createdAt: string;
|
|
149
|
+
updatedAt: string;
|
|
150
|
+
companyId: string;
|
|
151
|
+
resourceGroupIds: string[];
|
|
152
|
+
variableProfileId?: string | undefined;
|
|
151
153
|
hierarchy: string[];
|
|
152
154
|
description?: string | undefined;
|
|
153
|
-
readonly
|
|
155
|
+
readonly archivedAt: string & {
|
|
156
|
+
readonly?: "__readonly" | undefined;
|
|
157
|
+
};
|
|
158
|
+
integrations: ({
|
|
154
159
|
code?: string | undefined;
|
|
155
160
|
id: string;
|
|
156
161
|
type: "web";
|
|
@@ -187,14 +192,10 @@ export default class {
|
|
|
187
192
|
[x: string]: string;
|
|
188
193
|
};
|
|
189
194
|
})[];
|
|
190
|
-
|
|
195
|
+
versions: {
|
|
191
196
|
id: string;
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
};
|
|
195
|
-
readonly updatedAt: string & {
|
|
196
|
-
readonly?: "__readonly" | undefined;
|
|
197
|
-
};
|
|
197
|
+
createdAt: string;
|
|
198
|
+
updatedAt: string;
|
|
198
199
|
analyzeOverrides?: {
|
|
199
200
|
vertexIndividualizedScore?: {
|
|
200
201
|
[x: string]: number;
|
|
@@ -303,18 +304,11 @@ export default class {
|
|
|
303
304
|
readonly?: "__readonly" | undefined;
|
|
304
305
|
}) | undefined;
|
|
305
306
|
}[];
|
|
306
|
-
variableProfileId?: string | undefined;
|
|
307
|
-
readonly archivedAt: string & {
|
|
308
|
-
readonly?: "__readonly" | undefined;
|
|
309
|
-
};
|
|
310
307
|
}[];
|
|
311
|
-
paginationCount: number;
|
|
312
|
-
paginationPage: number;
|
|
313
|
-
paginationLimit: number;
|
|
314
|
-
status: "success";
|
|
315
308
|
program: string;
|
|
316
309
|
version: string;
|
|
317
310
|
datetime: string;
|
|
311
|
+
status: string;
|
|
318
312
|
code?: number | undefined;
|
|
319
313
|
message: string;
|
|
320
314
|
}, any, {}>>;
|
|
@@ -323,28 +317,26 @@ export default class {
|
|
|
323
317
|
resourceGroupIds: string[];
|
|
324
318
|
description?: string | undefined;
|
|
325
319
|
}, options?: AxiosRequestConfig<any> | undefined) => Promise<import("axios").AxiosResponse<{
|
|
320
|
+
status: "success";
|
|
321
|
+
} & {
|
|
326
322
|
data: {
|
|
327
323
|
readonly status: WorkflowStatus & {
|
|
328
324
|
readonly?: "__readonly" | undefined;
|
|
329
325
|
};
|
|
330
326
|
name: string;
|
|
331
|
-
readonly id: string & {
|
|
332
|
-
readonly?: "__readonly" | undefined;
|
|
333
|
-
};
|
|
334
|
-
readonly companyId: string & {
|
|
335
|
-
readonly?: "__readonly" | undefined;
|
|
336
|
-
};
|
|
337
|
-
resourceGroupIds: string[];
|
|
338
|
-
readonly createdAt: string & {
|
|
339
|
-
readonly?: "__readonly" | undefined;
|
|
340
|
-
};
|
|
341
|
-
readonly updatedAt: string & {
|
|
342
|
-
readonly?: "__readonly" | undefined;
|
|
343
|
-
};
|
|
344
327
|
_id: string;
|
|
328
|
+
id: string;
|
|
329
|
+
createdAt: string;
|
|
330
|
+
updatedAt: string;
|
|
331
|
+
companyId: string;
|
|
332
|
+
resourceGroupIds: string[];
|
|
333
|
+
variableProfileId?: string | undefined;
|
|
345
334
|
hierarchy: string[];
|
|
346
335
|
description?: string | undefined;
|
|
347
|
-
readonly
|
|
336
|
+
readonly archivedAt: string & {
|
|
337
|
+
readonly?: "__readonly" | undefined;
|
|
338
|
+
};
|
|
339
|
+
integrations: ({
|
|
348
340
|
code?: string | undefined;
|
|
349
341
|
id: string;
|
|
350
342
|
type: "web";
|
|
@@ -381,14 +373,10 @@ export default class {
|
|
|
381
373
|
[x: string]: string;
|
|
382
374
|
};
|
|
383
375
|
})[];
|
|
384
|
-
|
|
376
|
+
versions: {
|
|
385
377
|
id: string;
|
|
386
|
-
|
|
387
|
-
|
|
388
|
-
};
|
|
389
|
-
readonly updatedAt: string & {
|
|
390
|
-
readonly?: "__readonly" | undefined;
|
|
391
|
-
};
|
|
378
|
+
createdAt: string;
|
|
379
|
+
updatedAt: string;
|
|
392
380
|
analyzeOverrides?: {
|
|
393
381
|
vertexIndividualizedScore?: {
|
|
394
382
|
[x: string]: number;
|
|
@@ -497,15 +485,11 @@ export default class {
|
|
|
497
485
|
readonly?: "__readonly" | undefined;
|
|
498
486
|
}) | undefined;
|
|
499
487
|
}[];
|
|
500
|
-
variableProfileId?: string | undefined;
|
|
501
|
-
readonly archivedAt: string & {
|
|
502
|
-
readonly?: "__readonly" | undefined;
|
|
503
|
-
};
|
|
504
488
|
};
|
|
505
|
-
status: "success";
|
|
506
489
|
program: string;
|
|
507
490
|
version: string;
|
|
508
491
|
datetime: string;
|
|
492
|
+
status: string;
|
|
509
493
|
code?: number | undefined;
|
|
510
494
|
message: string;
|
|
511
495
|
}, any, {}>>;
|
|
@@ -515,28 +499,26 @@ export default class {
|
|
|
515
499
|
versions?: WorkflowVersionState[] | undefined;
|
|
516
500
|
select?: string[] | undefined;
|
|
517
501
|
}, options?: AxiosRequestConfig<any> | undefined) => Promise<import("axios").AxiosResponse<{
|
|
502
|
+
status: "success";
|
|
503
|
+
} & {
|
|
518
504
|
data: {
|
|
519
505
|
readonly status: WorkflowStatus & {
|
|
520
506
|
readonly?: "__readonly" | undefined;
|
|
521
507
|
};
|
|
522
508
|
name: string;
|
|
523
|
-
readonly id: string & {
|
|
524
|
-
readonly?: "__readonly" | undefined;
|
|
525
|
-
};
|
|
526
|
-
readonly companyId: string & {
|
|
527
|
-
readonly?: "__readonly" | undefined;
|
|
528
|
-
};
|
|
529
|
-
resourceGroupIds: string[];
|
|
530
|
-
readonly createdAt: string & {
|
|
531
|
-
readonly?: "__readonly" | undefined;
|
|
532
|
-
};
|
|
533
|
-
readonly updatedAt: string & {
|
|
534
|
-
readonly?: "__readonly" | undefined;
|
|
535
|
-
};
|
|
536
509
|
_id: string;
|
|
510
|
+
id: string;
|
|
511
|
+
createdAt: string;
|
|
512
|
+
updatedAt: string;
|
|
513
|
+
companyId: string;
|
|
514
|
+
resourceGroupIds: string[];
|
|
515
|
+
variableProfileId?: string | undefined;
|
|
537
516
|
hierarchy: string[];
|
|
538
517
|
description?: string | undefined;
|
|
539
|
-
readonly
|
|
518
|
+
readonly archivedAt: string & {
|
|
519
|
+
readonly?: "__readonly" | undefined;
|
|
520
|
+
};
|
|
521
|
+
integrations: ({
|
|
540
522
|
code?: string | undefined;
|
|
541
523
|
id: string;
|
|
542
524
|
type: "web";
|
|
@@ -573,14 +555,10 @@ export default class {
|
|
|
573
555
|
[x: string]: string;
|
|
574
556
|
};
|
|
575
557
|
})[];
|
|
576
|
-
|
|
558
|
+
versions: {
|
|
577
559
|
id: string;
|
|
578
|
-
|
|
579
|
-
|
|
580
|
-
};
|
|
581
|
-
readonly updatedAt: string & {
|
|
582
|
-
readonly?: "__readonly" | undefined;
|
|
583
|
-
};
|
|
560
|
+
createdAt: string;
|
|
561
|
+
updatedAt: string;
|
|
584
562
|
analyzeOverrides?: {
|
|
585
563
|
vertexIndividualizedScore?: {
|
|
586
564
|
[x: string]: number;
|
|
@@ -689,15 +667,11 @@ export default class {
|
|
|
689
667
|
readonly?: "__readonly" | undefined;
|
|
690
668
|
}) | undefined;
|
|
691
669
|
}[];
|
|
692
|
-
variableProfileId?: string | undefined;
|
|
693
|
-
readonly archivedAt: string & {
|
|
694
|
-
readonly?: "__readonly" | undefined;
|
|
695
|
-
};
|
|
696
670
|
};
|
|
697
|
-
status: "success";
|
|
698
671
|
program: string;
|
|
699
672
|
version: string;
|
|
700
673
|
datetime: string;
|
|
674
|
+
status: string;
|
|
701
675
|
code?: number | undefined;
|
|
702
676
|
message: string;
|
|
703
677
|
}, any, {}>>;
|
|
@@ -774,28 +748,26 @@ export default class {
|
|
|
774
748
|
} | undefined;
|
|
775
749
|
changeDescription?: string | undefined;
|
|
776
750
|
}, options?: AxiosRequestConfig<any> | undefined) => Promise<import("axios").AxiosResponse<{
|
|
751
|
+
status: "success";
|
|
752
|
+
} & {
|
|
777
753
|
data: {
|
|
778
754
|
readonly status: WorkflowStatus & {
|
|
779
755
|
readonly?: "__readonly" | undefined;
|
|
780
756
|
};
|
|
781
757
|
name: string;
|
|
782
|
-
readonly id: string & {
|
|
783
|
-
readonly?: "__readonly" | undefined;
|
|
784
|
-
};
|
|
785
|
-
readonly companyId: string & {
|
|
786
|
-
readonly?: "__readonly" | undefined;
|
|
787
|
-
};
|
|
788
|
-
resourceGroupIds: string[];
|
|
789
|
-
readonly createdAt: string & {
|
|
790
|
-
readonly?: "__readonly" | undefined;
|
|
791
|
-
};
|
|
792
|
-
readonly updatedAt: string & {
|
|
793
|
-
readonly?: "__readonly" | undefined;
|
|
794
|
-
};
|
|
795
758
|
_id: string;
|
|
759
|
+
id: string;
|
|
760
|
+
createdAt: string;
|
|
761
|
+
updatedAt: string;
|
|
762
|
+
companyId: string;
|
|
763
|
+
resourceGroupIds: string[];
|
|
764
|
+
variableProfileId?: string | undefined;
|
|
796
765
|
hierarchy: string[];
|
|
797
766
|
description?: string | undefined;
|
|
798
|
-
readonly
|
|
767
|
+
readonly archivedAt: string & {
|
|
768
|
+
readonly?: "__readonly" | undefined;
|
|
769
|
+
};
|
|
770
|
+
integrations: ({
|
|
799
771
|
code?: string | undefined;
|
|
800
772
|
id: string;
|
|
801
773
|
type: "web";
|
|
@@ -832,14 +804,10 @@ export default class {
|
|
|
832
804
|
[x: string]: string;
|
|
833
805
|
};
|
|
834
806
|
})[];
|
|
835
|
-
|
|
807
|
+
versions: {
|
|
836
808
|
id: string;
|
|
837
|
-
|
|
838
|
-
|
|
839
|
-
};
|
|
840
|
-
readonly updatedAt: string & {
|
|
841
|
-
readonly?: "__readonly" | undefined;
|
|
842
|
-
};
|
|
809
|
+
createdAt: string;
|
|
810
|
+
updatedAt: string;
|
|
843
811
|
analyzeOverrides?: {
|
|
844
812
|
vertexIndividualizedScore?: {
|
|
845
813
|
[x: string]: number;
|
|
@@ -948,54 +916,50 @@ export default class {
|
|
|
948
916
|
readonly?: "__readonly" | undefined;
|
|
949
917
|
}) | undefined;
|
|
950
918
|
}[];
|
|
951
|
-
variableProfileId?: string | undefined;
|
|
952
|
-
readonly archivedAt: string & {
|
|
953
|
-
readonly?: "__readonly" | undefined;
|
|
954
|
-
};
|
|
955
919
|
};
|
|
956
|
-
status: "success";
|
|
957
920
|
program: string;
|
|
958
921
|
version: string;
|
|
959
922
|
datetime: string;
|
|
923
|
+
status: string;
|
|
960
924
|
code?: number | undefined;
|
|
961
925
|
message: string;
|
|
962
926
|
}, any, {}>>;
|
|
963
927
|
delete: (params: {
|
|
964
928
|
id: string;
|
|
965
929
|
}, options?: AxiosRequestConfig<any> | undefined) => Promise<import("axios").AxiosResponse<{
|
|
966
|
-
data: unknown;
|
|
967
930
|
status: "success";
|
|
931
|
+
} & {
|
|
932
|
+
data: unknown;
|
|
968
933
|
program: string;
|
|
969
934
|
version: string;
|
|
970
935
|
datetime: string;
|
|
936
|
+
status: string;
|
|
971
937
|
code?: number | undefined;
|
|
972
938
|
message: string;
|
|
973
939
|
}, any, {}>>;
|
|
974
940
|
duplicate: (params: Record<string, never>, data: {
|
|
975
941
|
sourceId: string;
|
|
976
942
|
}, options?: AxiosRequestConfig<any> | undefined) => Promise<import("axios").AxiosResponse<{
|
|
943
|
+
status: "success";
|
|
944
|
+
} & {
|
|
977
945
|
data: {
|
|
978
946
|
readonly status: WorkflowStatus & {
|
|
979
947
|
readonly?: "__readonly" | undefined;
|
|
980
948
|
};
|
|
981
949
|
name: string;
|
|
982
|
-
readonly id: string & {
|
|
983
|
-
readonly?: "__readonly" | undefined;
|
|
984
|
-
};
|
|
985
|
-
readonly companyId: string & {
|
|
986
|
-
readonly?: "__readonly" | undefined;
|
|
987
|
-
};
|
|
988
|
-
resourceGroupIds: string[];
|
|
989
|
-
readonly createdAt: string & {
|
|
990
|
-
readonly?: "__readonly" | undefined;
|
|
991
|
-
};
|
|
992
|
-
readonly updatedAt: string & {
|
|
993
|
-
readonly?: "__readonly" | undefined;
|
|
994
|
-
};
|
|
995
950
|
_id: string;
|
|
951
|
+
id: string;
|
|
952
|
+
createdAt: string;
|
|
953
|
+
updatedAt: string;
|
|
954
|
+
companyId: string;
|
|
955
|
+
resourceGroupIds: string[];
|
|
956
|
+
variableProfileId?: string | undefined;
|
|
996
957
|
hierarchy: string[];
|
|
997
958
|
description?: string | undefined;
|
|
998
|
-
readonly
|
|
959
|
+
readonly archivedAt: string & {
|
|
960
|
+
readonly?: "__readonly" | undefined;
|
|
961
|
+
};
|
|
962
|
+
integrations: ({
|
|
999
963
|
code?: string | undefined;
|
|
1000
964
|
id: string;
|
|
1001
965
|
type: "web";
|
|
@@ -1032,14 +996,10 @@ export default class {
|
|
|
1032
996
|
[x: string]: string;
|
|
1033
997
|
};
|
|
1034
998
|
})[];
|
|
1035
|
-
|
|
999
|
+
versions: {
|
|
1036
1000
|
id: string;
|
|
1037
|
-
|
|
1038
|
-
|
|
1039
|
-
};
|
|
1040
|
-
readonly updatedAt: string & {
|
|
1041
|
-
readonly?: "__readonly" | undefined;
|
|
1042
|
-
};
|
|
1001
|
+
createdAt: string;
|
|
1002
|
+
updatedAt: string;
|
|
1043
1003
|
analyzeOverrides?: {
|
|
1044
1004
|
vertexIndividualizedScore?: {
|
|
1045
1005
|
[x: string]: number;
|
|
@@ -1148,43 +1108,37 @@ export default class {
|
|
|
1148
1108
|
readonly?: "__readonly" | undefined;
|
|
1149
1109
|
}) | undefined;
|
|
1150
1110
|
}[];
|
|
1151
|
-
variableProfileId?: string | undefined;
|
|
1152
|
-
readonly archivedAt: string & {
|
|
1153
|
-
readonly?: "__readonly" | undefined;
|
|
1154
|
-
};
|
|
1155
1111
|
};
|
|
1156
|
-
status: "success";
|
|
1157
1112
|
program: string;
|
|
1158
1113
|
version: string;
|
|
1159
1114
|
datetime: string;
|
|
1115
|
+
status: string;
|
|
1160
1116
|
code?: number | undefined;
|
|
1161
1117
|
message: string;
|
|
1162
1118
|
}, any, {}>>;
|
|
1163
1119
|
publish: (params: {
|
|
1164
1120
|
id: string;
|
|
1165
1121
|
}, options?: AxiosRequestConfig<any> | undefined) => Promise<import("axios").AxiosResponse<{
|
|
1122
|
+
status: "success";
|
|
1123
|
+
} & {
|
|
1166
1124
|
data: {
|
|
1167
1125
|
readonly status: WorkflowStatus & {
|
|
1168
1126
|
readonly?: "__readonly" | undefined;
|
|
1169
1127
|
};
|
|
1170
1128
|
name: string;
|
|
1171
|
-
readonly id: string & {
|
|
1172
|
-
readonly?: "__readonly" | undefined;
|
|
1173
|
-
};
|
|
1174
|
-
readonly companyId: string & {
|
|
1175
|
-
readonly?: "__readonly" | undefined;
|
|
1176
|
-
};
|
|
1177
|
-
resourceGroupIds: string[];
|
|
1178
|
-
readonly createdAt: string & {
|
|
1179
|
-
readonly?: "__readonly" | undefined;
|
|
1180
|
-
};
|
|
1181
|
-
readonly updatedAt: string & {
|
|
1182
|
-
readonly?: "__readonly" | undefined;
|
|
1183
|
-
};
|
|
1184
1129
|
_id: string;
|
|
1130
|
+
id: string;
|
|
1131
|
+
createdAt: string;
|
|
1132
|
+
updatedAt: string;
|
|
1133
|
+
companyId: string;
|
|
1134
|
+
resourceGroupIds: string[];
|
|
1135
|
+
variableProfileId?: string | undefined;
|
|
1185
1136
|
hierarchy: string[];
|
|
1186
1137
|
description?: string | undefined;
|
|
1187
|
-
readonly
|
|
1138
|
+
readonly archivedAt: string & {
|
|
1139
|
+
readonly?: "__readonly" | undefined;
|
|
1140
|
+
};
|
|
1141
|
+
integrations: ({
|
|
1188
1142
|
code?: string | undefined;
|
|
1189
1143
|
id: string;
|
|
1190
1144
|
type: "web";
|
|
@@ -1221,14 +1175,10 @@ export default class {
|
|
|
1221
1175
|
[x: string]: string;
|
|
1222
1176
|
};
|
|
1223
1177
|
})[];
|
|
1224
|
-
|
|
1178
|
+
versions: {
|
|
1225
1179
|
id: string;
|
|
1226
|
-
|
|
1227
|
-
|
|
1228
|
-
};
|
|
1229
|
-
readonly updatedAt: string & {
|
|
1230
|
-
readonly?: "__readonly" | undefined;
|
|
1231
|
-
};
|
|
1180
|
+
createdAt: string;
|
|
1181
|
+
updatedAt: string;
|
|
1232
1182
|
analyzeOverrides?: {
|
|
1233
1183
|
vertexIndividualizedScore?: {
|
|
1234
1184
|
[x: string]: number;
|
|
@@ -1337,15 +1287,11 @@ export default class {
|
|
|
1337
1287
|
readonly?: "__readonly" | undefined;
|
|
1338
1288
|
}) | undefined;
|
|
1339
1289
|
}[];
|
|
1340
|
-
variableProfileId?: string | undefined;
|
|
1341
|
-
readonly archivedAt: string & {
|
|
1342
|
-
readonly?: "__readonly" | undefined;
|
|
1343
|
-
};
|
|
1344
1290
|
};
|
|
1345
|
-
status: "success";
|
|
1346
1291
|
program: string;
|
|
1347
1292
|
version: string;
|
|
1348
1293
|
datetime: string;
|
|
1294
|
+
status: string;
|
|
1349
1295
|
code?: number | undefined;
|
|
1350
1296
|
message: string;
|
|
1351
1297
|
}, any, {}>>;
|
|
@@ -1366,28 +1312,26 @@ export default class {
|
|
|
1366
1312
|
} | undefined;
|
|
1367
1313
|
} | undefined;
|
|
1368
1314
|
}, options?: AxiosRequestConfig<any> | undefined) => Promise<import("axios").AxiosResponse<{
|
|
1315
|
+
status: "success";
|
|
1316
|
+
} & {
|
|
1369
1317
|
data: {
|
|
1370
1318
|
readonly status: WorkflowStatus & {
|
|
1371
1319
|
readonly?: "__readonly" | undefined;
|
|
1372
1320
|
};
|
|
1373
1321
|
name: string;
|
|
1374
|
-
readonly id: string & {
|
|
1375
|
-
readonly?: "__readonly" | undefined;
|
|
1376
|
-
};
|
|
1377
|
-
readonly companyId: string & {
|
|
1378
|
-
readonly?: "__readonly" | undefined;
|
|
1379
|
-
};
|
|
1380
|
-
resourceGroupIds: string[];
|
|
1381
|
-
readonly createdAt: string & {
|
|
1382
|
-
readonly?: "__readonly" | undefined;
|
|
1383
|
-
};
|
|
1384
|
-
readonly updatedAt: string & {
|
|
1385
|
-
readonly?: "__readonly" | undefined;
|
|
1386
|
-
};
|
|
1387
1322
|
_id: string;
|
|
1323
|
+
id: string;
|
|
1324
|
+
createdAt: string;
|
|
1325
|
+
updatedAt: string;
|
|
1326
|
+
companyId: string;
|
|
1327
|
+
resourceGroupIds: string[];
|
|
1328
|
+
variableProfileId?: string | undefined;
|
|
1388
1329
|
hierarchy: string[];
|
|
1389
1330
|
description?: string | undefined;
|
|
1390
|
-
readonly
|
|
1331
|
+
readonly archivedAt: string & {
|
|
1332
|
+
readonly?: "__readonly" | undefined;
|
|
1333
|
+
};
|
|
1334
|
+
integrations: ({
|
|
1391
1335
|
code?: string | undefined;
|
|
1392
1336
|
id: string;
|
|
1393
1337
|
type: "web";
|
|
@@ -1424,14 +1368,10 @@ export default class {
|
|
|
1424
1368
|
[x: string]: string;
|
|
1425
1369
|
};
|
|
1426
1370
|
})[];
|
|
1427
|
-
|
|
1371
|
+
versions: {
|
|
1428
1372
|
id: string;
|
|
1429
|
-
|
|
1430
|
-
|
|
1431
|
-
};
|
|
1432
|
-
readonly updatedAt: string & {
|
|
1433
|
-
readonly?: "__readonly" | undefined;
|
|
1434
|
-
};
|
|
1373
|
+
createdAt: string;
|
|
1374
|
+
updatedAt: string;
|
|
1435
1375
|
analyzeOverrides?: {
|
|
1436
1376
|
vertexIndividualizedScore?: {
|
|
1437
1377
|
[x: string]: number;
|
|
@@ -1540,21 +1480,19 @@ export default class {
|
|
|
1540
1480
|
readonly?: "__readonly" | undefined;
|
|
1541
1481
|
}) | undefined;
|
|
1542
1482
|
}[];
|
|
1543
|
-
variableProfileId?: string | undefined;
|
|
1544
|
-
readonly archivedAt: string & {
|
|
1545
|
-
readonly?: "__readonly" | undefined;
|
|
1546
|
-
};
|
|
1547
1483
|
};
|
|
1548
|
-
status: "success";
|
|
1549
1484
|
program: string;
|
|
1550
1485
|
version: string;
|
|
1551
1486
|
datetime: string;
|
|
1487
|
+
status: string;
|
|
1552
1488
|
code?: number | undefined;
|
|
1553
1489
|
message: string;
|
|
1554
1490
|
}, any, {}>>;
|
|
1555
1491
|
};
|
|
1556
1492
|
get WorkflowSettings(): {
|
|
1557
1493
|
getWorkflowBranchCategorySettings: (params: Record<string, never>, options?: AxiosRequestConfig<any> | undefined) => Promise<import("axios").AxiosResponse<{
|
|
1494
|
+
status: "success";
|
|
1495
|
+
} & {
|
|
1558
1496
|
data: {
|
|
1559
1497
|
categories: {
|
|
1560
1498
|
[x: string]: {
|
|
@@ -1563,27 +1501,19 @@ export default class {
|
|
|
1563
1501
|
children: string[];
|
|
1564
1502
|
};
|
|
1565
1503
|
};
|
|
1566
|
-
readonly id: string & {
|
|
1567
|
-
readonly?: "__readonly" | undefined;
|
|
1568
|
-
};
|
|
1569
|
-
readonly companyId: string & {
|
|
1570
|
-
readonly?: "__readonly" | undefined;
|
|
1571
|
-
};
|
|
1572
|
-
resourceGroupIds: string[];
|
|
1573
|
-
readonly createdAt: string & {
|
|
1574
|
-
readonly?: "__readonly" | undefined;
|
|
1575
|
-
};
|
|
1576
|
-
readonly updatedAt: string & {
|
|
1577
|
-
readonly?: "__readonly" | undefined;
|
|
1578
|
-
};
|
|
1579
1504
|
_id: string;
|
|
1505
|
+
id: string;
|
|
1580
1506
|
type: import("./definitions").WorkflowSettingsType;
|
|
1507
|
+
createdAt: string;
|
|
1508
|
+
updatedAt: string;
|
|
1509
|
+
companyId: string;
|
|
1510
|
+
resourceGroupIds: string[];
|
|
1581
1511
|
rootOrder: string[];
|
|
1582
1512
|
};
|
|
1583
|
-
status: "success";
|
|
1584
1513
|
program: string;
|
|
1585
1514
|
version: string;
|
|
1586
1515
|
datetime: string;
|
|
1516
|
+
status: string;
|
|
1587
1517
|
code?: number | undefined;
|
|
1588
1518
|
message: string;
|
|
1589
1519
|
}, any, {}>>;
|
|
@@ -1599,6 +1529,8 @@ export default class {
|
|
|
1599
1529
|
} & {
|
|
1600
1530
|
resourceGroupIds: string[];
|
|
1601
1531
|
}, options?: AxiosRequestConfig<any> | undefined) => Promise<import("axios").AxiosResponse<{
|
|
1532
|
+
status: "success";
|
|
1533
|
+
} & {
|
|
1602
1534
|
data: {
|
|
1603
1535
|
categories: {
|
|
1604
1536
|
[x: string]: {
|
|
@@ -1607,47 +1539,33 @@ export default class {
|
|
|
1607
1539
|
children: string[];
|
|
1608
1540
|
};
|
|
1609
1541
|
};
|
|
1610
|
-
readonly id: string & {
|
|
1611
|
-
readonly?: "__readonly" | undefined;
|
|
1612
|
-
};
|
|
1613
|
-
readonly companyId: string & {
|
|
1614
|
-
readonly?: "__readonly" | undefined;
|
|
1615
|
-
};
|
|
1616
|
-
resourceGroupIds: string[];
|
|
1617
|
-
readonly createdAt: string & {
|
|
1618
|
-
readonly?: "__readonly" | undefined;
|
|
1619
|
-
};
|
|
1620
|
-
readonly updatedAt: string & {
|
|
1621
|
-
readonly?: "__readonly" | undefined;
|
|
1622
|
-
};
|
|
1623
1542
|
_id: string;
|
|
1543
|
+
id: string;
|
|
1624
1544
|
type: import("./definitions").WorkflowSettingsType;
|
|
1545
|
+
createdAt: string;
|
|
1546
|
+
updatedAt: string;
|
|
1547
|
+
companyId: string;
|
|
1548
|
+
resourceGroupIds: string[];
|
|
1625
1549
|
rootOrder: string[];
|
|
1626
1550
|
};
|
|
1627
|
-
status: "success";
|
|
1628
1551
|
program: string;
|
|
1629
1552
|
version: string;
|
|
1630
1553
|
datetime: string;
|
|
1554
|
+
status: string;
|
|
1631
1555
|
code?: number | undefined;
|
|
1632
1556
|
message: string;
|
|
1633
1557
|
}, any, {}>>;
|
|
1634
1558
|
getWorkflowVariableProfileSettings: (params: Record<string, never>, options?: AxiosRequestConfig<any> | undefined) => Promise<import("axios").AxiosResponse<{
|
|
1559
|
+
status: "success";
|
|
1560
|
+
} & {
|
|
1635
1561
|
data: {
|
|
1636
|
-
readonly id: string & {
|
|
1637
|
-
readonly?: "__readonly" | undefined;
|
|
1638
|
-
};
|
|
1639
|
-
readonly companyId: string & {
|
|
1640
|
-
readonly?: "__readonly" | undefined;
|
|
1641
|
-
};
|
|
1642
|
-
resourceGroupIds: string[];
|
|
1643
|
-
readonly createdAt: string & {
|
|
1644
|
-
readonly?: "__readonly" | undefined;
|
|
1645
|
-
};
|
|
1646
|
-
readonly updatedAt: string & {
|
|
1647
|
-
readonly?: "__readonly" | undefined;
|
|
1648
|
-
};
|
|
1649
1562
|
_id: string;
|
|
1563
|
+
id: string;
|
|
1650
1564
|
type: import("./definitions").WorkflowSettingsType;
|
|
1565
|
+
createdAt: string;
|
|
1566
|
+
updatedAt: string;
|
|
1567
|
+
companyId: string;
|
|
1568
|
+
resourceGroupIds: string[];
|
|
1651
1569
|
profiles: {
|
|
1652
1570
|
name: string;
|
|
1653
1571
|
id: string;
|
|
@@ -1661,10 +1579,10 @@ export default class {
|
|
|
1661
1579
|
};
|
|
1662
1580
|
}[];
|
|
1663
1581
|
};
|
|
1664
|
-
status: "success";
|
|
1665
1582
|
program: string;
|
|
1666
1583
|
version: string;
|
|
1667
1584
|
datetime: string;
|
|
1585
|
+
status: string;
|
|
1668
1586
|
code?: number | undefined;
|
|
1669
1587
|
message: string;
|
|
1670
1588
|
}, any, {}>>;
|
|
@@ -1683,22 +1601,16 @@ export default class {
|
|
|
1683
1601
|
};
|
|
1684
1602
|
}[];
|
|
1685
1603
|
}, options?: AxiosRequestConfig<any> | undefined) => Promise<import("axios").AxiosResponse<{
|
|
1604
|
+
status: "success";
|
|
1605
|
+
} & {
|
|
1686
1606
|
data: {
|
|
1687
|
-
readonly id: string & {
|
|
1688
|
-
readonly?: "__readonly" | undefined;
|
|
1689
|
-
};
|
|
1690
|
-
readonly companyId: string & {
|
|
1691
|
-
readonly?: "__readonly" | undefined;
|
|
1692
|
-
};
|
|
1693
|
-
resourceGroupIds: string[];
|
|
1694
|
-
readonly createdAt: string & {
|
|
1695
|
-
readonly?: "__readonly" | undefined;
|
|
1696
|
-
};
|
|
1697
|
-
readonly updatedAt: string & {
|
|
1698
|
-
readonly?: "__readonly" | undefined;
|
|
1699
|
-
};
|
|
1700
1607
|
_id: string;
|
|
1608
|
+
id: string;
|
|
1701
1609
|
type: import("./definitions").WorkflowSettingsType;
|
|
1610
|
+
createdAt: string;
|
|
1611
|
+
updatedAt: string;
|
|
1612
|
+
companyId: string;
|
|
1613
|
+
resourceGroupIds: string[];
|
|
1702
1614
|
profiles: {
|
|
1703
1615
|
name: string;
|
|
1704
1616
|
id: string;
|
|
@@ -1712,70 +1624,40 @@ export default class {
|
|
|
1712
1624
|
};
|
|
1713
1625
|
}[];
|
|
1714
1626
|
};
|
|
1715
|
-
status: "success";
|
|
1716
1627
|
program: string;
|
|
1717
1628
|
version: string;
|
|
1718
1629
|
datetime: string;
|
|
1630
|
+
status: string;
|
|
1719
1631
|
code?: number | undefined;
|
|
1720
1632
|
message: string;
|
|
1721
1633
|
}, any, {}>>;
|
|
1722
1634
|
};
|
|
1723
|
-
get Hierarchy(): {
|
|
1724
|
-
listWorkflow: (params: {
|
|
1725
|
-
hierarchy?: string[] | undefined;
|
|
1726
|
-
}, options?: AxiosRequestConfig<any> | undefined) => Promise<import("axios").AxiosResponse<{
|
|
1727
|
-
data: string[];
|
|
1728
|
-
status: "success";
|
|
1729
|
-
program: string;
|
|
1730
|
-
version: string;
|
|
1731
|
-
datetime: string;
|
|
1732
|
-
code?: number | undefined;
|
|
1733
|
-
message: string;
|
|
1734
|
-
}, any, {}>>;
|
|
1735
|
-
};
|
|
1736
|
-
get RedirectAlias(): {
|
|
1737
|
-
redirect: (params: {
|
|
1738
|
-
alias: string;
|
|
1739
|
-
index: number;
|
|
1740
|
-
user: string;
|
|
1741
|
-
'no-cache'?: boolean | undefined;
|
|
1742
|
-
'dry-run'?: boolean | undefined;
|
|
1743
|
-
}, options?: AxiosRequestConfig<any> | undefined) => Promise<import("axios").AxiosResponse<unknown, any, {}>>;
|
|
1744
|
-
};
|
|
1745
|
-
get Runner(): {
|
|
1746
|
-
run: (params: {
|
|
1747
|
-
id: string;
|
|
1748
|
-
indexOrId: string | number;
|
|
1749
|
-
user: string;
|
|
1750
|
-
mode?: "debug" | "loop" | "display" | "click" | "ui-debug" | undefined;
|
|
1751
|
-
'no-cache'?: boolean | undefined;
|
|
1752
|
-
engine?: string | undefined;
|
|
1753
|
-
'dry-run'?: boolean | undefined;
|
|
1754
|
-
'rlvt-redirect'?: string | undefined;
|
|
1755
|
-
}, options?: AxiosRequestConfig<any> | undefined) => Promise<import("axios").AxiosResponse<unknown, any, {}>>;
|
|
1756
|
-
};
|
|
1757
1635
|
get Usage(): {
|
|
1758
1636
|
listParameterValues: (params: {
|
|
1759
1637
|
names: string[];
|
|
1760
1638
|
}, options?: AxiosRequestConfig<any> | undefined) => Promise<import("axios").AxiosResponse<{
|
|
1639
|
+
status: "success";
|
|
1640
|
+
} & {
|
|
1761
1641
|
data: {
|
|
1762
1642
|
[x: string]: string[];
|
|
1763
1643
|
};
|
|
1764
|
-
status: "success";
|
|
1765
1644
|
program: string;
|
|
1766
1645
|
version: string;
|
|
1767
1646
|
datetime: string;
|
|
1647
|
+
status: string;
|
|
1768
1648
|
code?: number | undefined;
|
|
1769
1649
|
message: string;
|
|
1770
1650
|
}, any, {}>>;
|
|
1771
1651
|
getWorkflowIntegrationsOptions: (params: {
|
|
1772
1652
|
id: string;
|
|
1773
1653
|
}, options?: AxiosRequestConfig<any> | undefined) => Promise<import("axios").AxiosResponse<{
|
|
1654
|
+
status: "success";
|
|
1655
|
+
} & {
|
|
1774
1656
|
data: {
|
|
1775
1657
|
integrationOptions: ({
|
|
1776
1658
|
type: "email" | "mobile" | "landing" | "raw";
|
|
1777
1659
|
parameters: {
|
|
1778
|
-
[x: string]: string
|
|
1660
|
+
[x: string]: string;
|
|
1779
1661
|
};
|
|
1780
1662
|
entrypointId?: string | undefined;
|
|
1781
1663
|
} | {
|
|
@@ -1798,10 +1680,10 @@ export default class {
|
|
|
1798
1680
|
entrypointId?: string | undefined;
|
|
1799
1681
|
})[];
|
|
1800
1682
|
};
|
|
1801
|
-
status: "success";
|
|
1802
1683
|
program: string;
|
|
1803
1684
|
version: string;
|
|
1804
1685
|
datetime: string;
|
|
1686
|
+
status: string;
|
|
1805
1687
|
code?: number | undefined;
|
|
1806
1688
|
message: string;
|
|
1807
1689
|
}, any, {}>>;
|
|
@@ -1811,7 +1693,7 @@ export default class {
|
|
|
1811
1693
|
integrationOptions?: ({
|
|
1812
1694
|
type: "email" | "mobile" | "landing" | "raw";
|
|
1813
1695
|
parameters: {
|
|
1814
|
-
[key: string]: string
|
|
1696
|
+
[key: string]: string;
|
|
1815
1697
|
};
|
|
1816
1698
|
entrypointId?: string | undefined;
|
|
1817
1699
|
} | {
|
|
@@ -1835,12 +1717,13 @@ export default class {
|
|
|
1835
1717
|
})[] | undefined;
|
|
1836
1718
|
variableProfileId?: string | undefined;
|
|
1837
1719
|
}, options?: AxiosRequestConfig<any> | undefined) => Promise<import("axios").AxiosResponse<{
|
|
1720
|
+
status: "success";
|
|
1721
|
+
} & {
|
|
1838
1722
|
data: {
|
|
1839
|
-
variableProfileId?: string | undefined;
|
|
1840
1723
|
integrationOptions: ({
|
|
1841
1724
|
type: "email" | "mobile" | "landing" | "raw";
|
|
1842
1725
|
parameters: {
|
|
1843
|
-
[x: string]: string
|
|
1726
|
+
[x: string]: string;
|
|
1844
1727
|
};
|
|
1845
1728
|
entrypointId?: string | undefined;
|
|
1846
1729
|
} | {
|
|
@@ -1862,49 +1745,92 @@ export default class {
|
|
|
1862
1745
|
emplacement?: "replace" | "before" | "after" | undefined;
|
|
1863
1746
|
entrypointId?: string | undefined;
|
|
1864
1747
|
})[];
|
|
1748
|
+
variableProfileId?: string | undefined;
|
|
1865
1749
|
};
|
|
1866
|
-
status: "success";
|
|
1867
1750
|
program: string;
|
|
1868
1751
|
version: string;
|
|
1869
1752
|
datetime: string;
|
|
1753
|
+
status: string;
|
|
1870
1754
|
code?: number | undefined;
|
|
1871
1755
|
message: string;
|
|
1872
1756
|
}, any, {}>>;
|
|
1873
1757
|
listWorkflowsWithContent: (params: {
|
|
1874
1758
|
id: string;
|
|
1875
1759
|
}, options?: AxiosRequestConfig<any> | undefined) => Promise<import("axios").AxiosResponse<{
|
|
1876
|
-
data: string[];
|
|
1877
1760
|
status: "success";
|
|
1761
|
+
} & {
|
|
1762
|
+
data: string[];
|
|
1878
1763
|
program: string;
|
|
1879
1764
|
version: string;
|
|
1880
1765
|
datetime: string;
|
|
1766
|
+
status: string;
|
|
1881
1767
|
code?: number | undefined;
|
|
1882
1768
|
message: string;
|
|
1883
1769
|
}, any, {}>>;
|
|
1884
1770
|
updateWorkflowsWithContent: (params: {
|
|
1885
1771
|
id: string;
|
|
1886
1772
|
}, options?: AxiosRequestConfig<any> | undefined) => Promise<import("axios").AxiosResponse<{
|
|
1773
|
+
status: "success";
|
|
1774
|
+
} & {
|
|
1887
1775
|
data: {
|
|
1888
1776
|
[x: string]: string[];
|
|
1889
1777
|
};
|
|
1890
|
-
status: "success";
|
|
1891
1778
|
program: string;
|
|
1892
1779
|
version: string;
|
|
1893
1780
|
datetime: string;
|
|
1781
|
+
status: string;
|
|
1894
1782
|
code?: number | undefined;
|
|
1895
1783
|
message: string;
|
|
1896
1784
|
}, any, {}>>;
|
|
1897
1785
|
listWorkflowsWithDatasource: (params: {
|
|
1898
1786
|
id: string;
|
|
1899
1787
|
}, options?: AxiosRequestConfig<any> | undefined) => Promise<import("axios").AxiosResponse<{
|
|
1788
|
+
status: "success";
|
|
1789
|
+
} & {
|
|
1900
1790
|
data: {
|
|
1901
1791
|
id: string;
|
|
1902
1792
|
fields: string[];
|
|
1903
1793
|
}[];
|
|
1794
|
+
program: string;
|
|
1795
|
+
version: string;
|
|
1796
|
+
datetime: string;
|
|
1797
|
+
status: string;
|
|
1798
|
+
code?: number | undefined;
|
|
1799
|
+
message: string;
|
|
1800
|
+
}, any, {}>>;
|
|
1801
|
+
};
|
|
1802
|
+
get Runner(): {
|
|
1803
|
+
run: (params: {
|
|
1804
|
+
id: string;
|
|
1805
|
+
indexOrId: string | number;
|
|
1806
|
+
user: string;
|
|
1807
|
+
mode?: "debug" | "loop" | "display" | "click" | "ui-debug" | undefined;
|
|
1808
|
+
'no-cache'?: boolean | undefined;
|
|
1809
|
+
engine?: string | undefined;
|
|
1810
|
+
'dry-run'?: boolean | undefined;
|
|
1811
|
+
'rlvt-redirect'?: string | undefined;
|
|
1812
|
+
}, options?: AxiosRequestConfig<any> | undefined) => Promise<import("axios").AxiosResponse<unknown, any, {}>>;
|
|
1813
|
+
};
|
|
1814
|
+
get RedirectAlias(): {
|
|
1815
|
+
redirect: (params: {
|
|
1816
|
+
alias: string;
|
|
1817
|
+
index: number;
|
|
1818
|
+
user: string;
|
|
1819
|
+
'no-cache'?: boolean | undefined;
|
|
1820
|
+
'dry-run'?: boolean | undefined;
|
|
1821
|
+
}, options?: AxiosRequestConfig<any> | undefined) => Promise<import("axios").AxiosResponse<unknown, any, {}>>;
|
|
1822
|
+
};
|
|
1823
|
+
get Hierarchy(): {
|
|
1824
|
+
listWorkflow: (params: {
|
|
1825
|
+
hierarchy?: string[] | undefined;
|
|
1826
|
+
}, options?: AxiosRequestConfig<any> | undefined) => Promise<import("axios").AxiosResponse<{
|
|
1904
1827
|
status: "success";
|
|
1828
|
+
} & {
|
|
1829
|
+
data: string[];
|
|
1905
1830
|
program: string;
|
|
1906
1831
|
version: string;
|
|
1907
1832
|
datetime: string;
|
|
1833
|
+
status: string;
|
|
1908
1834
|
code?: number | undefined;
|
|
1909
1835
|
message: string;
|
|
1910
1836
|
}, any, {}>>;
|