@ayasofyazilim/saas 0.0.8 → 0.0.10

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 (45) 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 +3279 -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 +2868 -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 +5707 -0
  40. package/ProjectService/ProjectServiceClient.ts +53 -0
  41. package/ProjectService/core/BaseHttpRequest.ts +10 -0
  42. package/ProjectService/core/FetchHttpRequest.ts +22 -0
  43. package/ProjectService/index.ts +2 -0
  44. package/ProjectService/services.gen.ts +55 -42
  45. package/package.json +10 -5
@@ -0,0 +1,3279 @@
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: {
1039
+ includeTypes?: boolean;
1040
+ };
1041
+ res: {
1042
+ /**
1043
+ * Success
1044
+ */
1045
+ 200: Volo_Abp_Http_Modeling_ApplicationApiDescriptionModel;
1046
+ /**
1047
+ * Bad Request
1048
+ */
1049
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1050
+ /**
1051
+ * Unauthorized
1052
+ */
1053
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1054
+ /**
1055
+ * Forbidden
1056
+ */
1057
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1058
+ /**
1059
+ * Not Found
1060
+ */
1061
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1062
+ /**
1063
+ * Server Error
1064
+ */
1065
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1066
+ /**
1067
+ * Server Error
1068
+ */
1069
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1070
+ };
1071
+ };
1072
+ };
1073
+ '/api/abp/application-configuration': {
1074
+ get: {
1075
+ req: {
1076
+ includeLocalizationResources?: boolean;
1077
+ };
1078
+ res: {
1079
+ /**
1080
+ * Success
1081
+ */
1082
+ 200: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationConfigurationDto;
1083
+ /**
1084
+ * Bad Request
1085
+ */
1086
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1087
+ /**
1088
+ * Unauthorized
1089
+ */
1090
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1091
+ /**
1092
+ * Forbidden
1093
+ */
1094
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1095
+ /**
1096
+ * Not Found
1097
+ */
1098
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1099
+ /**
1100
+ * Server Error
1101
+ */
1102
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1103
+ /**
1104
+ * Server Error
1105
+ */
1106
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1107
+ };
1108
+ };
1109
+ };
1110
+ '/api/abp/application-localization': {
1111
+ get: {
1112
+ req: {
1113
+ cultureName: string;
1114
+ onlyDynamics?: boolean;
1115
+ };
1116
+ res: {
1117
+ /**
1118
+ * Success
1119
+ */
1120
+ 200: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationDto;
1121
+ /**
1122
+ * Bad Request
1123
+ */
1124
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1125
+ /**
1126
+ * Unauthorized
1127
+ */
1128
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1129
+ /**
1130
+ * Forbidden
1131
+ */
1132
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1133
+ /**
1134
+ * Not Found
1135
+ */
1136
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1137
+ /**
1138
+ * Server Error
1139
+ */
1140
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1141
+ /**
1142
+ * Server Error
1143
+ */
1144
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1145
+ };
1146
+ };
1147
+ };
1148
+ '/api/abp/multi-tenancy/tenants/by-name/{name}': {
1149
+ get: {
1150
+ req: {
1151
+ name: string;
1152
+ };
1153
+ res: {
1154
+ /**
1155
+ * Success
1156
+ */
1157
+ 200: Volo_Abp_AspNetCore_Mvc_MultiTenancy_FindTenantResultDto;
1158
+ /**
1159
+ * Bad Request
1160
+ */
1161
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1162
+ /**
1163
+ * Unauthorized
1164
+ */
1165
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1166
+ /**
1167
+ * Forbidden
1168
+ */
1169
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1170
+ /**
1171
+ * Not Found
1172
+ */
1173
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1174
+ /**
1175
+ * Server Error
1176
+ */
1177
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1178
+ /**
1179
+ * Server Error
1180
+ */
1181
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1182
+ };
1183
+ };
1184
+ };
1185
+ '/api/abp/multi-tenancy/tenants/by-id/{id}': {
1186
+ get: {
1187
+ req: {
1188
+ id: string;
1189
+ };
1190
+ res: {
1191
+ /**
1192
+ * Success
1193
+ */
1194
+ 200: Volo_Abp_AspNetCore_Mvc_MultiTenancy_FindTenantResultDto;
1195
+ /**
1196
+ * Bad Request
1197
+ */
1198
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1199
+ /**
1200
+ * Unauthorized
1201
+ */
1202
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1203
+ /**
1204
+ * Forbidden
1205
+ */
1206
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1207
+ /**
1208
+ * Not Found
1209
+ */
1210
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1211
+ /**
1212
+ * Server Error
1213
+ */
1214
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1215
+ /**
1216
+ * Server Error
1217
+ */
1218
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1219
+ };
1220
+ };
1221
+ };
1222
+ '/api/account/register': {
1223
+ post: {
1224
+ req: {
1225
+ requestBody?: Volo_Abp_Account_RegisterDto;
1226
+ };
1227
+ res: {
1228
+ /**
1229
+ * Success
1230
+ */
1231
+ 200: Volo_Abp_Identity_IdentityUserDto;
1232
+ /**
1233
+ * Bad Request
1234
+ */
1235
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1236
+ /**
1237
+ * Unauthorized
1238
+ */
1239
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1240
+ /**
1241
+ * Forbidden
1242
+ */
1243
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1244
+ /**
1245
+ * Not Found
1246
+ */
1247
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1248
+ /**
1249
+ * Server Error
1250
+ */
1251
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1252
+ /**
1253
+ * Server Error
1254
+ */
1255
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1256
+ };
1257
+ };
1258
+ };
1259
+ '/api/account/send-password-reset-code': {
1260
+ post: {
1261
+ req: {
1262
+ requestBody?: Volo_Abp_Account_SendPasswordResetCodeDto;
1263
+ };
1264
+ res: {
1265
+ /**
1266
+ * Success
1267
+ */
1268
+ 200: unknown;
1269
+ /**
1270
+ * Bad Request
1271
+ */
1272
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1273
+ /**
1274
+ * Unauthorized
1275
+ */
1276
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1277
+ /**
1278
+ * Forbidden
1279
+ */
1280
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1281
+ /**
1282
+ * Not Found
1283
+ */
1284
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1285
+ /**
1286
+ * Server Error
1287
+ */
1288
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1289
+ /**
1290
+ * Server Error
1291
+ */
1292
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1293
+ };
1294
+ };
1295
+ };
1296
+ '/api/account/verify-password-reset-token': {
1297
+ post: {
1298
+ req: {
1299
+ requestBody?: Volo_Abp_Account_VerifyPasswordResetTokenInput;
1300
+ };
1301
+ res: {
1302
+ /**
1303
+ * Success
1304
+ */
1305
+ 200: boolean;
1306
+ /**
1307
+ * Bad Request
1308
+ */
1309
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1310
+ /**
1311
+ * Unauthorized
1312
+ */
1313
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1314
+ /**
1315
+ * Forbidden
1316
+ */
1317
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1318
+ /**
1319
+ * Not Found
1320
+ */
1321
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1322
+ /**
1323
+ * Server Error
1324
+ */
1325
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1326
+ /**
1327
+ * Server Error
1328
+ */
1329
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1330
+ };
1331
+ };
1332
+ };
1333
+ '/api/account/reset-password': {
1334
+ post: {
1335
+ req: {
1336
+ requestBody?: Volo_Abp_Account_ResetPasswordDto;
1337
+ };
1338
+ res: {
1339
+ /**
1340
+ * Success
1341
+ */
1342
+ 200: unknown;
1343
+ /**
1344
+ * Bad Request
1345
+ */
1346
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1347
+ /**
1348
+ * Unauthorized
1349
+ */
1350
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1351
+ /**
1352
+ * Forbidden
1353
+ */
1354
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1355
+ /**
1356
+ * Not Found
1357
+ */
1358
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1359
+ /**
1360
+ * Server Error
1361
+ */
1362
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1363
+ /**
1364
+ * Server Error
1365
+ */
1366
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1367
+ };
1368
+ };
1369
+ };
1370
+ '/api/account/confirmation-state': {
1371
+ get: {
1372
+ req: {
1373
+ id?: string;
1374
+ };
1375
+ res: {
1376
+ /**
1377
+ * Success
1378
+ */
1379
+ 200: Volo_Abp_Account_IdentityUserConfirmationStateDto;
1380
+ /**
1381
+ * Bad Request
1382
+ */
1383
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1384
+ /**
1385
+ * Unauthorized
1386
+ */
1387
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1388
+ /**
1389
+ * Forbidden
1390
+ */
1391
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1392
+ /**
1393
+ * Not Found
1394
+ */
1395
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1396
+ /**
1397
+ * Server Error
1398
+ */
1399
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1400
+ /**
1401
+ * Server Error
1402
+ */
1403
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1404
+ };
1405
+ };
1406
+ };
1407
+ '/api/account/send-phone-number-confirmation-token': {
1408
+ post: {
1409
+ req: {
1410
+ requestBody?: Volo_Abp_Account_SendPhoneNumberConfirmationTokenDto;
1411
+ };
1412
+ res: {
1413
+ /**
1414
+ * Success
1415
+ */
1416
+ 200: unknown;
1417
+ /**
1418
+ * Bad Request
1419
+ */
1420
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1421
+ /**
1422
+ * Unauthorized
1423
+ */
1424
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1425
+ /**
1426
+ * Forbidden
1427
+ */
1428
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1429
+ /**
1430
+ * Not Found
1431
+ */
1432
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1433
+ /**
1434
+ * Server Error
1435
+ */
1436
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1437
+ /**
1438
+ * Server Error
1439
+ */
1440
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1441
+ };
1442
+ };
1443
+ };
1444
+ '/api/account/send-email-confirmation-token': {
1445
+ post: {
1446
+ req: {
1447
+ requestBody?: Volo_Abp_Account_SendEmailConfirmationTokenDto;
1448
+ };
1449
+ res: {
1450
+ /**
1451
+ * Success
1452
+ */
1453
+ 200: unknown;
1454
+ /**
1455
+ * Bad Request
1456
+ */
1457
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1458
+ /**
1459
+ * Unauthorized
1460
+ */
1461
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1462
+ /**
1463
+ * Forbidden
1464
+ */
1465
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1466
+ /**
1467
+ * Not Found
1468
+ */
1469
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1470
+ /**
1471
+ * Server Error
1472
+ */
1473
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1474
+ /**
1475
+ * Server Error
1476
+ */
1477
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1478
+ };
1479
+ };
1480
+ };
1481
+ '/api/account/verify-email-confirmation-token': {
1482
+ post: {
1483
+ req: {
1484
+ requestBody?: Volo_Abp_Account_VerifyEmailConfirmationTokenInput;
1485
+ };
1486
+ res: {
1487
+ /**
1488
+ * Success
1489
+ */
1490
+ 200: boolean;
1491
+ /**
1492
+ * Bad Request
1493
+ */
1494
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1495
+ /**
1496
+ * Unauthorized
1497
+ */
1498
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1499
+ /**
1500
+ * Forbidden
1501
+ */
1502
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1503
+ /**
1504
+ * Not Found
1505
+ */
1506
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1507
+ /**
1508
+ * Server Error
1509
+ */
1510
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1511
+ /**
1512
+ * Server Error
1513
+ */
1514
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1515
+ };
1516
+ };
1517
+ };
1518
+ '/api/account/confirm-phone-number': {
1519
+ post: {
1520
+ req: {
1521
+ requestBody?: Volo_Abp_Account_ConfirmPhoneNumberInput;
1522
+ };
1523
+ res: {
1524
+ /**
1525
+ * Success
1526
+ */
1527
+ 200: unknown;
1528
+ /**
1529
+ * Bad Request
1530
+ */
1531
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1532
+ /**
1533
+ * Unauthorized
1534
+ */
1535
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1536
+ /**
1537
+ * Forbidden
1538
+ */
1539
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1540
+ /**
1541
+ * Not Found
1542
+ */
1543
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1544
+ /**
1545
+ * Server Error
1546
+ */
1547
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1548
+ /**
1549
+ * Server Error
1550
+ */
1551
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1552
+ };
1553
+ };
1554
+ };
1555
+ '/api/account/confirm-email': {
1556
+ post: {
1557
+ req: {
1558
+ requestBody?: Volo_Abp_Account_ConfirmEmailInput;
1559
+ };
1560
+ res: {
1561
+ /**
1562
+ * Success
1563
+ */
1564
+ 200: unknown;
1565
+ /**
1566
+ * Bad Request
1567
+ */
1568
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1569
+ /**
1570
+ * Unauthorized
1571
+ */
1572
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1573
+ /**
1574
+ * Forbidden
1575
+ */
1576
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1577
+ /**
1578
+ * Not Found
1579
+ */
1580
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1581
+ /**
1582
+ * Server Error
1583
+ */
1584
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1585
+ /**
1586
+ * Server Error
1587
+ */
1588
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1589
+ };
1590
+ };
1591
+ };
1592
+ '/api/account/profile-picture': {
1593
+ post: {
1594
+ req: {
1595
+ formData?: {
1596
+ ImageContent?: (Blob | File);
1597
+ };
1598
+ type?: Volo_Abp_Account_ProfilePictureType;
1599
+ };
1600
+ res: {
1601
+ /**
1602
+ * Success
1603
+ */
1604
+ 200: unknown;
1605
+ /**
1606
+ * Bad Request
1607
+ */
1608
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1609
+ /**
1610
+ * Unauthorized
1611
+ */
1612
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1613
+ /**
1614
+ * Forbidden
1615
+ */
1616
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1617
+ /**
1618
+ * Not Found
1619
+ */
1620
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1621
+ /**
1622
+ * Server Error
1623
+ */
1624
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1625
+ /**
1626
+ * Server Error
1627
+ */
1628
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1629
+ };
1630
+ };
1631
+ };
1632
+ '/api/account/profile-picture/{id}': {
1633
+ get: {
1634
+ req: {
1635
+ id: string;
1636
+ };
1637
+ res: {
1638
+ /**
1639
+ * Success
1640
+ */
1641
+ 200: Volo_Abp_Account_ProfilePictureSourceDto;
1642
+ /**
1643
+ * Bad Request
1644
+ */
1645
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1646
+ /**
1647
+ * Unauthorized
1648
+ */
1649
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1650
+ /**
1651
+ * Forbidden
1652
+ */
1653
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1654
+ /**
1655
+ * Not Found
1656
+ */
1657
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1658
+ /**
1659
+ * Server Error
1660
+ */
1661
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1662
+ /**
1663
+ * Server Error
1664
+ */
1665
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1666
+ };
1667
+ };
1668
+ };
1669
+ '/api/account/two-factor-providers': {
1670
+ get: {
1671
+ req: {
1672
+ token: string;
1673
+ userId: string;
1674
+ };
1675
+ res: {
1676
+ /**
1677
+ * Success
1678
+ */
1679
+ 200: Array<(string)>;
1680
+ /**
1681
+ * Bad Request
1682
+ */
1683
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1684
+ /**
1685
+ * Unauthorized
1686
+ */
1687
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1688
+ /**
1689
+ * Forbidden
1690
+ */
1691
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1692
+ /**
1693
+ * Not Found
1694
+ */
1695
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1696
+ /**
1697
+ * Server Error
1698
+ */
1699
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1700
+ /**
1701
+ * Server Error
1702
+ */
1703
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1704
+ };
1705
+ };
1706
+ };
1707
+ '/api/account/send-two-factor-code': {
1708
+ post: {
1709
+ req: {
1710
+ requestBody?: Volo_Abp_Account_SendTwoFactorCodeInput;
1711
+ };
1712
+ res: {
1713
+ /**
1714
+ * Success
1715
+ */
1716
+ 200: unknown;
1717
+ /**
1718
+ * Bad Request
1719
+ */
1720
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1721
+ /**
1722
+ * Unauthorized
1723
+ */
1724
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1725
+ /**
1726
+ * Forbidden
1727
+ */
1728
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1729
+ /**
1730
+ * Not Found
1731
+ */
1732
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1733
+ /**
1734
+ * Server Error
1735
+ */
1736
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1737
+ /**
1738
+ * Server Error
1739
+ */
1740
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1741
+ };
1742
+ };
1743
+ };
1744
+ '/api/account/security-logs': {
1745
+ get: {
1746
+ req: {
1747
+ action?: string;
1748
+ applicationName?: string;
1749
+ clientId?: string;
1750
+ correlationId?: string;
1751
+ endTime?: string;
1752
+ extraProperties?: {
1753
+ [key: string]: unknown;
1754
+ };
1755
+ identity?: string;
1756
+ maxResultCount?: number;
1757
+ skipCount?: number;
1758
+ sorting?: string;
1759
+ startTime?: string;
1760
+ userName?: string;
1761
+ };
1762
+ res: {
1763
+ /**
1764
+ * Success
1765
+ */
1766
+ 200: Volo_Abp_Application_Dtos_PagedResultDto_1;
1767
+ /**
1768
+ * Bad Request
1769
+ */
1770
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1771
+ /**
1772
+ * Unauthorized
1773
+ */
1774
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1775
+ /**
1776
+ * Forbidden
1777
+ */
1778
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1779
+ /**
1780
+ * Not Found
1781
+ */
1782
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1783
+ /**
1784
+ * Server Error
1785
+ */
1786
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1787
+ /**
1788
+ * Server Error
1789
+ */
1790
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1791
+ };
1792
+ };
1793
+ };
1794
+ '/api/account/verify-authenticator-code': {
1795
+ post: {
1796
+ req: {
1797
+ requestBody?: Volo_Abp_Account_VerifyAuthenticatorCodeInput;
1798
+ };
1799
+ res: {
1800
+ /**
1801
+ * Success
1802
+ */
1803
+ 200: Volo_Abp_Account_VerifyAuthenticatorCodeDto;
1804
+ /**
1805
+ * Bad Request
1806
+ */
1807
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1808
+ /**
1809
+ * Unauthorized
1810
+ */
1811
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1812
+ /**
1813
+ * Forbidden
1814
+ */
1815
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1816
+ /**
1817
+ * Not Found
1818
+ */
1819
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1820
+ /**
1821
+ * Server Error
1822
+ */
1823
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1824
+ /**
1825
+ * Server Error
1826
+ */
1827
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1828
+ };
1829
+ };
1830
+ };
1831
+ '/api/account/reset-authenticator': {
1832
+ post: {
1833
+ res: {
1834
+ /**
1835
+ * Success
1836
+ */
1837
+ 200: unknown;
1838
+ /**
1839
+ * Bad Request
1840
+ */
1841
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1842
+ /**
1843
+ * Unauthorized
1844
+ */
1845
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1846
+ /**
1847
+ * Forbidden
1848
+ */
1849
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1850
+ /**
1851
+ * Not Found
1852
+ */
1853
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1854
+ /**
1855
+ * Server Error
1856
+ */
1857
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1858
+ /**
1859
+ * Server Error
1860
+ */
1861
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1862
+ };
1863
+ };
1864
+ };
1865
+ '/api/account/has-authenticator-key': {
1866
+ get: {
1867
+ res: {
1868
+ /**
1869
+ * Success
1870
+ */
1871
+ 200: boolean;
1872
+ /**
1873
+ * Bad Request
1874
+ */
1875
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1876
+ /**
1877
+ * Unauthorized
1878
+ */
1879
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1880
+ /**
1881
+ * Forbidden
1882
+ */
1883
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1884
+ /**
1885
+ * Not Found
1886
+ */
1887
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1888
+ /**
1889
+ * Server Error
1890
+ */
1891
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1892
+ /**
1893
+ * Server Error
1894
+ */
1895
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1896
+ };
1897
+ };
1898
+ };
1899
+ '/api/account/authenticator-info': {
1900
+ get: {
1901
+ res: {
1902
+ /**
1903
+ * Success
1904
+ */
1905
+ 200: Volo_Abp_Account_AuthenticatorInfoDto;
1906
+ /**
1907
+ * Bad Request
1908
+ */
1909
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1910
+ /**
1911
+ * Unauthorized
1912
+ */
1913
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1914
+ /**
1915
+ * Forbidden
1916
+ */
1917
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1918
+ /**
1919
+ * Not Found
1920
+ */
1921
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1922
+ /**
1923
+ * Server Error
1924
+ */
1925
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1926
+ /**
1927
+ * Server Error
1928
+ */
1929
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1930
+ };
1931
+ };
1932
+ };
1933
+ '/api/account/profile-picture-file/{id}': {
1934
+ get: {
1935
+ req: {
1936
+ id: string;
1937
+ };
1938
+ res: {
1939
+ /**
1940
+ * Success
1941
+ */
1942
+ 200: (Blob | File);
1943
+ /**
1944
+ * Bad Request
1945
+ */
1946
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1947
+ /**
1948
+ * Unauthorized
1949
+ */
1950
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1951
+ /**
1952
+ * Forbidden
1953
+ */
1954
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1955
+ /**
1956
+ * Not Found
1957
+ */
1958
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1959
+ /**
1960
+ * Server Error
1961
+ */
1962
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1963
+ /**
1964
+ * Server Error
1965
+ */
1966
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1967
+ };
1968
+ };
1969
+ };
1970
+ '/api/account/recaptcha-validate': {
1971
+ get: {
1972
+ req: {
1973
+ captchaResponse?: string;
1974
+ };
1975
+ res: {
1976
+ /**
1977
+ * Success
1978
+ */
1979
+ 200: unknown;
1980
+ /**
1981
+ * Bad Request
1982
+ */
1983
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1984
+ /**
1985
+ * Unauthorized
1986
+ */
1987
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1988
+ /**
1989
+ * Forbidden
1990
+ */
1991
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1992
+ /**
1993
+ * Not Found
1994
+ */
1995
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1996
+ /**
1997
+ * Server Error
1998
+ */
1999
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
2000
+ /**
2001
+ * Server Error
2002
+ */
2003
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
2004
+ };
2005
+ };
2006
+ };
2007
+ '/api/account/external-provider': {
2008
+ get: {
2009
+ res: {
2010
+ /**
2011
+ * Success
2012
+ */
2013
+ 200: Volo_Abp_Account_ExternalProviders_ExternalProviderDto;
2014
+ /**
2015
+ * Bad Request
2016
+ */
2017
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
2018
+ /**
2019
+ * Unauthorized
2020
+ */
2021
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
2022
+ /**
2023
+ * Forbidden
2024
+ */
2025
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
2026
+ /**
2027
+ * Not Found
2028
+ */
2029
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
2030
+ /**
2031
+ * Server Error
2032
+ */
2033
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
2034
+ /**
2035
+ * Server Error
2036
+ */
2037
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
2038
+ };
2039
+ };
2040
+ };
2041
+ '/api/account/external-provider/by-name': {
2042
+ get: {
2043
+ req: {
2044
+ name?: string;
2045
+ tenantId?: string;
2046
+ };
2047
+ res: {
2048
+ /**
2049
+ * Success
2050
+ */
2051
+ 200: Volo_Abp_Account_ExternalProviders_ExternalProviderItemWithSecretDto;
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': {
2080
+ get: {
2081
+ res: {
2082
+ /**
2083
+ * Success
2084
+ */
2085
+ 200: Volo_Abp_Account_AccountSettingsDto;
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: {
2114
+ requestBody?: Volo_Abp_Account_AccountSettingsDto;
2115
+ };
2116
+ res: {
2117
+ /**
2118
+ * Success
2119
+ */
2120
+ 200: unknown;
2121
+ /**
2122
+ * Bad Request
2123
+ */
2124
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
2125
+ /**
2126
+ * Unauthorized
2127
+ */
2128
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
2129
+ /**
2130
+ * Forbidden
2131
+ */
2132
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
2133
+ /**
2134
+ * Not Found
2135
+ */
2136
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
2137
+ /**
2138
+ * Server Error
2139
+ */
2140
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
2141
+ /**
2142
+ * Server Error
2143
+ */
2144
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
2145
+ };
2146
+ };
2147
+ };
2148
+ '/api/account-admin/settings/two-factor': {
2149
+ get: {
2150
+ res: {
2151
+ /**
2152
+ * Success
2153
+ */
2154
+ 200: Volo_Abp_Account_AccountTwoFactorSettingsDto;
2155
+ /**
2156
+ * Bad Request
2157
+ */
2158
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
2159
+ /**
2160
+ * Unauthorized
2161
+ */
2162
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
2163
+ /**
2164
+ * Forbidden
2165
+ */
2166
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
2167
+ /**
2168
+ * Not Found
2169
+ */
2170
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
2171
+ /**
2172
+ * Server Error
2173
+ */
2174
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
2175
+ /**
2176
+ * Server Error
2177
+ */
2178
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
2179
+ };
2180
+ };
2181
+ put: {
2182
+ req: {
2183
+ requestBody?: Volo_Abp_Account_AccountTwoFactorSettingsDto;
2184
+ };
2185
+ res: {
2186
+ /**
2187
+ * Success
2188
+ */
2189
+ 200: unknown;
2190
+ /**
2191
+ * Bad Request
2192
+ */
2193
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
2194
+ /**
2195
+ * Unauthorized
2196
+ */
2197
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
2198
+ /**
2199
+ * Forbidden
2200
+ */
2201
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
2202
+ /**
2203
+ * Not Found
2204
+ */
2205
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
2206
+ /**
2207
+ * Server Error
2208
+ */
2209
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
2210
+ /**
2211
+ * Server Error
2212
+ */
2213
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
2214
+ };
2215
+ };
2216
+ };
2217
+ '/api/account-admin/settings/recaptcha': {
2218
+ get: {
2219
+ res: {
2220
+ /**
2221
+ * Success
2222
+ */
2223
+ 200: Volo_Abp_Account_AccountRecaptchaSettingsDto;
2224
+ /**
2225
+ * Bad Request
2226
+ */
2227
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
2228
+ /**
2229
+ * Unauthorized
2230
+ */
2231
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
2232
+ /**
2233
+ * Forbidden
2234
+ */
2235
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
2236
+ /**
2237
+ * Not Found
2238
+ */
2239
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
2240
+ /**
2241
+ * Server Error
2242
+ */
2243
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
2244
+ /**
2245
+ * Server Error
2246
+ */
2247
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
2248
+ };
2249
+ };
2250
+ put: {
2251
+ req: {
2252
+ requestBody?: Volo_Abp_Account_AccountRecaptchaSettingsDto;
2253
+ };
2254
+ res: {
2255
+ /**
2256
+ * Success
2257
+ */
2258
+ 200: unknown;
2259
+ /**
2260
+ * Bad Request
2261
+ */
2262
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
2263
+ /**
2264
+ * Unauthorized
2265
+ */
2266
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
2267
+ /**
2268
+ * Forbidden
2269
+ */
2270
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
2271
+ /**
2272
+ * Not Found
2273
+ */
2274
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
2275
+ /**
2276
+ * Server Error
2277
+ */
2278
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
2279
+ /**
2280
+ * Server Error
2281
+ */
2282
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
2283
+ };
2284
+ };
2285
+ };
2286
+ '/api/account-admin/settings/external-provider': {
2287
+ get: {
2288
+ res: {
2289
+ /**
2290
+ * Success
2291
+ */
2292
+ 200: Volo_Abp_Account_AccountExternalProviderSettingsDto;
2293
+ /**
2294
+ * Bad Request
2295
+ */
2296
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
2297
+ /**
2298
+ * Unauthorized
2299
+ */
2300
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
2301
+ /**
2302
+ * Forbidden
2303
+ */
2304
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
2305
+ /**
2306
+ * Not Found
2307
+ */
2308
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
2309
+ /**
2310
+ * Server Error
2311
+ */
2312
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
2313
+ /**
2314
+ * Server Error
2315
+ */
2316
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
2317
+ };
2318
+ };
2319
+ put: {
2320
+ req: {
2321
+ requestBody?: Array<Volo_Abp_Account_UpdateExternalProviderDto>;
2322
+ };
2323
+ res: {
2324
+ /**
2325
+ * Success
2326
+ */
2327
+ 200: unknown;
2328
+ /**
2329
+ * Bad Request
2330
+ */
2331
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
2332
+ /**
2333
+ * Unauthorized
2334
+ */
2335
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
2336
+ /**
2337
+ * Forbidden
2338
+ */
2339
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
2340
+ /**
2341
+ * Not Found
2342
+ */
2343
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
2344
+ /**
2345
+ * Server Error
2346
+ */
2347
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
2348
+ /**
2349
+ * Server Error
2350
+ */
2351
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
2352
+ };
2353
+ };
2354
+ };
2355
+ '/api/account/dynamic-claims/refresh': {
2356
+ post: {
2357
+ res: {
2358
+ /**
2359
+ * Success
2360
+ */
2361
+ 200: unknown;
2362
+ /**
2363
+ * Bad Request
2364
+ */
2365
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
2366
+ /**
2367
+ * Unauthorized
2368
+ */
2369
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
2370
+ /**
2371
+ * Forbidden
2372
+ */
2373
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
2374
+ /**
2375
+ * Not Found
2376
+ */
2377
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
2378
+ /**
2379
+ * Server Error
2380
+ */
2381
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
2382
+ /**
2383
+ * Server Error
2384
+ */
2385
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
2386
+ };
2387
+ };
2388
+ };
2389
+ '/api/account/login': {
2390
+ post: {
2391
+ req: {
2392
+ requestBody?: Volo_Abp_Account_Public_Web_Areas_Account_Controllers_Models_UserLoginInfo;
2393
+ };
2394
+ res: {
2395
+ /**
2396
+ * Success
2397
+ */
2398
+ 200: Volo_Abp_Account_Public_Web_Areas_Account_Controllers_Models_AbpLoginResult;
2399
+ /**
2400
+ * Bad Request
2401
+ */
2402
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
2403
+ /**
2404
+ * Unauthorized
2405
+ */
2406
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
2407
+ /**
2408
+ * Forbidden
2409
+ */
2410
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
2411
+ /**
2412
+ * Not Found
2413
+ */
2414
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
2415
+ /**
2416
+ * Server Error
2417
+ */
2418
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
2419
+ /**
2420
+ * Server Error
2421
+ */
2422
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
2423
+ };
2424
+ };
2425
+ };
2426
+ '/api/account/linkLogin': {
2427
+ post: {
2428
+ req: {
2429
+ requestBody?: Volo_Abp_Account_Public_Web_Areas_Account_Controllers_Models_LinkUserLoginInfo;
2430
+ };
2431
+ res: {
2432
+ /**
2433
+ * Success
2434
+ */
2435
+ 200: Volo_Abp_Account_Public_Web_Areas_Account_Controllers_Models_AbpLoginResult;
2436
+ /**
2437
+ * Bad Request
2438
+ */
2439
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
2440
+ /**
2441
+ * Unauthorized
2442
+ */
2443
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
2444
+ /**
2445
+ * Forbidden
2446
+ */
2447
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
2448
+ /**
2449
+ * Not Found
2450
+ */
2451
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
2452
+ /**
2453
+ * Server Error
2454
+ */
2455
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
2456
+ /**
2457
+ * Server Error
2458
+ */
2459
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
2460
+ };
2461
+ };
2462
+ };
2463
+ '/api/account/logout': {
2464
+ get: {
2465
+ res: {
2466
+ /**
2467
+ * Success
2468
+ */
2469
+ 200: unknown;
2470
+ /**
2471
+ * Bad Request
2472
+ */
2473
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
2474
+ /**
2475
+ * Unauthorized
2476
+ */
2477
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
2478
+ /**
2479
+ * Forbidden
2480
+ */
2481
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
2482
+ /**
2483
+ * Not Found
2484
+ */
2485
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
2486
+ /**
2487
+ * Server Error
2488
+ */
2489
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
2490
+ /**
2491
+ * Server Error
2492
+ */
2493
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
2494
+ };
2495
+ };
2496
+ };
2497
+ '/api/account/checkPassword': {
2498
+ post: {
2499
+ req: {
2500
+ requestBody?: Volo_Abp_Account_Public_Web_Areas_Account_Controllers_Models_UserLoginInfo;
2501
+ };
2502
+ res: {
2503
+ /**
2504
+ * Success
2505
+ */
2506
+ 200: Volo_Abp_Account_Public_Web_Areas_Account_Controllers_Models_AbpLoginResult;
2507
+ /**
2508
+ * Bad Request
2509
+ */
2510
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
2511
+ /**
2512
+ * Unauthorized
2513
+ */
2514
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
2515
+ /**
2516
+ * Forbidden
2517
+ */
2518
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
2519
+ /**
2520
+ * Not Found
2521
+ */
2522
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
2523
+ /**
2524
+ * Server Error
2525
+ */
2526
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
2527
+ /**
2528
+ * Server Error
2529
+ */
2530
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
2531
+ };
2532
+ };
2533
+ };
2534
+ '/api/account/my-profile': {
2535
+ get: {
2536
+ res: {
2537
+ /**
2538
+ * Success
2539
+ */
2540
+ 200: Volo_Abp_Account_ProfileDto;
2541
+ /**
2542
+ * Bad Request
2543
+ */
2544
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
2545
+ /**
2546
+ * Unauthorized
2547
+ */
2548
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
2549
+ /**
2550
+ * Forbidden
2551
+ */
2552
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
2553
+ /**
2554
+ * Not Found
2555
+ */
2556
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
2557
+ /**
2558
+ * Server Error
2559
+ */
2560
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
2561
+ /**
2562
+ * Server Error
2563
+ */
2564
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
2565
+ };
2566
+ };
2567
+ put: {
2568
+ req: {
2569
+ requestBody?: Volo_Abp_Account_UpdateProfileDto;
2570
+ };
2571
+ res: {
2572
+ /**
2573
+ * Success
2574
+ */
2575
+ 200: Volo_Abp_Account_ProfileDto;
2576
+ /**
2577
+ * Bad Request
2578
+ */
2579
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
2580
+ /**
2581
+ * Unauthorized
2582
+ */
2583
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
2584
+ /**
2585
+ * Forbidden
2586
+ */
2587
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
2588
+ /**
2589
+ * Not Found
2590
+ */
2591
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
2592
+ /**
2593
+ * Server Error
2594
+ */
2595
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
2596
+ /**
2597
+ * Server Error
2598
+ */
2599
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
2600
+ };
2601
+ };
2602
+ };
2603
+ '/api/account/my-profile/change-password': {
2604
+ post: {
2605
+ req: {
2606
+ requestBody?: Volo_Abp_Account_ChangePasswordInput;
2607
+ };
2608
+ res: {
2609
+ /**
2610
+ * Success
2611
+ */
2612
+ 200: unknown;
2613
+ /**
2614
+ * Bad Request
2615
+ */
2616
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
2617
+ /**
2618
+ * Unauthorized
2619
+ */
2620
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
2621
+ /**
2622
+ * Forbidden
2623
+ */
2624
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
2625
+ /**
2626
+ * Not Found
2627
+ */
2628
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
2629
+ /**
2630
+ * Server Error
2631
+ */
2632
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
2633
+ /**
2634
+ * Server Error
2635
+ */
2636
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
2637
+ };
2638
+ };
2639
+ };
2640
+ '/api/account/my-profile/two-factor-enabled': {
2641
+ get: {
2642
+ res: {
2643
+ /**
2644
+ * Success
2645
+ */
2646
+ 200: boolean;
2647
+ /**
2648
+ * Bad Request
2649
+ */
2650
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
2651
+ /**
2652
+ * Unauthorized
2653
+ */
2654
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
2655
+ /**
2656
+ * Forbidden
2657
+ */
2658
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
2659
+ /**
2660
+ * Not Found
2661
+ */
2662
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
2663
+ /**
2664
+ * Server Error
2665
+ */
2666
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
2667
+ /**
2668
+ * Server Error
2669
+ */
2670
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
2671
+ };
2672
+ };
2673
+ };
2674
+ '/api/account/my-profile/set-two-factor-enabled': {
2675
+ post: {
2676
+ req: {
2677
+ enabled?: boolean;
2678
+ };
2679
+ res: {
2680
+ /**
2681
+ * Success
2682
+ */
2683
+ 200: unknown;
2684
+ /**
2685
+ * Bad Request
2686
+ */
2687
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
2688
+ /**
2689
+ * Unauthorized
2690
+ */
2691
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
2692
+ /**
2693
+ * Forbidden
2694
+ */
2695
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
2696
+ /**
2697
+ * Not Found
2698
+ */
2699
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
2700
+ /**
2701
+ * Server Error
2702
+ */
2703
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
2704
+ /**
2705
+ * Server Error
2706
+ */
2707
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
2708
+ };
2709
+ };
2710
+ };
2711
+ '/api/account/my-profile/can-enable-two-factor': {
2712
+ get: {
2713
+ res: {
2714
+ /**
2715
+ * Success
2716
+ */
2717
+ 200: boolean;
2718
+ /**
2719
+ * Bad Request
2720
+ */
2721
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
2722
+ /**
2723
+ * Unauthorized
2724
+ */
2725
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
2726
+ /**
2727
+ * Forbidden
2728
+ */
2729
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
2730
+ /**
2731
+ * Not Found
2732
+ */
2733
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
2734
+ /**
2735
+ * Server Error
2736
+ */
2737
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
2738
+ /**
2739
+ * Server Error
2740
+ */
2741
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
2742
+ };
2743
+ };
2744
+ };
2745
+ '/api/account/my-profile/timezones': {
2746
+ get: {
2747
+ res: {
2748
+ /**
2749
+ * Success
2750
+ */
2751
+ 200: Array<Volo_Abp_NameValue>;
2752
+ /**
2753
+ * Bad Request
2754
+ */
2755
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
2756
+ /**
2757
+ * Unauthorized
2758
+ */
2759
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
2760
+ /**
2761
+ * Forbidden
2762
+ */
2763
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
2764
+ /**
2765
+ * Not Found
2766
+ */
2767
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
2768
+ /**
2769
+ * Server Error
2770
+ */
2771
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
2772
+ /**
2773
+ * Server Error
2774
+ */
2775
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
2776
+ };
2777
+ };
2778
+ };
2779
+ '/api/account/link-user/link': {
2780
+ post: {
2781
+ req: {
2782
+ requestBody?: Volo_Abp_Account_LinkUserInput;
2783
+ };
2784
+ res: {
2785
+ /**
2786
+ * Success
2787
+ */
2788
+ 200: unknown;
2789
+ /**
2790
+ * Bad Request
2791
+ */
2792
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
2793
+ /**
2794
+ * Unauthorized
2795
+ */
2796
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
2797
+ /**
2798
+ * Forbidden
2799
+ */
2800
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
2801
+ /**
2802
+ * Not Found
2803
+ */
2804
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
2805
+ /**
2806
+ * Server Error
2807
+ */
2808
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
2809
+ /**
2810
+ * Server Error
2811
+ */
2812
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
2813
+ };
2814
+ };
2815
+ };
2816
+ '/api/account/link-user/unlink': {
2817
+ post: {
2818
+ req: {
2819
+ requestBody?: Volo_Abp_Account_UnLinkUserInput;
2820
+ };
2821
+ res: {
2822
+ /**
2823
+ * Success
2824
+ */
2825
+ 200: unknown;
2826
+ /**
2827
+ * Bad Request
2828
+ */
2829
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
2830
+ /**
2831
+ * Unauthorized
2832
+ */
2833
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
2834
+ /**
2835
+ * Forbidden
2836
+ */
2837
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
2838
+ /**
2839
+ * Not Found
2840
+ */
2841
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
2842
+ /**
2843
+ * Server Error
2844
+ */
2845
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
2846
+ /**
2847
+ * Server Error
2848
+ */
2849
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
2850
+ };
2851
+ };
2852
+ };
2853
+ '/api/account/link-user/is-linked': {
2854
+ post: {
2855
+ req: {
2856
+ requestBody?: Volo_Abp_Account_IsLinkedInput;
2857
+ };
2858
+ res: {
2859
+ /**
2860
+ * Success
2861
+ */
2862
+ 200: boolean;
2863
+ /**
2864
+ * Bad Request
2865
+ */
2866
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
2867
+ /**
2868
+ * Unauthorized
2869
+ */
2870
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
2871
+ /**
2872
+ * Forbidden
2873
+ */
2874
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
2875
+ /**
2876
+ * Not Found
2877
+ */
2878
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
2879
+ /**
2880
+ * Server Error
2881
+ */
2882
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
2883
+ /**
2884
+ * Server Error
2885
+ */
2886
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
2887
+ };
2888
+ };
2889
+ };
2890
+ '/api/account/link-user/generate-link-token': {
2891
+ post: {
2892
+ res: {
2893
+ /**
2894
+ * Success
2895
+ */
2896
+ 200: string;
2897
+ /**
2898
+ * Bad Request
2899
+ */
2900
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
2901
+ /**
2902
+ * Unauthorized
2903
+ */
2904
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
2905
+ /**
2906
+ * Forbidden
2907
+ */
2908
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
2909
+ /**
2910
+ * Not Found
2911
+ */
2912
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
2913
+ /**
2914
+ * Server Error
2915
+ */
2916
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
2917
+ /**
2918
+ * Server Error
2919
+ */
2920
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
2921
+ };
2922
+ };
2923
+ };
2924
+ '/api/account/link-user/verify-link-token': {
2925
+ post: {
2926
+ req: {
2927
+ requestBody?: Volo_Abp_Account_VerifyLinkTokenInput;
2928
+ };
2929
+ res: {
2930
+ /**
2931
+ * Success
2932
+ */
2933
+ 200: boolean;
2934
+ /**
2935
+ * Bad Request
2936
+ */
2937
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
2938
+ /**
2939
+ * Unauthorized
2940
+ */
2941
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
2942
+ /**
2943
+ * Forbidden
2944
+ */
2945
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
2946
+ /**
2947
+ * Not Found
2948
+ */
2949
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
2950
+ /**
2951
+ * Server Error
2952
+ */
2953
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
2954
+ /**
2955
+ * Server Error
2956
+ */
2957
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
2958
+ };
2959
+ };
2960
+ };
2961
+ '/api/account/link-user/generate-link-login-token': {
2962
+ post: {
2963
+ res: {
2964
+ /**
2965
+ * Success
2966
+ */
2967
+ 200: string;
2968
+ /**
2969
+ * Bad Request
2970
+ */
2971
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
2972
+ /**
2973
+ * Unauthorized
2974
+ */
2975
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
2976
+ /**
2977
+ * Forbidden
2978
+ */
2979
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
2980
+ /**
2981
+ * Not Found
2982
+ */
2983
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
2984
+ /**
2985
+ * Server Error
2986
+ */
2987
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
2988
+ /**
2989
+ * Server Error
2990
+ */
2991
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
2992
+ };
2993
+ };
2994
+ };
2995
+ '/api/account/link-user/verify-link-login-token': {
2996
+ post: {
2997
+ req: {
2998
+ requestBody?: Volo_Abp_Account_VerifyLinkLoginTokenInput;
2999
+ };
3000
+ res: {
3001
+ /**
3002
+ * Success
3003
+ */
3004
+ 200: boolean;
3005
+ /**
3006
+ * Bad Request
3007
+ */
3008
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
3009
+ /**
3010
+ * Unauthorized
3011
+ */
3012
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
3013
+ /**
3014
+ * Forbidden
3015
+ */
3016
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
3017
+ /**
3018
+ * Not Found
3019
+ */
3020
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
3021
+ /**
3022
+ * Server Error
3023
+ */
3024
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
3025
+ /**
3026
+ * Server Error
3027
+ */
3028
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
3029
+ };
3030
+ };
3031
+ };
3032
+ '/api/account/link-user': {
3033
+ get: {
3034
+ res: {
3035
+ /**
3036
+ * Success
3037
+ */
3038
+ 200: Volo_Abp_Application_Dtos_ListResultDto_1;
3039
+ /**
3040
+ * Bad Request
3041
+ */
3042
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
3043
+ /**
3044
+ * Unauthorized
3045
+ */
3046
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
3047
+ /**
3048
+ * Forbidden
3049
+ */
3050
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
3051
+ /**
3052
+ * Not Found
3053
+ */
3054
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
3055
+ /**
3056
+ * Server Error
3057
+ */
3058
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
3059
+ /**
3060
+ * Server Error
3061
+ */
3062
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
3063
+ };
3064
+ };
3065
+ };
3066
+ '/api/account/user-delegation/delegated-users': {
3067
+ get: {
3068
+ res: {
3069
+ /**
3070
+ * Success
3071
+ */
3072
+ 200: Volo_Abp_Application_Dtos_ListResultDto_1;
3073
+ /**
3074
+ * Bad Request
3075
+ */
3076
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
3077
+ /**
3078
+ * Unauthorized
3079
+ */
3080
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
3081
+ /**
3082
+ * Forbidden
3083
+ */
3084
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
3085
+ /**
3086
+ * Not Found
3087
+ */
3088
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
3089
+ /**
3090
+ * Server Error
3091
+ */
3092
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
3093
+ /**
3094
+ * Server Error
3095
+ */
3096
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
3097
+ };
3098
+ };
3099
+ };
3100
+ '/api/account/user-delegation/my-delegated-users': {
3101
+ get: {
3102
+ res: {
3103
+ /**
3104
+ * Success
3105
+ */
3106
+ 200: Volo_Abp_Application_Dtos_ListResultDto_1;
3107
+ /**
3108
+ * Bad Request
3109
+ */
3110
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
3111
+ /**
3112
+ * Unauthorized
3113
+ */
3114
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
3115
+ /**
3116
+ * Forbidden
3117
+ */
3118
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
3119
+ /**
3120
+ * Not Found
3121
+ */
3122
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
3123
+ /**
3124
+ * Server Error
3125
+ */
3126
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
3127
+ /**
3128
+ * Server Error
3129
+ */
3130
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
3131
+ };
3132
+ };
3133
+ };
3134
+ '/api/account/user-delegation/active-delegations': {
3135
+ get: {
3136
+ res: {
3137
+ /**
3138
+ * Success
3139
+ */
3140
+ 200: Volo_Abp_Application_Dtos_ListResultDto_1;
3141
+ /**
3142
+ * Bad Request
3143
+ */
3144
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
3145
+ /**
3146
+ * Unauthorized
3147
+ */
3148
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
3149
+ /**
3150
+ * Forbidden
3151
+ */
3152
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
3153
+ /**
3154
+ * Not Found
3155
+ */
3156
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
3157
+ /**
3158
+ * Server Error
3159
+ */
3160
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
3161
+ /**
3162
+ * Server Error
3163
+ */
3164
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
3165
+ };
3166
+ };
3167
+ };
3168
+ '/api/account/user-delegation/user-lookup': {
3169
+ get: {
3170
+ req: {
3171
+ userName?: string;
3172
+ };
3173
+ res: {
3174
+ /**
3175
+ * Success
3176
+ */
3177
+ 200: Volo_Abp_Application_Dtos_ListResultDto_1;
3178
+ /**
3179
+ * Bad Request
3180
+ */
3181
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
3182
+ /**
3183
+ * Unauthorized
3184
+ */
3185
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
3186
+ /**
3187
+ * Forbidden
3188
+ */
3189
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
3190
+ /**
3191
+ * Not Found
3192
+ */
3193
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
3194
+ /**
3195
+ * Server Error
3196
+ */
3197
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
3198
+ /**
3199
+ * Server Error
3200
+ */
3201
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
3202
+ };
3203
+ };
3204
+ };
3205
+ '/api/account/user-delegation/delegate-new-user': {
3206
+ post: {
3207
+ req: {
3208
+ requestBody?: Volo_Abp_Account_DelegateNewUserInput;
3209
+ };
3210
+ res: {
3211
+ /**
3212
+ * Success
3213
+ */
3214
+ 200: unknown;
3215
+ /**
3216
+ * Bad Request
3217
+ */
3218
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
3219
+ /**
3220
+ * Unauthorized
3221
+ */
3222
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
3223
+ /**
3224
+ * Forbidden
3225
+ */
3226
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
3227
+ /**
3228
+ * Not Found
3229
+ */
3230
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
3231
+ /**
3232
+ * Server Error
3233
+ */
3234
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
3235
+ /**
3236
+ * Server Error
3237
+ */
3238
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
3239
+ };
3240
+ };
3241
+ };
3242
+ '/api/account/user-delegation/delete-delegation': {
3243
+ post: {
3244
+ req: {
3245
+ id?: string;
3246
+ };
3247
+ res: {
3248
+ /**
3249
+ * Success
3250
+ */
3251
+ 200: unknown;
3252
+ /**
3253
+ * Bad Request
3254
+ */
3255
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
3256
+ /**
3257
+ * Unauthorized
3258
+ */
3259
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
3260
+ /**
3261
+ * Forbidden
3262
+ */
3263
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
3264
+ /**
3265
+ * Not Found
3266
+ */
3267
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
3268
+ /**
3269
+ * Server Error
3270
+ */
3271
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
3272
+ /**
3273
+ * Server Error
3274
+ */
3275
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
3276
+ };
3277
+ };
3278
+ };
3279
+ };