@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,55 @@
|
|
|
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
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16
|
+
exports.CachedBuildToJSONTyped = exports.CachedBuildToJSON = exports.CachedBuildFromJSONTyped = exports.CachedBuildFromJSON = exports.instanceOfCachedBuild = void 0;
|
|
17
|
+
/**
|
|
18
|
+
* Check if a given object implements the CachedBuild interface.
|
|
19
|
+
*/
|
|
20
|
+
function instanceOfCachedBuild(value) {
|
|
21
|
+
if (!('image' in value) || value['image'] === undefined)
|
|
22
|
+
return false;
|
|
23
|
+
if (!('user' in value) || value['user'] === undefined)
|
|
24
|
+
return false;
|
|
25
|
+
return true;
|
|
26
|
+
}
|
|
27
|
+
exports.instanceOfCachedBuild = instanceOfCachedBuild;
|
|
28
|
+
function CachedBuildFromJSON(json) {
|
|
29
|
+
return CachedBuildFromJSONTyped(json, false);
|
|
30
|
+
}
|
|
31
|
+
exports.CachedBuildFromJSON = CachedBuildFromJSON;
|
|
32
|
+
function CachedBuildFromJSONTyped(json, ignoreDiscriminator) {
|
|
33
|
+
if (json == null) {
|
|
34
|
+
return json;
|
|
35
|
+
}
|
|
36
|
+
return {
|
|
37
|
+
image: json['image'],
|
|
38
|
+
user: json['user'],
|
|
39
|
+
};
|
|
40
|
+
}
|
|
41
|
+
exports.CachedBuildFromJSONTyped = CachedBuildFromJSONTyped;
|
|
42
|
+
function CachedBuildToJSON(json) {
|
|
43
|
+
return CachedBuildToJSONTyped(json, false);
|
|
44
|
+
}
|
|
45
|
+
exports.CachedBuildToJSON = CachedBuildToJSON;
|
|
46
|
+
function CachedBuildToJSONTyped(value, ignoreDiscriminator = false) {
|
|
47
|
+
if (value == null) {
|
|
48
|
+
return value;
|
|
49
|
+
}
|
|
50
|
+
return {
|
|
51
|
+
image: value['image'],
|
|
52
|
+
user: value['user'],
|
|
53
|
+
};
|
|
54
|
+
}
|
|
55
|
+
exports.CachedBuildToJSONTyped = CachedBuildToJSONTyped;
|
|
@@ -0,0 +1,25 @@
|
|
|
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
|
+
/**
|
|
13
|
+
*
|
|
14
|
+
* @export
|
|
15
|
+
*/
|
|
16
|
+
export declare const CloneTarget: {
|
|
17
|
+
readonly CloneTargetBranch: "branch";
|
|
18
|
+
readonly CloneTargetCommit: "commit";
|
|
19
|
+
};
|
|
20
|
+
export type CloneTarget = (typeof CloneTarget)[keyof typeof CloneTarget];
|
|
21
|
+
export declare function instanceOfCloneTarget(value: any): boolean;
|
|
22
|
+
export declare function CloneTargetFromJSON(json: any): CloneTarget;
|
|
23
|
+
export declare function CloneTargetFromJSONTyped(json: any, ignoreDiscriminator: boolean): CloneTarget;
|
|
24
|
+
export declare function CloneTargetToJSON(value?: CloneTarget | null): any;
|
|
25
|
+
export declare function CloneTargetToJSONTyped(value: any, ignoreDiscriminator: boolean): CloneTarget;
|
|
@@ -0,0 +1,51 @@
|
|
|
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
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16
|
+
exports.CloneTargetToJSONTyped = exports.CloneTargetToJSON = exports.CloneTargetFromJSONTyped = exports.CloneTargetFromJSON = exports.instanceOfCloneTarget = exports.CloneTarget = void 0;
|
|
17
|
+
/**
|
|
18
|
+
*
|
|
19
|
+
* @export
|
|
20
|
+
*/
|
|
21
|
+
exports.CloneTarget = {
|
|
22
|
+
CloneTargetBranch: 'branch',
|
|
23
|
+
CloneTargetCommit: 'commit',
|
|
24
|
+
};
|
|
25
|
+
function instanceOfCloneTarget(value) {
|
|
26
|
+
for (const key in exports.CloneTarget) {
|
|
27
|
+
if (Object.prototype.hasOwnProperty.call(exports.CloneTarget, key)) {
|
|
28
|
+
if (exports.CloneTarget[key] === value) {
|
|
29
|
+
return true;
|
|
30
|
+
}
|
|
31
|
+
}
|
|
32
|
+
}
|
|
33
|
+
return false;
|
|
34
|
+
}
|
|
35
|
+
exports.instanceOfCloneTarget = instanceOfCloneTarget;
|
|
36
|
+
function CloneTargetFromJSON(json) {
|
|
37
|
+
return CloneTargetFromJSONTyped(json, false);
|
|
38
|
+
}
|
|
39
|
+
exports.CloneTargetFromJSON = CloneTargetFromJSON;
|
|
40
|
+
function CloneTargetFromJSONTyped(json, ignoreDiscriminator) {
|
|
41
|
+
return json;
|
|
42
|
+
}
|
|
43
|
+
exports.CloneTargetFromJSONTyped = CloneTargetFromJSONTyped;
|
|
44
|
+
function CloneTargetToJSON(value) {
|
|
45
|
+
return value;
|
|
46
|
+
}
|
|
47
|
+
exports.CloneTargetToJSON = CloneTargetToJSON;
|
|
48
|
+
function CloneTargetToJSONTyped(value, ignoreDiscriminator) {
|
|
49
|
+
return value;
|
|
50
|
+
}
|
|
51
|
+
exports.CloneTargetToJSONTyped = CloneTargetToJSONTyped;
|
|
@@ -0,0 +1,38 @@
|
|
|
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
|
+
/**
|
|
13
|
+
*
|
|
14
|
+
* @export
|
|
15
|
+
* @interface CompletionContext
|
|
16
|
+
*/
|
|
17
|
+
export interface CompletionContext {
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof CompletionContext
|
|
22
|
+
*/
|
|
23
|
+
triggerCharacter?: string;
|
|
24
|
+
/**
|
|
25
|
+
*
|
|
26
|
+
* @type {number}
|
|
27
|
+
* @memberof CompletionContext
|
|
28
|
+
*/
|
|
29
|
+
triggerKind: number;
|
|
30
|
+
}
|
|
31
|
+
/**
|
|
32
|
+
* Check if a given object implements the CompletionContext interface.
|
|
33
|
+
*/
|
|
34
|
+
export declare function instanceOfCompletionContext(value: object): value is CompletionContext;
|
|
35
|
+
export declare function CompletionContextFromJSON(json: any): CompletionContext;
|
|
36
|
+
export declare function CompletionContextFromJSONTyped(json: any, ignoreDiscriminator: boolean): CompletionContext;
|
|
37
|
+
export declare function CompletionContextToJSON(json: any): CompletionContext;
|
|
38
|
+
export declare function CompletionContextToJSONTyped(value?: CompletionContext | null, ignoreDiscriminator?: boolean): any;
|
|
@@ -0,0 +1,53 @@
|
|
|
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
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16
|
+
exports.CompletionContextToJSONTyped = exports.CompletionContextToJSON = exports.CompletionContextFromJSONTyped = exports.CompletionContextFromJSON = exports.instanceOfCompletionContext = void 0;
|
|
17
|
+
/**
|
|
18
|
+
* Check if a given object implements the CompletionContext interface.
|
|
19
|
+
*/
|
|
20
|
+
function instanceOfCompletionContext(value) {
|
|
21
|
+
if (!('triggerKind' in value) || value['triggerKind'] === undefined)
|
|
22
|
+
return false;
|
|
23
|
+
return true;
|
|
24
|
+
}
|
|
25
|
+
exports.instanceOfCompletionContext = instanceOfCompletionContext;
|
|
26
|
+
function CompletionContextFromJSON(json) {
|
|
27
|
+
return CompletionContextFromJSONTyped(json, false);
|
|
28
|
+
}
|
|
29
|
+
exports.CompletionContextFromJSON = CompletionContextFromJSON;
|
|
30
|
+
function CompletionContextFromJSONTyped(json, ignoreDiscriminator) {
|
|
31
|
+
if (json == null) {
|
|
32
|
+
return json;
|
|
33
|
+
}
|
|
34
|
+
return {
|
|
35
|
+
triggerCharacter: json['triggerCharacter'] == null ? undefined : json['triggerCharacter'],
|
|
36
|
+
triggerKind: json['triggerKind'],
|
|
37
|
+
};
|
|
38
|
+
}
|
|
39
|
+
exports.CompletionContextFromJSONTyped = CompletionContextFromJSONTyped;
|
|
40
|
+
function CompletionContextToJSON(json) {
|
|
41
|
+
return CompletionContextToJSONTyped(json, false);
|
|
42
|
+
}
|
|
43
|
+
exports.CompletionContextToJSON = CompletionContextToJSON;
|
|
44
|
+
function CompletionContextToJSONTyped(value, ignoreDiscriminator = false) {
|
|
45
|
+
if (value == null) {
|
|
46
|
+
return value;
|
|
47
|
+
}
|
|
48
|
+
return {
|
|
49
|
+
triggerCharacter: value['triggerCharacter'],
|
|
50
|
+
triggerKind: value['triggerKind'],
|
|
51
|
+
};
|
|
52
|
+
}
|
|
53
|
+
exports.CompletionContextToJSONTyped = CompletionContextToJSONTyped;
|
|
@@ -0,0 +1,68 @@
|
|
|
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
|
+
/**
|
|
13
|
+
*
|
|
14
|
+
* @export
|
|
15
|
+
* @interface CompletionItem
|
|
16
|
+
*/
|
|
17
|
+
export interface CompletionItem {
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof CompletionItem
|
|
22
|
+
*/
|
|
23
|
+
detail?: string;
|
|
24
|
+
/**
|
|
25
|
+
*
|
|
26
|
+
* @type {object}
|
|
27
|
+
* @memberof CompletionItem
|
|
28
|
+
*/
|
|
29
|
+
documentation?: object;
|
|
30
|
+
/**
|
|
31
|
+
*
|
|
32
|
+
* @type {string}
|
|
33
|
+
* @memberof CompletionItem
|
|
34
|
+
*/
|
|
35
|
+
filterText?: string;
|
|
36
|
+
/**
|
|
37
|
+
*
|
|
38
|
+
* @type {string}
|
|
39
|
+
* @memberof CompletionItem
|
|
40
|
+
*/
|
|
41
|
+
insertText?: string;
|
|
42
|
+
/**
|
|
43
|
+
*
|
|
44
|
+
* @type {number}
|
|
45
|
+
* @memberof CompletionItem
|
|
46
|
+
*/
|
|
47
|
+
kind?: number;
|
|
48
|
+
/**
|
|
49
|
+
*
|
|
50
|
+
* @type {string}
|
|
51
|
+
* @memberof CompletionItem
|
|
52
|
+
*/
|
|
53
|
+
label: string;
|
|
54
|
+
/**
|
|
55
|
+
*
|
|
56
|
+
* @type {string}
|
|
57
|
+
* @memberof CompletionItem
|
|
58
|
+
*/
|
|
59
|
+
sortText?: string;
|
|
60
|
+
}
|
|
61
|
+
/**
|
|
62
|
+
* Check if a given object implements the CompletionItem interface.
|
|
63
|
+
*/
|
|
64
|
+
export declare function instanceOfCompletionItem(value: object): value is CompletionItem;
|
|
65
|
+
export declare function CompletionItemFromJSON(json: any): CompletionItem;
|
|
66
|
+
export declare function CompletionItemFromJSONTyped(json: any, ignoreDiscriminator: boolean): CompletionItem;
|
|
67
|
+
export declare function CompletionItemToJSON(json: any): CompletionItem;
|
|
68
|
+
export declare function CompletionItemToJSONTyped(value?: CompletionItem | null, ignoreDiscriminator?: boolean): any;
|
|
@@ -0,0 +1,63 @@
|
|
|
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
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16
|
+
exports.CompletionItemToJSONTyped = exports.CompletionItemToJSON = exports.CompletionItemFromJSONTyped = exports.CompletionItemFromJSON = exports.instanceOfCompletionItem = void 0;
|
|
17
|
+
/**
|
|
18
|
+
* Check if a given object implements the CompletionItem interface.
|
|
19
|
+
*/
|
|
20
|
+
function instanceOfCompletionItem(value) {
|
|
21
|
+
if (!('label' in value) || value['label'] === undefined)
|
|
22
|
+
return false;
|
|
23
|
+
return true;
|
|
24
|
+
}
|
|
25
|
+
exports.instanceOfCompletionItem = instanceOfCompletionItem;
|
|
26
|
+
function CompletionItemFromJSON(json) {
|
|
27
|
+
return CompletionItemFromJSONTyped(json, false);
|
|
28
|
+
}
|
|
29
|
+
exports.CompletionItemFromJSON = CompletionItemFromJSON;
|
|
30
|
+
function CompletionItemFromJSONTyped(json, ignoreDiscriminator) {
|
|
31
|
+
if (json == null) {
|
|
32
|
+
return json;
|
|
33
|
+
}
|
|
34
|
+
return {
|
|
35
|
+
detail: json['detail'] == null ? undefined : json['detail'],
|
|
36
|
+
documentation: json['documentation'] == null ? undefined : json['documentation'],
|
|
37
|
+
filterText: json['filterText'] == null ? undefined : json['filterText'],
|
|
38
|
+
insertText: json['insertText'] == null ? undefined : json['insertText'],
|
|
39
|
+
kind: json['kind'] == null ? undefined : json['kind'],
|
|
40
|
+
label: json['label'],
|
|
41
|
+
sortText: json['sortText'] == null ? undefined : json['sortText'],
|
|
42
|
+
};
|
|
43
|
+
}
|
|
44
|
+
exports.CompletionItemFromJSONTyped = CompletionItemFromJSONTyped;
|
|
45
|
+
function CompletionItemToJSON(json) {
|
|
46
|
+
return CompletionItemToJSONTyped(json, false);
|
|
47
|
+
}
|
|
48
|
+
exports.CompletionItemToJSON = CompletionItemToJSON;
|
|
49
|
+
function CompletionItemToJSONTyped(value, ignoreDiscriminator = false) {
|
|
50
|
+
if (value == null) {
|
|
51
|
+
return value;
|
|
52
|
+
}
|
|
53
|
+
return {
|
|
54
|
+
detail: value['detail'],
|
|
55
|
+
documentation: value['documentation'],
|
|
56
|
+
filterText: value['filterText'],
|
|
57
|
+
insertText: value['insertText'],
|
|
58
|
+
kind: value['kind'],
|
|
59
|
+
label: value['label'],
|
|
60
|
+
sortText: value['sortText'],
|
|
61
|
+
};
|
|
62
|
+
}
|
|
63
|
+
exports.CompletionItemToJSONTyped = CompletionItemToJSONTyped;
|
|
@@ -0,0 +1,39 @@
|
|
|
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 type { CompletionItem } from './CompletionItem';
|
|
13
|
+
/**
|
|
14
|
+
*
|
|
15
|
+
* @export
|
|
16
|
+
* @interface CompletionList
|
|
17
|
+
*/
|
|
18
|
+
export interface CompletionList {
|
|
19
|
+
/**
|
|
20
|
+
*
|
|
21
|
+
* @type {boolean}
|
|
22
|
+
* @memberof CompletionList
|
|
23
|
+
*/
|
|
24
|
+
isIncomplete: boolean;
|
|
25
|
+
/**
|
|
26
|
+
*
|
|
27
|
+
* @type {Array<CompletionItem>}
|
|
28
|
+
* @memberof CompletionList
|
|
29
|
+
*/
|
|
30
|
+
items: Array<CompletionItem>;
|
|
31
|
+
}
|
|
32
|
+
/**
|
|
33
|
+
* Check if a given object implements the CompletionList interface.
|
|
34
|
+
*/
|
|
35
|
+
export declare function instanceOfCompletionList(value: object): value is CompletionList;
|
|
36
|
+
export declare function CompletionListFromJSON(json: any): CompletionList;
|
|
37
|
+
export declare function CompletionListFromJSONTyped(json: any, ignoreDiscriminator: boolean): CompletionList;
|
|
38
|
+
export declare function CompletionListToJSON(json: any): CompletionList;
|
|
39
|
+
export declare function CompletionListToJSONTyped(value?: CompletionList | null, ignoreDiscriminator?: boolean): any;
|
|
@@ -0,0 +1,56 @@
|
|
|
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
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16
|
+
exports.CompletionListToJSONTyped = exports.CompletionListToJSON = exports.CompletionListFromJSONTyped = exports.CompletionListFromJSON = exports.instanceOfCompletionList = void 0;
|
|
17
|
+
const CompletionItem_1 = require("./CompletionItem");
|
|
18
|
+
/**
|
|
19
|
+
* Check if a given object implements the CompletionList interface.
|
|
20
|
+
*/
|
|
21
|
+
function instanceOfCompletionList(value) {
|
|
22
|
+
if (!('isIncomplete' in value) || value['isIncomplete'] === undefined)
|
|
23
|
+
return false;
|
|
24
|
+
if (!('items' in value) || value['items'] === undefined)
|
|
25
|
+
return false;
|
|
26
|
+
return true;
|
|
27
|
+
}
|
|
28
|
+
exports.instanceOfCompletionList = instanceOfCompletionList;
|
|
29
|
+
function CompletionListFromJSON(json) {
|
|
30
|
+
return CompletionListFromJSONTyped(json, false);
|
|
31
|
+
}
|
|
32
|
+
exports.CompletionListFromJSON = CompletionListFromJSON;
|
|
33
|
+
function CompletionListFromJSONTyped(json, ignoreDiscriminator) {
|
|
34
|
+
if (json == null) {
|
|
35
|
+
return json;
|
|
36
|
+
}
|
|
37
|
+
return {
|
|
38
|
+
isIncomplete: json['isIncomplete'],
|
|
39
|
+
items: json['items'].map(CompletionItem_1.CompletionItemFromJSON),
|
|
40
|
+
};
|
|
41
|
+
}
|
|
42
|
+
exports.CompletionListFromJSONTyped = CompletionListFromJSONTyped;
|
|
43
|
+
function CompletionListToJSON(json) {
|
|
44
|
+
return CompletionListToJSONTyped(json, false);
|
|
45
|
+
}
|
|
46
|
+
exports.CompletionListToJSON = CompletionListToJSON;
|
|
47
|
+
function CompletionListToJSONTyped(value, ignoreDiscriminator = false) {
|
|
48
|
+
if (value == null) {
|
|
49
|
+
return value;
|
|
50
|
+
}
|
|
51
|
+
return {
|
|
52
|
+
isIncomplete: value['isIncomplete'],
|
|
53
|
+
items: value['items'].map(CompletionItem_1.CompletionItemToJSON),
|
|
54
|
+
};
|
|
55
|
+
}
|
|
56
|
+
exports.CompletionListToJSONTyped = CompletionListToJSONTyped;
|
|
@@ -0,0 +1,38 @@
|
|
|
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
|
+
/**
|
|
13
|
+
*
|
|
14
|
+
* @export
|
|
15
|
+
* @interface ContainerConfig
|
|
16
|
+
*/
|
|
17
|
+
export interface ContainerConfig {
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof ContainerConfig
|
|
22
|
+
*/
|
|
23
|
+
image: string;
|
|
24
|
+
/**
|
|
25
|
+
*
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof ContainerConfig
|
|
28
|
+
*/
|
|
29
|
+
user: string;
|
|
30
|
+
}
|
|
31
|
+
/**
|
|
32
|
+
* Check if a given object implements the ContainerConfig interface.
|
|
33
|
+
*/
|
|
34
|
+
export declare function instanceOfContainerConfig(value: object): value is ContainerConfig;
|
|
35
|
+
export declare function ContainerConfigFromJSON(json: any): ContainerConfig;
|
|
36
|
+
export declare function ContainerConfigFromJSONTyped(json: any, ignoreDiscriminator: boolean): ContainerConfig;
|
|
37
|
+
export declare function ContainerConfigToJSON(json: any): ContainerConfig;
|
|
38
|
+
export declare function ContainerConfigToJSONTyped(value?: ContainerConfig | null, ignoreDiscriminator?: boolean): any;
|
|
@@ -0,0 +1,55 @@
|
|
|
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
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16
|
+
exports.ContainerConfigToJSONTyped = exports.ContainerConfigToJSON = exports.ContainerConfigFromJSONTyped = exports.ContainerConfigFromJSON = exports.instanceOfContainerConfig = void 0;
|
|
17
|
+
/**
|
|
18
|
+
* Check if a given object implements the ContainerConfig interface.
|
|
19
|
+
*/
|
|
20
|
+
function instanceOfContainerConfig(value) {
|
|
21
|
+
if (!('image' in value) || value['image'] === undefined)
|
|
22
|
+
return false;
|
|
23
|
+
if (!('user' in value) || value['user'] === undefined)
|
|
24
|
+
return false;
|
|
25
|
+
return true;
|
|
26
|
+
}
|
|
27
|
+
exports.instanceOfContainerConfig = instanceOfContainerConfig;
|
|
28
|
+
function ContainerConfigFromJSON(json) {
|
|
29
|
+
return ContainerConfigFromJSONTyped(json, false);
|
|
30
|
+
}
|
|
31
|
+
exports.ContainerConfigFromJSON = ContainerConfigFromJSON;
|
|
32
|
+
function ContainerConfigFromJSONTyped(json, ignoreDiscriminator) {
|
|
33
|
+
if (json == null) {
|
|
34
|
+
return json;
|
|
35
|
+
}
|
|
36
|
+
return {
|
|
37
|
+
image: json['image'],
|
|
38
|
+
user: json['user'],
|
|
39
|
+
};
|
|
40
|
+
}
|
|
41
|
+
exports.ContainerConfigFromJSONTyped = ContainerConfigFromJSONTyped;
|
|
42
|
+
function ContainerConfigToJSON(json) {
|
|
43
|
+
return ContainerConfigToJSONTyped(json, false);
|
|
44
|
+
}
|
|
45
|
+
exports.ContainerConfigToJSON = ContainerConfigToJSON;
|
|
46
|
+
function ContainerConfigToJSONTyped(value, ignoreDiscriminator = false) {
|
|
47
|
+
if (value == null) {
|
|
48
|
+
return value;
|
|
49
|
+
}
|
|
50
|
+
return {
|
|
51
|
+
image: value['image'],
|
|
52
|
+
user: value['user'],
|
|
53
|
+
};
|
|
54
|
+
}
|
|
55
|
+
exports.ContainerConfigToJSONTyped = ContainerConfigToJSONTyped;
|
|
@@ -0,0 +1,44 @@
|
|
|
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
|
+
/**
|
|
13
|
+
*
|
|
14
|
+
* @export
|
|
15
|
+
* @interface ContainerRegistry
|
|
16
|
+
*/
|
|
17
|
+
export interface ContainerRegistry {
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof ContainerRegistry
|
|
22
|
+
*/
|
|
23
|
+
password: string;
|
|
24
|
+
/**
|
|
25
|
+
*
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof ContainerRegistry
|
|
28
|
+
*/
|
|
29
|
+
server: string;
|
|
30
|
+
/**
|
|
31
|
+
*
|
|
32
|
+
* @type {string}
|
|
33
|
+
* @memberof ContainerRegistry
|
|
34
|
+
*/
|
|
35
|
+
username: string;
|
|
36
|
+
}
|
|
37
|
+
/**
|
|
38
|
+
* Check if a given object implements the ContainerRegistry interface.
|
|
39
|
+
*/
|
|
40
|
+
export declare function instanceOfContainerRegistry(value: object): value is ContainerRegistry;
|
|
41
|
+
export declare function ContainerRegistryFromJSON(json: any): ContainerRegistry;
|
|
42
|
+
export declare function ContainerRegistryFromJSONTyped(json: any, ignoreDiscriminator: boolean): ContainerRegistry;
|
|
43
|
+
export declare function ContainerRegistryToJSON(json: any): ContainerRegistry;
|
|
44
|
+
export declare function ContainerRegistryToJSONTyped(value?: ContainerRegistry | null, ignoreDiscriminator?: boolean): any;
|
|
@@ -0,0 +1,59 @@
|
|
|
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
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16
|
+
exports.ContainerRegistryToJSONTyped = exports.ContainerRegistryToJSON = exports.ContainerRegistryFromJSONTyped = exports.ContainerRegistryFromJSON = exports.instanceOfContainerRegistry = void 0;
|
|
17
|
+
/**
|
|
18
|
+
* Check if a given object implements the ContainerRegistry interface.
|
|
19
|
+
*/
|
|
20
|
+
function instanceOfContainerRegistry(value) {
|
|
21
|
+
if (!('password' in value) || value['password'] === undefined)
|
|
22
|
+
return false;
|
|
23
|
+
if (!('server' in value) || value['server'] === undefined)
|
|
24
|
+
return false;
|
|
25
|
+
if (!('username' in value) || value['username'] === undefined)
|
|
26
|
+
return false;
|
|
27
|
+
return true;
|
|
28
|
+
}
|
|
29
|
+
exports.instanceOfContainerRegistry = instanceOfContainerRegistry;
|
|
30
|
+
function ContainerRegistryFromJSON(json) {
|
|
31
|
+
return ContainerRegistryFromJSONTyped(json, false);
|
|
32
|
+
}
|
|
33
|
+
exports.ContainerRegistryFromJSON = ContainerRegistryFromJSON;
|
|
34
|
+
function ContainerRegistryFromJSONTyped(json, ignoreDiscriminator) {
|
|
35
|
+
if (json == null) {
|
|
36
|
+
return json;
|
|
37
|
+
}
|
|
38
|
+
return {
|
|
39
|
+
password: json['password'],
|
|
40
|
+
server: json['server'],
|
|
41
|
+
username: json['username'],
|
|
42
|
+
};
|
|
43
|
+
}
|
|
44
|
+
exports.ContainerRegistryFromJSONTyped = ContainerRegistryFromJSONTyped;
|
|
45
|
+
function ContainerRegistryToJSON(json) {
|
|
46
|
+
return ContainerRegistryToJSONTyped(json, false);
|
|
47
|
+
}
|
|
48
|
+
exports.ContainerRegistryToJSON = ContainerRegistryToJSON;
|
|
49
|
+
function ContainerRegistryToJSONTyped(value, ignoreDiscriminator = false) {
|
|
50
|
+
if (value == null) {
|
|
51
|
+
return value;
|
|
52
|
+
}
|
|
53
|
+
return {
|
|
54
|
+
password: value['password'],
|
|
55
|
+
server: value['server'],
|
|
56
|
+
username: value['username'],
|
|
57
|
+
};
|
|
58
|
+
}
|
|
59
|
+
exports.ContainerRegistryToJSONTyped = ContainerRegistryToJSONTyped;
|