@ayasofyazilim/saas 0.0.12 → 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 -0
  27. package/SettingService/core/ApiError.ts +21 -0
  28. package/SettingService/core/ApiRequestOptions.ts +13 -0
  29. package/SettingService/core/ApiResult.ts +7 -0
  30. package/SettingService/core/BaseHttpRequest.ts +10 -0
  31. package/SettingService/core/CancelablePromise.ts +126 -0
  32. package/SettingService/core/FetchHttpRequest.ts +22 -0
  33. package/SettingService/core/OpenAPI.ts +56 -0
  34. package/SettingService/core/request.ts +341 -0
  35. package/SettingService/index.ts +9 -0
  36. package/SettingService/schemas.gen.ts +1522 -0
  37. package/SettingService/services.gen.ts +317 -0
  38. package/SettingService/types.gen.ts +981 -0
  39. package/generator.mjs +55 -25
  40. package/package.json +4 -2
  41. package/swagger.json +4794 -4794
@@ -0,0 +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
+ 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
1522
+ } as const;