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