@daytonaio/api-client 0.14.0 → 0.16.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.openapi-generator/FILES +19 -4
- package/.openapi-generator/VERSION +1 -1
- package/.openapi-generator-ignore +7 -0
- package/api/api-keys-api.ts +383 -279
- package/api/docker-registry-api.ts +714 -504
- package/api/images-api.ts +580 -318
- package/api/nodes-api.ts +250 -213
- package/api/organizations-api.ts +2390 -0
- package/api/preview-api.ts +326 -0
- package/api/toolbox-api.ts +4532 -2915
- package/api/users-api.ts +335 -373
- package/api/workspace-api.ts +1506 -893
- package/api.ts +10 -11
- package/base.ts +35 -30
- package/common.ts +78 -66
- package/configuration.ts +102 -89
- package/dist/api/api-keys-api.d.ts +32 -16
- package/dist/api/api-keys-api.js +92 -73
- package/dist/api/docker-registry-api.d.ts +72 -44
- package/dist/api/docker-registry-api.js +182 -138
- package/dist/api/images-api.d.ts +74 -16
- package/dist/api/images-api.js +181 -73
- package/dist/api/nodes-api.js +37 -47
- package/dist/api/organizations-api.d.ts +856 -0
- package/dist/api/organizations-api.js +1746 -0
- package/dist/api/preview-api.d.ts +143 -0
- package/dist/api/preview-api.js +266 -0
- package/dist/api/toolbox-api.d.ts +292 -144
- package/dist/api/toolbox-api.js +914 -623
- package/dist/api/users-api.d.ts +9 -47
- package/dist/api/users-api.js +57 -144
- package/dist/api/workspace-api.d.ts +199 -101
- package/dist/api/workspace-api.js +469 -280
- package/dist/api.d.ts +2 -0
- package/dist/api.js +2 -0
- package/dist/base.js +6 -7
- package/dist/common.d.ts +3 -3
- package/dist/common.js +27 -45
- package/dist/configuration.js +2 -1
- package/dist/esm/api/api-keys-api.d.ts +32 -16
- package/dist/esm/api/api-keys-api.js +93 -74
- package/dist/esm/api/docker-registry-api.d.ts +72 -44
- package/dist/esm/api/docker-registry-api.js +183 -139
- package/dist/esm/api/images-api.d.ts +74 -16
- package/dist/esm/api/images-api.js +182 -74
- package/dist/esm/api/nodes-api.js +38 -48
- package/dist/esm/api/organizations-api.d.ts +856 -0
- package/dist/esm/api/organizations-api.js +1739 -0
- package/dist/esm/api/preview-api.d.ts +143 -0
- package/dist/esm/api/preview-api.js +259 -0
- package/dist/esm/api/toolbox-api.d.ts +292 -144
- package/dist/esm/api/toolbox-api.js +915 -624
- package/dist/esm/api/users-api.d.ts +9 -47
- package/dist/esm/api/users-api.js +58 -145
- package/dist/esm/api/workspace-api.d.ts +199 -101
- package/dist/esm/api/workspace-api.js +470 -281
- package/dist/esm/api.d.ts +2 -0
- package/dist/esm/api.js +2 -0
- package/dist/esm/base.js +6 -7
- package/dist/esm/common.d.ts +3 -3
- package/dist/esm/common.js +28 -46
- package/dist/esm/configuration.js +2 -1
- package/dist/esm/index.d.ts +3 -3
- package/dist/esm/index.js +3 -3
- package/dist/esm/models/api-key-list.d.ts +19 -4
- package/dist/esm/models/api-key-list.js +8 -1
- package/dist/esm/models/api-key-response.d.ts +19 -4
- package/dist/esm/models/api-key-response.js +8 -1
- package/dist/esm/models/command.d.ts +3 -3
- package/dist/esm/models/completion-context.d.ts +2 -2
- package/dist/esm/models/completion-item.d.ts +7 -7
- package/dist/esm/models/completion-list.d.ts +2 -2
- package/dist/esm/models/create-api-key.d.ts +16 -1
- package/dist/esm/models/create-api-key.js +8 -1
- package/dist/esm/models/create-docker-registry.d.ts +9 -9
- package/dist/esm/models/create-docker-registry.js +2 -2
- package/dist/esm/models/create-image.d.ts +8 -2
- package/dist/esm/models/create-node.d.ts +13 -13
- package/dist/esm/models/create-node.js +2 -2
- package/dist/esm/models/create-organization-invitation.d.ts +47 -0
- package/dist/esm/models/create-organization-invitation.js +17 -0
- package/dist/esm/models/create-organization-quota.d.ts +84 -0
- package/dist/esm/models/create-organization-role.d.ts +45 -0
- package/dist/esm/models/create-organization-role.js +21 -0
- package/dist/esm/models/create-organization.d.ts +90 -0
- package/dist/esm/models/create-organization.js +14 -0
- package/dist/esm/models/create-session-request.d.ts +1 -1
- package/dist/esm/models/create-user.d.ts +14 -56
- package/dist/esm/models/create-user.js +4 -1
- package/dist/esm/models/create-workspace.d.ts +16 -16
- package/dist/esm/models/create-workspace.js +2 -2
- package/dist/esm/models/docker-registry.d.ts +12 -12
- package/dist/esm/models/docker-registry.js +2 -2
- package/dist/esm/models/execute-request.d.ts +3 -3
- package/dist/esm/models/execute-response.d.ts +2 -2
- package/dist/esm/models/file-info.d.ts +8 -8
- package/dist/esm/models/file-status.d.ts +4 -4
- package/dist/esm/models/git-add-request.d.ts +2 -2
- package/dist/esm/models/git-branch-request.d.ts +2 -2
- package/dist/esm/models/git-clone-request.d.ts +6 -6
- package/dist/esm/models/git-commit-info.d.ts +5 -5
- package/dist/esm/models/git-commit-request.d.ts +4 -4
- package/dist/esm/models/git-commit-response.d.ts +1 -1
- package/dist/esm/models/git-repo-request.d.ts +3 -3
- package/dist/esm/models/git-status.d.ts +4 -4
- package/dist/esm/models/image-dto.d.ts +20 -14
- package/dist/esm/models/image-state.d.ts +1 -1
- package/dist/esm/models/image-state.js +1 -1
- package/dist/esm/models/index.d.ts +17 -1
- package/dist/esm/models/index.js +17 -1
- package/dist/esm/models/list-branch-response.d.ts +1 -1
- package/dist/esm/models/lsp-completion-params.d.ts +5 -5
- package/dist/esm/models/lsp-document-request.d.ts +3 -3
- package/dist/esm/models/lsp-location.d.ts +2 -2
- package/dist/esm/models/lsp-server-request.d.ts +2 -2
- package/dist/esm/models/lsp-symbol.d.ts +3 -3
- package/dist/esm/models/match.d.ts +3 -3
- package/dist/esm/models/organization-invitation.d.ts +97 -0
- package/dist/esm/models/organization-invitation.js +23 -0
- package/dist/esm/models/organization-role.d.ts +69 -0
- package/dist/esm/models/organization-role.js +21 -0
- package/dist/esm/models/organization-user.d.ts +72 -0
- package/dist/esm/models/organization-user.js +17 -0
- package/dist/esm/models/organization.d.ts +54 -0
- package/dist/esm/models/organization.js +14 -0
- package/dist/esm/models/paginated-images-dto.d.ts +4 -4
- package/dist/esm/models/port-preview-url.d.ts +30 -0
- package/dist/esm/models/port-preview-url.js +14 -0
- package/dist/esm/models/position.d.ts +2 -2
- package/dist/esm/models/project-dir-response.d.ts +1 -1
- package/dist/esm/models/range.d.ts +2 -2
- package/dist/esm/models/registry-push-access-dto.d.ts +6 -6
- package/dist/esm/models/replace-request.d.ts +3 -3
- package/dist/esm/models/replace-result.d.ts +3 -3
- package/dist/esm/models/search-files-response.d.ts +1 -1
- package/dist/esm/models/session-execute-request.d.ts +9 -2
- package/dist/esm/models/session-execute-response.d.ts +3 -3
- package/dist/esm/models/session.d.ts +2 -2
- package/dist/esm/models/set-image-general-status.d.ts +24 -0
- package/dist/esm/models/set-image-general-status.js +14 -0
- package/dist/esm/models/toggle-state.d.ts +1 -1
- package/dist/esm/models/update-assigned-organization-roles.d.ts +24 -0
- package/dist/esm/models/update-assigned-organization-roles.js +14 -0
- package/dist/esm/models/update-docker-registry.d.ts +3 -3
- package/dist/esm/models/update-organization-invitation.d.ts +41 -0
- package/dist/esm/models/update-organization-invitation.js +17 -0
- package/dist/esm/models/update-organization-member-role.d.ts +29 -0
- package/dist/esm/models/update-organization-member-role.js +17 -0
- package/dist/esm/models/update-organization-quota.d.ts +84 -0
- package/dist/esm/models/update-organization-quota.js +14 -0
- package/dist/esm/models/update-organization-role.d.ts +45 -0
- package/dist/esm/models/update-organization-role.js +21 -0
- package/dist/esm/models/usage-overview.d.ts +15 -15
- package/dist/esm/models/user-public-key.d.ts +30 -0
- package/dist/esm/models/user-public-key.js +14 -0
- package/dist/esm/models/user.d.ts +43 -0
- package/dist/esm/models/user.js +14 -0
- package/dist/esm/models/workspace-info.d.ts +3 -3
- package/dist/esm/models/workspace-labels.d.ts +1 -1
- package/dist/esm/models/workspace-state.d.ts +1 -1
- package/dist/esm/models/workspace-state.js +1 -1
- package/dist/esm/models/workspace.d.ts +19 -19
- package/dist/esm/models/workspace.js +1 -1
- package/dist/index.d.ts +3 -3
- package/dist/models/api-key-list.d.ts +19 -4
- package/dist/models/api-key-list.js +9 -0
- package/dist/models/api-key-response.d.ts +19 -4
- package/dist/models/api-key-response.js +9 -0
- package/dist/models/command.d.ts +3 -3
- package/dist/models/completion-context.d.ts +2 -2
- package/dist/models/completion-item.d.ts +7 -7
- package/dist/models/completion-list.d.ts +2 -2
- package/dist/models/create-api-key.d.ts +16 -1
- package/dist/models/create-api-key.js +9 -0
- package/dist/models/create-docker-registry.d.ts +9 -9
- package/dist/models/create-docker-registry.js +2 -2
- package/dist/models/create-image.d.ts +8 -2
- package/dist/models/create-node.d.ts +13 -13
- package/dist/models/create-node.js +2 -2
- package/dist/models/create-organization-invitation.d.ts +47 -0
- package/dist/models/create-organization-invitation.js +20 -0
- package/dist/models/create-organization-quota.d.ts +84 -0
- package/dist/models/create-organization-role.d.ts +45 -0
- package/dist/models/create-organization-role.js +24 -0
- package/dist/models/create-organization.d.ts +90 -0
- package/dist/models/create-organization.js +15 -0
- package/dist/models/create-session-request.d.ts +1 -1
- package/dist/models/create-user.d.ts +14 -56
- package/dist/models/create-user.js +5 -0
- package/dist/models/create-workspace.d.ts +16 -16
- package/dist/models/create-workspace.js +2 -2
- package/dist/models/docker-registry.d.ts +12 -12
- package/dist/models/docker-registry.js +2 -2
- package/dist/models/execute-request.d.ts +3 -3
- package/dist/models/execute-response.d.ts +2 -2
- package/dist/models/file-info.d.ts +8 -8
- package/dist/models/file-status.d.ts +4 -4
- package/dist/models/git-add-request.d.ts +2 -2
- package/dist/models/git-branch-request.d.ts +2 -2
- package/dist/models/git-clone-request.d.ts +6 -6
- package/dist/models/git-commit-info.d.ts +5 -5
- package/dist/models/git-commit-request.d.ts +4 -4
- package/dist/models/git-commit-response.d.ts +1 -1
- package/dist/models/git-repo-request.d.ts +3 -3
- package/dist/models/git-status.d.ts +4 -4
- package/dist/models/image-dto.d.ts +20 -14
- package/dist/models/image-state.d.ts +1 -1
- package/dist/models/image-state.js +1 -1
- package/dist/models/index.d.ts +17 -1
- package/dist/models/index.js +17 -1
- package/dist/models/list-branch-response.d.ts +1 -1
- package/dist/models/lsp-completion-params.d.ts +5 -5
- package/dist/models/lsp-document-request.d.ts +3 -3
- package/dist/models/lsp-location.d.ts +2 -2
- package/dist/models/lsp-server-request.d.ts +2 -2
- package/dist/models/lsp-symbol.d.ts +3 -3
- package/dist/models/match.d.ts +3 -3
- package/dist/models/organization-invitation.d.ts +97 -0
- package/dist/models/organization-invitation.js +26 -0
- package/dist/models/organization-role.d.ts +69 -0
- package/dist/models/organization-role.js +24 -0
- package/dist/models/organization-user.d.ts +72 -0
- package/dist/models/organization-user.js +20 -0
- package/dist/models/organization.d.ts +54 -0
- package/dist/models/organization.js +15 -0
- package/dist/models/paginated-images-dto.d.ts +4 -4
- package/dist/models/port-preview-url.d.ts +30 -0
- package/dist/models/port-preview-url.js +15 -0
- package/dist/models/position.d.ts +2 -2
- package/dist/models/project-dir-response.d.ts +1 -1
- package/dist/models/range.d.ts +2 -2
- package/dist/models/registry-push-access-dto.d.ts +6 -6
- package/dist/models/replace-request.d.ts +3 -3
- package/dist/models/replace-result.d.ts +3 -3
- package/dist/models/search-files-response.d.ts +1 -1
- package/dist/models/session-execute-request.d.ts +9 -2
- package/dist/models/session-execute-response.d.ts +3 -3
- package/dist/models/session.d.ts +2 -2
- package/dist/models/set-image-general-status.d.ts +24 -0
- package/dist/models/set-image-general-status.js +15 -0
- package/dist/models/toggle-state.d.ts +1 -1
- package/dist/models/update-assigned-organization-roles.d.ts +24 -0
- package/dist/models/update-assigned-organization-roles.js +15 -0
- package/dist/models/update-docker-registry.d.ts +3 -3
- package/dist/models/update-organization-invitation.d.ts +41 -0
- package/dist/models/update-organization-invitation.js +20 -0
- package/dist/models/update-organization-member-role.d.ts +29 -0
- package/dist/models/update-organization-member-role.js +20 -0
- package/dist/models/update-organization-quota.d.ts +84 -0
- package/dist/models/update-organization-quota.js +15 -0
- package/dist/models/update-organization-role.d.ts +45 -0
- package/dist/models/update-organization-role.js +24 -0
- package/dist/models/usage-overview.d.ts +15 -15
- package/dist/models/user-public-key.d.ts +30 -0
- package/dist/models/user-public-key.js +15 -0
- package/dist/models/user.d.ts +43 -0
- package/dist/models/user.js +15 -0
- package/dist/models/workspace-info.d.ts +3 -3
- package/dist/models/workspace-labels.d.ts +1 -1
- package/dist/models/workspace-state.d.ts +1 -1
- package/dist/models/workspace-state.js +1 -1
- package/dist/models/workspace.d.ts +19 -19
- package/dist/models/workspace.js +1 -1
- package/index.ts +4 -5
- package/models/api-key-list.ts +36 -22
- package/models/api-key-response.ts +37 -22
- package/models/command.ts +20 -23
- package/models/completion-context.ts +14 -17
- package/models/completion-item.ts +44 -47
- package/models/completion-list.ts +15 -17
- package/models/create-api-key.ts +24 -10
- package/models/create-docker-registry.ts +51 -54
- package/models/create-image.ts +20 -17
- package/models/create-node.ts +78 -82
- package/models/create-organization-invitation.ts +53 -0
- package/models/create-organization-quota.ts +87 -0
- package/models/create-organization-role.ts +51 -0
- package/models/create-organization.ts +93 -0
- package/models/create-session-request.ts +8 -11
- package/models/create-user.ts +41 -81
- package/models/create-workspace.ts +96 -100
- package/models/docker-registry.ts +57 -60
- package/models/execute-request.ts +20 -23
- package/models/execute-response.ts +14 -17
- package/models/file-info.ts +50 -53
- package/models/file-status.ts +26 -29
- package/models/git-add-request.ts +14 -17
- package/models/git-branch-request.ts +14 -17
- package/models/git-clone-request.ts +38 -41
- package/models/git-commit-info.ts +32 -35
- package/models/git-commit-request.ts +26 -29
- package/models/git-commit-response.ts +8 -11
- package/models/git-repo-request.ts +20 -23
- package/models/git-status.ts +33 -35
- package/models/image-dto.ts +75 -73
- package/models/image-state.ts +12 -17
- package/models/index.ts +70 -54
- package/models/list-branch-response.ts +8 -11
- package/models/lsp-completion-params.ts +34 -36
- package/models/lsp-document-request.ts +20 -23
- package/models/lsp-location.ts +15 -17
- package/models/lsp-server-request.ts +14 -17
- package/models/lsp-symbol.ts +21 -23
- package/models/match.ts +20 -23
- package/models/organization-invitation.ts +108 -0
- package/models/organization-role.ts +75 -0
- package/models/organization-user.ts +80 -0
- package/models/organization.ts +57 -0
- package/models/paginated-images-dto.ts +27 -29
- package/models/port-preview-url.ts +33 -0
- package/models/position.ts +14 -17
- package/models/project-dir-response.ts +8 -11
- package/models/range.ts +15 -17
- package/models/registry-push-access-dto.ts +38 -41
- package/models/replace-request.ts +20 -23
- package/models/replace-result.ts +20 -23
- package/models/search-files-response.ts +8 -11
- package/models/session-execute-request.ts +21 -17
- package/models/session-execute-response.ts +20 -23
- package/models/session.ts +15 -17
- package/models/set-image-general-status.ts +27 -0
- package/models/toggle-state.ts +8 -11
- package/models/update-assigned-organization-roles.ts +27 -0
- package/models/update-docker-registry.ts +20 -23
- package/models/update-organization-invitation.ts +47 -0
- package/models/update-organization-member-role.ts +35 -0
- package/models/update-organization-quota.ts +87 -0
- package/models/update-organization-role.ts +51 -0
- package/models/usage-overview.ts +92 -95
- package/models/user-public-key.ts +33 -0
- package/models/user.ts +49 -0
- package/models/workspace-info.ts +20 -23
- package/models/workspace-labels.ts +8 -11
- package/models/workspace-state.ts +19 -24
- package/models/workspace.ts +119 -122
- package/package.json +2 -2
- package/project.json +49 -0
- package/tsconfig.json +3 -8
- package/README.md +0 -46
- package/dist/esm/models/update-user-quota-dto.d.ts +0 -84
- package/dist/models/update-user-quota-dto.d.ts +0 -84
- package/git_push.sh +0 -57
- package/models/update-user-quota-dto.ts +0 -90
- /package/dist/esm/models/{update-user-quota-dto.js → create-organization-quota.js} +0 -0
- /package/dist/models/{update-user-quota-dto.js → create-organization-quota.js} +0 -0
|
@@ -50,246 +50,274 @@ export declare const ToolboxApiAxiosParamCreator: (configuration?: Configuration
|
|
|
50
50
|
* @param {string} workspaceId
|
|
51
51
|
* @param {string} path
|
|
52
52
|
* @param {string} mode
|
|
53
|
+
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
53
54
|
* @param {*} [options] Override http request option.
|
|
54
55
|
* @throws {RequiredError}
|
|
55
56
|
*/
|
|
56
|
-
createFolder: (workspaceId: string, path: string, mode: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
57
|
+
createFolder: (workspaceId: string, path: string, mode: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
57
58
|
/**
|
|
58
59
|
* Create a new session in the workspace
|
|
59
60
|
* @summary Create session
|
|
60
61
|
* @param {string} workspaceId
|
|
61
62
|
* @param {CreateSessionRequest} createSessionRequest
|
|
63
|
+
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
62
64
|
* @param {*} [options] Override http request option.
|
|
63
65
|
* @throws {RequiredError}
|
|
64
66
|
*/
|
|
65
|
-
createSession: (workspaceId: string, createSessionRequest: CreateSessionRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
67
|
+
createSession: (workspaceId: string, createSessionRequest: CreateSessionRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
66
68
|
/**
|
|
67
69
|
* Delete file inside workspace
|
|
68
70
|
* @summary Delete file
|
|
69
71
|
* @param {string} workspaceId
|
|
70
72
|
* @param {string} path
|
|
73
|
+
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
71
74
|
* @param {*} [options] Override http request option.
|
|
72
75
|
* @throws {RequiredError}
|
|
73
76
|
*/
|
|
74
|
-
deleteFile: (workspaceId: string, path: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
77
|
+
deleteFile: (workspaceId: string, path: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
75
78
|
/**
|
|
76
79
|
* Delete a specific session
|
|
77
80
|
* @summary Delete session
|
|
78
81
|
* @param {string} workspaceId
|
|
79
82
|
* @param {string} sessionId
|
|
83
|
+
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
80
84
|
* @param {*} [options] Override http request option.
|
|
81
85
|
* @throws {RequiredError}
|
|
82
86
|
*/
|
|
83
|
-
deleteSession: (workspaceId: string, sessionId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
87
|
+
deleteSession: (workspaceId: string, sessionId: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
84
88
|
/**
|
|
85
89
|
* Download file from workspace
|
|
86
90
|
* @summary Download file
|
|
87
91
|
* @param {string} workspaceId
|
|
88
92
|
* @param {string} path
|
|
93
|
+
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
89
94
|
* @param {*} [options] Override http request option.
|
|
90
95
|
* @throws {RequiredError}
|
|
91
96
|
*/
|
|
92
|
-
downloadFile: (workspaceId: string, path: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
97
|
+
downloadFile: (workspaceId: string, path: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
93
98
|
/**
|
|
94
99
|
* Execute command synchronously inside workspace
|
|
95
100
|
* @summary Execute command
|
|
96
101
|
* @param {string} workspaceId
|
|
97
102
|
* @param {ExecuteRequest} executeRequest
|
|
103
|
+
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
98
104
|
* @param {*} [options] Override http request option.
|
|
99
105
|
* @throws {RequiredError}
|
|
100
106
|
*/
|
|
101
|
-
executeCommand: (workspaceId: string, executeRequest: ExecuteRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
107
|
+
executeCommand: (workspaceId: string, executeRequest: ExecuteRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
102
108
|
/**
|
|
103
109
|
* Execute a command in a specific session
|
|
104
110
|
* @summary Execute command in session
|
|
105
111
|
* @param {string} workspaceId
|
|
106
112
|
* @param {string} sessionId
|
|
107
113
|
* @param {SessionExecuteRequest} sessionExecuteRequest
|
|
114
|
+
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
108
115
|
* @param {*} [options] Override http request option.
|
|
109
116
|
* @throws {RequiredError}
|
|
110
117
|
*/
|
|
111
|
-
executeSessionCommand: (workspaceId: string, sessionId: string, sessionExecuteRequest: SessionExecuteRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
118
|
+
executeSessionCommand: (workspaceId: string, sessionId: string, sessionExecuteRequest: SessionExecuteRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
112
119
|
/**
|
|
113
120
|
* Search for text/pattern inside workspace files
|
|
114
121
|
* @summary Search for text/pattern in files
|
|
115
122
|
* @param {string} workspaceId
|
|
116
123
|
* @param {string} path
|
|
117
124
|
* @param {string} pattern
|
|
125
|
+
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
118
126
|
* @param {*} [options] Override http request option.
|
|
119
127
|
* @throws {RequiredError}
|
|
120
128
|
*/
|
|
121
|
-
findInFiles: (workspaceId: string, path: string, pattern: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
129
|
+
findInFiles: (workspaceId: string, path: string, pattern: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
122
130
|
/**
|
|
123
131
|
* Get file info inside workspace
|
|
124
132
|
* @summary Get file info
|
|
125
133
|
* @param {string} workspaceId
|
|
126
134
|
* @param {string} path
|
|
135
|
+
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
127
136
|
* @param {*} [options] Override http request option.
|
|
128
137
|
* @throws {RequiredError}
|
|
129
138
|
*/
|
|
130
|
-
getFileInfo: (workspaceId: string, path: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
139
|
+
getFileInfo: (workspaceId: string, path: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
131
140
|
/**
|
|
132
141
|
*
|
|
133
142
|
* @summary Get workspace project dir
|
|
134
143
|
* @param {string} workspaceId
|
|
144
|
+
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
135
145
|
* @param {*} [options] Override http request option.
|
|
136
146
|
* @throws {RequiredError}
|
|
137
147
|
*/
|
|
138
|
-
getProjectDir: (workspaceId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
148
|
+
getProjectDir: (workspaceId: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
139
149
|
/**
|
|
140
150
|
* Get session by ID
|
|
141
151
|
* @summary Get session
|
|
142
152
|
* @param {string} workspaceId
|
|
143
153
|
* @param {string} sessionId
|
|
154
|
+
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
144
155
|
* @param {*} [options] Override http request option.
|
|
145
156
|
* @throws {RequiredError}
|
|
146
157
|
*/
|
|
147
|
-
getSession: (workspaceId: string, sessionId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
158
|
+
getSession: (workspaceId: string, sessionId: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
148
159
|
/**
|
|
149
160
|
* Get session command by ID
|
|
150
161
|
* @summary Get session command
|
|
151
162
|
* @param {string} workspaceId
|
|
152
163
|
* @param {string} sessionId
|
|
153
164
|
* @param {string} commandId
|
|
165
|
+
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
154
166
|
* @param {*} [options] Override http request option.
|
|
155
167
|
* @throws {RequiredError}
|
|
156
168
|
*/
|
|
157
|
-
getSessionCommand: (workspaceId: string, sessionId: string, commandId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
169
|
+
getSessionCommand: (workspaceId: string, sessionId: string, commandId: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
158
170
|
/**
|
|
159
171
|
* Get logs for a specific command in a session
|
|
160
172
|
* @summary Get command logs
|
|
161
173
|
* @param {string} workspaceId
|
|
162
174
|
* @param {string} sessionId
|
|
163
175
|
* @param {string} commandId
|
|
176
|
+
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
177
|
+
* @param {boolean} [follow]
|
|
164
178
|
* @param {*} [options] Override http request option.
|
|
165
179
|
* @throws {RequiredError}
|
|
166
180
|
*/
|
|
167
|
-
getSessionCommandLogs: (workspaceId: string, sessionId: string, commandId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
181
|
+
getSessionCommandLogs: (workspaceId: string, sessionId: string, commandId: string, xDaytonaOrganizationID?: string, follow?: boolean, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
168
182
|
/**
|
|
169
183
|
* Add files to git commit
|
|
170
184
|
* @summary Add files
|
|
171
185
|
* @param {string} workspaceId
|
|
172
186
|
* @param {GitAddRequest} gitAddRequest
|
|
187
|
+
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
173
188
|
* @param {*} [options] Override http request option.
|
|
174
189
|
* @throws {RequiredError}
|
|
175
190
|
*/
|
|
176
|
-
gitAddFiles: (workspaceId: string, gitAddRequest: GitAddRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
191
|
+
gitAddFiles: (workspaceId: string, gitAddRequest: GitAddRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
177
192
|
/**
|
|
178
193
|
* Clone git repository
|
|
179
194
|
* @summary Clone repository
|
|
180
195
|
* @param {string} workspaceId
|
|
181
196
|
* @param {GitCloneRequest} gitCloneRequest
|
|
197
|
+
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
182
198
|
* @param {*} [options] Override http request option.
|
|
183
199
|
* @throws {RequiredError}
|
|
184
200
|
*/
|
|
185
|
-
gitCloneRepository: (workspaceId: string, gitCloneRequest: GitCloneRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
201
|
+
gitCloneRepository: (workspaceId: string, gitCloneRequest: GitCloneRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
186
202
|
/**
|
|
187
203
|
* Commit changes to git repository
|
|
188
204
|
* @summary Commit changes
|
|
189
205
|
* @param {string} workspaceId
|
|
190
206
|
* @param {GitCommitRequest} gitCommitRequest
|
|
207
|
+
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
191
208
|
* @param {*} [options] Override http request option.
|
|
192
209
|
* @throws {RequiredError}
|
|
193
210
|
*/
|
|
194
|
-
gitCommitChanges: (workspaceId: string, gitCommitRequest: GitCommitRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
211
|
+
gitCommitChanges: (workspaceId: string, gitCommitRequest: GitCommitRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
195
212
|
/**
|
|
196
213
|
* Create branch on git repository
|
|
197
214
|
* @summary Create branch
|
|
198
215
|
* @param {string} workspaceId
|
|
199
216
|
* @param {GitBranchRequest} gitBranchRequest
|
|
217
|
+
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
200
218
|
* @param {*} [options] Override http request option.
|
|
201
219
|
* @throws {RequiredError}
|
|
202
220
|
*/
|
|
203
|
-
gitCreateBranch: (workspaceId: string, gitBranchRequest: GitBranchRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
221
|
+
gitCreateBranch: (workspaceId: string, gitBranchRequest: GitBranchRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
204
222
|
/**
|
|
205
223
|
* Get commit history from git repository
|
|
206
224
|
* @summary Get commit history
|
|
207
225
|
* @param {string} workspaceId
|
|
208
226
|
* @param {string} path
|
|
227
|
+
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
209
228
|
* @param {*} [options] Override http request option.
|
|
210
229
|
* @throws {RequiredError}
|
|
211
230
|
*/
|
|
212
|
-
gitGetHistory: (workspaceId: string, path: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
231
|
+
gitGetHistory: (workspaceId: string, path: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
213
232
|
/**
|
|
214
233
|
* Get status from git repository
|
|
215
234
|
* @summary Get git status
|
|
216
235
|
* @param {string} workspaceId
|
|
217
236
|
* @param {string} path
|
|
237
|
+
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
218
238
|
* @param {*} [options] Override http request option.
|
|
219
239
|
* @throws {RequiredError}
|
|
220
240
|
*/
|
|
221
|
-
gitGetStatus: (workspaceId: string, path: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
241
|
+
gitGetStatus: (workspaceId: string, path: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
222
242
|
/**
|
|
223
243
|
* Get branch list from git repository
|
|
224
244
|
* @summary Get branch list
|
|
225
245
|
* @param {string} workspaceId
|
|
226
246
|
* @param {string} path
|
|
247
|
+
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
227
248
|
* @param {*} [options] Override http request option.
|
|
228
249
|
* @throws {RequiredError}
|
|
229
250
|
*/
|
|
230
|
-
gitListBranches: (workspaceId: string, path: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
251
|
+
gitListBranches: (workspaceId: string, path: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
231
252
|
/**
|
|
232
253
|
* Pull changes from remote
|
|
233
254
|
* @summary Pull changes
|
|
234
255
|
* @param {string} workspaceId
|
|
235
256
|
* @param {GitRepoRequest} gitRepoRequest
|
|
257
|
+
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
236
258
|
* @param {*} [options] Override http request option.
|
|
237
259
|
* @throws {RequiredError}
|
|
238
260
|
*/
|
|
239
|
-
gitPullChanges: (workspaceId: string, gitRepoRequest: GitRepoRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
261
|
+
gitPullChanges: (workspaceId: string, gitRepoRequest: GitRepoRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
240
262
|
/**
|
|
241
263
|
* Push changes to remote
|
|
242
264
|
* @summary Push changes
|
|
243
265
|
* @param {string} workspaceId
|
|
244
266
|
* @param {GitRepoRequest} gitRepoRequest
|
|
267
|
+
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
245
268
|
* @param {*} [options] Override http request option.
|
|
246
269
|
* @throws {RequiredError}
|
|
247
270
|
*/
|
|
248
|
-
gitPushChanges: (workspaceId: string, gitRepoRequest: GitRepoRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
271
|
+
gitPushChanges: (workspaceId: string, gitRepoRequest: GitRepoRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
249
272
|
/**
|
|
250
273
|
*
|
|
251
274
|
* @summary List files
|
|
252
275
|
* @param {string} workspaceId
|
|
276
|
+
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
253
277
|
* @param {string} [path]
|
|
254
278
|
* @param {*} [options] Override http request option.
|
|
255
279
|
* @throws {RequiredError}
|
|
256
280
|
*/
|
|
257
|
-
listFiles: (workspaceId: string, path?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
281
|
+
listFiles: (workspaceId: string, xDaytonaOrganizationID?: string, path?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
258
282
|
/**
|
|
259
283
|
* List all active sessions in the workspace
|
|
260
284
|
* @summary List sessions
|
|
261
285
|
* @param {string} workspaceId
|
|
286
|
+
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
262
287
|
* @param {*} [options] Override http request option.
|
|
263
288
|
* @throws {RequiredError}
|
|
264
289
|
*/
|
|
265
|
-
listSessions: (workspaceId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
290
|
+
listSessions: (workspaceId: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
266
291
|
/**
|
|
267
292
|
* The Completion request is sent from the client to the server to compute completion items at a given cursor position.
|
|
268
293
|
* @summary Get Lsp Completions
|
|
269
294
|
* @param {string} workspaceId
|
|
270
295
|
* @param {LspCompletionParams} lspCompletionParams
|
|
296
|
+
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
271
297
|
* @param {*} [options] Override http request option.
|
|
272
298
|
* @throws {RequiredError}
|
|
273
299
|
*/
|
|
274
|
-
lspCompletions: (workspaceId: string, lspCompletionParams: LspCompletionParams, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
300
|
+
lspCompletions: (workspaceId: string, lspCompletionParams: LspCompletionParams, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
275
301
|
/**
|
|
276
302
|
* The document close notification is sent from the client to the server when the document got closed in the client.
|
|
277
303
|
* @summary Call Lsp DidClose
|
|
278
304
|
* @param {string} workspaceId
|
|
279
305
|
* @param {LspDocumentRequest} lspDocumentRequest
|
|
306
|
+
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
280
307
|
* @param {*} [options] Override http request option.
|
|
281
308
|
* @throws {RequiredError}
|
|
282
309
|
*/
|
|
283
|
-
lspDidClose: (workspaceId: string, lspDocumentRequest: LspDocumentRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
310
|
+
lspDidClose: (workspaceId: string, lspDocumentRequest: LspDocumentRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
284
311
|
/**
|
|
285
312
|
* The document open notification is sent from the client to the server to signal newly opened text documents.
|
|
286
313
|
* @summary Call Lsp DidOpen
|
|
287
314
|
* @param {string} workspaceId
|
|
288
315
|
* @param {LspDocumentRequest} lspDocumentRequest
|
|
316
|
+
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
289
317
|
* @param {*} [options] Override http request option.
|
|
290
318
|
* @throws {RequiredError}
|
|
291
319
|
*/
|
|
292
|
-
lspDidOpen: (workspaceId: string, lspDocumentRequest: LspDocumentRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
320
|
+
lspDidOpen: (workspaceId: string, lspDocumentRequest: LspDocumentRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
293
321
|
/**
|
|
294
322
|
* The document symbol request is sent from the client to the server.
|
|
295
323
|
* @summary Call Lsp DocumentSymbols
|
|
@@ -297,28 +325,31 @@ export declare const ToolboxApiAxiosParamCreator: (configuration?: Configuration
|
|
|
297
325
|
* @param {string} languageId
|
|
298
326
|
* @param {string} pathToProject
|
|
299
327
|
* @param {string} uri
|
|
328
|
+
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
300
329
|
* @param {*} [options] Override http request option.
|
|
301
330
|
* @throws {RequiredError}
|
|
302
331
|
*/
|
|
303
|
-
lspDocumentSymbols: (workspaceId: string, languageId: string, pathToProject: string, uri: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
332
|
+
lspDocumentSymbols: (workspaceId: string, languageId: string, pathToProject: string, uri: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
304
333
|
/**
|
|
305
334
|
* Start Lsp server process inside workspace project
|
|
306
335
|
* @summary Start Lsp server
|
|
307
336
|
* @param {string} workspaceId
|
|
308
337
|
* @param {LspServerRequest} lspServerRequest
|
|
338
|
+
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
309
339
|
* @param {*} [options] Override http request option.
|
|
310
340
|
* @throws {RequiredError}
|
|
311
341
|
*/
|
|
312
|
-
lspStart: (workspaceId: string, lspServerRequest: LspServerRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
342
|
+
lspStart: (workspaceId: string, lspServerRequest: LspServerRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
313
343
|
/**
|
|
314
344
|
* Stop Lsp server process inside workspace project
|
|
315
345
|
* @summary Stop Lsp server
|
|
316
346
|
* @param {string} workspaceId
|
|
317
347
|
* @param {LspServerRequest} lspServerRequest
|
|
348
|
+
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
318
349
|
* @param {*} [options] Override http request option.
|
|
319
350
|
* @throws {RequiredError}
|
|
320
351
|
*/
|
|
321
|
-
lspStop: (workspaceId: string, lspServerRequest: LspServerRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
352
|
+
lspStop: (workspaceId: string, lspServerRequest: LspServerRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
322
353
|
/**
|
|
323
354
|
* The workspace symbol request is sent from the client to the server to list project-wide symbols matching the query string.
|
|
324
355
|
* @summary Call Lsp WorkspaceSymbols
|
|
@@ -326,61 +357,67 @@ export declare const ToolboxApiAxiosParamCreator: (configuration?: Configuration
|
|
|
326
357
|
* @param {string} languageId
|
|
327
358
|
* @param {string} pathToProject
|
|
328
359
|
* @param {string} query
|
|
360
|
+
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
329
361
|
* @param {*} [options] Override http request option.
|
|
330
362
|
* @throws {RequiredError}
|
|
331
363
|
*/
|
|
332
|
-
lspWorkspaceSymbols: (workspaceId: string, languageId: string, pathToProject: string, query: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
364
|
+
lspWorkspaceSymbols: (workspaceId: string, languageId: string, pathToProject: string, query: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
333
365
|
/**
|
|
334
366
|
* Move file inside workspace
|
|
335
367
|
* @summary Move file
|
|
336
368
|
* @param {string} workspaceId
|
|
337
369
|
* @param {string} source
|
|
338
370
|
* @param {string} destination
|
|
371
|
+
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
339
372
|
* @param {*} [options] Override http request option.
|
|
340
373
|
* @throws {RequiredError}
|
|
341
374
|
*/
|
|
342
|
-
moveFile: (workspaceId: string, source: string, destination: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
375
|
+
moveFile: (workspaceId: string, source: string, destination: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
343
376
|
/**
|
|
344
377
|
* Replace text/pattern in multiple files inside workspace
|
|
345
378
|
* @summary Replace in files
|
|
346
379
|
* @param {string} workspaceId
|
|
347
380
|
* @param {ReplaceRequest} replaceRequest
|
|
381
|
+
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
348
382
|
* @param {*} [options] Override http request option.
|
|
349
383
|
* @throws {RequiredError}
|
|
350
384
|
*/
|
|
351
|
-
replaceInFiles: (workspaceId: string, replaceRequest: ReplaceRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
385
|
+
replaceInFiles: (workspaceId: string, replaceRequest: ReplaceRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
352
386
|
/**
|
|
353
387
|
* Search for files inside workspace
|
|
354
388
|
* @summary Search files
|
|
355
389
|
* @param {string} workspaceId
|
|
356
390
|
* @param {string} path
|
|
357
391
|
* @param {string} pattern
|
|
392
|
+
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
358
393
|
* @param {*} [options] Override http request option.
|
|
359
394
|
* @throws {RequiredError}
|
|
360
395
|
*/
|
|
361
|
-
searchFiles: (workspaceId: string, path: string, pattern: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
396
|
+
searchFiles: (workspaceId: string, path: string, pattern: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
362
397
|
/**
|
|
363
398
|
* Set file owner/group/permissions inside workspace
|
|
364
399
|
* @summary Set file permissions
|
|
365
400
|
* @param {string} workspaceId
|
|
366
401
|
* @param {string} path
|
|
402
|
+
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
367
403
|
* @param {string} [owner]
|
|
368
404
|
* @param {string} [group]
|
|
369
405
|
* @param {string} [mode]
|
|
370
406
|
* @param {*} [options] Override http request option.
|
|
371
407
|
* @throws {RequiredError}
|
|
372
408
|
*/
|
|
373
|
-
setFilePermissions: (workspaceId: string, path: string, owner?: string, group?: string, mode?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
409
|
+
setFilePermissions: (workspaceId: string, path: string, xDaytonaOrganizationID?: string, owner?: string, group?: string, mode?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
374
410
|
/**
|
|
375
411
|
* Upload file inside workspace
|
|
376
412
|
* @summary Upload file
|
|
377
413
|
* @param {string} workspaceId
|
|
378
414
|
* @param {string} path
|
|
415
|
+
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
379
416
|
* @param {File} [file]
|
|
380
417
|
* @param {*} [options] Override http request option.
|
|
381
418
|
* @throws {RequiredError}
|
|
382
419
|
*/
|
|
383
|
-
uploadFile: (workspaceId: string, path: string, file?: File, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
420
|
+
uploadFile: (workspaceId: string, path: string, xDaytonaOrganizationID?: string, file?: File, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
384
421
|
};
|
|
385
422
|
/**
|
|
386
423
|
* ToolboxApi - functional programming interface
|
|
@@ -393,246 +430,274 @@ export declare const ToolboxApiFp: (configuration?: Configuration) => {
|
|
|
393
430
|
* @param {string} workspaceId
|
|
394
431
|
* @param {string} path
|
|
395
432
|
* @param {string} mode
|
|
433
|
+
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
396
434
|
* @param {*} [options] Override http request option.
|
|
397
435
|
* @throws {RequiredError}
|
|
398
436
|
*/
|
|
399
|
-
createFolder(workspaceId: string, path: string, mode: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
437
|
+
createFolder(workspaceId: string, path: string, mode: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
400
438
|
/**
|
|
401
439
|
* Create a new session in the workspace
|
|
402
440
|
* @summary Create session
|
|
403
441
|
* @param {string} workspaceId
|
|
404
442
|
* @param {CreateSessionRequest} createSessionRequest
|
|
443
|
+
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
405
444
|
* @param {*} [options] Override http request option.
|
|
406
445
|
* @throws {RequiredError}
|
|
407
446
|
*/
|
|
408
|
-
createSession(workspaceId: string, createSessionRequest: CreateSessionRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
447
|
+
createSession(workspaceId: string, createSessionRequest: CreateSessionRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
409
448
|
/**
|
|
410
449
|
* Delete file inside workspace
|
|
411
450
|
* @summary Delete file
|
|
412
451
|
* @param {string} workspaceId
|
|
413
452
|
* @param {string} path
|
|
453
|
+
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
414
454
|
* @param {*} [options] Override http request option.
|
|
415
455
|
* @throws {RequiredError}
|
|
416
456
|
*/
|
|
417
|
-
deleteFile(workspaceId: string, path: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
457
|
+
deleteFile(workspaceId: string, path: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
418
458
|
/**
|
|
419
459
|
* Delete a specific session
|
|
420
460
|
* @summary Delete session
|
|
421
461
|
* @param {string} workspaceId
|
|
422
462
|
* @param {string} sessionId
|
|
463
|
+
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
423
464
|
* @param {*} [options] Override http request option.
|
|
424
465
|
* @throws {RequiredError}
|
|
425
466
|
*/
|
|
426
|
-
deleteSession(workspaceId: string, sessionId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
467
|
+
deleteSession(workspaceId: string, sessionId: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
427
468
|
/**
|
|
428
469
|
* Download file from workspace
|
|
429
470
|
* @summary Download file
|
|
430
471
|
* @param {string} workspaceId
|
|
431
472
|
* @param {string} path
|
|
473
|
+
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
432
474
|
* @param {*} [options] Override http request option.
|
|
433
475
|
* @throws {RequiredError}
|
|
434
476
|
*/
|
|
435
|
-
downloadFile(workspaceId: string, path: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<File>>;
|
|
477
|
+
downloadFile(workspaceId: string, path: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<File>>;
|
|
436
478
|
/**
|
|
437
479
|
* Execute command synchronously inside workspace
|
|
438
480
|
* @summary Execute command
|
|
439
481
|
* @param {string} workspaceId
|
|
440
482
|
* @param {ExecuteRequest} executeRequest
|
|
483
|
+
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
441
484
|
* @param {*} [options] Override http request option.
|
|
442
485
|
* @throws {RequiredError}
|
|
443
486
|
*/
|
|
444
|
-
executeCommand(workspaceId: string, executeRequest: ExecuteRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ExecuteResponse>>;
|
|
487
|
+
executeCommand(workspaceId: string, executeRequest: ExecuteRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ExecuteResponse>>;
|
|
445
488
|
/**
|
|
446
489
|
* Execute a command in a specific session
|
|
447
490
|
* @summary Execute command in session
|
|
448
491
|
* @param {string} workspaceId
|
|
449
492
|
* @param {string} sessionId
|
|
450
493
|
* @param {SessionExecuteRequest} sessionExecuteRequest
|
|
494
|
+
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
451
495
|
* @param {*} [options] Override http request option.
|
|
452
496
|
* @throws {RequiredError}
|
|
453
497
|
*/
|
|
454
|
-
executeSessionCommand(workspaceId: string, sessionId: string, sessionExecuteRequest: SessionExecuteRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SessionExecuteResponse>>;
|
|
498
|
+
executeSessionCommand(workspaceId: string, sessionId: string, sessionExecuteRequest: SessionExecuteRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SessionExecuteResponse>>;
|
|
455
499
|
/**
|
|
456
500
|
* Search for text/pattern inside workspace files
|
|
457
501
|
* @summary Search for text/pattern in files
|
|
458
502
|
* @param {string} workspaceId
|
|
459
503
|
* @param {string} path
|
|
460
504
|
* @param {string} pattern
|
|
505
|
+
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
461
506
|
* @param {*} [options] Override http request option.
|
|
462
507
|
* @throws {RequiredError}
|
|
463
508
|
*/
|
|
464
|
-
findInFiles(workspaceId: string, path: string, pattern: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<Match>>>;
|
|
509
|
+
findInFiles(workspaceId: string, path: string, pattern: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<Match>>>;
|
|
465
510
|
/**
|
|
466
511
|
* Get file info inside workspace
|
|
467
512
|
* @summary Get file info
|
|
468
513
|
* @param {string} workspaceId
|
|
469
514
|
* @param {string} path
|
|
515
|
+
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
470
516
|
* @param {*} [options] Override http request option.
|
|
471
517
|
* @throws {RequiredError}
|
|
472
518
|
*/
|
|
473
|
-
getFileInfo(workspaceId: string, path: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<FileInfo>>;
|
|
519
|
+
getFileInfo(workspaceId: string, path: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<FileInfo>>;
|
|
474
520
|
/**
|
|
475
521
|
*
|
|
476
522
|
* @summary Get workspace project dir
|
|
477
523
|
* @param {string} workspaceId
|
|
524
|
+
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
478
525
|
* @param {*} [options] Override http request option.
|
|
479
526
|
* @throws {RequiredError}
|
|
480
527
|
*/
|
|
481
|
-
getProjectDir(workspaceId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ProjectDirResponse>>;
|
|
528
|
+
getProjectDir(workspaceId: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ProjectDirResponse>>;
|
|
482
529
|
/**
|
|
483
530
|
* Get session by ID
|
|
484
531
|
* @summary Get session
|
|
485
532
|
* @param {string} workspaceId
|
|
486
533
|
* @param {string} sessionId
|
|
534
|
+
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
487
535
|
* @param {*} [options] Override http request option.
|
|
488
536
|
* @throws {RequiredError}
|
|
489
537
|
*/
|
|
490
|
-
getSession(workspaceId: string, sessionId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Session>>;
|
|
538
|
+
getSession(workspaceId: string, sessionId: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Session>>;
|
|
491
539
|
/**
|
|
492
540
|
* Get session command by ID
|
|
493
541
|
* @summary Get session command
|
|
494
542
|
* @param {string} workspaceId
|
|
495
543
|
* @param {string} sessionId
|
|
496
544
|
* @param {string} commandId
|
|
545
|
+
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
497
546
|
* @param {*} [options] Override http request option.
|
|
498
547
|
* @throws {RequiredError}
|
|
499
548
|
*/
|
|
500
|
-
getSessionCommand(workspaceId: string, sessionId: string, commandId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Command>>;
|
|
549
|
+
getSessionCommand(workspaceId: string, sessionId: string, commandId: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Command>>;
|
|
501
550
|
/**
|
|
502
551
|
* Get logs for a specific command in a session
|
|
503
552
|
* @summary Get command logs
|
|
504
553
|
* @param {string} workspaceId
|
|
505
554
|
* @param {string} sessionId
|
|
506
555
|
* @param {string} commandId
|
|
556
|
+
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
557
|
+
* @param {boolean} [follow]
|
|
507
558
|
* @param {*} [options] Override http request option.
|
|
508
559
|
* @throws {RequiredError}
|
|
509
560
|
*/
|
|
510
|
-
getSessionCommandLogs(workspaceId: string, sessionId: string, commandId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<string>>;
|
|
561
|
+
getSessionCommandLogs(workspaceId: string, sessionId: string, commandId: string, xDaytonaOrganizationID?: string, follow?: boolean, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<string>>;
|
|
511
562
|
/**
|
|
512
563
|
* Add files to git commit
|
|
513
564
|
* @summary Add files
|
|
514
565
|
* @param {string} workspaceId
|
|
515
566
|
* @param {GitAddRequest} gitAddRequest
|
|
567
|
+
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
516
568
|
* @param {*} [options] Override http request option.
|
|
517
569
|
* @throws {RequiredError}
|
|
518
570
|
*/
|
|
519
|
-
gitAddFiles(workspaceId: string, gitAddRequest: GitAddRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
571
|
+
gitAddFiles(workspaceId: string, gitAddRequest: GitAddRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
520
572
|
/**
|
|
521
573
|
* Clone git repository
|
|
522
574
|
* @summary Clone repository
|
|
523
575
|
* @param {string} workspaceId
|
|
524
576
|
* @param {GitCloneRequest} gitCloneRequest
|
|
577
|
+
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
525
578
|
* @param {*} [options] Override http request option.
|
|
526
579
|
* @throws {RequiredError}
|
|
527
580
|
*/
|
|
528
|
-
gitCloneRepository(workspaceId: string, gitCloneRequest: GitCloneRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
581
|
+
gitCloneRepository(workspaceId: string, gitCloneRequest: GitCloneRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
529
582
|
/**
|
|
530
583
|
* Commit changes to git repository
|
|
531
584
|
* @summary Commit changes
|
|
532
585
|
* @param {string} workspaceId
|
|
533
586
|
* @param {GitCommitRequest} gitCommitRequest
|
|
587
|
+
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
534
588
|
* @param {*} [options] Override http request option.
|
|
535
589
|
* @throws {RequiredError}
|
|
536
590
|
*/
|
|
537
|
-
gitCommitChanges(workspaceId: string, gitCommitRequest: GitCommitRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GitCommitResponse>>;
|
|
591
|
+
gitCommitChanges(workspaceId: string, gitCommitRequest: GitCommitRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GitCommitResponse>>;
|
|
538
592
|
/**
|
|
539
593
|
* Create branch on git repository
|
|
540
594
|
* @summary Create branch
|
|
541
595
|
* @param {string} workspaceId
|
|
542
596
|
* @param {GitBranchRequest} gitBranchRequest
|
|
597
|
+
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
543
598
|
* @param {*} [options] Override http request option.
|
|
544
599
|
* @throws {RequiredError}
|
|
545
600
|
*/
|
|
546
|
-
gitCreateBranch(workspaceId: string, gitBranchRequest: GitBranchRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
601
|
+
gitCreateBranch(workspaceId: string, gitBranchRequest: GitBranchRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
547
602
|
/**
|
|
548
603
|
* Get commit history from git repository
|
|
549
604
|
* @summary Get commit history
|
|
550
605
|
* @param {string} workspaceId
|
|
551
606
|
* @param {string} path
|
|
607
|
+
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
552
608
|
* @param {*} [options] Override http request option.
|
|
553
609
|
* @throws {RequiredError}
|
|
554
610
|
*/
|
|
555
|
-
gitGetHistory(workspaceId: string, path: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<GitCommitInfo>>>;
|
|
611
|
+
gitGetHistory(workspaceId: string, path: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<GitCommitInfo>>>;
|
|
556
612
|
/**
|
|
557
613
|
* Get status from git repository
|
|
558
614
|
* @summary Get git status
|
|
559
615
|
* @param {string} workspaceId
|
|
560
616
|
* @param {string} path
|
|
617
|
+
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
561
618
|
* @param {*} [options] Override http request option.
|
|
562
619
|
* @throws {RequiredError}
|
|
563
620
|
*/
|
|
564
|
-
gitGetStatus(workspaceId: string, path: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GitStatus>>;
|
|
621
|
+
gitGetStatus(workspaceId: string, path: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GitStatus>>;
|
|
565
622
|
/**
|
|
566
623
|
* Get branch list from git repository
|
|
567
624
|
* @summary Get branch list
|
|
568
625
|
* @param {string} workspaceId
|
|
569
626
|
* @param {string} path
|
|
627
|
+
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
570
628
|
* @param {*} [options] Override http request option.
|
|
571
629
|
* @throws {RequiredError}
|
|
572
630
|
*/
|
|
573
|
-
gitListBranches(workspaceId: string, path: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListBranchResponse>>;
|
|
631
|
+
gitListBranches(workspaceId: string, path: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListBranchResponse>>;
|
|
574
632
|
/**
|
|
575
633
|
* Pull changes from remote
|
|
576
634
|
* @summary Pull changes
|
|
577
635
|
* @param {string} workspaceId
|
|
578
636
|
* @param {GitRepoRequest} gitRepoRequest
|
|
637
|
+
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
579
638
|
* @param {*} [options] Override http request option.
|
|
580
639
|
* @throws {RequiredError}
|
|
581
640
|
*/
|
|
582
|
-
gitPullChanges(workspaceId: string, gitRepoRequest: GitRepoRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
641
|
+
gitPullChanges(workspaceId: string, gitRepoRequest: GitRepoRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
583
642
|
/**
|
|
584
643
|
* Push changes to remote
|
|
585
644
|
* @summary Push changes
|
|
586
645
|
* @param {string} workspaceId
|
|
587
646
|
* @param {GitRepoRequest} gitRepoRequest
|
|
647
|
+
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
588
648
|
* @param {*} [options] Override http request option.
|
|
589
649
|
* @throws {RequiredError}
|
|
590
650
|
*/
|
|
591
|
-
gitPushChanges(workspaceId: string, gitRepoRequest: GitRepoRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
651
|
+
gitPushChanges(workspaceId: string, gitRepoRequest: GitRepoRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
592
652
|
/**
|
|
593
653
|
*
|
|
594
654
|
* @summary List files
|
|
595
655
|
* @param {string} workspaceId
|
|
656
|
+
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
596
657
|
* @param {string} [path]
|
|
597
658
|
* @param {*} [options] Override http request option.
|
|
598
659
|
* @throws {RequiredError}
|
|
599
660
|
*/
|
|
600
|
-
listFiles(workspaceId: string, path?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<FileInfo>>>;
|
|
661
|
+
listFiles(workspaceId: string, xDaytonaOrganizationID?: string, path?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<FileInfo>>>;
|
|
601
662
|
/**
|
|
602
663
|
* List all active sessions in the workspace
|
|
603
664
|
* @summary List sessions
|
|
604
665
|
* @param {string} workspaceId
|
|
666
|
+
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
605
667
|
* @param {*} [options] Override http request option.
|
|
606
668
|
* @throws {RequiredError}
|
|
607
669
|
*/
|
|
608
|
-
listSessions(workspaceId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<Session>>>;
|
|
670
|
+
listSessions(workspaceId: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<Session>>>;
|
|
609
671
|
/**
|
|
610
672
|
* The Completion request is sent from the client to the server to compute completion items at a given cursor position.
|
|
611
673
|
* @summary Get Lsp Completions
|
|
612
674
|
* @param {string} workspaceId
|
|
613
675
|
* @param {LspCompletionParams} lspCompletionParams
|
|
676
|
+
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
614
677
|
* @param {*} [options] Override http request option.
|
|
615
678
|
* @throws {RequiredError}
|
|
616
679
|
*/
|
|
617
|
-
lspCompletions(workspaceId: string, lspCompletionParams: LspCompletionParams, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CompletionList>>;
|
|
680
|
+
lspCompletions(workspaceId: string, lspCompletionParams: LspCompletionParams, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CompletionList>>;
|
|
618
681
|
/**
|
|
619
682
|
* The document close notification is sent from the client to the server when the document got closed in the client.
|
|
620
683
|
* @summary Call Lsp DidClose
|
|
621
684
|
* @param {string} workspaceId
|
|
622
685
|
* @param {LspDocumentRequest} lspDocumentRequest
|
|
686
|
+
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
623
687
|
* @param {*} [options] Override http request option.
|
|
624
688
|
* @throws {RequiredError}
|
|
625
689
|
*/
|
|
626
|
-
lspDidClose(workspaceId: string, lspDocumentRequest: LspDocumentRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
690
|
+
lspDidClose(workspaceId: string, lspDocumentRequest: LspDocumentRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
627
691
|
/**
|
|
628
692
|
* The document open notification is sent from the client to the server to signal newly opened text documents.
|
|
629
693
|
* @summary Call Lsp DidOpen
|
|
630
694
|
* @param {string} workspaceId
|
|
631
695
|
* @param {LspDocumentRequest} lspDocumentRequest
|
|
696
|
+
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
632
697
|
* @param {*} [options] Override http request option.
|
|
633
698
|
* @throws {RequiredError}
|
|
634
699
|
*/
|
|
635
|
-
lspDidOpen(workspaceId: string, lspDocumentRequest: LspDocumentRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
700
|
+
lspDidOpen(workspaceId: string, lspDocumentRequest: LspDocumentRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
636
701
|
/**
|
|
637
702
|
* The document symbol request is sent from the client to the server.
|
|
638
703
|
* @summary Call Lsp DocumentSymbols
|
|
@@ -640,28 +705,31 @@ export declare const ToolboxApiFp: (configuration?: Configuration) => {
|
|
|
640
705
|
* @param {string} languageId
|
|
641
706
|
* @param {string} pathToProject
|
|
642
707
|
* @param {string} uri
|
|
708
|
+
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
643
709
|
* @param {*} [options] Override http request option.
|
|
644
710
|
* @throws {RequiredError}
|
|
645
711
|
*/
|
|
646
|
-
lspDocumentSymbols(workspaceId: string, languageId: string, pathToProject: string, uri: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<LspSymbol>>>;
|
|
712
|
+
lspDocumentSymbols(workspaceId: string, languageId: string, pathToProject: string, uri: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<LspSymbol>>>;
|
|
647
713
|
/**
|
|
648
714
|
* Start Lsp server process inside workspace project
|
|
649
715
|
* @summary Start Lsp server
|
|
650
716
|
* @param {string} workspaceId
|
|
651
717
|
* @param {LspServerRequest} lspServerRequest
|
|
718
|
+
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
652
719
|
* @param {*} [options] Override http request option.
|
|
653
720
|
* @throws {RequiredError}
|
|
654
721
|
*/
|
|
655
|
-
lspStart(workspaceId: string, lspServerRequest: LspServerRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
722
|
+
lspStart(workspaceId: string, lspServerRequest: LspServerRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
656
723
|
/**
|
|
657
724
|
* Stop Lsp server process inside workspace project
|
|
658
725
|
* @summary Stop Lsp server
|
|
659
726
|
* @param {string} workspaceId
|
|
660
727
|
* @param {LspServerRequest} lspServerRequest
|
|
728
|
+
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
661
729
|
* @param {*} [options] Override http request option.
|
|
662
730
|
* @throws {RequiredError}
|
|
663
731
|
*/
|
|
664
|
-
lspStop(workspaceId: string, lspServerRequest: LspServerRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
732
|
+
lspStop(workspaceId: string, lspServerRequest: LspServerRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
665
733
|
/**
|
|
666
734
|
* The workspace symbol request is sent from the client to the server to list project-wide symbols matching the query string.
|
|
667
735
|
* @summary Call Lsp WorkspaceSymbols
|
|
@@ -669,61 +737,67 @@ export declare const ToolboxApiFp: (configuration?: Configuration) => {
|
|
|
669
737
|
* @param {string} languageId
|
|
670
738
|
* @param {string} pathToProject
|
|
671
739
|
* @param {string} query
|
|
740
|
+
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
672
741
|
* @param {*} [options] Override http request option.
|
|
673
742
|
* @throws {RequiredError}
|
|
674
743
|
*/
|
|
675
|
-
lspWorkspaceSymbols(workspaceId: string, languageId: string, pathToProject: string, query: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<LspSymbol>>>;
|
|
744
|
+
lspWorkspaceSymbols(workspaceId: string, languageId: string, pathToProject: string, query: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<LspSymbol>>>;
|
|
676
745
|
/**
|
|
677
746
|
* Move file inside workspace
|
|
678
747
|
* @summary Move file
|
|
679
748
|
* @param {string} workspaceId
|
|
680
749
|
* @param {string} source
|
|
681
750
|
* @param {string} destination
|
|
751
|
+
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
682
752
|
* @param {*} [options] Override http request option.
|
|
683
753
|
* @throws {RequiredError}
|
|
684
754
|
*/
|
|
685
|
-
moveFile(workspaceId: string, source: string, destination: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
755
|
+
moveFile(workspaceId: string, source: string, destination: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
686
756
|
/**
|
|
687
757
|
* Replace text/pattern in multiple files inside workspace
|
|
688
758
|
* @summary Replace in files
|
|
689
759
|
* @param {string} workspaceId
|
|
690
760
|
* @param {ReplaceRequest} replaceRequest
|
|
761
|
+
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
691
762
|
* @param {*} [options] Override http request option.
|
|
692
763
|
* @throws {RequiredError}
|
|
693
764
|
*/
|
|
694
|
-
replaceInFiles(workspaceId: string, replaceRequest: ReplaceRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<ReplaceResult>>>;
|
|
765
|
+
replaceInFiles(workspaceId: string, replaceRequest: ReplaceRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<ReplaceResult>>>;
|
|
695
766
|
/**
|
|
696
767
|
* Search for files inside workspace
|
|
697
768
|
* @summary Search files
|
|
698
769
|
* @param {string} workspaceId
|
|
699
770
|
* @param {string} path
|
|
700
771
|
* @param {string} pattern
|
|
772
|
+
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
701
773
|
* @param {*} [options] Override http request option.
|
|
702
774
|
* @throws {RequiredError}
|
|
703
775
|
*/
|
|
704
|
-
searchFiles(workspaceId: string, path: string, pattern: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SearchFilesResponse>>;
|
|
776
|
+
searchFiles(workspaceId: string, path: string, pattern: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SearchFilesResponse>>;
|
|
705
777
|
/**
|
|
706
778
|
* Set file owner/group/permissions inside workspace
|
|
707
779
|
* @summary Set file permissions
|
|
708
780
|
* @param {string} workspaceId
|
|
709
781
|
* @param {string} path
|
|
782
|
+
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
710
783
|
* @param {string} [owner]
|
|
711
784
|
* @param {string} [group]
|
|
712
785
|
* @param {string} [mode]
|
|
713
786
|
* @param {*} [options] Override http request option.
|
|
714
787
|
* @throws {RequiredError}
|
|
715
788
|
*/
|
|
716
|
-
setFilePermissions(workspaceId: string, path: string, owner?: string, group?: string, mode?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
789
|
+
setFilePermissions(workspaceId: string, path: string, xDaytonaOrganizationID?: string, owner?: string, group?: string, mode?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
717
790
|
/**
|
|
718
791
|
* Upload file inside workspace
|
|
719
792
|
* @summary Upload file
|
|
720
793
|
* @param {string} workspaceId
|
|
721
794
|
* @param {string} path
|
|
795
|
+
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
722
796
|
* @param {File} [file]
|
|
723
797
|
* @param {*} [options] Override http request option.
|
|
724
798
|
* @throws {RequiredError}
|
|
725
799
|
*/
|
|
726
|
-
uploadFile(workspaceId: string, path: string, file?: File, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
800
|
+
uploadFile(workspaceId: string, path: string, xDaytonaOrganizationID?: string, file?: File, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
727
801
|
};
|
|
728
802
|
/**
|
|
729
803
|
* ToolboxApi - factory interface
|
|
@@ -736,246 +810,274 @@ export declare const ToolboxApiFactory: (configuration?: Configuration, basePath
|
|
|
736
810
|
* @param {string} workspaceId
|
|
737
811
|
* @param {string} path
|
|
738
812
|
* @param {string} mode
|
|
813
|
+
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
739
814
|
* @param {*} [options] Override http request option.
|
|
740
815
|
* @throws {RequiredError}
|
|
741
816
|
*/
|
|
742
|
-
createFolder(workspaceId: string, path: string, mode: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
817
|
+
createFolder(workspaceId: string, path: string, mode: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
743
818
|
/**
|
|
744
819
|
* Create a new session in the workspace
|
|
745
820
|
* @summary Create session
|
|
746
821
|
* @param {string} workspaceId
|
|
747
822
|
* @param {CreateSessionRequest} createSessionRequest
|
|
823
|
+
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
748
824
|
* @param {*} [options] Override http request option.
|
|
749
825
|
* @throws {RequiredError}
|
|
750
826
|
*/
|
|
751
|
-
createSession(workspaceId: string, createSessionRequest: CreateSessionRequest, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
827
|
+
createSession(workspaceId: string, createSessionRequest: CreateSessionRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
752
828
|
/**
|
|
753
829
|
* Delete file inside workspace
|
|
754
830
|
* @summary Delete file
|
|
755
831
|
* @param {string} workspaceId
|
|
756
832
|
* @param {string} path
|
|
833
|
+
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
757
834
|
* @param {*} [options] Override http request option.
|
|
758
835
|
* @throws {RequiredError}
|
|
759
836
|
*/
|
|
760
|
-
deleteFile(workspaceId: string, path: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
837
|
+
deleteFile(workspaceId: string, path: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
761
838
|
/**
|
|
762
839
|
* Delete a specific session
|
|
763
840
|
* @summary Delete session
|
|
764
841
|
* @param {string} workspaceId
|
|
765
842
|
* @param {string} sessionId
|
|
843
|
+
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
766
844
|
* @param {*} [options] Override http request option.
|
|
767
845
|
* @throws {RequiredError}
|
|
768
846
|
*/
|
|
769
|
-
deleteSession(workspaceId: string, sessionId: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
847
|
+
deleteSession(workspaceId: string, sessionId: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
770
848
|
/**
|
|
771
849
|
* Download file from workspace
|
|
772
850
|
* @summary Download file
|
|
773
851
|
* @param {string} workspaceId
|
|
774
852
|
* @param {string} path
|
|
853
|
+
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
775
854
|
* @param {*} [options] Override http request option.
|
|
776
855
|
* @throws {RequiredError}
|
|
777
856
|
*/
|
|
778
|
-
downloadFile(workspaceId: string, path: string, options?: RawAxiosRequestConfig): AxiosPromise<File>;
|
|
857
|
+
downloadFile(workspaceId: string, path: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): AxiosPromise<File>;
|
|
779
858
|
/**
|
|
780
859
|
* Execute command synchronously inside workspace
|
|
781
860
|
* @summary Execute command
|
|
782
861
|
* @param {string} workspaceId
|
|
783
862
|
* @param {ExecuteRequest} executeRequest
|
|
863
|
+
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
784
864
|
* @param {*} [options] Override http request option.
|
|
785
865
|
* @throws {RequiredError}
|
|
786
866
|
*/
|
|
787
|
-
executeCommand(workspaceId: string, executeRequest: ExecuteRequest, options?: RawAxiosRequestConfig): AxiosPromise<ExecuteResponse>;
|
|
867
|
+
executeCommand(workspaceId: string, executeRequest: ExecuteRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): AxiosPromise<ExecuteResponse>;
|
|
788
868
|
/**
|
|
789
869
|
* Execute a command in a specific session
|
|
790
870
|
* @summary Execute command in session
|
|
791
871
|
* @param {string} workspaceId
|
|
792
872
|
* @param {string} sessionId
|
|
793
873
|
* @param {SessionExecuteRequest} sessionExecuteRequest
|
|
874
|
+
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
794
875
|
* @param {*} [options] Override http request option.
|
|
795
876
|
* @throws {RequiredError}
|
|
796
877
|
*/
|
|
797
|
-
executeSessionCommand(workspaceId: string, sessionId: string, sessionExecuteRequest: SessionExecuteRequest, options?: RawAxiosRequestConfig): AxiosPromise<SessionExecuteResponse>;
|
|
878
|
+
executeSessionCommand(workspaceId: string, sessionId: string, sessionExecuteRequest: SessionExecuteRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): AxiosPromise<SessionExecuteResponse>;
|
|
798
879
|
/**
|
|
799
880
|
* Search for text/pattern inside workspace files
|
|
800
881
|
* @summary Search for text/pattern in files
|
|
801
882
|
* @param {string} workspaceId
|
|
802
883
|
* @param {string} path
|
|
803
884
|
* @param {string} pattern
|
|
885
|
+
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
804
886
|
* @param {*} [options] Override http request option.
|
|
805
887
|
* @throws {RequiredError}
|
|
806
888
|
*/
|
|
807
|
-
findInFiles(workspaceId: string, path: string, pattern: string, options?: RawAxiosRequestConfig): AxiosPromise<Array<Match>>;
|
|
889
|
+
findInFiles(workspaceId: string, path: string, pattern: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): AxiosPromise<Array<Match>>;
|
|
808
890
|
/**
|
|
809
891
|
* Get file info inside workspace
|
|
810
892
|
* @summary Get file info
|
|
811
893
|
* @param {string} workspaceId
|
|
812
894
|
* @param {string} path
|
|
895
|
+
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
813
896
|
* @param {*} [options] Override http request option.
|
|
814
897
|
* @throws {RequiredError}
|
|
815
898
|
*/
|
|
816
|
-
getFileInfo(workspaceId: string, path: string, options?: RawAxiosRequestConfig): AxiosPromise<FileInfo>;
|
|
899
|
+
getFileInfo(workspaceId: string, path: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): AxiosPromise<FileInfo>;
|
|
817
900
|
/**
|
|
818
901
|
*
|
|
819
902
|
* @summary Get workspace project dir
|
|
820
903
|
* @param {string} workspaceId
|
|
904
|
+
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
821
905
|
* @param {*} [options] Override http request option.
|
|
822
906
|
* @throws {RequiredError}
|
|
823
907
|
*/
|
|
824
|
-
getProjectDir(workspaceId: string, options?: RawAxiosRequestConfig): AxiosPromise<ProjectDirResponse>;
|
|
908
|
+
getProjectDir(workspaceId: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): AxiosPromise<ProjectDirResponse>;
|
|
825
909
|
/**
|
|
826
910
|
* Get session by ID
|
|
827
911
|
* @summary Get session
|
|
828
912
|
* @param {string} workspaceId
|
|
829
913
|
* @param {string} sessionId
|
|
914
|
+
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
830
915
|
* @param {*} [options] Override http request option.
|
|
831
916
|
* @throws {RequiredError}
|
|
832
917
|
*/
|
|
833
|
-
getSession(workspaceId: string, sessionId: string, options?: RawAxiosRequestConfig): AxiosPromise<Session>;
|
|
918
|
+
getSession(workspaceId: string, sessionId: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): AxiosPromise<Session>;
|
|
834
919
|
/**
|
|
835
920
|
* Get session command by ID
|
|
836
921
|
* @summary Get session command
|
|
837
922
|
* @param {string} workspaceId
|
|
838
923
|
* @param {string} sessionId
|
|
839
924
|
* @param {string} commandId
|
|
925
|
+
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
840
926
|
* @param {*} [options] Override http request option.
|
|
841
927
|
* @throws {RequiredError}
|
|
842
928
|
*/
|
|
843
|
-
getSessionCommand(workspaceId: string, sessionId: string, commandId: string, options?: RawAxiosRequestConfig): AxiosPromise<Command>;
|
|
929
|
+
getSessionCommand(workspaceId: string, sessionId: string, commandId: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): AxiosPromise<Command>;
|
|
844
930
|
/**
|
|
845
931
|
* Get logs for a specific command in a session
|
|
846
932
|
* @summary Get command logs
|
|
847
933
|
* @param {string} workspaceId
|
|
848
934
|
* @param {string} sessionId
|
|
849
935
|
* @param {string} commandId
|
|
936
|
+
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
937
|
+
* @param {boolean} [follow]
|
|
850
938
|
* @param {*} [options] Override http request option.
|
|
851
939
|
* @throws {RequiredError}
|
|
852
940
|
*/
|
|
853
|
-
getSessionCommandLogs(workspaceId: string, sessionId: string, commandId: string, options?: RawAxiosRequestConfig): AxiosPromise<string>;
|
|
941
|
+
getSessionCommandLogs(workspaceId: string, sessionId: string, commandId: string, xDaytonaOrganizationID?: string, follow?: boolean, options?: RawAxiosRequestConfig): AxiosPromise<string>;
|
|
854
942
|
/**
|
|
855
943
|
* Add files to git commit
|
|
856
944
|
* @summary Add files
|
|
857
945
|
* @param {string} workspaceId
|
|
858
946
|
* @param {GitAddRequest} gitAddRequest
|
|
947
|
+
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
859
948
|
* @param {*} [options] Override http request option.
|
|
860
949
|
* @throws {RequiredError}
|
|
861
950
|
*/
|
|
862
|
-
gitAddFiles(workspaceId: string, gitAddRequest: GitAddRequest, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
951
|
+
gitAddFiles(workspaceId: string, gitAddRequest: GitAddRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
863
952
|
/**
|
|
864
953
|
* Clone git repository
|
|
865
954
|
* @summary Clone repository
|
|
866
955
|
* @param {string} workspaceId
|
|
867
956
|
* @param {GitCloneRequest} gitCloneRequest
|
|
957
|
+
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
868
958
|
* @param {*} [options] Override http request option.
|
|
869
959
|
* @throws {RequiredError}
|
|
870
960
|
*/
|
|
871
|
-
gitCloneRepository(workspaceId: string, gitCloneRequest: GitCloneRequest, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
961
|
+
gitCloneRepository(workspaceId: string, gitCloneRequest: GitCloneRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
872
962
|
/**
|
|
873
963
|
* Commit changes to git repository
|
|
874
964
|
* @summary Commit changes
|
|
875
965
|
* @param {string} workspaceId
|
|
876
966
|
* @param {GitCommitRequest} gitCommitRequest
|
|
967
|
+
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
877
968
|
* @param {*} [options] Override http request option.
|
|
878
969
|
* @throws {RequiredError}
|
|
879
970
|
*/
|
|
880
|
-
gitCommitChanges(workspaceId: string, gitCommitRequest: GitCommitRequest, options?: RawAxiosRequestConfig): AxiosPromise<GitCommitResponse>;
|
|
971
|
+
gitCommitChanges(workspaceId: string, gitCommitRequest: GitCommitRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): AxiosPromise<GitCommitResponse>;
|
|
881
972
|
/**
|
|
882
973
|
* Create branch on git repository
|
|
883
974
|
* @summary Create branch
|
|
884
975
|
* @param {string} workspaceId
|
|
885
976
|
* @param {GitBranchRequest} gitBranchRequest
|
|
977
|
+
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
886
978
|
* @param {*} [options] Override http request option.
|
|
887
979
|
* @throws {RequiredError}
|
|
888
980
|
*/
|
|
889
|
-
gitCreateBranch(workspaceId: string, gitBranchRequest: GitBranchRequest, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
981
|
+
gitCreateBranch(workspaceId: string, gitBranchRequest: GitBranchRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
890
982
|
/**
|
|
891
983
|
* Get commit history from git repository
|
|
892
984
|
* @summary Get commit history
|
|
893
985
|
* @param {string} workspaceId
|
|
894
986
|
* @param {string} path
|
|
987
|
+
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
895
988
|
* @param {*} [options] Override http request option.
|
|
896
989
|
* @throws {RequiredError}
|
|
897
990
|
*/
|
|
898
|
-
gitGetHistory(workspaceId: string, path: string, options?: RawAxiosRequestConfig): AxiosPromise<Array<GitCommitInfo>>;
|
|
991
|
+
gitGetHistory(workspaceId: string, path: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): AxiosPromise<Array<GitCommitInfo>>;
|
|
899
992
|
/**
|
|
900
993
|
* Get status from git repository
|
|
901
994
|
* @summary Get git status
|
|
902
995
|
* @param {string} workspaceId
|
|
903
996
|
* @param {string} path
|
|
997
|
+
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
904
998
|
* @param {*} [options] Override http request option.
|
|
905
999
|
* @throws {RequiredError}
|
|
906
1000
|
*/
|
|
907
|
-
gitGetStatus(workspaceId: string, path: string, options?: RawAxiosRequestConfig): AxiosPromise<GitStatus>;
|
|
1001
|
+
gitGetStatus(workspaceId: string, path: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): AxiosPromise<GitStatus>;
|
|
908
1002
|
/**
|
|
909
1003
|
* Get branch list from git repository
|
|
910
1004
|
* @summary Get branch list
|
|
911
1005
|
* @param {string} workspaceId
|
|
912
1006
|
* @param {string} path
|
|
1007
|
+
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
913
1008
|
* @param {*} [options] Override http request option.
|
|
914
1009
|
* @throws {RequiredError}
|
|
915
1010
|
*/
|
|
916
|
-
gitListBranches(workspaceId: string, path: string, options?: RawAxiosRequestConfig): AxiosPromise<ListBranchResponse>;
|
|
1011
|
+
gitListBranches(workspaceId: string, path: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): AxiosPromise<ListBranchResponse>;
|
|
917
1012
|
/**
|
|
918
1013
|
* Pull changes from remote
|
|
919
1014
|
* @summary Pull changes
|
|
920
1015
|
* @param {string} workspaceId
|
|
921
1016
|
* @param {GitRepoRequest} gitRepoRequest
|
|
1017
|
+
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
922
1018
|
* @param {*} [options] Override http request option.
|
|
923
1019
|
* @throws {RequiredError}
|
|
924
1020
|
*/
|
|
925
|
-
gitPullChanges(workspaceId: string, gitRepoRequest: GitRepoRequest, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
1021
|
+
gitPullChanges(workspaceId: string, gitRepoRequest: GitRepoRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
926
1022
|
/**
|
|
927
1023
|
* Push changes to remote
|
|
928
1024
|
* @summary Push changes
|
|
929
1025
|
* @param {string} workspaceId
|
|
930
1026
|
* @param {GitRepoRequest} gitRepoRequest
|
|
1027
|
+
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
931
1028
|
* @param {*} [options] Override http request option.
|
|
932
1029
|
* @throws {RequiredError}
|
|
933
1030
|
*/
|
|
934
|
-
gitPushChanges(workspaceId: string, gitRepoRequest: GitRepoRequest, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
1031
|
+
gitPushChanges(workspaceId: string, gitRepoRequest: GitRepoRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
935
1032
|
/**
|
|
936
1033
|
*
|
|
937
1034
|
* @summary List files
|
|
938
1035
|
* @param {string} workspaceId
|
|
1036
|
+
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
939
1037
|
* @param {string} [path]
|
|
940
1038
|
* @param {*} [options] Override http request option.
|
|
941
1039
|
* @throws {RequiredError}
|
|
942
1040
|
*/
|
|
943
|
-
listFiles(workspaceId: string, path?: string, options?: RawAxiosRequestConfig): AxiosPromise<Array<FileInfo>>;
|
|
1041
|
+
listFiles(workspaceId: string, xDaytonaOrganizationID?: string, path?: string, options?: RawAxiosRequestConfig): AxiosPromise<Array<FileInfo>>;
|
|
944
1042
|
/**
|
|
945
1043
|
* List all active sessions in the workspace
|
|
946
1044
|
* @summary List sessions
|
|
947
1045
|
* @param {string} workspaceId
|
|
1046
|
+
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
948
1047
|
* @param {*} [options] Override http request option.
|
|
949
1048
|
* @throws {RequiredError}
|
|
950
1049
|
*/
|
|
951
|
-
listSessions(workspaceId: string, options?: RawAxiosRequestConfig): AxiosPromise<Array<Session>>;
|
|
1050
|
+
listSessions(workspaceId: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): AxiosPromise<Array<Session>>;
|
|
952
1051
|
/**
|
|
953
1052
|
* The Completion request is sent from the client to the server to compute completion items at a given cursor position.
|
|
954
1053
|
* @summary Get Lsp Completions
|
|
955
1054
|
* @param {string} workspaceId
|
|
956
1055
|
* @param {LspCompletionParams} lspCompletionParams
|
|
1056
|
+
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
957
1057
|
* @param {*} [options] Override http request option.
|
|
958
1058
|
* @throws {RequiredError}
|
|
959
1059
|
*/
|
|
960
|
-
lspCompletions(workspaceId: string, lspCompletionParams: LspCompletionParams, options?: RawAxiosRequestConfig): AxiosPromise<CompletionList>;
|
|
1060
|
+
lspCompletions(workspaceId: string, lspCompletionParams: LspCompletionParams, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): AxiosPromise<CompletionList>;
|
|
961
1061
|
/**
|
|
962
1062
|
* The document close notification is sent from the client to the server when the document got closed in the client.
|
|
963
1063
|
* @summary Call Lsp DidClose
|
|
964
1064
|
* @param {string} workspaceId
|
|
965
1065
|
* @param {LspDocumentRequest} lspDocumentRequest
|
|
1066
|
+
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
966
1067
|
* @param {*} [options] Override http request option.
|
|
967
1068
|
* @throws {RequiredError}
|
|
968
1069
|
*/
|
|
969
|
-
lspDidClose(workspaceId: string, lspDocumentRequest: LspDocumentRequest, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
1070
|
+
lspDidClose(workspaceId: string, lspDocumentRequest: LspDocumentRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
970
1071
|
/**
|
|
971
1072
|
* The document open notification is sent from the client to the server to signal newly opened text documents.
|
|
972
1073
|
* @summary Call Lsp DidOpen
|
|
973
1074
|
* @param {string} workspaceId
|
|
974
1075
|
* @param {LspDocumentRequest} lspDocumentRequest
|
|
1076
|
+
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
975
1077
|
* @param {*} [options] Override http request option.
|
|
976
1078
|
* @throws {RequiredError}
|
|
977
1079
|
*/
|
|
978
|
-
lspDidOpen(workspaceId: string, lspDocumentRequest: LspDocumentRequest, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
1080
|
+
lspDidOpen(workspaceId: string, lspDocumentRequest: LspDocumentRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
979
1081
|
/**
|
|
980
1082
|
* The document symbol request is sent from the client to the server.
|
|
981
1083
|
* @summary Call Lsp DocumentSymbols
|
|
@@ -983,28 +1085,31 @@ export declare const ToolboxApiFactory: (configuration?: Configuration, basePath
|
|
|
983
1085
|
* @param {string} languageId
|
|
984
1086
|
* @param {string} pathToProject
|
|
985
1087
|
* @param {string} uri
|
|
1088
|
+
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
986
1089
|
* @param {*} [options] Override http request option.
|
|
987
1090
|
* @throws {RequiredError}
|
|
988
1091
|
*/
|
|
989
|
-
lspDocumentSymbols(workspaceId: string, languageId: string, pathToProject: string, uri: string, options?: RawAxiosRequestConfig): AxiosPromise<Array<LspSymbol>>;
|
|
1092
|
+
lspDocumentSymbols(workspaceId: string, languageId: string, pathToProject: string, uri: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): AxiosPromise<Array<LspSymbol>>;
|
|
990
1093
|
/**
|
|
991
1094
|
* Start Lsp server process inside workspace project
|
|
992
1095
|
* @summary Start Lsp server
|
|
993
1096
|
* @param {string} workspaceId
|
|
994
1097
|
* @param {LspServerRequest} lspServerRequest
|
|
1098
|
+
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
995
1099
|
* @param {*} [options] Override http request option.
|
|
996
1100
|
* @throws {RequiredError}
|
|
997
1101
|
*/
|
|
998
|
-
lspStart(workspaceId: string, lspServerRequest: LspServerRequest, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
1102
|
+
lspStart(workspaceId: string, lspServerRequest: LspServerRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
999
1103
|
/**
|
|
1000
1104
|
* Stop Lsp server process inside workspace project
|
|
1001
1105
|
* @summary Stop Lsp server
|
|
1002
1106
|
* @param {string} workspaceId
|
|
1003
1107
|
* @param {LspServerRequest} lspServerRequest
|
|
1108
|
+
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
1004
1109
|
* @param {*} [options] Override http request option.
|
|
1005
1110
|
* @throws {RequiredError}
|
|
1006
1111
|
*/
|
|
1007
|
-
lspStop(workspaceId: string, lspServerRequest: LspServerRequest, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
1112
|
+
lspStop(workspaceId: string, lspServerRequest: LspServerRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
1008
1113
|
/**
|
|
1009
1114
|
* The workspace symbol request is sent from the client to the server to list project-wide symbols matching the query string.
|
|
1010
1115
|
* @summary Call Lsp WorkspaceSymbols
|
|
@@ -1012,61 +1117,67 @@ export declare const ToolboxApiFactory: (configuration?: Configuration, basePath
|
|
|
1012
1117
|
* @param {string} languageId
|
|
1013
1118
|
* @param {string} pathToProject
|
|
1014
1119
|
* @param {string} query
|
|
1120
|
+
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
1015
1121
|
* @param {*} [options] Override http request option.
|
|
1016
1122
|
* @throws {RequiredError}
|
|
1017
1123
|
*/
|
|
1018
|
-
lspWorkspaceSymbols(workspaceId: string, languageId: string, pathToProject: string, query: string, options?: RawAxiosRequestConfig): AxiosPromise<Array<LspSymbol>>;
|
|
1124
|
+
lspWorkspaceSymbols(workspaceId: string, languageId: string, pathToProject: string, query: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): AxiosPromise<Array<LspSymbol>>;
|
|
1019
1125
|
/**
|
|
1020
1126
|
* Move file inside workspace
|
|
1021
1127
|
* @summary Move file
|
|
1022
1128
|
* @param {string} workspaceId
|
|
1023
1129
|
* @param {string} source
|
|
1024
1130
|
* @param {string} destination
|
|
1131
|
+
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
1025
1132
|
* @param {*} [options] Override http request option.
|
|
1026
1133
|
* @throws {RequiredError}
|
|
1027
1134
|
*/
|
|
1028
|
-
moveFile(workspaceId: string, source: string, destination: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
1135
|
+
moveFile(workspaceId: string, source: string, destination: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
1029
1136
|
/**
|
|
1030
1137
|
* Replace text/pattern in multiple files inside workspace
|
|
1031
1138
|
* @summary Replace in files
|
|
1032
1139
|
* @param {string} workspaceId
|
|
1033
1140
|
* @param {ReplaceRequest} replaceRequest
|
|
1141
|
+
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
1034
1142
|
* @param {*} [options] Override http request option.
|
|
1035
1143
|
* @throws {RequiredError}
|
|
1036
1144
|
*/
|
|
1037
|
-
replaceInFiles(workspaceId: string, replaceRequest: ReplaceRequest, options?: RawAxiosRequestConfig): AxiosPromise<Array<ReplaceResult>>;
|
|
1145
|
+
replaceInFiles(workspaceId: string, replaceRequest: ReplaceRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): AxiosPromise<Array<ReplaceResult>>;
|
|
1038
1146
|
/**
|
|
1039
1147
|
* Search for files inside workspace
|
|
1040
1148
|
* @summary Search files
|
|
1041
1149
|
* @param {string} workspaceId
|
|
1042
1150
|
* @param {string} path
|
|
1043
1151
|
* @param {string} pattern
|
|
1152
|
+
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
1044
1153
|
* @param {*} [options] Override http request option.
|
|
1045
1154
|
* @throws {RequiredError}
|
|
1046
1155
|
*/
|
|
1047
|
-
searchFiles(workspaceId: string, path: string, pattern: string, options?: RawAxiosRequestConfig): AxiosPromise<SearchFilesResponse>;
|
|
1156
|
+
searchFiles(workspaceId: string, path: string, pattern: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): AxiosPromise<SearchFilesResponse>;
|
|
1048
1157
|
/**
|
|
1049
1158
|
* Set file owner/group/permissions inside workspace
|
|
1050
1159
|
* @summary Set file permissions
|
|
1051
1160
|
* @param {string} workspaceId
|
|
1052
1161
|
* @param {string} path
|
|
1162
|
+
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
1053
1163
|
* @param {string} [owner]
|
|
1054
1164
|
* @param {string} [group]
|
|
1055
1165
|
* @param {string} [mode]
|
|
1056
1166
|
* @param {*} [options] Override http request option.
|
|
1057
1167
|
* @throws {RequiredError}
|
|
1058
1168
|
*/
|
|
1059
|
-
setFilePermissions(workspaceId: string, path: string, owner?: string, group?: string, mode?: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
1169
|
+
setFilePermissions(workspaceId: string, path: string, xDaytonaOrganizationID?: string, owner?: string, group?: string, mode?: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
1060
1170
|
/**
|
|
1061
1171
|
* Upload file inside workspace
|
|
1062
1172
|
* @summary Upload file
|
|
1063
1173
|
* @param {string} workspaceId
|
|
1064
1174
|
* @param {string} path
|
|
1175
|
+
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
1065
1176
|
* @param {File} [file]
|
|
1066
1177
|
* @param {*} [options] Override http request option.
|
|
1067
1178
|
* @throws {RequiredError}
|
|
1068
1179
|
*/
|
|
1069
|
-
uploadFile(workspaceId: string, path: string, file?: File, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
1180
|
+
uploadFile(workspaceId: string, path: string, xDaytonaOrganizationID?: string, file?: File, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
1070
1181
|
};
|
|
1071
1182
|
/**
|
|
1072
1183
|
* ToolboxApi - object-oriented interface
|
|
@@ -1081,273 +1192,301 @@ export declare class ToolboxApi extends BaseAPI {
|
|
|
1081
1192
|
* @param {string} workspaceId
|
|
1082
1193
|
* @param {string} path
|
|
1083
1194
|
* @param {string} mode
|
|
1195
|
+
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
1084
1196
|
* @param {*} [options] Override http request option.
|
|
1085
1197
|
* @throws {RequiredError}
|
|
1086
1198
|
* @memberof ToolboxApi
|
|
1087
1199
|
*/
|
|
1088
|
-
createFolder(workspaceId: string, path: string, mode: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
1200
|
+
createFolder(workspaceId: string, path: string, mode: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
1089
1201
|
/**
|
|
1090
1202
|
* Create a new session in the workspace
|
|
1091
1203
|
* @summary Create session
|
|
1092
1204
|
* @param {string} workspaceId
|
|
1093
1205
|
* @param {CreateSessionRequest} createSessionRequest
|
|
1206
|
+
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
1094
1207
|
* @param {*} [options] Override http request option.
|
|
1095
1208
|
* @throws {RequiredError}
|
|
1096
1209
|
* @memberof ToolboxApi
|
|
1097
1210
|
*/
|
|
1098
|
-
createSession(workspaceId: string, createSessionRequest: CreateSessionRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
1211
|
+
createSession(workspaceId: string, createSessionRequest: CreateSessionRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
1099
1212
|
/**
|
|
1100
1213
|
* Delete file inside workspace
|
|
1101
1214
|
* @summary Delete file
|
|
1102
1215
|
* @param {string} workspaceId
|
|
1103
1216
|
* @param {string} path
|
|
1217
|
+
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
1104
1218
|
* @param {*} [options] Override http request option.
|
|
1105
1219
|
* @throws {RequiredError}
|
|
1106
1220
|
* @memberof ToolboxApi
|
|
1107
1221
|
*/
|
|
1108
|
-
deleteFile(workspaceId: string, path: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
1222
|
+
deleteFile(workspaceId: string, path: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
1109
1223
|
/**
|
|
1110
1224
|
* Delete a specific session
|
|
1111
1225
|
* @summary Delete session
|
|
1112
1226
|
* @param {string} workspaceId
|
|
1113
1227
|
* @param {string} sessionId
|
|
1228
|
+
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
1114
1229
|
* @param {*} [options] Override http request option.
|
|
1115
1230
|
* @throws {RequiredError}
|
|
1116
1231
|
* @memberof ToolboxApi
|
|
1117
1232
|
*/
|
|
1118
|
-
deleteSession(workspaceId: string, sessionId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
1233
|
+
deleteSession(workspaceId: string, sessionId: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
1119
1234
|
/**
|
|
1120
1235
|
* Download file from workspace
|
|
1121
1236
|
* @summary Download file
|
|
1122
1237
|
* @param {string} workspaceId
|
|
1123
1238
|
* @param {string} path
|
|
1239
|
+
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
1124
1240
|
* @param {*} [options] Override http request option.
|
|
1125
1241
|
* @throws {RequiredError}
|
|
1126
1242
|
* @memberof ToolboxApi
|
|
1127
1243
|
*/
|
|
1128
|
-
downloadFile(workspaceId: string, path: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<File, any>>;
|
|
1244
|
+
downloadFile(workspaceId: string, path: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<File, any>>;
|
|
1129
1245
|
/**
|
|
1130
1246
|
* Execute command synchronously inside workspace
|
|
1131
1247
|
* @summary Execute command
|
|
1132
1248
|
* @param {string} workspaceId
|
|
1133
1249
|
* @param {ExecuteRequest} executeRequest
|
|
1250
|
+
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
1134
1251
|
* @param {*} [options] Override http request option.
|
|
1135
1252
|
* @throws {RequiredError}
|
|
1136
1253
|
* @memberof ToolboxApi
|
|
1137
1254
|
*/
|
|
1138
|
-
executeCommand(workspaceId: string, executeRequest: ExecuteRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ExecuteResponse, any>>;
|
|
1255
|
+
executeCommand(workspaceId: string, executeRequest: ExecuteRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ExecuteResponse, any>>;
|
|
1139
1256
|
/**
|
|
1140
1257
|
* Execute a command in a specific session
|
|
1141
1258
|
* @summary Execute command in session
|
|
1142
1259
|
* @param {string} workspaceId
|
|
1143
1260
|
* @param {string} sessionId
|
|
1144
1261
|
* @param {SessionExecuteRequest} sessionExecuteRequest
|
|
1262
|
+
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
1145
1263
|
* @param {*} [options] Override http request option.
|
|
1146
1264
|
* @throws {RequiredError}
|
|
1147
1265
|
* @memberof ToolboxApi
|
|
1148
1266
|
*/
|
|
1149
|
-
executeSessionCommand(workspaceId: string, sessionId: string, sessionExecuteRequest: SessionExecuteRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SessionExecuteResponse, any>>;
|
|
1267
|
+
executeSessionCommand(workspaceId: string, sessionId: string, sessionExecuteRequest: SessionExecuteRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SessionExecuteResponse, any>>;
|
|
1150
1268
|
/**
|
|
1151
1269
|
* Search for text/pattern inside workspace files
|
|
1152
1270
|
* @summary Search for text/pattern in files
|
|
1153
1271
|
* @param {string} workspaceId
|
|
1154
1272
|
* @param {string} path
|
|
1155
1273
|
* @param {string} pattern
|
|
1274
|
+
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
1156
1275
|
* @param {*} [options] Override http request option.
|
|
1157
1276
|
* @throws {RequiredError}
|
|
1158
1277
|
* @memberof ToolboxApi
|
|
1159
1278
|
*/
|
|
1160
|
-
findInFiles(workspaceId: string, path: string, pattern: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Match[], any>>;
|
|
1279
|
+
findInFiles(workspaceId: string, path: string, pattern: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Match[], any>>;
|
|
1161
1280
|
/**
|
|
1162
1281
|
* Get file info inside workspace
|
|
1163
1282
|
* @summary Get file info
|
|
1164
1283
|
* @param {string} workspaceId
|
|
1165
1284
|
* @param {string} path
|
|
1285
|
+
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
1166
1286
|
* @param {*} [options] Override http request option.
|
|
1167
1287
|
* @throws {RequiredError}
|
|
1168
1288
|
* @memberof ToolboxApi
|
|
1169
1289
|
*/
|
|
1170
|
-
getFileInfo(workspaceId: string, path: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<FileInfo, any>>;
|
|
1290
|
+
getFileInfo(workspaceId: string, path: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<FileInfo, any>>;
|
|
1171
1291
|
/**
|
|
1172
1292
|
*
|
|
1173
1293
|
* @summary Get workspace project dir
|
|
1174
1294
|
* @param {string} workspaceId
|
|
1295
|
+
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
1175
1296
|
* @param {*} [options] Override http request option.
|
|
1176
1297
|
* @throws {RequiredError}
|
|
1177
1298
|
* @memberof ToolboxApi
|
|
1178
1299
|
*/
|
|
1179
|
-
getProjectDir(workspaceId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProjectDirResponse, any>>;
|
|
1300
|
+
getProjectDir(workspaceId: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProjectDirResponse, any>>;
|
|
1180
1301
|
/**
|
|
1181
1302
|
* Get session by ID
|
|
1182
1303
|
* @summary Get session
|
|
1183
1304
|
* @param {string} workspaceId
|
|
1184
1305
|
* @param {string} sessionId
|
|
1306
|
+
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
1185
1307
|
* @param {*} [options] Override http request option.
|
|
1186
1308
|
* @throws {RequiredError}
|
|
1187
1309
|
* @memberof ToolboxApi
|
|
1188
1310
|
*/
|
|
1189
|
-
getSession(workspaceId: string, sessionId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Session, any>>;
|
|
1311
|
+
getSession(workspaceId: string, sessionId: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Session, any>>;
|
|
1190
1312
|
/**
|
|
1191
1313
|
* Get session command by ID
|
|
1192
1314
|
* @summary Get session command
|
|
1193
1315
|
* @param {string} workspaceId
|
|
1194
1316
|
* @param {string} sessionId
|
|
1195
1317
|
* @param {string} commandId
|
|
1318
|
+
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
1196
1319
|
* @param {*} [options] Override http request option.
|
|
1197
1320
|
* @throws {RequiredError}
|
|
1198
1321
|
* @memberof ToolboxApi
|
|
1199
1322
|
*/
|
|
1200
|
-
getSessionCommand(workspaceId: string, sessionId: string, commandId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Command, any>>;
|
|
1323
|
+
getSessionCommand(workspaceId: string, sessionId: string, commandId: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Command, any>>;
|
|
1201
1324
|
/**
|
|
1202
1325
|
* Get logs for a specific command in a session
|
|
1203
1326
|
* @summary Get command logs
|
|
1204
1327
|
* @param {string} workspaceId
|
|
1205
1328
|
* @param {string} sessionId
|
|
1206
1329
|
* @param {string} commandId
|
|
1330
|
+
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
1331
|
+
* @param {boolean} [follow]
|
|
1207
1332
|
* @param {*} [options] Override http request option.
|
|
1208
1333
|
* @throws {RequiredError}
|
|
1209
1334
|
* @memberof ToolboxApi
|
|
1210
1335
|
*/
|
|
1211
|
-
getSessionCommandLogs(workspaceId: string, sessionId: string, commandId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any>>;
|
|
1336
|
+
getSessionCommandLogs(workspaceId: string, sessionId: string, commandId: string, xDaytonaOrganizationID?: string, follow?: boolean, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any>>;
|
|
1212
1337
|
/**
|
|
1213
1338
|
* Add files to git commit
|
|
1214
1339
|
* @summary Add files
|
|
1215
1340
|
* @param {string} workspaceId
|
|
1216
1341
|
* @param {GitAddRequest} gitAddRequest
|
|
1342
|
+
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
1217
1343
|
* @param {*} [options] Override http request option.
|
|
1218
1344
|
* @throws {RequiredError}
|
|
1219
1345
|
* @memberof ToolboxApi
|
|
1220
1346
|
*/
|
|
1221
|
-
gitAddFiles(workspaceId: string, gitAddRequest: GitAddRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
1347
|
+
gitAddFiles(workspaceId: string, gitAddRequest: GitAddRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
1222
1348
|
/**
|
|
1223
1349
|
* Clone git repository
|
|
1224
1350
|
* @summary Clone repository
|
|
1225
1351
|
* @param {string} workspaceId
|
|
1226
1352
|
* @param {GitCloneRequest} gitCloneRequest
|
|
1353
|
+
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
1227
1354
|
* @param {*} [options] Override http request option.
|
|
1228
1355
|
* @throws {RequiredError}
|
|
1229
1356
|
* @memberof ToolboxApi
|
|
1230
1357
|
*/
|
|
1231
|
-
gitCloneRepository(workspaceId: string, gitCloneRequest: GitCloneRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
1358
|
+
gitCloneRepository(workspaceId: string, gitCloneRequest: GitCloneRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
1232
1359
|
/**
|
|
1233
1360
|
* Commit changes to git repository
|
|
1234
1361
|
* @summary Commit changes
|
|
1235
1362
|
* @param {string} workspaceId
|
|
1236
1363
|
* @param {GitCommitRequest} gitCommitRequest
|
|
1364
|
+
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
1237
1365
|
* @param {*} [options] Override http request option.
|
|
1238
1366
|
* @throws {RequiredError}
|
|
1239
1367
|
* @memberof ToolboxApi
|
|
1240
1368
|
*/
|
|
1241
|
-
gitCommitChanges(workspaceId: string, gitCommitRequest: GitCommitRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GitCommitResponse, any>>;
|
|
1369
|
+
gitCommitChanges(workspaceId: string, gitCommitRequest: GitCommitRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GitCommitResponse, any>>;
|
|
1242
1370
|
/**
|
|
1243
1371
|
* Create branch on git repository
|
|
1244
1372
|
* @summary Create branch
|
|
1245
1373
|
* @param {string} workspaceId
|
|
1246
1374
|
* @param {GitBranchRequest} gitBranchRequest
|
|
1375
|
+
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
1247
1376
|
* @param {*} [options] Override http request option.
|
|
1248
1377
|
* @throws {RequiredError}
|
|
1249
1378
|
* @memberof ToolboxApi
|
|
1250
1379
|
*/
|
|
1251
|
-
gitCreateBranch(workspaceId: string, gitBranchRequest: GitBranchRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
1380
|
+
gitCreateBranch(workspaceId: string, gitBranchRequest: GitBranchRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
1252
1381
|
/**
|
|
1253
1382
|
* Get commit history from git repository
|
|
1254
1383
|
* @summary Get commit history
|
|
1255
1384
|
* @param {string} workspaceId
|
|
1256
1385
|
* @param {string} path
|
|
1386
|
+
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
1257
1387
|
* @param {*} [options] Override http request option.
|
|
1258
1388
|
* @throws {RequiredError}
|
|
1259
1389
|
* @memberof ToolboxApi
|
|
1260
1390
|
*/
|
|
1261
|
-
gitGetHistory(workspaceId: string, path: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GitCommitInfo[], any>>;
|
|
1391
|
+
gitGetHistory(workspaceId: string, path: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GitCommitInfo[], any>>;
|
|
1262
1392
|
/**
|
|
1263
1393
|
* Get status from git repository
|
|
1264
1394
|
* @summary Get git status
|
|
1265
1395
|
* @param {string} workspaceId
|
|
1266
1396
|
* @param {string} path
|
|
1397
|
+
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
1267
1398
|
* @param {*} [options] Override http request option.
|
|
1268
1399
|
* @throws {RequiredError}
|
|
1269
1400
|
* @memberof ToolboxApi
|
|
1270
1401
|
*/
|
|
1271
|
-
gitGetStatus(workspaceId: string, path: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GitStatus, any>>;
|
|
1402
|
+
gitGetStatus(workspaceId: string, path: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GitStatus, any>>;
|
|
1272
1403
|
/**
|
|
1273
1404
|
* Get branch list from git repository
|
|
1274
1405
|
* @summary Get branch list
|
|
1275
1406
|
* @param {string} workspaceId
|
|
1276
1407
|
* @param {string} path
|
|
1408
|
+
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
1277
1409
|
* @param {*} [options] Override http request option.
|
|
1278
1410
|
* @throws {RequiredError}
|
|
1279
1411
|
* @memberof ToolboxApi
|
|
1280
1412
|
*/
|
|
1281
|
-
gitListBranches(workspaceId: string, path: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ListBranchResponse, any>>;
|
|
1413
|
+
gitListBranches(workspaceId: string, path: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ListBranchResponse, any>>;
|
|
1282
1414
|
/**
|
|
1283
1415
|
* Pull changes from remote
|
|
1284
1416
|
* @summary Pull changes
|
|
1285
1417
|
* @param {string} workspaceId
|
|
1286
1418
|
* @param {GitRepoRequest} gitRepoRequest
|
|
1419
|
+
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
1287
1420
|
* @param {*} [options] Override http request option.
|
|
1288
1421
|
* @throws {RequiredError}
|
|
1289
1422
|
* @memberof ToolboxApi
|
|
1290
1423
|
*/
|
|
1291
|
-
gitPullChanges(workspaceId: string, gitRepoRequest: GitRepoRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
1424
|
+
gitPullChanges(workspaceId: string, gitRepoRequest: GitRepoRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
1292
1425
|
/**
|
|
1293
1426
|
* Push changes to remote
|
|
1294
1427
|
* @summary Push changes
|
|
1295
1428
|
* @param {string} workspaceId
|
|
1296
1429
|
* @param {GitRepoRequest} gitRepoRequest
|
|
1430
|
+
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
1297
1431
|
* @param {*} [options] Override http request option.
|
|
1298
1432
|
* @throws {RequiredError}
|
|
1299
1433
|
* @memberof ToolboxApi
|
|
1300
1434
|
*/
|
|
1301
|
-
gitPushChanges(workspaceId: string, gitRepoRequest: GitRepoRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
1435
|
+
gitPushChanges(workspaceId: string, gitRepoRequest: GitRepoRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
1302
1436
|
/**
|
|
1303
1437
|
*
|
|
1304
1438
|
* @summary List files
|
|
1305
1439
|
* @param {string} workspaceId
|
|
1440
|
+
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
1306
1441
|
* @param {string} [path]
|
|
1307
1442
|
* @param {*} [options] Override http request option.
|
|
1308
1443
|
* @throws {RequiredError}
|
|
1309
1444
|
* @memberof ToolboxApi
|
|
1310
1445
|
*/
|
|
1311
|
-
listFiles(workspaceId: string, path?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<FileInfo[], any>>;
|
|
1446
|
+
listFiles(workspaceId: string, xDaytonaOrganizationID?: string, path?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<FileInfo[], any>>;
|
|
1312
1447
|
/**
|
|
1313
1448
|
* List all active sessions in the workspace
|
|
1314
1449
|
* @summary List sessions
|
|
1315
1450
|
* @param {string} workspaceId
|
|
1451
|
+
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
1316
1452
|
* @param {*} [options] Override http request option.
|
|
1317
1453
|
* @throws {RequiredError}
|
|
1318
1454
|
* @memberof ToolboxApi
|
|
1319
1455
|
*/
|
|
1320
|
-
listSessions(workspaceId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Session[], any>>;
|
|
1456
|
+
listSessions(workspaceId: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Session[], any>>;
|
|
1321
1457
|
/**
|
|
1322
1458
|
* The Completion request is sent from the client to the server to compute completion items at a given cursor position.
|
|
1323
1459
|
* @summary Get Lsp Completions
|
|
1324
1460
|
* @param {string} workspaceId
|
|
1325
1461
|
* @param {LspCompletionParams} lspCompletionParams
|
|
1462
|
+
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
1326
1463
|
* @param {*} [options] Override http request option.
|
|
1327
1464
|
* @throws {RequiredError}
|
|
1328
1465
|
* @memberof ToolboxApi
|
|
1329
1466
|
*/
|
|
1330
|
-
lspCompletions(workspaceId: string, lspCompletionParams: LspCompletionParams, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CompletionList, any>>;
|
|
1467
|
+
lspCompletions(workspaceId: string, lspCompletionParams: LspCompletionParams, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CompletionList, any>>;
|
|
1331
1468
|
/**
|
|
1332
1469
|
* The document close notification is sent from the client to the server when the document got closed in the client.
|
|
1333
1470
|
* @summary Call Lsp DidClose
|
|
1334
1471
|
* @param {string} workspaceId
|
|
1335
1472
|
* @param {LspDocumentRequest} lspDocumentRequest
|
|
1473
|
+
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
1336
1474
|
* @param {*} [options] Override http request option.
|
|
1337
1475
|
* @throws {RequiredError}
|
|
1338
1476
|
* @memberof ToolboxApi
|
|
1339
1477
|
*/
|
|
1340
|
-
lspDidClose(workspaceId: string, lspDocumentRequest: LspDocumentRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
1478
|
+
lspDidClose(workspaceId: string, lspDocumentRequest: LspDocumentRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
1341
1479
|
/**
|
|
1342
1480
|
* The document open notification is sent from the client to the server to signal newly opened text documents.
|
|
1343
1481
|
* @summary Call Lsp DidOpen
|
|
1344
1482
|
* @param {string} workspaceId
|
|
1345
1483
|
* @param {LspDocumentRequest} lspDocumentRequest
|
|
1484
|
+
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
1346
1485
|
* @param {*} [options] Override http request option.
|
|
1347
1486
|
* @throws {RequiredError}
|
|
1348
1487
|
* @memberof ToolboxApi
|
|
1349
1488
|
*/
|
|
1350
|
-
lspDidOpen(workspaceId: string, lspDocumentRequest: LspDocumentRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
1489
|
+
lspDidOpen(workspaceId: string, lspDocumentRequest: LspDocumentRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
1351
1490
|
/**
|
|
1352
1491
|
* The document symbol request is sent from the client to the server.
|
|
1353
1492
|
* @summary Call Lsp DocumentSymbols
|
|
@@ -1355,31 +1494,34 @@ export declare class ToolboxApi extends BaseAPI {
|
|
|
1355
1494
|
* @param {string} languageId
|
|
1356
1495
|
* @param {string} pathToProject
|
|
1357
1496
|
* @param {string} uri
|
|
1497
|
+
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
1358
1498
|
* @param {*} [options] Override http request option.
|
|
1359
1499
|
* @throws {RequiredError}
|
|
1360
1500
|
* @memberof ToolboxApi
|
|
1361
1501
|
*/
|
|
1362
|
-
lspDocumentSymbols(workspaceId: string, languageId: string, pathToProject: string, uri: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<LspSymbol[], any>>;
|
|
1502
|
+
lspDocumentSymbols(workspaceId: string, languageId: string, pathToProject: string, uri: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<LspSymbol[], any>>;
|
|
1363
1503
|
/**
|
|
1364
1504
|
* Start Lsp server process inside workspace project
|
|
1365
1505
|
* @summary Start Lsp server
|
|
1366
1506
|
* @param {string} workspaceId
|
|
1367
1507
|
* @param {LspServerRequest} lspServerRequest
|
|
1508
|
+
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
1368
1509
|
* @param {*} [options] Override http request option.
|
|
1369
1510
|
* @throws {RequiredError}
|
|
1370
1511
|
* @memberof ToolboxApi
|
|
1371
1512
|
*/
|
|
1372
|
-
lspStart(workspaceId: string, lspServerRequest: LspServerRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
1513
|
+
lspStart(workspaceId: string, lspServerRequest: LspServerRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
1373
1514
|
/**
|
|
1374
1515
|
* Stop Lsp server process inside workspace project
|
|
1375
1516
|
* @summary Stop Lsp server
|
|
1376
1517
|
* @param {string} workspaceId
|
|
1377
1518
|
* @param {LspServerRequest} lspServerRequest
|
|
1519
|
+
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
1378
1520
|
* @param {*} [options] Override http request option.
|
|
1379
1521
|
* @throws {RequiredError}
|
|
1380
1522
|
* @memberof ToolboxApi
|
|
1381
1523
|
*/
|
|
1382
|
-
lspStop(workspaceId: string, lspServerRequest: LspServerRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
1524
|
+
lspStop(workspaceId: string, lspServerRequest: LspServerRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
1383
1525
|
/**
|
|
1384
1526
|
* The workspace symbol request is sent from the client to the server to list project-wide symbols matching the query string.
|
|
1385
1527
|
* @summary Call Lsp WorkspaceSymbols
|
|
@@ -1387,48 +1529,53 @@ export declare class ToolboxApi extends BaseAPI {
|
|
|
1387
1529
|
* @param {string} languageId
|
|
1388
1530
|
* @param {string} pathToProject
|
|
1389
1531
|
* @param {string} query
|
|
1532
|
+
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
1390
1533
|
* @param {*} [options] Override http request option.
|
|
1391
1534
|
* @throws {RequiredError}
|
|
1392
1535
|
* @memberof ToolboxApi
|
|
1393
1536
|
*/
|
|
1394
|
-
lspWorkspaceSymbols(workspaceId: string, languageId: string, pathToProject: string, query: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<LspSymbol[], any>>;
|
|
1537
|
+
lspWorkspaceSymbols(workspaceId: string, languageId: string, pathToProject: string, query: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<LspSymbol[], any>>;
|
|
1395
1538
|
/**
|
|
1396
1539
|
* Move file inside workspace
|
|
1397
1540
|
* @summary Move file
|
|
1398
1541
|
* @param {string} workspaceId
|
|
1399
1542
|
* @param {string} source
|
|
1400
1543
|
* @param {string} destination
|
|
1544
|
+
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
1401
1545
|
* @param {*} [options] Override http request option.
|
|
1402
1546
|
* @throws {RequiredError}
|
|
1403
1547
|
* @memberof ToolboxApi
|
|
1404
1548
|
*/
|
|
1405
|
-
moveFile(workspaceId: string, source: string, destination: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
1549
|
+
moveFile(workspaceId: string, source: string, destination: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
1406
1550
|
/**
|
|
1407
1551
|
* Replace text/pattern in multiple files inside workspace
|
|
1408
1552
|
* @summary Replace in files
|
|
1409
1553
|
* @param {string} workspaceId
|
|
1410
1554
|
* @param {ReplaceRequest} replaceRequest
|
|
1555
|
+
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
1411
1556
|
* @param {*} [options] Override http request option.
|
|
1412
1557
|
* @throws {RequiredError}
|
|
1413
1558
|
* @memberof ToolboxApi
|
|
1414
1559
|
*/
|
|
1415
|
-
replaceInFiles(workspaceId: string, replaceRequest: ReplaceRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ReplaceResult[], any>>;
|
|
1560
|
+
replaceInFiles(workspaceId: string, replaceRequest: ReplaceRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ReplaceResult[], any>>;
|
|
1416
1561
|
/**
|
|
1417
1562
|
* Search for files inside workspace
|
|
1418
1563
|
* @summary Search files
|
|
1419
1564
|
* @param {string} workspaceId
|
|
1420
1565
|
* @param {string} path
|
|
1421
1566
|
* @param {string} pattern
|
|
1567
|
+
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
1422
1568
|
* @param {*} [options] Override http request option.
|
|
1423
1569
|
* @throws {RequiredError}
|
|
1424
1570
|
* @memberof ToolboxApi
|
|
1425
1571
|
*/
|
|
1426
|
-
searchFiles(workspaceId: string, path: string, pattern: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SearchFilesResponse, any>>;
|
|
1572
|
+
searchFiles(workspaceId: string, path: string, pattern: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SearchFilesResponse, any>>;
|
|
1427
1573
|
/**
|
|
1428
1574
|
* Set file owner/group/permissions inside workspace
|
|
1429
1575
|
* @summary Set file permissions
|
|
1430
1576
|
* @param {string} workspaceId
|
|
1431
1577
|
* @param {string} path
|
|
1578
|
+
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
1432
1579
|
* @param {string} [owner]
|
|
1433
1580
|
* @param {string} [group]
|
|
1434
1581
|
* @param {string} [mode]
|
|
@@ -1436,16 +1583,17 @@ export declare class ToolboxApi extends BaseAPI {
|
|
|
1436
1583
|
* @throws {RequiredError}
|
|
1437
1584
|
* @memberof ToolboxApi
|
|
1438
1585
|
*/
|
|
1439
|
-
setFilePermissions(workspaceId: string, path: string, owner?: string, group?: string, mode?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
1586
|
+
setFilePermissions(workspaceId: string, path: string, xDaytonaOrganizationID?: string, owner?: string, group?: string, mode?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
1440
1587
|
/**
|
|
1441
1588
|
* Upload file inside workspace
|
|
1442
1589
|
* @summary Upload file
|
|
1443
1590
|
* @param {string} workspaceId
|
|
1444
1591
|
* @param {string} path
|
|
1592
|
+
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
1445
1593
|
* @param {File} [file]
|
|
1446
1594
|
* @param {*} [options] Override http request option.
|
|
1447
1595
|
* @throws {RequiredError}
|
|
1448
1596
|
* @memberof ToolboxApi
|
|
1449
1597
|
*/
|
|
1450
|
-
uploadFile(workspaceId: string, path: string, file?: File, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
1598
|
+
uploadFile(workspaceId: string, path: string, xDaytonaOrganizationID?: string, file?: File, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
1451
1599
|
}
|