Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion openapitools.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
},
"additionalProperties": {
"npmName": "@cirrobio/api-client",
"npmVersion": "0.12.4",
"npmVersion": "0.12.5",
"author": "CirroBio",
"stringEnums": true,
"supportsES6": true
Expand Down
2 changes: 1 addition & 1 deletion packages/api-client/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ navigate to the folder of your consuming project and run one of the following co
_published:_

```
npm install @cirrobio/[email protected].4 --save
npm install @cirrobio/[email protected].5 --save
```

_unPublished (not recommended):_
Expand Down
2 changes: 1 addition & 1 deletion packages/api-client/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@cirrobio/api-client",
"version": "0.12.4",
"version": "0.12.5",
"description": "API client for Cirro",
"author": "CirroBio",
"repository": {
Expand Down
8 changes: 8 additions & 0 deletions packages/api-client/src/models/Workspace.ts
Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,12 @@ export interface Workspace {
* @memberof Workspace
*/
sharingType: SharingType;
/**
*
* @type {number}
* @memberof Workspace
*/
autoStopTimeout?: number | null;
/**
*
* @type {Array<WorkspaceSession>}
Expand Down Expand Up @@ -176,6 +182,7 @@ export function WorkspaceFromJSONTyped(json: any, ignoreDiscriminator: boolean):
'mountedDatasets': ((json['mountedDatasets'] as Array<any>).map(MountedDatasetFromJSON)),
'computeConfig': WorkspaceComputeConfigFromJSON(json['computeConfig']),
'sharingType': SharingTypeFromJSON(json['sharingType']),
'autoStopTimeout': !exists(json, 'autoStopTimeout') ? undefined : json['autoStopTimeout'],
'sessions': !exists(json, 'sessions') ? undefined : (json['sessions'] === null ? null : (json['sessions'] as Array<any>).map(WorkspaceSessionFromJSON)),
'createdBy': json['createdBy'],
'createdAt': (new Date(json['createdAt'])),
Expand All @@ -202,6 +209,7 @@ export function WorkspaceToJSON(value?: Workspace | null): any {
'mountedDatasets': ((value.mountedDatasets as Array<any>).map(MountedDatasetToJSON)),
'computeConfig': WorkspaceComputeConfigToJSON(value.computeConfig),
'sharingType': SharingTypeToJSON(value.sharingType),
'autoStopTimeout': value.autoStopTimeout,
'sessions': value.sessions === undefined ? undefined : (value.sessions === null ? null : (value.sessions as Array<any>).map(WorkspaceSessionToJSON)),
'createdBy': value.createdBy,
'createdAt': (value.createdAt.toISOString()),
Expand Down
2 changes: 1 addition & 1 deletion packages/sdk/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@cirrobio/sdk",
"version": "0.12.3",
"version": "0.12.5",
"description": "SDK for Cirro",
"author": "CirroBio",
"repository": {
Expand Down