@ayasofyazilim/saas 0.0.11 → 0.0.13

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,982 @@
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
+ };
982
+ };