@daytonaio/sdk 0.7.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/LICENCE +43 -0
- package/README.md +181 -0
- package/dist/Daytona.d.ts +106 -0
- package/dist/Daytona.js +141 -0
- package/dist/FileSystem.d.ts +97 -0
- package/dist/FileSystem.js +126 -0
- package/dist/Git.d.ts +67 -0
- package/dist/Git.js +109 -0
- package/dist/LspServer.d.ts +68 -0
- package/dist/LspServer.js +93 -0
- package/dist/Process.d.ts +54 -0
- package/dist/Process.js +84 -0
- package/dist/Workspace.d.ts +53 -0
- package/dist/Workspace.js +51 -0
- package/dist/client/apis/ApiKeyApi.d.ts +54 -0
- package/dist/client/apis/ApiKeyApi.js +135 -0
- package/dist/client/apis/BuildApi.d.ts +95 -0
- package/dist/client/apis/BuildApi.js +228 -0
- package/dist/client/apis/ContainerRegistryApi.d.ts +68 -0
- package/dist/client/apis/ContainerRegistryApi.js +163 -0
- package/dist/client/apis/DefaultApi.d.ts +31 -0
- package/dist/client/apis/DefaultApi.js +72 -0
- package/dist/client/apis/GitProviderApi.d.ts +197 -0
- package/dist/client/apis/GitProviderApi.js +477 -0
- package/dist/client/apis/PrebuildApi.d.ts +97 -0
- package/dist/client/apis/PrebuildApi.js +241 -0
- package/dist/client/apis/ProfileApi.d.ts +51 -0
- package/dist/client/apis/ProfileApi.js +128 -0
- package/dist/client/apis/ProjectConfigApi.d.ts +94 -0
- package/dist/client/apis/ProjectConfigApi.js +220 -0
- package/dist/client/apis/ProviderApi.d.ts +71 -0
- package/dist/client/apis/ProviderApi.js +160 -0
- package/dist/client/apis/SampleApi.d.ts +28 -0
- package/dist/client/apis/SampleApi.js +73 -0
- package/dist/client/apis/ServerApi.d.ts +61 -0
- package/dist/client/apis/ServerApi.js +156 -0
- package/dist/client/apis/TargetApi.d.ts +67 -0
- package/dist/client/apis/TargetApi.js +159 -0
- package/dist/client/apis/WorkspaceApi.d.ts +141 -0
- package/dist/client/apis/WorkspaceApi.js +330 -0
- package/dist/client/apis/WorkspaceToolboxApi.d.ts +464 -0
- package/dist/client/apis/WorkspaceToolboxApi.js +1248 -0
- package/dist/client/apis/index.d.ts +14 -0
- package/dist/client/apis/index.js +32 -0
- package/dist/client/index.d.ts +3 -0
- package/dist/client/index.js +21 -0
- package/dist/client/models/ApiKey.d.ts +45 -0
- package/dist/client/models/ApiKey.js +60 -0
- package/dist/client/models/ApikeyApiKeyType.d.ts +26 -0
- package/dist/client/models/ApikeyApiKeyType.js +52 -0
- package/dist/client/models/Build.d.ts +98 -0
- package/dist/client/models/Build.js +91 -0
- package/dist/client/models/BuildBuildState.d.ts +31 -0
- package/dist/client/models/BuildBuildState.js +57 -0
- package/dist/client/models/BuildConfig.d.ts +40 -0
- package/dist/client/models/BuildConfig.js +57 -0
- package/dist/client/models/CachedBuild.d.ts +38 -0
- package/dist/client/models/CachedBuild.js +55 -0
- package/dist/client/models/CloneTarget.d.ts +25 -0
- package/dist/client/models/CloneTarget.js +51 -0
- package/dist/client/models/CompletionContext.d.ts +38 -0
- package/dist/client/models/CompletionContext.js +53 -0
- package/dist/client/models/CompletionItem.d.ts +68 -0
- package/dist/client/models/CompletionItem.js +63 -0
- package/dist/client/models/CompletionList.d.ts +39 -0
- package/dist/client/models/CompletionList.js +56 -0
- package/dist/client/models/ContainerConfig.d.ts +38 -0
- package/dist/client/models/ContainerConfig.js +55 -0
- package/dist/client/models/ContainerRegistry.d.ts +44 -0
- package/dist/client/models/ContainerRegistry.js +59 -0
- package/dist/client/models/CreateBuildDTO.d.ts +52 -0
- package/dist/client/models/CreateBuildDTO.js +62 -0
- package/dist/client/models/CreatePrebuildDTO.d.ts +56 -0
- package/dist/client/models/CreatePrebuildDTO.js +59 -0
- package/dist/client/models/CreateProjectConfigDTO.d.ts +71 -0
- package/dist/client/models/CreateProjectConfigDTO.js +72 -0
- package/dist/client/models/CreateProjectDTO.d.ts +72 -0
- package/dist/client/models/CreateProjectDTO.js +73 -0
- package/dist/client/models/CreateProjectSourceDTO.d.ts +33 -0
- package/dist/client/models/CreateProjectSourceDTO.js +52 -0
- package/dist/client/models/CreateProviderTargetDTO.d.ts +45 -0
- package/dist/client/models/CreateProviderTargetDTO.js +60 -0
- package/dist/client/models/CreateWorkspaceDTO.d.ts +51 -0
- package/dist/client/models/CreateWorkspaceDTO.js +64 -0
- package/dist/client/models/DevcontainerConfig.d.ts +32 -0
- package/dist/client/models/DevcontainerConfig.js +51 -0
- package/dist/client/models/ExecuteRequest.d.ts +38 -0
- package/dist/client/models/ExecuteRequest.js +53 -0
- package/dist/client/models/ExecuteResponse.d.ts +38 -0
- package/dist/client/models/ExecuteResponse.js +55 -0
- package/dist/client/models/FRPSConfig.d.ts +44 -0
- package/dist/client/models/FRPSConfig.js +59 -0
- package/dist/client/models/FileInfo.d.ts +74 -0
- package/dist/client/models/FileInfo.js +79 -0
- package/dist/client/models/FileStatus.d.ts +51 -0
- package/dist/client/models/FileStatus.js +64 -0
- package/dist/client/models/GetRepositoryContext.d.ts +80 -0
- package/dist/client/models/GetRepositoryContext.js +67 -0
- package/dist/client/models/GitAddRequest.d.ts +38 -0
- package/dist/client/models/GitAddRequest.js +55 -0
- package/dist/client/models/GitBranch.d.ts +38 -0
- package/dist/client/models/GitBranch.js +55 -0
- package/dist/client/models/GitBranchRequest.d.ts +38 -0
- package/dist/client/models/GitBranchRequest.js +55 -0
- package/dist/client/models/GitCloneRequest.d.ts +62 -0
- package/dist/client/models/GitCloneRequest.js +63 -0
- package/dist/client/models/GitCommitInfo.d.ts +56 -0
- package/dist/client/models/GitCommitInfo.js +67 -0
- package/dist/client/models/GitCommitRequest.d.ts +50 -0
- package/dist/client/models/GitCommitRequest.js +63 -0
- package/dist/client/models/GitCommitResponse.d.ts +32 -0
- package/dist/client/models/GitCommitResponse.js +51 -0
- package/dist/client/models/GitNamespace.d.ts +38 -0
- package/dist/client/models/GitNamespace.js +55 -0
- package/dist/client/models/GitProvider.d.ts +75 -0
- package/dist/client/models/GitProvider.js +76 -0
- package/dist/client/models/GitPullRequest.d.ts +68 -0
- package/dist/client/models/GitPullRequest.js +75 -0
- package/dist/client/models/GitRepoRequest.d.ts +44 -0
- package/dist/client/models/GitRepoRequest.js +55 -0
- package/dist/client/models/GitRepository.d.ts +87 -0
- package/dist/client/models/GitRepository.js +84 -0
- package/dist/client/models/GitStatus.d.ts +57 -0
- package/dist/client/models/GitStatus.js +62 -0
- package/dist/client/models/GitUser.d.ts +50 -0
- package/dist/client/models/GitUser.js +63 -0
- package/dist/client/models/InstallProviderRequest.d.ts +40 -0
- package/dist/client/models/InstallProviderRequest.js +55 -0
- package/dist/client/models/ListBranchResponse.d.ts +32 -0
- package/dist/client/models/ListBranchResponse.js +51 -0
- package/dist/client/models/LogFileConfig.d.ts +62 -0
- package/dist/client/models/LogFileConfig.js +67 -0
- package/dist/client/models/LspCompletionParams.d.ts +58 -0
- package/dist/client/models/LspCompletionParams.js +69 -0
- package/dist/client/models/LspDocumentRequest.d.ts +44 -0
- package/dist/client/models/LspDocumentRequest.js +59 -0
- package/dist/client/models/LspLocation.d.ts +39 -0
- package/dist/client/models/LspLocation.js +56 -0
- package/dist/client/models/LspPosition.d.ts +38 -0
- package/dist/client/models/LspPosition.js +55 -0
- package/dist/client/models/LspRange.d.ts +39 -0
- package/dist/client/models/LspRange.js +56 -0
- package/dist/client/models/LspServerRequest.d.ts +38 -0
- package/dist/client/models/LspServerRequest.js +55 -0
- package/dist/client/models/LspSymbol.d.ts +45 -0
- package/dist/client/models/LspSymbol.js +60 -0
- package/dist/client/models/Match.d.ts +44 -0
- package/dist/client/models/Match.js +59 -0
- package/dist/client/models/NetworkKey.d.ts +32 -0
- package/dist/client/models/NetworkKey.js +51 -0
- package/dist/client/models/Position.d.ts +38 -0
- package/dist/client/models/Position.js +55 -0
- package/dist/client/models/PrebuildConfig.d.ts +56 -0
- package/dist/client/models/PrebuildConfig.js +67 -0
- package/dist/client/models/PrebuildDTO.d.ts +62 -0
- package/dist/client/models/PrebuildDTO.js +68 -0
- package/dist/client/models/ProfileData.d.ts +34 -0
- package/dist/client/models/ProfileData.js +51 -0
- package/dist/client/models/Project.d.ts +91 -0
- package/dist/client/models/Project.js +88 -0
- package/dist/client/models/ProjectConfig.d.ts +84 -0
- package/dist/client/models/ProjectConfig.js +87 -0
- package/dist/client/models/ProjectDirResponse.d.ts +32 -0
- package/dist/client/models/ProjectDirResponse.js +49 -0
- package/dist/client/models/ProjectInfo.d.ts +56 -0
- package/dist/client/models/ProjectInfo.js +65 -0
- package/dist/client/models/ProjectState.d.ts +45 -0
- package/dist/client/models/ProjectState.js +60 -0
- package/dist/client/models/Provider.d.ts +44 -0
- package/dist/client/models/Provider.js +57 -0
- package/dist/client/models/ProviderProviderInfo.d.ts +44 -0
- package/dist/client/models/ProviderProviderInfo.js +57 -0
- package/dist/client/models/ProviderProviderTargetProperty.d.ts +72 -0
- package/dist/client/models/ProviderProviderTargetProperty.js +64 -0
- package/dist/client/models/ProviderProviderTargetPropertyType.d.ts +29 -0
- package/dist/client/models/ProviderProviderTargetPropertyType.js +55 -0
- package/dist/client/models/ProviderTarget.d.ts +51 -0
- package/dist/client/models/ProviderTarget.js +64 -0
- package/dist/client/models/ReplaceRequest.d.ts +44 -0
- package/dist/client/models/ReplaceRequest.js +59 -0
- package/dist/client/models/ReplaceResult.d.ts +44 -0
- package/dist/client/models/ReplaceResult.js +53 -0
- package/dist/client/models/RepositoryUrl.d.ts +32 -0
- package/dist/client/models/RepositoryUrl.js +51 -0
- package/dist/client/models/Sample.d.ts +44 -0
- package/dist/client/models/Sample.js +59 -0
- package/dist/client/models/SearchFilesResponse.d.ts +32 -0
- package/dist/client/models/SearchFilesResponse.js +51 -0
- package/dist/client/models/ServerConfig.d.ts +130 -0
- package/dist/client/models/ServerConfig.js +119 -0
- package/dist/client/models/SetGitProviderConfig.d.ts +75 -0
- package/dist/client/models/SetGitProviderConfig.js +70 -0
- package/dist/client/models/SetProjectState.d.ts +39 -0
- package/dist/client/models/SetProjectState.js +56 -0
- package/dist/client/models/SigningMethod.d.ts +25 -0
- package/dist/client/models/SigningMethod.js +51 -0
- package/dist/client/models/Status.d.ts +31 -0
- package/dist/client/models/Status.js +57 -0
- package/dist/client/models/Workspace.d.ts +51 -0
- package/dist/client/models/Workspace.js +64 -0
- package/dist/client/models/WorkspaceDTO.d.ts +58 -0
- package/dist/client/models/WorkspaceDTO.js +67 -0
- package/dist/client/models/WorkspaceInfo.d.ts +45 -0
- package/dist/client/models/WorkspaceInfo.js +58 -0
- package/dist/client/models/index.d.ts +79 -0
- package/dist/client/models/index.js +97 -0
- package/dist/client/runtime.d.ts +182 -0
- package/dist/client/runtime.js +340 -0
- package/dist/code-toolbox/WorkspacePythonCodeToolbox.d.ts +5 -0
- package/dist/code-toolbox/WorkspacePythonCodeToolbox.js +13 -0
- package/dist/code-toolbox/WorkspaceTsCodeToolbox.d.ts +5 -0
- package/dist/code-toolbox/WorkspaceTsCodeToolbox.js +13 -0
- package/dist/index.d.ts +8 -0
- package/dist/index.js +13 -0
- package/package.json +42 -0
|
@@ -0,0 +1,220 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* Daytona Server API
|
|
6
|
+
* Daytona Server API
|
|
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
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
16
|
+
if (k2 === undefined) k2 = k;
|
|
17
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
18
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
19
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
20
|
+
}
|
|
21
|
+
Object.defineProperty(o, k2, desc);
|
|
22
|
+
}) : (function(o, m, k, k2) {
|
|
23
|
+
if (k2 === undefined) k2 = k;
|
|
24
|
+
o[k2] = m[k];
|
|
25
|
+
}));
|
|
26
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
27
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
28
|
+
}) : function(o, v) {
|
|
29
|
+
o["default"] = v;
|
|
30
|
+
});
|
|
31
|
+
var __importStar = (this && this.__importStar) || function (mod) {
|
|
32
|
+
if (mod && mod.__esModule) return mod;
|
|
33
|
+
var result = {};
|
|
34
|
+
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
35
|
+
__setModuleDefault(result, mod);
|
|
36
|
+
return result;
|
|
37
|
+
};
|
|
38
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
39
|
+
exports.ProjectConfigApi = void 0;
|
|
40
|
+
const runtime = __importStar(require("../runtime"));
|
|
41
|
+
const index_1 = require("../models/index");
|
|
42
|
+
/**
|
|
43
|
+
*
|
|
44
|
+
*/
|
|
45
|
+
class ProjectConfigApi extends runtime.BaseAPI {
|
|
46
|
+
/**
|
|
47
|
+
* Delete project config data
|
|
48
|
+
* Delete project config data
|
|
49
|
+
*/
|
|
50
|
+
async deleteProjectConfigRaw(requestParameters, initOverrides) {
|
|
51
|
+
if (requestParameters['configName'] == null) {
|
|
52
|
+
throw new runtime.RequiredError('configName', 'Required parameter "configName" was null or undefined when calling deleteProjectConfig().');
|
|
53
|
+
}
|
|
54
|
+
const queryParameters = {};
|
|
55
|
+
if (requestParameters['force'] != null) {
|
|
56
|
+
queryParameters['force'] = requestParameters['force'];
|
|
57
|
+
}
|
|
58
|
+
const headerParameters = {};
|
|
59
|
+
if (this.configuration && this.configuration.apiKey) {
|
|
60
|
+
headerParameters['Authorization'] = await this.configuration.apiKey('Authorization'); // Bearer authentication
|
|
61
|
+
}
|
|
62
|
+
const response = await this.request({
|
|
63
|
+
path: `/project-config/{configName}`.replace(`{${'configName'}}`, encodeURIComponent(String(requestParameters['configName']))),
|
|
64
|
+
method: 'DELETE',
|
|
65
|
+
headers: headerParameters,
|
|
66
|
+
query: queryParameters,
|
|
67
|
+
}, initOverrides);
|
|
68
|
+
return new runtime.VoidApiResponse(response);
|
|
69
|
+
}
|
|
70
|
+
/**
|
|
71
|
+
* Delete project config data
|
|
72
|
+
* Delete project config data
|
|
73
|
+
*/
|
|
74
|
+
async deleteProjectConfig(requestParameters, initOverrides) {
|
|
75
|
+
await this.deleteProjectConfigRaw(requestParameters, initOverrides);
|
|
76
|
+
}
|
|
77
|
+
/**
|
|
78
|
+
* Get project configs by git url
|
|
79
|
+
* Get project configs by git url
|
|
80
|
+
*/
|
|
81
|
+
async getDefaultProjectConfigRaw(requestParameters, initOverrides) {
|
|
82
|
+
if (requestParameters['gitUrl'] == null) {
|
|
83
|
+
throw new runtime.RequiredError('gitUrl', 'Required parameter "gitUrl" was null or undefined when calling getDefaultProjectConfig().');
|
|
84
|
+
}
|
|
85
|
+
const queryParameters = {};
|
|
86
|
+
const headerParameters = {};
|
|
87
|
+
if (this.configuration && this.configuration.apiKey) {
|
|
88
|
+
headerParameters['Authorization'] = await this.configuration.apiKey('Authorization'); // Bearer authentication
|
|
89
|
+
}
|
|
90
|
+
const response = await this.request({
|
|
91
|
+
path: `/project-config/default/{gitUrl}`.replace(`{${'gitUrl'}}`, encodeURIComponent(String(requestParameters['gitUrl']))),
|
|
92
|
+
method: 'GET',
|
|
93
|
+
headers: headerParameters,
|
|
94
|
+
query: queryParameters,
|
|
95
|
+
}, initOverrides);
|
|
96
|
+
return new runtime.JSONApiResponse(response, (jsonValue) => (0, index_1.ProjectConfigFromJSON)(jsonValue));
|
|
97
|
+
}
|
|
98
|
+
/**
|
|
99
|
+
* Get project configs by git url
|
|
100
|
+
* Get project configs by git url
|
|
101
|
+
*/
|
|
102
|
+
async getDefaultProjectConfig(requestParameters, initOverrides) {
|
|
103
|
+
const response = await this.getDefaultProjectConfigRaw(requestParameters, initOverrides);
|
|
104
|
+
return await response.value();
|
|
105
|
+
}
|
|
106
|
+
/**
|
|
107
|
+
* Get project config data
|
|
108
|
+
* Get project config data
|
|
109
|
+
*/
|
|
110
|
+
async getProjectConfigRaw(requestParameters, initOverrides) {
|
|
111
|
+
if (requestParameters['configName'] == null) {
|
|
112
|
+
throw new runtime.RequiredError('configName', 'Required parameter "configName" was null or undefined when calling getProjectConfig().');
|
|
113
|
+
}
|
|
114
|
+
const queryParameters = {};
|
|
115
|
+
const headerParameters = {};
|
|
116
|
+
if (this.configuration && this.configuration.apiKey) {
|
|
117
|
+
headerParameters['Authorization'] = await this.configuration.apiKey('Authorization'); // Bearer authentication
|
|
118
|
+
}
|
|
119
|
+
const response = await this.request({
|
|
120
|
+
path: `/project-config/{configName}`.replace(`{${'configName'}}`, encodeURIComponent(String(requestParameters['configName']))),
|
|
121
|
+
method: 'GET',
|
|
122
|
+
headers: headerParameters,
|
|
123
|
+
query: queryParameters,
|
|
124
|
+
}, initOverrides);
|
|
125
|
+
return new runtime.JSONApiResponse(response, (jsonValue) => (0, index_1.ProjectConfigFromJSON)(jsonValue));
|
|
126
|
+
}
|
|
127
|
+
/**
|
|
128
|
+
* Get project config data
|
|
129
|
+
* Get project config data
|
|
130
|
+
*/
|
|
131
|
+
async getProjectConfig(requestParameters, initOverrides) {
|
|
132
|
+
const response = await this.getProjectConfigRaw(requestParameters, initOverrides);
|
|
133
|
+
return await response.value();
|
|
134
|
+
}
|
|
135
|
+
/**
|
|
136
|
+
* List project configs
|
|
137
|
+
* List project configs
|
|
138
|
+
*/
|
|
139
|
+
async listProjectConfigsRaw(initOverrides) {
|
|
140
|
+
const queryParameters = {};
|
|
141
|
+
const headerParameters = {};
|
|
142
|
+
if (this.configuration && this.configuration.apiKey) {
|
|
143
|
+
headerParameters['Authorization'] = await this.configuration.apiKey('Authorization'); // Bearer authentication
|
|
144
|
+
}
|
|
145
|
+
const response = await this.request({
|
|
146
|
+
path: `/project-config`,
|
|
147
|
+
method: 'GET',
|
|
148
|
+
headers: headerParameters,
|
|
149
|
+
query: queryParameters,
|
|
150
|
+
}, initOverrides);
|
|
151
|
+
return new runtime.JSONApiResponse(response, (jsonValue) => jsonValue.map(index_1.ProjectConfigFromJSON));
|
|
152
|
+
}
|
|
153
|
+
/**
|
|
154
|
+
* List project configs
|
|
155
|
+
* List project configs
|
|
156
|
+
*/
|
|
157
|
+
async listProjectConfigs(initOverrides) {
|
|
158
|
+
const response = await this.listProjectConfigsRaw(initOverrides);
|
|
159
|
+
return await response.value();
|
|
160
|
+
}
|
|
161
|
+
/**
|
|
162
|
+
* Set project config to default
|
|
163
|
+
* Set project config to default
|
|
164
|
+
*/
|
|
165
|
+
async setDefaultProjectConfigRaw(requestParameters, initOverrides) {
|
|
166
|
+
if (requestParameters['configName'] == null) {
|
|
167
|
+
throw new runtime.RequiredError('configName', 'Required parameter "configName" was null or undefined when calling setDefaultProjectConfig().');
|
|
168
|
+
}
|
|
169
|
+
const queryParameters = {};
|
|
170
|
+
const headerParameters = {};
|
|
171
|
+
if (this.configuration && this.configuration.apiKey) {
|
|
172
|
+
headerParameters['Authorization'] = await this.configuration.apiKey('Authorization'); // Bearer authentication
|
|
173
|
+
}
|
|
174
|
+
const response = await this.request({
|
|
175
|
+
path: `/project-config/{configName}/set-default`.replace(`{${'configName'}}`, encodeURIComponent(String(requestParameters['configName']))),
|
|
176
|
+
method: 'PATCH',
|
|
177
|
+
headers: headerParameters,
|
|
178
|
+
query: queryParameters,
|
|
179
|
+
}, initOverrides);
|
|
180
|
+
return new runtime.VoidApiResponse(response);
|
|
181
|
+
}
|
|
182
|
+
/**
|
|
183
|
+
* Set project config to default
|
|
184
|
+
* Set project config to default
|
|
185
|
+
*/
|
|
186
|
+
async setDefaultProjectConfig(requestParameters, initOverrides) {
|
|
187
|
+
await this.setDefaultProjectConfigRaw(requestParameters, initOverrides);
|
|
188
|
+
}
|
|
189
|
+
/**
|
|
190
|
+
* Set project config data
|
|
191
|
+
* Set project config data
|
|
192
|
+
*/
|
|
193
|
+
async setProjectConfigRaw(requestParameters, initOverrides) {
|
|
194
|
+
if (requestParameters['projectConfig'] == null) {
|
|
195
|
+
throw new runtime.RequiredError('projectConfig', 'Required parameter "projectConfig" was null or undefined when calling setProjectConfig().');
|
|
196
|
+
}
|
|
197
|
+
const queryParameters = {};
|
|
198
|
+
const headerParameters = {};
|
|
199
|
+
headerParameters['Content-Type'] = 'application/json';
|
|
200
|
+
if (this.configuration && this.configuration.apiKey) {
|
|
201
|
+
headerParameters['Authorization'] = await this.configuration.apiKey('Authorization'); // Bearer authentication
|
|
202
|
+
}
|
|
203
|
+
const response = await this.request({
|
|
204
|
+
path: `/project-config`,
|
|
205
|
+
method: 'PUT',
|
|
206
|
+
headers: headerParameters,
|
|
207
|
+
query: queryParameters,
|
|
208
|
+
body: (0, index_1.CreateProjectConfigDTOToJSON)(requestParameters['projectConfig']),
|
|
209
|
+
}, initOverrides);
|
|
210
|
+
return new runtime.VoidApiResponse(response);
|
|
211
|
+
}
|
|
212
|
+
/**
|
|
213
|
+
* Set project config data
|
|
214
|
+
* Set project config data
|
|
215
|
+
*/
|
|
216
|
+
async setProjectConfig(requestParameters, initOverrides) {
|
|
217
|
+
await this.setProjectConfigRaw(requestParameters, initOverrides);
|
|
218
|
+
}
|
|
219
|
+
}
|
|
220
|
+
exports.ProjectConfigApi = ProjectConfigApi;
|
|
@@ -0,0 +1,71 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Daytona Server API
|
|
3
|
+
* Daytona Server API
|
|
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 * as runtime from '../runtime';
|
|
13
|
+
import type { InstallProviderRequest, Provider, ProviderProviderTargetProperty } from '../models/index';
|
|
14
|
+
export interface GetTargetManifestRequest {
|
|
15
|
+
provider: string;
|
|
16
|
+
}
|
|
17
|
+
export interface InstallProviderOperationRequest {
|
|
18
|
+
provider: InstallProviderRequest;
|
|
19
|
+
}
|
|
20
|
+
export interface UninstallProviderRequest {
|
|
21
|
+
provider: string;
|
|
22
|
+
}
|
|
23
|
+
/**
|
|
24
|
+
*
|
|
25
|
+
*/
|
|
26
|
+
export declare class ProviderApi extends runtime.BaseAPI {
|
|
27
|
+
/**
|
|
28
|
+
* Get provider target manifest
|
|
29
|
+
* Get provider target manifest
|
|
30
|
+
*/
|
|
31
|
+
getTargetManifestRaw(requestParameters: GetTargetManifestRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<{
|
|
32
|
+
[key: string]: ProviderProviderTargetProperty;
|
|
33
|
+
}>>;
|
|
34
|
+
/**
|
|
35
|
+
* Get provider target manifest
|
|
36
|
+
* Get provider target manifest
|
|
37
|
+
*/
|
|
38
|
+
getTargetManifest(requestParameters: GetTargetManifestRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<{
|
|
39
|
+
[key: string]: ProviderProviderTargetProperty;
|
|
40
|
+
}>;
|
|
41
|
+
/**
|
|
42
|
+
* Install a provider
|
|
43
|
+
* Install a provider
|
|
44
|
+
*/
|
|
45
|
+
installProviderRaw(requestParameters: InstallProviderOperationRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<void>>;
|
|
46
|
+
/**
|
|
47
|
+
* Install a provider
|
|
48
|
+
* Install a provider
|
|
49
|
+
*/
|
|
50
|
+
installProvider(requestParameters: InstallProviderOperationRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<void>;
|
|
51
|
+
/**
|
|
52
|
+
* List providers
|
|
53
|
+
* List providers
|
|
54
|
+
*/
|
|
55
|
+
listProvidersRaw(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<Array<Provider>>>;
|
|
56
|
+
/**
|
|
57
|
+
* List providers
|
|
58
|
+
* List providers
|
|
59
|
+
*/
|
|
60
|
+
listProviders(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<Array<Provider>>;
|
|
61
|
+
/**
|
|
62
|
+
* Uninstall a provider
|
|
63
|
+
* Uninstall a provider
|
|
64
|
+
*/
|
|
65
|
+
uninstallProviderRaw(requestParameters: UninstallProviderRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<void>>;
|
|
66
|
+
/**
|
|
67
|
+
* Uninstall a provider
|
|
68
|
+
* Uninstall a provider
|
|
69
|
+
*/
|
|
70
|
+
uninstallProvider(requestParameters: UninstallProviderRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<void>;
|
|
71
|
+
}
|
|
@@ -0,0 +1,160 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* Daytona Server API
|
|
6
|
+
* Daytona Server API
|
|
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
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
16
|
+
if (k2 === undefined) k2 = k;
|
|
17
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
18
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
19
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
20
|
+
}
|
|
21
|
+
Object.defineProperty(o, k2, desc);
|
|
22
|
+
}) : (function(o, m, k, k2) {
|
|
23
|
+
if (k2 === undefined) k2 = k;
|
|
24
|
+
o[k2] = m[k];
|
|
25
|
+
}));
|
|
26
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
27
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
28
|
+
}) : function(o, v) {
|
|
29
|
+
o["default"] = v;
|
|
30
|
+
});
|
|
31
|
+
var __importStar = (this && this.__importStar) || function (mod) {
|
|
32
|
+
if (mod && mod.__esModule) return mod;
|
|
33
|
+
var result = {};
|
|
34
|
+
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
35
|
+
__setModuleDefault(result, mod);
|
|
36
|
+
return result;
|
|
37
|
+
};
|
|
38
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
39
|
+
exports.ProviderApi = void 0;
|
|
40
|
+
const runtime = __importStar(require("../runtime"));
|
|
41
|
+
const index_1 = require("../models/index");
|
|
42
|
+
/**
|
|
43
|
+
*
|
|
44
|
+
*/
|
|
45
|
+
class ProviderApi extends runtime.BaseAPI {
|
|
46
|
+
/**
|
|
47
|
+
* Get provider target manifest
|
|
48
|
+
* Get provider target manifest
|
|
49
|
+
*/
|
|
50
|
+
async getTargetManifestRaw(requestParameters, initOverrides) {
|
|
51
|
+
if (requestParameters['provider'] == null) {
|
|
52
|
+
throw new runtime.RequiredError('provider', 'Required parameter "provider" was null or undefined when calling getTargetManifest().');
|
|
53
|
+
}
|
|
54
|
+
const queryParameters = {};
|
|
55
|
+
const headerParameters = {};
|
|
56
|
+
if (this.configuration && this.configuration.apiKey) {
|
|
57
|
+
headerParameters['Authorization'] = await this.configuration.apiKey('Authorization'); // Bearer authentication
|
|
58
|
+
}
|
|
59
|
+
const response = await this.request({
|
|
60
|
+
path: `/provider/{provider}/target-manifest`.replace(`{${'provider'}}`, encodeURIComponent(String(requestParameters['provider']))),
|
|
61
|
+
method: 'GET',
|
|
62
|
+
headers: headerParameters,
|
|
63
|
+
query: queryParameters,
|
|
64
|
+
}, initOverrides);
|
|
65
|
+
return new runtime.JSONApiResponse(response, (jsonValue) => runtime.mapValues(jsonValue, index_1.ProviderProviderTargetPropertyFromJSON));
|
|
66
|
+
}
|
|
67
|
+
/**
|
|
68
|
+
* Get provider target manifest
|
|
69
|
+
* Get provider target manifest
|
|
70
|
+
*/
|
|
71
|
+
async getTargetManifest(requestParameters, initOverrides) {
|
|
72
|
+
const response = await this.getTargetManifestRaw(requestParameters, initOverrides);
|
|
73
|
+
return await response.value();
|
|
74
|
+
}
|
|
75
|
+
/**
|
|
76
|
+
* Install a provider
|
|
77
|
+
* Install a provider
|
|
78
|
+
*/
|
|
79
|
+
async installProviderRaw(requestParameters, initOverrides) {
|
|
80
|
+
if (requestParameters['provider'] == null) {
|
|
81
|
+
throw new runtime.RequiredError('provider', 'Required parameter "provider" was null or undefined when calling installProvider().');
|
|
82
|
+
}
|
|
83
|
+
const queryParameters = {};
|
|
84
|
+
const headerParameters = {};
|
|
85
|
+
headerParameters['Content-Type'] = 'application/json';
|
|
86
|
+
if (this.configuration && this.configuration.apiKey) {
|
|
87
|
+
headerParameters['Authorization'] = await this.configuration.apiKey('Authorization'); // Bearer authentication
|
|
88
|
+
}
|
|
89
|
+
const response = await this.request({
|
|
90
|
+
path: `/provider/install`,
|
|
91
|
+
method: 'POST',
|
|
92
|
+
headers: headerParameters,
|
|
93
|
+
query: queryParameters,
|
|
94
|
+
body: (0, index_1.InstallProviderRequestToJSON)(requestParameters['provider']),
|
|
95
|
+
}, initOverrides);
|
|
96
|
+
return new runtime.VoidApiResponse(response);
|
|
97
|
+
}
|
|
98
|
+
/**
|
|
99
|
+
* Install a provider
|
|
100
|
+
* Install a provider
|
|
101
|
+
*/
|
|
102
|
+
async installProvider(requestParameters, initOverrides) {
|
|
103
|
+
await this.installProviderRaw(requestParameters, initOverrides);
|
|
104
|
+
}
|
|
105
|
+
/**
|
|
106
|
+
* List providers
|
|
107
|
+
* List providers
|
|
108
|
+
*/
|
|
109
|
+
async listProvidersRaw(initOverrides) {
|
|
110
|
+
const queryParameters = {};
|
|
111
|
+
const headerParameters = {};
|
|
112
|
+
if (this.configuration && this.configuration.apiKey) {
|
|
113
|
+
headerParameters['Authorization'] = await this.configuration.apiKey('Authorization'); // Bearer authentication
|
|
114
|
+
}
|
|
115
|
+
const response = await this.request({
|
|
116
|
+
path: `/provider`,
|
|
117
|
+
method: 'GET',
|
|
118
|
+
headers: headerParameters,
|
|
119
|
+
query: queryParameters,
|
|
120
|
+
}, initOverrides);
|
|
121
|
+
return new runtime.JSONApiResponse(response, (jsonValue) => jsonValue.map(index_1.ProviderFromJSON));
|
|
122
|
+
}
|
|
123
|
+
/**
|
|
124
|
+
* List providers
|
|
125
|
+
* List providers
|
|
126
|
+
*/
|
|
127
|
+
async listProviders(initOverrides) {
|
|
128
|
+
const response = await this.listProvidersRaw(initOverrides);
|
|
129
|
+
return await response.value();
|
|
130
|
+
}
|
|
131
|
+
/**
|
|
132
|
+
* Uninstall a provider
|
|
133
|
+
* Uninstall a provider
|
|
134
|
+
*/
|
|
135
|
+
async uninstallProviderRaw(requestParameters, initOverrides) {
|
|
136
|
+
if (requestParameters['provider'] == null) {
|
|
137
|
+
throw new runtime.RequiredError('provider', 'Required parameter "provider" was null or undefined when calling uninstallProvider().');
|
|
138
|
+
}
|
|
139
|
+
const queryParameters = {};
|
|
140
|
+
const headerParameters = {};
|
|
141
|
+
if (this.configuration && this.configuration.apiKey) {
|
|
142
|
+
headerParameters['Authorization'] = await this.configuration.apiKey('Authorization'); // Bearer authentication
|
|
143
|
+
}
|
|
144
|
+
const response = await this.request({
|
|
145
|
+
path: `/provider/{provider}/uninstall`.replace(`{${'provider'}}`, encodeURIComponent(String(requestParameters['provider']))),
|
|
146
|
+
method: 'POST',
|
|
147
|
+
headers: headerParameters,
|
|
148
|
+
query: queryParameters,
|
|
149
|
+
}, initOverrides);
|
|
150
|
+
return new runtime.VoidApiResponse(response);
|
|
151
|
+
}
|
|
152
|
+
/**
|
|
153
|
+
* Uninstall a provider
|
|
154
|
+
* Uninstall a provider
|
|
155
|
+
*/
|
|
156
|
+
async uninstallProvider(requestParameters, initOverrides) {
|
|
157
|
+
await this.uninstallProviderRaw(requestParameters, initOverrides);
|
|
158
|
+
}
|
|
159
|
+
}
|
|
160
|
+
exports.ProviderApi = ProviderApi;
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Daytona Server API
|
|
3
|
+
* Daytona Server API
|
|
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 * as runtime from '../runtime';
|
|
13
|
+
import type { Sample } from '../models/index';
|
|
14
|
+
/**
|
|
15
|
+
*
|
|
16
|
+
*/
|
|
17
|
+
export declare class SampleApi extends runtime.BaseAPI {
|
|
18
|
+
/**
|
|
19
|
+
* List samples
|
|
20
|
+
* List samples
|
|
21
|
+
*/
|
|
22
|
+
listSamplesRaw(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<Array<Sample>>>;
|
|
23
|
+
/**
|
|
24
|
+
* List samples
|
|
25
|
+
* List samples
|
|
26
|
+
*/
|
|
27
|
+
listSamples(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<Array<Sample>>;
|
|
28
|
+
}
|
|
@@ -0,0 +1,73 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* Daytona Server API
|
|
6
|
+
* Daytona Server API
|
|
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
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
16
|
+
if (k2 === undefined) k2 = k;
|
|
17
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
18
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
19
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
20
|
+
}
|
|
21
|
+
Object.defineProperty(o, k2, desc);
|
|
22
|
+
}) : (function(o, m, k, k2) {
|
|
23
|
+
if (k2 === undefined) k2 = k;
|
|
24
|
+
o[k2] = m[k];
|
|
25
|
+
}));
|
|
26
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
27
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
28
|
+
}) : function(o, v) {
|
|
29
|
+
o["default"] = v;
|
|
30
|
+
});
|
|
31
|
+
var __importStar = (this && this.__importStar) || function (mod) {
|
|
32
|
+
if (mod && mod.__esModule) return mod;
|
|
33
|
+
var result = {};
|
|
34
|
+
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
35
|
+
__setModuleDefault(result, mod);
|
|
36
|
+
return result;
|
|
37
|
+
};
|
|
38
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
39
|
+
exports.SampleApi = void 0;
|
|
40
|
+
const runtime = __importStar(require("../runtime"));
|
|
41
|
+
const index_1 = require("../models/index");
|
|
42
|
+
/**
|
|
43
|
+
*
|
|
44
|
+
*/
|
|
45
|
+
class SampleApi extends runtime.BaseAPI {
|
|
46
|
+
/**
|
|
47
|
+
* List samples
|
|
48
|
+
* List samples
|
|
49
|
+
*/
|
|
50
|
+
async listSamplesRaw(initOverrides) {
|
|
51
|
+
const queryParameters = {};
|
|
52
|
+
const headerParameters = {};
|
|
53
|
+
if (this.configuration && this.configuration.apiKey) {
|
|
54
|
+
headerParameters['Authorization'] = await this.configuration.apiKey('Authorization'); // Bearer authentication
|
|
55
|
+
}
|
|
56
|
+
const response = await this.request({
|
|
57
|
+
path: `/sample`,
|
|
58
|
+
method: 'GET',
|
|
59
|
+
headers: headerParameters,
|
|
60
|
+
query: queryParameters,
|
|
61
|
+
}, initOverrides);
|
|
62
|
+
return new runtime.JSONApiResponse(response, (jsonValue) => jsonValue.map(index_1.SampleFromJSON));
|
|
63
|
+
}
|
|
64
|
+
/**
|
|
65
|
+
* List samples
|
|
66
|
+
* List samples
|
|
67
|
+
*/
|
|
68
|
+
async listSamples(initOverrides) {
|
|
69
|
+
const response = await this.listSamplesRaw(initOverrides);
|
|
70
|
+
return await response.value();
|
|
71
|
+
}
|
|
72
|
+
}
|
|
73
|
+
exports.SampleApi = SampleApi;
|
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Daytona Server API
|
|
3
|
+
* Daytona Server API
|
|
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 * as runtime from '../runtime';
|
|
13
|
+
import type { NetworkKey, ServerConfig } from '../models/index';
|
|
14
|
+
export interface SetConfigRequest {
|
|
15
|
+
config: ServerConfig;
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
*
|
|
19
|
+
*/
|
|
20
|
+
export declare class ServerApi extends runtime.BaseAPI {
|
|
21
|
+
/**
|
|
22
|
+
* Generate a new authentication key
|
|
23
|
+
* Generate a new authentication key
|
|
24
|
+
*/
|
|
25
|
+
generateNetworkKeyRaw(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<NetworkKey>>;
|
|
26
|
+
/**
|
|
27
|
+
* Generate a new authentication key
|
|
28
|
+
* Generate a new authentication key
|
|
29
|
+
*/
|
|
30
|
+
generateNetworkKey(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<NetworkKey>;
|
|
31
|
+
/**
|
|
32
|
+
* Get the server configuration
|
|
33
|
+
* Get the server configuration
|
|
34
|
+
*/
|
|
35
|
+
getConfigRaw(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<ServerConfig>>;
|
|
36
|
+
/**
|
|
37
|
+
* Get the server configuration
|
|
38
|
+
* Get the server configuration
|
|
39
|
+
*/
|
|
40
|
+
getConfig(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<ServerConfig>;
|
|
41
|
+
/**
|
|
42
|
+
* List server log files
|
|
43
|
+
* List server log files
|
|
44
|
+
*/
|
|
45
|
+
getServerLogFilesRaw(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<Array<string>>>;
|
|
46
|
+
/**
|
|
47
|
+
* List server log files
|
|
48
|
+
* List server log files
|
|
49
|
+
*/
|
|
50
|
+
getServerLogFiles(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<Array<string>>;
|
|
51
|
+
/**
|
|
52
|
+
* Set the server configuration
|
|
53
|
+
* Set the server configuration
|
|
54
|
+
*/
|
|
55
|
+
setConfigRaw(requestParameters: SetConfigRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<ServerConfig>>;
|
|
56
|
+
/**
|
|
57
|
+
* Set the server configuration
|
|
58
|
+
* Set the server configuration
|
|
59
|
+
*/
|
|
60
|
+
setConfig(requestParameters: SetConfigRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<ServerConfig>;
|
|
61
|
+
}
|