@cirrobio/api-client 0.12.5 → 0.12.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
@@ -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 @cirrobio/api-client@0.12.5 --save
39
+ npm install @cirrobio/api-client@0.12.6 --save
40
40
  ```
41
41
 
42
42
  _unPublished (not recommended):_
@@ -104,6 +104,12 @@ export interface Workspace {
104
104
  * @memberof Workspace
105
105
  */
106
106
  startedAt?: Date | null;
107
+ /**
108
+ *
109
+ * @type {Date}
110
+ * @memberof Workspace
111
+ */
112
+ autoStopTime?: Date | null;
107
113
  /**
108
114
  *
109
115
  * @type {Date}
@@ -58,6 +58,7 @@ export function WorkspaceFromJSONTyped(json, ignoreDiscriminator) {
58
58
  'createdBy': json['createdBy'],
59
59
  'createdAt': (new Date(json['createdAt'])),
60
60
  'startedAt': !exists(json, 'startedAt') ? undefined : (json['startedAt'] === null ? null : new Date(json['startedAt'])),
61
+ 'autoStopTime': !exists(json, 'autoStopTime') ? undefined : (json['autoStopTime'] === null ? null : new Date(json['autoStopTime'])),
61
62
  'updatedAt': (new Date(json['updatedAt'])),
62
63
  };
63
64
  }
@@ -83,6 +84,7 @@ export function WorkspaceToJSON(value) {
83
84
  'createdBy': value.createdBy,
84
85
  'createdAt': (value.createdAt.toISOString()),
85
86
  'startedAt': value.startedAt === undefined ? undefined : (value.startedAt === null ? null : value.startedAt.toISOString()),
87
+ 'autoStopTime': value.autoStopTime === undefined ? undefined : (value.autoStopTime === null ? null : value.autoStopTime.toISOString()),
86
88
  'updatedAt': (value.updatedAt.toISOString()),
87
89
  };
88
90
  }
@@ -104,6 +104,12 @@ export interface Workspace {
104
104
  * @memberof Workspace
105
105
  */
106
106
  startedAt?: Date | null;
107
+ /**
108
+ *
109
+ * @type {Date}
110
+ * @memberof Workspace
111
+ */
112
+ autoStopTime?: Date | null;
107
113
  /**
108
114
  *
109
115
  * @type {Date}
@@ -63,6 +63,7 @@ function WorkspaceFromJSONTyped(json, ignoreDiscriminator) {
63
63
  'createdBy': json['createdBy'],
64
64
  'createdAt': (new Date(json['createdAt'])),
65
65
  'startedAt': !(0, runtime_1.exists)(json, 'startedAt') ? undefined : (json['startedAt'] === null ? null : new Date(json['startedAt'])),
66
+ 'autoStopTime': !(0, runtime_1.exists)(json, 'autoStopTime') ? undefined : (json['autoStopTime'] === null ? null : new Date(json['autoStopTime'])),
66
67
  'updatedAt': (new Date(json['updatedAt'])),
67
68
  };
68
69
  }
@@ -89,6 +90,7 @@ function WorkspaceToJSON(value) {
89
90
  'createdBy': value.createdBy,
90
91
  'createdAt': (value.createdAt.toISOString()),
91
92
  'startedAt': value.startedAt === undefined ? undefined : (value.startedAt === null ? null : value.startedAt.toISOString()),
93
+ 'autoStopTime': value.autoStopTime === undefined ? undefined : (value.autoStopTime === null ? null : value.autoStopTime.toISOString()),
92
94
  'updatedAt': (value.updatedAt.toISOString()),
93
95
  };
94
96
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cirrobio/api-client",
3
- "version": "0.12.5",
3
+ "version": "0.12.6",
4
4
  "description": "API client for Cirro",
5
5
  "author": "CirroBio",
6
6
  "repository": {