@lumeweb/portal-sdk 0.1.0 → 0.1.2
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/dist/esm/account/generated/accountAPI.schemas.d.ts +427 -20
- package/dist/esm/account/generated/billing.d.ts +688 -0
- package/dist/esm/account/generated/billing.js +444 -0
- package/dist/esm/account/generated/billing.js.map +1 -0
- package/dist/esm/account/generated/default.d.ts +118 -97
- package/dist/esm/account/generated/default.js +181 -41
- package/dist/esm/account/generated/default.js.map +1 -1
- package/dist/esm/account/generated/index.d.ts +3 -3
- package/dist/esm/account/generated/index.js +2 -2
- package/dist/esm/account/generated/quota.d.ts +35 -0
- package/dist/esm/account/generated/quota.js +28 -0
- package/dist/esm/account/generated/quota.js.map +1 -0
- package/dist/esm/account.d.ts +0 -1
- package/dist/esm/account.js.map +1 -1
- package/dist/esm/http-utils.d.ts +0 -1
- package/dist/esm/http-utils.js.map +1 -1
- package/dist/esm/index.d.ts +5 -3
- package/dist/esm/index.js +4 -2
- package/dist/esm/openapi.d.ts +3 -3
- package/dist/esm/openapi.js +2 -2
- package/dist/esm/query-utils.d.ts +0 -1
- package/dist/esm/types.js.map +1 -1
- package/package.json +5 -5
- package/dist/cjs/account/generated/accountAPI.schemas.cjs +0 -0
- package/dist/cjs/account/generated/accountAPI.schemas.d.cts +0 -239
- package/dist/cjs/account/generated/default.cjs +0 -676
- package/dist/cjs/account/generated/default.cjs.map +0 -1
- package/dist/cjs/account/generated/default.d.cts +0 -923
- package/dist/cjs/account/generated/index.cjs +0 -58
- package/dist/cjs/account/generated/index.d.cts +0 -3
- package/dist/cjs/account.cjs +0 -348
- package/dist/cjs/account.cjs.map +0 -1
- package/dist/cjs/account.d.cts +0 -200
- package/dist/cjs/http-utils.cjs +0 -87
- package/dist/cjs/http-utils.cjs.map +0 -1
- package/dist/cjs/http-utils.d.cts +0 -54
- package/dist/cjs/index.cjs +0 -75
- package/dist/cjs/index.d.cts +0 -8
- package/dist/cjs/openapi.cjs +0 -58
- package/dist/cjs/openapi.d.cts +0 -3
- package/dist/cjs/query-utils.cjs +0 -44
- package/dist/cjs/query-utils.cjs.map +0 -1
- package/dist/cjs/query-utils.d.cts +0 -65
- package/dist/cjs/sdk.cjs +0 -20
- package/dist/cjs/sdk.cjs.map +0 -1
- package/dist/cjs/sdk.d.cts +0 -12
- package/dist/cjs/types.cjs +0 -116
- package/dist/cjs/types.cjs.map +0 -1
- package/dist/cjs/types.d.cts +0 -58
|
@@ -1,923 +0,0 @@
|
|
|
1
|
-
import { APIKeyCreateRequest, APIKeyResponseResponse, AccountInfoResponse, AccountPermissionsResponse, CreateAPIKeyResponse, Error, ErrorResponse, GetApiAccountKeysParams, GetApiOperationsParams, LoginRequest, LoginResponse, OTPDisableRequest, OTPGenerateResponse, OTPValidateRequest, OTPVerifyRequest, OperationDetailResponse, OperationFiltersResponseResponse, OperationListItemResponse, PasswordResetRequest, PasswordResetVerifyRequest, PongResponse, PostApiAccountAvatarBody, PostApiAccountVerifyEmailParams, RegisterRequest, ResendVerifyEmailRequest, UpdateEmailRequest, UpdatePasswordRequest, UpdateProfileRequest, UploadLimitResponse, Uuid, VerifyEmailRequest } from "./accountAPI.schemas.cjs";
|
|
2
|
-
|
|
3
|
-
//#region src/account/generated/default.d.ts
|
|
4
|
-
|
|
5
|
-
/**
|
|
6
|
-
* Initiates the process to delete the authenticated user's account.
|
|
7
|
-
* @summary Request account deletion
|
|
8
|
-
*/
|
|
9
|
-
type deleteApiAccountResponse200 = {
|
|
10
|
-
data: void;
|
|
11
|
-
status: 200;
|
|
12
|
-
};
|
|
13
|
-
type deleteApiAccountResponse400 = {
|
|
14
|
-
data: ErrorResponse;
|
|
15
|
-
status: 400;
|
|
16
|
-
};
|
|
17
|
-
type deleteApiAccountResponse404 = {
|
|
18
|
-
data: ErrorResponse;
|
|
19
|
-
status: 404;
|
|
20
|
-
};
|
|
21
|
-
type deleteApiAccountResponse500 = {
|
|
22
|
-
data: ErrorResponse;
|
|
23
|
-
status: 500;
|
|
24
|
-
};
|
|
25
|
-
type deleteApiAccountResponseSuccess = (deleteApiAccountResponse200) & {
|
|
26
|
-
headers: Headers;
|
|
27
|
-
};
|
|
28
|
-
type deleteApiAccountResponseError = (deleteApiAccountResponse400 | deleteApiAccountResponse404 | deleteApiAccountResponse500) & {
|
|
29
|
-
headers: Headers;
|
|
30
|
-
};
|
|
31
|
-
type deleteApiAccountResponse = (deleteApiAccountResponseSuccess | deleteApiAccountResponseError);
|
|
32
|
-
declare const getDeleteApiAccountUrl: () => string;
|
|
33
|
-
declare const deleteApiAccount: (options?: RequestInit) => Promise<deleteApiAccountResponse>;
|
|
34
|
-
/**
|
|
35
|
-
* Retrieves information about the authenticated user's account.
|
|
36
|
-
* @summary Get account information
|
|
37
|
-
*/
|
|
38
|
-
type getApiAccountResponse200 = {
|
|
39
|
-
data: AccountInfoResponse;
|
|
40
|
-
status: 200;
|
|
41
|
-
};
|
|
42
|
-
type getApiAccountResponse400 = {
|
|
43
|
-
data: ErrorResponse;
|
|
44
|
-
status: 400;
|
|
45
|
-
};
|
|
46
|
-
type getApiAccountResponse401 = {
|
|
47
|
-
data: ErrorResponse;
|
|
48
|
-
status: 401;
|
|
49
|
-
};
|
|
50
|
-
type getApiAccountResponse403 = {
|
|
51
|
-
data: ErrorResponse;
|
|
52
|
-
status: 403;
|
|
53
|
-
};
|
|
54
|
-
type getApiAccountResponse404 = {
|
|
55
|
-
data: ErrorResponse;
|
|
56
|
-
status: 404;
|
|
57
|
-
};
|
|
58
|
-
type getApiAccountResponse500 = {
|
|
59
|
-
data: ErrorResponse;
|
|
60
|
-
status: 500;
|
|
61
|
-
};
|
|
62
|
-
type getApiAccountResponseSuccess = (getApiAccountResponse200) & {
|
|
63
|
-
headers: Headers;
|
|
64
|
-
};
|
|
65
|
-
type getApiAccountResponseError = (getApiAccountResponse400 | getApiAccountResponse401 | getApiAccountResponse403 | getApiAccountResponse404 | getApiAccountResponse500) & {
|
|
66
|
-
headers: Headers;
|
|
67
|
-
};
|
|
68
|
-
type getApiAccountResponse = (getApiAccountResponseSuccess | getApiAccountResponseError);
|
|
69
|
-
declare const getGetApiAccountUrl: () => string;
|
|
70
|
-
declare const getApiAccount: (options?: RequestInit) => Promise<getApiAccountResponse>;
|
|
71
|
-
/**
|
|
72
|
-
* Updates the authenticated user's profile information. Email cannot be updated through this endpoint.
|
|
73
|
-
* @summary Update profile information
|
|
74
|
-
*/
|
|
75
|
-
type patchApiAccountResponse200 = {
|
|
76
|
-
data: void;
|
|
77
|
-
status: 200;
|
|
78
|
-
};
|
|
79
|
-
type patchApiAccountResponse400 = {
|
|
80
|
-
data: ErrorResponse;
|
|
81
|
-
status: 400;
|
|
82
|
-
};
|
|
83
|
-
type patchApiAccountResponse401 = {
|
|
84
|
-
data: Error;
|
|
85
|
-
status: 401;
|
|
86
|
-
};
|
|
87
|
-
type patchApiAccountResponse403 = {
|
|
88
|
-
data: ErrorResponse;
|
|
89
|
-
status: 403;
|
|
90
|
-
};
|
|
91
|
-
type patchApiAccountResponse404 = {
|
|
92
|
-
data: Error;
|
|
93
|
-
status: 404;
|
|
94
|
-
};
|
|
95
|
-
type patchApiAccountResponse500 = {
|
|
96
|
-
data: Error;
|
|
97
|
-
status: 500;
|
|
98
|
-
};
|
|
99
|
-
type patchApiAccountResponseSuccess = (patchApiAccountResponse200) & {
|
|
100
|
-
headers: Headers;
|
|
101
|
-
};
|
|
102
|
-
type patchApiAccountResponseError = (patchApiAccountResponse400 | patchApiAccountResponse401 | patchApiAccountResponse403 | patchApiAccountResponse404 | patchApiAccountResponse500) & {
|
|
103
|
-
headers: Headers;
|
|
104
|
-
};
|
|
105
|
-
type patchApiAccountResponse = (patchApiAccountResponseSuccess | patchApiAccountResponseError);
|
|
106
|
-
declare const getPatchApiAccountUrl: () => string;
|
|
107
|
-
declare const patchApiAccount: (updateProfileRequest: UpdateProfileRequest, options?: RequestInit) => Promise<patchApiAccountResponse>;
|
|
108
|
-
/**
|
|
109
|
-
* Retrieves the authenticated user's profile picture
|
|
110
|
-
* @summary Get Avatar
|
|
111
|
-
*/
|
|
112
|
-
type getApiAccountAvatarResponse200 = {
|
|
113
|
-
data: void;
|
|
114
|
-
status: 200;
|
|
115
|
-
};
|
|
116
|
-
type getApiAccountAvatarResponse400 = {
|
|
117
|
-
data: ErrorResponse;
|
|
118
|
-
status: 400;
|
|
119
|
-
};
|
|
120
|
-
type getApiAccountAvatarResponse404 = {
|
|
121
|
-
data: ErrorResponse;
|
|
122
|
-
status: 404;
|
|
123
|
-
};
|
|
124
|
-
type getApiAccountAvatarResponse500 = {
|
|
125
|
-
data: ErrorResponse;
|
|
126
|
-
status: 500;
|
|
127
|
-
};
|
|
128
|
-
type getApiAccountAvatarResponseSuccess = (getApiAccountAvatarResponse200) & {
|
|
129
|
-
headers: Headers;
|
|
130
|
-
};
|
|
131
|
-
type getApiAccountAvatarResponseError = (getApiAccountAvatarResponse400 | getApiAccountAvatarResponse404 | getApiAccountAvatarResponse500) & {
|
|
132
|
-
headers: Headers;
|
|
133
|
-
};
|
|
134
|
-
type getApiAccountAvatarResponse = (getApiAccountAvatarResponseSuccess | getApiAccountAvatarResponseError);
|
|
135
|
-
declare const getGetApiAccountAvatarUrl: () => string;
|
|
136
|
-
declare const getApiAccountAvatar: (options?: RequestInit) => Promise<getApiAccountAvatarResponse>;
|
|
137
|
-
/**
|
|
138
|
-
* Uploads a profile picture/avatar
|
|
139
|
-
* @summary Upload Avatar
|
|
140
|
-
*/
|
|
141
|
-
type postApiAccountAvatarResponse200 = {
|
|
142
|
-
data: ErrorResponse;
|
|
143
|
-
status: 200;
|
|
144
|
-
};
|
|
145
|
-
type postApiAccountAvatarResponse204 = {
|
|
146
|
-
data: void;
|
|
147
|
-
status: 204;
|
|
148
|
-
};
|
|
149
|
-
type postApiAccountAvatarResponse400 = {
|
|
150
|
-
data: ErrorResponse;
|
|
151
|
-
status: 400;
|
|
152
|
-
};
|
|
153
|
-
type postApiAccountAvatarResponse404 = {
|
|
154
|
-
data: ErrorResponse;
|
|
155
|
-
status: 404;
|
|
156
|
-
};
|
|
157
|
-
type postApiAccountAvatarResponse500 = {
|
|
158
|
-
data: ErrorResponse;
|
|
159
|
-
status: 500;
|
|
160
|
-
};
|
|
161
|
-
type postApiAccountAvatarResponseSuccess = (postApiAccountAvatarResponse200 | postApiAccountAvatarResponse204) & {
|
|
162
|
-
headers: Headers;
|
|
163
|
-
};
|
|
164
|
-
type postApiAccountAvatarResponseError = (postApiAccountAvatarResponse400 | postApiAccountAvatarResponse404 | postApiAccountAvatarResponse500) & {
|
|
165
|
-
headers: Headers;
|
|
166
|
-
};
|
|
167
|
-
type postApiAccountAvatarResponse = (postApiAccountAvatarResponseSuccess | postApiAccountAvatarResponseError);
|
|
168
|
-
declare const getPostApiAccountAvatarUrl: () => string;
|
|
169
|
-
declare const postApiAccountAvatar: (postApiAccountAvatarBody: PostApiAccountAvatarBody, options?: RequestInit) => Promise<postApiAccountAvatarResponse>;
|
|
170
|
-
/**
|
|
171
|
-
* Retrieves a list of API keys for the authenticated user.
|
|
172
|
-
* @summary List API Keys
|
|
173
|
-
*/
|
|
174
|
-
type getApiAccountKeysResponse200 = {
|
|
175
|
-
data: APIKeyResponseResponse;
|
|
176
|
-
status: 200;
|
|
177
|
-
};
|
|
178
|
-
type getApiAccountKeysResponse400 = {
|
|
179
|
-
data: ErrorResponse;
|
|
180
|
-
status: 400;
|
|
181
|
-
};
|
|
182
|
-
type getApiAccountKeysResponse404 = {
|
|
183
|
-
data: ErrorResponse;
|
|
184
|
-
status: 404;
|
|
185
|
-
};
|
|
186
|
-
type getApiAccountKeysResponse500 = {
|
|
187
|
-
data: ErrorResponse;
|
|
188
|
-
status: 500;
|
|
189
|
-
};
|
|
190
|
-
type getApiAccountKeysResponseSuccess = (getApiAccountKeysResponse200) & {
|
|
191
|
-
headers: Headers;
|
|
192
|
-
};
|
|
193
|
-
type getApiAccountKeysResponseError = (getApiAccountKeysResponse400 | getApiAccountKeysResponse404 | getApiAccountKeysResponse500) & {
|
|
194
|
-
headers: Headers;
|
|
195
|
-
};
|
|
196
|
-
type getApiAccountKeysResponse = (getApiAccountKeysResponseSuccess | getApiAccountKeysResponseError);
|
|
197
|
-
declare const getGetApiAccountKeysUrl: (params?: GetApiAccountKeysParams) => string;
|
|
198
|
-
declare const getApiAccountKeys: (params?: GetApiAccountKeysParams, options?: RequestInit) => Promise<getApiAccountKeysResponse>;
|
|
199
|
-
/**
|
|
200
|
-
* Creates a new API key for the authenticated user.
|
|
201
|
-
* @summary Create API Key
|
|
202
|
-
*/
|
|
203
|
-
type postApiAccountKeysResponse200 = {
|
|
204
|
-
data: CreateAPIKeyResponse;
|
|
205
|
-
status: 200;
|
|
206
|
-
};
|
|
207
|
-
type postApiAccountKeysResponse400 = {
|
|
208
|
-
data: ErrorResponse;
|
|
209
|
-
status: 400;
|
|
210
|
-
};
|
|
211
|
-
type postApiAccountKeysResponse404 = {
|
|
212
|
-
data: ErrorResponse;
|
|
213
|
-
status: 404;
|
|
214
|
-
};
|
|
215
|
-
type postApiAccountKeysResponse500 = {
|
|
216
|
-
data: ErrorResponse;
|
|
217
|
-
status: 500;
|
|
218
|
-
};
|
|
219
|
-
type postApiAccountKeysResponseSuccess = (postApiAccountKeysResponse200) & {
|
|
220
|
-
headers: Headers;
|
|
221
|
-
};
|
|
222
|
-
type postApiAccountKeysResponseError = (postApiAccountKeysResponse400 | postApiAccountKeysResponse404 | postApiAccountKeysResponse500) & {
|
|
223
|
-
headers: Headers;
|
|
224
|
-
};
|
|
225
|
-
type postApiAccountKeysResponse = (postApiAccountKeysResponseSuccess | postApiAccountKeysResponseError);
|
|
226
|
-
declare const getPostApiAccountKeysUrl: () => string;
|
|
227
|
-
declare const postApiAccountKeys: (aPIKeyCreateRequest: APIKeyCreateRequest, options?: RequestInit) => Promise<postApiAccountKeysResponse>;
|
|
228
|
-
/**
|
|
229
|
-
* Deletes a specific API key for the authenticated user.
|
|
230
|
-
* @summary Delete API Key
|
|
231
|
-
*/
|
|
232
|
-
type deleteApiAccountKeysKeyIDResponse200 = {
|
|
233
|
-
data: void;
|
|
234
|
-
status: 200;
|
|
235
|
-
};
|
|
236
|
-
type deleteApiAccountKeysKeyIDResponse400 = {
|
|
237
|
-
data: ErrorResponse;
|
|
238
|
-
status: 400;
|
|
239
|
-
};
|
|
240
|
-
type deleteApiAccountKeysKeyIDResponse404 = {
|
|
241
|
-
data: ErrorResponse;
|
|
242
|
-
status: 404;
|
|
243
|
-
};
|
|
244
|
-
type deleteApiAccountKeysKeyIDResponse500 = {
|
|
245
|
-
data: ErrorResponse;
|
|
246
|
-
status: 500;
|
|
247
|
-
};
|
|
248
|
-
type deleteApiAccountKeysKeyIDResponseSuccess = (deleteApiAccountKeysKeyIDResponse200) & {
|
|
249
|
-
headers: Headers;
|
|
250
|
-
};
|
|
251
|
-
type deleteApiAccountKeysKeyIDResponseError = (deleteApiAccountKeysKeyIDResponse400 | deleteApiAccountKeysKeyIDResponse404 | deleteApiAccountKeysKeyIDResponse500) & {
|
|
252
|
-
headers: Headers;
|
|
253
|
-
};
|
|
254
|
-
type deleteApiAccountKeysKeyIDResponse = (deleteApiAccountKeysKeyIDResponseSuccess | deleteApiAccountKeysKeyIDResponseError);
|
|
255
|
-
declare const getDeleteApiAccountKeysKeyIDUrl: (keyID: Uuid) => string;
|
|
256
|
-
declare const deleteApiAccountKeysKeyID: (keyID: Uuid, options?: RequestInit) => Promise<deleteApiAccountKeysKeyIDResponse>;
|
|
257
|
-
/**
|
|
258
|
-
* Resets the user's password using a token received via email.
|
|
259
|
-
* @summary Confirm password reset
|
|
260
|
-
*/
|
|
261
|
-
type postApiAccountPasswordResetConfirmResponse200 = {
|
|
262
|
-
data: void;
|
|
263
|
-
status: 200;
|
|
264
|
-
};
|
|
265
|
-
type postApiAccountPasswordResetConfirmResponse400 = {
|
|
266
|
-
data: ErrorResponse;
|
|
267
|
-
status: 400;
|
|
268
|
-
};
|
|
269
|
-
type postApiAccountPasswordResetConfirmResponse404 = {
|
|
270
|
-
data: ErrorResponse;
|
|
271
|
-
status: 404;
|
|
272
|
-
};
|
|
273
|
-
type postApiAccountPasswordResetConfirmResponse500 = {
|
|
274
|
-
data: ErrorResponse;
|
|
275
|
-
status: 500;
|
|
276
|
-
};
|
|
277
|
-
type postApiAccountPasswordResetConfirmResponseSuccess = (postApiAccountPasswordResetConfirmResponse200) & {
|
|
278
|
-
headers: Headers;
|
|
279
|
-
};
|
|
280
|
-
type postApiAccountPasswordResetConfirmResponseError = (postApiAccountPasswordResetConfirmResponse400 | postApiAccountPasswordResetConfirmResponse404 | postApiAccountPasswordResetConfirmResponse500) & {
|
|
281
|
-
headers: Headers;
|
|
282
|
-
};
|
|
283
|
-
type postApiAccountPasswordResetConfirmResponse = (postApiAccountPasswordResetConfirmResponseSuccess | postApiAccountPasswordResetConfirmResponseError);
|
|
284
|
-
declare const getPostApiAccountPasswordResetConfirmUrl: () => string;
|
|
285
|
-
declare const postApiAccountPasswordResetConfirm: (passwordResetVerifyRequest: PasswordResetVerifyRequest, options?: RequestInit) => Promise<postApiAccountPasswordResetConfirmResponse>;
|
|
286
|
-
/**
|
|
287
|
-
* Initiates the password reset process by sending a reset link to the user's email.
|
|
288
|
-
* @summary Request password reset
|
|
289
|
-
*/
|
|
290
|
-
type postApiAccountPasswordResetRequestResponse200 = {
|
|
291
|
-
data: void;
|
|
292
|
-
status: 200;
|
|
293
|
-
};
|
|
294
|
-
type postApiAccountPasswordResetRequestResponse400 = {
|
|
295
|
-
data: ErrorResponse;
|
|
296
|
-
status: 400;
|
|
297
|
-
};
|
|
298
|
-
type postApiAccountPasswordResetRequestResponse401 = {
|
|
299
|
-
data: ErrorResponse;
|
|
300
|
-
status: 401;
|
|
301
|
-
};
|
|
302
|
-
type postApiAccountPasswordResetRequestResponse403 = {
|
|
303
|
-
data: ErrorResponse;
|
|
304
|
-
status: 403;
|
|
305
|
-
};
|
|
306
|
-
type postApiAccountPasswordResetRequestResponse404 = {
|
|
307
|
-
data: ErrorResponse;
|
|
308
|
-
status: 404;
|
|
309
|
-
};
|
|
310
|
-
type postApiAccountPasswordResetRequestResponse500 = {
|
|
311
|
-
data: ErrorResponse;
|
|
312
|
-
status: 500;
|
|
313
|
-
};
|
|
314
|
-
type postApiAccountPasswordResetRequestResponseSuccess = (postApiAccountPasswordResetRequestResponse200) & {
|
|
315
|
-
headers: Headers;
|
|
316
|
-
};
|
|
317
|
-
type postApiAccountPasswordResetRequestResponseError = (postApiAccountPasswordResetRequestResponse400 | postApiAccountPasswordResetRequestResponse401 | postApiAccountPasswordResetRequestResponse403 | postApiAccountPasswordResetRequestResponse404 | postApiAccountPasswordResetRequestResponse500) & {
|
|
318
|
-
headers: Headers;
|
|
319
|
-
};
|
|
320
|
-
type postApiAccountPasswordResetRequestResponse = (postApiAccountPasswordResetRequestResponseSuccess | postApiAccountPasswordResetRequestResponseError);
|
|
321
|
-
declare const getPostApiAccountPasswordResetRequestUrl: () => string;
|
|
322
|
-
declare const postApiAccountPasswordResetRequest: (passwordResetRequest: PasswordResetRequest, options?: RequestInit) => Promise<postApiAccountPasswordResetRequestResponse>;
|
|
323
|
-
/**
|
|
324
|
-
* Retrieves the access control policies and model for the authenticated user.
|
|
325
|
-
* @summary Get account permissions
|
|
326
|
-
*/
|
|
327
|
-
type getApiAccountPermissionsResponse200 = {
|
|
328
|
-
data: AccountPermissionsResponse;
|
|
329
|
-
status: 200;
|
|
330
|
-
};
|
|
331
|
-
type getApiAccountPermissionsResponse400 = {
|
|
332
|
-
data: ErrorResponse;
|
|
333
|
-
status: 400;
|
|
334
|
-
};
|
|
335
|
-
type getApiAccountPermissionsResponse404 = {
|
|
336
|
-
data: ErrorResponse;
|
|
337
|
-
status: 404;
|
|
338
|
-
};
|
|
339
|
-
type getApiAccountPermissionsResponse500 = {
|
|
340
|
-
data: ErrorResponse;
|
|
341
|
-
status: 500;
|
|
342
|
-
};
|
|
343
|
-
type getApiAccountPermissionsResponseSuccess = (getApiAccountPermissionsResponse200) & {
|
|
344
|
-
headers: Headers;
|
|
345
|
-
};
|
|
346
|
-
type getApiAccountPermissionsResponseError = (getApiAccountPermissionsResponse400 | getApiAccountPermissionsResponse404 | getApiAccountPermissionsResponse500) & {
|
|
347
|
-
headers: Headers;
|
|
348
|
-
};
|
|
349
|
-
type getApiAccountPermissionsResponse = (getApiAccountPermissionsResponseSuccess | getApiAccountPermissionsResponseError);
|
|
350
|
-
declare const getGetApiAccountPermissionsUrl: () => string;
|
|
351
|
-
declare const getApiAccountPermissions: (options?: RequestInit) => Promise<getApiAccountPermissionsResponse>;
|
|
352
|
-
/**
|
|
353
|
-
* Updates the authenticated user's email address.
|
|
354
|
-
* @summary Update email address
|
|
355
|
-
*/
|
|
356
|
-
type postApiAccountUpdateEmailResponse200 = {
|
|
357
|
-
data: void;
|
|
358
|
-
status: 200;
|
|
359
|
-
};
|
|
360
|
-
type postApiAccountUpdateEmailResponse400 = {
|
|
361
|
-
data: ErrorResponse;
|
|
362
|
-
status: 400;
|
|
363
|
-
};
|
|
364
|
-
type postApiAccountUpdateEmailResponse404 = {
|
|
365
|
-
data: ErrorResponse;
|
|
366
|
-
status: 404;
|
|
367
|
-
};
|
|
368
|
-
type postApiAccountUpdateEmailResponse500 = {
|
|
369
|
-
data: ErrorResponse;
|
|
370
|
-
status: 500;
|
|
371
|
-
};
|
|
372
|
-
type postApiAccountUpdateEmailResponseSuccess = (postApiAccountUpdateEmailResponse200) & {
|
|
373
|
-
headers: Headers;
|
|
374
|
-
};
|
|
375
|
-
type postApiAccountUpdateEmailResponseError = (postApiAccountUpdateEmailResponse400 | postApiAccountUpdateEmailResponse404 | postApiAccountUpdateEmailResponse500) & {
|
|
376
|
-
headers: Headers;
|
|
377
|
-
};
|
|
378
|
-
type postApiAccountUpdateEmailResponse = (postApiAccountUpdateEmailResponseSuccess | postApiAccountUpdateEmailResponseError);
|
|
379
|
-
declare const getPostApiAccountUpdateEmailUrl: () => string;
|
|
380
|
-
declare const postApiAccountUpdateEmail: (updateEmailRequest: UpdateEmailRequest, options?: RequestInit) => Promise<postApiAccountUpdateEmailResponse>;
|
|
381
|
-
/**
|
|
382
|
-
* Updates the authenticated user's password.
|
|
383
|
-
* @summary Update password
|
|
384
|
-
*/
|
|
385
|
-
type postApiAccountUpdatePasswordResponse200 = {
|
|
386
|
-
data: void;
|
|
387
|
-
status: 200;
|
|
388
|
-
};
|
|
389
|
-
type postApiAccountUpdatePasswordResponse400 = {
|
|
390
|
-
data: ErrorResponse;
|
|
391
|
-
status: 400;
|
|
392
|
-
};
|
|
393
|
-
type postApiAccountUpdatePasswordResponse404 = {
|
|
394
|
-
data: ErrorResponse;
|
|
395
|
-
status: 404;
|
|
396
|
-
};
|
|
397
|
-
type postApiAccountUpdatePasswordResponse500 = {
|
|
398
|
-
data: ErrorResponse;
|
|
399
|
-
status: 500;
|
|
400
|
-
};
|
|
401
|
-
type postApiAccountUpdatePasswordResponseSuccess = (postApiAccountUpdatePasswordResponse200) & {
|
|
402
|
-
headers: Headers;
|
|
403
|
-
};
|
|
404
|
-
type postApiAccountUpdatePasswordResponseError = (postApiAccountUpdatePasswordResponse400 | postApiAccountUpdatePasswordResponse404 | postApiAccountUpdatePasswordResponse500) & {
|
|
405
|
-
headers: Headers;
|
|
406
|
-
};
|
|
407
|
-
type postApiAccountUpdatePasswordResponse = (postApiAccountUpdatePasswordResponseSuccess | postApiAccountUpdatePasswordResponseError);
|
|
408
|
-
declare const getPostApiAccountUpdatePasswordUrl: () => string;
|
|
409
|
-
declare const postApiAccountUpdatePassword: (updatePasswordRequest: UpdatePasswordRequest, options?: RequestInit) => Promise<postApiAccountUpdatePasswordResponse>;
|
|
410
|
-
/**
|
|
411
|
-
* Verifies a user's email address using a token sent via email. Optionally auto-login user if they don't have 2FA enabled.
|
|
412
|
-
* @summary Verify email address
|
|
413
|
-
*/
|
|
414
|
-
type postApiAccountVerifyEmailResponse200 = {
|
|
415
|
-
data: void;
|
|
416
|
-
status: 200;
|
|
417
|
-
};
|
|
418
|
-
type postApiAccountVerifyEmailResponse400 = {
|
|
419
|
-
data: ErrorResponse;
|
|
420
|
-
status: 400;
|
|
421
|
-
};
|
|
422
|
-
type postApiAccountVerifyEmailResponse404 = {
|
|
423
|
-
data: ErrorResponse;
|
|
424
|
-
status: 404;
|
|
425
|
-
};
|
|
426
|
-
type postApiAccountVerifyEmailResponse500 = {
|
|
427
|
-
data: ErrorResponse;
|
|
428
|
-
status: 500;
|
|
429
|
-
};
|
|
430
|
-
type postApiAccountVerifyEmailResponseSuccess = (postApiAccountVerifyEmailResponse200) & {
|
|
431
|
-
headers: Headers;
|
|
432
|
-
};
|
|
433
|
-
type postApiAccountVerifyEmailResponseError = (postApiAccountVerifyEmailResponse400 | postApiAccountVerifyEmailResponse404 | postApiAccountVerifyEmailResponse500) & {
|
|
434
|
-
headers: Headers;
|
|
435
|
-
};
|
|
436
|
-
type postApiAccountVerifyEmailResponse = (postApiAccountVerifyEmailResponseSuccess | postApiAccountVerifyEmailResponseError);
|
|
437
|
-
declare const getPostApiAccountVerifyEmailUrl: (params?: PostApiAccountVerifyEmailParams) => string;
|
|
438
|
-
declare const postApiAccountVerifyEmail: (verifyEmailRequest: VerifyEmailRequest, params?: PostApiAccountVerifyEmailParams, options?: RequestInit) => Promise<postApiAccountVerifyEmailResponse>;
|
|
439
|
-
/**
|
|
440
|
-
* Resends the email verification link to the user's email address.
|
|
441
|
-
* @summary Resend email verification
|
|
442
|
-
*/
|
|
443
|
-
type postApiAccountVerifyEmailResendResponse200 = {
|
|
444
|
-
data: void;
|
|
445
|
-
status: 200;
|
|
446
|
-
};
|
|
447
|
-
type postApiAccountVerifyEmailResendResponse400 = {
|
|
448
|
-
data: ErrorResponse;
|
|
449
|
-
status: 400;
|
|
450
|
-
};
|
|
451
|
-
type postApiAccountVerifyEmailResendResponse404 = {
|
|
452
|
-
data: ErrorResponse;
|
|
453
|
-
status: 404;
|
|
454
|
-
};
|
|
455
|
-
type postApiAccountVerifyEmailResendResponse500 = {
|
|
456
|
-
data: ErrorResponse;
|
|
457
|
-
status: 500;
|
|
458
|
-
};
|
|
459
|
-
type postApiAccountVerifyEmailResendResponseSuccess = (postApiAccountVerifyEmailResendResponse200) & {
|
|
460
|
-
headers: Headers;
|
|
461
|
-
};
|
|
462
|
-
type postApiAccountVerifyEmailResendResponseError = (postApiAccountVerifyEmailResendResponse400 | postApiAccountVerifyEmailResendResponse404 | postApiAccountVerifyEmailResendResponse500) & {
|
|
463
|
-
headers: Headers;
|
|
464
|
-
};
|
|
465
|
-
type postApiAccountVerifyEmailResendResponse = (postApiAccountVerifyEmailResendResponseSuccess | postApiAccountVerifyEmailResendResponseError);
|
|
466
|
-
declare const getPostApiAccountVerifyEmailResendUrl: () => string;
|
|
467
|
-
declare const postApiAccountVerifyEmailResend: (resendVerifyEmailRequest: ResendVerifyEmailRequest, options?: RequestInit) => Promise<postApiAccountVerifyEmailResendResponse>;
|
|
468
|
-
/**
|
|
469
|
-
* Exchanges an API key for a JWT.
|
|
470
|
-
* @summary Authenticate with API Key
|
|
471
|
-
*/
|
|
472
|
-
type postApiAuthKeyResponse200 = {
|
|
473
|
-
data: LoginResponse;
|
|
474
|
-
status: 200;
|
|
475
|
-
};
|
|
476
|
-
type postApiAuthKeyResponse400 = {
|
|
477
|
-
data: ErrorResponse;
|
|
478
|
-
status: 400;
|
|
479
|
-
};
|
|
480
|
-
type postApiAuthKeyResponse401 = {
|
|
481
|
-
data: ErrorResponse;
|
|
482
|
-
status: 401;
|
|
483
|
-
};
|
|
484
|
-
type postApiAuthKeyResponse403 = {
|
|
485
|
-
data: ErrorResponse;
|
|
486
|
-
status: 403;
|
|
487
|
-
};
|
|
488
|
-
type postApiAuthKeyResponse404 = {
|
|
489
|
-
data: ErrorResponse;
|
|
490
|
-
status: 404;
|
|
491
|
-
};
|
|
492
|
-
type postApiAuthKeyResponse500 = {
|
|
493
|
-
data: ErrorResponse;
|
|
494
|
-
status: 500;
|
|
495
|
-
};
|
|
496
|
-
type postApiAuthKeyResponseSuccess = (postApiAuthKeyResponse200) & {
|
|
497
|
-
headers: Headers;
|
|
498
|
-
};
|
|
499
|
-
type postApiAuthKeyResponseError = (postApiAuthKeyResponse400 | postApiAuthKeyResponse401 | postApiAuthKeyResponse403 | postApiAuthKeyResponse404 | postApiAuthKeyResponse500) & {
|
|
500
|
-
headers: Headers;
|
|
501
|
-
};
|
|
502
|
-
type postApiAuthKeyResponse = (postApiAuthKeyResponseSuccess | postApiAuthKeyResponseError);
|
|
503
|
-
declare const getPostApiAuthKeyUrl: () => string;
|
|
504
|
-
declare const postApiAuthKey: (options?: RequestInit) => Promise<postApiAuthKeyResponse>;
|
|
505
|
-
/**
|
|
506
|
-
* Authenticates a user using email and password.
|
|
507
|
-
* @summary Login with email and password
|
|
508
|
-
*/
|
|
509
|
-
type postApiAuthLoginResponse200 = {
|
|
510
|
-
data: LoginResponse;
|
|
511
|
-
status: 200;
|
|
512
|
-
};
|
|
513
|
-
type postApiAuthLoginResponse302 = {
|
|
514
|
-
data: void;
|
|
515
|
-
status: 302;
|
|
516
|
-
};
|
|
517
|
-
type postApiAuthLoginResponse400 = {
|
|
518
|
-
data: ErrorResponse;
|
|
519
|
-
status: 400;
|
|
520
|
-
};
|
|
521
|
-
type postApiAuthLoginResponse401 = {
|
|
522
|
-
data: Error;
|
|
523
|
-
status: 401;
|
|
524
|
-
};
|
|
525
|
-
type postApiAuthLoginResponse403 = {
|
|
526
|
-
data: Error;
|
|
527
|
-
status: 403;
|
|
528
|
-
};
|
|
529
|
-
type postApiAuthLoginResponse404 = {
|
|
530
|
-
data: ErrorResponse;
|
|
531
|
-
status: 404;
|
|
532
|
-
};
|
|
533
|
-
type postApiAuthLoginResponse500 = {
|
|
534
|
-
data: Error;
|
|
535
|
-
status: 500;
|
|
536
|
-
};
|
|
537
|
-
type postApiAuthLoginResponseSuccess = (postApiAuthLoginResponse200) & {
|
|
538
|
-
headers: Headers;
|
|
539
|
-
};
|
|
540
|
-
type postApiAuthLoginResponseError = (postApiAuthLoginResponse302 | postApiAuthLoginResponse400 | postApiAuthLoginResponse401 | postApiAuthLoginResponse403 | postApiAuthLoginResponse404 | postApiAuthLoginResponse500) & {
|
|
541
|
-
headers: Headers;
|
|
542
|
-
};
|
|
543
|
-
type postApiAuthLoginResponse = (postApiAuthLoginResponseSuccess | postApiAuthLoginResponseError);
|
|
544
|
-
declare const getPostApiAuthLoginUrl: () => string;
|
|
545
|
-
declare const postApiAuthLogin: (loginRequest: LoginRequest, options?: RequestInit) => Promise<postApiAuthLoginResponse>;
|
|
546
|
-
/**
|
|
547
|
-
* Logs out the current user by clearing the authentication cookie.
|
|
548
|
-
* @summary Logout
|
|
549
|
-
*/
|
|
550
|
-
type postApiAuthLogoutResponse200 = {
|
|
551
|
-
data: void;
|
|
552
|
-
status: 200;
|
|
553
|
-
};
|
|
554
|
-
type postApiAuthLogoutResponse400 = {
|
|
555
|
-
data: ErrorResponse;
|
|
556
|
-
status: 400;
|
|
557
|
-
};
|
|
558
|
-
type postApiAuthLogoutResponse401 = {
|
|
559
|
-
data: ErrorResponse;
|
|
560
|
-
status: 401;
|
|
561
|
-
};
|
|
562
|
-
type postApiAuthLogoutResponse403 = {
|
|
563
|
-
data: ErrorResponse;
|
|
564
|
-
status: 403;
|
|
565
|
-
};
|
|
566
|
-
type postApiAuthLogoutResponse404 = {
|
|
567
|
-
data: ErrorResponse;
|
|
568
|
-
status: 404;
|
|
569
|
-
};
|
|
570
|
-
type postApiAuthLogoutResponse500 = {
|
|
571
|
-
data: ErrorResponse;
|
|
572
|
-
status: 500;
|
|
573
|
-
};
|
|
574
|
-
type postApiAuthLogoutResponseSuccess = (postApiAuthLogoutResponse200) & {
|
|
575
|
-
headers: Headers;
|
|
576
|
-
};
|
|
577
|
-
type postApiAuthLogoutResponseError = (postApiAuthLogoutResponse400 | postApiAuthLogoutResponse401 | postApiAuthLogoutResponse403 | postApiAuthLogoutResponse404 | postApiAuthLogoutResponse500) & {
|
|
578
|
-
headers: Headers;
|
|
579
|
-
};
|
|
580
|
-
type postApiAuthLogoutResponse = (postApiAuthLogoutResponseSuccess | postApiAuthLogoutResponseError);
|
|
581
|
-
declare const getPostApiAuthLogoutUrl: () => string;
|
|
582
|
-
declare const postApiAuthLogout: (options?: RequestInit) => Promise<postApiAuthLogoutResponse>;
|
|
583
|
-
/**
|
|
584
|
-
* Disables 2FA for the authenticated user.
|
|
585
|
-
* @summary Disable OTP
|
|
586
|
-
*/
|
|
587
|
-
type postApiAuthOtpDisableResponse200 = {
|
|
588
|
-
data: ErrorResponse;
|
|
589
|
-
status: 200;
|
|
590
|
-
};
|
|
591
|
-
type postApiAuthOtpDisableResponse204 = {
|
|
592
|
-
data: void;
|
|
593
|
-
status: 204;
|
|
594
|
-
};
|
|
595
|
-
type postApiAuthOtpDisableResponse400 = {
|
|
596
|
-
data: ErrorResponse;
|
|
597
|
-
status: 400;
|
|
598
|
-
};
|
|
599
|
-
type postApiAuthOtpDisableResponse404 = {
|
|
600
|
-
data: ErrorResponse;
|
|
601
|
-
status: 404;
|
|
602
|
-
};
|
|
603
|
-
type postApiAuthOtpDisableResponse500 = {
|
|
604
|
-
data: ErrorResponse;
|
|
605
|
-
status: 500;
|
|
606
|
-
};
|
|
607
|
-
type postApiAuthOtpDisableResponseSuccess = (postApiAuthOtpDisableResponse200 | postApiAuthOtpDisableResponse204) & {
|
|
608
|
-
headers: Headers;
|
|
609
|
-
};
|
|
610
|
-
type postApiAuthOtpDisableResponseError = (postApiAuthOtpDisableResponse400 | postApiAuthOtpDisableResponse404 | postApiAuthOtpDisableResponse500) & {
|
|
611
|
-
headers: Headers;
|
|
612
|
-
};
|
|
613
|
-
type postApiAuthOtpDisableResponse = (postApiAuthOtpDisableResponseSuccess | postApiAuthOtpDisableResponseError);
|
|
614
|
-
declare const getPostApiAuthOtpDisableUrl: () => string;
|
|
615
|
-
declare const postApiAuthOtpDisable: (oTPDisableRequest: OTPDisableRequest, options?: RequestInit) => Promise<postApiAuthOtpDisableResponse>;
|
|
616
|
-
/**
|
|
617
|
-
* Generates a new OTP secret for the authenticated user.
|
|
618
|
-
* @summary Generate OTP secret
|
|
619
|
-
*/
|
|
620
|
-
type postApiAuthOtpGenerateResponse200 = {
|
|
621
|
-
data: OTPGenerateResponse;
|
|
622
|
-
status: 200;
|
|
623
|
-
};
|
|
624
|
-
type postApiAuthOtpGenerateResponse400 = {
|
|
625
|
-
data: ErrorResponse;
|
|
626
|
-
status: 400;
|
|
627
|
-
};
|
|
628
|
-
type postApiAuthOtpGenerateResponse401 = {
|
|
629
|
-
data: ErrorResponse;
|
|
630
|
-
status: 401;
|
|
631
|
-
};
|
|
632
|
-
type postApiAuthOtpGenerateResponse403 = {
|
|
633
|
-
data: ErrorResponse;
|
|
634
|
-
status: 403;
|
|
635
|
-
};
|
|
636
|
-
type postApiAuthOtpGenerateResponse404 = {
|
|
637
|
-
data: ErrorResponse;
|
|
638
|
-
status: 404;
|
|
639
|
-
};
|
|
640
|
-
type postApiAuthOtpGenerateResponse500 = {
|
|
641
|
-
data: ErrorResponse;
|
|
642
|
-
status: 500;
|
|
643
|
-
};
|
|
644
|
-
type postApiAuthOtpGenerateResponseSuccess = (postApiAuthOtpGenerateResponse200) & {
|
|
645
|
-
headers: Headers;
|
|
646
|
-
};
|
|
647
|
-
type postApiAuthOtpGenerateResponseError = (postApiAuthOtpGenerateResponse400 | postApiAuthOtpGenerateResponse401 | postApiAuthOtpGenerateResponse403 | postApiAuthOtpGenerateResponse404 | postApiAuthOtpGenerateResponse500) & {
|
|
648
|
-
headers: Headers;
|
|
649
|
-
};
|
|
650
|
-
type postApiAuthOtpGenerateResponse = (postApiAuthOtpGenerateResponseSuccess | postApiAuthOtpGenerateResponseError);
|
|
651
|
-
declare const getPostApiAuthOtpGenerateUrl: () => string;
|
|
652
|
-
declare const postApiAuthOtpGenerate: (options?: RequestInit) => Promise<postApiAuthOtpGenerateResponse>;
|
|
653
|
-
/**
|
|
654
|
-
* Validates an OTP code to complete 2FA login.
|
|
655
|
-
* @summary Validate OTP code
|
|
656
|
-
*/
|
|
657
|
-
type postApiAuthOtpValidateResponse200 = {
|
|
658
|
-
data: ErrorResponse;
|
|
659
|
-
status: 200;
|
|
660
|
-
};
|
|
661
|
-
type postApiAuthOtpValidateResponse302 = {
|
|
662
|
-
data: void;
|
|
663
|
-
status: 302;
|
|
664
|
-
};
|
|
665
|
-
type postApiAuthOtpValidateResponse400 = {
|
|
666
|
-
data: ErrorResponse;
|
|
667
|
-
status: 400;
|
|
668
|
-
};
|
|
669
|
-
type postApiAuthOtpValidateResponse401 = {
|
|
670
|
-
data: ErrorResponse;
|
|
671
|
-
status: 401;
|
|
672
|
-
};
|
|
673
|
-
type postApiAuthOtpValidateResponse403 = {
|
|
674
|
-
data: ErrorResponse;
|
|
675
|
-
status: 403;
|
|
676
|
-
};
|
|
677
|
-
type postApiAuthOtpValidateResponse404 = {
|
|
678
|
-
data: ErrorResponse;
|
|
679
|
-
status: 404;
|
|
680
|
-
};
|
|
681
|
-
type postApiAuthOtpValidateResponse500 = {
|
|
682
|
-
data: ErrorResponse;
|
|
683
|
-
status: 500;
|
|
684
|
-
};
|
|
685
|
-
type postApiAuthOtpValidateResponseSuccess = (postApiAuthOtpValidateResponse200) & {
|
|
686
|
-
headers: Headers;
|
|
687
|
-
};
|
|
688
|
-
type postApiAuthOtpValidateResponseError = (postApiAuthOtpValidateResponse302 | postApiAuthOtpValidateResponse400 | postApiAuthOtpValidateResponse401 | postApiAuthOtpValidateResponse403 | postApiAuthOtpValidateResponse404 | postApiAuthOtpValidateResponse500) & {
|
|
689
|
-
headers: Headers;
|
|
690
|
-
};
|
|
691
|
-
type postApiAuthOtpValidateResponse = (postApiAuthOtpValidateResponseSuccess | postApiAuthOtpValidateResponseError);
|
|
692
|
-
declare const getPostApiAuthOtpValidateUrl: () => string;
|
|
693
|
-
declare const postApiAuthOtpValidate: (oTPValidateRequest: OTPValidateRequest, options?: RequestInit) => Promise<postApiAuthOtpValidateResponse>;
|
|
694
|
-
/**
|
|
695
|
-
* Verifies an OTP code and enables 2FA for the authenticated user.
|
|
696
|
-
* @summary Verify and enable OTP
|
|
697
|
-
*/
|
|
698
|
-
type postApiAuthOtpVerifyResponse200 = {
|
|
699
|
-
data: ErrorResponse;
|
|
700
|
-
status: 200;
|
|
701
|
-
};
|
|
702
|
-
type postApiAuthOtpVerifyResponse204 = {
|
|
703
|
-
data: void;
|
|
704
|
-
status: 204;
|
|
705
|
-
};
|
|
706
|
-
type postApiAuthOtpVerifyResponse400 = {
|
|
707
|
-
data: ErrorResponse;
|
|
708
|
-
status: 400;
|
|
709
|
-
};
|
|
710
|
-
type postApiAuthOtpVerifyResponse404 = {
|
|
711
|
-
data: ErrorResponse;
|
|
712
|
-
status: 404;
|
|
713
|
-
};
|
|
714
|
-
type postApiAuthOtpVerifyResponse500 = {
|
|
715
|
-
data: ErrorResponse;
|
|
716
|
-
status: 500;
|
|
717
|
-
};
|
|
718
|
-
type postApiAuthOtpVerifyResponseSuccess = (postApiAuthOtpVerifyResponse200 | postApiAuthOtpVerifyResponse204) & {
|
|
719
|
-
headers: Headers;
|
|
720
|
-
};
|
|
721
|
-
type postApiAuthOtpVerifyResponseError = (postApiAuthOtpVerifyResponse400 | postApiAuthOtpVerifyResponse404 | postApiAuthOtpVerifyResponse500) & {
|
|
722
|
-
headers: Headers;
|
|
723
|
-
};
|
|
724
|
-
type postApiAuthOtpVerifyResponse = (postApiAuthOtpVerifyResponseSuccess | postApiAuthOtpVerifyResponseError);
|
|
725
|
-
declare const getPostApiAuthOtpVerifyUrl: () => string;
|
|
726
|
-
declare const postApiAuthOtpVerify: (oTPVerifyRequest: OTPVerifyRequest, options?: RequestInit) => Promise<postApiAuthOtpVerifyResponse>;
|
|
727
|
-
/**
|
|
728
|
-
* Checks if the user is authenticated and returns a pong response.
|
|
729
|
-
* @summary Ping authenticated endpoint
|
|
730
|
-
*/
|
|
731
|
-
type postApiAuthPingResponse200 = {
|
|
732
|
-
data: PongResponse;
|
|
733
|
-
status: 200;
|
|
734
|
-
};
|
|
735
|
-
type postApiAuthPingResponse400 = {
|
|
736
|
-
data: ErrorResponse;
|
|
737
|
-
status: 400;
|
|
738
|
-
};
|
|
739
|
-
type postApiAuthPingResponse401 = {
|
|
740
|
-
data: Error;
|
|
741
|
-
status: 401;
|
|
742
|
-
};
|
|
743
|
-
type postApiAuthPingResponse403 = {
|
|
744
|
-
data: ErrorResponse;
|
|
745
|
-
status: 403;
|
|
746
|
-
};
|
|
747
|
-
type postApiAuthPingResponse404 = {
|
|
748
|
-
data: ErrorResponse;
|
|
749
|
-
status: 404;
|
|
750
|
-
};
|
|
751
|
-
type postApiAuthPingResponse500 = {
|
|
752
|
-
data: Error;
|
|
753
|
-
status: 500;
|
|
754
|
-
};
|
|
755
|
-
type postApiAuthPingResponseSuccess = (postApiAuthPingResponse200) & {
|
|
756
|
-
headers: Headers;
|
|
757
|
-
};
|
|
758
|
-
type postApiAuthPingResponseError = (postApiAuthPingResponse400 | postApiAuthPingResponse401 | postApiAuthPingResponse403 | postApiAuthPingResponse404 | postApiAuthPingResponse500) & {
|
|
759
|
-
headers: Headers;
|
|
760
|
-
};
|
|
761
|
-
type postApiAuthPingResponse = (postApiAuthPingResponseSuccess | postApiAuthPingResponseError);
|
|
762
|
-
declare const getPostApiAuthPingUrl: () => string;
|
|
763
|
-
declare const postApiAuthPing: (options?: RequestInit) => Promise<postApiAuthPingResponse>;
|
|
764
|
-
/**
|
|
765
|
-
* Creates a new user account with email and password.
|
|
766
|
-
* @summary Register a new account
|
|
767
|
-
*/
|
|
768
|
-
type postApiAuthRegisterResponse200 = {
|
|
769
|
-
data: void;
|
|
770
|
-
status: 200;
|
|
771
|
-
};
|
|
772
|
-
type postApiAuthRegisterResponse400 = {
|
|
773
|
-
data: ErrorResponse;
|
|
774
|
-
status: 400;
|
|
775
|
-
};
|
|
776
|
-
type postApiAuthRegisterResponse401 = {
|
|
777
|
-
data: ErrorResponse;
|
|
778
|
-
status: 401;
|
|
779
|
-
};
|
|
780
|
-
type postApiAuthRegisterResponse403 = {
|
|
781
|
-
data: ErrorResponse;
|
|
782
|
-
status: 403;
|
|
783
|
-
};
|
|
784
|
-
type postApiAuthRegisterResponse404 = {
|
|
785
|
-
data: ErrorResponse;
|
|
786
|
-
status: 404;
|
|
787
|
-
};
|
|
788
|
-
type postApiAuthRegisterResponse409 = {
|
|
789
|
-
data: Error;
|
|
790
|
-
status: 409;
|
|
791
|
-
};
|
|
792
|
-
type postApiAuthRegisterResponse500 = {
|
|
793
|
-
data: Error;
|
|
794
|
-
status: 500;
|
|
795
|
-
};
|
|
796
|
-
type postApiAuthRegisterResponseSuccess = (postApiAuthRegisterResponse200) & {
|
|
797
|
-
headers: Headers;
|
|
798
|
-
};
|
|
799
|
-
type postApiAuthRegisterResponseError = (postApiAuthRegisterResponse400 | postApiAuthRegisterResponse401 | postApiAuthRegisterResponse403 | postApiAuthRegisterResponse404 | postApiAuthRegisterResponse409 | postApiAuthRegisterResponse500) & {
|
|
800
|
-
headers: Headers;
|
|
801
|
-
};
|
|
802
|
-
type postApiAuthRegisterResponse = (postApiAuthRegisterResponseSuccess | postApiAuthRegisterResponseError);
|
|
803
|
-
declare const getPostApiAuthRegisterUrl: () => string;
|
|
804
|
-
declare const postApiAuthRegister: (registerRequest: RegisterRequest, options?: RequestInit) => Promise<postApiAuthRegisterResponse>;
|
|
805
|
-
/**
|
|
806
|
-
* Retrieve a list of operations, with filtering, searching, and pagination support.
|
|
807
|
-
* @summary List Operations
|
|
808
|
-
*/
|
|
809
|
-
type getApiOperationsResponse200 = {
|
|
810
|
-
data: OperationListItemResponse;
|
|
811
|
-
status: 200;
|
|
812
|
-
};
|
|
813
|
-
type getApiOperationsResponse400 = {
|
|
814
|
-
data: ErrorResponse;
|
|
815
|
-
status: 400;
|
|
816
|
-
};
|
|
817
|
-
type getApiOperationsResponse404 = {
|
|
818
|
-
data: ErrorResponse;
|
|
819
|
-
status: 404;
|
|
820
|
-
};
|
|
821
|
-
type getApiOperationsResponse500 = {
|
|
822
|
-
data: ErrorResponse;
|
|
823
|
-
status: 500;
|
|
824
|
-
};
|
|
825
|
-
type getApiOperationsResponseSuccess = (getApiOperationsResponse200) & {
|
|
826
|
-
headers: Headers;
|
|
827
|
-
};
|
|
828
|
-
type getApiOperationsResponseError = (getApiOperationsResponse400 | getApiOperationsResponse404 | getApiOperationsResponse500) & {
|
|
829
|
-
headers: Headers;
|
|
830
|
-
};
|
|
831
|
-
type getApiOperationsResponse = (getApiOperationsResponseSuccess | getApiOperationsResponseError);
|
|
832
|
-
declare const getGetApiOperationsUrl: (params?: GetApiOperationsParams) => string;
|
|
833
|
-
declare const getApiOperations: (params?: GetApiOperationsParams, options?: RequestInit) => Promise<getApiOperationsResponse>;
|
|
834
|
-
/**
|
|
835
|
-
* Retrieve detailed information for a specific operation by its ID.
|
|
836
|
-
* @summary Get Operation Details
|
|
837
|
-
*/
|
|
838
|
-
type getApiOperationsIdResponse200 = {
|
|
839
|
-
data: OperationDetailResponse;
|
|
840
|
-
status: 200;
|
|
841
|
-
};
|
|
842
|
-
type getApiOperationsIdResponse400 = {
|
|
843
|
-
data: ErrorResponse;
|
|
844
|
-
status: 400;
|
|
845
|
-
};
|
|
846
|
-
type getApiOperationsIdResponse404 = {
|
|
847
|
-
data: ErrorResponse;
|
|
848
|
-
status: 404;
|
|
849
|
-
};
|
|
850
|
-
type getApiOperationsIdResponse500 = {
|
|
851
|
-
data: ErrorResponse;
|
|
852
|
-
status: 500;
|
|
853
|
-
};
|
|
854
|
-
type getApiOperationsIdResponseSuccess = (getApiOperationsIdResponse200) & {
|
|
855
|
-
headers: Headers;
|
|
856
|
-
};
|
|
857
|
-
type getApiOperationsIdResponseError = (getApiOperationsIdResponse400 | getApiOperationsIdResponse404 | getApiOperationsIdResponse500) & {
|
|
858
|
-
headers: Headers;
|
|
859
|
-
};
|
|
860
|
-
type getApiOperationsIdResponse = (getApiOperationsIdResponseSuccess | getApiOperationsIdResponseError);
|
|
861
|
-
declare const getGetApiOperationsIdUrl: (id: number) => string;
|
|
862
|
-
declare const getApiOperationsId: (id: number, options?: RequestInit) => Promise<getApiOperationsIdResponse>;
|
|
863
|
-
/**
|
|
864
|
-
* Retrieves distinct filter values for operations (statuses, operations, protocols)
|
|
865
|
-
* @summary Get Operation Filters
|
|
866
|
-
*/
|
|
867
|
-
type getApiOperationsFiltersResponse200 = {
|
|
868
|
-
data: OperationFiltersResponseResponse;
|
|
869
|
-
status: 200;
|
|
870
|
-
};
|
|
871
|
-
type getApiOperationsFiltersResponse400 = {
|
|
872
|
-
data: ErrorResponse;
|
|
873
|
-
status: 400;
|
|
874
|
-
};
|
|
875
|
-
type getApiOperationsFiltersResponse404 = {
|
|
876
|
-
data: ErrorResponse;
|
|
877
|
-
status: 404;
|
|
878
|
-
};
|
|
879
|
-
type getApiOperationsFiltersResponse500 = {
|
|
880
|
-
data: ErrorResponse;
|
|
881
|
-
status: 500;
|
|
882
|
-
};
|
|
883
|
-
type getApiOperationsFiltersResponseSuccess = (getApiOperationsFiltersResponse200) & {
|
|
884
|
-
headers: Headers;
|
|
885
|
-
};
|
|
886
|
-
type getApiOperationsFiltersResponseError = (getApiOperationsFiltersResponse400 | getApiOperationsFiltersResponse404 | getApiOperationsFiltersResponse500) & {
|
|
887
|
-
headers: Headers;
|
|
888
|
-
};
|
|
889
|
-
type getApiOperationsFiltersResponse = (getApiOperationsFiltersResponseSuccess | getApiOperationsFiltersResponseError);
|
|
890
|
-
declare const getGetApiOperationsFiltersUrl: () => string;
|
|
891
|
-
declare const getApiOperationsFilters: (options?: RequestInit) => Promise<getApiOperationsFiltersResponse>;
|
|
892
|
-
/**
|
|
893
|
-
* Retrieves the maximum allowed upload size.
|
|
894
|
-
* @summary Get upload limit
|
|
895
|
-
*/
|
|
896
|
-
type getApiUploadLimitResponse200 = {
|
|
897
|
-
data: UploadLimitResponse;
|
|
898
|
-
status: 200;
|
|
899
|
-
};
|
|
900
|
-
type getApiUploadLimitResponse400 = {
|
|
901
|
-
data: ErrorResponse;
|
|
902
|
-
status: 400;
|
|
903
|
-
};
|
|
904
|
-
type getApiUploadLimitResponse404 = {
|
|
905
|
-
data: ErrorResponse;
|
|
906
|
-
status: 404;
|
|
907
|
-
};
|
|
908
|
-
type getApiUploadLimitResponse500 = {
|
|
909
|
-
data: ErrorResponse;
|
|
910
|
-
status: 500;
|
|
911
|
-
};
|
|
912
|
-
type getApiUploadLimitResponseSuccess = (getApiUploadLimitResponse200) & {
|
|
913
|
-
headers: Headers;
|
|
914
|
-
};
|
|
915
|
-
type getApiUploadLimitResponseError = (getApiUploadLimitResponse400 | getApiUploadLimitResponse404 | getApiUploadLimitResponse500) & {
|
|
916
|
-
headers: Headers;
|
|
917
|
-
};
|
|
918
|
-
type getApiUploadLimitResponse = (getApiUploadLimitResponseSuccess | getApiUploadLimitResponseError);
|
|
919
|
-
declare const getGetApiUploadLimitUrl: () => string;
|
|
920
|
-
declare const getApiUploadLimit: (options?: RequestInit) => Promise<getApiUploadLimitResponse>;
|
|
921
|
-
//#endregion
|
|
922
|
-
export { deleteApiAccount, deleteApiAccountKeysKeyID, deleteApiAccountKeysKeyIDResponse, deleteApiAccountKeysKeyIDResponse200, deleteApiAccountKeysKeyIDResponse400, deleteApiAccountKeysKeyIDResponse404, deleteApiAccountKeysKeyIDResponse500, deleteApiAccountKeysKeyIDResponseError, deleteApiAccountKeysKeyIDResponseSuccess, deleteApiAccountResponse, deleteApiAccountResponse200, deleteApiAccountResponse400, deleteApiAccountResponse404, deleteApiAccountResponse500, deleteApiAccountResponseError, deleteApiAccountResponseSuccess, getApiAccount, getApiAccountAvatar, getApiAccountAvatarResponse, getApiAccountAvatarResponse200, getApiAccountAvatarResponse400, getApiAccountAvatarResponse404, getApiAccountAvatarResponse500, getApiAccountAvatarResponseError, getApiAccountAvatarResponseSuccess, getApiAccountKeys, getApiAccountKeysResponse, getApiAccountKeysResponse200, getApiAccountKeysResponse400, getApiAccountKeysResponse404, getApiAccountKeysResponse500, getApiAccountKeysResponseError, getApiAccountKeysResponseSuccess, getApiAccountPermissions, getApiAccountPermissionsResponse, getApiAccountPermissionsResponse200, getApiAccountPermissionsResponse400, getApiAccountPermissionsResponse404, getApiAccountPermissionsResponse500, getApiAccountPermissionsResponseError, getApiAccountPermissionsResponseSuccess, getApiAccountResponse, getApiAccountResponse200, getApiAccountResponse400, getApiAccountResponse401, getApiAccountResponse403, getApiAccountResponse404, getApiAccountResponse500, getApiAccountResponseError, getApiAccountResponseSuccess, getApiOperations, getApiOperationsFilters, getApiOperationsFiltersResponse, getApiOperationsFiltersResponse200, getApiOperationsFiltersResponse400, getApiOperationsFiltersResponse404, getApiOperationsFiltersResponse500, getApiOperationsFiltersResponseError, getApiOperationsFiltersResponseSuccess, getApiOperationsId, getApiOperationsIdResponse, getApiOperationsIdResponse200, getApiOperationsIdResponse400, getApiOperationsIdResponse404, getApiOperationsIdResponse500, getApiOperationsIdResponseError, getApiOperationsIdResponseSuccess, getApiOperationsResponse, getApiOperationsResponse200, getApiOperationsResponse400, getApiOperationsResponse404, getApiOperationsResponse500, getApiOperationsResponseError, getApiOperationsResponseSuccess, getApiUploadLimit, getApiUploadLimitResponse, getApiUploadLimitResponse200, getApiUploadLimitResponse400, getApiUploadLimitResponse404, getApiUploadLimitResponse500, getApiUploadLimitResponseError, getApiUploadLimitResponseSuccess, getDeleteApiAccountKeysKeyIDUrl, getDeleteApiAccountUrl, getGetApiAccountAvatarUrl, getGetApiAccountKeysUrl, getGetApiAccountPermissionsUrl, getGetApiAccountUrl, getGetApiOperationsFiltersUrl, getGetApiOperationsIdUrl, getGetApiOperationsUrl, getGetApiUploadLimitUrl, getPatchApiAccountUrl, getPostApiAccountAvatarUrl, getPostApiAccountKeysUrl, getPostApiAccountPasswordResetConfirmUrl, getPostApiAccountPasswordResetRequestUrl, getPostApiAccountUpdateEmailUrl, getPostApiAccountUpdatePasswordUrl, getPostApiAccountVerifyEmailResendUrl, getPostApiAccountVerifyEmailUrl, getPostApiAuthKeyUrl, getPostApiAuthLoginUrl, getPostApiAuthLogoutUrl, getPostApiAuthOtpDisableUrl, getPostApiAuthOtpGenerateUrl, getPostApiAuthOtpValidateUrl, getPostApiAuthOtpVerifyUrl, getPostApiAuthPingUrl, getPostApiAuthRegisterUrl, patchApiAccount, patchApiAccountResponse, patchApiAccountResponse200, patchApiAccountResponse400, patchApiAccountResponse401, patchApiAccountResponse403, patchApiAccountResponse404, patchApiAccountResponse500, patchApiAccountResponseError, patchApiAccountResponseSuccess, postApiAccountAvatar, postApiAccountAvatarResponse, postApiAccountAvatarResponse200, postApiAccountAvatarResponse204, postApiAccountAvatarResponse400, postApiAccountAvatarResponse404, postApiAccountAvatarResponse500, postApiAccountAvatarResponseError, postApiAccountAvatarResponseSuccess, postApiAccountKeys, postApiAccountKeysResponse, postApiAccountKeysResponse200, postApiAccountKeysResponse400, postApiAccountKeysResponse404, postApiAccountKeysResponse500, postApiAccountKeysResponseError, postApiAccountKeysResponseSuccess, postApiAccountPasswordResetConfirm, postApiAccountPasswordResetConfirmResponse, postApiAccountPasswordResetConfirmResponse200, postApiAccountPasswordResetConfirmResponse400, postApiAccountPasswordResetConfirmResponse404, postApiAccountPasswordResetConfirmResponse500, postApiAccountPasswordResetConfirmResponseError, postApiAccountPasswordResetConfirmResponseSuccess, postApiAccountPasswordResetRequest, postApiAccountPasswordResetRequestResponse, postApiAccountPasswordResetRequestResponse200, postApiAccountPasswordResetRequestResponse400, postApiAccountPasswordResetRequestResponse401, postApiAccountPasswordResetRequestResponse403, postApiAccountPasswordResetRequestResponse404, postApiAccountPasswordResetRequestResponse500, postApiAccountPasswordResetRequestResponseError, postApiAccountPasswordResetRequestResponseSuccess, postApiAccountUpdateEmail, postApiAccountUpdateEmailResponse, postApiAccountUpdateEmailResponse200, postApiAccountUpdateEmailResponse400, postApiAccountUpdateEmailResponse404, postApiAccountUpdateEmailResponse500, postApiAccountUpdateEmailResponseError, postApiAccountUpdateEmailResponseSuccess, postApiAccountUpdatePassword, postApiAccountUpdatePasswordResponse, postApiAccountUpdatePasswordResponse200, postApiAccountUpdatePasswordResponse400, postApiAccountUpdatePasswordResponse404, postApiAccountUpdatePasswordResponse500, postApiAccountUpdatePasswordResponseError, postApiAccountUpdatePasswordResponseSuccess, postApiAccountVerifyEmail, postApiAccountVerifyEmailResend, postApiAccountVerifyEmailResendResponse, postApiAccountVerifyEmailResendResponse200, postApiAccountVerifyEmailResendResponse400, postApiAccountVerifyEmailResendResponse404, postApiAccountVerifyEmailResendResponse500, postApiAccountVerifyEmailResendResponseError, postApiAccountVerifyEmailResendResponseSuccess, postApiAccountVerifyEmailResponse, postApiAccountVerifyEmailResponse200, postApiAccountVerifyEmailResponse400, postApiAccountVerifyEmailResponse404, postApiAccountVerifyEmailResponse500, postApiAccountVerifyEmailResponseError, postApiAccountVerifyEmailResponseSuccess, postApiAuthKey, postApiAuthKeyResponse, postApiAuthKeyResponse200, postApiAuthKeyResponse400, postApiAuthKeyResponse401, postApiAuthKeyResponse403, postApiAuthKeyResponse404, postApiAuthKeyResponse500, postApiAuthKeyResponseError, postApiAuthKeyResponseSuccess, postApiAuthLogin, postApiAuthLoginResponse, postApiAuthLoginResponse200, postApiAuthLoginResponse302, postApiAuthLoginResponse400, postApiAuthLoginResponse401, postApiAuthLoginResponse403, postApiAuthLoginResponse404, postApiAuthLoginResponse500, postApiAuthLoginResponseError, postApiAuthLoginResponseSuccess, postApiAuthLogout, postApiAuthLogoutResponse, postApiAuthLogoutResponse200, postApiAuthLogoutResponse400, postApiAuthLogoutResponse401, postApiAuthLogoutResponse403, postApiAuthLogoutResponse404, postApiAuthLogoutResponse500, postApiAuthLogoutResponseError, postApiAuthLogoutResponseSuccess, postApiAuthOtpDisable, postApiAuthOtpDisableResponse, postApiAuthOtpDisableResponse200, postApiAuthOtpDisableResponse204, postApiAuthOtpDisableResponse400, postApiAuthOtpDisableResponse404, postApiAuthOtpDisableResponse500, postApiAuthOtpDisableResponseError, postApiAuthOtpDisableResponseSuccess, postApiAuthOtpGenerate, postApiAuthOtpGenerateResponse, postApiAuthOtpGenerateResponse200, postApiAuthOtpGenerateResponse400, postApiAuthOtpGenerateResponse401, postApiAuthOtpGenerateResponse403, postApiAuthOtpGenerateResponse404, postApiAuthOtpGenerateResponse500, postApiAuthOtpGenerateResponseError, postApiAuthOtpGenerateResponseSuccess, postApiAuthOtpValidate, postApiAuthOtpValidateResponse, postApiAuthOtpValidateResponse200, postApiAuthOtpValidateResponse302, postApiAuthOtpValidateResponse400, postApiAuthOtpValidateResponse401, postApiAuthOtpValidateResponse403, postApiAuthOtpValidateResponse404, postApiAuthOtpValidateResponse500, postApiAuthOtpValidateResponseError, postApiAuthOtpValidateResponseSuccess, postApiAuthOtpVerify, postApiAuthOtpVerifyResponse, postApiAuthOtpVerifyResponse200, postApiAuthOtpVerifyResponse204, postApiAuthOtpVerifyResponse400, postApiAuthOtpVerifyResponse404, postApiAuthOtpVerifyResponse500, postApiAuthOtpVerifyResponseError, postApiAuthOtpVerifyResponseSuccess, postApiAuthPing, postApiAuthPingResponse, postApiAuthPingResponse200, postApiAuthPingResponse400, postApiAuthPingResponse401, postApiAuthPingResponse403, postApiAuthPingResponse404, postApiAuthPingResponse500, postApiAuthPingResponseError, postApiAuthPingResponseSuccess, postApiAuthRegister, postApiAuthRegisterResponse, postApiAuthRegisterResponse200, postApiAuthRegisterResponse400, postApiAuthRegisterResponse401, postApiAuthRegisterResponse403, postApiAuthRegisterResponse404, postApiAuthRegisterResponse409, postApiAuthRegisterResponse500, postApiAuthRegisterResponseError, postApiAuthRegisterResponseSuccess };
|
|
923
|
-
//# sourceMappingURL=default.d.cts.map
|