@rlvt/workflows-openapi-client 0.0.0-797eb5f → 0.0.0-a45260c
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 +208 -31
- package/build/api.js +4 -1
- package/build/definitions.d.ts +42 -25
- package/build/definitions.js +1 -1
- package/package.json +1 -1
package/build/api.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { AxiosInstance, AxiosRequestConfig } from "axios";
|
|
2
|
-
import type {
|
|
3
|
-
export
|
|
2
|
+
import type { WorkflowStatus } from "./definitions";
|
|
3
|
+
export { WorkflowTemplates, Workflows, WorkflowStatus, Pick_SerializedWorkflow_name_or_description_or_resourceGroupIds_, Partial_SerializedWorkflow_, Partial_SerializedWorkflowVersions_, AnyValue, WithoutReadonly, WithoutWriteonly } from "./definitions";
|
|
4
4
|
export default class {
|
|
5
5
|
axios: AxiosInstance;
|
|
6
6
|
constructor(configOrInstance: AxiosRequestConfig | AxiosInstance);
|
|
@@ -35,7 +35,9 @@ export default class {
|
|
|
35
35
|
readonly id: string & {
|
|
36
36
|
readonly?: "__readonly";
|
|
37
37
|
};
|
|
38
|
-
metadata?: {
|
|
38
|
+
metadata?: {
|
|
39
|
+
[x: string]: any;
|
|
40
|
+
};
|
|
39
41
|
icon: string;
|
|
40
42
|
slug: string;
|
|
41
43
|
feature?: string;
|
|
@@ -44,7 +46,26 @@ export default class {
|
|
|
44
46
|
node: string;
|
|
45
47
|
type: "email" | "raw";
|
|
46
48
|
}[];
|
|
47
|
-
nodes: {
|
|
49
|
+
nodes: {
|
|
50
|
+
[x: string]: {
|
|
51
|
+
name: string;
|
|
52
|
+
metadata: {};
|
|
53
|
+
dependencies: string[];
|
|
54
|
+
edges: {
|
|
55
|
+
node: string;
|
|
56
|
+
config: {
|
|
57
|
+
[x: string]: any;
|
|
58
|
+
};
|
|
59
|
+
}[];
|
|
60
|
+
} | {
|
|
61
|
+
name: string;
|
|
62
|
+
metadata: {};
|
|
63
|
+
dependencies: string[];
|
|
64
|
+
config: {
|
|
65
|
+
[x: string]: any;
|
|
66
|
+
};
|
|
67
|
+
};
|
|
68
|
+
};
|
|
48
69
|
};
|
|
49
70
|
}[];
|
|
50
71
|
}>>;
|
|
@@ -101,7 +122,9 @@ export default class {
|
|
|
101
122
|
readonly?: "__readonly";
|
|
102
123
|
};
|
|
103
124
|
readonly versions: {
|
|
104
|
-
metadata?: {
|
|
125
|
+
metadata?: {
|
|
126
|
+
[x: string]: any;
|
|
127
|
+
};
|
|
105
128
|
readonly state: (import("./definitions").WorkflowVersionState.DRAFT & {
|
|
106
129
|
readonly?: "__readonly";
|
|
107
130
|
}) | (import("./definitions").WorkflowVersionState.LIVE & {
|
|
@@ -114,13 +137,38 @@ export default class {
|
|
|
114
137
|
node: string;
|
|
115
138
|
type: "email" | "raw";
|
|
116
139
|
}[];
|
|
117
|
-
nodes: {
|
|
140
|
+
nodes: {
|
|
141
|
+
[x: string]: {
|
|
142
|
+
name: string;
|
|
143
|
+
metadata: {};
|
|
144
|
+
dependencies: string[];
|
|
145
|
+
edges: {
|
|
146
|
+
node: string;
|
|
147
|
+
config: {
|
|
148
|
+
[x: string]: any;
|
|
149
|
+
};
|
|
150
|
+
}[];
|
|
151
|
+
} | {
|
|
152
|
+
name: string;
|
|
153
|
+
metadata: {};
|
|
154
|
+
dependencies: string[];
|
|
155
|
+
config: {
|
|
156
|
+
[x: string]: any;
|
|
157
|
+
};
|
|
158
|
+
};
|
|
159
|
+
};
|
|
118
160
|
};
|
|
119
161
|
readonly analyze: {
|
|
120
162
|
readonly?: "__readonly";
|
|
121
|
-
outputsForEntrypoint: {
|
|
122
|
-
|
|
123
|
-
|
|
163
|
+
outputsForEntrypoint: {
|
|
164
|
+
[x: string]: string[];
|
|
165
|
+
};
|
|
166
|
+
entrypointsForOuput: {
|
|
167
|
+
[x: string]: string[];
|
|
168
|
+
};
|
|
169
|
+
datasForEntrypoint: {
|
|
170
|
+
[x: string]: string[];
|
|
171
|
+
};
|
|
124
172
|
};
|
|
125
173
|
}[];
|
|
126
174
|
readonly urls?: {
|
|
@@ -166,7 +214,9 @@ export default class {
|
|
|
166
214
|
readonly?: "__readonly";
|
|
167
215
|
};
|
|
168
216
|
readonly versions: {
|
|
169
|
-
metadata?: {
|
|
217
|
+
metadata?: {
|
|
218
|
+
[x: string]: any;
|
|
219
|
+
};
|
|
170
220
|
readonly state: (import("./definitions").WorkflowVersionState.DRAFT & {
|
|
171
221
|
readonly?: "__readonly";
|
|
172
222
|
}) | (import("./definitions").WorkflowVersionState.LIVE & {
|
|
@@ -179,13 +229,38 @@ export default class {
|
|
|
179
229
|
node: string;
|
|
180
230
|
type: "email" | "raw";
|
|
181
231
|
}[];
|
|
182
|
-
nodes: {
|
|
232
|
+
nodes: {
|
|
233
|
+
[x: string]: {
|
|
234
|
+
name: string;
|
|
235
|
+
metadata: {};
|
|
236
|
+
dependencies: string[];
|
|
237
|
+
edges: {
|
|
238
|
+
node: string;
|
|
239
|
+
config: {
|
|
240
|
+
[x: string]: any;
|
|
241
|
+
};
|
|
242
|
+
}[];
|
|
243
|
+
} | {
|
|
244
|
+
name: string;
|
|
245
|
+
metadata: {};
|
|
246
|
+
dependencies: string[];
|
|
247
|
+
config: {
|
|
248
|
+
[x: string]: any;
|
|
249
|
+
};
|
|
250
|
+
};
|
|
251
|
+
};
|
|
183
252
|
};
|
|
184
253
|
readonly analyze: {
|
|
185
254
|
readonly?: "__readonly";
|
|
186
|
-
outputsForEntrypoint: {
|
|
187
|
-
|
|
188
|
-
|
|
255
|
+
outputsForEntrypoint: {
|
|
256
|
+
[x: string]: string[];
|
|
257
|
+
};
|
|
258
|
+
entrypointsForOuput: {
|
|
259
|
+
[x: string]: string[];
|
|
260
|
+
};
|
|
261
|
+
datasForEntrypoint: {
|
|
262
|
+
[x: string]: string[];
|
|
263
|
+
};
|
|
189
264
|
};
|
|
190
265
|
}[];
|
|
191
266
|
readonly urls?: {
|
|
@@ -229,7 +304,9 @@ export default class {
|
|
|
229
304
|
readonly?: "__readonly";
|
|
230
305
|
};
|
|
231
306
|
readonly versions: {
|
|
232
|
-
metadata?: {
|
|
307
|
+
metadata?: {
|
|
308
|
+
[x: string]: any;
|
|
309
|
+
};
|
|
233
310
|
readonly state: (import("./definitions").WorkflowVersionState.DRAFT & {
|
|
234
311
|
readonly?: "__readonly";
|
|
235
312
|
}) | (import("./definitions").WorkflowVersionState.LIVE & {
|
|
@@ -242,13 +319,38 @@ export default class {
|
|
|
242
319
|
node: string;
|
|
243
320
|
type: "email" | "raw";
|
|
244
321
|
}[];
|
|
245
|
-
nodes: {
|
|
322
|
+
nodes: {
|
|
323
|
+
[x: string]: {
|
|
324
|
+
name: string;
|
|
325
|
+
metadata: {};
|
|
326
|
+
dependencies: string[];
|
|
327
|
+
edges: {
|
|
328
|
+
node: string;
|
|
329
|
+
config: {
|
|
330
|
+
[x: string]: any;
|
|
331
|
+
};
|
|
332
|
+
}[];
|
|
333
|
+
} | {
|
|
334
|
+
name: string;
|
|
335
|
+
metadata: {};
|
|
336
|
+
dependencies: string[];
|
|
337
|
+
config: {
|
|
338
|
+
[x: string]: any;
|
|
339
|
+
};
|
|
340
|
+
};
|
|
341
|
+
};
|
|
246
342
|
};
|
|
247
343
|
readonly analyze: {
|
|
248
344
|
readonly?: "__readonly";
|
|
249
|
-
outputsForEntrypoint: {
|
|
250
|
-
|
|
251
|
-
|
|
345
|
+
outputsForEntrypoint: {
|
|
346
|
+
[x: string]: string[];
|
|
347
|
+
};
|
|
348
|
+
entrypointsForOuput: {
|
|
349
|
+
[x: string]: string[];
|
|
350
|
+
};
|
|
351
|
+
datasForEntrypoint: {
|
|
352
|
+
[x: string]: string[];
|
|
353
|
+
};
|
|
252
354
|
};
|
|
253
355
|
}[];
|
|
254
356
|
readonly urls?: {
|
|
@@ -264,13 +366,34 @@ export default class {
|
|
|
264
366
|
name?: string;
|
|
265
367
|
resourceGroupIds?: string[];
|
|
266
368
|
} & {
|
|
267
|
-
metadata?: {
|
|
369
|
+
metadata?: {
|
|
370
|
+
[x: string]: any;
|
|
371
|
+
};
|
|
268
372
|
definition?: {
|
|
269
373
|
entrypoints: {
|
|
270
374
|
node: string;
|
|
271
375
|
type: "email" | "raw";
|
|
272
376
|
}[];
|
|
273
|
-
nodes: {
|
|
377
|
+
nodes: {
|
|
378
|
+
[x: string]: {
|
|
379
|
+
name: string;
|
|
380
|
+
metadata: {};
|
|
381
|
+
dependencies: string[];
|
|
382
|
+
edges: {
|
|
383
|
+
node: string;
|
|
384
|
+
config: {
|
|
385
|
+
[x: string]: any;
|
|
386
|
+
};
|
|
387
|
+
}[];
|
|
388
|
+
} | {
|
|
389
|
+
name: string;
|
|
390
|
+
metadata: {};
|
|
391
|
+
dependencies: string[];
|
|
392
|
+
config: {
|
|
393
|
+
[x: string]: any;
|
|
394
|
+
};
|
|
395
|
+
};
|
|
396
|
+
};
|
|
274
397
|
};
|
|
275
398
|
}, options?: AxiosRequestConfig) => Promise<import("axios").AxiosResponse<{
|
|
276
399
|
status: "success";
|
|
@@ -305,7 +428,9 @@ export default class {
|
|
|
305
428
|
readonly?: "__readonly";
|
|
306
429
|
};
|
|
307
430
|
readonly versions: {
|
|
308
|
-
metadata?: {
|
|
431
|
+
metadata?: {
|
|
432
|
+
[x: string]: any;
|
|
433
|
+
};
|
|
309
434
|
readonly state: (import("./definitions").WorkflowVersionState.DRAFT & {
|
|
310
435
|
readonly?: "__readonly";
|
|
311
436
|
}) | (import("./definitions").WorkflowVersionState.LIVE & {
|
|
@@ -318,13 +443,38 @@ export default class {
|
|
|
318
443
|
node: string;
|
|
319
444
|
type: "email" | "raw";
|
|
320
445
|
}[];
|
|
321
|
-
nodes: {
|
|
446
|
+
nodes: {
|
|
447
|
+
[x: string]: {
|
|
448
|
+
name: string;
|
|
449
|
+
metadata: {};
|
|
450
|
+
dependencies: string[];
|
|
451
|
+
edges: {
|
|
452
|
+
node: string;
|
|
453
|
+
config: {
|
|
454
|
+
[x: string]: any;
|
|
455
|
+
};
|
|
456
|
+
}[];
|
|
457
|
+
} | {
|
|
458
|
+
name: string;
|
|
459
|
+
metadata: {};
|
|
460
|
+
dependencies: string[];
|
|
461
|
+
config: {
|
|
462
|
+
[x: string]: any;
|
|
463
|
+
};
|
|
464
|
+
};
|
|
465
|
+
};
|
|
322
466
|
};
|
|
323
467
|
readonly analyze: {
|
|
324
468
|
readonly?: "__readonly";
|
|
325
|
-
outputsForEntrypoint: {
|
|
326
|
-
|
|
327
|
-
|
|
469
|
+
outputsForEntrypoint: {
|
|
470
|
+
[x: string]: string[];
|
|
471
|
+
};
|
|
472
|
+
entrypointsForOuput: {
|
|
473
|
+
[x: string]: string[];
|
|
474
|
+
};
|
|
475
|
+
datasForEntrypoint: {
|
|
476
|
+
[x: string]: string[];
|
|
477
|
+
};
|
|
328
478
|
};
|
|
329
479
|
}[];
|
|
330
480
|
readonly urls?: {
|
|
@@ -379,7 +529,9 @@ export default class {
|
|
|
379
529
|
readonly?: "__readonly";
|
|
380
530
|
};
|
|
381
531
|
readonly versions: {
|
|
382
|
-
metadata?: {
|
|
532
|
+
metadata?: {
|
|
533
|
+
[x: string]: any;
|
|
534
|
+
};
|
|
383
535
|
readonly state: (import("./definitions").WorkflowVersionState.DRAFT & {
|
|
384
536
|
readonly?: "__readonly";
|
|
385
537
|
}) | (import("./definitions").WorkflowVersionState.LIVE & {
|
|
@@ -392,13 +544,38 @@ export default class {
|
|
|
392
544
|
node: string;
|
|
393
545
|
type: "email" | "raw";
|
|
394
546
|
}[];
|
|
395
|
-
nodes: {
|
|
547
|
+
nodes: {
|
|
548
|
+
[x: string]: {
|
|
549
|
+
name: string;
|
|
550
|
+
metadata: {};
|
|
551
|
+
dependencies: string[];
|
|
552
|
+
edges: {
|
|
553
|
+
node: string;
|
|
554
|
+
config: {
|
|
555
|
+
[x: string]: any;
|
|
556
|
+
};
|
|
557
|
+
}[];
|
|
558
|
+
} | {
|
|
559
|
+
name: string;
|
|
560
|
+
metadata: {};
|
|
561
|
+
dependencies: string[];
|
|
562
|
+
config: {
|
|
563
|
+
[x: string]: any;
|
|
564
|
+
};
|
|
565
|
+
};
|
|
566
|
+
};
|
|
396
567
|
};
|
|
397
568
|
readonly analyze: {
|
|
398
569
|
readonly?: "__readonly";
|
|
399
|
-
outputsForEntrypoint: {
|
|
400
|
-
|
|
401
|
-
|
|
570
|
+
outputsForEntrypoint: {
|
|
571
|
+
[x: string]: string[];
|
|
572
|
+
};
|
|
573
|
+
entrypointsForOuput: {
|
|
574
|
+
[x: string]: string[];
|
|
575
|
+
};
|
|
576
|
+
datasForEntrypoint: {
|
|
577
|
+
[x: string]: string[];
|
|
578
|
+
};
|
|
402
579
|
};
|
|
403
580
|
}[];
|
|
404
581
|
readonly urls?: {
|
package/build/api.js
CHANGED
|
@@ -5,7 +5,10 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
|
5
5
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
6
6
|
};
|
|
7
7
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8
|
+
exports.WorkflowStatus = void 0;
|
|
8
9
|
const axios_1 = __importDefault(require("axios"));
|
|
10
|
+
var definitions_1 = require("./definitions");
|
|
11
|
+
Object.defineProperty(exports, "WorkflowStatus", { enumerable: true, get: function () { return definitions_1.WorkflowStatus; } });
|
|
9
12
|
class default_1 {
|
|
10
13
|
constructor(configOrInstance) {
|
|
11
14
|
this.axios = 'interceptors' in configOrInstance
|
|
@@ -72,4 +75,4 @@ function pick(obj, ...keys) {
|
|
|
72
75
|
});
|
|
73
76
|
return ret;
|
|
74
77
|
}
|
|
75
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
78
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYXBpLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vYXBpLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiI7QUFBQSxvQkFBb0I7QUFDcEIsb0JBQW9COzs7Ozs7QUFFcEIsa0RBQWlFO0FBR2pFLDZDQUE4UDtBQUF2Tiw2R0FBQSxjQUFjLE9BQUE7QUFFckQ7SUFHSSxZQUFZLGdCQUFvRDtRQUM1RCxJQUFJLENBQUMsS0FBSyxHQUFHLGNBQWMsSUFBSSxnQkFBZ0I7WUFDM0MsQ0FBQyxDQUFDLGdCQUFnQjtZQUNsQixDQUFDLENBQUMsZUFBSyxDQUFDLE1BQU0sQ0FBQyxnQkFBZ0IsQ0FBQyxDQUFBO0lBQ3hDLENBQUM7SUFFTyxxQkFBcUIsQ0FBQyxNQUs3QixFQUFFLE9BQTRCO1FBQzNCLE9BQU8sSUFBSSxDQUFDLEtBQUssQ0FBQyxHQUFHLENBWWpCLHNCQUFzQixFQUN0QixNQUFNLENBQUMsTUFBTSxDQUNULEVBQUUsRUFDRjtZQUNJLE1BQU0sRUFBRSxJQUFJLENBQUMsTUFBTSxFQUFFLE1BQU0sRUFBRSxZQUFZLEVBQUUsTUFBTSxFQUFFLFNBQVMsQ0FBQztTQUNoRSxFQUNELE9BQU8sQ0FDVixDQUNKLENBQUM7SUFDTixDQUFDO0lBRU8sOEJBQThCLENBQUMsT0FBNEI7UUFDL0QsT0FBTyxJQUFJLENBQUMsS0FBSyxDQUFDLEdBQUcsQ0FTakIsaUNBQWlDLEVBQUUsT0FBTyxDQUM3QyxDQUFDO0lBQ04sQ0FBQztJQUVPLFlBQVksQ0FBQyxNQVFwQixFQUFFLE9BQTRCO1FBQzNCLE9BQU8sSUFBSSxDQUFDLEtBQUssQ0FBQyxHQUFHLENBWWpCLFlBQVksRUFDWixNQUFNLENBQUMsTUFBTSxDQUNULEVBQUUsRUFDRjtZQUNJLE1BQU0sRUFBRSxJQUFJLENBQUMsTUFBTSxFQUFFLE1BQU0sRUFBRSxrQkFBa0IsRUFBRSxRQUFRLEVBQUUsUUFBUSxFQUFFLFdBQVcsRUFBRSxNQUFNLEVBQUUsU0FBUyxDQUFDO1NBQ3ZHLEVBQ0QsT0FBTyxD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
|
package/build/definitions.d.ts
CHANGED
|
@@ -23,34 +23,31 @@ export declare type _node_string_type_email_or_raw__ = {
|
|
|
23
23
|
};
|
|
24
24
|
export declare type __ = {};
|
|
25
25
|
export declare type AnyValue = any | null;
|
|
26
|
-
export declare type
|
|
27
|
-
|
|
28
|
-
value: AnyValue;
|
|
26
|
+
export declare type __x_string__any__ = {
|
|
27
|
+
[key: string]: AnyValue;
|
|
29
28
|
};
|
|
30
|
-
export declare type
|
|
31
|
-
type: "dynamic";
|
|
32
|
-
value: AnyValue;
|
|
33
|
-
};
|
|
34
|
-
export declare type __x_string___type_static_value_any___or__type_dynamic_value_any____ = {};
|
|
35
|
-
export declare type _node_string_config___x_string___type_static_value_any___or__type_dynamic_value_any______ = {
|
|
29
|
+
export declare type _node_string_config___x_string__any____ = {
|
|
36
30
|
node: string;
|
|
37
|
-
config:
|
|
31
|
+
config: __x_string__any__;
|
|
38
32
|
};
|
|
39
|
-
export declare type
|
|
33
|
+
export declare type _name_string_metadata____dependencies_string_Array_edges__node_string_config___x_string__any_____Array__ = {
|
|
40
34
|
name: string;
|
|
41
35
|
metadata: __;
|
|
42
36
|
dependencies: string[];
|
|
43
|
-
edges:
|
|
37
|
+
edges: _node_string_config___x_string__any____[];
|
|
44
38
|
};
|
|
45
|
-
export declare type
|
|
39
|
+
export declare type _name_string_config___x_string__any___metadata____dependencies_string_Array__ = {
|
|
46
40
|
name: string;
|
|
47
|
-
config:
|
|
41
|
+
config: __x_string__any__;
|
|
48
42
|
metadata: __;
|
|
49
43
|
dependencies: string[];
|
|
50
44
|
};
|
|
45
|
+
export declare type __x_string___name_string_metadata____dependencies_string_Array_edges__node_string_config___x_string__any_____Array___or__name_string_config___x_string__any___metadata____dependencies_string_Array____ = {
|
|
46
|
+
[key: string]: _name_string_metadata____dependencies_string_Array_edges__node_string_config___x_string__any_____Array__ | _name_string_config___x_string__any___metadata____dependencies_string_Array__;
|
|
47
|
+
};
|
|
51
48
|
export declare type Workflow = {
|
|
52
49
|
entrypoints: _node_string_type_email_or_raw__[];
|
|
53
|
-
nodes:
|
|
50
|
+
nodes: __x_string___name_string_metadata____dependencies_string_Array_edges__node_string_config___x_string__any_____Array___or__name_string_config___x_string__any___metadata____dependencies_string_Array____;
|
|
54
51
|
};
|
|
55
52
|
export declare type SerializedWorkflowTemplates = {
|
|
56
53
|
readonly id: (string) & readonlyP;
|
|
@@ -60,7 +57,9 @@ export declare type SerializedWorkflowTemplates = {
|
|
|
60
57
|
categories: string[];
|
|
61
58
|
feature?: string;
|
|
62
59
|
template: Workflow;
|
|
63
|
-
metadata?: {
|
|
60
|
+
metadata?: {
|
|
61
|
+
[key: string]: AnyValue;
|
|
62
|
+
};
|
|
64
63
|
};
|
|
65
64
|
export declare type WorkflowTemplates = SerializedWorkflowTemplates;
|
|
66
65
|
export declare enum WorkflowVersionState {
|
|
@@ -69,13 +68,21 @@ export declare enum WorkflowVersionState {
|
|
|
69
68
|
INACTIVE = "inactive"
|
|
70
69
|
}
|
|
71
70
|
export declare type SerializedWorkflowVersions = {
|
|
72
|
-
metadata?: {
|
|
71
|
+
metadata?: {
|
|
72
|
+
[key: string]: AnyValue;
|
|
73
|
+
};
|
|
73
74
|
readonly state: (WorkflowVersionState) & readonlyP;
|
|
74
75
|
definition: Workflow;
|
|
75
76
|
readonly analyze: ({
|
|
76
|
-
outputsForEntrypoint: {
|
|
77
|
-
|
|
78
|
-
|
|
77
|
+
outputsForEntrypoint: {
|
|
78
|
+
[key: string]: string[];
|
|
79
|
+
};
|
|
80
|
+
entrypointsForOuput: {
|
|
81
|
+
[key: string]: string[];
|
|
82
|
+
};
|
|
83
|
+
datasForEntrypoint: {
|
|
84
|
+
[key: string]: string[];
|
|
85
|
+
};
|
|
79
86
|
}) & readonlyP;
|
|
80
87
|
};
|
|
81
88
|
export declare type WorkflowVersions = SerializedWorkflowVersions;
|
|
@@ -122,18 +129,28 @@ export declare type Partial_SerializedWorkflow_ = {
|
|
|
122
129
|
readonly status?: (WorkflowStatus) & readonlyP;
|
|
123
130
|
};
|
|
124
131
|
export declare type Partial_SerializedWorkflowVersions_ = {
|
|
125
|
-
metadata?: {
|
|
132
|
+
metadata?: {
|
|
133
|
+
[key: string]: AnyValue;
|
|
134
|
+
};
|
|
126
135
|
readonly state?: (WorkflowVersionState) & readonlyP;
|
|
127
136
|
definition?: Workflow;
|
|
128
137
|
readonly analyze?: ({
|
|
129
|
-
outputsForEntrypoint: {
|
|
130
|
-
|
|
131
|
-
|
|
138
|
+
outputsForEntrypoint: {
|
|
139
|
+
[key: string]: string[];
|
|
140
|
+
};
|
|
141
|
+
entrypointsForOuput: {
|
|
142
|
+
[key: string]: string[];
|
|
143
|
+
};
|
|
144
|
+
datasForEntrypoint: {
|
|
145
|
+
[key: string]: string[];
|
|
146
|
+
};
|
|
132
147
|
}) & readonlyP;
|
|
133
148
|
};
|
|
134
149
|
export declare type Error = {
|
|
135
150
|
path: string;
|
|
136
151
|
message: string;
|
|
137
|
-
payload?: {
|
|
152
|
+
payload?: {
|
|
153
|
+
[key: string]: AnyValue;
|
|
154
|
+
};
|
|
138
155
|
};
|
|
139
156
|
export {};
|
package/build/definitions.js
CHANGED
|
@@ -16,4 +16,4 @@ var WorkflowStatus;
|
|
|
16
16
|
WorkflowStatus["PUBLISHED"] = "published";
|
|
17
17
|
WorkflowStatus["ERROR"] = "error";
|
|
18
18
|
})(WorkflowStatus = exports.WorkflowStatus || (exports.WorkflowStatus = {}));
|
|
19
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
19
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZGVmaW5pdGlvbnMuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi9kZWZpbml0aW9ucy50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiO0FBQUEsb0JBQW9CO0FBQ3BCLG9CQUFvQjs7O0FBNkVwQixJQUFZLG9CQUlYO0FBSkQsV0FBWSxvQkFBb0I7SUFDNUIsdUNBQWUsQ0FBQTtJQUNmLHFDQUFhLENBQUE7SUFDYiw2Q0FBcUIsQ0FBQTtBQUN6QixDQUFDLEVBSlcsb0JBQW9CLEdBQXBCLDRCQUFvQixLQUFwQiw0QkFBb0IsUUFJL0I7QUFzQkQsSUFBWSxjQUtYO0FBTEQsV0FBWSxjQUFjO0lBQ3RCLGlDQUFlLENBQUE7SUFDZiwyQ0FBeUIsQ0FBQTtJQUN6Qix5Q0FBdUIsQ0FBQTtJQUN2QixpQ0FBZSxDQUFBO0FBQ25CLENBQUMsRUFMVyxjQUFjLEdBQWQsc0JBQWMsS0FBZCxzQkFBYyxRQUt6QiJ9
|
package/package.json
CHANGED