@ayasofyazilim/saas 0.0.11 → 0.0.13

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.
@@ -12,7 +12,55 @@ export const $Volo_Abp_Application_Dtos_ListResultDto_1__Volo_Abp_LanguageManage
12
12
  items: {
13
13
  type: 'array',
14
14
  items: {
15
- '$ref': '#/components/schemas/Volo.Abp.LanguageManagement.Dto.LanguageDto'
15
+ type: 'object',
16
+ properties: {
17
+ extraProperties: {
18
+ type: 'object',
19
+ additionalProperties: {},
20
+ nullable: true,
21
+ readOnly: true
22
+ },
23
+ id: {
24
+ type: 'string',
25
+ format: 'uuid'
26
+ },
27
+ creationTime: {
28
+ type: 'string',
29
+ format: 'date-time'
30
+ },
31
+ creatorId: {
32
+ type: 'string',
33
+ format: 'uuid',
34
+ nullable: true
35
+ },
36
+ cultureName: {
37
+ type: 'string',
38
+ nullable: true
39
+ },
40
+ uiCultureName: {
41
+ type: 'string',
42
+ nullable: true
43
+ },
44
+ displayName: {
45
+ type: 'string',
46
+ nullable: true
47
+ },
48
+ flagIcon: {
49
+ type: 'string',
50
+ nullable: true
51
+ },
52
+ isEnabled: {
53
+ type: 'boolean'
54
+ },
55
+ isDefaultLanguage: {
56
+ type: 'boolean'
57
+ },
58
+ concurrencyStamp: {
59
+ type: 'string',
60
+ nullable: true
61
+ }
62
+ },
63
+ additionalProperties: false
16
64
  },
17
65
  nullable: true
18
66
  }
@@ -26,7 +74,239 @@ export const $Volo_Abp_Application_Dtos_PagedResultDto_1__Volo_Abp_AuditLogging_
26
74
  items: {
27
75
  type: 'array',
28
76
  items: {
29
- '$ref': '#/components/schemas/Volo.Abp.AuditLogging.AuditLogDto'
77
+ type: 'object',
78
+ properties: {
79
+ extraProperties: {
80
+ type: 'object',
81
+ additionalProperties: {},
82
+ nullable: true,
83
+ readOnly: true
84
+ },
85
+ id: {
86
+ type: 'string',
87
+ format: 'uuid'
88
+ },
89
+ userId: {
90
+ type: 'string',
91
+ format: 'uuid',
92
+ nullable: true
93
+ },
94
+ userName: {
95
+ type: 'string',
96
+ nullable: true
97
+ },
98
+ tenantId: {
99
+ type: 'string',
100
+ format: 'uuid',
101
+ nullable: true
102
+ },
103
+ tenantName: {
104
+ type: 'string',
105
+ nullable: true
106
+ },
107
+ impersonatorUserId: {
108
+ type: 'string',
109
+ format: 'uuid',
110
+ nullable: true
111
+ },
112
+ impersonatorUserName: {
113
+ type: 'string',
114
+ nullable: true
115
+ },
116
+ impersonatorTenantId: {
117
+ type: 'string',
118
+ format: 'uuid',
119
+ nullable: true
120
+ },
121
+ impersonatorTenantName: {
122
+ type: 'string',
123
+ nullable: true
124
+ },
125
+ executionTime: {
126
+ type: 'string',
127
+ format: 'date-time'
128
+ },
129
+ executionDuration: {
130
+ type: 'integer',
131
+ format: 'int32'
132
+ },
133
+ clientIpAddress: {
134
+ type: 'string',
135
+ nullable: true
136
+ },
137
+ clientName: {
138
+ type: 'string',
139
+ nullable: true
140
+ },
141
+ browserInfo: {
142
+ type: 'string',
143
+ nullable: true
144
+ },
145
+ httpMethod: {
146
+ type: 'string',
147
+ nullable: true
148
+ },
149
+ url: {
150
+ type: 'string',
151
+ nullable: true
152
+ },
153
+ exceptions: {
154
+ type: 'string',
155
+ nullable: true
156
+ },
157
+ comments: {
158
+ type: 'string',
159
+ nullable: true
160
+ },
161
+ httpStatusCode: {
162
+ type: 'integer',
163
+ format: 'int32',
164
+ nullable: true
165
+ },
166
+ applicationName: {
167
+ type: 'string',
168
+ nullable: true
169
+ },
170
+ correlationId: {
171
+ type: 'string',
172
+ nullable: true
173
+ },
174
+ entityChanges: {
175
+ type: 'array',
176
+ items: {
177
+ type: 'object',
178
+ properties: {
179
+ extraProperties: {
180
+ type: 'object',
181
+ additionalProperties: {},
182
+ nullable: true,
183
+ readOnly: true
184
+ },
185
+ id: {
186
+ type: 'string',
187
+ format: 'uuid'
188
+ },
189
+ auditLogId: {
190
+ type: 'string',
191
+ format: 'uuid'
192
+ },
193
+ tenantId: {
194
+ type: 'string',
195
+ format: 'uuid',
196
+ nullable: true
197
+ },
198
+ changeTime: {
199
+ type: 'string',
200
+ format: 'date-time'
201
+ },
202
+ changeType: {
203
+ enum: [0, 1, 2],
204
+ type: 'integer',
205
+ format: 'int32'
206
+ },
207
+ entityId: {
208
+ type: 'string',
209
+ nullable: true
210
+ },
211
+ entityTypeFullName: {
212
+ type: 'string',
213
+ nullable: true
214
+ },
215
+ propertyChanges: {
216
+ type: 'array',
217
+ items: {
218
+ type: 'object',
219
+ properties: {
220
+ id: {
221
+ type: 'string',
222
+ format: 'uuid'
223
+ },
224
+ tenantId: {
225
+ type: 'string',
226
+ format: 'uuid',
227
+ nullable: true
228
+ },
229
+ entityChangeId: {
230
+ type: 'string',
231
+ format: 'uuid'
232
+ },
233
+ newValue: {
234
+ type: 'string',
235
+ nullable: true
236
+ },
237
+ originalValue: {
238
+ type: 'string',
239
+ nullable: true
240
+ },
241
+ propertyName: {
242
+ type: 'string',
243
+ nullable: true
244
+ },
245
+ propertyTypeFullName: {
246
+ type: 'string',
247
+ nullable: true
248
+ }
249
+ },
250
+ additionalProperties: false
251
+ },
252
+ nullable: true
253
+ }
254
+ },
255
+ additionalProperties: false
256
+ },
257
+ nullable: true
258
+ },
259
+ actions: {
260
+ type: 'array',
261
+ items: {
262
+ type: 'object',
263
+ properties: {
264
+ extraProperties: {
265
+ type: 'object',
266
+ additionalProperties: {},
267
+ nullable: true,
268
+ readOnly: true
269
+ },
270
+ id: {
271
+ type: 'string',
272
+ format: 'uuid'
273
+ },
274
+ tenantId: {
275
+ type: 'string',
276
+ format: 'uuid',
277
+ nullable: true
278
+ },
279
+ auditLogId: {
280
+ type: 'string',
281
+ format: 'uuid'
282
+ },
283
+ serviceName: {
284
+ type: 'string',
285
+ nullable: true
286
+ },
287
+ methodName: {
288
+ type: 'string',
289
+ nullable: true
290
+ },
291
+ parameters: {
292
+ type: 'string',
293
+ nullable: true
294
+ },
295
+ executionTime: {
296
+ type: 'string',
297
+ format: 'date-time'
298
+ },
299
+ executionDuration: {
300
+ type: 'integer',
301
+ format: 'int32'
302
+ }
303
+ },
304
+ additionalProperties: false
305
+ },
306
+ nullable: true
307
+ }
308
+ },
309
+ additionalProperties: false
30
310
  },
31
311
  nullable: true
32
312
  },
@@ -44,7 +324,85 @@ export const $Volo_Abp_Application_Dtos_PagedResultDto_1__Volo_Abp_AuditLogging_
44
324
  items: {
45
325
  type: 'array',
46
326
  items: {
47
- '$ref': '#/components/schemas/Volo.Abp.AuditLogging.EntityChangeDto'
327
+ type: 'object',
328
+ properties: {
329
+ extraProperties: {
330
+ type: 'object',
331
+ additionalProperties: {},
332
+ nullable: true,
333
+ readOnly: true
334
+ },
335
+ id: {
336
+ type: 'string',
337
+ format: 'uuid'
338
+ },
339
+ auditLogId: {
340
+ type: 'string',
341
+ format: 'uuid'
342
+ },
343
+ tenantId: {
344
+ type: 'string',
345
+ format: 'uuid',
346
+ nullable: true
347
+ },
348
+ changeTime: {
349
+ type: 'string',
350
+ format: 'date-time'
351
+ },
352
+ changeType: {
353
+ enum: [0, 1, 2],
354
+ type: 'integer',
355
+ format: 'int32'
356
+ },
357
+ entityId: {
358
+ type: 'string',
359
+ nullable: true
360
+ },
361
+ entityTypeFullName: {
362
+ type: 'string',
363
+ nullable: true
364
+ },
365
+ propertyChanges: {
366
+ type: 'array',
367
+ items: {
368
+ type: 'object',
369
+ properties: {
370
+ id: {
371
+ type: 'string',
372
+ format: 'uuid'
373
+ },
374
+ tenantId: {
375
+ type: 'string',
376
+ format: 'uuid',
377
+ nullable: true
378
+ },
379
+ entityChangeId: {
380
+ type: 'string',
381
+ format: 'uuid'
382
+ },
383
+ newValue: {
384
+ type: 'string',
385
+ nullable: true
386
+ },
387
+ originalValue: {
388
+ type: 'string',
389
+ nullable: true
390
+ },
391
+ propertyName: {
392
+ type: 'string',
393
+ nullable: true
394
+ },
395
+ propertyTypeFullName: {
396
+ type: 'string',
397
+ nullable: true
398
+ }
399
+ },
400
+ additionalProperties: false
401
+ },
402
+ nullable: true
403
+ }
404
+ },
405
+ additionalProperties: false
48
406
  },
49
407
  nullable: true
50
408
  },
@@ -62,7 +420,22 @@ export const $Volo_Abp_Application_Dtos_PagedResultDto_1__Volo_Abp_Gdpr_GdprRequ
62
420
  items: {
63
421
  type: 'array',
64
422
  items: {
65
- '$ref': '#/components/schemas/Volo.Abp.Gdpr.GdprRequestDto'
423
+ type: 'object',
424
+ properties: {
425
+ id: {
426
+ type: 'string',
427
+ format: 'uuid'
428
+ },
429
+ creationTime: {
430
+ type: 'string',
431
+ format: 'date-time'
432
+ },
433
+ readyTime: {
434
+ type: 'string',
435
+ format: 'date-time'
436
+ }
437
+ },
438
+ additionalProperties: false
66
439
  },
67
440
  nullable: true
68
441
  },
@@ -80,7 +453,55 @@ export const $Volo_Abp_Application_Dtos_PagedResultDto_1__Volo_Abp_LanguageManag
80
453
  items: {
81
454
  type: 'array',
82
455
  items: {
83
- '$ref': '#/components/schemas/Volo.Abp.LanguageManagement.Dto.LanguageDto'
456
+ type: 'object',
457
+ properties: {
458
+ extraProperties: {
459
+ type: 'object',
460
+ additionalProperties: {},
461
+ nullable: true,
462
+ readOnly: true
463
+ },
464
+ id: {
465
+ type: 'string',
466
+ format: 'uuid'
467
+ },
468
+ creationTime: {
469
+ type: 'string',
470
+ format: 'date-time'
471
+ },
472
+ creatorId: {
473
+ type: 'string',
474
+ format: 'uuid',
475
+ nullable: true
476
+ },
477
+ cultureName: {
478
+ type: 'string',
479
+ nullable: true
480
+ },
481
+ uiCultureName: {
482
+ type: 'string',
483
+ nullable: true
484
+ },
485
+ displayName: {
486
+ type: 'string',
487
+ nullable: true
488
+ },
489
+ flagIcon: {
490
+ type: 'string',
491
+ nullable: true
492
+ },
493
+ isEnabled: {
494
+ type: 'boolean'
495
+ },
496
+ isDefaultLanguage: {
497
+ type: 'boolean'
498
+ },
499
+ concurrencyStamp: {
500
+ type: 'string',
501
+ nullable: true
502
+ }
503
+ },
504
+ additionalProperties: false
84
505
  },
85
506
  nullable: true
86
507
  },
@@ -98,7 +519,34 @@ export const $Volo_Abp_Application_Dtos_PagedResultDto_1__Volo_Abp_LanguageManag
98
519
  items: {
99
520
  type: 'array',
100
521
  items: {
101
- '$ref': '#/components/schemas/Volo.Abp.LanguageManagement.Dto.LanguageTextDto'
522
+ type: 'object',
523
+ properties: {
524
+ resourceName: {
525
+ type: 'string',
526
+ nullable: true
527
+ },
528
+ cultureName: {
529
+ type: 'string',
530
+ nullable: true
531
+ },
532
+ baseCultureName: {
533
+ type: 'string',
534
+ nullable: true
535
+ },
536
+ baseValue: {
537
+ type: 'string',
538
+ nullable: true
539
+ },
540
+ name: {
541
+ type: 'string',
542
+ nullable: true
543
+ },
544
+ value: {
545
+ type: 'string',
546
+ nullable: true
547
+ }
548
+ },
549
+ additionalProperties: false
102
550
  },
103
551
  nullable: true
104
552
  },
@@ -116,7 +564,32 @@ export const $Volo_Abp_Application_Dtos_PagedResultDto_1__Volo_Abp_TextTemplateM
116
564
  items: {
117
565
  type: 'array',
118
566
  items: {
119
- '$ref': '#/components/schemas/Volo.Abp.TextTemplateManagement.TextTemplates.TemplateDefinitionDto'
567
+ type: 'object',
568
+ properties: {
569
+ name: {
570
+ type: 'string',
571
+ nullable: true
572
+ },
573
+ displayName: {
574
+ type: 'string',
575
+ nullable: true
576
+ },
577
+ isLayout: {
578
+ type: 'boolean'
579
+ },
580
+ layout: {
581
+ type: 'string',
582
+ nullable: true
583
+ },
584
+ isInlineLocalized: {
585
+ type: 'boolean'
586
+ },
587
+ defaultCultureName: {
588
+ type: 'string',
589
+ nullable: true
590
+ }
591
+ },
592
+ additionalProperties: false
120
593
  },
121
594
  nullable: true
122
595
  },
