@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,2331 @@
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_AuthenticatorInfoDto = {
84
+ type: 'object',
85
+ properties: {
86
+ key: {
87
+ type: 'string',
88
+ nullable: true
89
+ },
90
+ uri: {
91
+ type: 'string',
92
+ nullable: true
93
+ }
94
+ },
95
+ additionalProperties: false
96
+ } as const;
97
+
98
+ export const $Volo_Abp_Account_ChangePasswordInput = {
99
+ required: ['newPassword'],
100
+ type: 'object',
101
+ properties: {
102
+ currentPassword: {
103
+ maxLength: 128,
104
+ minLength: 0,
105
+ type: 'string',
106
+ nullable: true
107
+ },
108
+ newPassword: {
109
+ maxLength: 128,
110
+ minLength: 0,
111
+ type: 'string'
112
+ }
113
+ },
114
+ additionalProperties: false
115
+ } as const;
116
+
117
+ export const $Volo_Abp_Account_ConfirmEmailInput = {
118
+ required: ['token', 'userId'],
119
+ type: 'object',
120
+ properties: {
121
+ userId: {
122
+ type: 'string',
123
+ format: 'uuid'
124
+ },
125
+ token: {
126
+ minLength: 1,
127
+ type: 'string'
128
+ }
129
+ },
130
+ additionalProperties: false
131
+ } as const;
132
+
133
+ export const $Volo_Abp_Account_ConfirmPhoneNumberInput = {
134
+ required: ['token', 'userId'],
135
+ type: 'object',
136
+ properties: {
137
+ userId: {
138
+ type: 'string',
139
+ format: 'uuid'
140
+ },
141
+ token: {
142
+ minLength: 1,
143
+ type: 'string'
144
+ }
145
+ },
146
+ additionalProperties: false
147
+ } as const;
148
+
149
+ export const $Volo_Abp_Account_DelegateNewUserInput = {
150
+ required: ['endTime', 'startTime'],
151
+ type: 'object',
152
+ properties: {
153
+ targetUserId: {
154
+ type: 'string',
155
+ format: 'uuid'
156
+ },
157
+ startTime: {
158
+ type: 'string',
159
+ format: 'date-time'
160
+ },
161
+ endTime: {
162
+ type: 'string',
163
+ format: 'date-time'
164
+ }
165
+ },
166
+ additionalProperties: false
167
+ } as const;
168
+
169
+ export const $Volo_Abp_Account_ExternalProviders_ExternalProviderDto = {
170
+ type: 'object',
171
+ properties: {
172
+ providers: {
173
+ type: 'array',
174
+ items: {
175
+ '$ref': '#/components/schemas/Volo.Abp.Account.ExternalProviders.ExternalProviderItemDto'
176
+ },
177
+ nullable: true
178
+ }
179
+ },
180
+ additionalProperties: false
181
+ } as const;
182
+
183
+ export const $Volo_Abp_Account_ExternalProviders_ExternalProviderItemDto = {
184
+ type: 'object',
185
+ properties: {
186
+ name: {
187
+ type: 'string',
188
+ nullable: true
189
+ },
190
+ enabled: {
191
+ type: 'boolean'
192
+ },
193
+ properties: {
194
+ type: 'array',
195
+ items: {
196
+ '$ref': '#/components/schemas/Volo.Abp.Account.ExternalProviders.ExternalProviderSettingsProperty'
197
+ },
198
+ nullable: true
199
+ }
200
+ },
201
+ additionalProperties: false
202
+ } as const;
203
+
204
+ export const $Volo_Abp_Account_ExternalProviders_ExternalProviderItemWithSecretDto = {
205
+ type: 'object',
206
+ properties: {
207
+ success: {
208
+ type: 'boolean'
209
+ },
210
+ name: {
211
+ type: 'string',
212
+ nullable: true
213
+ },
214
+ enabled: {
215
+ type: 'boolean'
216
+ },
217
+ properties: {
218
+ type: 'array',
219
+ items: {
220
+ '$ref': '#/components/schemas/Volo.Abp.Account.ExternalProviders.ExternalProviderSettingsProperty'
221
+ },
222
+ nullable: true
223
+ },
224
+ secretProperties: {
225
+ type: 'array',
226
+ items: {
227
+ '$ref': '#/components/schemas/Volo.Abp.Account.ExternalProviders.ExternalProviderSettingsProperty'
228
+ },
229
+ nullable: true
230
+ }
231
+ },
232
+ additionalProperties: false
233
+ } as const;
234
+
235
+ export const $Volo_Abp_Account_ExternalProviders_ExternalProviderSettings = {
236
+ type: 'object',
237
+ properties: {
238
+ name: {
239
+ type: 'string',
240
+ nullable: true
241
+ },
242
+ enabled: {
243
+ type: 'boolean'
244
+ },
245
+ properties: {
246
+ type: 'array',
247
+ items: {
248
+ '$ref': '#/components/schemas/Volo.Abp.Account.ExternalProviders.ExternalProviderSettingsProperty'
249
+ },
250
+ nullable: true
251
+ },
252
+ secretProperties: {
253
+ type: 'array',
254
+ items: {
255
+ '$ref': '#/components/schemas/Volo.Abp.Account.ExternalProviders.ExternalProviderSettingsProperty'
256
+ },
257
+ nullable: true
258
+ }
259
+ },
260
+ additionalProperties: false
261
+ } as const;
262
+
263
+ export const $Volo_Abp_Account_ExternalProviders_ExternalProviderSettingsProperty = {
264
+ type: 'object',
265
+ properties: {
266
+ name: {
267
+ type: 'string',
268
+ nullable: true
269
+ },
270
+ value: {
271
+ type: 'string',
272
+ nullable: true
273
+ }
274
+ },
275
+ additionalProperties: false
276
+ } as const;
277
+
278
+ export const $Volo_Abp_Account_IdentityUserConfirmationStateDto = {
279
+ type: 'object',
280
+ properties: {
281
+ emailConfirmed: {
282
+ type: 'boolean'
283
+ },
284
+ phoneNumberConfirmed: {
285
+ type: 'boolean'
286
+ }
287
+ },
288
+ additionalProperties: false
289
+ } as const;
290
+
291
+ export const $Volo_Abp_Account_IsLinkedInput = {
292
+ type: 'object',
293
+ properties: {
294
+ userId: {
295
+ type: 'string',
296
+ format: 'uuid'
297
+ },
298
+ tenantId: {
299
+ type: 'string',
300
+ format: 'uuid',
301
+ nullable: true
302
+ }
303
+ },
304
+ additionalProperties: false
305
+ } as const;
306
+
307
+ export const $Volo_Abp_Account_LinkUserDto = {
308
+ type: 'object',
309
+ properties: {
310
+ targetUserId: {
311
+ type: 'string',
312
+ format: 'uuid'
313
+ },
314
+ targetUserName: {
315
+ type: 'string',
316
+ nullable: true
317
+ },
318
+ targetTenantId: {
319
+ type: 'string',
320
+ format: 'uuid',
321
+ nullable: true
322
+ },
323
+ targetTenantName: {
324
+ type: 'string',
325
+ nullable: true
326
+ },
327
+ directlyLinked: {
328
+ type: 'boolean'
329
+ }
330
+ },
331
+ additionalProperties: false
332
+ } as const;
333
+
334
+ export const $Volo_Abp_Account_LinkUserInput = {
335
+ required: ['token'],
336
+ type: 'object',
337
+ properties: {
338
+ userId: {
339
+ type: 'string',
340
+ format: 'uuid'
341
+ },
342
+ tenantId: {
343
+ type: 'string',
344
+ format: 'uuid',
345
+ nullable: true
346
+ },
347
+ token: {
348
+ minLength: 1,
349
+ type: 'string'
350
+ }
351
+ },
352
+ additionalProperties: false
353
+ } as const;
354
+
355
+ export const $Volo_Abp_Account_ProfileDto = {
356
+ type: 'object',
357
+ properties: {
358
+ extraProperties: {
359
+ type: 'object',
360
+ additionalProperties: {},
361
+ nullable: true,
362
+ readOnly: true
363
+ },
364
+ userName: {
365
+ type: 'string',
366
+ nullable: true
367
+ },
368
+ email: {
369
+ type: 'string',
370
+ nullable: true
371
+ },
372
+ emailConfirmed: {
373
+ type: 'boolean'
374
+ },
375
+ name: {
376
+ type: 'string',
377
+ nullable: true
378
+ },
379
+ surname: {
380
+ type: 'string',
381
+ nullable: true
382
+ },
383
+ phoneNumber: {
384
+ type: 'string',
385
+ nullable: true
386
+ },
387
+ phoneNumberConfirmed: {
388
+ type: 'boolean'
389
+ },
390
+ isExternal: {
391
+ type: 'boolean'
392
+ },
393
+ hasPassword: {
394
+ type: 'boolean'
395
+ },
396
+ supportsMultipleTimezone: {
397
+ type: 'boolean'
398
+ },
399
+ timezone: {
400
+ type: 'string',
401
+ nullable: true
402
+ },
403
+ concurrencyStamp: {
404
+ type: 'string',
405
+ nullable: true
406
+ }
407
+ },
408
+ additionalProperties: false
409
+ } as const;
410
+
411
+ export const $Volo_Abp_Account_ProfilePictureSourceDto = {
412
+ type: 'object',
413
+ properties: {
414
+ type: {
415
+ '$ref': '#/components/schemas/Volo.Abp.Account.ProfilePictureType'
416
+ },
417
+ source: {
418
+ type: 'string',
419
+ nullable: true
420
+ },
421
+ fileContent: {
422
+ type: 'string',
423
+ format: 'byte',
424
+ nullable: true
425
+ }
426
+ },
427
+ additionalProperties: false
428
+ } as const;
429
+
430
+ export const $Volo_Abp_Account_ProfilePictureType = {
431
+ enum: [0, 1, 2],
432
+ type: 'integer',
433
+ format: 'int32'
434
+ } as const;
435
+
436
+ export const $Volo_Abp_Account_Public_Web_Areas_Account_Controllers_Models_AbpLoginResult = {
437
+ type: 'object',
438
+ properties: {
439
+ result: {
440
+ '$ref': '#/components/schemas/Volo.Abp.Account.Public.Web.Areas.Account.Controllers.Models.LoginResultType'
441
+ },
442
+ description: {
443
+ type: 'string',
444
+ nullable: true,
445
+ readOnly: true
446
+ }
447
+ },
448
+ additionalProperties: false
449
+ } as const;
450
+
451
+ export const $Volo_Abp_Account_Public_Web_Areas_Account_Controllers_Models_LinkUserLoginInfo = {
452
+ required: ['linkUserId'],
453
+ type: 'object',
454
+ properties: {
455
+ linkUserId: {
456
+ type: 'string',
457
+ format: 'uuid'
458
+ },
459
+ linkTenantId: {
460
+ type: 'string',
461
+ format: 'uuid',
462
+ nullable: true
463
+ }
464
+ },
465
+ additionalProperties: false
466
+ } as const;
467
+
468
+ export const $Volo_Abp_Account_Public_Web_Areas_Account_Controllers_Models_LoginResultType = {
469
+ enum: [1, 2, 3, 4, 5, 6],
470
+ type: 'integer',
471
+ format: 'int32'
472
+ } as const;
473
+
474
+ export const $Volo_Abp_Account_Public_Web_Areas_Account_Controllers_Models_UserLoginInfo = {
475
+ required: ['password', 'userNameOrEmailAddress'],
476
+ type: 'object',
477
+ properties: {
478
+ userNameOrEmailAddress: {
479
+ maxLength: 255,
480
+ minLength: 0,
481
+ type: 'string'
482
+ },
483
+ password: {
484
+ maxLength: 128,
485
+ minLength: 0,
486
+ type: 'string',
487
+ format: 'password'
488
+ },
489
+ rememberMe: {
490
+ type: 'boolean'
491
+ },
492
+ tenanId: {
493
+ type: 'string',
494
+ format: 'uuid',
495
+ nullable: true
496
+ }
497
+ },
498
+ additionalProperties: false
499
+ } as const;
500
+
501
+ export const $Volo_Abp_Account_RegisterDto = {
502
+ required: ['appName', 'emailAddress', 'password', 'userName'],
503
+ type: 'object',
504
+ properties: {
505
+ extraProperties: {
506
+ type: 'object',
507
+ additionalProperties: {},
508
+ nullable: true,
509
+ readOnly: true
510
+ },
511
+ userName: {
512
+ maxLength: 256,
513
+ minLength: 0,
514
+ type: 'string'
515
+ },
516
+ emailAddress: {
517
+ maxLength: 256,
518
+ minLength: 0,
519
+ type: 'string',
520
+ format: 'email'
521
+ },
522
+ password: {
523
+ maxLength: 128,
524
+ minLength: 0,
525
+ type: 'string',
526
+ format: 'password'
527
+ },
528
+ appName: {
529
+ minLength: 1,
530
+ type: 'string'
531
+ },
532
+ returnUrl: {
533
+ type: 'string',
534
+ nullable: true
535
+ },
536
+ returnUrlHash: {
537
+ type: 'string',
538
+ nullable: true
539
+ },
540
+ captchaResponse: {
541
+ type: 'string',
542
+ nullable: true
543
+ }
544
+ },
545
+ additionalProperties: false
546
+ } as const;
547
+
548
+ export const $Volo_Abp_Account_ResetPasswordDto = {
549
+ required: ['password', 'resetToken'],
550
+ type: 'object',
551
+ properties: {
552
+ userId: {
553
+ type: 'string',
554
+ format: 'uuid'
555
+ },
556
+ resetToken: {
557
+ minLength: 1,
558
+ type: 'string'
559
+ },
560
+ password: {
561
+ minLength: 1,
562
+ type: 'string'
563
+ }
564
+ },
565
+ additionalProperties: false
566
+ } as const;
567
+
568
+ export const $Volo_Abp_Account_SendEmailConfirmationTokenDto = {
569
+ required: ['appName', 'userId'],
570
+ type: 'object',
571
+ properties: {
572
+ appName: {
573
+ minLength: 1,
574
+ type: 'string'
575
+ },
576
+ userId: {
577
+ type: 'string',
578
+ format: 'uuid'
579
+ },
580
+ returnUrl: {
581
+ type: 'string',
582
+ nullable: true
583
+ },
584
+ returnUrlHash: {
585
+ type: 'string',
586
+ nullable: true
587
+ }
588
+ },
589
+ additionalProperties: false
590
+ } as const;
591
+
592
+ export const $Volo_Abp_Account_SendPasswordResetCodeDto = {
593
+ required: ['appName', 'email'],
594
+ type: 'object',
595
+ properties: {
596
+ email: {
597
+ maxLength: 256,
598
+ minLength: 0,
599
+ type: 'string',
600
+ format: 'email'
601
+ },
602
+ appName: {
603
+ minLength: 1,
604
+ type: 'string'
605
+ },
606
+ returnUrl: {
607
+ type: 'string',
608
+ nullable: true
609
+ },
610
+ returnUrlHash: {
611
+ type: 'string',
612
+ nullable: true
613
+ }
614
+ },
615
+ additionalProperties: false
616
+ } as const;
617
+
618
+ export const $Volo_Abp_Account_SendPhoneNumberConfirmationTokenDto = {
619
+ required: ['userId'],
620
+ type: 'object',
621
+ properties: {
622
+ userId: {
623
+ type: 'string',
624
+ format: 'uuid'
625
+ },
626
+ phoneNumber: {
627
+ type: 'string',
628
+ nullable: true
629
+ }
630
+ },
631
+ additionalProperties: false
632
+ } as const;
633
+
634
+ export const $Volo_Abp_Account_SendTwoFactorCodeInput = {
635
+ required: ['provider', 'token', 'userId'],
636
+ type: 'object',
637
+ properties: {
638
+ userId: {
639
+ type: 'string',
640
+ format: 'uuid'
641
+ },
642
+ provider: {
643
+ minLength: 1,
644
+ type: 'string'
645
+ },
646
+ token: {
647
+ minLength: 1,
648
+ type: 'string'
649
+ }
650
+ },
651
+ additionalProperties: false
652
+ } as const;
653
+
654
+ export const $Volo_Abp_Account_UnLinkUserInput = {
655
+ type: 'object',
656
+ properties: {
657
+ userId: {
658
+ type: 'string',
659
+ format: 'uuid'
660
+ },
661
+ tenantId: {
662
+ type: 'string',
663
+ format: 'uuid',
664
+ nullable: true
665
+ }
666
+ },
667
+ additionalProperties: false
668
+ } as const;
669
+
670
+ export const $Volo_Abp_Account_UpdateExternalProviderDto = {
671
+ type: 'object',
672
+ properties: {
673
+ name: {
674
+ type: 'string',
675
+ nullable: true
676
+ },
677
+ enabled: {
678
+ type: 'boolean'
679
+ },
680
+ properties: {
681
+ type: 'array',
682
+ items: {
683
+ '$ref': '#/components/schemas/Volo.Abp.Account.ExternalProviders.ExternalProviderSettingsProperty'
684
+ },
685
+ nullable: true
686
+ },
687
+ secretProperties: {
688
+ type: 'array',
689
+ items: {
690
+ '$ref': '#/components/schemas/Volo.Abp.Account.ExternalProviders.ExternalProviderSettingsProperty'
691
+ },
692
+ nullable: true
693
+ }
694
+ },
695
+ additionalProperties: false
696
+ } as const;
697
+
698
+ export const $Volo_Abp_Account_UpdateProfileDto = {
699
+ required: ['userName'],
700
+ type: 'object',
701
+ properties: {
702
+ extraProperties: {
703
+ type: 'object',
704
+ additionalProperties: {},
705
+ nullable: true,
706
+ readOnly: true
707
+ },
708
+ userName: {
709
+ maxLength: 256,
710
+ minLength: 0,
711
+ type: 'string'
712
+ },
713
+ email: {
714
+ maxLength: 256,
715
+ minLength: 0,
716
+ type: 'string',
717
+ nullable: true
718
+ },
719
+ name: {
720
+ maxLength: 64,
721
+ minLength: 0,
722
+ type: 'string',
723
+ nullable: true
724
+ },
725
+ surname: {
726
+ maxLength: 64,
727
+ minLength: 0,
728
+ type: 'string',
729
+ nullable: true
730
+ },
731
+ phoneNumber: {
732
+ maxLength: 16,
733
+ minLength: 0,
734
+ type: 'string',
735
+ nullable: true
736
+ },
737
+ timezone: {
738
+ type: 'string',
739
+ nullable: true
740
+ },
741
+ concurrencyStamp: {
742
+ type: 'string',
743
+ nullable: true
744
+ }
745
+ },
746
+ additionalProperties: false
747
+ } as const;
748
+
749
+ export const $Volo_Abp_Account_UserDelegationDto = {
750
+ type: 'object',
751
+ properties: {
752
+ id: {
753
+ type: 'string',
754
+ format: 'uuid'
755
+ },
756
+ userName: {
757
+ type: 'string',
758
+ nullable: true
759
+ },
760
+ startTime: {
761
+ type: 'string',
762
+ format: 'date-time'
763
+ },
764
+ endTime: {
765
+ type: 'string',
766
+ format: 'date-time'
767
+ }
768
+ },
769
+ additionalProperties: false
770
+ } as const;
771
+
772
+ export const $Volo_Abp_Account_UserLookupDto = {
773
+ type: 'object',
774
+ properties: {
775
+ id: {
776
+ type: 'string',
777
+ format: 'uuid'
778
+ },
779
+ userName: {
780
+ type: 'string',
781
+ nullable: true
782
+ }
783
+ },
784
+ additionalProperties: false
785
+ } as const;
786
+
787
+ export const $Volo_Abp_Account_VerifyAuthenticatorCodeDto = {
788
+ type: 'object',
789
+ properties: {
790
+ recoveryCodes: {
791
+ type: 'array',
792
+ items: {
793
+ type: 'string'
794
+ },
795
+ nullable: true
796
+ }
797
+ },
798
+ additionalProperties: false
799
+ } as const;
800
+
801
+ export const $Volo_Abp_Account_VerifyAuthenticatorCodeInput = {
802
+ type: 'object',
803
+ properties: {
804
+ code: {
805
+ type: 'string',
806
+ nullable: true
807
+ }
808
+ },
809
+ additionalProperties: false
810
+ } as const;
811
+
812
+ export const $Volo_Abp_Account_VerifyEmailConfirmationTokenInput = {
813
+ required: ['token', 'userId'],
814
+ type: 'object',
815
+ properties: {
816
+ userId: {
817
+ type: 'string',
818
+ format: 'uuid'
819
+ },
820
+ token: {
821
+ minLength: 1,
822
+ type: 'string'
823
+ }
824
+ },
825
+ additionalProperties: false
826
+ } as const;
827
+
828
+ export const $Volo_Abp_Account_VerifyLinkLoginTokenInput = {
829
+ required: ['token', 'userId'],
830
+ type: 'object',
831
+ properties: {
832
+ userId: {
833
+ type: 'string',
834
+ format: 'uuid'
835
+ },
836
+ tenantId: {
837
+ type: 'string',
838
+ format: 'uuid',
839
+ nullable: true
840
+ },
841
+ token: {
842
+ minLength: 1,
843
+ type: 'string'
844
+ }
845
+ },
846
+ additionalProperties: false
847
+ } as const;
848
+
849
+ export const $Volo_Abp_Account_VerifyLinkTokenInput = {
850
+ required: ['token', 'userId'],
851
+ type: 'object',
852
+ properties: {
853
+ userId: {
854
+ type: 'string',
855
+ format: 'uuid'
856
+ },
857
+ tenantId: {
858
+ type: 'string',
859
+ format: 'uuid',
860
+ nullable: true
861
+ },
862
+ token: {
863
+ minLength: 1,
864
+ type: 'string'
865
+ }
866
+ },
867
+ additionalProperties: false
868
+ } as const;
869
+
870
+ export const $Volo_Abp_Account_VerifyPasswordResetTokenInput = {
871
+ required: ['resetToken'],
872
+ type: 'object',
873
+ properties: {
874
+ userId: {
875
+ type: 'string',
876
+ format: 'uuid'
877
+ },
878
+ resetToken: {
879
+ minLength: 1,
880
+ type: 'string'
881
+ }
882
+ },
883
+ additionalProperties: false
884
+ } as const;
885
+
886
+ export const $Volo_Abp_Application_Dtos_ListResultDto_1__Volo_Abp_Account_LinkUserDto__Volo_Abp_Account_Pro_Public_Application_Contracts__Version_8_0_5_0__Culture_neutral__PublicKeyToken_null__ = {
887
+ type: 'object',
888
+ properties: {
889
+ items: {
890
+ type: 'array',
891
+ items: {
892
+ '$ref': '#/components/schemas/Volo.Abp.Account.LinkUserDto'
893
+ },
894
+ nullable: true
895
+ }
896
+ },
897
+ additionalProperties: false
898
+ } as const;
899
+
900
+ export const $Volo_Abp_Application_Dtos_ListResultDto_1__Volo_Abp_Account_UserDelegationDto__Volo_Abp_Account_Pro_Public_Application_Contracts__Version_8_0_5_0__Culture_neutral__PublicKeyToken_null__ = {
901
+ type: 'object',
902
+ properties: {
903
+ items: {
904
+ type: 'array',
905
+ items: {
906
+ '$ref': '#/components/schemas/Volo.Abp.Account.UserDelegationDto'
907
+ },
908
+ nullable: true
909
+ }
910
+ },
911
+ additionalProperties: false
912
+ } as const;
913
+
914
+ export const $Volo_Abp_Application_Dtos_ListResultDto_1__Volo_Abp_Account_UserLookupDto__Volo_Abp_Account_Pro_Public_Application_Contracts__Version_8_0_5_0__Culture_neutral__PublicKeyToken_null__ = {
915
+ type: 'object',
916
+ properties: {
917
+ items: {
918
+ type: 'array',
919
+ items: {
920
+ '$ref': '#/components/schemas/Volo.Abp.Account.UserLookupDto'
921
+ },
922
+ nullable: true
923
+ }
924
+ },
925
+ additionalProperties: false
926
+ } as const;
927
+
928
+ 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__ = {
929
+ type: 'object',
930
+ properties: {
931
+ items: {
932
+ type: 'array',
933
+ items: {
934
+ '$ref': '#/components/schemas/Volo.Abp.Identity.IdentitySecurityLogDto'
935
+ },
936
+ nullable: true
937
+ },
938
+ totalCount: {
939
+ type: 'integer',
940
+ format: 'int64'
941
+ }
942
+ },
943
+ additionalProperties: false
944
+ } as const;
945
+
946
+ export const $Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationAuthConfigurationDto = {
947
+ type: 'object',
948
+ properties: {
949
+ grantedPolicies: {
950
+ type: 'object',
951
+ additionalProperties: {
952
+ type: 'boolean'
953
+ },
954
+ nullable: true
955
+ }
956
+ },
957
+ additionalProperties: false
958
+ } as const;
959
+
960
+ export const $Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationConfigurationDto = {
961
+ type: 'object',
962
+ properties: {
963
+ localization: {
964
+ '$ref': '#/components/schemas/Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationLocalizationConfigurationDto'
965
+ },
966
+ auth: {
967
+ '$ref': '#/components/schemas/Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationAuthConfigurationDto'
968
+ },
969
+ setting: {
970
+ '$ref': '#/components/schemas/Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationSettingConfigurationDto'
971
+ },
972
+ currentUser: {
973
+ '$ref': '#/components/schemas/Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.CurrentUserDto'
974
+ },
975
+ features: {
976
+ '$ref': '#/components/schemas/Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationFeatureConfigurationDto'
977
+ },
978
+ globalFeatures: {
979
+ '$ref': '#/components/schemas/Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationGlobalFeatureConfigurationDto'
980
+ },
981
+ multiTenancy: {
982
+ '$ref': '#/components/schemas/Volo.Abp.AspNetCore.Mvc.MultiTenancy.MultiTenancyInfoDto'
983
+ },
984
+ currentTenant: {
985
+ '$ref': '#/components/schemas/Volo.Abp.AspNetCore.Mvc.MultiTenancy.CurrentTenantDto'
986
+ },
987
+ timing: {
988
+ '$ref': '#/components/schemas/Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.TimingDto'
989
+ },
990
+ clock: {
991
+ '$ref': '#/components/schemas/Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ClockDto'
992
+ },
993
+ objectExtensions: {
994
+ '$ref': '#/components/schemas/Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ObjectExtending.ObjectExtensionsDto'
995
+ },
996
+ extraProperties: {
997
+ type: 'object',
998
+ additionalProperties: {},
999
+ nullable: true
1000
+ }
1001
+ },
1002
+ additionalProperties: false
1003
+ } as const;
1004
+
1005
+ export const $Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationFeatureConfigurationDto = {
1006
+ type: 'object',
1007
+ properties: {
1008
+ values: {
1009
+ type: 'object',
1010
+ additionalProperties: {
1011
+ type: 'string',
1012
+ nullable: true
1013
+ },
1014
+ nullable: true
1015
+ }
1016
+ },
1017
+ additionalProperties: false
1018
+ } as const;
1019
+
1020
+ export const $Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationGlobalFeatureConfigurationDto = {
1021
+ type: 'object',
1022
+ properties: {
1023
+ enabledFeatures: {
1024
+ uniqueItems: true,
1025
+ type: 'array',
1026
+ items: {
1027
+ type: 'string'
1028
+ },
1029
+ nullable: true
1030
+ }
1031
+ },
1032
+ additionalProperties: false
1033
+ } as const;
1034
+
1035
+ export const $Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationConfigurationDto = {
1036
+ type: 'object',
1037
+ properties: {
1038
+ values: {
1039
+ type: 'object',
1040
+ additionalProperties: {
1041
+ type: 'object',
1042
+ additionalProperties: {
1043
+ type: 'string'
1044
+ }
1045
+ },
1046
+ nullable: true
1047
+ },
1048
+ resources: {
1049
+ type: 'object',
1050
+ additionalProperties: {
1051
+ '$ref': '#/components/schemas/Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationLocalizationResourceDto'
1052
+ },
1053
+ nullable: true
1054
+ },
1055
+ languages: {
1056
+ type: 'array',
1057
+ items: {
1058
+ '$ref': '#/components/schemas/Volo.Abp.Localization.LanguageInfo'
1059
+ },
1060
+ nullable: true
1061
+ },
1062
+ currentCulture: {
1063
+ '$ref': '#/components/schemas/Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.CurrentCultureDto'
1064
+ },
1065
+ defaultResourceName: {
1066
+ type: 'string',
1067
+ nullable: true
1068
+ },
1069
+ languagesMap: {
1070
+ type: 'object',
1071
+ additionalProperties: {
1072
+ type: 'array',
1073
+ items: {
1074
+ '$ref': '#/components/schemas/Volo.Abp.NameValue'
1075
+ }
1076
+ },
1077
+ nullable: true
1078
+ },
1079
+ languageFilesMap: {
1080
+ type: 'object',
1081
+ additionalProperties: {
1082
+ type: 'array',
1083
+ items: {
1084
+ '$ref': '#/components/schemas/Volo.Abp.NameValue'
1085
+ }
1086
+ },
1087
+ nullable: true
1088
+ }
1089
+ },
1090
+ additionalProperties: false
1091
+ } as const;
1092
+
1093
+ export const $Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationDto = {
1094
+ type: 'object',
1095
+ properties: {
1096
+ resources: {
1097
+ type: 'object',
1098
+ additionalProperties: {
1099
+ '$ref': '#/components/schemas/Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationLocalizationResourceDto'
1100
+ },
1101
+ nullable: true
1102
+ }
1103
+ },
1104
+ additionalProperties: false
1105
+ } as const;
1106
+
1107
+ export const $Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationResourceDto = {
1108
+ type: 'object',
1109
+ properties: {
1110
+ texts: {
1111
+ type: 'object',
1112
+ additionalProperties: {
1113
+ type: 'string'
1114
+ },
1115
+ nullable: true
1116
+ },
1117
+ baseResources: {
1118
+ type: 'array',
1119
+ items: {
1120
+ type: 'string'
1121
+ },
1122
+ nullable: true
1123
+ }
1124
+ },
1125
+ additionalProperties: false
1126
+ } as const;
1127
+
1128
+ export const $Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationSettingConfigurationDto = {
1129
+ type: 'object',
1130
+ properties: {
1131
+ values: {
1132
+ type: 'object',
1133
+ additionalProperties: {
1134
+ type: 'string',
1135
+ nullable: true
1136
+ },
1137
+ nullable: true
1138
+ }
1139
+ },
1140
+ additionalProperties: false
1141
+ } as const;
1142
+
1143
+ export const $Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ClockDto = {
1144
+ type: 'object',
1145
+ properties: {
1146
+ kind: {
1147
+ type: 'string',
1148
+ nullable: true
1149
+ }
1150
+ },
1151
+ additionalProperties: false
1152
+ } as const;
1153
+
1154
+ export const $Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_CurrentCultureDto = {
1155
+ type: 'object',
1156
+ properties: {
1157
+ displayName: {
1158
+ type: 'string',
1159
+ nullable: true
1160
+ },
1161
+ englishName: {
1162
+ type: 'string',
1163
+ nullable: true
1164
+ },
1165
+ threeLetterIsoLanguageName: {
1166
+ type: 'string',
1167
+ nullable: true
1168
+ },
1169
+ twoLetterIsoLanguageName: {
1170
+ type: 'string',
1171
+ nullable: true
1172
+ },
1173
+ isRightToLeft: {
1174
+ type: 'boolean'
1175
+ },
1176
+ cultureName: {
1177
+ type: 'string',
1178
+ nullable: true
1179
+ },
1180
+ name: {
1181
+ type: 'string',
1182
+ nullable: true
1183
+ },
1184
+ nativeName: {
1185
+ type: 'string',
1186
+ nullable: true
1187
+ },
1188
+ dateTimeFormat: {
1189
+ '$ref': '#/components/schemas/Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.DateTimeFormatDto'
1190
+ }
1191
+ },
1192
+ additionalProperties: false
1193
+ } as const;
1194
+
1195
+ export const $Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_CurrentUserDto = {
1196
+ type: 'object',
1197
+ properties: {
1198
+ isAuthenticated: {
1199
+ type: 'boolean'
1200
+ },
1201
+ id: {
1202
+ type: 'string',
1203
+ format: 'uuid',
1204
+ nullable: true
1205
+ },
1206
+ tenantId: {
1207
+ type: 'string',
1208
+ format: 'uuid',
1209
+ nullable: true
1210
+ },
1211
+ impersonatorUserId: {
1212
+ type: 'string',
1213
+ format: 'uuid',
1214
+ nullable: true
1215
+ },
1216
+ impersonatorTenantId: {
1217
+ type: 'string',
1218
+ format: 'uuid',
1219
+ nullable: true
1220
+ },
1221
+ impersonatorUserName: {
1222
+ type: 'string',
1223
+ nullable: true
1224
+ },
1225
+ impersonatorTenantName: {
1226
+ type: 'string',
1227
+ nullable: true
1228
+ },
1229
+ userName: {
1230
+ type: 'string',
1231
+ nullable: true
1232
+ },
1233
+ name: {
1234
+ type: 'string',
1235
+ nullable: true
1236
+ },
1237
+ surName: {
1238
+ type: 'string',
1239
+ nullable: true
1240
+ },
1241
+ email: {
1242
+ type: 'string',
1243
+ nullable: true
1244
+ },
1245
+ emailVerified: {
1246
+ type: 'boolean'
1247
+ },
1248
+ phoneNumber: {
1249
+ type: 'string',
1250
+ nullable: true
1251
+ },
1252
+ phoneNumberVerified: {
1253
+ type: 'boolean'
1254
+ },
1255
+ roles: {
1256
+ type: 'array',
1257
+ items: {
1258
+ type: 'string'
1259
+ },
1260
+ nullable: true
1261
+ }
1262
+ },
1263
+ additionalProperties: false
1264
+ } as const;
1265
+
1266
+ export const $Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_DateTimeFormatDto = {
1267
+ type: 'object',
1268
+ properties: {
1269
+ calendarAlgorithmType: {
1270
+ type: 'string',
1271
+ nullable: true
1272
+ },
1273
+ dateTimeFormatLong: {
1274
+ type: 'string',
1275
+ nullable: true
1276
+ },
1277
+ shortDatePattern: {
1278
+ type: 'string',
1279
+ nullable: true
1280
+ },
1281
+ fullDateTimePattern: {
1282
+ type: 'string',
1283
+ nullable: true
1284
+ },
1285
+ dateSeparator: {
1286
+ type: 'string',
1287
+ nullable: true
1288
+ },
1289
+ shortTimePattern: {
1290
+ type: 'string',
1291
+ nullable: true
1292
+ },
1293
+ longTimePattern: {
1294
+ type: 'string',
1295
+ nullable: true
1296
+ }
1297
+ },
1298
+ additionalProperties: false
1299
+ } as const;
1300
+
1301
+ export const $Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_IanaTimeZone = {
1302
+ type: 'object',
1303
+ properties: {
1304
+ timeZoneName: {
1305
+ type: 'string',
1306
+ nullable: true
1307
+ }
1308
+ },
1309
+ additionalProperties: false
1310
+ } as const;
1311
+
1312
+ export const $Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_EntityExtensionDto = {
1313
+ type: 'object',
1314
+ properties: {
1315
+ properties: {
1316
+ type: 'object',
1317
+ additionalProperties: {
1318
+ '$ref': '#/components/schemas/Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ObjectExtending.ExtensionPropertyDto'
1319
+ },
1320
+ nullable: true
1321
+ },
1322
+ configuration: {
1323
+ type: 'object',
1324
+ additionalProperties: {},
1325
+ nullable: true
1326
+ }
1327
+ },
1328
+ additionalProperties: false
1329
+ } as const;
1330
+
1331
+ export const $Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionEnumDto = {
1332
+ type: 'object',
1333
+ properties: {
1334
+ fields: {
1335
+ type: 'array',
1336
+ items: {
1337
+ '$ref': '#/components/schemas/Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ObjectExtending.ExtensionEnumFieldDto'
1338
+ },
1339
+ nullable: true
1340
+ },
1341
+ localizationResource: {
1342
+ type: 'string',
1343
+ nullable: true
1344
+ }
1345
+ },
1346
+ additionalProperties: false
1347
+ } as const;
1348
+
1349
+ export const $Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionEnumFieldDto = {
1350
+ type: 'object',
1351
+ properties: {
1352
+ name: {
1353
+ type: 'string',
1354
+ nullable: true
1355
+ },
1356
+ value: {
1357
+ nullable: true
1358
+ }
1359
+ },
1360
+ additionalProperties: false
1361
+ } as const;
1362
+
1363
+ export const $Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiCreateDto = {
1364
+ type: 'object',
1365
+ properties: {
1366
+ isAvailable: {
1367
+ type: 'boolean'
1368
+ }
1369
+ },
1370
+ additionalProperties: false
1371
+ } as const;
1372
+
1373
+ export const $Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiDto = {
1374
+ type: 'object',
1375
+ properties: {
1376
+ onGet: {
1377
+ '$ref': '#/components/schemas/Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ObjectExtending.ExtensionPropertyApiGetDto'
1378
+ },
1379
+ onCreate: {
1380
+ '$ref': '#/components/schemas/Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ObjectExtending.ExtensionPropertyApiCreateDto'
1381
+ },
1382
+ onUpdate: {
1383
+ '$ref': '#/components/schemas/Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ObjectExtending.ExtensionPropertyApiUpdateDto'
1384
+ }
1385
+ },
1386
+ additionalProperties: false
1387
+ } as const;
1388
+
1389
+ export const $Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiGetDto = {
1390
+ type: 'object',
1391
+ properties: {
1392
+ isAvailable: {
1393
+ type: 'boolean'
1394
+ }
1395
+ },
1396
+ additionalProperties: false
1397
+ } as const;
1398
+
1399
+ export const $Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiUpdateDto = {
1400
+ type: 'object',
1401
+ properties: {
1402
+ isAvailable: {
1403
+ type: 'boolean'
1404
+ }
1405
+ },
1406
+ additionalProperties: false
1407
+ } as const;
1408
+
1409
+ export const $Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyAttributeDto = {
1410
+ type: 'object',
1411
+ properties: {
1412
+ typeSimple: {
1413
+ type: 'string',
1414
+ nullable: true
1415
+ },
1416
+ config: {
1417
+ type: 'object',
1418
+ additionalProperties: {},
1419
+ nullable: true
1420
+ }
1421
+ },
1422
+ additionalProperties: false
1423
+ } as const;
1424
+
1425
+ export const $Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyDto = {
1426
+ type: 'object',
1427
+ properties: {
1428
+ type: {
1429
+ type: 'string',
1430
+ nullable: true
1431
+ },
1432
+ typeSimple: {
1433
+ type: 'string',
1434
+ nullable: true
1435
+ },
1436
+ displayName: {
1437
+ '$ref': '#/components/schemas/Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ObjectExtending.LocalizableStringDto'
1438
+ },
1439
+ api: {
1440
+ '$ref': '#/components/schemas/Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ObjectExtending.ExtensionPropertyApiDto'
1441
+ },
1442
+ ui: {
1443
+ '$ref': '#/components/schemas/Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ObjectExtending.ExtensionPropertyUiDto'
1444
+ },
1445
+ attributes: {
1446
+ type: 'array',
1447
+ items: {
1448
+ '$ref': '#/components/schemas/Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ObjectExtending.ExtensionPropertyAttributeDto'
1449
+ },
1450
+ nullable: true
1451
+ },
1452
+ configuration: {
1453
+ type: 'object',
1454
+ additionalProperties: {},
1455
+ nullable: true
1456
+ },
1457
+ defaultValue: {
1458
+ nullable: true
1459
+ }
1460
+ },
1461
+ additionalProperties: false
1462
+ } as const;
1463
+
1464
+ export const $Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiDto = {
1465
+ type: 'object',
1466
+ properties: {
1467
+ onTable: {
1468
+ '$ref': '#/components/schemas/Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ObjectExtending.ExtensionPropertyUiTableDto'
1469
+ },
1470
+ onCreateForm: {
1471
+ '$ref': '#/components/schemas/Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ObjectExtending.ExtensionPropertyUiFormDto'
1472
+ },
1473
+ onEditForm: {
1474
+ '$ref': '#/components/schemas/Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ObjectExtending.ExtensionPropertyUiFormDto'
1475
+ },
1476
+ lookup: {
1477
+ '$ref': '#/components/schemas/Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ObjectExtending.ExtensionPropertyUiLookupDto'
1478
+ }
1479
+ },
1480
+ additionalProperties: false
1481
+ } as const;
1482
+
1483
+ export const $Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiFormDto = {
1484
+ type: 'object',
1485
+ properties: {
1486
+ isVisible: {
1487
+ type: 'boolean'
1488
+ }
1489
+ },
1490
+ additionalProperties: false
1491
+ } as const;
1492
+
1493
+ export const $Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiLookupDto = {
1494
+ type: 'object',
1495
+ properties: {
1496
+ url: {
1497
+ type: 'string',
1498
+ nullable: true
1499
+ },
1500
+ resultListPropertyName: {
1501
+ type: 'string',
1502
+ nullable: true
1503
+ },
1504
+ displayPropertyName: {
1505
+ type: 'string',
1506
+ nullable: true
1507
+ },
1508
+ valuePropertyName: {
1509
+ type: 'string',
1510
+ nullable: true
1511
+ },
1512
+ filterParamName: {
1513
+ type: 'string',
1514
+ nullable: true
1515
+ }
1516
+ },
1517
+ additionalProperties: false
1518
+ } as const;
1519
+
1520
+ export const $Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiTableDto = {
1521
+ type: 'object',
1522
+ properties: {
1523
+ isVisible: {
1524
+ type: 'boolean'
1525
+ }
1526
+ },
1527
+ additionalProperties: false
1528
+ } as const;
1529
+
1530
+ export const $Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_LocalizableStringDto = {
1531
+ type: 'object',
1532
+ properties: {
1533
+ name: {
1534
+ type: 'string',
1535
+ nullable: true
1536
+ },
1537
+ resource: {
1538
+ type: 'string',
1539
+ nullable: true
1540
+ }
1541
+ },
1542
+ additionalProperties: false
1543
+ } as const;
1544
+
1545
+ export const $Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ModuleExtensionDto = {
1546
+ type: 'object',
1547
+ properties: {
1548
+ entities: {
1549
+ type: 'object',
1550
+ additionalProperties: {
1551
+ '$ref': '#/components/schemas/Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ObjectExtending.EntityExtensionDto'
1552
+ },
1553
+ nullable: true
1554
+ },
1555
+ configuration: {
1556
+ type: 'object',
1557
+ additionalProperties: {},
1558
+ nullable: true
1559
+ }
1560
+ },
1561
+ additionalProperties: false
1562
+ } as const;
1563
+
1564
+ export const $Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ObjectExtensionsDto = {
1565
+ type: 'object',
1566
+ properties: {
1567
+ modules: {
1568
+ type: 'object',
1569
+ additionalProperties: {
1570
+ '$ref': '#/components/schemas/Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ObjectExtending.ModuleExtensionDto'
1571
+ },
1572
+ nullable: true
1573
+ },
1574
+ enums: {
1575
+ type: 'object',
1576
+ additionalProperties: {
1577
+ '$ref': '#/components/schemas/Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ObjectExtending.ExtensionEnumDto'
1578
+ },
1579
+ nullable: true
1580
+ }
1581
+ },
1582
+ additionalProperties: false
1583
+ } as const;
1584
+
1585
+ export const $Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_TimeZone = {
1586
+ type: 'object',
1587
+ properties: {
1588
+ iana: {
1589
+ '$ref': '#/components/schemas/Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.IanaTimeZone'
1590
+ },
1591
+ windows: {
1592
+ '$ref': '#/components/schemas/Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.WindowsTimeZone'
1593
+ }
1594
+ },
1595
+ additionalProperties: false
1596
+ } as const;
1597
+
1598
+ export const $Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_TimingDto = {
1599
+ type: 'object',
1600
+ properties: {
1601
+ timeZone: {
1602
+ '$ref': '#/components/schemas/Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.TimeZone'
1603
+ }
1604
+ },
1605
+ additionalProperties: false
1606
+ } as const;
1607
+
1608
+ export const $Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_WindowsTimeZone = {
1609
+ type: 'object',
1610
+ properties: {
1611
+ timeZoneId: {
1612
+ type: 'string',
1613
+ nullable: true
1614
+ }
1615
+ },
1616
+ additionalProperties: false
1617
+ } as const;
1618
+
1619
+ export const $Volo_Abp_AspNetCore_Mvc_MultiTenancy_CurrentTenantDto = {
1620
+ type: 'object',
1621
+ properties: {
1622
+ id: {
1623
+ type: 'string',
1624
+ format: 'uuid',
1625
+ nullable: true
1626
+ },
1627
+ name: {
1628
+ type: 'string',
1629
+ nullable: true
1630
+ },
1631
+ isAvailable: {
1632
+ type: 'boolean'
1633
+ }
1634
+ },
1635
+ additionalProperties: false
1636
+ } as const;
1637
+
1638
+ export const $Volo_Abp_AspNetCore_Mvc_MultiTenancy_FindTenantResultDto = {
1639
+ type: 'object',
1640
+ properties: {
1641
+ success: {
1642
+ type: 'boolean'
1643
+ },
1644
+ tenantId: {
1645
+ type: 'string',
1646
+ format: 'uuid',
1647
+ nullable: true
1648
+ },
1649
+ name: {
1650
+ type: 'string',
1651
+ nullable: true
1652
+ },
1653
+ isActive: {
1654
+ type: 'boolean'
1655
+ }
1656
+ },
1657
+ additionalProperties: false
1658
+ } as const;
1659
+
1660
+ export const $Volo_Abp_AspNetCore_Mvc_MultiTenancy_MultiTenancyInfoDto = {
1661
+ type: 'object',
1662
+ properties: {
1663
+ isEnabled: {
1664
+ type: 'boolean'
1665
+ }
1666
+ },
1667
+ additionalProperties: false
1668
+ } as const;
1669
+
1670
+ export const $Volo_Abp_Http_Modeling_ActionApiDescriptionModel = {
1671
+ type: 'object',
1672
+ properties: {
1673
+ uniqueName: {
1674
+ type: 'string',
1675
+ nullable: true
1676
+ },
1677
+ name: {
1678
+ type: 'string',
1679
+ nullable: true
1680
+ },
1681
+ httpMethod: {
1682
+ type: 'string',
1683
+ nullable: true
1684
+ },
1685
+ url: {
1686
+ type: 'string',
1687
+ nullable: true
1688
+ },
1689
+ supportedVersions: {
1690
+ type: 'array',
1691
+ items: {
1692
+ type: 'string'
1693
+ },
1694
+ nullable: true
1695
+ },
1696
+ parametersOnMethod: {
1697
+ type: 'array',
1698
+ items: {
1699
+ '$ref': '#/components/schemas/Volo.Abp.Http.Modeling.MethodParameterApiDescriptionModel'
1700
+ },
1701
+ nullable: true
1702
+ },
1703
+ parameters: {
1704
+ type: 'array',
1705
+ items: {
1706
+ '$ref': '#/components/schemas/Volo.Abp.Http.Modeling.ParameterApiDescriptionModel'
1707
+ },
1708
+ nullable: true
1709
+ },
1710
+ returnValue: {
1711
+ '$ref': '#/components/schemas/Volo.Abp.Http.Modeling.ReturnValueApiDescriptionModel'
1712
+ },
1713
+ allowAnonymous: {
1714
+ type: 'boolean',
1715
+ nullable: true
1716
+ },
1717
+ implementFrom: {
1718
+ type: 'string',
1719
+ nullable: true
1720
+ }
1721
+ },
1722
+ additionalProperties: false
1723
+ } as const;
1724
+
1725
+ export const $Volo_Abp_Http_Modeling_ApplicationApiDescriptionModel = {
1726
+ type: 'object',
1727
+ properties: {
1728
+ modules: {
1729
+ type: 'object',
1730
+ additionalProperties: {
1731
+ '$ref': '#/components/schemas/Volo.Abp.Http.Modeling.ModuleApiDescriptionModel'
1732
+ },
1733
+ nullable: true
1734
+ },
1735
+ types: {
1736
+ type: 'object',
1737
+ additionalProperties: {
1738
+ '$ref': '#/components/schemas/Volo.Abp.Http.Modeling.TypeApiDescriptionModel'
1739
+ },
1740
+ nullable: true
1741
+ }
1742
+ },
1743
+ additionalProperties: false
1744
+ } as const;
1745
+
1746
+ export const $Volo_Abp_Http_Modeling_ControllerApiDescriptionModel = {
1747
+ type: 'object',
1748
+ properties: {
1749
+ controllerName: {
1750
+ type: 'string',
1751
+ nullable: true
1752
+ },
1753
+ controllerGroupName: {
1754
+ type: 'string',
1755
+ nullable: true
1756
+ },
1757
+ isRemoteService: {
1758
+ type: 'boolean'
1759
+ },
1760
+ isIntegrationService: {
1761
+ type: 'boolean'
1762
+ },
1763
+ apiVersion: {
1764
+ type: 'string',
1765
+ nullable: true
1766
+ },
1767
+ type: {
1768
+ type: 'string',
1769
+ nullable: true
1770
+ },
1771
+ interfaces: {
1772
+ type: 'array',
1773
+ items: {
1774
+ '$ref': '#/components/schemas/Volo.Abp.Http.Modeling.ControllerInterfaceApiDescriptionModel'
1775
+ },
1776
+ nullable: true
1777
+ },
1778
+ actions: {
1779
+ type: 'object',
1780
+ additionalProperties: {
1781
+ '$ref': '#/components/schemas/Volo.Abp.Http.Modeling.ActionApiDescriptionModel'
1782
+ },
1783
+ nullable: true
1784
+ }
1785
+ },
1786
+ additionalProperties: false
1787
+ } as const;
1788
+
1789
+ export const $Volo_Abp_Http_Modeling_ControllerInterfaceApiDescriptionModel = {
1790
+ type: 'object',
1791
+ properties: {
1792
+ type: {
1793
+ type: 'string',
1794
+ nullable: true
1795
+ },
1796
+ name: {
1797
+ type: 'string',
1798
+ nullable: true
1799
+ },
1800
+ methods: {
1801
+ type: 'array',
1802
+ items: {
1803
+ '$ref': '#/components/schemas/Volo.Abp.Http.Modeling.InterfaceMethodApiDescriptionModel'
1804
+ },
1805
+ nullable: true
1806
+ }
1807
+ },
1808
+ additionalProperties: false
1809
+ } as const;
1810
+
1811
+ export const $Volo_Abp_Http_Modeling_InterfaceMethodApiDescriptionModel = {
1812
+ type: 'object',
1813
+ properties: {
1814
+ name: {
1815
+ type: 'string',
1816
+ nullable: true
1817
+ },
1818
+ parametersOnMethod: {
1819
+ type: 'array',
1820
+ items: {
1821
+ '$ref': '#/components/schemas/Volo.Abp.Http.Modeling.MethodParameterApiDescriptionModel'
1822
+ },
1823
+ nullable: true
1824
+ },
1825
+ returnValue: {
1826
+ '$ref': '#/components/schemas/Volo.Abp.Http.Modeling.ReturnValueApiDescriptionModel'
1827
+ }
1828
+ },
1829
+ additionalProperties: false
1830
+ } as const;
1831
+
1832
+ export const $Volo_Abp_Http_Modeling_MethodParameterApiDescriptionModel = {
1833
+ type: 'object',
1834
+ properties: {
1835
+ name: {
1836
+ type: 'string',
1837
+ nullable: true
1838
+ },
1839
+ typeAsString: {
1840
+ type: 'string',
1841
+ nullable: true
1842
+ },
1843
+ type: {
1844
+ type: 'string',
1845
+ nullable: true
1846
+ },
1847
+ typeSimple: {
1848
+ type: 'string',
1849
+ nullable: true
1850
+ },
1851
+ isOptional: {
1852
+ type: 'boolean'
1853
+ },
1854
+ defaultValue: {
1855
+ nullable: true
1856
+ }
1857
+ },
1858
+ additionalProperties: false
1859
+ } as const;
1860
+
1861
+ export const $Volo_Abp_Http_Modeling_ModuleApiDescriptionModel = {
1862
+ type: 'object',
1863
+ properties: {
1864
+ rootPath: {
1865
+ type: 'string',
1866
+ nullable: true
1867
+ },
1868
+ remoteServiceName: {
1869
+ type: 'string',
1870
+ nullable: true
1871
+ },
1872
+ controllers: {
1873
+ type: 'object',
1874
+ additionalProperties: {
1875
+ '$ref': '#/components/schemas/Volo.Abp.Http.Modeling.ControllerApiDescriptionModel'
1876
+ },
1877
+ nullable: true
1878
+ }
1879
+ },
1880
+ additionalProperties: false
1881
+ } as const;
1882
+
1883
+ export const $Volo_Abp_Http_Modeling_ParameterApiDescriptionModel = {
1884
+ type: 'object',
1885
+ properties: {
1886
+ nameOnMethod: {
1887
+ type: 'string',
1888
+ nullable: true
1889
+ },
1890
+ name: {
1891
+ type: 'string',
1892
+ nullable: true
1893
+ },
1894
+ jsonName: {
1895
+ type: 'string',
1896
+ nullable: true
1897
+ },
1898
+ type: {
1899
+ type: 'string',
1900
+ nullable: true
1901
+ },
1902
+ typeSimple: {
1903
+ type: 'string',
1904
+ nullable: true
1905
+ },
1906
+ isOptional: {
1907
+ type: 'boolean'
1908
+ },
1909
+ defaultValue: {
1910
+ nullable: true
1911
+ },
1912
+ constraintTypes: {
1913
+ type: 'array',
1914
+ items: {
1915
+ type: 'string'
1916
+ },
1917
+ nullable: true
1918
+ },
1919
+ bindingSourceId: {
1920
+ type: 'string',
1921
+ nullable: true
1922
+ },
1923
+ descriptorName: {
1924
+ type: 'string',
1925
+ nullable: true
1926
+ }
1927
+ },
1928
+ additionalProperties: false
1929
+ } as const;
1930
+
1931
+ export const $Volo_Abp_Http_Modeling_PropertyApiDescriptionModel = {
1932
+ type: 'object',
1933
+ properties: {
1934
+ name: {
1935
+ type: 'string',
1936
+ nullable: true
1937
+ },
1938
+ jsonName: {
1939
+ type: 'string',
1940
+ nullable: true
1941
+ },
1942
+ type: {
1943
+ type: 'string',
1944
+ nullable: true
1945
+ },
1946
+ typeSimple: {
1947
+ type: 'string',
1948
+ nullable: true
1949
+ },
1950
+ isRequired: {
1951
+ type: 'boolean'
1952
+ },
1953
+ minLength: {
1954
+ type: 'integer',
1955
+ format: 'int32',
1956
+ nullable: true
1957
+ },
1958
+ maxLength: {
1959
+ type: 'integer',
1960
+ format: 'int32',
1961
+ nullable: true
1962
+ },
1963
+ minimum: {
1964
+ type: 'string',
1965
+ nullable: true
1966
+ },
1967
+ maximum: {
1968
+ type: 'string',
1969
+ nullable: true
1970
+ },
1971
+ regex: {
1972
+ type: 'string',
1973
+ nullable: true
1974
+ }
1975
+ },
1976
+ additionalProperties: false
1977
+ } as const;
1978
+
1979
+ export const $Volo_Abp_Http_Modeling_ReturnValueApiDescriptionModel = {
1980
+ type: 'object',
1981
+ properties: {
1982
+ type: {
1983
+ type: 'string',
1984
+ nullable: true
1985
+ },
1986
+ typeSimple: {
1987
+ type: 'string',
1988
+ nullable: true
1989
+ }
1990
+ },
1991
+ additionalProperties: false
1992
+ } as const;
1993
+
1994
+ export const $Volo_Abp_Http_Modeling_TypeApiDescriptionModel = {
1995
+ type: 'object',
1996
+ properties: {
1997
+ baseType: {
1998
+ type: 'string',
1999
+ nullable: true
2000
+ },
2001
+ isEnum: {
2002
+ type: 'boolean'
2003
+ },
2004
+ enumNames: {
2005
+ type: 'array',
2006
+ items: {
2007
+ type: 'string'
2008
+ },
2009
+ nullable: true
2010
+ },
2011
+ enumValues: {
2012
+ type: 'array',
2013
+ items: {},
2014
+ nullable: true
2015
+ },
2016
+ genericArguments: {
2017
+ type: 'array',
2018
+ items: {
2019
+ type: 'string'
2020
+ },
2021
+ nullable: true
2022
+ },
2023
+ properties: {
2024
+ type: 'array',
2025
+ items: {
2026
+ '$ref': '#/components/schemas/Volo.Abp.Http.Modeling.PropertyApiDescriptionModel'
2027
+ },
2028
+ nullable: true
2029
+ }
2030
+ },
2031
+ additionalProperties: false
2032
+ } as const;
2033
+
2034
+ export const $Volo_Abp_Http_RemoteServiceErrorInfo = {
2035
+ type: 'object',
2036
+ properties: {
2037
+ code: {
2038
+ type: 'string',
2039
+ nullable: true
2040
+ },
2041
+ message: {
2042
+ type: 'string',
2043
+ nullable: true
2044
+ },
2045
+ details: {
2046
+ type: 'string',
2047
+ nullable: true
2048
+ },
2049
+ data: {
2050
+ type: 'object',
2051
+ additionalProperties: {},
2052
+ nullable: true
2053
+ },
2054
+ validationErrors: {
2055
+ type: 'array',
2056
+ items: {
2057
+ '$ref': '#/components/schemas/Volo.Abp.Http.RemoteServiceValidationErrorInfo'
2058
+ },
2059
+ nullable: true
2060
+ }
2061
+ },
2062
+ additionalProperties: false
2063
+ } as const;
2064
+
2065
+ export const $Volo_Abp_Http_RemoteServiceErrorResponse = {
2066
+ type: 'object',
2067
+ properties: {
2068
+ error: {
2069
+ '$ref': '#/components/schemas/Volo.Abp.Http.RemoteServiceErrorInfo'
2070
+ }
2071
+ },
2072
+ additionalProperties: false
2073
+ } as const;
2074
+
2075
+ export const $Volo_Abp_Http_RemoteServiceValidationErrorInfo = {
2076
+ type: 'object',
2077
+ properties: {
2078
+ message: {
2079
+ type: 'string',
2080
+ nullable: true
2081
+ },
2082
+ members: {
2083
+ type: 'array',
2084
+ items: {
2085
+ type: 'string'
2086
+ },
2087
+ nullable: true
2088
+ }
2089
+ },
2090
+ additionalProperties: false
2091
+ } as const;
2092
+
2093
+ export const $Volo_Abp_Identity_Features_IdentityProTwoFactorBehaviour = {
2094
+ enum: [0, 1, 2],
2095
+ type: 'integer',
2096
+ format: 'int32'
2097
+ } as const;
2098
+
2099
+ export const $Volo_Abp_Identity_IdentitySecurityLogDto = {
2100
+ type: 'object',
2101
+ properties: {
2102
+ id: {
2103
+ type: 'string',
2104
+ format: 'uuid'
2105
+ },
2106
+ tenantId: {
2107
+ type: 'string',
2108
+ format: 'uuid',
2109
+ nullable: true
2110
+ },
2111
+ applicationName: {
2112
+ type: 'string',
2113
+ nullable: true
2114
+ },
2115
+ identity: {
2116
+ type: 'string',
2117
+ nullable: true
2118
+ },
2119
+ action: {
2120
+ type: 'string',
2121
+ nullable: true
2122
+ },
2123
+ userId: {
2124
+ type: 'string',
2125
+ format: 'uuid',
2126
+ nullable: true
2127
+ },
2128
+ userName: {
2129
+ type: 'string',
2130
+ nullable: true
2131
+ },
2132
+ tenantName: {
2133
+ type: 'string',
2134
+ nullable: true
2135
+ },
2136
+ clientId: {
2137
+ type: 'string',
2138
+ nullable: true
2139
+ },
2140
+ correlationId: {
2141
+ type: 'string',
2142
+ nullable: true
2143
+ },
2144
+ clientIpAddress: {
2145
+ type: 'string',
2146
+ nullable: true
2147
+ },
2148
+ browserInfo: {
2149
+ type: 'string',
2150
+ nullable: true
2151
+ },
2152
+ creationTime: {
2153
+ type: 'string',
2154
+ format: 'date-time'
2155
+ },
2156
+ extraProperties: {
2157
+ type: 'object',
2158
+ additionalProperties: {
2159
+ nullable: true
2160
+ },
2161
+ nullable: true
2162
+ }
2163
+ },
2164
+ additionalProperties: false
2165
+ } as const;
2166
+
2167
+ export const $Volo_Abp_Identity_IdentityUserDto = {
2168
+ type: 'object',
2169
+ properties: {
2170
+ extraProperties: {
2171
+ type: 'object',
2172
+ additionalProperties: {},
2173
+ nullable: true,
2174
+ readOnly: true
2175
+ },
2176
+ id: {
2177
+ type: 'string',
2178
+ format: 'uuid'
2179
+ },
2180
+ creationTime: {
2181
+ type: 'string',
2182
+ format: 'date-time'
2183
+ },
2184
+ creatorId: {
2185
+ type: 'string',
2186
+ format: 'uuid',
2187
+ nullable: true
2188
+ },
2189
+ lastModificationTime: {
2190
+ type: 'string',
2191
+ format: 'date-time',
2192
+ nullable: true
2193
+ },
2194
+ lastModifierId: {
2195
+ type: 'string',
2196
+ format: 'uuid',
2197
+ nullable: true
2198
+ },
2199
+ isDeleted: {
2200
+ type: 'boolean'
2201
+ },
2202
+ deleterId: {
2203
+ type: 'string',
2204
+ format: 'uuid',
2205
+ nullable: true
2206
+ },
2207
+ deletionTime: {
2208
+ type: 'string',
2209
+ format: 'date-time',
2210
+ nullable: true
2211
+ },
2212
+ tenantId: {
2213
+ type: 'string',
2214
+ format: 'uuid',
2215
+ nullable: true
2216
+ },
2217
+ userName: {
2218
+ type: 'string',
2219
+ nullable: true
2220
+ },
2221
+ email: {
2222
+ type: 'string',
2223
+ nullable: true
2224
+ },
2225
+ name: {
2226
+ type: 'string',
2227
+ nullable: true
2228
+ },
2229
+ surname: {
2230
+ type: 'string',
2231
+ nullable: true
2232
+ },
2233
+ emailConfirmed: {
2234
+ type: 'boolean'
2235
+ },
2236
+ phoneNumber: {
2237
+ type: 'string',
2238
+ nullable: true
2239
+ },
2240
+ phoneNumberConfirmed: {
2241
+ type: 'boolean'
2242
+ },
2243
+ supportTwoFactor: {
2244
+ type: 'boolean'
2245
+ },
2246
+ twoFactorEnabled: {
2247
+ type: 'boolean'
2248
+ },
2249
+ isActive: {
2250
+ type: 'boolean'
2251
+ },
2252
+ lockoutEnabled: {
2253
+ type: 'boolean'
2254
+ },
2255
+ isLockedOut: {
2256
+ type: 'boolean'
2257
+ },
2258
+ lockoutEnd: {
2259
+ type: 'string',
2260
+ format: 'date-time',
2261
+ nullable: true
2262
+ },
2263
+ shouldChangePasswordOnNextLogin: {
2264
+ type: 'boolean'
2265
+ },
2266
+ concurrencyStamp: {
2267
+ type: 'string',
2268
+ nullable: true
2269
+ },
2270
+ roleNames: {
2271
+ type: 'array',
2272
+ items: {
2273
+ type: 'string'
2274
+ },
2275
+ nullable: true
2276
+ },
2277
+ accessFailedCount: {
2278
+ type: 'integer',
2279
+ format: 'int32'
2280
+ },
2281
+ lastPasswordChangeTime: {
2282
+ type: 'string',
2283
+ format: 'date-time',
2284
+ nullable: true
2285
+ }
2286
+ },
2287
+ additionalProperties: false
2288
+ } as const;
2289
+
2290
+ export const $Volo_Abp_Localization_LanguageInfo = {
2291
+ type: 'object',
2292
+ properties: {
2293
+ cultureName: {
2294
+ type: 'string',
2295
+ nullable: true
2296
+ },
2297
+ uiCultureName: {
2298
+ type: 'string',
2299
+ nullable: true
2300
+ },
2301
+ displayName: {
2302
+ type: 'string',
2303
+ nullable: true
2304
+ },
2305
+ twoLetterISOLanguageName: {
2306
+ type: 'string',
2307
+ nullable: true,
2308
+ readOnly: true
2309
+ },
2310
+ flagIcon: {
2311
+ type: 'string',
2312
+ nullable: true
2313
+ }
2314
+ },
2315
+ additionalProperties: false
2316
+ } as const;
2317
+
2318
+ export const $Volo_Abp_NameValue = {
2319
+ type: 'object',
2320
+ properties: {
2321
+ name: {
2322
+ type: 'string',
2323
+ nullable: true
2324
+ },
2325
+ value: {
2326
+ type: 'string',
2327
+ nullable: true
2328
+ }
2329
+ },
2330
+ additionalProperties: false
2331
+ } as const;