@ayasofyazilim/saas 0.0.9 → 0.0.11

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 (57) hide show
  1. package/AccountService/AccountServiceClient.ts +65 -58
  2. package/AccountService/core/ApiError.ts +15 -19
  3. package/AccountService/core/ApiRequestOptions.ts +12 -16
  4. package/AccountService/core/ApiResult.ts +7 -11
  5. package/AccountService/core/BaseHttpRequest.ts +3 -7
  6. package/AccountService/core/CancelablePromise.ts +118 -123
  7. package/AccountService/core/FetchHttpRequest.ts +13 -17
  8. package/AccountService/core/OpenAPI.ts +48 -24
  9. package/AccountService/core/request.ts +280 -261
  10. package/AccountService/index.ts +9 -122
  11. package/AccountService/schemas.gen.ts +2331 -0
  12. package/AccountService/services.gen.ts +1453 -0
  13. package/AccountService/types.gen.ts +3176 -0
  14. package/AdministrationService/AdministrationServiceClient.ts +74 -67
  15. package/AdministrationService/core/ApiError.ts +15 -19
  16. package/AdministrationService/core/ApiRequestOptions.ts +12 -16
  17. package/AdministrationService/core/ApiResult.ts +7 -11
  18. package/AdministrationService/core/BaseHttpRequest.ts +3 -7
  19. package/AdministrationService/core/CancelablePromise.ts +118 -123
  20. package/AdministrationService/core/FetchHttpRequest.ts +13 -17
  21. package/AdministrationService/core/OpenAPI.ts +48 -24
  22. package/AdministrationService/core/request.ts +280 -261
  23. package/AdministrationService/index.ts +9 -118
  24. package/AdministrationService/schemas.gen.ts +2307 -0
  25. package/AdministrationService/services.gen.ts +1333 -0
  26. package/AdministrationService/types.gen.ts +2726 -0
  27. package/IdentityService/IdentityServiceClient.ts +77 -70
  28. package/IdentityService/core/ApiError.ts +15 -19
  29. package/IdentityService/core/ApiRequestOptions.ts +12 -16
  30. package/IdentityService/core/ApiResult.ts +7 -11
  31. package/IdentityService/core/BaseHttpRequest.ts +3 -7
  32. package/IdentityService/core/CancelablePromise.ts +118 -123
  33. package/IdentityService/core/FetchHttpRequest.ts +13 -17
  34. package/IdentityService/core/OpenAPI.ts +48 -24
  35. package/IdentityService/core/request.ts +280 -261
  36. package/IdentityService/index.ts +9 -133
  37. package/IdentityService/schemas.gen.ts +3170 -0
  38. package/IdentityService/services.gen.ts +2864 -0
  39. package/IdentityService/types.gen.ts +5342 -0
  40. package/ProjectService/ProjectServiceClient.ts +0 -3
  41. package/ProjectService/schemas.gen.ts +188 -109
  42. package/ProjectService/services.gen.ts +1 -48
  43. package/ProjectService/types.gen.ts +74 -187
  44. package/SaasService/SaasServiceClient.ts +65 -0
  45. package/SaasService/core/ApiError.ts +21 -0
  46. package/SaasService/core/ApiRequestOptions.ts +13 -0
  47. package/SaasService/core/ApiResult.ts +7 -0
  48. package/SaasService/core/BaseHttpRequest.ts +10 -0
  49. package/SaasService/core/CancelablePromise.ts +126 -0
  50. package/SaasService/core/FetchHttpRequest.ts +22 -0
  51. package/SaasService/core/OpenAPI.ts +56 -0
  52. package/SaasService/core/request.ts +341 -0
  53. package/SaasService/index.ts +9 -0
  54. package/SaasService/schemas.gen.ts +2148 -0
  55. package/SaasService/services.gen.ts +1326 -0
  56. package/SaasService/types.gen.ts +2735 -0
  57. package/package.json +9 -12