@@ -146,37 +619,604 @@ export const $Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationConfi
146
619
  type: 'object',
147
620
  properties: {
148
621
  localization: {
149
- '$ref': '#/components/schemas/Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationLocalizationConfigurationDto'
622
+ type: 'object',
623
+ properties: {
624
+ values: {
625
+ type: 'object',
626
+ additionalProperties: {
627
+ type: 'object',
628
+ additionalProperties: {
629
+ type: 'string'
630
+ }
631
+ },
632
+ nullable: true
633
+ },
634
+ resources: {
635
+ type: 'object',
636
+ additionalProperties: {
637
+ type: 'object',
638
+ properties: {
639
+ texts: {
640
+ type: 'object',
641
+ additionalProperties: {
642
+ type: 'string'
643
+ },
644
+ nullable: true
645
+ },
646
+ baseResources: {
647
+ type: 'array',
648
+ items: {
649
+ type: 'string'
650
+ },
651
+ nullable: true
652
+ }
653
+ },
654
+ additionalProperties: false
655
+ },
656
+ nullable: true
657
+ },
658
+ languages: {
659
+ type: 'array',
660
+ items: {
661
+ type: 'object',
662
+ properties: {
663
+ cultureName: {
664
+ type: 'string',
665
+ nullable: true
666
+ },
667
+ uiCultureName: {
668
+ type: 'string',
669
+ nullable: true
670
+ },
671
+ displayName: {
672
+ type: 'string',
673
+ nullable: true
674
+ },
675
+ twoLetterISOLanguageName: {
676
+ type: 'string',
677
+ nullable: true,
678
+ readOnly: true
679
+ },
680
+ flagIcon: {
681
+ type: 'string',
682
+ nullable: true
683
+ }
684
+ },
685
+ additionalProperties: false
686
+ },
687
+ nullable: true
688
+ },
689
+ currentCulture: {
690
+ type: 'object',
691
+ properties: {
692
+ displayName: {
693
+ type: 'string',
694
+ nullable: true
695
+ },
696
+ englishName: {
697
+ type: 'string',
698
+ nullable: true
699
+ },
700
+ threeLetterIsoLanguageName: {
701
+ type: 'string',
702
+ nullable: true
703
+ },
704
+ twoLetterIsoLanguageName: {
705
+ type: 'string',
706
+ nullable: true
707
+ },
708
+ isRightToLeft: {
709
+ type: 'boolean'
710
+ },
711
+ cultureName: {
712
+ type: 'string',
713
+ nullable: true
714
+ },
715
+ name: {
716
+ type: 'string',
717
+ nullable: true
718
+ },
719
+ nativeName: {
720
+ type: 'string',
721
+ nullable: true
722
+ },
723
+ dateTimeFormat: {
724
+ type: 'object',
725
+ properties: {
726
+ calendarAlgorithmType: {
727
+ type: 'string',
728
+ nullable: true
729
+ },
730
+ dateTimeFormatLong: {
731
+ type: 'string',
732
+ nullable: true
733
+ },
734
+ shortDatePattern: {
735
+ type: 'string',
736
+ nullable: true
737
+ },
738
+ fullDateTimePattern: {
739
+ type: 'string',
740
+ nullable: true
741
+ },
742
+ dateSeparator: {
743
+ type: 'string',
744
+ nullable: true
745
+ },
746
+ shortTimePattern: {
747
+ type: 'string',
748
+ nullable: true
749
+ },
750
+ longTimePattern: {
751
+ type: 'string',
752
+ nullable: true
753
+ }
754
+ },
755
+ additionalProperties: false
756
+ }
757
+ },
758
+ additionalProperties: false
759
+ },
760
+ defaultResourceName: {
761
+ type: 'string',
762
+ nullable: true
763
+ },
764
+ languagesMap: {
765
+ type: 'object',
766
+ additionalProperties: {
767
+ type: 'array',
768
+ items: {
769
+ type: 'object',
770
+ properties: {
771
+ name: {
772
+ type: 'string',
773
+ nullable: true
774
+ },
775
+ value: {
776
+ type: 'string',
777
+ nullable: true
778
+ }
779
+ },
780
+ additionalProperties: false
781
+ }
782
+ },
783
+ nullable: true
784
+ },
785
+ languageFilesMap: {
786
+ type: 'object',
787
+ additionalProperties: {
788
+ type: 'array',
789
+ items: {
790
+ type: 'object',
791
+ properties: {
792
+ name: {
793
+ type: 'string',
794
+ nullable: true
795
+ },
796
+ value: {
797
+ type: 'string',
798
+ nullable: true
799
+ }
800
+ },
801
+ additionalProperties: false
802
+ }
803
+ },
804
+ nullable: true
805
+ }
806
+ },
807
+ additionalProperties: false
150
808
  },
151
809
  auth: {
152
- '$ref': '#/components/schemas/Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationAuthConfigurationDto'
810
+ type: 'object',
811
+ properties: {
812
+ grantedPolicies: {
813
+ type: 'object',
814
+ additionalProperties: {
815
+ type: 'boolean'
816
+ },
817
+ nullable: true
818
+ }
819
+ },
820
+ additionalProperties: false
153
821
  },
154
822
  setting: {
155
- '$ref': '#/components/schemas/Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationSettingConfigurationDto'
823
+ type: 'object',
824
+ properties: {
825
+ values: {
826
+ type: 'object',
827
+ additionalProperties: {
828
+ type: 'string',
829
+ nullable: true
830
+ },
831
+ nullable: true
832
+ }
833
+ },
834
+ additionalProperties: false
156
835
  },
157
836
  currentUser: {
158
- '$ref': '#/components/schemas/Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.CurrentUserDto'
837
+ type: 'object',
838
+ properties: {
839
+ isAuthenticated: {
840
+ type: 'boolean'
841
+ },
842
+ id: {
843
+ type: 'string',
844
+ format: 'uuid',
845
+ nullable: true
846
+ },
847
+ tenantId: {
848
+ type: 'string',
849
+ format: 'uuid',
850
+ nullable: true
851
+ },
852
+ impersonatorUserId: {
853
+ type: 'string',
854
+ format: 'uuid',
855
+ nullable: true
856
+ },
857
+ impersonatorTenantId: {
858
+ type: 'string',
859
+ format: 'uuid',
860
+ nullable: true
861
+ },
862
+ impersonatorUserName: {
863
+ type: 'string',
864
+ nullable: true
865
+ },
866
+ impersonatorTenantName: {
867
+ type: 'string',
868
+ nullable: true
869
+ },
870
+ userName: {
871
+ type: 'string',
872
+ nullable: true
873
+ },
874
+ name: {
875
+ type: 'string',
876
+ nullable: true
877
+ },
878
+ surName: {
879
+ type: 'string',
880
+ nullable: true
881
+ },
882
+ email: {
883
+ type: 'string',
884
+ nullable: true
885
+ },
886
+ emailVerified: {
887
+ type: 'boolean'
888
+ },
889
+ phoneNumber: {
890
+ type: 'string',
891
+ nullable: true
892
+ },
893
+ phoneNumberVerified: {
894
+ type: 'boolean'
895
+ },
896
+ roles: {
897
+ type: 'array',
898
+ items: {
899
+ type: 'string'
900
+ },
901
+ nullable: true
902
+ }
903
+ },
904
+ additionalProperties: false
159
905
  },
160
906
  features: {
161
- '$ref': '#/components/schemas/Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationFeatureConfigurationDto'
907
+ type: 'object',
908
+ properties: {
909
+ values: {
910
+ type: 'object',
911
+ additionalProperties: {
912
+ type: 'string',
913
+ nullable: true
914
+ },
915
+ nullable: true
916
+ }
917
+ },
918
+ additionalProperties: false
162
919
  },
163
920
  globalFeatures: {
164
- '$ref': '#/components/schemas/Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationGlobalFeatureConfigurationDto'
921
+ type: 'object',
922
+ properties: {
923
+ enabledFeatures: {
924
+ uniqueItems: true,
925
+ type: 'array',
926
+ items: {
927
+ type: 'string'
928
+ },
929
+ nullable: true
930
+ }
931
+ },
932
+ additionalProperties: false
165
933
  },
166
934
  multiTenancy: {
167
- '$ref': '#/components/schemas/Volo.Abp.AspNetCore.Mvc.MultiTenancy.MultiTenancyInfoDto'
935
+ type: 'object',
936
+ properties: {
937
+ isEnabled: {
938
+ type: 'boolean'
939
+ }
940
+ },
941
+ additionalProperties: false
168
942
  },
169
943
  currentTenant: {
170
- '$ref': '#/components/schemas/Volo.Abp.AspNetCore.Mvc.MultiTenancy.CurrentTenantDto'
944
+ type: 'object',
945
+ properties: {
946
+ id: {
947
+ type: 'string',
948
+ format: 'uuid',
949
+ nullable: true
950
+ },
951
+ name: {
952
+ type: 'string',
953
+ nullable: true
954
+ },
955
+ isAvailable: {
956
+ type: 'boolean'
957
+ }
958
+ },
959
+ additionalProperties: false
171
960
  },
172
961
  timing: {
173
- '$ref': '#/components/schemas/Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.TimingDto'
962
+ type: 'object',
963
+ properties: {
964
+ timeZone: {
965
+ type: 'object',
966
+ properties: {
967
+ iana: {
968
+ type: 'object',
969
+ properties: {
970
+ timeZoneName: {
971
+ type: 'string',
972
+ nullable: true
973
+ }
974
+ },
975
+ additionalProperties: false
976
+ },
977
+ windows: {
978
+ type: 'object',
979
+ properties: {
980
+ timeZoneId: {
981
+ type: 'string',
982
+ nullable: true
983
+ }
984
+ },
985
+ additionalProperties: false
986
+ }
987
+ },
988
+ additionalProperties: false
989
+ }
990
+ },
991
+ additionalProperties: false
174
992
  },
175
993
  clock: {
176
- '$ref': '#/components/schemas/Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ClockDto'
994
+ type: 'object',
995
+ properties: {
996
+ kind: {
997
+ type: 'string',
998
+ nullable: true
999
+ }
1000
+ },
1001
+ additionalProperties: false
177
1002
  },
178
1003
  objectExtensions: {
179
- '$ref': '#/components/schemas/Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ObjectExtending.ObjectExtensionsDto'
1004
+ type: 'object',
1005
+ properties: {
1006
+ modules: {
1007
+ type: 'object',
1008
+ additionalProperties: {
1009
+ type: 'object',
1010
+ properties: {
1011
+ entities: {
1012
+ type: 'object',
1013
+ additionalProperties: {
1014
+ type: 'object',
1015
+ properties: {
1016
+ properties: {
1017
+ type: 'object',
1018
+ additionalProperties: {
1019
+ type: 'object',
1020
+ properties: {
1021
+ type: {
1022
+ type: 'string',
1023
+ nullable: true
1024
+ },
1025
+ typeSimple: {
1026
+ type: 'string',
1027
+ nullable: true
1028
+ },
1029
+ displayName: {
1030
+ type: 'object',
1031
+ properties: {
1032
+ name: {
1033
+ type: 'string',
1034
+ nullable: true
1035
+ },
1036
+ resource: {
1037
+ type: 'string',
1038
+ nullable: true
1039
+ }
1040
+ },
1041
+ additionalProperties: false
1042
+ },
1043
+ api: {
1044
+ type: 'object',
1045
+ properties: {
1046
+ onGet: {
1047
+ type: 'object',
1048
+ properties: {
1049
+ isAvailable: {
1050
+ type: 'boolean'
1051
+ }
1052
+ },
1053
+ additionalProperties: false
1054
+ },
1055
+ onCreate: {
1056
+ type: 'object',
1057
+ properties: {
1058
+ isAvailable: {
1059
+ type: 'boolean'
1060
+ }
1061
+ },
1062
+ additionalProperties: false
1063
+ },
1064
+ onUpdate: {
1065
+ type: 'object',
1066
+ properties: {
1067
+ isAvailable: {
1068
+ type: 'boolean'
1069
+ }
1070
+ },
1071
+ additionalProperties: false
1072
+ }
1073
+ },
1074
+ additionalProperties: false
1075
+ },
1076
+ ui: {
1077
+ type: 'object',
1078
+ properties: {
1079
+ onTable: {
1080
+ type: 'object',
1081
+ properties: {
1082
+ isVisible: {
1083
+ type: 'boolean'
1084
+ }
1085
+ },
1086
+ additionalProperties: false
1087
+ },
1088
+ onCreateForm: {
1089
+ type: 'object',
1090
+ properties: {
1091
+ isVisible: {
1092
+ type: 'boolean'
1093
+ }
1094
+ },
1095
+ additionalProperties: false
1096
+ },
1097
+ onEditForm: {
1098
+ type: 'object',
1099
+ properties: {
1100
+ isVisible: {
1101
+ type: 'boolean'
1102
+ }
1103
+ },
1104
+ additionalProperties: false
1105
+ },
1106
+ lookup: {
1107
+ type: 'object',
1108
+ properties: {
1109
+ url: {
1110
+ type: 'string',
1111
+ nullable: true
1112
+ },
1113
+ resultListPropertyName: {
1114
+ type: 'string',
1115
+ nullable: true
1116
+ },
1117
+ displayPropertyName: {
1118
+ type: 'string',
1119
+ nullable: true
1120
+ },
1121
+ valuePropertyName: {
1122
+ type: 'string',
1123
+ nullable: true
1124
+ },
1125
+ filterParamName: {
1126
+ type: 'string',
1127
+ nullable: true
1128
+ }
1129
+ },
1130
+ additionalProperties: false
1131
+ }
1132
+ },
1133
+ additionalProperties: false
1134
+ },
1135
+ attributes: {
1136
+ type: 'array',
1137
+ items: {
1138
+ type: 'object',
1139
+ properties: {
1140
+ typeSimple: {
1141
+ type: 'string',
1142
+ nullable: true
1143
+ },
1144
+ config: {
1145
+ type: 'object',
1146
+ additionalProperties: {},
1147
+ nullable: true
1148
+ }
1149
+ },
1150
+ additionalProperties: false
1151
+ },
1152
+ nullable: true
1153
+ },
1154
+ configuration: {
1155
+ type: 'object',
1156
+ additionalProperties: {},
1157
+ nullable: true
1158
+ },
1159
+ defaultValue: {
1160
+ nullable: true
1161
+ }
1162
+ },
1163
+ additionalProperties: false
1164
+ },
1165
+ nullable: true
1166
+ },
1167
+ configuration: {
1168
+ type: 'object',
1169
+ additionalProperties: {},
1170
+ nullable: true
1171
+ }
1172
+ },
1173
+ additionalProperties: false
1174
+ },
1175
+ nullable: true
1176
+ },
1177
+ configuration: {
1178
+ type: 'object',
1179
+ additionalProperties: {},
1180
+ nullable: true
1181
+ }
1182
+ },
1183
+ additionalProperties: false
1184
+ },
1185
+ nullable: true
1186
+ },
1187
+ enums: {
1188
+ type: 'object',
1189
+ additionalProperties: {
1190
+ type: 'object',
1191
+ properties: {
1192
+ fields: {
1193
+ type: 'array',
1194
+ items: {
1195
+ type: 'object',
1196
+ properties: {
1197
+ name: {
1198
+ type: 'string',
1199
+ nullable: true
1200
+ },
1201
+ value: {
1202
+ nullable: true
1203
+ }
1204
+ },
1205
+ additionalProperties: false
1206
+ },
1207
+ nullable: true
1208
+ },
1209
+ localizationResource: {
1210
+ type: 'string',
1211
+ nullable: true
1212
+ }
1213
+ },
1214
+ additionalProperties: false
1215
+ },
1216
+ nullable: true
1217
+ }
1218
+ },
1219
+ additionalProperties: false
180
1220
  },
181
1221
  extraProperties: {
182
1222
  type: 'object',
@@ -233,19 +1273,128 @@ export const $Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocal
233
1273
  resources: {
234
1274
  type: 'object',
235
1275
  additionalProperties: {
236
- '$ref': '#/components/schemas/Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationLocalizationResourceDto'
1276
+ type: 'object',
1277
+ properties: {
1278
+ texts: {
1279
+ type: 'object',
1280
+ additionalProperties: {
1281
+ type: 'string'
1282
+ },
1283
+ nullable: true
1284
+ },
1285
+ baseResources: {
1286
+ type: 'array',
1287
+ items: {
1288
+ type: 'string'
1289
+ },
1290
+ nullable: true
1291
+ }
1292
+ },
1293
+ additionalProperties: false
237
1294
  },
238
1295
  nullable: true
239
1296
  },
240
1297
  languages: {
241
1298
  type: 'array',
242
1299
  items: {
243
- '$ref': '#/components/schemas/Volo.Abp.Localization.LanguageInfo'
1300
+ type: 'object',
1301
+ properties: {
1302
+ cultureName: {
1303
+ type: 'string',
1304
+ nullable: true
1305
+ },
1306
+ uiCultureName: {
1307
+ type: 'string',
1308
+ nullable: true
1309
+ },
1310
+ displayName: {
1311
+ type: 'string',
1312
+ nullable: true
1313
+ },
1314
+ twoLetterISOLanguageName: {
1315
+ type: 'string',
1316
+ nullable: true,
1317
+ readOnly: true
1318
+ },
1319
+ flagIcon: {
1320
+ type: 'string',
1321
+ nullable: true
1322
+ }
1323
+ },
1324
+ additionalProperties: false
244
1325
  },
245
1326
  nullable: true
246
1327
  },
247
1328
  currentCulture: {
248
- '$ref': '#/components/schemas/Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.CurrentCultureDto'
1329
+ type: 'object',
1330
+ properties: {
1331
+ displayName: {
1332
+ type: 'string',
1333
+ nullable: true
1334
+ },
1335
+ englishName: {
1336
+ type: 'string',
1337
+ nullable: true
1338
+ },
1339
+ threeLetterIsoLanguageName: {
1340
+ type: 'string',
1341
+ nullable: true
1342
+ },
1343
+ twoLetterIsoLanguageName: {
1344
+ type: 'string',
1345
+ nullable: true
1346
+ },
1347
+ isRightToLeft: {
1348
+ type: 'boolean'
1349
+ },
1350
+ cultureName: {
1351
+ type: 'string',
1352
+ nullable: true
1353
+ },
1354
+ name: {
1355
+ type: 'string',
1356
+ nullable: true
1357
+ },
1358
+ nativeName: {
1359
+ type: 'string',
1360
+ nullable: true
1361
+ },
1362
+ dateTimeFormat: {
1363
+ type: 'object',
1364
+ properties: {
1365
+ calendarAlgorithmType: {
1366
+ type: 'string',
1367
+ nullable: true
1368
+ },
1369
+ dateTimeFormatLong: {
1370
+ type: 'string',
1371
+ nullable: true
1372
+ },
1373
+ shortDatePattern: {
1374
+ type: 'string',
1375
+ nullable: true
1376
+ },
1377
+ fullDateTimePattern: {
1378
+ type: 'string',
1379
+ nullable: true
1380
+ },
1381
+ dateSeparator: {
1382
+ type: 'string',
1383
+ nullable: true
1384
+ },
1385
+ shortTimePattern: {
1386
+ type: 'string',
1387
+ nullable: true
1388
+ },
1389
+ longTimePattern: {
1390
+ type: 'string',
1391
+ nullable: true
1392
+ }
1393
+ },
1394
+ additionalProperties: false
1395
+ }
1396
+ },
1397
+ additionalProperties: false
249
1398
  },
250
1399
  defaultResourceName: {
251
1400
  type: 'string',
@@ -256,7 +1405,18 @@ export const $Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocal
256
1405
  additionalProperties: {
257
1406
  type: 'array',
258
1407
  items: {
259
- '$ref': '#/components/schemas/Volo.Abp.NameValue'
1408
+ type: 'object',
1409
+ properties: {
1410
+ name: {
1411
+ type: 'string',
1412
+ nullable: true
1413
+ },
1414
+ value: {
1415
+ type: 'string',
1416
+ nullable: true
1417
+ }
1418
+ },
1419
+ additionalProperties: false
260
1420
  }
261
1421
  },
262
1422
  nullable: true
@@ -266,7 +1426,18 @@ export const $Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocal
266
1426
  additionalProperties: {
267
1427
  type: 'array',
268
1428
  items: {
269
- '$ref': '#/components/schemas/Volo.Abp.NameValue'
1429
+ type: 'object',
1430
+ properties: {
1431
+ name: {
1432
+ type: 'string',
1433
+ nullable: true
1434
+ },
1435
+ value: {
1436
+ type: 'string',
1437
+ nullable: true
1438
+ }
1439
+ },
1440
+ additionalProperties: false
270
1441
  }
271
1442
  },
272
1443
  nullable: true
@@ -281,7 +1452,24 @@ export const $Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocal
281
1452
  resources: {
282
1453
  type: 'object',
283
1454
  additionalProperties: {
284
- '$ref': '#/components/schemas/Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationLocalizationResourceDto'
1455
+ type: 'object',
1456
+ properties: {
1457
+ texts: {
1458
+ type: 'object',
1459
+ additionalProperties: {
1460
+ type: 'string'
1461
+ },
1462
+ nullable: true
1463
+ },
1464
+ baseResources: {
1465
+ type: 'array',
1466
+ items: {
1467
+ type: 'string'
1468
+ },
1469
+ nullable: true
1470
+ }
1471
+ },
1472
+ additionalProperties: false
285
1473
  },
286
1474
  nullable: true
287
1475
  }
@@ -371,7 +1559,38 @@ export const $Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_CurrentCultureDt
371
1559
  nullable: true
372
1560
  },
373
1561
  dateTimeFormat: {
374
- '$ref': '#/components/schemas/Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.DateTimeFormatDto'
1562
+ type: 'object',
1563
+ properties: {
1564
+ calendarAlgorithmType: {
1565
+ type: 'string',
1566
+ nullable: true
1567
+ },
1568
+ dateTimeFormatLong: {
1569
+ type: 'string',
1570
+ nullable: true
1571
+ },
1572
+ shortDatePattern: {
1573
+ type: 'string',
1574
+ nullable: true
1575
+ },
1576
+ fullDateTimePattern: {
1577
+ type: 'string',
1578
+ nullable: true
1579
+ },
1580
+ dateSeparator: {
1581
+ type: 'string',
1582
+ nullable: true
1583
+ },
1584
+ shortTimePattern: {
1585
+ type: 'string',
1586
+ nullable: true
1587
+ },
1588
+ longTimePattern: {
1589
+ type: 'string',
1590
+ nullable: true
1591
+ }
1592
+ },
1593
+ additionalProperties: false
375
1594
  }
376
1595
  },
377
1596
  additionalProperties: false
@@ -500,7 +1719,151 @@ export const $Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_
500
1719
  properties: {
501
1720
  type: 'object',
502
1721
  additionalProperties: {
503
- '$ref': '#/components/schemas/Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ObjectExtending.ExtensionPropertyDto'
1722
+ type: 'object',
1723
+ properties: {
1724
+ type: {
1725
+ type: 'string',
1726
+ nullable: true
1727
+ },
1728
+ typeSimple: {
1729
+ type: 'string',
1730
+ nullable: true
1731
+ },
1732
+ displayName: {
1733
+ type: 'object',
1734
+ properties: {
1735
+ name: {
1736
+ type: 'string',
1737
+ nullable: true
1738
+ },
1739
+ resource: {
1740
+ type: 'string',
1741
+ nullable: true
1742
+ }
1743
+ },
1744
+ additionalProperties: false
1745
+ },
1746
+ api: {
1747
+ type: 'object',
1748
+ properties: {
1749
+ onGet: {
1750
+ type: 'object',
1751
+ properties: {
1752
+ isAvailable: {
1753
+ type: 'boolean'
1754
+ }
1755
+ },
1756
+ additionalProperties: false
1757
+ },
1758
+ onCreate: {
1759
+ type: 'object',
1760
+ properties: {
1761
+ isAvailable: {
1762
+ type: 'boolean'
1763
+ }
1764
+ },
1765
+ additionalProperties: false
1766
+ },
1767
+ onUpdate: {
1768
+ type: 'object',
1769
+ properties: {
1770
+ isAvailable: {
1771
+ type: 'boolean'
1772
+ }
1773
+ },
1774
+ additionalProperties: false
1775
+ }
1776
+ },
1777
+ additionalProperties: false
1778
+ },
1779
+ ui: {
1780
+ type: 'object',
1781
+ properties: {
1782
+ onTable: {
1783
+ type: 'object',
1784
+ properties: {
1785
+ isVisible: {
1786
+ type: 'boolean'
1787
+ }
1788
+ },
1789
+ additionalProperties: false
1790
+ },
1791
+ onCreateForm: {
1792
+ type: 'object',
1793
+ properties: {
1794
+ isVisible: {
1795
+ type: 'boolean'
1796
+ }
1797
+ },
1798
+ additionalProperties: false
1799
+ },
1800
+ onEditForm: {
1801
+ type: 'object',
1802
+ properties: {
1803
+ isVisible: {
1804
+ type: 'boolean'
1805
+ }
1806
+ },
1807
+ additionalProperties: false
1808
+ },
1809
+ lookup: {
1810
+ type: 'object',
1811
+ properties: {
1812
+ url: {
1813
+ type: 'string',
1814
+ nullable: true
1815
+ },
1816
+ resultListPropertyName: {
1817
+ type: 'string',
1818
+ nullable: true
1819
+ },
1820
+ displayPropertyName: {
1821
+ type: 'string',
1822
+ nullable: true
1823
+ },
1824
+ valuePropertyName: {
1825
+ type: 'string',
1826
+ nullable: true
1827
+ },
1828
+ filterParamName: {
1829
+ type: 'string',
1830
+ nullable: true
1831
+ }
1832
+ },
1833
+ additionalProperties: false
1834
+ }
1835
+ },
1836
+ additionalProperties: false
1837
+ },
1838
+ attributes: {
1839
+ type: 'array',
1840
+ items: {
1841
+ type: 'object',
1842
+ properties: {
1843
+ typeSimple: {
1844
+ type: 'string',
1845
+ nullable: true
1846
+ },
1847
+ config: {
1848
+ type: 'object',
1849
+ additionalProperties: {},
1850
+ nullable: true
1851
+ }
1852
+ },
1853
+ additionalProperties: false
1854
+ },
1855
+ nullable: true
1856
+ },
1857
+ configuration: {
1858
+ type: 'object',
1859
+ additionalProperties: {},
1860
+ nullable: true
1861
+ },
1862
+ defaultValue: {
1863
+ nullable: true
1864
+ }
1865
+ },
1866
+ additionalProperties: false
504
1867
  },
505
1868
  nullable: true
506
1869
  },
@@ -519,7 +1882,17 @@ export const $Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_
519
1882
  fields: {
520
1883
  type: 'array',
521
1884
  items: {
522
- '$ref': '#/components/schemas/Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ObjectExtending.ExtensionEnumFieldDto'
1885
+ type: 'object',
1886
+ properties: {
1887
+ name: {
1888
+ type: 'string',
1889
+ nullable: true
1890
+ },
1891
+ value: {
1892
+ nullable: true
1893
+ }
1894
+ },
1895
+ additionalProperties: false
523
1896
  },
524
1897
  nullable: true
525
1898
  },
@@ -559,13 +1932,31 @@ export const $Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_
559
1932
  type: 'object',
560
1933
  properties: {
561
1934
  onGet: {
562
- '$ref': '#/components/schemas/Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ObjectExtending.ExtensionPropertyApiGetDto'
1935
+ type: 'object',
1936
+ properties: {
1937
+ isAvailable: {
1938
+ type: 'boolean'
1939
+ }
1940
+ },
1941
+ additionalProperties: false
563
1942
  },
564
1943
  onCreate: {
565
- '$ref': '#/components/schemas/Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ObjectExtending.ExtensionPropertyApiCreateDto'
1944
+ type: 'object',
1945
+ properties: {
1946
+ isAvailable: {
1947
+ type: 'boolean'
1948
+ }
1949
+ },
1950
+ additionalProperties: false
566
1951
  },
567
1952
  onUpdate: {
568
- '$ref': '#/components/schemas/Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ObjectExtending.ExtensionPropertyApiUpdateDto'
1953
+ type: 'object',
1954
+ properties: {
1955
+ isAvailable: {
1956
+ type: 'boolean'
1957
+ }
1958
+ },
1959
+ additionalProperties: false
569
1960
  }
570
1961
  },
571
1962
  additionalProperties: false
@@ -619,18 +2010,127 @@ export const $Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_
619
2010
  nullable: true
620
2011
  },
