@daytonaio/api-client 0.2.3 → 0.3.1
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/README.md +2 -2
- package/api/default-api.ts +254 -560
- package/dist/api/default-api.d.ts +144 -298
- package/dist/api/default-api.js +272 -570
- package/dist/api/docker-registry-api.js +6 -6
- package/dist/esm/api/default-api.d.ts +144 -298
- package/dist/esm/api/default-api.js +272 -570
- package/dist/esm/api/docker-registry-api.js +6 -6
- package/dist/esm/models/create-workspace-dto.d.ts +24 -0
- package/dist/esm/models/workspace-dto.d.ts +24 -0
- package/dist/models/create-workspace-dto.d.ts +24 -0
- package/dist/models/workspace-dto.d.ts +24 -0
- package/models/create-workspace-dto.ts +24 -0
- package/models/workspace-dto.ts +24 -0
- package/package.json +1 -1
|
@@ -74,7 +74,7 @@ const DockerRegistryApiAxiosParamCreator = function (configuration) {
|
|
|
74
74
|
* @param {*} [options] Override http request option.
|
|
75
75
|
* @throws {RequiredError}
|
|
76
76
|
*/
|
|
77
|
-
dockerRegistryControllerFindAll: (...
|
|
77
|
+
dockerRegistryControllerFindAll: (...args_2) => __awaiter(this, [...args_2], void 0, function* (options = {}) {
|
|
78
78
|
const localVarPath = `/docker-registry`;
|
|
79
79
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
80
80
|
const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
@@ -103,7 +103,7 @@ const DockerRegistryApiAxiosParamCreator = function (configuration) {
|
|
|
103
103
|
* @param {*} [options] Override http request option.
|
|
104
104
|
* @throws {RequiredError}
|
|
105
105
|
*/
|
|
106
|
-
dockerRegistryControllerFindOne: (id_1, ...
|
|
106
|
+
dockerRegistryControllerFindOne: (id_1, ...args_3) => __awaiter(this, [id_1, ...args_3], void 0, function* (id, options = {}) {
|
|
107
107
|
// verify required parameter 'id' is not null or undefined
|
|
108
108
|
(0, common_1.assertParamExists)('dockerRegistryControllerFindOne', 'id', id);
|
|
109
109
|
const localVarPath = `/docker-registry/{id}`
|
|
@@ -134,7 +134,7 @@ const DockerRegistryApiAxiosParamCreator = function (configuration) {
|
|
|
134
134
|
* @param {*} [options] Override http request option.
|
|
135
135
|
* @throws {RequiredError}
|
|
136
136
|
*/
|
|
137
|
-
dockerRegistryControllerGetDefault: (...
|
|
137
|
+
dockerRegistryControllerGetDefault: (...args_4) => __awaiter(this, [...args_4], void 0, function* (options = {}) {
|
|
138
138
|
const localVarPath = `/docker-registry/default`;
|
|
139
139
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
140
140
|
const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
@@ -163,7 +163,7 @@ const DockerRegistryApiAxiosParamCreator = function (configuration) {
|
|
|
163
163
|
* @param {*} [options] Override http request option.
|
|
164
164
|
* @throws {RequiredError}
|
|
165
165
|
*/
|
|
166
|
-
dockerRegistryControllerRemove: (
|
|
166
|
+
dockerRegistryControllerRemove: (id_2, ...args_5) => __awaiter(this, [id_2, ...args_5], void 0, function* (id, options = {}) {
|
|
167
167
|
// verify required parameter 'id' is not null or undefined
|
|
168
168
|
(0, common_1.assertParamExists)('dockerRegistryControllerRemove', 'id', id);
|
|
169
169
|
const localVarPath = `/docker-registry/{id}`
|
|
@@ -195,7 +195,7 @@ const DockerRegistryApiAxiosParamCreator = function (configuration) {
|
|
|
195
195
|
* @param {*} [options] Override http request option.
|
|
196
196
|
* @throws {RequiredError}
|
|
197
197
|
*/
|
|
198
|
-
dockerRegistryControllerSetDefault: (
|
|
198
|
+
dockerRegistryControllerSetDefault: (id_3, ...args_6) => __awaiter(this, [id_3, ...args_6], void 0, function* (id, options = {}) {
|
|
199
199
|
// verify required parameter 'id' is not null or undefined
|
|
200
200
|
(0, common_1.assertParamExists)('dockerRegistryControllerSetDefault', 'id', id);
|
|
201
201
|
const localVarPath = `/docker-registry/{id}/set-default`
|
|
@@ -228,7 +228,7 @@ const DockerRegistryApiAxiosParamCreator = function (configuration) {
|
|
|
228
228
|
* @param {*} [options] Override http request option.
|
|
229
229
|
* @throws {RequiredError}
|
|
230
230
|
*/
|
|
231
|
-
dockerRegistryControllerUpdate: (
|
|
231
|
+
dockerRegistryControllerUpdate: (id_4, updateDockerRegistryDto_1, ...args_7) => __awaiter(this, [id_4, updateDockerRegistryDto_1, ...args_7], void 0, function* (id, updateDockerRegistryDto, options = {}) {
|
|
232
232
|
// verify required parameter 'id' is not null or undefined
|
|
233
233
|
(0, common_1.assertParamExists)('dockerRegistryControllerUpdate', 'id', id);
|
|
234
234
|
// verify required parameter 'updateDockerRegistryDto' is not null or undefined
|