@rlvt/workflows-openapi-client 1.0.140 → 1.0.143
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 +42 -0
- package/build/definitions.d.ts +9 -3
- package/build/definitions.js +1 -1
- package/package.json +1 -1
package/build/api.d.ts
CHANGED
|
@@ -174,6 +174,12 @@ export default class {
|
|
|
174
174
|
};
|
|
175
175
|
readonly analyze: {
|
|
176
176
|
readonly?: "__readonly" | undefined;
|
|
177
|
+
entrypointsByBranchesForDataNode: {
|
|
178
|
+
[x: string]: {
|
|
179
|
+
branch: string;
|
|
180
|
+
entrypointIndexes: number[];
|
|
181
|
+
}[];
|
|
182
|
+
};
|
|
177
183
|
branches: string[];
|
|
178
184
|
individualizedBranches: string[];
|
|
179
185
|
defaultBranches: string[];
|
|
@@ -289,6 +295,12 @@ export default class {
|
|
|
289
295
|
};
|
|
290
296
|
readonly analyze: {
|
|
291
297
|
readonly?: "__readonly" | undefined;
|
|
298
|
+
entrypointsByBranchesForDataNode: {
|
|
299
|
+
[x: string]: {
|
|
300
|
+
branch: string;
|
|
301
|
+
entrypointIndexes: number[];
|
|
302
|
+
}[];
|
|
303
|
+
};
|
|
292
304
|
branches: string[];
|
|
293
305
|
individualizedBranches: string[];
|
|
294
306
|
defaultBranches: string[];
|
|
@@ -403,6 +415,12 @@ export default class {
|
|
|
403
415
|
};
|
|
404
416
|
readonly analyze: {
|
|
405
417
|
readonly?: "__readonly" | undefined;
|
|
418
|
+
entrypointsByBranchesForDataNode: {
|
|
419
|
+
[x: string]: {
|
|
420
|
+
branch: string;
|
|
421
|
+
entrypointIndexes: number[];
|
|
422
|
+
}[];
|
|
423
|
+
};
|
|
406
424
|
branches: string[];
|
|
407
425
|
individualizedBranches: string[];
|
|
408
426
|
defaultBranches: string[];
|
|
@@ -567,6 +585,12 @@ export default class {
|
|
|
567
585
|
} | undefined;
|
|
568
586
|
readonly analyze?: {
|
|
569
587
|
readonly?: "__readonly" | undefined;
|
|
588
|
+
entrypointsByBranchesForDataNode: {
|
|
589
|
+
[x: string]: {
|
|
590
|
+
branch: string;
|
|
591
|
+
entrypointIndexes: number[];
|
|
592
|
+
}[];
|
|
593
|
+
};
|
|
570
594
|
branches: string[];
|
|
571
595
|
individualizedBranches: string[];
|
|
572
596
|
defaultBranches: string[];
|
|
@@ -652,6 +676,12 @@ export default class {
|
|
|
652
676
|
};
|
|
653
677
|
readonly analyze: {
|
|
654
678
|
readonly?: "__readonly" | undefined;
|
|
679
|
+
entrypointsByBranchesForDataNode: {
|
|
680
|
+
[x: string]: {
|
|
681
|
+
branch: string;
|
|
682
|
+
entrypointIndexes: number[];
|
|
683
|
+
}[];
|
|
684
|
+
};
|
|
655
685
|
branches: string[];
|
|
656
686
|
individualizedBranches: string[];
|
|
657
687
|
defaultBranches: string[];
|
|
@@ -776,6 +806,12 @@ export default class {
|
|
|
776
806
|
};
|
|
777
807
|
readonly analyze: {
|
|
778
808
|
readonly?: "__readonly" | undefined;
|
|
809
|
+
entrypointsByBranchesForDataNode: {
|
|
810
|
+
[x: string]: {
|
|
811
|
+
branch: string;
|
|
812
|
+
entrypointIndexes: number[];
|
|
813
|
+
}[];
|
|
814
|
+
};
|
|
779
815
|
branches: string[];
|
|
780
816
|
individualizedBranches: string[];
|
|
781
817
|
defaultBranches: string[];
|
|
@@ -889,6 +925,12 @@ export default class {
|
|
|
889
925
|
};
|
|
890
926
|
readonly analyze: {
|
|
891
927
|
readonly?: "__readonly" | undefined;
|
|
928
|
+
entrypointsByBranchesForDataNode: {
|
|
929
|
+
[x: string]: {
|
|
930
|
+
branch: string;
|
|
931
|
+
entrypointIndexes: number[];
|
|
932
|
+
}[];
|
|
933
|
+
};
|
|
892
934
|
branches: string[];
|
|
893
935
|
individualizedBranches: string[];
|
|
894
936
|
defaultBranches: string[];
|
package/build/definitions.d.ts
CHANGED
|
@@ -68,7 +68,13 @@ export declare enum WorkflowVersionState {
|
|
|
68
68
|
LIVE = "live",
|
|
69
69
|
INACTIVE = "inactive"
|
|
70
70
|
}
|
|
71
|
-
export declare type
|
|
71
|
+
export declare type WorkflowAnalyze_Without_EntrypointsByBranchesForDataNode_Branches_IndividualizedBranches_DefaultBranches = {
|
|
72
|
+
entrypointsByBranchesForDataNode: {
|
|
73
|
+
[key: string]: {
|
|
74
|
+
branch: string;
|
|
75
|
+
entrypointIndexes: number[];
|
|
76
|
+
}[];
|
|
77
|
+
};
|
|
72
78
|
branches: string[];
|
|
73
79
|
individualizedBranches: string[];
|
|
74
80
|
defaultBranches: string[];
|
|
@@ -81,7 +87,7 @@ export declare type SerializedWorkflowVersion = {
|
|
|
81
87
|
};
|
|
82
88
|
readonly state: (WorkflowVersionState) & readonlyP;
|
|
83
89
|
definition: Workflow;
|
|
84
|
-
readonly analyze: (
|
|
90
|
+
readonly analyze: (WorkflowAnalyze_Without_EntrypointsByBranchesForDataNode_Branches_IndividualizedBranches_DefaultBranches & {
|
|
85
91
|
outputsForEntrypoint: {
|
|
86
92
|
[key: string]: string[];
|
|
87
93
|
};
|
|
@@ -164,7 +170,7 @@ export declare type Partial_SerializedWorkflowVersion = {
|
|
|
164
170
|
};
|
|
165
171
|
readonly state?: (WorkflowVersionState) & readonlyP;
|
|
166
172
|
definition?: Workflow;
|
|
167
|
-
readonly analyze?: (
|
|
173
|
+
readonly analyze?: (WorkflowAnalyze_Without_EntrypointsByBranchesForDataNode_Branches_IndividualizedBranches_DefaultBranches & {
|
|
168
174
|
outputsForEntrypoint: {
|
|
169
175
|
[key: string]: string[];
|
|
170
176
|
};
|
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,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZGVmaW5pdGlvbnMuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi9kZWZpbml0aW9ucy50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiO0FBQUEsb0JBQW9CO0FBQ3BCLG9CQUFvQjs7O0FBZ0ZwQixJQUFZLG9CQUlYO0FBSkQsV0FBWSxvQkFBb0I7SUFDNUIsdUNBQWUsQ0FBQTtJQUNmLHFDQUFhLENBQUE7SUFDYiw2Q0FBcUIsQ0FBQTtBQUN6QixDQUFDLEVBSlcsb0JBQW9CLEdBQXBCLDRCQUFvQixLQUFwQiw0QkFBb0IsUUFJL0I7QUFtQ0QsSUFBWSxjQUtYO0FBTEQsV0FBWSxjQUFjO0lBQ3RCLGlDQUFlLENBQUE7SUFDZiwyQ0FBeUIsQ0FBQTtJQUN6Qix5Q0FBdUIsQ0FBQTtJQUN2QixpQ0FBZSxDQUFBO0FBQ25CLENBQUMsRUFMVyxjQUFjLEdBQWQsc0JBQWMsS0FBZCxzQkFBYyxRQUt6QiJ9
|
package/package.json
CHANGED