@rlvt/workflows-openapi-client 1.0.297 → 1.0.299
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 +25 -1
- package/build/definitions.d.ts +15 -0
- package/build/definitions.js +1 -1
- package/package.json +1 -1
package/build/api.d.ts
CHANGED
|
@@ -191,6 +191,9 @@ export default class {
|
|
|
191
191
|
branches: string[];
|
|
192
192
|
individualizedBranches: string[];
|
|
193
193
|
defaultBranches: string[];
|
|
194
|
+
usedDatasourceFields: {
|
|
195
|
+
[x: string]: string[];
|
|
196
|
+
};
|
|
194
197
|
outputsForEntrypoint: {
|
|
195
198
|
[x: string]: string[];
|
|
196
199
|
};
|
|
@@ -319,6 +322,9 @@ export default class {
|
|
|
319
322
|
branches: string[];
|
|
320
323
|
individualizedBranches: string[];
|
|
321
324
|
defaultBranches: string[];
|
|
325
|
+
usedDatasourceFields: {
|
|
326
|
+
[x: string]: string[];
|
|
327
|
+
};
|
|
322
328
|
outputsForEntrypoint: {
|
|
323
329
|
[x: string]: string[];
|
|
324
330
|
};
|
|
@@ -446,6 +452,9 @@ export default class {
|
|
|
446
452
|
branches: string[];
|
|
447
453
|
individualizedBranches: string[];
|
|
448
454
|
defaultBranches: string[];
|
|
455
|
+
usedDatasourceFields: {
|
|
456
|
+
[x: string]: string[];
|
|
457
|
+
};
|
|
449
458
|
outputsForEntrypoint: {
|
|
450
459
|
[x: string]: string[];
|
|
451
460
|
};
|
|
@@ -624,6 +633,9 @@ export default class {
|
|
|
624
633
|
branches: string[];
|
|
625
634
|
individualizedBranches: string[];
|
|
626
635
|
defaultBranches: string[];
|
|
636
|
+
usedDatasourceFields: {
|
|
637
|
+
[x: string]: string[];
|
|
638
|
+
};
|
|
627
639
|
outputsForEntrypoint: {
|
|
628
640
|
[x: string]: string[];
|
|
629
641
|
};
|
|
@@ -721,6 +733,9 @@ export default class {
|
|
|
721
733
|
branches: string[];
|
|
722
734
|
individualizedBranches: string[];
|
|
723
735
|
defaultBranches: string[];
|
|
736
|
+
usedDatasourceFields: {
|
|
737
|
+
[x: string]: string[];
|
|
738
|
+
};
|
|
724
739
|
outputsForEntrypoint: {
|
|
725
740
|
[x: string]: string[];
|
|
726
741
|
};
|
|
@@ -858,6 +873,9 @@ export default class {
|
|
|
858
873
|
branches: string[];
|
|
859
874
|
individualizedBranches: string[];
|
|
860
875
|
defaultBranches: string[];
|
|
876
|
+
usedDatasourceFields: {
|
|
877
|
+
[x: string]: string[];
|
|
878
|
+
};
|
|
861
879
|
outputsForEntrypoint: {
|
|
862
880
|
[x: string]: string[];
|
|
863
881
|
};
|
|
@@ -984,6 +1002,9 @@ export default class {
|
|
|
984
1002
|
branches: string[];
|
|
985
1003
|
individualizedBranches: string[];
|
|
986
1004
|
defaultBranches: string[];
|
|
1005
|
+
usedDatasourceFields: {
|
|
1006
|
+
[x: string]: string[];
|
|
1007
|
+
};
|
|
987
1008
|
outputsForEntrypoint: {
|
|
988
1009
|
[x: string]: string[];
|
|
989
1010
|
};
|
|
@@ -1075,7 +1096,10 @@ export default class {
|
|
|
1075
1096
|
datetime: string;
|
|
1076
1097
|
code?: number | undefined;
|
|
1077
1098
|
message: string;
|
|
1078
|
-
data:
|
|
1099
|
+
data: {
|
|
1100
|
+
id: string;
|
|
1101
|
+
fields: string[];
|
|
1102
|
+
}[];
|
|
1079
1103
|
}, any>>;
|
|
1080
1104
|
};
|
|
1081
1105
|
}
|
package/build/definitions.d.ts
CHANGED
|
@@ -99,6 +99,9 @@ export declare type WorkflowAnalyze_Without_OutputsForEntrypoint_EntrypointsForN
|
|
|
99
99
|
branches: string[];
|
|
100
100
|
individualizedBranches: string[];
|
|
101
101
|
defaultBranches: string[];
|
|
102
|
+
usedDatasourceFields: {
|
|
103
|
+
[key: string]: string[];
|
|
104
|
+
};
|
|
102
105
|
};
|
|
103
106
|
export declare type LegacyWorkflowVersion = {
|
|
104
107
|
definition: LegacyWorkflow;
|
|
@@ -257,6 +260,18 @@ export declare type Error = {
|
|
|
257
260
|
[key: string]: AnyValue;
|
|
258
261
|
};
|
|
259
262
|
};
|
|
263
|
+
export declare type SuccessResponse___type = {
|
|
264
|
+
status: "success";
|
|
265
|
+
program: string;
|
|
266
|
+
version: string;
|
|
267
|
+
datetime: string;
|
|
268
|
+
code?: number;
|
|
269
|
+
message: string;
|
|
270
|
+
data: {
|
|
271
|
+
id: string;
|
|
272
|
+
fields: string[];
|
|
273
|
+
}[];
|
|
274
|
+
};
|
|
260
275
|
export declare type MissingContentDependencyErrorPayload = {
|
|
261
276
|
workflows: {
|
|
262
277
|
errors: {
|
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,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZGVmaW5pdGlvbnMuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi9kZWZpbml0aW9ucy50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiO0FBQUEsb0JBQW9CO0FBQ3BCLG9CQUFvQjs7O0FBcUdwQixJQUFZLG9CQUlYO0FBSkQsV0FBWSxvQkFBb0I7SUFDNUIsdUNBQWUsQ0FBQTtJQUNmLHFDQUFhLENBQUE7SUFDYiw2Q0FBcUIsQ0FBQTtBQUN6QixDQUFDLEVBSlcsb0JBQW9CLEdBQXBCLDRCQUFvQixLQUFwQiw0QkFBb0IsUUFJL0I7QUFxQ0QsSUFBWSxjQUtYO0FBTEQsV0FBWSxjQUFjO0lBQ3RCLGlDQUFlLENBQUE7SUFDZiwyQ0FBeUIsQ0FBQTtJQUN6Qix5Q0FBdUIsQ0FBQTtJQUN2QixpQ0FBZSxDQUFBO0FBQ25CLENBQUMsRUFMVyxjQUFjLEdBQWQsc0JBQWMsS0FBZCxzQkFBYyxRQUt6QiJ9
|
package/package.json
CHANGED