@ayasofyazilim/saas 0.0.13 → 0.0.14

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (41) hide show
  1. package/AccountService/schemas.gen.ts +11 -4
  2. package/AccountService/types.gen.ts +8 -0
  3. package/AdministrationService/schemas.gen.ts +11 -7
  4. package/AdministrationService/types.gen.ts +5 -0
  5. package/BackerService/BackerServiceClient.ts +44 -0
  6. package/BackerService/core/ApiError.ts +21 -0
  7. package/BackerService/core/ApiRequestOptions.ts +13 -0
  8. package/BackerService/core/ApiResult.ts +7 -0
  9. package/BackerService/core/BaseHttpRequest.ts +10 -0
  10. package/BackerService/core/CancelablePromise.ts +126 -0
  11. package/BackerService/core/FetchHttpRequest.ts +22 -0
  12. package/BackerService/core/OpenAPI.ts +56 -0
  13. package/BackerService/core/request.ts +341 -0
  14. package/BackerService/index.ts +9 -0
  15. package/BackerService/schemas.gen.ts +8991 -0
  16. package/BackerService/services.gen.ts +270 -0
  17. package/BackerService/types.gen.ts +6611 -0
  18. package/IdentityService/schemas.gen.ts +28 -10
  19. package/IdentityService/types.gen.ts +30 -0
  20. package/ProjectService/ProjectServiceClient.ts +3 -9
  21. package/ProjectService/schemas.gen.ts +26 -723
  22. package/ProjectService/services.gen.ts +8 -348
  23. package/ProjectService/types.gen.ts +36 -2252
  24. package/ProjectService.json +2937 -2937
  25. package/SaasService/schemas.gen.ts +5 -5
  26. package/SettingService/SettingServiceClient.ts +53 -53
  27. package/SettingService/core/ApiError.ts +20 -20
  28. package/SettingService/core/ApiRequestOptions.ts +12 -12
  29. package/SettingService/core/ApiResult.ts +6 -6
  30. package/SettingService/core/BaseHttpRequest.ts +9 -9
  31. package/SettingService/core/CancelablePromise.ts +125 -125
  32. package/SettingService/core/FetchHttpRequest.ts +21 -21
  33. package/SettingService/core/OpenAPI.ts +55 -55
  34. package/SettingService/core/request.ts +340 -340
  35. package/SettingService/index.ts +8 -8
  36. package/SettingService/schemas.gen.ts +1521 -1524
  37. package/SettingService/services.gen.ts +316 -316
  38. package/SettingService/types.gen.ts +980 -981
  39. package/generator.mjs +26 -2
  40. package/package.json +3 -2
  41. package/swagger.json +4794 -4794
