@ayasofyazilim/saas 0.0.68 → 0.0.70
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.
- package/ContractService/ContractServiceClient.ts +3 -0
- package/ContractService/schemas.gen.ts +3520 -1491
- package/ContractService/services.gen.ts +303 -2
- package/ContractService/types.gen.ts +647 -56
- package/FinanceService/FinanceServiceClient.ts +44 -0
- package/FinanceService/core/ApiError.ts +21 -0
- package/FinanceService/core/ApiRequestOptions.ts +13 -0
- package/FinanceService/core/ApiResult.ts +7 -0
- package/FinanceService/core/BaseHttpRequest.ts +10 -0
- package/FinanceService/core/CancelablePromise.ts +126 -0
- package/FinanceService/core/FetchHttpRequest.ts +22 -0
- package/FinanceService/core/OpenAPI.ts +56 -0
- package/FinanceService/core/request.ts +341 -0
- package/FinanceService/index.ts +9 -0
- package/FinanceService/schemas.gen.ts +3970 -0
- package/FinanceService/services.gen.ts +225 -0
- package/FinanceService/types.gen.ts +760 -0
- package/generator.mjs +5 -0
- package/package.json +1 -1
|
@@ -0,0 +1,760 @@
|
|
|
1
|
+
// This file is auto-generated by @hey-api/openapi-ts
|
|
2
|
+
|
|
3
|
+
export type PagedResultDto_BillingDto = {
|
|
4
|
+
items?: Array<UniRefund_FinanceService_Billings_BillingDto> | null;
|
|
5
|
+
totalCount?: number;
|
|
6
|
+
};
|
|
7
|
+
|
|
8
|
+
export type UniRefund_FinanceService_Billings_BillingDto = {
|
|
9
|
+
id?: string;
|
|
10
|
+
merchantId?: string;
|
|
11
|
+
date?: string;
|
|
12
|
+
number?: number;
|
|
13
|
+
dueDate?: string;
|
|
14
|
+
total?: number;
|
|
15
|
+
unpaid?: number;
|
|
16
|
+
status?: UniRefund_FinanceService_Enums_BillingStatusCode;
|
|
17
|
+
period?: UniRefund_FinanceService_Enums_BillingPeriodCode;
|
|
18
|
+
paymentStatus?: UniRefund_FinanceService_Enums_BillingPaymentStatusCode;
|
|
19
|
+
};
|
|
20
|
+
|
|
21
|
+
export type UniRefund_FinanceService_Billings_CreateBillingDto = {
|
|
22
|
+
merchantId: string;
|
|
23
|
+
date: string;
|
|
24
|
+
number: number;
|
|
25
|
+
dueDate: string;
|
|
26
|
+
total: number;
|
|
27
|
+
unpaid: number;
|
|
28
|
+
status: UniRefund_FinanceService_Enums_BillingStatusCode;
|
|
29
|
+
period: UniRefund_FinanceService_Enums_BillingPeriodCode;
|
|
30
|
+
paymentStatus: UniRefund_FinanceService_Enums_BillingPaymentStatusCode;
|
|
31
|
+
};
|
|
32
|
+
|
|
33
|
+
export type UniRefund_FinanceService_Billings_UpdateBillingDto = {
|
|
34
|
+
date: string;
|
|
35
|
+
number: number;
|
|
36
|
+
dueDate: string;
|
|
37
|
+
total: number;
|
|
38
|
+
unpaid: number;
|
|
39
|
+
status?: UniRefund_FinanceService_Enums_BillingStatusCode;
|
|
40
|
+
period: UniRefund_FinanceService_Enums_BillingPeriodCode;
|
|
41
|
+
paymentStatus: UniRefund_FinanceService_Enums_BillingPaymentStatusCode;
|
|
42
|
+
};
|
|
43
|
+
|
|
44
|
+
export type UniRefund_FinanceService_Enums_BillingPaymentStatusCode = 0 | 1 | 2;
|
|
45
|
+
|
|
46
|
+
export type UniRefund_FinanceService_Enums_BillingPeriodCode = 0 | 1 | 2;
|
|
47
|
+
|
|
48
|
+
export type UniRefund_FinanceService_Enums_BillingStatusCode = 0 | 1 | 2 | 3 | 4;
|
|
49
|
+
|
|
50
|
+
export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationAuthConfigurationDto = {
|
|
51
|
+
grantedPolicies?: {
|
|
52
|
+
[key: string]: (boolean);
|
|
53
|
+
} | null;
|
|
54
|
+
};
|
|
55
|
+
|
|
56
|
+
export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationConfigurationDto = {
|
|
57
|
+
localization?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationConfigurationDto;
|
|
58
|
+
auth?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationAuthConfigurationDto;
|
|
59
|
+
setting?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationSettingConfigurationDto;
|
|
60
|
+
currentUser?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_CurrentUserDto;
|
|
61
|
+
features?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationFeatureConfigurationDto;
|
|
62
|
+
globalFeatures?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationGlobalFeatureConfigurationDto;
|
|
63
|
+
multiTenancy?: Volo_Abp_AspNetCore_Mvc_MultiTenancy_MultiTenancyInfoDto;
|
|
64
|
+
currentTenant?: Volo_Abp_AspNetCore_Mvc_MultiTenancy_CurrentTenantDto;
|
|
65
|
+
timing?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_TimingDto;
|
|
66
|
+
clock?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ClockDto;
|
|
67
|
+
objectExtensions?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ObjectExtensionsDto;
|
|
68
|
+
extraProperties?: {
|
|
69
|
+
[key: string]: unknown;
|
|
70
|
+
} | null;
|
|
71
|
+
};
|
|
72
|
+
|
|
73
|
+
export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationFeatureConfigurationDto = {
|
|
74
|
+
values?: {
|
|
75
|
+
[key: string]: (string | null);
|
|
76
|
+
} | null;
|
|
77
|
+
};
|
|
78
|
+
|
|
79
|
+
export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationGlobalFeatureConfigurationDto = {
|
|
80
|
+
enabledFeatures?: Array<(string)> | null;
|
|
81
|
+
};
|
|
82
|
+
|
|
83
|
+
export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationConfigurationDto = {
|
|
84
|
+
values?: {
|
|
85
|
+
[key: string]: {
|
|
86
|
+
[key: string]: (string);
|
|
87
|
+
};
|
|
88
|
+
} | null;
|
|
89
|
+
resources?: {
|
|
90
|
+
[key: string]: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationResourceDto;
|
|
91
|
+
} | null;
|
|
92
|
+
languages?: Array<Volo_Abp_Localization_LanguageInfo> | null;
|
|
93
|
+
currentCulture?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_CurrentCultureDto;
|
|
94
|
+
defaultResourceName?: string | null;
|
|
95
|
+
languagesMap?: {
|
|
96
|
+
[key: string]: Array<Volo_Abp_NameValue>;
|
|
97
|
+
} | null;
|
|
98
|
+
languageFilesMap?: {
|
|
99
|
+
[key: string]: Array<Volo_Abp_NameValue>;
|
|
100
|
+
} | null;
|
|
101
|
+
};
|
|
102
|
+
|
|
103
|
+
export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationDto = {
|
|
104
|
+
resources?: {
|
|
105
|
+
[key: string]: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationResourceDto;
|
|
106
|
+
} | null;
|
|
107
|
+
currentCulture?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_CurrentCultureDto;
|
|
108
|
+
};
|
|
109
|
+
|
|
110
|
+
export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationResourceDto = {
|
|
111
|
+
texts?: {
|
|
112
|
+
[key: string]: (string);
|
|
113
|
+
} | null;
|
|
114
|
+
baseResources?: Array<(string)> | null;
|
|
115
|
+
};
|
|
116
|
+
|
|
117
|
+
export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationSettingConfigurationDto = {
|
|
118
|
+
values?: {
|
|
119
|
+
[key: string]: (string | null);
|
|
120
|
+
} | null;
|
|
121
|
+
};
|
|
122
|
+
|
|
123
|
+
export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ClockDto = {
|
|
124
|
+
kind?: string | null;
|
|
125
|
+
};
|
|
126
|
+
|
|
127
|
+
export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_CurrentCultureDto = {
|
|
128
|
+
displayName?: string | null;
|
|
129
|
+
englishName?: string | null;
|
|
130
|
+
threeLetterIsoLanguageName?: string | null;
|
|
131
|
+
twoLetterIsoLanguageName?: string | null;
|
|
132
|
+
isRightToLeft?: boolean;
|
|
133
|
+
cultureName?: string | null;
|
|
134
|
+
name?: string | null;
|
|
135
|
+
nativeName?: string | null;
|
|
136
|
+
dateTimeFormat?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_DateTimeFormatDto;
|
|
137
|
+
};
|
|
138
|
+
|
|
139
|
+
export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_CurrentUserDto = {
|
|
140
|
+
isAuthenticated?: boolean;
|
|
141
|
+
id?: string | null;
|
|
142
|
+
tenantId?: string | null;
|
|
143
|
+
impersonatorUserId?: string | null;
|
|
144
|
+
impersonatorTenantId?: string | null;
|
|
145
|
+
impersonatorUserName?: string | null;
|
|
146
|
+
impersonatorTenantName?: string | null;
|
|
147
|
+
userName?: string | null;
|
|
148
|
+
name?: string | null;
|
|
149
|
+
surName?: string | null;
|
|
150
|
+
email?: string | null;
|
|
151
|
+
emailVerified?: boolean;
|
|
152
|
+
phoneNumber?: string | null;
|
|
153
|
+
phoneNumberVerified?: boolean;
|
|
154
|
+
roles?: Array<(string)> | null;
|
|
155
|
+
sessionId?: string | null;
|
|
156
|
+
};
|
|
157
|
+
|
|
158
|
+
export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_DateTimeFormatDto = {
|
|
159
|
+
calendarAlgorithmType?: string | null;
|
|
160
|
+
dateTimeFormatLong?: string | null;
|
|
161
|
+
shortDatePattern?: string | null;
|
|
162
|
+
fullDateTimePattern?: string | null;
|
|
163
|
+
dateSeparator?: string | null;
|
|
164
|
+
shortTimePattern?: string | null;
|
|
165
|
+
longTimePattern?: string | null;
|
|
166
|
+
};
|
|
167
|
+
|
|
168
|
+
export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_IanaTimeZone = {
|
|
169
|
+
timeZoneName?: string | null;
|
|
170
|
+
};
|
|
171
|
+
|
|
172
|
+
export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_EntityExtensionDto = {
|
|
173
|
+
properties?: {
|
|
174
|
+
[key: string]: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyDto;
|
|
175
|
+
} | null;
|
|
176
|
+
configuration?: {
|
|
177
|
+
[key: string]: unknown;
|
|
178
|
+
} | null;
|
|
179
|
+
};
|
|
180
|
+
|
|
181
|
+
export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionEnumDto = {
|
|
182
|
+
fields?: Array<Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionEnumFieldDto> | null;
|
|
183
|
+
localizationResource?: string | null;
|
|
184
|
+
};
|
|
185
|
+
|
|
186
|
+
export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionEnumFieldDto = {
|
|
187
|
+
name?: string | null;
|
|
188
|
+
value?: unknown;
|
|
189
|
+
};
|
|
190
|
+
|
|
191
|
+
export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiCreateDto = {
|
|
192
|
+
isAvailable?: boolean;
|
|
193
|
+
};
|
|
194
|
+
|
|
195
|
+
export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiDto = {
|
|
196
|
+
onGet?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiGetDto;
|
|
197
|
+
onCreate?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiCreateDto;
|
|
198
|
+
onUpdate?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiUpdateDto;
|
|
199
|
+
};
|
|
200
|
+
|
|
201
|
+
export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiGetDto = {
|
|
202
|
+
isAvailable?: boolean;
|
|
203
|
+
};
|
|
204
|
+
|
|
205
|
+
export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiUpdateDto = {
|
|
206
|
+
isAvailable?: boolean;
|
|
207
|
+
};
|
|
208
|
+
|
|
209
|
+
export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyAttributeDto = {
|
|
210
|
+
typeSimple?: string | null;
|
|
211
|
+
config?: {
|
|
212
|
+
[key: string]: unknown;
|
|
213
|
+
} | null;
|
|
214
|
+
};
|
|
215
|
+
|
|
216
|
+
export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyDto = {
|
|
217
|
+
type?: string | null;
|
|
218
|
+
typeSimple?: string | null;
|
|
219
|
+
displayName?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_LocalizableStringDto;
|
|
220
|
+
api?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiDto;
|
|
221
|
+
ui?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiDto;
|
|
222
|
+
attributes?: Array<Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyAttributeDto> | null;
|
|
223
|
+
configuration?: {
|
|
224
|
+
[key: string]: unknown;
|
|
225
|
+
} | null;
|
|
226
|
+
defaultValue?: unknown;
|
|
227
|
+
};
|
|
228
|
+
|
|
229
|
+
export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiDto = {
|
|
230
|
+
onTable?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiTableDto;
|
|
231
|
+
onCreateForm?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiFormDto;
|
|
232
|
+
onEditForm?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiFormDto;
|
|
233
|
+
lookup?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiLookupDto;
|
|
234
|
+
};
|
|
235
|
+
|
|
236
|
+
export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiFormDto = {
|
|
237
|
+
isVisible?: boolean;
|
|
238
|
+
};
|
|
239
|
+
|
|
240
|
+
export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiLookupDto = {
|
|
241
|
+
url?: string | null;
|
|
242
|
+
resultListPropertyName?: string | null;
|
|
243
|
+
displayPropertyName?: string | null;
|
|
244
|
+
valuePropertyName?: string | null;
|
|
245
|
+
filterParamName?: string | null;
|
|
246
|
+
};
|
|
247
|
+
|
|
248
|
+
export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiTableDto = {
|
|
249
|
+
isVisible?: boolean;
|
|
250
|
+
};
|
|
251
|
+
|
|
252
|
+
export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_LocalizableStringDto = {
|
|
253
|
+
name?: string | null;
|
|
254
|
+
resource?: string | null;
|
|
255
|
+
};
|
|
256
|
+
|
|
257
|
+
export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ModuleExtensionDto = {
|
|
258
|
+
entities?: {
|
|
259
|
+
[key: string]: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_EntityExtensionDto;
|
|
260
|
+
} | null;
|
|
261
|
+
configuration?: {
|
|
262
|
+
[key: string]: unknown;
|
|
263
|
+
} | null;
|
|
264
|
+
};
|
|
265
|
+
|
|
266
|
+
export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ObjectExtensionsDto = {
|
|
267
|
+
modules?: {
|
|
268
|
+
[key: string]: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ModuleExtensionDto;
|
|
269
|
+
} | null;
|
|
270
|
+
enums?: {
|
|
271
|
+
[key: string]: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionEnumDto;
|
|
272
|
+
} | null;
|
|
273
|
+
};
|
|
274
|
+
|
|
275
|
+
export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_TimeZone = {
|
|
276
|
+
iana?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_IanaTimeZone;
|
|
277
|
+
windows?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_WindowsTimeZone;
|
|
278
|
+
};
|
|
279
|
+
|
|
280
|
+
export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_TimingDto = {
|
|
281
|
+
timeZone?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_TimeZone;
|
|
282
|
+
};
|
|
283
|
+
|
|
284
|
+
export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_WindowsTimeZone = {
|
|
285
|
+
timeZoneId?: string | null;
|
|
286
|
+
};
|
|
287
|
+
|
|
288
|
+
export type Volo_Abp_AspNetCore_Mvc_MultiTenancy_CurrentTenantDto = {
|
|
289
|
+
id?: string | null;
|
|
290
|
+
name?: string | null;
|
|
291
|
+
isAvailable?: boolean;
|
|
292
|
+
};
|
|
293
|
+
|
|
294
|
+
export type Volo_Abp_AspNetCore_Mvc_MultiTenancy_MultiTenancyInfoDto = {
|
|
295
|
+
isEnabled?: boolean;
|
|
296
|
+
};
|
|
297
|
+
|
|
298
|
+
export type Volo_Abp_Http_Modeling_ActionApiDescriptionModel = {
|
|
299
|
+
uniqueName?: string | null;
|
|
300
|
+
name?: string | null;
|
|
301
|
+
httpMethod?: string | null;
|
|
302
|
+
url?: string | null;
|
|
303
|
+
supportedVersions?: Array<(string)> | null;
|
|
304
|
+
parametersOnMethod?: Array<Volo_Abp_Http_Modeling_MethodParameterApiDescriptionModel> | null;
|
|
305
|
+
parameters?: Array<Volo_Abp_Http_Modeling_ParameterApiDescriptionModel> | null;
|
|
306
|
+
returnValue?: Volo_Abp_Http_Modeling_ReturnValueApiDescriptionModel;
|
|
307
|
+
allowAnonymous?: boolean | null;
|
|
308
|
+
implementFrom?: string | null;
|
|
309
|
+
};
|
|
310
|
+
|
|
311
|
+
export type Volo_Abp_Http_Modeling_ApplicationApiDescriptionModel = {
|
|
312
|
+
modules?: {
|
|
313
|
+
[key: string]: Volo_Abp_Http_Modeling_ModuleApiDescriptionModel;
|
|
314
|
+
} | null;
|
|
315
|
+
types?: {
|
|
316
|
+
[key: string]: Volo_Abp_Http_Modeling_TypeApiDescriptionModel;
|
|
317
|
+
} | null;
|
|
318
|
+
};
|
|
319
|
+
|
|
320
|
+
export type Volo_Abp_Http_Modeling_ControllerApiDescriptionModel = {
|
|
321
|
+
controllerName?: string | null;
|
|
322
|
+
controllerGroupName?: string | null;
|
|
323
|
+
isRemoteService?: boolean;
|
|
324
|
+
isIntegrationService?: boolean;
|
|
325
|
+
apiVersion?: string | null;
|
|
326
|
+
type?: string | null;
|
|
327
|
+
interfaces?: Array<Volo_Abp_Http_Modeling_ControllerInterfaceApiDescriptionModel> | null;
|
|
328
|
+
actions?: {
|
|
329
|
+
[key: string]: Volo_Abp_Http_Modeling_ActionApiDescriptionModel;
|
|
330
|
+
} | null;
|
|
331
|
+
};
|
|
332
|
+
|
|
333
|
+
export type Volo_Abp_Http_Modeling_ControllerInterfaceApiDescriptionModel = {
|
|
334
|
+
type?: string | null;
|
|
335
|
+
name?: string | null;
|
|
336
|
+
methods?: Array<Volo_Abp_Http_Modeling_InterfaceMethodApiDescriptionModel> | null;
|
|
337
|
+
};
|
|
338
|
+
|
|
339
|
+
export type Volo_Abp_Http_Modeling_InterfaceMethodApiDescriptionModel = {
|
|
340
|
+
name?: string | null;
|
|
341
|
+
parametersOnMethod?: Array<Volo_Abp_Http_Modeling_MethodParameterApiDescriptionModel> | null;
|
|
342
|
+
returnValue?: Volo_Abp_Http_Modeling_ReturnValueApiDescriptionModel;
|
|
343
|
+
};
|
|
344
|
+
|
|
345
|
+
export type Volo_Abp_Http_Modeling_MethodParameterApiDescriptionModel = {
|
|
346
|
+
name?: string | null;
|
|
347
|
+
typeAsString?: string | null;
|
|
348
|
+
type?: string | null;
|
|
349
|
+
typeSimple?: string | null;
|
|
350
|
+
isOptional?: boolean;
|
|
351
|
+
defaultValue?: unknown;
|
|
352
|
+
};
|
|
353
|
+
|
|
354
|
+
export type Volo_Abp_Http_Modeling_ModuleApiDescriptionModel = {
|
|
355
|
+
rootPath?: string | null;
|
|
356
|
+
remoteServiceName?: string | null;
|
|
357
|
+
controllers?: {
|
|
358
|
+
[key: string]: Volo_Abp_Http_Modeling_ControllerApiDescriptionModel;
|
|
359
|
+
} | null;
|
|
360
|
+
};
|
|
361
|
+
|
|
362
|
+
export type Volo_Abp_Http_Modeling_ParameterApiDescriptionModel = {
|
|
363
|
+
nameOnMethod?: string | null;
|
|
364
|
+
name?: string | null;
|
|
365
|
+
jsonName?: string | null;
|
|
366
|
+
type?: string | null;
|
|
367
|
+
typeSimple?: string | null;
|
|
368
|
+
isOptional?: boolean;
|
|
369
|
+
defaultValue?: unknown;
|
|
370
|
+
constraintTypes?: Array<(string)> | null;
|
|
371
|
+
bindingSourceId?: string | null;
|
|
372
|
+
descriptorName?: string | null;
|
|
373
|
+
};
|
|
374
|
+
|
|
375
|
+
export type Volo_Abp_Http_Modeling_PropertyApiDescriptionModel = {
|
|
376
|
+
name?: string | null;
|
|
377
|
+
jsonName?: string | null;
|
|
378
|
+
type?: string | null;
|
|
379
|
+
typeSimple?: string | null;
|
|
380
|
+
isRequired?: boolean;
|
|
381
|
+
minLength?: number | null;
|
|
382
|
+
maxLength?: number | null;
|
|
383
|
+
minimum?: string | null;
|
|
384
|
+
maximum?: string | null;
|
|
385
|
+
regex?: string | null;
|
|
386
|
+
};
|
|
387
|
+
|
|
388
|
+
export type Volo_Abp_Http_Modeling_ReturnValueApiDescriptionModel = {
|
|
389
|
+
type?: string | null;
|
|
390
|
+
typeSimple?: string | null;
|
|
391
|
+
};
|
|
392
|
+
|
|
393
|
+
export type Volo_Abp_Http_Modeling_TypeApiDescriptionModel = {
|
|
394
|
+
baseType?: string | null;
|
|
395
|
+
isEnum?: boolean;
|
|
396
|
+
enumNames?: Array<(string)> | null;
|
|
397
|
+
enumValues?: Array<unknown> | null;
|
|
398
|
+
genericArguments?: Array<(string)> | null;
|
|
399
|
+
properties?: Array<Volo_Abp_Http_Modeling_PropertyApiDescriptionModel> | null;
|
|
400
|
+
};
|
|
401
|
+
|
|
402
|
+
export type Volo_Abp_Http_RemoteServiceErrorInfo = {
|
|
403
|
+
code?: string | null;
|
|
404
|
+
message?: string | null;
|
|
405
|
+
details?: string | null;
|
|
406
|
+
data?: {
|
|
407
|
+
[key: string]: unknown;
|
|
408
|
+
} | null;
|
|
409
|
+
validationErrors?: Array<Volo_Abp_Http_RemoteServiceValidationErrorInfo> | null;
|
|
410
|
+
};
|
|
411
|
+
|
|
412
|
+
export type Volo_Abp_Http_RemoteServiceErrorResponse = {
|
|
413
|
+
error?: Volo_Abp_Http_RemoteServiceErrorInfo;
|
|
414
|
+
};
|
|
415
|
+
|
|
416
|
+
export type Volo_Abp_Http_RemoteServiceValidationErrorInfo = {
|
|
417
|
+
message?: string | null;
|
|
418
|
+
members?: Array<(string)> | null;
|
|
419
|
+
};
|
|
420
|
+
|
|
421
|
+
export type Volo_Abp_Localization_LanguageInfo = {
|
|
422
|
+
cultureName?: string | null;
|
|
423
|
+
uiCultureName?: string | null;
|
|
424
|
+
displayName?: string | null;
|
|
425
|
+
readonly twoLetterISOLanguageName?: string | null;
|
|
426
|
+
};
|
|
427
|
+
|
|
428
|
+
export type Volo_Abp_NameValue = {
|
|
429
|
+
name?: string | null;
|
|
430
|
+
value?: string | null;
|
|
431
|
+
};
|
|
432
|
+
|
|
433
|
+
export type GetApiAbpApiDefinitionData = {
|
|
434
|
+
includeTypes?: boolean;
|
|
435
|
+
};
|
|
436
|
+
|
|
437
|
+
export type GetApiAbpApiDefinitionResponse = Volo_Abp_Http_Modeling_ApplicationApiDescriptionModel;
|
|
438
|
+
|
|
439
|
+
export type GetApiAbpApplicationConfigurationData = {
|
|
440
|
+
includeLocalizationResources?: boolean;
|
|
441
|
+
};
|
|
442
|
+
|
|
443
|
+
export type GetApiAbpApplicationConfigurationResponse = Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationConfigurationDto;
|
|
444
|
+
|
|
445
|
+
export type GetApiAbpApplicationLocalizationData = {
|
|
446
|
+
cultureName: string;
|
|
447
|
+
onlyDynamics?: boolean;
|
|
448
|
+
};
|
|
449
|
+
|
|
450
|
+
export type GetApiAbpApplicationLocalizationResponse = Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationDto;
|
|
451
|
+
|
|
452
|
+
export type PostApiFinanceServiceBillingsData = {
|
|
453
|
+
requestBody?: UniRefund_FinanceService_Billings_CreateBillingDto;
|
|
454
|
+
};
|
|
455
|
+
|
|
456
|
+
export type PostApiFinanceServiceBillingsResponse = UniRefund_FinanceService_Billings_BillingDto;
|
|
457
|
+
|
|
458
|
+
export type DeleteApiFinanceServiceBillingsData = {
|
|
459
|
+
id?: string;
|
|
460
|
+
};
|
|
461
|
+
|
|
462
|
+
export type DeleteApiFinanceServiceBillingsResponse = unknown;
|
|
463
|
+
|
|
464
|
+
export type GetApiFinanceServiceBillingsData = {
|
|
465
|
+
maxResultCount?: number;
|
|
466
|
+
skipCount?: number;
|
|
467
|
+
sorting?: string;
|
|
468
|
+
};
|
|
469
|
+
|
|
470
|
+
export type GetApiFinanceServiceBillingsResponse = PagedResultDto_BillingDto;
|
|
471
|
+
|
|
472
|
+
export type GetApiFinanceServiceBillingsByIdData = {
|
|
473
|
+
id: string;
|
|
474
|
+
};
|
|
475
|
+
|
|
476
|
+
export type GetApiFinanceServiceBillingsByIdResponse = UniRefund_FinanceService_Billings_BillingDto;
|
|
477
|
+
|
|
478
|
+
export type PutApiFinanceServiceBillingsByIdData = {
|
|
479
|
+
id: string;
|
|
480
|
+
requestBody?: UniRefund_FinanceService_Billings_UpdateBillingDto;
|
|
481
|
+
};
|
|
482
|
+
|
|
483
|
+
export type PutApiFinanceServiceBillingsByIdResponse = UniRefund_FinanceService_Billings_BillingDto;
|
|
484
|
+
|
|
485
|
+
export type $OpenApiTs = {
|
|
486
|
+
'/api/abp/api-definition': {
|
|
487
|
+
get: {
|
|
488
|
+
req: GetApiAbpApiDefinitionData;
|
|
489
|
+
res: {
|
|
490
|
+
/**
|
|
491
|
+
* Success
|
|
492
|
+
*/
|
|
493
|
+
200: Volo_Abp_Http_Modeling_ApplicationApiDescriptionModel;
|
|
494
|
+
/**
|
|
495
|
+
* Bad Request
|
|
496
|
+
*/
|
|
497
|
+
400: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
498
|
+
/**
|
|
499
|
+
* Unauthorized
|
|
500
|
+
*/
|
|
501
|
+
401: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
502
|
+
/**
|
|
503
|
+
* Forbidden
|
|
504
|
+
*/
|
|
505
|
+
403: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
506
|
+
/**
|
|
507
|
+
* Not Found
|
|
508
|
+
*/
|
|
509
|
+
404: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
510
|
+
/**
|
|
511
|
+
* Server Error
|
|
512
|
+
*/
|
|
513
|
+
500: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
514
|
+
/**
|
|
515
|
+
* Server Error
|
|
516
|
+
*/
|
|
517
|
+
501: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
518
|
+
};
|
|
519
|
+
};
|
|
520
|
+
};
|
|
521
|
+
'/api/abp/application-configuration': {
|
|
522
|
+
get: {
|
|
523
|
+
req: GetApiAbpApplicationConfigurationData;
|
|
524
|
+
res: {
|
|
525
|
+
/**
|
|
526
|
+
* Success
|
|
527
|
+
*/
|
|
528
|
+
200: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationConfigurationDto;
|
|
529
|
+
/**
|
|
530
|
+
* Bad Request
|
|
531
|
+
*/
|
|
532
|
+
400: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
533
|
+
/**
|
|
534
|
+
* Unauthorized
|
|
535
|
+
*/
|
|
536
|
+
401: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
537
|
+
/**
|
|
538
|
+
* Forbidden
|
|
539
|
+
*/
|
|
540
|
+
403: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
541
|
+
/**
|
|
542
|
+
* Not Found
|
|
543
|
+
*/
|
|
544
|
+
404: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
545
|
+
/**
|
|
546
|
+
* Server Error
|
|
547
|
+
*/
|
|
548
|
+
500: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
549
|
+
/**
|
|
550
|
+
* Server Error
|
|
551
|
+
*/
|
|
552
|
+
501: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
553
|
+
};
|
|
554
|
+
};
|
|
555
|
+
};
|
|
556
|
+
'/api/abp/application-localization': {
|
|
557
|
+
get: {
|
|
558
|
+
req: GetApiAbpApplicationLocalizationData;
|
|
559
|
+
res: {
|
|
560
|
+
/**
|
|
561
|
+
* Success
|
|
562
|
+
*/
|
|
563
|
+
200: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationDto;
|
|
564
|
+
/**
|
|
565
|
+
* Bad Request
|
|
566
|
+
*/
|
|
567
|
+
400: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
568
|
+
/**
|
|
569
|
+
* Unauthorized
|
|
570
|
+
*/
|
|
571
|
+
401: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
572
|
+
/**
|
|
573
|
+
* Forbidden
|
|
574
|
+
*/
|
|
575
|
+
403: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
576
|
+
/**
|
|
577
|
+
* Not Found
|
|
578
|
+
*/
|
|
579
|
+
404: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
580
|
+
/**
|
|
581
|
+
* Server Error
|
|
582
|
+
*/
|
|
583
|
+
500: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
584
|
+
/**
|
|
585
|
+
* Server Error
|
|
586
|
+
*/
|
|
587
|
+
501: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
588
|
+
};
|
|
589
|
+
};
|
|
590
|
+
};
|
|
591
|
+
'/api/finance-service/billings': {
|
|
592
|
+
post: {
|
|
593
|
+
req: PostApiFinanceServiceBillingsData;
|
|
594
|
+
res: {
|
|
595
|
+
/**
|
|
596
|
+
* Success
|
|
597
|
+
*/
|
|
598
|
+
200: UniRefund_FinanceService_Billings_BillingDto;
|
|
599
|
+
/**
|
|
600
|
+
* Bad Request
|
|
601
|
+
*/
|
|
602
|
+
400: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
603
|
+
/**
|
|
604
|
+
* Unauthorized
|
|
605
|
+
*/
|
|
606
|
+
401: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
607
|
+
/**
|
|
608
|
+
* Forbidden
|
|
609
|
+
*/
|
|
610
|
+
403: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
611
|
+
/**
|
|
612
|
+
* Not Found
|
|
613
|
+
*/
|
|
614
|
+
404: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
615
|
+
/**
|
|
616
|
+
* Server Error
|
|
617
|
+
*/
|
|
618
|
+
500: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
619
|
+
/**
|
|
620
|
+
* Server Error
|
|
621
|
+
*/
|
|
622
|
+
501: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
623
|
+
};
|
|
624
|
+
};
|
|
625
|
+
delete: {
|
|
626
|
+
req: DeleteApiFinanceServiceBillingsData;
|
|
627
|
+
res: {
|
|
628
|
+
/**
|
|
629
|
+
* Success
|
|
630
|
+
*/
|
|
631
|
+
200: unknown;
|
|
632
|
+
/**
|
|
633
|
+
* Bad Request
|
|
634
|
+
*/
|
|
635
|
+
400: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
636
|
+
/**
|
|
637
|
+
* Unauthorized
|
|
638
|
+
*/
|
|
639
|
+
401: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
640
|
+
/**
|
|
641
|
+
* Forbidden
|
|
642
|
+
*/
|
|
643
|
+
403: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
644
|
+
/**
|
|
645
|
+
* Not Found
|
|
646
|
+
*/
|
|
647
|
+
404: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
648
|
+
/**
|
|
649
|
+
* Server Error
|
|
650
|
+
*/
|
|
651
|
+
500: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
652
|
+
/**
|
|
653
|
+
* Server Error
|
|
654
|
+
*/
|
|
655
|
+
501: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
656
|
+
};
|
|
657
|
+
};
|
|
658
|
+
get: {
|
|
659
|
+
req: GetApiFinanceServiceBillingsData;
|
|
660
|
+
res: {
|
|
661
|
+
/**
|
|
662
|
+
* Success
|
|
663
|
+
*/
|
|
664
|
+
200: PagedResultDto_BillingDto;
|
|
665
|
+
/**
|
|
666
|
+
* Bad Request
|
|
667
|
+
*/
|
|
668
|
+
400: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
669
|
+
/**
|
|
670
|
+
* Unauthorized
|
|
671
|
+
*/
|
|
672
|
+
401: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
673
|
+
/**
|
|
674
|
+
* Forbidden
|
|
675
|
+
*/
|
|
676
|
+
403: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
677
|
+
/**
|
|
678
|
+
* Not Found
|
|
679
|
+
*/
|
|
680
|
+
404: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
681
|
+
/**
|
|
682
|
+
* Server Error
|
|
683
|
+
*/
|
|
684
|
+
500: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
685
|
+
/**
|
|
686
|
+
* Server Error
|
|
687
|
+
*/
|
|
688
|
+
501: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
689
|
+
};
|
|
690
|
+
};
|
|
691
|
+
};
|
|
692
|
+
'/api/finance-service/billings/{id}': {
|
|
693
|
+
get: {
|
|
694
|
+
req: GetApiFinanceServiceBillingsByIdData;
|
|
695
|
+
res: {
|
|
696
|
+
/**
|
|
697
|
+
* Success
|
|
698
|
+
*/
|
|
699
|
+
200: UniRefund_FinanceService_Billings_BillingDto;
|
|
700
|
+
/**
|
|
701
|
+
* Bad Request
|
|
702
|
+
*/
|
|
703
|
+
400: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
704
|
+
/**
|
|
705
|
+
* Unauthorized
|
|
706
|
+
*/
|
|
707
|
+
401: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
708
|
+
/**
|
|
709
|
+
* Forbidden
|
|
710
|
+
*/
|
|
711
|
+
403: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
712
|
+
/**
|
|
713
|
+
* Not Found
|
|
714
|
+
*/
|
|
715
|
+
404: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
716
|
+
/**
|
|
717
|
+
* Server Error
|
|
718
|
+
*/
|
|
719
|
+
500: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
720
|
+
/**
|
|
721
|
+
* Server Error
|
|
722
|
+
*/
|
|
723
|
+
501: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
724
|
+
};
|
|
725
|
+
};
|
|
726
|
+
put: {
|
|
727
|
+
req: PutApiFinanceServiceBillingsByIdData;
|
|
728
|
+
res: {
|
|
729
|
+
/**
|
|
730
|
+
* Success
|
|
731
|
+
*/
|
|
732
|
+
200: UniRefund_FinanceService_Billings_BillingDto;
|
|
733
|
+
/**
|
|
734
|
+
* Bad Request
|
|
735
|
+
*/
|
|
736
|
+
400: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
737
|
+
/**
|
|
738
|
+
* Unauthorized
|
|
739
|
+
*/
|
|
740
|
+
401: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
741
|
+
/**
|
|
742
|
+
* Forbidden
|
|
743
|
+
*/
|
|
744
|
+
403: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
745
|
+
/**
|
|
746
|
+
* Not Found
|
|
747
|
+
*/
|
|
748
|
+
404: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
749
|
+
/**
|
|
750
|
+
* Server Error
|
|
751
|
+
*/
|
|
752
|
+
500: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
753
|
+
/**
|
|
754
|
+
* Server Error
|
|
755
|
+
*/
|
|
756
|
+
501: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
757
|
+
};
|
|
758
|
+
};
|
|
759
|
+
};
|
|
760
|
+
};
|