621
2012
  displayName: {
622
- '$ref': '#/components/schemas/Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ObjectExtending.LocalizableStringDto'
2013
+ type: 'object',
2014
+ properties: {
2015
+ name: {
2016
+ type: 'string',
2017
+ nullable: true
2018
+ },
2019
+ resource: {
2020
+ type: 'string',
2021
+ nullable: true
2022
+ }
2023
+ },
2024
+ additionalProperties: false
623
2025
  },
624
2026
  api: {
625
- '$ref': '#/components/schemas/Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ObjectExtending.ExtensionPropertyApiDto'
2027
+ type: 'object',
2028
+ properties: {
2029
+ onGet: {
2030
+ type: 'object',
2031
+ properties: {
2032
+ isAvailable: {
2033
+ type: 'boolean'
2034
+ }
2035
+ },
2036
+ additionalProperties: false
2037
+ },
2038
+ onCreate: {
2039
+ type: 'object',
2040
+ properties: {
2041
+ isAvailable: {
2042
+ type: 'boolean'
2043
+ }
2044
+ },
2045
+ additionalProperties: false
2046
+ },
2047
+ onUpdate: {
2048
+ type: 'object',
2049
+ properties: {
2050
+ isAvailable: {
2051
+ type: 'boolean'
2052
+ }
2053
+ },
2054
+ additionalProperties: false
2055
+ }
2056
+ },
2057
+ additionalProperties: false
626
2058
  },
