@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
|
@@ -25,6 +25,12 @@ export interface ServiceConnection {
|
|
|
25
25
|
* @memberof ServiceConnection
|
|
26
26
|
*/
|
|
27
27
|
name: string;
|
|
28
|
+
/**
|
|
29
|
+
*
|
|
30
|
+
* @type {string}
|
|
31
|
+
* @memberof ServiceConnection
|
|
32
|
+
*/
|
|
33
|
+
description: string;
|
|
28
34
|
}
|
|
29
35
|
|
|
30
36
|
/**
|
|
@@ -33,6 +39,7 @@ export interface ServiceConnection {
|
|
|
33
39
|
export function instanceOfServiceConnection(value: object): boolean {
|
|
34
40
|
let isInstance = true;
|
|
35
41
|
isInstance = isInstance && "name" in value;
|
|
42
|
+
isInstance = isInstance && "description" in value;
|
|
36
43
|
|
|
37
44
|
return isInstance;
|
|
38
45
|
}
|
|
@@ -48,6 +55,7 @@ export function ServiceConnectionFromJSONTyped(json: any, ignoreDiscriminator: b
|
|
|
48
55
|
return {
|
|
49
56
|
|
|
50
57
|
'name': json['name'],
|
|
58
|
+
'description': json['description'],
|
|
51
59
|
};
|
|
52
60
|
}
|
|
53
61
|
|
|
@@ -61,6 +69,7 @@ export function ServiceConnectionToJSON(value?: ServiceConnection | null): any {
|
|
|
61
69
|
return {
|
|
62
70
|
|
|
63
71
|
'name': value.name,
|
|
72
|
+
'description': value.description,
|
|
64
73
|
};
|
|
65
74
|
}
|
|
66
75
|
|
package/src/models/index.ts
CHANGED
|
@@ -26,6 +26,7 @@ export * from './ProjectMetrics';
|
|
|
26
26
|
export * from './ProjectRequest';
|
|
27
27
|
export * from './ProjectRole';
|
|
28
28
|
export * from './ProjectSettings';
|
|
29
|
+
export * from './Reference';
|
|
29
30
|
export * from './ReferenceType';
|
|
30
31
|
export * from './Region';
|
|
31
32
|
export * from './RegisterDatasetRequest';
|