@rlvt/workflows-openapi-client 1.0.315 → 1.0.316
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 +112 -182
- package/build/api.js +6 -2
- package/build/index.js +6 -2
- package/package.json +6 -5
package/build/api.d.ts
CHANGED
|
@@ -25,25 +25,16 @@ export default class {
|
|
|
25
25
|
page?: number | undefined;
|
|
26
26
|
perPage?: number | undefined;
|
|
27
27
|
}, options?: AxiosRequestConfig<any> | undefined) => Promise<import("axios").AxiosResponse<{
|
|
28
|
-
paginationCount: number;
|
|
29
|
-
paginationPage: number;
|
|
30
|
-
paginationLimit: number;
|
|
31
|
-
status: "success";
|
|
32
|
-
program: string;
|
|
33
|
-
version: string;
|
|
34
|
-
datetime: string;
|
|
35
|
-
code?: number | undefined;
|
|
36
|
-
message: string;
|
|
37
28
|
data: {
|
|
38
|
-
description?: string | undefined;
|
|
39
29
|
name: string;
|
|
40
30
|
categories: string[];
|
|
41
|
-
|
|
42
|
-
readonly?: "__readonly" | undefined;
|
|
43
|
-
};
|
|
31
|
+
description?: string | undefined;
|
|
44
32
|
readonly companyId?: (string & {
|
|
45
33
|
readonly?: "__readonly" | undefined;
|
|
46
34
|
}) | undefined;
|
|
35
|
+
readonly id: string & {
|
|
36
|
+
readonly?: "__readonly" | undefined;
|
|
37
|
+
};
|
|
47
38
|
metadata?: {
|
|
48
39
|
[x: string]: unknown;
|
|
49
40
|
} | undefined;
|
|
@@ -81,15 +72,24 @@ export default class {
|
|
|
81
72
|
};
|
|
82
73
|
};
|
|
83
74
|
}[];
|
|
75
|
+
paginationCount: number;
|
|
76
|
+
paginationPage: number;
|
|
77
|
+
paginationLimit: number;
|
|
78
|
+
status: "success";
|
|
79
|
+
program: string;
|
|
80
|
+
version: string;
|
|
81
|
+
datetime: string;
|
|
82
|
+
code?: number | undefined;
|
|
83
|
+
message: string;
|
|
84
84
|
}, any>>;
|
|
85
85
|
listTemplateCategories: (params: Record<string, never>, options?: AxiosRequestConfig<any> | undefined) => Promise<import("axios").AxiosResponse<{
|
|
86
|
+
data: string[];
|
|
86
87
|
status: "success";
|
|
87
88
|
program: string;
|
|
88
89
|
version: string;
|
|
89
90
|
datetime: string;
|
|
90
91
|
code?: number | undefined;
|
|
91
92
|
message: string;
|
|
92
|
-
data: string[];
|
|
93
93
|
}, any>>;
|
|
94
94
|
list: (params: {
|
|
95
95
|
ids?: string[] | undefined;
|
|
@@ -103,26 +103,10 @@ export default class {
|
|
|
103
103
|
page?: number | undefined;
|
|
104
104
|
perPage?: number | undefined;
|
|
105
105
|
}, options?: AxiosRequestConfig<any> | undefined) => Promise<import("axios").AxiosResponse<{
|
|
106
|
-
paginationCount: number;
|
|
107
|
-
paginationPage: number;
|
|
108
|
-
paginationLimit: number;
|
|
109
|
-
status: "success";
|
|
110
|
-
program: string;
|
|
111
|
-
version: string;
|
|
112
|
-
datetime: string;
|
|
113
|
-
code?: number | undefined;
|
|
114
|
-
message: string;
|
|
115
106
|
data: {
|
|
116
|
-
|
|
117
|
-
readonly status: (WorkflowStatus.DRAFT & {
|
|
118
|
-
readonly?: "__readonly" | undefined;
|
|
119
|
-
}) | (WorkflowStatus.PUBLISHING & {
|
|
107
|
+
readonly status: WorkflowStatus & {
|
|
120
108
|
readonly?: "__readonly" | undefined;
|
|
121
|
-
}
|
|
122
|
-
readonly?: "__readonly" | undefined;
|
|
123
|
-
}) | (WorkflowStatus.ERROR & {
|
|
124
|
-
readonly?: "__readonly" | undefined;
|
|
125
|
-
});
|
|
109
|
+
};
|
|
126
110
|
name: string;
|
|
127
111
|
readonly createdAt: Date & {
|
|
128
112
|
readonly?: "__readonly" | undefined;
|
|
@@ -131,9 +115,7 @@ export default class {
|
|
|
131
115
|
readonly?: "__readonly" | undefined;
|
|
132
116
|
};
|
|
133
117
|
resourceGroupIds: string[];
|
|
134
|
-
|
|
135
|
-
readonly?: "__readonly" | undefined;
|
|
136
|
-
};
|
|
118
|
+
description?: string | undefined;
|
|
137
119
|
versions: {
|
|
138
120
|
readonly createdAt: Date & {
|
|
139
121
|
readonly?: "__readonly" | undefined;
|
|
@@ -174,13 +156,9 @@ export default class {
|
|
|
174
156
|
metadata?: {
|
|
175
157
|
[x: string]: unknown;
|
|
176
158
|
} | undefined;
|
|
177
|
-
readonly state:
|
|
159
|
+
readonly state: WorkflowVersionState & {
|
|
178
160
|
readonly?: "__readonly" | undefined;
|
|
179
|
-
}
|
|
180
|
-
readonly?: "__readonly" | undefined;
|
|
181
|
-
}) | (WorkflowVersionState.INACTIVE & {
|
|
182
|
-
readonly?: "__readonly" | undefined;
|
|
183
|
-
});
|
|
161
|
+
};
|
|
184
162
|
readonly analyze: {
|
|
185
163
|
readonly?: "__readonly" | undefined;
|
|
186
164
|
entrypointsByBranchesForDataNode: {
|
|
@@ -209,6 +187,9 @@ export default class {
|
|
|
209
187
|
readonly companyId: string & {
|
|
210
188
|
readonly?: "__readonly" | undefined;
|
|
211
189
|
};
|
|
190
|
+
readonly id: string & {
|
|
191
|
+
readonly?: "__readonly" | undefined;
|
|
192
|
+
};
|
|
212
193
|
variableProfileId?: string | undefined;
|
|
213
194
|
parameterValues: {
|
|
214
195
|
[x: string]: ({
|
|
@@ -231,29 +212,25 @@ export default class {
|
|
|
231
212
|
readonly?: "__readonly" | undefined;
|
|
232
213
|
};
|
|
233
214
|
}[];
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
name: string;
|
|
238
|
-
resourceGroupIds: string[];
|
|
239
|
-
}, options?: AxiosRequestConfig<any> | undefined) => Promise<import("axios").AxiosResponse<{
|
|
215
|
+
paginationCount: number;
|
|
216
|
+
paginationPage: number;
|
|
217
|
+
paginationLimit: number;
|
|
240
218
|
status: "success";
|
|
241
219
|
program: string;
|
|
242
220
|
version: string;
|
|
243
221
|
datetime: string;
|
|
244
222
|
code?: number | undefined;
|
|
245
223
|
message: string;
|
|
224
|
+
}, any>>;
|
|
225
|
+
create: (params: Record<string, never>, data: {
|
|
226
|
+
name: string;
|
|
227
|
+
resourceGroupIds: string[];
|
|
228
|
+
description?: string | undefined;
|
|
229
|
+
}, options?: AxiosRequestConfig<any> | undefined) => Promise<import("axios").AxiosResponse<{
|
|
246
230
|
data: {
|
|
247
|
-
|
|
248
|
-
readonly status: (WorkflowStatus.DRAFT & {
|
|
249
|
-
readonly?: "__readonly" | undefined;
|
|
250
|
-
}) | (WorkflowStatus.PUBLISHING & {
|
|
231
|
+
readonly status: WorkflowStatus & {
|
|
251
232
|
readonly?: "__readonly" | undefined;
|
|
252
|
-
}
|
|
253
|
-
readonly?: "__readonly" | undefined;
|
|
254
|
-
}) | (WorkflowStatus.ERROR & {
|
|
255
|
-
readonly?: "__readonly" | undefined;
|
|
256
|
-
});
|
|
233
|
+
};
|
|
257
234
|
name: string;
|
|
258
235
|
readonly createdAt: Date & {
|
|
259
236
|
readonly?: "__readonly" | undefined;
|
|
@@ -262,9 +239,7 @@ export default class {
|
|
|
262
239
|
readonly?: "__readonly" | undefined;
|
|
263
240
|
};
|
|
264
241
|
resourceGroupIds: string[];
|
|
265
|
-
|
|
266
|
-
readonly?: "__readonly" | undefined;
|
|
267
|
-
};
|
|
242
|
+
description?: string | undefined;
|
|
268
243
|
versions: {
|
|
269
244
|
readonly createdAt: Date & {
|
|
270
245
|
readonly?: "__readonly" | undefined;
|
|
@@ -305,13 +280,9 @@ export default class {
|
|
|
305
280
|
metadata?: {
|
|
306
281
|
[x: string]: unknown;
|
|
307
282
|
} | undefined;
|
|
308
|
-
readonly state:
|
|
283
|
+
readonly state: WorkflowVersionState & {
|
|
309
284
|
readonly?: "__readonly" | undefined;
|
|
310
|
-
}
|
|
311
|
-
readonly?: "__readonly" | undefined;
|
|
312
|
-
}) | (WorkflowVersionState.INACTIVE & {
|
|
313
|
-
readonly?: "__readonly" | undefined;
|
|
314
|
-
});
|
|
285
|
+
};
|
|
315
286
|
readonly analyze: {
|
|
316
287
|
readonly?: "__readonly" | undefined;
|
|
317
288
|
entrypointsByBranchesForDataNode: {
|
|
@@ -340,6 +311,9 @@ export default class {
|
|
|
340
311
|
readonly companyId: string & {
|
|
341
312
|
readonly?: "__readonly" | undefined;
|
|
342
313
|
};
|
|
314
|
+
readonly id: string & {
|
|
315
|
+
readonly?: "__readonly" | undefined;
|
|
316
|
+
};
|
|
343
317
|
variableProfileId?: string | undefined;
|
|
344
318
|
parameterValues: {
|
|
345
319
|
[x: string]: ({
|
|
@@ -362,28 +336,21 @@ export default class {
|
|
|
362
336
|
readonly?: "__readonly" | undefined;
|
|
363
337
|
};
|
|
364
338
|
};
|
|
365
|
-
}, any>>;
|
|
366
|
-
get: (params: {
|
|
367
|
-
id: string;
|
|
368
|
-
versions?: WorkflowVersionState[] | undefined;
|
|
369
|
-
}, options?: AxiosRequestConfig<any> | undefined) => Promise<import("axios").AxiosResponse<{
|
|
370
339
|
status: "success";
|
|
371
340
|
program: string;
|
|
372
341
|
version: string;
|
|
373
342
|
datetime: string;
|
|
374
343
|
code?: number | undefined;
|
|
375
344
|
message: string;
|
|
345
|
+
}, any>>;
|
|
346
|
+
get: (params: {
|
|
347
|
+
id: string;
|
|
348
|
+
versions?: WorkflowVersionState[] | undefined;
|
|
349
|
+
}, options?: AxiosRequestConfig<any> | undefined) => Promise<import("axios").AxiosResponse<{
|
|
376
350
|
data: {
|
|
377
|
-
|
|
378
|
-
readonly status: (WorkflowStatus.DRAFT & {
|
|
379
|
-
readonly?: "__readonly" | undefined;
|
|
380
|
-
}) | (WorkflowStatus.PUBLISHING & {
|
|
351
|
+
readonly status: WorkflowStatus & {
|
|
381
352
|
readonly?: "__readonly" | undefined;
|
|
382
|
-
}
|
|
383
|
-
readonly?: "__readonly" | undefined;
|
|
384
|
-
}) | (WorkflowStatus.ERROR & {
|
|
385
|
-
readonly?: "__readonly" | undefined;
|
|
386
|
-
});
|
|
353
|
+
};
|
|
387
354
|
name: string;
|
|
388
355
|
readonly createdAt: Date & {
|
|
389
356
|
readonly?: "__readonly" | undefined;
|
|
@@ -392,9 +359,7 @@ export default class {
|
|
|
392
359
|
readonly?: "__readonly" | undefined;
|
|
393
360
|
};
|
|
394
361
|
resourceGroupIds: string[];
|
|
395
|
-
|
|
396
|
-
readonly?: "__readonly" | undefined;
|
|
397
|
-
};
|
|
362
|
+
description?: string | undefined;
|
|
398
363
|
versions: {
|
|
399
364
|
readonly createdAt: Date & {
|
|
400
365
|
readonly?: "__readonly" | undefined;
|
|
@@ -435,13 +400,9 @@ export default class {
|
|
|
435
400
|
metadata?: {
|
|
436
401
|
[x: string]: unknown;
|
|
437
402
|
} | undefined;
|
|
438
|
-
readonly state:
|
|
403
|
+
readonly state: WorkflowVersionState & {
|
|
439
404
|
readonly?: "__readonly" | undefined;
|
|
440
|
-
}
|
|
441
|
-
readonly?: "__readonly" | undefined;
|
|
442
|
-
}) | (WorkflowVersionState.INACTIVE & {
|
|
443
|
-
readonly?: "__readonly" | undefined;
|
|
444
|
-
});
|
|
405
|
+
};
|
|
445
406
|
readonly analyze: {
|
|
446
407
|
readonly?: "__readonly" | undefined;
|
|
447
408
|
entrypointsByBranchesForDataNode: {
|
|
@@ -470,6 +431,9 @@ export default class {
|
|
|
470
431
|
readonly companyId: string & {
|
|
471
432
|
readonly?: "__readonly" | undefined;
|
|
472
433
|
};
|
|
434
|
+
readonly id: string & {
|
|
435
|
+
readonly?: "__readonly" | undefined;
|
|
436
|
+
};
|
|
473
437
|
variableProfileId?: string | undefined;
|
|
474
438
|
parameterValues: {
|
|
475
439
|
[x: string]: ({
|
|
@@ -492,18 +456,17 @@ export default class {
|
|
|
492
456
|
readonly?: "__readonly" | undefined;
|
|
493
457
|
};
|
|
494
458
|
};
|
|
459
|
+
status: "success";
|
|
460
|
+
program: string;
|
|
461
|
+
version: string;
|
|
462
|
+
datetime: string;
|
|
463
|
+
code?: number | undefined;
|
|
464
|
+
message: string;
|
|
495
465
|
}, any>>;
|
|
496
466
|
update: (params: {
|
|
497
467
|
id: string;
|
|
498
468
|
}, data: {
|
|
499
|
-
|
|
500
|
-
readonly status?: (WorkflowStatus.DRAFT & {
|
|
501
|
-
readonly?: "__readonly" | undefined;
|
|
502
|
-
}) | (WorkflowStatus.PUBLISHING & {
|
|
503
|
-
readonly?: "__readonly" | undefined;
|
|
504
|
-
}) | (WorkflowStatus.PUBLISHED & {
|
|
505
|
-
readonly?: "__readonly" | undefined;
|
|
506
|
-
}) | (WorkflowStatus.ERROR & {
|
|
469
|
+
readonly status?: (WorkflowStatus & {
|
|
507
470
|
readonly?: "__readonly" | undefined;
|
|
508
471
|
}) | undefined;
|
|
509
472
|
name?: string | undefined;
|
|
@@ -514,9 +477,7 @@ export default class {
|
|
|
514
477
|
readonly?: "__readonly" | undefined;
|
|
515
478
|
}) | undefined;
|
|
516
479
|
resourceGroupIds?: string[] | undefined;
|
|
517
|
-
|
|
518
|
-
readonly?: "__readonly" | undefined;
|
|
519
|
-
}) | undefined;
|
|
480
|
+
description?: string | undefined;
|
|
520
481
|
versions?: {
|
|
521
482
|
definition: {
|
|
522
483
|
entrypoints: {
|
|
@@ -555,6 +516,9 @@ export default class {
|
|
|
555
516
|
readonly companyId?: (string & {
|
|
556
517
|
readonly?: "__readonly" | undefined;
|
|
557
518
|
}) | undefined;
|
|
519
|
+
readonly id?: (string & {
|
|
520
|
+
readonly?: "__readonly" | undefined;
|
|
521
|
+
}) | undefined;
|
|
558
522
|
variableProfileId?: string | undefined;
|
|
559
523
|
parameterValues?: {
|
|
560
524
|
[x: string]: ({
|
|
@@ -616,11 +580,7 @@ export default class {
|
|
|
616
580
|
metadata?: {
|
|
617
581
|
[x: string]: unknown;
|
|
618
582
|
} | undefined;
|
|
619
|
-
readonly state?: (WorkflowVersionState
|
|
620
|
-
readonly?: "__readonly" | undefined;
|
|
621
|
-
}) | (WorkflowVersionState.LIVE & {
|
|
622
|
-
readonly?: "__readonly" | undefined;
|
|
623
|
-
}) | (WorkflowVersionState.INACTIVE & {
|
|
583
|
+
readonly state?: (WorkflowVersionState & {
|
|
624
584
|
readonly?: "__readonly" | undefined;
|
|
625
585
|
}) | undefined;
|
|
626
586
|
readonly analyze?: {
|
|
@@ -648,23 +608,10 @@ export default class {
|
|
|
648
608
|
};
|
|
649
609
|
} | undefined;
|
|
650
610
|
}, options?: AxiosRequestConfig<any> | undefined) => Promise<import("axios").AxiosResponse<{
|
|
651
|
-
status: "success";
|
|
652
|
-
program: string;
|
|
653
|
-
version: string;
|
|
654
|
-
datetime: string;
|
|
655
|
-
code?: number | undefined;
|
|
656
|
-
message: string;
|
|
657
611
|
data: {
|
|
658
|
-
|
|
659
|
-
readonly status: (WorkflowStatus.DRAFT & {
|
|
660
|
-
readonly?: "__readonly" | undefined;
|
|
661
|
-
}) | (WorkflowStatus.PUBLISHING & {
|
|
662
|
-
readonly?: "__readonly" | undefined;
|
|
663
|
-
}) | (WorkflowStatus.PUBLISHED & {
|
|
612
|
+
readonly status: WorkflowStatus & {
|
|
664
613
|
readonly?: "__readonly" | undefined;
|
|
665
|
-
}
|
|
666
|
-
readonly?: "__readonly" | undefined;
|
|
667
|
-
});
|
|
614
|
+
};
|
|
668
615
|
name: string;
|
|
669
616
|
readonly createdAt: Date & {
|
|
670
617
|
readonly?: "__readonly" | undefined;
|
|
@@ -673,9 +620,7 @@ export default class {
|
|
|
673
620
|
readonly?: "__readonly" | undefined;
|
|
674
621
|
};
|
|
675
622
|
resourceGroupIds: string[];
|
|
676
|
-
|
|
677
|
-
readonly?: "__readonly" | undefined;
|
|
678
|
-
};
|
|
623
|
+
description?: string | undefined;
|
|
679
624
|
versions: {
|
|
680
625
|
readonly createdAt: Date & {
|
|
681
626
|
readonly?: "__readonly" | undefined;
|
|
@@ -716,13 +661,9 @@ export default class {
|
|
|
716
661
|
metadata?: {
|
|
717
662
|
[x: string]: unknown;
|
|
718
663
|
} | undefined;
|
|
719
|
-
readonly state:
|
|
720
|
-
readonly?: "__readonly" | undefined;
|
|
721
|
-
}) | (WorkflowVersionState.LIVE & {
|
|
664
|
+
readonly state: WorkflowVersionState & {
|
|
722
665
|
readonly?: "__readonly" | undefined;
|
|
723
|
-
}
|
|
724
|
-
readonly?: "__readonly" | undefined;
|
|
725
|
-
});
|
|
666
|
+
};
|
|
726
667
|
readonly analyze: {
|
|
727
668
|
readonly?: "__readonly" | undefined;
|
|
728
669
|
entrypointsByBranchesForDataNode: {
|
|
@@ -751,6 +692,9 @@ export default class {
|
|
|
751
692
|
readonly companyId: string & {
|
|
752
693
|
readonly?: "__readonly" | undefined;
|
|
753
694
|
};
|
|
695
|
+
readonly id: string & {
|
|
696
|
+
readonly?: "__readonly" | undefined;
|
|
697
|
+
};
|
|
754
698
|
variableProfileId?: string | undefined;
|
|
755
699
|
parameterValues: {
|
|
756
700
|
[x: string]: ({
|
|
@@ -773,38 +717,31 @@ export default class {
|
|
|
773
717
|
readonly?: "__readonly" | undefined;
|
|
774
718
|
};
|
|
775
719
|
};
|
|
776
|
-
}, any>>;
|
|
777
|
-
delete: (params: {
|
|
778
|
-
id: string;
|
|
779
|
-
}, options?: AxiosRequestConfig<any> | undefined) => Promise<import("axios").AxiosResponse<{
|
|
780
720
|
status: "success";
|
|
781
721
|
program: string;
|
|
782
722
|
version: string;
|
|
783
723
|
datetime: string;
|
|
784
724
|
code?: number | undefined;
|
|
785
725
|
message: string;
|
|
786
|
-
data: unknown;
|
|
787
726
|
}, any>>;
|
|
788
|
-
|
|
789
|
-
|
|
727
|
+
delete: (params: {
|
|
728
|
+
id: string;
|
|
790
729
|
}, options?: AxiosRequestConfig<any> | undefined) => Promise<import("axios").AxiosResponse<{
|
|
730
|
+
data: unknown;
|
|
791
731
|
status: "success";
|
|
792
732
|
program: string;
|
|
793
733
|
version: string;
|
|
794
734
|
datetime: string;
|
|
795
735
|
code?: number | undefined;
|
|
796
736
|
message: string;
|
|
737
|
+
}, any>>;
|
|
738
|
+
duplicate: (params: Record<string, never>, data: {
|
|
739
|
+
sourceId: string;
|
|
740
|
+
}, options?: AxiosRequestConfig<any> | undefined) => Promise<import("axios").AxiosResponse<{
|
|
797
741
|
data: {
|
|
798
|
-
|
|
799
|
-
readonly status: (WorkflowStatus.DRAFT & {
|
|
800
|
-
readonly?: "__readonly" | undefined;
|
|
801
|
-
}) | (WorkflowStatus.PUBLISHING & {
|
|
802
|
-
readonly?: "__readonly" | undefined;
|
|
803
|
-
}) | (WorkflowStatus.PUBLISHED & {
|
|
804
|
-
readonly?: "__readonly" | undefined;
|
|
805
|
-
}) | (WorkflowStatus.ERROR & {
|
|
742
|
+
readonly status: WorkflowStatus & {
|
|
806
743
|
readonly?: "__readonly" | undefined;
|
|
807
|
-
}
|
|
744
|
+
};
|
|
808
745
|
name: string;
|
|
809
746
|
readonly createdAt: Date & {
|
|
810
747
|
readonly?: "__readonly" | undefined;
|
|
@@ -813,9 +750,7 @@ export default class {
|
|
|
813
750
|
readonly?: "__readonly" | undefined;
|
|
814
751
|
};
|
|
815
752
|
resourceGroupIds: string[];
|
|
816
|
-
|
|
817
|
-
readonly?: "__readonly" | undefined;
|
|
818
|
-
};
|
|
753
|
+
description?: string | undefined;
|
|
819
754
|
versions: {
|
|
820
755
|
readonly createdAt: Date & {
|
|
821
756
|
readonly?: "__readonly" | undefined;
|
|
@@ -856,13 +791,9 @@ export default class {
|
|
|
856
791
|
metadata?: {
|
|
857
792
|
[x: string]: unknown;
|
|
858
793
|
} | undefined;
|
|
859
|
-
readonly state:
|
|
860
|
-
readonly?: "__readonly" | undefined;
|
|
861
|
-
}) | (WorkflowVersionState.LIVE & {
|
|
862
|
-
readonly?: "__readonly" | undefined;
|
|
863
|
-
}) | (WorkflowVersionState.INACTIVE & {
|
|
794
|
+
readonly state: WorkflowVersionState & {
|
|
864
795
|
readonly?: "__readonly" | undefined;
|
|
865
|
-
}
|
|
796
|
+
};
|
|
866
797
|
readonly analyze: {
|
|
867
798
|
readonly?: "__readonly" | undefined;
|
|
868
799
|
entrypointsByBranchesForDataNode: {
|
|
@@ -891,6 +822,9 @@ export default class {
|
|
|
891
822
|
readonly companyId: string & {
|
|
892
823
|
readonly?: "__readonly" | undefined;
|
|
893
824
|
};
|
|
825
|
+
readonly id: string & {
|
|
826
|
+
readonly?: "__readonly" | undefined;
|
|
827
|
+
};
|
|
894
828
|
variableProfileId?: string | undefined;
|
|
895
829
|
parameterValues: {
|
|
896
830
|
[x: string]: ({
|
|
@@ -913,27 +847,20 @@ export default class {
|
|
|
913
847
|
readonly?: "__readonly" | undefined;
|
|
914
848
|
};
|
|
915
849
|
};
|
|
916
|
-
}, any>>;
|
|
917
|
-
publish: (params: {
|
|
918
|
-
id: string;
|
|
919
|
-
}, options?: AxiosRequestConfig<any> | undefined) => Promise<import("axios").AxiosResponse<{
|
|
920
850
|
status: "success";
|
|
921
851
|
program: string;
|
|
922
852
|
version: string;
|
|
923
853
|
datetime: string;
|
|
924
854
|
code?: number | undefined;
|
|
925
855
|
message: string;
|
|
856
|
+
}, any>>;
|
|
857
|
+
publish: (params: {
|
|
858
|
+
id: string;
|
|
859
|
+
}, options?: AxiosRequestConfig<any> | undefined) => Promise<import("axios").AxiosResponse<{
|
|
926
860
|
data: {
|
|
927
|
-
|
|
928
|
-
readonly status: (WorkflowStatus.DRAFT & {
|
|
929
|
-
readonly?: "__readonly" | undefined;
|
|
930
|
-
}) | (WorkflowStatus.PUBLISHING & {
|
|
861
|
+
readonly status: WorkflowStatus & {
|
|
931
862
|
readonly?: "__readonly" | undefined;
|
|
932
|
-
}
|
|
933
|
-
readonly?: "__readonly" | undefined;
|
|
934
|
-
}) | (WorkflowStatus.ERROR & {
|
|
935
|
-
readonly?: "__readonly" | undefined;
|
|
936
|
-
});
|
|
863
|
+
};
|
|
937
864
|
name: string;
|
|
938
865
|
readonly createdAt: Date & {
|
|
939
866
|
readonly?: "__readonly" | undefined;
|
|
@@ -942,9 +869,7 @@ export default class {
|
|
|
942
869
|
readonly?: "__readonly" | undefined;
|
|
943
870
|
};
|
|
944
871
|
resourceGroupIds: string[];
|
|
945
|
-
|
|
946
|
-
readonly?: "__readonly" | undefined;
|
|
947
|
-
};
|
|
872
|
+
description?: string | undefined;
|
|
948
873
|
versions: {
|
|
949
874
|
readonly createdAt: Date & {
|
|
950
875
|
readonly?: "__readonly" | undefined;
|
|
@@ -985,13 +910,9 @@ export default class {
|
|
|
985
910
|
metadata?: {
|
|
986
911
|
[x: string]: unknown;
|
|
987
912
|
} | undefined;
|
|
988
|
-
readonly state:
|
|
989
|
-
readonly?: "__readonly" | undefined;
|
|
990
|
-
}) | (WorkflowVersionState.LIVE & {
|
|
913
|
+
readonly state: WorkflowVersionState & {
|
|
991
914
|
readonly?: "__readonly" | undefined;
|
|
992
|
-
}
|
|
993
|
-
readonly?: "__readonly" | undefined;
|
|
994
|
-
});
|
|
915
|
+
};
|
|
995
916
|
readonly analyze: {
|
|
996
917
|
readonly?: "__readonly" | undefined;
|
|
997
918
|
entrypointsByBranchesForDataNode: {
|
|
@@ -1020,6 +941,9 @@ export default class {
|
|
|
1020
941
|
readonly companyId: string & {
|
|
1021
942
|
readonly?: "__readonly" | undefined;
|
|
1022
943
|
};
|
|
944
|
+
readonly id: string & {
|
|
945
|
+
readonly?: "__readonly" | undefined;
|
|
946
|
+
};
|
|
1023
947
|
variableProfileId?: string | undefined;
|
|
1024
948
|
parameterValues: {
|
|
1025
949
|
[x: string]: ({
|
|
@@ -1042,6 +966,12 @@ export default class {
|
|
|
1042
966
|
readonly?: "__readonly" | undefined;
|
|
1043
967
|
};
|
|
1044
968
|
};
|
|
969
|
+
status: "success";
|
|
970
|
+
program: string;
|
|
971
|
+
version: string;
|
|
972
|
+
datetime: string;
|
|
973
|
+
code?: number | undefined;
|
|
974
|
+
message: string;
|
|
1045
975
|
}, any>>;
|
|
1046
976
|
};
|
|
1047
977
|
get Runner(): {
|
|
@@ -1058,49 +988,49 @@ export default class {
|
|
|
1058
988
|
listParameterValues: (params: {
|
|
1059
989
|
names: string[];
|
|
1060
990
|
}, options?: AxiosRequestConfig<any> | undefined) => Promise<import("axios").AxiosResponse<{
|
|
991
|
+
data: unknown;
|
|
1061
992
|
status: "success";
|
|
1062
993
|
program: string;
|
|
1063
994
|
version: string;
|
|
1064
995
|
datetime: string;
|
|
1065
996
|
code?: number | undefined;
|
|
1066
997
|
message: string;
|
|
1067
|
-
data: unknown;
|
|
1068
998
|
}, any>>;
|
|
1069
999
|
listWorkflowsWithContent: (params: {
|
|
1070
1000
|
id: string;
|
|
1071
1001
|
}, options?: AxiosRequestConfig<any> | undefined) => Promise<import("axios").AxiosResponse<{
|
|
1002
|
+
data: string[];
|
|
1072
1003
|
status: "success";
|
|
1073
1004
|
program: string;
|
|
1074
1005
|
version: string;
|
|
1075
1006
|
datetime: string;
|
|
1076
1007
|
code?: number | undefined;
|
|
1077
1008
|
message: string;
|
|
1078
|
-
data: string[];
|
|
1079
1009
|
}, any>>;
|
|
1080
1010
|
updateWorkflowsWithContent: (params: {
|
|
1081
1011
|
id: string;
|
|
1082
1012
|
}, options?: AxiosRequestConfig<any> | undefined) => Promise<import("axios").AxiosResponse<{
|
|
1013
|
+
data: unknown;
|
|
1083
1014
|
status: "success";
|
|
1084
1015
|
program: string;
|
|
1085
1016
|
version: string;
|
|
1086
1017
|
datetime: string;
|
|
1087
1018
|
code?: number | undefined;
|
|
1088
1019
|
message: string;
|
|
1089
|
-
data: unknown;
|
|
1090
1020
|
}, any>>;
|
|
1091
1021
|
listWorkflowsWithDatasource: (params: {
|
|
1092
1022
|
id: string;
|
|
1093
1023
|
}, options?: AxiosRequestConfig<any> | undefined) => Promise<import("axios").AxiosResponse<{
|
|
1024
|
+
data: {
|
|
1025
|
+
id: string;
|
|
1026
|
+
fields: string[];
|
|
1027
|
+
}[];
|
|
1094
1028
|
status: "success";
|
|
1095
1029
|
program: string;
|
|
1096
1030
|
version: string;
|
|
1097
1031
|
datetime: string;
|
|
1098
1032
|
code?: number | undefined;
|
|
1099
1033
|
message: string;
|
|
1100
|
-
data: {
|
|
1101
|
-
id: string;
|
|
1102
|
-
fields: string[];
|
|
1103
|
-
}[];
|
|
1104
1034
|
}, any>>;
|
|
1105
1035
|
};
|
|
1106
1036
|
}
|
package/build/api.js
CHANGED
|
@@ -3,7 +3,11 @@
|
|
|
3
3
|
/* eslint-disable */
|
|
4
4
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
5
5
|
if (k2 === undefined) k2 = k;
|
|
6
|
-
Object.
|
|
6
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
7
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
8
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
9
|
+
}
|
|
10
|
+
Object.defineProperty(o, k2, desc);
|
|
7
11
|
}) : (function(o, m, k, k2) {
|
|
8
12
|
if (k2 === undefined) k2 = k;
|
|
9
13
|
o[k2] = m[k];
|
|
@@ -111,4 +115,4 @@ function pick(obj, ...keys) {
|
|
|
111
115
|
});
|
|
112
116
|
return ret;
|
|
113
117
|
}
|
|
114
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
118
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYXBpLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vYXBpLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiI7QUFBQSxvQkFBb0I7QUFDcEIsb0JBQW9COzs7Ozs7Ozs7Ozs7Ozs7Ozs7O0FBRXBCLGtEQUFpRTtBQUdqRSxnREFBOEI7QUFFOUI7SUFHSSxZQUFZLGdCQUFvRDtRQUM1RCxJQUFJLENBQUMsS0FBSyxHQUFHLGNBQWMsSUFBSSxnQkFBZ0I7WUFDM0MsQ0FBQyxDQUFDLGdCQUFnQjtZQUNsQixDQUFDLENBQUMsZUFBSyxDQUFDLE1BQU0sQ0FBQyxnQkFBZ0IsQ0FBQyxDQUFBO0lBQ3hDLENBQUM7SUFFTyxxQkFBcUIsQ0FBQyxNQUs3QixFQUFFLE9BQTRCO1FBQzNCLE9BQU8sSUFBSSxDQUFDLEtBQUssQ0FBQyxHQUFHLENBQ2pCLHNCQUFzQixFQUN0QixNQUFNLENBQUMsTUFBTSxDQUNULEVBQUUsRUFDRjtZQUNJLE1BQU0sRUFBRSxJQUFJLENBQUMsTUFBTSxFQUFFLE1BQU0sRUFBRSxZQUFZLEVBQUUsTUFBTSxFQUFFLFNBQVMsQ0FBQztTQUNoRSxFQUNELE9BQU8sQ0FDVixDQUNKLENBQUM7SUFDTixDQUFDO0lBRU8sOEJBQThCLENBQUMsTUFBNkIsRUFBRSxPQUE0QjtRQUM5RixPQUFPLElBQUksQ0FBQyxLQUFLLENBQUMsR0FBRyxDQUNqQixpQ0FBaUMsRUFBRSxPQUFPLENBQzdDLENBQUM7SUFDTixDQUFDO0lBRU8sWUFBWSxDQUFDLE1BV3BCLEVBQUUsT0FBNEI7UUFDM0IsT0FBTyxJQUFJLENBQUMsS0FBSyxDQUFDLEdBQUcsQ0FDakIsWUFBWSxFQUNaLE1BQU0sQ0FBQyxNQUFNLENBQ1QsRUFBRSxFQUNGO1lBQ0ksTUFBTSxFQUFFLElBQUksQ0FBQyxNQUFNLEVBQUUsS0FBSyxFQUFFLE1BQU0sRUFBRSxrQkFBa0IsRUFBRSxRQUFRLEVBQUUsaUJBQWlCLEVBQUUsUUFBUSxFQUFFLFdBQVcsRUFBRSxRQUFRLEVBQUUsTUFB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
|
package/build/index.js
CHANGED
|
@@ -1,7 +1,11 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
3
|
if (k2 === undefined) k2 = k;
|
|
4
|
-
Object.
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
5
9
|
}) : (function(o, m, k, k2) {
|
|
6
10
|
if (k2 === undefined) k2 = k;
|
|
7
11
|
o[k2] = m[k];
|
|
@@ -16,4 +20,4 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
16
20
|
const api_1 = __importDefault(require("./api"));
|
|
17
21
|
__exportStar(require("./api"), exports);
|
|
18
22
|
exports.default = api_1.default;
|
|
19
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
23
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi9pbmRleC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiOzs7Ozs7Ozs7Ozs7Ozs7Ozs7O0FBQUEsZ0RBQXVCO0FBRXZCLHdDQUFxQjtBQUNyQixrQkFBZSxhQUFHLENBQUEifQ==
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rlvt/workflows-openapi-client",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.316+4d53592",
|
|
4
4
|
"description": "Openapi client for reelevant service",
|
|
5
5
|
"main": "build/index.js",
|
|
6
6
|
"repository": "https://github.com/reelevant-tech/openapi-clients",
|
|
@@ -13,11 +13,12 @@
|
|
|
13
13
|
"build": "tsc --project .",
|
|
14
14
|
"prepublish": "yarn build"
|
|
15
15
|
},
|
|
16
|
-
"
|
|
17
|
-
"axios": "
|
|
16
|
+
"peerDependencies": {
|
|
17
|
+
"axios": "*"
|
|
18
18
|
},
|
|
19
19
|
"devDependencies": {
|
|
20
|
-
"@types/node": "^
|
|
21
|
-
"typescript": "^4.
|
|
20
|
+
"@types/node": "^18.8.5",
|
|
21
|
+
"typescript": "^4.8.4",
|
|
22
|
+
"axios": "^1.1.2"
|
|
22
23
|
}
|
|
23
24
|
}
|