@@ -0,0 +1,3176 @@
1
+ // This file is auto-generated by @hey-api/openapi-ts
2
+
3
+ export type Volo_Abp_Account_AccountExternalProviderSettingsDto = {
4
+ settings?: Array<Volo_Abp_Account_ExternalProviders_ExternalProviderSettings> | null;
5
+ };
6
+
7
+ export type Volo_Abp_Account_AccountRecaptchaSettingsDto = {
8
+ useCaptchaOnLogin?: boolean;
9
+ useCaptchaOnRegistration?: boolean;
10
+ verifyBaseUrl?: string | null;
11
+ siteKey?: string | null;
12
+ siteSecret?: string | null;
13
+ version?: number;
14
+ score?: number;
15
+ };
16
+
17
+ export type Volo_Abp_Account_AccountSettingsDto = {
18
+ isSelfRegistrationEnabled?: boolean;
19
+ enableLocalLogin?: boolean;
20
+ };
21
+
22
+ export type Volo_Abp_Account_AccountTwoFactorSettingsDto = {
23
+ twoFactorBehaviour?: Volo_Abp_Identity_Features_IdentityProTwoFactorBehaviour;
24
+ isRememberBrowserEnabled?: boolean;
25
+ usersCanChange?: boolean;
26
+ };
27
+
28
+ export type Volo_Abp_Account_AuthenticatorInfoDto = {
29
+ key?: string | null;
30
+ uri?: string | null;
31
+ };
32
+
33
+ export type Volo_Abp_Account_ChangePasswordInput = {
34
+ currentPassword?: string | null;
35
+ newPassword: string;
36
+ };
37
+
38
+ export type Volo_Abp_Account_ConfirmEmailInput = {
39
+ userId: string;
40
+ token: string;
41
+ };
42
+
43
+ export type Volo_Abp_Account_ConfirmPhoneNumberInput = {
44
+ userId: string;
45
+ token: string;
46
+ };
47
+
48
+ export type Volo_Abp_Account_DelegateNewUserInput = {
49
+ targetUserId?: string;
50
+ startTime: string;
51
+ endTime: string;
52
+ };
53
+
54
+ export type Volo_Abp_Account_ExternalProviders_ExternalProviderDto = {
55
+ providers?: Array<Volo_Abp_Account_ExternalProviders_ExternalProviderItemDto> | null;
56
+ };
57
+
58
+ export type Volo_Abp_Account_ExternalProviders_ExternalProviderItemDto = {
59
+ name?: string | null;
60
+ enabled?: boolean;
61
+ properties?: Array<Volo_Abp_Account_ExternalProviders_ExternalProviderSettingsProperty> | null;
62
+ };
63
+
64
+ export type Volo_Abp_Account_ExternalProviders_ExternalProviderItemWithSecretDto = {
65
+ success?: boolean;
66
+ name?: string | null;
67
+ enabled?: boolean;
68
+ properties?: Array<Volo_Abp_Account_ExternalProviders_ExternalProviderSettingsProperty> | null;
69
+ secretProperties?: Array<Volo_Abp_Account_ExternalProviders_ExternalProviderSettingsProperty> | null;
70
+ };
71
+
72
+ export type Volo_Abp_Account_ExternalProviders_ExternalProviderSettings = {
73
+ name?: string | null;
74
+ enabled?: boolean;
75
+ properties?: Array<Volo_Abp_Account_ExternalProviders_ExternalProviderSettingsProperty> | null;
76
+ secretProperties?: Array<Volo_Abp_Account_ExternalProviders_ExternalProviderSettingsProperty> | null;
77
+ };
78
+
79
+ export type Volo_Abp_Account_ExternalProviders_ExternalProviderSettingsProperty = {
80
+ name?: string | null;
81
+ value?: string | null;
82
+ };
83
+
84
+ export type Volo_Abp_Account_IdentityUserConfirmationStateDto = {
85
+ emailConfirmed?: boolean;
86
+ phoneNumberConfirmed?: boolean;
87
+ };
88
+
89
+ export type Volo_Abp_Account_IsLinkedInput = {
90
+ userId?: string;
91
+ tenantId?: string | null;
92
+ };
93
+
94
+ export type Volo_Abp_Account_LinkUserDto = {
95
+ targetUserId?: string;
96
+ targetUserName?: string | null;
97
+ targetTenantId?: string | null;
98
+ targetTenantName?: string | null;
99
+ directlyLinked?: boolean;
100
+ };
101
+
102
+ export type Volo_Abp_Account_LinkUserInput = {
103
+ userId?: string;
104
+ tenantId?: string | null;
105
+ token: string;
106
+ };
107
+
108
+ export type Volo_Abp_Account_ProfileDto = {
109
+ readonly extraProperties?: {
110
+ [key: string]: unknown;
111
+ } | null;
112
+ userName?: string | null;
113
+ email?: string | null;
114
+ emailConfirmed?: boolean;
115
+ name?: string | null;
116
+ surname?: string | null;
117
+ phoneNumber?: string | null;
118
+ phoneNumberConfirmed?: boolean;
119
+ isExternal?: boolean;
120
+ hasPassword?: boolean;
121
+ supportsMultipleTimezone?: boolean;
122
+ timezone?: string | null;
123
+ concurrencyStamp?: string | null;
124
+ };
125
+
126
+ export type Volo_Abp_Account_ProfilePictureSourceDto = {
127
+ type?: Volo_Abp_Account_ProfilePictureType;
128
+ source?: string | null;
129
+ fileContent?: string | null;
130
+ };
131
+
132
+ export type Volo_Abp_Account_ProfilePictureType = 0 | 1 | 2;
133
+
134
+ export type Volo_Abp_Account_Public_Web_Areas_Account_Controllers_Models_AbpLoginResult = {
135
+ result?: Volo_Abp_Account_Public_Web_Areas_Account_Controllers_Models_LoginResultType;
136
+ readonly description?: string | null;
137
+ };
138
+
139
+ export type Volo_Abp_Account_Public_Web_Areas_Account_Controllers_Models_LinkUserLoginInfo = {
140
+ linkUserId: string;
141
+ linkTenantId?: string | null;
142
+ };
143
+
144
+ export type Volo_Abp_Account_Public_Web_Areas_Account_Controllers_Models_LoginResultType = 1 | 2 | 3 | 4 | 5 | 6;
145
+
146
+ export type Volo_Abp_Account_Public_Web_Areas_Account_Controllers_Models_UserLoginInfo = {
147
+ userNameOrEmailAddress: string;
148
+ password: string;
149
+ rememberMe?: boolean;
150
+ tenanId?: string | null;
151
+ };
152
+
153
+ export type Volo_Abp_Account_RegisterDto = {
154
+ readonly extraProperties?: {
155
+ [key: string]: unknown;
156
+ } | null;
157
+ userName: string;
158
+ emailAddress: string;
159
+ password: string;
160
+ appName: string;
161
+ returnUrl?: string | null;
162
+ returnUrlHash?: string | null;
163
+ captchaResponse?: string | null;
164
+ };
165
+
166
+ export type Volo_Abp_Account_ResetPasswordDto = {
167
+ userId?: string;
168
+ resetToken: string;
169
+ password: string;
170
+ };
171
+
172
+ export type Volo_Abp_Account_SendEmailConfirmationTokenDto = {
173
+ appName: string;
174
+ userId: string;
175
+ returnUrl?: string | null;
176
+ returnUrlHash?: string | null;
177
+ };
178
+
179
+ export type Volo_Abp_Account_SendPasswordResetCodeDto = {
180
+ email: string;
181
+ appName: string;
182
+ returnUrl?: string | null;
183
+ returnUrlHash?: string | null;
184
+ };
185
+
186
+ export type Volo_Abp_Account_SendPhoneNumberConfirmationTokenDto = {
187
+ userId: string;
188
+ phoneNumber?: string | null;
189
+ };
190
+
191
+ export type Volo_Abp_Account_SendTwoFactorCodeInput = {
192
+ userId: string;
193
+ provider: string;
194
+ token: string;
195
+ };
196
+
197
+ export type Volo_Abp_Account_UnLinkUserInput = {
198
+ userId?: string;
199
+ tenantId?: string | null;
200
+ };
201
+
202
+ export type Volo_Abp_Account_UpdateExternalProviderDto = {
203
+ name?: string | null;
204
+ enabled?: boolean;
205
+ properties?: Array<Volo_Abp_Account_ExternalProviders_ExternalProviderSettingsProperty> | null;
206
+ secretProperties?: Array<Volo_Abp_Account_ExternalProviders_ExternalProviderSettingsProperty> | null;
207
+ };
208
+
209
+ export type Volo_Abp_Account_UpdateProfileDto = {
210
+ readonly extraProperties?: {
211
+ [key: string]: unknown;
212
+ } | null;
213
+ userName: string;
214
+ email?: string | null;
215
+ name?: string | null;
216
+ surname?: string | null;
217
+ phoneNumber?: string | null;
218
+ timezone?: string | null;
219
+ concurrencyStamp?: string | null;
220
+ };
221
+
222
+ export type Volo_Abp_Account_UserDelegationDto = {
223
+ id?: string;
224
+ userName?: string | null;
225
+ startTime?: string;
226
+ endTime?: string;
227
+ };
228
+
229
+ export type Volo_Abp_Account_UserLookupDto = {
230
+ id?: string;
231
+ userName?: string | null;
232
+ };
233
+
234
+ export type Volo_Abp_Account_VerifyAuthenticatorCodeDto = {
235
+ recoveryCodes?: Array<(string)> | null;
236
+ };
237
+
238
+ export type Volo_Abp_Account_VerifyAuthenticatorCodeInput = {
239
+ code?: string | null;
240
+ };
241
+
242
+ export type Volo_Abp_Account_VerifyEmailConfirmationTokenInput = {
243
+ userId: string;
244
+ token: string;
245
+ };
246
+
247
+ export type Volo_Abp_Account_VerifyLinkLoginTokenInput = {
248
+ userId: string;
249
+ tenantId?: string | null;
250
+ token: string;
251
+ };
252
+
253
+ export type Volo_Abp_Account_VerifyLinkTokenInput = {
254
+ userId: string;
255
+ tenantId?: string | null;
256
+ token: string;
257
+ };
258
+
259
+ export type Volo_Abp_Account_VerifyPasswordResetTokenInput = {
260
+ userId?: string;
261
+ resetToken: string;
262
+ };
263
+
264
+ export type Volo_Abp_Application_Dtos_ListResultDto_1 = {
265
+ items?: Array<Volo_Abp_Account_LinkUserDto> | null;
266
+ };
267
+
268
+ export type Volo_Abp_Application_Dtos_ListResultDto_12 = {
269
+ items?: Array<Volo_Abp_Account_UserDelegationDto> | null;
270
+ };
271
+
272
+ export type Volo_Abp_Application_Dtos_ListResultDto_13 = {
273
+ items?: Array<Volo_Abp_Account_UserLookupDto> | null;
274
+ };
275
+
276
+ export type Volo_Abp_Application_Dtos_PagedResultDto_1 = {
277
+ items?: Array<Volo_Abp_Identity_IdentitySecurityLogDto> | null;
278
+ totalCount?: number;
279
+ };
280
+
281
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationAuthConfigurationDto = {
282
+ grantedPolicies?: {
283
+ [key: string]: (boolean);
284
+ } | null;
285
+ };
286
+
287
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationConfigurationDto = {
288
+ localization?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationConfigurationDto;
289
+ auth?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationAuthConfigurationDto;
290
+ setting?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationSettingConfigurationDto;
291
+ currentUser?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_CurrentUserDto;
292
+ features?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationFeatureConfigurationDto;
293
+ globalFeatures?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationGlobalFeatureConfigurationDto;
294
+ multiTenancy?: Volo_Abp_AspNetCore_Mvc_MultiTenancy_MultiTenancyInfoDto;
295
+ currentTenant?: Volo_Abp_AspNetCore_Mvc_MultiTenancy_CurrentTenantDto;
296
+ timing?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_TimingDto;
297
+ clock?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ClockDto;
298
+ objectExtensions?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ObjectExtensionsDto;
299
+ extraProperties?: {
300
+ [key: string]: unknown;
301
+ } | null;
302
+ };
303
+
304
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationFeatureConfigurationDto = {
305
+ values?: {
306
+ [key: string]: (string | null);
307
+ } | null;
308
+ };
309
+
310
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationGlobalFeatureConfigurationDto = {
311
+ enabledFeatures?: Array<(string)> | null;
312
+ };
313
+
314
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationConfigurationDto = {
315
+ values?: {
316
+ [key: string]: {
317
+ [key: string]: (string);
318
+ };
319
+ } | null;
320
+ resources?: {
321
+ [key: string]: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationResourceDto;
322
+ } | null;
323
+ languages?: Array<Volo_Abp_Localization_LanguageInfo> | null;
324
+ currentCulture?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_CurrentCultureDto;
325
+ defaultResourceName?: string | null;
326
+ languagesMap?: {
327
+ [key: string]: Array<Volo_Abp_NameValue>;
328
+ } | null;
329
+ languageFilesMap?: {
330
+ [key: string]: Array<Volo_Abp_NameValue>;
331
+ } | null;
332
+ };
333
+
334
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationDto = {
335
+ resources?: {
336
+ [key: string]: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationResourceDto;
337
+ } | null;
338
+ };
339
+
340
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationResourceDto = {
341
+ texts?: {
342
+ [key: string]: (string);
343
+ } | null;
344
+ baseResources?: Array<(string)> | null;
345
+ };
346
+
347
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationSettingConfigurationDto = {
348
+ values?: {
349
+ [key: string]: (string | null);
350
+ } | null;
351
+ };
352
+
353
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ClockDto = {
354
+ kind?: string | null;
355
+ };
356
+
357
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_CurrentCultureDto = {
358
+ displayName?: string | null;
359
+ englishName?: string | null;
360
+ threeLetterIsoLanguageName?: string | null;
361
+ twoLetterIsoLanguageName?: string | null;
362
+ isRightToLeft?: boolean;
363
+ cultureName?: string | null;
364
+ name?: string | null;
365
+ nativeName?: string | null;
366
+ dateTimeFormat?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_DateTimeFormatDto;
367
+ };
368
+
369
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_CurrentUserDto = {
370
+ isAuthenticated?: boolean;
371
+ id?: string | null;
372
+ tenantId?: string | null;
373
+ impersonatorUserId?: string | null;
374
+ impersonatorTenantId?: string | null;
375
+ impersonatorUserName?: string | null;
376
+ impersonatorTenantName?: string | null;
377
+ userName?: string | null;
378
+ name?: string | null;
379
+ surName?: string | null;
380
+ email?: string | null;
381
+ emailVerified?: boolean;
382
+ phoneNumber?: string | null;
383
+ phoneNumberVerified?: boolean;
384
+ roles?: Array<(string)> | null;
385
+ };
386
+
387
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_DateTimeFormatDto = {
388
+ calendarAlgorithmType?: string | null;
389
+ dateTimeFormatLong?: string | null;
390
+ shortDatePattern?: string | null;
391
+ fullDateTimePattern?: string | null;
392
+ dateSeparator?: string | null;
393
+ shortTimePattern?: string | null;
394
+ longTimePattern?: string | null;
395
+ };
396
+
397
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_IanaTimeZone = {
398
+ timeZoneName?: string | null;
399
+ };
400
+
401
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_EntityExtensionDto = {
402
+ properties?: {
403
+ [key: string]: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyDto;
404
+ } | null;
405
+ configuration?: {
406
+ [key: string]: unknown;
407
+ } | null;
408
+ };
409
+
410
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionEnumDto = {
411
+ fields?: Array<Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionEnumFieldDto> | null;
412
+ localizationResource?: string | null;
413
+ };
414
+
415
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionEnumFieldDto = {
416
+ name?: string | null;
417
+ value?: unknown;
418
+ };
419
+
420
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiCreateDto = {
421
+ isAvailable?: boolean;
422
+ };
423
+
424
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiDto = {
425
+ onGet?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiGetDto;
426
+ onCreate?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiCreateDto;
427
+ onUpdate?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiUpdateDto;
428
+ };
429
+
430
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiGetDto = {
431
+ isAvailable?: boolean;
432
+ };
433
+
434
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiUpdateDto = {
435
+ isAvailable?: boolean;
436
+ };
437
+
438
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyAttributeDto = {
439
+ typeSimple?: string | null;
440
+ config?: {
441
+ [key: string]: unknown;
442
+ } | null;
443
+ };
444
+
445
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyDto = {
446
+ type?: string | null;
447
+ typeSimple?: string | null;
448
+ displayName?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_LocalizableStringDto;
449
+ api?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiDto;
450
+ ui?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiDto;
451
+ attributes?: Array<Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyAttributeDto> | null;
452
+ configuration?: {
453
+ [key: string]: unknown;
454
+ } | null;
455
+ defaultValue?: unknown;
456
+ };
457
+
458
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiDto = {
459
+ onTable?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiTableDto;
460
+ onCreateForm?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiFormDto;
461
+ onEditForm?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiFormDto;
462
+ lookup?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiLookupDto;
463
+ };
464
+
465
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiFormDto = {
466
+ isVisible?: boolean;
467
+ };
468
+
469
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiLookupDto = {
470
+ url?: string | null;
471
+ resultListPropertyName?: string | null;
472
+ displayPropertyName?: string | null;
473
+ valuePropertyName?: string | null;
474
+ filterParamName?: string | null;
475
+ };
476
+
477
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiTableDto = {
478
+ isVisible?: boolean;
479
+ };
480
+
481
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_LocalizableStringDto = {
482
+ name?: string | null;
483
+ resource?: string | null;
484
+ };
485
+
486
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ModuleExtensionDto = {
487
+ entities?: {
488
+ [key: string]: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_EntityExtensionDto;
489
+ } | null;
490
+ configuration?: {
491
+ [key: string]: unknown;
492
+ } | null;
493
+ };
494
+
495
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ObjectExtensionsDto = {
496
+ modules?: {
497
+ [key: string]: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ModuleExtensionDto;
498
+ } | null;
499
+ enums?: {
500
+ [key: string]: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionEnumDto;
501
+ } | null;
502
+ };
503
+
504
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_TimeZone = {
505
+ iana?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_IanaTimeZone;
506
+ windows?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_WindowsTimeZone;
507
+ };
508
+
509
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_TimingDto = {
510
+ timeZone?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_TimeZone;
511
+ };
512
+
513
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_WindowsTimeZone = {
514
+ timeZoneId?: string | null;
515
+ };
516
+
517
+ export type Volo_Abp_AspNetCore_Mvc_MultiTenancy_CurrentTenantDto = {
518
+ id?: string | null;
519
+ name?: string | null;
520
+ isAvailable?: boolean;
521
+ };
522
+
523
+ export type Volo_Abp_AspNetCore_Mvc_MultiTenancy_FindTenantResultDto = {
524
+ success?: boolean;
525
+ tenantId?: string | null;
526
+ name?: string | null;
527
+ isActive?: boolean;
528
+ };
529
+
530
+ export type Volo_Abp_AspNetCore_Mvc_MultiTenancy_MultiTenancyInfoDto = {
531
+ isEnabled?: boolean;
532
+ };
533
+
534
+ export type Volo_Abp_Http_Modeling_ActionApiDescriptionModel = {
535
+ uniqueName?: string | null;
536
+ name?: string | null;
537
+ httpMethod?: string | null;
538
+ url?: string | null;
539
+ supportedVersions?: Array<(string)> | null;
540
+ parametersOnMethod?: Array<Volo_Abp_Http_Modeling_MethodParameterApiDescriptionModel> | null;
541
+ parameters?: Array<Volo_Abp_Http_Modeling_ParameterApiDescriptionModel> | null;
542
+ returnValue?: Volo_Abp_Http_Modeling_ReturnValueApiDescriptionModel;
543
+ allowAnonymous?: boolean | null;
544
+ implementFrom?: string | null;
545
+ };
546
+
547
+ export type Volo_Abp_Http_Modeling_ApplicationApiDescriptionModel = {
548
+ modules?: {
549
+ [key: string]: Volo_Abp_Http_Modeling_ModuleApiDescriptionModel;
550
+ } | null;
551
+ types?: {
552
+ [key: string]: Volo_Abp_Http_Modeling_TypeApiDescriptionModel;
553
+ } | null;
554
+ };
555
+
556
+ export type Volo_Abp_Http_Modeling_ControllerApiDescriptionModel = {
557
+ controllerName?: string | null;
558
+ controllerGroupName?: string | null;
559
+ isRemoteService?: boolean;
560
+ isIntegrationService?: boolean;
561
+ apiVersion?: string | null;
562
+ type?: string | null;
563
+ interfaces?: Array<Volo_Abp_Http_Modeling_ControllerInterfaceApiDescriptionModel> | null;
564
+ actions?: {
565
+ [key: string]: Volo_Abp_Http_Modeling_ActionApiDescriptionModel;
566
+ } | null;
567
+ };
568
+
569
+ export type Volo_Abp_Http_Modeling_ControllerInterfaceApiDescriptionModel = {
570
+ type?: string | null;
571
+ name?: string | null;
572
+ methods?: Array<Volo_Abp_Http_Modeling_InterfaceMethodApiDescriptionModel> | null;
573
+ };
574
+
575
+ export type Volo_Abp_Http_Modeling_InterfaceMethodApiDescriptionModel = {
576
+ name?: string | null;
577
+ parametersOnMethod?: Array<Volo_Abp_Http_Modeling_MethodParameterApiDescriptionModel> | null;
578
+ returnValue?: Volo_Abp_Http_Modeling_ReturnValueApiDescriptionModel;
579
+ };
580
+
581
+ export type Volo_Abp_Http_Modeling_MethodParameterApiDescriptionModel = {
582
+ name?: string | null;
583
+ typeAsString?: string | null;
584
+ type?: string | null;
585
+ typeSimple?: string | null;
586
+ isOptional?: boolean;
587
+ defaultValue?: unknown;
588
+ };
589
+
590
+ export type Volo_Abp_Http_Modeling_ModuleApiDescriptionModel = {
591
+ rootPath?: string | null;
592
+ remoteServiceName?: string | null;
593
+ controllers?: {
594
+ [key: string]: Volo_Abp_Http_Modeling_ControllerApiDescriptionModel;
595
+ } | null;
596
+ };
597
+
598
+ export type Volo_Abp_Http_Modeling_ParameterApiDescriptionModel = {
599
+ nameOnMethod?: string | null;
600
+ name?: string | null;
601
+ jsonName?: string | null;
602
+ type?: string | null;
603
+ typeSimple?: string | null;
604
+ isOptional?: boolean;
605
+ defaultValue?: unknown;
606
+ constraintTypes?: Array<(string)> | null;
607
+ bindingSourceId?: string | null;
608
+ descriptorName?: string | null;
609
+ };
610
+
611
+ export type Volo_Abp_Http_Modeling_PropertyApiDescriptionModel = {
612
+ name?: string | null;
613
+ jsonName?: string | null;
614
+ type?: string | null;
615
+ typeSimple?: string | null;
616
+ isRequired?: boolean;
617
+ minLength?: number | null;
618
+ maxLength?: number | null;
619
+ minimum?: string | null;
620
+ maximum?: string | null;
621
+ regex?: string | null;
622
+ };
623
+
624
+ export type Volo_Abp_Http_Modeling_ReturnValueApiDescriptionModel = {
625
+ type?: string | null;
626
+ typeSimple?: string | null;
627
+ };
628
+
629
+ export type Volo_Abp_Http_Modeling_TypeApiDescriptionModel = {
630
+ baseType?: string | null;
631
+ isEnum?: boolean;
632
+ enumNames?: Array<(string)> | null;
633
+ enumValues?: Array<unknown> | null;
634
+ genericArguments?: Array<(string)> | null;
635
+ properties?: Array<Volo_Abp_Http_Modeling_PropertyApiDescriptionModel> | null;
636
+ };
637
+
638
+ export type Volo_Abp_Http_RemoteServiceErrorInfo = {
639
+ code?: string | null;
640
+ message?: string | null;
641
+ details?: string | null;
642
+ data?: {
643
+ [key: string]: unknown;
644
+ } | null;
645
+ validationErrors?: Array<Volo_Abp_Http_RemoteServiceValidationErrorInfo> | null;
646
+ };
647
+
648
+ export type Volo_Abp_Http_RemoteServiceErrorResponse = {
649
+ error?: Volo_Abp_Http_RemoteServiceErrorInfo;
650
+ };
651
+
652
+ export type Volo_Abp_Http_RemoteServiceValidationErrorInfo = {
653
+ message?: string | null;
654
+ members?: Array<(string)> | null;
655
+ };
656
+
657
+ export type Volo_Abp_Identity_Features_IdentityProTwoFactorBehaviour = 0 | 1 | 2;
658
+
659
+ export type Volo_Abp_Identity_IdentitySecurityLogDto = {
660
+ id?: string;
661
+ tenantId?: string | null;
662
+ applicationName?: string | null;
663
+ identity?: string | null;
664
+ action?: string | null;
665
+ userId?: string | null;
666
+ userName?: string | null;
667
+ tenantName?: string | null;
668
+ clientId?: string | null;
669
+ correlationId?: string | null;
670
+ clientIpAddress?: string | null;
671
+ browserInfo?: string | null;
672
+ creationTime?: string;
673
+ extraProperties?: {
674
+ [key: string]: unknown;
675
+ } | null;
676
+ };
677
+
678
+ export type Volo_Abp_Identity_IdentityUserDto = {
679
+ readonly extraProperties?: {
680
+ [key: string]: unknown;
681
+ } | null;
682
+ id?: string;
683
+ creationTime?: string;
684
+ creatorId?: string | null;
685
+ lastModificationTime?: string | null;
686
+ lastModifierId?: string | null;
687
+ isDeleted?: boolean;
688
+ deleterId?: string | null;
689
+ deletionTime?: string | null;
690
+ tenantId?: string | null;
691
+ userName?: string | null;
692
+ email?: string | null;
693
+ name?: string | null;
694
+ surname?: string | null;
695
+ emailConfirmed?: boolean;
696
+ phoneNumber?: string | null;
697
+ phoneNumberConfirmed?: boolean;
698
+ supportTwoFactor?: boolean;
699
+ twoFactorEnabled?: boolean;
700
+ isActive?: boolean;
701
+ lockoutEnabled?: boolean;
702
+ isLockedOut?: boolean;
703
+ lockoutEnd?: string | null;
704
+ shouldChangePasswordOnNextLogin?: boolean;
705
+ concurrencyStamp?: string | null;
706
+ roleNames?: Array<(string)> | null;
707
+ accessFailedCount?: number;
708
+ lastPasswordChangeTime?: string | null;
709
+ };
710
+
711
+ export type Volo_Abp_Localization_LanguageInfo = {
712
+ cultureName?: string | null;
713
+ uiCultureName?: string | null;
714
+ displayName?: string | null;
715
+ readonly twoLetterISOLanguageName?: string | null;
716
+ flagIcon?: string | null;
717
+ };
718
+
719
+ export type Volo_Abp_NameValue = {
720
+ name?: string | null;
721
+ value?: string | null;
722
+ };
723
+
724
+ export type GetApiAbpApiDefinitionData = {
725
+ includeTypes?: boolean;
726
+ };
727
+
728
+ export type GetApiAbpApiDefinitionResponse = Volo_Abp_Http_Modeling_ApplicationApiDescriptionModel;
729
+
730
+ export type GetApiAbpApplicationConfigurationData = {
731
+ includeLocalizationResources?: boolean;
732
+ };
733
+
734
+ export type GetApiAbpApplicationConfigurationResponse = Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationConfigurationDto;
735
+
736
+ export type GetApiAbpApplicationLocalizationData = {
737
+ cultureName: string;
738
+ onlyDynamics?: boolean;
739
+ };
740
+
741
+ export type GetApiAbpApplicationLocalizationResponse = Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationDto;
742
+
743
+ export type GetApiAbpMultiTenancyTenantsByNameByNameData = {
744
+ name: string;
745
+ };
746
+
747
+ export type GetApiAbpMultiTenancyTenantsByNameByNameResponse = Volo_Abp_AspNetCore_Mvc_MultiTenancy_FindTenantResultDto;
748
+
749
+ export type GetApiAbpMultiTenancyTenantsByIdByIdData = {
750
+ id: string;
751
+ };
752
+
753
+ export type GetApiAbpMultiTenancyTenantsByIdByIdResponse = Volo_Abp_AspNetCore_Mvc_MultiTenancy_FindTenantResultDto;
754
+
755
+ export type PostApiAccountRegisterData = {
756
+ requestBody?: Volo_Abp_Account_RegisterDto;
757
+ };
758
+
759
+ export type PostApiAccountRegisterResponse = Volo_Abp_Identity_IdentityUserDto;
760
+
761
+ export type PostApiAccountSendPasswordResetCodeData = {
762
+ requestBody?: Volo_Abp_Account_SendPasswordResetCodeDto;
763
+ };
764
+
765
+ export type PostApiAccountSendPasswordResetCodeResponse = unknown;
766
+
767
+ export type PostApiAccountVerifyPasswordResetTokenData = {
768
+ requestBody?: Volo_Abp_Account_VerifyPasswordResetTokenInput;
769
+ };
770
+
771
+ export type PostApiAccountVerifyPasswordResetTokenResponse = boolean;
772
+
773
+ export type PostApiAccountResetPasswordData = {
774
+ requestBody?: Volo_Abp_Account_ResetPasswordDto;
775
+ };
776
+
777
+ export type PostApiAccountResetPasswordResponse = unknown;
778
+
779
+ export type GetApiAccountConfirmationStateData = {
780
+ id?: string;
781
+ };
782
+
783
+ export type GetApiAccountConfirmationStateResponse = Volo_Abp_Account_IdentityUserConfirmationStateDto;
784
+
785
+ export type PostApiAccountSendPhoneNumberConfirmationTokenData = {
786
+ requestBody?: Volo_Abp_Account_SendPhoneNumberConfirmationTokenDto;
787
+ };
788
+
789
+ export type PostApiAccountSendPhoneNumberConfirmationTokenResponse = unknown;
790
+
791
+ export type PostApiAccountSendEmailConfirmationTokenData = {
792
+ requestBody?: Volo_Abp_Account_SendEmailConfirmationTokenDto;
793
+ };
794
+
795
+ export type PostApiAccountSendEmailConfirmationTokenResponse = unknown;
796
+
797
+ export type PostApiAccountVerifyEmailConfirmationTokenData = {
798
+ requestBody?: Volo_Abp_Account_VerifyEmailConfirmationTokenInput;
799
+ };
800
+
801
+ export type PostApiAccountVerifyEmailConfirmationTokenResponse = boolean;
802
+
803
+ export type PostApiAccountConfirmPhoneNumberData = {
804
+ requestBody?: Volo_Abp_Account_ConfirmPhoneNumberInput;
805
+ };
806
+
807
+ export type PostApiAccountConfirmPhoneNumberResponse = unknown;
808
+
809
+ export type PostApiAccountConfirmEmailData = {
810
+ requestBody?: Volo_Abp_Account_ConfirmEmailInput;
811
+ };
812
+
813
+ export type PostApiAccountConfirmEmailResponse = unknown;
814
+
815
+ export type PostApiAccountProfilePictureData = {
816
+ formData?: {
817
+ ImageContent?: (Blob | File);
818
+ };
819
+ type?: Volo_Abp_Account_ProfilePictureType;
820
+ };
821
+
822
+ export type PostApiAccountProfilePictureResponse = unknown;
823
+
824
+ export type GetApiAccountProfilePictureByIdData = {
825
+ id: string;
826
+ };
827
+
828
+ export type GetApiAccountProfilePictureByIdResponse = Volo_Abp_Account_ProfilePictureSourceDto;
829
+
830
+ export type GetApiAccountTwoFactorProvidersData = {
831
+ token: string;
832
+ userId: string;
833
+ };
834
+
835
+ export type GetApiAccountTwoFactorProvidersResponse = Array<(string)>;
836
+
837
+ export type PostApiAccountSendTwoFactorCodeData = {
838
+ requestBody?: Volo_Abp_Account_SendTwoFactorCodeInput;
839
+ };
840
+
841
+ export type PostApiAccountSendTwoFactorCodeResponse = unknown;
842
+
843
+ export type GetApiAccountSecurityLogsData = {
844
+ action?: string;
845
+ applicationName?: string;
846
+ clientId?: string;
847
+ correlationId?: string;
848
+ endTime?: string;
849
+ extraProperties?: {
850
+ [key: string]: unknown;
851
+ };
852
+ identity?: string;
853
+ maxResultCount?: number;
854
+ skipCount?: number;
855
+ sorting?: string;
856
+ startTime?: string;
857
+ userName?: string;
858
+ };
859
+
860
+ export type GetApiAccountSecurityLogsResponse = Volo_Abp_Application_Dtos_PagedResultDto_1;
861
+
862
+ export type PostApiAccountVerifyAuthenticatorCodeData = {
863
+ requestBody?: Volo_Abp_Account_VerifyAuthenticatorCodeInput;
864
+ };
865
+
866
+ export type PostApiAccountVerifyAuthenticatorCodeResponse = Volo_Abp_Account_VerifyAuthenticatorCodeDto;
867
+
868
+ export type PostApiAccountResetAuthenticatorResponse = unknown;
869
+
870
+ export type GetApiAccountHasAuthenticatorKeyResponse = boolean;
871
+
872
+ export type GetApiAccountAuthenticatorInfoResponse = Volo_Abp_Account_AuthenticatorInfoDto;
873
+
874
+ export type GetApiAccountProfilePictureFileByIdData = {
875
+ id: string;
876
+ };
877
+
878
+ export type GetApiAccountProfilePictureFileByIdResponse = (Blob | File);
879
+
880
+ export type GetApiAccountRecaptchaValidateData = {
881
+ captchaResponse?: string;
882
+ };
883
+
884
+ export type GetApiAccountRecaptchaValidateResponse = unknown;
885
+
886
+ export type GetApiAccountExternalProviderResponse = Volo_Abp_Account_ExternalProviders_ExternalProviderDto;
887
+
888
+ export type GetApiAccountExternalProviderByNameData = {
889
+ name?: string;
890
+ tenantId?: string;
891
+ };
892
+
893
+ export type GetApiAccountExternalProviderByNameResponse = Volo_Abp_Account_ExternalProviders_ExternalProviderItemWithSecretDto;
894
+
895
+ export type GetApiAccountAdminSettingsResponse = Volo_Abp_Account_AccountSettingsDto;
896
+
897
+ export type PutApiAccountAdminSettingsData = {
898
+ requestBody?: Volo_Abp_Account_AccountSettingsDto;
899
+ };
900
+
901
+ export type PutApiAccountAdminSettingsResponse = unknown;
902
+
903
+ export type GetApiAccountAdminSettingsTwoFactorResponse = Volo_Abp_Account_AccountTwoFactorSettingsDto;
904
+
905
+ export type PutApiAccountAdminSettingsTwoFactorData = {
906
+ requestBody?: Volo_Abp_Account_AccountTwoFactorSettingsDto;
907
+ };
908
+
909
+ export type PutApiAccountAdminSettingsTwoFactorResponse = unknown;
910
+
911
+ export type GetApiAccountAdminSettingsRecaptchaResponse = Volo_Abp_Account_AccountRecaptchaSettingsDto;
912
+
913
+ export type PutApiAccountAdminSettingsRecaptchaData = {
914
+ requestBody?: Volo_Abp_Account_AccountRecaptchaSettingsDto;
915
+ };
916
+
917
+ export type PutApiAccountAdminSettingsRecaptchaResponse = unknown;
918
+
919
+ export type GetApiAccountAdminSettingsExternalProviderResponse = Volo_Abp_Account_AccountExternalProviderSettingsDto;
920
+
921
+ export type PutApiAccountAdminSettingsExternalProviderData = {
922
+ requestBody?: Array<Volo_Abp_Account_UpdateExternalProviderDto>;
923
+ };
924
+
925
+ export type PutApiAccountAdminSettingsExternalProviderResponse = unknown;
926
+
927
+ export type PostApiAccountDynamicClaimsRefreshResponse = unknown;
928
+
929
+ export type PostApiAccountLoginData = {
930
+ requestBody?: Volo_Abp_Account_Public_Web_Areas_Account_Controllers_Models_UserLoginInfo;
931
+ };
932
+
933
+ export type PostApiAccountLoginResponse = Volo_Abp_Account_Public_Web_Areas_Account_Controllers_Models_AbpLoginResult;
934
+
935
+ export type PostApiAccountLinkLoginData = {
936
+ requestBody?: Volo_Abp_Account_Public_Web_Areas_Account_Controllers_Models_LinkUserLoginInfo;
937
+ };
938
+
939
+ export type PostApiAccountLinkLoginResponse = Volo_Abp_Account_Public_Web_Areas_Account_Controllers_Models_AbpLoginResult;
940
+
941
+ export type GetApiAccountLogoutResponse = unknown;
942
+
943
+ export type PostApiAccountCheckPasswordData = {
944
+ requestBody?: Volo_Abp_Account_Public_Web_Areas_Account_Controllers_Models_UserLoginInfo;
945
+ };
946
+
947
+ export type PostApiAccountCheckPasswordResponse = Volo_Abp_Account_Public_Web_Areas_Account_Controllers_Models_AbpLoginResult;
948
+
949
+ export type GetApiAccountMyProfileResponse = Volo_Abp_Account_ProfileDto;
950
+
951
+ export type PutApiAccountMyProfileData = {
952
+ requestBody?: Volo_Abp_Account_UpdateProfileDto;
953
+ };
954
+
955
+ export type PutApiAccountMyProfileResponse = Volo_Abp_Account_ProfileDto;
956
+
957
+ export type PostApiAccountMyProfileChangePasswordData = {
958
+ requestBody?: Volo_Abp_Account_ChangePasswordInput;
959
+ };
960
+
961
+ export type PostApiAccountMyProfileChangePasswordResponse = unknown;
962
+
963
+ export type GetApiAccountMyProfileTwoFactorEnabledResponse = boolean;
964
+
965
+ export type PostApiAccountMyProfileSetTwoFactorEnabledData = {
966
+ enabled?: boolean;
967
+ };
968
+
969
+ export type PostApiAccountMyProfileSetTwoFactorEnabledResponse = unknown;
970
+
971
+ export type GetApiAccountMyProfileCanEnableTwoFactorResponse = boolean;
972
+
973
+ export type GetApiAccountMyProfileTimezonesResponse = Array<Volo_Abp_NameValue>;
974
+
975
+ export type PostApiAccountLinkUserLinkData = {
976
+ requestBody?: Volo_Abp_Account_LinkUserInput;
977
+ };
978
+
979
+ export type PostApiAccountLinkUserLinkResponse = unknown;
980
+
981
+ export type PostApiAccountLinkUserUnlinkData = {
982
+ requestBody?: Volo_Abp_Account_UnLinkUserInput;
983
+ };
984
+
985
+ export type PostApiAccountLinkUserUnlinkResponse = unknown;
986
+
987
+ export type PostApiAccountLinkUserIsLinkedData = {
988
+ requestBody?: Volo_Abp_Account_IsLinkedInput;
989
+ };
990
+
991
+ export type PostApiAccountLinkUserIsLinkedResponse = boolean;
992
+
993
+ export type PostApiAccountLinkUserGenerateLinkTokenResponse = string;
994
+
995
+ export type PostApiAccountLinkUserVerifyLinkTokenData = {
996
+ requestBody?: Volo_Abp_Account_VerifyLinkTokenInput;
997
+ };
998
+
999
+ export type PostApiAccountLinkUserVerifyLinkTokenResponse = boolean;
1000
+
1001
+ export type PostApiAccountLinkUserGenerateLinkLoginTokenResponse = string;
1002
+
1003
+ export type PostApiAccountLinkUserVerifyLinkLoginTokenData = {
1004
+ requestBody?: Volo_Abp_Account_VerifyLinkLoginTokenInput;
1005
+ };
1006
+
1007
+ export type PostApiAccountLinkUserVerifyLinkLoginTokenResponse = boolean;
1008
+
1009
+ export type GetApiAccountLinkUserResponse = Volo_Abp_Application_Dtos_ListResultDto_1;
1010
+
1011
+ export type GetApiAccountUserDelegationDelegatedUsersResponse = Volo_Abp_Application_Dtos_ListResultDto_1;
1012
+
1013
+ export type GetApiAccountUserDelegationMyDelegatedUsersResponse = Volo_Abp_Application_Dtos_ListResultDto_1;
1014
+
1015
+ export type GetApiAccountUserDelegationActiveDelegationsResponse = Volo_Abp_Application_Dtos_ListResultDto_1;
1016
+
1017
+ export type GetApiAccountUserDelegationUserLookupData = {
1018
+ userName?: string;
1019
+ };
1020
+
1021
+ export type GetApiAccountUserDelegationUserLookupResponse = Volo_Abp_Application_Dtos_ListResultDto_1;
1022
+
1023
+ export type PostApiAccountUserDelegationDelegateNewUserData = {
1024
+ requestBody?: Volo_Abp_Account_DelegateNewUserInput;
1025
+ };
1026
+
1027
+ export type PostApiAccountUserDelegationDelegateNewUserResponse = unknown;
1028
+
1029
+ export type PostApiAccountUserDelegationDeleteDelegationData = {
1030
+ id?: string;
1031
+ };
1032
+
1033
+ export type PostApiAccountUserDelegationDeleteDelegationResponse = unknown;
1034
+
1035
+ export type $OpenApiTs = {
1036
+ '/api/abp/api-definition': {
1037
+ get: {
1038
+ req: GetApiAbpApiDefinitionData;
1039
+ res: {
1040
+ /**
1041
+ * Success
1042
+ */
1043
+ 200: Volo_Abp_Http_Modeling_ApplicationApiDescriptionModel;
1044
+ /**
1045
+ * Bad Request
1046
+ */
1047
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1048
+ /**
1049
+ * Unauthorized
1050
+ */
1051
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1052
+ /**
1053
+ * Forbidden
1054
+ */
1055
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1056
+ /**
1057
+ * Not Found
1058
+ */
1059
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1060
+ /**
1061
+ * Server Error
1062
+ */
1063
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1064
+ /**
1065
+ * Server Error
1066
+ */
1067
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1068
+ };
1069
+ };
1070
+ };
1071
+ '/api/abp/application-configuration': {
1072
+ get: {
1073
+ req: GetApiAbpApplicationConfigurationData;
1074
+ res: {
1075
+ /**
1076
+ * Success
1077
+ */
1078
+ 200: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationConfigurationDto;
1079
+ /**
1080
+ * Bad Request
1081
+ */
1082
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1083
+ /**
1084
+ * Unauthorized
1085
+ */
1086
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1087
+ /**
1088
+ * Forbidden
1089
+ */
1090
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1091
+ /**
1092
+ * Not Found
1093
+ */
1094
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1095
+ /**
1096
+ * Server Error
1097
+ */
1098
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1099
+ /**
1100
+ * Server Error
1101
+ */
1102
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1103
+ };
1104
+ };
1105
+ };
1106
+ '/api/abp/application-localization': {
1107
+ get: {
1108
+ req: GetApiAbpApplicationLocalizationData;
1109
+ res: {
1110
+ /**
1111
+ * Success
1112
+ */
1113
+ 200: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationDto;
1114
+ /**
1115
+ * Bad Request
1116
+ */
1117
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1118
+ /**
1119
+ * Unauthorized
1120
+ */
1121
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1122
+ /**
1123
+ * Forbidden
1124
+ */
1125
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1126
+ /**
1127
+ * Not Found
1128
+ */
1129
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1130
+ /**
1131
+ * Server Error
1132
+ */
1133
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1134
+ /**
1135
+ * Server Error
1136
+ */
1137
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1138
+ };
1139
+ };
1140
+ };
1141
+ '/api/abp/multi-tenancy/tenants/by-name/{name}': {
1142
+ get: {
1143
+ req: GetApiAbpMultiTenancyTenantsByNameByNameData;
1144
+ res: {
1145
+ /**
1146
+ * Success
1147
+ */
1148
+ 200: Volo_Abp_AspNetCore_Mvc_MultiTenancy_FindTenantResultDto;
1149
+ /**
1150
+ * Bad Request
1151
+ */
1152
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1153
+ /**
1154
+ * Unauthorized
1155
+ */
1156
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1157
+ /**
1158
+ * Forbidden
1159
+ */
1160
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1161
+ /**
1162
+ * Not Found
1163
+ */
1164
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1165
+ /**
1166
+ * Server Error
1167
+ */
1168
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1169
+ /**
1170
+ * Server Error
1171
+ */
1172
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1173
+ };
1174
+ };
1175
+ };
1176
+ '/api/abp/multi-tenancy/tenants/by-id/{id}': {
1177
+ get: {
1178
+ req: GetApiAbpMultiTenancyTenantsByIdByIdData;
1179
+ res: {
1180
+ /**
1181
+ * Success
1182
+ */
1183
+ 200: Volo_Abp_AspNetCore_Mvc_MultiTenancy_FindTenantResultDto;
1184
+ /**
1185
+ * Bad Request
1186
+ */
1187
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1188
+ /**
1189
+ * Unauthorized
1190
+ */
1191
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1192
+ /**
1193
+ * Forbidden
1194
+ */
1195
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1196
+ /**
1197
+ * Not Found
1198
+ */
1199
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1200
+ /**
1201
+ * Server Error
1202
+ */
1203
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1204
+ /**
1205
+ * Server Error
1206
+ */
1207
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1208
+ };
1209
+ };
1210
+ };
1211
+ '/api/account/register': {
1212
+ post: {
1213
+ req: PostApiAccountRegisterData;
1214
+ res: {
1215
+ /**
1216
+ * Success
1217
+ */
1218
+ 200: Volo_Abp_Identity_IdentityUserDto;
1219
+ /**
1220
+ * Bad Request
1221
+ */
1222
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1223
+ /**
1224
+ * Unauthorized
1225
+ */
1226
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1227
+ /**
1228
+ * Forbidden
1229
+ */
1230
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1231
+ /**
1232
+ * Not Found
1233
+ */
1234
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1235
+ /**
1236
+ * Server Error
1237
+ */
1238
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1239
+ /**
1240
+ * Server Error
1241
+ */
1242
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1243
+ };
1244
+ };
1245
+ };
1246
+ '/api/account/send-password-reset-code': {
1247
+ post: {
1248
+ req: PostApiAccountSendPasswordResetCodeData;
1249
+ res: {
1250
+ /**
1251
+ * Success
1252
+ */
1253
+ 200: unknown;
1254
+ /**
1255
+ * Bad Request
1256
+ */
1257
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1258
+ /**
1259
+ * Unauthorized
1260
+ */
1261
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1262
+ /**
1263
+ * Forbidden
1264
+ */
1265
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1266
+ /**
1267
+ * Not Found
1268
+ */
1269
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1270
+ /**
1271
+ * Server Error
1272
+ */
1273
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1274
+ /**
1275
+ * Server Error
1276
+ */
1277
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1278
+ };
1279
+ };
1280
+ };
1281
+ '/api/account/verify-password-reset-token': {
1282
+ post: {
1283
+ req: PostApiAccountVerifyPasswordResetTokenData;
1284
+ res: {
1285
+ /**
1286
+ * Success
1287
+ */
1288
+ 200: boolean;
1289
+ /**
1290
+ * Bad Request
1291
+ */
1292
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1293
+ /**
1294
+ * Unauthorized
1295
+ */
1296
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1297
+ /**
1298
+ * Forbidden
1299
+ */
1300
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1301
+ /**
1302
+ * Not Found
1303
+ */
1304
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1305
+ /**
1306
+ * Server Error
1307
+ */
1308
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1309
+ /**
1310
+ * Server Error
1311
+ */
1312
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1313
+ };
1314
+ };
1315
+ };
1316
+ '/api/account/reset-password': {
1317
+ post: {
1318
+ req: PostApiAccountResetPasswordData;
1319
+ res: {
1320
+ /**
1321
+ * Success
1322
+ */
1323
+ 200: unknown;
1324
+ /**
1325
+ * Bad Request
1326
+ */
1327
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1328
+ /**
1329
+ * Unauthorized
1330
+ */
1331
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1332
+ /**
1333
+ * Forbidden
1334
+ */
1335
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1336
+ /**
1337
+ * Not Found
1338
+ */
1339
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1340
+ /**
1341
+ * Server Error
1342
+ */
1343
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1344
+ /**
1345
+ * Server Error
1346
+ */
1347
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1348
+ };
1349
+ };
1350
+ };
1351
+ '/api/account/confirmation-state': {
1352
+ get: {
1353
+ req: GetApiAccountConfirmationStateData;
1354
+ res: {
1355
+ /**
1356
+ * Success
1357
+ */
1358
+ 200: Volo_Abp_Account_IdentityUserConfirmationStateDto;
1359
+ /**
1360
+ * Bad Request
1361
+ */
1362
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1363
+ /**
1364
+ * Unauthorized
1365
+ */
1366
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1367
+ /**
1368
+ * Forbidden
1369
+ */
1370
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1371
+ /**
1372
+ * Not Found
1373
+ */
1374
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1375
+ /**
1376
+ * Server Error
1377
+ */
1378
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1379
+ /**
1380
+ * Server Error
1381
+ */
1382
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1383
+ };
1384
+ };
1385
+ };
1386
+ '/api/account/send-phone-number-confirmation-token': {
1387
+ post: {
1388
+ req: PostApiAccountSendPhoneNumberConfirmationTokenData;
1389
+ res: {
1390
+ /**
1391
+ * Success
1392
+ */
1393
+ 200: unknown;
1394
+ /**
1395
+ * Bad Request
1396
+ */
1397
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1398
+ /**
1399
+ * Unauthorized
1400
+ */
1401
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1402
+ /**
1403
+ * Forbidden
1404
+ */
1405
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1406
+ /**
1407
+ * Not Found
1408
+ */
1409
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1410
+ /**
1411
+ * Server Error
1412
+ */
1413
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1414
+ /**
1415
+ * Server Error
1416
+ */
1417
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1418
+ };
1419
+ };
1420
+ };
1421
+ '/api/account/send-email-confirmation-token': {
1422
+ post: {
1423
+ req: PostApiAccountSendEmailConfirmationTokenData;
1424
+ res: {
1425
+ /**
1426
+ * Success
1427
+ */
1428
+ 200: unknown;
1429
+ /**
1430
+ * Bad Request
1431
+ */
1432
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1433
+ /**
1434
+ * Unauthorized
1435
+ */
1436
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1437
+ /**
1438
+ * Forbidden
1439
+ */
1440
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1441
+ /**
1442
+ * Not Found
1443
+ */
1444
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1445
+ /**
1446
+ * Server Error
1447
+ */
1448
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1449
+ /**
1450
+ * Server Error
1451
+ */
1452
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1453
+ };
1454
+ };
1455
+ };
1456
+ '/api/account/verify-email-confirmation-token': {
1457
+ post: {
1458
+ req: PostApiAccountVerifyEmailConfirmationTokenData;
1459
+ res: {
1460
+ /**
1461
+ * Success
1462
+ */
1463
+ 200: boolean;
1464
+ /**
1465
+ * Bad Request
1466
+ */
1467
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1468
+ /**
1469
+ * Unauthorized
1470
+ */
1471
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1472
+ /**
1473
+ * Forbidden
1474
+ */
1475
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1476
+ /**
1477
+ * Not Found
1478
+ */
1479
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1480
+ /**
1481
+ * Server Error
1482
+ */
1483
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1484
+ /**
1485
+ * Server Error
1486
+ */
1487
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1488
+ };
1489
+ };
1490
+ };
1491
+ '/api/account/confirm-phone-number': {
1492
+ post: {
1493
+ req: PostApiAccountConfirmPhoneNumberData;
1494
+ res: {
1495
+ /**
1496
+ * Success
1497
+ */
1498
+ 200: unknown;
1499
+ /**
1500
+ * Bad Request
1501
+ */
1502
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1503
+ /**
1504
+ * Unauthorized
1505
+ */
1506
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1507
+ /**
1508
+ * Forbidden
1509
+ */
1510
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1511
+ /**
1512
+ * Not Found
1513
+ */
1514
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1515
+ /**
1516
+ * Server Error
1517
+ */
1518
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1519
+ /**
1520
+ * Server Error
1521
+ */
1522
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1523
+ };
1524
+ };
1525
+ };
1526
+ '/api/account/confirm-email': {
1527
+ post: {
1528
+ req: PostApiAccountConfirmEmailData;
1529
+ res: {
1530
+ /**
1531
+ * Success
1532
+ */
1533
+ 200: unknown;
1534
+ /**
1535
+ * Bad Request
1536
+ */
1537
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1538
+ /**
1539
+ * Unauthorized
1540
+ */
1541
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1542
+ /**
1543
+ * Forbidden
1544
+ */
1545
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1546
+ /**
1547
+ * Not Found
1548
+ */
1549
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1550
+ /**
1551
+ * Server Error
1552
+ */
1553
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1554
+ /**
1555
+ * Server Error
1556
+ */
1557
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1558
+ };
1559
+ };
1560
+ };
1561
+ '/api/account/profile-picture': {
1562
+ post: {
1563
+ req: PostApiAccountProfilePictureData;
1564
+ res: {
1565
+ /**
1566
+ * Success
1567
+ */
1568
+ 200: unknown;
1569
+ /**
1570
+ * Bad Request
1571
+ */
1572
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1573
+ /**
1574
+ * Unauthorized
1575
+ */
1576
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1577
+ /**
1578
+ * Forbidden
1579
+ */
1580
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1581
+ /**
1582
+ * Not Found
1583
+ */
1584
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1585
+ /**
1586
+ * Server Error
1587
+ */
1588
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1589
+ /**
1590
+ * Server Error
1591
+ */
1592
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1593
+ };
1594
+ };
1595
+ };
1596
+ '/api/account/profile-picture/{id}': {
1597
+ get: {
1598
+ req: GetApiAccountProfilePictureByIdData;
1599
+ res: {
1600
+ /**
1601
+ * Success
1602
+ */
1603
+ 200: Volo_Abp_Account_ProfilePictureSourceDto;
1604
+ /**
1605
+ * Bad Request
1606
+ */
1607
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1608
+ /**
1609
+ * Unauthorized
1610
+ */
1611
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1612
+ /**
1613
+ * Forbidden
1614
+ */
1615
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1616
+ /**
1617
+ * Not Found
1618
+ */
1619
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1620
+ /**
1621
+ * Server Error
1622
+ */
1623
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1624
+ /**
1625
+ * Server Error
1626
+ */
1627
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1628
+ };
1629
+ };
1630
+ };
1631
+ '/api/account/two-factor-providers': {
1632
+ get: {
1633
+ req: GetApiAccountTwoFactorProvidersData;
1634
+ res: {
1635
+ /**
1636
+ * Success
1637
+ */
1638
+ 200: Array<(string)>;
1639
+ /**
1640
+ * Bad Request
1641
+ */
1642
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1643
+ /**
1644
+ * Unauthorized
1645
+ */
1646
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1647
+ /**
1648
+ * Forbidden
1649
+ */
1650
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1651
+ /**
1652
+ * Not Found
1653
+ */
1654
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1655
+ /**
1656
+ * Server Error
1657
+ */
1658
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1659
+ /**
1660
+ * Server Error
1661
+ */
1662
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1663
+ };
1664
+ };
1665
+ };
1666
+ '/api/account/send-two-factor-code': {
1667
+ post: {
1668
+ req: PostApiAccountSendTwoFactorCodeData;
1669
+ res: {
1670
+ /**
1671
+ * Success
1672
+ */
1673
+ 200: unknown;
1674
+ /**
1675
+ * Bad Request
1676
+ */
1677
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1678
+ /**
1679
+ * Unauthorized
1680
+ */
1681
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1682
+ /**
1683
+ * Forbidden
1684
+ */
1685
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1686
+ /**
1687
+ * Not Found
1688
+ */
1689
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1690
+ /**
1691
+ * Server Error
1692
+ */
1693
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1694
+ /**
1695
+ * Server Error
1696
+ */
1697
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1698
+ };
1699
+ };
1700
+ };
1701
+ '/api/account/security-logs': {
1702
+ get: {
1703
+ req: GetApiAccountSecurityLogsData;
1704
+ res: {
1705
+ /**
1706
+ * Success
1707
+ */
1708
+ 200: Volo_Abp_Application_Dtos_PagedResultDto_1;
1709
+ /**
1710
+ * Bad Request
1711
+ */
1712
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1713
+ /**
1714
+ * Unauthorized
1715
+ */
1716
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1717
+ /**
1718
+ * Forbidden
1719
+ */
1720
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1721
+ /**
1722
+ * Not Found
1723
+ */
1724
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1725
+ /**
1726
+ * Server Error
1727
+ */
1728
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1729
+ /**
1730
+ * Server Error
1731
+ */
1732
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1733
+ };
1734
+ };
1735
+ };
1736
+ '/api/account/verify-authenticator-code': {
1737
+ post: {
1738
+ req: PostApiAccountVerifyAuthenticatorCodeData;
1739
+ res: {
1740
+ /**
1741
+ * Success
1742
+ */
1743
+ 200: Volo_Abp_Account_VerifyAuthenticatorCodeDto;
1744
+ /**
1745
+ * Bad Request
1746
+ */
1747
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1748
+ /**
1749
+ * Unauthorized
1750
+ */
1751
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1752
+ /**
1753
+ * Forbidden
1754
+ */
1755
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1756
+ /**
1757
+ * Not Found
1758
+ */
1759
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1760
+ /**
1761
+ * Server Error
1762
+ */
1763
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1764
+ /**
1765
+ * Server Error
1766
+ */
1767
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1768
+ };
1769
+ };
1770
+ };
1771
+ '/api/account/reset-authenticator': {
1772
+ post: {
1773
+ res: {
1774
+ /**
1775
+ * Success
1776
+ */
1777
+ 200: unknown;
1778
+ /**
1779
+ * Bad Request
1780
+ */
1781
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1782
+ /**
1783
+ * Unauthorized
1784
+ */
1785
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1786
+ /**
1787
+ * Forbidden
1788
+ */
1789
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1790
+ /**
1791
+ * Not Found
1792
+ */
1793
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1794
+ /**
1795
+ * Server Error
1796
+ */
1797
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1798
+ /**
1799
+ * Server Error
1800
+ */
1801
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1802
+ };
1803
+ };
1804
+ };
1805
+ '/api/account/has-authenticator-key': {
1806
+ get: {
1807
+ res: {
1808
+ /**
1809
+ * Success
1810
+ */
1811
+ 200: boolean;
1812
+ /**
1813
+ * Bad Request
1814
+ */
1815
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1816
+ /**
1817
+ * Unauthorized
1818
+ */
1819
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1820
+ /**
1821
+ * Forbidden
1822
+ */
1823
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1824
+ /**
1825
+ * Not Found
1826
+ */
1827
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1828
+ /**
1829
+ * Server Error
1830
+ */
1831
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1832
+ /**
1833
+ * Server Error
1834
+ */
1835
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1836
+ };
1837
+ };
1838
+ };
1839
+ '/api/account/authenticator-info': {
1840
+ get: {
1841
+ res: {
1842
+ /**
1843
+ * Success
1844
+ */
1845
+ 200: Volo_Abp_Account_AuthenticatorInfoDto;
1846
+ /**
1847
+ * Bad Request
1848
+ */
1849
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1850
+ /**
1851
+ * Unauthorized
1852
+ */
1853
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1854
+ /**
1855
+ * Forbidden
1856
+ */
1857
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1858
+ /**
1859
+ * Not Found
1860
+ */
1861
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1862
+ /**
1863
+ * Server Error
1864
+ */
1865
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1866
+ /**
1867
+ * Server Error
1868
+ */
1869
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1870
+ };
1871
+ };
1872
+ };
1873
+ '/api/account/profile-picture-file/{id}': {
1874
+ get: {
1875
+ req: GetApiAccountProfilePictureFileByIdData;
1876
+ res: {
1877
+ /**
1878
+ * Success
1879
+ */
1880
+ 200: (Blob | File);
1881
+ /**
1882
+ * Bad Request
1883
+ */
1884
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1885
+ /**
1886
+ * Unauthorized
1887
+ */
1888
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1889
+ /**
1890
+ * Forbidden
1891
+ */
1892
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1893
+ /**
1894
+ * Not Found
1895
+ */
1896
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1897
+ /**
1898
+ * Server Error
1899
+ */
1900
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1901
+ /**
1902
+ * Server Error
1903
+ */
1904
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1905
+ };
1906
+ };
1907
+ };
1908
+ '/api/account/recaptcha-validate': {
1909
+ get: {
1910
+ req: GetApiAccountRecaptchaValidateData;
1911
+ res: {
1912
+ /**
1913
+ * Success
1914
+ */
1915
+ 200: unknown;
1916
+ /**
1917
+ * Bad Request
1918
+ */
1919
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1920
+ /**
1921
+ * Unauthorized
1922
+ */
1923
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1924
+ /**
1925
+ * Forbidden
1926
+ */
1927
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1928
+ /**
1929
+ * Not Found
1930
+ */
1931
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1932
+ /**
1933
+ * Server Error
1934
+ */
1935
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1936
+ /**
1937
+ * Server Error
1938
+ */
1939
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1940
+ };
1941
+ };
1942
+ };
1943
+ '/api/account/external-provider': {
1944
+ get: {
1945
+ res: {
1946
+ /**
1947
+ * Success
1948
+ */
1949
+ 200: Volo_Abp_Account_ExternalProviders_ExternalProviderDto;
1950
+ /**
1951
+ * Bad Request
1952
+ */
1953
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1954
+ /**
1955
+ * Unauthorized
1956
+ */
1957
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1958
+ /**
1959
+ * Forbidden
1960
+ */
1961
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1962
+ /**
1963
+ * Not Found
1964
+ */
1965
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1966
+ /**
1967
+ * Server Error
1968
+ */
1969
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1970
+ /**
1971
+ * Server Error
1972
+ */
1973
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1974
+ };
1975
+ };
1976
+ };
1977
+ '/api/account/external-provider/by-name': {
1978
+ get: {
1979
+ req: GetApiAccountExternalProviderByNameData;
1980
+ res: {
1981
+ /**
1982
+ * Success
1983
+ */
1984
+ 200: Volo_Abp_Account_ExternalProviders_ExternalProviderItemWithSecretDto;
1985
+ /**
1986
+ * Bad Request
1987
+ */
1988
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1989
+ /**
1990
+ * Unauthorized
1991
+ */
1992
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1993
+ /**
1994
+ * Forbidden
1995
+ */
1996
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1997
+ /**
1998
+ * Not Found
1999
+ */
2000
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
2001
+ /**
2002
+ * Server Error
2003
+ */
2004
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
2005
+ /**
2006
+ * Server Error
2007
+ */
2008
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
2009
+ };
2010
+ };
2011
+ };
2012
+ '/api/account-admin/settings': {
2013
+ get: {
2014
+ res: {
2015
+ /**
2016
+ * Success
2017
+ */
2018
+ 200: Volo_Abp_Account_AccountSettingsDto;
2019
+ /**
2020
+ * Bad Request
2021
+ */
2022
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
2023
+ /**
2024
+ * Unauthorized
2025
+ */
2026
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
2027
+ /**
2028
+ * Forbidden
2029
+ */
2030
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
2031
+ /**
2032
+ * Not Found
2033
+ */
2034
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
2035
+ /**
2036
+ * Server Error
2037
+ */
2038
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
2039
+ /**
2040
+ * Server Error
2041
+ */
2042
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
2043
+ };
2044
+ };
2045
+ put: {
2046
+ req: PutApiAccountAdminSettingsData;
2047
+ res: {
2048
+ /**
2049
+ * Success
2050
+ */
2051
+ 200: unknown;
2052
+ /**
2053
+ * Bad Request
2054
+ */
2055
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
2056
+ /**
2057
+ * Unauthorized
2058
+ */
2059
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
2060
+ /**
2061
+ * Forbidden
2062
+ */
2063
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
2064
+ /**
2065
+ * Not Found
2066
+ */
2067
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
2068
+ /**
2069
+ * Server Error
2070
+ */
2071
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
2072
+ /**
2073
+ * Server Error
2074
+ */
2075
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
2076
+ };
2077
+ };
2078
+ };
2079
+ '/api/account-admin/settings/two-factor': {
2080
+ get: {
2081
+ res: {
2082
+ /**
2083
+ * Success
2084
+ */
2085
+ 200: Volo_Abp_Account_AccountTwoFactorSettingsDto;
2086
+ /**
2087
+ * Bad Request
2088
+ */
2089
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
2090
+ /**
2091
+ * Unauthorized
2092
+ */
2093
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
2094
+ /**
2095
+ * Forbidden
2096
+ */
2097
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
2098
+ /**
2099
+ * Not Found
2100
+ */
2101
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
2102
+ /**
2103
+ * Server Error
2104
+ */
2105
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
2106
+ /**
2107
+ * Server Error
2108
+ */
2109
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
2110
+ };
2111
+ };
2112
+ put: {
2113
+ req: PutApiAccountAdminSettingsTwoFactorData;
2114
+ res: {
2115
+ /**
2116
+ * Success
2117
+ */
2118
+ 200: unknown;
2119
+ /**
2120
+ * Bad Request
2121
+ */
2122
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
2123
+ /**
2124
+ * Unauthorized
2125
+ */
2126
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
2127
+ /**
2128
+ * Forbidden
2129
+ */
2130
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
2131
+ /**
2132
+ * Not Found
2133
+ */
2134
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
2135
+ /**
2136
+ * Server Error
2137
+ */
2138
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
2139
+ /**
2140
+ * Server Error
2141
+ */
2142
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
2143
+ };
2144
+ };
2145
+ };
2146
+ '/api/account-admin/settings/recaptcha': {
2147
+ get: {
2148
+ res: {
2149
+ /**
2150
+ * Success
2151
+ */
2152
+ 200: Volo_Abp_Account_AccountRecaptchaSettingsDto;
2153
+ /**
2154
+ * Bad Request
2155
+ */
2156
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
2157
+ /**
2158
+ * Unauthorized
2159
+ */
2160
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
2161
+ /**
2162
+ * Forbidden
2163
+ */
2164
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
2165
+ /**
2166
+ * Not Found
2167
+ */
2168
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
2169
+ /**
2170
+ * Server Error
2171
+ */
2172
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
2173
+ /**
2174
+ * Server Error
2175
+ */
2176
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
2177
+ };
2178
+ };
2179
+ put: {
2180
+ req: PutApiAccountAdminSettingsRecaptchaData;
2181
+ res: {
2182
+ /**
2183
+ * Success
2184
+ */
2185
+ 200: unknown;
2186
+ /**
2187
+ * Bad Request
2188
+ */
2189
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
2190
+ /**
2191
+ * Unauthorized
2192
+ */
2193
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
2194
+ /**
2195
+ * Forbidden
2196
+ */
2197
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
2198
+ /**
2199
+ * Not Found
2200
+ */
2201
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
2202
+ /**
2203
+ * Server Error
2204
+ */
2205
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
2206
+ /**
2207
+ * Server Error
2208
+ */
2209
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
2210
+ };
2211
+ };
2212
+ };
2213
+ '/api/account-admin/settings/external-provider': {
2214
+ get: {
2215
+ res: {
2216
+ /**
2217
+ * Success
2218
+ */
2219
+ 200: Volo_Abp_Account_AccountExternalProviderSettingsDto;
2220
+ /**
2221
+ * Bad Request
2222
+ */
2223
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
2224
+ /**
2225
+ * Unauthorized
2226
+ */
2227
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
2228
+ /**
2229
+ * Forbidden
2230
+ */
2231
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
2232
+ /**
2233
+ * Not Found
2234
+ */
2235
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
2236
+ /**
2237
+ * Server Error
2238
+ */
2239
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
2240
+ /**
2241
+ * Server Error
2242
+ */
2243
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
2244
+ };
2245
+ };
2246
+ put: {
2247
+ req: PutApiAccountAdminSettingsExternalProviderData;
2248
+ res: {
2249
+ /**
2250
+ * Success
2251
+ */
2252
+ 200: unknown;
2253
+ /**
2254
+ * Bad Request
2255
+ */
2256
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
2257
+ /**
2258
+ * Unauthorized
2259
+ */
2260
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
2261
+ /**
2262
+ * Forbidden
2263
+ */
2264
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
2265
+ /**
2266
+ * Not Found
2267
+ */
2268
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
2269
+ /**
2270
+ * Server Error
2271
+ */
2272
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
2273
+ /**
2274
+ * Server Error
2275
+ */
2276
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
2277
+ };
2278
+ };
2279
+ };
2280
+ '/api/account/dynamic-claims/refresh': {
2281
+ post: {
2282
+ res: {
2283
+ /**
2284
+ * Success
2285
+ */
2286
+ 200: unknown;
2287
+ /**
2288
+ * Bad Request
2289
+ */
2290
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
2291
+ /**
2292
+ * Unauthorized
2293
+ */
2294
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
2295
+ /**
2296
+ * Forbidden
2297
+ */
2298
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
2299
+ /**
2300
+ * Not Found
2301
+ */
2302
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
2303
+ /**
2304
+ * Server Error
2305
+ */
2306
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
2307
+ /**
2308
+ * Server Error
2309
+ */
2310
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
2311
+ };
2312
+ };
2313
+ };
2314
+ '/api/account/login': {
2315
+ post: {
2316
+ req: PostApiAccountLoginData;
2317
+ res: {
2318
+ /**
2319
+ * Success
2320
+ */
2321
+ 200: Volo_Abp_Account_Public_Web_Areas_Account_Controllers_Models_AbpLoginResult;
2322
+ /**
2323
+ * Bad Request
2324
+ */
2325
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
2326
+ /**
2327
+ * Unauthorized
2328
+ */
2329
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
2330
+ /**
2331
+ * Forbidden
2332
+ */
2333
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
2334
+ /**
2335
+ * Not Found
2336
+ */
2337
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
2338
+ /**
2339
+ * Server Error
2340
+ */
2341
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
2342
+ /**
2343
+ * Server Error
2344
+ */
2345
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
2346
+ };
2347
+ };
2348
+ };
2349
+ '/api/account/linkLogin': {
2350
+ post: {
2351
+ req: PostApiAccountLinkLoginData;
2352
+ res: {
2353
+ /**
2354
+ * Success
2355
+ */
2356
+ 200: Volo_Abp_Account_Public_Web_Areas_Account_Controllers_Models_AbpLoginResult;
2357
+ /**
2358
+ * Bad Request
2359
+ */
2360
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
2361
+ /**
2362
+ * Unauthorized
2363
+ */
2364
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
2365
+ /**
2366
+ * Forbidden
2367
+ */
2368
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
2369
+ /**
2370
+ * Not Found
2371
+ */
2372
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
2373
+ /**
2374
+ * Server Error
2375
+ */
2376
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
2377
+ /**
2378
+ * Server Error
2379
+ */
2380
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
2381
+ };
2382
+ };
2383
+ };
2384
+ '/api/account/logout': {
2385
+ get: {
2386
+ res: {
2387
+ /**
2388
+ * Success
2389
+ */
2390
+ 200: unknown;
2391
+ /**
2392
+ * Bad Request
2393
+ */
2394
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
2395
+ /**
2396
+ * Unauthorized
2397
+ */
2398
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
2399
+ /**
2400
+ * Forbidden
2401
+ */
2402
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
2403
+ /**
2404
+ * Not Found
2405
+ */
2406
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
2407
+ /**
2408
+ * Server Error
2409
+ */
2410
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
2411
+ /**
2412
+ * Server Error
2413
+ */
2414
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
2415
+ };
2416
+ };
2417
+ };
2418
+ '/api/account/checkPassword': {
2419
+ post: {
2420
+ req: PostApiAccountCheckPasswordData;
2421
+ res: {
2422
+ /**
2423
+ * Success
2424
+ */
2425
+ 200: Volo_Abp_Account_Public_Web_Areas_Account_Controllers_Models_AbpLoginResult;
2426
+ /**
2427
+ * Bad Request
2428
+ */
2429
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
2430
+ /**
2431
+ * Unauthorized
2432
+ */
2433
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
2434
+ /**
2435
+ * Forbidden
2436
+ */
2437
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
2438
+ /**
2439
+ * Not Found
2440
+ */
2441
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
2442
+ /**
2443
+ * Server Error
2444
+ */
2445
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
2446
+ /**
2447
+ * Server Error
2448
+ */
2449
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
2450
+ };
2451
+ };
2452
+ };
2453
+ '/api/account/my-profile': {
2454
+ get: {
2455
+ res: {
2456
+ /**
2457
+ * Success
2458
+ */
2459
+ 200: Volo_Abp_Account_ProfileDto;
2460
+ /**
2461
+ * Bad Request
2462
+ */
2463
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
2464
+ /**
2465
+ * Unauthorized
2466
+ */
2467
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
2468
+ /**
2469
+ * Forbidden
2470
+ */
2471
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
2472
+ /**
2473
+ * Not Found
2474
+ */
2475
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
2476
+ /**
2477
+ * Server Error
2478
+ */
2479
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
2480
+ /**
2481
+ * Server Error
2482
+ */
2483
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
2484
+ };
2485
+ };
2486
+ put: {
2487
+ req: PutApiAccountMyProfileData;
2488
+ res: {
2489
+ /**
2490
+ * Success
2491
+ */
2492
+ 200: Volo_Abp_Account_ProfileDto;
2493
+ /**
2494
+ * Bad Request
2495
+ */
2496
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
2497
+ /**
2498
+ * Unauthorized
2499
+ */
2500
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
2501
+ /**
2502
+ * Forbidden
2503
+ */
2504
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
2505
+ /**
2506
+ * Not Found
2507
+ */
2508
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
2509
+ /**
2510
+ * Server Error
2511
+ */
2512
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
2513
+ /**
2514
+ * Server Error
2515
+ */
2516
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
2517
+ };
2518
+ };
2519
+ };
2520
+ '/api/account/my-profile/change-password': {
2521
+ post: {
2522
+ req: PostApiAccountMyProfileChangePasswordData;
2523
+ res: {
2524
+ /**
2525
+ * Success
2526
+ */
2527
+ 200: unknown;
2528
+ /**
2529
+ * Bad Request
2530
+ */
2531
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
2532
+ /**
2533
+ * Unauthorized
2534
+ */
2535
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
2536
+ /**
2537
+ * Forbidden
2538
+ */
2539
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
2540
+ /**
2541
+ * Not Found
2542
+ */
2543
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
2544
+ /**
2545
+ * Server Error
2546
+ */
2547
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
2548
+ /**
2549
+ * Server Error
2550
+ */
2551
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
2552
+ };
2553
+ };
2554
+ };
2555
+ '/api/account/my-profile/two-factor-enabled': {
2556
+ get: {
2557
+ res: {
2558
+ /**
2559
+ * Success
2560
+ */
2561
+ 200: boolean;
2562
+ /**
2563
+ * Bad Request
2564
+ */
2565
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
2566
+ /**
2567
+ * Unauthorized
2568
+ */
2569
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
2570
+ /**
2571
+ * Forbidden
2572
+ */
2573
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
2574
+ /**
2575
+ * Not Found
2576
+ */
2577
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
2578
+ /**
2579
+ * Server Error
2580
+ */
2581
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
2582
+ /**
2583
+ * Server Error
2584
+ */
2585
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
2586
+ };
2587
+ };
2588
+ };
2589
+ '/api/account/my-profile/set-two-factor-enabled': {
2590
+ post: {
2591
+ req: PostApiAccountMyProfileSetTwoFactorEnabledData;
2592
+ res: {
2593
+ /**
2594
+ * Success
2595
+ */
2596
+ 200: unknown;
2597
+ /**
2598
+ * Bad Request
2599
+ */
2600
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
2601
+ /**
2602
+ * Unauthorized
2603
+ */
2604
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
2605
+ /**
2606
+ * Forbidden
2607
+ */
2608
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
2609
+ /**
2610
+ * Not Found
2611
+ */
2612
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
2613
+ /**
2614
+ * Server Error
2615
+ */
2616
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
2617
+ /**
2618
+ * Server Error
2619
+ */
2620
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
2621
+ };
2622
+ };
2623
+ };
2624
+ '/api/account/my-profile/can-enable-two-factor': {
2625
+ get: {
2626
+ res: {
2627
+ /**
2628
+ * Success
2629
+ */
2630
+ 200: boolean;
2631
+ /**
2632
+ * Bad Request
2633
+ */
2634
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
2635
+ /**
2636
+ * Unauthorized
2637
+ */
2638
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
2639
+ /**
2640
+ * Forbidden
2641
+ */
2642
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
2643
+ /**
2644
+ * Not Found
2645
+ */
2646
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
2647
+ /**
2648
+ * Server Error
2649
+ */
2650
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
2651
+ /**
2652
+ * Server Error
2653
+ */
2654
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
2655
+ };
2656
+ };
2657
+ };
2658
+ '/api/account/my-profile/timezones': {
2659
+ get: {
2660
+ res: {
2661
+ /**
2662
+ * Success
2663
+ */
2664
+ 200: Array<Volo_Abp_NameValue>;
2665
+ /**
2666
+ * Bad Request
2667
+ */
2668
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
2669
+ /**
2670
+ * Unauthorized
2671
+ */
2672
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
2673
+ /**
2674
+ * Forbidden
2675
+ */
2676
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
2677
+ /**
2678
+ * Not Found
2679
+ */
2680
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
2681
+ /**
2682
+ * Server Error
2683
+ */
2684
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
2685
+ /**
2686
+ * Server Error
2687
+ */
2688
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
2689
+ };
2690
+ };
2691
+ };
2692
+ '/api/account/link-user/link': {
2693
+ post: {
2694
+ req: PostApiAccountLinkUserLinkData;
2695
+ res: {
2696
+ /**
2697
+ * Success
2698
+ */
2699
+ 200: unknown;
2700
+ /**
2701
+ * Bad Request
2702
+ */
2703
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
2704
+ /**
2705
+ * Unauthorized
2706
+ */
2707
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
2708
+ /**
2709
+ * Forbidden
2710
+ */
2711
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
2712
+ /**
2713
+ * Not Found
2714
+ */
2715
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
2716
+ /**
2717
+ * Server Error
2718
+ */
2719
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
2720
+ /**
2721
+ * Server Error
2722
+ */
2723
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
2724
+ };
2725
+ };
2726
+ };
2727
+ '/api/account/link-user/unlink': {
2728
+ post: {
2729
+ req: PostApiAccountLinkUserUnlinkData;
2730
+ res: {
2731
+ /**
2732
+ * Success
2733
+ */
2734
+ 200: unknown;
2735
+ /**
2736
+ * Bad Request
2737
+ */
2738
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
2739
+ /**
2740
+ * Unauthorized
2741
+ */
2742
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
2743
+ /**
2744
+ * Forbidden
2745
+ */
2746
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
2747
+ /**
2748
+ * Not Found
2749
+ */
2750
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
2751
+ /**
2752
+ * Server Error
2753
+ */
2754
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
2755
+ /**
2756
+ * Server Error
2757
+ */
2758
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
2759
+ };
2760
+ };
2761
+ };
2762
+ '/api/account/link-user/is-linked': {
2763
+ post: {
2764
+ req: PostApiAccountLinkUserIsLinkedData;
2765
+ res: {
2766
+ /**
2767
+ * Success
2768
+ */
2769
+ 200: boolean;
2770
+ /**
2771
+ * Bad Request
2772
+ */
2773
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
2774
+ /**
2775
+ * Unauthorized
2776
+ */
2777
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
2778
+ /**
2779
+ * Forbidden
2780
+ */
2781
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
2782
+ /**
2783
+ * Not Found
2784
+ */
2785
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
2786
+ /**
2787
+ * Server Error
2788
+ */
2789
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
2790
+ /**
2791
+ * Server Error
2792
+ */
2793
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
2794
+ };
2795
+ };
2796
+ };
2797
+ '/api/account/link-user/generate-link-token': {
2798
+ post: {
2799
+ res: {
2800
+ /**
2801
+ * Success
2802
+ */
2803
+ 200: string;
2804
+ /**
2805
+ * Bad Request
2806
+ */
2807
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
2808
+ /**
2809
+ * Unauthorized
2810
+ */
2811
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
2812
+ /**
2813
+ * Forbidden
2814
+ */
2815
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
2816
+ /**
2817
+ * Not Found
2818
+ */
2819
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
2820
+ /**
2821
+ * Server Error
2822
+ */
2823
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
2824
+ /**
2825
+ * Server Error
2826
+ */
2827
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
2828
+ };
2829
+ };
2830
+ };
2831
+ '/api/account/link-user/verify-link-token': {
2832
+ post: {
2833
+ req: PostApiAccountLinkUserVerifyLinkTokenData;
2834
+ res: {
2835
+ /**
2836
+ * Success
2837
+ */
2838
+ 200: boolean;
2839
+ /**
2840
+ * Bad Request
2841
+ */
2842
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
2843
+ /**
2844
+ * Unauthorized
2845
+ */
2846
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
2847
+ /**
2848
+ * Forbidden
2849
+ */
2850
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
2851
+ /**
2852
+ * Not Found
2853
+ */
2854
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
2855
+ /**
2856
+ * Server Error
2857
+ */
2858
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
2859
+ /**
2860
+ * Server Error
2861
+ */
2862
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
2863
+ };
2864
+ };
2865
+ };
2866
+ '/api/account/link-user/generate-link-login-token': {
2867
+ post: {
2868
+ res: {
2869
+ /**
2870
+ * Success
2871
+ */
2872
+ 200: string;
2873
+ /**
2874
+ * Bad Request
2875
+ */
2876
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
2877
+ /**
2878
+ * Unauthorized
2879
+ */
2880
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
2881
+ /**
2882
+ * Forbidden
2883
+ */
2884
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
2885
+ /**
2886
+ * Not Found
2887
+ */
2888
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
2889
+ /**
2890
+ * Server Error
2891
+ */
2892
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
2893
+ /**
2894
+ * Server Error
2895
+ */
2896
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
2897
+ };
2898
+ };
2899
+ };
2900
+ '/api/account/link-user/verify-link-login-token': {
2901
+ post: {
2902
+ req: PostApiAccountLinkUserVerifyLinkLoginTokenData;
2903
+ res: {
2904
+ /**
2905
+ * Success
2906
+ */
2907
+ 200: boolean;
2908
+ /**
2909
+ * Bad Request
2910
+ */
2911
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
2912
+ /**
2913
+ * Unauthorized
2914
+ */
2915
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
2916
+ /**
2917
+ * Forbidden
2918
+ */
2919
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
2920
+ /**
2921
+ * Not Found
2922
+ */
2923
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
2924
+ /**
2925
+ * Server Error
2926
+ */
2927
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
2928
+ /**
2929
+ * Server Error
2930
+ */
2931
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
2932
+ };
2933
+ };
2934
+ };
2935
+ '/api/account/link-user': {
2936
+ get: {
2937
+ res: {
2938
+ /**
2939
+ * Success
2940
+ */
2941
+ 200: Volo_Abp_Application_Dtos_ListResultDto_1;
2942
+ /**
2943
+ * Bad Request
2944
+ */
2945
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
2946
+ /**
2947
+ * Unauthorized
2948
+ */
2949
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
2950
+ /**
2951
+ * Forbidden
2952
+ */
2953
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
2954
+ /**
2955
+ * Not Found
2956
+ */
2957
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
2958
+ /**
2959
+ * Server Error
2960
+ */
2961
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
2962
+ /**
2963
+ * Server Error
2964
+ */
2965
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
2966
+ };
2967
+ };
2968
+ };
2969
+ '/api/account/user-delegation/delegated-users': {
2970
+ get: {
2971
+ res: {
2972
+ /**
2973
+ * Success
2974
+ */
2975
+ 200: Volo_Abp_Application_Dtos_ListResultDto_1;
2976
+ /**
2977
+ * Bad Request
2978
+ */
2979
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
2980
+ /**
2981
+ * Unauthorized
2982
+ */
2983
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
2984
+ /**
2985
+ * Forbidden
2986
+ */
2987
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
2988
+ /**
2989
+ * Not Found
2990
+ */
2991
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
2992
+ /**
2993
+ * Server Error
2994
+ */
2995
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
2996
+ /**
2997
+ * Server Error
2998
+ */
2999
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
3000
+ };
3001
+ };
3002
+ };
3003
+ '/api/account/user-delegation/my-delegated-users': {
3004
+ get: {
3005
+ res: {
3006
+ /**
3007
+ * Success
3008
+ */
3009
+ 200: Volo_Abp_Application_Dtos_ListResultDto_1;
3010
+ /**
3011
+ * Bad Request
3012
+ */
3013
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
3014
+ /**
3015
+ * Unauthorized
3016
+ */
3017
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
3018
+ /**
3019
+ * Forbidden
3020
+ */
3021
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
3022
+ /**
3023
+ * Not Found
3024
+ */
3025
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
3026
+ /**
3027
+ * Server Error
3028
+ */
3029
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
3030
+ /**
3031
+ * Server Error
3032
+ */
3033
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
3034
+ };
3035
+ };
3036
+ };
3037
+ '/api/account/user-delegation/active-delegations': {
3038
+ get: {
3039
+ res: {
3040
+ /**
3041
+ * Success
3042
+ */
3043
+ 200: Volo_Abp_Application_Dtos_ListResultDto_1;
3044
+ /**
3045
+ * Bad Request
3046
+ */
3047
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
3048
+ /**
3049
+ * Unauthorized
3050
+ */
3051
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
3052
+ /**
3053
+ * Forbidden
3054
+ */
3055
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
3056
+ /**
3057
+ * Not Found
3058
+ */
3059
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
3060
+ /**
3061
+ * Server Error
3062
+ */
3063
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
3064
+ /**
3065
+ * Server Error
3066
+ */
3067
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
3068
+ };
3069
+ };
3070
+ };
3071
+ '/api/account/user-delegation/user-lookup': {
3072
+ get: {
3073
+ req: GetApiAccountUserDelegationUserLookupData;
3074
+ res: {
3075
+ /**
3076
+ * Success
3077
+ */
3078
+ 200: Volo_Abp_Application_Dtos_ListResultDto_1;
3079
+ /**
3080
+ * Bad Request
3081
+ */
3082
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
3083
+ /**
3084
+ * Unauthorized
3085
+ */
3086
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
3087
+ /**
3088
+ * Forbidden
3089
+ */
3090
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
3091
+ /**
3092
+ * Not Found
3093
+ */
3094
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
3095
+ /**
3096
+ * Server Error
3097
+ */
3098
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
3099
+ /**
3100
+ * Server Error
3101
+ */
3102
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
3103
+ };
3104
+ };
3105
+ };
3106
+ '/api/account/user-delegation/delegate-new-user': {
3107
+ post: {
3108
+ req: PostApiAccountUserDelegationDelegateNewUserData;
3109
+ res: {
3110
+ /**
3111
+ * Success
3112
+ */
3113
+ 200: unknown;
3114
+ /**
3115
+ * Bad Request
3116
+ */
3117
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
3118
+ /**
3119
+ * Unauthorized
3120
+ */
3121
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
3122
+ /**
3123
+ * Forbidden
3124
+ */
3125
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
3126
+ /**
3127
+ * Not Found
3128
+ */
3129
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
3130
+ /**
3131
+ * Server Error
3132
+ */
3133
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
3134
+ /**
3135
+ * Server Error
3136
+ */
3137
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
3138
+ };
3139
+ };
3140
+ };
3141
+ '/api/account/user-delegation/delete-delegation': {
3142
+ post: {
3143
+ req: PostApiAccountUserDelegationDeleteDelegationData;
3144
+ res: {
3145
+ /**
3146
+ * Success
3147
+ */
3148
+ 200: unknown;
3149
+ /**
3150
+ * Bad Request
3151
+ */
3152
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
3153
+ /**
3154
+ * Unauthorized
3155
+ */
3156
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
3157
+ /**
3158
+ * Forbidden
3159
+ */
3160
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
3161
+ /**
3162
+ * Not Found
3163
+ */
3164
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
3165
+ /**
3166
+ * Server Error
3167
+ */
3168
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
3169
+ /**
3170
+ * Server Error
3171
+ */
3172
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
3173
+ };
3174
+ };
3175
+ };
3176
+ };