@rlvt/workflows-openapi-client 1.0.341 → 1.0.343
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 +0 -21
- package/build/definitions.d.ts +3 -9
- package/build/definitions.js +1 -1
- package/package.json +1 -1
package/build/api.d.ts
CHANGED
|
@@ -176,9 +176,6 @@ export default class {
|
|
|
176
176
|
outputsForEntrypoint: {
|
|
177
177
|
[x: string]: string[];
|
|
178
178
|
};
|
|
179
|
-
entrypointsForNode: {
|
|
180
|
-
[x: string]: string[];
|
|
181
|
-
};
|
|
182
179
|
datasForEntrypoint: {
|
|
183
180
|
[x: string]: string[];
|
|
184
181
|
};
|
|
@@ -300,9 +297,6 @@ export default class {
|
|
|
300
297
|
outputsForEntrypoint: {
|
|
301
298
|
[x: string]: string[];
|
|
302
299
|
};
|
|
303
|
-
entrypointsForNode: {
|
|
304
|
-
[x: string]: string[];
|
|
305
|
-
};
|
|
306
300
|
datasForEntrypoint: {
|
|
307
301
|
[x: string]: string[];
|
|
308
302
|
};
|
|
@@ -420,9 +414,6 @@ export default class {
|
|
|
420
414
|
outputsForEntrypoint: {
|
|
421
415
|
[x: string]: string[];
|
|
422
416
|
};
|
|
423
|
-
entrypointsForNode: {
|
|
424
|
-
[x: string]: string[];
|
|
425
|
-
};
|
|
426
417
|
datasForEntrypoint: {
|
|
427
418
|
[x: string]: string[];
|
|
428
419
|
};
|
|
@@ -600,9 +591,6 @@ export default class {
|
|
|
600
591
|
outputsForEntrypoint: {
|
|
601
592
|
[x: string]: string[];
|
|
602
593
|
};
|
|
603
|
-
entrypointsForNode: {
|
|
604
|
-
[x: string]: string[];
|
|
605
|
-
};
|
|
606
594
|
datasForEntrypoint: {
|
|
607
595
|
[x: string]: string[];
|
|
608
596
|
};
|
|
@@ -681,9 +669,6 @@ export default class {
|
|
|
681
669
|
outputsForEntrypoint: {
|
|
682
670
|
[x: string]: string[];
|
|
683
671
|
};
|
|
684
|
-
entrypointsForNode: {
|
|
685
|
-
[x: string]: string[];
|
|
686
|
-
};
|
|
687
672
|
datasForEntrypoint: {
|
|
688
673
|
[x: string]: string[];
|
|
689
674
|
};
|
|
@@ -811,9 +796,6 @@ export default class {
|
|
|
811
796
|
outputsForEntrypoint: {
|
|
812
797
|
[x: string]: string[];
|
|
813
798
|
};
|
|
814
|
-
entrypointsForNode: {
|
|
815
|
-
[x: string]: string[];
|
|
816
|
-
};
|
|
817
799
|
datasForEntrypoint: {
|
|
818
800
|
[x: string]: string[];
|
|
819
801
|
};
|
|
@@ -930,9 +912,6 @@ export default class {
|
|
|
930
912
|
outputsForEntrypoint: {
|
|
931
913
|
[x: string]: string[];
|
|
932
914
|
};
|
|
933
|
-
entrypointsForNode: {
|
|
934
|
-
[x: string]: string[];
|
|
935
|
-
};
|
|
936
915
|
datasForEntrypoint: {
|
|
937
916
|
[x: string]: string[];
|
|
938
917
|
};
|
package/build/definitions.d.ts
CHANGED
|
@@ -89,7 +89,7 @@ export declare enum WorkflowVersionState {
|
|
|
89
89
|
LIVE = "live",
|
|
90
90
|
INACTIVE = "inactive"
|
|
91
91
|
}
|
|
92
|
-
export declare type
|
|
92
|
+
export declare type WorkflowAnalyze_Without_OutputsForEntrypoint_DatasForEntrypoint = {
|
|
93
93
|
entrypointsByBranchesForDataNode: {
|
|
94
94
|
[key: string]: {
|
|
95
95
|
branch: string;
|
|
@@ -111,13 +111,10 @@ export declare type LegacyWorkflowVersion = {
|
|
|
111
111
|
readonly createdAt: (Date) & readonlyP;
|
|
112
112
|
readonly updatedAt: (Date) & readonlyP;
|
|
113
113
|
readonly state: (WorkflowVersionState) & readonlyP;
|
|
114
|
-
readonly analyze: (
|
|
114
|
+
readonly analyze: (WorkflowAnalyze_Without_OutputsForEntrypoint_DatasForEntrypoint & {
|
|
115
115
|
outputsForEntrypoint: {
|
|
116
116
|
[key: string]: string[];
|
|
117
117
|
};
|
|
118
|
-
entrypointsForNode: {
|
|
119
|
-
[key: string]: string[];
|
|
120
|
-
};
|
|
121
118
|
datasForEntrypoint: {
|
|
122
119
|
[key: string]: string[];
|
|
123
120
|
};
|
|
@@ -241,13 +238,10 @@ export declare type LegacyWorkflowVersion_Partial = {
|
|
|
241
238
|
readonly createdAt?: (Date) & readonlyP;
|
|
242
239
|
readonly updatedAt?: (Date) & readonlyP;
|
|
243
240
|
readonly state?: (WorkflowVersionState) & readonlyP;
|
|
244
|
-
readonly analyze?: (
|
|
241
|
+
readonly analyze?: (WorkflowAnalyze_Without_OutputsForEntrypoint_DatasForEntrypoint & {
|
|
245
242
|
outputsForEntrypoint: {
|
|
246
243
|
[key: string]: string[];
|
|
247
244
|
};
|
|
248
|
-
entrypointsForNode: {
|
|
249
|
-
[key: string]: string[];
|
|
250
|
-
};
|
|
251
245
|
datasForEntrypoint: {
|
|
252
246
|
[key: string]: string[];
|
|
253
247
|
};
|
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,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZGVmaW5pdGlvbnMuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi9kZWZpbml0aW9ucy50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiO0FBQUEsb0JBQW9CO0FBQ3BCLG9CQUFvQjs7O0FBcUdwQixJQUFZLG9CQUlYO0FBSkQsV0FBWSxvQkFBb0I7SUFDNUIsdUNBQWUsQ0FBQTtJQUNmLHFDQUFhLENBQUE7SUFDYiw2Q0FBcUIsQ0FBQTtBQUN6QixDQUFDLEVBSlcsb0JBQW9CLEdBQXBCLDRCQUFvQixLQUFwQiw0QkFBb0IsUUFJL0I7QUFrQ0QsSUFBWSxjQUtYO0FBTEQsV0FBWSxjQUFjO0lBQ3RCLGlDQUFlLENBQUE7SUFDZiwyQ0FBeUIsQ0FBQTtJQUN6Qix5Q0FBdUIsQ0FBQTtJQUN2QixpQ0FBZSxDQUFBO0FBQ25CLENBQUMsRUFMVyxjQUFjLEdBQWQsc0JBQWMsS0FBZCxzQkFBYyxRQUt6QiJ9
|
package/package.json
CHANGED