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