@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,982 +1,981 @@
1
- // This file is auto-generated by @hey-api/openapi-ts
2
-
3
- export type UniRefund_SettingService_Bonds_BondDto = {
4
- key?: string | null;
5
- pattern?: string | null;
6
- type?: string | null;
7
- };
8
-
9
- export type UniRefund_SettingService_CountrySettings_CountrySettingDto = {
10
- isEnabled?: boolean;
11
- groups?: Array<UniRefund_SettingService_Groups_GroupDto> | null;
12
- };
13
-
14
- export type UniRefund_SettingService_Groups_GroupDto = {
15
- isEnabled?: boolean;
16
- key?: string | null;
17
- displayName?: string | null;
18
- description?: string | null;
19
- items?: Array<UniRefund_SettingService_Items_GroupItemDto> | null;
20
- };
21
-
22
- export type UniRefund_SettingService_Items_GroupItemDto = {
23
- isEnabled?: boolean;
24
- isApplicable?: boolean | null;
25
- isRequired?: boolean | null;
26
- isActive?: boolean | null;
27
- pattern?: string | null;
28
- depth?: number;
29
- description?: string | null;
30
- displayName?: string | null;
31
- key?: string | null;
32
- parentName?: string | null;
33
- value?: string | null;
34
- defaultValue?: string | null;
35
- bonds?: Array<UniRefund_SettingService_Bonds_BondDto> | null;
36
- subItems?: Array<UniRefund_SettingService_Items_GroupItemDto> | null;
37
- valueType?: UniRefund_SettingService_Settings_ValueTypes_ValueTypeModelDto;
38
- };
39
-
40
- export type UniRefund_SettingService_Samples_SampleDto = {
41
- value?: number;
42
- };
43
-
44
- export type UniRefund_SettingService_Settings_ValueTypes_ItemSources_ItemSourceDto = {
45
- items?: Array<UniRefund_SettingService_Settings_ValueTypes_ItemSources_Items_ItemDto> | null;
46
- };
47
-
48
- export type UniRefund_SettingService_Settings_ValueTypes_ItemSources_Items_DisplayTexts_DisplayTextDto = {
49
- name?: string | null;
50
- resourceName?: string | null;
51
- };
52
-
53
- export type UniRefund_SettingService_Settings_ValueTypes_ItemSources_Items_ItemDto = {
54
- displayText?: UniRefund_SettingService_Settings_ValueTypes_ItemSources_Items_DisplayTexts_DisplayTextDto;
55
- value?: string | null;
56
- };
57
-
58
- export type UniRefund_SettingService_Settings_ValueTypes_Validators_Properties_ValidatorPropertiesDto = {
59
- minValue?: number;
60
- maxValue?: number;
61
- };
62
-
63
- export type UniRefund_SettingService_Settings_ValueTypes_Validators_ValidatorDto = {
64
- name?: string | null;
65
- properties?: UniRefund_SettingService_Settings_ValueTypes_Validators_Properties_ValidatorPropertiesDto;
66
- };
67
-
68
- export type UniRefund_SettingService_Settings_ValueTypes_ValueTypeModelDto = {
69
- itemSource?: UniRefund_SettingService_Settings_ValueTypes_ItemSources_ItemSourceDto;
70
- name?: string | null;
71
- properties?: string | null;
72
- validator?: UniRefund_SettingService_Settings_ValueTypes_Validators_ValidatorDto;
73
- };
74
-
75
- export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationAuthConfigurationDto = {
76
- grantedPolicies?: {
77
- [key: string]: (boolean);
78
- } | null;
79
- };
80
-
81
- export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationConfigurationDto = {
82
- localization?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationConfigurationDto;
83
- auth?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationAuthConfigurationDto;
84
- setting?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationSettingConfigurationDto;
85
- currentUser?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_CurrentUserDto;
86
- features?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationFeatureConfigurationDto;
87
- globalFeatures?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationGlobalFeatureConfigurationDto;
88
- multiTenancy?: Volo_Abp_AspNetCore_Mvc_MultiTenancy_MultiTenancyInfoDto;
89
- currentTenant?: Volo_Abp_AspNetCore_Mvc_MultiTenancy_CurrentTenantDto;
90
- timing?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_TimingDto;
91
- clock?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ClockDto;
92
- objectExtensions?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ObjectExtensionsDto;
93
- extraProperties?: {
94
- [key: string]: unknown;
95
- } | null;
96
- };
97
-
98
- export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationFeatureConfigurationDto = {
99
- values?: {
100
- [key: string]: (string | null);
101
- } | null;
102
- };
103
-
104
- export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationGlobalFeatureConfigurationDto = {
105
- enabledFeatures?: Array<(string)> | null;
106
- };
107
-
108
- export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationConfigurationDto = {
109
- values?: {
110
- [key: string]: {
111
- [key: string]: (string);
112
- };
113
- } | null;
114
- resources?: {
115
- [key: string]: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationResourceDto;
116
- } | null;
117
- languages?: Array<Volo_Abp_Localization_LanguageInfo> | null;
118
- currentCulture?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_CurrentCultureDto;
119
- defaultResourceName?: string | null;
120
- languagesMap?: {
121
- [key: string]: Array<Volo_Abp_NameValue>;
122
- } | null;
123
- languageFilesMap?: {
124
- [key: string]: Array<Volo_Abp_NameValue>;
125
- } | null;
126
- };
127
-
128
- export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationDto = {
129
- resources?: {
130
- [key: string]: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationResourceDto;
131
- } | null;
132
- };
133
-
134
- export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationResourceDto = {
135
- texts?: {
136
- [key: string]: (string);
137
- } | null;
138
- baseResources?: Array<(string)> | null;
139
- };
140
-
141
- export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationSettingConfigurationDto = {
142
- values?: {
143
- [key: string]: (string | null);
144
- } | null;
145
- };
146
-
147
- export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ClockDto = {
148
- kind?: string | null;
149
- };
150
-
151
- export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_CurrentCultureDto = {
152
- displayName?: string | null;
153
- englishName?: string | null;
154
- threeLetterIsoLanguageName?: string | null;
155
- twoLetterIsoLanguageName?: string | null;
156
- isRightToLeft?: boolean;
157
- cultureName?: string | null;
158
- name?: string | null;
159
- nativeName?: string | null;
160
- dateTimeFormat?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_DateTimeFormatDto;
161
- };
162
-
163
- export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_CurrentUserDto = {
164
- isAuthenticated?: boolean;
165
- id?: string | null;
166
- tenantId?: string | null;
167
- impersonatorUserId?: string | null;
168
- impersonatorTenantId?: string | null;
169
- impersonatorUserName?: string | null;
170
- impersonatorTenantName?: string | null;
171
- userName?: string | null;
172
- name?: string | null;
173
- surName?: string | null;
174
- email?: string | null;
175
- emailVerified?: boolean;
176
- phoneNumber?: string | null;
177
- phoneNumberVerified?: boolean;
178
- roles?: Array<(string)> | null;
179
- };
180
-
181
- export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_DateTimeFormatDto = {
182
- calendarAlgorithmType?: string | null;
183
- dateTimeFormatLong?: string | null;
184
- shortDatePattern?: string | null;
185
- fullDateTimePattern?: string | null;
186
- dateSeparator?: string | null;
187
- shortTimePattern?: string | null;
188
- longTimePattern?: string | null;
189
- };
190
-
191
- export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_IanaTimeZone = {
192
- timeZoneName?: string | null;
193
- };
194
-
195
- export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_EntityExtensionDto = {
196
- properties?: {
197
- [key: string]: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyDto;
198
- } | null;
199
- configuration?: {
200
- [key: string]: unknown;
201
- } | null;
202
- };
203
-
204
- export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionEnumDto = {
205
- fields?: Array<Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionEnumFieldDto> | null;
206
- localizationResource?: string | null;
207
- };
208
-
209
- export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionEnumFieldDto = {
210
- name?: string | null;
211
- value?: unknown;
212
- };
213
-
214
- export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiCreateDto = {
215
- isAvailable?: boolean;
216
- };
217
-
218
- export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiDto = {
219
- onGet?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiGetDto;
220
- onCreate?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiCreateDto;
221
- onUpdate?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiUpdateDto;
222
- };
223
-
224
- export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiGetDto = {
225
- isAvailable?: boolean;
226
- };
227
-
228
- export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiUpdateDto = {
229
- isAvailable?: boolean;
230
- };
231
-
232
- export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyAttributeDto = {
233
- typeSimple?: string | null;
234
- config?: {
235
- [key: string]: unknown;
236
- } | null;
237
- };
238
-
239
- export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyDto = {
240
- type?: string | null;
241
- typeSimple?: string | null;
242
- displayName?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_LocalizableStringDto;
243
- api?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiDto;
244
- ui?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiDto;
245
- attributes?: Array<Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyAttributeDto> | null;
246
- configuration?: {
247
- [key: string]: unknown;
248
- } | null;
249
- defaultValue?: unknown;
250
- };
251
-
252
- export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiDto = {
253
- onTable?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiTableDto;
254
- onCreateForm?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiFormDto;
255
- onEditForm?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiFormDto;
256
- lookup?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiLookupDto;
257
- };
258
-
259
- export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiFormDto = {
260
- isVisible?: boolean;
261
- };
262
-
263
- export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiLookupDto = {
264
- url?: string | null;
265
- resultListPropertyName?: string | null;
266
- displayPropertyName?: string | null;
267
- valuePropertyName?: string | null;
268
- filterParamName?: string | null;
269
- };
270
-
271
- export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiTableDto = {
272
- isVisible?: boolean;
273
- };
274
-
275
- export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_LocalizableStringDto = {
276
- name?: string | null;
277
- resource?: string | null;
278
- };
279
-
280
- export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ModuleExtensionDto = {
281
- entities?: {
282
- [key: string]: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_EntityExtensionDto;
283
- } | null;
284
- configuration?: {
285
- [key: string]: unknown;
286
- } | null;
287
- };
288
-
289
- export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ObjectExtensionsDto = {
290
- modules?: {
291
- [key: string]: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ModuleExtensionDto;
292
- } | null;
293
- enums?: {
294
- [key: string]: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionEnumDto;
295
- } | null;
296
- };
297
-
298
- export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_TimeZone = {
299
- iana?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_IanaTimeZone;
300
- windows?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_WindowsTimeZone;
301
- };
302
-
303
- export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_TimingDto = {
304
- timeZone?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_TimeZone;
305
- };
306
-
307
- export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_WindowsTimeZone = {
308
- timeZoneId?: string | null;
309
- };
310
-
311
- export type Volo_Abp_AspNetCore_Mvc_MultiTenancy_CurrentTenantDto = {
312
- id?: string | null;
313
- name?: string | null;
314
- isAvailable?: boolean;
315
- };
316
-
317
- export type Volo_Abp_AspNetCore_Mvc_MultiTenancy_MultiTenancyInfoDto = {
318
- isEnabled?: boolean;
319
- };
320
-
321
- export type Volo_Abp_Http_Modeling_ActionApiDescriptionModel = {
322
- uniqueName?: string | null;
323
- name?: string | null;
324
- httpMethod?: string | null;
325
- url?: string | null;
326
- supportedVersions?: Array<(string)> | null;
327
- parametersOnMethod?: Array<Volo_Abp_Http_Modeling_MethodParameterApiDescriptionModel> | null;
328
- parameters?: Array<Volo_Abp_Http_Modeling_ParameterApiDescriptionModel> | null;
329
- returnValue?: Volo_Abp_Http_Modeling_ReturnValueApiDescriptionModel;
330
- allowAnonymous?: boolean | null;
331
- implementFrom?: string | null;
332
- };
333
-
334
- export type Volo_Abp_Http_Modeling_ApplicationApiDescriptionModel = {
335
- modules?: {
336
- [key: string]: Volo_Abp_Http_Modeling_ModuleApiDescriptionModel;
337
- } | null;
338
- types?: {
339
- [key: string]: Volo_Abp_Http_Modeling_TypeApiDescriptionModel;
340
- } | null;
341
- };
342
-
343
- export type Volo_Abp_Http_Modeling_ControllerApiDescriptionModel = {
344
- controllerName?: string | null;
345
- controllerGroupName?: string | null;
346
- isRemoteService?: boolean;
347
- isIntegrationService?: boolean;
348
- apiVersion?: string | null;
349
- type?: string | null;
350
- interfaces?: Array<Volo_Abp_Http_Modeling_ControllerInterfaceApiDescriptionModel> | null;
351
- actions?: {
352
- [key: string]: Volo_Abp_Http_Modeling_ActionApiDescriptionModel;
353
- } | null;
354
- };
355
-
356
- export type Volo_Abp_Http_Modeling_ControllerInterfaceApiDescriptionModel = {
357
- type?: string | null;
358
- name?: string | null;
359
- methods?: Array<Volo_Abp_Http_Modeling_InterfaceMethodApiDescriptionModel> | null;
360
- };
361
-
362
- export type Volo_Abp_Http_Modeling_InterfaceMethodApiDescriptionModel = {
363
- name?: string | null;
364
- parametersOnMethod?: Array<Volo_Abp_Http_Modeling_MethodParameterApiDescriptionModel> | null;
365
- returnValue?: Volo_Abp_Http_Modeling_ReturnValueApiDescriptionModel;
366
- };
367
-
368
- export type Volo_Abp_Http_Modeling_MethodParameterApiDescriptionModel = {
369
- name?: string | null;
370
- typeAsString?: string | null;
371
- type?: string | null;
372
- typeSimple?: string | null;
373
- isOptional?: boolean;
374
- defaultValue?: unknown;
375
- };
376
-
377
- export type Volo_Abp_Http_Modeling_ModuleApiDescriptionModel = {
378
- rootPath?: string | null;
379
- remoteServiceName?: string | null;
380
- controllers?: {
381
- [key: string]: Volo_Abp_Http_Modeling_ControllerApiDescriptionModel;
382
- } | null;
383
- };
384
-
385
- export type Volo_Abp_Http_Modeling_ParameterApiDescriptionModel = {
386
- nameOnMethod?: string | null;
387
- name?: string | null;
388
- jsonName?: string | null;
389
- type?: string | null;
390
- typeSimple?: string | null;
391
- isOptional?: boolean;
392
- defaultValue?: unknown;
393
- constraintTypes?: Array<(string)> | null;
394
- bindingSourceId?: string | null;
395
- descriptorName?: string | null;
396
- };
397
-
398
- export type Volo_Abp_Http_Modeling_PropertyApiDescriptionModel = {
399
- name?: string | null;
400
- jsonName?: string | null;
401
- type?: string | null;
402
- typeSimple?: string | null;
403
- isRequired?: boolean;
404
- minLength?: number | null;
405
- maxLength?: number | null;
406
- minimum?: string | null;
407
- maximum?: string | null;
408
- regex?: string | null;
409
- };
410
-
411
- export type Volo_Abp_Http_Modeling_ReturnValueApiDescriptionModel = {
412
- type?: string | null;
413
- typeSimple?: string | null;
414
- };
415
-
416
- export type Volo_Abp_Http_Modeling_TypeApiDescriptionModel = {
417
- baseType?: string | null;
418
- isEnum?: boolean;
419
- enumNames?: Array<(string)> | null;
420
- enumValues?: Array<unknown> | null;
421
- genericArguments?: Array<(string)> | null;
422
- properties?: Array<Volo_Abp_Http_Modeling_PropertyApiDescriptionModel> | null;
423
- };
424
-
425
- export type Volo_Abp_Http_RemoteServiceErrorInfo = {
426
- code?: string | null;
427
- message?: string | null;
428
- details?: string | null;
429
- data?: {
430
- [key: string]: unknown;
431
- } | null;
432
- validationErrors?: Array<Volo_Abp_Http_RemoteServiceValidationErrorInfo> | null;
433
- };
434
-
435
- export type Volo_Abp_Http_RemoteServiceErrorResponse = {
436
- error?: Volo_Abp_Http_RemoteServiceErrorInfo;
437
- };
438
-
439
- export type Volo_Abp_Http_RemoteServiceValidationErrorInfo = {
440
- message?: string | null;
441
- members?: Array<(string)> | null;
442
- };
443
-
444
- export type Volo_Abp_Localization_LanguageInfo = {
445
- cultureName?: string | null;
446
- uiCultureName?: string | null;
447
- displayName?: string | null;
448
- readonly twoLetterISOLanguageName?: string | null;
449
- flagIcon?: string | null;
450
- };
451
-
452
- export type Volo_Abp_NameValue = {
453
- name?: string | null;
454
- value?: string | null;
455
- };
456
-
457
- export type Volo_Abp_SettingManagement_EmailSettingsDto = {
458
- smtpHost?: string | null;
459
- smtpPort?: number;
460
- smtpUserName?: string | null;
461
- smtpPassword?: string | null;
462
- smtpDomain?: string | null;
463
- smtpEnableSsl?: boolean;
464
- smtpUseDefaultCredentials?: boolean;
465
- defaultFromAddress?: string | null;
466
- defaultFromDisplayName?: string | null;
467
- };
468
-
469
- export type Volo_Abp_SettingManagement_SendTestEmailInput = {
470
- senderEmailAddress: string;
471
- targetEmailAddress: string;
472
- subject: string;
473
- body?: string | null;
474
- };
475
-
476
- export type Volo_Abp_SettingManagement_UpdateEmailSettingsDto = {
477
- smtpHost?: string | null;
478
- smtpPort?: number;
479
- smtpUserName?: string | null;
480
- smtpPassword?: string | null;
481
- smtpDomain?: string | null;
482
- smtpEnableSsl?: boolean;
483
- smtpUseDefaultCredentials?: boolean;
484
- defaultFromAddress: string;
485
- defaultFromDisplayName: string;
486
- };
487
-
488
- export type GetApiAbpApiDefinitionData = {
489
- includeTypes?: boolean;
490
- };
491
-
492
- export type GetApiAbpApiDefinitionResponse = Volo_Abp_Http_Modeling_ApplicationApiDescriptionModel;
493
-
494
- export type GetApiAbpApplicationConfigurationData = {
495
- includeLocalizationResources?: boolean;
496
- };
497
-
498
- export type GetApiAbpApplicationConfigurationResponse = Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationConfigurationDto;
499
-
500
- export type GetApiAbpApplicationLocalizationData = {
501
- cultureName: string;
502
- onlyDynamics?: boolean;
503
- };
504
-
505
- export type GetApiAbpApplicationLocalizationResponse = Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationDto;
506
-
507
- export type GetApiSettingServiceCountrySettingsResponse = UniRefund_SettingService_CountrySettings_CountrySettingDto;
508
-
509
- export type PostApiSettingServiceCountrySettingsResponse = unknown;
510
-
511
- export type GetApiSettingManagementEmailingResponse = Volo_Abp_SettingManagement_EmailSettingsDto;
512
-
513
- export type PostApiSettingManagementEmailingData = {
514
- requestBody?: Volo_Abp_SettingManagement_UpdateEmailSettingsDto;
515
- };
516
-
517
- export type PostApiSettingManagementEmailingResponse = unknown;
518
-
519
- export type PostApiSettingManagementEmailingSendTestEmailData = {
520
- requestBody?: Volo_Abp_SettingManagement_SendTestEmailInput;
521
- };
522
-
523
- export type PostApiSettingManagementEmailingSendTestEmailResponse = unknown;
524
-
525
- export type GetApiSettingServiceSampleResponse = UniRefund_SettingService_Samples_SampleDto;
526
-
527
- export type GetApiSettingServiceSampleAuthorizedResponse = UniRefund_SettingService_Samples_SampleDto;
528
-
529
- export type GetApiSettingManagementTimezoneResponse = string;
530
-
531
- export type PostApiSettingManagementTimezoneData = {
532
- timezone?: string;
533
- };
534
-
535
- export type PostApiSettingManagementTimezoneResponse = unknown;
536
-
537
- export type GetApiSettingManagementTimezoneTimezonesResponse = Array<Volo_Abp_NameValue>;
538
-
539
- export type $OpenApiTs = {
540
- '/api/abp/api-definition': {
541
- get: {
542
- req: GetApiAbpApiDefinitionData;
543
- res: {
544
- /**
545
- * Success
546
- */
547
- 200: Volo_Abp_Http_Modeling_ApplicationApiDescriptionModel;
548
- /**
549
- * Bad Request
550
- */
551
- 400: Volo_Abp_Http_RemoteServiceErrorResponse;
552
- /**
553
- * Unauthorized
554
- */
555
- 401: Volo_Abp_Http_RemoteServiceErrorResponse;
556
- /**
557
- * Forbidden
558
- */
559
- 403: Volo_Abp_Http_RemoteServiceErrorResponse;
560
- /**
561
- * Not Found
562
- */
563
- 404: Volo_Abp_Http_RemoteServiceErrorResponse;
564
- /**
565
- * Server Error
566
- */
567
- 500: Volo_Abp_Http_RemoteServiceErrorResponse;
568
- /**
569
- * Server Error
570
- */
571
- 501: Volo_Abp_Http_RemoteServiceErrorResponse;
572
- };
573
- };
574
- };
575
- '/api/abp/application-configuration': {
576
- get: {
577
- req: GetApiAbpApplicationConfigurationData;
578
- res: {
579
- /**
580
- * Success
581
- */
582
- 200: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationConfigurationDto;
583
- /**
584
- * Bad Request
585
- */
586
- 400: Volo_Abp_Http_RemoteServiceErrorResponse;
587
- /**
588
- * Unauthorized
589
- */
590
- 401: Volo_Abp_Http_RemoteServiceErrorResponse;
591
- /**
592
- * Forbidden
593
- */
594
- 403: Volo_Abp_Http_RemoteServiceErrorResponse;
595
- /**
596
- * Not Found
597
- */
598
- 404: Volo_Abp_Http_RemoteServiceErrorResponse;
599
- /**
600
- * Server Error
601
- */
602
- 500: Volo_Abp_Http_RemoteServiceErrorResponse;
603
- /**
604
- * Server Error
605
- */
606
- 501: Volo_Abp_Http_RemoteServiceErrorResponse;
607
- };
608
- };
609
- };
610
- '/api/abp/application-localization': {
611
- get: {
612
- req: GetApiAbpApplicationLocalizationData;
613
- res: {
614
- /**
615
- * Success
616
- */
617
- 200: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationDto;
618
- /**
619
- * Bad Request
620
- */
621
- 400: Volo_Abp_Http_RemoteServiceErrorResponse;
622
- /**
623
- * Unauthorized
624
- */
625
- 401: Volo_Abp_Http_RemoteServiceErrorResponse;
626
- /**
627
- * Forbidden
628
- */
629
- 403: Volo_Abp_Http_RemoteServiceErrorResponse;
630
- /**
631
- * Not Found
632
- */
633
- 404: Volo_Abp_Http_RemoteServiceErrorResponse;
634
- /**
635
- * Server Error
636
- */
637
- 500: Volo_Abp_Http_RemoteServiceErrorResponse;
638
- /**
639
- * Server Error
640
- */
641
- 501: Volo_Abp_Http_RemoteServiceErrorResponse;
642
- };
643
- };
644
- };
645
- '/api/setting-service/country-settings': {
646
- get: {
647
- res: {
648
- /**
649
- * Success
650
- */
651
- 200: UniRefund_SettingService_CountrySettings_CountrySettingDto;
652
- /**
653
- * Bad Request
654
- */
655
- 400: Volo_Abp_Http_RemoteServiceErrorResponse;
656
- /**
657
- * Unauthorized
658
- */
659
- 401: Volo_Abp_Http_RemoteServiceErrorResponse;
660
- /**
661
- * Forbidden
662
- */
663
- 403: Volo_Abp_Http_RemoteServiceErrorResponse;
664
- /**
665
- * Not Found
666
- */
667
- 404: Volo_Abp_Http_RemoteServiceErrorResponse;
668
- /**
669
- * Server Error
670
- */
671
- 500: Volo_Abp_Http_RemoteServiceErrorResponse;
672
- /**
673
- * Server Error
674
- */
675
- 501: Volo_Abp_Http_RemoteServiceErrorResponse;
676
- };
677
- };
678
- post: {
679
- res: {
680
- /**
681
- * Success
682
- */
683
- 200: unknown;
684
- /**
685
- * Bad Request
686
- */
687
- 400: Volo_Abp_Http_RemoteServiceErrorResponse;
688
- /**
689
- * Unauthorized
690
- */
691
- 401: Volo_Abp_Http_RemoteServiceErrorResponse;
692
- /**
693
- * Forbidden
694
- */
695
- 403: Volo_Abp_Http_RemoteServiceErrorResponse;
696
- /**
697
- * Not Found
698
- */
699
- 404: Volo_Abp_Http_RemoteServiceErrorResponse;
700
- /**
701
- * Server Error
702
- */
703
- 500: Volo_Abp_Http_RemoteServiceErrorResponse;
704
- /**
705
- * Server Error
706
- */
707
- 501: Volo_Abp_Http_RemoteServiceErrorResponse;
708
- };
709
- };
710
- };
711
- '/api/setting-management/emailing': {
712
- get: {
713
- res: {
714
- /**
715
- * Success
716
- */
717
- 200: Volo_Abp_SettingManagement_EmailSettingsDto;
718
- /**
719
- * Bad Request
720
- */
721
- 400: Volo_Abp_Http_RemoteServiceErrorResponse;
722
- /**
723
- * Unauthorized
724
- */
725
- 401: Volo_Abp_Http_RemoteServiceErrorResponse;
726
- /**
727
- * Forbidden
728
- */
729
- 403: Volo_Abp_Http_RemoteServiceErrorResponse;
730
- /**
731
- * Not Found
732
- */
733
- 404: Volo_Abp_Http_RemoteServiceErrorResponse;
734
- /**
735
- * Server Error
736
- */
737
- 500: Volo_Abp_Http_RemoteServiceErrorResponse;
738
- /**
739
- * Server Error
740
- */
741
- 501: Volo_Abp_Http_RemoteServiceErrorResponse;
742
- };
743
- };
744
- post: {
745
- req: PostApiSettingManagementEmailingData;
746
- res: {
747
- /**
748
- * Success
749
- */
750
- 200: unknown;
751
- /**
752
- * Bad Request
753
- */
754
- 400: Volo_Abp_Http_RemoteServiceErrorResponse;
755
- /**
756
- * Unauthorized
757
- */
758
- 401: Volo_Abp_Http_RemoteServiceErrorResponse;
759
- /**
760
- * Forbidden
761
- */
762
- 403: Volo_Abp_Http_RemoteServiceErrorResponse;
763
- /**
764
- * Not Found
765
- */
766
- 404: Volo_Abp_Http_RemoteServiceErrorResponse;
767
- /**
768
- * Server Error
769
- */
770
- 500: Volo_Abp_Http_RemoteServiceErrorResponse;
771
- /**
772
- * Server Error
773
- */
774
- 501: Volo_Abp_Http_RemoteServiceErrorResponse;
775
- };
776
- };
777
- };
778
- '/api/setting-management/emailing/send-test-email': {
779
- post: {
780
- req: PostApiSettingManagementEmailingSendTestEmailData;
781
- res: {
782
- /**
783
- * Success
784
- */
785
- 200: unknown;
786
- /**
787
- * Bad Request
788
- */
789
- 400: Volo_Abp_Http_RemoteServiceErrorResponse;
790
- /**
791
- * Unauthorized
792
- */
793
- 401: Volo_Abp_Http_RemoteServiceErrorResponse;
794
- /**
795
- * Forbidden
796
- */
797
- 403: Volo_Abp_Http_RemoteServiceErrorResponse;
798
- /**
799
- * Not Found
800
- */
801
- 404: Volo_Abp_Http_RemoteServiceErrorResponse;
802
- /**
803
- * Server Error
804
- */
805
- 500: Volo_Abp_Http_RemoteServiceErrorResponse;
806
- /**
807
- * Server Error
808
- */
809
- 501: Volo_Abp_Http_RemoteServiceErrorResponse;
810
- };
811
- };
812
- };
813
- '/api/SettingService/sample': {
814
- get: {
815
- res: {
816
- /**
817
- * Success
818
- */
819
- 200: UniRefund_SettingService_Samples_SampleDto;
820
- /**
821
- * Bad Request
822
- */
823
- 400: Volo_Abp_Http_RemoteServiceErrorResponse;
824
- /**
825
- * Unauthorized
826
- */
827
- 401: Volo_Abp_Http_RemoteServiceErrorResponse;
828
- /**
829
- * Forbidden
830
- */
831
- 403: Volo_Abp_Http_RemoteServiceErrorResponse;
832
- /**
833
- * Not Found
834
- */
835
- 404: Volo_Abp_Http_RemoteServiceErrorResponse;
836
- /**
837
- * Server Error
838
- */
839
- 500: Volo_Abp_Http_RemoteServiceErrorResponse;
840
- /**
841
- * Server Error
842
- */
843
- 501: Volo_Abp_Http_RemoteServiceErrorResponse;
844
- };
845
- };
846
- };
847
- '/api/SettingService/sample/authorized': {
848
- get: {
849
- res: {
850
- /**
851
- * Success
852
- */
853
- 200: UniRefund_SettingService_Samples_SampleDto;
854
- /**
855
- * Bad Request
856
- */
857
- 400: Volo_Abp_Http_RemoteServiceErrorResponse;
858
- /**
859
- * Unauthorized
860
- */
861
- 401: Volo_Abp_Http_RemoteServiceErrorResponse;
862
- /**
863
- * Forbidden
864
- */
865
- 403: Volo_Abp_Http_RemoteServiceErrorResponse;
866
- /**
867
- * Not Found
868
- */
869
- 404: Volo_Abp_Http_RemoteServiceErrorResponse;
870
- /**
871
- * Server Error
872
- */
873
- 500: Volo_Abp_Http_RemoteServiceErrorResponse;
874
- /**
875
- * Server Error
876
- */
877
- 501: Volo_Abp_Http_RemoteServiceErrorResponse;
878
- };
879
- };
880
- };
881
- '/api/setting-management/timezone': {
882
- get: {
883
- res: {
884
- /**
885
- * Success
886
- */
887
- 200: string;
888
- /**
889
- * Bad Request
890
- */
891
- 400: Volo_Abp_Http_RemoteServiceErrorResponse;
892
- /**
893
- * Unauthorized
894
- */
895
- 401: Volo_Abp_Http_RemoteServiceErrorResponse;
896
- /**
897
- * Forbidden
898
- */
899
- 403: Volo_Abp_Http_RemoteServiceErrorResponse;
900
- /**
901
- * Not Found
902
- */
903
- 404: Volo_Abp_Http_RemoteServiceErrorResponse;
904
- /**
905
- * Server Error
906
- */
907
- 500: Volo_Abp_Http_RemoteServiceErrorResponse;
908
- /**
909
- * Server Error
910
- */
911
- 501: Volo_Abp_Http_RemoteServiceErrorResponse;
912
- };
913
- };
914
- post: {
915
- req: PostApiSettingManagementTimezoneData;
916
- res: {
917
- /**
918
- * Success
919
- */
920
- 200: unknown;
921
- /**
922
- * Bad Request
923
- */
924
- 400: Volo_Abp_Http_RemoteServiceErrorResponse;
925
- /**
926
- * Unauthorized
927
- */
928
- 401: Volo_Abp_Http_RemoteServiceErrorResponse;
929
- /**
930
- * Forbidden
931
- */
932
- 403: Volo_Abp_Http_RemoteServiceErrorResponse;
933
- /**
934
- * Not Found
935
- */
936
- 404: Volo_Abp_Http_RemoteServiceErrorResponse;
937
- /**
938
- * Server Error
939
- */
940
- 500: Volo_Abp_Http_RemoteServiceErrorResponse;
941
- /**
942
- * Server Error
943
- */
944
- 501: Volo_Abp_Http_RemoteServiceErrorResponse;
945
- };
946
- };
947
- };
948
- '/api/setting-management/timezone/timezones': {
949
- get: {
950
- res: {
951
- /**
952
- * Success
953
- */
954
- 200: Array<Volo_Abp_NameValue>;
955
- /**
956
- * Bad Request
957
- */
958
- 400: Volo_Abp_Http_RemoteServiceErrorResponse;
959
- /**
960
- * Unauthorized
961
- */
962
- 401: Volo_Abp_Http_RemoteServiceErrorResponse;
963
- /**
964
- * Forbidden
965
- */
966
- 403: Volo_Abp_Http_RemoteServiceErrorResponse;
967
- /**
968
- * Not Found
969
- */
970
- 404: Volo_Abp_Http_RemoteServiceErrorResponse;
971
- /**
972
- * Server Error
973
- */
974
- 500: Volo_Abp_Http_RemoteServiceErrorResponse;
975
- /**
976
- * Server Error
977
- */
978
- 501: Volo_Abp_Http_RemoteServiceErrorResponse;
979
- };
980
- };
981
- };
1
+ // This file is auto-generated by @hey-api/openapi-ts
2
+
3
+ export type UniRefund_SettingService_Bonds_BondDto = {
4
+ key?: string | null;
5
+ pattern?: string | null;
6
+ type?: string | null;
7
+ };
8
+
9
+ export type UniRefund_SettingService_CountrySettings_CountrySettingDto = {
10
+ isEnabled?: boolean;
11
+ groups: Array<UniRefund_SettingService_Groups_GroupDto>;
12
+ };
13
+
14
+ export type UniRefund_SettingService_Groups_GroupDto = {
15
+ isEnabled?: boolean;
16
+ key: string;
17
+ displayName: string;
18
+ description?: string | null;
19
+ items?: Array<UniRefund_SettingService_Items_GroupItemDto> | null;
20
+ };
21
+
22
+ export type UniRefund_SettingService_Items_GroupItemDto = {
23
+ isEnabled: boolean;
24
+ isRequired: boolean;
25
+ isActive?: boolean | null;
26
+ pattern?: string | null;
27
+ depth?: number;
28
+ description?: string | null;
29
+ displayName: string;
30
+ key: string;
31
+ parentName?: string | null;
32
+ value?: string | null;
33
+ defaultValue?: string | null;
34
+ bonds?: Array<UniRefund_SettingService_Bonds_BondDto> | null;
35
+ subItems?: Array<UniRefund_SettingService_Items_GroupItemDto> | null;
36
+ valueType?: UniRefund_SettingService_Settings_ValueTypes_ValueTypeModelDto;
37
+ };
38
+
39
+ export type UniRefund_SettingService_Samples_SampleDto = {
40
+ value?: number;
41
+ };
42
+
43
+ export type UniRefund_SettingService_Settings_ValueTypes_ItemSources_ItemSourceDto = {
44
+ items?: Array<UniRefund_SettingService_Settings_ValueTypes_ItemSources_Items_ItemDto> | null;
45
+ };
46
+
47
+ export type UniRefund_SettingService_Settings_ValueTypes_ItemSources_Items_DisplayTexts_DisplayTextDto = {
48
+ name?: string | null;
49
+ resourceName?: string | null;
50
+ };
51
+
52
+ export type UniRefund_SettingService_Settings_ValueTypes_ItemSources_Items_ItemDto = {
53
+ displayText?: UniRefund_SettingService_Settings_ValueTypes_ItemSources_Items_DisplayTexts_DisplayTextDto;
54
+ value?: string | null;
55
+ };
56
+
57
+ export type UniRefund_SettingService_Settings_ValueTypes_Validators_Properties_ValidatorPropertiesDto = {
58
+ minValue?: number;
59
+ maxValue?: number;
60
+ };
61
+
62
+ export type UniRefund_SettingService_Settings_ValueTypes_Validators_ValidatorDto = {
63
+ name?: string | null;
64
+ properties?: UniRefund_SettingService_Settings_ValueTypes_Validators_Properties_ValidatorPropertiesDto;
65
+ };
66
+
67
+ export type UniRefund_SettingService_Settings_ValueTypes_ValueTypeModelDto = {
68
+ itemSource?: UniRefund_SettingService_Settings_ValueTypes_ItemSources_ItemSourceDto;
69
+ name?: string | null;
70
+ properties?: string | null;
71
+ validator?: UniRefund_SettingService_Settings_ValueTypes_Validators_ValidatorDto;
72
+ };
73
+
74
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationAuthConfigurationDto = {
75
+ grantedPolicies?: {
76
+ [key: string]: (boolean);
77
+ } | null;
78
+ };
79
+
80
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationConfigurationDto = {
81
+ localization?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationConfigurationDto;
82
+ auth?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationAuthConfigurationDto;
83
+ setting?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationSettingConfigurationDto;
84
+ currentUser?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_CurrentUserDto;
85
+ features?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationFeatureConfigurationDto;
86
+ globalFeatures?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationGlobalFeatureConfigurationDto;
87
+ multiTenancy?: Volo_Abp_AspNetCore_Mvc_MultiTenancy_MultiTenancyInfoDto;
88
+ currentTenant?: Volo_Abp_AspNetCore_Mvc_MultiTenancy_CurrentTenantDto;
89
+ timing?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_TimingDto;
90
+ clock?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ClockDto;
91
+ objectExtensions?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ObjectExtensionsDto;
92
+ extraProperties?: {
93
+ [key: string]: unknown;
94
+ } | null;
95
+ };
96
+
97
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationFeatureConfigurationDto = {
98
+ values?: {
99
+ [key: string]: (string | null);
100
+ } | null;
101
+ };
102
+
103
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationGlobalFeatureConfigurationDto = {
104
+ enabledFeatures?: Array<(string)> | null;
105
+ };
106
+
107
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationConfigurationDto = {
108
+ values?: {
109
+ [key: string]: {
110
+ [key: string]: (string);
111
+ };
112
+ } | null;
113
+ resources?: {
114
+ [key: string]: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationResourceDto;
115
+ } | null;
116
+ languages?: Array<Volo_Abp_Localization_LanguageInfo> | null;
117
+ currentCulture?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_CurrentCultureDto;
118
+ defaultResourceName?: string | null;
119
+ languagesMap?: {
120
+ [key: string]: Array<Volo_Abp_NameValue>;
121
+ } | null;
122
+ languageFilesMap?: {
123
+ [key: string]: Array<Volo_Abp_NameValue>;
124
+ } | null;
125
+ };
126
+
127
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationDto = {
128
+ resources?: {
129
+ [key: string]: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationResourceDto;
130
+ } | null;
131
+ };
132
+
133
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationResourceDto = {
134
+ texts?: {
135
+ [key: string]: (string);
136
+ } | null;
137
+ baseResources?: Array<(string)> | null;
138
+ };
139
+
140
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationSettingConfigurationDto = {
141
+ values?: {
142
+ [key: string]: (string | null);
143
+ } | null;
144
+ };
145
+
146
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ClockDto = {
147
+ kind?: string | null;
148
+ };
149
+
150
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_CurrentCultureDto = {
151
+ displayName?: string | null;
152
+ englishName?: string | null;
153
+ threeLetterIsoLanguageName?: string | null;
154
+ twoLetterIsoLanguageName?: string | null;
155
+ isRightToLeft?: boolean;
156
+ cultureName?: string | null;
157
+ name?: string | null;
158
+ nativeName?: string | null;
159
+ dateTimeFormat?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_DateTimeFormatDto;
160
+ };
161
+
162
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_CurrentUserDto = {
163
+ isAuthenticated?: boolean;
164
+ id?: string | null;
165
+ tenantId?: string | null;
166
+ impersonatorUserId?: string | null;
167
+ impersonatorTenantId?: string | null;
168
+ impersonatorUserName?: string | null;
169
+ impersonatorTenantName?: string | null;
170
+ userName?: string | null;
171
+ name?: string | null;
172
+ surName?: string | null;
173
+ email?: string | null;
174
+ emailVerified?: boolean;
175
+ phoneNumber?: string | null;
176
+ phoneNumberVerified?: boolean;
177
+ roles?: Array<(string)> | null;
178
+ };
179
+
180
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_DateTimeFormatDto = {
181
+ calendarAlgorithmType?: string | null;
182
+ dateTimeFormatLong?: string | null;
183
+ shortDatePattern?: string | null;
184
+ fullDateTimePattern?: string | null;
185
+ dateSeparator?: string | null;
186
+ shortTimePattern?: string | null;
187
+ longTimePattern?: string | null;
188
+ };
189
+
190
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_IanaTimeZone = {
191
+ timeZoneName?: string | null;
192
+ };
193
+
194
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_EntityExtensionDto = {
195
+ properties?: {
196
+ [key: string]: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyDto;
197
+ } | null;
198
+ configuration?: {
199
+ [key: string]: unknown;
200
+ } | null;
201
+ };
202
+
203
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionEnumDto = {
204
+ fields?: Array<Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionEnumFieldDto> | null;
205
+ localizationResource?: string | null;
206
+ };
207
+
208
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionEnumFieldDto = {
209
+ name?: string | null;
210
+ value?: unknown;
211
+ };
212
+
213
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiCreateDto = {
214
+ isAvailable?: boolean;
215
+ };
216
+
217
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiDto = {
218
+ onGet?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiGetDto;
219
+ onCreate?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiCreateDto;
220
+ onUpdate?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiUpdateDto;
221
+ };
222
+
223
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiGetDto = {
224
+ isAvailable?: boolean;
225
+ };
226
+
227
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiUpdateDto = {
228
+ isAvailable?: boolean;
229
+ };
230
+
231
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyAttributeDto = {
232
+ typeSimple?: string | null;
233
+ config?: {
234
+ [key: string]: unknown;
235
+ } | null;
236
+ };
237
+
238
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyDto = {
239
+ type?: string | null;
240
+ typeSimple?: string | null;
241
+ displayName?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_LocalizableStringDto;
242
+ api?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiDto;
243
+ ui?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiDto;
244
+ attributes?: Array<Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyAttributeDto> | null;
245
+ configuration?: {
246
+ [key: string]: unknown;
247
+ } | null;
248
+ defaultValue?: unknown;
249
+ };
250
+
251
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiDto = {
252
+ onTable?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiTableDto;
253
+ onCreateForm?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiFormDto;
254
+ onEditForm?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiFormDto;
255
+ lookup?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiLookupDto;
256
+ };
257
+
258
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiFormDto = {
259
+ isVisible?: boolean;
260
+ };
261
+
262
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiLookupDto = {
263
+ url?: string | null;
264
+ resultListPropertyName?: string | null;
265
+ displayPropertyName?: string | null;
266
+ valuePropertyName?: string | null;
267
+ filterParamName?: string | null;
268
+ };
269
+
270
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiTableDto = {
271
+ isVisible?: boolean;
272
+ };
273
+
274
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_LocalizableStringDto = {
275
+ name?: string | null;
276
+ resource?: string | null;
277
+ };
278
+
279
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ModuleExtensionDto = {
280
+ entities?: {
281
+ [key: string]: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_EntityExtensionDto;
282
+ } | null;
283
+ configuration?: {
284
+ [key: string]: unknown;
285
+ } | null;
286
+ };
287
+
288
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ObjectExtensionsDto = {
289
+ modules?: {
290
+ [key: string]: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ModuleExtensionDto;
291
+ } | null;
292
+ enums?: {
293
+ [key: string]: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionEnumDto;
294
+ } | null;
295
+ };
296
+
297
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_TimeZone = {
298
+ iana?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_IanaTimeZone;
299
+ windows?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_WindowsTimeZone;
300
+ };
301
+
302
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_TimingDto = {
303
+ timeZone?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_TimeZone;
304
+ };
305
+
306
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_WindowsTimeZone = {
307
+ timeZoneId?: string | null;
308
+ };
309
+
310
+ export type Volo_Abp_AspNetCore_Mvc_MultiTenancy_CurrentTenantDto = {
311
+ id?: string | null;
312
+ name?: string | null;
313
+ isAvailable?: boolean;
314
+ };
315
+
316
+ export type Volo_Abp_AspNetCore_Mvc_MultiTenancy_MultiTenancyInfoDto = {
317
+ isEnabled?: boolean;
318
+ };
319
+
320
+ export type Volo_Abp_Http_Modeling_ActionApiDescriptionModel = {
321
+ uniqueName?: string | null;
322
+ name?: string | null;
323
+ httpMethod?: string | null;
324
+ url?: string | null;
325
+ supportedVersions?: Array<(string)> | null;
326
+ parametersOnMethod?: Array<Volo_Abp_Http_Modeling_MethodParameterApiDescriptionModel> | null;
327
+ parameters?: Array<Volo_Abp_Http_Modeling_ParameterApiDescriptionModel> | null;
328
+ returnValue?: Volo_Abp_Http_Modeling_ReturnValueApiDescriptionModel;
329
+ allowAnonymous?: boolean | null;
330
+ implementFrom?: string | null;
331
+ };
332
+
333
+ export type Volo_Abp_Http_Modeling_ApplicationApiDescriptionModel = {
334
+ modules?: {
335
+ [key: string]: Volo_Abp_Http_Modeling_ModuleApiDescriptionModel;
336
+ } | null;
337
+ types?: {
338
+ [key: string]: Volo_Abp_Http_Modeling_TypeApiDescriptionModel;
339
+ } | null;
340
+ };
341
+
342
+ export type Volo_Abp_Http_Modeling_ControllerApiDescriptionModel = {
343
+ controllerName?: string | null;
344
+ controllerGroupName?: string | null;
345
+ isRemoteService?: boolean;
346
+ isIntegrationService?: boolean;
347
+ apiVersion?: string | null;
348
+ type?: string | null;
349
+ interfaces?: Array<Volo_Abp_Http_Modeling_ControllerInterfaceApiDescriptionModel> | null;
350
+ actions?: {
351
+ [key: string]: Volo_Abp_Http_Modeling_ActionApiDescriptionModel;
352
+ } | null;
353
+ };
354
+
355
+ export type Volo_Abp_Http_Modeling_ControllerInterfaceApiDescriptionModel = {
356
+ type?: string | null;
357
+ name?: string | null;
358
+ methods?: Array<Volo_Abp_Http_Modeling_InterfaceMethodApiDescriptionModel> | null;
359
+ };
360
+
361
+ export type Volo_Abp_Http_Modeling_InterfaceMethodApiDescriptionModel = {
362
+ name?: string | null;
363
+ parametersOnMethod?: Array<Volo_Abp_Http_Modeling_MethodParameterApiDescriptionModel> | null;
364
+ returnValue?: Volo_Abp_Http_Modeling_ReturnValueApiDescriptionModel;
365
+ };
366
+
367
+ export type Volo_Abp_Http_Modeling_MethodParameterApiDescriptionModel = {
368
+ name?: string | null;
369
+ typeAsString?: string | null;
370
+ type?: string | null;
371
+ typeSimple?: string | null;
372
+ isOptional?: boolean;
373
+ defaultValue?: unknown;
374
+ };
375
+
376
+ export type Volo_Abp_Http_Modeling_ModuleApiDescriptionModel = {
377
+ rootPath?: string | null;
378
+ remoteServiceName?: string | null;
379
+ controllers?: {
380
+ [key: string]: Volo_Abp_Http_Modeling_ControllerApiDescriptionModel;
381
+ } | null;
382
+ };
383
+
384
+ export type Volo_Abp_Http_Modeling_ParameterApiDescriptionModel = {
385
+ nameOnMethod?: string | null;
386
+ name?: string | null;
387
+ jsonName?: string | null;
388
+ type?: string | null;
389
+ typeSimple?: string | null;
390
+ isOptional?: boolean;
391
+ defaultValue?: unknown;
392
+ constraintTypes?: Array<(string)> | null;
393
+ bindingSourceId?: string | null;
394
+ descriptorName?: string | null;
395
+ };
396
+
397
+ export type Volo_Abp_Http_Modeling_PropertyApiDescriptionModel = {
398
+ name?: string | null;
399
+ jsonName?: string | null;
400
+ type?: string | null;
401
+ typeSimple?: string | null;
402
+ isRequired?: boolean;
403
+ minLength?: number | null;
404
+ maxLength?: number | null;
405
+ minimum?: string | null;
406
+ maximum?: string | null;
407
+ regex?: string | null;
408
+ };
409
+
410
+ export type Volo_Abp_Http_Modeling_ReturnValueApiDescriptionModel = {
411
+ type?: string | null;
412
+ typeSimple?: string | null;
413
+ };
414
+
415
+ export type Volo_Abp_Http_Modeling_TypeApiDescriptionModel = {
416
+ baseType?: string | null;
417
+ isEnum?: boolean;
418
+ enumNames?: Array<(string)> | null;
419
+ enumValues?: Array<unknown> | null;
420
+ genericArguments?: Array<(string)> | null;
421
+ properties?: Array<Volo_Abp_Http_Modeling_PropertyApiDescriptionModel> | null;
422
+ };
423
+
424
+ export type Volo_Abp_Http_RemoteServiceErrorInfo = {
425
+ code?: string | null;
426
+ message?: string | null;
427
+ details?: string | null;
428
+ data?: {
429
+ [key: string]: unknown;
430
+ } | null;
431
+ validationErrors?: Array<Volo_Abp_Http_RemoteServiceValidationErrorInfo> | null;
432
+ };
433
+
434
+ export type Volo_Abp_Http_RemoteServiceErrorResponse = {
435
+ error?: Volo_Abp_Http_RemoteServiceErrorInfo;
436
+ };
437
+
438
+ export type Volo_Abp_Http_RemoteServiceValidationErrorInfo = {
439
+ message?: string | null;
440
+ members?: Array<(string)> | null;
441
+ };
442
+
443
+ export type Volo_Abp_Localization_LanguageInfo = {
444
+ cultureName?: string | null;
445
+ uiCultureName?: string | null;
446
+ displayName?: string | null;
447
+ readonly twoLetterISOLanguageName?: string | null;
448
+ flagIcon?: string | null;
449
+ };
450
+
451
+ export type Volo_Abp_NameValue = {
452
+ name?: string | null;
453
+ value?: string | null;
454
+ };
455
+
456
+ export type Volo_Abp_SettingManagement_EmailSettingsDto = {
457
+ smtpHost?: string | null;
458
+ smtpPort?: number;
459
+ smtpUserName?: string | null;
460
+ smtpPassword?: string | null;
461
+ smtpDomain?: string | null;
462
+ smtpEnableSsl?: boolean;
463
+ smtpUseDefaultCredentials?: boolean;
464
+ defaultFromAddress?: string | null;
465
+ defaultFromDisplayName?: string | null;
466
+ };
467
+
468
+ export type Volo_Abp_SettingManagement_SendTestEmailInput = {
469
+ senderEmailAddress: string;
470
+ targetEmailAddress: string;
471
+ subject: string;
472
+ body?: string | null;
473
+ };
474
+
475
+ export type Volo_Abp_SettingManagement_UpdateEmailSettingsDto = {
476
+ smtpHost?: string | null;
477
+ smtpPort?: number;
478
+ smtpUserName?: string | null;
479
+ smtpPassword?: string | null;
480
+ smtpDomain?: string | null;
481
+ smtpEnableSsl?: boolean;
482
+ smtpUseDefaultCredentials?: boolean;
483
+ defaultFromAddress: string;
484
+ defaultFromDisplayName: string;
485
+ };
486
+
487
+ export type GetApiAbpApiDefinitionData = {
488
+ includeTypes?: boolean;
489
+ };
490
+
491
+ export type GetApiAbpApiDefinitionResponse = Volo_Abp_Http_Modeling_ApplicationApiDescriptionModel;
492
+
493
+ export type GetApiAbpApplicationConfigurationData = {
494
+ includeLocalizationResources?: boolean;
495
+ };
496
+
497
+ export type GetApiAbpApplicationConfigurationResponse = Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationConfigurationDto;
498
+
499
+ export type GetApiAbpApplicationLocalizationData = {
500
+ cultureName: string;
501
+ onlyDynamics?: boolean;
502
+ };
503
+
504
+ export type GetApiAbpApplicationLocalizationResponse = Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationDto;
505
+
506
+ export type GetApiSettingServiceCountrySettingsResponse = UniRefund_SettingService_CountrySettings_CountrySettingDto;
507
+
508
+ export type PostApiSettingServiceCountrySettingsResponse = unknown;
509
+
510
+ export type GetApiSettingManagementEmailingResponse = Volo_Abp_SettingManagement_EmailSettingsDto;
511
+
512
+ export type PostApiSettingManagementEmailingData = {
513
+ requestBody?: Volo_Abp_SettingManagement_UpdateEmailSettingsDto;
514
+ };
515
+
516
+ export type PostApiSettingManagementEmailingResponse = unknown;
517
+
518
+ export type PostApiSettingManagementEmailingSendTestEmailData = {
519
+ requestBody?: Volo_Abp_SettingManagement_SendTestEmailInput;
520
+ };
521
+
522
+ export type PostApiSettingManagementEmailingSendTestEmailResponse = unknown;
523
+
524
+ export type GetApiSettingServiceSampleResponse = UniRefund_SettingService_Samples_SampleDto;
525
+
526
+ export type GetApiSettingServiceSampleAuthorizedResponse = UniRefund_SettingService_Samples_SampleDto;
527
+
528
+ export type GetApiSettingManagementTimezoneResponse = string;
529
+
530
+ export type PostApiSettingManagementTimezoneData = {
531
+ timezone?: string;
532
+ };
533
+
534
+ export type PostApiSettingManagementTimezoneResponse = unknown;
535
+
536
+ export type GetApiSettingManagementTimezoneTimezonesResponse = Array<Volo_Abp_NameValue>;
537
+
538
+ export type $OpenApiTs = {
539
+ '/api/abp/api-definition': {
540
+ get: {
541
+ req: GetApiAbpApiDefinitionData;
542
+ res: {
543
+ /**
544
+ * Success
545
+ */
546
+ 200: Volo_Abp_Http_Modeling_ApplicationApiDescriptionModel;
547
+ /**
548
+ * Bad Request
549
+ */
550
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
551
+ /**
552
+ * Unauthorized
553
+ */
554
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
555
+ /**
556
+ * Forbidden
557
+ */
558
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
559
+ /**
560
+ * Not Found
561
+ */
562
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
563
+ /**
564
+ * Server Error
565
+ */
566
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
567
+ /**
568
+ * Server Error
569
+ */
570
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
571
+ };
572
+ };
573
+ };
574
+ '/api/abp/application-configuration': {
575
+ get: {
576
+ req: GetApiAbpApplicationConfigurationData;
577
+ res: {
578
+ /**
579
+ * Success
580
+ */
581
+ 200: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationConfigurationDto;
582
+ /**
583
+ * Bad Request
584
+ */
585
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
586
+ /**
587
+ * Unauthorized
588
+ */
589
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
590
+ /**
591
+ * Forbidden
592
+ */
593
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
594
+ /**
595
+ * Not Found
596
+ */
597
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
598
+ /**
599
+ * Server Error
600
+ */
601
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
602
+ /**
603
+ * Server Error
604
+ */
605
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
606
+ };
607
+ };
608
+ };
609
+ '/api/abp/application-localization': {
610
+ get: {
611
+ req: GetApiAbpApplicationLocalizationData;
612
+ res: {
613
+ /**
614
+ * Success
615
+ */
616
+ 200: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationDto;
617
+ /**
618
+ * Bad Request
619
+ */
620
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
621
+ /**
622
+ * Unauthorized
623
+ */
624
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
625
+ /**
626
+ * Forbidden
627
+ */
628
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
629
+ /**
630
+ * Not Found
631
+ */
632
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
633
+ /**
634
+ * Server Error
635
+ */
636
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
637
+ /**
638
+ * Server Error
639
+ */
640
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
641
+ };
642
+ };
643
+ };
644
+ '/api/setting-service/country-settings': {
645
+ get: {
646
+ res: {
647
+ /**
648
+ * Success
649
+ */
650
+ 200: UniRefund_SettingService_CountrySettings_CountrySettingDto;
651
+ /**
652
+ * Bad Request
653
+ */
654
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
655
+ /**
656
+ * Unauthorized
657
+ */
658
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
659
+ /**
660
+ * Forbidden
661
+ */
662
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
663
+ /**
664
+ * Not Found
665
+ */
666
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
667
+ /**
668
+ * Server Error
669
+ */
670
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
671
+ /**
672
+ * Server Error
673
+ */
674
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
675
+ };
676
+ };
677
+ post: {
678
+ res: {
679
+ /**
680
+ * Success
681
+ */
682
+ 200: unknown;
683
+ /**
684
+ * Bad Request
685
+ */
686
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
687
+ /**
688
+ * Unauthorized
689
+ */
690
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
691
+ /**
692
+ * Forbidden
693
+ */
694
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
695
+ /**
696
+ * Not Found
697
+ */
698
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
699
+ /**
700
+ * Server Error
701
+ */
702
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
703
+ /**
704
+ * Server Error
705
+ */
706
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
707
+ };
708
+ };
709
+ };
710
+ '/api/setting-management/emailing': {
711
+ get: {
712
+ res: {
713
+ /**
714
+ * Success
715
+ */
716
+ 200: Volo_Abp_SettingManagement_EmailSettingsDto;
717
+ /**
718
+ * Bad Request
719
+ */
720
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
721
+ /**
722
+ * Unauthorized
723
+ */
724
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
725
+ /**
726
+ * Forbidden
727
+ */
728
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
729
+ /**
730
+ * Not Found
731
+ */
732
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
733
+ /**
734
+ * Server Error
735
+ */
736
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
737
+ /**
738
+ * Server Error
739
+ */
740
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
741
+ };
742
+ };
743
+ post: {
744
+ req: PostApiSettingManagementEmailingData;
745
+ res: {
746
+ /**
747
+ * Success
748
+ */
749
+ 200: unknown;
750
+ /**
751
+ * Bad Request
752
+ */
753
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
754
+ /**
755
+ * Unauthorized
756
+ */
757
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
758
+ /**
759
+ * Forbidden
760
+ */
761
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
762
+ /**
763
+ * Not Found
764
+ */
765
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
766
+ /**
767
+ * Server Error
768
+ */
769
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
770
+ /**
771
+ * Server Error
772
+ */
773
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
774
+ };
775
+ };
776
+ };
777
+ '/api/setting-management/emailing/send-test-email': {
778
+ post: {
779
+ req: PostApiSettingManagementEmailingSendTestEmailData;
780
+ res: {
781
+ /**
782
+ * Success
783
+ */
784
+ 200: unknown;
785
+ /**
786
+ * Bad Request
787
+ */
788
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
789
+ /**
790
+ * Unauthorized
791
+ */
792
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
793
+ /**
794
+ * Forbidden
795
+ */
796
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
797
+ /**
798
+ * Not Found
799
+ */
800
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
801
+ /**
802
+ * Server Error
803
+ */
804
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
805
+ /**
806
+ * Server Error
807
+ */
808
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
809
+ };
810
+ };
811
+ };
812
+ '/api/SettingService/sample': {
813
+ get: {
814
+ res: {
815
+ /**
816
+ * Success
817
+ */
818
+ 200: UniRefund_SettingService_Samples_SampleDto;
819
+ /**
820
+ * Bad Request
821
+ */
822
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
823
+ /**
824
+ * Unauthorized
825
+ */
826
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
827
+ /**
828
+ * Forbidden
829
+ */
830
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
831
+ /**
832
+ * Not Found
833
+ */
834
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
835
+ /**
836
+ * Server Error
837
+ */
838
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
839
+ /**
840
+ * Server Error
841
+ */
842
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
843
+ };
844
+ };
845
+ };
846
+ '/api/SettingService/sample/authorized': {
847
+ get: {
848
+ res: {
849
+ /**
850
+ * Success
851
+ */
852
+ 200: UniRefund_SettingService_Samples_SampleDto;
853
+ /**
854
+ * Bad Request
855
+ */
856
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
857
+ /**
858
+ * Unauthorized
859
+ */
860
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
861
+ /**
862
+ * Forbidden
863
+ */
864
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
865
+ /**
866
+ * Not Found
867
+ */
868
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
869
+ /**
870
+ * Server Error
871
+ */
872
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
873
+ /**
874
+ * Server Error
875
+ */
876
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
877
+ };
878
+ };
879
+ };
880
+ '/api/setting-management/timezone': {
881
+ get: {
882
+ res: {
883
+ /**
884
+ * Success
885
+ */
886
+ 200: string;
887
+ /**
888
+ * Bad Request
889
+ */
890
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
891
+ /**
892
+ * Unauthorized
893
+ */
894
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
895
+ /**
896
+ * Forbidden
897
+ */
898
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
899
+ /**
900
+ * Not Found
901
+ */
902
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
903
+ /**
904
+ * Server Error
905
+ */
906
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
907
+ /**
908
+ * Server Error
909
+ */
910
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
911
+ };
912
+ };
913
+ post: {
914
+ req: PostApiSettingManagementTimezoneData;
915
+ res: {
916
+ /**
917
+ * Success
918
+ */
919
+ 200: unknown;
920
+ /**
921
+ * Bad Request
922
+ */
923
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
924
+ /**
925
+ * Unauthorized
926
+ */
927
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
928
+ /**
929
+ * Forbidden
930
+ */
931
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
932
+ /**
933
+ * Not Found
934
+ */
935
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
936
+ /**
937
+ * Server Error
938
+ */
939
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
940
+ /**
941
+ * Server Error
942
+ */
943
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
944
+ };
945
+ };
946
+ };
947
+ '/api/setting-management/timezone/timezones': {
948
+ get: {
949
+ res: {
950
+ /**
951
+ * Success
952
+ */
953
+ 200: Array<Volo_Abp_NameValue>;
954
+ /**
955
+ * Bad Request
956
+ */
957
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
958
+ /**
959
+ * Unauthorized
960
+ */
961
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
962
+ /**
963
+ * Forbidden
964
+ */
965
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
966
+ /**
967
+ * Not Found
968
+ */
969
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
970
+ /**
971
+ * Server Error
972
+ */
973
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
974
+ /**
975
+ * Server Error
976
+ */
977
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
978
+ };
979
+ };
980
+ };
982
981
  };