@cirrobio/api-client 0.2.0 → 0.2.2
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 +11 -0
- package/README.md +1 -1
- package/dist/apis/DatasetsApi.d.ts +6 -6
- package/dist/apis/DatasetsApi.js +6 -6
- package/dist/apis/FileApi.d.ts +14 -0
- package/dist/apis/FileApi.js +60 -0
- package/dist/apis/GovernanceApi.d.ts +127 -1
- package/dist/apis/GovernanceApi.js +555 -1
- package/dist/apis/SharingApi.d.ts +19 -3
- package/dist/apis/SharingApi.js +63 -1
- package/dist/models/AccessType.d.ts +3 -1
- package/dist/models/AccessType.js +2 -0
- package/dist/models/ClassificationInput.d.ts +6 -0
- package/dist/models/ClassificationInput.js +3 -0
- package/dist/models/ContactInput.d.ts +55 -0
- package/dist/models/ContactInput.js +62 -0
- package/dist/models/DatasetDetail.d.ts +13 -0
- package/dist/models/DatasetDetail.js +7 -0
- package/dist/models/GovernanceClassification.d.ts +6 -0
- package/dist/models/GovernanceClassification.js +3 -0
- package/dist/models/GovernanceContact.d.ts +79 -0
- package/dist/models/GovernanceContact.js +74 -0
- package/dist/models/GovernanceExpiry.d.ts +44 -0
- package/dist/models/GovernanceExpiry.js +55 -0
- package/dist/models/GovernanceExpiryType.d.ts +25 -0
- package/dist/models/GovernanceExpiryType.js +40 -0
- package/dist/models/GovernanceFile.d.ts +50 -0
- package/dist/models/GovernanceFile.js +57 -0
- package/dist/models/GovernanceFileType.d.ts +23 -0
- package/dist/models/GovernanceFileType.js +38 -0
- package/dist/models/GovernanceRequirement.d.ts +132 -0
- package/dist/models/GovernanceRequirement.js +98 -0
- package/dist/models/GovernanceRequirementFile.d.ts +50 -0
- package/dist/models/GovernanceRequirementFile.js +57 -0
- package/dist/models/GovernanceScope.d.ts +23 -0
- package/dist/models/GovernanceScope.js +38 -0
- package/dist/models/GovernanceTrainingVerification.d.ts +23 -0
- package/dist/models/GovernanceTrainingVerification.js +38 -0
- package/dist/models/GovernanceType.d.ts +26 -0
- package/dist/models/GovernanceType.js +41 -0
- package/dist/models/RequirementInput.d.ts +102 -0
- package/dist/models/RequirementInput.js +83 -0
- package/dist/models/Share.d.ts +7 -0
- package/dist/models/Share.js +4 -0
- package/dist/models/ShareDetail.d.ts +1 -1
- package/dist/models/ShareDetail.js +3 -3
- package/dist/models/index.d.ts +11 -0
- package/dist/models/index.js +11 -0
- package/dist/runtime.js +1 -1
- package/package.json +1 -1
- package/src/apis/DatasetsApi.ts +6 -6
- package/src/apis/FileApi.ts +52 -0
- package/src/apis/GovernanceApi.ts +457 -1
- package/src/apis/SharingApi.ts +64 -6
- package/src/models/AccessType.ts +3 -1
- package/src/models/ClassificationInput.ts +9 -0
- package/src/models/ContactInput.ts +102 -0
- package/src/models/DatasetDetail.ts +23 -0
- package/src/models/GovernanceClassification.ts +9 -0
- package/src/models/GovernanceContact.ts +138 -0
- package/src/models/GovernanceExpiry.ts +88 -0
- package/src/models/GovernanceExpiryType.ts +39 -0
- package/src/models/GovernanceFile.ts +96 -0
- package/src/models/GovernanceFileType.ts +37 -0
- package/src/models/GovernanceRequirement.ts +235 -0
- package/src/models/GovernanceRequirementFile.ts +96 -0
- package/src/models/GovernanceScope.ts +37 -0
- package/src/models/GovernanceTrainingVerification.ts +37 -0
- package/src/models/GovernanceType.ts +40 -0
- package/src/models/RequirementInput.ts +190 -0
- package/src/models/Share.ts +15 -0
- package/src/models/ShareDetail.ts +4 -3
- package/src/models/index.ts +11 -0
- package/src/runtime.ts +1 -1
|
@@ -79,7 +79,7 @@ export interface ShareDetail {
|
|
|
79
79
|
* @type {Array<DatasetCondition>}
|
|
80
80
|
* @memberof ShareDetail
|
|
81
81
|
*/
|
|
82
|
-
conditions
|
|
82
|
+
conditions: Array<DatasetCondition>;
|
|
83
83
|
/**
|
|
84
84
|
*
|
|
85
85
|
* @type {Array<string>}
|
|
@@ -129,6 +129,7 @@ export function instanceOfShareDetail(value: object): boolean {
|
|
|
129
129
|
isInstance = isInstance && "originatingProject" in value;
|
|
130
130
|
isInstance = isInstance && "shareType" in value;
|
|
131
131
|
isInstance = isInstance && "sharedProjects" in value;
|
|
132
|
+
isInstance = isInstance && "conditions" in value;
|
|
132
133
|
isInstance = isInstance && "keywords" in value;
|
|
133
134
|
isInstance = isInstance && "classificationIds" in value;
|
|
134
135
|
isInstance = isInstance && "isSubscribed" in value;
|
|
@@ -155,7 +156,7 @@ export function ShareDetailFromJSONTyped(json: any, ignoreDiscriminator: boolean
|
|
|
155
156
|
'originatingProject': NamedItemFromJSON(json['originatingProject']),
|
|
156
157
|
'shareType': ShareTypeFromJSON(json['shareType']),
|
|
157
158
|
'sharedProjects': ((json['sharedProjects'] as Array<any>).map(NamedItemFromJSON)),
|
|
158
|
-
'conditions':
|
|
159
|
+
'conditions': ((json['conditions'] as Array<any>).map(DatasetConditionFromJSON)),
|
|
159
160
|
'keywords': json['keywords'],
|
|
160
161
|
'classificationIds': json['classificationIds'],
|
|
161
162
|
'isSubscribed': json['isSubscribed'],
|
|
@@ -180,7 +181,7 @@ export function ShareDetailToJSON(value?: ShareDetail | null): any {
|
|
|
180
181
|
'originatingProject': NamedItemToJSON(value.originatingProject),
|
|
181
182
|
'shareType': ShareTypeToJSON(value.shareType),
|
|
182
183
|
'sharedProjects': ((value.sharedProjects as Array<any>).map(NamedItemToJSON)),
|
|
183
|
-
'conditions':
|
|
184
|
+
'conditions': ((value.conditions as Array<any>).map(DatasetConditionToJSON)),
|
|
184
185
|
'keywords': value.keywords,
|
|
185
186
|
'classificationIds': value.classificationIds,
|
|
186
187
|
'isSubscribed': value.isSubscribed,
|
package/src/models/index.ts
CHANGED
|
@@ -22,6 +22,7 @@ export * from './ColumnDefinition';
|
|
|
22
22
|
export * from './ComputeEnvironmentConfiguration';
|
|
23
23
|
export * from './ComputeEnvironmentConfigurationInput';
|
|
24
24
|
export * from './Contact';
|
|
25
|
+
export * from './ContactInput';
|
|
25
26
|
export * from './CreateNotebookInstanceRequest';
|
|
26
27
|
export * from './CreateProjectAccessRequest';
|
|
27
28
|
export * from './CreateReferenceRequest';
|
|
@@ -49,6 +50,15 @@ export * from './FormSchema';
|
|
|
49
50
|
export * from './GenerateSftpCredentialsRequest';
|
|
50
51
|
export * from './GetExecutionLogsResponse';
|
|
51
52
|
export * from './GovernanceClassification';
|
|
53
|
+
export * from './GovernanceContact';
|
|
54
|
+
export * from './GovernanceExpiry';
|
|
55
|
+
export * from './GovernanceExpiryType';
|
|
56
|
+
export * from './GovernanceFile';
|
|
57
|
+
export * from './GovernanceFileType';
|
|
58
|
+
export * from './GovernanceRequirement';
|
|
59
|
+
export * from './GovernanceScope';
|
|
60
|
+
export * from './GovernanceTrainingVerification';
|
|
61
|
+
export * from './GovernanceType';
|
|
52
62
|
export * from './ImportDataRequest';
|
|
53
63
|
export * from './InviteUserRequest';
|
|
54
64
|
export * from './InviteUserResponse';
|
|
@@ -83,6 +93,7 @@ export * from './Reference';
|
|
|
83
93
|
export * from './ReferenceType';
|
|
84
94
|
export * from './RepositoryType';
|
|
85
95
|
export * from './RequestStatus';
|
|
96
|
+
export * from './RequirementInput';
|
|
86
97
|
export * from './ResourcesInfo';
|
|
87
98
|
export * from './RunAnalysisRequest';
|
|
88
99
|
export * from './Sample';
|
package/src/runtime.ts
CHANGED