@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,52 @@
|
|
|
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 CreateBuildDTO
|
|
16
|
+
*/
|
|
17
|
+
export interface CreateBuildDTO {
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof CreateBuildDTO
|
|
22
|
+
*/
|
|
23
|
+
branch: string;
|
|
24
|
+
/**
|
|
25
|
+
*
|
|
26
|
+
* @type {{ [key: string]: string; }}
|
|
27
|
+
* @memberof CreateBuildDTO
|
|
28
|
+
*/
|
|
29
|
+
envVars: {
|
|
30
|
+
[key: string]: string;
|
|
31
|
+
};
|
|
32
|
+
/**
|
|
33
|
+
*
|
|
34
|
+
* @type {string}
|
|
35
|
+
* @memberof CreateBuildDTO
|
|
36
|
+
*/
|
|
37
|
+
prebuildId?: string;
|
|
38
|
+
/**
|
|
39
|
+
*
|
|
40
|
+
* @type {string}
|
|
41
|
+
* @memberof CreateBuildDTO
|
|
42
|
+
*/
|
|
43
|
+
projectConfigName: string;
|
|
44
|
+
}
|
|
45
|
+
/**
|
|
46
|
+
* Check if a given object implements the CreateBuildDTO interface.
|
|
47
|
+
*/
|
|
48
|
+
export declare function instanceOfCreateBuildDTO(value: object): value is CreateBuildDTO;
|
|
49
|
+
export declare function CreateBuildDTOFromJSON(json: any): CreateBuildDTO;
|
|
50
|
+
export declare function CreateBuildDTOFromJSONTyped(json: any, ignoreDiscriminator: boolean): CreateBuildDTO;
|
|
51
|
+
export declare function CreateBuildDTOToJSON(json: any): CreateBuildDTO;
|
|
52
|
+
export declare function CreateBuildDTOToJSONTyped(value?: CreateBuildDTO | null, ignoreDiscriminator?: boolean): any;
|
|
@@ -0,0 +1,62 @@
|
|
|
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.CreateBuildDTOToJSONTyped = exports.CreateBuildDTOToJSON = exports.CreateBuildDTOFromJSONTyped = exports.CreateBuildDTOFromJSON = exports.instanceOfCreateBuildDTO = void 0;
|
|
17
|
+
/**
|
|
18
|
+
* Check if a given object implements the CreateBuildDTO interface.
|
|
19
|
+
*/
|
|
20
|
+
function instanceOfCreateBuildDTO(value) {
|
|
21
|
+
if (!('branch' in value) || value['branch'] === undefined)
|
|
22
|
+
return false;
|
|
23
|
+
if (!('envVars' in value) || value['envVars'] === undefined)
|
|
24
|
+
return false;
|
|
25
|
+
if (!('projectConfigName' in value) ||
|
|
26
|
+
value['projectConfigName'] === undefined)
|
|
27
|
+
return false;
|
|
28
|
+
return true;
|
|
29
|
+
}
|
|
30
|
+
exports.instanceOfCreateBuildDTO = instanceOfCreateBuildDTO;
|
|
31
|
+
function CreateBuildDTOFromJSON(json) {
|
|
32
|
+
return CreateBuildDTOFromJSONTyped(json, false);
|
|
33
|
+
}
|
|
34
|
+
exports.CreateBuildDTOFromJSON = CreateBuildDTOFromJSON;
|
|
35
|
+
function CreateBuildDTOFromJSONTyped(json, ignoreDiscriminator) {
|
|
36
|
+
if (json == null) {
|
|
37
|
+
return json;
|
|
38
|
+
}
|
|
39
|
+
return {
|
|
40
|
+
branch: json['branch'],
|
|
41
|
+
envVars: json['envVars'],
|
|
42
|
+
prebuildId: json['prebuildId'] == null ? undefined : json['prebuildId'],
|
|
43
|
+
projectConfigName: json['projectConfigName'],
|
|
44
|
+
};
|
|
45
|
+
}
|
|
46
|
+
exports.CreateBuildDTOFromJSONTyped = CreateBuildDTOFromJSONTyped;
|
|
47
|
+
function CreateBuildDTOToJSON(json) {
|
|
48
|
+
return CreateBuildDTOToJSONTyped(json, false);
|
|
49
|
+
}
|
|
50
|
+
exports.CreateBuildDTOToJSON = CreateBuildDTOToJSON;
|
|
51
|
+
function CreateBuildDTOToJSONTyped(value, ignoreDiscriminator = false) {
|
|
52
|
+
if (value == null) {
|
|
53
|
+
return value;
|
|
54
|
+
}
|
|
55
|
+
return {
|
|
56
|
+
branch: value['branch'],
|
|
57
|
+
envVars: value['envVars'],
|
|
58
|
+
prebuildId: value['prebuildId'],
|
|
59
|
+
projectConfigName: value['projectConfigName'],
|
|
60
|
+
};
|
|
61
|
+
}
|
|
62
|
+
exports.CreateBuildDTOToJSONTyped = CreateBuildDTOToJSONTyped;
|
|
@@ -0,0 +1,56 @@
|
|
|
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 CreatePrebuildDTO
|
|
16
|
+
*/
|
|
17
|
+
export interface CreatePrebuildDTO {
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof CreatePrebuildDTO
|
|
22
|
+
*/
|
|
23
|
+
branch?: string;
|
|
24
|
+
/**
|
|
25
|
+
*
|
|
26
|
+
* @type {number}
|
|
27
|
+
* @memberof CreatePrebuildDTO
|
|
28
|
+
*/
|
|
29
|
+
commitInterval?: number;
|
|
30
|
+
/**
|
|
31
|
+
*
|
|
32
|
+
* @type {string}
|
|
33
|
+
* @memberof CreatePrebuildDTO
|
|
34
|
+
*/
|
|
35
|
+
id?: string;
|
|
36
|
+
/**
|
|
37
|
+
*
|
|
38
|
+
* @type {number}
|
|
39
|
+
* @memberof CreatePrebuildDTO
|
|
40
|
+
*/
|
|
41
|
+
retention: number;
|
|
42
|
+
/**
|
|
43
|
+
*
|
|
44
|
+
* @type {Array<string>}
|
|
45
|
+
* @memberof CreatePrebuildDTO
|
|
46
|
+
*/
|
|
47
|
+
triggerFiles?: Array<string>;
|
|
48
|
+
}
|
|
49
|
+
/**
|
|
50
|
+
* Check if a given object implements the CreatePrebuildDTO interface.
|
|
51
|
+
*/
|
|
52
|
+
export declare function instanceOfCreatePrebuildDTO(value: object): value is CreatePrebuildDTO;
|
|
53
|
+
export declare function CreatePrebuildDTOFromJSON(json: any): CreatePrebuildDTO;
|
|
54
|
+
export declare function CreatePrebuildDTOFromJSONTyped(json: any, ignoreDiscriminator: boolean): CreatePrebuildDTO;
|
|
55
|
+
export declare function CreatePrebuildDTOToJSON(json: any): CreatePrebuildDTO;
|
|
56
|
+
export declare function CreatePrebuildDTOToJSONTyped(value?: CreatePrebuildDTO | 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.CreatePrebuildDTOToJSONTyped = exports.CreatePrebuildDTOToJSON = exports.CreatePrebuildDTOFromJSONTyped = exports.CreatePrebuildDTOFromJSON = exports.instanceOfCreatePrebuildDTO = void 0;
|
|
17
|
+
/**
|
|
18
|
+
* Check if a given object implements the CreatePrebuildDTO interface.
|
|
19
|
+
*/
|
|
20
|
+
function instanceOfCreatePrebuildDTO(value) {
|
|
21
|
+
if (!('retention' in value) || value['retention'] === undefined)
|
|
22
|
+
return false;
|
|
23
|
+
return true;
|
|
24
|
+
}
|
|
25
|
+
exports.instanceOfCreatePrebuildDTO = instanceOfCreatePrebuildDTO;
|
|
26
|
+
function CreatePrebuildDTOFromJSON(json) {
|
|
27
|
+
return CreatePrebuildDTOFromJSONTyped(json, false);
|
|
28
|
+
}
|
|
29
|
+
exports.CreatePrebuildDTOFromJSON = CreatePrebuildDTOFromJSON;
|
|
30
|
+
function CreatePrebuildDTOFromJSONTyped(json, ignoreDiscriminator) {
|
|
31
|
+
if (json == null) {
|
|
32
|
+
return json;
|
|
33
|
+
}
|
|
34
|
+
return {
|
|
35
|
+
branch: json['branch'] == null ? undefined : json['branch'],
|
|
36
|
+
commitInterval: json['commitInterval'] == null ? undefined : json['commitInterval'],
|
|
37
|
+
id: json['id'] == null ? undefined : json['id'],
|
|
38
|
+
retention: json['retention'],
|
|
39
|
+
triggerFiles: json['triggerFiles'] == null ? undefined : json['triggerFiles'],
|
|
40
|
+
};
|
|
41
|
+
}
|
|
42
|
+
exports.CreatePrebuildDTOFromJSONTyped = CreatePrebuildDTOFromJSONTyped;
|
|
43
|
+
function CreatePrebuildDTOToJSON(json) {
|
|
44
|
+
return CreatePrebuildDTOToJSONTyped(json, false);
|
|
45
|
+
}
|
|
46
|
+
exports.CreatePrebuildDTOToJSON = CreatePrebuildDTOToJSON;
|
|
47
|
+
function CreatePrebuildDTOToJSONTyped(value, ignoreDiscriminator = false) {
|
|
48
|
+
if (value == null) {
|
|
49
|
+
return value;
|
|
50
|
+
}
|
|
51
|
+
return {
|
|
52
|
+
branch: value['branch'],
|
|
53
|
+
commitInterval: value['commitInterval'],
|
|
54
|
+
id: value['id'],
|
|
55
|
+
retention: value['retention'],
|
|
56
|
+
triggerFiles: value['triggerFiles'],
|
|
57
|
+
};
|
|
58
|
+
}
|
|
59
|
+
exports.CreatePrebuildDTOToJSONTyped = CreatePrebuildDTOToJSONTyped;
|
|
@@ -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 type { BuildConfig } from './BuildConfig';
|
|
13
|
+
/**
|
|
14
|
+
*
|
|
15
|
+
* @export
|
|
16
|
+
* @interface CreateProjectConfigDTO
|
|
17
|
+
*/
|
|
18
|
+
export interface CreateProjectConfigDTO {
|
|
19
|
+
/**
|
|
20
|
+
*
|
|
21
|
+
* @type {BuildConfig}
|
|
22
|
+
* @memberof CreateProjectConfigDTO
|
|
23
|
+
*/
|
|
24
|
+
buildConfig?: BuildConfig;
|
|
25
|
+
/**
|
|
26
|
+
*
|
|
27
|
+
* @type {{ [key: string]: string; }}
|
|
28
|
+
* @memberof CreateProjectConfigDTO
|
|
29
|
+
*/
|
|
30
|
+
envVars: {
|
|
31
|
+
[key: string]: string;
|
|
32
|
+
};
|
|
33
|
+
/**
|
|
34
|
+
*
|
|
35
|
+
* @type {string}
|
|
36
|
+
* @memberof CreateProjectConfigDTO
|
|
37
|
+
*/
|
|
38
|
+
gitProviderConfigId?: string;
|
|
39
|
+
/**
|
|
40
|
+
*
|
|
41
|
+
* @type {string}
|
|
42
|
+
* @memberof CreateProjectConfigDTO
|
|
43
|
+
*/
|
|
44
|
+
image?: string;
|
|
45
|
+
/**
|
|
46
|
+
*
|
|
47
|
+
* @type {string}
|
|
48
|
+
* @memberof CreateProjectConfigDTO
|
|
49
|
+
*/
|
|
50
|
+
name: string;
|
|
51
|
+
/**
|
|
52
|
+
*
|
|
53
|
+
* @type {string}
|
|
54
|
+
* @memberof CreateProjectConfigDTO
|
|
55
|
+
*/
|
|
56
|
+
repositoryUrl: string;
|
|
57
|
+
/**
|
|
58
|
+
*
|
|
59
|
+
* @type {string}
|
|
60
|
+
* @memberof CreateProjectConfigDTO
|
|
61
|
+
*/
|
|
62
|
+
user?: string;
|
|
63
|
+
}
|
|
64
|
+
/**
|
|
65
|
+
* Check if a given object implements the CreateProjectConfigDTO interface.
|
|
66
|
+
*/
|
|
67
|
+
export declare function instanceOfCreateProjectConfigDTO(value: object): value is CreateProjectConfigDTO;
|
|
68
|
+
export declare function CreateProjectConfigDTOFromJSON(json: any): CreateProjectConfigDTO;
|
|
69
|
+
export declare function CreateProjectConfigDTOFromJSONTyped(json: any, ignoreDiscriminator: boolean): CreateProjectConfigDTO;
|
|
70
|
+
export declare function CreateProjectConfigDTOToJSON(json: any): CreateProjectConfigDTO;
|
|
71
|
+
export declare function CreateProjectConfigDTOToJSONTyped(value?: CreateProjectConfigDTO | null, ignoreDiscriminator?: boolean): any;
|
|
@@ -0,0 +1,72 @@
|
|
|
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.CreateProjectConfigDTOToJSONTyped = exports.CreateProjectConfigDTOToJSON = exports.CreateProjectConfigDTOFromJSONTyped = exports.CreateProjectConfigDTOFromJSON = exports.instanceOfCreateProjectConfigDTO = void 0;
|
|
17
|
+
const BuildConfig_1 = require("./BuildConfig");
|
|
18
|
+
/**
|
|
19
|
+
* Check if a given object implements the CreateProjectConfigDTO interface.
|
|
20
|
+
*/
|
|
21
|
+
function instanceOfCreateProjectConfigDTO(value) {
|
|
22
|
+
if (!('envVars' in value) || value['envVars'] === undefined)
|
|
23
|
+
return false;
|
|
24
|
+
if (!('name' in value) || value['name'] === undefined)
|
|
25
|
+
return false;
|
|
26
|
+
if (!('repositoryUrl' in value) || value['repositoryUrl'] === undefined)
|
|
27
|
+
return false;
|
|
28
|
+
return true;
|
|
29
|
+
}
|
|
30
|
+
exports.instanceOfCreateProjectConfigDTO = instanceOfCreateProjectConfigDTO;
|
|
31
|
+
function CreateProjectConfigDTOFromJSON(json) {
|
|
32
|
+
return CreateProjectConfigDTOFromJSONTyped(json, false);
|
|
33
|
+
}
|
|
34
|
+
exports.CreateProjectConfigDTOFromJSON = CreateProjectConfigDTOFromJSON;
|
|
35
|
+
function CreateProjectConfigDTOFromJSONTyped(json, ignoreDiscriminator) {
|
|
36
|
+
if (json == null) {
|
|
37
|
+
return json;
|
|
38
|
+
}
|
|
39
|
+
return {
|
|
40
|
+
buildConfig: json['buildConfig'] == null
|
|
41
|
+
? undefined
|
|
42
|
+
: (0, BuildConfig_1.BuildConfigFromJSON)(json['buildConfig']),
|
|
43
|
+
envVars: json['envVars'],
|
|
44
|
+
gitProviderConfigId: json['gitProviderConfigId'] == null
|
|
45
|
+
? undefined
|
|
46
|
+
: json['gitProviderConfigId'],
|
|
47
|
+
image: json['image'] == null ? undefined : json['image'],
|
|
48
|
+
name: json['name'],
|
|
49
|
+
repositoryUrl: json['repositoryUrl'],
|
|
50
|
+
user: json['user'] == null ? undefined : json['user'],
|
|
51
|
+
};
|
|
52
|
+
}
|
|
53
|
+
exports.CreateProjectConfigDTOFromJSONTyped = CreateProjectConfigDTOFromJSONTyped;
|
|
54
|
+
function CreateProjectConfigDTOToJSON(json) {
|
|
55
|
+
return CreateProjectConfigDTOToJSONTyped(json, false);
|
|
56
|
+
}
|
|
57
|
+
exports.CreateProjectConfigDTOToJSON = CreateProjectConfigDTOToJSON;
|
|
58
|
+
function CreateProjectConfigDTOToJSONTyped(value, ignoreDiscriminator = false) {
|
|
59
|
+
if (value == null) {
|
|
60
|
+
return value;
|
|
61
|
+
}
|
|
62
|
+
return {
|
|
63
|
+
buildConfig: (0, BuildConfig_1.BuildConfigToJSON)(value['buildConfig']),
|
|
64
|
+
envVars: value['envVars'],
|
|
65
|
+
gitProviderConfigId: value['gitProviderConfigId'],
|
|
66
|
+
image: value['image'],
|
|
67
|
+
name: value['name'],
|
|
68
|
+
repositoryUrl: value['repositoryUrl'],
|
|
69
|
+
user: value['user'],
|
|
70
|
+
};
|
|
71
|
+
}
|
|
72
|
+
exports.CreateProjectConfigDTOToJSONTyped = CreateProjectConfigDTOToJSONTyped;
|
|
@@ -0,0 +1,72 @@
|
|
|
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 { CreateProjectSourceDTO } from './CreateProjectSourceDTO';
|
|
13
|
+
import type { BuildConfig } from './BuildConfig';
|
|
14
|
+
/**
|
|
15
|
+
*
|
|
16
|
+
* @export
|
|
17
|
+
* @interface CreateProjectDTO
|
|
18
|
+
*/
|
|
19
|
+
export interface CreateProjectDTO {
|
|
20
|
+
/**
|
|
21
|
+
*
|
|
22
|
+
* @type {BuildConfig}
|
|
23
|
+
* @memberof CreateProjectDTO
|
|
24
|
+
*/
|
|
25
|
+
buildConfig?: BuildConfig;
|
|
26
|
+
/**
|
|
27
|
+
*
|
|
28
|
+
* @type {{ [key: string]: string; }}
|
|
29
|
+
* @memberof CreateProjectDTO
|
|
30
|
+
*/
|
|
31
|
+
envVars: {
|
|
32
|
+
[key: string]: string;
|
|
33
|
+
};
|
|
34
|
+
/**
|
|
35
|
+
*
|
|
36
|
+
* @type {string}
|
|
37
|
+
* @memberof CreateProjectDTO
|
|
38
|
+
*/
|
|
39
|
+
gitProviderConfigId?: string;
|
|
40
|
+
/**
|
|
41
|
+
*
|
|
42
|
+
* @type {string}
|
|
43
|
+
* @memberof CreateProjectDTO
|
|
44
|
+
*/
|
|
45
|
+
image?: string;
|
|
46
|
+
/**
|
|
47
|
+
*
|
|
48
|
+
* @type {string}
|
|
49
|
+
* @memberof CreateProjectDTO
|
|
50
|
+
*/
|
|
51
|
+
name: string;
|
|
52
|
+
/**
|
|
53
|
+
*
|
|
54
|
+
* @type {CreateProjectSourceDTO}
|
|
55
|
+
* @memberof CreateProjectDTO
|
|
56
|
+
*/
|
|
57
|
+
source: CreateProjectSourceDTO;
|
|
58
|
+
/**
|
|
59
|
+
*
|
|
60
|
+
* @type {string}
|
|
61
|
+
* @memberof CreateProjectDTO
|
|
62
|
+
*/
|
|
63
|
+
user?: string;
|
|
64
|
+
}
|
|
65
|
+
/**
|
|
66
|
+
* Check if a given object implements the CreateProjectDTO interface.
|
|
67
|
+
*/
|
|
68
|
+
export declare function instanceOfCreateProjectDTO(value: object): value is CreateProjectDTO;
|
|
69
|
+
export declare function CreateProjectDTOFromJSON(json: any): CreateProjectDTO;
|
|
70
|
+
export declare function CreateProjectDTOFromJSONTyped(json: any, ignoreDiscriminator: boolean): CreateProjectDTO;
|
|
71
|
+
export declare function CreateProjectDTOToJSON(json: any): CreateProjectDTO;
|
|
72
|
+
export declare function CreateProjectDTOToJSONTyped(value?: CreateProjectDTO | null, ignoreDiscriminator?: boolean): any;
|
|
@@ -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
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16
|
+
exports.CreateProjectDTOToJSONTyped = exports.CreateProjectDTOToJSON = exports.CreateProjectDTOFromJSONTyped = exports.CreateProjectDTOFromJSON = exports.instanceOfCreateProjectDTO = void 0;
|
|
17
|
+
const CreateProjectSourceDTO_1 = require("./CreateProjectSourceDTO");
|
|
18
|
+
const BuildConfig_1 = require("./BuildConfig");
|
|
19
|
+
/**
|
|
20
|
+
* Check if a given object implements the CreateProjectDTO interface.
|
|
21
|
+
*/
|
|
22
|
+
function instanceOfCreateProjectDTO(value) {
|
|
23
|
+
if (!('envVars' in value) || value['envVars'] === undefined)
|
|
24
|
+
return false;
|
|
25
|
+
if (!('name' in value) || value['name'] === undefined)
|
|
26
|
+
return false;
|
|
27
|
+
if (!('source' in value) || value['source'] === undefined)
|
|
28
|
+
return false;
|
|
29
|
+
return true;
|
|
30
|
+
}
|
|
31
|
+
exports.instanceOfCreateProjectDTO = instanceOfCreateProjectDTO;
|
|
32
|
+
function CreateProjectDTOFromJSON(json) {
|
|
33
|
+
return CreateProjectDTOFromJSONTyped(json, false);
|
|
34
|
+
}
|
|
35
|
+
exports.CreateProjectDTOFromJSON = CreateProjectDTOFromJSON;
|
|
36
|
+
function CreateProjectDTOFromJSONTyped(json, ignoreDiscriminator) {
|
|
37
|
+
if (json == null) {
|
|
38
|
+
return json;
|
|
39
|
+
}
|
|
40
|
+
return {
|
|
41
|
+
buildConfig: json['buildConfig'] == null
|
|
42
|
+
? undefined
|
|
43
|
+
: (0, BuildConfig_1.BuildConfigFromJSON)(json['buildConfig']),
|
|
44
|
+
envVars: json['envVars'],
|
|
45
|
+
gitProviderConfigId: json['gitProviderConfigId'] == null
|
|
46
|
+
? undefined
|
|
47
|
+
: json['gitProviderConfigId'],
|
|
48
|
+
image: json['image'] == null ? undefined : json['image'],
|
|
49
|
+
name: json['name'],
|
|
50
|
+
source: (0, CreateProjectSourceDTO_1.CreateProjectSourceDTOFromJSON)(json['source']),
|
|
51
|
+
user: json['user'] == null ? undefined : json['user'],
|
|
52
|
+
};
|
|
53
|
+
}
|
|
54
|
+
exports.CreateProjectDTOFromJSONTyped = CreateProjectDTOFromJSONTyped;
|
|
55
|
+
function CreateProjectDTOToJSON(json) {
|
|
56
|
+
return CreateProjectDTOToJSONTyped(json, false);
|
|
57
|
+
}
|
|
58
|
+
exports.CreateProjectDTOToJSON = CreateProjectDTOToJSON;
|
|
59
|
+
function CreateProjectDTOToJSONTyped(value, ignoreDiscriminator = false) {
|
|
60
|
+
if (value == null) {
|
|
61
|
+
return value;
|
|
62
|
+
}
|
|
63
|
+
return {
|
|
64
|
+
buildConfig: (0, BuildConfig_1.BuildConfigToJSON)(value['buildConfig']),
|
|
65
|
+
envVars: value['envVars'],
|
|
66
|
+
gitProviderConfigId: value['gitProviderConfigId'],
|
|
67
|
+
image: value['image'],
|
|
68
|
+
name: value['name'],
|
|
69
|
+
source: (0, CreateProjectSourceDTO_1.CreateProjectSourceDTOToJSON)(value['source']),
|
|
70
|
+
user: value['user'],
|
|
71
|
+
};
|
|
72
|
+
}
|
|
73
|
+
exports.CreateProjectDTOToJSONTyped = CreateProjectDTOToJSONTyped;
|
|
@@ -0,0 +1,33 @@
|
|
|
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 { GitRepository } from './GitRepository';
|
|
13
|
+
/**
|
|
14
|
+
*
|
|
15
|
+
* @export
|
|
16
|
+
* @interface CreateProjectSourceDTO
|
|
17
|
+
*/
|
|
18
|
+
export interface CreateProjectSourceDTO {
|
|
19
|
+
/**
|
|
20
|
+
*
|
|
21
|
+
* @type {GitRepository}
|
|
22
|
+
* @memberof CreateProjectSourceDTO
|
|
23
|
+
*/
|
|
24
|
+
repository: GitRepository;
|
|
25
|
+
}
|
|
26
|
+
/**
|
|
27
|
+
* Check if a given object implements the CreateProjectSourceDTO interface.
|
|
28
|
+
*/
|
|
29
|
+
export declare function instanceOfCreateProjectSourceDTO(value: object): value is CreateProjectSourceDTO;
|
|
30
|
+
export declare function CreateProjectSourceDTOFromJSON(json: any): CreateProjectSourceDTO;
|
|
31
|
+
export declare function CreateProjectSourceDTOFromJSONTyped(json: any, ignoreDiscriminator: boolean): CreateProjectSourceDTO;
|
|
32
|
+
export declare function CreateProjectSourceDTOToJSON(json: any): CreateProjectSourceDTO;
|
|
33
|
+
export declare function CreateProjectSourceDTOToJSONTyped(value?: CreateProjectSourceDTO | null, ignoreDiscriminator?: boolean): any;
|
|
@@ -0,0 +1,52 @@
|
|
|
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.CreateProjectSourceDTOToJSONTyped = exports.CreateProjectSourceDTOToJSON = exports.CreateProjectSourceDTOFromJSONTyped = exports.CreateProjectSourceDTOFromJSON = exports.instanceOfCreateProjectSourceDTO = void 0;
|
|
17
|
+
const GitRepository_1 = require("./GitRepository");
|
|
18
|
+
/**
|
|
19
|
+
* Check if a given object implements the CreateProjectSourceDTO interface.
|
|
20
|
+
*/
|
|
21
|
+
function instanceOfCreateProjectSourceDTO(value) {
|
|
22
|
+
if (!('repository' in value) || value['repository'] === undefined)
|
|
23
|
+
return false;
|
|
24
|
+
return true;
|
|
25
|
+
}
|
|
26
|
+
exports.instanceOfCreateProjectSourceDTO = instanceOfCreateProjectSourceDTO;
|
|
27
|
+
function CreateProjectSourceDTOFromJSON(json) {
|
|
28
|
+
return CreateProjectSourceDTOFromJSONTyped(json, false);
|
|
29
|
+
}
|
|
30
|
+
exports.CreateProjectSourceDTOFromJSON = CreateProjectSourceDTOFromJSON;
|
|
31
|
+
function CreateProjectSourceDTOFromJSONTyped(json, ignoreDiscriminator) {
|
|
32
|
+
if (json == null) {
|
|
33
|
+
return json;
|
|
34
|
+
}
|
|
35
|
+
return {
|
|
36
|
+
repository: (0, GitRepository_1.GitRepositoryFromJSON)(json['repository']),
|
|
37
|
+
};
|
|
38
|
+
}
|
|
39
|
+
exports.CreateProjectSourceDTOFromJSONTyped = CreateProjectSourceDTOFromJSONTyped;
|
|
40
|
+
function CreateProjectSourceDTOToJSON(json) {
|
|
41
|
+
return CreateProjectSourceDTOToJSONTyped(json, false);
|
|
42
|
+
}
|
|
43
|
+
exports.CreateProjectSourceDTOToJSON = CreateProjectSourceDTOToJSON;
|
|
44
|
+
function CreateProjectSourceDTOToJSONTyped(value, ignoreDiscriminator = false) {
|
|
45
|
+
if (value == null) {
|
|
46
|
+
return value;
|
|
47
|
+
}
|
|
48
|
+
return {
|
|
49
|
+
repository: (0, GitRepository_1.GitRepositoryToJSON)(value['repository']),
|
|
50
|
+
};
|
|
51
|
+
}
|
|
52
|
+
exports.CreateProjectSourceDTOToJSONTyped = CreateProjectSourceDTOToJSONTyped;
|
|
@@ -0,0 +1,45 @@
|
|
|
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 { ProviderProviderInfo } from './ProviderProviderInfo';
|
|
13
|
+
/**
|
|
14
|
+
*
|
|
15
|
+
* @export
|
|
16
|
+
* @interface CreateProviderTargetDTO
|
|
17
|
+
*/
|
|
18
|
+
export interface CreateProviderTargetDTO {
|
|
19
|
+
/**
|
|
20
|
+
*
|
|
21
|
+
* @type {string}
|
|
22
|
+
* @memberof CreateProviderTargetDTO
|
|
23
|
+
*/
|
|
24
|
+
name: string;
|
|
25
|
+
/**
|
|
26
|
+
*
|
|
27
|
+
* @type {string}
|
|
28
|
+
* @memberof CreateProviderTargetDTO
|
|
29
|
+
*/
|
|
30
|
+
options: string;
|
|
31
|
+
/**
|
|
32
|
+
*
|
|
33
|
+
* @type {ProviderProviderInfo}
|
|
34
|
+
* @memberof CreateProviderTargetDTO
|
|
35
|
+
*/
|
|
36
|
+
providerInfo: ProviderProviderInfo;
|
|
37
|
+
}
|
|
38
|
+
/**
|
|
39
|
+
* Check if a given object implements the CreateProviderTargetDTO interface.
|
|
40
|
+
*/
|
|
41
|
+
export declare function instanceOfCreateProviderTargetDTO(value: object): value is CreateProviderTargetDTO;
|
|
42
|
+
export declare function CreateProviderTargetDTOFromJSON(json: any): CreateProviderTargetDTO;
|
|
43
|
+
export declare function CreateProviderTargetDTOFromJSONTyped(json: any, ignoreDiscriminator: boolean): CreateProviderTargetDTO;
|
|
44
|
+
export declare function CreateProviderTargetDTOToJSON(json: any): CreateProviderTargetDTO;
|
|
45
|
+
export declare function CreateProviderTargetDTOToJSONTyped(value?: CreateProviderTargetDTO | null, ignoreDiscriminator?: boolean): any;
|