@rlvt/workflows-openapi-client 1.0.348 → 1.0.350
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 +32 -0
- package/build/definitions.d.ts +6 -0
- package/build/definitions.js +1 -1
- package/package.json +1 -1
package/build/api.d.ts
CHANGED
|
@@ -159,6 +159,10 @@ export default class {
|
|
|
159
159
|
readonly state: WorkflowVersionState & {
|
|
160
160
|
readonly?: "__readonly" | undefined;
|
|
161
161
|
};
|
|
162
|
+
analyzeOverrides?: {
|
|
163
|
+
individualizedVertexIds: string[];
|
|
164
|
+
defaultVertexIds: string[];
|
|
165
|
+
} | undefined;
|
|
162
166
|
readonly analyze: {
|
|
163
167
|
readonly?: "__readonly" | undefined;
|
|
164
168
|
entrypointsByBranchesForDataNode: {
|
|
@@ -280,6 +284,10 @@ export default class {
|
|
|
280
284
|
readonly state: WorkflowVersionState & {
|
|
281
285
|
readonly?: "__readonly" | undefined;
|
|
282
286
|
};
|
|
287
|
+
analyzeOverrides?: {
|
|
288
|
+
individualizedVertexIds: string[];
|
|
289
|
+
defaultVertexIds: string[];
|
|
290
|
+
} | undefined;
|
|
283
291
|
readonly analyze: {
|
|
284
292
|
readonly?: "__readonly" | undefined;
|
|
285
293
|
entrypointsByBranchesForDataNode: {
|
|
@@ -397,6 +405,10 @@ export default class {
|
|
|
397
405
|
readonly state: WorkflowVersionState & {
|
|
398
406
|
readonly?: "__readonly" | undefined;
|
|
399
407
|
};
|
|
408
|
+
analyzeOverrides?: {
|
|
409
|
+
individualizedVertexIds: string[];
|
|
410
|
+
defaultVertexIds: string[];
|
|
411
|
+
} | undefined;
|
|
400
412
|
readonly analyze: {
|
|
401
413
|
readonly?: "__readonly" | undefined;
|
|
402
414
|
entrypointsByBranchesForDataNode: {
|
|
@@ -503,6 +515,10 @@ export default class {
|
|
|
503
515
|
metadata?: {
|
|
504
516
|
[x: string]: unknown;
|
|
505
517
|
} | undefined;
|
|
518
|
+
analyzeOverrides?: {
|
|
519
|
+
individualizedVertexIds: string[];
|
|
520
|
+
defaultVertexIds: string[];
|
|
521
|
+
} | undefined;
|
|
506
522
|
}[] | undefined;
|
|
507
523
|
readonly companyId?: (string & {
|
|
508
524
|
readonly?: "__readonly" | undefined;
|
|
@@ -574,6 +590,10 @@ export default class {
|
|
|
574
590
|
readonly state?: (WorkflowVersionState & {
|
|
575
591
|
readonly?: "__readonly" | undefined;
|
|
576
592
|
}) | undefined;
|
|
593
|
+
analyzeOverrides?: {
|
|
594
|
+
individualizedVertexIds: string[];
|
|
595
|
+
defaultVertexIds: string[];
|
|
596
|
+
} | undefined;
|
|
577
597
|
readonly analyze?: {
|
|
578
598
|
readonly?: "__readonly" | undefined;
|
|
579
599
|
entrypointsByBranchesForDataNode: {
|
|
@@ -652,6 +672,10 @@ export default class {
|
|
|
652
672
|
readonly state: WorkflowVersionState & {
|
|
653
673
|
readonly?: "__readonly" | undefined;
|
|
654
674
|
};
|
|
675
|
+
analyzeOverrides?: {
|
|
676
|
+
individualizedVertexIds: string[];
|
|
677
|
+
defaultVertexIds: string[];
|
|
678
|
+
} | undefined;
|
|
655
679
|
readonly analyze: {
|
|
656
680
|
readonly?: "__readonly" | undefined;
|
|
657
681
|
entrypointsByBranchesForDataNode: {
|
|
@@ -779,6 +803,10 @@ export default class {
|
|
|
779
803
|
readonly state: WorkflowVersionState & {
|
|
780
804
|
readonly?: "__readonly" | undefined;
|
|
781
805
|
};
|
|
806
|
+
analyzeOverrides?: {
|
|
807
|
+
individualizedVertexIds: string[];
|
|
808
|
+
defaultVertexIds: string[];
|
|
809
|
+
} | undefined;
|
|
782
810
|
readonly analyze: {
|
|
783
811
|
readonly?: "__readonly" | undefined;
|
|
784
812
|
entrypointsByBranchesForDataNode: {
|
|
@@ -895,6 +923,10 @@ export default class {
|
|
|
895
923
|
readonly state: WorkflowVersionState & {
|
|
896
924
|
readonly?: "__readonly" | undefined;
|
|
897
925
|
};
|
|
926
|
+
analyzeOverrides?: {
|
|
927
|
+
individualizedVertexIds: string[];
|
|
928
|
+
defaultVertexIds: string[];
|
|
929
|
+
} | undefined;
|
|
898
930
|
readonly analyze: {
|
|
899
931
|
readonly?: "__readonly" | undefined;
|
|
900
932
|
entrypointsByBranchesForDataNode: {
|
package/build/definitions.d.ts
CHANGED
|
@@ -89,6 +89,10 @@ export declare enum WorkflowVersionState {
|
|
|
89
89
|
LIVE = "live",
|
|
90
90
|
INACTIVE = "inactive"
|
|
91
91
|
}
|
|
92
|
+
export declare type AnalyzerOverrides = {
|
|
93
|
+
individualizedVertexIds: string[];
|
|
94
|
+
defaultVertexIds: string[];
|
|
95
|
+
};
|
|
92
96
|
export declare type WorkflowAnalyze_Without_OutputsForEntrypoint_DatasForEntrypoint = {
|
|
93
97
|
entrypointsByBranchesForDataNode: {
|
|
94
98
|
[key: string]: {
|
|
@@ -111,6 +115,7 @@ export declare type LegacyWorkflowVersion = {
|
|
|
111
115
|
readonly createdAt: (Date) & readonlyP;
|
|
112
116
|
readonly updatedAt: (Date) & readonlyP;
|
|
113
117
|
readonly state: (WorkflowVersionState) & readonlyP;
|
|
118
|
+
analyzeOverrides?: AnalyzerOverrides;
|
|
114
119
|
readonly analyze: (WorkflowAnalyze_Without_OutputsForEntrypoint_DatasForEntrypoint & {
|
|
115
120
|
outputsForEntrypoint: {
|
|
116
121
|
[key: string]: string[];
|
|
@@ -239,6 +244,7 @@ export declare type LegacyWorkflowVersion_Partial = {
|
|
|
239
244
|
readonly createdAt?: (Date) & readonlyP;
|
|
240
245
|
readonly updatedAt?: (Date) & readonlyP;
|
|
241
246
|
readonly state?: (WorkflowVersionState) & readonlyP;
|
|
247
|
+
analyzeOverrides?: AnalyzerOverrides;
|
|
242
248
|
readonly analyze?: (WorkflowAnalyze_Without_OutputsForEntrypoint_DatasForEntrypoint & {
|
|
243
249
|
outputsForEntrypoint: {
|
|
244
250
|
[key: string]: string[];
|
package/build/definitions.js
CHANGED
|
@@ -17,4 +17,4 @@ var WorkflowStatus;
|
|
|
17
17
|
WorkflowStatus["ERROR"] = "error";
|
|
18
18
|
WorkflowStatus["INACTIVE"] = "inactive";
|
|
19
19
|
})(WorkflowStatus = exports.WorkflowStatus || (exports.WorkflowStatus = {}));
|
|
20
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
20
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZGVmaW5pdGlvbnMuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi9kZWZpbml0aW9ucy50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiO0FBQUEsb0JBQW9CO0FBQ3BCLG9CQUFvQjs7O0FBcUdwQixJQUFZLG9CQUlYO0FBSkQsV0FBWSxvQkFBb0I7SUFDNUIsdUNBQWUsQ0FBQTtJQUNmLHFDQUFhLENBQUE7SUFDYiw2Q0FBcUIsQ0FBQTtBQUN6QixDQUFDLEVBSlcsb0JBQW9CLEdBQXBCLDRCQUFvQixLQUFwQiw0QkFBb0IsUUFJL0I7QUF1Q0QsSUFBWSxjQU1YO0FBTkQsV0FBWSxjQUFjO0lBQ3RCLGlDQUFlLENBQUE7SUFDZiwyQ0FBeUIsQ0FBQTtJQUN6Qix5Q0FBdUIsQ0FBQTtJQUN2QixpQ0FBZSxDQUFBO0lBQ2YsdUNBQXFCLENBQUE7QUFDekIsQ0FBQyxFQU5XLGNBQWMsR0FBZCxzQkFBYyxLQUFkLHNCQUFjLFFBTXpCIn0=
|
package/package.json
CHANGED