@daytonaio/toolbox-api-client 0.193.0 → 0.194.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/package.json +1 -1
- package/src/api/file-system-api.d.ts +12 -8
- package/src/api/file-system-api.js +18 -11
- package/src/api/file-system-api.js.map +1 -1
- package/src/api/git-api.d.ts +323 -17
- package/src/api/git-api.js +593 -8
- package/src/api/git-api.js.map +1 -1
- package/src/api/system-api.d.ts +63 -0
- package/src/api/system-api.js +111 -0
- package/src/api/system-api.js.map +1 -0
- package/src/api.d.ts +1 -0
- package/src/api.js +1 -0
- package/src/api.js.map +1 -1
- package/src/models/file-info.d.ts +4 -0
- package/src/models/git-add-remote-request.d.ts +24 -0
- package/src/models/git-add-remote-request.js +16 -0
- package/src/models/git-add-remote-request.js.map +1 -0
- package/src/models/git-authenticate-request.d.ts +23 -0
- package/src/models/git-authenticate-request.js +16 -0
- package/src/models/git-authenticate-request.js.map +1 -0
- package/src/models/git-clone-request.d.ts +4 -0
- package/src/models/git-config-response.d.ts +17 -0
- package/src/models/git-config-response.js +16 -0
- package/src/models/git-config-response.js.map +1 -0
- package/src/models/git-configure-user-request.d.ts +23 -0
- package/src/models/git-configure-user-request.js +16 -0
- package/src/models/git-configure-user-request.js.map +1 -0
- package/src/models/git-init-request.d.ts +22 -0
- package/src/models/{git-repo-request.js → git-init-request.js} +1 -1
- package/src/models/git-init-request.js.map +1 -0
- package/src/models/git-pull-request.d.ts +24 -0
- package/src/models/git-pull-request.js +16 -0
- package/src/models/git-pull-request.js.map +1 -0
- package/src/models/git-push-request.d.ts +28 -0
- package/src/models/git-push-request.js +16 -0
- package/src/models/git-push-request.js.map +1 -0
- package/src/models/{git-repo-request.d.ts → git-remote.d.ts} +3 -4
- package/src/models/git-remote.js +16 -0
- package/src/models/git-remote.js.map +1 -0
- package/src/models/git-reset-request.d.ts +26 -0
- package/src/models/git-reset-request.js +16 -0
- package/src/models/git-reset-request.js.map +1 -0
- package/src/models/git-restore-request.d.ts +27 -0
- package/src/models/git-restore-request.js +16 -0
- package/src/models/git-restore-request.js.map +1 -0
- package/src/models/git-set-config-request.d.ts +23 -0
- package/src/models/git-set-config-request.js +16 -0
- package/src/models/git-set-config-request.js.map +1 -0
- package/src/models/git-status.d.ts +8 -0
- package/src/models/index.d.ts +13 -1
- package/src/models/index.js +13 -1
- package/src/models/index.js.map +1 -1
- package/src/models/list-branch-response.d.ts +4 -0
- package/src/models/list-remotes-response.d.ts +15 -0
- package/src/models/list-remotes-response.js +16 -0
- package/src/models/list-remotes-response.js.map +1 -0
- package/src/models/system-metrics.d.ts +23 -0
- package/src/models/system-metrics.js +16 -0
- package/src/models/system-metrics.js.map +1 -0
- package/src/models/git-repo-request.js.map +0 -1
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Daytona Toolbox API
|
|
3
|
+
* Daytona Toolbox API. The base URL comes from the sandbox\'s `toolboxProxyUrl` field (returned in sandbox DTO by the main Daytona API) plus the sandbox ID: `{toolboxProxyUrl}/{sandboxId}/{endpoint}`. Default for Daytona Cloud: `https://proxy.app.daytona.io/toolbox/{sandboxId}`.
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: v0.0.0-dev
|
|
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
|
+
export interface GitPushRequest {
|
|
13
|
+
/**
|
|
14
|
+
* Branch to push (defaults to the current branch).
|
|
15
|
+
*/
|
|
16
|
+
'branch'?: string;
|
|
17
|
+
'password'?: string;
|
|
18
|
+
'path': string;
|
|
19
|
+
/**
|
|
20
|
+
* Remote to push to (defaults to \"origin\").
|
|
21
|
+
*/
|
|
22
|
+
'remote'?: string;
|
|
23
|
+
/**
|
|
24
|
+
* SetUpstream records the pushed branch as the upstream tracking branch.
|
|
25
|
+
*/
|
|
26
|
+
'set_upstream'?: boolean;
|
|
27
|
+
'username'?: string;
|
|
28
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* Daytona Toolbox API
|
|
6
|
+
* Daytona Toolbox API. The base URL comes from the sandbox\'s `toolboxProxyUrl` field (returned in sandbox DTO by the main Daytona API) plus the sandbox ID: `{toolboxProxyUrl}/{sandboxId}/{endpoint}`. Default for Daytona Cloud: `https://proxy.app.daytona.io/toolbox/{sandboxId}`.
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: v0.0.0-dev
|
|
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 });
|
|
16
|
+
//# sourceMappingURL=git-push-request.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"git-push-request.js","sourceRoot":"","sources":["../../../../toolbox-api-client/src/models/git-push-request.ts"],"names":[],"mappings":";AAAA,oBAAoB;AACpB,oBAAoB;AACpB;;;;;;;;;;GAUG"}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* Daytona Toolbox API
|
|
6
|
+
* Daytona Toolbox API. The base URL comes from the sandbox\'s `toolboxProxyUrl` field (returned in sandbox DTO by the main Daytona API) plus the sandbox ID: `{toolboxProxyUrl}/{sandboxId}/{endpoint}`. Default for Daytona Cloud: `https://proxy.app.daytona.io/toolbox/{sandboxId}`.
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: v0.0.0-dev
|
|
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 });
|
|
16
|
+
//# sourceMappingURL=git-remote.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"git-remote.js","sourceRoot":"","sources":["../../../../toolbox-api-client/src/models/git-remote.ts"],"names":[],"mappings":";AAAA,oBAAoB;AACpB,oBAAoB;AACpB;;;;;;;;;;GAUG"}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Daytona Toolbox API
|
|
3
|
+
* Daytona Toolbox API. The base URL comes from the sandbox\'s `toolboxProxyUrl` field (returned in sandbox DTO by the main Daytona API) plus the sandbox ID: `{toolboxProxyUrl}/{sandboxId}/{endpoint}`. Default for Daytona Cloud: `https://proxy.app.daytona.io/toolbox/{sandboxId}`.
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: v0.0.0-dev
|
|
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
|
+
export interface GitResetRequest {
|
|
13
|
+
/**
|
|
14
|
+
* Files constrains the reset to the given paths.
|
|
15
|
+
*/
|
|
16
|
+
'files'?: Array<string>;
|
|
17
|
+
/**
|
|
18
|
+
* Mode is one of soft, mixed (default), hard, merge or keep.
|
|
19
|
+
*/
|
|
20
|
+
'mode'?: string;
|
|
21
|
+
'path': string;
|
|
22
|
+
/**
|
|
23
|
+
* Target is the revision to reset to (defaults to HEAD).
|
|
24
|
+
*/
|
|
25
|
+
'target'?: string;
|
|
26
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* Daytona Toolbox API
|
|
6
|
+
* Daytona Toolbox API. The base URL comes from the sandbox\'s `toolboxProxyUrl` field (returned in sandbox DTO by the main Daytona API) plus the sandbox ID: `{toolboxProxyUrl}/{sandboxId}/{endpoint}`. Default for Daytona Cloud: `https://proxy.app.daytona.io/toolbox/{sandboxId}`.
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: v0.0.0-dev
|
|
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 });
|
|
16
|
+
//# sourceMappingURL=git-reset-request.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"git-reset-request.js","sourceRoot":"","sources":["../../../../toolbox-api-client/src/models/git-reset-request.ts"],"names":[],"mappings":";AAAA,oBAAoB;AACpB,oBAAoB;AACpB;;;;;;;;;;GAUG"}
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Daytona Toolbox API
|
|
3
|
+
* Daytona Toolbox API. The base URL comes from the sandbox\'s `toolboxProxyUrl` field (returned in sandbox DTO by the main Daytona API) plus the sandbox ID: `{toolboxProxyUrl}/{sandboxId}/{endpoint}`. Default for Daytona Cloud: `https://proxy.app.daytona.io/toolbox/{sandboxId}`.
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: v0.0.0-dev
|
|
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
|
+
export interface GitRestoreRequest {
|
|
13
|
+
'files': Array<string>;
|
|
14
|
+
'path': string;
|
|
15
|
+
/**
|
|
16
|
+
* Source restores file contents from the given revision instead of the index.
|
|
17
|
+
*/
|
|
18
|
+
'source'?: string;
|
|
19
|
+
/**
|
|
20
|
+
* Staged restores the staging index for the given files.
|
|
21
|
+
*/
|
|
22
|
+
'staged'?: boolean;
|
|
23
|
+
/**
|
|
24
|
+
* Worktree restores the working tree for the given files.
|
|
25
|
+
*/
|
|
26
|
+
'worktree'?: boolean;
|
|
27
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* Daytona Toolbox API
|
|
6
|
+
* Daytona Toolbox API. The base URL comes from the sandbox\'s `toolboxProxyUrl` field (returned in sandbox DTO by the main Daytona API) plus the sandbox ID: `{toolboxProxyUrl}/{sandboxId}/{endpoint}`. Default for Daytona Cloud: `https://proxy.app.daytona.io/toolbox/{sandboxId}`.
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: v0.0.0-dev
|
|
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 });
|
|
16
|
+
//# sourceMappingURL=git-restore-request.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"git-restore-request.js","sourceRoot":"","sources":["../../../../toolbox-api-client/src/models/git-restore-request.ts"],"names":[],"mappings":";AAAA,oBAAoB;AACpB,oBAAoB;AACpB;;;;;;;;;;GAUG"}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Daytona Toolbox API
|
|
3
|
+
* Daytona Toolbox API. The base URL comes from the sandbox\'s `toolboxProxyUrl` field (returned in sandbox DTO by the main Daytona API) plus the sandbox ID: `{toolboxProxyUrl}/{sandboxId}/{endpoint}`. Default for Daytona Cloud: `https://proxy.app.daytona.io/toolbox/{sandboxId}`.
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: v0.0.0-dev
|
|
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
|
+
export interface GitSetConfigRequest {
|
|
13
|
+
'key': string;
|
|
14
|
+
/**
|
|
15
|
+
* Path is the repository path, required when scope is \"local\".
|
|
16
|
+
*/
|
|
17
|
+
'path'?: string;
|
|
18
|
+
/**
|
|
19
|
+
* Scope is one of global (default), local or system.
|
|
20
|
+
*/
|
|
21
|
+
'scope'?: string;
|
|
22
|
+
'value': string;
|
|
23
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* Daytona Toolbox API
|
|
6
|
+
* Daytona Toolbox API. The base URL comes from the sandbox\'s `toolboxProxyUrl` field (returned in sandbox DTO by the main Daytona API) plus the sandbox ID: `{toolboxProxyUrl}/{sandboxId}/{endpoint}`. Default for Daytona Cloud: `https://proxy.app.daytona.io/toolbox/{sandboxId}`.
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: v0.0.0-dev
|
|
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 });
|
|
16
|
+
//# sourceMappingURL=git-set-config-request.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"git-set-config-request.js","sourceRoot":"","sources":["../../../../toolbox-api-client/src/models/git-set-config-request.ts"],"names":[],"mappings":";AAAA,oBAAoB;AACpB,oBAAoB;AACpB;;;;;;;;;;GAUG"}
|
|
@@ -15,5 +15,13 @@ export interface GitStatus {
|
|
|
15
15
|
'behind'?: number;
|
|
16
16
|
'branchPublished'?: boolean;
|
|
17
17
|
'currentBranch': string;
|
|
18
|
+
/**
|
|
19
|
+
* Detached is true when HEAD is not on a branch (detached HEAD state).
|
|
20
|
+
*/
|
|
21
|
+
'detached'?: boolean;
|
|
18
22
|
'fileStatus': Array<FileStatus>;
|
|
23
|
+
/**
|
|
24
|
+
* Upstream is the upstream tracking branch (e.g. \"origin/main\"), empty when unset.
|
|
25
|
+
*/
|
|
26
|
+
'upstream'?: string;
|
|
19
27
|
}
|
package/src/models/index.d.ts
CHANGED
|
@@ -27,15 +27,25 @@ export * from './file-info';
|
|
|
27
27
|
export * from './file-status';
|
|
28
28
|
export * from './files-download-request';
|
|
29
29
|
export * from './find-accessibility-nodes-request';
|
|
30
|
+
export * from './git-add-remote-request';
|
|
30
31
|
export * from './git-add-request';
|
|
32
|
+
export * from './git-authenticate-request';
|
|
31
33
|
export * from './git-branch-request';
|
|
32
34
|
export * from './git-checkout-request';
|
|
33
35
|
export * from './git-clone-request';
|
|
34
36
|
export * from './git-commit-info';
|
|
35
37
|
export * from './git-commit-request';
|
|
36
38
|
export * from './git-commit-response';
|
|
39
|
+
export * from './git-config-response';
|
|
40
|
+
export * from './git-configure-user-request';
|
|
37
41
|
export * from './git-delete-branch-request';
|
|
38
|
-
export * from './git-
|
|
42
|
+
export * from './git-init-request';
|
|
43
|
+
export * from './git-pull-request';
|
|
44
|
+
export * from './git-push-request';
|
|
45
|
+
export * from './git-remote';
|
|
46
|
+
export * from './git-reset-request';
|
|
47
|
+
export * from './git-restore-request';
|
|
48
|
+
export * from './git-set-config-request';
|
|
39
49
|
export * from './git-status';
|
|
40
50
|
export * from './initialize-request';
|
|
41
51
|
export * from './interpreter-context';
|
|
@@ -46,6 +56,7 @@ export * from './keyboard-type-request';
|
|
|
46
56
|
export * from './list-branch-response';
|
|
47
57
|
export * from './list-contexts-response';
|
|
48
58
|
export * from './list-recordings-response';
|
|
59
|
+
export * from './list-remotes-response';
|
|
49
60
|
export * from './lsp-completion-params';
|
|
50
61
|
export * from './lsp-document-request';
|
|
51
62
|
export * from './lsp-location';
|
|
@@ -87,6 +98,7 @@ export * from './session-send-input-request';
|
|
|
87
98
|
export * from './start-recording-request';
|
|
88
99
|
export * from './status';
|
|
89
100
|
export * from './stop-recording-request';
|
|
101
|
+
export * from './system-metrics';
|
|
90
102
|
export * from './user-home-dir-response';
|
|
91
103
|
export * from './window-info';
|
|
92
104
|
export * from './windows-response';
|
package/src/models/index.js
CHANGED
|
@@ -43,15 +43,25 @@ __exportStar(require("./file-info"), exports);
|
|
|
43
43
|
__exportStar(require("./file-status"), exports);
|
|
44
44
|
__exportStar(require("./files-download-request"), exports);
|
|
45
45
|
__exportStar(require("./find-accessibility-nodes-request"), exports);
|
|
46
|
+
__exportStar(require("./git-add-remote-request"), exports);
|
|
46
47
|
__exportStar(require("./git-add-request"), exports);
|
|
48
|
+
__exportStar(require("./git-authenticate-request"), exports);
|
|
47
49
|
__exportStar(require("./git-branch-request"), exports);
|
|
48
50
|
__exportStar(require("./git-checkout-request"), exports);
|
|
49
51
|
__exportStar(require("./git-clone-request"), exports);
|
|
50
52
|
__exportStar(require("./git-commit-info"), exports);
|
|
51
53
|
__exportStar(require("./git-commit-request"), exports);
|
|
52
54
|
__exportStar(require("./git-commit-response"), exports);
|
|
55
|
+
__exportStar(require("./git-config-response"), exports);
|
|
56
|
+
__exportStar(require("./git-configure-user-request"), exports);
|
|
53
57
|
__exportStar(require("./git-delete-branch-request"), exports);
|
|
54
|
-
__exportStar(require("./git-
|
|
58
|
+
__exportStar(require("./git-init-request"), exports);
|
|
59
|
+
__exportStar(require("./git-pull-request"), exports);
|
|
60
|
+
__exportStar(require("./git-push-request"), exports);
|
|
61
|
+
__exportStar(require("./git-remote"), exports);
|
|
62
|
+
__exportStar(require("./git-reset-request"), exports);
|
|
63
|
+
__exportStar(require("./git-restore-request"), exports);
|
|
64
|
+
__exportStar(require("./git-set-config-request"), exports);
|
|
55
65
|
__exportStar(require("./git-status"), exports);
|
|
56
66
|
__exportStar(require("./initialize-request"), exports);
|
|
57
67
|
__exportStar(require("./interpreter-context"), exports);
|
|
@@ -62,6 +72,7 @@ __exportStar(require("./keyboard-type-request"), exports);
|
|
|
62
72
|
__exportStar(require("./list-branch-response"), exports);
|
|
63
73
|
__exportStar(require("./list-contexts-response"), exports);
|
|
64
74
|
__exportStar(require("./list-recordings-response"), exports);
|
|
75
|
+
__exportStar(require("./list-remotes-response"), exports);
|
|
65
76
|
__exportStar(require("./lsp-completion-params"), exports);
|
|
66
77
|
__exportStar(require("./lsp-document-request"), exports);
|
|
67
78
|
__exportStar(require("./lsp-location"), exports);
|
|
@@ -103,6 +114,7 @@ __exportStar(require("./session-send-input-request"), exports);
|
|
|
103
114
|
__exportStar(require("./start-recording-request"), exports);
|
|
104
115
|
__exportStar(require("./status"), exports);
|
|
105
116
|
__exportStar(require("./stop-recording-request"), exports);
|
|
117
|
+
__exportStar(require("./system-metrics"), exports);
|
|
106
118
|
__exportStar(require("./user-home-dir-response"), exports);
|
|
107
119
|
__exportStar(require("./window-info"), exports);
|
|
108
120
|
__exportStar(require("./windows-response"), exports);
|
package/src/models/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../toolbox-api-client/src/models/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,yDAAuC;AACvC,iEAA+C;AAC/C,+DAA6C;AAC7C,iEAA+C;AAC/C,oEAAkD;AAClD,gEAA8C;AAC9C,0CAAwB;AACxB,kDAAgC;AAChC,uDAAqC;AACrC,qDAAmC;AACnC,sDAAoC;AACpC,4CAA0B;AAC1B,uDAAqC;AACrC,oDAAkC;AAClC,oDAAkC;AAClC,oEAAkD;AAClD,gEAA8C;AAC9C,iEAA+C;AAC/C,+DAA6C;AAC7C,2DAAyC;AACzC,2DAAyC;AACzC,iDAA+B;AAC/B,0DAAwC;AACxC,oDAAkC;AAClC,qDAAmC;AACnC,8CAA4B;AAC5B,gDAA8B;AAC9B,2DAAyC;AACzC,qEAAmD;AACnD,oDAAkC;AAClC,uDAAqC;AACrC,yDAAuC;AACvC,sDAAoC;AACpC,oDAAkC;AAClC,uDAAqC;AACrC,wDAAsC;AACtC,8DAA4C;AAC5C,qDAAmC;AACnC,+CAA6B;AAC7B,uDAAqC;AACrC,wDAAsC;AACtC,4DAA0C;AAC1C,4DAA0C;AAC1C,2DAAyC;AACzC,0DAAwC;AACxC,yDAAuC;AACvC,2DAAyC;AACzC,6DAA2C;AAC3C,0DAAwC;AACxC,yDAAuC;AACvC,iDAA+B;AAC/B,iDAA+B;AAC/B,8CAA4B;AAC5B,uDAAqC;AACrC,+CAA6B;AAC7B,0CAAwB;AACxB,wDAAsC;AACtC,yDAAuC;AACvC,uDAAqC;AACrC,wDAAsC;AACtC,uDAAqC;AACrC,4DAA0C;AAC1C,yDAAuC;AACvC,8CAA4B;AAC5B,6CAA2B;AAC3B,4DAA0C;AAC1C,0DAAwC;AACxC,6DAA2C;AAC3C,mDAAiC;AACjC,4DAA0C;AAC1C,uDAAqC;AACrC,wDAAsC;AACtC,sDAAoC;AACpC,uDAAqC;AACrC,qDAAmC;AACnC,8CAA4B;AAC5B,oDAAkC;AAClC,mDAAiC;AACjC,wDAAsC;AACtC,oDAAkC;AAClC,0DAAwC;AACxC,4CAA0B;AAC1B,kEAAgD;AAChD,4DAA0C;AAC1C,6DAA2C;AAC3C,+DAA6C;AAC7C,4DAA0C;AAC1C,2CAAyB;AACzB,2DAAyC;AACzC,2DAAyC;AACzC,gDAA8B;AAC9B,qDAAmC;AACnC,sDAAoC"}
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../toolbox-api-client/src/models/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,yDAAuC;AACvC,iEAA+C;AAC/C,+DAA6C;AAC7C,iEAA+C;AAC/C,oEAAkD;AAClD,gEAA8C;AAC9C,0CAAwB;AACxB,kDAAgC;AAChC,uDAAqC;AACrC,qDAAmC;AACnC,sDAAoC;AACpC,4CAA0B;AAC1B,uDAAqC;AACrC,oDAAkC;AAClC,oDAAkC;AAClC,oEAAkD;AAClD,gEAA8C;AAC9C,iEAA+C;AAC/C,+DAA6C;AAC7C,2DAAyC;AACzC,2DAAyC;AACzC,iDAA+B;AAC/B,0DAAwC;AACxC,oDAAkC;AAClC,qDAAmC;AACnC,8CAA4B;AAC5B,gDAA8B;AAC9B,2DAAyC;AACzC,qEAAmD;AACnD,2DAAyC;AACzC,oDAAkC;AAClC,6DAA2C;AAC3C,uDAAqC;AACrC,yDAAuC;AACvC,sDAAoC;AACpC,oDAAkC;AAClC,uDAAqC;AACrC,wDAAsC;AACtC,wDAAsC;AACtC,+DAA6C;AAC7C,8DAA4C;AAC5C,qDAAmC;AACnC,qDAAmC;AACnC,qDAAmC;AACnC,+CAA6B;AAC7B,sDAAoC;AACpC,wDAAsC;AACtC,2DAAyC;AACzC,+CAA6B;AAC7B,uDAAqC;AACrC,wDAAsC;AACtC,4DAA0C;AAC1C,4DAA0C;AAC1C,2DAAyC;AACzC,0DAAwC;AACxC,yDAAuC;AACvC,2DAAyC;AACzC,6DAA2C;AAC3C,0DAAwC;AACxC,0DAAwC;AACxC,yDAAuC;AACvC,iDAA+B;AAC/B,iDAA+B;AAC/B,8CAA4B;AAC5B,uDAAqC;AACrC,+CAA6B;AAC7B,0CAAwB;AACxB,wDAAsC;AACtC,yDAAuC;AACvC,uDAAqC;AACrC,wDAAsC;AACtC,uDAAqC;AACrC,4DAA0C;AAC1C,yDAAuC;AACvC,8CAA4B;AAC5B,6CAA2B;AAC3B,4DAA0C;AAC1C,0DAAwC;AACxC,6DAA2C;AAC3C,mDAAiC;AACjC,4DAA0C;AAC1C,uDAAqC;AACrC,wDAAsC;AACtC,sDAAoC;AACpC,uDAAqC;AACrC,qDAAmC;AACnC,8CAA4B;AAC5B,oDAAkC;AAClC,mDAAiC;AACjC,wDAAsC;AACtC,oDAAkC;AAClC,0DAAwC;AACxC,4CAA0B;AAC1B,kEAAgD;AAChD,4DAA0C;AAC1C,6DAA2C;AAC3C,+DAA6C;AAC7C,4DAA0C;AAC1C,2CAAyB;AACzB,2DAAyC;AACzC,mDAAiC;AACjC,2DAAyC;AACzC,gDAA8B;AAC9B,qDAAmC;AACnC,sDAAoC"}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Daytona Toolbox API
|
|
3
|
+
* Daytona Toolbox API. The base URL comes from the sandbox\'s `toolboxProxyUrl` field (returned in sandbox DTO by the main Daytona API) plus the sandbox ID: `{toolboxProxyUrl}/{sandboxId}/{endpoint}`. Default for Daytona Cloud: `https://proxy.app.daytona.io/toolbox/{sandboxId}`.
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: v0.0.0-dev
|
|
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 { GitRemote } from './git-remote';
|
|
13
|
+
export interface ListRemotesResponse {
|
|
14
|
+
'remotes': Array<GitRemote>;
|
|
15
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* Daytona Toolbox API
|
|
6
|
+
* Daytona Toolbox API. The base URL comes from the sandbox\'s `toolboxProxyUrl` field (returned in sandbox DTO by the main Daytona API) plus the sandbox ID: `{toolboxProxyUrl}/{sandboxId}/{endpoint}`. Default for Daytona Cloud: `https://proxy.app.daytona.io/toolbox/{sandboxId}`.
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: v0.0.0-dev
|
|
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 });
|
|
16
|
+
//# sourceMappingURL=list-remotes-response.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"list-remotes-response.js","sourceRoot":"","sources":["../../../../toolbox-api-client/src/models/list-remotes-response.ts"],"names":[],"mappings":";AAAA,oBAAoB;AACpB,oBAAoB;AACpB;;;;;;;;;;GAUG"}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Daytona Toolbox API
|
|
3
|
+
* Daytona Toolbox API. The base URL comes from the sandbox\'s `toolboxProxyUrl` field (returned in sandbox DTO by the main Daytona API) plus the sandbox ID: `{toolboxProxyUrl}/{sandboxId}/{endpoint}`. Default for Daytona Cloud: `https://proxy.app.daytona.io/toolbox/{sandboxId}`.
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: v0.0.0-dev
|
|
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
|
+
export interface SystemMetrics {
|
|
13
|
+
'cpuCount'?: number;
|
|
14
|
+
'cpuUsedPct'?: number;
|
|
15
|
+
'diskFree'?: number;
|
|
16
|
+
'diskTotal'?: number;
|
|
17
|
+
'diskUsed'?: number;
|
|
18
|
+
'memCache'?: number;
|
|
19
|
+
'memTotal'?: number;
|
|
20
|
+
'memUsed'?: number;
|
|
21
|
+
'timestamp'?: string;
|
|
22
|
+
'timestampUnix'?: number;
|
|
23
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* Daytona Toolbox API
|
|
6
|
+
* Daytona Toolbox API. The base URL comes from the sandbox\'s `toolboxProxyUrl` field (returned in sandbox DTO by the main Daytona API) plus the sandbox ID: `{toolboxProxyUrl}/{sandboxId}/{endpoint}`. Default for Daytona Cloud: `https://proxy.app.daytona.io/toolbox/{sandboxId}`.
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: v0.0.0-dev
|
|
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 });
|
|
16
|
+
//# sourceMappingURL=system-metrics.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"system-metrics.js","sourceRoot":"","sources":["../../../../toolbox-api-client/src/models/system-metrics.ts"],"names":[],"mappings":";AAAA,oBAAoB;AACpB,oBAAoB;AACpB;;;;;;;;;;GAUG"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"git-repo-request.js","sourceRoot":"","sources":["../../../../toolbox-api-client/src/models/git-repo-request.ts"],"names":[],"mappings":";AAAA,oBAAoB;AACpB,oBAAoB;AACpB;;;;;;;;;;GAUG"}
|