627
2059
  ui: {
628
- '$ref': '#/components/schemas/Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ObjectExtending.ExtensionPropertyUiDto'
2060
+ type: 'object',
2061
+ properties: {
2062
+ onTable: {
2063
+ type: 'object',
2064
+ properties: {
2065
+ isVisible: {
2066
+ type: 'boolean'
2067
+ }
2068
+ },
2069
+ additionalProperties: false
2070
+ },
2071
+ onCreateForm: {
2072
+ type: 'object',
2073
+ properties: {
2074
+ isVisible: {
2075
+ type: 'boolean'
2076
+ }
2077
+ },
2078
+ additionalProperties: false
2079
+ },
2080
+ onEditForm: {
2081
+ type: 'object',
2082
+ properties: {
2083
+ isVisible: {
2084
+ type: 'boolean'
2085
+ }
2086
+ },
2087
+ additionalProperties: false
2088
+ },
2089
+ lookup: {
2090
+ type: 'object',
2091
+ properties: {
2092
+ url: {
2093
+ type: 'string',
2094
+ nullable: true
2095
+ },
2096
+ resultListPropertyName: {
2097
+ type: 'string',
2098
+ nullable: true
2099
+ },
2100
+ displayPropertyName: {
2101
+ type: 'string',
2102
+ nullable: true
2103
+ },
2104
+ valuePropertyName: {
2105
+ type: 'string',
2106
+ nullable: true
2107
+ },
2108
+ filterParamName: {
2109
+ type: 'string',
2110
+ nullable: true
2111
+ }
2112
+ },
2113
+ additionalProperties: false
2114
+ }
2115
+ },
2116
+ additionalProperties: false
629
2117
  },
630
2118
  attributes: {
631
2119
  type: 'array',
632
2120
  items: {
633
- '$ref': '#/components/schemas/Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ObjectExtending.ExtensionPropertyAttributeDto'
2121
+ type: 'object',
2122
+ properties: {
2123
+ typeSimple: {
2124
+ type: 'string',
2125
+ nullable: true
2126
+ },
2127
+ config: {
2128
+ type: 'object',
2129
+ additionalProperties: {},
2130
+ nullable: true
2131
+ }
2132
+ },
2133
+ additionalProperties: false
634
2134
  },
635
2135
  nullable: true
636
2136
  },
@@ -650,16 +2150,57 @@ export const $Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_
650
2150
  type: 'object',
651
2151
  properties: {
652
2152
  onTable: {
653
- '$ref': '#/components/schemas/Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ObjectExtending.ExtensionPropertyUiTableDto'
2153
+ type: 'object',
2154
+ properties: {
2155
+ isVisible: {
2156
+ type: 'boolean'
2157
+ }
2158
+ },
2159
+ additionalProperties: false
654
2160
  },
655
2161
  onCreateForm: {
656
- '$ref': '#/components/schemas/Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ObjectExtending.ExtensionPropertyUiFormDto'
2162
+ type: 'object',
2163
+ properties: {
2164
+ isVisible: {
2165
+ type: 'boolean'
2166
+ }
2167
+ },
2168
+ additionalProperties: false
657
2169
  },
658
2170
  onEditForm: {
659
- '$ref': '#/components/schemas/Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ObjectExtending.ExtensionPropertyUiFormDto'
2171
+ type: 'object',
2172
+ properties: {
2173
+ isVisible: {
2174
+ type: 'boolean'
2175
+ }
2176
+ },
2177
+ additionalProperties: false
660
2178
  },
661
2179
  lookup: {
662
- '$ref': '#/components/schemas/Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ObjectExtending.ExtensionPropertyUiLookupDto'
2180
+ type: 'object',
2181
+ properties: {
2182
+ url: {
2183
+ type: 'string',
2184
+ nullable: true
2185
+ },
2186
+ resultListPropertyName: {
2187
+ type: 'string',
2188
+ nullable: true
2189
+ },
2190
+ displayPropertyName: {
2191
+ type: 'string',
2192
+ nullable: true
2193
+ },
2194
+ valuePropertyName: {
2195
+ type: 'string',
2196
+ nullable: true
2197
+ },
2198
+ filterParamName: {
2199
+ type: 'string',
2200
+ nullable: true
2201
+ }
2202
+ },
2203
+ additionalProperties: false
663
2204
  }
664
2205
  },
665
2206
  additionalProperties: false
@@ -733,7 +2274,166 @@ export const $Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_
733
2274
  entities: {
734
2275
  type: 'object',
735
2276
  additionalProperties: {
736
- '$ref': '#/components/schemas/Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ObjectExtending.EntityExtensionDto'
2277
+ type: 'object',
2278
+ properties: {
2279
+ properties: {
2280
+ type: 'object',
2281
+ additionalProperties: {
2282
+ type: 'object',
2283
+ properties: {
2284
+ type: {
2285
+ type: 'string',
2286
+ nullable: true
2287
+ },
2288
+ typeSimple: {
2289
+ type: 'string',
2290
+ nullable: true
2291
+ },
2292
+ displayName: {
2293
+ type: 'object',
2294
+ properties: {
2295
+ name: {
2296
+ type: 'string',
2297
+ nullable: true
2298
+ },
2299
+ resource: {
2300
+ type: 'string',
2301
+ nullable: true
2302
+ }
2303
+ },
2304
+ additionalProperties: false
2305
+ },
2306
+ api: {
2307
+ type: 'object',
2308
+ properties: {
2309
+ onGet: {
2310
+ type: 'object',
2311
+ properties: {
2312
+ isAvailable: {
2313
+ type: 'boolean'
2314
+ }
2315
+ },
2316
+ additionalProperties: false
2317
+ },
2318
+ onCreate: {
2319
+ type: 'object',
2320
+ properties: {
2321
+ isAvailable: {
2322
+ type: 'boolean'
2323
+ }
2324
+ },
2325
+ additionalProperties: false
2326
+ },
2327
+ onUpdate: {
2328
+ type: 'object',
2329
+ properties: {
2330
+ isAvailable: {
2331
+ type: 'boolean'
2332
+ }
2333
+ },
2334
+ additionalProperties: false
2335
+ }
2336
+ },
2337
+ additionalProperties: false
2338
+ },
2339
+ ui: {
2340
+ type: 'object',
2341
+ properties: {
2342
+ onTable: {
2343
+ type: 'object',
2344
+ properties: {
2345
+ isVisible: {
2346
+ type: 'boolean'
2347
+ }
2348
+ },
2349
+ additionalProperties: false
2350
+ },
2351
+ onCreateForm: {
2352
+ type: 'object',
2353
+ properties: {
2354
+ isVisible: {
2355
+ type: 'boolean'
2356
+ }
2357
+ },
2358
+ additionalProperties: false
2359
+ },
2360
+ onEditForm: {
2361
+ type: 'object',
2362
+ properties: {
2363
+ isVisible: {
2364
+ type: 'boolean'
2365
+ }
2366
+ },
2367
+ additionalProperties: false
2368
+ },
2369
+ lookup: {
2370
+ type: 'object',
2371
+ properties: {
2372
+ url: {
2373
+ type: 'string',
2374
+ nullable: true
2375
+ },
2376
+ resultListPropertyName: {
2377
+ type: 'string',
2378
+ nullable: true
2379
+ },
2380
+ displayPropertyName: {
2381
+ type: 'string',
2382
+ nullable: true
2383
+ },
2384
+ valuePropertyName: {
2385
+ type: 'string',
2386
+ nullable: true
2387
+ },
2388
+ filterParamName: {
2389
+ type: 'string',
2390
+ nullable: true
2391
+ }
2392
+ },
2393
+ additionalProperties: false
2394
+ }
2395
+ },
2396
+ additionalProperties: false
2397
+ },
2398
+ attributes: {
2399
+ type: 'array',
2400
+ items: {
2401
+ type: 'object',
2402
+ properties: {
2403
+ typeSimple: {
2404
+ type: 'string',
2405
+ nullable: true
2406
+ },
2407
+ config: {
2408
+ type: 'object',
2409
+ additionalProperties: {},
2410
+ nullable: true
2411
+ }
2412
+ },
2413
+ additionalProperties: false
2414
+ },
2415
+ nullable: true
2416
+ },
2417
+ configuration: {
2418
+ type: 'object',
2419
+ additionalProperties: {},
2420
+ nullable: true
2421
+ },
2422
+ defaultValue: {
2423
+ nullable: true
2424
+ }
2425
+ },
2426
+ additionalProperties: false
2427
+ },
2428
+ nullable: true
2429
+ },
2430
+ configuration: {
2431
+ type: 'object',
2432
+ additionalProperties: {},
2433
+ nullable: true
2434
+ }
2435
+ },
2436
+ additionalProperties: false
737
2437
  },
738
2438
  nullable: true
739
2439
  },
@@ -752,14 +2452,212 @@ export const $Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_
752
2452
  modules: {
753
2453
  type: 'object',
754
2454
  additionalProperties: {
755
- '$ref': '#/components/schemas/Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ObjectExtending.ModuleExtensionDto'
2455
+ type: 'object',
2456
+ properties: {
2457
+ entities: {
2458
+ type: 'object',
2459
+ additionalProperties: {
2460
+ type: 'object',
2461
+ properties: {
2462
+ properties: {
2463
+ type: 'object',
2464
+ additionalProperties: {
2465
+ type: 'object',
2466
+ properties: {
2467
+ type: {
2468
+ type: 'string',
2469
+ nullable: true
2470
+ },
2471
+ typeSimple: {
2472
+ type: 'string',
2473
+ nullable: true
2474
+ },
2475
+ displayName: {
2476
+ type: 'object',
2477
+ properties: {
2478
+ name: {
2479
+ type: 'string',
2480
+ nullable: true
2481
+ },
2482
+ resource: {
2483
+ type: 'string',
2484
+ nullable: true
2485
+ }
2486
+ },
2487
+ additionalProperties: false
2488
+ },
2489
+ api: {
2490
+ type: 'object',
2491
+ properties: {
2492
+ onGet: {
2493
+ type: 'object',
2494
+ properties: {
2495
+ isAvailable: {
2496
+ type: 'boolean'
2497
+ }
2498
+ },
2499
+ additionalProperties: false
2500
+ },
2501
+ onCreate: {
2502
+ type: 'object',
2503
+ properties: {
2504
+ isAvailable: {
2505
+ type: 'boolean'
2506
+ }
2507
+ },
2508
+ additionalProperties: false
2509
+ },
2510
+ onUpdate: {
2511
+ type: 'object',
2512
+ properties: {
2513
+ isAvailable: {
2514
+ type: 'boolean'
2515
+ }
2516
+ },
2517
+ additionalProperties: false
2518
+ }
2519
+ },
2520
+ additionalProperties: false
2521
+ },
2522
+ ui: {
2523
+ type: 'object',
2524
+ properties: {
2525
+ onTable: {
2526
+ type: 'object',
2527
+ properties: {
2528
+ isVisible: {
2529
+ type: 'boolean'
2530
+ }
2531
+ },
2532
+ additionalProperties: false
2533
+ },
2534
+ onCreateForm: {
2535
+ type: 'object',
2536
+ properties: {
2537
+ isVisible: {
2538
+ type: 'boolean'
2539
+ }
2540
+ },
2541
+ additionalProperties: false
2542
+ },
2543
+ onEditForm: {
2544
+ type: 'object',
2545
+ properties: {
2546
+ isVisible: {
2547
+ type: 'boolean'
2548
+ }
2549
+ },
2550
+ additionalProperties: false
2551
+ },
2552
+ lookup: {
2553
+ type: 'object',
2554
+ properties: {
2555
+ url: {
2556
+ type: 'string',
2557
+ nullable: true
2558
+ },
2559
+ resultListPropertyName: {
2560
+ type: 'string',
2561
+ nullable: true
2562
+ },
2563
+ displayPropertyName: {
2564
+ type: 'string',
2565
+ nullable: true
2566
+ },
2567
+ valuePropertyName: {
2568
+ type: 'string',
2569
+ nullable: true
2570
+ },
2571
+ filterParamName: {
2572
+ type: 'string',
2573
+ nullable: true
2574
+ }
2575
+ },
2576
+ additionalProperties: false
2577
+ }
2578
+ },
2579
+ additionalProperties: false
2580
+ },
2581
+ attributes: {
2582
+ type: 'array',
2583
+ items: {
2584
+ type: 'object',
2585
+ properties: {
2586
+ typeSimple: {
2587
+ type: 'string',
2588
+ nullable: true
2589
+ },
2590
+ config: {
2591
+ type: 'object',
2592
+ additionalProperties: {},
2593
+ nullable: true
2594
+ }
2595
+ },
2596
+ additionalProperties: false
2597
+ },
2598
+ nullable: true
2599
+ },
2600
+ configuration: {
2601
+ type: 'object',
2602
+ additionalProperties: {},
2603
+ nullable: true
2604
+ },
2605
+ defaultValue: {
2606
+ nullable: true
2607
+ }
2608
+ },
2609
+ additionalProperties: false
2610
+ },
2611
+ nullable: true
2612
+ },
2613
+ configuration: {
2614
+ type: 'object',
2615
+ additionalProperties: {},
2616
+ nullable: true
2617
+ }
2618
+ },
2619
+ additionalProperties: false
2620
+ },
2621
+ nullable: true
2622
+ },
2623
+ configuration: {
2624
+ type: 'object',
2625
+ additionalProperties: {},
2626
+ nullable: true
2627
+ }
2628
+ },
2629
+ additionalProperties: false
756
2630
  },
757
2631
  nullable: true
758
2632
  },
