@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.
Files changed (49) hide show
  1. package/dist/esm/account/generated/accountAPI.schemas.d.ts +427 -20
  2. package/dist/esm/account/generated/billing.d.ts +688 -0
  3. package/dist/esm/account/generated/billing.js +444 -0
  4. package/dist/esm/account/generated/billing.js.map +1 -0
  5. package/dist/esm/account/generated/default.d.ts +118 -97
  6. package/dist/esm/account/generated/default.js +181 -41
  7. package/dist/esm/account/generated/default.js.map +1 -1
  8. package/dist/esm/account/generated/index.d.ts +3 -3
  9. package/dist/esm/account/generated/index.js +2 -2
  10. package/dist/esm/account/generated/quota.d.ts +35 -0
  11. package/dist/esm/account/generated/quota.js +28 -0
  12. package/dist/esm/account/generated/quota.js.map +1 -0
  13. package/dist/esm/account.d.ts +0 -1
  14. package/dist/esm/account.js.map +1 -1
  15. package/dist/esm/http-utils.d.ts +0 -1
  16. package/dist/esm/http-utils.js.map +1 -1
  17. package/dist/esm/index.d.ts +5 -3
  18. package/dist/esm/index.js +4 -2
  19. package/dist/esm/openapi.d.ts +3 -3
  20. package/dist/esm/openapi.js +2 -2
  21. package/dist/esm/query-utils.d.ts +0 -1
  22. package/dist/esm/types.js.map +1 -1
  23. package/package.json +5 -5
  24. package/dist/cjs/account/generated/accountAPI.schemas.cjs +0 -0
  25. package/dist/cjs/account/generated/accountAPI.schemas.d.cts +0 -239
  26. package/dist/cjs/account/generated/default.cjs +0 -676
  27. package/dist/cjs/account/generated/default.cjs.map +0 -1
  28. package/dist/cjs/account/generated/default.d.cts +0 -923
  29. package/dist/cjs/account/generated/index.cjs +0 -58
  30. package/dist/cjs/account/generated/index.d.cts +0 -3
  31. package/dist/cjs/account.cjs +0 -348
  32. package/dist/cjs/account.cjs.map +0 -1
  33. package/dist/cjs/account.d.cts +0 -200
  34. package/dist/cjs/http-utils.cjs +0 -87
  35. package/dist/cjs/http-utils.cjs.map +0 -1
  36. package/dist/cjs/http-utils.d.cts +0 -54
  37. package/dist/cjs/index.cjs +0 -75
  38. package/dist/cjs/index.d.cts +0 -8
  39. package/dist/cjs/openapi.cjs +0 -58
  40. package/dist/cjs/openapi.d.cts +0 -3
  41. package/dist/cjs/query-utils.cjs +0 -44
  42. package/dist/cjs/query-utils.cjs.map +0 -1
  43. package/dist/cjs/query-utils.d.cts +0 -65
  44. package/dist/cjs/sdk.cjs +0 -20
  45. package/dist/cjs/sdk.cjs.map +0 -1
  46. package/dist/cjs/sdk.d.cts +0 -12
  47. package/dist/cjs/types.cjs +0 -116
  48. package/dist/cjs/types.cjs.map +0 -1
  49. package/dist/cjs/types.d.cts +0 -58
@@ -1,11 +1,6 @@
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.js";
1
+ import { APIKeyCreateRequest, APIKeyListResponse, AccountInfoResponse, AccountPermissionsResponse, CreateAPIKeyResponse, Error, ErrorResponse, GetApiAccountKeysParams, GetApiAccountQuotaHistoryParams, GetApiOperationsParams, LoginRequest, LoginResponse, OTPDisableRequest, OTPGenerateResponse, OTPValidateRequest, OTPVerifyRequest, OperationDetailResponse, OperationFiltersResponseResponse, OperationListItemResponse, PasswordResetRequest, PasswordResetVerifyRequest, PongResponse, PostApiAccountAvatarBody, PostApiAccountVerifyEmailParams, QuotaHistoryResponse, RegisterRequest, ResendVerifyEmailRequest, StringUUIDSchema, UpdateEmailRequest, UpdatePasswordRequest, UpdateProfileRequest, UploadLimitResponse, VerifyEmailRequest } from "./accountAPI.schemas.js";
2
2
 
