@cirrobio/api-client 0.12.22 → 0.12.23
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/dist/esm/models/DatasetDetail.d.ts +6 -0
- package/dist/esm/models/DatasetDetail.js +2 -0
- package/dist/esm/models/ProjectSettings.d.ts +6 -0
- package/dist/esm/models/ProjectSettings.js +2 -0
- package/dist/models/DatasetDetail.d.ts +6 -0
- package/dist/models/DatasetDetail.js +2 -0
- package/dist/models/ProjectSettings.d.ts +6 -0
- package/dist/models/ProjectSettings.js +2 -0
- package/package.json +1 -1
|
@@ -138,6 +138,12 @@ export interface DatasetDetail {
|
|
|
138
138
|
* @memberof DatasetDetail
|
|
139
139
|
*/
|
|
140
140
|
totalSizeBytes?: number | null;
|
|
141
|
+
/**
|
|
142
|
+
* Total number of dataset files
|
|
143
|
+
* @type {number}
|
|
144
|
+
* @memberof DatasetDetail
|
|
145
|
+
*/
|
|
146
|
+
fileCount?: number | null;
|
|
141
147
|
/**
|
|
142
148
|
*
|
|
143
149
|
* @type {string}
|
|
@@ -68,6 +68,7 @@ export function DatasetDetailFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
68
68
|
'share': !exists(json, 'share') ? undefined : NamedItemFromJSON(json['share']),
|
|
69
69
|
'isViewRestricted': json['isViewRestricted'],
|
|
70
70
|
'totalSizeBytes': !exists(json, 'totalSizeBytes') ? undefined : json['totalSizeBytes'],
|
|
71
|
+
'fileCount': !exists(json, 'fileCount') ? undefined : json['fileCount'],
|
|
71
72
|
'createdBy': json['createdBy'],
|
|
72
73
|
'createdAt': (new Date(json['createdAt'])),
|
|
73
74
|
'updatedAt': (new Date(json['updatedAt'])),
|
|
@@ -100,6 +101,7 @@ export function DatasetDetailToJSON(value) {
|
|
|
100
101
|
'share': NamedItemToJSON(value.share),
|
|
101
102
|
'isViewRestricted': value.isViewRestricted,
|
|
102
103
|
'totalSizeBytes': value.totalSizeBytes,
|
|
104
|
+
'fileCount': value.fileCount,
|
|
103
105
|
'createdBy': value.createdBy,
|
|
104
106
|
'createdAt': (value.createdAt.toISOString()),
|
|
105
107
|
'updatedAt': (value.updatedAt.toISOString()),
|
|
@@ -137,6 +137,12 @@ export interface ProjectSettings {
|
|
|
137
137
|
* @memberof ProjectSettings
|
|
138
138
|
*/
|
|
139
139
|
maxWorkspacesPerUser?: number;
|
|
140
|
+
/**
|
|
141
|
+
* Enables advanced GPU configuration (multi-GPU and GPU model selection) for workspaces
|
|
142
|
+
* @type {boolean}
|
|
143
|
+
* @memberof ProjectSettings
|
|
144
|
+
*/
|
|
145
|
+
enableAdvancedGpuConfig?: boolean | null;
|
|
140
146
|
/**
|
|
141
147
|
* Enables the project to be discoverable by other users
|
|
142
148
|
* @type {boolean}
|
|
@@ -50,6 +50,7 @@ export function ProjectSettingsFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
50
50
|
'maxWorkspacesVCPU': !exists(json, 'maxWorkspacesVCPU') ? undefined : json['maxWorkspacesVCPU'],
|
|
51
51
|
'maxWorkspacesGPUVCPU': !exists(json, 'maxWorkspacesGPUVCPU') ? undefined : json['maxWorkspacesGPUVCPU'],
|
|
52
52
|
'maxWorkspacesPerUser': !exists(json, 'maxWorkspacesPerUser') ? undefined : json['maxWorkspacesPerUser'],
|
|
53
|
+
'enableAdvancedGpuConfig': !exists(json, 'enableAdvancedGpuConfig') ? undefined : json['enableAdvancedGpuConfig'],
|
|
53
54
|
'isDiscoverable': !exists(json, 'isDiscoverable') ? undefined : json['isDiscoverable'],
|
|
54
55
|
'isShareable': !exists(json, 'isShareable') ? undefined : json['isShareable'],
|
|
55
56
|
'hasPipelinesEnabled': !exists(json, 'hasPipelinesEnabled') ? undefined : json['hasPipelinesEnabled'],
|
|
@@ -84,6 +85,7 @@ export function ProjectSettingsToJSON(value) {
|
|
|
84
85
|
'maxWorkspacesVCPU': value.maxWorkspacesVCPU,
|
|
85
86
|
'maxWorkspacesGPUVCPU': value.maxWorkspacesGPUVCPU,
|
|
86
87
|
'maxWorkspacesPerUser': value.maxWorkspacesPerUser,
|
|
88
|
+
'enableAdvancedGpuConfig': value.enableAdvancedGpuConfig,
|
|
87
89
|
'isDiscoverable': value.isDiscoverable,
|
|
88
90
|
'isShareable': value.isShareable,
|
|
89
91
|
'hasPipelinesEnabled': value.hasPipelinesEnabled,
|
|
@@ -138,6 +138,12 @@ export interface DatasetDetail {
|
|
|
138
138
|
* @memberof DatasetDetail
|
|
139
139
|
*/
|
|
140
140
|
totalSizeBytes?: number | null;
|
|
141
|
+
/**
|
|
142
|
+
* Total number of dataset files
|
|
143
|
+
* @type {number}
|
|
144
|
+
* @memberof DatasetDetail
|
|
145
|
+
*/
|
|
146
|
+
fileCount?: number | null;
|
|
141
147
|
/**
|
|
142
148
|
*
|
|
143
149
|
* @type {string}
|
|
@@ -73,6 +73,7 @@ function DatasetDetailFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
73
73
|
'share': !(0, runtime_1.exists)(json, 'share') ? undefined : (0, NamedItem_1.NamedItemFromJSON)(json['share']),
|
|
74
74
|
'isViewRestricted': json['isViewRestricted'],
|
|
75
75
|
'totalSizeBytes': !(0, runtime_1.exists)(json, 'totalSizeBytes') ? undefined : json['totalSizeBytes'],
|
|
76
|
+
'fileCount': !(0, runtime_1.exists)(json, 'fileCount') ? undefined : json['fileCount'],
|
|
76
77
|
'createdBy': json['createdBy'],
|
|
77
78
|
'createdAt': (new Date(json['createdAt'])),
|
|
78
79
|
'updatedAt': (new Date(json['updatedAt'])),
|
|
@@ -106,6 +107,7 @@ function DatasetDetailToJSON(value) {
|
|
|
106
107
|
'share': (0, NamedItem_1.NamedItemToJSON)(value.share),
|
|
107
108
|
'isViewRestricted': value.isViewRestricted,
|
|
108
109
|
'totalSizeBytes': value.totalSizeBytes,
|
|
110
|
+
'fileCount': value.fileCount,
|
|
109
111
|
'createdBy': value.createdBy,
|
|
110
112
|
'createdAt': (value.createdAt.toISOString()),
|
|
111
113
|
'updatedAt': (value.updatedAt.toISOString()),
|
|
@@ -137,6 +137,12 @@ export interface ProjectSettings {
|
|
|
137
137
|
* @memberof ProjectSettings
|
|
138
138
|
*/
|
|
139
139
|
maxWorkspacesPerUser?: number;
|
|
140
|
+
/**
|
|
141
|
+
* Enables advanced GPU configuration (multi-GPU and GPU model selection) for workspaces
|
|
142
|
+
* @type {boolean}
|
|
143
|
+
* @memberof ProjectSettings
|
|
144
|
+
*/
|
|
145
|
+
enableAdvancedGpuConfig?: boolean | null;
|
|
140
146
|
/**
|
|
141
147
|
* Enables the project to be discoverable by other users
|
|
142
148
|
* @type {boolean}
|
|
@@ -55,6 +55,7 @@ function ProjectSettingsFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
55
55
|
'maxWorkspacesVCPU': !(0, runtime_1.exists)(json, 'maxWorkspacesVCPU') ? undefined : json['maxWorkspacesVCPU'],
|
|
56
56
|
'maxWorkspacesGPUVCPU': !(0, runtime_1.exists)(json, 'maxWorkspacesGPUVCPU') ? undefined : json['maxWorkspacesGPUVCPU'],
|
|
57
57
|
'maxWorkspacesPerUser': !(0, runtime_1.exists)(json, 'maxWorkspacesPerUser') ? undefined : json['maxWorkspacesPerUser'],
|
|
58
|
+
'enableAdvancedGpuConfig': !(0, runtime_1.exists)(json, 'enableAdvancedGpuConfig') ? undefined : json['enableAdvancedGpuConfig'],
|
|
58
59
|
'isDiscoverable': !(0, runtime_1.exists)(json, 'isDiscoverable') ? undefined : json['isDiscoverable'],
|
|
59
60
|
'isShareable': !(0, runtime_1.exists)(json, 'isShareable') ? undefined : json['isShareable'],
|
|
60
61
|
'hasPipelinesEnabled': !(0, runtime_1.exists)(json, 'hasPipelinesEnabled') ? undefined : json['hasPipelinesEnabled'],
|
|
@@ -90,6 +91,7 @@ function ProjectSettingsToJSON(value) {
|
|
|
90
91
|
'maxWorkspacesVCPU': value.maxWorkspacesVCPU,
|
|
91
92
|
'maxWorkspacesGPUVCPU': value.maxWorkspacesGPUVCPU,
|
|
92
93
|
'maxWorkspacesPerUser': value.maxWorkspacesPerUser,
|
|
94
|
+
'enableAdvancedGpuConfig': value.enableAdvancedGpuConfig,
|
|
93
95
|
'isDiscoverable': value.isDiscoverable,
|
|
94
96
|
'isShareable': value.isShareable,
|
|
95
97
|
'hasPipelinesEnabled': value.hasPipelinesEnabled,
|