759
2633
  enums: {
760
2634
  type: 'object',
761
2635
  additionalProperties: {
762
- '$ref': '#/components/schemas/Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ObjectExtending.ExtensionEnumDto'
2636
+ type: 'object',
2637
+ properties: {
2638
+ fields: {
2639
+ type: 'array',
2640
+ items: {
2641
+ type: 'object',
2642
+ properties: {
2643
+ name: {
2644
+ type: 'string',
2645
+ nullable: true
2646
+ },
2647
+ value: {
2648
+ nullable: true
2649
+ }
2650
+ },
2651
+ additionalProperties: false
2652
+ },
2653
+ nullable: true
2654
+ },
2655
+ localizationResource: {
2656
+ type: 'string',
2657
+ nullable: true
2658
+ }
2659
+ },
2660
+ additionalProperties: false
763
2661
  },
764
2662
  nullable: true
765
2663
  }
@@ -771,10 +2669,24 @@ export const $Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_TimeZone = {
771
2669
  type: 'object',
772
2670
  properties: {
773
2671
  iana: {
774
- '$ref': '#/components/schemas/Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.IanaTimeZone'
2672
+ type: 'object',
2673
+ properties: {
2674
+ timeZoneName: {
2675
+ type: 'string',
2676
+ nullable: true
2677
+ }
2678
+ },
2679
+ additionalProperties: false
775
2680
  },
776
2681
  windows: {
777
- '$ref': '#/components/schemas/Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.WindowsTimeZone'
2682
+ type: 'object',
2683
+ properties: {
2684
+ timeZoneId: {
2685
+ type: 'string',
2686
+ nullable: true
2687
+ }
2688
+ },
2689
+ additionalProperties: false
778
2690
  }
779
2691
  },
780
2692
  additionalProperties: false
@@ -784,7 +2696,30 @@ export const $Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_TimingDto = {
784
2696
  type: 'object',
785
2697
  properties: {
786
2698
  timeZone: {
787
- '$ref': '#/components/schemas/Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.TimeZone'
2699
+ type: 'object',
2700
+ properties: {
2701
+ iana: {
2702
+ type: 'object',
2703
+ properties: {
2704
+ timeZoneName: {
2705
+ type: 'string',
2706
+ nullable: true
2707
+ }
2708
+ },
2709
+ additionalProperties: false
2710
+ },
2711
+ windows: {
2712
+ type: 'object',
2713
+ properties: {
2714
+ timeZoneId: {
2715
+ type: 'string',
2716
+ nullable: true
2717
+ }
2718
+ },
2719
+ additionalProperties: false
2720
+ }
2721
+ },
2722
+ additionalProperties: false
788
2723
  }
789
2724
  },
790
2725
  additionalProperties: false
@@ -999,14 +2934,134 @@ export const $Volo_Abp_AuditLogging_AuditLogDto = {
999
2934
  entityChanges: {
1000
2935
  type: 'array',
1001
2936
  items: {
1002
- '$ref': '#/components/schemas/Volo.Abp.AuditLogging.EntityChangeDto'
2937
+ type: 'object',
2938
+ properties: {
2939
+ extraProperties: {
2940
+ type: 'object',
2941
+ additionalProperties: {},
2942
+ nullable: true,
2943
+ readOnly: true
2944
+ },
2945
+ id: {
2946
+ type: 'string',
2947
+ format: 'uuid'
2948
+ },
2949
+ auditLogId: {
2950
+ type: 'string',
2951
+ format: 'uuid'
2952
+ },
2953
+ tenantId: {
2954
+ type: 'string',
2955
+ format: 'uuid',
2956
+ nullable: true
2957
+ },
2958
+ changeTime: {
2959
+ type: 'string',
2960
+ format: 'date-time'
2961
+ },
2962
+ changeType: {
2963
+ enum: [0, 1, 2],
2964
+ type: 'integer',
2965
+ format: 'int32'
2966
+ },
2967
+ entityId: {
2968
+ type: 'string',
2969
+ nullable: true
2970
+ },
2971
+ entityTypeFullName: {
2972
+ type: 'string',
2973
+ nullable: true
2974
+ },
2975
+ propertyChanges: {
2976
+ type: 'array',
2977
+ items: {
2978
+ type: 'object',
2979
+ properties: {
2980
+ id: {
2981
+ type: 'string',
2982
+ format: 'uuid'
2983
+ },
2984
+ tenantId: {
2985
+ type: 'string',
2986
+ format: 'uuid',
2987
+ nullable: true
2988
+ },
2989
+ entityChangeId: {
2990
+ type: 'string',
2991
+ format: 'uuid'
2992
+ },
2993
+ newValue: {
2994
+ type: 'string',
2995
+ nullable: true
2996
+ },
2997
+ originalValue: {
2998
+ type: 'string',
2999
+ nullable: true
3000
+ },
3001
+ propertyName: {
3002
+ type: 'string',
3003
+ nullable: true
3004
+ },
3005
+ propertyTypeFullName: {
3006
+ type: 'string',
3007
+ nullable: true
3008
+ }
3009
+ },
3010
+ additionalProperties: false
3011
+ },
3012
+ nullable: true
3013
+ }
3014
+ },
3015
+ additionalProperties: false
1003
3016
  },
1004
3017
  nullable: true
1005
3018
  },
1006
3019
  actions: {
1007
3020
  type: 'array',
1008
3021
  items: {
1009
- '$ref': '#/components/schemas/Volo.Abp.AuditLogging.AuditLogActionDto'
3022
+ type: 'object',
3023
+ properties: {
3024
+ extraProperties: {
3025
+ type: 'object',
3026
+ additionalProperties: {},
3027
+ nullable: true,
3028
+ readOnly: true
3029
+ },
3030
+ id: {
3031
+ type: 'string',
3032
+ format: 'uuid'
3033
+ },
3034
+ tenantId: {
3035
+ type: 'string',
3036
+ format: 'uuid',
3037
+ nullable: true
3038
+ },
3039
+ auditLogId: {
3040
+ type: 'string',
3041
+ format: 'uuid'
3042
+ },
3043
+ serviceName: {
3044
+ type: 'string',
3045
+ nullable: true
3046
+ },
3047
+ methodName: {
3048
+ type: 'string',
3049
+ nullable: true
3050
+ },
3051
+ parameters: {
3052
+ type: 'string',
3053
+ nullable: true
3054
+ },
3055
+ executionTime: {
3056
+ type: 'string',
3057
+ format: 'date-time'
3058
+ },
3059
+ executionDuration: {
3060
+ type: 'integer',
3061
+ format: 'int32'
3062
+ }
3063
+ },
3064
+ additionalProperties: false
1010
3065
  },
1011
3066
  nullable: true
1012
3067
  }
@@ -1041,7 +3096,9 @@ export const $Volo_Abp_AuditLogging_EntityChangeDto = {
1041
3096
  format: 'date-time'
1042
3097
  },
1043
3098
  changeType: {
1044
- '$ref': '#/components/schemas/Volo.Abp.Auditing.EntityChangeType'
3099
+ enum: [0, 1, 2],
3100
+ type: 'integer',
3101
+ format: 'int32'
1045
3102
  },
1046
3103
  entityId: {
1047
3104
  type: 'string',
@@ -1054,7 +3111,39 @@ export const $Volo_Abp_AuditLogging_EntityChangeDto = {
1054
3111
  propertyChanges: {
1055
3112
  type: 'array',
1056
3113
  items: {
1057
- '$ref': '#/components/schemas/Volo.Abp.AuditLogging.EntityPropertyChangeDto'
3114
+ type: 'object',
3115
+ properties: {
3116
+ id: {
3117
+ type: 'string',
3118
+ format: 'uuid'
3119
+ },
3120
+ tenantId: {
3121
+ type: 'string',
3122
+ format: 'uuid',
3123
+ nullable: true
3124
+ },
3125
+ entityChangeId: {
3126
+ type: 'string',
3127
+ format: 'uuid'
3128
+ },
3129
+ newValue: {
3130
+ type: 'string',
3131
+ nullable: true
3132
+ },
3133
+ originalValue: {
3134
+ type: 'string',
3135
+ nullable: true
3136
+ },
3137
+ propertyName: {
3138
+ type: 'string',
3139
+ nullable: true
3140
+ },
3141
+ propertyTypeFullName: {
3142
+ type: 'string',
3143
+ nullable: true
3144
+ }
3145
+ },
3146
+ additionalProperties: false
1058
3147
  },
1059
3148
  nullable: true
1060
3149
  }
@@ -1066,7 +3155,85 @@ export const $Volo_Abp_AuditLogging_EntityChangeWithUsernameDto = {
1066
3155
  type: 'object',
1067
3156
  properties: {
1068
3157
  entityChange: {
1069
- '$ref': '#/components/schemas/Volo.Abp.AuditLogging.EntityChangeDto'
3158
+ type: 'object',
3159
+ properties: {
3160
+ extraProperties: {
3161
+ type: 'object',
3162
+ additionalProperties: {},
3163
+ nullable: true,
3164
+ readOnly: true
3165
+ },
3166
+ id: {
3167
+ type: 'string',
3168
+ format: 'uuid'
3169
+ },
3170
+ auditLogId: {
3171
+ type: 'string',
3172
+ format: 'uuid'
3173
+ },
3174
+ tenantId: {
3175
+ type: 'string',
3176
+ format: 'uuid',
3177
+ nullable: true
3178
+ },
3179
+ changeTime: {
3180
+ type: 'string',
3181
+ format: 'date-time'
3182
+ },
3183
+ changeType: {
3184
+ enum: [0, 1, 2],
3185
+ type: 'integer',
3186
+ format: 'int32'
3187
+ },
3188
+ entityId: {
3189
+ type: 'string',
3190
+ nullable: true
3191
+ },
3192
+ entityTypeFullName: {
3193
+ type: 'string',
3194
+ nullable: true
3195
+ },
3196
+ propertyChanges: {
3197
+ type: 'array',
3198
+ items: {
3199
+ type: 'object',
3200
+ properties: {
3201
+ id: {
3202
+ type: 'string',
3203
+ format: 'uuid'
3204
+ },
3205
+ tenantId: {
3206
+ type: 'string',
3207
+ format: 'uuid',
3208
+ nullable: true
3209
+ },
3210
+ entityChangeId: {
3211
+ type: 'string',
3212
+ format: 'uuid'
3213
+ },
3214
+ newValue: {
3215
+ type: 'string',
3216
+ nullable: true
3217
+ },
3218
+ originalValue: {
3219
+ type: 'string',
3220
+ nullable: true
3221
+ },
3222
+ propertyName: {
3223
+ type: 'string',
3224
+ nullable: true
3225
+ },
3226
+ propertyTypeFullName: {
3227
+ type: 'string',
3228
+ nullable: true
3229
+ }
3230
+ },
3231
+ additionalProperties: false
3232
+ },
3233
+ nullable: true
3234
+ }
3235
+ },
3236
+ additionalProperties: false
1070
3237
  },
1071
3238
  userName: {
1072
3239
  type: 'string',
@@ -1166,14 +3333,58 @@ export const $Volo_Abp_FeatureManagement_FeatureDto = {
1166
3333
  nullable: true
1167
3334
  },
1168
3335
  provider: {
1169
- '$ref': '#/components/schemas/Volo.Abp.FeatureManagement.FeatureProviderDto'
3336
+ type: 'object',
3337
+ properties: {
3338
+ name: {
3339
+ type: 'string',
3340
+ nullable: true
3341
+ },
3342
+ key: {
3343
+ type: 'string',
3344
+ nullable: true
3345
+ }
3346
+ },
3347
+ additionalProperties: false
1170
3348
  },
1171
3349
  description: {
1172
3350
  type: 'string',
1173
3351
  nullable: true
1174
3352
  },
1175
3353
  valueType: {
1176
- '$ref': '#/components/schemas/Volo.Abp.Validation.StringValues.IStringValueType'
3354
+ type: 'object',
3355
+ properties: {
3356
+ name: {
3357
+ type: 'string',
3358
+ nullable: true,
3359
+ readOnly: true
3360
+ },
3361
+ properties: {
3362
+ type: 'object',
3363
+ additionalProperties: {
3364
+ nullable: true
3365
+ },
3366
+ nullable: true,
3367
+ readOnly: true
3368
+ },
3369
+ validator: {
3370
+ type: 'object',
3371
+ properties: {
3372
+ name: {
3373
+ type: 'string',
3374
+ nullable: true,
3375
+ readOnly: true
3376
+ },
3377
+ properties: {
3378
+ type: 'object',
3379
+ additionalProperties: {},
3380
+ nullable: true,
3381
+ readOnly: true
3382
+ }
3383
+ },
3384
+ additionalProperties: false
3385
+ }
3386
+ },
3387
+ additionalProperties: false
1177
3388
  },
1178
3389
  depth: {
1179
3390
  type: 'integer',
@@ -1201,7 +3412,84 @@ export const $Volo_Abp_FeatureManagement_FeatureGroupDto = {
1201
3412
  features: {
1202
3413
  type: 'array',
1203
3414
  items: {
1204
- '$ref': '#/components/schemas/Volo.Abp.FeatureManagement.FeatureDto'
3415
+ type: 'object',
3416
+ properties: {
3417
+ name: {
3418
+ type: 'string',
3419
+ nullable: true
3420
+ },
3421
+ displayName: {
3422
+ type: 'string',
3423
+ nullable: true
3424
+ },
3425
+ value: {
3426
+ type: 'string',
3427
+ nullable: true
3428
+ },
3429
+ provider: {
3430
+ type: 'object',
3431
+ properties: {
3432
+ name: {
3433
+ type: 'string',
3434
+ nullable: true
3435
+ },
3436
+ key: {
3437
+ type: 'string',
3438
+ nullable: true
3439
+ }
3440
+ },
3441
+ additionalProperties: false
3442
+ },
3443
+ description: {
3444
+ type: 'string',
3445
+ nullable: true
3446
+ },
3447
+ valueType: {
3448
+ type: 'object',
3449
+ properties: {
3450
+ name: {
3451
+ type: 'string',
3452
+ nullable: true,
3453
+ readOnly: true
3454
+ },
3455
+ properties: {
3456
+ type: 'object',
3457
+ additionalProperties: {
3458
+ nullable: true
3459
+ },
3460
+ nullable: true,
3461
+ readOnly: true
3462
+ },
3463
+ validator: {
3464
+ type: 'object',
3465
+ properties: {
3466
+ name: {
3467
+ type: 'string',
3468
+ nullable: true,
3469
+ readOnly: true
3470
+ },
3471
+ properties: {
3472
+ type: 'object',
3473
+ additionalProperties: {},
3474
+ nullable: true,
3475
+ readOnly: true
3476
+ }
3477
+ },
3478
+ additionalProperties: false
3479
+ }
3480
+ },
3481
+ additionalProperties: false
3482
+ },
3483
+ depth: {
3484
+ type: 'integer',
3485
+ format: 'int32'
3486
+ },
3487
+ parentName: {
3488
+ type: 'string',
3489
+ nullable: true
3490
+ }
3491
+ },
3492
+ additionalProperties: false
1205
3493
  },
1206
3494
  nullable: true
1207
3495
  }
@@ -1230,7 +3518,102 @@ export const $Volo_Abp_FeatureManagement_GetFeatureListResultDto = {
1230
3518
  groups: {
1231
3519
  type: 'array',
1232
3520
  items: {
1233
- '$ref': '#/components/schemas/Volo.Abp.FeatureManagement.FeatureGroupDto'
3521
+ type: 'object',
3522
+ properties: {
3523
+ name: {
3524
+ type: 'string',
3525
+ nullable: true
3526
+ },
3527
+ displayName: {
3528
+ type: 'string',
3529
+ nullable: true
3530
+ },
3531
+ features: {
3532
+ type: 'array',
3533
+ items: {
3534
+ type: 'object',
3535
+ properties: {
3536
+ name: {
3537
+ type: 'string',
3538
+ nullable: true
3539
+ },
3540
+ displayName: {
3541
+ type: 'string',
3542
+ nullable: true
3543
+ },
3544
+ value: {
3545
+ type: 'string',
3546
+ nullable: true
3547
+ },
3548
+ provider: {
3549
+ type: 'object',
3550
+ properties: {
3551
+ name: {
3552
+ type: 'string',
3553
+ nullable: true
3554
+ },
3555
+ key: {
3556
+ type: 'string',
3557
+ nullable: true
3558
+ }
3559
+ },
3560
+ additionalProperties: false
3561
+ },
3562
+ description: {
3563
+ type: 'string',
3564
+ nullable: true
3565
+ },
3566
+ valueType: {
3567
+ type: 'object',
3568
+ properties: {
3569
+ name: {
3570
+ type: 'string',
3571
+ nullable: true,
3572
+ readOnly: true
3573
+ },
3574
+ properties: {
3575
+ type: 'object',
3576
+ additionalProperties: {
3577
+ nullable: true
3578
+ },
3579
+ nullable: true,
3580
+ readOnly: true
3581
+ },
3582
+ validator: {
3583
+ type: 'object',
3584
+ properties: {
3585
+ name: {
3586
+ type: 'string',
3587
+ nullable: true,
3588
+ readOnly: true
3589
+ },
3590
+ properties: {
3591
+ type: 'object',
3592
+ additionalProperties: {},
3593
+ nullable: true,
3594
+ readOnly: true
3595
+ }
3596
+ },
3597
+ additionalProperties: false
3598
+ }
3599
+ },
3600
+ additionalProperties: false
3601
+ },
3602
+ depth: {
3603
+ type: 'integer',
3604
+ format: 'int32'
3605
+ },
3606
+ parentName: {
3607
+ type: 'string',
3608
+ nullable: true
3609
+ }
3610
+ },
3611
+ additionalProperties: false
3612
+ },
3613
+ nullable: true
3614
+ }
3615
+ },
3616
+ additionalProperties: false
1234
3617
  },
1235
3618
  nullable: true
1236
3619
  }
@@ -1259,7 +3642,18 @@ export const $Volo_Abp_FeatureManagement_UpdateFeaturesDto = {
1259
3642
  features: {
1260
3643
  type: 'array',
1261
3644
  items: {
1262
- '$ref': '#/components/schemas/Volo.Abp.FeatureManagement.UpdateFeatureDto'
3645
+ type: 'object',
3646
+ properties: {
3647
+ name: {
3648
+ type: 'string',
3649
+ nullable: true
3650
+ },
3651
+ value: {
3652
+ type: 'string',
3653
+ nullable: true
3654
+ }
3655
+ },
3656
+ additionalProperties: false
1263
3657
  },
1264
3658
  nullable: true
1265
3659
  }
@@ -1326,19 +3720,99 @@ export const $Volo_Abp_Http_Modeling_ActionApiDescriptionModel = {
1326
3720
  parametersOnMethod: {
1327
3721
  type: 'array',
1328
3722
  items: {
1329
- '$ref': '#/components/schemas/Volo.Abp.Http.Modeling.MethodParameterApiDescriptionModel'
3723
+ type: 'object',
3724
+ properties: {
3725
+ name: {
3726
+ type: 'string',
3727
+ nullable: true
3728
+ },
3729
+ typeAsString: {
3730
+ type: 'string',
3731
+ nullable: true
3732
+ },
3733
+ type: {
3734
+ type: 'string',
3735
+ nullable: true
3736
+ },
3737
+ typeSimple: {
3738
+ type: 'string',
3739
+ nullable: true
3740
+ },
3741
+ isOptional: {
3742
+ type: 'boolean'
3743
+ },
3744
+ defaultValue: {
3745
+ nullable: true
3746
+ }
3747
+ },
3748
+ additionalProperties: false
1330
3749
  },
1331
3750
  nullable: true
1332
3751
  },
1333
3752
  parameters: {
1334
3753
  type: 'array',
1335
3754
  items: {
1336
- '$ref': '#/components/schemas/Volo.Abp.Http.Modeling.ParameterApiDescriptionModel'
3755
+ type: 'object',
3756
+ properties: {
3757
+ nameOnMethod: {
3758
+ type: 'string',
3759
+ nullable: true
3760
+ },
3761
+ name: {
3762
+ type: 'string',
3763
+ nullable: true
3764
+ },
3765
+ jsonName: {
3766
+ type: 'string',
3767
+ nullable: true
3768
+ },
3769
+ type: {
3770
+ type: 'string',
3771
+ nullable: true
3772
+ },
3773
+ typeSimple: {
3774
+ type: 'string',
3775
+ nullable: true
3776
+ },
3777
+ isOptional: {
3778
+ type: 'boolean'
3779
+ },
3780
+ defaultValue: {
3781
+ nullable: true
3782
+ },
3783
+ constraintTypes: {
3784
+ type: 'array',
3785
+ items: {
3786
+ type: 'string'
3787
+ },
3788
+ nullable: true
3789
+ },
3790
+ bindingSourceId: {
3791
+ type: 'string',
3792
+ nullable: true
3793
+ },
3794
+ descriptorName: {
3795
+ type: 'string',
3796
+ nullable: true
3797
+ }
3798
+ },
3799
+ additionalProperties: false
1337
3800
  },
1338
3801
  nullable: true
1339
3802
  },
1340
3803
  returnValue: {
1341
- '$ref': '#/components/schemas/Volo.Abp.Http.Modeling.ReturnValueApiDescriptionModel'
3804
+ type: 'object',
3805
+ properties: {
3806
+ type: {
3807
+ type: 'string',
3808
+ nullable: true
3809
+ },
3810
+ typeSimple: {
3811
+ type: 'string',
3812
+ nullable: true
3813
+ }
3814
+ },
3815
+ additionalProperties: false
1342
3816
  },
1343
3817
  allowAnonymous: {
1344
3818
  type: 'boolean',
@@ -1358,14 +3832,353 @@ export const $Volo_Abp_Http_Modeling_ApplicationApiDescriptionModel = {
1358
3832
  modules: {
1359
3833
  type: 'object',
1360
3834
  additionalProperties: {
1361
- '$ref': '#/components/schemas/Volo.Abp.Http.Modeling.ModuleApiDescriptionModel'
3835
+ type: 'object',
3836
+ properties: {
3837
+ rootPath: {
3838
+ type: 'string',
3839
+ nullable: true
3840
+ },
3841
+ remoteServiceName: {
3842
+ type: 'string',
3843
+ nullable: true
3844
+ },
3845
+ controllers: {
3846
+ type: 'object',
3847
+ additionalProperties: {
3848
+ type: 'object',
3849
+ properties: {
3850
+ controllerName: {
3851
+ type: 'string',
3852
+ nullable: true
3853
+ },
3854
+ controllerGroupName: {
3855
+ type: 'string',
3856
+ nullable: true
3857
+ },
3858
+ isRemoteService: {
3859
+ type: 'boolean'
3860
+ },
3861
+ isIntegrationService: {
3862
+ type: 'boolean'
3863
+ },
3864
+ apiVersion: {
3865
+ type: 'string',
3866
+ nullable: true
3867
+ },
3868
+ type: {
3869
+ type: 'string',
3870
+ nullable: true
3871
+ },
3872
+ interfaces: {
3873
+ type: 'array',
3874
+ items: {
3875
+ type: 'object',
3876
+ properties: {
3877
+ type: {
3878
+ type: 'string',
3879
+ nullable: true
3880
+ },
3881
+ name: {
3882
+ type: 'string',
3883
+ nullable: true
3884
+ },
3885
+ methods: {
3886
+ type: 'array',
3887
+ items: {
3888
+ type: 'object',
3889
+ properties: {
3890
+ name: {
3891
+ type: 'string',
3892
+ nullable: true
3893
+ },
3894
+ parametersOnMethod: {
3895
+ type: 'array',
3896
+ items: {
3897
+ type: 'object',
3898
+ properties: {
3899
+ name: {
3900
+ type: 'string',
3901
+ nullable: true
3902
+ },
3903
+ typeAsString: {
3904
+ type: 'string',
3905
+ nullable: true
3906
+ },
3907
+ type: {
3908
+ type: 'string',
3909
+ nullable: true
3910
+ },
3911
+ typeSimple: {
3912
+ type: 'string',
3913
+ nullable: true
3914
+ },
3915
+ isOptional: {
3916
+ type: 'boolean'
3917
+ },
3918
+ defaultValue: {
3919
+ nullable: true
3920
+ }
3921
+ },
3922
+ additionalProperties: false
3923
+ },
3924
+ nullable: true
3925
+ },
3926
+ returnValue: {
3927
+ type: 'object',
3928
+ properties: {
3929
+ type: {
3930
+ type: 'string',
3931
+ nullable: true
3932
+ },
3933
+ typeSimple: {
3934
+ type: 'string',
3935
+ nullable: true
3936
+ }
3937
+ },
3938
+ additionalProperties: false
3939
+ }
3940
+ },
3941
+ additionalProperties: false
3942
+ },
3943
+ nullable: true
3944
+ }
3945
+ },
3946
+ additionalProperties: false
3947
+ },
3948
+ nullable: true
3949
+ },
3950
+ actions: {
3951
+ type: 'object',
3952
+ additionalProperties: {
3953
+ type: 'object',
3954
+ properties: {
3955
+ uniqueName: {
3956
+ type: 'string',
3957
+ nullable: true
3958
+ },
3959
+ name: {
3960
+ type: 'string',
3961
+ nullable: true
3962
+ },
3963
+ httpMethod: {
3964
+ type: 'string',
3965
+ nullable: true
3966
+ },
3967
+ url: {
3968
+ type: 'string',
3969
+ nullable: true
3970
+ },
3971
+ supportedVersions: {
3972
+ type: 'array',
3973
+ items: {
3974
+ type: 'string'
3975
+ },
3976
+ nullable: true
3977
+ },
3978
+ parametersOnMethod: {
3979
+ type: 'array',
3980
+ items: {
3981
+ type: 'object',
3982
+ properties: {
3983
+ name: {
3984
+ type: 'string',
3985
+ nullable: true
3986
+ },
3987
+ typeAsString: {
3988
+ type: 'string',
3989
+ nullable: true
3990
+ },
3991
+ type: {
3992
+ type: 'string',
3993
+ nullable: true
3994
+ },
3995
+ typeSimple: {
3996
+ type: 'string',
3997
+ nullable: true
3998
+ },
3999
+ isOptional: {
4000
+ type: 'boolean'
4001
+ },
4002
+ defaultValue: {
4003
+ nullable: true
4004
+ }
4005
+ },
4006
+ additionalProperties: false
4007
+ },
4008
+ nullable: true
4009
+ },
4010
+ parameters: {
4011
+ type: 'array',
4012
+ items: {
4013
+ type: 'object',
4014
+ properties: {
4015
+ nameOnMethod: {
4016
+ type: 'string',
4017
+ nullable: true
4018
+ },
4019
+ name: {
4020
+ type: 'string',
4021
+ nullable: true
4022
+ },
4023
+ jsonName: {
4024
+ type: 'string',
4025
+ nullable: true
4026
+ },
4027
+ type: {
4028
+ type: 'string',
4029
+ nullable: true
4030
+ },
4031
+ typeSimple: {
4032
+ type: 'string',
4033
+ nullable: true
4034
+ },
4035
+ isOptional: {
4036
+ type: 'boolean'
4037
+ },
4038
+ defaultValue: {
4039
+ nullable: true
4040
+ },
4041
+ constraintTypes: {
4042
+ type: 'array',
4043
+ items: {
4044
+ type: 'string'
4045
+ },
4046
+ nullable: true
4047
+ },
4048
+ bindingSourceId: {
4049
+ type: 'string',
4050
+ nullable: true
4051
+ },
4052
+ descriptorName: {
4053
+ type: 'string',
4054
+ nullable: true
4055
+ }
4056
+ },
4057
+ additionalProperties: false
4058
+ },
4059
+ nullable: true
4060
+ },
4061
+ returnValue: {
4062
+ type: 'object',
4063
+ properties: {
4064
+ type: {
4065
+ type: 'string',
4066
+ nullable: true
4067
+ },
4068
+ typeSimple: {
4069
+ type: 'string',
4070
+ nullable: true
4071
+ }
4072
+ },
4073
+ additionalProperties: false
4074
+ },
4075
+ allowAnonymous: {
4076
+ type: 'boolean',
4077
+ nullable: true
4078
+ },
4079
+ implementFrom: {
4080
+ type: 'string',
4081
+ nullable: true
4082
+ }
4083
+ },
4084
+ additionalProperties: false
4085
+ },
4086
+ nullable: true
4087
+ }
4088
+ },
4089
+ additionalProperties: false
4090
+ },
4091
+ nullable: true
4092
+ }
4093
+ },
4094
+ additionalProperties: false
1362
4095
  },
1363
4096
  nullable: true
1364
4097
  },
1365
4098
  types: {
1366
4099
  type: 'object',
1367
4100
  additionalProperties: {
1368
- '$ref': '#/components/schemas/Volo.Abp.Http.Modeling.TypeApiDescriptionModel'
4101
+ type: 'object',
4102
+ properties: {
4103
+ baseType: {
4104
+ type: 'string',
4105
+ nullable: true
4106
+ },
4107
+ isEnum: {
4108
+ type: 'boolean'
4109
+ },
4110
+ enumNames: {
4111
+ type: 'array',
4112
+ items: {
4113
+ type: 'string'
4114
+ },
4115
+ nullable: true
4116
+ },
4117
+ enumValues: {
4118
+ type: 'array',
4119
+ items: {},
4120
+ nullable: true
4121
+ },
4122
+ genericArguments: {
4123
+ type: 'array',
4124
+ items: {
4125
+ type: 'string'
4126
+ },
4127
+ nullable: true
4128
+ },
4129
+ properties: {
4130
+ type: 'array',
4131
+ items: {
4132
+ type: 'object',
4133
+ properties: {
4134
+ name: {
4135
+ type: 'string',
4136
+ nullable: true
4137
+ },
4138
+ jsonName: {
4139
+ type: 'string',
4140
+ nullable: true
4141
+ },
4142
+ type: {
4143
+ type: 'string',
4144
+ nullable: true
4145
+ },
4146
+ typeSimple: {
4147
+ type: 'string',
4148
+ nullable: true
4149
+ },
4150
+ isRequired: {
4151
+ type: 'boolean'
4152
+ },
4153
+ minLength: {
4154
+ type: 'integer',
4155
+ format: 'int32',
4156
+ nullable: true
4157
+ },
4158
+ maxLength: {
4159
+ type: 'integer',
4160
+ format: 'int32',
4161
+ nullable: true
4162
+ },
4163
+ minimum: {
4164
+ type: 'string',
4165
+ nullable: true
4166
+ },
4167
+ maximum: {
4168
+ type: 'string',
4169
+ nullable: true
4170
+ },
4171
+ regex: {
4172
+ type: 'string',
4173
+ nullable: true
4174
+ }
4175
+ },
4176
+ additionalProperties: false
4177
+ },
4178
+ nullable: true
4179
+ }
4180
+ },
4181
+ additionalProperties: false
1369
4182
  },
1370
4183
  nullable: true
1371
4184
  }
@@ -1401,14 +4214,216 @@ export const $Volo_Abp_Http_Modeling_ControllerApiDescriptionModel = {
1401
4214
  interfaces: {
1402
4215
  type: 'array',
1403
4216
  items: {
1404
- '$ref': '#/components/schemas/Volo.Abp.Http.Modeling.ControllerInterfaceApiDescriptionModel'
4217
+ type: 'object',
4218
+ properties: {
4219
+ type: {
4220
+ type: 'string',
4221
+ nullable: true
4222
+ },
4223
+ name: {
4224
+ type: 'string',
4225
+ nullable: true
4226
+ },
4227
+ methods: {
4228
+ type: 'array',
4229
+ items: {
4230
+ type: 'object',
4231
+ properties: {
4232
+ name: {
4233
+ type: 'string',
4234
+ nullable: true
4235
+ },
4236
+ parametersOnMethod: {
4237
+ type: 'array',
4238
+ items: {
4239
+ type: 'object',
4240
+ properties: {
4241
+ name: {
4242
+ type: 'string',
4243
+ nullable: true
4244
+ },
4245
+ typeAsString: {
4246
+ type: 'string',
4247
+ nullable: true
4248
+ },
4249
+ type: {
4250
+ type: 'string',
4251
+ nullable: true
4252
+ },
4253
+ typeSimple: {
4254
+ type: 'string',
4255
+ nullable: true
4256
+ },
4257
+ isOptional: {
4258
+ type: 'boolean'
4259
+ },
4260
+ defaultValue: {
4261
+ nullable: true
4262
+ }
4263
+ },
4264
+ additionalProperties: false
4265
+ },
4266
+ nullable: true
4267
+ },
4268
+ returnValue: {
4269
+ type: 'object',
4270
+ properties: {
4271
+ type: {
4272
+ type: 'string',
4273
+ nullable: true
4274
+ },
4275
+ typeSimple: {
4276
+ type: 'string',
4277
+ nullable: true
4278
+ }
4279
+ },
4280
+ additionalProperties: false
4281
+ }
4282
+ },
4283
+ additionalProperties: false
4284
+ },
4285
+ nullable: true
4286
+ }
4287
+ },
4288
+ additionalProperties: false
1405
4289
  },
1406
4290
  nullable: true
1407
4291
  },
1408
4292
  actions: {
1409
4293
  type: 'object',
1410
4294
  additionalProperties: {
1411
- '$ref': '#/components/schemas/Volo.Abp.Http.Modeling.ActionApiDescriptionModel'
4295
+ type: 'object',
4296
+ properties: {
4297
+ uniqueName: {
4298
+ type: 'string',
4299
+ nullable: true
4300
+ },
4301
+ name: {
4302
+ type: 'string',
4303
+ nullable: true
4304
+ },
4305
+ httpMethod: {
4306
+ type: 'string',
4307
+ nullable: true
4308
+ },
4309
+ url: {
4310
+ type: 'string',
4311
+ nullable: true
4312
+ },
4313
+ supportedVersions: {
4314
+ type: 'array',
4315
+ items: {
4316
+ type: 'string'
4317
+ },
4318
+ nullable: true
4319
+ },
4320
+ parametersOnMethod: {
4321
+ type: 'array',
4322
+ items: {
4323
+ type: 'object',
4324
+ properties: {
4325
+ name: {
4326
+ type: 'string',
4327
+ nullable: true
4328
+ },
4329
+ typeAsString: {
4330
+ type: 'string',
4331
+ nullable: true
4332
+ },
4333
+ type: {
4334
+ type: 'string',
4335
+ nullable: true
4336
+ },
4337
+ typeSimple: {
4338
+ type: 'string',
4339
+ nullable: true
4340
+ },
4341
+ isOptional: {
4342
+ type: 'boolean'
4343
+ },
4344
+ defaultValue: {
4345
+ nullable: true
4346
+ }
4347
+ },
4348
+ additionalProperties: false
4349
+ },
4350
+ nullable: true
4351
+ },
4352
+ parameters: {
4353
+ type: 'array',
4354
+ items: {
4355
+ type: 'object',
4356
+ properties: {
4357
+ nameOnMethod: {
4358
+ type: 'string',
4359
+ nullable: true
4360
+ },
4361
+ name: {
4362
+ type: 'string',
4363
+ nullable: true
4364
+ },
4365
+ jsonName: {
4366
+ type: 'string',
4367
+ nullable: true
4368
+ },
4369
+ type: {
4370
+ type: 'string',
4371
+ nullable: true
4372
+ },
4373
+ typeSimple: {
4374
+ type: 'string',
4375
+ nullable: true
4376
+ },
4377
+ isOptional: {
4378
+ type: 'boolean'
4379
+ },
4380
+ defaultValue: {
4381
+ nullable: true
4382
+ },
4383
+ constraintTypes: {
4384
+ type: 'array',
4385
+ items: {
4386
+ type: 'string'
4387
+ },
4388
+ nullable: true
4389
+ },
4390
+ bindingSourceId: {
4391
+ type: 'string',
4392
+ nullable: true
4393
+ },
4394
+ descriptorName: {
4395
+ type: 'string',
4396
+ nullable: true
4397
+ }
4398
+ },
4399
+ additionalProperties: false
4400
+ },
4401
+ nullable: true
4402
+ },
4403
+ returnValue: {
4404
+ type: 'object',
4405
+ properties: {
4406
+ type: {
4407
+ type: 'string',
4408
+ nullable: true
4409
+ },
4410
+ typeSimple: {
4411
+ type: 'string',
4412
+ nullable: true
4413
+ }
4414
+ },
4415
+ additionalProperties: false
4416
+ },
4417
+ allowAnonymous: {
4418
+ type: 'boolean',
4419
+ nullable: true
4420
+ },
4421
+ implementFrom: {
4422
+ type: 'string',
4423
+ nullable: true
4424
+ }
4425
+ },
4426
+ additionalProperties: false
1412
4427
  },
1413
4428
  nullable: true
1414
4429
  }
@@ -1430,7 +4445,60 @@ export const $Volo_Abp_Http_Modeling_ControllerInterfaceApiDescriptionModel = {
1430
4445
  methods: {
1431
4446
  type: 'array',
1432
4447
  items: {
1433
- '$ref': '#/components/schemas/Volo.Abp.Http.Modeling.InterfaceMethodApiDescriptionModel'
4448
+ type: 'object',
4449
+ properties: {
4450
+ name: {
4451
+ type: 'string',
4452
+ nullable: true
4453
+ },
4454
+ parametersOnMethod: {
4455
+ type: 'array',
4456
+ items: {
4457
+ type: 'object',
4458
+ properties: {
4459
+ name: {
4460
+ type: 'string',
4461
+ nullable: true
4462
+ },
4463
+ typeAsString: {
4464
+ type: 'string',
4465
+ nullable: true
4466
+ },
4467
+ type: {
4468
+ type: 'string',
4469
+ nullable: true
4470
+ },
4471
+ typeSimple: {
4472
+ type: 'string',
4473
+ nullable: true
4474
+ },
4475
+ isOptional: {
4476
+ type: 'boolean'
4477
+ },
4478
+ defaultValue: {
4479
+ nullable: true
4480
+ }
4481
+ },
4482
+ additionalProperties: false
4483
+ },
4484
+ nullable: true
4485
+ },
4486
+ returnValue: {
4487
+ type: 'object',
4488
+ properties: {
4489
+ type: {
4490
+ type: 'string',
4491
+ nullable: true
4492
+ },
4493
+ typeSimple: {
4494
+ type: 'string',
4495
+ nullable: true
4496
+ }
4497
+ },
4498
+ additionalProperties: false
4499
+ }
4500
+ },
4501
+ additionalProperties: false
1434
4502
  },
1435
4503
  nullable: true
1436
4504
  }
@@ -1448,12 +4516,48 @@ export const $Volo_Abp_Http_Modeling_InterfaceMethodApiDescriptionModel = {
1448
4516
  parametersOnMethod: {
1449
4517
  type: 'array',
1450
4518
  items: {
1451
- '$ref': '#/components/schemas/Volo.Abp.Http.Modeling.MethodParameterApiDescriptionModel'
4519
+ type: 'object',
4520
+ properties: {
4521
+ name: {
4522
+ type: 'string',
4523
+ nullable: true
4524
+ },
4525
+ typeAsString: {
4526
+ type: 'string',
4527
+ nullable: true
4528
+ },
4529
+ type: {
4530
+ type: 'string',
4531
+ nullable: true
4532
+ },
4533
+ typeSimple: {
4534
+ type: 'string',
4535
+ nullable: true
4536
+ },
4537
+ isOptional: {
4538
+ type: 'boolean'
4539
+ },
4540
+ defaultValue: {
4541
+ nullable: true
4542
+ }
4543
+ },
4544
+ additionalProperties: false
1452
4545
  },
1453
4546
  nullable: true
1454
4547
  },
1455
4548
  returnValue: {
1456
- '$ref': '#/components/schemas/Volo.Abp.Http.Modeling.ReturnValueApiDescriptionModel'
4549
+ type: 'object',
4550
+ properties: {
4551
+ type: {
4552
+ type: 'string',
4553
+ nullable: true
4554
+ },
4555
+ typeSimple: {
4556
+ type: 'string',
4557
+ nullable: true
4558
+ }
4559
+ },
4560
+ additionalProperties: false
1457
4561
  }
1458
4562
  },
1459
4563
  additionalProperties: false
@@ -1502,7 +4606,248 @@ export const $Volo_Abp_Http_Modeling_ModuleApiDescriptionModel = {
1502
4606
  controllers: {
1503
4607
  type: 'object',
1504
4608
  additionalProperties: {
1505
- '$ref': '#/components/schemas/Volo.Abp.Http.Modeling.ControllerApiDescriptionModel'
4609
+ type: 'object',
4610
+ properties: {
4611
+ controllerName: {
4612
+ type: 'string',
4613
+ nullable: true
4614
+ },
4615
+ controllerGroupName: {
4616
+ type: 'string',
4617
+ nullable: true
4618
+ },
4619
+ isRemoteService: {
4620
+ type: 'boolean'
4621
+ },
4622
+ isIntegrationService: {
4623
+ type: 'boolean'
4624
+ },
4625
+ apiVersion: {
4626
+ type: 'string',
4627
+ nullable: true
4628
+ },
4629
+ type: {
4630
+ type: 'string',
4631
+ nullable: true
4632
+ },
4633
+ interfaces: {
4634
+ type: 'array',
4635
+ items: {
4636
+ type: 'object',
4637
+ properties: {
4638
+ type: {
4639
+ type: 'string',
4640
+ nullable: true
4641
+ },
4642
+ name: {
4643
+ type: 'string',
4644
+ nullable: true
4645
+ },
4646
+ methods: {
4647
+ type: 'array',
4648
+ items: {
4649
+ type: 'object',
4650
+ properties: {
4651
+ name: {
4652
+ type: 'string',
4653
+ nullable: true
4654
+ },
4655
+ parametersOnMethod: {
4656
+ type: 'array',
4657
+ items: {
4658
+ type: 'object',
4659
+ properties: {
4660
+ name: {
4661
+ type: 'string',
4662
+ nullable: true
4663
+ },
4664
+ typeAsString: {
4665
+ type: 'string',
4666
+ nullable: true
4667
+ },
4668
+ type: {
4669
+ type: 'string',
4670
+ nullable: true
4671
+ },
4672
+ typeSimple: {
4673
+ type: 'string',
4674
+ nullable: true
4675
+ },
4676
+ isOptional: {
4677
+ type: 'boolean'
4678
+ },
4679
+ defaultValue: {
4680
+ nullable: true
4681
+ }
4682
+ },
4683
+ additionalProperties: false
4684
+ },
4685
+ nullable: true
4686
+ },
4687
+ returnValue: {
4688
+ type: 'object',
4689
+ properties: {
4690
+ type: {
4691
+ type: 'string',
4692
+ nullable: true
4693
+ },
4694
+ typeSimple: {
4695
+ type: 'string',
4696
+ nullable: true
4697
+ }
4698
+ },
4699
+ additionalProperties: false
4700
+ }
4701
+ },
4702
+ additionalProperties: false
4703
+ },
4704
+ nullable: true
4705
+ }
4706
+ },
4707
+ additionalProperties: false
4708
+ },
4709
+ nullable: true
4710
+ },
4711
+ actions: {
4712
+ type: 'object',
4713
+ additionalProperties: {
4714
+ type: 'object',
4715
+ properties: {
4716
+ uniqueName: {
4717
+ type: 'string',
4718
+ nullable: true
4719
+ },
4720
+ name: {
4721
+ type: 'string',
4722
+ nullable: true
4723
+ },
4724
+ httpMethod: {
4725
+ type: 'string',
4726
+ nullable: true
4727
+ },
4728
+ url: {
4729
+ type: 'string',
4730
+ nullable: true
4731
+ },
4732
+ supportedVersions: {
4733
+ type: 'array',
4734
+ items: {
4735
+ type: 'string'
4736
+ },
4737
+ nullable: true
4738
+ },
4739
+ parametersOnMethod: {
4740
+ type: 'array',
4741
+ items: {
4742
+ type: 'object',
4743
+ properties: {
4744
+ name: {
4745
+ type: 'string',
4746
+ nullable: true
4747
+ },
4748
+ typeAsString: {
4749
+ type: 'string',
4750
+ nullable: true
4751
+ },
4752
+ type: {
4753
+ type: 'string',
4754
+ nullable: true
4755
+ },
4756
+ typeSimple: {
4757
+ type: 'string',
4758
+ nullable: true
4759
+ },
4760
+ isOptional: {
4761
+ type: 'boolean'
4762
+ },
4763
+ defaultValue: {
4764
+ nullable: true
4765
+ }
4766
+ },
4767
+ additionalProperties: false
4768
+ },
4769
+ nullable: true
4770
+ },
4771
+ parameters: {
4772
+ type: 'array',
4773
+ items: {
4774
+ type: 'object',
4775
+ properties: {
4776
+ nameOnMethod: {
4777
+ type: 'string',
4778
+ nullable: true
4779
+ },
4780
+ name: {
4781
+ type: 'string',
4782
+ nullable: true
4783
+ },
4784
+ jsonName: {
4785
+ type: 'string',
4786
+ nullable: true
4787
+ },
4788
+ type: {
4789
+ type: 'string',
4790
+ nullable: true
4791
+ },
4792
+ typeSimple: {
4793
+ type: 'string',
4794
+ nullable: true
4795
+ },
4796
+ isOptional: {
4797
+ type: 'boolean'
4798
+ },
4799
+ defaultValue: {
4800
+ nullable: true
4801
+ },
4802
+ constraintTypes: {
4803
+ type: 'array',
4804
+ items: {
4805
+ type: 'string'
4806
+ },
4807
+ nullable: true
4808
+ },
4809
+ bindingSourceId: {
4810
+ type: 'string',
4811
+ nullable: true
4812
+ },
4813
+ descriptorName: {
4814
+ type: 'string',
4815
+ nullable: true
4816
+ }
4817
+ },
4818
+ additionalProperties: false
4819
+ },
4820
+ nullable: true
4821
+ },
4822
+ returnValue: {
4823
+ type: 'object',
4824
+ properties: {
4825
+ type: {
4826
+ type: 'string',
4827
+ nullable: true
4828
+ },
4829
+ typeSimple: {
4830
+ type: 'string',
4831
+ nullable: true
4832
+ }
4833
+ },
4834
+ additionalProperties: false
4835
+ },
4836
+ allowAnonymous: {
4837
+ type: 'boolean',
4838
+ nullable: true
4839
+ },
4840
+ implementFrom: {
4841
+ type: 'string',
4842
+ nullable: true
4843
+ }
4844
+ },
4845
+ additionalProperties: false
4846
+ },
4847
+ nullable: true
4848
+ }
4849
+ },
4850
+ additionalProperties: false
1506
4851
  },
1507
4852
  nullable: true
1508
4853
  }
@@ -1653,7 +4998,51 @@ export const $Volo_Abp_Http_Modeling_TypeApiDescriptionModel = {
1653
4998
  properties: {
1654
4999
  type: 'array',
1655
5000
  items: {
1656
- '$ref': '#/components/schemas/Volo.Abp.Http.Modeling.PropertyApiDescriptionModel'
5001
+ type: 'object',
5002
+ properties: {
5003
+ name: {
5004
+ type: 'string',
5005
+ nullable: true
5006
+ },
5007
+ jsonName: {
5008
+ type: 'string',
5009
+ nullable: true
5010
+ },
5011
+ type: {
5012
+ type: 'string',
5013
+ nullable: true
5014
+ },
5015
+ typeSimple: {
5016
+ type: 'string',
5017
+ nullable: true
5018
+ },
5019
+ isRequired: {
5020
+ type: 'boolean'
5021
+ },
5022
+ minLength: {
5023
+ type: 'integer',
5024
+ format: 'int32',
5025
+ nullable: true
5026
+ },
5027
+ maxLength: {
5028
+ type: 'integer',
5029
+ format: 'int32',
5030
+ nullable: true
5031
+ },
5032
+ minimum: {
5033
+ type: 'string',
5034
+ nullable: true
5035
+ },
5036
+ maximum: {
5037
+ type: 'string',
5038
+ nullable: true
5039
+ },
5040
+ regex: {
5041
+ type: 'string',
5042
+ nullable: true
5043
+ }
5044
+ },
5045
+ additionalProperties: false
1657
5046
  },
1658
5047
  nullable: true
1659
5048
  }
@@ -1684,7 +5073,21 @@ export const $Volo_Abp_Http_RemoteServiceErrorInfo = {
1684
5073
  validationErrors: {
1685
5074
  type: 'array',
1686
5075
  items: {
1687
- '$ref': '#/components/schemas/Volo.Abp.Http.RemoteServiceValidationErrorInfo'
5076
+ type: 'object',
5077
+ properties: {
5078
+ message: {
5079
+ type: 'string',
5080
+ nullable: true
5081
+ },
5082
+ members: {
5083
+ type: 'array',
5084
+ items: {
5085
+ type: 'string'
5086
+ },
5087
+ nullable: true
5088
+ }
5089
+ },
5090
+ additionalProperties: false
1688
5091
  },
1689
5092
  nullable: true
1690
5093
  }
@@ -1696,7 +5099,48 @@ export const $Volo_Abp_Http_RemoteServiceErrorResponse = {
1696
5099
  type: 'object',
1697
5100
  properties: {
1698
5101
  error: {
1699
- '$ref': '#/components/schemas/Volo.Abp.Http.RemoteServiceErrorInfo'
5102
+ type: 'object',
5103
+ properties: {
5104
+ code: {
5105
+ type: 'string',
5106
+ nullable: true
5107
+ },
5108
+ message: {
5109
+ type: 'string',
5110
+ nullable: true
5111
+ },
5112
+ details: {
5113
+ type: 'string',
5114
+ nullable: true
5115
+ },
5116
+ data: {
5117
+ type: 'object',
5118
+ additionalProperties: {},
5119
+ nullable: true
5120
+ },
5121
+ validationErrors: {
5122
+ type: 'array',
5123
+ items: {
5124
+ type: 'object',
5125
+ properties: {
5126
+ message: {
5127
+ type: 'string',
5128
+ nullable: true
5129
+ },
5130
+ members: {
5131
+ type: 'array',
5132
+ items: {
5133
+ type: 'string'
5134
+ },
5135
+ nullable: true
5136
+ }
5137
+ },
5138
+ additionalProperties: false
5139
+ },
5140
+ nullable: true
5141
+ }
5142
+ },
5143
+ additionalProperties: false
1700
5144
  }
1701
5145
  },
1702
5146
  additionalProperties: false
@@ -1942,7 +5386,76 @@ export const $Volo_Abp_PermissionManagement_GetPermissionListResultDto = {
1942
5386
  groups: {
1943
5387
  type: 'array',
1944
5388
  items: {
1945
- '$ref': '#/components/schemas/Volo.Abp.PermissionManagement.PermissionGroupDto'
5389
+ type: 'object',
5390
+ properties: {
5391
+ name: {
5392
+ type: 'string',
5393
+ nullable: true
5394
+ },
5395
+ displayName: {
5396
+ type: 'string',
5397
+ nullable: true
5398
+ },
5399
+ displayNameKey: {
5400
+ type: 'string',
5401
+ nullable: true
5402
+ },
5403
+ displayNameResource: {
5404
+ type: 'string',
5405
+ nullable: true
5406
+ },
5407
+ permissions: {
5408
+ type: 'array',
5409
+ items: {
5410
+ type: 'object',
5411
+ properties: {
5412
+ name: {
5413
+ type: 'string',
5414
+ nullable: true
5415
+ },
5416
+ displayName: {
5417
+ type: 'string',
5418
+ nullable: true
5419
+ },
5420
+ parentName: {
5421
+ type: 'string',
5422
+ nullable: true
5423
+ },
5424
+ isGranted: {
5425
+ type: 'boolean'
5426
+ },
5427
+ allowedProviders: {
5428
+ type: 'array',
5429
+ items: {
5430
+ type: 'string'
5431
+ },
5432
+ nullable: true
5433
+ },
5434
+ grantedProviders: {
5435
+ type: 'array',
5436
+ items: {
5437
+ type: 'object',
5438
+ properties: {
5439
+ providerName: {
5440
+ type: 'string',
5441
+ nullable: true
5442
+ },
5443
+ providerKey: {
5444
+ type: 'string',
5445
+ nullable: true
5446
+ }
5447
+ },
5448
+ additionalProperties: false
5449
+ },
5450
+ nullable: true
5451
+ }
5452
+ },
5453
+ additionalProperties: false
5454
+ },
5455
+ nullable: true
5456
+ }
5457
+ },
5458
+ additionalProperties: false
1946
5459
  },
1947
5460
  nullable: true
1948
5461
  }
@@ -1978,7 +5491,18 @@ export const $Volo_Abp_PermissionManagement_PermissionGrantInfoDto = {
1978
5491
  grantedProviders: {
1979
5492
  type: 'array',
1980
5493
  items: {
1981
- '$ref': '#/components/schemas/Volo.Abp.PermissionManagement.ProviderInfoDto'
5494
+ type: 'object',
5495
+ properties: {
5496
+ providerName: {
5497
+ type: 'string',
5498
+ nullable: true
5499
+ },
5500
+ providerKey: {
5501
+ type: 'string',
5502
+ nullable: true
5503
+ }
5504
+ },
5505
+ additionalProperties: false
1982
5506
  },
1983
5507
  nullable: true
1984
5508
  }
@@ -2008,7 +5532,50 @@ export const $Volo_Abp_PermissionManagement_PermissionGroupDto = {
2008
5532
  permissions: {
2009
5533
  type: 'array',
2010
5534
  items: {
2011
- '$ref': '#/components/schemas/Volo.Abp.PermissionManagement.PermissionGrantInfoDto'
5535
+ type: 'object',
5536
+ properties: {
5537
+ name: {
5538
+ type: 'string',
5539
+ nullable: true
5540
+ },
5541
+ displayName: {
5542
+ type: 'string',
5543
+ nullable: true
5544
+ },
5545
+ parentName: {
5546
+ type: 'string',
5547
+ nullable: true
5548
+ },
5549
+ isGranted: {
5550
+ type: 'boolean'
5551
+ },
5552
+ allowedProviders: {
5553
+ type: 'array',
5554
+ items: {
5555
+ type: 'string'
5556
+ },
5557
+ nullable: true
5558
+ },
5559
+ grantedProviders: {
5560
+ type: 'array',
5561
+ items: {
5562
+ type: 'object',
5563
+ properties: {
5564
+ providerName: {
5565
+ type: 'string',
5566
+ nullable: true
5567
+ },
5568
+ providerKey: {
5569
+ type: 'string',
5570
+ nullable: true
5571
+ }
5572
+ },
5573
+ additionalProperties: false
5574
+ },
5575
+ nullable: true
5576
+ }
5577
+ },
5578
+ additionalProperties: false
2012
5579
  },
2013
5580
  nullable: true
2014
5581
  }
@@ -2051,7 +5618,17 @@ export const $Volo_Abp_PermissionManagement_UpdatePermissionsDto = {
2051
5618
  permissions: {
2052
5619
  type: 'array',
2053
5620
  items: {
2054
- '$ref': '#/components/schemas/Volo.Abp.PermissionManagement.UpdatePermissionDto'
5621
+ type: 'object',
5622
+ properties: {
5623
+ name: {
5624
+ type: 'string',
5625
+ nullable: true
5626
+ },
5627
+ isGranted: {
5628
+ type: 'boolean'
5629
+ }
5630
+ },
5631
+ additionalProperties: false
2055
5632
  },
2056
5633
  nullable: true
2057
5634
  }
@@ -2282,7 +5859,21 @@ export const $Volo_Abp_Validation_StringValues_IStringValueType = {
2282
5859
  readOnly: true
2283
5860
  },
2284
5861
  validator: {
2285
- '$ref': '#/components/schemas/Volo.Abp.Validation.StringValues.IValueValidator'
5862
+ type: 'object',
5863
+ properties: {
5864
+ name: {
5865
+ type: 'string',
5866
+ nullable: true,
5867
+ readOnly: true
5868
+ },
5869
+ properties: {
5870
+ type: 'object',
5871
+ additionalProperties: {},
5872
+ nullable: true,
5873
+ readOnly: true
5874
+ }
5875
+ },
5876
+ additionalProperties: false
2286
5877
  }
2287
5878
  },
2288
5879
  additionalProperties: false