@daytonaio/api-client 0.7.0 → 0.9.0
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 +16 -1
- package/README.md +2 -2
- package/api/toolbox-api.ts +1149 -104
- package/api/users-api.ts +68 -0
- package/api/workspace-api.ts +78 -0
- package/api.ts +0 -1
- package/dist/api/toolbox-api.d.ts +473 -0
- package/dist/api/toolbox-api.js +967 -1
- package/dist/api/users-api.d.ts +30 -0
- package/dist/api/users-api.js +62 -0
- package/dist/api/workspace-api.d.ts +33 -0
- package/dist/api/workspace-api.js +73 -0
- package/dist/api.d.ts +0 -1
- package/dist/api.js +0 -1
- package/dist/esm/api/toolbox-api.d.ts +473 -0
- package/dist/esm/api/toolbox-api.js +967 -1
- package/dist/esm/api/users-api.d.ts +30 -0
- package/dist/esm/api/users-api.js +62 -0
- package/dist/esm/api/workspace-api.d.ts +33 -0
- package/dist/esm/api/workspace-api.js +73 -0
- package/dist/esm/api.d.ts +0 -1
- package/dist/esm/api.js +0 -1
- package/dist/esm/models/command.d.ts +42 -0
- package/dist/esm/models/command.js +14 -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/create-session-request.d.ts +24 -0
- package/dist/esm/models/create-session-request.js +14 -0
- package/dist/esm/models/index.d.ts +16 -0
- package/dist/esm/models/index.js +16 -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-execute-request.d.ts +30 -0
- package/dist/esm/models/session-execute-request.js +14 -0
- package/dist/esm/models/session-execute-response.d.ts +36 -0
- package/dist/esm/models/session-execute-response.js +14 -0
- package/dist/esm/models/session.d.ts +31 -0
- package/dist/esm/models/session.js +14 -0
- package/dist/esm/models/usage-overview.d.ts +84 -0
- package/dist/esm/models/usage-overview.js +14 -0
- package/dist/models/command.d.ts +42 -0
- package/dist/models/command.js +15 -0
- 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/create-session-request.d.ts +24 -0
- package/dist/models/create-session-request.js +15 -0
- package/dist/models/index.d.ts +16 -0
- package/dist/models/index.js +16 -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-execute-request.d.ts +30 -0
- package/dist/models/session-execute-request.js +15 -0
- package/dist/models/session-execute-response.d.ts +36 -0
- package/dist/models/session-execute-response.js +15 -0
- package/dist/models/session.d.ts +31 -0
- package/dist/models/session.js +15 -0
- package/dist/models/usage-overview.d.ts +84 -0
- package/dist/models/usage-overview.js +15 -0
- package/models/command.ts +48 -0
- package/models/completion-context.ts +36 -0
- package/models/completion-item.ts +66 -0
- package/models/completion-list.ts +39 -0
- package/models/create-session-request.ts +30 -0
- package/models/index.ts +16 -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-execute-request.ts +36 -0
- package/models/session-execute-response.ts +42 -0
- package/models/session.ts +39 -0
- package/models/usage-overview.ts +90 -0
- package/package.json +1 -1
- package/api/app-api.ts +0 -118
- package/dist/api/app-api.d.ts +0 -65
- package/dist/api/app-api.js +0 -124
- package/dist/esm/api/app-api.d.ts +0 -65
- package/dist/esm/api/app-api.js +0 -117
|
@@ -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 SessionExecuteRequest
|
|
16
|
+
*/
|
|
17
|
+
export interface SessionExecuteRequest {
|
|
18
|
+
/**
|
|
19
|
+
* The command to execute
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof SessionExecuteRequest
|
|
22
|
+
*/
|
|
23
|
+
'command': string;
|
|
24
|
+
/**
|
|
25
|
+
* Whether to execute the command asynchronously
|
|
26
|
+
* @type {boolean}
|
|
27
|
+
* @memberof SessionExecuteRequest
|
|
28
|
+
*/
|
|
29
|
+
'async'?: boolean;
|
|
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,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 SessionExecuteResponse
|
|
16
|
+
*/
|
|
17
|
+
export interface SessionExecuteResponse {
|
|
18
|
+
/**
|
|
19
|
+
* The ID of the executed command
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof SessionExecuteResponse
|
|
22
|
+
*/
|
|
23
|
+
'cmdId'?: string;
|
|
24
|
+
/**
|
|
25
|
+
* The output of the executed command
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof SessionExecuteResponse
|
|
28
|
+
*/
|
|
29
|
+
'output'?: string;
|
|
30
|
+
/**
|
|
31
|
+
* The exit code of the executed command
|
|
32
|
+
* @type {number}
|
|
33
|
+
* @memberof SessionExecuteResponse
|
|
34
|
+
*/
|
|
35
|
+
'exitCode'?: number;
|
|
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 { Command } from './command';
|
|
13
|
+
/**
|
|
14
|
+
*
|
|
15
|
+
* @export
|
|
16
|
+
* @interface Session
|
|
17
|
+
*/
|
|
18
|
+
export interface Session {
|
|
19
|
+
/**
|
|
20
|
+
* The ID of the session
|
|
21
|
+
* @type {string}
|
|
22
|
+
* @memberof Session
|
|
23
|
+
*/
|
|
24
|
+
'sessionId': string;
|
|
25
|
+
/**
|
|
26
|
+
* The list of commands executed in this session
|
|
27
|
+
* @type {Array<Command>}
|
|
28
|
+
* @memberof Session
|
|
29
|
+
*/
|
|
30
|
+
'commands': Array<Command>;
|
|
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,84 @@
|
|
|
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 UsageOverview
|
|
16
|
+
*/
|
|
17
|
+
export interface UsageOverview {
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @type {number}
|
|
21
|
+
* @memberof UsageOverview
|
|
22
|
+
*/
|
|
23
|
+
'totalCpuQuota': number;
|
|
24
|
+
/**
|
|
25
|
+
*
|
|
26
|
+
* @type {number}
|
|
27
|
+
* @memberof UsageOverview
|
|
28
|
+
*/
|
|
29
|
+
'totalGpuQuota': number;
|
|
30
|
+
/**
|
|
31
|
+
*
|
|
32
|
+
* @type {number}
|
|
33
|
+
* @memberof UsageOverview
|
|
34
|
+
*/
|
|
35
|
+
'totalMemoryQuota': number;
|
|
36
|
+
/**
|
|
37
|
+
*
|
|
38
|
+
* @type {number}
|
|
39
|
+
* @memberof UsageOverview
|
|
40
|
+
*/
|
|
41
|
+
'totalDiskQuota': number;
|
|
42
|
+
/**
|
|
43
|
+
*
|
|
44
|
+
* @type {number}
|
|
45
|
+
* @memberof UsageOverview
|
|
46
|
+
*/
|
|
47
|
+
'totalWorkspaceQuota': number;
|
|
48
|
+
/**
|
|
49
|
+
*
|
|
50
|
+
* @type {number}
|
|
51
|
+
* @memberof UsageOverview
|
|
52
|
+
*/
|
|
53
|
+
'concurrentWorkspaceQuota': number;
|
|
54
|
+
/**
|
|
55
|
+
*
|
|
56
|
+
* @type {number}
|
|
57
|
+
* @memberof UsageOverview
|
|
58
|
+
*/
|
|
59
|
+
'currentCpuUsage': number;
|
|
60
|
+
/**
|
|
61
|
+
*
|
|
62
|
+
* @type {number}
|
|
63
|
+
* @memberof UsageOverview
|
|
64
|
+
*/
|
|
65
|
+
'currentMemoryUsage': number;
|
|
66
|
+
/**
|
|
67
|
+
*
|
|
68
|
+
* @type {number}
|
|
69
|
+
* @memberof UsageOverview
|
|
70
|
+
*/
|
|
71
|
+
'currentDiskUsage': number;
|
|
72
|
+
/**
|
|
73
|
+
*
|
|
74
|
+
* @type {number}
|
|
75
|
+
* @memberof UsageOverview
|
|
76
|
+
*/
|
|
77
|
+
'currentWorkspaces': number;
|
|
78
|
+
/**
|
|
79
|
+
*
|
|
80
|
+
* @type {number}
|
|
81
|
+
* @memberof UsageOverview
|
|
82
|
+
*/
|
|
83
|
+
'concurrentWorkspaces': number;
|
|
84
|
+
}
|
|
@@ -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,48 @@
|
|
|
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 Command
|
|
21
|
+
*/
|
|
22
|
+
export interface Command {
|
|
23
|
+
/**
|
|
24
|
+
* The ID of the command
|
|
25
|
+
* @type {string}
|
|
26
|
+
* @memberof Command
|
|
27
|
+
*/
|
|
28
|
+
'cmdId': string;
|
|
29
|
+
/**
|
|
30
|
+
* The command that was executed
|
|
31
|
+
* @type {string}
|
|
32
|
+
* @memberof Command
|
|
33
|
+
*/
|
|
34
|
+
'command': string;
|
|
35
|
+
/**
|
|
36
|
+
* The output of the command
|
|
37
|
+
* @type {string}
|
|
38
|
+
* @memberof Command
|
|
39
|
+
*/
|
|
40
|
+
'output': string;
|
|
41
|
+
/**
|
|
42
|
+
* The exit code of the command
|
|
43
|
+
* @type {number}
|
|
44
|
+
* @memberof Command
|
|
45
|
+
*/
|
|
46
|
+
'exitCode': number;
|
|
47
|
+
}
|
|
48
|
+
|
|
@@ -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
|
+
|
|
@@ -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
|
+
|
|
@@ -0,0 +1,30 @@
|
|
|
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 CreateSessionRequest
|
|
21
|
+
*/
|
|
22
|
+
export interface CreateSessionRequest {
|
|
23
|
+
/**
|
|
24
|
+
* The ID of the session
|
|
25
|
+
* @type {string}
|
|
26
|
+
* @memberof CreateSessionRequest
|
|
27
|
+
*/
|
|
28
|
+
'sessionId': string;
|
|
29
|
+
}
|
|
30
|
+
|
package/models/index.ts
CHANGED
|
@@ -1,8 +1,13 @@
|
|
|
1
1
|
export * from './api-key-list';
|
|
2
2
|
export * from './api-key-response';
|
|
3
|
+
export * from './command';
|
|
4
|
+
export * from './completion-context';
|
|
5
|
+
export * from './completion-item';
|
|
6
|
+
export * from './completion-list';
|
|
3
7
|
export * from './create-api-key';
|
|
4
8
|
export * from './create-docker-registry';
|
|
5
9
|
export * from './create-node';
|
|
10
|
+
export * from './create-session-request';
|
|
6
11
|
export * from './create-user';
|
|
7
12
|
export * from './create-workspace';
|
|
8
13
|
export * from './execute-request';
|
|
@@ -18,12 +23,23 @@ export * from './git-commit-response';
|
|
|
18
23
|
export * from './git-repo-request';
|
|
19
24
|
export * from './git-status';
|
|
20
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';
|
|
21
31
|
export * from './match';
|
|
32
|
+
export * from './position';
|
|
22
33
|
export * from './project-dir-response';
|
|
34
|
+
export * from './range';
|
|
23
35
|
export * from './replace-request';
|
|
24
36
|
export * from './replace-result';
|
|
25
37
|
export * from './search-files-response';
|
|
38
|
+
export * from './session';
|
|
39
|
+
export * from './session-execute-request';
|
|
40
|
+
export * from './session-execute-response';
|
|
26
41
|
export * from './update-docker-registry';
|
|
42
|
+
export * from './usage-overview';
|
|
27
43
|
export * from './workspace';
|
|
28
44
|
export * from './workspace-info';
|
|
29
45
|
export * from './workspace-labels';
|
|
@@ -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
|
+
|