@daytonaio/api-client 0.8.0 → 0.9.8
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 +10 -0
- package/README.md +2 -2
- package/api/toolbox-api.ts +628 -2
- package/dist/api/toolbox-api.d.ts +283 -3
- package/dist/api/toolbox-api.js +577 -0
- package/dist/esm/api/toolbox-api.d.ts +283 -3
- package/dist/esm/api/toolbox-api.js +577 -0
- package/dist/esm/models/completion-context.d.ts +30 -0
- package/dist/esm/models/completion-context.js +14 -0
- package/dist/esm/models/completion-item.d.ts +60 -0
- package/dist/esm/models/completion-item.js +14 -0
- package/dist/esm/models/completion-list.d.ts +31 -0
- package/dist/esm/models/completion-list.js +14 -0
- package/dist/esm/models/execute-request.d.ts +6 -0
- package/dist/esm/models/execute-response.d.ts +2 -2
- package/dist/esm/models/index.d.ts +10 -0
- package/dist/esm/models/index.js +10 -0
- package/dist/esm/models/lsp-completion-params.d.ts +50 -0
- package/dist/esm/models/lsp-completion-params.js +14 -0
- package/dist/esm/models/lsp-document-request.d.ts +36 -0
- package/dist/esm/models/lsp-document-request.js +14 -0
- package/dist/esm/models/lsp-location.d.ts +31 -0
- package/dist/esm/models/lsp-location.js +14 -0
- package/dist/esm/models/lsp-server-request.d.ts +30 -0
- package/dist/esm/models/lsp-server-request.js +14 -0
- package/dist/esm/models/lsp-symbol.d.ts +37 -0
- package/dist/esm/models/lsp-symbol.js +14 -0
- package/dist/esm/models/position.d.ts +30 -0
- package/dist/esm/models/position.js +14 -0
- package/dist/esm/models/range.d.ts +31 -0
- package/dist/esm/models/range.js +14 -0
- package/dist/esm/models/session.d.ts +1 -1
- package/dist/esm/models/workspace.d.ts +8 -8
- package/dist/models/completion-context.d.ts +30 -0
- package/dist/models/completion-context.js +15 -0
- package/dist/models/completion-item.d.ts +60 -0
- package/dist/models/completion-item.js +15 -0
- package/dist/models/completion-list.d.ts +31 -0
- package/dist/models/completion-list.js +15 -0
- package/dist/models/execute-request.d.ts +6 -0
- package/dist/models/execute-response.d.ts +2 -2
- package/dist/models/index.d.ts +10 -0
- package/dist/models/index.js +10 -0
- package/dist/models/lsp-completion-params.d.ts +50 -0
- package/dist/models/lsp-completion-params.js +15 -0
- package/dist/models/lsp-document-request.d.ts +36 -0
- package/dist/models/lsp-document-request.js +15 -0
- package/dist/models/lsp-location.d.ts +31 -0
- package/dist/models/lsp-location.js +15 -0
- package/dist/models/lsp-server-request.d.ts +30 -0
- package/dist/models/lsp-server-request.js +15 -0
- package/dist/models/lsp-symbol.d.ts +37 -0
- package/dist/models/lsp-symbol.js +15 -0
- package/dist/models/position.d.ts +30 -0
- package/dist/models/position.js +15 -0
- package/dist/models/range.d.ts +31 -0
- package/dist/models/range.js +15 -0
- package/dist/models/session.d.ts +1 -1
- package/dist/models/workspace.d.ts +8 -8
- package/models/completion-context.ts +36 -0
- package/models/completion-item.ts +66 -0
- package/models/completion-list.ts +39 -0
- package/models/execute-request.ts +6 -0
- package/models/execute-response.ts +2 -2
- package/models/index.ts +10 -0
- package/models/lsp-completion-params.ts +60 -0
- package/models/lsp-document-request.ts +42 -0
- package/models/lsp-location.ts +39 -0
- package/models/lsp-server-request.ts +36 -0
- package/models/lsp-symbol.ts +45 -0
- package/models/position.ts +36 -0
- package/models/range.ts +39 -0
- package/models/session.ts +1 -1
- package/models/workspace.ts +8 -8
- package/package.json +1 -1
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* Daytona Workspaces
|
|
5
|
+
* Daytona Workspaces API Docs
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 1.0
|
|
8
|
+
*
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
/**
|
|
18
|
+
*
|
|
19
|
+
* @export
|
|
20
|
+
* @interface CompletionItem
|
|
21
|
+
*/
|
|
22
|
+
export interface CompletionItem {
|
|
23
|
+
/**
|
|
24
|
+
*
|
|
25
|
+
* @type {string}
|
|
26
|
+
* @memberof CompletionItem
|
|
27
|
+
*/
|
|
28
|
+
'label': string;
|
|
29
|
+
/**
|
|
30
|
+
*
|
|
31
|
+
* @type {number}
|
|
32
|
+
* @memberof CompletionItem
|
|
33
|
+
*/
|
|
34
|
+
'kind'?: number;
|
|
35
|
+
/**
|
|
36
|
+
*
|
|
37
|
+
* @type {string}
|
|
38
|
+
* @memberof CompletionItem
|
|
39
|
+
*/
|
|
40
|
+
'detail'?: string;
|
|
41
|
+
/**
|
|
42
|
+
*
|
|
43
|
+
* @type {object}
|
|
44
|
+
* @memberof CompletionItem
|
|
45
|
+
*/
|
|
46
|
+
'documentation'?: object;
|
|
47
|
+
/**
|
|
48
|
+
*
|
|
49
|
+
* @type {string}
|
|
50
|
+
* @memberof CompletionItem
|
|
51
|
+
*/
|
|
52
|
+
'sortText'?: string;
|
|
53
|
+
/**
|
|
54
|
+
*
|
|
55
|
+
* @type {string}
|
|
56
|
+
* @memberof CompletionItem
|
|
57
|
+
*/
|
|
58
|
+
'filterText'?: string;
|
|
59
|
+
/**
|
|
60
|
+
*
|
|
61
|
+
* @type {string}
|
|
62
|
+
* @memberof CompletionItem
|
|
63
|
+
*/
|
|
64
|
+
'insertText'?: string;
|
|
65
|
+
}
|
|
66
|
+
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* Daytona Workspaces
|
|
5
|
+
* Daytona Workspaces API Docs
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 1.0
|
|
8
|
+
*
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
// May contain unused imports in some cases
|
|
17
|
+
// @ts-ignore
|
|
18
|
+
import type { CompletionItem } from './completion-item';
|
|
19
|
+
|
|
20
|
+
/**
|
|
21
|
+
*
|
|
22
|
+
* @export
|
|
23
|
+
* @interface CompletionList
|
|
24
|
+
*/
|
|
25
|
+
export interface CompletionList {
|
|
26
|
+
/**
|
|
27
|
+
*
|
|
28
|
+
* @type {boolean}
|
|
29
|
+
* @memberof CompletionList
|
|
30
|
+
*/
|
|
31
|
+
'isIncomplete': boolean;
|
|
32
|
+
/**
|
|
33
|
+
*
|
|
34
|
+
* @type {Array<CompletionItem>}
|
|
35
|
+
* @memberof CompletionList
|
|
36
|
+
*/
|
|
37
|
+
'items': Array<CompletionItem>;
|
|
38
|
+
}
|
|
39
|
+
|
|
@@ -26,6 +26,12 @@ export interface ExecuteRequest {
|
|
|
26
26
|
* @memberof ExecuteRequest
|
|
27
27
|
*/
|
|
28
28
|
'command': string;
|
|
29
|
+
/**
|
|
30
|
+
* Current working directory
|
|
31
|
+
* @type {string}
|
|
32
|
+
* @memberof ExecuteRequest
|
|
33
|
+
*/
|
|
34
|
+
'cwd'?: string;
|
|
29
35
|
/**
|
|
30
36
|
* Timeout in seconds, defaults to 10 seconds
|
|
31
37
|
* @type {number}
|
package/models/index.ts
CHANGED
|
@@ -1,6 +1,9 @@
|
|
|
1
1
|
export * from './api-key-list';
|
|
2
2
|
export * from './api-key-response';
|
|
3
3
|
export * from './command';
|
|
4
|
+
export * from './completion-context';
|
|
5
|
+
export * from './completion-item';
|
|
6
|
+
export * from './completion-list';
|
|
4
7
|
export * from './create-api-key';
|
|
5
8
|
export * from './create-docker-registry';
|
|
6
9
|
export * from './create-node';
|
|
@@ -20,8 +23,15 @@ export * from './git-commit-response';
|
|
|
20
23
|
export * from './git-repo-request';
|
|
21
24
|
export * from './git-status';
|
|
22
25
|
export * from './list-branch-response';
|
|
26
|
+
export * from './lsp-completion-params';
|
|
27
|
+
export * from './lsp-document-request';
|
|
28
|
+
export * from './lsp-location';
|
|
29
|
+
export * from './lsp-server-request';
|
|
30
|
+
export * from './lsp-symbol';
|
|
23
31
|
export * from './match';
|
|
32
|
+
export * from './position';
|
|
24
33
|
export * from './project-dir-response';
|
|
34
|
+
export * from './range';
|
|
25
35
|
export * from './replace-request';
|
|
26
36
|
export * from './replace-result';
|
|
27
37
|
export * from './search-files-response';
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* Daytona Workspaces
|
|
5
|
+
* Daytona Workspaces API Docs
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 1.0
|
|
8
|
+
*
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
// May contain unused imports in some cases
|
|
17
|
+
// @ts-ignore
|
|
18
|
+
import type { CompletionContext } from './completion-context';
|
|
19
|
+
// May contain unused imports in some cases
|
|
20
|
+
// @ts-ignore
|
|
21
|
+
import type { Position } from './position';
|
|
22
|
+
|
|
23
|
+
/**
|
|
24
|
+
*
|
|
25
|
+
* @export
|
|
26
|
+
* @interface LspCompletionParams
|
|
27
|
+
*/
|
|
28
|
+
export interface LspCompletionParams {
|
|
29
|
+
/**
|
|
30
|
+
* Language identifier
|
|
31
|
+
* @type {string}
|
|
32
|
+
* @memberof LspCompletionParams
|
|
33
|
+
*/
|
|
34
|
+
'languageId': string;
|
|
35
|
+
/**
|
|
36
|
+
* Path to the project
|
|
37
|
+
* @type {string}
|
|
38
|
+
* @memberof LspCompletionParams
|
|
39
|
+
*/
|
|
40
|
+
'pathToProject': string;
|
|
41
|
+
/**
|
|
42
|
+
* Document URI
|
|
43
|
+
* @type {string}
|
|
44
|
+
* @memberof LspCompletionParams
|
|
45
|
+
*/
|
|
46
|
+
'uri': string;
|
|
47
|
+
/**
|
|
48
|
+
*
|
|
49
|
+
* @type {Position}
|
|
50
|
+
* @memberof LspCompletionParams
|
|
51
|
+
*/
|
|
52
|
+
'position': Position;
|
|
53
|
+
/**
|
|
54
|
+
*
|
|
55
|
+
* @type {CompletionContext}
|
|
56
|
+
* @memberof LspCompletionParams
|
|
57
|
+
*/
|
|
58
|
+
'context'?: CompletionContext;
|
|
59
|
+
}
|
|
60
|
+
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* Daytona Workspaces
|
|
5
|
+
* Daytona Workspaces API Docs
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 1.0
|
|
8
|
+
*
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
/**
|
|
18
|
+
*
|
|
19
|
+
* @export
|
|
20
|
+
* @interface LspDocumentRequest
|
|
21
|
+
*/
|
|
22
|
+
export interface LspDocumentRequest {
|
|
23
|
+
/**
|
|
24
|
+
* Language identifier
|
|
25
|
+
* @type {string}
|
|
26
|
+
* @memberof LspDocumentRequest
|
|
27
|
+
*/
|
|
28
|
+
'languageId': string;
|
|
29
|
+
/**
|
|
30
|
+
* Path to the project
|
|
31
|
+
* @type {string}
|
|
32
|
+
* @memberof LspDocumentRequest
|
|
33
|
+
*/
|
|
34
|
+
'pathToProject': string;
|
|
35
|
+
/**
|
|
36
|
+
* Document URI
|
|
37
|
+
* @type {string}
|
|
38
|
+
* @memberof LspDocumentRequest
|
|
39
|
+
*/
|
|
40
|
+
'uri': string;
|
|
41
|
+
}
|
|
42
|
+
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* Daytona Workspaces
|
|
5
|
+
* Daytona Workspaces API Docs
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 1.0
|
|
8
|
+
*
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
// May contain unused imports in some cases
|
|
17
|
+
// @ts-ignore
|
|
18
|
+
import type { Range } from './range';
|
|
19
|
+
|
|
20
|
+
/**
|
|
21
|
+
*
|
|
22
|
+
* @export
|
|
23
|
+
* @interface LspLocation
|
|
24
|
+
*/
|
|
25
|
+
export interface LspLocation {
|
|
26
|
+
/**
|
|
27
|
+
*
|
|
28
|
+
* @type {Range}
|
|
29
|
+
* @memberof LspLocation
|
|
30
|
+
*/
|
|
31
|
+
'range': Range;
|
|
32
|
+
/**
|
|
33
|
+
*
|
|
34
|
+
* @type {string}
|
|
35
|
+
* @memberof LspLocation
|
|
36
|
+
*/
|
|
37
|
+
'uri': string;
|
|
38
|
+
}
|
|
39
|
+
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* Daytona Workspaces
|
|
5
|
+
* Daytona Workspaces API Docs
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 1.0
|
|
8
|
+
*
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
/**
|
|
18
|
+
*
|
|
19
|
+
* @export
|
|
20
|
+
* @interface LspServerRequest
|
|
21
|
+
*/
|
|
22
|
+
export interface LspServerRequest {
|
|
23
|
+
/**
|
|
24
|
+
* Language identifier
|
|
25
|
+
* @type {string}
|
|
26
|
+
* @memberof LspServerRequest
|
|
27
|
+
*/
|
|
28
|
+
'languageId': string;
|
|
29
|
+
/**
|
|
30
|
+
* Path to the project
|
|
31
|
+
* @type {string}
|
|
32
|
+
* @memberof LspServerRequest
|
|
33
|
+
*/
|
|
34
|
+
'pathToProject': string;
|
|
35
|
+
}
|
|
36
|
+
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* Daytona Workspaces
|
|
5
|
+
* Daytona Workspaces API Docs
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 1.0
|
|
8
|
+
*
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
// May contain unused imports in some cases
|
|
17
|
+
// @ts-ignore
|
|
18
|
+
import type { LspLocation } from './lsp-location';
|
|
19
|
+
|
|
20
|
+
/**
|
|
21
|
+
*
|
|
22
|
+
* @export
|
|
23
|
+
* @interface LspSymbol
|
|
24
|
+
*/
|
|
25
|
+
export interface LspSymbol {
|
|
26
|
+
/**
|
|
27
|
+
*
|
|
28
|
+
* @type {number}
|
|
29
|
+
* @memberof LspSymbol
|
|
30
|
+
*/
|
|
31
|
+
'kind': number;
|
|
32
|
+
/**
|
|
33
|
+
*
|
|
34
|
+
* @type {LspLocation}
|
|
35
|
+
* @memberof LspSymbol
|
|
36
|
+
*/
|
|
37
|
+
'location': LspLocation;
|
|
38
|
+
/**
|
|
39
|
+
*
|
|
40
|
+
* @type {string}
|
|
41
|
+
* @memberof LspSymbol
|
|
42
|
+
*/
|
|
43
|
+
'name': string;
|
|
44
|
+
}
|
|
45
|
+
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* Daytona Workspaces
|
|
5
|
+
* Daytona Workspaces API Docs
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 1.0
|
|
8
|
+
*
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
/**
|
|
18
|
+
*
|
|
19
|
+
* @export
|
|
20
|
+
* @interface Position
|
|
21
|
+
*/
|
|
22
|
+
export interface Position {
|
|
23
|
+
/**
|
|
24
|
+
*
|
|
25
|
+
* @type {number}
|
|
26
|
+
* @memberof Position
|
|
27
|
+
*/
|
|
28
|
+
'line': number;
|
|
29
|
+
/**
|
|
30
|
+
*
|
|
31
|
+
* @type {number}
|
|
32
|
+
* @memberof Position
|
|
33
|
+
*/
|
|
34
|
+
'character': number;
|
|
35
|
+
}
|
|
36
|
+
|
package/models/range.ts
ADDED
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* Daytona Workspaces
|
|
5
|
+
* Daytona Workspaces API Docs
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 1.0
|
|
8
|
+
*
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
// May contain unused imports in some cases
|
|
17
|
+
// @ts-ignore
|
|
18
|
+
import type { Position } from './position';
|
|
19
|
+
|
|
20
|
+
/**
|
|
21
|
+
*
|
|
22
|
+
* @export
|
|
23
|
+
* @interface Range
|
|
24
|
+
*/
|
|
25
|
+
export interface Range {
|
|
26
|
+
/**
|
|
27
|
+
*
|
|
28
|
+
* @type {Position}
|
|
29
|
+
* @memberof Range
|
|
30
|
+
*/
|
|
31
|
+
'start': Position;
|
|
32
|
+
/**
|
|
33
|
+
*
|
|
34
|
+
* @type {Position}
|
|
35
|
+
* @memberof Range
|
|
36
|
+
*/
|
|
37
|
+
'end': Position;
|
|
38
|
+
}
|
|
39
|
+
|
package/models/session.ts
CHANGED
package/models/workspace.ts
CHANGED
|
@@ -82,48 +82,48 @@ export interface Workspace {
|
|
|
82
82
|
* @type {number}
|
|
83
83
|
* @memberof Workspace
|
|
84
84
|
*/
|
|
85
|
-
'cpu'
|
|
85
|
+
'cpu'?: number;
|
|
86
86
|
/**
|
|
87
87
|
* The GPU quota for the workspace
|
|
88
88
|
* @type {number}
|
|
89
89
|
* @memberof Workspace
|
|
90
90
|
*/
|
|
91
|
-
'gpu'
|
|
91
|
+
'gpu'?: number;
|
|
92
92
|
/**
|
|
93
93
|
* The memory quota for the workspace
|
|
94
94
|
* @type {number}
|
|
95
95
|
* @memberof Workspace
|
|
96
96
|
*/
|
|
97
|
-
'memory'
|
|
97
|
+
'memory'?: number;
|
|
98
98
|
/**
|
|
99
99
|
* The disk quota for the workspace
|
|
100
100
|
* @type {number}
|
|
101
101
|
* @memberof Workspace
|
|
102
102
|
*/
|
|
103
|
-
'disk'
|
|
103
|
+
'disk'?: number;
|
|
104
104
|
/**
|
|
105
105
|
* The state of the workspace
|
|
106
106
|
* @type {string}
|
|
107
107
|
* @memberof Workspace
|
|
108
108
|
*/
|
|
109
|
-
'state'
|
|
109
|
+
'state'?: string;
|
|
110
110
|
/**
|
|
111
111
|
* The error reason of the workspace
|
|
112
112
|
* @type {string}
|
|
113
113
|
* @memberof Workspace
|
|
114
114
|
*/
|
|
115
|
-
'errorReason'
|
|
115
|
+
'errorReason'?: string;
|
|
116
116
|
/**
|
|
117
117
|
* The state of the snapshot
|
|
118
118
|
* @type {string}
|
|
119
119
|
* @memberof Workspace
|
|
120
120
|
*/
|
|
121
|
-
'snapshotState'
|
|
121
|
+
'snapshotState'?: string;
|
|
122
122
|
/**
|
|
123
123
|
* The creation timestamp of the last snapshot
|
|
124
124
|
* @type {string}
|
|
125
125
|
* @memberof Workspace
|
|
126
126
|
*/
|
|
127
|
-
'snapshotCreatedAt'
|
|
127
|
+
'snapshotCreatedAt'?: string;
|
|
128
128
|
}
|
|
129
129
|
|