@ayasofyazilim/saas 0.0.72 → 0.0.74

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.
@@ -0,0 +1,4077 @@
1
+ // This file is auto-generated by @hey-api/openapi-ts
2
+
3
+ export const $PagedResultDto_RefundListItem = {
4
+ type: 'object',
5
+ properties: {
6
+ items: {
7
+ type: 'array',
8
+ items: {
9
+ required: ['processedDate', 'reconciliationStatus', 'referenceNumber', 'refundAmount', 'refundAmountInCurrency', 'refundCurrency', 'refundType', 'status', 'travelDocumentNumber', 'travellerFeeAmount', 'userDeviceName'],
10
+ type: 'object',
11
+ properties: {
12
+ id: {
13
+ type: 'string',
14
+ format: 'uuid'
15
+ },
16
+ userDeviceName: {
17
+ minLength: 1,
18
+ type: 'string'
19
+ },
20
+ refundType: {
21
+ enum: ['Cash', 'CreditCard', 'BankTransfer', 'Wallet', 'CashViaPartner'],
22
+ type: 'string'
23
+ },
24
+ travelDocumentNumber: {
25
+ minLength: 1,
26
+ type: 'string'
27
+ },
28
+ refundAmount: {
29
+ type: 'number',
30
+ format: 'double'
31
+ },
32
+ refundCurrency: {
33
+ minLength: 1,
34
+ type: 'string'
35
+ },
36
+ refundAmountInCurrency: {
37
+ type: 'number',
38
+ format: 'double'
39
+ },
40
+ travellerFeeAmount: {
41
+ type: 'number',
42
+ format: 'double'
43
+ },
44
+ referenceNumber: {
45
+ minLength: 1,
46
+ type: 'string'
47
+ },
48
+ status: {
49
+ enum: ['NotPaid', 'PendingDeparture', 'Blocked', 'Processing', 'PartlyPaid', 'Paid', 'Overpaid', 'Rejected', 'Cancelled', 'Error'],
50
+ type: 'string'
51
+ },
52
+ reconciliationStatus: {
53
+ enum: ['Approved', 'NotApproved', 'Error', 'InProgress'],
54
+ type: 'string'
55
+ },
56
+ processedDate: {
57
+ type: 'string',
58
+ format: 'date-time'
59
+ },
60
+ paidDate: {
61
+ type: 'string',
62
+ format: 'date-time',
63
+ nullable: true
64
+ }
65
+ },
66
+ additionalProperties: false
67
+ },
68
+ nullable: true
69
+ },
70
+ totalCount: {
71
+ type: 'integer',
72
+ format: 'int64'
73
+ }
74
+ },
75
+ additionalProperties: false
76
+ } as const;
77
+
78
+ export const $PagedResultDto_RefundPointNameDto = {
79
+ type: 'object',
80
+ properties: {
81
+ items: {
82
+ type: 'array',
83
+ items: {
84
+ required: ['id', 'name'],
85
+ type: 'object',
86
+ properties: {
87
+ id: {
88
+ type: 'string',
89
+ format: 'uuid'
90
+ },
91
+ name: {
92
+ minLength: 1,
93
+ type: 'string'
94
+ }
95
+ },
96
+ additionalProperties: false
97
+ },
98
+ nullable: true
99
+ },
100
+ totalCount: {
101
+ type: 'integer',
102
+ format: 'int64'
103
+ }
104
+ },
105
+ additionalProperties: false
106
+ } as const;
107
+
108
+ export const $PagedResultDto_UserDeviceNameDto = {
109
+ type: 'object',
110
+ properties: {
111
+ items: {
112
+ type: 'array',
113
+ items: {
114
+ required: ['id', 'name'],
115
+ type: 'object',
116
+ properties: {
117
+ id: {
118
+ type: 'string',
119
+ format: 'uuid'
120
+ },
121
+ name: {
122
+ minLength: 1,
123
+ type: 'string'
124
+ }
125
+ },
126
+ additionalProperties: false
127
+ },
128
+ nullable: true
129
+ },
130
+ totalCount: {
131
+ type: 'integer',
132
+ format: 'int64'
133
+ }
134
+ },
135
+ additionalProperties: false
136
+ } as const;
137
+
138
+ export const $UniRefund_CRMService_RefundPoints_RefundPointNameDto = {
139
+ required: ['id', 'name'],
140
+ type: 'object',
141
+ properties: {
142
+ id: {
143
+ type: 'string',
144
+ format: 'uuid'
145
+ },
146
+ name: {
147
+ minLength: 1,
148
+ type: 'string'
149
+ }
150
+ },
151
+ additionalProperties: false
152
+ } as const;
153
+
154
+ export const $UniRefund_CRMService_RefundPoints_UserDeviceNameDto = {
155
+ required: ['id', 'name'],
156
+ type: 'object',
157
+ properties: {
158
+ id: {
159
+ type: 'string',
160
+ format: 'uuid'
161
+ },
162
+ name: {
163
+ minLength: 1,
164
+ type: 'string'
165
+ }
166
+ },
167
+ additionalProperties: false
168
+ } as const;
169
+
170
+ export const $UniRefund_RefundService_Enums_RefundReconciliationStatus = {
171
+ enum: ['Approved', 'NotApproved', 'Error', 'InProgress'],
172
+ type: 'string'
173
+ } as const;
174
+
175
+ export const $UniRefund_RefundService_Enums_RefundStatus = {
176
+ enum: ['NotPaid', 'PendingDeparture', 'Blocked', 'Processing', 'PartlyPaid', 'Paid', 'Overpaid', 'Rejected', 'Cancelled', 'Error'],
177
+ type: 'string'
178
+ } as const;
179
+
180
+ export const $UniRefund_RefundService_Refunds_CreateRefundDto = {
181
+ required: ['refundPointId', 'refundType', 'tagIds', 'travellerId'],
182
+ type: 'object',
183
+ properties: {
184
+ tagIds: {
185
+ type: 'array',
186
+ items: {
187
+ type: 'string',
188
+ format: 'uuid'
189
+ }
190
+ },
191
+ travellerId: {
192
+ type: 'string',
193
+ format: 'uuid'
194
+ },
195
+ refundType: {
196
+ enum: ['Cash', 'CreditCard', 'BankTransfer', 'Wallet', 'CashViaPartner'],
197
+ type: 'string'
198
+ },
199
+ cardNumber: {
200
+ type: 'string',
201
+ format: 'credit-card',
202
+ default: '3700 0000 0000 002',
203
+ nullable: true
204
+ },
205
+ cardExpiryMonth: {
206
+ maximum: 12,
207
+ minimum: 1,
208
+ type: 'integer',
209
+ format: 'int32',
210
+ nullable: true
211
+ },
212
+ cardExpiryYear: {
213
+ type: 'integer',
214
+ format: 'int32',
215
+ nullable: true
216
+ },
217
+ refundPointId: {
218
+ type: 'string',
219
+ format: 'uuid'
220
+ }
221
+ },
222
+ additionalProperties: false
223
+ } as const;
224
+
225
+ export const $UniRefund_RefundService_Refunds_CreateRefundResponseDto = {
226
+ required: ['id'],
227
+ type: 'object',
228
+ properties: {
229
+ id: {
230
+ type: 'string',
231
+ format: 'uuid'
232
+ }
233
+ },
234
+ additionalProperties: false
235
+ } as const;
236
+
237
+ export const $UniRefund_RefundService_Refunds_GetListAsync_RefundListInputTimeFilter = {
238
+ enum: ['AllTime', 'Today', 'Yesterday', 'Days30', 'ThisWeek', 'ThisMonth', 'ThisQuarter', 'ThisYear', 'LastWeek', 'LastMonth', 'LastQuarter', 'LastYear', 'DateRange'],
239
+ type: 'string'
240
+ } as const;
241
+
242
+ export const $UniRefund_RefundService_Refunds_GetListAsync_RefundListItem = {
243
+ required: ['processedDate', 'reconciliationStatus', 'referenceNumber', 'refundAmount', 'refundAmountInCurrency', 'refundCurrency', 'refundType', 'status', 'travelDocumentNumber', 'travellerFeeAmount', 'userDeviceName'],
244
+ type: 'object',
245
+ properties: {
246
+ id: {
247
+ type: 'string',
248
+ format: 'uuid'
249
+ },
250
+ userDeviceName: {
251
+ minLength: 1,
252
+ type: 'string'
253
+ },
254
+ refundType: {
255
+ enum: ['Cash', 'CreditCard', 'BankTransfer', 'Wallet', 'CashViaPartner'],
256
+ type: 'string'
257
+ },
258
+ travelDocumentNumber: {
259
+ minLength: 1,
260
+ type: 'string'
261
+ },
262
+ refundAmount: {
263
+ type: 'number',
264
+ format: 'double'
265
+ },
266
+ refundCurrency: {
267
+ minLength: 1,
268
+ type: 'string'
269
+ },
270
+ refundAmountInCurrency: {
271
+ type: 'number',
272
+ format: 'double'
273
+ },
274
+ travellerFeeAmount: {
275
+ type: 'number',
276
+ format: 'double'
277
+ },
278
+ referenceNumber: {
279
+ minLength: 1,
280
+ type: 'string'
281
+ },
282
+ status: {
283
+ enum: ['NotPaid', 'PendingDeparture', 'Blocked', 'Processing', 'PartlyPaid', 'Paid', 'Overpaid', 'Rejected', 'Cancelled', 'Error'],
284
+ type: 'string'
285
+ },
286
+ reconciliationStatus: {
287
+ enum: ['Approved', 'NotApproved', 'Error', 'InProgress'],
288
+ type: 'string'
289
+ },
290
+ processedDate: {
291
+ type: 'string',
292
+ format: 'date-time'
293
+ },
294
+ paidDate: {
295
+ type: 'string',
296
+ format: 'date-time',
297
+ nullable: true
298
+ }
299
+ },
300
+ additionalProperties: false
301
+ } as const;
302
+
303
+ export const $UniRefund_RefundService_Refunds_GetListAsync_RefundTextFilterType = {
304
+ enum: ['TravellerDocumentNumber', 'CardNumber', 'ReferenceNumber', 'InvoiceNumber'],
305
+ type: 'string'
306
+ } as const;
307
+
308
+ export const $UniRefund_RefundService_Refunds_GetRefundStatistics_RefundStatistics = {
309
+ type: 'object',
310
+ properties: {
311
+ refundsCount: {
312
+ type: 'integer',
313
+ format: 'int32'
314
+ },
315
+ refundsAmount: {
316
+ type: 'number',
317
+ format: 'double'
318
+ },
319
+ refundsCashBalance: {
320
+ type: 'number',
321
+ format: 'double'
322
+ }
323
+ },
324
+ additionalProperties: false
325
+ } as const;
326
+
327
+ export const $UniRefund_TagService_Tags_RefundType = {
328
+ enum: ['Cash', 'CreditCard', 'BankTransfer', 'Wallet', 'CashViaPartner'],
329
+ type: 'string'
330
+ } as const;
331
+
332
+ export const $Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationAuthConfigurationDto = {
333
+ type: 'object',
334
+ properties: {
335
+ grantedPolicies: {
336
+ type: 'object',
337
+ additionalProperties: {
338
+ type: 'boolean'
339
+ },
340
+ nullable: true
341
+ }
342
+ },
343
+ additionalProperties: false
344
+ } as const;
345
+
346
+ export const $Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationConfigurationDto = {
347
+ type: 'object',
348
+ properties: {
349
+ localization: {
350
+ type: 'object',
351
+ properties: {
352
+ values: {
353
+ type: 'object',
354
+ additionalProperties: {
355
+ type: 'object',
356
+ additionalProperties: {
357
+ type: 'string'
358
+ }
359
+ },
360
+ nullable: true
361
+ },
362
+ resources: {
363
+ type: 'object',
364
+ additionalProperties: {
365
+ type: 'object',
366
+ properties: {
367
+ texts: {
368
+ type: 'object',
369
+ additionalProperties: {
370
+ type: 'string'
371
+ },
372
+ nullable: true
373
+ },
374
+ baseResources: {
375
+ type: 'array',
376
+ items: {
377
+ type: 'string'
378
+ },
379
+ nullable: true
380
+ }
381
+ },
382
+ additionalProperties: false
383
+ },
384
+ nullable: true
385
+ },
386
+ languages: {
387
+ type: 'array',
388
+ items: {
389
+ type: 'object',
390
+ properties: {
391
+ cultureName: {
392
+ type: 'string',
393
+ nullable: true
394
+ },
395
+ uiCultureName: {
396
+ type: 'string',
397
+ nullable: true
398
+ },
399
+ displayName: {
400
+ type: 'string',
401
+ nullable: true
402
+ },
403
+ twoLetterISOLanguageName: {
404
+ type: 'string',
405
+ nullable: true,
406
+ readOnly: true
407
+ }
408
+ },
409
+ additionalProperties: false
410
+ },
411
+ nullable: true
412
+ },
413
+ currentCulture: {
414
+ type: 'object',
415
+ properties: {
416
+ displayName: {
417
+ type: 'string',
418
+ nullable: true
419
+ },
420
+ englishName: {
421
+ type: 'string',
422
+ nullable: true
423
+ },
424
+ threeLetterIsoLanguageName: {
425
+ type: 'string',
426
+ nullable: true
427
+ },
428
+ twoLetterIsoLanguageName: {
429
+ type: 'string',
430
+ nullable: true
431
+ },
432
+ isRightToLeft: {
433
+ type: 'boolean'
434
+ },
435
+ cultureName: {
436
+ type: 'string',
437
+ nullable: true
438
+ },
439
+ name: {
440
+ type: 'string',
441
+ nullable: true
442
+ },
443
+ nativeName: {
444
+ type: 'string',
445
+ nullable: true
446
+ },
447
+ dateTimeFormat: {
448
+ type: 'object',
449
+ properties: {
450
+ calendarAlgorithmType: {
451
+ type: 'string',
452
+ nullable: true
453
+ },
454
+ dateTimeFormatLong: {
455
+ type: 'string',
456
+ nullable: true
457
+ },
458
+ shortDatePattern: {
459
+ type: 'string',
460
+ nullable: true
461
+ },
462
+ fullDateTimePattern: {
463
+ type: 'string',
464
+ nullable: true
465
+ },
466
+ dateSeparator: {
467
+ type: 'string',
468
+ nullable: true
469
+ },
470
+ shortTimePattern: {
471
+ type: 'string',
472
+ nullable: true
473
+ },
474
+ longTimePattern: {
475
+ type: 'string',
476
+ nullable: true
477
+ }
478
+ },
479
+ additionalProperties: false
480
+ }
481
+ },
482
+ additionalProperties: false
483
+ },
484
+ defaultResourceName: {
485
+ type: 'string',
486
+ nullable: true
487
+ },
488
+ languagesMap: {
489
+ type: 'object',
490
+ additionalProperties: {
491
+ type: 'array',
492
+ items: {
493
+ type: 'object',
494
+ properties: {
495
+ name: {
496
+ type: 'string',
497
+ nullable: true
498
+ },
499
+ value: {
500
+ type: 'string',
501
+ nullable: true
502
+ }
503
+ },
504
+ additionalProperties: false
505
+ }
506
+ },
507
+ nullable: true
508
+ },
509
+ languageFilesMap: {
510
+ type: 'object',
511
+ additionalProperties: {
512
+ type: 'array',
513
+ items: {
514
+ type: 'object',
515
+ properties: {
516
+ name: {
517
+ type: 'string',
518
+ nullable: true
519
+ },
520
+ value: {
521
+ type: 'string',
522
+ nullable: true
523
+ }
524
+ },
525
+ additionalProperties: false
526
+ }
527
+ },
528
+ nullable: true
529
+ }
530
+ },
531
+ additionalProperties: false
532
+ },
533
+ auth: {
534
+ type: 'object',
535
+ properties: {
536
+ grantedPolicies: {
537
+ type: 'object',
538
+ additionalProperties: {
539
+ type: 'boolean'
540
+ },
541
+ nullable: true
542
+ }
543
+ },
544
+ additionalProperties: false
545
+ },
546
+ setting: {
547
+ type: 'object',
548
+ properties: {
549
+ values: {
550
+ type: 'object',
551
+ additionalProperties: {
552
+ type: 'string',
553
+ nullable: true
554
+ },
555
+ nullable: true
556
+ }
557
+ },
558
+ additionalProperties: false
559
+ },
560
+ currentUser: {
561
+ type: 'object',
562
+ properties: {
563
+ isAuthenticated: {
564
+ type: 'boolean'
565
+ },
566
+ id: {
567
+ type: 'string',
568
+ format: 'uuid',
569
+ nullable: true
570
+ },
571
+ tenantId: {
572
+ type: 'string',
573
+ format: 'uuid',
574
+ nullable: true
575
+ },
576
+ impersonatorUserId: {
577
+ type: 'string',
578
+ format: 'uuid',
579
+ nullable: true
580
+ },
581
+ impersonatorTenantId: {
582
+ type: 'string',
583
+ format: 'uuid',
584
+ nullable: true
585
+ },
586
+ impersonatorUserName: {
587
+ type: 'string',
588
+ nullable: true
589
+ },
590
+ impersonatorTenantName: {
591
+ type: 'string',
592
+ nullable: true
593
+ },
594
+ userName: {
595
+ type: 'string',
596
+ nullable: true
597
+ },
598
+ name: {
599
+ type: 'string',
600
+ nullable: true
601
+ },
602
+ surName: {
603
+ type: 'string',
604
+ nullable: true
605
+ },
606
+ email: {
607
+ type: 'string',
608
+ nullable: true
609
+ },
610
+ emailVerified: {
611
+ type: 'boolean'
612
+ },
613
+ phoneNumber: {
614
+ type: 'string',
615
+ nullable: true
616
+ },
617
+ phoneNumberVerified: {
618
+ type: 'boolean'
619
+ },
620
+ roles: {
621
+ type: 'array',
622
+ items: {
623
+ type: 'string'
624
+ },
625
+ nullable: true
626
+ },
627
+ sessionId: {
628
+ type: 'string',
629
+ nullable: true
630
+ }
631
+ },
632
+ additionalProperties: false
633
+ },
634
+ features: {
635
+ type: 'object',
636
+ properties: {
637
+ values: {
638
+ type: 'object',
639
+ additionalProperties: {
640
+ type: 'string',
641
+ nullable: true
642
+ },
643
+ nullable: true
644
+ }
645
+ },
646
+ additionalProperties: false
647
+ },
648
+ globalFeatures: {
649
+ type: 'object',
650
+ properties: {
651
+ enabledFeatures: {
652
+ uniqueItems: true,
653
+ type: 'array',
654
+ items: {
655
+ type: 'string'
656
+ },
657
+ nullable: true
658
+ }
659
+ },
660
+ additionalProperties: false
661
+ },
662
+ multiTenancy: {
663
+ type: 'object',
664
+ properties: {
665
+ isEnabled: {
666
+ type: 'boolean'
667
+ }
668
+ },
669
+ additionalProperties: false
670
+ },
671
+ currentTenant: {
672
+ type: 'object',
673
+ properties: {
674
+ id: {
675
+ type: 'string',
676
+ format: 'uuid',
677
+ nullable: true
678
+ },
679
+ name: {
680
+ type: 'string',
681
+ nullable: true
682
+ },
683
+ isAvailable: {
684
+ type: 'boolean'
685
+ }
686
+ },
687
+ additionalProperties: false
688
+ },
689
+ timing: {
690
+ type: 'object',
691
+ properties: {
692
+ timeZone: {
693
+ type: 'object',
694
+ properties: {
695
+ iana: {
696
+ type: 'object',
697
+ properties: {
698
+ timeZoneName: {
699
+ type: 'string',
700
+ nullable: true
701
+ }
702
+ },
703
+ additionalProperties: false
704
+ },
705
+ windows: {
706
+ type: 'object',
707
+ properties: {
708
+ timeZoneId: {
709
+ type: 'string',
710
+ nullable: true
711
+ }
712
+ },
713
+ additionalProperties: false
714
+ }
715
+ },
716
+ additionalProperties: false
717
+ }
718
+ },
719
+ additionalProperties: false
720
+ },
721
+ clock: {
722
+ type: 'object',
723
+ properties: {
724
+ kind: {
725
+ type: 'string',
726
+ nullable: true
727
+ }
728
+ },
729
+ additionalProperties: false
730
+ },
731
+ objectExtensions: {
732
+ type: 'object',
733
+ properties: {
734
+ modules: {
735
+ type: 'object',
736
+ additionalProperties: {
737
+ type: 'object',
738
+ properties: {
739
+ entities: {
740
+ type: 'object',
741
+ additionalProperties: {
742
+ type: 'object',
743
+ properties: {
744
+ properties: {
745
+ type: 'object',
746
+ additionalProperties: {
747
+ type: 'object',
748
+ properties: {
749
+ type: {
750
+ type: 'string',
751
+ nullable: true
752
+ },
753
+ typeSimple: {
754
+ type: 'string',
755
+ nullable: true
756
+ },
757
+ displayName: {
758
+ type: 'object',
759
+ properties: {
760
+ name: {
761
+ type: 'string',
762
+ nullable: true
763
+ },
764
+ resource: {
765
+ type: 'string',
766
+ nullable: true
767
+ }
768
+ },
769
+ additionalProperties: false
770
+ },
771
+ api: {
772
+ type: 'object',
773
+ properties: {
774
+ onGet: {
775
+ type: 'object',
776
+ properties: {
777
+ isAvailable: {
778
+ type: 'boolean'
779
+ }
780
+ },
781
+ additionalProperties: false
782
+ },
783
+ onCreate: {
784
+ type: 'object',
785
+ properties: {
786
+ isAvailable: {
787
+ type: 'boolean'
788
+ }
789
+ },
790
+ additionalProperties: false
791
+ },
792
+ onUpdate: {
793
+ type: 'object',
794
+ properties: {
795
+ isAvailable: {
796
+ type: 'boolean'
797
+ }
798
+ },
799
+ additionalProperties: false
800
+ }
801
+ },
802
+ additionalProperties: false
803
+ },
804
+ ui: {
805
+ type: 'object',
806
+ properties: {
807
+ onTable: {
808
+ type: 'object',
809
+ properties: {
810
+ isVisible: {
811
+ type: 'boolean'
812
+ }
813
+ },
814
+ additionalProperties: false
815
+ },
816
+ onCreateForm: {
817
+ type: 'object',
818
+ properties: {
819
+ isVisible: {
820
+ type: 'boolean'
821
+ }
822
+ },
823
+ additionalProperties: false
824
+ },
825
+ onEditForm: {
826
+ type: 'object',
827
+ properties: {
828
+ isVisible: {
829
+ type: 'boolean'
830
+ }
831
+ },
832
+ additionalProperties: false
833
+ },
834
+ lookup: {
835
+ type: 'object',
836
+ properties: {
837
+ url: {
838
+ type: 'string',
839
+ nullable: true
840
+ },
841
+ resultListPropertyName: {
842
+ type: 'string',
843
+ nullable: true
844
+ },
845
+ displayPropertyName: {
846
+ type: 'string',
847
+ nullable: true
848
+ },
849
+ valuePropertyName: {
850
+ type: 'string',
851
+ nullable: true
852
+ },
853
+ filterParamName: {
854
+ type: 'string',
855
+ nullable: true
856
+ }
857
+ },
858
+ additionalProperties: false
859
+ }
860
+ },
861
+ additionalProperties: false
862
+ },
863
+ attributes: {
864
+ type: 'array',
865
+ items: {
866
+ type: 'object',
867
+ properties: {
868
+ typeSimple: {
869
+ type: 'string',
870
+ nullable: true
871
+ },
872
+ config: {
873
+ type: 'object',
874
+ additionalProperties: {},
875
+ nullable: true
876
+ }
877
+ },
878
+ additionalProperties: false
879
+ },
880
+ nullable: true
881
+ },
882
+ configuration: {
883
+ type: 'object',
884
+ additionalProperties: {},
885
+ nullable: true
886
+ },
887
+ defaultValue: {
888
+ nullable: true
889
+ }
890
+ },
891
+ additionalProperties: false
892
+ },
893
+ nullable: true
894
+ },
895
+ configuration: {
896
+ type: 'object',
897
+ additionalProperties: {},
898
+ nullable: true
899
+ }
900
+ },
901
+ additionalProperties: false
902
+ },
903
+ nullable: true
904
+ },
905
+ configuration: {
906
+ type: 'object',
907
+ additionalProperties: {},
908
+ nullable: true
909
+ }
910
+ },
911
+ additionalProperties: false
912
+ },
913
+ nullable: true
914
+ },
915
+ enums: {
916
+ type: 'object',
917
+ additionalProperties: {
918
+ type: 'object',
919
+ properties: {
920
+ fields: {
921
+ type: 'array',
922
+ items: {
923
+ type: 'object',
924
+ properties: {
925
+ name: {
926
+ type: 'string',
927
+ nullable: true
928
+ },
929
+ value: {
930
+ nullable: true
931
+ }
932
+ },
933
+ additionalProperties: false
934
+ },
935
+ nullable: true
936
+ },
937
+ localizationResource: {
938
+ type: 'string',
939
+ nullable: true
940
+ }
941
+ },
942
+ additionalProperties: false
943
+ },
944
+ nullable: true
945
+ }
946
+ },
947
+ additionalProperties: false
948
+ },
949
+ extraProperties: {
950
+ type: 'object',
951
+ additionalProperties: {},
952
+ nullable: true
953
+ }
954
+ },
955
+ additionalProperties: false
956
+ } as const;
957
+
958
+ export const $Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationFeatureConfigurationDto = {
959
+ type: 'object',
960
+ properties: {
961
+ values: {
962
+ type: 'object',
963
+ additionalProperties: {
964
+ type: 'string',
965
+ nullable: true
966
+ },
967
+ nullable: true
968
+ }
969
+ },
970
+ additionalProperties: false
971
+ } as const;
972
+
973
+ export const $Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationGlobalFeatureConfigurationDto = {
974
+ type: 'object',
975
+ properties: {
976
+ enabledFeatures: {
977
+ uniqueItems: true,
978
+ type: 'array',
979
+ items: {
980
+ type: 'string'
981
+ },
982
+ nullable: true
983
+ }
984
+ },
985
+ additionalProperties: false
986
+ } as const;
987
+
988
+ export const $Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationConfigurationDto = {
989
+ type: 'object',
990
+ properties: {
991
+ values: {
992
+ type: 'object',
993
+ additionalProperties: {
994
+ type: 'object',
995
+ additionalProperties: {
996
+ type: 'string'
997
+ }
998
+ },
999
+ nullable: true
1000
+ },
1001
+ resources: {
1002
+ type: 'object',
1003
+ additionalProperties: {
1004
+ type: 'object',
1005
+ properties: {
1006
+ texts: {
1007
+ type: 'object',
1008
+ additionalProperties: {
1009
+ type: 'string'
1010
+ },
1011
+ nullable: true
1012
+ },
1013
+ baseResources: {
1014
+ type: 'array',
1015
+ items: {
1016
+ type: 'string'
1017
+ },
1018
+ nullable: true
1019
+ }
1020
+ },
1021
+ additionalProperties: false
1022
+ },
1023
+ nullable: true
1024
+ },
1025
+ languages: {
1026
+ type: 'array',
1027
+ items: {
1028
+ type: 'object',
1029
+ properties: {
1030
+ cultureName: {
1031
+ type: 'string',
1032
+ nullable: true
1033
+ },
1034
+ uiCultureName: {
1035
+ type: 'string',
1036
+ nullable: true
1037
+ },
1038
+ displayName: {
1039
+ type: 'string',
1040
+ nullable: true
1041
+ },
1042
+ twoLetterISOLanguageName: {
1043
+ type: 'string',
1044
+ nullable: true,
1045
+ readOnly: true
1046
+ }
1047
+ },
1048
+ additionalProperties: false
1049
+ },
1050
+ nullable: true
1051
+ },
1052
+ currentCulture: {
1053
+ type: 'object',
1054
+ properties: {
1055
+ displayName: {
1056
+ type: 'string',
1057
+ nullable: true
1058
+ },
1059
+ englishName: {
1060
+ type: 'string',
1061
+ nullable: true
1062
+ },
1063
+ threeLetterIsoLanguageName: {
1064
+ type: 'string',
1065
+ nullable: true
1066
+ },
1067
+ twoLetterIsoLanguageName: {
1068
+ type: 'string',
1069
+ nullable: true
1070
+ },
1071
+ isRightToLeft: {
1072
+ type: 'boolean'
1073
+ },
1074
+ cultureName: {
1075
+ type: 'string',
1076
+ nullable: true
1077
+ },
1078
+ name: {
1079
+ type: 'string',
1080
+ nullable: true
1081
+ },
1082
+ nativeName: {
1083
+ type: 'string',
1084
+ nullable: true
1085
+ },
1086
+ dateTimeFormat: {
1087
+ type: 'object',
1088
+ properties: {
1089
+ calendarAlgorithmType: {
1090
+ type: 'string',
1091
+ nullable: true
1092
+ },
1093
+ dateTimeFormatLong: {
1094
+ type: 'string',
1095
+ nullable: true
1096
+ },
1097
+ shortDatePattern: {
1098
+ type: 'string',
1099
+ nullable: true
1100
+ },
1101
+ fullDateTimePattern: {
1102
+ type: 'string',
1103
+ nullable: true
1104
+ },
1105
+ dateSeparator: {
1106
+ type: 'string',
1107
+ nullable: true
1108
+ },
1109
+ shortTimePattern: {
1110
+ type: 'string',
1111
+ nullable: true
1112
+ },
1113
+ longTimePattern: {
1114
+ type: 'string',
1115
+ nullable: true
1116
+ }
1117
+ },
1118
+ additionalProperties: false
1119
+ }
1120
+ },
1121
+ additionalProperties: false
1122
+ },
1123
+ defaultResourceName: {
1124
+ type: 'string',
1125
+ nullable: true
1126
+ },
1127
+ languagesMap: {
1128
+ type: 'object',
1129
+ additionalProperties: {
1130
+ type: 'array',
1131
+ items: {
1132
+ type: 'object',
1133
+ properties: {
1134
+ name: {
1135
+ type: 'string',
1136
+ nullable: true
1137
+ },
1138
+ value: {
1139
+ type: 'string',
1140
+ nullable: true
1141
+ }
1142
+ },
1143
+ additionalProperties: false
1144
+ }
1145
+ },
1146
+ nullable: true
1147
+ },
1148
+ languageFilesMap: {
1149
+ type: 'object',
1150
+ additionalProperties: {
1151
+ type: 'array',
1152
+ items: {
1153
+ type: 'object',
1154
+ properties: {
1155
+ name: {
1156
+ type: 'string',
1157
+ nullable: true
1158
+ },
1159
+ value: {
1160
+ type: 'string',
1161
+ nullable: true
1162
+ }
1163
+ },
1164
+ additionalProperties: false
1165
+ }
1166
+ },
1167
+ nullable: true
1168
+ }
1169
+ },
1170
+ additionalProperties: false
1171
+ } as const;
1172
+
1173
+ export const $Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationDto = {
1174
+ type: 'object',
1175
+ properties: {
1176
+ resources: {
1177
+ type: 'object',
1178
+ additionalProperties: {
1179
+ type: 'object',
1180
+ properties: {
1181
+ texts: {
1182
+ type: 'object',
1183
+ additionalProperties: {
1184
+ type: 'string'
1185
+ },
1186
+ nullable: true
1187
+ },
1188
+ baseResources: {
1189
+ type: 'array',
1190
+ items: {
1191
+ type: 'string'
1192
+ },
1193
+ nullable: true
1194
+ }
1195
+ },
1196
+ additionalProperties: false
1197
+ },
1198
+ nullable: true
1199
+ },
1200
+ currentCulture: {
1201
+ type: 'object',
1202
+ properties: {
1203
+ displayName: {
1204
+ type: 'string',
1205
+ nullable: true
1206
+ },
1207
+ englishName: {
1208
+ type: 'string',
1209
+ nullable: true
1210
+ },
1211
+ threeLetterIsoLanguageName: {
1212
+ type: 'string',
1213
+ nullable: true
1214
+ },
1215
+ twoLetterIsoLanguageName: {
1216
+ type: 'string',
1217
+ nullable: true
1218
+ },
1219
+ isRightToLeft: {
1220
+ type: 'boolean'
1221
+ },
1222
+ cultureName: {
1223
+ type: 'string',
1224
+ nullable: true
1225
+ },
1226
+ name: {
1227
+ type: 'string',
1228
+ nullable: true
1229
+ },
1230
+ nativeName: {
1231
+ type: 'string',
1232
+ nullable: true
1233
+ },
1234
+ dateTimeFormat: {
1235
+ type: 'object',
1236
+ properties: {
1237
+ calendarAlgorithmType: {
1238
+ type: 'string',
1239
+ nullable: true
1240
+ },
1241
+ dateTimeFormatLong: {
1242
+ type: 'string',
1243
+ nullable: true
1244
+ },
1245
+ shortDatePattern: {
1246
+ type: 'string',
1247
+ nullable: true
1248
+ },
1249
+ fullDateTimePattern: {
1250
+ type: 'string',
1251
+ nullable: true
1252
+ },
1253
+ dateSeparator: {
1254
+ type: 'string',
1255
+ nullable: true
1256
+ },
1257
+ shortTimePattern: {
1258
+ type: 'string',
1259
+ nullable: true
1260
+ },
1261
+ longTimePattern: {
1262
+ type: 'string',
1263
+ nullable: true
1264
+ }
1265
+ },
1266
+ additionalProperties: false
1267
+ }
1268
+ },
1269
+ additionalProperties: false
1270
+ }
1271
+ },
1272
+ additionalProperties: false
1273
+ } as const;
1274
+
1275
+ export const $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
1294
+ } as const;
1295
+
1296
+ export const $Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationSettingConfigurationDto = {
1297
+ type: 'object',
1298
+ properties: {
1299
+ values: {
1300
+ type: 'object',
1301
+ additionalProperties: {
1302
+ type: 'string',
1303
+ nullable: true
1304
+ },
1305
+ nullable: true
1306
+ }
1307
+ },
1308
+ additionalProperties: false
1309
+ } as const;
1310
+
1311
+ export const $Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ClockDto = {
1312
+ type: 'object',
1313
+ properties: {
1314
+ kind: {
1315
+ type: 'string',
1316
+ nullable: true
1317
+ }
1318
+ },
1319
+ additionalProperties: false
1320
+ } as const;
1321
+
1322
+ export const $Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_CurrentCultureDto = {
1323
+ type: 'object',
1324
+ properties: {
1325
+ displayName: {
1326
+ type: 'string',
1327
+ nullable: true
1328
+ },
1329
+ englishName: {
1330
+ type: 'string',
1331
+ nullable: true
1332
+ },
1333
+ threeLetterIsoLanguageName: {
1334
+ type: 'string',
1335
+ nullable: true
1336
+ },
1337
+ twoLetterIsoLanguageName: {
1338
+ type: 'string',
1339
+ nullable: true
1340
+ },
1341
+ isRightToLeft: {
1342
+ type: 'boolean'
1343
+ },
1344
+ cultureName: {
1345
+ type: 'string',
1346
+ nullable: true
1347
+ },
1348
+ name: {
1349
+ type: 'string',
1350
+ nullable: true
1351
+ },
1352
+ nativeName: {
1353
+ type: 'string',
1354
+ nullable: true
1355
+ },
1356
+ dateTimeFormat: {
1357
+ type: 'object',
1358
+ properties: {
1359
+ calendarAlgorithmType: {
1360
+ type: 'string',
1361
+ nullable: true
1362
+ },
1363
+ dateTimeFormatLong: {
1364
+ type: 'string',
1365
+ nullable: true
1366
+ },
1367
+ shortDatePattern: {
1368
+ type: 'string',
1369
+ nullable: true
1370
+ },
1371
+ fullDateTimePattern: {
1372
+ type: 'string',
1373
+ nullable: true
1374
+ },
1375
+ dateSeparator: {
1376
+ type: 'string',
1377
+ nullable: true
1378
+ },
1379
+ shortTimePattern: {
1380
+ type: 'string',
1381
+ nullable: true
1382
+ },
1383
+ longTimePattern: {
1384
+ type: 'string',
1385
+ nullable: true
1386
+ }
1387
+ },
1388
+ additionalProperties: false
1389
+ }
1390
+ },
1391
+ additionalProperties: false
1392
+ } as const;
1393
+
1394
+ export const $Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_CurrentUserDto = {
1395
+ type: 'object',
1396
+ properties: {
1397
+ isAuthenticated: {
1398
+ type: 'boolean'
1399
+ },
1400
+ id: {
1401
+ type: 'string',
1402
+ format: 'uuid',
1403
+ nullable: true
1404
+ },
1405
+ tenantId: {
1406
+ type: 'string',
1407
+ format: 'uuid',
1408
+ nullable: true
1409
+ },
1410
+ impersonatorUserId: {
1411
+ type: 'string',
1412
+ format: 'uuid',
1413
+ nullable: true
1414
+ },
1415
+ impersonatorTenantId: {
1416
+ type: 'string',
1417
+ format: 'uuid',
1418
+ nullable: true
1419
+ },
1420
+ impersonatorUserName: {
1421
+ type: 'string',
1422
+ nullable: true
1423
+ },
1424
+ impersonatorTenantName: {
1425
+ type: 'string',
1426
+ nullable: true
1427
+ },
1428
+ userName: {
1429
+ type: 'string',
1430
+ nullable: true
1431
+ },
1432
+ name: {
1433
+ type: 'string',
1434
+ nullable: true
1435
+ },
1436
+ surName: {
1437
+ type: 'string',
1438
+ nullable: true
1439
+ },
1440
+ email: {
1441
+ type: 'string',
1442
+ nullable: true
1443
+ },
1444
+ emailVerified: {
1445
+ type: 'boolean'
1446
+ },
1447
+ phoneNumber: {
1448
+ type: 'string',
1449
+ nullable: true
1450
+ },
1451
+ phoneNumberVerified: {
1452
+ type: 'boolean'
1453
+ },
1454
+ roles: {
1455
+ type: 'array',
1456
+ items: {
1457
+ type: 'string'
1458
+ },
1459
+ nullable: true
1460
+ },
1461
+ sessionId: {
1462
+ type: 'string',
1463
+ nullable: true
1464
+ }
1465
+ },
1466
+ additionalProperties: false
1467
+ } as const;
1468
+
1469
+ export const $Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_DateTimeFormatDto = {
1470
+ type: 'object',
1471
+ properties: {
1472
+ calendarAlgorithmType: {
1473
+ type: 'string',
1474
+ nullable: true
1475
+ },
1476
+ dateTimeFormatLong: {
1477
+ type: 'string',
1478
+ nullable: true
1479
+ },
1480
+ shortDatePattern: {
1481
+ type: 'string',
1482
+ nullable: true
1483
+ },
1484
+ fullDateTimePattern: {
1485
+ type: 'string',
1486
+ nullable: true
1487
+ },
1488
+ dateSeparator: {
1489
+ type: 'string',
1490
+ nullable: true
1491
+ },
1492
+ shortTimePattern: {
1493
+ type: 'string',
1494
+ nullable: true
1495
+ },
1496
+ longTimePattern: {
1497
+ type: 'string',
1498
+ nullable: true
1499
+ }
1500
+ },
1501
+ additionalProperties: false
1502
+ } as const;
1503
+
1504
+ export const $Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_IanaTimeZone = {
1505
+ type: 'object',
1506
+ properties: {
1507
+ timeZoneName: {
1508
+ type: 'string',
1509
+ nullable: true
1510
+ }
1511
+ },
1512
+ additionalProperties: false
1513
+ } as const;
1514
+
1515
+ export const $Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_EntityExtensionDto = {
1516
+ type: 'object',
1517
+ properties: {
1518
+ properties: {
1519
+ type: 'object',
1520
+ additionalProperties: {
1521
+ type: 'object',
1522
+ properties: {
1523
+ type: {
1524
+ type: 'string',
1525
+ nullable: true
1526
+ },
1527
+ typeSimple: {
1528
+ type: 'string',
1529
+ nullable: true
1530
+ },
1531
+ displayName: {
1532
+ type: 'object',
1533
+ properties: {
1534
+ name: {
1535
+ type: 'string',
1536
+ nullable: true
1537
+ },
1538
+ resource: {
1539
+ type: 'string',
1540
+ nullable: true
1541
+ }
1542
+ },
1543
+ additionalProperties: false
1544
+ },
1545
+ api: {
1546
+ type: 'object',
1547
+ properties: {
1548
+ onGet: {
1549
+ type: 'object',
1550
+ properties: {
1551
+ isAvailable: {
1552
+ type: 'boolean'
1553
+ }
1554
+ },
1555
+ additionalProperties: false
1556
+ },
1557
+ onCreate: {
1558
+ type: 'object',
1559
+ properties: {
1560
+ isAvailable: {
1561
+ type: 'boolean'
1562
+ }
1563
+ },
1564
+ additionalProperties: false
1565
+ },
1566
+ onUpdate: {
1567
+ type: 'object',
1568
+ properties: {
1569
+ isAvailable: {
1570
+ type: 'boolean'
1571
+ }
1572
+ },
1573
+ additionalProperties: false
1574
+ }
1575
+ },
1576
+ additionalProperties: false
1577
+ },
1578
+ ui: {
1579
+ type: 'object',
1580
+ properties: {
1581
+ onTable: {
1582
+ type: 'object',
1583
+ properties: {
1584
+ isVisible: {
1585
+ type: 'boolean'
1586
+ }
1587
+ },
1588
+ additionalProperties: false
1589
+ },
1590
+ onCreateForm: {
1591
+ type: 'object',
1592
+ properties: {
1593
+ isVisible: {
1594
+ type: 'boolean'
1595
+ }
1596
+ },
1597
+ additionalProperties: false
1598
+ },
1599
+ onEditForm: {
1600
+ type: 'object',
1601
+ properties: {
1602
+ isVisible: {
1603
+ type: 'boolean'
1604
+ }
1605
+ },
1606
+ additionalProperties: false
1607
+ },
1608
+ lookup: {
1609
+ type: 'object',
1610
+ properties: {
1611
+ url: {
1612
+ type: 'string',
1613
+ nullable: true
1614
+ },
1615
+ resultListPropertyName: {
1616
+ type: 'string',
1617
+ nullable: true
1618
+ },
1619
+ displayPropertyName: {
1620
+ type: 'string',
1621
+ nullable: true
1622
+ },
1623
+ valuePropertyName: {
1624
+ type: 'string',
1625
+ nullable: true
1626
+ },
1627
+ filterParamName: {
1628
+ type: 'string',
1629
+ nullable: true
1630
+ }
1631
+ },
1632
+ additionalProperties: false
1633
+ }
1634
+ },
1635
+ additionalProperties: false
1636
+ },
1637
+ attributes: {
1638
+ type: 'array',
1639
+ items: {
1640
+ type: 'object',
1641
+ properties: {
1642
+ typeSimple: {
1643
+ type: 'string',
1644
+ nullable: true
1645
+ },
1646
+ config: {
1647
+ type: 'object',
1648
+ additionalProperties: {},
1649
+ nullable: true
1650
+ }
1651
+ },
1652
+ additionalProperties: false
1653
+ },
1654
+ nullable: true
1655
+ },
1656
+ configuration: {
1657
+ type: 'object',
1658
+ additionalProperties: {},
1659
+ nullable: true
1660
+ },
1661
+ defaultValue: {
1662
+ nullable: true
1663
+ }
1664
+ },
1665
+ additionalProperties: false
1666
+ },
1667
+ nullable: true
1668
+ },
1669
+ configuration: {
1670
+ type: 'object',
1671
+ additionalProperties: {},
1672
+ nullable: true
1673
+ }
1674
+ },
1675
+ additionalProperties: false
1676
+ } as const;
1677
+
1678
+ export const $Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionEnumDto = {
1679
+ type: 'object',
1680
+ properties: {
1681
+ fields: {
1682
+ type: 'array',
1683
+ items: {
1684
+ type: 'object',
1685
+ properties: {
1686
+ name: {
1687
+ type: 'string',
1688
+ nullable: true
1689
+ },
1690
+ value: {
1691
+ nullable: true
1692
+ }
1693
+ },
1694
+ additionalProperties: false
1695
+ },
1696
+ nullable: true
1697
+ },
1698
+ localizationResource: {
1699
+ type: 'string',
1700
+ nullable: true
1701
+ }
1702
+ },
1703
+ additionalProperties: false
1704
+ } as const;
1705
+
1706
+ export const $Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionEnumFieldDto = {
1707
+ type: 'object',
1708
+ properties: {
1709
+ name: {
1710
+ type: 'string',
1711
+ nullable: true
1712
+ },
1713
+ value: {
1714
+ nullable: true
1715
+ }
1716
+ },
1717
+ additionalProperties: false
1718
+ } as const;
1719
+
1720
+ export const $Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiCreateDto = {
1721
+ type: 'object',
1722
+ properties: {
1723
+ isAvailable: {
1724
+ type: 'boolean'
1725
+ }
1726
+ },
1727
+ additionalProperties: false
1728
+ } as const;
1729
+
1730
+ export const $Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiDto = {
1731
+ type: 'object',
1732
+ properties: {
1733
+ onGet: {
1734
+ type: 'object',
1735
+ properties: {
1736
+ isAvailable: {
1737
+ type: 'boolean'
1738
+ }
1739
+ },
1740
+ additionalProperties: false
1741
+ },
1742
+ onCreate: {
1743
+ type: 'object',
1744
+ properties: {
1745
+ isAvailable: {
1746
+ type: 'boolean'
1747
+ }
1748
+ },
1749
+ additionalProperties: false
1750
+ },
1751
+ onUpdate: {
1752
+ type: 'object',
1753
+ properties: {
1754
+ isAvailable: {
1755
+ type: 'boolean'
1756
+ }
1757
+ },
1758
+ additionalProperties: false
1759
+ }
1760
+ },
1761
+ additionalProperties: false
1762
+ } as const;
1763
+
1764
+ export const $Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiGetDto = {
1765
+ type: 'object',
1766
+ properties: {
1767
+ isAvailable: {
1768
+ type: 'boolean'
1769
+ }
1770
+ },
1771
+ additionalProperties: false
1772
+ } as const;
1773
+
1774
+ export const $Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiUpdateDto = {
1775
+ type: 'object',
1776
+ properties: {
1777
+ isAvailable: {
1778
+ type: 'boolean'
1779
+ }
1780
+ },
1781
+ additionalProperties: false
1782
+ } as const;
1783
+
1784
+ export const $Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyAttributeDto = {
1785
+ type: 'object',
1786
+ properties: {
1787
+ typeSimple: {
1788
+ type: 'string',
1789
+ nullable: true
1790
+ },
1791
+ config: {
1792
+ type: 'object',
1793
+ additionalProperties: {},
1794
+ nullable: true
1795
+ }
1796
+ },
1797
+ additionalProperties: false
1798
+ } as const;
1799
+
1800
+ export const $Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyDto = {
1801
+ type: 'object',
1802
+ properties: {
1803
+ type: {
1804
+ type: 'string',
1805
+ nullable: true
1806
+ },
1807
+ typeSimple: {
1808
+ type: 'string',
1809
+ nullable: true
1810
+ },
1811
+ displayName: {
1812
+ type: 'object',
1813
+ properties: {
1814
+ name: {
1815
+ type: 'string',
1816
+ nullable: true
1817
+ },
1818
+ resource: {
1819
+ type: 'string',
1820
+ nullable: true
1821
+ }
1822
+ },
1823
+ additionalProperties: false
1824
+ },
1825
+ api: {
1826
+ type: 'object',
1827
+ properties: {
1828
+ onGet: {
1829
+ type: 'object',
1830
+ properties: {
1831
+ isAvailable: {
1832
+ type: 'boolean'
1833
+ }
1834
+ },
1835
+ additionalProperties: false
1836
+ },
1837
+ onCreate: {
1838
+ type: 'object',
1839
+ properties: {
1840
+ isAvailable: {
1841
+ type: 'boolean'
1842
+ }
1843
+ },
1844
+ additionalProperties: false
1845
+ },
1846
+ onUpdate: {
1847
+ type: 'object',
1848
+ properties: {
1849
+ isAvailable: {
1850
+ type: 'boolean'
1851
+ }
1852
+ },
1853
+ additionalProperties: false
1854
+ }
1855
+ },
1856
+ additionalProperties: false
1857
+ },
1858
+ ui: {
1859
+ type: 'object',
1860
+ properties: {
1861
+ onTable: {
1862
+ type: 'object',
1863
+ properties: {
1864
+ isVisible: {
1865
+ type: 'boolean'
1866
+ }
1867
+ },
1868
+ additionalProperties: false
1869
+ },
1870
+ onCreateForm: {
1871
+ type: 'object',
1872
+ properties: {
1873
+ isVisible: {
1874
+ type: 'boolean'
1875
+ }
1876
+ },
1877
+ additionalProperties: false
1878
+ },
1879
+ onEditForm: {
1880
+ type: 'object',
1881
+ properties: {
1882
+ isVisible: {
1883
+ type: 'boolean'
1884
+ }
1885
+ },
1886
+ additionalProperties: false
1887
+ },
1888
+ lookup: {
1889
+ type: 'object',
1890
+ properties: {
1891
+ url: {
1892
+ type: 'string',
1893
+ nullable: true
1894
+ },
1895
+ resultListPropertyName: {
1896
+ type: 'string',
1897
+ nullable: true
1898
+ },
1899
+ displayPropertyName: {
1900
+ type: 'string',
1901
+ nullable: true
1902
+ },
1903
+ valuePropertyName: {
1904
+ type: 'string',
1905
+ nullable: true
1906
+ },
1907
+ filterParamName: {
1908
+ type: 'string',
1909
+ nullable: true
1910
+ }
1911
+ },
1912
+ additionalProperties: false
1913
+ }
1914
+ },
1915
+ additionalProperties: false
1916
+ },
1917
+ attributes: {
1918
+ type: 'array',
1919
+ items: {
1920
+ type: 'object',
1921
+ properties: {
1922
+ typeSimple: {
1923
+ type: 'string',
1924
+ nullable: true
1925
+ },
1926
+ config: {
1927
+ type: 'object',
1928
+ additionalProperties: {},
1929
+ nullable: true
1930
+ }
1931
+ },
1932
+ additionalProperties: false
1933
+ },
1934
+ nullable: true
1935
+ },
1936
+ configuration: {
1937
+ type: 'object',
1938
+ additionalProperties: {},
1939
+ nullable: true
1940
+ },
1941
+ defaultValue: {
1942
+ nullable: true
1943
+ }
1944
+ },
1945
+ additionalProperties: false
1946
+ } as const;
1947
+
1948
+ export const $Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiDto = {
1949
+ type: 'object',
1950
+ properties: {
1951
+ onTable: {
1952
+ type: 'object',
1953
+ properties: {
1954
+ isVisible: {
1955
+ type: 'boolean'
1956
+ }
1957
+ },
1958
+ additionalProperties: false
1959
+ },
1960
+ onCreateForm: {
1961
+ type: 'object',
1962
+ properties: {
1963
+ isVisible: {
1964
+ type: 'boolean'
1965
+ }
1966
+ },
1967
+ additionalProperties: false
1968
+ },
1969
+ onEditForm: {
1970
+ type: 'object',
1971
+ properties: {
1972
+ isVisible: {
1973
+ type: 'boolean'
1974
+ }
1975
+ },
1976
+ additionalProperties: false
1977
+ },
1978
+ lookup: {
1979
+ type: 'object',
1980
+ properties: {
1981
+ url: {
1982
+ type: 'string',
1983
+ nullable: true
1984
+ },
1985
+ resultListPropertyName: {
1986
+ type: 'string',
1987
+ nullable: true
1988
+ },
1989
+ displayPropertyName: {
1990
+ type: 'string',
1991
+ nullable: true
1992
+ },
1993
+ valuePropertyName: {
1994
+ type: 'string',
1995
+ nullable: true
1996
+ },
1997
+ filterParamName: {
1998
+ type: 'string',
1999
+ nullable: true
2000
+ }
2001
+ },
2002
+ additionalProperties: false
2003
+ }
2004
+ },
2005
+ additionalProperties: false
2006
+ } as const;
2007
+
2008
+ export const $Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiFormDto = {
2009
+ type: 'object',
2010
+ properties: {
2011
+ isVisible: {
2012
+ type: 'boolean'
2013
+ }
2014
+ },
2015
+ additionalProperties: false
2016
+ } as const;
2017
+
2018
+ export const $Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiLookupDto = {
2019
+ type: 'object',
2020
+ properties: {
2021
+ url: {
2022
+ type: 'string',
2023
+ nullable: true
2024
+ },
2025
+ resultListPropertyName: {
2026
+ type: 'string',
2027
+ nullable: true
2028
+ },
2029
+ displayPropertyName: {
2030
+ type: 'string',
2031
+ nullable: true
2032
+ },
2033
+ valuePropertyName: {
2034
+ type: 'string',
2035
+ nullable: true
2036
+ },
2037
+ filterParamName: {
2038
+ type: 'string',
2039
+ nullable: true
2040
+ }
2041
+ },
2042
+ additionalProperties: false
2043
+ } as const;
2044
+
2045
+ export const $Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiTableDto = {
2046
+ type: 'object',
2047
+ properties: {
2048
+ isVisible: {
2049
+ type: 'boolean'
2050
+ }
2051
+ },
2052
+ additionalProperties: false
2053
+ } as const;
2054
+
2055
+ export const $Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_LocalizableStringDto = {
2056
+ type: 'object',
2057
+ properties: {
2058
+ name: {
2059
+ type: 'string',
2060
+ nullable: true
2061
+ },
2062
+ resource: {
2063
+ type: 'string',
2064
+ nullable: true
2065
+ }
2066
+ },
2067
+ additionalProperties: false
2068
+ } as const;
2069
+
2070
+ export const $Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ModuleExtensionDto = {
2071
+ type: 'object',
2072
+ properties: {
2073
+ entities: {
2074
+ type: 'object',
2075
+ additionalProperties: {
2076
+ type: 'object',
2077
+ properties: {
2078
+ properties: {
2079
+ type: 'object',
2080
+ additionalProperties: {
2081
+ type: 'object',
2082
+ properties: {
2083
+ type: {
2084
+ type: 'string',
2085
+ nullable: true
2086
+ },
2087
+ typeSimple: {
2088
+ type: 'string',
2089
+ nullable: true
2090
+ },
2091
+ displayName: {
2092
+ type: 'object',
2093
+ properties: {
2094
+ name: {
2095
+ type: 'string',
2096
+ nullable: true
2097
+ },
2098
+ resource: {
2099
+ type: 'string',
2100
+ nullable: true
2101
+ }
2102
+ },
2103
+ additionalProperties: false
2104
+ },
2105
+ api: {
2106
+ type: 'object',
2107
+ properties: {
2108
+ onGet: {
2109
+ type: 'object',
2110
+ properties: {
2111
+ isAvailable: {
2112
+ type: 'boolean'
2113
+ }
2114
+ },
2115
+ additionalProperties: false
2116
+ },
2117
+ onCreate: {
2118
+ type: 'object',
2119
+ properties: {
2120
+ isAvailable: {
2121
+ type: 'boolean'
2122
+ }
2123
+ },
2124
+ additionalProperties: false
2125
+ },
2126
+ onUpdate: {
2127
+ type: 'object',
2128
+ properties: {
2129
+ isAvailable: {
2130
+ type: 'boolean'
2131
+ }
2132
+ },
2133
+ additionalProperties: false
2134
+ }
2135
+ },
2136
+ additionalProperties: false
2137
+ },
2138
+ ui: {
2139
+ type: 'object',
2140
+ properties: {
2141
+ onTable: {
2142
+ type: 'object',
2143
+ properties: {
2144
+ isVisible: {
2145
+ type: 'boolean'
2146
+ }
2147
+ },
2148
+ additionalProperties: false
2149
+ },
2150
+ onCreateForm: {
2151
+ type: 'object',
2152
+ properties: {
2153
+ isVisible: {
2154
+ type: 'boolean'
2155
+ }
2156
+ },
2157
+ additionalProperties: false
2158
+ },
2159
+ onEditForm: {
2160
+ type: 'object',
2161
+ properties: {
2162
+ isVisible: {
2163
+ type: 'boolean'
2164
+ }
2165
+ },
2166
+ additionalProperties: false
2167
+ },
2168
+ lookup: {
2169
+ type: 'object',
2170
+ properties: {
2171
+ url: {
2172
+ type: 'string',
2173
+ nullable: true
2174
+ },
2175
+ resultListPropertyName: {
2176
+ type: 'string',
2177
+ nullable: true
2178
+ },
2179
+ displayPropertyName: {
2180
+ type: 'string',
2181
+ nullable: true
2182
+ },
2183
+ valuePropertyName: {
2184
+ type: 'string',
2185
+ nullable: true
2186
+ },
2187
+ filterParamName: {
2188
+ type: 'string',
2189
+ nullable: true
2190
+ }
2191
+ },
2192
+ additionalProperties: false
2193
+ }
2194
+ },
2195
+ additionalProperties: false
2196
+ },
2197
+ attributes: {
2198
+ type: 'array',
2199
+ items: {
2200
+ type: 'object',
2201
+ properties: {
2202
+ typeSimple: {
2203
+ type: 'string',
2204
+ nullable: true
2205
+ },
2206
+ config: {
2207
+ type: 'object',
2208
+ additionalProperties: {},
2209
+ nullable: true
2210
+ }
2211
+ },
2212
+ additionalProperties: false
2213
+ },
2214
+ nullable: true
2215
+ },
2216
+ configuration: {
2217
+ type: 'object',
2218
+ additionalProperties: {},
2219
+ nullable: true
2220
+ },
2221
+ defaultValue: {
2222
+ nullable: true
2223
+ }
2224
+ },
2225
+ additionalProperties: false
2226
+ },
2227
+ nullable: true
2228
+ },
2229
+ configuration: {
2230
+ type: 'object',
2231
+ additionalProperties: {},
2232
+ nullable: true
2233
+ }
2234
+ },
2235
+ additionalProperties: false
2236
+ },
2237
+ nullable: true
2238
+ },
2239
+ configuration: {
2240
+ type: 'object',
2241
+ additionalProperties: {},
2242
+ nullable: true
2243
+ }
2244
+ },
2245
+ additionalProperties: false
2246
+ } as const;
2247
+
2248
+ export const $Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ObjectExtensionsDto = {
2249
+ type: 'object',
2250
+ properties: {
2251
+ modules: {
2252
+ type: 'object',
2253
+ additionalProperties: {
2254
+ type: 'object',
2255
+ properties: {
2256
+ entities: {
2257
+ type: 'object',
2258
+ additionalProperties: {
2259
+ type: 'object',
2260
+ properties: {
2261
+ properties: {
2262
+ type: 'object',
2263
+ additionalProperties: {
2264
+ type: 'object',
2265
+ properties: {
2266
+ type: {
2267
+ type: 'string',
2268
+ nullable: true
2269
+ },
2270
+ typeSimple: {
2271
+ type: 'string',
2272
+ nullable: true
2273
+ },
2274
+ displayName: {
2275
+ type: 'object',
2276
+ properties: {
2277
+ name: {
2278
+ type: 'string',
2279
+ nullable: true
2280
+ },
2281
+ resource: {
2282
+ type: 'string',
2283
+ nullable: true
2284
+ }
2285
+ },
2286
+ additionalProperties: false
2287
+ },
2288
+ api: {
2289
+ type: 'object',
2290
+ properties: {
2291
+ onGet: {
2292
+ type: 'object',
2293
+ properties: {
2294
+ isAvailable: {
2295
+ type: 'boolean'
2296
+ }
2297
+ },
2298
+ additionalProperties: false
2299
+ },
2300
+ onCreate: {
2301
+ type: 'object',
2302
+ properties: {
2303
+ isAvailable: {
2304
+ type: 'boolean'
2305
+ }
2306
+ },
2307
+ additionalProperties: false
2308
+ },
2309
+ onUpdate: {
2310
+ type: 'object',
2311
+ properties: {
2312
+ isAvailable: {
2313
+ type: 'boolean'
2314
+ }
2315
+ },
2316
+ additionalProperties: false
2317
+ }
2318
+ },
2319
+ additionalProperties: false
2320
+ },
2321
+ ui: {
2322
+ type: 'object',
2323
+ properties: {
2324
+ onTable: {
2325
+ type: 'object',
2326
+ properties: {
2327
+ isVisible: {
2328
+ type: 'boolean'
2329
+ }
2330
+ },
2331
+ additionalProperties: false
2332
+ },
2333
+ onCreateForm: {
2334
+ type: 'object',
2335
+ properties: {
2336
+ isVisible: {
2337
+ type: 'boolean'
2338
+ }
2339
+ },
2340
+ additionalProperties: false
2341
+ },
2342
+ onEditForm: {
2343
+ type: 'object',
2344
+ properties: {
2345
+ isVisible: {
2346
+ type: 'boolean'
2347
+ }
2348
+ },
2349
+ additionalProperties: false
2350
+ },
2351
+ lookup: {
2352
+ type: 'object',
2353
+ properties: {
2354
+ url: {
2355
+ type: 'string',
2356
+ nullable: true
2357
+ },
2358
+ resultListPropertyName: {
2359
+ type: 'string',
2360
+ nullable: true
2361
+ },
2362
+ displayPropertyName: {
2363
+ type: 'string',
2364
+ nullable: true
2365
+ },
2366
+ valuePropertyName: {
2367
+ type: 'string',
2368
+ nullable: true
2369
+ },
2370
+ filterParamName: {
2371
+ type: 'string',
2372
+ nullable: true
2373
+ }
2374
+ },
2375
+ additionalProperties: false
2376
+ }
2377
+ },
2378
+ additionalProperties: false
2379
+ },
2380
+ attributes: {
2381
+ type: 'array',
2382
+ items: {
2383
+ type: 'object',
2384
+ properties: {
2385
+ typeSimple: {
2386
+ type: 'string',
2387
+ nullable: true
2388
+ },
2389
+ config: {
2390
+ type: 'object',
2391
+ additionalProperties: {},
2392
+ nullable: true
2393
+ }
2394
+ },
2395
+ additionalProperties: false
2396
+ },
2397
+ nullable: true
2398
+ },
2399
+ configuration: {
2400
+ type: 'object',
2401
+ additionalProperties: {},
2402
+ nullable: true
2403
+ },
2404
+ defaultValue: {
2405
+ nullable: true
2406
+ }
2407
+ },
2408
+ additionalProperties: false
2409
+ },
2410
+ nullable: true
2411
+ },
2412
+ configuration: {
2413
+ type: 'object',
2414
+ additionalProperties: {},
2415
+ nullable: true
2416
+ }
2417
+ },
2418
+ additionalProperties: false
2419
+ },
2420
+ nullable: true
2421
+ },
2422
+ configuration: {
2423
+ type: 'object',
2424
+ additionalProperties: {},
2425
+ nullable: true
2426
+ }
2427
+ },
2428
+ additionalProperties: false
2429
+ },
2430
+ nullable: true
2431
+ },
2432
+ enums: {
2433
+ type: 'object',
2434
+ additionalProperties: {
2435
+ type: 'object',
2436
+ properties: {
2437
+ fields: {
2438
+ type: 'array',
2439
+ items: {
2440
+ type: 'object',
2441
+ properties: {
2442
+ name: {
2443
+ type: 'string',
2444
+ nullable: true
2445
+ },
2446
+ value: {
2447
+ nullable: true
2448
+ }
2449
+ },
2450
+ additionalProperties: false
2451
+ },
2452
+ nullable: true
2453
+ },
2454
+ localizationResource: {
2455
+ type: 'string',
2456
+ nullable: true
2457
+ }
2458
+ },
2459
+ additionalProperties: false
2460
+ },
2461
+ nullable: true
2462
+ }
2463
+ },
2464
+ additionalProperties: false
2465
+ } as const;
2466
+
2467
+ export const $Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_TimeZone = {
2468
+ type: 'object',
2469
+ properties: {
2470
+ iana: {
2471
+ type: 'object',
2472
+ properties: {
2473
+ timeZoneName: {
2474
+ type: 'string',
2475
+ nullable: true
2476
+ }
2477
+ },
2478
+ additionalProperties: false
2479
+ },
2480
+ windows: {
2481
+ type: 'object',
2482
+ properties: {
2483
+ timeZoneId: {
2484
+ type: 'string',
2485
+ nullable: true
2486
+ }
2487
+ },
2488
+ additionalProperties: false
2489
+ }
2490
+ },
2491
+ additionalProperties: false
2492
+ } as const;
2493
+
2494
+ export const $Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_TimingDto = {
2495
+ type: 'object',
2496
+ properties: {
2497
+ timeZone: {
2498
+ type: 'object',
2499
+ properties: {
2500
+ iana: {
2501
+ type: 'object',
2502
+ properties: {
2503
+ timeZoneName: {
2504
+ type: 'string',
2505
+ nullable: true
2506
+ }
2507
+ },
2508
+ additionalProperties: false
2509
+ },
2510
+ windows: {
2511
+ type: 'object',
2512
+ properties: {
2513
+ timeZoneId: {
2514
+ type: 'string',
2515
+ nullable: true
2516
+ }
2517
+ },
2518
+ additionalProperties: false
2519
+ }
2520
+ },
2521
+ additionalProperties: false
2522
+ }
2523
+ },
2524
+ additionalProperties: false
2525
+ } as const;
2526
+
2527
+ export const $Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_WindowsTimeZone = {
2528
+ type: 'object',
2529
+ properties: {
2530
+ timeZoneId: {
2531
+ type: 'string',
2532
+ nullable: true
2533
+ }
2534
+ },
2535
+ additionalProperties: false
2536
+ } as const;
2537
+
2538
+ export const $Volo_Abp_AspNetCore_Mvc_MultiTenancy_CurrentTenantDto = {
2539
+ type: 'object',
2540
+ properties: {
2541
+ id: {
2542
+ type: 'string',
2543
+ format: 'uuid',
2544
+ nullable: true
2545
+ },
2546
+ name: {
2547
+ type: 'string',
2548
+ nullable: true
2549
+ },
2550
+ isAvailable: {
2551
+ type: 'boolean'
2552
+ }
2553
+ },
2554
+ additionalProperties: false
2555
+ } as const;
2556
+
2557
+ export const $Volo_Abp_AspNetCore_Mvc_MultiTenancy_MultiTenancyInfoDto = {
2558
+ type: 'object',
2559
+ properties: {
2560
+ isEnabled: {
2561
+ type: 'boolean'
2562
+ }
2563
+ },
2564
+ additionalProperties: false
2565
+ } as const;
2566
+
2567
+ export const $Volo_Abp_Http_Modeling_ActionApiDescriptionModel = {
2568
+ type: 'object',
2569
+ properties: {
2570
+ uniqueName: {
2571
+ type: 'string',
2572
+ nullable: true
2573
+ },
2574
+ name: {
2575
+ type: 'string',
2576
+ nullable: true
2577
+ },
2578
+ httpMethod: {
2579
+ type: 'string',
2580
+ nullable: true
2581
+ },
2582
+ url: {
2583
+ type: 'string',
2584
+ nullable: true
2585
+ },
2586
+ supportedVersions: {
2587
+ type: 'array',
2588
+ items: {
2589
+ type: 'string'
2590
+ },
2591
+ nullable: true
2592
+ },
2593
+ parametersOnMethod: {
2594
+ type: 'array',
2595
+ items: {
2596
+ type: 'object',
2597
+ properties: {
2598
+ name: {
2599
+ type: 'string',
2600
+ nullable: true
2601
+ },
2602
+ typeAsString: {
2603
+ type: 'string',
2604
+ nullable: true
2605
+ },
2606
+ type: {
2607
+ type: 'string',
2608
+ nullable: true
2609
+ },
2610
+ typeSimple: {
2611
+ type: 'string',
2612
+ nullable: true
2613
+ },
2614
+ isOptional: {
2615
+ type: 'boolean'
2616
+ },
2617
+ defaultValue: {
2618
+ nullable: true
2619
+ }
2620
+ },
2621
+ additionalProperties: false
2622
+ },
2623
+ nullable: true
2624
+ },
2625
+ parameters: {
2626
+ type: 'array',
2627
+ items: {
2628
+ type: 'object',
2629
+ properties: {
2630
+ nameOnMethod: {
2631
+ type: 'string',
2632
+ nullable: true
2633
+ },
2634
+ name: {
2635
+ type: 'string',
2636
+ nullable: true
2637
+ },
2638
+ jsonName: {
2639
+ type: 'string',
2640
+ nullable: true
2641
+ },
2642
+ type: {
2643
+ type: 'string',
2644
+ nullable: true
2645
+ },
2646
+ typeSimple: {
2647
+ type: 'string',
2648
+ nullable: true
2649
+ },
2650
+ isOptional: {
2651
+ type: 'boolean'
2652
+ },
2653
+ defaultValue: {
2654
+ nullable: true
2655
+ },
2656
+ constraintTypes: {
2657
+ type: 'array',
2658
+ items: {
2659
+ type: 'string'
2660
+ },
2661
+ nullable: true
2662
+ },
2663
+ bindingSourceId: {
2664
+ type: 'string',
2665
+ nullable: true
2666
+ },
2667
+ descriptorName: {
2668
+ type: 'string',
2669
+ nullable: true
2670
+ }
2671
+ },
2672
+ additionalProperties: false
2673
+ },
2674
+ nullable: true
2675
+ },
2676
+ returnValue: {
2677
+ type: 'object',
2678
+ properties: {
2679
+ type: {
2680
+ type: 'string',
2681
+ nullable: true
2682
+ },
2683
+ typeSimple: {
2684
+ type: 'string',
2685
+ nullable: true
2686
+ }
2687
+ },
2688
+ additionalProperties: false
2689
+ },
2690
+ allowAnonymous: {
2691
+ type: 'boolean',
2692
+ nullable: true
2693
+ },
2694
+ implementFrom: {
2695
+ type: 'string',
2696
+ nullable: true
2697
+ }
2698
+ },
2699
+ additionalProperties: false
2700
+ } as const;
2701
+
2702
+ export const $Volo_Abp_Http_Modeling_ApplicationApiDescriptionModel = {
2703
+ type: 'object',
2704
+ properties: {
2705
+ modules: {
2706
+ type: 'object',
2707
+ additionalProperties: {
2708
+ type: 'object',
2709
+ properties: {
2710
+ rootPath: {
2711
+ type: 'string',
2712
+ nullable: true
2713
+ },
2714
+ remoteServiceName: {
2715
+ type: 'string',
2716
+ nullable: true
2717
+ },
2718
+ controllers: {
2719
+ type: 'object',
2720
+ additionalProperties: {
2721
+ type: 'object',
2722
+ properties: {
2723
+ controllerName: {
2724
+ type: 'string',
2725
+ nullable: true
2726
+ },
2727
+ controllerGroupName: {
2728
+ type: 'string',
2729
+ nullable: true
2730
+ },
2731
+ isRemoteService: {
2732
+ type: 'boolean'
2733
+ },
2734
+ isIntegrationService: {
2735
+ type: 'boolean'
2736
+ },
2737
+ apiVersion: {
2738
+ type: 'string',
2739
+ nullable: true
2740
+ },
2741
+ type: {
2742
+ type: 'string',
2743
+ nullable: true
2744
+ },
2745
+ interfaces: {
2746
+ type: 'array',
2747
+ items: {
2748
+ type: 'object',
2749
+ properties: {
2750
+ type: {
2751
+ type: 'string',
2752
+ nullable: true
2753
+ },
2754
+ name: {
2755
+ type: 'string',
2756
+ nullable: true
2757
+ },
2758
+ methods: {
2759
+ type: 'array',
2760
+ items: {
2761
+ type: 'object',
2762
+ properties: {
2763
+ name: {
2764
+ type: 'string',
2765
+ nullable: true
2766
+ },
2767
+ parametersOnMethod: {
2768
+ type: 'array',
2769
+ items: {
2770
+ type: 'object',
2771
+ properties: {
2772
+ name: {
2773
+ type: 'string',
2774
+ nullable: true
2775
+ },
2776
+ typeAsString: {
2777
+ type: 'string',
2778
+ nullable: true
2779
+ },
2780
+ type: {
2781
+ type: 'string',
2782
+ nullable: true
2783
+ },
2784
+ typeSimple: {
2785
+ type: 'string',
2786
+ nullable: true
2787
+ },
2788
+ isOptional: {
2789
+ type: 'boolean'
2790
+ },
2791
+ defaultValue: {
2792
+ nullable: true
2793
+ }
2794
+ },
2795
+ additionalProperties: false
2796
+ },
2797
+ nullable: true
2798
+ },
2799
+ returnValue: {
2800
+ type: 'object',
2801
+ properties: {
2802
+ type: {
2803
+ type: 'string',
2804
+ nullable: true
2805
+ },
2806
+ typeSimple: {
2807
+ type: 'string',
2808
+ nullable: true
2809
+ }
2810
+ },
2811
+ additionalProperties: false
2812
+ }
2813
+ },
2814
+ additionalProperties: false
2815
+ },
2816
+ nullable: true
2817
+ }
2818
+ },
2819
+ additionalProperties: false
2820
+ },
2821
+ nullable: true
2822
+ },
2823
+ actions: {
2824
+ type: 'object',
2825
+ additionalProperties: {
2826
+ type: 'object',
2827
+ properties: {
2828
+ uniqueName: {
2829
+ type: 'string',
2830
+ nullable: true
2831
+ },
2832
+ name: {
2833
+ type: 'string',
2834
+ nullable: true
2835
+ },
2836
+ httpMethod: {
2837
+ type: 'string',
2838
+ nullable: true
2839
+ },
2840
+ url: {
2841
+ type: 'string',
2842
+ nullable: true
2843
+ },
2844
+ supportedVersions: {
2845
+ type: 'array',
2846
+ items: {
2847
+ type: 'string'
2848
+ },
2849
+ nullable: true
2850
+ },
2851
+ parametersOnMethod: {
2852
+ type: 'array',
2853
+ items: {
2854
+ type: 'object',
2855
+ properties: {
2856
+ name: {
2857
+ type: 'string',
2858
+ nullable: true
2859
+ },
2860
+ typeAsString: {
2861
+ type: 'string',
2862
+ nullable: true
2863
+ },
2864
+ type: {
2865
+ type: 'string',
2866
+ nullable: true
2867
+ },
2868
+ typeSimple: {
2869
+ type: 'string',
2870
+ nullable: true
2871
+ },
2872
+ isOptional: {
2873
+ type: 'boolean'
2874
+ },
2875
+ defaultValue: {
2876
+ nullable: true
2877
+ }
2878
+ },
2879
+ additionalProperties: false
2880
+ },
2881
+ nullable: true
2882
+ },
2883
+ parameters: {
2884
+ type: 'array',
2885
+ items: {
2886
+ type: 'object',
2887
+ properties: {
2888
+ nameOnMethod: {
2889
+ type: 'string',
2890
+ nullable: true
2891
+ },
2892
+ name: {
2893
+ type: 'string',
2894
+ nullable: true
2895
+ },
2896
+ jsonName: {
2897
+ type: 'string',
2898
+ nullable: true
2899
+ },
2900
+ type: {
2901
+ type: 'string',
2902
+ nullable: true
2903
+ },
2904
+ typeSimple: {
2905
+ type: 'string',
2906
+ nullable: true
2907
+ },
2908
+ isOptional: {
2909
+ type: 'boolean'
2910
+ },
2911
+ defaultValue: {
2912
+ nullable: true
2913
+ },
2914
+ constraintTypes: {
2915
+ type: 'array',
2916
+ items: {
2917
+ type: 'string'
2918
+ },
2919
+ nullable: true
2920
+ },
2921
+ bindingSourceId: {
2922
+ type: 'string',
2923
+ nullable: true
2924
+ },
2925
+ descriptorName: {
2926
+ type: 'string',
2927
+ nullable: true
2928
+ }
2929
+ },
2930
+ additionalProperties: false
2931
+ },
2932
+ nullable: true
2933
+ },
2934
+ returnValue: {
2935
+ type: 'object',
2936
+ properties: {
2937
+ type: {
2938
+ type: 'string',
2939
+ nullable: true
2940
+ },
2941
+ typeSimple: {
2942
+ type: 'string',
2943
+ nullable: true
2944
+ }
2945
+ },
2946
+ additionalProperties: false
2947
+ },
2948
+ allowAnonymous: {
2949
+ type: 'boolean',
2950
+ nullable: true
2951
+ },
2952
+ implementFrom: {
2953
+ type: 'string',
2954
+ nullable: true
2955
+ }
2956
+ },
2957
+ additionalProperties: false
2958
+ },
2959
+ nullable: true
2960
+ }
2961
+ },
2962
+ additionalProperties: false
2963
+ },
2964
+ nullable: true
2965
+ }
2966
+ },
2967
+ additionalProperties: false
2968
+ },
2969
+ nullable: true
2970
+ },
2971
+ types: {
2972
+ type: 'object',
2973
+ additionalProperties: {
2974
+ type: 'object',
2975
+ properties: {
2976
+ baseType: {
2977
+ type: 'string',
2978
+ nullable: true
2979
+ },
2980
+ isEnum: {
2981
+ type: 'boolean'
2982
+ },
2983
+ enumNames: {
2984
+ type: 'array',
2985
+ items: {
2986
+ type: 'string'
2987
+ },
2988
+ nullable: true
2989
+ },
2990
+ enumValues: {
2991
+ type: 'array',
2992
+ items: {},
2993
+ nullable: true
2994
+ },
2995
+ genericArguments: {
2996
+ type: 'array',
2997
+ items: {
2998
+ type: 'string'
2999
+ },
3000
+ nullable: true
3001
+ },
3002
+ properties: {
3003
+ type: 'array',
3004
+ items: {
3005
+ type: 'object',
3006
+ properties: {
3007
+ name: {
3008
+ type: 'string',
3009
+ nullable: true
3010
+ },
3011
+ jsonName: {
3012
+ type: 'string',
3013
+ nullable: true
3014
+ },
3015
+ type: {
3016
+ type: 'string',
3017
+ nullable: true
3018
+ },
3019
+ typeSimple: {
3020
+ type: 'string',
3021
+ nullable: true
3022
+ },
3023
+ isRequired: {
3024
+ type: 'boolean'
3025
+ },
3026
+ minLength: {
3027
+ type: 'integer',
3028
+ format: 'int32',
3029
+ nullable: true
3030
+ },
3031
+ maxLength: {
3032
+ type: 'integer',
3033
+ format: 'int32',
3034
+ nullable: true
3035
+ },
3036
+ minimum: {
3037
+ type: 'string',
3038
+ nullable: true
3039
+ },
3040
+ maximum: {
3041
+ type: 'string',
3042
+ nullable: true
3043
+ },
3044
+ regex: {
3045
+ type: 'string',
3046
+ nullable: true
3047
+ }
3048
+ },
3049
+ additionalProperties: false
3050
+ },
3051
+ nullable: true
3052
+ }
3053
+ },
3054
+ additionalProperties: false
3055
+ },
3056
+ nullable: true
3057
+ }
3058
+ },
3059
+ additionalProperties: false
3060
+ } as const;
3061
+
3062
+ export const $Volo_Abp_Http_Modeling_ControllerApiDescriptionModel = {
3063
+ type: 'object',
3064
+ properties: {
3065
+ controllerName: {
3066
+ type: 'string',
3067
+ nullable: true
3068
+ },
3069
+ controllerGroupName: {
3070
+ type: 'string',
3071
+ nullable: true
3072
+ },
3073
+ isRemoteService: {
3074
+ type: 'boolean'
3075
+ },
3076
+ isIntegrationService: {
3077
+ type: 'boolean'
3078
+ },
3079
+ apiVersion: {
3080
+ type: 'string',
3081
+ nullable: true
3082
+ },
3083
+ type: {
3084
+ type: 'string',
3085
+ nullable: true
3086
+ },
3087
+ interfaces: {
3088
+ type: 'array',
3089
+ items: {
3090
+ type: 'object',
3091
+ properties: {
3092
+ type: {
3093
+ type: 'string',
3094
+ nullable: true
3095
+ },
3096
+ name: {
3097
+ type: 'string',
3098
+ nullable: true
3099
+ },
3100
+ methods: {
3101
+ type: 'array',
3102
+ items: {
3103
+ type: 'object',
3104
+ properties: {
3105
+ name: {
3106
+ type: 'string',
3107
+ nullable: true
3108
+ },
3109
+ parametersOnMethod: {
3110
+ type: 'array',
3111
+ items: {
3112
+ type: 'object',
3113
+ properties: {
3114
+ name: {
3115
+ type: 'string',
3116
+ nullable: true
3117
+ },
3118
+ typeAsString: {
3119
+ type: 'string',
3120
+ nullable: true
3121
+ },
3122
+ type: {
3123
+ type: 'string',
3124
+ nullable: true
3125
+ },
3126
+ typeSimple: {
3127
+ type: 'string',
3128
+ nullable: true
3129
+ },
3130
+ isOptional: {
3131
+ type: 'boolean'
3132
+ },
3133
+ defaultValue: {
3134
+ nullable: true
3135
+ }
3136
+ },
3137
+ additionalProperties: false
3138
+ },
3139
+ nullable: true
3140
+ },
3141
+ returnValue: {
3142
+ type: 'object',
3143
+ properties: {
3144
+ type: {
3145
+ type: 'string',
3146
+ nullable: true
3147
+ },
3148
+ typeSimple: {
3149
+ type: 'string',
3150
+ nullable: true
3151
+ }
3152
+ },
3153
+ additionalProperties: false
3154
+ }
3155
+ },
3156
+ additionalProperties: false
3157
+ },
3158
+ nullable: true
3159
+ }
3160
+ },
3161
+ additionalProperties: false
3162
+ },
3163
+ nullable: true
3164
+ },
3165
+ actions: {
3166
+ type: 'object',
3167
+ additionalProperties: {
3168
+ type: 'object',
3169
+ properties: {
3170
+ uniqueName: {
3171
+ type: 'string',
3172
+ nullable: true
3173
+ },
3174
+ name: {
3175
+ type: 'string',
3176
+ nullable: true
3177
+ },
3178
+ httpMethod: {
3179
+ type: 'string',
3180
+ nullable: true
3181
+ },
3182
+ url: {
3183
+ type: 'string',
3184
+ nullable: true
3185
+ },
3186
+ supportedVersions: {
3187
+ type: 'array',
3188
+ items: {
3189
+ type: 'string'
3190
+ },
3191
+ nullable: true
3192
+ },
3193
+ parametersOnMethod: {
3194
+ type: 'array',
3195
+ items: {
3196
+ type: 'object',
3197
+ properties: {
3198
+ name: {
3199
+ type: 'string',
3200
+ nullable: true
3201
+ },
3202
+ typeAsString: {
3203
+ type: 'string',
3204
+ nullable: true
3205
+ },
3206
+ type: {
3207
+ type: 'string',
3208
+ nullable: true
3209
+ },
3210
+ typeSimple: {
3211
+ type: 'string',
3212
+ nullable: true
3213
+ },
3214
+ isOptional: {
3215
+ type: 'boolean'
3216
+ },
3217
+ defaultValue: {
3218
+ nullable: true
3219
+ }
3220
+ },
3221
+ additionalProperties: false
3222
+ },
3223
+ nullable: true
3224
+ },
3225
+ parameters: {
3226
+ type: 'array',
3227
+ items: {
3228
+ type: 'object',
3229
+ properties: {
3230
+ nameOnMethod: {
3231
+ type: 'string',
3232
+ nullable: true
3233
+ },
3234
+ name: {
3235
+ type: 'string',
3236
+ nullable: true
3237
+ },
3238
+ jsonName: {
3239
+ type: 'string',
3240
+ nullable: true
3241
+ },
3242
+ type: {
3243
+ type: 'string',
3244
+ nullable: true
3245
+ },
3246
+ typeSimple: {
3247
+ type: 'string',
3248
+ nullable: true
3249
+ },
3250
+ isOptional: {
3251
+ type: 'boolean'
3252
+ },
3253
+ defaultValue: {
3254
+ nullable: true
3255
+ },
3256
+ constraintTypes: {
3257
+ type: 'array',
3258
+ items: {
3259
+ type: 'string'
3260
+ },
3261
+ nullable: true
3262
+ },
3263
+ bindingSourceId: {
3264
+ type: 'string',
3265
+ nullable: true
3266
+ },
3267
+ descriptorName: {
3268
+ type: 'string',
3269
+ nullable: true
3270
+ }
3271
+ },
3272
+ additionalProperties: false
3273
+ },
3274
+ nullable: true
3275
+ },
3276
+ returnValue: {
3277
+ type: 'object',
3278
+ properties: {
3279
+ type: {
3280
+ type: 'string',
3281
+ nullable: true
3282
+ },
3283
+ typeSimple: {
3284
+ type: 'string',
3285
+ nullable: true
3286
+ }
3287
+ },
3288
+ additionalProperties: false
3289
+ },
3290
+ allowAnonymous: {
3291
+ type: 'boolean',
3292
+ nullable: true
3293
+ },
3294
+ implementFrom: {
3295
+ type: 'string',
3296
+ nullable: true
3297
+ }
3298
+ },
3299
+ additionalProperties: false
3300
+ },
3301
+ nullable: true
3302
+ }
3303
+ },
3304
+ additionalProperties: false
3305
+ } as const;
3306
+
3307
+ export const $Volo_Abp_Http_Modeling_ControllerInterfaceApiDescriptionModel = {
3308
+ type: 'object',
3309
+ properties: {
3310
+ type: {
3311
+ type: 'string',
3312
+ nullable: true
3313
+ },
3314
+ name: {
3315
+ type: 'string',
3316
+ nullable: true
3317
+ },
3318
+ methods: {
3319
+ type: 'array',
3320
+ items: {
3321
+ type: 'object',
3322
+ properties: {
3323
+ name: {
3324
+ type: 'string',
3325
+ nullable: true
3326
+ },
3327
+ parametersOnMethod: {
3328
+ type: 'array',
3329
+ items: {
3330
+ type: 'object',
3331
+ properties: {
3332
+ name: {
3333
+ type: 'string',
3334
+ nullable: true
3335
+ },
3336
+ typeAsString: {
3337
+ type: 'string',
3338
+ nullable: true
3339
+ },
3340
+ type: {
3341
+ type: 'string',
3342
+ nullable: true
3343
+ },
3344
+ typeSimple: {
3345
+ type: 'string',
3346
+ nullable: true
3347
+ },
3348
+ isOptional: {
3349
+ type: 'boolean'
3350
+ },
3351
+ defaultValue: {
3352
+ nullable: true
3353
+ }
3354
+ },
3355
+ additionalProperties: false
3356
+ },
3357
+ nullable: true
3358
+ },
3359
+ returnValue: {
3360
+ type: 'object',
3361
+ properties: {
3362
+ type: {
3363
+ type: 'string',
3364
+ nullable: true
3365
+ },
3366
+ typeSimple: {
3367
+ type: 'string',
3368
+ nullable: true
3369
+ }
3370
+ },
3371
+ additionalProperties: false
3372
+ }
3373
+ },
3374
+ additionalProperties: false
3375
+ },
3376
+ nullable: true
3377
+ }
3378
+ },
3379
+ additionalProperties: false
3380
+ } as const;
3381
+
3382
+ export const $Volo_Abp_Http_Modeling_InterfaceMethodApiDescriptionModel = {
3383
+ type: 'object',
3384
+ properties: {
3385
+ name: {
3386
+ type: 'string',
3387
+ nullable: true
3388
+ },
3389
+ parametersOnMethod: {
3390
+ type: 'array',
3391
+ items: {
3392
+ type: 'object',
3393
+ properties: {
3394
+ name: {
3395
+ type: 'string',
3396
+ nullable: true
3397
+ },
3398
+ typeAsString: {
3399
+ type: 'string',
3400
+ nullable: true
3401
+ },
3402
+ type: {
3403
+ type: 'string',
3404
+ nullable: true
3405
+ },
3406
+ typeSimple: {
3407
+ type: 'string',
3408
+ nullable: true
3409
+ },
3410
+ isOptional: {
3411
+ type: 'boolean'
3412
+ },
3413
+ defaultValue: {
3414
+ nullable: true
3415
+ }
3416
+ },
3417
+ additionalProperties: false
3418
+ },
3419
+ nullable: true
3420
+ },
3421
+ returnValue: {
3422
+ type: 'object',
3423
+ properties: {
3424
+ type: {
3425
+ type: 'string',
3426
+ nullable: true
3427
+ },
3428
+ typeSimple: {
3429
+ type: 'string',
3430
+ nullable: true
3431
+ }
3432
+ },
3433
+ additionalProperties: false
3434
+ }
3435
+ },
3436
+ additionalProperties: false
3437
+ } as const;
3438
+
3439
+ export const $Volo_Abp_Http_Modeling_MethodParameterApiDescriptionModel = {
3440
+ type: 'object',
3441
+ properties: {
3442
+ name: {
3443
+ type: 'string',
3444
+ nullable: true
3445
+ },
3446
+ typeAsString: {
3447
+ type: 'string',
3448
+ nullable: true
3449
+ },
3450
+ type: {
3451
+ type: 'string',
3452
+ nullable: true
3453
+ },
3454
+ typeSimple: {
3455
+ type: 'string',
3456
+ nullable: true
3457
+ },
3458
+ isOptional: {
3459
+ type: 'boolean'
3460
+ },
3461
+ defaultValue: {
3462
+ nullable: true
3463
+ }
3464
+ },
3465
+ additionalProperties: false
3466
+ } as const;
3467
+
3468
+ export const $Volo_Abp_Http_Modeling_ModuleApiDescriptionModel = {
3469
+ type: 'object',
3470
+ properties: {
3471
+ rootPath: {
3472
+ type: 'string',
3473
+ nullable: true
3474
+ },
3475
+ remoteServiceName: {
3476
+ type: 'string',
3477
+ nullable: true
3478
+ },
3479
+ controllers: {
3480
+ type: 'object',
3481
+ additionalProperties: {
3482
+ type: 'object',
3483
+ properties: {
3484
+ controllerName: {
3485
+ type: 'string',
3486
+ nullable: true
3487
+ },
3488
+ controllerGroupName: {
3489
+ type: 'string',
3490
+ nullable: true
3491
+ },
3492
+ isRemoteService: {
3493
+ type: 'boolean'
3494
+ },
3495
+ isIntegrationService: {
3496
+ type: 'boolean'
3497
+ },
3498
+ apiVersion: {
3499
+ type: 'string',
3500
+ nullable: true
3501
+ },
3502
+ type: {
3503
+ type: 'string',
3504
+ nullable: true
3505
+ },
3506
+ interfaces: {
3507
+ type: 'array',
3508
+ items: {
3509
+ type: 'object',
3510
+ properties: {
3511
+ type: {
3512
+ type: 'string',
3513
+ nullable: true
3514
+ },
3515
+ name: {
3516
+ type: 'string',
3517
+ nullable: true
3518
+ },
3519
+ methods: {
3520
+ type: 'array',
3521
+ items: {
3522
+ type: 'object',
3523
+ properties: {
3524
+ name: {
3525
+ type: 'string',
3526
+ nullable: true
3527
+ },
3528
+ parametersOnMethod: {
3529
+ type: 'array',
3530
+ items: {
3531
+ type: 'object',
3532
+ properties: {
3533
+ name: {
3534
+ type: 'string',
3535
+ nullable: true
3536
+ },
3537
+ typeAsString: {
3538
+ type: 'string',
3539
+ nullable: true
3540
+ },
3541
+ type: {
3542
+ type: 'string',
3543
+ nullable: true
3544
+ },
3545
+ typeSimple: {
3546
+ type: 'string',
3547
+ nullable: true
3548
+ },
3549
+ isOptional: {
3550
+ type: 'boolean'
3551
+ },
3552
+ defaultValue: {
3553
+ nullable: true
3554
+ }
3555
+ },
3556
+ additionalProperties: false
3557
+ },
3558
+ nullable: true
3559
+ },
3560
+ returnValue: {
3561
+ type: 'object',
3562
+ properties: {
3563
+ type: {
3564
+ type: 'string',
3565
+ nullable: true
3566
+ },
3567
+ typeSimple: {
3568
+ type: 'string',
3569
+ nullable: true
3570
+ }
3571
+ },
3572
+ additionalProperties: false
3573
+ }
3574
+ },
3575
+ additionalProperties: false
3576
+ },
3577
+ nullable: true
3578
+ }
3579
+ },
3580
+ additionalProperties: false
3581
+ },
3582
+ nullable: true
3583
+ },
3584
+ actions: {
3585
+ type: 'object',
3586
+ additionalProperties: {
3587
+ type: 'object',
3588
+ properties: {
3589
+ uniqueName: {
3590
+ type: 'string',
3591
+ nullable: true
3592
+ },
3593
+ name: {
3594
+ type: 'string',
3595
+ nullable: true
3596
+ },
3597
+ httpMethod: {
3598
+ type: 'string',
3599
+ nullable: true
3600
+ },
3601
+ url: {
3602
+ type: 'string',
3603
+ nullable: true
3604
+ },
3605
+ supportedVersions: {
3606
+ type: 'array',
3607
+ items: {
3608
+ type: 'string'
3609
+ },
3610
+ nullable: true
3611
+ },
3612
+ parametersOnMethod: {
3613
+ type: 'array',
3614
+ items: {
3615
+ type: 'object',
3616
+ properties: {
3617
+ name: {
3618
+ type: 'string',
3619
+ nullable: true
3620
+ },
3621
+ typeAsString: {
3622
+ type: 'string',
3623
+ nullable: true
3624
+ },
3625
+ type: {
3626
+ type: 'string',
3627
+ nullable: true
3628
+ },
3629
+ typeSimple: {
3630
+ type: 'string',
3631
+ nullable: true
3632
+ },
3633
+ isOptional: {
3634
+ type: 'boolean'
3635
+ },
3636
+ defaultValue: {
3637
+ nullable: true
3638
+ }
3639
+ },
3640
+ additionalProperties: false
3641
+ },
3642
+ nullable: true
3643
+ },
3644
+ parameters: {
3645
+ type: 'array',
3646
+ items: {
3647
+ type: 'object',
3648
+ properties: {
3649
+ nameOnMethod: {
3650
+ type: 'string',
3651
+ nullable: true
3652
+ },
3653
+ name: {
3654
+ type: 'string',
3655
+ nullable: true
3656
+ },
3657
+ jsonName: {
3658
+ type: 'string',
3659
+ nullable: true
3660
+ },
3661
+ type: {
3662
+ type: 'string',
3663
+ nullable: true
3664
+ },
3665
+ typeSimple: {
3666
+ type: 'string',
3667
+ nullable: true
3668
+ },
3669
+ isOptional: {
3670
+ type: 'boolean'
3671
+ },
3672
+ defaultValue: {
3673
+ nullable: true
3674
+ },
3675
+ constraintTypes: {
3676
+ type: 'array',
3677
+ items: {
3678
+ type: 'string'
3679
+ },
3680
+ nullable: true
3681
+ },
3682
+ bindingSourceId: {
3683
+ type: 'string',
3684
+ nullable: true
3685
+ },
3686
+ descriptorName: {
3687
+ type: 'string',
3688
+ nullable: true
3689
+ }
3690
+ },
3691
+ additionalProperties: false
3692
+ },
3693
+ nullable: true
3694
+ },
3695
+ returnValue: {
3696
+ type: 'object',
3697
+ properties: {
3698
+ type: {
3699
+ type: 'string',
3700
+ nullable: true
3701
+ },
3702
+ typeSimple: {
3703
+ type: 'string',
3704
+ nullable: true
3705
+ }
3706
+ },
3707
+ additionalProperties: false
3708
+ },
3709
+ allowAnonymous: {
3710
+ type: 'boolean',
3711
+ nullable: true
3712
+ },
3713
+ implementFrom: {
3714
+ type: 'string',
3715
+ nullable: true
3716
+ }
3717
+ },
3718
+ additionalProperties: false
3719
+ },
3720
+ nullable: true
3721
+ }
3722
+ },
3723
+ additionalProperties: false
3724
+ },
3725
+ nullable: true
3726
+ }
3727
+ },
3728
+ additionalProperties: false
3729
+ } as const;
3730
+
3731
+ export const $Volo_Abp_Http_Modeling_ParameterApiDescriptionModel = {
3732
+ type: 'object',
3733
+ properties: {
3734
+ nameOnMethod: {
3735
+ type: 'string',
3736
+ nullable: true
3737
+ },
3738
+ name: {
3739
+ type: 'string',
3740
+ nullable: true
3741
+ },
3742
+ jsonName: {
3743
+ type: 'string',
3744
+ nullable: true
3745
+ },
3746
+ type: {
3747
+ type: 'string',
3748
+ nullable: true
3749
+ },
3750
+ typeSimple: {
3751
+ type: 'string',
3752
+ nullable: true
3753
+ },
3754
+ isOptional: {
3755
+ type: 'boolean'
3756
+ },
3757
+ defaultValue: {
3758
+ nullable: true
3759
+ },
3760
+ constraintTypes: {
3761
+ type: 'array',
3762
+ items: {
3763
+ type: 'string'
3764
+ },
3765
+ nullable: true
3766
+ },
3767
+ bindingSourceId: {
3768
+ type: 'string',
3769
+ nullable: true
3770
+ },
3771
+ descriptorName: {
3772
+ type: 'string',
3773
+ nullable: true
3774
+ }
3775
+ },
3776
+ additionalProperties: false
3777
+ } as const;
3778
+
3779
+ export const $Volo_Abp_Http_Modeling_PropertyApiDescriptionModel = {
3780
+ type: 'object',
3781
+ properties: {
3782
+ name: {
3783
+ type: 'string',
3784
+ nullable: true
3785
+ },
3786
+ jsonName: {
3787
+ type: 'string',
3788
+ nullable: true
3789
+ },
3790
+ type: {
3791
+ type: 'string',
3792
+ nullable: true
3793
+ },
3794
+ typeSimple: {
3795
+ type: 'string',
3796
+ nullable: true
3797
+ },
3798
+ isRequired: {
3799
+ type: 'boolean'
3800
+ },
3801
+ minLength: {
3802
+ type: 'integer',
3803
+ format: 'int32',
3804
+ nullable: true
3805
+ },
3806
+ maxLength: {
3807
+ type: 'integer',
3808
+ format: 'int32',
3809
+ nullable: true
3810
+ },
3811
+ minimum: {
3812
+ type: 'string',
3813
+ nullable: true
3814
+ },
3815
+ maximum: {
3816
+ type: 'string',
3817
+ nullable: true
3818
+ },
3819
+ regex: {
3820
+ type: 'string',
3821
+ nullable: true
3822
+ }
3823
+ },
3824
+ additionalProperties: false
3825
+ } as const;
3826
+
3827
+ export const $Volo_Abp_Http_Modeling_ReturnValueApiDescriptionModel = {
3828
+ type: 'object',
3829
+ properties: {
3830
+ type: {
3831
+ type: 'string',
3832
+ nullable: true
3833
+ },
3834
+ typeSimple: {
3835
+ type: 'string',
3836
+ nullable: true
3837
+ }
3838
+ },
3839
+ additionalProperties: false
3840
+ } as const;
3841
+
3842
+ export const $Volo_Abp_Http_Modeling_TypeApiDescriptionModel = {
3843
+ type: 'object',
3844
+ properties: {
3845
+ baseType: {
3846
+ type: 'string',
3847
+ nullable: true
3848
+ },
3849
+ isEnum: {
3850
+ type: 'boolean'
3851
+ },
3852
+ enumNames: {
3853
+ type: 'array',
3854
+ items: {
3855
+ type: 'string'
3856
+ },
3857
+ nullable: true
3858
+ },
3859
+ enumValues: {
3860
+ type: 'array',
3861
+ items: {},
3862
+ nullable: true
3863
+ },
3864
+ genericArguments: {
3865
+ type: 'array',
3866
+ items: {
3867
+ type: 'string'
3868
+ },
3869
+ nullable: true
3870
+ },
3871
+ properties: {
3872
+ type: 'array',
3873
+ items: {
3874
+ type: 'object',
3875
+ properties: {
3876
+ name: {
3877
+ type: 'string',
3878
+ nullable: true
3879
+ },
3880
+ jsonName: {
3881
+ type: 'string',
3882
+ nullable: true
3883
+ },
3884
+ type: {
3885
+ type: 'string',
3886
+ nullable: true
3887
+ },
3888
+ typeSimple: {
3889
+ type: 'string',
3890
+ nullable: true
3891
+ },
3892
+ isRequired: {
3893
+ type: 'boolean'
3894
+ },
3895
+ minLength: {
3896
+ type: 'integer',
3897
+ format: 'int32',
3898
+ nullable: true
3899
+ },
3900
+ maxLength: {
3901
+ type: 'integer',
3902
+ format: 'int32',
3903
+ nullable: true
3904
+ },
3905
+ minimum: {
3906
+ type: 'string',
3907
+ nullable: true
3908
+ },
3909
+ maximum: {
3910
+ type: 'string',
3911
+ nullable: true
3912
+ },
3913
+ regex: {
3914
+ type: 'string',
3915
+ nullable: true
3916
+ }
3917
+ },
3918
+ additionalProperties: false
3919
+ },
3920
+ nullable: true
3921
+ }
3922
+ },
3923
+ additionalProperties: false
3924
+ } as const;
3925
+
3926
+ export const $Volo_Abp_Http_RemoteServiceErrorInfo = {
3927
+ type: 'object',
3928
+ properties: {
3929
+ code: {
3930
+ type: 'string',
3931
+ nullable: true
3932
+ },
3933
+ message: {
3934
+ type: 'string',
3935
+ nullable: true
3936
+ },
3937
+ details: {
3938
+ type: 'string',
3939
+ nullable: true
3940
+ },
3941
+ data: {
3942
+ type: 'object',
3943
+ additionalProperties: {},
3944
+ nullable: true
3945
+ },
3946
+ validationErrors: {
3947
+ type: 'array',
3948
+ items: {
3949
+ type: 'object',
3950
+ properties: {
3951
+ message: {
3952
+ type: 'string',
3953
+ nullable: true
3954
+ },
3955
+ members: {
3956
+ type: 'array',
3957
+ items: {
3958
+ type: 'string'
3959
+ },
3960
+ nullable: true
3961
+ }
3962
+ },
3963
+ additionalProperties: false
3964
+ },
3965
+ nullable: true
3966
+ }
3967
+ },
3968
+ additionalProperties: false
3969
+ } as const;
3970
+
3971
+ export const $Volo_Abp_Http_RemoteServiceErrorResponse = {
3972
+ type: 'object',
3973
+ properties: {
3974
+ error: {
3975
+ type: 'object',
3976
+ properties: {
3977
+ code: {
3978
+ type: 'string',
3979
+ nullable: true
3980
+ },
3981
+ message: {
3982
+ type: 'string',
3983
+ nullable: true
3984
+ },
3985
+ details: {
3986
+ type: 'string',
3987
+ nullable: true
3988
+ },
3989
+ data: {
3990
+ type: 'object',
3991
+ additionalProperties: {},
3992
+ nullable: true
3993
+ },
3994
+ validationErrors: {
3995
+ type: 'array',
3996
+ items: {
3997
+ type: 'object',
3998
+ properties: {
3999
+ message: {
4000
+ type: 'string',
4001
+ nullable: true
4002
+ },
4003
+ members: {
4004
+ type: 'array',
4005
+ items: {
4006
+ type: 'string'
4007
+ },
4008
+ nullable: true
4009
+ }
4010
+ },
4011
+ additionalProperties: false
4012
+ },
4013
+ nullable: true
4014
+ }
4015
+ },
4016
+ additionalProperties: false
4017
+ }
4018
+ },
4019
+ additionalProperties: false
4020
+ } as const;
4021
+
4022
+ export const $Volo_Abp_Http_RemoteServiceValidationErrorInfo = {
4023
+ type: 'object',
4024
+ properties: {
4025
+ message: {
4026
+ type: 'string',
4027
+ nullable: true
4028
+ },
4029
+ members: {
4030
+ type: 'array',
4031
+ items: {
4032
+ type: 'string'
4033
+ },
4034
+ nullable: true
4035
+ }
4036
+ },
4037
+ additionalProperties: false
4038
+ } as const;
4039
+
4040
+ export const $Volo_Abp_Localization_LanguageInfo = {
4041
+ type: 'object',
4042
+ properties: {
4043
+ cultureName: {
4044
+ type: 'string',
4045
+ nullable: true
4046
+ },
4047
+ uiCultureName: {
4048
+ type: 'string',
4049
+ nullable: true
4050
+ },
4051
+ displayName: {
4052
+ type: 'string',
4053
+ nullable: true
4054
+ },
4055
+ twoLetterISOLanguageName: {
4056
+ type: 'string',
4057
+ nullable: true,
4058
+ readOnly: true
4059
+ }
4060
+ },
4061
+ additionalProperties: false
4062
+ } as const;
4063
+
4064
+ export const $Volo_Abp_NameValue = {
4065
+ type: 'object',
4066
+ properties: {
4067
+ name: {
4068
+ type: 'string',
4069
+ nullable: true
4070
+ },
4071
+ value: {
4072
+ type: 'string',
4073
+ nullable: true
4074
+ }
4075
+ },
4076
+ additionalProperties: false
4077
+ } as const;