@daytonaio/api-client 0.15.0 → 0.17.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 +5 -3
- package/.openapi-generator/VERSION +1 -1
- package/.openapi-generator-ignore +7 -0
- package/api/api-keys-api.ts +412 -324
- package/api/docker-registry-api.ts +731 -549
- package/api/images-api.ts +596 -346
- package/api/nodes-api.ts +259 -210
- package/api/organizations-api.ts +2504 -1671
- package/api/preview-api.ts +330 -0
- package/api/toolbox-api.ts +4651 -3186
- package/api/users-api.ts +317 -271
- package/api/workspace-api.ts +1536 -969
- package/api.ts +10 -12
- package/base.ts +35 -30
- package/common.ts +78 -66
- package/configuration.ts +102 -89
- package/dist/api/api-keys-api.js +66 -63
- package/dist/api/docker-registry-api.js +123 -107
- package/dist/api/images-api.d.ts +42 -0
- package/dist/api/images-api.js +161 -66
- package/dist/api/nodes-api.js +46 -47
- package/dist/api/organizations-api.d.ts +71 -0
- package/dist/api/organizations-api.js +560 -336
- package/dist/api/preview-api.d.ts +143 -0
- package/dist/api/preview-api.js +269 -0
- package/dist/api/toolbox-api.js +709 -569
- package/dist/api/users-api.js +49 -59
- package/dist/api/workspace-api.d.ts +51 -4
- package/dist/api/workspace-api.js +330 -190
- package/dist/api.d.ts +1 -0
- package/dist/api.js +1 -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.js +67 -64
- package/dist/esm/api/docker-registry-api.js +124 -108
- package/dist/esm/api/images-api.d.ts +42 -0
- package/dist/esm/api/images-api.js +162 -67
- package/dist/esm/api/nodes-api.js +47 -48
- package/dist/esm/api/organizations-api.d.ts +71 -0
- package/dist/esm/api/organizations-api.js +561 -337
- package/dist/esm/api/preview-api.d.ts +143 -0
- package/dist/esm/api/preview-api.js +262 -0
- package/dist/esm/api/toolbox-api.js +710 -570
- package/dist/esm/api/users-api.js +50 -60
- package/dist/esm/api/workspace-api.d.ts +51 -4
- package/dist/esm/api/workspace-api.js +331 -191
- package/dist/esm/api.d.ts +1 -0
- package/dist/esm/api.js +1 -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 +12 -12
- package/dist/esm/models/api-key-list.js +6 -6
- package/dist/esm/models/api-key-response.d.ts +12 -12
- package/dist/esm/models/api-key-response.js +6 -6
- 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 +9 -9
- package/dist/esm/models/create-api-key.js +6 -6
- package/dist/esm/models/create-docker-registry.d.ts +8 -8
- package/dist/esm/models/create-docker-registry.js +1 -1
- package/dist/esm/models/create-image.d.ts +9 -3
- 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 +6 -6
- package/dist/esm/models/create-organization-invitation.js +1 -1
- package/dist/esm/models/create-organization-quota.d.ts +11 -11
- package/dist/esm/models/create-organization-role.d.ts +10 -10
- package/dist/esm/models/create-organization-role.js +6 -6
- package/dist/esm/models/create-organization.d.ts +1 -67
- package/dist/esm/models/create-session-request.d.ts +1 -1
- package/dist/esm/models/create-user.d.ts +15 -4
- package/dist/esm/models/create-user.js +4 -1
- package/dist/esm/models/create-workspace.d.ts +14 -26
- package/dist/esm/models/create-workspace.js +2 -2
- package/dist/esm/models/docker-registry.d.ts +11 -11
- package/dist/esm/models/docker-registry.js +1 -1
- 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 +21 -15
- 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 +4 -0
- package/dist/esm/models/index.js +4 -0
- package/dist/esm/models/list-branch-response.d.ts +1 -1
- package/dist/esm/models/list-workspaces-labels-parameter.d.ts +26 -0
- package/dist/esm/models/list-workspaces-labels-parameter.js +14 -0
- 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 +21 -15
- package/dist/esm/models/organization-invitation.js +2 -2
- package/dist/esm/models/organization-role.d.ts +16 -16
- package/dist/esm/models/organization-role.js +6 -6
- package/dist/esm/models/organization-suspension.d.ts +30 -0
- package/dist/esm/models/organization-suspension.js +14 -0
- package/dist/esm/models/organization-user.d.ts +11 -11
- package/dist/esm/models/organization-user.js +1 -1
- package/dist/esm/models/organization.d.ts +31 -7
- 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 +1 -1
- package/dist/esm/models/update-docker-registry.d.ts +3 -3
- package/dist/esm/models/update-organization-invitation.d.ts +5 -5
- package/dist/esm/models/update-organization-invitation.js +1 -1
- package/dist/esm/models/update-organization-member-role.d.ts +2 -2
- package/dist/esm/models/update-organization-member-role.js +1 -1
- package/dist/esm/models/update-organization-quota.d.ts +11 -11
- package/dist/esm/models/update-organization-role.d.ts +10 -10
- package/dist/esm/models/update-organization-role.js +6 -6
- package/dist/esm/models/usage-overview.d.ts +15 -15
- package/dist/esm/models/user-public-key.d.ts +2 -2
- package/dist/esm/models/user.d.ts +4 -4
- package/dist/esm/models/workspace-info.d.ts +5 -4
- package/dist/esm/models/workspace-labels.d.ts +1 -1
- package/dist/esm/models/workspace-state.d.ts +2 -2
- package/dist/esm/models/workspace-state.js +2 -2
- package/dist/esm/models/workspace.d.ts +26 -19
- package/dist/esm/models/workspace.js +1 -1
- package/dist/index.d.ts +3 -3
- package/dist/models/api-key-list.d.ts +12 -12
- package/dist/models/api-key-list.js +6 -6
- package/dist/models/api-key-response.d.ts +12 -12
- package/dist/models/api-key-response.js +6 -6
- 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 +9 -9
- package/dist/models/create-api-key.js +6 -6
- package/dist/models/create-docker-registry.d.ts +8 -8
- package/dist/models/create-docker-registry.js +1 -1
- package/dist/models/create-image.d.ts +9 -3
- 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 +6 -6
- package/dist/models/create-organization-invitation.js +1 -1
- package/dist/models/create-organization-quota.d.ts +11 -11
- package/dist/models/create-organization-role.d.ts +10 -10
- package/dist/models/create-organization-role.js +6 -6
- package/dist/models/create-organization.d.ts +1 -67
- package/dist/models/create-session-request.d.ts +1 -1
- package/dist/models/create-user.d.ts +15 -4
- package/dist/models/create-user.js +5 -0
- package/dist/models/create-workspace.d.ts +14 -26
- package/dist/models/create-workspace.js +2 -2
- package/dist/models/docker-registry.d.ts +11 -11
- package/dist/models/docker-registry.js +1 -1
- 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 +21 -15
- package/dist/models/image-state.d.ts +1 -1
- package/dist/models/image-state.js +1 -1
- package/dist/models/index.d.ts +4 -0
- package/dist/models/index.js +4 -0
- package/dist/models/list-branch-response.d.ts +1 -1
- package/dist/models/list-workspaces-labels-parameter.d.ts +26 -0
- package/dist/models/list-workspaces-labels-parameter.js +15 -0
- 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 +21 -15
- package/dist/models/organization-invitation.js +2 -2
- package/dist/models/organization-role.d.ts +16 -16
- package/dist/models/organization-role.js +6 -6
- package/dist/models/organization-suspension.d.ts +30 -0
- package/dist/models/organization-suspension.js +15 -0
- package/dist/models/organization-user.d.ts +11 -11
- package/dist/models/organization-user.js +1 -1
- package/dist/models/organization.d.ts +31 -7
- 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 +1 -1
- package/dist/models/update-docker-registry.d.ts +3 -3
- package/dist/models/update-organization-invitation.d.ts +5 -5
- package/dist/models/update-organization-invitation.js +1 -1
- package/dist/models/update-organization-member-role.d.ts +2 -2
- package/dist/models/update-organization-member-role.js +1 -1
- package/dist/models/update-organization-quota.d.ts +11 -11
- package/dist/models/update-organization-role.d.ts +10 -10
- package/dist/models/update-organization-role.js +6 -6
- package/dist/models/usage-overview.d.ts +15 -15
- package/dist/models/user-public-key.d.ts +2 -2
- package/dist/models/user.d.ts +4 -4
- package/dist/models/workspace-info.d.ts +5 -4
- package/dist/models/workspace-labels.d.ts +1 -1
- package/dist/models/workspace-state.d.ts +2 -2
- package/dist/models/workspace-state.js +2 -2
- package/dist/models/workspace.d.ts +26 -19
- package/dist/models/workspace.js +1 -1
- package/index.ts +4 -5
- package/models/api-key-list.ts +34 -38
- package/models/api-key-response.ts +35 -38
- 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 +22 -26
- 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 +31 -34
- package/models/create-organization-quota.ts +68 -71
- package/models/create-organization-role.ts +29 -32
- package/models/create-organization.ts +8 -77
- package/models/create-session-request.ts +8 -11
- package/models/create-user.ts +39 -28
- package/models/create-workspace.ts +84 -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 +72 -68
- package/models/list-branch-response.ts +8 -11
- package/models/list-workspaces-labels-parameter.ts +27 -0
- 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 +81 -76
- package/models/organization-role.ts +53 -56
- package/models/organization-suspension.ts +33 -0
- package/models/organization-user.ts +55 -58
- package/models/organization.ts +62 -41
- 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 +8 -11
- package/models/update-docker-registry.ts +20 -23
- package/models/update-organization-invitation.ts +25 -28
- package/models/update-organization-member-role.ts +13 -16
- package/models/update-organization-quota.ts +68 -71
- package/models/update-organization-role.ts +29 -32
- package/models/usage-overview.ts +92 -95
- package/models/user-public-key.ts +14 -17
- package/models/user.ts +27 -29
- package/models/workspace-info.ts +21 -23
- package/models/workspace-labels.ts +8 -11
- package/models/workspace-state.ts +19 -24
- package/models/workspace.ts +126 -122
- package/package.json +2 -2
- package/project.json +49 -0
- package/tsconfig.json +3 -8
- package/README.md +0 -46
- package/git_push.sh +0 -57
package/api/users-api.ts
CHANGED
|
@@ -5,340 +5,386 @@
|
|
|
5
5
|
* Daytona Workspaces API Docs
|
|
6
6
|
*
|
|
7
7
|
* The version of the OpenAPI document: 1.0
|
|
8
|
-
*
|
|
8
|
+
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
11
|
* https://openapi-generator.tech
|
|
12
12
|
* Do not edit the class manually.
|
|
13
13
|
*/
|
|
14
14
|
|
|
15
|
-
|
|
16
|
-
import type {
|
|
17
|
-
import
|
|
18
|
-
import globalAxios from 'axios';
|
|
15
|
+
import type { Configuration } from '../configuration'
|
|
16
|
+
import type { AxiosPromise, AxiosInstance, RawAxiosRequestConfig } from 'axios'
|
|
17
|
+
import globalAxios from 'axios'
|
|
19
18
|
// Some imports not used depending on template conditions
|
|
20
19
|
// @ts-ignore
|
|
21
|
-
import {
|
|
20
|
+
import {
|
|
21
|
+
DUMMY_BASE_URL,
|
|
22
|
+
assertParamExists,
|
|
23
|
+
setApiKeyToObject,
|
|
24
|
+
setBasicAuthToObject,
|
|
25
|
+
setBearerAuthToObject,
|
|
26
|
+
setOAuthToObject,
|
|
27
|
+
setSearchParams,
|
|
28
|
+
serializeDataIfNeeded,
|
|
29
|
+
toPathString,
|
|
30
|
+
createRequestFunction,
|
|
31
|
+
} from '../common'
|
|
22
32
|
// @ts-ignore
|
|
23
|
-
import { BASE_PATH, COLLECTION_FORMATS, type RequestArgs, BaseAPI, RequiredError, operationServerMap } from '../base'
|
|
33
|
+
import { BASE_PATH, COLLECTION_FORMATS, type RequestArgs, BaseAPI, RequiredError, operationServerMap } from '../base'
|
|
24
34
|
// @ts-ignore
|
|
25
|
-
import type { CreateUser } from '../models'
|
|
35
|
+
import type { CreateUser } from '../models'
|
|
26
36
|
// @ts-ignore
|
|
27
|
-
import type { User } from '../models'
|
|
37
|
+
import type { User } from '../models'
|
|
28
38
|
/**
|
|
29
39
|
* UsersApi - axios parameter creator
|
|
30
40
|
* @export
|
|
31
41
|
*/
|
|
32
42
|
export const UsersApiAxiosParamCreator = function (configuration?: Configuration) {
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options};
|
|
53
|
-
const localVarHeaderParameter = {} as any;
|
|
54
|
-
const localVarQueryParameter = {} as any;
|
|
55
|
-
|
|
56
|
-
// authentication oauth2 required
|
|
57
|
-
// oauth required
|
|
58
|
-
await setOAuthToObject(localVarHeaderParameter, "oauth2", ["openid", "profile", "email"], configuration)
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
43
|
+
return {
|
|
44
|
+
/**
|
|
45
|
+
*
|
|
46
|
+
* @summary Create user
|
|
47
|
+
* @param {CreateUser} createUser
|
|
48
|
+
* @param {*} [options] Override http request option.
|
|
49
|
+
* @throws {RequiredError}
|
|
50
|
+
*/
|
|
51
|
+
createUser: async (createUser: CreateUser, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
52
|
+
// verify required parameter 'createUser' is not null or undefined
|
|
53
|
+
assertParamExists('createUser', 'createUser', createUser)
|
|
54
|
+
const localVarPath = `/users`
|
|
55
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
56
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL)
|
|
57
|
+
let baseOptions
|
|
58
|
+
if (configuration) {
|
|
59
|
+
baseOptions = configuration.baseOptions
|
|
60
|
+
}
|
|
63
61
|
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
localVarRequestOptions.data = serializeDataIfNeeded(createUser, localVarRequestOptions, configuration)
|
|
62
|
+
const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options }
|
|
63
|
+
const localVarHeaderParameter = {} as any
|
|
64
|
+
const localVarQueryParameter = {} as any
|
|
68
65
|
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
};
|
|
73
|
-
},
|
|
74
|
-
/**
|
|
75
|
-
*
|
|
76
|
-
* @summary Get authenticated user
|
|
77
|
-
* @param {*} [options] Override http request option.
|
|
78
|
-
* @throws {RequiredError}
|
|
79
|
-
*/
|
|
80
|
-
getAuthenticatedUser: async (options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
81
|
-
const localVarPath = `/users/me`;
|
|
82
|
-
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
83
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
84
|
-
let baseOptions;
|
|
85
|
-
if (configuration) {
|
|
86
|
-
baseOptions = configuration.baseOptions;
|
|
87
|
-
}
|
|
66
|
+
// authentication oauth2 required
|
|
67
|
+
// oauth required
|
|
68
|
+
await setOAuthToObject(localVarHeaderParameter, 'oauth2', ['openid', 'profile', 'email'], configuration)
|
|
88
69
|
|
|
89
|
-
|
|
90
|
-
const localVarHeaderParameter = {} as any;
|
|
91
|
-
const localVarQueryParameter = {} as any;
|
|
70
|
+
localVarHeaderParameter['Content-Type'] = 'application/json'
|
|
92
71
|
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
72
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter)
|
|
73
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {}
|
|
74
|
+
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers }
|
|
75
|
+
localVarRequestOptions.data = serializeDataIfNeeded(createUser, localVarRequestOptions, configuration)
|
|
96
76
|
|
|
77
|
+
return {
|
|
78
|
+
url: toPathString(localVarUrlObj),
|
|
79
|
+
options: localVarRequestOptions,
|
|
80
|
+
}
|
|
81
|
+
},
|
|
82
|
+
/**
|
|
83
|
+
*
|
|
84
|
+
* @summary Get authenticated user
|
|
85
|
+
* @param {*} [options] Override http request option.
|
|
86
|
+
* @throws {RequiredError}
|
|
87
|
+
*/
|
|
88
|
+
getAuthenticatedUser: async (options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
89
|
+
const localVarPath = `/users/me`
|
|
90
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
91
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL)
|
|
92
|
+
let baseOptions
|
|
93
|
+
if (configuration) {
|
|
94
|
+
baseOptions = configuration.baseOptions
|
|
95
|
+
}
|
|
97
96
|
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
97
|
+
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options }
|
|
98
|
+
const localVarHeaderParameter = {} as any
|
|
99
|
+
const localVarQueryParameter = {} as any
|
|
102
100
|
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
};
|
|
107
|
-
},
|
|
108
|
-
/**
|
|
109
|
-
*
|
|
110
|
-
* @summary List all users
|
|
111
|
-
* @param {*} [options] Override http request option.
|
|
112
|
-
* @throws {RequiredError}
|
|
113
|
-
*/
|
|
114
|
-
listUsers: async (options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
115
|
-
const localVarPath = `/users`;
|
|
116
|
-
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
117
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
118
|
-
let baseOptions;
|
|
119
|
-
if (configuration) {
|
|
120
|
-
baseOptions = configuration.baseOptions;
|
|
121
|
-
}
|
|
101
|
+
// authentication oauth2 required
|
|
102
|
+
// oauth required
|
|
103
|
+
await setOAuthToObject(localVarHeaderParameter, 'oauth2', ['openid', 'profile', 'email'], configuration)
|
|
122
104
|
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
105
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter)
|
|
106
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {}
|
|
107
|
+
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers }
|
|
126
108
|
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
109
|
+
return {
|
|
110
|
+
url: toPathString(localVarUrlObj),
|
|
111
|
+
options: localVarRequestOptions,
|
|
112
|
+
}
|
|
113
|
+
},
|
|
114
|
+
/**
|
|
115
|
+
*
|
|
116
|
+
* @summary List all users
|
|
117
|
+
* @param {*} [options] Override http request option.
|
|
118
|
+
* @throws {RequiredError}
|
|
119
|
+
*/
|
|
120
|
+
listUsers: async (options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
121
|
+
const localVarPath = `/users`
|
|
122
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
123
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL)
|
|
124
|
+
let baseOptions
|
|
125
|
+
if (configuration) {
|
|
126
|
+
baseOptions = configuration.baseOptions
|
|
127
|
+
}
|
|
130
128
|
|
|
129
|
+
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options }
|
|
130
|
+
const localVarHeaderParameter = {} as any
|
|
131
|
+
const localVarQueryParameter = {} as any
|
|
131
132
|
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
133
|
+
// authentication oauth2 required
|
|
134
|
+
// oauth required
|
|
135
|
+
await setOAuthToObject(localVarHeaderParameter, 'oauth2', ['openid', 'profile', 'email'], configuration)
|
|
136
136
|
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
};
|
|
141
|
-
},
|
|
142
|
-
/**
|
|
143
|
-
*
|
|
144
|
-
* @summary Regenerate user key pair
|
|
145
|
-
* @param {string} id
|
|
146
|
-
* @param {*} [options] Override http request option.
|
|
147
|
-
* @throws {RequiredError}
|
|
148
|
-
*/
|
|
149
|
-
regenerateKeyPair: async (id: string, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
150
|
-
// verify required parameter 'id' is not null or undefined
|
|
151
|
-
assertParamExists('regenerateKeyPair', 'id', id)
|
|
152
|
-
const localVarPath = `/users/{id}/regenerate-key-pair`
|
|
153
|
-
.replace(`{${"id"}}`, encodeURIComponent(String(id)));
|
|
154
|
-
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
155
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
156
|
-
let baseOptions;
|
|
157
|
-
if (configuration) {
|
|
158
|
-
baseOptions = configuration.baseOptions;
|
|
159
|
-
}
|
|
137
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter)
|
|
138
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {}
|
|
139
|
+
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers }
|
|
160
140
|
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
141
|
+
return {
|
|
142
|
+
url: toPathString(localVarUrlObj),
|
|
143
|
+
options: localVarRequestOptions,
|
|
144
|
+
}
|
|
145
|
+
},
|
|
146
|
+
/**
|
|
147
|
+
*
|
|
148
|
+
* @summary Regenerate user key pair
|
|
149
|
+
* @param {string} id
|
|
150
|
+
* @param {*} [options] Override http request option.
|
|
151
|
+
* @throws {RequiredError}
|
|
152
|
+
*/
|
|
153
|
+
regenerateKeyPair: async (id: string, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
154
|
+
// verify required parameter 'id' is not null or undefined
|
|
155
|
+
assertParamExists('regenerateKeyPair', 'id', id)
|
|
156
|
+
const localVarPath = `/users/{id}/regenerate-key-pair`.replace(`{${'id'}}`, encodeURIComponent(String(id)))
|
|
157
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
158
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL)
|
|
159
|
+
let baseOptions
|
|
160
|
+
if (configuration) {
|
|
161
|
+
baseOptions = configuration.baseOptions
|
|
162
|
+
}
|
|
164
163
|
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
164
|
+
const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options }
|
|
165
|
+
const localVarHeaderParameter = {} as any
|
|
166
|
+
const localVarQueryParameter = {} as any
|
|
168
167
|
|
|
168
|
+
// authentication oauth2 required
|
|
169
|
+
// oauth required
|
|
170
|
+
await setOAuthToObject(localVarHeaderParameter, 'oauth2', ['openid', 'profile', 'email'], configuration)
|
|
169
171
|
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
172
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter)
|
|
173
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {}
|
|
174
|
+
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers }
|
|
174
175
|
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
}
|
|
176
|
+
return {
|
|
177
|
+
url: toPathString(localVarUrlObj),
|
|
178
|
+
options: localVarRequestOptions,
|
|
179
|
+
}
|
|
180
|
+
},
|
|
181
|
+
}
|
|
182
|
+
}
|
|
182
183
|
|
|
183
184
|
/**
|
|
184
185
|
* UsersApi - functional programming interface
|
|
185
186
|
* @export
|
|
186
187
|
*/
|
|
187
|
-
export const UsersApiFp = function(configuration?: Configuration) {
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
188
|
+
export const UsersApiFp = function (configuration?: Configuration) {
|
|
189
|
+
const localVarAxiosParamCreator = UsersApiAxiosParamCreator(configuration)
|
|
190
|
+
return {
|
|
191
|
+
/**
|
|
192
|
+
*
|
|
193
|
+
* @summary Create user
|
|
194
|
+
* @param {CreateUser} createUser
|
|
195
|
+
* @param {*} [options] Override http request option.
|
|
196
|
+
* @throws {RequiredError}
|
|
197
|
+
*/
|
|
198
|
+
async createUser(
|
|
199
|
+
createUser: CreateUser,
|
|
200
|
+
options?: RawAxiosRequestConfig,
|
|
201
|
+
): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
|
|
202
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.createUser(createUser, options)
|
|
203
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0
|
|
204
|
+
const localVarOperationServerBasePath =
|
|
205
|
+
operationServerMap['UsersApi.createUser']?.[localVarOperationServerIndex]?.url
|
|
206
|
+
return (axios, basePath) =>
|
|
207
|
+
createRequestFunction(
|
|
208
|
+
localVarAxiosArgs,
|
|
209
|
+
globalAxios,
|
|
210
|
+
BASE_PATH,
|
|
211
|
+
configuration,
|
|
212
|
+
)(axios, localVarOperationServerBasePath || basePath)
|
|
213
|
+
},
|
|
214
|
+
/**
|
|
215
|
+
*
|
|
216
|
+
* @summary Get authenticated user
|
|
217
|
+
* @param {*} [options] Override http request option.
|
|
218
|
+
* @throws {RequiredError}
|
|
219
|
+
*/
|
|
220
|
+
async getAuthenticatedUser(
|
|
221
|
+
options?: RawAxiosRequestConfig,
|
|
222
|
+
): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<User>> {
|
|
223
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.getAuthenticatedUser(options)
|
|
224
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0
|
|
225
|
+
const localVarOperationServerBasePath =
|
|
226
|
+
operationServerMap['UsersApi.getAuthenticatedUser']?.[localVarOperationServerIndex]?.url
|
|
227
|
+
return (axios, basePath) =>
|
|
228
|
+
createRequestFunction(
|
|
229
|
+
localVarAxiosArgs,
|
|
230
|
+
globalAxios,
|
|
231
|
+
BASE_PATH,
|
|
232
|
+
configuration,
|
|
233
|
+
)(axios, localVarOperationServerBasePath || basePath)
|
|
234
|
+
},
|
|
235
|
+
/**
|
|
236
|
+
*
|
|
237
|
+
* @summary List all users
|
|
238
|
+
* @param {*} [options] Override http request option.
|
|
239
|
+
* @throws {RequiredError}
|
|
240
|
+
*/
|
|
241
|
+
async listUsers(
|
|
242
|
+
options?: RawAxiosRequestConfig,
|
|
243
|
+
): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
|
|
244
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.listUsers(options)
|
|
245
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0
|
|
246
|
+
const localVarOperationServerBasePath =
|
|
247
|
+
operationServerMap['UsersApi.listUsers']?.[localVarOperationServerIndex]?.url
|
|
248
|
+
return (axios, basePath) =>
|
|
249
|
+
createRequestFunction(
|
|
250
|
+
localVarAxiosArgs,
|
|
251
|
+
globalAxios,
|
|
252
|
+
BASE_PATH,
|
|
253
|
+
configuration,
|
|
254
|
+
)(axios, localVarOperationServerBasePath || basePath)
|
|
255
|
+
},
|
|
256
|
+
/**
|
|
257
|
+
*
|
|
258
|
+
* @summary Regenerate user key pair
|
|
259
|
+
* @param {string} id
|
|
260
|
+
* @param {*} [options] Override http request option.
|
|
261
|
+
* @throws {RequiredError}
|
|
262
|
+
*/
|
|
263
|
+
async regenerateKeyPair(
|
|
264
|
+
id: string,
|
|
265
|
+
options?: RawAxiosRequestConfig,
|
|
266
|
+
): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
|
|
267
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.regenerateKeyPair(id, options)
|
|
268
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0
|
|
269
|
+
const localVarOperationServerBasePath =
|
|
270
|
+
operationServerMap['UsersApi.regenerateKeyPair']?.[localVarOperationServerIndex]?.url
|
|
271
|
+
return (axios, basePath) =>
|
|
272
|
+
createRequestFunction(
|
|
273
|
+
localVarAxiosArgs,
|
|
274
|
+
globalAxios,
|
|
275
|
+
BASE_PATH,
|
|
276
|
+
configuration,
|
|
277
|
+
)(axios, localVarOperationServerBasePath || basePath)
|
|
278
|
+
},
|
|
279
|
+
}
|
|
280
|
+
}
|
|
242
281
|
|
|
243
282
|
/**
|
|
244
283
|
* UsersApi - factory interface
|
|
245
284
|
* @export
|
|
246
285
|
*/
|
|
247
286
|
export const UsersApiFactory = function (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) {
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
/**
|
|
251
|
-
*
|
|
252
|
-
* @summary Create user
|
|
253
|
-
* @param {CreateUser} createUser
|
|
254
|
-
* @param {*} [options] Override http request option.
|
|
255
|
-
* @throws {RequiredError}
|
|
256
|
-
*/
|
|
257
|
-
createUser(createUser: CreateUser, options?: RawAxiosRequestConfig): AxiosPromise<void> {
|
|
258
|
-
return localVarFp.createUser(createUser, options).then((request) => request(axios, basePath));
|
|
259
|
-
},
|
|
260
|
-
/**
|
|
261
|
-
*
|
|
262
|
-
* @summary Get authenticated user
|
|
263
|
-
* @param {*} [options] Override http request option.
|
|
264
|
-
* @throws {RequiredError}
|
|
265
|
-
*/
|
|
266
|
-
getAuthenticatedUser(options?: RawAxiosRequestConfig): AxiosPromise<User> {
|
|
267
|
-
return localVarFp.getAuthenticatedUser(options).then((request) => request(axios, basePath));
|
|
268
|
-
},
|
|
269
|
-
/**
|
|
270
|
-
*
|
|
271
|
-
* @summary List all users
|
|
272
|
-
* @param {*} [options] Override http request option.
|
|
273
|
-
* @throws {RequiredError}
|
|
274
|
-
*/
|
|
275
|
-
listUsers(options?: RawAxiosRequestConfig): AxiosPromise<void> {
|
|
276
|
-
return localVarFp.listUsers(options).then((request) => request(axios, basePath));
|
|
277
|
-
},
|
|
278
|
-
/**
|
|
279
|
-
*
|
|
280
|
-
* @summary Regenerate user key pair
|
|
281
|
-
* @param {string} id
|
|
282
|
-
* @param {*} [options] Override http request option.
|
|
283
|
-
* @throws {RequiredError}
|
|
284
|
-
*/
|
|
285
|
-
regenerateKeyPair(id: string, options?: RawAxiosRequestConfig): AxiosPromise<void> {
|
|
286
|
-
return localVarFp.regenerateKeyPair(id, options).then((request) => request(axios, basePath));
|
|
287
|
-
},
|
|
288
|
-
};
|
|
289
|
-
};
|
|
290
|
-
|
|
291
|
-
/**
|
|
292
|
-
* UsersApi - object-oriented interface
|
|
293
|
-
* @export
|
|
294
|
-
* @class UsersApi
|
|
295
|
-
* @extends {BaseAPI}
|
|
296
|
-
*/
|
|
297
|
-
export class UsersApi extends BaseAPI {
|
|
287
|
+
const localVarFp = UsersApiFp(configuration)
|
|
288
|
+
return {
|
|
298
289
|
/**
|
|
299
|
-
*
|
|
290
|
+
*
|
|
300
291
|
* @summary Create user
|
|
301
|
-
* @param {CreateUser} createUser
|
|
292
|
+
* @param {CreateUser} createUser
|
|
302
293
|
* @param {*} [options] Override http request option.
|
|
303
294
|
* @throws {RequiredError}
|
|
304
|
-
* @memberof UsersApi
|
|
305
295
|
*/
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
}
|
|
309
|
-
|
|
296
|
+
createUser(createUser: CreateUser, options?: RawAxiosRequestConfig): AxiosPromise<void> {
|
|
297
|
+
return localVarFp.createUser(createUser, options).then((request) => request(axios, basePath))
|
|
298
|
+
},
|
|
310
299
|
/**
|
|
311
|
-
*
|
|
300
|
+
*
|
|
312
301
|
* @summary Get authenticated user
|
|
313
302
|
* @param {*} [options] Override http request option.
|
|
314
303
|
* @throws {RequiredError}
|
|
315
|
-
* @memberof UsersApi
|
|
316
304
|
*/
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
}
|
|
320
|
-
|
|
305
|
+
getAuthenticatedUser(options?: RawAxiosRequestConfig): AxiosPromise<User> {
|
|
306
|
+
return localVarFp.getAuthenticatedUser(options).then((request) => request(axios, basePath))
|
|
307
|
+
},
|
|
321
308
|
/**
|
|
322
|
-
*
|
|
309
|
+
*
|
|
323
310
|
* @summary List all users
|
|
324
311
|
* @param {*} [options] Override http request option.
|
|
325
312
|
* @throws {RequiredError}
|
|
326
|
-
* @memberof UsersApi
|
|
327
313
|
*/
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
}
|
|
331
|
-
|
|
314
|
+
listUsers(options?: RawAxiosRequestConfig): AxiosPromise<void> {
|
|
315
|
+
return localVarFp.listUsers(options).then((request) => request(axios, basePath))
|
|
316
|
+
},
|
|
332
317
|
/**
|
|
333
|
-
*
|
|
318
|
+
*
|
|
334
319
|
* @summary Regenerate user key pair
|
|
335
|
-
* @param {string} id
|
|
320
|
+
* @param {string} id
|
|
336
321
|
* @param {*} [options] Override http request option.
|
|
337
322
|
* @throws {RequiredError}
|
|
338
|
-
* @memberof UsersApi
|
|
339
323
|
*/
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
}
|
|
324
|
+
regenerateKeyPair(id: string, options?: RawAxiosRequestConfig): AxiosPromise<void> {
|
|
325
|
+
return localVarFp.regenerateKeyPair(id, options).then((request) => request(axios, basePath))
|
|
326
|
+
},
|
|
327
|
+
}
|
|
343
328
|
}
|
|
344
329
|
|
|
330
|
+
/**
|
|
331
|
+
* UsersApi - object-oriented interface
|
|
332
|
+
* @export
|
|
333
|
+
* @class UsersApi
|
|
334
|
+
* @extends {BaseAPI}
|
|
335
|
+
*/
|
|
336
|
+
export class UsersApi extends BaseAPI {
|
|
337
|
+
/**
|
|
338
|
+
*
|
|
339
|
+
* @summary Create user
|
|
340
|
+
* @param {CreateUser} createUser
|
|
341
|
+
* @param {*} [options] Override http request option.
|
|
342
|
+
* @throws {RequiredError}
|
|
343
|
+
* @memberof UsersApi
|
|
344
|
+
*/
|
|
345
|
+
public createUser(createUser: CreateUser, options?: RawAxiosRequestConfig) {
|
|
346
|
+
return UsersApiFp(this.configuration)
|
|
347
|
+
.createUser(createUser, options)
|
|
348
|
+
.then((request) => request(this.axios, this.basePath))
|
|
349
|
+
}
|
|
350
|
+
|
|
351
|
+
/**
|
|
352
|
+
*
|
|
353
|
+
* @summary Get authenticated user
|
|
354
|
+
* @param {*} [options] Override http request option.
|
|
355
|
+
* @throws {RequiredError}
|
|
356
|
+
* @memberof UsersApi
|
|
357
|
+
*/
|
|
358
|
+
public getAuthenticatedUser(options?: RawAxiosRequestConfig) {
|
|
359
|
+
return UsersApiFp(this.configuration)
|
|
360
|
+
.getAuthenticatedUser(options)
|
|
361
|
+
.then((request) => request(this.axios, this.basePath))
|
|
362
|
+
}
|
|
363
|
+
|
|
364
|
+
/**
|
|
365
|
+
*
|
|
366
|
+
* @summary List all users
|
|
367
|
+
* @param {*} [options] Override http request option.
|
|
368
|
+
* @throws {RequiredError}
|
|
369
|
+
* @memberof UsersApi
|
|
370
|
+
*/
|
|
371
|
+
public listUsers(options?: RawAxiosRequestConfig) {
|
|
372
|
+
return UsersApiFp(this.configuration)
|
|
373
|
+
.listUsers(options)
|
|
374
|
+
.then((request) => request(this.axios, this.basePath))
|
|
375
|
+
}
|
|
376
|
+
|
|
377
|
+
/**
|
|
378
|
+
*
|
|
379
|
+
* @summary Regenerate user key pair
|
|
380
|
+
* @param {string} id
|
|
381
|
+
* @param {*} [options] Override http request option.
|
|
382
|
+
* @throws {RequiredError}
|
|
383
|
+
* @memberof UsersApi
|
|
384
|
+
*/
|
|
385
|
+
public regenerateKeyPair(id: string, options?: RawAxiosRequestConfig) {
|
|
386
|
+
return UsersApiFp(this.configuration)
|
|
387
|
+
.regenerateKeyPair(id, options)
|
|
388
|
+
.then((request) => request(this.axios, this.basePath))
|
|
389
|
+
}
|
|
390
|
+
}
|