@ayasofyazilim/saas 0.0.9 → 0.0.11

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