@tapis/tapis-typescript-systems 0.0.5 → 0.0.6
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
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
## @tapis/tapis-typescript-systems@0.0.
|
|
1
|
+
## @tapis/tapis-typescript-systems@0.0.6
|
|
2
2
|
|
|
3
3
|
This generator creates TypeScript/JavaScript client that utilizes [Fetch API](https://fetch.spec.whatwg.org/). The generated Node module can be used in the following environments:
|
|
4
4
|
|
|
@@ -36,7 +36,7 @@ navigate to the folder of your consuming project and run one of the following co
|
|
|
36
36
|
_published:_
|
|
37
37
|
|
|
38
38
|
```
|
|
39
|
-
npm install @tapis/tapis-typescript-systems@0.0.
|
|
39
|
+
npm install @tapis/tapis-typescript-systems@0.0.6 --save
|
|
40
40
|
```
|
|
41
41
|
|
|
42
42
|
_unPublished (not recommended):_
|
|
@@ -154,6 +154,12 @@ export interface TapisSystem {
|
|
|
154
154
|
* @memberof TapisSystem
|
|
155
155
|
*/
|
|
156
156
|
allowChildren?: boolean;
|
|
157
|
+
/**
|
|
158
|
+
* Parent system associated with this child system.
|
|
159
|
+
* @type {string}
|
|
160
|
+
* @memberof TapisSystem
|
|
161
|
+
*/
|
|
162
|
+
parentId?: string;
|
|
157
163
|
/**
|
|
158
164
|
*
|
|
159
165
|
* @type {string}
|
|
@@ -47,6 +47,7 @@ function TapisSystemFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
47
47
|
'canRunBatch': !runtime_1.exists(json, 'canRunBatch') ? undefined : json['canRunBatch'],
|
|
48
48
|
'enableCmdPrefix': !runtime_1.exists(json, 'enableCmdPrefix') ? undefined : json['enableCmdPrefix'],
|
|
49
49
|
'allowChildren': !runtime_1.exists(json, 'allowChildren') ? undefined : json['allowChildren'],
|
|
50
|
+
'parentId': !runtime_1.exists(json, 'parentId') ? undefined : json['parentId'],
|
|
50
51
|
'mpiCmd': !runtime_1.exists(json, 'mpiCmd') ? undefined : json['mpiCmd'],
|
|
51
52
|
'jobRuntimes': !runtime_1.exists(json, 'jobRuntimes') ? undefined : (json['jobRuntimes'].map(_1.JobRuntimeFromJSON)),
|
|
52
53
|
'jobWorkingDir': !runtime_1.exists(json, 'jobWorkingDir') ? undefined : json['jobWorkingDir'],
|
|
@@ -99,6 +100,7 @@ function TapisSystemToJSON(value) {
|
|
|
99
100
|
'canRunBatch': value.canRunBatch,
|
|
100
101
|
'enableCmdPrefix': value.enableCmdPrefix,
|
|
101
102
|
'allowChildren': value.allowChildren,
|
|
103
|
+
'parentId': value.parentId,
|
|
102
104
|
'mpiCmd': value.mpiCmd,
|
|
103
105
|
'jobRuntimes': value.jobRuntimes === undefined ? undefined : (value.jobRuntimes.map(_1.JobRuntimeToJSON)),
|
|
104
106
|
'jobWorkingDir': value.jobWorkingDir,
|
package/package.json
CHANGED
|
@@ -192,6 +192,12 @@ export interface TapisSystem {
|
|
|
192
192
|
* @memberof TapisSystem
|
|
193
193
|
*/
|
|
194
194
|
allowChildren?: boolean;
|
|
195
|
+
/**
|
|
196
|
+
* Parent system associated with this child system.
|
|
197
|
+
* @type {string}
|
|
198
|
+
* @memberof TapisSystem
|
|
199
|
+
*/
|
|
200
|
+
parentId?: string;
|
|
195
201
|
/**
|
|
196
202
|
*
|
|
197
203
|
* @type {string}
|
|
@@ -335,6 +341,7 @@ export function TapisSystemFromJSONTyped(json: any, ignoreDiscriminator: boolean
|
|
|
335
341
|
'canRunBatch': !exists(json, 'canRunBatch') ? undefined : json['canRunBatch'],
|
|
336
342
|
'enableCmdPrefix': !exists(json, 'enableCmdPrefix') ? undefined : json['enableCmdPrefix'],
|
|
337
343
|
'allowChildren': !exists(json, 'allowChildren') ? undefined : json['allowChildren'],
|
|
344
|
+
'parentId': !exists(json, 'parentId') ? undefined : json['parentId'],
|
|
338
345
|
'mpiCmd': !exists(json, 'mpiCmd') ? undefined : json['mpiCmd'],
|
|
339
346
|
'jobRuntimes': !exists(json, 'jobRuntimes') ? undefined : ((json['jobRuntimes'] as Array<any>).map(JobRuntimeFromJSON)),
|
|
340
347
|
'jobWorkingDir': !exists(json, 'jobWorkingDir') ? undefined : json['jobWorkingDir'],
|
|
@@ -388,6 +395,7 @@ export function TapisSystemToJSON(value?: TapisSystem | null): any {
|
|
|
388
395
|
'canRunBatch': value.canRunBatch,
|
|
389
396
|
'enableCmdPrefix': value.enableCmdPrefix,
|
|
390
397
|
'allowChildren': value.allowChildren,
|
|
398
|
+
'parentId': value.parentId,
|
|
391
399
|
'mpiCmd': value.mpiCmd,
|
|
392
400
|
'jobRuntimes': value.jobRuntimes === undefined ? undefined : ((value.jobRuntimes as Array<any>).map(JobRuntimeToJSON)),
|
|
393
401
|
'jobWorkingDir': value.jobWorkingDir,
|