3
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
4
  type deleteApiAccountResponse200 = {
10
5
  data: void;
11
6
  status: 200;
@@ -30,11 +25,11 @@ type deleteApiAccountResponseError = (deleteApiAccountResponse400 | deleteApiAcc
30
25
  };
31
26
  type deleteApiAccountResponse = (deleteApiAccountResponseSuccess | deleteApiAccountResponseError);
32
27
  declare const getDeleteApiAccountUrl: () => string;
33
- declare const deleteApiAccount: (options?: RequestInit) => Promise<deleteApiAccountResponse>;
34
28
  /**
35
- * Retrieves information about the authenticated user's account.
36
- * @summary Get account information
29
+ * Initiates the process to delete the authenticated user's account.
30
+ * @summary Request account deletion
37
31
  */
32
+ declare const deleteApiAccount: (options?: RequestInit) => Promise<deleteApiAccountResponse>;
38
33
  type getApiAccountResponse200 = {
39
34
  data: AccountInfoResponse;
40
35
  status: 200;
@@ -67,11 +62,11 @@ type getApiAccountResponseError = (getApiAccountResponse400 | getApiAccountRespo
67
62
  };
68
63
  type getApiAccountResponse = (getApiAccountResponseSuccess | getApiAccountResponseError);
69
64
  declare const getGetApiAccountUrl: () => string;
70
- declare const getApiAccount: (options?: RequestInit) => Promise<getApiAccountResponse>;
71
65
  /**
72
- * Updates the authenticated user's profile information. Email cannot be updated through this endpoint.
73
- * @summary Update profile information
66
+ * Retrieves information about the authenticated user's account.
67
+ * @summary Get account information
74
68
  */
69
+ declare const getApiAccount: (options?: RequestInit) => Promise<getApiAccountResponse>;
75
70
  type patchApiAccountResponse200 = {
76
71
  data: void;
77
72
  status: 200;
@@ -104,11 +99,11 @@ type patchApiAccountResponseError = (patchApiAccountResponse400 | patchApiAccoun
104
99
  };
105
100
  type patchApiAccountResponse = (patchApiAccountResponseSuccess | patchApiAccountResponseError);
106
101
  declare const getPatchApiAccountUrl: () => string;
107
- declare const patchApiAccount: (updateProfileRequest: UpdateProfileRequest, options?: RequestInit) => Promise<patchApiAccountResponse>;
108
102
  /**
109
- * Retrieves the authenticated user's profile picture
110
- * @summary Get Avatar
103
+ * Updates the authenticated user's profile information. Email cannot be updated through this endpoint.
104
+ * @summary Update profile information
111
105
  */
106
+ declare const patchApiAccount: (updateProfileRequest: UpdateProfileRequest, options?: RequestInit) => Promise<patchApiAccountResponse>;
112
107
  type getApiAccountAvatarResponse200 = {
113
108
  data: void;
114
109
  status: 200;
@@ -133,11 +128,11 @@ type getApiAccountAvatarResponseError = (getApiAccountAvatarResponse400 | getApi
133
128
  };
134
129
  type getApiAccountAvatarResponse = (getApiAccountAvatarResponseSuccess | getApiAccountAvatarResponseError);
135
130
  declare const getGetApiAccountAvatarUrl: () => string;
136
- declare const getApiAccountAvatar: (options?: RequestInit) => Promise<getApiAccountAvatarResponse>;
137
131
  /**
138
- * Uploads a profile picture/avatar
139
- * @summary Upload Avatar
132
+ * Retrieves the authenticated user's profile picture
133
+ * @summary Get Avatar
140
134
  */
135
+ declare const getApiAccountAvatar: (options?: RequestInit) => Promise<getApiAccountAvatarResponse>;
141
136
  type postApiAccountAvatarResponse200 = {
142
137
  data: ErrorResponse;
143
138
  status: 200;
@@ -166,13 +161,13 @@ type postApiAccountAvatarResponseError = (postApiAccountAvatarResponse400 | post
166
161
  };
167
162
  type postApiAccountAvatarResponse = (postApiAccountAvatarResponseSuccess | postApiAccountAvatarResponseError);
168
163
  declare const getPostApiAccountAvatarUrl: () => string;
169
- declare const postApiAccountAvatar: (postApiAccountAvatarBody: PostApiAccountAvatarBody, options?: RequestInit) => Promise<postApiAccountAvatarResponse>;
170
164
  /**
171
- * Retrieves a list of API keys for the authenticated user.
172
- * @summary List API Keys
165
+ * Uploads a profile picture/avatar
166
+ * @summary Upload Avatar
173
167
  */
168
+ declare const postApiAccountAvatar: (postApiAccountAvatarBody: PostApiAccountAvatarBody, options?: RequestInit) => Promise<postApiAccountAvatarResponse>;
174
169
  type getApiAccountKeysResponse200 = {
175
- data: APIKeyResponseResponse;
170
+ data: APIKeyListResponse;
176
171
  status: 200;
177
172
  };
178
173
  type getApiAccountKeysResponse400 = {
@@ -195,11 +190,11 @@ type getApiAccountKeysResponseError = (getApiAccountKeysResponse400 | getApiAcco
195
190
  };
196
191
  type getApiAccountKeysResponse = (getApiAccountKeysResponseSuccess | getApiAccountKeysResponseError);
197
192
  declare const getGetApiAccountKeysUrl: (params?: GetApiAccountKeysParams) => string;
198
- declare const getApiAccountKeys: (params?: GetApiAccountKeysParams, options?: RequestInit) => Promise<getApiAccountKeysResponse>;
199
193
  /**
200
- * Creates a new API key for the authenticated user.
201
- * @summary Create API Key
194
+ * Retrieves a list of API keys for the authenticated user.
195
+ * @summary List API Keys
202
196
  */
197
+ declare const getApiAccountKeys: (params?: GetApiAccountKeysParams, options?: RequestInit) => Promise<getApiAccountKeysResponse>;
203
198
  type postApiAccountKeysResponse200 = {
204
199
  data: CreateAPIKeyResponse;
205
200
  status: 200;
@@ -224,11 +219,11 @@ type postApiAccountKeysResponseError = (postApiAccountKeysResponse400 | postApiA
224
219
  };
225
220
  type postApiAccountKeysResponse = (postApiAccountKeysResponseSuccess | postApiAccountKeysResponseError);
226
221
  declare const getPostApiAccountKeysUrl: () => string;
227
- declare const postApiAccountKeys: (aPIKeyCreateRequest: APIKeyCreateRequest, options?: RequestInit) => Promise<postApiAccountKeysResponse>;
228
222
  /**
229
- * Deletes a specific API key for the authenticated user.
230
- * @summary Delete API Key
223
+ * Creates a new API key for the authenticated user.
224
+ * @summary Create API Key
231
225
  */
226
+ declare const postApiAccountKeys: (aPIKeyCreateRequest: APIKeyCreateRequest, options?: RequestInit) => Promise<postApiAccountKeysResponse>;
232
227
  type deleteApiAccountKeysKeyIDResponse200 = {
233
228
  data: void;
234
229
  status: 200;
@@ -252,12 +247,12 @@ type deleteApiAccountKeysKeyIDResponseError = (deleteApiAccountKeysKeyIDResponse
252
247
  headers: Headers;
253
248
  };
254
249
  type deleteApiAccountKeysKeyIDResponse = (deleteApiAccountKeysKeyIDResponseSuccess | deleteApiAccountKeysKeyIDResponseError);
255
- declare const getDeleteApiAccountKeysKeyIDUrl: (keyID: Uuid) => string;
256
- declare const deleteApiAccountKeysKeyID: (keyID: Uuid, options?: RequestInit) => Promise<deleteApiAccountKeysKeyIDResponse>;
250
+ declare const getDeleteApiAccountKeysKeyIDUrl: (keyID: StringUUIDSchema) => string;
257
251
  /**
258
- * Resets the user's password using a token received via email.
259
- * @summary Confirm password reset
252
+ * Deletes a specific API key for the authenticated user.
253
+ * @summary Delete API Key
260
254
  */
255
+ declare const deleteApiAccountKeysKeyID: (keyID: StringUUIDSchema, options?: RequestInit) => Promise<deleteApiAccountKeysKeyIDResponse>;
261
256
  type postApiAccountPasswordResetConfirmResponse200 = {
262
257
  data: void;
263
258
  status: 200;
@@ -282,11 +277,11 @@ type postApiAccountPasswordResetConfirmResponseError = (postApiAccountPasswordRe
282
277
  };
283
278
  type postApiAccountPasswordResetConfirmResponse = (postApiAccountPasswordResetConfirmResponseSuccess | postApiAccountPasswordResetConfirmResponseError);
284
279
  declare const getPostApiAccountPasswordResetConfirmUrl: () => string;
285
- declare const postApiAccountPasswordResetConfirm: (passwordResetVerifyRequest: PasswordResetVerifyRequest, options?: RequestInit) => Promise<postApiAccountPasswordResetConfirmResponse>;
286
280
  /**
287
- * Initiates the password reset process by sending a reset link to the user's email.
288
- * @summary Request password reset
281
+ * Resets the user's password using a token received via email.
282
+ * @summary Confirm password reset
289
283
  */
284
+ declare const postApiAccountPasswordResetConfirm: (passwordResetVerifyRequest: PasswordResetVerifyRequest, options?: RequestInit) => Promise<postApiAccountPasswordResetConfirmResponse>;
290
285
  type postApiAccountPasswordResetRequestResponse200 = {
291
286
  data: void;
292
287
  status: 200;
@@ -319,11 +314,11 @@ type postApiAccountPasswordResetRequestResponseError = (postApiAccountPasswordRe
319
314
  };
320
315
  type postApiAccountPasswordResetRequestResponse = (postApiAccountPasswordResetRequestResponseSuccess | postApiAccountPasswordResetRequestResponseError);
321
316
  declare const getPostApiAccountPasswordResetRequestUrl: () => string;
322
- declare const postApiAccountPasswordResetRequest: (passwordResetRequest: PasswordResetRequest, options?: RequestInit) => Promise<postApiAccountPasswordResetRequestResponse>;
323
317
  /**
324
- * Retrieves the access control policies and model for the authenticated user.
325
- * @summary Get account permissions
318
+ * Initiates the password reset process by sending a reset link to the user's email.
319
+ * @summary Request password reset
326
320
  */
321
+ declare const postApiAccountPasswordResetRequest: (passwordResetRequest: PasswordResetRequest, options?: RequestInit) => Promise<postApiAccountPasswordResetRequestResponse>;
327
322
  type getApiAccountPermissionsResponse200 = {
328
323
  data: AccountPermissionsResponse;
329
324
  status: 200;
@@ -348,11 +343,40 @@ type getApiAccountPermissionsResponseError = (getApiAccountPermissionsResponse40
348
343
  };
349
344
  type getApiAccountPermissionsResponse = (getApiAccountPermissionsResponseSuccess | getApiAccountPermissionsResponseError);
350
345
  declare const getGetApiAccountPermissionsUrl: () => string;
346
+ /**
347
+ * Retrieves the access control policies and model for the authenticated user.
348
+ * @summary Get account permissions
349
+ */
351
350
  declare const getApiAccountPermissions: (options?: RequestInit) => Promise<getApiAccountPermissionsResponse>;
351
+ type getApiAccountQuotaHistoryResponse200 = {
352
+ data: QuotaHistoryResponse;
353
+ status: 200;
354
+ };
355
+ type getApiAccountQuotaHistoryResponse400 = {
356
+ data: ErrorResponse;
357
+ status: 400;
358
+ };
359
+ type getApiAccountQuotaHistoryResponse404 = {
360
+ data: ErrorResponse;
361
+ status: 404;
362
+ };
363
+ type getApiAccountQuotaHistoryResponse500 = {
364
+ data: ErrorResponse;
365
+ status: 500;
366
+ };
367
+ type getApiAccountQuotaHistoryResponseSuccess = (getApiAccountQuotaHistoryResponse200) & {
368
+ headers: Headers;
369
+ };
370
+ type getApiAccountQuotaHistoryResponseError = (getApiAccountQuotaHistoryResponse400 | getApiAccountQuotaHistoryResponse404 | getApiAccountQuotaHistoryResponse500) & {
371
+ headers: Headers;
372
+ };
373
+ type getApiAccountQuotaHistoryResponse = (getApiAccountQuotaHistoryResponseSuccess | getApiAccountQuotaHistoryResponseError);
374
+ declare const getGetApiAccountQuotaHistoryUrl: (params?: GetApiAccountQuotaHistoryParams) => string;
352
375
  /**
353
- * Updates the authenticated user's email address.
354
- * @summary Update email address
376
+ * Retrieves historical quota usage data for charting and analytics.
377
+ * @summary Get quota usage history
355
378
  */
379
+ declare const getApiAccountQuotaHistory: (params?: GetApiAccountQuotaHistoryParams, options?: RequestInit) => Promise<getApiAccountQuotaHistoryResponse>;
356
380
  type postApiAccountUpdateEmailResponse200 = {
357
381
  data: void;
358
382
  status: 200;
@@ -377,11 +401,11 @@ type postApiAccountUpdateEmailResponseError = (postApiAccountUpdateEmailResponse
377
401
  };
378
402
  type postApiAccountUpdateEmailResponse = (postApiAccountUpdateEmailResponseSuccess | postApiAccountUpdateEmailResponseError);
379
403
  declare const getPostApiAccountUpdateEmailUrl: () => string;
380
- declare const postApiAccountUpdateEmail: (updateEmailRequest: UpdateEmailRequest, options?: RequestInit) => Promise<postApiAccountUpdateEmailResponse>;
381
404
  /**
382
- * Updates the authenticated user's password.
383
- * @summary Update password
405
+ * Updates the authenticated user's email address.
406
+ * @summary Update email address
384
407
  */
408
+ declare const postApiAccountUpdateEmail: (updateEmailRequest: UpdateEmailRequest, options?: RequestInit) => Promise<postApiAccountUpdateEmailResponse>;
385
409
  type postApiAccountUpdatePasswordResponse200 = {
386
410
  data: void;
387
411
  status: 200;
@@ -406,11 +430,11 @@ type postApiAccountUpdatePasswordResponseError = (postApiAccountUpdatePasswordRe
406
430
  };
407
431
  type postApiAccountUpdatePasswordResponse = (postApiAccountUpdatePasswordResponseSuccess | postApiAccountUpdatePasswordResponseError);
408
432
  declare const getPostApiAccountUpdatePasswordUrl: () => string;
409
- declare const postApiAccountUpdatePassword: (updatePasswordRequest: UpdatePasswordRequest, options?: RequestInit) => Promise<postApiAccountUpdatePasswordResponse>;
410
433
  /**
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
434
+ * Updates the authenticated user's password.
435
+ * @summary Update password
413
436
  */
437
+ declare const postApiAccountUpdatePassword: (updatePasswordRequest: UpdatePasswordRequest, options?: RequestInit) => Promise<postApiAccountUpdatePasswordResponse>;
414
438
  type postApiAccountVerifyEmailResponse200 = {
415
439
  data: void;
416
440
  status: 200;
@@ -435,11 +459,11 @@ type postApiAccountVerifyEmailResponseError = (postApiAccountVerifyEmailResponse
435
459
  };
436
460
  type postApiAccountVerifyEmailResponse = (postApiAccountVerifyEmailResponseSuccess | postApiAccountVerifyEmailResponseError);
437
461
  declare const getPostApiAccountVerifyEmailUrl: (params?: PostApiAccountVerifyEmailParams) => string;
438
- declare const postApiAccountVerifyEmail: (verifyEmailRequest: VerifyEmailRequest, params?: PostApiAccountVerifyEmailParams, options?: RequestInit) => Promise<postApiAccountVerifyEmailResponse>;
439
462
  /**
440
- * Resends the email verification link to the user's email address.
441
- * @summary Resend email verification
463
+ * Verifies a user's email address using a token sent via email. Optionally auto-login user if they don't have 2FA enabled.
464
+ * @summary Verify email address
442
465
  */
466
+ declare const postApiAccountVerifyEmail: (verifyEmailRequest: VerifyEmailRequest, params?: PostApiAccountVerifyEmailParams, options?: RequestInit) => Promise<postApiAccountVerifyEmailResponse>;
443
467
  type postApiAccountVerifyEmailResendResponse200 = {
444
468
  data: void;
445
469
  status: 200;
@@ -464,11 +488,11 @@ type postApiAccountVerifyEmailResendResponseError = (postApiAccountVerifyEmailRe
464
488
  };
465
489
  type postApiAccountVerifyEmailResendResponse = (postApiAccountVerifyEmailResendResponseSuccess | postApiAccountVerifyEmailResendResponseError);
466
490
  declare const getPostApiAccountVerifyEmailResendUrl: () => string;
467
- declare const postApiAccountVerifyEmailResend: (resendVerifyEmailRequest: ResendVerifyEmailRequest, options?: RequestInit) => Promise<postApiAccountVerifyEmailResendResponse>;
468
491
  /**
469
- * Exchanges an API key for a JWT.
470
- * @summary Authenticate with API Key
492
+ * Resends the email verification link to the user's email address.
493
+ * @summary Resend email verification
471
494
  */
495
+ declare const postApiAccountVerifyEmailResend: (resendVerifyEmailRequest: ResendVerifyEmailRequest, options?: RequestInit) => Promise<postApiAccountVerifyEmailResendResponse>;
472
496
  type postApiAuthKeyResponse200 = {
473
497
  data: LoginResponse;
474
498
  status: 200;
@@ -501,11 +525,11 @@ type postApiAuthKeyResponseError = (postApiAuthKeyResponse400 | postApiAuthKeyRe
501
525
  };
502
526
  type postApiAuthKeyResponse = (postApiAuthKeyResponseSuccess | postApiAuthKeyResponseError);
503
527
  declare const getPostApiAuthKeyUrl: () => string;
504
- declare const postApiAuthKey: (options?: RequestInit) => Promise<postApiAuthKeyResponse>;
505
528
  /**
506
- * Authenticates a user using email and password.
507
- * @summary Login with email and password
529
+ * Exchanges an API key for a JWT.
530
+ * @summary Authenticate with API Key
508
531
  */
532
+ declare const postApiAuthKey: (options?: RequestInit) => Promise<postApiAuthKeyResponse>;
509
533
  type postApiAuthLoginResponse200 = {
510
534
  data: LoginResponse;
511
535
  status: 200;
@@ -542,11 +566,11 @@ type postApiAuthLoginResponseError = (postApiAuthLoginResponse302 | postApiAuthL
542
566
  };
543
567
  type postApiAuthLoginResponse = (postApiAuthLoginResponseSuccess | postApiAuthLoginResponseError);
544
568
  declare const getPostApiAuthLoginUrl: () => string;
545
- declare const postApiAuthLogin: (loginRequest: LoginRequest, options?: RequestInit) => Promise<postApiAuthLoginResponse>;
546
569
  /**
547
- * Logs out the current user by clearing the authentication cookie.
548
- * @summary Logout
570
+ * Authenticates a user using email and password.
571
+ * @summary Login with email and password
549
572
  */
573
+ declare const postApiAuthLogin: (loginRequest: LoginRequest, options?: RequestInit) => Promise<postApiAuthLoginResponse>;
550
574
  type postApiAuthLogoutResponse200 = {
551
575
  data: void;
552
576
  status: 200;
@@ -579,11 +603,11 @@ type postApiAuthLogoutResponseError = (postApiAuthLogoutResponse400 | postApiAut
579
603
  };
580
604
  type postApiAuthLogoutResponse = (postApiAuthLogoutResponseSuccess | postApiAuthLogoutResponseError);
581
605
  declare const getPostApiAuthLogoutUrl: () => string;
582
- declare const postApiAuthLogout: (options?: RequestInit) => Promise<postApiAuthLogoutResponse>;
583
606
  /**
584
- * Disables 2FA for the authenticated user.
585
- * @summary Disable OTP
607
+ * Logs out the current user by clearing the authentication cookie.
608
+ * @summary Logout
586
609
  */
610
+ declare const postApiAuthLogout: (options?: RequestInit) => Promise<postApiAuthLogoutResponse>;
587
611
  type postApiAuthOtpDisableResponse200 = {
588
612
  data: ErrorResponse;
589
613
  status: 200;
@@ -612,11 +636,11 @@ type postApiAuthOtpDisableResponseError = (postApiAuthOtpDisableResponse400 | po
612
636
  };
613
637
  type postApiAuthOtpDisableResponse = (postApiAuthOtpDisableResponseSuccess | postApiAuthOtpDisableResponseError);
614
638
  declare const getPostApiAuthOtpDisableUrl: () => string;
615
- declare const postApiAuthOtpDisable: (oTPDisableRequest: OTPDisableRequest, options?: RequestInit) => Promise<postApiAuthOtpDisableResponse>;
616
639
  /**
617
- * Generates a new OTP secret for the authenticated user.
618
- * @summary Generate OTP secret
640
+ * Disables 2FA for the authenticated user.
641
+ * @summary Disable OTP
619
642
  */
643
+ declare const postApiAuthOtpDisable: (oTPDisableRequest: OTPDisableRequest, options?: RequestInit) => Promise<postApiAuthOtpDisableResponse>;
620
644
  type postApiAuthOtpGenerateResponse200 = {
621
645
  data: OTPGenerateResponse;
622
646
  status: 200;
@@ -649,15 +673,11 @@ type postApiAuthOtpGenerateResponseError = (postApiAuthOtpGenerateResponse400 |
649
673
  };
650
674
  type postApiAuthOtpGenerateResponse = (postApiAuthOtpGenerateResponseSuccess | postApiAuthOtpGenerateResponseError);
651
675
  declare const getPostApiAuthOtpGenerateUrl: () => string;
652
- declare const postApiAuthOtpGenerate: (options?: RequestInit) => Promise<postApiAuthOtpGenerateResponse>;
653
676
  /**
654
- * Validates an OTP code to complete 2FA login.
655
- * @summary Validate OTP code
677
+ * Generates a new OTP secret for the authenticated user.
678
+ * @summary Generate OTP secret
656
679
  */
657
- type postApiAuthOtpValidateResponse200 = {
658
- data: ErrorResponse;
659
- status: 200;
660
- };
680
+ declare const postApiAuthOtpGenerate: (options?: RequestInit) => Promise<postApiAuthOtpGenerateResponse>;
661
681
  type postApiAuthOtpValidateResponse302 = {
662
682
  data: void;
663
683
  status: 302;
@@ -682,19 +702,16 @@ type postApiAuthOtpValidateResponse500 = {
682
702
  data: ErrorResponse;
683
703
  status: 500;
684
704
  };
685
- type postApiAuthOtpValidateResponseSuccess = (postApiAuthOtpValidateResponse200) & {
686
- headers: Headers;
687
- };
688
705
  type postApiAuthOtpValidateResponseError = (postApiAuthOtpValidateResponse302 | postApiAuthOtpValidateResponse400 | postApiAuthOtpValidateResponse401 | postApiAuthOtpValidateResponse403 | postApiAuthOtpValidateResponse404 | postApiAuthOtpValidateResponse500) & {
689
706
  headers: Headers;
690
707
  };
691
- type postApiAuthOtpValidateResponse = (postApiAuthOtpValidateResponseSuccess | postApiAuthOtpValidateResponseError);
708
+ type postApiAuthOtpValidateResponse = (postApiAuthOtpValidateResponseError);
692
709
  declare const getPostApiAuthOtpValidateUrl: () => string;
693
- declare const postApiAuthOtpValidate: (oTPValidateRequest: OTPValidateRequest, options?: RequestInit) => Promise<postApiAuthOtpValidateResponse>;
694
710
  /**
695
- * Verifies an OTP code and enables 2FA for the authenticated user.
696
- * @summary Verify and enable OTP
711
+ * Validates an OTP code to complete 2FA login.
712
+ * @summary Validate OTP code
697
713
  */
714
+ declare const postApiAuthOtpValidate: (oTPValidateRequest: OTPValidateRequest, options?: RequestInit) => Promise<postApiAuthOtpValidateResponse>;
698
715
  type postApiAuthOtpVerifyResponse200 = {
699
716
  data: ErrorResponse;
700
717
  status: 200;
@@ -723,11 +740,11 @@ type postApiAuthOtpVerifyResponseError = (postApiAuthOtpVerifyResponse400 | post
723
740
  };
724
741
  type postApiAuthOtpVerifyResponse = (postApiAuthOtpVerifyResponseSuccess | postApiAuthOtpVerifyResponseError);
725
742
  declare const getPostApiAuthOtpVerifyUrl: () => string;
726
- declare const postApiAuthOtpVerify: (oTPVerifyRequest: OTPVerifyRequest, options?: RequestInit) => Promise<postApiAuthOtpVerifyResponse>;
727
743
  /**
728
- * Checks if the user is authenticated and returns a pong response.
729
- * @summary Ping authenticated endpoint
744
+ * Verifies an OTP code and enables 2FA for the authenticated user.
745
+ * @summary Verify and enable OTP
730
746
  */
747
+ declare const postApiAuthOtpVerify: (oTPVerifyRequest: OTPVerifyRequest, options?: RequestInit) => Promise<postApiAuthOtpVerifyResponse>;
731
748
  type postApiAuthPingResponse200 = {
732
749
  data: PongResponse;
733
750
  status: 200;
@@ -760,11 +777,11 @@ type postApiAuthPingResponseError = (postApiAuthPingResponse400 | postApiAuthPin
760
777
  };
761
778
  type postApiAuthPingResponse = (postApiAuthPingResponseSuccess | postApiAuthPingResponseError);
762
779
  declare const getPostApiAuthPingUrl: () => string;
763
- declare const postApiAuthPing: (options?: RequestInit) => Promise<postApiAuthPingResponse>;
764
780
  /**
765
- * Creates a new user account with email and password.
766
- * @summary Register a new account
781
+ * Checks if the user is authenticated and returns a pong response.
782
+ * @summary Ping authenticated endpoint
767
783
  */
784
+ declare const postApiAuthPing: (options?: RequestInit) => Promise<postApiAuthPingResponse>;
768
785
  type postApiAuthRegisterResponse200 = {
769
786
  data: void;
770
787
  status: 200;
@@ -801,11 +818,11 @@ type postApiAuthRegisterResponseError = (postApiAuthRegisterResponse400 | postAp
801
818
  };
802
819
  type postApiAuthRegisterResponse = (postApiAuthRegisterResponseSuccess | postApiAuthRegisterResponseError);
803
820
  declare const getPostApiAuthRegisterUrl: () => string;
804
- declare const postApiAuthRegister: (registerRequest: RegisterRequest, options?: RequestInit) => Promise<postApiAuthRegisterResponse>;
805
821
  /**
806
- * Retrieve a list of operations, with filtering, searching, and pagination support.
807
- * @summary List Operations
822
+ * Creates a new user account with email and password.
823
+ * @summary Register a new account
808
824
  */
825
+ declare const postApiAuthRegister: (registerRequest: RegisterRequest, options?: RequestInit) => Promise<postApiAuthRegisterResponse>;
809
826
  type getApiOperationsResponse200 = {
810
827
  data: OperationListItemResponse;
811
828
  status: 200;
@@ -830,11 +847,11 @@ type getApiOperationsResponseError = (getApiOperationsResponse400 | getApiOperat
830
847
  };
831
848
  type getApiOperationsResponse = (getApiOperationsResponseSuccess | getApiOperationsResponseError);
832
849
  declare const getGetApiOperationsUrl: (params?: GetApiOperationsParams) => string;
833
- declare const getApiOperations: (params?: GetApiOperationsParams, options?: RequestInit) => Promise<getApiOperationsResponse>;
834
850
  /**
835
- * Retrieve detailed information for a specific operation by its ID.
836
- * @summary Get Operation Details
851
+ * Retrieve a list of operations, with filtering, searching, and pagination support.
852
+ * @summary List Operations
837
853
  */
854
+ declare const getApiOperations: (params?: GetApiOperationsParams, options?: RequestInit) => Promise<getApiOperationsResponse>;
838
855
  type getApiOperationsIdResponse200 = {
839
856
  data: OperationDetailResponse;
840
857
  status: 200;
@@ -859,11 +876,11 @@ type getApiOperationsIdResponseError = (getApiOperationsIdResponse400 | getApiOp
859
876
  };
860
877
  type getApiOperationsIdResponse = (getApiOperationsIdResponseSuccess | getApiOperationsIdResponseError);
861
878
  declare const getGetApiOperationsIdUrl: (id: number) => string;
862
- declare const getApiOperationsId: (id: number, options?: RequestInit) => Promise<getApiOperationsIdResponse>;
863
879
  /**
864
- * Retrieves distinct filter values for operations (statuses, operations, protocols)
865
- * @summary Get Operation Filters
880
+ * Retrieve detailed information for a specific operation by its ID.
881
+ * @summary Get Operation Details
866
882
  */
883
+ declare const getApiOperationsId: (id: number, options?: RequestInit) => Promise<getApiOperationsIdResponse>;
867
884
  type getApiOperationsFiltersResponse200 = {
868
885
  data: OperationFiltersResponseResponse;
869
886
  status: 200;
@@ -888,11 +905,11 @@ type getApiOperationsFiltersResponseError = (getApiOperationsFiltersResponse400
888
905
  };
889
906
  type getApiOperationsFiltersResponse = (getApiOperationsFiltersResponseSuccess | getApiOperationsFiltersResponseError);
890
907
  declare const getGetApiOperationsFiltersUrl: () => string;
891
- declare const getApiOperationsFilters: (options?: RequestInit) => Promise<getApiOperationsFiltersResponse>;
892
908
  /**
893
- * Retrieves the maximum allowed upload size.
894
- * @summary Get upload limit
909
+ * Retrieves distinct filter values for operations (statuses, operations, protocols)
910
+ * @summary Get Operation Filters
895
911
  */
912
+ declare const getApiOperationsFilters: (options?: RequestInit) => Promise<getApiOperationsFiltersResponse>;
896
913
  type getApiUploadLimitResponse200 = {
897
914
  data: UploadLimitResponse;
898
915
  status: 200;
@@ -917,7 +934,11 @@ type getApiUploadLimitResponseError = (getApiUploadLimitResponse400 | getApiUplo
917
934
  };
918
935
  type getApiUploadLimitResponse = (getApiUploadLimitResponseSuccess | getApiUploadLimitResponseError);
919
936
  declare const getGetApiUploadLimitUrl: () => string;
937
+ /**
938
+ * Retrieves the maximum allowed upload size.
939
+ * @summary Get upload limit
940
+ */
920
941
  declare const getApiUploadLimit: (options?: RequestInit) => Promise<getApiUploadLimitResponse>;
921
942
  //#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 };
943
+ 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, getApiAccountQuotaHistory, getApiAccountQuotaHistoryResponse, getApiAccountQuotaHistoryResponse200, getApiAccountQuotaHistoryResponse400, getApiAccountQuotaHistoryResponse404, getApiAccountQuotaHistoryResponse500, getApiAccountQuotaHistoryResponseError, getApiAccountQuotaHistoryResponseSuccess, 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, getGetApiAccountQuotaHistoryUrl, 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, postApiAuthOtpValidateResponse302, postApiAuthOtpValidateResponse400, postApiAuthOtpValidateResponse401, postApiAuthOtpValidateResponse403, postApiAuthOtpValidateResponse404, postApiAuthOtpValidateResponse500, postApiAuthOtpValidateResponseError, 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
944
  //# sourceMappingURL=default.d.ts.map