@daytonaio/api-client 0.26.0-rc.2 → 0.26.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/health-api.d.ts +66 -0
- package/src/api/health-api.js +115 -0
- package/src/api/health-api.js.map +1 -0
- package/src/api/toolbox-api.d.ts +7 -8
- package/src/api/toolbox-api.js +4 -4
- package/src/api/toolbox-api.js.map +1 -1
- package/src/api.d.ts +1 -0
- package/src/api.js +1 -0
- package/src/api.js.map +1 -1
- package/src/models/{session-command-logs-response.d.ts → health-controller-check200-response-info-value.d.ts} +6 -11
- package/src/models/{session-command-logs-response.js → health-controller-check200-response-info-value.js} +1 -1
- package/src/models/health-controller-check200-response-info-value.js.map +1 -0
- package/src/models/health-controller-check200-response.d.ts +49 -0
- package/src/models/health-controller-check200-response.js +16 -0
- package/src/models/health-controller-check200-response.js.map +1 -0
- package/src/models/health-controller-check503-response.d.ts +49 -0
- package/src/models/health-controller-check503-response.js +16 -0
- package/src/models/health-controller-check503-response.js.map +1 -0
- package/src/models/index.d.ts +3 -1
- package/src/models/index.js +3 -1
- package/src/models/index.js.map +1 -1
- package/src/models/session-execute-response.d.ts +2 -8
- package/src/models/session-command-logs-response.js.map +0 -1
package/src/api.d.ts
CHANGED
|
@@ -12,6 +12,7 @@
|
|
|
12
12
|
export * from './api/api-keys-api';
|
|
13
13
|
export * from './api/audit-api';
|
|
14
14
|
export * from './api/docker-registry-api';
|
|
15
|
+
export * from './api/health-api';
|
|
15
16
|
export * from './api/object-storage-api';
|
|
16
17
|
export * from './api/organizations-api';
|
|
17
18
|
export * from './api/preview-api';
|
package/src/api.js
CHANGED
|
@@ -29,6 +29,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
29
29
|
__exportStar(require("./api/api-keys-api"), exports);
|
|
30
30
|
__exportStar(require("./api/audit-api"), exports);
|
|
31
31
|
__exportStar(require("./api/docker-registry-api"), exports);
|
|
32
|
+
__exportStar(require("./api/health-api"), exports);
|
|
32
33
|
__exportStar(require("./api/object-storage-api"), exports);
|
|
33
34
|
__exportStar(require("./api/organizations-api"), exports);
|
|
34
35
|
__exportStar(require("./api/preview-api"), exports);
|
package/src/api.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"api.js","sourceRoot":"","sources":["../../../../libs/api-client/src/api.ts"],"names":[],"mappings":";AAAA,oBAAoB;;;;;;;;;;;;;;;;AAEpB;;;;;;;;;;GAUG;AAEH,qDAAkC;AAClC,kDAA+B;AAC/B,4DAAyC;AACzC,2DAAwC;AACxC,0DAAuC;AACvC,oDAAiC;AACjC,oDAAiC;AACjC,oDAAiC;AACjC,sDAAmC;AACnC,oDAAiC;AACjC,kDAA+B;AAC/B,oDAAiC;AACjC,qDAAkC;AAClC,sDAAmC"}
|
|
1
|
+
{"version":3,"file":"api.js","sourceRoot":"","sources":["../../../../libs/api-client/src/api.ts"],"names":[],"mappings":";AAAA,oBAAoB;;;;;;;;;;;;;;;;AAEpB;;;;;;;;;;GAUG;AAEH,qDAAkC;AAClC,kDAA+B;AAC/B,4DAAyC;AACzC,mDAAgC;AAChC,2DAAwC;AACxC,0DAAuC;AACvC,oDAAiC;AACjC,oDAAiC;AACjC,oDAAiC;AACjC,sDAAmC;AACnC,oDAAiC;AACjC,kDAA+B;AAC/B,oDAAiC;AACjC,qDAAkC;AAClC,sDAAmC"}
|
|
@@ -12,19 +12,14 @@
|
|
|
12
12
|
/**
|
|
13
13
|
*
|
|
14
14
|
* @export
|
|
15
|
-
* @interface
|
|
15
|
+
* @interface HealthControllerCheck200ResponseInfoValue
|
|
16
16
|
*/
|
|
17
|
-
export interface
|
|
17
|
+
export interface HealthControllerCheck200ResponseInfoValue {
|
|
18
|
+
[key: string]: any;
|
|
18
19
|
/**
|
|
19
|
-
*
|
|
20
|
+
*
|
|
20
21
|
* @type {string}
|
|
21
|
-
* @memberof
|
|
22
|
+
* @memberof HealthControllerCheck200ResponseInfoValue
|
|
22
23
|
*/
|
|
23
|
-
|
|
24
|
-
/**
|
|
25
|
-
* The stderr of the command
|
|
26
|
-
* @type {string}
|
|
27
|
-
* @memberof SessionCommandLogsResponse
|
|
28
|
-
*/
|
|
29
|
-
stderr: string;
|
|
24
|
+
status: string;
|
|
30
25
|
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"health-controller-check200-response-info-value.js","sourceRoot":"","sources":["../../../../../libs/api-client/src/models/health-controller-check200-response-info-value.ts"],"names":[],"mappings":";AAAA,oBAAoB"}
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Daytona
|
|
3
|
+
* Daytona AI platform API Docs
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.0
|
|
6
|
+
* Contact: support@daytona.com
|
|
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 { HealthControllerCheck200ResponseInfoValue } from './health-controller-check200-response-info-value';
|
|
13
|
+
/**
|
|
14
|
+
*
|
|
15
|
+
* @export
|
|
16
|
+
* @interface HealthControllerCheck200Response
|
|
17
|
+
*/
|
|
18
|
+
export interface HealthControllerCheck200Response {
|
|
19
|
+
/**
|
|
20
|
+
*
|
|
21
|
+
* @type {string}
|
|
22
|
+
* @memberof HealthControllerCheck200Response
|
|
23
|
+
*/
|
|
24
|
+
status?: string;
|
|
25
|
+
/**
|
|
26
|
+
*
|
|
27
|
+
* @type {{ [key: string]: HealthControllerCheck200ResponseInfoValue; }}
|
|
28
|
+
* @memberof HealthControllerCheck200Response
|
|
29
|
+
*/
|
|
30
|
+
info?: {
|
|
31
|
+
[key: string]: HealthControllerCheck200ResponseInfoValue;
|
|
32
|
+
} | null;
|
|
33
|
+
/**
|
|
34
|
+
*
|
|
35
|
+
* @type {{ [key: string]: HealthControllerCheck200ResponseInfoValue; }}
|
|
36
|
+
* @memberof HealthControllerCheck200Response
|
|
37
|
+
*/
|
|
38
|
+
error?: {
|
|
39
|
+
[key: string]: HealthControllerCheck200ResponseInfoValue;
|
|
40
|
+
} | null;
|
|
41
|
+
/**
|
|
42
|
+
*
|
|
43
|
+
* @type {{ [key: string]: HealthControllerCheck200ResponseInfoValue; }}
|
|
44
|
+
* @memberof HealthControllerCheck200Response
|
|
45
|
+
*/
|
|
46
|
+
details?: {
|
|
47
|
+
[key: string]: HealthControllerCheck200ResponseInfoValue;
|
|
48
|
+
};
|
|
49
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* Daytona
|
|
6
|
+
* Daytona AI platform API Docs
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: 1.0
|
|
9
|
+
* Contact: support@daytona.com
|
|
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=health-controller-check200-response.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"health-controller-check200-response.js","sourceRoot":"","sources":["../../../../../libs/api-client/src/models/health-controller-check200-response.ts"],"names":[],"mappings":";AAAA,oBAAoB;AACpB,oBAAoB;AACpB;;;;;;;;;;GAUG"}
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Daytona
|
|
3
|
+
* Daytona AI platform API Docs
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.0
|
|
6
|
+
* Contact: support@daytona.com
|
|
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 { HealthControllerCheck200ResponseInfoValue } from './health-controller-check200-response-info-value';
|
|
13
|
+
/**
|
|
14
|
+
*
|
|
15
|
+
* @export
|
|
16
|
+
* @interface HealthControllerCheck503Response
|
|
17
|
+
*/
|
|
18
|
+
export interface HealthControllerCheck503Response {
|
|
19
|
+
/**
|
|
20
|
+
*
|
|
21
|
+
* @type {string}
|
|
22
|
+
* @memberof HealthControllerCheck503Response
|
|
23
|
+
*/
|
|
24
|
+
status?: string;
|
|
25
|
+
/**
|
|
26
|
+
*
|
|
27
|
+
* @type {{ [key: string]: HealthControllerCheck200ResponseInfoValue; }}
|
|
28
|
+
* @memberof HealthControllerCheck503Response
|
|
29
|
+
*/
|
|
30
|
+
info?: {
|
|
31
|
+
[key: string]: HealthControllerCheck200ResponseInfoValue;
|
|
32
|
+
} | null;
|
|
33
|
+
/**
|
|
34
|
+
*
|
|
35
|
+
* @type {{ [key: string]: HealthControllerCheck200ResponseInfoValue; }}
|
|
36
|
+
* @memberof HealthControllerCheck503Response
|
|
37
|
+
*/
|
|
38
|
+
error?: {
|
|
39
|
+
[key: string]: HealthControllerCheck200ResponseInfoValue;
|
|
40
|
+
} | null;
|
|
41
|
+
/**
|
|
42
|
+
*
|
|
43
|
+
* @type {{ [key: string]: HealthControllerCheck200ResponseInfoValue; }}
|
|
44
|
+
* @memberof HealthControllerCheck503Response
|
|
45
|
+
*/
|
|
46
|
+
details?: {
|
|
47
|
+
[key: string]: HealthControllerCheck200ResponseInfoValue;
|
|
48
|
+
};
|
|
49
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* Daytona
|
|
6
|
+
* Daytona AI platform API Docs
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: 1.0
|
|
9
|
+
* Contact: support@daytona.com
|
|
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=health-controller-check503-response.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"health-controller-check503-response.js","sourceRoot":"","sources":["../../../../../libs/api-client/src/models/health-controller-check503-response.ts"],"names":[],"mappings":";AAAA,oBAAoB;AACpB,oBAAoB;AACpB;;;;;;;;;;GAUG"}
|
package/src/models/index.d.ts
CHANGED
|
@@ -43,6 +43,9 @@ export * from './git-commit-response';
|
|
|
43
43
|
export * from './git-delete-branch-request';
|
|
44
44
|
export * from './git-repo-request';
|
|
45
45
|
export * from './git-status';
|
|
46
|
+
export * from './health-controller-check200-response';
|
|
47
|
+
export * from './health-controller-check200-response-info-value';
|
|
48
|
+
export * from './health-controller-check503-response';
|
|
46
49
|
export * from './keyboard-hotkey-request';
|
|
47
50
|
export * from './keyboard-press-request';
|
|
48
51
|
export * from './keyboard-type-request';
|
|
@@ -96,7 +99,6 @@ export * from './screenshot-response';
|
|
|
96
99
|
export * from './search-files-response';
|
|
97
100
|
export * from './send-webhook-dto';
|
|
98
101
|
export * from './session';
|
|
99
|
-
export * from './session-command-logs-response';
|
|
100
102
|
export * from './session-execute-request';
|
|
101
103
|
export * from './session-execute-response';
|
|
102
104
|
export * from './set-snapshot-general-status-dto';
|
package/src/models/index.js
CHANGED
|
@@ -59,6 +59,9 @@ __exportStar(require("./git-commit-response"), exports);
|
|
|
59
59
|
__exportStar(require("./git-delete-branch-request"), exports);
|
|
60
60
|
__exportStar(require("./git-repo-request"), exports);
|
|
61
61
|
__exportStar(require("./git-status"), exports);
|
|
62
|
+
__exportStar(require("./health-controller-check200-response"), exports);
|
|
63
|
+
__exportStar(require("./health-controller-check200-response-info-value"), exports);
|
|
64
|
+
__exportStar(require("./health-controller-check503-response"), exports);
|
|
62
65
|
__exportStar(require("./keyboard-hotkey-request"), exports);
|
|
63
66
|
__exportStar(require("./keyboard-press-request"), exports);
|
|
64
67
|
__exportStar(require("./keyboard-type-request"), exports);
|
|
@@ -112,7 +115,6 @@ __exportStar(require("./screenshot-response"), exports);
|
|
|
112
115
|
__exportStar(require("./search-files-response"), exports);
|
|
113
116
|
__exportStar(require("./send-webhook-dto"), exports);
|
|
114
117
|
__exportStar(require("./session"), exports);
|
|
115
|
-
__exportStar(require("./session-command-logs-response"), exports);
|
|
116
118
|
__exportStar(require("./session-execute-request"), exports);
|
|
117
119
|
__exportStar(require("./session-execute-response"), exports);
|
|
118
120
|
__exportStar(require("./set-snapshot-general-status-dto"), exports);
|
package/src/models/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../libs/api-client/src/models/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,qDAAkC;AAClC,iDAA8B;AAC9B,qDAAkC;AAClC,8CAA2B;AAC3B,+CAA4B;AAC5B,4CAAyB;AACzB,uDAAoC;AACpC,oDAAiC;AACjC,oDAAiC;AACjC,mEAAgD;AAChD,gEAA6C;AAC7C,iEAA8C;AAC9C,+DAA4C;AAC5C,mDAAgC;AAChC,qDAAkC;AAClC,sDAAmC;AACnC,2DAAwC;AACxC,0DAAuC;AACvC,wDAAqC;AACrC,mEAAgD;AAChD,8DAA2C;AAC3C,6DAA0C;AAC1C,kDAA+B;AAC/B,mDAAgC;AAChC,2DAAwC;AACxC,oDAAiC;AACjC,gDAA6B;AAC7B,kDAA+B;AAC/B,qDAAkC;AAClC,0DAAuC;AACvC,oDAAiC;AACjC,oDAAiC;AACjC,qDAAkC;AAClC,8CAA2B;AAC3B,gDAA6B;AAC7B,oDAAiC;AACjC,uDAAoC;AACpC,yDAAsC;AACtC,sDAAmC;AACnC,oDAAiC;AACjC,uDAAoC;AACpC,wDAAqC;AACrC,8DAA2C;AAC3C,qDAAkC;AAClC,+CAA4B;AAC5B,4DAAyC;AACzC,2DAAwC;AACxC,0DAAuC;AACvC,yDAAsC;AACtC,0DAAuC;AACvC,yDAAsC;AACtC,iDAA8B;AAC9B,uDAAoC;AACpC,+CAA4B;AAC5B,0CAAuB;AACvB,wDAAqC;AACrC,yDAAsC;AACtC,uDAAoC;AACpC,wDAAqC;AACrC,uDAAoC;AACpC,wDAAqC;AACrC,mDAAgC;AAChC,yDAAsC;AACtC,0DAAuC;AACvC,iDAA8B;AAC9B,4DAAyC;AACzC,sDAAmC;AACnC,4DAAyC;AACzC,gEAA6C;AAC7C,sDAAmC;AACnC,yDAAsC;AACtC,4DAAyC;AACzC,qDAAkC;AAClC,6CAA0B;AAC1B,4DAAyC;AACzC,0DAAuC;AACvC,6DAA0C;AAC1C,4DAAyC;AACzC,yDAAsC;AACtC,0CAAuB;AACvB,+DAA4C;AAC5C,6DAA0C;AAC1C,oDAAiC;AACjC,mDAAgC;AAChC,2CAAwB;AACxB,wDAAqC;AACrC,iDAA8B;AAC9B,4CAAyB;AACzB,kDAA+B;AAC/B,0DAAuC;AACvC,iDAA8B;AAC9B,mDAAgC;AAChC,kDAA+B;AAC/B,mDAAgC;AAChC,wDAAqC;AACrC,0DAAuC;AACvC,qDAAkC;AAClC,4CAAyB;AACzB,
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../libs/api-client/src/models/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,qDAAkC;AAClC,iDAA8B;AAC9B,qDAAkC;AAClC,8CAA2B;AAC3B,+CAA4B;AAC5B,4CAAyB;AACzB,uDAAoC;AACpC,oDAAiC;AACjC,oDAAiC;AACjC,mEAAgD;AAChD,gEAA6C;AAC7C,iEAA8C;AAC9C,+DAA4C;AAC5C,mDAAgC;AAChC,qDAAkC;AAClC,sDAAmC;AACnC,2DAAwC;AACxC,0DAAuC;AACvC,wDAAqC;AACrC,mEAAgD;AAChD,8DAA2C;AAC3C,6DAA0C;AAC1C,kDAA+B;AAC/B,mDAAgC;AAChC,2DAAwC;AACxC,oDAAiC;AACjC,gDAA6B;AAC7B,kDAA+B;AAC/B,qDAAkC;AAClC,0DAAuC;AACvC,oDAAiC;AACjC,oDAAiC;AACjC,qDAAkC;AAClC,8CAA2B;AAC3B,gDAA6B;AAC7B,oDAAiC;AACjC,uDAAoC;AACpC,yDAAsC;AACtC,sDAAmC;AACnC,oDAAiC;AACjC,uDAAoC;AACpC,wDAAqC;AACrC,8DAA2C;AAC3C,qDAAkC;AAClC,+CAA4B;AAC5B,wEAAqD;AACrD,mFAAgE;AAChE,wEAAqD;AACrD,4DAAyC;AACzC,2DAAwC;AACxC,0DAAuC;AACvC,yDAAsC;AACtC,0DAAuC;AACvC,yDAAsC;AACtC,iDAA8B;AAC9B,uDAAoC;AACpC,+CAA4B;AAC5B,0CAAuB;AACvB,wDAAqC;AACrC,yDAAsC;AACtC,uDAAoC;AACpC,wDAAqC;AACrC,uDAAoC;AACpC,wDAAqC;AACrC,mDAAgC;AAChC,yDAAsC;AACtC,0DAAuC;AACvC,iDAA8B;AAC9B,4DAAyC;AACzC,sDAAmC;AACnC,4DAAyC;AACzC,gEAA6C;AAC7C,sDAAmC;AACnC,yDAAsC;AACtC,4DAAyC;AACzC,qDAAkC;AAClC,6CAA0B;AAC1B,4DAAyC;AACzC,0DAAuC;AACvC,6DAA0C;AAC1C,4DAAyC;AACzC,yDAAsC;AACtC,0CAAuB;AACvB,+DAA4C;AAC5C,6DAA0C;AAC1C,oDAAiC;AACjC,mDAAgC;AAChC,2CAAwB;AACxB,wDAAqC;AACrC,iDAA8B;AAC9B,4CAAyB;AACzB,kDAA+B;AAC/B,0DAAuC;AACvC,iDAA8B;AAC9B,mDAAgC;AAChC,kDAA+B;AAC/B,mDAAgC;AAChC,wDAAqC;AACrC,0DAAuC;AACvC,qDAAkC;AAClC,4CAAyB;AACzB,4DAAyC;AACzC,6DAA0C;AAC1C,oEAAiD;AACjD,iDAA8B;AAC9B,mDAAgC;AAChC,mDAAgC;AAChC,8DAA2C;AAC3C,uDAAoC;AACpC,uEAAoD;AACpD,2DAAwC;AACxC,mEAAgD;AAChD,oEAAiD;AACjD,8DAA2C;AAC3C,6DAA0C;AAC1C,yCAAsB;AACtB,oDAAiC;AACjC,+CAA4B;AAC5B,iDAA8B;AAC9B,8DAA2C;AAC3C,8EAA2D;AAC3D,kEAA+C;AAC/C,qDAAkC;AAClC,8CAA2B"}
|
|
@@ -22,17 +22,11 @@ export interface SessionExecuteResponse {
|
|
|
22
22
|
*/
|
|
23
23
|
cmdId?: string;
|
|
24
24
|
/**
|
|
25
|
-
* The
|
|
25
|
+
* The output of the executed command
|
|
26
26
|
* @type {string}
|
|
27
27
|
* @memberof SessionExecuteResponse
|
|
28
28
|
*/
|
|
29
|
-
|
|
30
|
-
/**
|
|
31
|
-
* The stderr of the executed command
|
|
32
|
-
* @type {string}
|
|
33
|
-
* @memberof SessionExecuteResponse
|
|
34
|
-
*/
|
|
35
|
-
stderr?: string;
|
|
29
|
+
output?: string;
|
|
36
30
|
/**
|
|
37
31
|
* The exit code of the executed command
|
|
38
32
|
* @type {number}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"session-command-logs-response.js","sourceRoot":"","sources":["../../../../../libs/api-client/src/models/session-command-logs-response.ts"],"names":[],"mappings":";AAAA,oBAAoB"}
|