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