@cirrobio/api-client 0.0.4-alpha → 0.0.6-alpha
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/.openapi-generator/FILES +2 -0
- package/README.md +1 -1
- package/dist/apis/ProcessesApi.d.ts +6 -6
- package/dist/apis/ProcessesApi.js +6 -6
- package/dist/apis/ProjectsApi.d.ts +4 -4
- package/dist/apis/ProjectsApi.js +4 -4
- package/dist/apis/ReferencesApi.d.ts +51 -0
- package/dist/apis/ReferencesApi.js +239 -0
- package/dist/apis/SystemApi.d.ts +9 -11
- package/dist/apis/SystemApi.js +26 -37
- package/dist/apis/index.d.ts +1 -0
- package/dist/apis/index.js +1 -0
- package/dist/models/Project.d.ts +7 -0
- package/dist/models/Project.js +4 -0
- package/dist/models/ProjectDetail.d.ts +2 -2
- package/dist/models/ProjectDetail.js +3 -3
- package/dist/models/ProjectSettings.d.ts +16 -16
- package/dist/models/ProjectSettings.js +31 -17
- package/dist/models/Reference.d.ts +55 -0
- package/dist/models/Reference.js +62 -0
- package/dist/models/ServiceConnection.d.ts +6 -0
- package/dist/models/ServiceConnection.js +3 -0
- package/dist/models/index.d.ts +1 -0
- package/dist/models/index.js +1 -0
- package/package.json +1 -1
- package/src/apis/ProcessesApi.ts +6 -6
- package/src/apis/ProjectsApi.ts +4 -4
- package/src/apis/ReferencesApi.ts +149 -0
- package/src/apis/SystemApi.ts +20 -33
- package/src/apis/index.ts +1 -0
- package/src/models/Project.ts +16 -0
- package/src/models/ProjectDetail.ts +5 -5
- package/src/models/ProjectSettings.ts +47 -32
- package/src/models/Reference.ts +102 -0
- package/src/models/ServiceConnection.ts +9 -0
- package/src/models/index.ts +1 -0
package/dist/apis/index.js
CHANGED
|
@@ -24,5 +24,6 @@ __exportStar(require("./MetricsApi"), exports);
|
|
|
24
24
|
__exportStar(require("./NotebooksApi"), exports);
|
|
25
25
|
__exportStar(require("./ProcessesApi"), exports);
|
|
26
26
|
__exportStar(require("./ProjectsApi"), exports);
|
|
27
|
+
__exportStar(require("./ReferencesApi"), exports);
|
|
27
28
|
__exportStar(require("./SystemApi"), exports);
|
|
28
29
|
__exportStar(require("./UsersApi"), exports);
|
package/dist/models/Project.d.ts
CHANGED
|
@@ -9,6 +9,7 @@
|
|
|
9
9
|
* https://openapi-generator.tech
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
|
+
import type { Tag } from './Tag';
|
|
12
13
|
/**
|
|
13
14
|
*
|
|
14
15
|
* @export
|
|
@@ -39,6 +40,12 @@ export interface Project {
|
|
|
39
40
|
* @memberof Project
|
|
40
41
|
*/
|
|
41
42
|
status: string;
|
|
43
|
+
/**
|
|
44
|
+
*
|
|
45
|
+
* @type {Array<Tag>}
|
|
46
|
+
* @memberof Project
|
|
47
|
+
*/
|
|
48
|
+
tags: Array<Tag>;
|
|
42
49
|
}
|
|
43
50
|
/**
|
|
44
51
|
* Check if a given object implements the Project interface.
|
package/dist/models/Project.js
CHANGED
|
@@ -14,6 +14,7 @@
|
|
|
14
14
|
*/
|
|
15
15
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16
16
|
exports.ProjectToJSON = exports.ProjectFromJSONTyped = exports.ProjectFromJSON = exports.instanceOfProject = void 0;
|
|
17
|
+
var Tag_1 = require("./Tag");
|
|
17
18
|
/**
|
|
18
19
|
* Check if a given object implements the Project interface.
|
|
19
20
|
*/
|
|
@@ -23,6 +24,7 @@ function instanceOfProject(value) {
|
|
|
23
24
|
isInstance = isInstance && "name" in value;
|
|
24
25
|
isInstance = isInstance && "description" in value;
|
|
25
26
|
isInstance = isInstance && "status" in value;
|
|
27
|
+
isInstance = isInstance && "tags" in value;
|
|
26
28
|
return isInstance;
|
|
27
29
|
}
|
|
28
30
|
exports.instanceOfProject = instanceOfProject;
|
|
@@ -39,6 +41,7 @@ function ProjectFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
39
41
|
'name': json['name'],
|
|
40
42
|
'description': json['description'],
|
|
41
43
|
'status': json['status'],
|
|
44
|
+
'tags': (json['tags'].map(Tag_1.TagFromJSON)),
|
|
42
45
|
};
|
|
43
46
|
}
|
|
44
47
|
exports.ProjectFromJSONTyped = ProjectFromJSONTyped;
|
|
@@ -54,6 +57,7 @@ function ProjectToJSON(value) {
|
|
|
54
57
|
'name': value.name,
|
|
55
58
|
'description': value.description,
|
|
56
59
|
'status': value.status,
|
|
60
|
+
'tags': (value.tags.map(Tag_1.TagToJSON)),
|
|
57
61
|
};
|
|
58
62
|
}
|
|
59
63
|
exports.ProjectToJSON = ProjectToJSON;
|
|
@@ -26,7 +26,7 @@ function instanceOfProjectDetail(value) {
|
|
|
26
26
|
isInstance = isInstance && "name" in value;
|
|
27
27
|
isInstance = isInstance && "description" in value;
|
|
28
28
|
isInstance = isInstance && "billingAccountId" in value;
|
|
29
|
-
isInstance = isInstance && "
|
|
29
|
+
isInstance = isInstance && "contacts" in value;
|
|
30
30
|
isInstance = isInstance && "status" in value;
|
|
31
31
|
isInstance = isInstance && "settings" in value;
|
|
32
32
|
isInstance = isInstance && "statusMessage" in value;
|
|
@@ -50,7 +50,7 @@ function ProjectDetailFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
50
50
|
'name': json['name'],
|
|
51
51
|
'description': json['description'],
|
|
52
52
|
'billingAccountId': json['billingAccountId'],
|
|
53
|
-
'
|
|
53
|
+
'contacts': (json['contacts'].map(Contact_1.ContactFromJSON)),
|
|
54
54
|
'status': json['status'],
|
|
55
55
|
'settings': (0, ProjectSettings_1.ProjectSettingsFromJSON)(json['settings']),
|
|
56
56
|
'statusMessage': json['statusMessage'],
|
|
@@ -73,7 +73,7 @@ function ProjectDetailToJSON(value) {
|
|
|
73
73
|
'name': value.name,
|
|
74
74
|
'description': value.description,
|
|
75
75
|
'billingAccountId': value.billingAccountId,
|
|
76
|
-
'
|
|
76
|
+
'contacts': (value.contacts.map(Contact_1.ContactToJSON)),
|
|
77
77
|
'status': value.status,
|
|
78
78
|
'settings': (0, ProjectSettings_1.ProjectSettingsToJSON)(value.settings),
|
|
79
79
|
'statusMessage': value.statusMessage,
|
|
@@ -18,94 +18,94 @@ import type { BudgetPeriod } from './BudgetPeriod';
|
|
|
18
18
|
export interface ProjectSettings {
|
|
19
19
|
/**
|
|
20
20
|
*
|
|
21
|
-
* @type {
|
|
21
|
+
* @type {number}
|
|
22
22
|
* @memberof ProjectSettings
|
|
23
23
|
*/
|
|
24
|
-
budgetAmount
|
|
24
|
+
budgetAmount: number;
|
|
25
25
|
/**
|
|
26
26
|
*
|
|
27
27
|
* @type {BudgetPeriod}
|
|
28
28
|
* @memberof ProjectSettings
|
|
29
29
|
*/
|
|
30
|
-
budgetPeriod
|
|
30
|
+
budgetPeriod: BudgetPeriod;
|
|
31
31
|
/**
|
|
32
32
|
*
|
|
33
33
|
* @type {string}
|
|
34
34
|
* @memberof ProjectSettings
|
|
35
35
|
*/
|
|
36
|
-
dragenAmi
|
|
36
|
+
dragenAmi: string;
|
|
37
37
|
/**
|
|
38
38
|
*
|
|
39
39
|
* @type {boolean}
|
|
40
40
|
* @memberof ProjectSettings
|
|
41
41
|
*/
|
|
42
|
-
|
|
42
|
+
enableCompute: boolean;
|
|
43
43
|
/**
|
|
44
44
|
*
|
|
45
45
|
* @type {boolean}
|
|
46
46
|
* @memberof ProjectSettings
|
|
47
47
|
*/
|
|
48
|
-
|
|
48
|
+
enableDragen: boolean;
|
|
49
49
|
/**
|
|
50
50
|
*
|
|
51
51
|
* @type {boolean}
|
|
52
52
|
* @memberof ProjectSettings
|
|
53
53
|
*/
|
|
54
|
-
|
|
54
|
+
enableBackup: boolean;
|
|
55
55
|
/**
|
|
56
56
|
*
|
|
57
57
|
* @type {boolean}
|
|
58
58
|
* @memberof ProjectSettings
|
|
59
59
|
*/
|
|
60
|
-
enableSftp
|
|
60
|
+
enableSftp: boolean;
|
|
61
61
|
/**
|
|
62
62
|
*
|
|
63
63
|
* @type {number}
|
|
64
64
|
* @memberof ProjectSettings
|
|
65
65
|
*/
|
|
66
|
-
maxF1VCPU
|
|
66
|
+
maxF1VCPU: number;
|
|
67
67
|
/**
|
|
68
68
|
*
|
|
69
69
|
* @type {number}
|
|
70
70
|
* @memberof ProjectSettings
|
|
71
71
|
*/
|
|
72
|
-
maxSpotVCPU
|
|
72
|
+
maxSpotVCPU: number;
|
|
73
73
|
/**
|
|
74
74
|
*
|
|
75
75
|
* @type {number}
|
|
76
76
|
* @memberof ProjectSettings
|
|
77
77
|
*/
|
|
78
|
-
retentionPolicyDays
|
|
78
|
+
retentionPolicyDays: number;
|
|
79
79
|
/**
|
|
80
80
|
*
|
|
81
81
|
* @type {Array<string>}
|
|
82
82
|
* @memberof ProjectSettings
|
|
83
83
|
*/
|
|
84
|
-
serviceConnections
|
|
84
|
+
serviceConnections: Array<string>;
|
|
85
85
|
/**
|
|
86
86
|
*
|
|
87
87
|
* @type {boolean}
|
|
88
88
|
* @memberof ProjectSettings
|
|
89
89
|
*/
|
|
90
|
-
createVpc
|
|
90
|
+
createVpc: boolean;
|
|
91
91
|
/**
|
|
92
92
|
*
|
|
93
93
|
* @type {string}
|
|
94
94
|
* @memberof ProjectSettings
|
|
95
95
|
*/
|
|
96
|
-
vpcId
|
|
96
|
+
vpcId: string;
|
|
97
97
|
/**
|
|
98
98
|
*
|
|
99
99
|
* @type {Array<string>}
|
|
100
100
|
* @memberof ProjectSettings
|
|
101
101
|
*/
|
|
102
|
-
batchSubnets
|
|
102
|
+
batchSubnets: Array<string>;
|
|
103
103
|
/**
|
|
104
104
|
*
|
|
105
105
|
* @type {string}
|
|
106
106
|
* @memberof ProjectSettings
|
|
107
107
|
*/
|
|
108
|
-
kmsArn
|
|
108
|
+
kmsArn: string;
|
|
109
109
|
}
|
|
110
110
|
/**
|
|
111
111
|
* Check if a given object implements the ProjectSettings interface.
|
|
@@ -14,13 +14,27 @@
|
|
|
14
14
|
*/
|
|
15
15
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16
16
|
exports.ProjectSettingsToJSON = exports.ProjectSettingsFromJSONTyped = exports.ProjectSettingsFromJSON = exports.instanceOfProjectSettings = void 0;
|
|
17
|
-
var runtime_1 = require("../runtime");
|
|
18
17
|
var BudgetPeriod_1 = require("./BudgetPeriod");
|
|
19
18
|
/**
|
|
20
19
|
* Check if a given object implements the ProjectSettings interface.
|
|
21
20
|
*/
|
|
22
21
|
function instanceOfProjectSettings(value) {
|
|
23
22
|
var isInstance = true;
|
|
23
|
+
isInstance = isInstance && "budgetAmount" in value;
|
|
24
|
+
isInstance = isInstance && "budgetPeriod" in value;
|
|
25
|
+
isInstance = isInstance && "dragenAmi" in value;
|
|
26
|
+
isInstance = isInstance && "enableCompute" in value;
|
|
27
|
+
isInstance = isInstance && "enableDragen" in value;
|
|
28
|
+
isInstance = isInstance && "enableBackup" in value;
|
|
29
|
+
isInstance = isInstance && "enableSftp" in value;
|
|
30
|
+
isInstance = isInstance && "maxF1VCPU" in value;
|
|
31
|
+
isInstance = isInstance && "maxSpotVCPU" in value;
|
|
32
|
+
isInstance = isInstance && "retentionPolicyDays" in value;
|
|
33
|
+
isInstance = isInstance && "serviceConnections" in value;
|
|
34
|
+
isInstance = isInstance && "createVpc" in value;
|
|
35
|
+
isInstance = isInstance && "vpcId" in value;
|
|
36
|
+
isInstance = isInstance && "batchSubnets" in value;
|
|
37
|
+
isInstance = isInstance && "kmsArn" in value;
|
|
24
38
|
return isInstance;
|
|
25
39
|
}
|
|
26
40
|
exports.instanceOfProjectSettings = instanceOfProjectSettings;
|
|
@@ -33,21 +47,21 @@ function ProjectSettingsFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
33
47
|
return json;
|
|
34
48
|
}
|
|
35
49
|
return {
|
|
36
|
-
'budgetAmount':
|
|
37
|
-
'budgetPeriod':
|
|
38
|
-
'dragenAmi':
|
|
39
|
-
'
|
|
40
|
-
'
|
|
41
|
-
'
|
|
42
|
-
'enableSftp':
|
|
43
|
-
'maxF1VCPU':
|
|
44
|
-
'maxSpotVCPU':
|
|
45
|
-
'retentionPolicyDays':
|
|
46
|
-
'serviceConnections':
|
|
47
|
-
'createVpc':
|
|
48
|
-
'vpcId':
|
|
49
|
-
'batchSubnets':
|
|
50
|
-
'kmsArn':
|
|
50
|
+
'budgetAmount': json['budgetAmount'],
|
|
51
|
+
'budgetPeriod': (0, BudgetPeriod_1.BudgetPeriodFromJSON)(json['budgetPeriod']),
|
|
52
|
+
'dragenAmi': json['dragenAmi'],
|
|
53
|
+
'enableCompute': json['enableCompute'],
|
|
54
|
+
'enableDragen': json['enableDragen'],
|
|
55
|
+
'enableBackup': json['enableBackup'],
|
|
56
|
+
'enableSftp': json['enableSftp'],
|
|
57
|
+
'maxF1VCPU': json['maxF1VCPU'],
|
|
58
|
+
'maxSpotVCPU': json['maxSpotVCPU'],
|
|
59
|
+
'retentionPolicyDays': json['retentionPolicyDays'],
|
|
60
|
+
'serviceConnections': json['serviceConnections'],
|
|
61
|
+
'createVpc': json['createVpc'],
|
|
62
|
+
'vpcId': json['vpcId'],
|
|
63
|
+
'batchSubnets': json['batchSubnets'],
|
|
64
|
+
'kmsArn': json['kmsArn'],
|
|
51
65
|
};
|
|
52
66
|
}
|
|
53
67
|
exports.ProjectSettingsFromJSONTyped = ProjectSettingsFromJSONTyped;
|
|
@@ -62,9 +76,9 @@ function ProjectSettingsToJSON(value) {
|
|
|
62
76
|
'budgetAmount': value.budgetAmount,
|
|
63
77
|
'budgetPeriod': (0, BudgetPeriod_1.BudgetPeriodToJSON)(value.budgetPeriod),
|
|
64
78
|
'dragenAmi': value.dragenAmi,
|
|
65
|
-
'enableBackup': value.enableBackup,
|
|
66
79
|
'enableCompute': value.enableCompute,
|
|
67
80
|
'enableDragen': value.enableDragen,
|
|
81
|
+
'enableBackup': value.enableBackup,
|
|
68
82
|
'enableSftp': value.enableSftp,
|
|
69
83
|
'maxF1VCPU': value.maxF1VCPU,
|
|
70
84
|
'maxSpotVCPU': value.maxSpotVCPU,
|
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Cirro Data
|
|
3
|
+
* Cirro Data Platform service API
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: latest
|
|
6
|
+
* Contact: support@cirro.bio
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
/**
|
|
13
|
+
*
|
|
14
|
+
* @export
|
|
15
|
+
* @interface Reference
|
|
16
|
+
*/
|
|
17
|
+
export interface Reference {
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof Reference
|
|
22
|
+
*/
|
|
23
|
+
name: string;
|
|
24
|
+
/**
|
|
25
|
+
*
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof Reference
|
|
28
|
+
*/
|
|
29
|
+
referenceType: string;
|
|
30
|
+
/**
|
|
31
|
+
*
|
|
32
|
+
* @type {Array<string>}
|
|
33
|
+
* @memberof Reference
|
|
34
|
+
*/
|
|
35
|
+
files: Array<string>;
|
|
36
|
+
/**
|
|
37
|
+
*
|
|
38
|
+
* @type {string}
|
|
39
|
+
* @memberof Reference
|
|
40
|
+
*/
|
|
41
|
+
createdBy: string;
|
|
42
|
+
/**
|
|
43
|
+
*
|
|
44
|
+
* @type {Date}
|
|
45
|
+
* @memberof Reference
|
|
46
|
+
*/
|
|
47
|
+
createdAt: Date;
|
|
48
|
+
}
|
|
49
|
+
/**
|
|
50
|
+
* Check if a given object implements the Reference interface.
|
|
51
|
+
*/
|
|
52
|
+
export declare function instanceOfReference(value: object): boolean;
|
|
53
|
+
export declare function ReferenceFromJSON(json: any): Reference;
|
|
54
|
+
export declare function ReferenceFromJSONTyped(json: any, ignoreDiscriminator: boolean): Reference;
|
|
55
|
+
export declare function ReferenceToJSON(value?: Reference | null): any;
|
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* Cirro Data
|
|
6
|
+
* Cirro Data Platform service API
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: latest
|
|
9
|
+
* Contact: support@cirro.bio
|
|
10
|
+
*
|
|
11
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
|
+
* https://openapi-generator.tech
|
|
13
|
+
* Do not edit the class manually.
|
|
14
|
+
*/
|
|
15
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16
|
+
exports.ReferenceToJSON = exports.ReferenceFromJSONTyped = exports.ReferenceFromJSON = exports.instanceOfReference = void 0;
|
|
17
|
+
/**
|
|
18
|
+
* Check if a given object implements the Reference interface.
|
|
19
|
+
*/
|
|
20
|
+
function instanceOfReference(value) {
|
|
21
|
+
var isInstance = true;
|
|
22
|
+
isInstance = isInstance && "name" in value;
|
|
23
|
+
isInstance = isInstance && "referenceType" in value;
|
|
24
|
+
isInstance = isInstance && "files" in value;
|
|
25
|
+
isInstance = isInstance && "createdBy" in value;
|
|
26
|
+
isInstance = isInstance && "createdAt" in value;
|
|
27
|
+
return isInstance;
|
|
28
|
+
}
|
|
29
|
+
exports.instanceOfReference = instanceOfReference;
|
|
30
|
+
function ReferenceFromJSON(json) {
|
|
31
|
+
return ReferenceFromJSONTyped(json, false);
|
|
32
|
+
}
|
|
33
|
+
exports.ReferenceFromJSON = ReferenceFromJSON;
|
|
34
|
+
function ReferenceFromJSONTyped(json, ignoreDiscriminator) {
|
|
35
|
+
if ((json === undefined) || (json === null)) {
|
|
36
|
+
return json;
|
|
37
|
+
}
|
|
38
|
+
return {
|
|
39
|
+
'name': json['name'],
|
|
40
|
+
'referenceType': json['referenceType'],
|
|
41
|
+
'files': json['files'],
|
|
42
|
+
'createdBy': json['createdBy'],
|
|
43
|
+
'createdAt': (new Date(json['createdAt'])),
|
|
44
|
+
};
|
|
45
|
+
}
|
|
46
|
+
exports.ReferenceFromJSONTyped = ReferenceFromJSONTyped;
|
|
47
|
+
function ReferenceToJSON(value) {
|
|
48
|
+
if (value === undefined) {
|
|
49
|
+
return undefined;
|
|
50
|
+
}
|
|
51
|
+
if (value === null) {
|
|
52
|
+
return null;
|
|
53
|
+
}
|
|
54
|
+
return {
|
|
55
|
+
'name': value.name,
|
|
56
|
+
'referenceType': value.referenceType,
|
|
57
|
+
'files': value.files,
|
|
58
|
+
'createdBy': value.createdBy,
|
|
59
|
+
'createdAt': (value.createdAt.toISOString()),
|
|
60
|
+
};
|
|
61
|
+
}
|
|
62
|
+
exports.ReferenceToJSON = ReferenceToJSON;
|
|
@@ -21,6 +21,12 @@ export interface ServiceConnection {
|
|
|
21
21
|
* @memberof ServiceConnection
|
|
22
22
|
*/
|
|
23
23
|
name: string;
|
|
24
|
+
/**
|
|
25
|
+
*
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof ServiceConnection
|
|
28
|
+
*/
|
|
29
|
+
description: string;
|
|
24
30
|
}
|
|
25
31
|
/**
|
|
26
32
|
* Check if a given object implements the ServiceConnection interface.
|
|
@@ -20,6 +20,7 @@ exports.ServiceConnectionToJSON = exports.ServiceConnectionFromJSONTyped = expor
|
|
|
20
20
|
function instanceOfServiceConnection(value) {
|
|
21
21
|
var isInstance = true;
|
|
22
22
|
isInstance = isInstance && "name" in value;
|
|
23
|
+
isInstance = isInstance && "description" in value;
|
|
23
24
|
return isInstance;
|
|
24
25
|
}
|
|
25
26
|
exports.instanceOfServiceConnection = instanceOfServiceConnection;
|
|
@@ -33,6 +34,7 @@ function ServiceConnectionFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
33
34
|
}
|
|
34
35
|
return {
|
|
35
36
|
'name': json['name'],
|
|
37
|
+
'description': json['description'],
|
|
36
38
|
};
|
|
37
39
|
}
|
|
38
40
|
exports.ServiceConnectionFromJSONTyped = ServiceConnectionFromJSONTyped;
|
|
@@ -45,6 +47,7 @@ function ServiceConnectionToJSON(value) {
|
|
|
45
47
|
}
|
|
46
48
|
return {
|
|
47
49
|
'name': value.name,
|
|
50
|
+
'description': value.description,
|
|
48
51
|
};
|
|
49
52
|
}
|
|
50
53
|
exports.ServiceConnectionToJSON = ServiceConnectionToJSON;
|
package/dist/models/index.d.ts
CHANGED
|
@@ -24,6 +24,7 @@ export * from './ProjectMetrics';
|
|
|
24
24
|
export * from './ProjectRequest';
|
|
25
25
|
export * from './ProjectRole';
|
|
26
26
|
export * from './ProjectSettings';
|
|
27
|
+
export * from './Reference';
|
|
27
28
|
export * from './ReferenceType';
|
|
28
29
|
export * from './Region';
|
|
29
30
|
export * from './RegisterDatasetRequest';
|
package/dist/models/index.js
CHANGED
|
@@ -42,6 +42,7 @@ __exportStar(require("./ProjectMetrics"), exports);
|
|
|
42
42
|
__exportStar(require("./ProjectRequest"), exports);
|
|
43
43
|
__exportStar(require("./ProjectRole"), exports);
|
|
44
44
|
__exportStar(require("./ProjectSettings"), exports);
|
|
45
|
+
__exportStar(require("./Reference"), exports);
|
|
45
46
|
__exportStar(require("./ReferenceType"), exports);
|
|
46
47
|
__exportStar(require("./Region"), exports);
|
|
47
48
|
__exportStar(require("./RegisterDatasetRequest"), exports);
|
package/package.json
CHANGED
package/src/apis/ProcessesApi.ts
CHANGED
|
@@ -47,7 +47,7 @@ export class ProcessesApi extends runtime.BaseAPI {
|
|
|
47
47
|
|
|
48
48
|
/**
|
|
49
49
|
* Retrieves detailed information on a process
|
|
50
|
-
* Get
|
|
50
|
+
* Get process
|
|
51
51
|
*/
|
|
52
52
|
async getProcessRaw(requestParameters: GetProcessRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<ProcessDetail>> {
|
|
53
53
|
if (requestParameters.processId === null || requestParameters.processId === undefined) {
|
|
@@ -78,7 +78,7 @@ export class ProcessesApi extends runtime.BaseAPI {
|
|
|
78
78
|
|
|
79
79
|
/**
|
|
80
80
|
* Retrieves detailed information on a process
|
|
81
|
-
* Get
|
|
81
|
+
* Get process
|
|
82
82
|
*/
|
|
83
83
|
async getProcess(requestParameters: GetProcessRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<ProcessDetail> {
|
|
84
84
|
const response = await this.getProcessRaw(requestParameters, initOverrides);
|
|
@@ -87,7 +87,7 @@ export class ProcessesApi extends runtime.BaseAPI {
|
|
|
87
87
|
|
|
88
88
|
/**
|
|
89
89
|
* Retrieves the input parameters for a process
|
|
90
|
-
* Get
|
|
90
|
+
* Get process parameters
|
|
91
91
|
*/
|
|
92
92
|
async getProcessParametersRaw(requestParameters: GetProcessParametersRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<FormSchema>> {
|
|
93
93
|
if (requestParameters.processId === null || requestParameters.processId === undefined) {
|
|
@@ -118,7 +118,7 @@ export class ProcessesApi extends runtime.BaseAPI {
|
|
|
118
118
|
|
|
119
119
|
/**
|
|
120
120
|
* Retrieves the input parameters for a process
|
|
121
|
-
* Get
|
|
121
|
+
* Get process parameters
|
|
122
122
|
*/
|
|
123
123
|
async getProcessParameters(requestParameters: GetProcessParametersRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<FormSchema> {
|
|
124
124
|
const response = await this.getProcessParametersRaw(requestParameters, initOverrides);
|
|
@@ -127,7 +127,7 @@ export class ProcessesApi extends runtime.BaseAPI {
|
|
|
127
127
|
|
|
128
128
|
/**
|
|
129
129
|
* Retrieves a list of available processes
|
|
130
|
-
* List
|
|
130
|
+
* List processes
|
|
131
131
|
*/
|
|
132
132
|
async getProcessesRaw(requestParameters: GetProcessesRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<Array<Process>>> {
|
|
133
133
|
const queryParameters: any = {};
|
|
@@ -158,7 +158,7 @@ export class ProcessesApi extends runtime.BaseAPI {
|
|
|
158
158
|
|
|
159
159
|
/**
|
|
160
160
|
* Retrieves a list of available processes
|
|
161
|
-
* List
|
|
161
|
+
* List processes
|
|
162
162
|
*/
|
|
163
163
|
async getProcesses(requestParameters: GetProcessesRequest = {}, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<Array<Process>> {
|
|
164
164
|
const response = await this.getProcessesRaw(requestParameters, initOverrides);
|
package/src/apis/ProjectsApi.ts
CHANGED
|
@@ -111,7 +111,7 @@ export class ProjectsApi extends runtime.BaseAPI {
|
|
|
111
111
|
|
|
112
112
|
/**
|
|
113
113
|
* Get detailed project information
|
|
114
|
-
* Get
|
|
114
|
+
* Get project
|
|
115
115
|
*/
|
|
116
116
|
async getProjectRaw(requestParameters: GetProjectRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<ProjectDetail>> {
|
|
117
117
|
if (requestParameters.projectId === null || requestParameters.projectId === undefined) {
|
|
@@ -142,7 +142,7 @@ export class ProjectsApi extends runtime.BaseAPI {
|
|
|
142
142
|
|
|
143
143
|
/**
|
|
144
144
|
* Get detailed project information
|
|
145
|
-
* Get
|
|
145
|
+
* Get project
|
|
146
146
|
*/
|
|
147
147
|
async getProject(requestParameters: GetProjectRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<ProjectDetail> {
|
|
148
148
|
const response = await this.getProjectRaw(requestParameters, initOverrides);
|
|
@@ -151,7 +151,7 @@ export class ProjectsApi extends runtime.BaseAPI {
|
|
|
151
151
|
|
|
152
152
|
/**
|
|
153
153
|
* Retrieve a list of projects
|
|
154
|
-
* Get
|
|
154
|
+
* Get projects
|
|
155
155
|
*/
|
|
156
156
|
async getProjectsRaw(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<Array<Project>>> {
|
|
157
157
|
const queryParameters: any = {};
|
|
@@ -178,7 +178,7 @@ export class ProjectsApi extends runtime.BaseAPI {
|
|
|
178
178
|
|
|
179
179
|
/**
|
|
180
180
|
* Retrieve a list of projects
|
|
181
|
-
* Get
|
|
181
|
+
* Get projects
|
|
182
182
|
*/
|
|
183
183
|
async getProjects(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<Array<Project>> {
|
|
184
184
|
const response = await this.getProjectsRaw(initOverrides);
|