@@ -1,1525 +1,1522 @@
1
- // This file is auto-generated by @hey-api/openapi-ts
2
-
3
- export const $UniRefund_SettingService_Bonds_BondDto = {
4
- type: 'object',
5
- properties: {
6
- key: {
7
- type: 'string',
8
- nullable: true
9
- },
10
- pattern: {
11
- type: 'string',
12
- nullable: true
13
- },
14
- type: {
15
- type: 'string',
16
- nullable: true
17
- }
18
- },
19
- additionalProperties: false
20
- } as const;
21
-
22
- export const $UniRefund_SettingService_CountrySettings_CountrySettingDto = {
23
- type: 'object',
24
- properties: {
25
- isEnabled: {
26
- type: 'boolean'
27
- },
28
- groups: {
29
- type: 'array',
30
- items: {
31
- '$ref': '#/components/schemas/UniRefund.SettingService.Groups.GroupDto'
32
- },
33
- nullable: true
34
- }
35
- },
36
- additionalProperties: false
37
- } as const;
38
-
39
- export const $UniRefund_SettingService_Groups_GroupDto = {
40
- type: 'object',
41
- properties: {
42
- isEnabled: {
43
- type: 'boolean'
44
- },
45
- key: {
46
- type: 'string',
47
- nullable: true
48
- },
49
- displayName: {
50
- type: 'string',
51
- nullable: true
52
- },
53
- description: {
54
- type: 'string',
55
- nullable: true
56
- },
57
- items: {
58
- type: 'array',
59
- items: {
60
- '$ref': '#/components/schemas/UniRefund.SettingService.Items.GroupItemDto'
61
- },
62
- nullable: true
63
- }
64
- },
65
- additionalProperties: false
66
- } as const;
67
-
68
- export const $UniRefund_SettingService_Items_GroupItemDto = {
69
- type: 'object',
70
- properties: {
71
- isEnabled: {
72
- type: 'boolean'
73
- },
74
- isApplicable: {
75
- type: 'boolean',
76
- nullable: true
77
- },
78
- isRequired: {
79
- type: 'boolean',
80
- nullable: true
81
- },
82
- isActive: {
83
- type: 'boolean',
84
- nullable: true
85
- },
86
- pattern: {
87
- type: 'string',
88
- nullable: true
89
- },
90
- depth: {
91
- type: 'integer',
92
- format: 'int32'
93
- },
94
- description: {
95
- type: 'string',
96
- nullable: true
97
- },
98
- displayName: {
99
- type: 'string',
100
- nullable: true
101
- },
102
- key: {
103
- type: 'string',
104
- nullable: true
105
- },
106
- parentName: {
107
- type: 'string',
108
- nullable: true
109
- },
110
- value: {
111
- type: 'string',
112
- nullable: true
113
- },
114
- defaultValue: {
115
- type: 'string',
116
- nullable: true
117
- },
118
- bonds: {
119
- type: 'array',
120
- items: {
121
- '$ref': '#/components/schemas/UniRefund.SettingService.Bonds.BondDto'
122
- },
123
- nullable: true
124
- },
125
- subItems: {
126
- type: 'array',
127
- items: {
128
- '$ref': '#/components/schemas/UniRefund.SettingService.Items.GroupItemDto'
129
- },
130
- nullable: true
131
- },
132
- valueType: {
133
- '$ref': '#/components/schemas/UniRefund.SettingService.Settings.ValueTypes.ValueTypeModelDto'
134
- }
135
- },
136
- additionalProperties: false
137
- } as const;
138
-
139
- export const $UniRefund_SettingService_Samples_SampleDto = {
140
- type: 'object',
141
- properties: {
142
- value: {
143
- type: 'integer',
144
- format: 'int32'
145
- }
146
- },
147
- additionalProperties: false
148
- } as const;
149
-
150
- export const $UniRefund_SettingService_Settings_ValueTypes_ItemSources_ItemSourceDto = {
151
- type: 'object',
152
- properties: {
153
- items: {
154
- type: 'array',
155
- items: {
156
- '$ref': '#/components/schemas/UniRefund.SettingService.Settings.ValueTypes.ItemSources.Items.ItemDto'
157
- },
158
- nullable: true
159
- }
160
- },
161
- additionalProperties: false
162
- } as const;
163
-
164
- export const $UniRefund_SettingService_Settings_ValueTypes_ItemSources_Items_DisplayTexts_DisplayTextDto = {
165
- type: 'object',
166
- properties: {
167
- name: {
168
- type: 'string',
169
- nullable: true
170
- },
171
- resourceName: {
172
- type: 'string',
173
- nullable: true
174
- }
175
- },
176
- additionalProperties: false
177
- } as const;
178
-
179
- export const $UniRefund_SettingService_Settings_ValueTypes_ItemSources_Items_ItemDto = {
180
- type: 'object',
181
- properties: {
182
- displayText: {
183
- '$ref': '#/components/schemas/UniRefund.SettingService.Settings.ValueTypes.ItemSources.Items.DisplayTexts.DisplayTextDto'
184
- },
185
- value: {
186
- type: 'string',
187
- nullable: true
188
- }
189
- },
190
- additionalProperties: false
191
- } as const;
192
-
193
- export const $UniRefund_SettingService_Settings_ValueTypes_Validators_Properties_ValidatorPropertiesDto = {
194
- type: 'object',
195
- properties: {
196
- minValue: {
197
- type: 'integer',
198
- format: 'int32'
199
- },
200
- maxValue: {
201
- type: 'integer',
202
- format: 'int32'
203
- }
204
- },
205
- additionalProperties: false
206
- } as const;
207
-
208
- export const $UniRefund_SettingService_Settings_ValueTypes_Validators_ValidatorDto = {
209
- type: 'object',
210
- properties: {
211
- name: {
212
- type: 'string',
213
- nullable: true
214
- },
215
- properties: {
216
- '$ref': '#/components/schemas/UniRefund.SettingService.Settings.ValueTypes.Validators.Properties.ValidatorPropertiesDto'
217
- }
218
- },
219
- additionalProperties: false
220
- } as const;
221
-
222
- export const $UniRefund_SettingService_Settings_ValueTypes_ValueTypeModelDto = {
223
- type: 'object',
224
- properties: {
225
- itemSource: {
226
- '$ref': '#/components/schemas/UniRefund.SettingService.Settings.ValueTypes.ItemSources.ItemSourceDto'
227
- },
228
- name: {
229
- type: 'string',
230
- nullable: true
231
- },
232
- properties: {
233
- type: 'string',
234
- nullable: true
235
- },
236
- validator: {
237
- '$ref': '#/components/schemas/UniRefund.SettingService.Settings.ValueTypes.Validators.ValidatorDto'
238
- }
239
- },
240
- additionalProperties: false
241
- } as const;
242
-
243
- export const $Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationAuthConfigurationDto = {
244
- type: 'object',
245
- properties: {
246
- grantedPolicies: {
247
- type: 'object',
248
- additionalProperties: {
249
- type: 'boolean'
250
- },
251
- nullable: true
252
- }
253
- },
254
- additionalProperties: false
255
- } as const;
256
-
257
- export const $Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationConfigurationDto = {
258
- type: 'object',
259
- properties: {
260
- localization: {
261
- '$ref': '#/components/schemas/Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationLocalizationConfigurationDto'
262
- },
263
- auth: {
264
- '$ref': '#/components/schemas/Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationAuthConfigurationDto'
265
- },
266
- setting: {
267
- '$ref': '#/components/schemas/Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationSettingConfigurationDto'
268
- },
269
- currentUser: {
270
- '$ref': '#/components/schemas/Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.CurrentUserDto'
271
- },
272
- features: {
273
- '$ref': '#/components/schemas/Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationFeatureConfigurationDto'
274
- },
275
- globalFeatures: {
276
- '$ref': '#/components/schemas/Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationGlobalFeatureConfigurationDto'
277
- },
278
- multiTenancy: {
279
- '$ref': '#/components/schemas/Volo.Abp.AspNetCore.Mvc.MultiTenancy.MultiTenancyInfoDto'
280
- },
281
- currentTenant: {
282
- '$ref': '#/components/schemas/Volo.Abp.AspNetCore.Mvc.MultiTenancy.CurrentTenantDto'
283
- },
284
- timing: {
285
- '$ref': '#/components/schemas/Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.TimingDto'
286
- },
287
- clock: {
288
- '$ref': '#/components/schemas/Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ClockDto'
289
- },
290
- objectExtensions: {
291
- '$ref': '#/components/schemas/Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ObjectExtending.ObjectExtensionsDto'
292
- },
293
- extraProperties: {
294
- type: 'object',
295
- additionalProperties: {},
296
- nullable: true
297
- }
298
- },
299
- additionalProperties: false
300
- } as const;
301
-
302
- export const $Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationFeatureConfigurationDto = {
303
- type: 'object',
304
- properties: {
305
- values: {
306
- type: 'object',
307
- additionalProperties: {
308
- type: 'string',
309
- nullable: true
310
- },
311
- nullable: true
312
- }
313
- },
314
- additionalProperties: false
315
- } as const;
316
-
317
- export const $Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationGlobalFeatureConfigurationDto = {
318
- type: 'object',
319
- properties: {
320
- enabledFeatures: {
321
- uniqueItems: true,
322
- type: 'array',
323
- items: {
324
- type: 'string'
325
- },
326
- nullable: true
327
- }
328
- },
329
- additionalProperties: false
330
- } as const;
331
-
332
- export const $Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationConfigurationDto = {
333
- type: 'object',
334
- properties: {
335
- values: {
336
- type: 'object',
337
- additionalProperties: {
338
- type: 'object',
339
- additionalProperties: {
340
- type: 'string'
341
- }
342
- },
343
- nullable: true
344
- },
345
- resources: {
346
- type: 'object',
347
- additionalProperties: {
348
- '$ref': '#/components/schemas/Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationLocalizationResourceDto'
349
- },
350
- nullable: true
351
- },
352
- languages: {
353
- type: 'array',
354
- items: {
355
- '$ref': '#/components/schemas/Volo.Abp.Localization.LanguageInfo'
356
- },
357
- nullable: true
358
- },
359
- currentCulture: {
360
- '$ref': '#/components/schemas/Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.CurrentCultureDto'
361
- },
362
- defaultResourceName: {
363
- type: 'string',
364
- nullable: true
365
- },
366
- languagesMap: {
367
- type: 'object',
368
- additionalProperties: {
369
- type: 'array',
370
- items: {
371
- '$ref': '#/components/schemas/Volo.Abp.NameValue'
372
- }
373
- },
374
- nullable: true
375
- },
376
- languageFilesMap: {
377
- type: 'object',
378
- additionalProperties: {
379
- type: 'array',
380
- items: {
381
- '$ref': '#/components/schemas/Volo.Abp.NameValue'
382
- }
383
- },
384
- nullable: true
385
- }
386
- },
387
- additionalProperties: false
388
- } as const;
389
-
390
- export const $Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationDto = {
391
- type: 'object',
392
- properties: {
393
- resources: {
394
- type: 'object',
395
- additionalProperties: {
396
- '$ref': '#/components/schemas/Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationLocalizationResourceDto'
397
- },
398
- nullable: true
399
- }
400
- },
401
- additionalProperties: false
402
- } as const;
403
-
404
- export const $Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationResourceDto = {
405
- type: 'object',
406
- properties: {
407
- texts: {
408
- type: 'object',
409
- additionalProperties: {
410
- type: 'string'
411
- },
412
- nullable: true
413
- },
414
- baseResources: {
415
- type: 'array',
416
- items: {
417
- type: 'string'
418
- },
419
- nullable: true
420
- }
421
- },
422
- additionalProperties: false
423
- } as const;
424
-
425
- export const $Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationSettingConfigurationDto = {
426
- type: 'object',
427
- properties: {
428
- values: {
429
- type: 'object',
430
- additionalProperties: {
431
- type: 'string',
432
- nullable: true
433
- },
434
- nullable: true
435
- }
436
- },
437
- additionalProperties: false
438
- } as const;
439
-
440
- export const $Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ClockDto = {
441
- type: 'object',
442
- properties: {
443
- kind: {
444
- type: 'string',
445
- nullable: true
446
- }
447
- },
448
- additionalProperties: false
449
- } as const;
450
-
451
- export const $Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_CurrentCultureDto = {
452
- type: 'object',
453
- properties: {
454
- displayName: {
455
- type: 'string',
456
- nullable: true
457
- },
458
- englishName: {
459
- type: 'string',
460
- nullable: true
461
- },
462
- threeLetterIsoLanguageName: {
463
- type: 'string',
464
- nullable: true
465
- },
466
- twoLetterIsoLanguageName: {
467
- type: 'string',
468
- nullable: true
469
- },
470
- isRightToLeft: {
471
- type: 'boolean'
472
- },
473
- cultureName: {
474
- type: 'string',
475
- nullable: true
476
- },
477
- name: {
478
- type: 'string',
479
- nullable: true
480
- },
481
- nativeName: {
482
- type: 'string',
483
- nullable: true
484
- },
485
- dateTimeFormat: {
486
- '$ref': '#/components/schemas/Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.DateTimeFormatDto'
487
- }
488
- },
489
- additionalProperties: false
490
- } as const;
491
-
492
- export const $Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_CurrentUserDto = {
493
- type: 'object',
494
- properties: {
495
- isAuthenticated: {
496
- type: 'boolean'
497
- },
498
- id: {
499
- type: 'string',
500
- format: 'uuid',
501
- nullable: true
502
- },
503
- tenantId: {
504
- type: 'string',
505
- format: 'uuid',
506
- nullable: true
507
- },
508
- impersonatorUserId: {
509
- type: 'string',
510
- format: 'uuid',
511
- nullable: true
512
- },
513
- impersonatorTenantId: {
514
- type: 'string',
515
- format: 'uuid',
516
- nullable: true
517
- },
518
- impersonatorUserName: {
519
- type: 'string',
520
- nullable: true
521
- },
522
- impersonatorTenantName: {
523
- type: 'string',
524
- nullable: true
525
- },
526
- userName: {
527
- type: 'string',
528
- nullable: true
529
- },
530
- name: {
531
- type: 'string',
532
- nullable: true
533
- },
534
- surName: {
535
- type: 'string',
536
- nullable: true
537
- },
538
- email: {
539
- type: 'string',
540
- nullable: true
541
- },
542
- emailVerified: {
543
- type: 'boolean'
544
- },
545
- phoneNumber: {
546
- type: 'string',
547
- nullable: true
548
- },
549
- phoneNumberVerified: {
550
- type: 'boolean'
551
- },
552
- roles: {
553
- type: 'array',
554
- items: {
555
- type: 'string'
556
- },
557
- nullable: true
558
- }
559
- },
560
- additionalProperties: false
561
- } as const;
562
-
563
- export const $Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_DateTimeFormatDto = {
564
- type: 'object',
565
- properties: {
566
- calendarAlgorithmType: {
567
- type: 'string',
568
- nullable: true
569
- },
570
- dateTimeFormatLong: {
571
- type: 'string',
572
- nullable: true
573
- },
574
- shortDatePattern: {
575
- type: 'string',
576
- nullable: true
577
- },
578
- fullDateTimePattern: {
579
- type: 'string',
580
- nullable: true
581
- },
582
- dateSeparator: {
583
- type: 'string',
584
- nullable: true
585
- },
586
- shortTimePattern: {
587
- type: 'string',
588
- nullable: true
589
- },
590
- longTimePattern: {
591
- type: 'string',
592
- nullable: true
593
- }
594
- },
595
- additionalProperties: false
596
- } as const;
597
-
598
- export const $Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_IanaTimeZone = {
599
- type: 'object',
600
- properties: {
601
- timeZoneName: {
602
- type: 'string',
603
- nullable: true
604
- }
605
- },
606
- additionalProperties: false
607
- } as const;
608
-
609
- export const $Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_EntityExtensionDto = {
610
- type: 'object',
611
- properties: {
612
- properties: {
613
- type: 'object',
614
- additionalProperties: {
615
- '$ref': '#/components/schemas/Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ObjectExtending.ExtensionPropertyDto'
616
- },
617
- nullable: true
618
- },
619
- configuration: {
620
- type: 'object',
621
- additionalProperties: {},
622
- nullable: true
623
- }
624
- },
625
- additionalProperties: false
626
- } as const;
627
-
628
- export const $Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionEnumDto = {
629
- type: 'object',
630
- properties: {
631
- fields: {
632
- type: 'array',
633
- items: {
634
- '$ref': '#/components/schemas/Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ObjectExtending.ExtensionEnumFieldDto'
635
- },
636
- nullable: true
637
- },
638
- localizationResource: {
639
- type: 'string',
640
- nullable: true
641
- }
642
- },
643
- additionalProperties: false
644
- } as const;
645
-
646
- export const $Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionEnumFieldDto = {
647
- type: 'object',
648
- properties: {
649
- name: {
650
- type: 'string',
651
- nullable: true
652
- },
653
- value: {
654
- nullable: true
655
- }
656
- },
657
- additionalProperties: false
658
- } as const;
659
-
660
- export const $Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiCreateDto = {
661
- type: 'object',
662
- properties: {
663
- isAvailable: {
664
- type: 'boolean'
665
- }
666
- },
667
- additionalProperties: false
668
- } as const;
669
-
670
- export const $Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiDto = {
671
- type: 'object',
672
- properties: {
673
- onGet: {
674
- '$ref': '#/components/schemas/Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ObjectExtending.ExtensionPropertyApiGetDto'
675
- },
676
- onCreate: {
677
- '$ref': '#/components/schemas/Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ObjectExtending.ExtensionPropertyApiCreateDto'
678
- },
679
- onUpdate: {
680
- '$ref': '#/components/schemas/Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ObjectExtending.ExtensionPropertyApiUpdateDto'
681
- }
682
- },
683
- additionalProperties: false
684
- } as const;
685
-
686
- export const $Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiGetDto = {
687
- type: 'object',
688
- properties: {
689
- isAvailable: {
690
- type: 'boolean'
691
- }
692
- },
693
- additionalProperties: false
694
- } as const;
695
-
696
- export const $Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiUpdateDto = {
697
- type: 'object',
698
- properties: {
699
- isAvailable: {
700
- type: 'boolean'
701
- }
702
- },
703
- additionalProperties: false
704
- } as const;
705
-
706
- export const $Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyAttributeDto = {
707
- type: 'object',
708
- properties: {
709
- typeSimple: {
710
- type: 'string',
711
- nullable: true
712
- },
713
- config: {
714
- type: 'object',
715
- additionalProperties: {},
716
- nullable: true
717
- }
718
- },
719
- additionalProperties: false
720
- } as const;
721
-
722
- export const $Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyDto = {
723
- type: 'object',
724
- properties: {
725
- type: {
726
- type: 'string',
727
- nullable: true
728
- },
729
- typeSimple: {
730
- type: 'string',
731
- nullable: true
732
- },
733
- displayName: {
734
- '$ref': '#/components/schemas/Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ObjectExtending.LocalizableStringDto'
735
- },
736
- api: {
737
- '$ref': '#/components/schemas/Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ObjectExtending.ExtensionPropertyApiDto'
738
- },
739
- ui: {
740
- '$ref': '#/components/schemas/Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ObjectExtending.ExtensionPropertyUiDto'
741
- },
742
- attributes: {
743
- type: 'array',
744
- items: {
745
- '$ref': '#/components/schemas/Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ObjectExtending.ExtensionPropertyAttributeDto'
746
- },
747
- nullable: true
748
- },
749
- configuration: {
750
- type: 'object',
751
- additionalProperties: {},
752
- nullable: true
753
- },
754
- defaultValue: {
755
- nullable: true
756
- }
757
- },
758
- additionalProperties: false
759
- } as const;
760
-
761
- export const $Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiDto = {
762
- type: 'object',
763
- properties: {
764
- onTable: {
765
- '$ref': '#/components/schemas/Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ObjectExtending.ExtensionPropertyUiTableDto'
766
- },
767
- onCreateForm: {
768
- '$ref': '#/components/schemas/Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ObjectExtending.ExtensionPropertyUiFormDto'
769
- },
770
- onEditForm: {
771
- '$ref': '#/components/schemas/Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ObjectExtending.ExtensionPropertyUiFormDto'
772
- },
773
- lookup: {
774
- '$ref': '#/components/schemas/Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ObjectExtending.ExtensionPropertyUiLookupDto'
775
- }
776
- },
777
- additionalProperties: false
778
- } as const;
779
-
780
- export const $Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiFormDto = {
781
- type: 'object',
782
- properties: {
783
- isVisible: {
784
- type: 'boolean'
785
- }
786
- },
787
- additionalProperties: false
788
- } as const;
789
-
790
- export const $Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiLookupDto = {
791
- type: 'object',
792
- properties: {
793
- url: {
794
- type: 'string',
795
- nullable: true
796
- },
797
- resultListPropertyName: {
798
- type: 'string',
799
- nullable: true
800
- },
801
- displayPropertyName: {
802
- type: 'string',
803
- nullable: true
804
- },
805
- valuePropertyName: {
806
- type: 'string',
807
- nullable: true
808
- },
809
- filterParamName: {
810
- type: 'string',
811
- nullable: true
812
- }
813
- },
814
- additionalProperties: false
815
- } as const;
816
-
817
- export const $Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiTableDto = {
818
- type: 'object',
819
- properties: {
820
- isVisible: {
821
- type: 'boolean'
822
- }
823
- },
824
- additionalProperties: false
825
- } as const;
826
-
827
- export const $Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_LocalizableStringDto = {
828
- type: 'object',
829
- properties: {
830
- name: {
831
- type: 'string',
832
- nullable: true
833
- },
834
- resource: {
835
- type: 'string',
836
- nullable: true
837
- }
838
- },
839
- additionalProperties: false
840
- } as const;
841
-
842
- export const $Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ModuleExtensionDto = {
843
- type: 'object',
844
- properties: {
845
- entities: {
846
- type: 'object',
847
- additionalProperties: {
848
- '$ref': '#/components/schemas/Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ObjectExtending.EntityExtensionDto'
849
- },
850
- nullable: true
851
- },
852
- configuration: {
853
- type: 'object',
854
- additionalProperties: {},
855
- nullable: true
856
- }
857
- },
858
- additionalProperties: false
859
- } as const;
860
-
861
- export const $Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ObjectExtensionsDto = {
862
- type: 'object',
863
- properties: {
864
- modules: {
865
- type: 'object',
866
- additionalProperties: {
867
- '$ref': '#/components/schemas/Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ObjectExtending.ModuleExtensionDto'
868
- },
869
- nullable: true
870
- },
871
- enums: {
872
- type: 'object',
873
- additionalProperties: {
874
- '$ref': '#/components/schemas/Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ObjectExtending.ExtensionEnumDto'
875
- },
876
- nullable: true
877
- }
878
- },
879
- additionalProperties: false
880
- } as const;
881
-
882
- export const $Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_TimeZone = {
883
- type: 'object',
884
- properties: {
885
- iana: {
886
- '$ref': '#/components/schemas/Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.IanaTimeZone'
887
- },
888
- windows: {
889
- '$ref': '#/components/schemas/Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.WindowsTimeZone'
890
- }
891
- },
892
- additionalProperties: false
893
- } as const;
894
-
895
- export const $Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_TimingDto = {
896
- type: 'object',
897
- properties: {
898
- timeZone: {
899
- '$ref': '#/components/schemas/Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.TimeZone'
900
- }
901
- },
902
- additionalProperties: false
903
- } as const;
904
-
905
- export const $Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_WindowsTimeZone = {
906
- type: 'object',
907
- properties: {
908
- timeZoneId: {
909
- type: 'string',
910
- nullable: true
911
- }
912
- },
913
- additionalProperties: false
914
- } as const;
915
-
916
- export const $Volo_Abp_AspNetCore_Mvc_MultiTenancy_CurrentTenantDto = {
917
- type: 'object',
918
- properties: {
919
- id: {
920
- type: 'string',
921
- format: 'uuid',
922
- nullable: true
923
- },
924
- name: {
925
- type: 'string',
926
- nullable: true
927
- },
928
- isAvailable: {
929
- type: 'boolean'
930
- }
931
- },
932
- additionalProperties: false
933
- } as const;
934
-
935
- export const $Volo_Abp_AspNetCore_Mvc_MultiTenancy_MultiTenancyInfoDto = {
936
- type: 'object',
937
- properties: {
938
- isEnabled: {
939
- type: 'boolean'
940
- }
941
- },
942
- additionalProperties: false
943
- } as const;
944
-
945
- export const $Volo_Abp_Http_Modeling_ActionApiDescriptionModel = {
946
- type: 'object',
947
- properties: {
948
- uniqueName: {
949
- type: 'string',
950
- nullable: true
951
- },
952
- name: {
953
- type: 'string',
954
- nullable: true
955
- },
956
- httpMethod: {
957
- type: 'string',
958
- nullable: true
959
- },
960
- url: {
961
- type: 'string',
962
- nullable: true
963
- },
964
- supportedVersions: {
965
- type: 'array',
966
- items: {
967
- type: 'string'
968
- },
969
- nullable: true
970
- },
971
- parametersOnMethod: {
972
- type: 'array',
973
- items: {
974
- '$ref': '#/components/schemas/Volo.Abp.Http.Modeling.MethodParameterApiDescriptionModel'
975
- },
976
- nullable: true
977
- },
978
- parameters: {
979
- type: 'array',
980
- items: {
981
- '$ref': '#/components/schemas/Volo.Abp.Http.Modeling.ParameterApiDescriptionModel'
982
- },
983
- nullable: true
984
- },
985
- returnValue: {
986
- '$ref': '#/components/schemas/Volo.Abp.Http.Modeling.ReturnValueApiDescriptionModel'
987
- },
988
- allowAnonymous: {
989
- type: 'boolean',
990
- nullable: true
991
- },
992
- implementFrom: {
993
- type: 'string',
994
- nullable: true
995
- }
996
- },
997
- additionalProperties: false
998
- } as const;
999
-
1000
- export const $Volo_Abp_Http_Modeling_ApplicationApiDescriptionModel = {
1001
- type: 'object',
1002
- properties: {
1003
- modules: {
1004
- type: 'object',
1005
- additionalProperties: {
1006
- '$ref': '#/components/schemas/Volo.Abp.Http.Modeling.ModuleApiDescriptionModel'
1007
- },
1008
- nullable: true
1009
- },
1010
- types: {
1011
- type: 'object',
1012
- additionalProperties: {
1013
- '$ref': '#/components/schemas/Volo.Abp.Http.Modeling.TypeApiDescriptionModel'
1014
- },
1015
- nullable: true
1016
- }
1017
- },
1018
- additionalProperties: false
1019
- } as const;
1020
-
1021
- export const $Volo_Abp_Http_Modeling_ControllerApiDescriptionModel = {
1022
- type: 'object',
1023
- properties: {
1024
- controllerName: {
1025
- type: 'string',
1026
- nullable: true
1027
- },
1028
- controllerGroupName: {
1029
- type: 'string',
1030
- nullable: true
1031
- },
1032
- isRemoteService: {
1033
- type: 'boolean'
1034
- },
1035
- isIntegrationService: {
1036
- type: 'boolean'
1037
- },
1038
- apiVersion: {
1039
- type: 'string',
1040
- nullable: true
1041
- },
1042
- type: {
1043
- type: 'string',
1044
- nullable: true
1045
- },
1046
- interfaces: {
1047
- type: 'array',
1048
- items: {
1049
- '$ref': '#/components/schemas/Volo.Abp.Http.Modeling.ControllerInterfaceApiDescriptionModel'
1050
- },
1051
- nullable: true
1052
- },
1053
- actions: {
1054
- type: 'object',
1055
- additionalProperties: {
1056
- '$ref': '#/components/schemas/Volo.Abp.Http.Modeling.ActionApiDescriptionModel'
1057
- },
1058
- nullable: true
1059
- }
1060
- },
1061
- additionalProperties: false
1062
- } as const;
1063
-
1064
- export const $Volo_Abp_Http_Modeling_ControllerInterfaceApiDescriptionModel = {
1065
- type: 'object',
1066
- properties: {
1067
- type: {
1068
- type: 'string',
1069
- nullable: true
1070
- },
1071
- name: {
1072
- type: 'string',
1073
- nullable: true
1074
- },
1075
- methods: {
1076
- type: 'array',
1077
- items: {
1078
- '$ref': '#/components/schemas/Volo.Abp.Http.Modeling.InterfaceMethodApiDescriptionModel'
1079
- },
1080
- nullable: true
1081
- }
1082
- },
1083
- additionalProperties: false
1084
- } as const;
1085
-
1086
- export const $Volo_Abp_Http_Modeling_InterfaceMethodApiDescriptionModel = {
1087
- type: 'object',
1088
- properties: {
1089
- name: {
1090
- type: 'string',
1091
- nullable: true
1092
- },
1093
- parametersOnMethod: {
1094
- type: 'array',
1095
- items: {
1096
- '$ref': '#/components/schemas/Volo.Abp.Http.Modeling.MethodParameterApiDescriptionModel'
1097
- },
1098
- nullable: true
1099
- },
1100
- returnValue: {
1101
- '$ref': '#/components/schemas/Volo.Abp.Http.Modeling.ReturnValueApiDescriptionModel'
1102
- }
1103
- },
1104
- additionalProperties: false
1105
- } as const;
1106
-
1107
- export const $Volo_Abp_Http_Modeling_MethodParameterApiDescriptionModel = {
1108
- type: 'object',
1109
- properties: {
1110
- name: {
1111
- type: 'string',
1112
- nullable: true
1113
- },
1114
- typeAsString: {
1115
- type: 'string',
1116
- nullable: true
1117
- },
1118
- type: {
1119
- type: 'string',
1120
- nullable: true
1121
- },
1122
- typeSimple: {
1123
- type: 'string',
1124
- nullable: true
1125
- },
1126
- isOptional: {
1127
- type: 'boolean'
1128
- },
1129
- defaultValue: {
1130
- nullable: true
1131
- }
1132
- },
1133
- additionalProperties: false
1134
- } as const;
1135
-
1136
- export const $Volo_Abp_Http_Modeling_ModuleApiDescriptionModel = {
1137
- type: 'object',
1138
- properties: {
1139
- rootPath: {
1140
- type: 'string',
1141
- nullable: true
1142
- },
1143
- remoteServiceName: {
1144
- type: 'string',
1145
- nullable: true
1146
- },
1147
- controllers: {
1148
- type: 'object',
1149
- additionalProperties: {
1150
- '$ref': '#/components/schemas/Volo.Abp.Http.Modeling.ControllerApiDescriptionModel'
1151
- },
1152
- nullable: true
1153
- }
1154
- },
1155
- additionalProperties: false
1156
- } as const;
1157
-
1158
- export const $Volo_Abp_Http_Modeling_ParameterApiDescriptionModel = {
1159
- type: 'object',
1160
- properties: {
1161
- nameOnMethod: {
1162
- type: 'string',
1163
- nullable: true
1164
- },
1165
- name: {
1166
- type: 'string',
1167
- nullable: true
1168
- },
1169
- jsonName: {
1170
- type: 'string',
1171
- nullable: true
1172
- },
1173
- type: {
1174
- type: 'string',
1175
- nullable: true
1176
- },
1177
- typeSimple: {
1178
- type: 'string',
1179
- nullable: true
1180
- },
1181
- isOptional: {
1182
- type: 'boolean'
1183
- },
1184
- defaultValue: {
1185
- nullable: true
1186
- },
1187
- constraintTypes: {
1188
- type: 'array',
1189
- items: {
1190
- type: 'string'
1191
- },
1192
- nullable: true
1193
- },
1194
- bindingSourceId: {
1195
- type: 'string',
1196
- nullable: true
1197
- },
1198
- descriptorName: {
1199
- type: 'string',
1200
- nullable: true
1201
- }
1202
- },
1203
- additionalProperties: false
1204
- } as const;
1205
-
1206
- export const $Volo_Abp_Http_Modeling_PropertyApiDescriptionModel = {
1207
- type: 'object',
1208
- properties: {
1209
- name: {
1210
- type: 'string',
1211
- nullable: true
1212
- },
1213
- jsonName: {
1214
- type: 'string',
1215
- nullable: true
1216
- },
1217
- type: {
1218
- type: 'string',
1219
- nullable: true
1220
- },
1221
- typeSimple: {
1222
- type: 'string',
1223
- nullable: true
1224
- },
1225
- isRequired: {
1226
- type: 'boolean'
1227
- },
1228
- minLength: {
1229
- type: 'integer',
1230
- format: 'int32',
1231
- nullable: true
1232
- },
1233
- maxLength: {
1234
- type: 'integer',
1235
- format: 'int32',
1236
- nullable: true
1237
- },
1238
- minimum: {
1239
- type: 'string',
1240
- nullable: true
1241
- },
1242
- maximum: {
1243
- type: 'string',
1244
- nullable: true
1245
- },
1246
- regex: {
1247
- type: 'string',
1248
- nullable: true
1249
- }
1250
- },
1251
- additionalProperties: false
1252
- } as const;
1253
-
1254
- export const $Volo_Abp_Http_Modeling_ReturnValueApiDescriptionModel = {
1255
- type: 'object',
1256
- properties: {
1257
- type: {
1258
- type: 'string',
1259
- nullable: true
1260
- },
1261
- typeSimple: {
1262
- type: 'string',
1263
- nullable: true
1264
- }
1265
- },
1266
- additionalProperties: false
1267
- } as const;
1268
-
1269
- export const $Volo_Abp_Http_Modeling_TypeApiDescriptionModel = {
1270
- type: 'object',
1271
- properties: {
1272
- baseType: {
1273
- type: 'string',
1274
- nullable: true
1275
- },
1276
- isEnum: {
1277
- type: 'boolean'
1278
- },
1279
- enumNames: {
1280
- type: 'array',
1281
- items: {
1282
- type: 'string'
1283
- },
1284
- nullable: true
1285
- },
1286
- enumValues: {
1287
- type: 'array',
1288
- items: {},
1289
- nullable: true
1290
- },
1291
- genericArguments: {
1292
- type: 'array',
1293
- items: {
1294
- type: 'string'
1295
- },
1296
- nullable: true
1297
- },
1298
- properties: {
1299
- type: 'array',
1300
- items: {
1301
- '$ref': '#/components/schemas/Volo.Abp.Http.Modeling.PropertyApiDescriptionModel'
1302
- },
1303
- nullable: true
1304
- }
1305
- },
1306
- additionalProperties: false
1307
- } as const;
1308
-
1309
- export const $Volo_Abp_Http_RemoteServiceErrorInfo = {
1310
- type: 'object',
1311
- properties: {
1312
- code: {
1313
- type: 'string',
1314
- nullable: true
1315
- },
1316
- message: {
1317
- type: 'string',
1318
- nullable: true
1319
- },
1320
- details: {
1321
- type: 'string',
1322
- nullable: true
1323
- },
1324
- data: {
1325
- type: 'object',
1326
- additionalProperties: {},
1327
- nullable: true
1328
- },
1329
- validationErrors: {
1330
- type: 'array',
1331
- items: {
1332
- '$ref': '#/components/schemas/Volo.Abp.Http.RemoteServiceValidationErrorInfo'
1333
- },
1334
- nullable: true
1335
- }
1336
- },
1337
- additionalProperties: false
1338
- } as const;
1339
-
1340
- export const $Volo_Abp_Http_RemoteServiceErrorResponse = {
1341
- type: 'object',
1342
- properties: {
1343
- error: {
1344
- '$ref': '#/components/schemas/Volo.Abp.Http.RemoteServiceErrorInfo'
1345
- }
1346
- },
1347
- additionalProperties: false
1348
- } as const;
1349
-
1350
- export const $Volo_Abp_Http_RemoteServiceValidationErrorInfo = {
1351
- type: 'object',
1352
- properties: {
1353
- message: {
1354
- type: 'string',
1355
- nullable: true
1356
- },
1357
- members: {
1358
- type: 'array',
1359
- items: {
1360
- type: 'string'
1361
- },
1362
- nullable: true
1363
- }
1364
- },
1365
- additionalProperties: false
1366
- } as const;
1367
-
1368
- export const $Volo_Abp_Localization_LanguageInfo = {
1369
- type: 'object',
1370
- properties: {
1371
- cultureName: {
1372
- type: 'string',
1373
- nullable: true
1374
- },
1375
- uiCultureName: {
1376
- type: 'string',
1377
- nullable: true
1378
- },
1379
- displayName: {
1380
- type: 'string',
1381
- nullable: true
1382
- },
1383
- twoLetterISOLanguageName: {
1384
- type: 'string',
1385
- nullable: true,
1386
- readOnly: true
1387
- },
1388
- flagIcon: {
1389
- type: 'string',
1390
- nullable: true
1391
- }
1392
- },
1393
- additionalProperties: false
1394
- } as const;
1395
-
1396
- export const $Volo_Abp_NameValue = {
1397
- type: 'object',
1398
- properties: {
1399
- name: {
1400
- type: 'string',
1401
- nullable: true
1402
- },
1403
- value: {
1404
- type: 'string',
1405
- nullable: true
1406
- }
1407
- },
1408
- additionalProperties: false
1409
- } as const;
1410
-
1411
- export const $Volo_Abp_SettingManagement_EmailSettingsDto = {
1412
- type: 'object',
1413
- properties: {
1414
- smtpHost: {
1415
- type: 'string',
1416
- nullable: true
1417
- },
1418
- smtpPort: {
1419
- type: 'integer',
1420
- format: 'int32'
1421
- },
1422
- smtpUserName: {
1423
- type: 'string',
1424
- nullable: true
1425
- },
1426
- smtpPassword: {
1427
- type: 'string',
1428
- nullable: true
1429
- },
1430
- smtpDomain: {
1431
- type: 'string',
1432
- nullable: true
1433
- },
1434
- smtpEnableSsl: {
1435
- type: 'boolean'
1436
- },
1437
- smtpUseDefaultCredentials: {
1438
- type: 'boolean'
1439
- },
1440
- defaultFromAddress: {
1441
- type: 'string',
1442
- nullable: true
1443
- },
1444
- defaultFromDisplayName: {
1445
- type: 'string',
1446
- nullable: true
1447
- }
1448
- },
1449
- additionalProperties: false
1450
- } as const;
1451
-
1452
- export const $Volo_Abp_SettingManagement_SendTestEmailInput = {
1453
- required: ['senderEmailAddress', 'subject', 'targetEmailAddress'],
1454
- type: 'object',
1455
- properties: {
1456
- senderEmailAddress: {
1457
- minLength: 1,
1458
- type: 'string'
1459
- },
1460
- targetEmailAddress: {
1461
- minLength: 1,
1462
- type: 'string'
1463
- },
1464
- subject: {
1465
- minLength: 1,
1466
- type: 'string'
1467
- },
1468
- body: {
1469
- type: 'string',
1470
- nullable: true
1471
- }
1472
- },
1473
- additionalProperties: false
1474
- } as const;
1475
-
1476
- export const $Volo_Abp_SettingManagement_UpdateEmailSettingsDto = {
1477
- required: ['defaultFromAddress', 'defaultFromDisplayName'],
1478
- type: 'object',
1479
- properties: {
1480
- smtpHost: {
1481
- maxLength: 256,
1482
- type: 'string',
1483
- nullable: true
1484
- },
1485
- smtpPort: {
1486
- maximum: 65535,
1487
- minimum: 1,
1488
- type: 'integer',
1489
- format: 'int32'
1490
- },
1491
- smtpUserName: {
1492
- maxLength: 1024,
1493
- type: 'string',
1494
- nullable: true
1495
- },
1496
- smtpPassword: {
1497
- maxLength: 1024,
1498
- type: 'string',
1499
- format: 'password',
1500
- nullable: true
1501
- },
1502
- smtpDomain: {
1503
- maxLength: 1024,
1504
- type: 'string',
1505
- nullable: true
1506
- },
1507
- smtpEnableSsl: {
1508
- type: 'boolean'
1509
- },
1510
- smtpUseDefaultCredentials: {
1511
- type: 'boolean'
1512
- },
1513
- defaultFromAddress: {
1514
- maxLength: 1024,
1515
- minLength: 1,
1516
- type: 'string'
1517
- },
1518
- defaultFromDisplayName: {
1519
- maxLength: 1024,
1520
- minLength: 1,
1521
- type: 'string'
1522
- }
1523
- },
1524
- additionalProperties: false
1
+ // This file is auto-generated by @hey-api/openapi-ts
2
+
3
+ export const $UniRefund_SettingService_Bonds_BondDto = {
4
+ type: 'object',
5
+ properties: {
6
+ key: {
7
+ type: 'string',
8
+ nullable: true
9
+ },
10
+ pattern: {
11
+ type: 'string',
12
+ nullable: true
13
+ },
14
+ type: {
15
+ type: 'string',
16
+ nullable: true
17
+ }
18
+ },
19
+ additionalProperties: false
20
+ } as const;
21
+
22
+ export const $UniRefund_SettingService_CountrySettings_CountrySettingDto = {
23
+ required: ['groups'],
24
+ type: 'object',
25
+ properties: {
26
+ isEnabled: {
27
+ type: 'boolean'
28
+ },
29
+ groups: {
30
+ type: 'array',
31
+ items: {
32
+ '$ref': '#/components/schemas/UniRefund.SettingService.Groups.GroupDto'
33
+ }
34
+ }
35
+ },
36
+ additionalProperties: false
37
+ } as const;
38
+
39
+ export const $UniRefund_SettingService_Groups_GroupDto = {
40
+ required: ['displayName', 'key'],
41
+ type: 'object',
42
+ properties: {
43
+ isEnabled: {
44
+ type: 'boolean'
45
+ },
46
+ key: {
47
+ minLength: 1,
48
+ type: 'string'
49
+ },
50
+ displayName: {
51
+ minLength: 1,
52
+ type: 'string'
53
+ },
54
+ description: {
55
+ type: 'string',
56
+ nullable: true
57
+ },
58
+ items: {
59
+ type: 'array',
60
+ items: {
61
+ '$ref': '#/components/schemas/UniRefund.SettingService.Items.GroupItemDto'
62
+ },
63
+ nullable: true
64
+ }
65
+ },
66
+ additionalProperties: false
67
+ } as const;
68
+
69
+ export const $UniRefund_SettingService_Items_GroupItemDto = {
70
+ required: ['displayName', 'isEnabled', 'isRequired', 'key'],
71
+ type: 'object',
72
+ properties: {
73
+ isEnabled: {
74
+ type: 'boolean'
75
+ },
76
+ isRequired: {
77
+ type: 'boolean'
78
+ },
79
+ isActive: {
80
+ type: 'boolean',
81
+ nullable: true
82
+ },
83
+ pattern: {
84
+ type: 'string',
85
+ nullable: true
86
+ },
87
+ depth: {
88
+ type: 'integer',
89
+ format: 'int32'
90
+ },
91
+ description: {
92
+ type: 'string',
93
+ nullable: true
94
+ },
95
+ displayName: {
96
+ minLength: 1,
97
+ type: 'string'
98
+ },
99
+ key: {
100
+ minLength: 1,
101
+ type: 'string'
102
+ },
103
+ parentName: {
104
+ type: 'string',
105
+ nullable: true
106
+ },
107
+ value: {
108
+ type: 'string',
109
+ nullable: true
110
+ },
111
+ defaultValue: {
112
+ type: 'string',
113
+ nullable: true
114
+ },
115
+ bonds: {
116
+ type: 'array',
117
+ items: {
118
+ '$ref': '#/components/schemas/UniRefund.SettingService.Bonds.BondDto'
119
+ },
120
+ nullable: true
121
+ },
122
+ subItems: {
123
+ type: 'array',
124
+ items: {
125
+ '$ref': '#/components/schemas/UniRefund.SettingService.Items.GroupItemDto'
126
+ },
127
+ nullable: true
128
+ },
129
+ valueType: {
130
+ '$ref': '#/components/schemas/UniRefund.SettingService.Settings.ValueTypes.ValueTypeModelDto'
131
+ }
132
+ },
133
+ additionalProperties: false
134
+ } as const;
135
+
136
+ export const $UniRefund_SettingService_Samples_SampleDto = {
137
+ type: 'object',
138
+ properties: {
139
+ value: {
140
+ type: 'integer',
141
+ format: 'int32'
142
+ }
143
+ },
144
+ additionalProperties: false
145
+ } as const;
146
+
147
+ export const $UniRefund_SettingService_Settings_ValueTypes_ItemSources_ItemSourceDto = {
148
+ type: 'object',
149
+ properties: {
150
+ items: {
151
+ type: 'array',
152
+ items: {
153
+ '$ref': '#/components/schemas/UniRefund.SettingService.Settings.ValueTypes.ItemSources.Items.ItemDto'
154
+ },
155
+ nullable: true
156
+ }
157
+ },
158
+ additionalProperties: false
159
+ } as const;
160
+
161
+ export const $UniRefund_SettingService_Settings_ValueTypes_ItemSources_Items_DisplayTexts_DisplayTextDto = {
162
+ type: 'object',
163
+ properties: {
164
+ name: {
165
+ type: 'string',
166
+ nullable: true
167
+ },
168
+ resourceName: {
169
+ type: 'string',
170
+ nullable: true
171
+ }
172
+ },
173
+ additionalProperties: false
174
+ } as const;
175
+
176
+ export const $UniRefund_SettingService_Settings_ValueTypes_ItemSources_Items_ItemDto = {
177
+ type: 'object',
178
+ properties: {
179
+ displayText: {
180
+ '$ref': '#/components/schemas/UniRefund.SettingService.Settings.ValueTypes.ItemSources.Items.DisplayTexts.DisplayTextDto'
181
+ },
182
+ value: {
183
+ type: 'string',
184
+ nullable: true
185
+ }
186
+ },
187
+ additionalProperties: false
188
+ } as const;
189
+
190
+ export const $UniRefund_SettingService_Settings_ValueTypes_Validators_Properties_ValidatorPropertiesDto = {
191
+ type: 'object',
192
+ properties: {
193
+ minValue: {
194
+ type: 'integer',
195
+ format: 'int32'
196
+ },
197
+ maxValue: {
198
+ type: 'integer',
199
+ format: 'int32'
200
+ }
201
+ },
202
+ additionalProperties: false
203
+ } as const;
204
+
205
+ export const $UniRefund_SettingService_Settings_ValueTypes_Validators_ValidatorDto = {
206
+ type: 'object',
207
+ properties: {
208
+ name: {
209
+ type: 'string',
210
+ nullable: true
211
+ },
212
+ properties: {
213
+ '$ref': '#/components/schemas/UniRefund.SettingService.Settings.ValueTypes.Validators.Properties.ValidatorPropertiesDto'
214
+ }
215
+ },
216
+ additionalProperties: false
217
+ } as const;
218
+
219
+ export const $UniRefund_SettingService_Settings_ValueTypes_ValueTypeModelDto = {
220
+ type: 'object',
221
+ properties: {
222
+ itemSource: {
223
+ '$ref': '#/components/schemas/UniRefund.SettingService.Settings.ValueTypes.ItemSources.ItemSourceDto'
224
+ },
225
+ name: {
226
+ type: 'string',
227
+ nullable: true
228
+ },
229
+ properties: {
230
+ type: 'string',
231
+ nullable: true
232
+ },
233
+ validator: {
234
+ '$ref': '#/components/schemas/UniRefund.SettingService.Settings.ValueTypes.Validators.ValidatorDto'
235
+ }
236
+ },
237
+ additionalProperties: false
238
+ } as const;
239
+
240
+ export const $Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationAuthConfigurationDto = {
241
+ type: 'object',
242
+ properties: {
243
+ grantedPolicies: {
244
+ type: 'object',
245
+ additionalProperties: {
246
+ type: 'boolean'
247
+ },
248
+ nullable: true
249
+ }
250
+ },
251
+ additionalProperties: false
252
+ } as const;
253
+
254
+ export const $Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationConfigurationDto = {
255
+ type: 'object',
256
+ properties: {
257
+ localization: {
258
+ '$ref': '#/components/schemas/Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationLocalizationConfigurationDto'
259
+ },
260
+ auth: {
261
+ '$ref': '#/components/schemas/Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationAuthConfigurationDto'
262
+ },
263
+ setting: {
264
+ '$ref': '#/components/schemas/Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationSettingConfigurationDto'
265
+ },
266
+ currentUser: {
267
+ '$ref': '#/components/schemas/Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.CurrentUserDto'
268
+ },
269
+ features: {
270
+ '$ref': '#/components/schemas/Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationFeatureConfigurationDto'
271
+ },
272
+ globalFeatures: {
273
+ '$ref': '#/components/schemas/Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationGlobalFeatureConfigurationDto'
274
+ },
275
+ multiTenancy: {
276
+ '$ref': '#/components/schemas/Volo.Abp.AspNetCore.Mvc.MultiTenancy.MultiTenancyInfoDto'
277
+ },
278
+ currentTenant: {
279
+ '$ref': '#/components/schemas/Volo.Abp.AspNetCore.Mvc.MultiTenancy.CurrentTenantDto'
280
+ },
281
+ timing: {
282
+ '$ref': '#/components/schemas/Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.TimingDto'
283
+ },
284
+ clock: {
285
+ '$ref': '#/components/schemas/Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ClockDto'
286
+ },
287
+ objectExtensions: {
288
+ '$ref': '#/components/schemas/Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ObjectExtending.ObjectExtensionsDto'
289
+ },
290
+ extraProperties: {
291
+ type: 'object',
292
+ additionalProperties: {},
293
+ nullable: true
294
+ }
295
+ },
296
+ additionalProperties: false
297
+ } as const;
298
+
299
+ export const $Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationFeatureConfigurationDto = {
300
+ type: 'object',
301
+ properties: {
302
+ values: {
303
+ type: 'object',
304
+ additionalProperties: {
305
+ type: 'string',
306
+ nullable: true
307
+ },
308
+ nullable: true
309
+ }
310
+ },
311
+ additionalProperties: false
312
+ } as const;
313
+
314
+ export const $Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationGlobalFeatureConfigurationDto = {
315
+ type: 'object',
316
+ properties: {
317
+ enabledFeatures: {
318
+ uniqueItems: true,
319
+ type: 'array',
320
+ items: {
321
+ type: 'string'
322
+ },
323
+ nullable: true
324
+ }
325
+ },
326
+ additionalProperties: false
327
+ } as const;
328
+
329
+ export const $Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationConfigurationDto = {
330
+ type: 'object',
331
+ properties: {
332
+ values: {
333
+ type: 'object',
334
+ additionalProperties: {
335
+ type: 'object',
336
+ additionalProperties: {
337
+ type: 'string'
338
+ }
339
+ },
340
+ nullable: true
341
+ },
342
+ resources: {
343
+ type: 'object',
344
+ additionalProperties: {
345
+ '$ref': '#/components/schemas/Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationLocalizationResourceDto'
346
+ },
347
+ nullable: true
348
+ },
349
+ languages: {
350
+ type: 'array',
351
+ items: {
352
+ '$ref': '#/components/schemas/Volo.Abp.Localization.LanguageInfo'
353
+ },
354
+ nullable: true
355
+ },
356
+ currentCulture: {
357
+ '$ref': '#/components/schemas/Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.CurrentCultureDto'
358
+ },
359
+ defaultResourceName: {
360
+ type: 'string',
361
+ nullable: true
362
+ },
363
+ languagesMap: {
364
+ type: 'object',
365
+ additionalProperties: {
366
+ type: 'array',
367
+ items: {
368
+ '$ref': '#/components/schemas/Volo.Abp.NameValue'
369
+ }
370
+ },
371
+ nullable: true
372
+ },
373
+ languageFilesMap: {
374
+ type: 'object',
375
+ additionalProperties: {
376
+ type: 'array',
377
+ items: {
378
+ '$ref': '#/components/schemas/Volo.Abp.NameValue'
379
+ }
380
+ },
381
+ nullable: true
382
+ }
383
+ },
384
+ additionalProperties: false
385
+ } as const;
386
+
387
+ export const $Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationDto = {
388
+ type: 'object',
389
+ properties: {
390
+ resources: {
391
+ type: 'object',
392
+ additionalProperties: {
393
+ '$ref': '#/components/schemas/Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationLocalizationResourceDto'
394
+ },
395
+ nullable: true
396
+ }
397
+ },
398
+ additionalProperties: false
399
+ } as const;
400
+
401
+ export const $Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationResourceDto = {
402
+ type: 'object',
403
+ properties: {
404
+ texts: {
405
+ type: 'object',
406
+ additionalProperties: {
407
+ type: 'string'
408
+ },
409
+ nullable: true
410
+ },
411
+ baseResources: {
412
+ type: 'array',
413
+ items: {
414
+ type: 'string'
415
+ },
416
+ nullable: true
417
+ }
418
+ },
419
+ additionalProperties: false
420
+ } as const;
421
+
422
+ export const $Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationSettingConfigurationDto = {
423
+ type: 'object',
424
+ properties: {
425
+ values: {
426
+ type: 'object',
427
+ additionalProperties: {
428
+ type: 'string',
429
+ nullable: true
430
+ },
431
+ nullable: true
432
+ }
433
+ },
434
+ additionalProperties: false
435
+ } as const;
436
+
437
+ export const $Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ClockDto = {
438
+ type: 'object',
439
+ properties: {
440
+ kind: {
441
+ type: 'string',
442
+ nullable: true
443
+ }
444
+ },
445
+ additionalProperties: false
446
+ } as const;
447
+
448
+ export const $Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_CurrentCultureDto = {
449
+ type: 'object',
450
+ properties: {
451
+ displayName: {
452
+ type: 'string',
453
+ nullable: true
454
+ },
455
+ englishName: {
456
+ type: 'string',
457
+ nullable: true
458
+ },
459
+ threeLetterIsoLanguageName: {
460
+ type: 'string',
461
+ nullable: true
462
+ },
463
+ twoLetterIsoLanguageName: {
464
+ type: 'string',
465
+ nullable: true
466
+ },
467
+ isRightToLeft: {
468
+ type: 'boolean'
469
+ },
470
+ cultureName: {
471
+ type: 'string',
472
+ nullable: true
473
+ },
474
+ name: {
475
+ type: 'string',
476
+ nullable: true
477
+ },
478
+ nativeName: {
479
+ type: 'string',
480
+ nullable: true
481
+ },
482
+ dateTimeFormat: {
483
+ '$ref': '#/components/schemas/Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.DateTimeFormatDto'
484
+ }
485
+ },
486
+ additionalProperties: false
487
+ } as const;
488
+
489
+ export const $Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_CurrentUserDto = {
490
+ type: 'object',
491
+ properties: {
492
+ isAuthenticated: {
493
+ type: 'boolean'
494
+ },
495
+ id: {
496
+ type: 'string',
497
+ format: 'uuid',
498
+ nullable: true
499
+ },
500
+ tenantId: {
501
+ type: 'string',
502
+ format: 'uuid',
503
+ nullable: true
504
+ },
505
+ impersonatorUserId: {
506
+ type: 'string',
507
+ format: 'uuid',
508
+ nullable: true
509
+ },
510
+ impersonatorTenantId: {
511
+ type: 'string',
512
+ format: 'uuid',
513
+ nullable: true
514
+ },
515
+ impersonatorUserName: {
516
+ type: 'string',
517
+ nullable: true
518
+ },
519
+ impersonatorTenantName: {
520
+ type: 'string',
521
+ nullable: true
522
+ },
523
+ userName: {
524
+ type: 'string',
525
+ nullable: true
526
+ },
527
+ name: {
528
+ type: 'string',
529
+ nullable: true
530
+ },
531
+ surName: {
532
+ type: 'string',
533
+ nullable: true
534
+ },
535
+ email: {
536
+ type: 'string',
537
+ nullable: true
538
+ },
539
+ emailVerified: {
540
+ type: 'boolean'
541
+ },
542
+ phoneNumber: {
543
+ type: 'string',
544
+ nullable: true
545
+ },
546
+ phoneNumberVerified: {
547
+ type: 'boolean'
548
+ },
549
+ roles: {
550
+ type: 'array',
551
+ items: {
552
+ type: 'string'
553
+ },
554
+ nullable: true
555
+ }
556
+ },
557
+ additionalProperties: false
558
+ } as const;
559
+
560
+ export const $Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_DateTimeFormatDto = {
561
+ type: 'object',
562
+ properties: {
563
+ calendarAlgorithmType: {
564
+ type: 'string',
565
+ nullable: true
566
+ },
567
+ dateTimeFormatLong: {
568
+ type: 'string',
569
+ nullable: true
570
+ },
571
+ shortDatePattern: {
572
+ type: 'string',
573
+ nullable: true
574
+ },
575
+ fullDateTimePattern: {
576
+ type: 'string',
577
+ nullable: true
578
+ },
579
+ dateSeparator: {
580
+ type: 'string',
581
+ nullable: true
582
+ },
583
+ shortTimePattern: {
584
+ type: 'string',
585
+ nullable: true
586
+ },
587
+ longTimePattern: {
588
+ type: 'string',
589
+ nullable: true
590
+ }
591
+ },
592
+ additionalProperties: false
593
+ } as const;
594
+
595
+ export const $Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_IanaTimeZone = {
596
+ type: 'object',
597
+ properties: {
598
+ timeZoneName: {
599
+ type: 'string',
600
+ nullable: true
601
+ }
602
+ },
603
+ additionalProperties: false
604
+ } as const;
605
+
606
+ export const $Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_EntityExtensionDto = {
607
+ type: 'object',
608
+ properties: {
609
+ properties: {
610
+ type: 'object',
611
+ additionalProperties: {
612
+ '$ref': '#/components/schemas/Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ObjectExtending.ExtensionPropertyDto'
613
+ },
614
+ nullable: true
615
+ },
616
+ configuration: {
617
+ type: 'object',
618
+ additionalProperties: {},
619
+ nullable: true
620
+ }
621
+ },
622
+ additionalProperties: false
623
+ } as const;
624
+
625
+ export const $Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionEnumDto = {
626
+ type: 'object',
627
+ properties: {
628
+ fields: {
629
+ type: 'array',
630
+ items: {
631
+ '$ref': '#/components/schemas/Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ObjectExtending.ExtensionEnumFieldDto'
632
+ },
633
+ nullable: true
634
+ },
635
+ localizationResource: {
636
+ type: 'string',
637
+ nullable: true
638
+ }
639
+ },
640
+ additionalProperties: false
641
+ } as const;
642
+
643
+ export const $Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionEnumFieldDto = {
644
+ type: 'object',
645
+ properties: {
646
+ name: {
647
+ type: 'string',
648
+ nullable: true
649
+ },
650
+ value: {
651
+ nullable: true
652
+ }
653
+ },
654
+ additionalProperties: false
655
+ } as const;
656
+
657
+ export const $Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiCreateDto = {
658
+ type: 'object',
659
+ properties: {
660
+ isAvailable: {
661
+ type: 'boolean'
662
+ }
663
+ },
664
+ additionalProperties: false
665
+ } as const;
666
+
667
+ export const $Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiDto = {
668
+ type: 'object',
669
+ properties: {
670
+ onGet: {
671
+ '$ref': '#/components/schemas/Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ObjectExtending.ExtensionPropertyApiGetDto'
672
+ },
673
+ onCreate: {
674
+ '$ref': '#/components/schemas/Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ObjectExtending.ExtensionPropertyApiCreateDto'
675
+ },
676
+ onUpdate: {
677
+ '$ref': '#/components/schemas/Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ObjectExtending.ExtensionPropertyApiUpdateDto'
678
+ }
679
+ },
680
+ additionalProperties: false
681
+ } as const;
682
+
683
+ export const $Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiGetDto = {
684
+ type: 'object',
685
+ properties: {
686
+ isAvailable: {
687
+ type: 'boolean'
688
+ }
689
+ },
690
+ additionalProperties: false
691
+ } as const;
692
+
693
+ export const $Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiUpdateDto = {
694
+ type: 'object',
695
+ properties: {
696
+ isAvailable: {
697
+ type: 'boolean'
698
+ }
699
+ },
700
+ additionalProperties: false
701
+ } as const;
702
+
703
+ export const $Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyAttributeDto = {
704
+ type: 'object',
705
+ properties: {
706
+ typeSimple: {
707
+ type: 'string',
708
+ nullable: true
709
+ },
710
+ config: {
711
+ type: 'object',
712
+ additionalProperties: {},
713
+ nullable: true
714
+ }
715
+ },
716
+ additionalProperties: false
717
+ } as const;
718
+
719
+ export const $Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyDto = {
720
+ type: 'object',
721
+ properties: {
722
+ type: {
723
+ type: 'string',
724
+ nullable: true
725
+ },
726
+ typeSimple: {
727
+ type: 'string',
728
+ nullable: true
729
+ },
730
+ displayName: {
731
+ '$ref': '#/components/schemas/Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ObjectExtending.LocalizableStringDto'
732
+ },
733
+ api: {
734
+ '$ref': '#/components/schemas/Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ObjectExtending.ExtensionPropertyApiDto'
735
+ },
736
+ ui: {
737
+ '$ref': '#/components/schemas/Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ObjectExtending.ExtensionPropertyUiDto'
738
+ },
739
+ attributes: {
740
+ type: 'array',
741
+ items: {
742
+ '$ref': '#/components/schemas/Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ObjectExtending.ExtensionPropertyAttributeDto'
743
+ },
744
+ nullable: true
745
+ },
746
+ configuration: {
747
+ type: 'object',
748
+ additionalProperties: {},
749
+ nullable: true
750
+ },
751
+ defaultValue: {
752
+ nullable: true
753
+ }
754
+ },
755
+ additionalProperties: false
756
+ } as const;
757
+
758
+ export const $Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiDto = {
759
+ type: 'object',
760
+ properties: {
761
+ onTable: {
762
+ '$ref': '#/components/schemas/Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ObjectExtending.ExtensionPropertyUiTableDto'
763
+ },
764
+ onCreateForm: {
765
+ '$ref': '#/components/schemas/Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ObjectExtending.ExtensionPropertyUiFormDto'
766
+ },
767
+ onEditForm: {
768
+ '$ref': '#/components/schemas/Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ObjectExtending.ExtensionPropertyUiFormDto'
769
+ },
770
+ lookup: {
771
+ '$ref': '#/components/schemas/Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ObjectExtending.ExtensionPropertyUiLookupDto'
772
+ }
773
+ },
774
+ additionalProperties: false
775
+ } as const;
776
+
777
+ export const $Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiFormDto = {
778
+ type: 'object',
779
+ properties: {
780
+ isVisible: {
781
+ type: 'boolean'
782
+ }
783
+ },
784
+ additionalProperties: false
785
+ } as const;
786
+
787
+ export const $Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiLookupDto = {
788
+ type: 'object',
789
+ properties: {
790
+ url: {
791
+ type: 'string',
792
+ nullable: true
793
+ },
794
+ resultListPropertyName: {
795
+ type: 'string',
796
+ nullable: true
797
+ },
798
+ displayPropertyName: {
799
+ type: 'string',
800
+ nullable: true
801
+ },
802
+ valuePropertyName: {
803
+ type: 'string',
804
+ nullable: true
805
+ },
806
+ filterParamName: {
807
+ type: 'string',
808
+ nullable: true
809
+ }
810
+ },
811
+ additionalProperties: false
812
+ } as const;
813
+
814
+ export const $Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiTableDto = {
815
+ type: 'object',
816
+ properties: {
817
+ isVisible: {
818
+ type: 'boolean'
819
+ }
820
+ },
821
+ additionalProperties: false
822
+ } as const;
823
+
824
+ export const $Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_LocalizableStringDto = {
825
+ type: 'object',
826
+ properties: {
827
+ name: {
828
+ type: 'string',
829
+ nullable: true
830
+ },
831
+ resource: {
832
+ type: 'string',
833
+ nullable: true
834
+ }
835
+ },
836
+ additionalProperties: false
837
+ } as const;
838
+
839
+ export const $Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ModuleExtensionDto = {
840
+ type: 'object',
841
+ properties: {
842
+ entities: {
843
+ type: 'object',
844
+ additionalProperties: {
845
+ '$ref': '#/components/schemas/Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ObjectExtending.EntityExtensionDto'
846
+ },
847
+ nullable: true
848
+ },
849
+ configuration: {
850
+ type: 'object',
851
+ additionalProperties: {},
852
+ nullable: true
853
+ }
854
+ },
855
+ additionalProperties: false
856
+ } as const;
857
+
858
+ export const $Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ObjectExtensionsDto = {
859
+ type: 'object',
860
+ properties: {
861
+ modules: {
862
+ type: 'object',
863
+ additionalProperties: {
864
+ '$ref': '#/components/schemas/Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ObjectExtending.ModuleExtensionDto'
865
+ },
866
+ nullable: true
867
+ },
868
+ enums: {
869
+ type: 'object',
870
+ additionalProperties: {
871
+ '$ref': '#/components/schemas/Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ObjectExtending.ExtensionEnumDto'
872
+ },
873
+ nullable: true
874
+ }
875
+ },
876
+ additionalProperties: false
877
+ } as const;
878
+
879
+ export const $Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_TimeZone = {
880
+ type: 'object',
881
+ properties: {
882
+ iana: {
883
+ '$ref': '#/components/schemas/Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.IanaTimeZone'
884
+ },
885
+ windows: {
886
+ '$ref': '#/components/schemas/Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.WindowsTimeZone'
887
+ }
888
+ },
889
+ additionalProperties: false
890
+ } as const;
891
+
892
+ export const $Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_TimingDto = {
893
+ type: 'object',
894
+ properties: {
895
+ timeZone: {
896
+ '$ref': '#/components/schemas/Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.TimeZone'
897
+ }
898
+ },
899
+ additionalProperties: false
900
+ } as const;
901
+
902
+ export const $Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_WindowsTimeZone = {
903
+ type: 'object',
904
+ properties: {
905
+ timeZoneId: {
906
+ type: 'string',
907
+ nullable: true
908
+ }
909
+ },
910
+ additionalProperties: false
911
+ } as const;
912
+
913
+ export const $Volo_Abp_AspNetCore_Mvc_MultiTenancy_CurrentTenantDto = {
914
+ type: 'object',
915
+ properties: {
916
+ id: {
917
+ type: 'string',
918
+ format: 'uuid',
919
+ nullable: true
920
+ },
921
+ name: {
922
+ type: 'string',
923
+ nullable: true
924
+ },
925
+ isAvailable: {
926
+ type: 'boolean'
927
+ }
928
+ },
929
+ additionalProperties: false
930
+ } as const;
931
+
932
+ export const $Volo_Abp_AspNetCore_Mvc_MultiTenancy_MultiTenancyInfoDto = {
933
+ type: 'object',
934
+ properties: {
935
+ isEnabled: {
936
+ type: 'boolean'
937
+ }
938
+ },
939
+ additionalProperties: false
940
+ } as const;
941
+
942
+ export const $Volo_Abp_Http_Modeling_ActionApiDescriptionModel = {
943
+ type: 'object',
944
+ properties: {
945
+ uniqueName: {
946
+ type: 'string',
947
+ nullable: true
948
+ },
949
+ name: {
950
+ type: 'string',
951
+ nullable: true
952
+ },
953
+ httpMethod: {
954
+ type: 'string',
955
+ nullable: true
956
+ },
957
+ url: {
958
+ type: 'string',
959
+ nullable: true
960
+ },
961
+ supportedVersions: {
962
+ type: 'array',
963
+ items: {
964
+ type: 'string'
965
+ },
966
+ nullable: true
967
+ },
968
+ parametersOnMethod: {
969
+ type: 'array',
970
+ items: {
971
+ '$ref': '#/components/schemas/Volo.Abp.Http.Modeling.MethodParameterApiDescriptionModel'
972
+ },
973
+ nullable: true
974
+ },
975
+ parameters: {
976
+ type: 'array',
977
+ items: {
978
+ '$ref': '#/components/schemas/Volo.Abp.Http.Modeling.ParameterApiDescriptionModel'
979
+ },
980
+ nullable: true
981
+ },
982
+ returnValue: {
983
+ '$ref': '#/components/schemas/Volo.Abp.Http.Modeling.ReturnValueApiDescriptionModel'
984
+ },
985
+ allowAnonymous: {
986
+ type: 'boolean',
987
+ nullable: true
988
+ },
989
+ implementFrom: {
990
+ type: 'string',
991
+ nullable: true
992
+ }
993
+ },
994
+ additionalProperties: false
995
+ } as const;
996
+
997
+ export const $Volo_Abp_Http_Modeling_ApplicationApiDescriptionModel = {
998
+ type: 'object',
999
+ properties: {
1000
+ modules: {
1001
+ type: 'object',
1002
+ additionalProperties: {
1003
+ '$ref': '#/components/schemas/Volo.Abp.Http.Modeling.ModuleApiDescriptionModel'
1004
+ },
1005
+ nullable: true
1006
+ },
1007
+ types: {
1008
+ type: 'object',
1009
+ additionalProperties: {
1010
+ '$ref': '#/components/schemas/Volo.Abp.Http.Modeling.TypeApiDescriptionModel'
1011
+ },
1012
+ nullable: true
1013
+ }
1014
+ },
1015
+ additionalProperties: false
1016
+ } as const;
1017
+
1018
+ export const $Volo_Abp_Http_Modeling_ControllerApiDescriptionModel = {
1019
+ type: 'object',
1020
+ properties: {
1021
+ controllerName: {
1022
+ type: 'string',
1023
+ nullable: true
1024
+ },
1025
+ controllerGroupName: {
1026
+ type: 'string',
1027
+ nullable: true
1028
+ },
1029
+ isRemoteService: {
1030
+ type: 'boolean'
1031
+ },
1032
+ isIntegrationService: {
1033
+ type: 'boolean'
1034
+ },
1035
+ apiVersion: {
1036
+ type: 'string',
1037
+ nullable: true
1038
+ },
1039
+ type: {
1040
+ type: 'string',
1041
+ nullable: true
1042
+ },
1043
+ interfaces: {
1044
+ type: 'array',
1045
+ items: {
1046
+ '$ref': '#/components/schemas/Volo.Abp.Http.Modeling.ControllerInterfaceApiDescriptionModel'
1047
+ },
1048
+ nullable: true
1049
+ },
1050
+ actions: {
1051
+ type: 'object',
1052
+ additionalProperties: {
1053
+ '$ref': '#/components/schemas/Volo.Abp.Http.Modeling.ActionApiDescriptionModel'
1054
+ },
1055
+ nullable: true
1056
+ }
1057
+ },
1058
+ additionalProperties: false
1059
+ } as const;
1060
+
1061
+ export const $Volo_Abp_Http_Modeling_ControllerInterfaceApiDescriptionModel = {
1062
+ type: 'object',
1063
+ properties: {
1064
+ type: {
1065
+ type: 'string',
1066
+ nullable: true
1067
+ },
1068
+ name: {
1069
+ type: 'string',
1070
+ nullable: true
1071
+ },
1072
+ methods: {
1073
+ type: 'array',
1074
+ items: {
1075
+ '$ref': '#/components/schemas/Volo.Abp.Http.Modeling.InterfaceMethodApiDescriptionModel'
1076
+ },
1077
+ nullable: true
1078
+ }
1079
+ },
1080
+ additionalProperties: false
1081
+ } as const;
1082
+
1083
+ export const $Volo_Abp_Http_Modeling_InterfaceMethodApiDescriptionModel = {
1084
+ type: 'object',
1085
+ properties: {
1086
+ name: {
1087
+ type: 'string',
1088
+ nullable: true
1089
+ },
1090
+ parametersOnMethod: {
1091
+ type: 'array',
1092
+ items: {
1093
+ '$ref': '#/components/schemas/Volo.Abp.Http.Modeling.MethodParameterApiDescriptionModel'
1094
+ },
1095
+ nullable: true
1096
+ },
1097
+ returnValue: {
1098
+ '$ref': '#/components/schemas/Volo.Abp.Http.Modeling.ReturnValueApiDescriptionModel'
1099
+ }
1100
+ },
1101
+ additionalProperties: false
1102
+ } as const;
1103
+
1104
+ export const $Volo_Abp_Http_Modeling_MethodParameterApiDescriptionModel = {
1105
+ type: 'object',
1106
+ properties: {
1107
+ name: {
1108
+ type: 'string',
1109
+ nullable: true
1110
+ },
1111
+ typeAsString: {
1112
+ type: 'string',
1113
+ nullable: true
1114
+ },
1115
+ type: {
1116
+ type: 'string',
1117
+ nullable: true
1118
+ },
1119
+ typeSimple: {
1120
+ type: 'string',
1121
+ nullable: true
1122
+ },
1123
+ isOptional: {
1124
+ type: 'boolean'
1125
+ },
1126
+ defaultValue: {
1127
+ nullable: true
1128
+ }
1129
+ },
1130
+ additionalProperties: false
1131
+ } as const;
1132
+
1133
+ export const $Volo_Abp_Http_Modeling_ModuleApiDescriptionModel = {
1134
+ type: 'object',
1135
+ properties: {
1136
+ rootPath: {
1137
+ type: 'string',
1138
+ nullable: true
1139
+ },
1140
+ remoteServiceName: {
1141
+ type: 'string',
1142
+ nullable: true
1143
+ },
1144
+ controllers: {
1145
+ type: 'object',
1146
+ additionalProperties: {
1147
+ '$ref': '#/components/schemas/Volo.Abp.Http.Modeling.ControllerApiDescriptionModel'
1148
+ },
1149
+ nullable: true
1150
+ }
1151
+ },
1152
+ additionalProperties: false
1153
+ } as const;
1154
+
1155
+ export const $Volo_Abp_Http_Modeling_ParameterApiDescriptionModel = {
1156
+ type: 'object',
1157
+ properties: {
1158
+ nameOnMethod: {
1159
+ type: 'string',
1160
+ nullable: true
1161
+ },
1162
+ name: {
1163
+ type: 'string',
1164
+ nullable: true
1165
+ },
1166
+ jsonName: {
1167
+ type: 'string',
1168
+ nullable: true
1169
+ },
1170
+ type: {
1171
+ type: 'string',
1172
+ nullable: true
1173
+ },
1174
+ typeSimple: {
1175
+ type: 'string',
1176
+ nullable: true
1177
+ },
1178
+ isOptional: {
1179
+ type: 'boolean'
1180
+ },
1181
+ defaultValue: {
1182
+ nullable: true
1183
+ },
1184
+ constraintTypes: {
1185
+ type: 'array',
1186
+ items: {
1187
+ type: 'string'
1188
+ },
1189
+ nullable: true
1190
+ },
1191
+ bindingSourceId: {
1192
+ type: 'string',
1193
+ nullable: true
1194
+ },
1195
+ descriptorName: {
1196
+ type: 'string',
1197
+ nullable: true
1198
+ }
1199
+ },
1200
+ additionalProperties: false
1201
+ } as const;
1202
+
1203
+ export const $Volo_Abp_Http_Modeling_PropertyApiDescriptionModel = {
1204
+ type: 'object',
1205
+ properties: {
1206
+ name: {
1207
+ type: 'string',
1208
+ nullable: true
1209
+ },
1210
+ jsonName: {
1211
+ type: 'string',
1212
+ nullable: true
1213
+ },
1214
+ type: {
1215
+ type: 'string',
1216
+ nullable: true
1217
+ },
1218
+ typeSimple: {
1219
+ type: 'string',
1220
+ nullable: true
1221
+ },
1222
+ isRequired: {
1223
+ type: 'boolean'
1224
+ },
1225
+ minLength: {
1226
+ type: 'integer',
1227
+ format: 'int32',
1228
+ nullable: true
1229
+ },
1230
+ maxLength: {
1231
+ type: 'integer',
1232
+ format: 'int32',
1233
+ nullable: true
1234
+ },
1235
+ minimum: {
1236
+ type: 'string',
1237
+ nullable: true
1238
+ },
1239
+ maximum: {
1240
+ type: 'string',
1241
+ nullable: true
1242
+ },
1243
+ regex: {
1244
+ type: 'string',
1245
+ nullable: true
1246
+ }
1247
+ },
1248
+ additionalProperties: false
1249
+ } as const;
1250
+
1251
+ export const $Volo_Abp_Http_Modeling_ReturnValueApiDescriptionModel = {
1252
+ type: 'object',
1253
+ properties: {
1254
+ type: {
1255
+ type: 'string',
1256
+ nullable: true
1257
+ },
1258
+ typeSimple: {
1259
+ type: 'string',
1260
+ nullable: true
1261
+ }
1262
+ },
1263
+ additionalProperties: false
1264
+ } as const;
1265
+
1266
+ export const $Volo_Abp_Http_Modeling_TypeApiDescriptionModel = {
1267
+ type: 'object',
1268
+ properties: {
1269
+ baseType: {
1270
+ type: 'string',
1271
+ nullable: true
1272
+ },
1273
+ isEnum: {
1274
+ type: 'boolean'
1275
+ },
1276
+ enumNames: {
1277
+ type: 'array',
1278
+ items: {
1279
+ type: 'string'
1280
+ },
1281
+ nullable: true
1282
+ },
1283
+ enumValues: {
1284
+ type: 'array',
1285
+ items: {},
1286
+ nullable: true
1287
+ },
1288
+ genericArguments: {
1289
+ type: 'array',
1290
+ items: {
1291
+ type: 'string'
1292
+ },
1293
+ nullable: true
1294
+ },
1295
+ properties: {
1296
+ type: 'array',
1297
+ items: {
1298
+ '$ref': '#/components/schemas/Volo.Abp.Http.Modeling.PropertyApiDescriptionModel'
1299
+ },
1300
+ nullable: true
1301
+ }
1302
+ },
1303
+ additionalProperties: false
1304
+ } as const;
1305
+
1306
+ export const $Volo_Abp_Http_RemoteServiceErrorInfo = {
1307
+ type: 'object',
1308
+ properties: {
1309
+ code: {
1310
+ type: 'string',
1311
+ nullable: true
1312
+ },
1313
+ message: {
1314
+ type: 'string',
1315
+ nullable: true
1316
+ },
1317
+ details: {
1318
+ type: 'string',
1319
+ nullable: true
1320
+ },
1321
+ data: {
1322
+ type: 'object',
1323
+ additionalProperties: {},
1324
+ nullable: true
1325
+ },
1326
+ validationErrors: {
1327
+ type: 'array',
1328
+ items: {
1329
+ '$ref': '#/components/schemas/Volo.Abp.Http.RemoteServiceValidationErrorInfo'
1330
+ },
1331
+ nullable: true
1332
+ }
1333
+ },
1334
+ additionalProperties: false
1335
+ } as const;
1336
+
1337
+ export const $Volo_Abp_Http_RemoteServiceErrorResponse = {
1338
+ type: 'object',
1339
+ properties: {
1340
+ error: {
1341
+ '$ref': '#/components/schemas/Volo.Abp.Http.RemoteServiceErrorInfo'
1342
+ }
1343
+ },
1344
+ additionalProperties: false
1345
+ } as const;
1346
+
1347
+ export const $Volo_Abp_Http_RemoteServiceValidationErrorInfo = {
1348
+ type: 'object',
1349
+ properties: {
1350
+ message: {
1351
+ type: 'string',
1352
+ nullable: true
1353
+ },
1354
+ members: {
1355
+ type: 'array',
1356
+ items: {
1357
+ type: 'string'
1358
+ },
1359
+ nullable: true
1360
+ }
1361
+ },
1362
+ additionalProperties: false
1363
+ } as const;
1364
+
1365
+ export const $Volo_Abp_Localization_LanguageInfo = {
1366
+ type: 'object',
1367
+ properties: {
1368
+ cultureName: {
1369
+ type: 'string',
1370
+ nullable: true
1371
+ },
1372
+ uiCultureName: {
1373
+ type: 'string',
1374
+ nullable: true
1375
+ },
1376
+ displayName: {
1377
+ type: 'string',
1378
+ nullable: true
1379
+ },
1380
+ twoLetterISOLanguageName: {
1381
+ type: 'string',
1382
+ nullable: true,
1383
+ readOnly: true
1384
+ },
1385
+ flagIcon: {
1386
+ type: 'string',
1387
+ nullable: true
1388
+ }
1389
+ },
1390
+ additionalProperties: false
1391
+ } as const;
1392
+
1393
+ export const $Volo_Abp_NameValue = {
1394
+ type: 'object',
1395
+ properties: {
1396
+ name: {
1397
+ type: 'string',
1398
+ nullable: true
1399
+ },
1400
+ value: {
1401
+ type: 'string',
1402
+ nullable: true
1403
+ }
1404
+ },
1405
+ additionalProperties: false
1406
+ } as const;
1407
+
1408
+ export const $Volo_Abp_SettingManagement_EmailSettingsDto = {
1409
+ type: 'object',
1410
+ properties: {
1411
+ smtpHost: {
1412
+ type: 'string',
1413
+ nullable: true
1414
+ },
1415
+ smtpPort: {
1416
+ type: 'integer',
1417
+ format: 'int32'
1418
+ },
1419
+ smtpUserName: {
1420
+ type: 'string',
1421
+ nullable: true
1422
+ },
1423
+ smtpPassword: {
1424
+ type: 'string',
1425
+ nullable: true
1426
+ },
1427
+ smtpDomain: {
1428
+ type: 'string',
1429
+ nullable: true
1430
+ },
1431
+ smtpEnableSsl: {
1432
+ type: 'boolean'
1433
+ },
1434
+ smtpUseDefaultCredentials: {
1435
+ type: 'boolean'
1436
+ },
1437
+ defaultFromAddress: {
1438
+ type: 'string',
1439
+ nullable: true
1440
+ },
1441
+ defaultFromDisplayName: {
1442
+ type: 'string',
1443
+ nullable: true
1444
+ }
1445
+ },
1446
+ additionalProperties: false
1447
+ } as const;
1448
+
1449
+ export const $Volo_Abp_SettingManagement_SendTestEmailInput = {
1450
+ required: ['senderEmailAddress', 'subject', 'targetEmailAddress'],
1451
+ type: 'object',
1452
+ properties: {
1453
+ senderEmailAddress: {
1454
+ minLength: 1,
1455
+ type: 'string'
1456
+ },
1457
+ targetEmailAddress: {
1458
+ minLength: 1,
1459
+ type: 'string'
1460
+ },
1461
+ subject: {
1462
+ minLength: 1,
1463
+ type: 'string'
1464
+ },
1465
+ body: {
1466
+ type: 'string',
1467
+ nullable: true
1468
+ }
1469
+ },
1470
+ additionalProperties: false
1471
+ } as const;
1472
+
1473
+ export const $Volo_Abp_SettingManagement_UpdateEmailSettingsDto = {
1474
+ required: ['defaultFromAddress', 'defaultFromDisplayName'],
1475
+ type: 'object',
1476
+ properties: {
1477
+ smtpHost: {
1478
+ maxLength: 256,
1479
+ type: 'string',
1480
+ nullable: true
1481
+ },
1482
+ smtpPort: {
1483
+ maximum: 65535,
1484
+ minimum: 1,
1485
+ type: 'integer',
1486
+ format: 'int32'
1487
+ },
1488
+ smtpUserName: {
1489
+ maxLength: 1024,
1490
+ type: 'string',
1491
+ nullable: true
1492
+ },
1493
+ smtpPassword: {
1494
+ maxLength: 1024,
1495
+ type: 'string',
1496
+ format: 'password',
1497
+ nullable: true
1498
+ },
1499
+ smtpDomain: {
1500
+ maxLength: 1024,
1501
+ type: 'string',
1502
+ nullable: true
1503
+ },
1504
+ smtpEnableSsl: {
1505
+ type: 'boolean'
1506
+ },
1507
+ smtpUseDefaultCredentials: {
1508
+ type: 'boolean'
1509
+ },
1510
+ defaultFromAddress: {
1511
+ maxLength: 1024,
1512
+ minLength: 1,
1513
+ type: 'string'
1514
+ },
1515
+ defaultFromDisplayName: {
1516
+ maxLength: 1024,
1517
+ minLength: 1,
1518
+ type: 'string'
1519
+ }
1520
+ },
1521
+ additionalProperties: false
1525
1522
  } as const;