@ayasofyazilim/saas 0.0.133 → 0.0.134

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.
@@ -1,2738 +1,1048 @@
1
- // This file is auto-generated by @hey-api/openapi-ts
2
-
3
- export type Volo_Abp_Application_Dtos_PagedResultDto_1 = {
4
- items?: Array<Volo_Payment_Plans_GatewayPlanDto> | null;
5
- totalCount?: number;
6
- };
7
-
8
- export type Volo_Abp_Application_Dtos_PagedResultDto_12 = {
9
- items?: Array<Volo_Payment_Plans_PlanDto> | null;
10
- totalCount?: number;
11
- };
12
-
13
- export type Volo_Abp_Application_Dtos_PagedResultDto_13 = {
14
- items?: Array<Volo_Payment_Requests_PaymentRequestWithDetailsDto> | null;
15
- totalCount?: number;
16
- };
17
-
18
- export type Volo_Abp_Application_Dtos_PagedResultDto_14 = {
19
- items?: Array<Volo_Saas_Host_Dtos_EditionDto> | null;
20
- totalCount?: number;
21
- };
22
-
23
- export type Volo_Abp_Application_Dtos_PagedResultDto_15 = {
24
- items?: Array<Volo_Saas_Host_Dtos_SaasTenantDto> | null;
25
- totalCount?: number;
26
- };
27
-
28
- export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationAuthConfigurationDto = {
29
- grantedPolicies?: {
30
- [key: string]: (boolean);
31
- } | null;
32
- };
33
-
34
- export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationConfigurationDto = {
35
- localization?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationConfigurationDto;
36
- auth?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationAuthConfigurationDto;
37
- setting?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationSettingConfigurationDto;
38
- currentUser?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_CurrentUserDto;
39
- features?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationFeatureConfigurationDto;
40
- globalFeatures?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationGlobalFeatureConfigurationDto;
41
- multiTenancy?: Volo_Abp_AspNetCore_Mvc_MultiTenancy_MultiTenancyInfoDto;
42
- currentTenant?: Volo_Abp_AspNetCore_Mvc_MultiTenancy_CurrentTenantDto;
43
- timing?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_TimingDto;
44
- clock?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ClockDto;
45
- objectExtensions?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ObjectExtensionsDto;
46
- extraProperties?: {
47
- [key: string]: unknown;
48
- } | null;
49
- };
50
-
51
- export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationFeatureConfigurationDto = {
52
- values?: {
53
- [key: string]: (string | null);
54
- } | null;
55
- };
56
-
57
- export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationGlobalFeatureConfigurationDto = {
58
- enabledFeatures?: Array<(string)> | null;
59
- };
60
-
61
- export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationConfigurationDto = {
62
- values?: {
63
- [key: string]: {
64
- [key: string]: (string);
65
- };
66
- } | null;
67
- resources?: {
68
- [key: string]: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationResourceDto;
69
- } | null;
70
- languages?: Array<Volo_Abp_Localization_LanguageInfo> | null;
71
- currentCulture?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_CurrentCultureDto;
72
- defaultResourceName?: string | null;
73
- languagesMap?: {
74
- [key: string]: Array<Volo_Abp_NameValue>;
75
- } | null;
76
- languageFilesMap?: {
77
- [key: string]: Array<Volo_Abp_NameValue>;
78
- } | null;
79
- };
80
-
81
- export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationDto = {
82
- resources?: {
83
- [key: string]: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationResourceDto;
84
- } | null;
85
- currentCulture?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_CurrentCultureDto;
86
- };
87
-
88
- export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationResourceDto = {
89
- texts?: {
90
- [key: string]: (string);
91
- } | null;
92
- baseResources?: Array<(string)> | null;
93
- };
94
-
95
- export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationSettingConfigurationDto = {
96
- values?: {
97
- [key: string]: (string | null);
98
- } | null;
99
- };
100
-
101
- export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ClockDto = {
102
- kind?: string | null;
103
- };
104
-
105
- export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_CurrentCultureDto = {
106
- displayName?: string | null;
107
- englishName?: string | null;
108
- threeLetterIsoLanguageName?: string | null;
109
- twoLetterIsoLanguageName?: string | null;
110
- isRightToLeft?: boolean;
111
- cultureName?: string | null;
112
- name?: string | null;
113
- nativeName?: string | null;
114
- dateTimeFormat?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_DateTimeFormatDto;
115
- };
116
-
117
- export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_CurrentUserDto = {
118
- isAuthenticated?: boolean;
119
- id?: string | null;
120
- tenantId?: string | null;
121
- impersonatorUserId?: string | null;
122
- impersonatorTenantId?: string | null;
123
- impersonatorUserName?: string | null;
124
- impersonatorTenantName?: string | null;
125
- userName?: string | null;
126
- name?: string | null;
127
- surName?: string | null;
128
- email?: string | null;
129
- emailVerified?: boolean;
130
- phoneNumber?: string | null;
131
- phoneNumberVerified?: boolean;
132
- roles?: Array<(string)> | null;
133
- sessionId?: string | null;
134
- };
135
-
136
- export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_DateTimeFormatDto = {
137
- calendarAlgorithmType?: string | null;
138
- dateTimeFormatLong?: string | null;
139
- shortDatePattern?: string | null;
140
- fullDateTimePattern?: string | null;
141
- dateSeparator?: string | null;
142
- shortTimePattern?: string | null;
143
- longTimePattern?: string | null;
144
- };
145
-
146
- export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_IanaTimeZone = {
147
- timeZoneName?: string | null;
148
- };
149
-
150
- export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_EntityExtensionDto = {
151
- properties?: {
152
- [key: string]: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyDto;
153
- } | null;
154
- configuration?: {
155
- [key: string]: unknown;
156
- } | null;
157
- };
158
-
159
- export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionEnumDto = {
160
- fields?: Array<Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionEnumFieldDto> | null;
161
- localizationResource?: string | null;
162
- };
163
-
164
- export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionEnumFieldDto = {
165
- name?: string | null;
166
- value?: unknown;
167
- };
168
-
169
- export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiCreateDto = {
170
- isAvailable?: boolean;
171
- };
172
-
173
- export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiDto = {
174
- onGet?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiGetDto;
175
- onCreate?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiCreateDto;
176
- onUpdate?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiUpdateDto;
177
- };
178
-
179
- export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiGetDto = {
180
- isAvailable?: boolean;
181
- };
182
-
183
- export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiUpdateDto = {
184
- isAvailable?: boolean;
185
- };
186
-
187
- export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyAttributeDto = {
188
- typeSimple?: string | null;
189
- config?: {
190
- [key: string]: unknown;
191
- } | null;
192
- };
193
-
194
- export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyDto = {
195
- type?: string | null;
196
- typeSimple?: string | null;
197
- displayName?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_LocalizableStringDto;
198
- api?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiDto;
199
- ui?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiDto;
200
- attributes?: Array<Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyAttributeDto> | null;
201
- configuration?: {
202
- [key: string]: unknown;
203
- } | null;
204
- defaultValue?: unknown;
205
- };
206
-
207
- export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiDto = {
208
- onTable?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiTableDto;
209
- onCreateForm?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiFormDto;
210
- onEditForm?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiFormDto;
211
- lookup?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiLookupDto;
212
- };
213
-
214
- export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiFormDto = {
215
- isVisible?: boolean;
216
- };
217
-
218
- export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiLookupDto = {
219
- url?: string | null;
220
- resultListPropertyName?: string | null;
221
- displayPropertyName?: string | null;
222
- valuePropertyName?: string | null;
223
- filterParamName?: string | null;
224
- };
225
-
226
- export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiTableDto = {
227
- isVisible?: boolean;
228
- };
229
-
230
- export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_LocalizableStringDto = {
231
- name?: string | null;
232
- resource?: string | null;
233
- };
234
-
235
- export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ModuleExtensionDto = {
236
- entities?: {
237
- [key: string]: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_EntityExtensionDto;
238
- } | null;
239
- configuration?: {
240
- [key: string]: unknown;
241
- } | null;
242
- };
243
-
244
- export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ObjectExtensionsDto = {
245
- modules?: {
246
- [key: string]: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ModuleExtensionDto;
247
- } | null;
248
- enums?: {
249
- [key: string]: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionEnumDto;
250
- } | null;
251
- };
252
-
253
- export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_TimeZone = {
254
- iana?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_IanaTimeZone;
255
- windows?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_WindowsTimeZone;
256
- };
257
-
258
- export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_TimingDto = {
259
- timeZone?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_TimeZone;
260
- };
261
-
262
- export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_WindowsTimeZone = {
263
- timeZoneId?: string | null;
264
- };
265
-
266
- export type Volo_Abp_AspNetCore_Mvc_MultiTenancy_CurrentTenantDto = {
267
- id?: string | null;
268
- name?: string | null;
269
- isAvailable?: boolean;
270
- };
271
-
272
- export type Volo_Abp_AspNetCore_Mvc_MultiTenancy_MultiTenancyInfoDto = {
273
- isEnabled?: boolean;
274
- };
275
-
276
- export type Volo_Abp_FeatureManagement_FeatureDto = {
277
- name?: string | null;
278
- displayName?: string | null;
279
- value?: string | null;
280
- provider?: Volo_Abp_FeatureManagement_FeatureProviderDto;
281
- description?: string | null;
282
- valueType?: Volo_Abp_Validation_StringValues_IStringValueType;
283
- depth?: number;
284
- parentName?: string | null;
285
- };
286
-
287
- export type Volo_Abp_FeatureManagement_FeatureGroupDto = {
288
- name?: string | null;
289
- displayName?: string | null;
290
- features?: Array<Volo_Abp_FeatureManagement_FeatureDto> | null;
291
- };
292
-
293
- export type Volo_Abp_FeatureManagement_FeatureProviderDto = {
294
- name?: string | null;
295
- key?: string | null;
296
- };
297
-
298
- export type Volo_Abp_FeatureManagement_GetFeatureListResultDto = {
299
- groups?: Array<Volo_Abp_FeatureManagement_FeatureGroupDto> | null;
300
- };
301
-
302
- export type Volo_Abp_FeatureManagement_UpdateFeatureDto = {
303
- name?: string | null;
304
- value?: string | null;
305
- };
306
-
307
- export type Volo_Abp_FeatureManagement_UpdateFeaturesDto = {
308
- features?: Array<Volo_Abp_FeatureManagement_UpdateFeatureDto> | null;
309
- };
310
-
311
- export type Volo_Abp_Http_Modeling_ActionApiDescriptionModel = {
312
- uniqueName?: string | null;
313
- name?: string | null;
314
- httpMethod?: string | null;
315
- url?: string | null;
316
- supportedVersions?: Array<(string)> | null;
317
- parametersOnMethod?: Array<Volo_Abp_Http_Modeling_MethodParameterApiDescriptionModel> | null;
318
- parameters?: Array<Volo_Abp_Http_Modeling_ParameterApiDescriptionModel> | null;
319
- returnValue?: Volo_Abp_Http_Modeling_ReturnValueApiDescriptionModel;
320
- allowAnonymous?: boolean | null;
321
- implementFrom?: string | null;
322
- };
323
-
324
- export type Volo_Abp_Http_Modeling_ApplicationApiDescriptionModel = {
325
- modules?: {
326
- [key: string]: Volo_Abp_Http_Modeling_ModuleApiDescriptionModel;
327
- } | null;
328
- types?: {
329
- [key: string]: Volo_Abp_Http_Modeling_TypeApiDescriptionModel;
330
- } | null;
331
- };
332
-
333
- export type Volo_Abp_Http_Modeling_ControllerApiDescriptionModel = {
334
- controllerName?: string | null;
335
- controllerGroupName?: string | null;
336
- isRemoteService?: boolean;
337
- isIntegrationService?: boolean;
338
- apiVersion?: string | null;
339
- type?: string | null;
340
- interfaces?: Array<Volo_Abp_Http_Modeling_ControllerInterfaceApiDescriptionModel> | null;
341
- actions?: {
342
- [key: string]: Volo_Abp_Http_Modeling_ActionApiDescriptionModel;
343
- } | null;
344
- };
345
-
346
- export type Volo_Abp_Http_Modeling_ControllerInterfaceApiDescriptionModel = {
347
- type?: string | null;
348
- name?: string | null;
349
- methods?: Array<Volo_Abp_Http_Modeling_InterfaceMethodApiDescriptionModel> | null;
350
- };
351
-
352
- export type Volo_Abp_Http_Modeling_InterfaceMethodApiDescriptionModel = {
353
- name?: string | null;
354
- parametersOnMethod?: Array<Volo_Abp_Http_Modeling_MethodParameterApiDescriptionModel> | null;
355
- returnValue?: Volo_Abp_Http_Modeling_ReturnValueApiDescriptionModel;
356
- };
357
-
358
- export type Volo_Abp_Http_Modeling_MethodParameterApiDescriptionModel = {
359
- name?: string | null;
360
- typeAsString?: string | null;
361
- type?: string | null;
362
- typeSimple?: string | null;
363
- isOptional?: boolean;
364
- defaultValue?: unknown;
365
- };
366
-
367
- export type Volo_Abp_Http_Modeling_ModuleApiDescriptionModel = {
368
- rootPath?: string | null;
369
- remoteServiceName?: string | null;
370
- controllers?: {
371
- [key: string]: Volo_Abp_Http_Modeling_ControllerApiDescriptionModel;
372
- } | null;
373
- };
374
-
375
- export type Volo_Abp_Http_Modeling_ParameterApiDescriptionModel = {
376
- nameOnMethod?: string | null;
377
- name?: string | null;
378
- jsonName?: string | null;
379
- type?: string | null;
380
- typeSimple?: string | null;
381
- isOptional?: boolean;
382
- defaultValue?: unknown;
383
- constraintTypes?: Array<(string)> | null;
384
- bindingSourceId?: string | null;
385
- descriptorName?: string | null;
386
- };
387
-
388
- export type Volo_Abp_Http_Modeling_PropertyApiDescriptionModel = {
389
- name?: string | null;
390
- jsonName?: string | null;
391
- type?: string | null;
392
- typeSimple?: string | null;
393
- isRequired?: boolean;
394
- minLength?: number | null;
395
- maxLength?: number | null;
396
- minimum?: string | null;
397
- maximum?: string | null;
398
- regex?: string | null;
399
- };
400
-
401
- export type Volo_Abp_Http_Modeling_ReturnValueApiDescriptionModel = {
402
- type?: string | null;
403
- typeSimple?: string | null;
404
- };
405
-
406
- export type Volo_Abp_Http_Modeling_TypeApiDescriptionModel = {
407
- baseType?: string | null;
408
- isEnum?: boolean;
409
- enumNames?: Array<(string)> | null;
410
- enumValues?: Array<unknown> | null;
411
- genericArguments?: Array<(string)> | null;
412
- properties?: Array<Volo_Abp_Http_Modeling_PropertyApiDescriptionModel> | null;
413
- };
414
-
415
- export type Volo_Abp_Http_RemoteServiceErrorInfo = {
416
- code?: string | null;
417
- message?: string | null;
418
- details?: string | null;
419
- data?: {
420
- [key: string]: unknown;
421
- } | null;
422
- validationErrors?: Array<Volo_Abp_Http_RemoteServiceValidationErrorInfo> | null;
423
- };
424
-
425
- export type Volo_Abp_Http_RemoteServiceErrorResponse = {
426
- error?: Volo_Abp_Http_RemoteServiceErrorInfo;
427
- };
428
-
429
- export type Volo_Abp_Http_RemoteServiceValidationErrorInfo = {
430
- message?: string | null;
431
- members?: Array<(string)> | null;
432
- };
433
-
434
- export type Volo_Abp_Localization_LanguageInfo = {
435
- cultureName?: string | null;
436
- uiCultureName?: string | null;
437
- displayName?: string | null;
438
- readonly twoLetterISOLanguageName?: string | null;
439
- };
440
-
441
- export type Volo_Abp_NameValue = {
442
- name?: string | null;
443
- value?: string | null;
444
- };
445
-
446
- export type Volo_Abp_Validation_StringValues_IStringValueType = {
447
- readonly name?: string | null;
448
- readonly properties?: {
449
- [key: string]: unknown;
450
- } | null;
451
- validator?: Volo_Abp_Validation_StringValues_IValueValidator;
452
- };
453
-
454
- export type Volo_Abp_Validation_StringValues_IValueValidator = {
455
- readonly name?: string | null;
456
- readonly properties?: {
457
- [key: string]: unknown;
458
- } | null;
459
- };
460
-
461
- export type Volo_Payment_Admin_Plans_GatewayPlanCreateInput = {
462
- readonly extraProperties?: {
463
- [key: string]: unknown;
464
- } | null;
465
- gateway: string;
466
- externalId: string;
467
- };
468
-
469
- export type Volo_Payment_Admin_Plans_GatewayPlanUpdateInput = {
470
- readonly extraProperties?: {
471
- [key: string]: unknown;
472
- } | null;
473
- externalId: string;
474
- };
475
-
476
- export type Volo_Payment_Admin_Plans_PlanCreateInput = {
477
- readonly extraProperties?: {
478
- [key: string]: unknown;
479
- } | null;
480
- name: string;
481
- };
482
-
483
- export type Volo_Payment_Admin_Plans_PlanUpdateInput = {
484
- readonly extraProperties?: {
485
- [key: string]: unknown;
486
- } | null;
487
- name: string;
488
- concurrencyStamp?: string | null;
489
- };
490
-
491
- export type Volo_Payment_Gateways_GatewayDto = {
492
- name?: string | null;
493
- displayName?: string | null;
494
- };
495
-
496
- export type Volo_Payment_IPaymentRequestProductExtraParameterConfiguration = {
497
- [key: string]: unknown;
498
- };
499
-
500
- export type Volo_Payment_Plans_GatewayPlanDto = {
501
- readonly extraProperties?: {
502
- [key: string]: unknown;
503
- } | null;
504
- planId?: string;
505
- gateway?: string | null;
506
- externalId?: string | null;
507
- };
508
-
509
- export type Volo_Payment_Plans_PlanDto = {
510
- readonly extraProperties?: {
511
- [key: string]: unknown;
512
- } | null;
513
- id?: string;
514
- name?: string | null;
515
- concurrencyStamp?: string | null;
516
- };
517
-
518
- export type Volo_Payment_Requests_PaymentRequestCreateDto = {
519
- readonly extraProperties?: {
520
- [key: string]: unknown;
521
- } | null;
522
- currency?: string | null;
523
- products?: Array<Volo_Payment_Requests_PaymentRequestProductCreateDto> | null;
524
- };
525
-
526
- export type Volo_Payment_Requests_PaymentRequestProductCreateDto = {
527
- code: string;
528
- name: string;
529
- unitPrice?: number;
530
- count?: number;
531
- totalPrice?: number | null;
532
- paymentType?: Volo_Payment_Requests_PaymentType;
533
- planId?: string | null;
534
- extraProperties?: {
535
- [key: string]: Volo_Payment_IPaymentRequestProductExtraParameterConfiguration;
536
- } | null;
537
- };
538
-
539
- export type Volo_Payment_Requests_PaymentRequestProductDto = {
540
- paymentRequestId?: string;
541
- code?: string | null;
542
- name?: string | null;
543
- unitPrice?: number;
544
- count?: number;
545
- totalPrice?: number;
546
- paymentType?: Volo_Payment_Requests_PaymentType;
547
- planId?: string;
548
- extraProperties?: {
549
- [key: string]: unknown;
550
- } | null;
551
- };
552
-
553
- export type Volo_Payment_Requests_PaymentRequestStartDto = {
554
- readonly extraProperties?: {
555
- [key: string]: unknown;
556
- } | null;
557
- paymentRequestId?: string;
558
- returnUrl: string;
559
- cancelUrl?: string | null;
560
- };
561
-
562
- export type Volo_Payment_Requests_PaymentRequestStartResultDto = {
563
- readonly extraProperties?: {
564
- [key: string]: unknown;
565
- } | null;
566
- checkoutLink?: string | null;
567
- };
568
-
569
- export type Volo_Payment_Requests_PaymentRequestState = 0 | 1 | 2 | 3;
570
-
571
- export type Volo_Payment_Requests_PaymentRequestWithDetailsDto = {
572
- readonly extraProperties?: {
573
- [key: string]: unknown;
574
- } | null;
575
- id?: string;
576
- products?: Array<Volo_Payment_Requests_PaymentRequestProductDto> | null;
577
- currency?: string | null;
578
- state?: Volo_Payment_Requests_PaymentRequestState;
579
- failReason?: string | null;
580
- emailSendDate?: string | null;
581
- gateway?: string | null;
582
- externalSubscriptionId?: string | null;
583
- totalPrice?: number;
584
- creationTime?: string;
585
- };
586
-
587
- export type Volo_Payment_Requests_PaymentType = 0 | 1;
588
-
589
- export type Volo_Saas_Host_Dtos_EditionCreateDto = {
590
- readonly extraProperties?: {
591
- [key: string]: unknown;
592
- } | null;
593
- displayName: string;
594
- planId?: string | null;
595
- };
596
-
597
- export type Volo_Saas_Host_Dtos_EditionDto = {
598
- readonly extraProperties?: {
599
- [key: string]: unknown;
600
- } | null;
601
- id?: string;
602
- displayName?: string | null;
603
- planId?: string | null;
604
- planName?: string | null;
605
- concurrencyStamp?: string | null;
606
- tenantCount?: number;
607
- };
608
-
609
- export type Volo_Saas_Host_Dtos_EditionLookupDto = {
610
- readonly extraProperties?: {
611
- [key: string]: unknown;
612
- } | null;
613
- id?: string;
614
- displayName?: string | null;
615
- };
616
-
617
- export type Volo_Saas_Host_Dtos_EditionUpdateDto = {
618
- readonly extraProperties?: {
619
- [key: string]: unknown;
620
- } | null;
621
- displayName: string;
622
- planId?: string | null;
623
- concurrencyStamp?: string | null;
624
- };
625
-
626
- export type Volo_Saas_Host_Dtos_SaasTenantConnectionStringsDto = {
627
- readonly extraProperties?: {
628
- [key: string]: unknown;
629
- } | null;
630
- default?: string | null;
631
- databases?: Array<Volo_Saas_Host_Dtos_SaasTenantDatabaseConnectionStringsDto> | null;
632
- };
633
-
634
- export type Volo_Saas_Host_Dtos_SaasTenantCreateDto = {
635
- readonly extraProperties?: {
636
- [key: string]: unknown;
637
- } | null;
638
- name: string;
639
- editionId?: string | null;
640
- activationState?: Volo_Saas_TenantActivationState;
641
- activationEndDate?: string | null;
642
- editionEndDateUtc?: string | null;
643
- adminEmailAddress: string;
644
- adminPassword: string;
645
- connectionStrings?: Volo_Saas_Host_Dtos_SaasTenantConnectionStringsDto;
646
- };
647
-
648
- export type Volo_Saas_Host_Dtos_SaasTenantDatabaseConnectionStringsDto = {
649
- readonly extraProperties?: {
650
- [key: string]: unknown;
651
- } | null;
652
- databaseName?: string | null;
653
- connectionString?: string | null;
654
- };
655
-
656
- export type Volo_Saas_Host_Dtos_SaasTenantDatabasesDto = {
657
- readonly extraProperties?: {
658
- [key: string]: unknown;
659
- } | null;
660
- databases?: Array<(string)> | null;
661
- };
662
-
663
- export type Volo_Saas_Host_Dtos_SaasTenantDto = {
664
- readonly extraProperties?: {
665
- [key: string]: unknown;
666
- } | null;
667
- id?: string;
668
- name?: string | null;
669
- editionId?: string | null;
670
- editionEndDateUtc?: string | null;
671
- editionName?: string | null;
672
- hasDefaultConnectionString?: boolean;
673
- activationState?: Volo_Saas_TenantActivationState;
674
- activationEndDate?: string | null;
675
- concurrencyStamp?: string | null;
676
- };
677
-
678
- export type Volo_Saas_Host_Dtos_SaasTenantSetPasswordDto = {
679
- username?: string | null;
680
- password?: string | null;
681
- };
682
-
683
- export type Volo_Saas_Host_Dtos_SaasTenantUpdateDto = {
684
- readonly extraProperties?: {
685
- [key: string]: unknown;
686
- } | null;
687
- name: string;
688
- editionId?: string | null;
689
- activationState?: Volo_Saas_TenantActivationState;
690
- activationEndDate?: string | null;
691
- editionEndDateUtc?: string | null;
692
- concurrencyStamp?: string | null;
693
- };
694
-
695
- export type Volo_Saas_Host_GetEditionUsageStatisticsResultDto = {
696
- data?: {
697
- [key: string]: (number | null);
698
- } | null;
699
- };
700
-
701
- export type Volo_Saas_TenantActivationState = 0 | 1 | 2;
702
-
703
- export type GetApiAbpApiDefinitionData = {
704
- includeTypes?: boolean;
705
- };
706
-
707
- export type GetApiAbpApiDefinitionResponse = Volo_Abp_Http_Modeling_ApplicationApiDescriptionModel;
708
-
709
- export type GetApiAbpApplicationConfigurationData = {
710
- includeLocalizationResources?: boolean;
711
- };
712
-
713
- export type GetApiAbpApplicationConfigurationResponse = Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationConfigurationDto;
714
-
715
- export type GetApiAbpApplicationLocalizationData = {
716
- cultureName: string;
717
- onlyDynamics?: boolean;
718
- };
719
-
720
- export type GetApiAbpApplicationLocalizationResponse = Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationDto;
721
-
722
- export type GetApiSaasEditionsByIdData = {
723
- id: string;
724
- };
725
-
726
- export type GetApiSaasEditionsByIdResponse = Volo_Saas_Host_Dtos_EditionDto;
727
-
728
- export type PutApiSaasEditionsByIdData = {
729
- id: string;
730
- requestBody?: Volo_Saas_Host_Dtos_EditionUpdateDto;
731
- };
732
-
733
- export type PutApiSaasEditionsByIdResponse = Volo_Saas_Host_Dtos_EditionDto;
734
-
735
- export type DeleteApiSaasEditionsByIdData = {
736
- id: string;
737
- };
738
-
739
- export type DeleteApiSaasEditionsByIdResponse = unknown;
740
-
741
- export type GetApiSaasEditionsData = {
742
- filter?: string;
743
- maxResultCount?: number;
744
- skipCount?: number;
745
- sorting?: string;
746
- };
747
-
748
- export type GetApiSaasEditionsResponse = Volo_Abp_Application_Dtos_PagedResultDto_1;
749
-
750
- export type PostApiSaasEditionsData = {
751
- requestBody?: Volo_Saas_Host_Dtos_EditionCreateDto;
752
- };
753
-
754
- export type PostApiSaasEditionsResponse = Volo_Saas_Host_Dtos_EditionDto;
755
-
756
- export type PutApiSaasEditionsByIdMoveAllTenantsData = {
757
- editionId?: string;
758
- id: string;
759
- };
760
-
761
- export type PutApiSaasEditionsByIdMoveAllTenantsResponse = unknown;
762
-
763
- export type GetApiSaasEditionsAllResponse = Array<Volo_Saas_Host_Dtos_EditionDto>;
764
-
765
- export type GetApiSaasEditionsStatisticsUsageStatisticResponse = Volo_Saas_Host_GetEditionUsageStatisticsResultDto;
766
-
767
- export type GetApiSaasEditionsPlanLookupResponse = Array<Volo_Payment_Plans_PlanDto>;
768
-
769
- export type PostApiSaasSubscriptionData = {
770
- editionId?: string;
771
- tenantId?: string;
772
- };
773
-
774
- export type PostApiSaasSubscriptionResponse = Volo_Payment_Requests_PaymentRequestWithDetailsDto;
775
-
776
- export type GetApiFeatureManagementFeaturesData = {
777
- providerKey?: string;
778
- providerName?: string;
779
- };
780
-
781
- export type GetApiFeatureManagementFeaturesResponse = Volo_Abp_FeatureManagement_GetFeatureListResultDto;
782
-
783
- export type PutApiFeatureManagementFeaturesData = {
784
- providerKey?: string;
785
- providerName?: string;
786
- requestBody?: Volo_Abp_FeatureManagement_UpdateFeaturesDto;
787
- };
788
-
789
- export type PutApiFeatureManagementFeaturesResponse = unknown;
790
-
791
- export type DeleteApiFeatureManagementFeaturesData = {
792
- providerKey?: string;
793
- providerName?: string;
794
- };
795
-
796
- export type DeleteApiFeatureManagementFeaturesResponse = unknown;
797
-
798
- export type GetApiPaymentGatewaysResponse = Array<Volo_Payment_Gateways_GatewayDto>;
799
-
800
- export type GetApiPaymentGatewaysSubscriptionSupportedResponse = Array<Volo_Payment_Gateways_GatewayDto>;
801
-
802
- export type PostApiPaymentByPaymentMethodCompleteData = {
803
- paymentMethod: string;
804
- requestBody?: {
805
- [key: string]: (string);
806
- };
807
- };
808
-
809
- export type PostApiPaymentByPaymentMethodCompleteResponse = Volo_Payment_Requests_PaymentRequestWithDetailsDto;
810
-
811
- export type PostApiPaymentRequestsData = {
812
- requestBody?: Volo_Payment_Requests_PaymentRequestCreateDto;
813
- };
814
-
815
- export type PostApiPaymentRequestsResponse = Volo_Payment_Requests_PaymentRequestWithDetailsDto;
816
-
817
- export type GetApiPaymentRequestsByIdData = {
818
- id: string;
819
- };
820
-
821
- export type GetApiPaymentRequestsByIdResponse = Volo_Payment_Requests_PaymentRequestWithDetailsDto;
822
-
823
- export type PostApiPaymentByPaymentMethodWebhookData = {
824
- headers?: {
825
- [key: string]: (string);
826
- };
827
- payload?: string;
828
- paymentMethod: string;
829
- };
830
-
831
- export type PostApiPaymentByPaymentMethodWebhookResponse = boolean;
832
-
833
- export type PostApiPaymentByPaymentMethodStartData = {
834
- paymentMethod: string;
835
- requestBody?: Volo_Payment_Requests_PaymentRequestStartDto;
836
- };
837
-
838
- export type PostApiPaymentByPaymentMethodStartResponse = Volo_Payment_Requests_PaymentRequestStartResultDto;
839
-
840
- export type GetApiPaymentAdminPaymentRequestsData = {
841
- creationDateMax?: string;
842
- creationDateMin?: string;
843
- filter?: string;
844
- maxResultCount?: number;
845
- paymentType?: Volo_Payment_Requests_PaymentType;
846
- skipCount?: number;
847
- sorting?: string;
848
- status?: Volo_Payment_Requests_PaymentRequestState;
849
- };
850
-
851
- export type GetApiPaymentAdminPaymentRequestsResponse = Volo_Abp_Application_Dtos_PagedResultDto_1;
852
-
853
- export type GetApiPaymentAdminPaymentRequestsByIdData = {
854
- id: string;
855
- };
856
-
857
- export type GetApiPaymentAdminPaymentRequestsByIdResponse = Volo_Payment_Requests_PaymentRequestWithDetailsDto;
858
-
859
- export type GetApiPaymentPlansByPlanIdByGatewayData = {
860
- gateway: string;
861
- planId: string;
862
- };
863
-
864
- export type GetApiPaymentPlansByPlanIdByGatewayResponse = Volo_Payment_Plans_GatewayPlanDto;
865
-
866
- export type GetApiPaymentPlansResponse = Array<Volo_Payment_Plans_PlanDto>;
867
-
868
- export type GetApiPaymentPlansByPlanIdData = {
869
- planId: string;
870
- };
871
-
872
- export type GetApiPaymentPlansByPlanIdResponse = Volo_Payment_Plans_PlanDto;
873
-
874
- export type GetApiPaymentPlansManyData = {
875
- ids?: Array<(string)>;
876
- };
877
-
878
- export type GetApiPaymentPlansManyResponse = Array<Volo_Payment_Plans_PlanDto>;
879
-
880
- export type PostApiPaymentAdminPlansData = {
881
- requestBody?: Volo_Payment_Admin_Plans_PlanCreateInput;
882
- };
883
-
884
- export type PostApiPaymentAdminPlansResponse = Volo_Payment_Plans_PlanDto;
885
-
886
- export type DeleteApiPaymentAdminPlansData = {
887
- id?: string;
888
- };
889
-
890
- export type DeleteApiPaymentAdminPlansResponse = unknown;
891
-
892
- export type GetApiPaymentAdminPlansData = {
893
- filter?: string;
894
- maxResultCount?: number;
895
- skipCount?: number;
896
- sorting?: string;
897
- };
898
-
899
- export type GetApiPaymentAdminPlansResponse = Volo_Abp_Application_Dtos_PagedResultDto_1;
900
-
901
- export type PostApiPaymentAdminPlansByPlanIdExternalPlansData = {
902
- planId: string;
903
- requestBody?: Volo_Payment_Admin_Plans_GatewayPlanCreateInput;
904
- };
905
-
906
- export type PostApiPaymentAdminPlansByPlanIdExternalPlansResponse = unknown;
907
-
908
- export type GetApiPaymentAdminPlansByPlanIdExternalPlansData = {
909
- filter?: string;
910
- maxResultCount?: number;
911
- planId: string;
912
- skipCount?: number;
913
- sorting?: string;
914
- };
915
-
916
- export type GetApiPaymentAdminPlansByPlanIdExternalPlansResponse = Volo_Abp_Application_Dtos_PagedResultDto_1;
917
-
918
- export type DeleteApiPaymentAdminPlansByPlanIdExternalPlansByGatewayData = {
919
- gateway: string;
920
- planId: string;
921
- };
922
-
923
- export type DeleteApiPaymentAdminPlansByPlanIdExternalPlansByGatewayResponse = unknown;
924
-
925
- export type PutApiPaymentAdminPlansByPlanIdExternalPlansByGatewayData = {
926
- gateway: string;
927
- planId: string;
928
- requestBody?: Volo_Payment_Admin_Plans_GatewayPlanUpdateInput;
929
- };
930
-
931
- export type PutApiPaymentAdminPlansByPlanIdExternalPlansByGatewayResponse = unknown;
932
-
933
- export type GetApiPaymentAdminPlansByIdData = {
934
- id: string;
935
- };
936
-
937
- export type GetApiPaymentAdminPlansByIdResponse = Volo_Payment_Plans_PlanDto;
938
-
939
- export type PutApiPaymentAdminPlansByIdData = {
940
- id: string;
941
- requestBody?: Volo_Payment_Admin_Plans_PlanUpdateInput;
942
- };
943
-
944
- export type PutApiPaymentAdminPlansByIdResponse = Volo_Payment_Plans_PlanDto;
945
-
946
- export type GetApiSaasTenantsByIdData = {
947
- id: string;
948
- };
949
-
950
- export type GetApiSaasTenantsByIdResponse = Volo_Saas_Host_Dtos_SaasTenantDto;
951
-
952
- export type PutApiSaasTenantsByIdData = {
953
- id: string;
954
- requestBody?: Volo_Saas_Host_Dtos_SaasTenantUpdateDto;
955
- };
956
-
957
- export type PutApiSaasTenantsByIdResponse = Volo_Saas_Host_Dtos_SaasTenantDto;
958
-
959
- export type DeleteApiSaasTenantsByIdData = {
960
- id: string;
961
- };
962
-
963
- export type DeleteApiSaasTenantsByIdResponse = unknown;
964
-
965
- export type GetApiSaasTenantsData = {
966
- activationEndDateMax?: string;
967
- activationEndDateMin?: string;
968
- activationState?: Volo_Saas_TenantActivationState;
969
- editionId?: string;
970
- expirationDateMax?: string;
971
- expirationDateMin?: string;
972
- filter?: string;
973
- getEditionNames?: boolean;
974
- maxResultCount?: number;
975
- skipCount?: number;
976
- sorting?: string;
977
- };
978
-
979
- export type GetApiSaasTenantsResponse = Volo_Abp_Application_Dtos_PagedResultDto_1;
980
-
981
- export type PostApiSaasTenantsData = {
982
- requestBody?: Volo_Saas_Host_Dtos_SaasTenantCreateDto;
983
- };
984
-
985
- export type PostApiSaasTenantsResponse = Volo_Saas_Host_Dtos_SaasTenantDto;
986
-
987
- export type GetApiSaasTenantsDatabasesResponse = Volo_Saas_Host_Dtos_SaasTenantDatabasesDto;
988
-
989
- export type GetApiSaasTenantsByIdConnectionStringsData = {
990
- id: string;
991
- };
992
-
993
- export type GetApiSaasTenantsByIdConnectionStringsResponse = Volo_Saas_Host_Dtos_SaasTenantConnectionStringsDto;
994
-
995
- export type PutApiSaasTenantsByIdConnectionStringsData = {
996
- id: string;
997
- requestBody?: Volo_Saas_Host_Dtos_SaasTenantConnectionStringsDto;
998
- };
999
-
1000
- export type PutApiSaasTenantsByIdConnectionStringsResponse = unknown;
1001
-
1002
- export type PostApiSaasTenantsByIdApplyDatabaseMigrationsData = {
1003
- id: string;
1004
- };
1005
-
1006
- export type PostApiSaasTenantsByIdApplyDatabaseMigrationsResponse = unknown;
1007
-
1008
- export type GetApiSaasTenantsLookupEditionsResponse = Array<Volo_Saas_Host_Dtos_EditionLookupDto>;
1009
-
1010
- export type GetApiSaasTenantsCheckConnectionStringData = {
1011
- connectionString?: string;
1012
- };
1013
-
1014
- export type GetApiSaasTenantsCheckConnectionStringResponse = boolean;
1015
-
1016
- export type PutApiSaasTenantsByIdSetPasswordData = {
1017
- id: string;
1018
- requestBody?: Volo_Saas_Host_Dtos_SaasTenantSetPasswordDto;
1019
- };
1020
-
1021
- export type PutApiSaasTenantsByIdSetPasswordResponse = unknown;
1022
-
1023
- export type $OpenApiTs = {
1024
- '/api/abp/api-definition': {
1025
- get: {
1026
- req: GetApiAbpApiDefinitionData;
1027
- res: {
1028
- /**
1029
- * Success
1030
- */
1031
- 200: Volo_Abp_Http_Modeling_ApplicationApiDescriptionModel;
1032
- /**
1033
- * Bad Request
1034
- */
1035
- 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1036
- /**
1037
- * Unauthorized
1038
- */
1039
- 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1040
- /**
1041
- * Forbidden
1042
- */
1043
- 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1044
- /**
1045
- * Not Found
1046
- */
1047
- 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1048
- /**
1049
- * Server Error
1050
- */
1051
- 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1052
- /**
1053
- * Server Error
1054
- */
1055
- 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1056
- };
1057
- };
1058
- };
1059
- '/api/abp/application-configuration': {
1060
- get: {
1061
- req: GetApiAbpApplicationConfigurationData;
1062
- res: {
1063
- /**
1064
- * Success
1065
- */
1066
- 200: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationConfigurationDto;
1067
- /**
1068
- * Bad Request
1069
- */
1070
- 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1071
- /**
1072
- * Unauthorized
1073
- */
1074
- 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1075
- /**
1076
- * Forbidden
1077
- */
1078
- 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1079
- /**
1080
- * Not Found
1081
- */
1082
- 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1083
- /**
1084
- * Server Error
1085
- */
1086
- 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1087
- /**
1088
- * Server Error
1089
- */
1090
- 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1091
- };
1092
- };
1093
- };
1094
- '/api/abp/application-localization': {
1095
- get: {
1096
- req: GetApiAbpApplicationLocalizationData;
1097
- res: {
1098
- /**
1099
- * Success
1100
- */
1101
- 200: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationDto;
1102
- /**
1103
- * Bad Request
1104
- */
1105
- 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1106
- /**
1107
- * Unauthorized
1108
- */
1109
- 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1110
- /**
1111
- * Forbidden
1112
- */
1113
- 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1114
- /**
1115
- * Not Found
1116
- */
1117
- 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1118
- /**
1119
- * Server Error
1120
- */
1121
- 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1122
- /**
1123
- * Server Error
1124
- */
1125
- 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1126
- };
1127
- };
1128
- };
1129
- '/api/saas/editions/{id}': {
1130
- get: {
1131
- req: GetApiSaasEditionsByIdData;
1132
- res: {
1133
- /**
1134
- * Success
1135
- */
1136
- 200: Volo_Saas_Host_Dtos_EditionDto;
1137
- /**
1138
- * Bad Request
1139
- */
1140
- 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1141
- /**
1142
- * Unauthorized
1143
- */
1144
- 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1145
- /**
1146
- * Forbidden
1147
- */
1148
- 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1149
- /**
1150
- * Not Found
1151
- */
1152
- 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1153
- /**
1154
- * Server Error
1155
- */
1156
- 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1157
- /**
1158
- * Server Error
1159
- */
1160
- 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1161
- };
1162
- };
1163
- put: {
1164
- req: PutApiSaasEditionsByIdData;
1165
- res: {
1166
- /**
1167
- * Success
1168
- */
1169
- 200: Volo_Saas_Host_Dtos_EditionDto;
1170
- /**
1171
- * Bad Request
1172
- */
1173
- 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1174
- /**
1175
- * Unauthorized
1176
- */
1177
- 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1178
- /**
1179
- * Forbidden
1180
- */
1181
- 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1182
- /**
1183
- * Not Found
1184
- */
1185
- 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1186
- /**
1187
- * Server Error
1188
- */
1189
- 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1190
- /**
1191
- * Server Error
1192
- */
1193
- 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1194
- };
1195
- };
1196
- delete: {
1197
- req: DeleteApiSaasEditionsByIdData;
1198
- res: {
1199
- /**
1200
- * Success
1201
- */
1202
- 200: unknown;
1203
- /**
1204
- * Bad Request
1205
- */
1206
- 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1207
- /**
1208
- * Unauthorized
1209
- */
1210
- 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1211
- /**
1212
- * Forbidden
1213
- */
1214
- 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1215
- /**
1216
- * Not Found
1217
- */
1218
- 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1219
- /**
1220
- * Server Error
1221
- */
1222
- 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1223
- /**
1224
- * Server Error
1225
- */
1226
- 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1227
- };
1228
- };
1229
- };
1230
- '/api/saas/editions': {
1231
- get: {
1232
- req: GetApiSaasEditionsData;
1233
- res: {
1234
- /**
1235
- * Success
1236
- */
1237
- 200: Volo_Abp_Application_Dtos_PagedResultDto_1;
1238
- /**
1239
- * Bad Request
1240
- */
1241
- 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1242
- /**
1243
- * Unauthorized
1244
- */
1245
- 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1246
- /**
1247
- * Forbidden
1248
- */
1249
- 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1250
- /**
1251
- * Not Found
1252
- */
1253
- 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1254
- /**
1255
- * Server Error
1256
- */
1257
- 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1258
- /**
1259
- * Server Error
1260
- */
1261
- 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1262
- };
1263
- };
1264
- post: {
1265
- req: PostApiSaasEditionsData;
1266
- res: {
1267
- /**
1268
- * Success
1269
- */
1270
- 200: Volo_Saas_Host_Dtos_EditionDto;
1271
- /**
1272
- * Bad Request
1273
- */
1274
- 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1275
- /**
1276
- * Unauthorized
1277
- */
1278
- 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1279
- /**
1280
- * Forbidden
1281
- */
1282
- 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1283
- /**
1284
- * Not Found
1285
- */
1286
- 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1287
- /**
1288
- * Server Error
1289
- */
1290
- 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1291
- /**
1292
- * Server Error
1293
- */
1294
- 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1295
- };
1296
- };
1297
- };
1298
- '/api/saas/editions/{id}/move-all-tenants': {
1299
- put: {
1300
- req: PutApiSaasEditionsByIdMoveAllTenantsData;
1301
- res: {
1302
- /**
1303
- * Success
1304
- */
1305
- 200: unknown;
1306
- /**
1307
- * Bad Request
1308
- */
1309
- 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1310
- /**
1311
- * Unauthorized
1312
- */
1313
- 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1314
- /**
1315
- * Forbidden
1316
- */
1317
- 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1318
- /**
1319
- * Not Found
1320
- */
1321
- 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1322
- /**
1323
- * Server Error
1324
- */
1325
- 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1326
- /**
1327
- * Server Error
1328
- */
1329
- 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1330
- };
1331
- };
1332
- };
1333
- '/api/saas/editions/all': {
1334
- get: {
1335
- res: {
1336
- /**
1337
- * Success
1338
- */
1339
- 200: Array<Volo_Saas_Host_Dtos_EditionDto>;
1340
- /**
1341
- * Bad Request
1342
- */
1343
- 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1344
- /**
1345
- * Unauthorized
1346
- */
1347
- 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1348
- /**
1349
- * Forbidden
1350
- */
1351
- 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1352
- /**
1353
- * Not Found
1354
- */
1355
- 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1356
- /**
1357
- * Server Error
1358
- */
1359
- 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1360
- /**
1361
- * Server Error
1362
- */
1363
- 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1364
- };
1365
- };
1366
- };
1367
- '/api/saas/editions/statistics/usage-statistic': {
1368
- get: {
1369
- res: {
1370
- /**
1371
- * Success
1372
- */
1373
- 200: Volo_Saas_Host_GetEditionUsageStatisticsResultDto;
1374
- /**
1375
- * Bad Request
1376
- */
1377
- 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1378
- /**
1379
- * Unauthorized
1380
- */
1381
- 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1382
- /**
1383
- * Forbidden
1384
- */
1385
- 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1386
- /**
1387
- * Not Found
1388
- */
1389
- 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1390
- /**
1391
- * Server Error
1392
- */
1393
- 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1394
- /**
1395
- * Server Error
1396
- */
1397
- 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1398
- };
1399
- };
1400
- };
1401
- '/api/saas/editions/plan-lookup': {
1402
- get: {
1403
- res: {
1404
- /**
1405
- * Success
1406
- */
1407
- 200: Array<Volo_Payment_Plans_PlanDto>;
1408
- /**
1409
- * Bad Request
1410
- */
1411
- 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1412
- /**
1413
- * Unauthorized
1414
- */
1415
- 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1416
- /**
1417
- * Forbidden
1418
- */
1419
- 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1420
- /**
1421
- * Not Found
1422
- */
1423
- 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1424
- /**
1425
- * Server Error
1426
- */
1427
- 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1428
- /**
1429
- * Server Error
1430
- */
1431
- 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1432
- };
1433
- };
1434
- };
1435
- '/api/saas/subscription': {
1436
- post: {
1437
- req: PostApiSaasSubscriptionData;
1438
- res: {
1439
- /**
1440
- * Success
1441
- */
1442
- 200: Volo_Payment_Requests_PaymentRequestWithDetailsDto;
1443
- /**
1444
- * Bad Request
1445
- */
1446
- 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1447
- /**
1448
- * Unauthorized
1449
- */
1450
- 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1451
- /**
1452
- * Forbidden
1453
- */
1454
- 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1455
- /**
1456
- * Not Found
1457
- */
1458
- 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1459
- /**
1460
- * Server Error
1461
- */
1462
- 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1463
- /**
1464
- * Server Error
1465
- */
1466
- 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1467
- };
1468
- };
1469
- };
1470
- '/api/feature-management/features': {
1471
- get: {
1472
- req: GetApiFeatureManagementFeaturesData;
1473
- res: {
1474
- /**
1475
- * Success
1476
- */
1477
- 200: Volo_Abp_FeatureManagement_GetFeatureListResultDto;
1478
- /**
1479
- * Bad Request
1480
- */
1481
- 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1482
- /**
1483
- * Unauthorized
1484
- */
1485
- 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1486
- /**
1487
- * Forbidden
1488
- */
1489
- 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1490
- /**
1491
- * Not Found
1492
- */
1493
- 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1494
- /**
1495
- * Server Error
1496
- */
1497
- 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1498
- /**
1499
- * Server Error
1500
- */
1501
- 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1502
- };
1503
- };
1504
- put: {
1505
- req: PutApiFeatureManagementFeaturesData;
1506
- res: {
1507
- /**
1508
- * Success
1509
- */
1510
- 200: unknown;
1511
- /**
1512
- * Bad Request
1513
- */
1514
- 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1515
- /**
1516
- * Unauthorized
1517
- */
1518
- 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1519
- /**
1520
- * Forbidden
1521
- */
1522
- 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1523
- /**
1524
- * Not Found
1525
- */
1526
- 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1527
- /**
1528
- * Server Error
1529
- */
1530
- 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1531
- /**
1532
- * Server Error
1533
- */
1534
- 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1535
- };
1536
- };
1537
- delete: {
1538
- req: DeleteApiFeatureManagementFeaturesData;
1539
- res: {
1540
- /**
1541
- * Success
1542
- */
1543
- 200: unknown;
1544
- /**
1545
- * Bad Request
1546
- */
1547
- 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1548
- /**
1549
- * Unauthorized
1550
- */
1551
- 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1552
- /**
1553
- * Forbidden
1554
- */
1555
- 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1556
- /**
1557
- * Not Found
1558
- */
1559
- 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1560
- /**
1561
- * Server Error
1562
- */
1563
- 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1564
- /**
1565
- * Server Error
1566
- */
1567
- 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1568
- };
1569
- };
1570
- };
1571
- '/api/payment/gateways': {
1572
- get: {
1573
- res: {
1574
- /**
1575
- * Success
1576
- */
1577
- 200: Array<Volo_Payment_Gateways_GatewayDto>;
1578
- /**
1579
- * Bad Request
1580
- */
1581
- 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1582
- /**
1583
- * Unauthorized
1584
- */
1585
- 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1586
- /**
1587
- * Forbidden
1588
- */
1589
- 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1590
- /**
1591
- * Not Found
1592
- */
1593
- 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1594
- /**
1595
- * Server Error
1596
- */
1597
- 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1598
- /**
1599
- * Server Error
1600
- */
1601
- 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1602
- };
1603
- };
1604
- };
1605
- '/api/payment/gateways/subscription-supported': {
1606
- get: {
1607
- res: {
1608
- /**
1609
- * Success
1610
- */
1611
- 200: Array<Volo_Payment_Gateways_GatewayDto>;
1612
- /**
1613
- * Bad Request
1614
- */
1615
- 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1616
- /**
1617
- * Unauthorized
1618
- */
1619
- 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1620
- /**
1621
- * Forbidden
1622
- */
1623
- 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1624
- /**
1625
- * Not Found
1626
- */
1627
- 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1628
- /**
1629
- * Server Error
1630
- */
1631
- 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1632
- /**
1633
- * Server Error
1634
- */
1635
- 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1636
- };
1637
- };
1638
- };
1639
- '/api/payment/{paymentMethod}/complete': {
1640
- post: {
1641
- req: PostApiPaymentByPaymentMethodCompleteData;
1642
- res: {
1643
- /**
1644
- * Success
1645
- */
1646
- 200: Volo_Payment_Requests_PaymentRequestWithDetailsDto;
1647
- /**
1648
- * Bad Request
1649
- */
1650
- 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1651
- /**
1652
- * Unauthorized
1653
- */
1654
- 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1655
- /**
1656
- * Forbidden
1657
- */
1658
- 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1659
- /**
1660
- * Not Found
1661
- */
1662
- 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1663
- /**
1664
- * Server Error
1665
- */
1666
- 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1667
- /**
1668
- * Server Error
1669
- */
1670
- 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1671
- };
1672
- };
1673
- };
1674
- '/api/payment/requests': {
1675
- post: {
1676
- req: PostApiPaymentRequestsData;
1677
- res: {
1678
- /**
1679
- * Success
1680
- */
1681
- 200: Volo_Payment_Requests_PaymentRequestWithDetailsDto;
1682
- /**
1683
- * Bad Request
1684
- */
1685
- 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1686
- /**
1687
- * Unauthorized
1688
- */
1689
- 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1690
- /**
1691
- * Forbidden
1692
- */
1693
- 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1694
- /**
1695
- * Not Found
1696
- */
1697
- 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1698
- /**
1699
- * Server Error
1700
- */
1701
- 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1702
- /**
1703
- * Server Error
1704
- */
1705
- 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1706
- };
1707
- };
1708
- };
1709
- '/api/payment/requests/{id}': {
1710
- get: {
1711
- req: GetApiPaymentRequestsByIdData;
1712
- res: {
1713
- /**
1714
- * Success
1715
- */
1716
- 200: Volo_Payment_Requests_PaymentRequestWithDetailsDto;
1717
- /**
1718
- * Bad Request
1719
- */
1720
- 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1721
- /**
1722
- * Unauthorized
1723
- */
1724
- 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1725
- /**
1726
- * Forbidden
1727
- */
1728
- 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1729
- /**
1730
- * Not Found
1731
- */
1732
- 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1733
- /**
1734
- * Server Error
1735
- */
1736
- 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1737
- /**
1738
- * Server Error
1739
- */
1740
- 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1741
- };
1742
- };
1743
- };
1744
- '/api/payment/{paymentMethod}/webhook': {
1745
- post: {
1746
- req: PostApiPaymentByPaymentMethodWebhookData;
1747
- res: {
1748
- /**
1749
- * Success
1750
- */
1751
- 200: boolean;
1752
- /**
1753
- * Bad Request
1754
- */
1755
- 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1756
- /**
1757
- * Unauthorized
1758
- */
1759
- 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1760
- /**
1761
- * Forbidden
1762
- */
1763
- 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1764
- /**
1765
- * Not Found
1766
- */
1767
- 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1768
- /**
1769
- * Server Error
1770
- */
1771
- 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1772
- /**
1773
- * Server Error
1774
- */
1775
- 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1776
- };
1777
- };
1778
- };
1779
- '/api/payment/{paymentMethod}/start': {
1780
- post: {
1781
- req: PostApiPaymentByPaymentMethodStartData;
1782
- res: {
1783
- /**
1784
- * Success
1785
- */
1786
- 200: Volo_Payment_Requests_PaymentRequestStartResultDto;
1787
- /**
1788
- * Bad Request
1789
- */
1790
- 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1791
- /**
1792
- * Unauthorized
1793
- */
1794
- 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1795
- /**
1796
- * Forbidden
1797
- */
1798
- 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1799
- /**
1800
- * Not Found
1801
- */
1802
- 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1803
- /**
1804
- * Server Error
1805
- */
1806
- 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1807
- /**
1808
- * Server Error
1809
- */
1810
- 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1811
- };
1812
- };
1813
- };
1814
- '/api/payment-admin/payment-requests': {
1815
- get: {
1816
- req: GetApiPaymentAdminPaymentRequestsData;
1817
- res: {
1818
- /**
1819
- * Success
1820
- */
1821
- 200: Volo_Abp_Application_Dtos_PagedResultDto_1;
1822
- /**
1823
- * Bad Request
1824
- */
1825
- 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1826
- /**
1827
- * Unauthorized
1828
- */
1829
- 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1830
- /**
1831
- * Forbidden
1832
- */
1833
- 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1834
- /**
1835
- * Not Found
1836
- */
1837
- 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1838
- /**
1839
- * Server Error
1840
- */
1841
- 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1842
- /**
1843
- * Server Error
1844
- */
1845
- 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1846
- };
1847
- };
1848
- };
1849
- '/api/payment-admin/payment-requests/{id}': {
1850
- get: {
1851
- req: GetApiPaymentAdminPaymentRequestsByIdData;
1852
- res: {
1853
- /**
1854
- * Success
1855
- */
1856
- 200: Volo_Payment_Requests_PaymentRequestWithDetailsDto;
1857
- /**
1858
- * Bad Request
1859
- */
1860
- 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1861
- /**
1862
- * Unauthorized
1863
- */
1864
- 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1865
- /**
1866
- * Forbidden
1867
- */
1868
- 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1869
- /**
1870
- * Not Found
1871
- */
1872
- 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1873
- /**
1874
- * Server Error
1875
- */
1876
- 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1877
- /**
1878
- * Server Error
1879
- */
1880
- 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1881
- };
1882
- };
1883
- };
1884
- '/api/payment/plans/{planId}/{gateway}': {
1885
- get: {
1886
- req: GetApiPaymentPlansByPlanIdByGatewayData;
1887
- res: {
1888
- /**
1889
- * Success
1890
- */
1891
- 200: Volo_Payment_Plans_GatewayPlanDto;
1892
- /**
1893
- * Bad Request
1894
- */
1895
- 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1896
- /**
1897
- * Unauthorized
1898
- */
1899
- 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1900
- /**
1901
- * Forbidden
1902
- */
1903
- 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1904
- /**
1905
- * Not Found
1906
- */
1907
- 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1908
- /**
1909
- * Server Error
1910
- */
1911
- 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1912
- /**
1913
- * Server Error
1914
- */
1915
- 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1916
- };
1917
- };
1918
- };
1919
- '/api/payment/plans': {
1920
- get: {
1921
- res: {
1922
- /**
1923
- * Success
1924
- */
1925
- 200: Array<Volo_Payment_Plans_PlanDto>;
1926
- /**
1927
- * Bad Request
1928
- */
1929
- 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1930
- /**
1931
- * Unauthorized
1932
- */
1933
- 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1934
- /**
1935
- * Forbidden
1936
- */
1937
- 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1938
- /**
1939
- * Not Found
1940
- */
1941
- 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1942
- /**
1943
- * Server Error
1944
- */
1945
- 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1946
- /**
1947
- * Server Error
1948
- */
1949
- 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1950
- };
1951
- };
1952
- };
1953
- '/api/payment/plans/{planId}': {
1954
- get: {
1955
- req: GetApiPaymentPlansByPlanIdData;
1956
- res: {
1957
- /**
1958
- * Success
1959
- */
1960
- 200: Volo_Payment_Plans_PlanDto;
1961
- /**
1962
- * Bad Request
1963
- */
1964
- 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1965
- /**
1966
- * Unauthorized
1967
- */
1968
- 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1969
- /**
1970
- * Forbidden
1971
- */
1972
- 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1973
- /**
1974
- * Not Found
1975
- */
1976
- 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1977
- /**
1978
- * Server Error
1979
- */
1980
- 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1981
- /**
1982
- * Server Error
1983
- */
1984
- 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1985
- };
1986
- };
1987
- };
1988
- '/api/payment/plans/many': {
1989
- get: {
1990
- req: GetApiPaymentPlansManyData;
1991
- res: {
1992
- /**
1993
- * Success
1994
- */
1995
- 200: Array<Volo_Payment_Plans_PlanDto>;
1996
- /**
1997
- * Bad Request
1998
- */
1999
- 400: Volo_Abp_Http_RemoteServiceErrorResponse;
2000
- /**
2001
- * Unauthorized
2002
- */
2003
- 401: Volo_Abp_Http_RemoteServiceErrorResponse;
2004
- /**
2005
- * Forbidden
2006
- */
2007
- 403: Volo_Abp_Http_RemoteServiceErrorResponse;
2008
- /**
2009
- * Not Found
2010
- */
2011
- 404: Volo_Abp_Http_RemoteServiceErrorResponse;
2012
- /**
2013
- * Server Error
2014
- */
2015
- 500: Volo_Abp_Http_RemoteServiceErrorResponse;
2016
- /**
2017
- * Server Error
2018
- */
2019
- 501: Volo_Abp_Http_RemoteServiceErrorResponse;
2020
- };
2021
- };
2022
- };
2023
- '/api/payment-admin/plans': {
2024
- post: {
2025
- req: PostApiPaymentAdminPlansData;
2026
- res: {
2027
- /**
2028
- * Success
2029
- */
2030
- 200: Volo_Payment_Plans_PlanDto;
2031
- /**
2032
- * Bad Request
2033
- */
2034
- 400: Volo_Abp_Http_RemoteServiceErrorResponse;
2035
- /**
2036
- * Unauthorized
2037
- */
2038
- 401: Volo_Abp_Http_RemoteServiceErrorResponse;
2039
- /**
2040
- * Forbidden
2041
- */
2042
- 403: Volo_Abp_Http_RemoteServiceErrorResponse;
2043
- /**
2044
- * Not Found
2045
- */
2046
- 404: Volo_Abp_Http_RemoteServiceErrorResponse;
2047
- /**
2048
- * Server Error
2049
- */
2050
- 500: Volo_Abp_Http_RemoteServiceErrorResponse;
2051
- /**
2052
- * Server Error
2053
- */
2054
- 501: Volo_Abp_Http_RemoteServiceErrorResponse;
2055
- };
2056
- };
2057
- delete: {
2058
- req: DeleteApiPaymentAdminPlansData;
2059
- res: {
2060
- /**
2061
- * Success
2062
- */
2063
- 200: unknown;
2064
- /**
2065
- * Bad Request
2066
- */
2067
- 400: Volo_Abp_Http_RemoteServiceErrorResponse;
2068
- /**
2069
- * Unauthorized
2070
- */
2071
- 401: Volo_Abp_Http_RemoteServiceErrorResponse;
2072
- /**
2073
- * Forbidden
2074
- */
2075
- 403: Volo_Abp_Http_RemoteServiceErrorResponse;
2076
- /**
2077
- * Not Found
2078
- */
2079
- 404: Volo_Abp_Http_RemoteServiceErrorResponse;
2080
- /**
2081
- * Server Error
2082
- */
2083
- 500: Volo_Abp_Http_RemoteServiceErrorResponse;
2084
- /**
2085
- * Server Error
2086
- */
2087
- 501: Volo_Abp_Http_RemoteServiceErrorResponse;
2088
- };
2089
- };
2090
- get: {
2091
- req: GetApiPaymentAdminPlansData;
2092
- res: {
2093
- /**
2094
- * Success
2095
- */
2096
- 200: Volo_Abp_Application_Dtos_PagedResultDto_1;
2097
- /**
2098
- * Bad Request
2099
- */
2100
- 400: Volo_Abp_Http_RemoteServiceErrorResponse;
2101
- /**
2102
- * Unauthorized
2103
- */
2104
- 401: Volo_Abp_Http_RemoteServiceErrorResponse;
2105
- /**
2106
- * Forbidden
2107
- */
2108
- 403: Volo_Abp_Http_RemoteServiceErrorResponse;
2109
- /**
2110
- * Not Found
2111
- */
2112
- 404: Volo_Abp_Http_RemoteServiceErrorResponse;
2113
- /**
2114
- * Server Error
2115
- */
2116
- 500: Volo_Abp_Http_RemoteServiceErrorResponse;
2117
- /**
2118
- * Server Error
2119
- */
2120
- 501: Volo_Abp_Http_RemoteServiceErrorResponse;
2121
- };
2122
- };
2123
- };
2124
- '/api/payment-admin/plans/{planId}/external-plans': {
2125
- post: {
2126
- req: PostApiPaymentAdminPlansByPlanIdExternalPlansData;
2127
- res: {
2128
- /**
2129
- * Success
2130
- */
2131
- 200: unknown;
2132
- /**
2133
- * Bad Request
2134
- */
2135
- 400: Volo_Abp_Http_RemoteServiceErrorResponse;
2136
- /**
2137
- * Unauthorized
2138
- */
2139
- 401: Volo_Abp_Http_RemoteServiceErrorResponse;
2140
- /**
2141
- * Forbidden
2142
- */
2143
- 403: Volo_Abp_Http_RemoteServiceErrorResponse;
2144
- /**
2145
- * Not Found
2146
- */
2147
- 404: Volo_Abp_Http_RemoteServiceErrorResponse;
2148
- /**
2149
- * Server Error
2150
- */
2151
- 500: Volo_Abp_Http_RemoteServiceErrorResponse;
2152
- /**
2153
- * Server Error
2154
- */
2155
- 501: Volo_Abp_Http_RemoteServiceErrorResponse;
2156
- };
2157
- };
2158
- get: {
2159
- req: GetApiPaymentAdminPlansByPlanIdExternalPlansData;
2160
- res: {
2161
- /**
2162
- * Success
2163
- */
2164
- 200: Volo_Abp_Application_Dtos_PagedResultDto_1;
2165
- /**
2166
- * Bad Request
2167
- */
2168
- 400: Volo_Abp_Http_RemoteServiceErrorResponse;
2169
- /**
2170
- * Unauthorized
2171
- */
2172
- 401: Volo_Abp_Http_RemoteServiceErrorResponse;
2173
- /**
2174
- * Forbidden
2175
- */
2176
- 403: Volo_Abp_Http_RemoteServiceErrorResponse;
2177
- /**
2178
- * Not Found
2179
- */
2180
- 404: Volo_Abp_Http_RemoteServiceErrorResponse;
2181
- /**
2182
- * Server Error
2183
- */
2184
- 500: Volo_Abp_Http_RemoteServiceErrorResponse;
2185
- /**
2186
- * Server Error
2187
- */
2188
- 501: Volo_Abp_Http_RemoteServiceErrorResponse;
2189
- };
2190
- };
2191
- };
2192
- '/api/payment-admin/plans/{planId}/external-plans/{gateway}': {
2193
- delete: {
2194
- req: DeleteApiPaymentAdminPlansByPlanIdExternalPlansByGatewayData;
2195
- res: {
2196
- /**
2197
- * Success
2198
- */
2199
- 200: unknown;
2200
- /**
2201
- * Bad Request
2202
- */
2203
- 400: Volo_Abp_Http_RemoteServiceErrorResponse;
2204
- /**
2205
- * Unauthorized
2206
- */
2207
- 401: Volo_Abp_Http_RemoteServiceErrorResponse;
2208
- /**
2209
- * Forbidden
2210
- */
2211
- 403: Volo_Abp_Http_RemoteServiceErrorResponse;
2212
- /**
2213
- * Not Found
2214
- */
2215
- 404: Volo_Abp_Http_RemoteServiceErrorResponse;
2216
- /**
2217
- * Server Error
2218
- */
2219
- 500: Volo_Abp_Http_RemoteServiceErrorResponse;
2220
- /**
2221
- * Server Error
2222
- */
2223
- 501: Volo_Abp_Http_RemoteServiceErrorResponse;
2224
- };
2225
- };
2226
- put: {
2227
- req: PutApiPaymentAdminPlansByPlanIdExternalPlansByGatewayData;
2228
- res: {
2229
- /**
2230
- * Success
2231
- */
2232
- 200: unknown;
2233
- /**
2234
- * Bad Request
2235
- */
2236
- 400: Volo_Abp_Http_RemoteServiceErrorResponse;
2237
- /**
2238
- * Unauthorized
2239
- */
2240
- 401: Volo_Abp_Http_RemoteServiceErrorResponse;
2241
- /**
2242
- * Forbidden
2243
- */
2244
- 403: Volo_Abp_Http_RemoteServiceErrorResponse;
2245
- /**
2246
- * Not Found
2247
- */
2248
- 404: Volo_Abp_Http_RemoteServiceErrorResponse;
2249
- /**
2250
- * Server Error
2251
- */
2252
- 500: Volo_Abp_Http_RemoteServiceErrorResponse;
2253
- /**
2254
- * Server Error
2255
- */
2256
- 501: Volo_Abp_Http_RemoteServiceErrorResponse;
2257
- };
2258
- };
2259
- };
2260
- '/api/payment-admin/plans/{id}': {
2261
- get: {
2262
- req: GetApiPaymentAdminPlansByIdData;
2263
- res: {
2264
- /**
2265
- * Success
2266
- */
2267
- 200: Volo_Payment_Plans_PlanDto;
2268
- /**
2269
- * Bad Request
2270
- */
2271
- 400: Volo_Abp_Http_RemoteServiceErrorResponse;
2272
- /**
2273
- * Unauthorized
2274
- */
2275
- 401: Volo_Abp_Http_RemoteServiceErrorResponse;
2276
- /**
2277
- * Forbidden
2278
- */
2279
- 403: Volo_Abp_Http_RemoteServiceErrorResponse;
2280
- /**
2281
- * Not Found
2282
- */
2283
- 404: Volo_Abp_Http_RemoteServiceErrorResponse;
2284
- /**
2285
- * Server Error
2286
- */
2287
- 500: Volo_Abp_Http_RemoteServiceErrorResponse;
2288
- /**
2289
- * Server Error
2290
- */
2291
- 501: Volo_Abp_Http_RemoteServiceErrorResponse;
2292
- };
2293
- };
2294
- put: {
2295
- req: PutApiPaymentAdminPlansByIdData;
2296
- res: {
2297
- /**
2298
- * Success
2299
- */
2300
- 200: Volo_Payment_Plans_PlanDto;
2301
- /**
2302
- * Bad Request
2303
- */
2304
- 400: Volo_Abp_Http_RemoteServiceErrorResponse;
2305
- /**
2306
- * Unauthorized
2307
- */
2308
- 401: Volo_Abp_Http_RemoteServiceErrorResponse;
2309
- /**
2310
- * Forbidden
2311
- */
2312
- 403: Volo_Abp_Http_RemoteServiceErrorResponse;
2313
- /**
2314
- * Not Found
2315
- */
2316
- 404: Volo_Abp_Http_RemoteServiceErrorResponse;
2317
- /**
2318
- * Server Error
2319
- */
2320
- 500: Volo_Abp_Http_RemoteServiceErrorResponse;
2321
- /**
2322
- * Server Error
2323
- */
2324
- 501: Volo_Abp_Http_RemoteServiceErrorResponse;
2325
- };
2326
- };
2327
- };
2328
- '/api/saas/tenants/{id}': {
2329
- get: {
2330
- req: GetApiSaasTenantsByIdData;
2331
- res: {
2332
- /**
2333
- * Success
2334
- */
2335
- 200: Volo_Saas_Host_Dtos_SaasTenantDto;
2336
- /**
2337
- * Bad Request
2338
- */
2339
- 400: Volo_Abp_Http_RemoteServiceErrorResponse;
2340
- /**
2341
- * Unauthorized
2342
- */
2343
- 401: Volo_Abp_Http_RemoteServiceErrorResponse;
2344
- /**
2345
- * Forbidden
2346
- */
2347
- 403: Volo_Abp_Http_RemoteServiceErrorResponse;
2348
- /**
2349
- * Not Found
2350
- */
2351
- 404: Volo_Abp_Http_RemoteServiceErrorResponse;
2352
- /**
2353
- * Server Error
2354
- */
2355
- 500: Volo_Abp_Http_RemoteServiceErrorResponse;
2356
- /**
2357
- * Server Error
2358
- */
2359
- 501: Volo_Abp_Http_RemoteServiceErrorResponse;
2360
- };
2361
- };
2362
- put: {
2363
- req: PutApiSaasTenantsByIdData;
2364
- res: {
2365
- /**
2366
- * Success
2367
- */
2368
- 200: Volo_Saas_Host_Dtos_SaasTenantDto;
2369
- /**
2370
- * Bad Request
2371
- */
2372
- 400: Volo_Abp_Http_RemoteServiceErrorResponse;
2373
- /**
2374
- * Unauthorized
2375
- */
2376
- 401: Volo_Abp_Http_RemoteServiceErrorResponse;
2377
- /**
2378
- * Forbidden
2379
- */
2380
- 403: Volo_Abp_Http_RemoteServiceErrorResponse;
2381
- /**
2382
- * Not Found
2383
- */
2384
- 404: Volo_Abp_Http_RemoteServiceErrorResponse;
2385
- /**
2386
- * Server Error
2387
- */
2388
- 500: Volo_Abp_Http_RemoteServiceErrorResponse;
2389
- /**
2390
- * Server Error
2391
- */
2392
- 501: Volo_Abp_Http_RemoteServiceErrorResponse;
2393
- };
2394
- };
2395
- delete: {
2396
- req: DeleteApiSaasTenantsByIdData;
2397
- res: {
2398
- /**
2399
- * Success
2400
- */
2401
- 200: unknown;
2402
- /**
2403
- * Bad Request
2404
- */
2405
- 400: Volo_Abp_Http_RemoteServiceErrorResponse;
2406
- /**
2407
- * Unauthorized
2408
- */
2409
- 401: Volo_Abp_Http_RemoteServiceErrorResponse;
2410
- /**
2411
- * Forbidden
2412
- */
2413
- 403: Volo_Abp_Http_RemoteServiceErrorResponse;
2414
- /**
2415
- * Not Found
2416
- */
2417
- 404: Volo_Abp_Http_RemoteServiceErrorResponse;
2418
- /**
2419
- * Server Error
2420
- */
2421
- 500: Volo_Abp_Http_RemoteServiceErrorResponse;
2422
- /**
2423
- * Server Error
2424
- */
2425
- 501: Volo_Abp_Http_RemoteServiceErrorResponse;
2426
- };
2427
- };
2428
- };
2429
- '/api/saas/tenants': {
2430
- get: {
2431
- req: GetApiSaasTenantsData;
2432
- res: {
2433
- /**
2434
- * Success
2435
- */
2436
- 200: Volo_Abp_Application_Dtos_PagedResultDto_1;
2437
- /**
2438
- * Bad Request
2439
- */
2440
- 400: Volo_Abp_Http_RemoteServiceErrorResponse;
2441
- /**
2442
- * Unauthorized
2443
- */
2444
- 401: Volo_Abp_Http_RemoteServiceErrorResponse;
2445
- /**
2446
- * Forbidden
2447
- */
2448
- 403: Volo_Abp_Http_RemoteServiceErrorResponse;
2449
- /**
2450
- * Not Found
2451
- */
2452
- 404: Volo_Abp_Http_RemoteServiceErrorResponse;
2453
- /**
2454
- * Server Error
2455
- */
2456
- 500: Volo_Abp_Http_RemoteServiceErrorResponse;
2457
- /**
2458
- * Server Error
2459
- */
2460
- 501: Volo_Abp_Http_RemoteServiceErrorResponse;
2461
- };
2462
- };
2463
- post: {
2464
- req: PostApiSaasTenantsData;
2465
- res: {
2466
- /**
2467
- * Success
2468
- */
2469
- 200: Volo_Saas_Host_Dtos_SaasTenantDto;
2470
- /**
2471
- * Bad Request
2472
- */
2473
- 400: Volo_Abp_Http_RemoteServiceErrorResponse;
2474
- /**
2475
- * Unauthorized
2476
- */
2477
- 401: Volo_Abp_Http_RemoteServiceErrorResponse;
2478
- /**
2479
- * Forbidden
2480
- */
2481
- 403: Volo_Abp_Http_RemoteServiceErrorResponse;
2482
- /**
2483
- * Not Found
2484
- */
2485
- 404: Volo_Abp_Http_RemoteServiceErrorResponse;
2486
- /**
2487
- * Server Error
2488
- */
2489
- 500: Volo_Abp_Http_RemoteServiceErrorResponse;
2490
- /**
2491
- * Server Error
2492
- */
2493
- 501: Volo_Abp_Http_RemoteServiceErrorResponse;
2494
- };
2495
- };
2496
- };
2497
- '/api/saas/tenants/databases': {
2498
- get: {
2499
- res: {
2500
- /**
2501
- * Success
2502
- */
2503
- 200: Volo_Saas_Host_Dtos_SaasTenantDatabasesDto;
2504
- /**
2505
- * Bad Request
2506
- */
2507
- 400: Volo_Abp_Http_RemoteServiceErrorResponse;
2508
- /**
2509
- * Unauthorized
2510
- */
2511
- 401: Volo_Abp_Http_RemoteServiceErrorResponse;
2512
- /**
2513
- * Forbidden
2514
- */
2515
- 403: Volo_Abp_Http_RemoteServiceErrorResponse;
2516
- /**
2517
- * Not Found
2518
- */
2519
- 404: Volo_Abp_Http_RemoteServiceErrorResponse;
2520
- /**
2521
- * Server Error
2522
- */
2523
- 500: Volo_Abp_Http_RemoteServiceErrorResponse;
2524
- /**
2525
- * Server Error
2526
- */
2527
- 501: Volo_Abp_Http_RemoteServiceErrorResponse;
2528
- };
2529
- };
2530
- };
2531
- '/api/saas/tenants/{id}/connection-strings': {
2532
- get: {
2533
- req: GetApiSaasTenantsByIdConnectionStringsData;
2534
- res: {
2535
- /**
2536
- * Success
2537
- */
2538
- 200: Volo_Saas_Host_Dtos_SaasTenantConnectionStringsDto;
2539
- /**
2540
- * Bad Request
2541
- */
2542
- 400: Volo_Abp_Http_RemoteServiceErrorResponse;
2543
- /**
2544
- * Unauthorized
2545
- */
2546
- 401: Volo_Abp_Http_RemoteServiceErrorResponse;
2547
- /**
2548
- * Forbidden
2549
- */
2550
- 403: Volo_Abp_Http_RemoteServiceErrorResponse;
2551
- /**
2552
- * Not Found
2553
- */
2554
- 404: Volo_Abp_Http_RemoteServiceErrorResponse;
2555
- /**
2556
- * Server Error
2557
- */
2558
- 500: Volo_Abp_Http_RemoteServiceErrorResponse;
2559
- /**
2560
- * Server Error
2561
- */
2562
- 501: Volo_Abp_Http_RemoteServiceErrorResponse;
2563
- };
2564
- };
2565
- put: {
2566
- req: PutApiSaasTenantsByIdConnectionStringsData;
2567
- res: {
2568
- /**
2569
- * Success
2570
- */
2571
- 200: unknown;
2572
- /**
2573
- * Bad Request
2574
- */
2575
- 400: Volo_Abp_Http_RemoteServiceErrorResponse;
2576
- /**
2577
- * Unauthorized
2578
- */
2579
- 401: Volo_Abp_Http_RemoteServiceErrorResponse;
2580
- /**
2581
- * Forbidden
2582
- */
2583
- 403: Volo_Abp_Http_RemoteServiceErrorResponse;
2584
- /**
2585
- * Not Found
2586
- */
2587
- 404: Volo_Abp_Http_RemoteServiceErrorResponse;
2588
- /**
2589
- * Server Error
2590
- */
2591
- 500: Volo_Abp_Http_RemoteServiceErrorResponse;
2592
- /**
2593
- * Server Error
2594
- */
2595
- 501: Volo_Abp_Http_RemoteServiceErrorResponse;
2596
- };
2597
- };
2598
- };
2599
- '/api/saas/tenants/{id}/apply-database-migrations': {
2600
- post: {
2601
- req: PostApiSaasTenantsByIdApplyDatabaseMigrationsData;
2602
- res: {
2603
- /**
2604
- * Success
2605
- */
2606
- 200: unknown;
2607
- /**
2608
- * Bad Request
2609
- */
2610
- 400: Volo_Abp_Http_RemoteServiceErrorResponse;
2611
- /**
2612
- * Unauthorized
2613
- */
2614
- 401: Volo_Abp_Http_RemoteServiceErrorResponse;
2615
- /**
2616
- * Forbidden
2617
- */
2618
- 403: Volo_Abp_Http_RemoteServiceErrorResponse;
2619
- /**
2620
- * Not Found
2621
- */
2622
- 404: Volo_Abp_Http_RemoteServiceErrorResponse;
2623
- /**
2624
- * Server Error
2625
- */
2626
- 500: Volo_Abp_Http_RemoteServiceErrorResponse;
2627
- /**
2628
- * Server Error
2629
- */
2630
- 501: Volo_Abp_Http_RemoteServiceErrorResponse;
2631
- };
2632
- };
2633
- };
2634
- '/api/saas/tenants/lookup/editions': {
2635
- get: {
2636
- res: {
2637
- /**
2638
- * Success
2639
- */
2640
- 200: Array<Volo_Saas_Host_Dtos_EditionLookupDto>;
2641
- /**
2642
- * Bad Request
2643
- */
2644
- 400: Volo_Abp_Http_RemoteServiceErrorResponse;
2645
- /**
2646
- * Unauthorized
2647
- */
2648
- 401: Volo_Abp_Http_RemoteServiceErrorResponse;
2649
- /**
2650
- * Forbidden
2651
- */
2652
- 403: Volo_Abp_Http_RemoteServiceErrorResponse;
2653
- /**
2654
- * Not Found
2655
- */
2656
- 404: Volo_Abp_Http_RemoteServiceErrorResponse;
2657
- /**
2658
- * Server Error
2659
- */
2660
- 500: Volo_Abp_Http_RemoteServiceErrorResponse;
2661
- /**
2662
- * Server Error
2663
- */
2664
- 501: Volo_Abp_Http_RemoteServiceErrorResponse;
2665
- };
2666
- };
2667
- };
2668
- '/api/saas/tenants/check-connection-string': {
2669
- get: {
2670
- req: GetApiSaasTenantsCheckConnectionStringData;
2671
- res: {
2672
- /**
2673
- * Success
2674
- */
2675
- 200: boolean;
2676
- /**
2677
- * Bad Request
2678
- */
2679
- 400: Volo_Abp_Http_RemoteServiceErrorResponse;
2680
- /**
2681
- * Unauthorized
2682
- */
2683
- 401: Volo_Abp_Http_RemoteServiceErrorResponse;
2684
- /**
2685
- * Forbidden
2686
- */
2687
- 403: Volo_Abp_Http_RemoteServiceErrorResponse;
2688
- /**
2689
- * Not Found
2690
- */
2691
- 404: Volo_Abp_Http_RemoteServiceErrorResponse;
2692
- /**
2693
- * Server Error
2694
- */
2695
- 500: Volo_Abp_Http_RemoteServiceErrorResponse;
2696
- /**
2697
- * Server Error
2698
- */
2699
- 501: Volo_Abp_Http_RemoteServiceErrorResponse;
2700
- };
2701
- };
2702
- };
2703
- '/api/saas/tenants/{id}/set-password': {
2704
- put: {
2705
- req: PutApiSaasTenantsByIdSetPasswordData;
2706
- res: {
2707
- /**
2708
- * Success
2709
- */
2710
- 200: unknown;
2711
- /**
2712
- * Bad Request
2713
- */
2714
- 400: Volo_Abp_Http_RemoteServiceErrorResponse;
2715
- /**
2716
- * Unauthorized
2717
- */
2718
- 401: Volo_Abp_Http_RemoteServiceErrorResponse;
2719
- /**
2720
- * Forbidden
2721
- */
2722
- 403: Volo_Abp_Http_RemoteServiceErrorResponse;
2723
- /**
2724
- * Not Found
2725
- */
2726
- 404: Volo_Abp_Http_RemoteServiceErrorResponse;
2727
- /**
2728
- * Server Error
2729
- */
2730
- 500: Volo_Abp_Http_RemoteServiceErrorResponse;
2731
- /**
2732
- * Server Error
2733
- */
2734
- 501: Volo_Abp_Http_RemoteServiceErrorResponse;
2735
- };
2736
- };
2737
- };
2738
- };
1
+ // This file is auto-generated by @hey-api/openapi-ts
2
+
3
+ export type PagedResultDto_EditionDto = {
4
+ items?: Array<Volo_Saas_Host_Dtos_EditionDto> | null;
5
+ totalCount?: number;
6
+ };
7
+
8
+ export type PagedResultDto_GatewayPlanDto = {
9
+ items?: Array<Volo_Payment_Plans_GatewayPlanDto> | null;
10
+ totalCount?: number;
11
+ };
12
+
13
+ export type PagedResultDto_PaymentRequestWithDetailsDto = {
14
+ items?: Array<Volo_Payment_Requests_PaymentRequestWithDetailsDto> | null;
15
+ totalCount?: number;
16
+ };
17
+
18
+ export type PagedResultDto_PlanDto = {
19
+ items?: Array<Volo_Payment_Plans_PlanDto> | null;
20
+ totalCount?: number;
21
+ };
22
+
23
+ export type PagedResultDto_SaasTenantDto = {
24
+ items?: Array<Volo_Saas_Host_Dtos_SaasTenantDto> | null;
25
+ totalCount?: number;
26
+ };
27
+
28
+ export type UniRefund_SaasService_Tenants_SaasTenantCustomCreateDto = {
29
+ readonly extraProperties?: {
30
+ [key: string]: unknown;
31
+ } | null;
32
+ name: string;
33
+ editionId?: (string) | null;
34
+ activationState?: Volo_Saas_TenantActivationState;
35
+ activationEndDate?: (string) | null;
36
+ editionEndDateUtc?: (string) | null;
37
+ adminEmailAddress: string;
38
+ adminPassword: string;
39
+ connectionStrings?: Volo_Saas_Host_Dtos_SaasTenantConnectionStringsDto;
40
+ defaultLanguage?: (string) | null;
41
+ timeZone?: (string) | null;
42
+ countryCode3?: (string) | null;
43
+ currency?: (string) | null;
44
+ };
45
+
46
+ export type UniRefund_SaasService_Tenants_SaasTenantCustomDto = {
47
+ readonly extraProperties?: {
48
+ [key: string]: unknown;
49
+ } | null;
50
+ id?: string;
51
+ name?: (string) | null;
52
+ editionId?: (string) | null;
53
+ editionEndDateUtc?: (string) | null;
54
+ editionName?: (string) | null;
55
+ hasDefaultConnectionString?: boolean;
56
+ activationState?: Volo_Saas_TenantActivationState;
57
+ activationEndDate?: (string) | null;
58
+ concurrencyStamp?: (string) | null;
59
+ defaultLanguage?: (string) | null;
60
+ timeZone?: (string) | null;
61
+ countryCode3?: (string) | null;
62
+ currency?: (string) | null;
63
+ };
64
+
65
+ export type UniRefund_SaasService_Tenants_SaasTenantCustomUpdateDto = {
66
+ readonly extraProperties?: {
67
+ [key: string]: unknown;
68
+ } | null;
69
+ name: string;
70
+ editionId?: (string) | null;
71
+ activationState?: Volo_Saas_TenantActivationState;
72
+ activationEndDate?: (string) | null;
73
+ editionEndDateUtc?: (string) | null;
74
+ concurrencyStamp?: (string) | null;
75
+ defaultLanguage?: (string) | null;
76
+ timeZone?: (string) | null;
77
+ countryCode3?: (string) | null;
78
+ currency?: (string) | null;
79
+ };
80
+
81
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationAuthConfigurationDto = {
82
+ grantedPolicies?: {
83
+ [key: string]: (boolean);
84
+ } | null;
85
+ };
86
+
87
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationConfigurationDto = {
88
+ localization?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationConfigurationDto;
89
+ auth?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationAuthConfigurationDto;
90
+ setting?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationSettingConfigurationDto;
91
+ currentUser?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_CurrentUserDto;
92
+ features?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationFeatureConfigurationDto;
93
+ globalFeatures?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationGlobalFeatureConfigurationDto;
94
+ multiTenancy?: Volo_Abp_AspNetCore_Mvc_MultiTenancy_MultiTenancyInfoDto;
95
+ currentTenant?: Volo_Abp_AspNetCore_Mvc_MultiTenancy_CurrentTenantDto;
96
+ timing?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_TimingDto;
97
+ clock?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ClockDto;
98
+ objectExtensions?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ObjectExtensionsDto;
99
+ extraProperties?: {
100
+ [key: string]: unknown;
101
+ } | null;
102
+ };
103
+
104
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationFeatureConfigurationDto = {
105
+ values?: {
106
+ [key: string]: ((string) | null);
107
+ } | null;
108
+ };
109
+
110
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationGlobalFeatureConfigurationDto = {
111
+ enabledFeatures?: Array<(string)> | null;
112
+ };
113
+
114
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationConfigurationDto = {
115
+ values?: {
116
+ [key: string]: {
117
+ [key: string]: (string);
118
+ };
119
+ } | null;
120
+ resources?: {
121
+ [key: string]: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationResourceDto;
122
+ } | null;
123
+ languages?: Array<Volo_Abp_Localization_LanguageInfo> | null;
124
+ currentCulture?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_CurrentCultureDto;
125
+ defaultResourceName?: (string) | null;
126
+ languagesMap?: {
127
+ [key: string]: Array<Volo_Abp_NameValue>;
128
+ } | null;
129
+ languageFilesMap?: {
130
+ [key: string]: Array<Volo_Abp_NameValue>;
131
+ } | null;
132
+ };
133
+
134
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationDto = {
135
+ resources?: {
136
+ [key: string]: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationResourceDto;
137
+ } | null;
138
+ currentCulture?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_CurrentCultureDto;
139
+ };
140
+
141
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationResourceDto = {
142
+ texts?: {
143
+ [key: string]: (string);
144
+ } | null;
145
+ baseResources?: Array<(string)> | null;
146
+ };
147
+
148
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationSettingConfigurationDto = {
149
+ values?: {
150
+ [key: string]: ((string) | null);
151
+ } | null;
152
+ };
153
+
154
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ClockDto = {
155
+ kind?: (string) | null;
156
+ };
157
+
158
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_CurrentCultureDto = {
159
+ displayName?: (string) | null;
160
+ englishName?: (string) | null;
161
+ threeLetterIsoLanguageName?: (string) | null;
162
+ twoLetterIsoLanguageName?: (string) | null;
163
+ isRightToLeft?: boolean;
164
+ cultureName?: (string) | null;
165
+ name?: (string) | null;
166
+ nativeName?: (string) | null;
167
+ dateTimeFormat?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_DateTimeFormatDto;
168
+ };
169
+
170
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_CurrentUserDto = {
171
+ isAuthenticated?: boolean;
172
+ id?: (string) | null;
173
+ tenantId?: (string) | null;
174
+ impersonatorUserId?: (string) | null;
175
+ impersonatorTenantId?: (string) | null;
176
+ impersonatorUserName?: (string) | null;
177
+ impersonatorTenantName?: (string) | null;
178
+ userName?: (string) | null;
179
+ name?: (string) | null;
180
+ surName?: (string) | null;
181
+ email?: (string) | null;
182
+ emailVerified?: boolean;
183
+ phoneNumber?: (string) | null;
184
+ phoneNumberVerified?: boolean;
185
+ roles?: Array<(string)> | null;
186
+ sessionId?: (string) | null;
187
+ };
188
+
189
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_DateTimeFormatDto = {
190
+ calendarAlgorithmType?: (string) | null;
191
+ dateTimeFormatLong?: (string) | null;
192
+ shortDatePattern?: (string) | null;
193
+ fullDateTimePattern?: (string) | null;
194
+ dateSeparator?: (string) | null;
195
+ shortTimePattern?: (string) | null;
196
+ longTimePattern?: (string) | null;
197
+ };
198
+
199
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_IanaTimeZone = {
200
+ timeZoneName?: (string) | null;
201
+ };
202
+
203
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_EntityExtensionDto = {
204
+ properties?: {
205
+ [key: string]: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyDto;
206
+ } | null;
207
+ configuration?: {
208
+ [key: string]: unknown;
209
+ } | null;
210
+ };
211
+
212
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionEnumDto = {
213
+ fields?: Array<Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionEnumFieldDto> | null;
214
+ localizationResource?: (string) | null;
215
+ };
216
+
217
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionEnumFieldDto = {
218
+ name?: (string) | null;
219
+ value?: unknown;
220
+ };
221
+
222
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiCreateDto = {
223
+ isAvailable?: boolean;
224
+ };
225
+
226
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiDto = {
227
+ onGet?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiGetDto;
228
+ onCreate?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiCreateDto;
229
+ onUpdate?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiUpdateDto;
230
+ };
231
+
232
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiGetDto = {
233
+ isAvailable?: boolean;
234
+ };
235
+
236
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiUpdateDto = {
237
+ isAvailable?: boolean;
238
+ };
239
+
240
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyAttributeDto = {
241
+ typeSimple?: (string) | null;
242
+ config?: {
243
+ [key: string]: unknown;
244
+ } | null;
245
+ };
246
+
247
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyDto = {
248
+ type?: (string) | null;
249
+ typeSimple?: (string) | null;
250
+ displayName?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_LocalizableStringDto;
251
+ api?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiDto;
252
+ ui?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiDto;
253
+ attributes?: Array<Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyAttributeDto> | null;
254
+ configuration?: {
255
+ [key: string]: unknown;
256
+ } | null;
257
+ defaultValue?: unknown;
258
+ };
259
+
260
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiDto = {
261
+ onTable?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiTableDto;
262
+ onCreateForm?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiFormDto;
263
+ onEditForm?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiFormDto;
264
+ lookup?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiLookupDto;
265
+ };
266
+
267
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiFormDto = {
268
+ isVisible?: boolean;
269
+ };
270
+
271
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiLookupDto = {
272
+ url?: (string) | null;
273
+ resultListPropertyName?: (string) | null;
274
+ displayPropertyName?: (string) | null;
275
+ valuePropertyName?: (string) | null;
276
+ filterParamName?: (string) | null;
277
+ };
278
+
279
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiTableDto = {
280
+ isVisible?: boolean;
281
+ };
282
+
283
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_LocalizableStringDto = {
284
+ name?: (string) | null;
285
+ resource?: (string) | null;
286
+ };
287
+
288
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ModuleExtensionDto = {
289
+ entities?: {
290
+ [key: string]: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_EntityExtensionDto;
291
+ } | null;
292
+ configuration?: {
293
+ [key: string]: unknown;
294
+ } | null;
295
+ };
296
+
297
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ObjectExtensionsDto = {
298
+ modules?: {
299
+ [key: string]: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ModuleExtensionDto;
300
+ } | null;
301
+ enums?: {
302
+ [key: string]: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionEnumDto;
303
+ } | null;
304
+ };
305
+
306
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_TimeZone = {
307
+ iana?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_IanaTimeZone;
308
+ windows?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_WindowsTimeZone;
309
+ };
310
+
311
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_TimingDto = {
312
+ timeZone?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_TimeZone;
313
+ };
314
+
315
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_WindowsTimeZone = {
316
+ timeZoneId?: (string) | null;
317
+ };
318
+
319
+ export type Volo_Abp_AspNetCore_Mvc_MultiTenancy_CurrentTenantDto = {
320
+ id?: (string) | null;
321
+ name?: (string) | null;
322
+ isAvailable?: boolean;
323
+ };
324
+
325
+ export type Volo_Abp_AspNetCore_Mvc_MultiTenancy_MultiTenancyInfoDto = {
326
+ isEnabled?: boolean;
327
+ };
328
+
329
+ export type Volo_Abp_FeatureManagement_FeatureDto = {
330
+ name?: (string) | null;
331
+ displayName?: (string) | null;
332
+ value?: (string) | null;
333
+ provider?: Volo_Abp_FeatureManagement_FeatureProviderDto;
334
+ description?: (string) | null;
335
+ valueType?: Volo_Abp_Validation_StringValues_IStringValueType;
336
+ depth?: number;
337
+ parentName?: (string) | null;
338
+ };
339
+
340
+ export type Volo_Abp_FeatureManagement_FeatureGroupDto = {
341
+ name?: (string) | null;
342
+ displayName?: (string) | null;
343
+ features?: Array<Volo_Abp_FeatureManagement_FeatureDto> | null;
344
+ };
345
+
346
+ export type Volo_Abp_FeatureManagement_FeatureProviderDto = {
347
+ name?: (string) | null;
348
+ key?: (string) | null;
349
+ };
350
+
351
+ export type Volo_Abp_FeatureManagement_GetFeatureListResultDto = {
352
+ groups?: Array<Volo_Abp_FeatureManagement_FeatureGroupDto> | null;
353
+ };
354
+
355
+ export type Volo_Abp_FeatureManagement_UpdateFeatureDto = {
356
+ name?: (string) | null;
357
+ value?: (string) | null;
358
+ };
359
+
360
+ export type Volo_Abp_FeatureManagement_UpdateFeaturesDto = {
361
+ features?: Array<Volo_Abp_FeatureManagement_UpdateFeatureDto> | null;
362
+ };
363
+
364
+ export type Volo_Abp_Http_Modeling_ActionApiDescriptionModel = {
365
+ uniqueName?: (string) | null;
366
+ name?: (string) | null;
367
+ httpMethod?: (string) | null;
368
+ url?: (string) | null;
369
+ supportedVersions?: Array<(string)> | null;
370
+ parametersOnMethod?: Array<Volo_Abp_Http_Modeling_MethodParameterApiDescriptionModel> | null;
371
+ parameters?: Array<Volo_Abp_Http_Modeling_ParameterApiDescriptionModel> | null;
372
+ returnValue?: Volo_Abp_Http_Modeling_ReturnValueApiDescriptionModel;
373
+ allowAnonymous?: (boolean) | null;
374
+ implementFrom?: (string) | null;
375
+ };
376
+
377
+ export type Volo_Abp_Http_Modeling_ApplicationApiDescriptionModel = {
378
+ modules?: {
379
+ [key: string]: Volo_Abp_Http_Modeling_ModuleApiDescriptionModel;
380
+ } | null;
381
+ types?: {
382
+ [key: string]: Volo_Abp_Http_Modeling_TypeApiDescriptionModel;
383
+ } | null;
384
+ };
385
+
386
+ export type Volo_Abp_Http_Modeling_ControllerApiDescriptionModel = {
387
+ controllerName?: (string) | null;
388
+ controllerGroupName?: (string) | null;
389
+ isRemoteService?: boolean;
390
+ isIntegrationService?: boolean;
391
+ apiVersion?: (string) | null;
392
+ type?: (string) | null;
393
+ interfaces?: Array<Volo_Abp_Http_Modeling_ControllerInterfaceApiDescriptionModel> | null;
394
+ actions?: {
395
+ [key: string]: Volo_Abp_Http_Modeling_ActionApiDescriptionModel;
396
+ } | null;
397
+ };
398
+
399
+ export type Volo_Abp_Http_Modeling_ControllerInterfaceApiDescriptionModel = {
400
+ type?: (string) | null;
401
+ name?: (string) | null;
402
+ methods?: Array<Volo_Abp_Http_Modeling_InterfaceMethodApiDescriptionModel> | null;
403
+ };
404
+
405
+ export type Volo_Abp_Http_Modeling_InterfaceMethodApiDescriptionModel = {
406
+ name?: (string) | null;
407
+ parametersOnMethod?: Array<Volo_Abp_Http_Modeling_MethodParameterApiDescriptionModel> | null;
408
+ returnValue?: Volo_Abp_Http_Modeling_ReturnValueApiDescriptionModel;
409
+ };
410
+
411
+ export type Volo_Abp_Http_Modeling_MethodParameterApiDescriptionModel = {
412
+ name?: (string) | null;
413
+ typeAsString?: (string) | null;
414
+ type?: (string) | null;
415
+ typeSimple?: (string) | null;
416
+ isOptional?: boolean;
417
+ defaultValue?: unknown;
418
+ };
419
+
420
+ export type Volo_Abp_Http_Modeling_ModuleApiDescriptionModel = {
421
+ rootPath?: (string) | null;
422
+ remoteServiceName?: (string) | null;
423
+ controllers?: {
424
+ [key: string]: Volo_Abp_Http_Modeling_ControllerApiDescriptionModel;
425
+ } | null;
426
+ };
427
+
428
+ export type Volo_Abp_Http_Modeling_ParameterApiDescriptionModel = {
429
+ nameOnMethod?: (string) | null;
430
+ name?: (string) | null;
431
+ jsonName?: (string) | null;
432
+ type?: (string) | null;
433
+ typeSimple?: (string) | null;
434
+ isOptional?: boolean;
435
+ defaultValue?: unknown;
436
+ constraintTypes?: Array<(string)> | null;
437
+ bindingSourceId?: (string) | null;
438
+ descriptorName?: (string) | null;
439
+ };
440
+
441
+ export type Volo_Abp_Http_Modeling_PropertyApiDescriptionModel = {
442
+ name?: (string) | null;
443
+ jsonName?: (string) | null;
444
+ type?: (string) | null;
445
+ typeSimple?: (string) | null;
446
+ isRequired?: boolean;
447
+ minLength?: (number) | null;
448
+ maxLength?: (number) | null;
449
+ minimum?: (string) | null;
450
+ maximum?: (string) | null;
451
+ regex?: (string) | null;
452
+ };
453
+
454
+ export type Volo_Abp_Http_Modeling_ReturnValueApiDescriptionModel = {
455
+ type?: (string) | null;
456
+ typeSimple?: (string) | null;
457
+ };
458
+
459
+ export type Volo_Abp_Http_Modeling_TypeApiDescriptionModel = {
460
+ baseType?: (string) | null;
461
+ isEnum?: boolean;
462
+ enumNames?: Array<(string)> | null;
463
+ enumValues?: Array<unknown> | null;
464
+ genericArguments?: Array<(string)> | null;
465
+ properties?: Array<Volo_Abp_Http_Modeling_PropertyApiDescriptionModel> | null;
466
+ };
467
+
468
+ export type Volo_Abp_Http_RemoteServiceErrorInfo = {
469
+ code?: (string) | null;
470
+ message?: (string) | null;
471
+ details?: (string) | null;
472
+ data?: {
473
+ [key: string]: unknown;
474
+ } | null;
475
+ validationErrors?: Array<Volo_Abp_Http_RemoteServiceValidationErrorInfo> | null;
476
+ };
477
+
478
+ export type Volo_Abp_Http_RemoteServiceErrorResponse = {
479
+ error?: Volo_Abp_Http_RemoteServiceErrorInfo;
480
+ };
481
+
482
+ export type Volo_Abp_Http_RemoteServiceValidationErrorInfo = {
483
+ message?: (string) | null;
484
+ members?: Array<(string)> | null;
485
+ };
486
+
487
+ export type Volo_Abp_Localization_LanguageInfo = {
488
+ cultureName?: (string) | null;
489
+ uiCultureName?: (string) | null;
490
+ displayName?: (string) | null;
491
+ readonly twoLetterISOLanguageName?: (string) | null;
492
+ };
493
+
494
+ export type Volo_Abp_NameValue = {
495
+ name?: (string) | null;
496
+ value?: (string) | null;
497
+ };
498
+
499
+ export type Volo_Abp_Validation_StringValues_IStringValueType = {
500
+ readonly name?: (string) | null;
501
+ readonly properties?: {
502
+ [key: string]: unknown;
503
+ } | null;
504
+ validator?: Volo_Abp_Validation_StringValues_IValueValidator;
505
+ };
506
+
507
+ export type Volo_Abp_Validation_StringValues_IValueValidator = {
508
+ readonly name?: (string) | null;
509
+ readonly properties?: {
510
+ [key: string]: unknown;
511
+ } | null;
512
+ };
513
+
514
+ export type Volo_Payment_Admin_Plans_GatewayPlanCreateInput = {
515
+ readonly extraProperties?: {
516
+ [key: string]: unknown;
517
+ } | null;
518
+ gateway: string;
519
+ externalId: string;
520
+ };
521
+
522
+ export type Volo_Payment_Admin_Plans_GatewayPlanUpdateInput = {
523
+ readonly extraProperties?: {
524
+ [key: string]: unknown;
525
+ } | null;
526
+ externalId: string;
527
+ };
528
+
529
+ export type Volo_Payment_Admin_Plans_PlanCreateInput = {
530
+ readonly extraProperties?: {
531
+ [key: string]: unknown;
532
+ } | null;
533
+ name: string;
534
+ };
535
+
536
+ export type Volo_Payment_Admin_Plans_PlanUpdateInput = {
537
+ readonly extraProperties?: {
538
+ [key: string]: unknown;
539
+ } | null;
540
+ name: string;
541
+ concurrencyStamp?: (string) | null;
542
+ };
543
+
544
+ export type Volo_Payment_Gateways_GatewayDto = {
545
+ name?: (string) | null;
546
+ displayName?: (string) | null;
547
+ };
548
+
549
+ export type Volo_Payment_IPaymentRequestProductExtraParameterConfiguration = {
550
+ [key: string]: unknown;
551
+ };
552
+
553
+ export type Volo_Payment_Plans_GatewayPlanDto = {
554
+ readonly extraProperties?: {
555
+ [key: string]: unknown;
556
+ } | null;
557
+ planId?: string;
558
+ gateway?: (string) | null;
559
+ externalId?: (string) | null;
560
+ };
561
+
562
+ export type Volo_Payment_Plans_PlanDto = {
563
+ readonly extraProperties?: {
564
+ [key: string]: unknown;
565
+ } | null;
566
+ id?: string;
567
+ name?: (string) | null;
568
+ concurrencyStamp?: (string) | null;
569
+ };
570
+
571
+ export type Volo_Payment_Requests_PaymentRequestCreateDto = {
572
+ readonly extraProperties?: {
573
+ [key: string]: unknown;
574
+ } | null;
575
+ currency?: (string) | null;
576
+ products?: Array<Volo_Payment_Requests_PaymentRequestProductCreateDto> | null;
577
+ };
578
+
579
+ export type Volo_Payment_Requests_PaymentRequestProductCreateDto = {
580
+ code: string;
581
+ name: string;
582
+ unitPrice?: number;
583
+ count?: number;
584
+ totalPrice?: (number) | null;
585
+ paymentType?: Volo_Payment_Requests_PaymentType;
586
+ planId?: (string) | null;
587
+ extraProperties?: {
588
+ [key: string]: Volo_Payment_IPaymentRequestProductExtraParameterConfiguration;
589
+ } | null;
590
+ };
591
+
592
+ export type Volo_Payment_Requests_PaymentRequestProductDto = {
593
+ paymentRequestId?: string;
594
+ code?: (string) | null;
595
+ name?: (string) | null;
596
+ unitPrice?: number;
597
+ count?: number;
598
+ totalPrice?: number;
599
+ paymentType?: Volo_Payment_Requests_PaymentType;
600
+ planId?: string;
601
+ extraProperties?: {
602
+ [key: string]: unknown;
603
+ } | null;
604
+ };
605
+
606
+ export type Volo_Payment_Requests_PaymentRequestStartDto = {
607
+ readonly extraProperties?: {
608
+ [key: string]: unknown;
609
+ } | null;
610
+ paymentRequestId?: string;
611
+ returnUrl: string;
612
+ cancelUrl?: (string) | null;
613
+ };
614
+
615
+ export type Volo_Payment_Requests_PaymentRequestStartResultDto = {
616
+ readonly extraProperties?: {
617
+ [key: string]: unknown;
618
+ } | null;
619
+ checkoutLink?: (string) | null;
620
+ };
621
+
622
+ export type Volo_Payment_Requests_PaymentRequestState = 0 | 1 | 2 | 3;
623
+
624
+ export type Volo_Payment_Requests_PaymentRequestWithDetailsDto = {
625
+ readonly extraProperties?: {
626
+ [key: string]: unknown;
627
+ } | null;
628
+ id?: string;
629
+ products?: Array<Volo_Payment_Requests_PaymentRequestProductDto> | null;
630
+ currency?: (string) | null;
631
+ state?: Volo_Payment_Requests_PaymentRequestState;
632
+ failReason?: (string) | null;
633
+ emailSendDate?: (string) | null;
634
+ gateway?: (string) | null;
635
+ externalSubscriptionId?: (string) | null;
636
+ totalPrice?: number;
637
+ creationTime?: string;
638
+ };
639
+
640
+ export type Volo_Payment_Requests_PaymentType = 0 | 1;
641
+
642
+ export type Volo_Saas_Host_Dtos_EditionCreateDto = {
643
+ readonly extraProperties?: {
644
+ [key: string]: unknown;
645
+ } | null;
646
+ displayName: string;
647
+ planId?: (string) | null;
648
+ };
649
+
650
+ export type Volo_Saas_Host_Dtos_EditionDto = {
651
+ readonly extraProperties?: {
652
+ [key: string]: unknown;
653
+ } | null;
654
+ id?: string;
655
+ displayName?: (string) | null;
656
+ planId?: (string) | null;
657
+ planName?: (string) | null;
658
+ concurrencyStamp?: (string) | null;
659
+ tenantCount?: number;
660
+ };
661
+
662
+ export type Volo_Saas_Host_Dtos_EditionLookupDto = {
663
+ readonly extraProperties?: {
664
+ [key: string]: unknown;
665
+ } | null;
666
+ id?: string;
667
+ displayName?: (string) | null;
668
+ };
669
+
670
+ export type Volo_Saas_Host_Dtos_EditionUpdateDto = {
671
+ readonly extraProperties?: {
672
+ [key: string]: unknown;
673
+ } | null;
674
+ displayName: string;
675
+ planId?: (string) | null;
676
+ concurrencyStamp?: (string) | null;
677
+ };
678
+
679
+ export type Volo_Saas_Host_Dtos_SaasTenantConnectionStringsDto = {
680
+ readonly extraProperties?: {
681
+ [key: string]: unknown;
682
+ } | null;
683
+ default?: (string) | null;
684
+ databases?: Array<Volo_Saas_Host_Dtos_SaasTenantDatabaseConnectionStringsDto> | null;
685
+ };
686
+
687
+ export type Volo_Saas_Host_Dtos_SaasTenantDatabaseConnectionStringsDto = {
688
+ readonly extraProperties?: {
689
+ [key: string]: unknown;
690
+ } | null;
691
+ databaseName?: (string) | null;
692
+ connectionString?: (string) | null;
693
+ };
694
+
695
+ export type Volo_Saas_Host_Dtos_SaasTenantDatabasesDto = {
696
+ readonly extraProperties?: {
697
+ [key: string]: unknown;
698
+ } | null;
699
+ databases?: Array<(string)> | null;
700
+ };
701
+
702
+ export type Volo_Saas_Host_Dtos_SaasTenantDto = {
703
+ readonly extraProperties?: {
704
+ [key: string]: unknown;
705
+ } | null;
706
+ id?: string;
707
+ name?: (string) | null;
708
+ editionId?: (string) | null;
709
+ editionEndDateUtc?: (string) | null;
710
+ editionName?: (string) | null;
711
+ hasDefaultConnectionString?: boolean;
712
+ activationState?: Volo_Saas_TenantActivationState;
713
+ activationEndDate?: (string) | null;
714
+ concurrencyStamp?: (string) | null;
715
+ };
716
+
717
+ export type Volo_Saas_Host_Dtos_SaasTenantSetPasswordDto = {
718
+ username?: (string) | null;
719
+ password?: (string) | null;
720
+ };
721
+
722
+ export type Volo_Saas_Host_GetEditionUsageStatisticsResultDto = {
723
+ data?: {
724
+ [key: string]: ((number) | null);
725
+ } | null;
726
+ };
727
+
728
+ export type Volo_Saas_TenantActivationState = 0 | 1 | 2;
729
+
730
+ export type GetApiAbpApiDefinitionData = {
731
+ includeTypes?: boolean;
732
+ };
733
+
734
+ export type GetApiAbpApiDefinitionResponse = (Volo_Abp_Http_Modeling_ApplicationApiDescriptionModel);
735
+
736
+ export type GetApiAbpApplicationConfigurationData = {
737
+ includeLocalizationResources?: boolean;
738
+ };
739
+
740
+ export type GetApiAbpApplicationConfigurationResponse = (Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationConfigurationDto);
741
+
742
+ export type GetApiAbpApplicationLocalizationData = {
743
+ cultureName: string;
744
+ onlyDynamics?: boolean;
745
+ };
746
+
747
+ export type GetApiAbpApplicationLocalizationResponse = (Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationDto);
748
+
749
+ export type GetApiSaasEditionsByIdData = {
750
+ id: string;
751
+ };
752
+
753
+ export type GetApiSaasEditionsByIdResponse = (Volo_Saas_Host_Dtos_EditionDto);
754
+
755
+ export type PutApiSaasEditionsByIdData = {
756
+ id: string;
757
+ requestBody?: Volo_Saas_Host_Dtos_EditionUpdateDto;
758
+ };
759
+
760
+ export type PutApiSaasEditionsByIdResponse = (Volo_Saas_Host_Dtos_EditionDto);
761
+
762
+ export type DeleteApiSaasEditionsByIdData = {
763
+ id: string;
764
+ };
765
+
766
+ export type DeleteApiSaasEditionsByIdResponse = (unknown);
767
+
768
+ export type GetApiSaasEditionsData = {
769
+ filter?: string;
770
+ maxResultCount?: number;
771
+ skipCount?: number;
772
+ sorting?: string;
773
+ };
774
+
775
+ export type GetApiSaasEditionsResponse = (PagedResultDto_EditionDto);
776
+
777
+ export type PostApiSaasEditionsData = {
778
+ requestBody?: Volo_Saas_Host_Dtos_EditionCreateDto;
779
+ };
780
+
781
+ export type PostApiSaasEditionsResponse = (Volo_Saas_Host_Dtos_EditionDto);
782
+
783
+ export type PutApiSaasEditionsByIdMoveAllTenantsData = {
784
+ editionId?: string;
785
+ id: string;
786
+ };
787
+
788
+ export type PutApiSaasEditionsByIdMoveAllTenantsResponse = (unknown);
789
+
790
+ export type GetApiSaasEditionsAllResponse = (Array<Volo_Saas_Host_Dtos_EditionDto>);
791
+
792
+ export type GetApiSaasEditionsStatisticsUsageStatisticResponse = (Volo_Saas_Host_GetEditionUsageStatisticsResultDto);
793
+
794
+ export type GetApiSaasEditionsPlanLookupResponse = (Array<Volo_Payment_Plans_PlanDto>);
795
+
796
+ export type PostApiSaasSubscriptionData = {
797
+ editionId?: string;
798
+ tenantId?: string;
799
+ };
800
+
801
+ export type PostApiSaasSubscriptionResponse = (Volo_Payment_Requests_PaymentRequestWithDetailsDto);
802
+
803
+ export type GetApiFeatureManagementFeaturesData = {
804
+ providerKey?: string;
805
+ providerName?: string;
806
+ };
807
+
808
+ export type GetApiFeatureManagementFeaturesResponse = (Volo_Abp_FeatureManagement_GetFeatureListResultDto);
809
+
810
+ export type PutApiFeatureManagementFeaturesData = {
811
+ providerKey?: string;
812
+ providerName?: string;
813
+ requestBody?: Volo_Abp_FeatureManagement_UpdateFeaturesDto;
814
+ };
815
+
816
+ export type PutApiFeatureManagementFeaturesResponse = (unknown);
817
+
818
+ export type DeleteApiFeatureManagementFeaturesData = {
819
+ providerKey?: string;
820
+ providerName?: string;
821
+ };
822
+
823
+ export type DeleteApiFeatureManagementFeaturesResponse = (unknown);
824
+
825
+ export type GetApiPaymentGatewaysResponse = (Array<Volo_Payment_Gateways_GatewayDto>);
826
+
827
+ export type GetApiPaymentGatewaysSubscriptionSupportedResponse = (Array<Volo_Payment_Gateways_GatewayDto>);
828
+
829
+ export type PostApiPaymentByPaymentMethodCompleteData = {
830
+ paymentMethod: string;
831
+ requestBody?: {
832
+ [key: string]: (string);
833
+ };
834
+ };
835
+
836
+ export type PostApiPaymentByPaymentMethodCompleteResponse = (Volo_Payment_Requests_PaymentRequestWithDetailsDto);
837
+
838
+ export type PostApiPaymentRequestsData = {
839
+ requestBody?: Volo_Payment_Requests_PaymentRequestCreateDto;
840
+ };
841
+
842
+ export type PostApiPaymentRequestsResponse = (Volo_Payment_Requests_PaymentRequestWithDetailsDto);
843
+
844
+ export type GetApiPaymentRequestsByIdData = {
845
+ id: string;
846
+ };
847
+
848
+ export type GetApiPaymentRequestsByIdResponse = (Volo_Payment_Requests_PaymentRequestWithDetailsDto);
849
+
850
+ export type PostApiPaymentByPaymentMethodWebhookData = {
851
+ headers?: {
852
+ [key: string]: (string);
853
+ };
854
+ payload?: string;
855
+ paymentMethod: string;
856
+ };
857
+
858
+ export type PostApiPaymentByPaymentMethodWebhookResponse = (boolean);
859
+
860
+ export type PostApiPaymentByPaymentMethodStartData = {
861
+ paymentMethod: string;
862
+ requestBody?: Volo_Payment_Requests_PaymentRequestStartDto;
863
+ };
864
+
865
+ export type PostApiPaymentByPaymentMethodStartResponse = (Volo_Payment_Requests_PaymentRequestStartResultDto);
866
+
867
+ export type GetApiPaymentAdminPaymentRequestsData = {
868
+ creationDateMax?: string;
869
+ creationDateMin?: string;
870
+ filter?: string;
871
+ maxResultCount?: number;
872
+ paymentType?: Volo_Payment_Requests_PaymentType;
873
+ skipCount?: number;
874
+ sorting?: string;
875
+ status?: Volo_Payment_Requests_PaymentRequestState;
876
+ };
877
+
878
+ export type GetApiPaymentAdminPaymentRequestsResponse = (PagedResultDto_PaymentRequestWithDetailsDto);
879
+
880
+ export type GetApiPaymentAdminPaymentRequestsByIdData = {
881
+ id: string;
882
+ };
883
+
884
+ export type GetApiPaymentAdminPaymentRequestsByIdResponse = (Volo_Payment_Requests_PaymentRequestWithDetailsDto);
885
+
886
+ export type GetApiPaymentPlansByPlanIdByGatewayData = {
887
+ gateway: string;
888
+ planId: string;
889
+ };
890
+
891
+ export type GetApiPaymentPlansByPlanIdByGatewayResponse = (Volo_Payment_Plans_GatewayPlanDto);
892
+
893
+ export type GetApiPaymentPlansResponse = (Array<Volo_Payment_Plans_PlanDto>);
894
+
895
+ export type GetApiPaymentPlansByPlanIdData = {
896
+ planId: string;
897
+ };
898
+
899
+ export type GetApiPaymentPlansByPlanIdResponse = (Volo_Payment_Plans_PlanDto);
900
+
901
+ export type GetApiPaymentPlansManyData = {
902
+ ids?: Array<(string)>;
903
+ };
904
+
905
+ export type GetApiPaymentPlansManyResponse = (Array<Volo_Payment_Plans_PlanDto>);
906
+
907
+ export type PostApiPaymentAdminPlansData = {
908
+ requestBody?: Volo_Payment_Admin_Plans_PlanCreateInput;
909
+ };
910
+
911
+ export type PostApiPaymentAdminPlansResponse = (Volo_Payment_Plans_PlanDto);
912
+
913
+ export type DeleteApiPaymentAdminPlansData = {
914
+ id?: string;
915
+ };
916
+
917
+ export type DeleteApiPaymentAdminPlansResponse = (unknown);
918
+
919
+ export type GetApiPaymentAdminPlansData = {
920
+ filter?: string;
921
+ maxResultCount?: number;
922
+ skipCount?: number;
923
+ sorting?: string;
924
+ };
925
+
926
+ export type GetApiPaymentAdminPlansResponse = (PagedResultDto_PlanDto);
927
+
928
+ export type PostApiPaymentAdminPlansByPlanIdExternalPlansData = {
929
+ planId: string;
930
+ requestBody?: Volo_Payment_Admin_Plans_GatewayPlanCreateInput;
931
+ };
932
+
933
+ export type PostApiPaymentAdminPlansByPlanIdExternalPlansResponse = (unknown);
934
+
935
+ export type GetApiPaymentAdminPlansByPlanIdExternalPlansData = {
936
+ filter?: string;
937
+ maxResultCount?: number;
938
+ planId: string;
939
+ skipCount?: number;
940
+ sorting?: string;
941
+ };
942
+
943
+ export type GetApiPaymentAdminPlansByPlanIdExternalPlansResponse = (PagedResultDto_GatewayPlanDto);
944
+
945
+ export type DeleteApiPaymentAdminPlansByPlanIdExternalPlansByGatewayData = {
946
+ gateway: string;
947
+ planId: string;
948
+ };
949
+
950
+ export type DeleteApiPaymentAdminPlansByPlanIdExternalPlansByGatewayResponse = (unknown);
951
+
952
+ export type PutApiPaymentAdminPlansByPlanIdExternalPlansByGatewayData = {
953
+ gateway: string;
954
+ planId: string;
955
+ requestBody?: Volo_Payment_Admin_Plans_GatewayPlanUpdateInput;
956
+ };
957
+
958
+ export type PutApiPaymentAdminPlansByPlanIdExternalPlansByGatewayResponse = (unknown);
959
+
960
+ export type GetApiPaymentAdminPlansByIdData = {
961
+ id: string;
962
+ };
963
+
964
+ export type GetApiPaymentAdminPlansByIdResponse = (Volo_Payment_Plans_PlanDto);
965
+
966
+ export type PutApiPaymentAdminPlansByIdData = {
967
+ id: string;
968
+ requestBody?: Volo_Payment_Admin_Plans_PlanUpdateInput;
969
+ };
970
+
971
+ export type PutApiPaymentAdminPlansByIdResponse = (Volo_Payment_Plans_PlanDto);
972
+
973
+ export type GetApiSaasTenantsByIdData = {
974
+ id: string;
975
+ };
976
+
977
+ export type GetApiSaasTenantsByIdResponse = (UniRefund_SaasService_Tenants_SaasTenantCustomDto);
978
+
979
+ export type PutApiSaasTenantsByIdData = {
980
+ id: string;
981
+ requestBody?: UniRefund_SaasService_Tenants_SaasTenantCustomUpdateDto;
982
+ };
983
+
984
+ export type PutApiSaasTenantsByIdResponse = (Volo_Saas_Host_Dtos_SaasTenantDto);
985
+
986
+ export type DeleteApiSaasTenantsByIdData = {
987
+ id: string;
988
+ };
989
+
990
+ export type DeleteApiSaasTenantsByIdResponse = (unknown);
991
+
992
+ export type GetApiSaasTenantsData = {
993
+ activationEndDateMax?: string;
994
+ activationEndDateMin?: string;
995
+ activationState?: Volo_Saas_TenantActivationState;
996
+ editionId?: string;
997
+ expirationDateMax?: string;
998
+ expirationDateMin?: string;
999
+ filter?: string;
1000
+ getEditionNames?: boolean;
1001
+ maxResultCount?: number;
1002
+ skipCount?: number;
1003
+ sorting?: string;
1004
+ };
1005
+
1006
+ export type GetApiSaasTenantsResponse = (PagedResultDto_SaasTenantDto);
1007
+
1008
+ export type PostApiSaasTenantsData = {
1009
+ requestBody?: UniRefund_SaasService_Tenants_SaasTenantCustomCreateDto;
1010
+ };
1011
+
1012
+ export type PostApiSaasTenantsResponse = (UniRefund_SaasService_Tenants_SaasTenantCustomDto);
1013
+
1014
+ export type GetApiSaasTenantsDatabasesResponse = (Volo_Saas_Host_Dtos_SaasTenantDatabasesDto);
1015
+
1016
+ export type GetApiSaasTenantsByIdConnectionStringsData = {
1017
+ id: string;
1018
+ };
1019
+
1020
+ export type GetApiSaasTenantsByIdConnectionStringsResponse = (Volo_Saas_Host_Dtos_SaasTenantConnectionStringsDto);
1021
+
1022
+ export type PutApiSaasTenantsByIdConnectionStringsData = {
1023
+ id: string;
1024
+ requestBody?: Volo_Saas_Host_Dtos_SaasTenantConnectionStringsDto;
1025
+ };
1026
+
1027
+ export type PutApiSaasTenantsByIdConnectionStringsResponse = (unknown);
1028
+
1029
+ export type PostApiSaasTenantsByIdApplyDatabaseMigrationsData = {
1030
+ id: string;
1031
+ };
1032
+
1033
+ export type PostApiSaasTenantsByIdApplyDatabaseMigrationsResponse = (unknown);
1034
+
1035
+ export type GetApiSaasTenantsLookupEditionsResponse = (Array<Volo_Saas_Host_Dtos_EditionLookupDto>);
1036
+
1037
+ export type GetApiSaasTenantsCheckConnectionStringData = {
1038
+ connectionString?: string;
1039
+ };
1040
+
1041
+ export type GetApiSaasTenantsCheckConnectionStringResponse = (boolean);
1042
+
1043
+ export type PutApiSaasTenantsByIdSetPasswordData = {
1044
+ id: string;
1045
+ requestBody?: Volo_Saas_Host_Dtos_SaasTenantSetPasswordDto;
1046
+ };
1047
+
1048
+ export type PutApiSaasTenantsByIdSetPasswordResponse = (unknown);