@cirrobio/api-client 0.1.15 → 0.1.16
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/README.md
CHANGED
package/dist/models/Process.d.ts
CHANGED
package/dist/models/Process.js
CHANGED
|
@@ -25,6 +25,7 @@ function instanceOfProcess(value) {
|
|
|
25
25
|
isInstance = isInstance && "name" in value;
|
|
26
26
|
isInstance = isInstance && "executor" in value;
|
|
27
27
|
isInstance = isInstance && "category" in value;
|
|
28
|
+
isInstance = isInstance && "pipelineType" in value;
|
|
28
29
|
return isInstance;
|
|
29
30
|
}
|
|
30
31
|
exports.instanceOfProcess = instanceOfProcess;
|
|
@@ -43,6 +44,7 @@ function ProcessFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
43
44
|
'dataType': !(0, runtime_1.exists)(json, 'dataType') ? undefined : json['dataType'],
|
|
44
45
|
'executor': (0, Executor_1.ExecutorFromJSON)(json['executor']),
|
|
45
46
|
'category': json['category'],
|
|
47
|
+
'pipelineType': json['pipelineType'],
|
|
46
48
|
'documentationUrl': !(0, runtime_1.exists)(json, 'documentationUrl') ? undefined : json['documentationUrl'],
|
|
47
49
|
'fileRequirementsMessage': !(0, runtime_1.exists)(json, 'fileRequirementsMessage') ? undefined : json['fileRequirementsMessage'],
|
|
48
50
|
'childProcessIds': !(0, runtime_1.exists)(json, 'childProcessIds') ? undefined : json['childProcessIds'],
|
|
@@ -68,6 +70,7 @@ function ProcessToJSON(value) {
|
|
|
68
70
|
'dataType': value.dataType,
|
|
69
71
|
'executor': (0, Executor_1.ExecutorToJSON)(value.executor),
|
|
70
72
|
'category': value.category,
|
|
73
|
+
'pipelineType': value.pipelineType,
|
|
71
74
|
'documentationUrl': value.documentationUrl,
|
|
72
75
|
'fileRequirementsMessage': value.fileRequirementsMessage,
|
|
73
76
|
'childProcessIds': value.childProcessIds,
|
|
@@ -55,6 +55,12 @@ export interface ProcessDetail {
|
|
|
55
55
|
* @memberof ProcessDetail
|
|
56
56
|
*/
|
|
57
57
|
category: string;
|
|
58
|
+
/**
|
|
59
|
+
* Type of pipeline
|
|
60
|
+
* @type {string}
|
|
61
|
+
* @memberof ProcessDetail
|
|
62
|
+
*/
|
|
63
|
+
pipelineType: string;
|
|
58
64
|
/**
|
|
59
65
|
* IDs of pipelines that can be run downstream
|
|
60
66
|
* @type {Array<string>}
|
|
@@ -29,6 +29,7 @@ function instanceOfProcessDetail(value) {
|
|
|
29
29
|
isInstance = isInstance && "description" in value;
|
|
30
30
|
isInstance = isInstance && "executor" in value;
|
|
31
31
|
isInstance = isInstance && "category" in value;
|
|
32
|
+
isInstance = isInstance && "pipelineType" in value;
|
|
32
33
|
isInstance = isInstance && "childProcessIds" in value;
|
|
33
34
|
isInstance = isInstance && "parentProcessIds" in value;
|
|
34
35
|
isInstance = isInstance && "linkedProjectIds" in value;
|
|
@@ -50,6 +51,7 @@ function ProcessDetailFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
50
51
|
'dataType': !(0, runtime_1.exists)(json, 'dataType') ? undefined : json['dataType'],
|
|
51
52
|
'executor': (0, Executor_1.ExecutorFromJSON)(json['executor']),
|
|
52
53
|
'category': json['category'],
|
|
54
|
+
'pipelineType': json['pipelineType'],
|
|
53
55
|
'childProcessIds': json['childProcessIds'],
|
|
54
56
|
'parentProcessIds': json['parentProcessIds'],
|
|
55
57
|
'documentationUrl': !(0, runtime_1.exists)(json, 'documentationUrl') ? undefined : json['documentationUrl'],
|
|
@@ -78,6 +80,7 @@ function ProcessDetailToJSON(value) {
|
|
|
78
80
|
'dataType': value.dataType,
|
|
79
81
|
'executor': (0, Executor_1.ExecutorToJSON)(value.executor),
|
|
80
82
|
'category': value.category,
|
|
83
|
+
'pipelineType': value.pipelineType,
|
|
81
84
|
'childProcessIds': value.childProcessIds,
|
|
82
85
|
'parentProcessIds': value.parentProcessIds,
|
|
83
86
|
'documentationUrl': value.documentationUrl,
|
package/package.json
CHANGED
package/src/models/Process.ts
CHANGED
|
@@ -62,6 +62,12 @@ export interface Process {
|
|
|
62
62
|
* @memberof Process
|
|
63
63
|
*/
|
|
64
64
|
category: string;
|
|
65
|
+
/**
|
|
66
|
+
* Type of pipeline
|
|
67
|
+
* @type {string}
|
|
68
|
+
* @memberof Process
|
|
69
|
+
*/
|
|
70
|
+
pipelineType: string;
|
|
65
71
|
/**
|
|
66
72
|
* Link to pipeline documentation
|
|
67
73
|
* @type {string}
|
|
@@ -121,6 +127,7 @@ export function instanceOfProcess(value: object): boolean {
|
|
|
121
127
|
isInstance = isInstance && "name" in value;
|
|
122
128
|
isInstance = isInstance && "executor" in value;
|
|
123
129
|
isInstance = isInstance && "category" in value;
|
|
130
|
+
isInstance = isInstance && "pipelineType" in value;
|
|
124
131
|
|
|
125
132
|
return isInstance;
|
|
126
133
|
}
|
|
@@ -141,6 +148,7 @@ export function ProcessFromJSONTyped(json: any, ignoreDiscriminator: boolean): P
|
|
|
141
148
|
'dataType': !exists(json, 'dataType') ? undefined : json['dataType'],
|
|
142
149
|
'executor': ExecutorFromJSON(json['executor']),
|
|
143
150
|
'category': json['category'],
|
|
151
|
+
'pipelineType': json['pipelineType'],
|
|
144
152
|
'documentationUrl': !exists(json, 'documentationUrl') ? undefined : json['documentationUrl'],
|
|
145
153
|
'fileRequirementsMessage': !exists(json, 'fileRequirementsMessage') ? undefined : json['fileRequirementsMessage'],
|
|
146
154
|
'childProcessIds': !exists(json, 'childProcessIds') ? undefined : json['childProcessIds'],
|
|
@@ -167,6 +175,7 @@ export function ProcessToJSON(value?: Process | null): any {
|
|
|
167
175
|
'dataType': value.dataType,
|
|
168
176
|
'executor': ExecutorToJSON(value.executor),
|
|
169
177
|
'category': value.category,
|
|
178
|
+
'pipelineType': value.pipelineType,
|
|
170
179
|
'documentationUrl': value.documentationUrl,
|
|
171
180
|
'fileRequirementsMessage': value.fileRequirementsMessage,
|
|
172
181
|
'childProcessIds': value.childProcessIds,
|
|
@@ -80,6 +80,12 @@ export interface ProcessDetail {
|
|
|
80
80
|
* @memberof ProcessDetail
|
|
81
81
|
*/
|
|
82
82
|
category: string;
|
|
83
|
+
/**
|
|
84
|
+
* Type of pipeline
|
|
85
|
+
* @type {string}
|
|
86
|
+
* @memberof ProcessDetail
|
|
87
|
+
*/
|
|
88
|
+
pipelineType: string;
|
|
83
89
|
/**
|
|
84
90
|
* IDs of pipelines that can be run downstream
|
|
85
91
|
* @type {Array<string>}
|
|
@@ -158,6 +164,7 @@ export function instanceOfProcessDetail(value: object): boolean {
|
|
|
158
164
|
isInstance = isInstance && "description" in value;
|
|
159
165
|
isInstance = isInstance && "executor" in value;
|
|
160
166
|
isInstance = isInstance && "category" in value;
|
|
167
|
+
isInstance = isInstance && "pipelineType" in value;
|
|
161
168
|
isInstance = isInstance && "childProcessIds" in value;
|
|
162
169
|
isInstance = isInstance && "parentProcessIds" in value;
|
|
163
170
|
isInstance = isInstance && "linkedProjectIds" in value;
|
|
@@ -181,6 +188,7 @@ export function ProcessDetailFromJSONTyped(json: any, ignoreDiscriminator: boole
|
|
|
181
188
|
'dataType': !exists(json, 'dataType') ? undefined : json['dataType'],
|
|
182
189
|
'executor': ExecutorFromJSON(json['executor']),
|
|
183
190
|
'category': json['category'],
|
|
191
|
+
'pipelineType': json['pipelineType'],
|
|
184
192
|
'childProcessIds': json['childProcessIds'],
|
|
185
193
|
'parentProcessIds': json['parentProcessIds'],
|
|
186
194
|
'documentationUrl': !exists(json, 'documentationUrl') ? undefined : json['documentationUrl'],
|
|
@@ -210,6 +218,7 @@ export function ProcessDetailToJSON(value?: ProcessDetail | null): any {
|
|
|
210
218
|
'dataType': value.dataType,
|
|
211
219
|
'executor': ExecutorToJSON(value.executor),
|
|
212
220
|
'category': value.category,
|
|
221
|
+
'pipelineType': value.pipelineType,
|
|
213
222
|
'childProcessIds': value.childProcessIds,
|
|
214
223
|
'parentProcessIds': value.parentProcessIds,
|
|
215
224
|
'documentationUrl': value.documentationUrl,
|