@rlvt/workflows-openapi-client 1.0.474 → 1.0.476
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 +4 -0
- package/build/definitions.js +1 -1
- package/package.json +1 -1
package/build/api.d.ts
CHANGED
|
@@ -179,6 +179,10 @@ export default class {
|
|
|
179
179
|
} | undefined;
|
|
180
180
|
readonly analyze: {
|
|
181
181
|
readonly?: "__readonly" | undefined;
|
|
182
|
+
entrypointsByBranches: {
|
|
183
|
+
branch: string;
|
|
184
|
+
entrypointIds: string[];
|
|
185
|
+
}[];
|
|
182
186
|
branches: string[];
|
|
183
187
|
individualizedBranches: string[];
|
|
184
188
|
defaultBranches: string[];
|
|
@@ -311,6 +315,10 @@ export default class {
|
|
|
311
315
|
} | undefined;
|
|
312
316
|
readonly analyze: {
|
|
313
317
|
readonly?: "__readonly" | undefined;
|
|
318
|
+
entrypointsByBranches: {
|
|
319
|
+
branch: string;
|
|
320
|
+
entrypointIds: string[];
|
|
321
|
+
}[];
|
|
314
322
|
branches: string[];
|
|
315
323
|
individualizedBranches: string[];
|
|
316
324
|
defaultBranches: string[];
|
|
@@ -441,6 +449,10 @@ export default class {
|
|
|
441
449
|
} | undefined;
|
|
442
450
|
readonly analyze: {
|
|
443
451
|
readonly?: "__readonly" | undefined;
|
|
452
|
+
entrypointsByBranches: {
|
|
453
|
+
branch: string;
|
|
454
|
+
entrypointIds: string[];
|
|
455
|
+
}[];
|
|
444
456
|
branches: string[];
|
|
445
457
|
individualizedBranches: string[];
|
|
446
458
|
defaultBranches: string[];
|
|
@@ -620,6 +632,10 @@ export default class {
|
|
|
620
632
|
} | undefined;
|
|
621
633
|
readonly analyze?: {
|
|
622
634
|
readonly?: "__readonly" | undefined;
|
|
635
|
+
entrypointsByBranches: {
|
|
636
|
+
branch: string;
|
|
637
|
+
entrypointIds: string[];
|
|
638
|
+
}[];
|
|
623
639
|
branches: string[];
|
|
624
640
|
individualizedBranches: string[];
|
|
625
641
|
defaultBranches: string[];
|
|
@@ -771,6 +787,10 @@ export default class {
|
|
|
771
787
|
} | undefined;
|
|
772
788
|
readonly analyze: {
|
|
773
789
|
readonly?: "__readonly" | undefined;
|
|
790
|
+
entrypointsByBranches: {
|
|
791
|
+
branch: string;
|
|
792
|
+
entrypointIds: string[];
|
|
793
|
+
}[];
|
|
774
794
|
branches: string[];
|
|
775
795
|
individualizedBranches: string[];
|
|
776
796
|
defaultBranches: string[];
|
|
@@ -909,6 +929,10 @@ export default class {
|
|
|
909
929
|
} | undefined;
|
|
910
930
|
readonly analyze: {
|
|
911
931
|
readonly?: "__readonly" | undefined;
|
|
932
|
+
entrypointsByBranches: {
|
|
933
|
+
branch: string;
|
|
934
|
+
entrypointIds: string[];
|
|
935
|
+
}[];
|
|
912
936
|
branches: string[];
|
|
913
937
|
individualizedBranches: string[];
|
|
914
938
|
defaultBranches: string[];
|
|
@@ -1036,6 +1060,10 @@ export default class {
|
|
|
1036
1060
|
} | undefined;
|
|
1037
1061
|
readonly analyze: {
|
|
1038
1062
|
readonly?: "__readonly" | undefined;
|
|
1063
|
+
entrypointsByBranches: {
|
|
1064
|
+
branch: string;
|
|
1065
|
+
entrypointIds: string[];
|
|
1066
|
+
}[];
|
|
1039
1067
|
branches: string[];
|
|
1040
1068
|
individualizedBranches: string[];
|
|
1041
1069
|
defaultBranches: string[];
|
|
@@ -1169,6 +1197,10 @@ export default class {
|
|
|
1169
1197
|
} | undefined;
|
|
1170
1198
|
readonly analyze: {
|
|
1171
1199
|
readonly?: "__readonly" | undefined;
|
|
1200
|
+
entrypointsByBranches: {
|
|
1201
|
+
branch: string;
|
|
1202
|
+
entrypointIds: string[];
|
|
1203
|
+
}[];
|
|
1172
1204
|
branches: string[];
|
|
1173
1205
|
individualizedBranches: string[];
|
|
1174
1206
|
defaultBranches: string[];
|
package/build/definitions.d.ts
CHANGED
|
@@ -129,6 +129,10 @@ export declare type AnalyzerOverrides = {
|
|
|
129
129
|
};
|
|
130
130
|
export declare type BranchInfosElementType = 0 | 1 | 2;
|
|
131
131
|
export declare type WorkflowAnalyze_Without_OutputsForEntrypoint_DatasForEntrypoint = {
|
|
132
|
+
entrypointsByBranches: {
|
|
133
|
+
branch: string;
|
|
134
|
+
entrypointIds: string[];
|
|
135
|
+
}[];
|
|
132
136
|
branches: string[];
|
|
133
137
|
individualizedBranches: string[];
|
|
134
138
|
defaultBranches: 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,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZGVmaW5pdGlvbnMuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi9kZWZpbml0aW9ucy50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiO0FBQUEsb0JBQW9CO0FBQ3BCLG9CQUFvQjs7O0FBcUdwQixJQUFZLG9CQUlYO0FBSkQsV0FBWSxvQkFBb0I7SUFDNUIsdUNBQWUsQ0FBQTtJQUNmLHFDQUFhLENBQUE7SUFDYiw2Q0FBcUIsQ0FBQTtBQUN6QixDQUFDLEVBSlcsb0JBQW9CLEdBQXBCLDRCQUFvQixLQUFwQiw0QkFBb0IsUUFJL0I7QUFnRkQsSUFBWSxjQU1YO0FBTkQsV0FBWSxjQUFjO0lBQ3RCLGlDQUFlLENBQUE7SUFDZiwyQ0FBeUIsQ0FBQTtJQUN6Qix5Q0FBdUIsQ0FBQTtJQUN2QixpQ0FBZSxDQUFBO0lBQ2YsdUNBQXFCLENBQUE7QUFDekIsQ0FBQyxFQU5XLGNBQWMsR0FBZCxzQkFBYyxLQUFkLHNCQUFjLFFBTXpCIn0=
|
package/package.json
CHANGED