@rlvt/workflows-openapi-client 1.0.458 → 1.0.459

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 CHANGED
@@ -190,17 +190,7 @@ export default class {
190
190
  [x: string]: string[];
191
191
  };
192
192
  branchesInfos: {
193
- [x: string]: {
194
- nodes: string[];
195
- with: {
196
- id: string;
197
- using: string[];
198
- }[];
199
- on: {
200
- id: string;
201
- path: string;
202
- }[];
203
- };
193
+ [x: string]: (string | import("./definitions").BranchInfosElementType)[][];
204
194
  };
205
195
  outputsForEntrypoint: {
206
196
  [x: string]: string[];
@@ -333,17 +323,7 @@ export default class {
333
323
  [x: string]: string[];
334
324
  };
335
325
  branchesInfos: {
336
- [x: string]: {
337
- nodes: string[];
338
- with: {
339
- id: string;
340
- using: string[];
341
- }[];
342
- on: {
343
- id: string;
344
- path: string;
345
- }[];
346
- };
326
+ [x: string]: (string | import("./definitions").BranchInfosElementType)[][];
347
327
  };
348
328
  outputsForEntrypoint: {
349
329
  [x: string]: string[];
@@ -474,17 +454,7 @@ export default class {
474
454
  [x: string]: string[];
475
455
  };
476
456
  branchesInfos: {
477
- [x: string]: {
478
- nodes: string[];
479
- with: {
480
- id: string;
481
- using: string[];
482
- }[];
483
- on: {
484
- id: string;
485
- path: string;
486
- }[];
487
- };
457
+ [x: string]: (string | import("./definitions").BranchInfosElementType)[][];
488
458
  };
489
459
  outputsForEntrypoint: {
490
460
  [x: string]: string[];
@@ -664,17 +634,7 @@ export default class {
664
634
  [x: string]: string[];
665
635
  };
666
636
  branchesInfos: {
667
- [x: string]: {
668
- nodes: string[];
669
- with: {
670
- id: string;
671
- using: string[];
672
- }[];
673
- on: {
674
- id: string;
675
- path: string;
676
- }[];
677
- };
637
+ [x: string]: (string | import("./definitions").BranchInfosElementType)[][];
678
638
  };
679
639
  outputsForEntrypoint: {
680
640
  [x: string]: string[];
@@ -826,17 +786,7 @@ export default class {
826
786
  [x: string]: string[];
827
787
  };
828
788
  branchesInfos: {
829
- [x: string]: {
830
- nodes: string[];
831
- with: {
832
- id: string;
833
- using: string[];
834
- }[];
835
- on: {
836
- id: string;
837
- path: string;
838
- }[];
839
- };
789
+ [x: string]: (string | import("./definitions").BranchInfosElementType)[][];
840
790
  };
841
791
  outputsForEntrypoint: {
842
792
  [x: string]: string[];
@@ -975,17 +925,7 @@ export default class {
975
925
  [x: string]: string[];
976
926
  };
977
927
  branchesInfos: {
978
- [x: string]: {
979
- nodes: string[];
980
- with: {
981
- id: string;
982
- using: string[];
983
- }[];
984
- on: {
985
- id: string;
986
- path: string;
987
- }[];
988
- };
928
+ [x: string]: (string | import("./definitions").BranchInfosElementType)[][];
989
929
  };
990
930
  outputsForEntrypoint: {
991
931
  [x: string]: string[];
@@ -1113,17 +1053,7 @@ export default class {
1113
1053
  [x: string]: string[];
1114
1054
  };
1115
1055
  branchesInfos: {
1116
- [x: string]: {
1117
- nodes: string[];
1118
- with: {
1119
- id: string;
1120
- using: string[];
1121
- }[];
1122
- on: {
1123
- id: string;
1124
- path: string;
1125
- }[];
1126
- };
1056
+ [x: string]: (string | import("./definitions").BranchInfosElementType)[][];
1127
1057
  };
1128
1058
  outputsForEntrypoint: {
1129
1059
  [x: string]: string[];
@@ -1257,17 +1187,7 @@ export default class {
1257
1187
  [x: string]: string[];
1258
1188
  };
1259
1189
  branchesInfos: {
1260
- [x: string]: {
1261
- nodes: string[];
1262
- with: {
1263
- id: string;
1264
- using: string[];
1265
- }[];
1266
- on: {
1267
- id: string;
1268
- path: string;
1269
- }[];
1270
- };
1190
+ [x: string]: (string | import("./definitions").BranchInfosElementType)[][];
1271
1191
  };
1272
1192
  outputsForEntrypoint: {
1273
1193
  [x: string]: string[];
@@ -127,6 +127,7 @@ export declare type AnalyzerOverrides = {
127
127
  individualizedVertexIds: string[];
128
128
  defaultVertexIds: string[];
129
129
  };
130
+ export declare type BranchInfosElementType = 0 | 1 | 2;
130
131
  export declare type WorkflowAnalyze_Without_OutputsForEntrypoint_DatasForEntrypoint = {
131
132
  entrypointsByBranches: {
132
133
  branch: string;
@@ -139,17 +140,7 @@ export declare type WorkflowAnalyze_Without_OutputsForEntrypoint_DatasForEntrypo
139
140
  [key: string]: string[];
140
141
  };
141
142
  branchesInfos: {
142
- [key: string]: {
143
- nodes: string[];
144
- with: {
145
- id: string;
146
- using: string[];
147
- }[];
148
- on: {
149
- id: string;
150
- path: string;
151
- }[];
152
- };
143
+ [key: string]: (BranchInfosElementType | string)[][];
153
144
  };
154
145
  };
155
146
  export declare type SerializedWorkflowVersion = {
@@ -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,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZGVmaW5pdGlvbnMuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi9kZWZpbml0aW9ucy50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiO0FBQUEsb0JBQW9CO0FBQ3BCLG9CQUFvQjs7O0FBcUdwQixJQUFZLG9CQUlYO0FBSkQsV0FBWSxvQkFBb0I7SUFDNUIsdUNBQWUsQ0FBQTtJQUNmLHFDQUFhLENBQUE7SUFDYiw2Q0FBcUIsQ0FBQTtBQUN6QixDQUFDLEVBSlcsb0JBQW9CLEdBQXBCLDRCQUFvQixLQUFwQiw0QkFBb0IsUUFJL0I7QUFzRkQsSUFBWSxjQU1YO0FBTkQsV0FBWSxjQUFjO0lBQ3RCLGlDQUFlLENBQUE7SUFDZiwyQ0FBeUIsQ0FBQTtJQUN6Qix5Q0FBdUIsQ0FBQTtJQUN2QixpQ0FBZSxDQUFBO0lBQ2YsdUNBQXFCLENBQUE7QUFDekIsQ0FBQyxFQU5XLGNBQWMsR0FBZCxzQkFBYyxLQUFkLHNCQUFjLFFBTXpCIn0=
20
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZGVmaW5pdGlvbnMuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi9kZWZpbml0aW9ucy50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiO0FBQUEsb0JBQW9CO0FBQ3BCLG9CQUFvQjs7O0FBcUdwQixJQUFZLG9CQUlYO0FBSkQsV0FBWSxvQkFBb0I7SUFDNUIsdUNBQWUsQ0FBQTtJQUNmLHFDQUFhLENBQUE7SUFDYiw2Q0FBcUIsQ0FBQTtBQUN6QixDQUFDLEVBSlcsb0JBQW9CLEdBQXBCLDRCQUFvQixLQUFwQiw0QkFBb0IsUUFJL0I7QUE2RUQsSUFBWSxjQU1YO0FBTkQsV0FBWSxjQUFjO0lBQ3RCLGlDQUFlLENBQUE7SUFDZiwyQ0FBeUIsQ0FBQTtJQUN6Qix5Q0FBdUIsQ0FBQTtJQUN2QixpQ0FBZSxDQUFBO0lBQ2YsdUNBQXFCLENBQUE7QUFDekIsQ0FBQyxFQU5XLGNBQWMsR0FBZCxzQkFBYyxLQUFkLHNCQUFjLFFBTXpCIn0=
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rlvt/workflows-openapi-client",
3
- "version": "1.0.458+cd7023e",
3
+ "version": "1.0.459+db8612f",
4
4
  "description": "Openapi client for reelevant service",
5
5
  "main": "build/index.js",
6
6
  "repository": "https://github.com/reelevant-tech/openapi-clients",