@ayasofyazilim/saas 0.0.130 → 0.0.131
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/TagService/schemas.gen.ts +9 -6
- package/TagService/types.gen.ts +137 -1844
- package/package.json +1 -1
package/TagService/types.gen.ts
CHANGED
|
@@ -1,44 +1,12 @@
|
|
|
1
1
|
// This file is auto-generated by @hey-api/openapi-ts
|
|
2
2
|
|
|
3
3
|
export type PagedResultDto_TagListItemDto = {
|
|
4
|
-
items?: Array<
|
|
5
|
-
id?: string;
|
|
6
|
-
tagNumber: string;
|
|
7
|
-
issueDate: string;
|
|
8
|
-
expireDate?: (string) | null;
|
|
9
|
-
travellerFullName: string;
|
|
10
|
-
travellerDocumentNumber: string;
|
|
11
|
-
merchantTitle: string;
|
|
12
|
-
status: 'None' | 'Open' | 'PreIssued' | 'Issued' | 'WaitingGoodsValidation' | 'WaitingStampValidation' | 'Declined' | 'ExportValidated' | 'PaymentBlocked' | 'PaymentInProgress' | 'PaymentProblem' | 'Paid' | 'Cancelled' | 'Expired' | 'Correction' | 'OptedOut';
|
|
13
|
-
totals?: Array<{
|
|
14
|
-
totalType: 'None' | 'SalesAmount' | 'VatAmount' | 'GrossRefund' | 'RefundFee' | 'AgentRefundFee' | 'Refund';
|
|
15
|
-
amount: number;
|
|
16
|
-
description?: (string) | null;
|
|
17
|
-
currency: string;
|
|
18
|
-
rate: number;
|
|
19
|
-
}> | null;
|
|
20
|
-
}> | null;
|
|
4
|
+
items?: Array<UniRefund_TagService_Tags_TagListItemDto> | null;
|
|
21
5
|
totalCount?: number;
|
|
22
6
|
};
|
|
23
7
|
|
|
24
8
|
export type TagListResponseDto_TagListItemDto = {
|
|
25
|
-
items?: Array<
|
|
26
|
-
id?: string;
|
|
27
|
-
tagNumber: string;
|
|
28
|
-
issueDate: string;
|
|
29
|
-
expireDate?: (string) | null;
|
|
30
|
-
travellerFullName: string;
|
|
31
|
-
travellerDocumentNumber: string;
|
|
32
|
-
merchantTitle: string;
|
|
33
|
-
status: 'None' | 'Open' | 'PreIssued' | 'Issued' | 'WaitingGoodsValidation' | 'WaitingStampValidation' | 'Declined' | 'ExportValidated' | 'PaymentBlocked' | 'PaymentInProgress' | 'PaymentProblem' | 'Paid' | 'Cancelled' | 'Expired' | 'Correction' | 'OptedOut';
|
|
34
|
-
totals?: Array<{
|
|
35
|
-
totalType: 'None' | 'SalesAmount' | 'VatAmount' | 'GrossRefund' | 'RefundFee' | 'AgentRefundFee' | 'Refund';
|
|
36
|
-
amount: number;
|
|
37
|
-
description?: (string) | null;
|
|
38
|
-
currency: string;
|
|
39
|
-
rate: number;
|
|
40
|
-
}> | null;
|
|
41
|
-
}> | null;
|
|
9
|
+
items?: Array<UniRefund_TagService_Tags_TagListItemDto> | null;
|
|
42
10
|
totalCount?: number;
|
|
43
11
|
};
|
|
44
12
|
|
|
@@ -50,20 +18,12 @@ export type UniRefund_ExportValidationService_ExportValidations_ExportValidation
|
|
|
50
18
|
customsName: string;
|
|
51
19
|
referenceId?: (string) | null;
|
|
52
20
|
exportDate: string;
|
|
53
|
-
status?:
|
|
54
|
-
stampType?:
|
|
55
|
-
initialValidationResult?:
|
|
56
|
-
finalValidationResult?:
|
|
21
|
+
status?: UniRefund_ExportValidationService_ExportValidations_ExportValidationStatusCode;
|
|
22
|
+
stampType?: UniRefund_ExportValidationService_ExportValidations_StampTypeCode;
|
|
23
|
+
initialValidationResult?: UniRefund_ExportValidationService_ExportValidations_ValidationResult;
|
|
24
|
+
finalValidationResult?: UniRefund_ExportValidationService_ExportValidations_ValidationResult;
|
|
57
25
|
};
|
|
58
26
|
|
|
59
|
-
export type status = 'None' | 'Waiting' | 'Approved' | 'Rejected' | 'Expired';
|
|
60
|
-
|
|
61
|
-
export type stampType = 'None' | 'Integration' | 'DigitalStamp';
|
|
62
|
-
|
|
63
|
-
export type initialValidationResult = 'None' | 'Green';
|
|
64
|
-
|
|
65
|
-
export type finalValidationResult = 'None' | 'Green';
|
|
66
|
-
|
|
67
27
|
export type UniRefund_ExportValidationService_ExportValidations_ExportValidationDto = {
|
|
68
28
|
id?: string;
|
|
69
29
|
tagId?: (string) | null;
|
|
@@ -72,10 +32,10 @@ export type UniRefund_ExportValidationService_ExportValidations_ExportValidation
|
|
|
72
32
|
customsName: string;
|
|
73
33
|
exportDate: string;
|
|
74
34
|
referenceId?: (string) | null;
|
|
75
|
-
status?:
|
|
76
|
-
stampType?:
|
|
77
|
-
initialValidationResult?:
|
|
78
|
-
finalValidationResult?:
|
|
35
|
+
status?: UniRefund_ExportValidationService_ExportValidations_ExportValidationStatusCode;
|
|
36
|
+
stampType?: UniRefund_ExportValidationService_ExportValidations_StampTypeCode;
|
|
37
|
+
initialValidationResult?: UniRefund_ExportValidationService_ExportValidations_ValidationResult;
|
|
38
|
+
finalValidationResult?: UniRefund_ExportValidationService_ExportValidations_ValidationResult;
|
|
79
39
|
};
|
|
80
40
|
|
|
81
41
|
export type UniRefund_ExportValidationService_ExportValidations_ExportValidationStatusCode = 'None' | 'Waiting' | 'Approved' | 'Rejected' | 'Expired';
|
|
@@ -90,18 +50,14 @@ export type UniRefund_SettingService_ProductGroups_ProductGroupDto = {
|
|
|
90
50
|
id?: string;
|
|
91
51
|
articleCode: string;
|
|
92
52
|
name: string;
|
|
93
|
-
unitCode:
|
|
94
|
-
companyType:
|
|
53
|
+
unitCode: UniRefund_SettingService_ProductGroups_UnitTypeCode;
|
|
54
|
+
companyType: UniRefund_SettingService_ProductGroups_CompanyTypeCode;
|
|
95
55
|
vatId?: string;
|
|
96
56
|
vatPercent?: (number) | null;
|
|
97
57
|
active: boolean;
|
|
98
58
|
food: boolean;
|
|
99
59
|
};
|
|
100
60
|
|
|
101
|
-
export type unitCode = 'QNT' | 'BAG' | 'BOX';
|
|
102
|
-
|
|
103
|
-
export type companyType = 'GOVERNMENT' | 'TAXFREE' | 'CUSTOMS' | 'REFUNDPOINT' | 'MERCHANT' | 'EXCHANGE' | 'TOURGUIDE';
|
|
104
|
-
|
|
105
61
|
export type UniRefund_SettingService_ProductGroups_UnitTypeCode = 'QNT' | 'BAG' | 'BOX';
|
|
106
62
|
|
|
107
63
|
export type UniRefund_TagService_Invoices_InvoiceDto = {
|
|
@@ -111,41 +67,12 @@ export type UniRefund_TagService_Invoices_InvoiceDto = {
|
|
|
111
67
|
totalAmount: number;
|
|
112
68
|
vatAmount: number;
|
|
113
69
|
currency?: (string) | null;
|
|
114
|
-
invoiceLines?: Array<
|
|
115
|
-
id?: string;
|
|
116
|
-
productGroup?: {
|
|
117
|
-
id?: string;
|
|
118
|
-
articleCode: string;
|
|
119
|
-
name: string;
|
|
120
|
-
unitCode: 'QNT' | 'BAG' | 'BOX';
|
|
121
|
-
companyType: 'GOVERNMENT' | 'TAXFREE' | 'CUSTOMS' | 'REFUNDPOINT' | 'MERCHANT' | 'EXCHANGE' | 'TOURGUIDE';
|
|
122
|
-
vatId?: string;
|
|
123
|
-
vatPercent?: (number) | null;
|
|
124
|
-
active: boolean;
|
|
125
|
-
food: boolean;
|
|
126
|
-
};
|
|
127
|
-
description?: (string) | null;
|
|
128
|
-
amount: number;
|
|
129
|
-
taxRate: number;
|
|
130
|
-
taxAmount: number;
|
|
131
|
-
taxBase: number;
|
|
132
|
-
currency?: (string) | null;
|
|
133
|
-
}> | null;
|
|
70
|
+
invoiceLines?: Array<UniRefund_TagService_Invoices_InvoiceLineDto> | null;
|
|
134
71
|
};
|
|
135
72
|
|
|
136
73
|
export type UniRefund_TagService_Invoices_InvoiceLineDto = {
|
|
137
74
|
id?: string;
|
|
138
|
-
productGroup?:
|
|
139
|
-
id?: string;
|
|
140
|
-
articleCode: string;
|
|
141
|
-
name: string;
|
|
142
|
-
unitCode: 'QNT' | 'BAG' | 'BOX';
|
|
143
|
-
companyType: 'GOVERNMENT' | 'TAXFREE' | 'CUSTOMS' | 'REFUNDPOINT' | 'MERCHANT' | 'EXCHANGE' | 'TOURGUIDE';
|
|
144
|
-
vatId?: string;
|
|
145
|
-
vatPercent?: (number) | null;
|
|
146
|
-
active: boolean;
|
|
147
|
-
food: boolean;
|
|
148
|
-
};
|
|
75
|
+
productGroup?: UniRefund_SettingService_ProductGroups_ProductGroupDto;
|
|
149
76
|
description?: (string) | null;
|
|
150
77
|
amount: number;
|
|
151
78
|
taxRate: number;
|
|
@@ -161,26 +88,14 @@ export type UniRefund_TagService_Invoices_InvoiceRequestDto = {
|
|
|
161
88
|
issueDate: string;
|
|
162
89
|
totalAmount: number;
|
|
163
90
|
vatAmount: number;
|
|
164
|
-
invoiceLines: Array<
|
|
165
|
-
taxRate: number;
|
|
166
|
-
taxAmount: number;
|
|
167
|
-
amount: number;
|
|
168
|
-
taxBase: number;
|
|
169
|
-
productGroupId: string;
|
|
170
|
-
}>;
|
|
91
|
+
invoiceLines: Array<UniRefund_TagService_Tags_InvoiceLineRequestDto>;
|
|
171
92
|
};
|
|
172
93
|
|
|
173
94
|
export type UniRefund_TagService_Merchants_MerchantDetailDto = {
|
|
174
95
|
id?: string;
|
|
175
96
|
name?: (string) | null;
|
|
176
|
-
address?:
|
|
177
|
-
|
|
178
|
-
fullText?: (string) | null;
|
|
179
|
-
};
|
|
180
|
-
productGroups?: Array<{
|
|
181
|
-
id?: string;
|
|
182
|
-
description?: (string) | null;
|
|
183
|
-
}> | null;
|
|
97
|
+
address?: UniRefund_TagService_Tags_AddressDto;
|
|
98
|
+
productGroups?: Array<UniRefund_TagService_Tags_ProductGroupDto> | null;
|
|
184
99
|
};
|
|
185
100
|
|
|
186
101
|
export type UniRefund_TagService_Merchants_MerchantRequestDto = {
|
|
@@ -195,36 +110,9 @@ export type UniRefund_TagService_Tags_AddressDto = {
|
|
|
195
110
|
};
|
|
196
111
|
|
|
197
112
|
export type UniRefund_TagService_Tags_CreateTagRequestDto = {
|
|
198
|
-
merchant:
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
branchId: string;
|
|
202
|
-
};
|
|
203
|
-
traveller: {
|
|
204
|
-
id?: (string) | null;
|
|
205
|
-
travelDocumentNumber: string;
|
|
206
|
-
nationalityCountryCode2: string;
|
|
207
|
-
firstName: string;
|
|
208
|
-
lastName: string;
|
|
209
|
-
residenceCountryCode2: string;
|
|
210
|
-
expirationDate?: (string) | null;
|
|
211
|
-
birthDate?: (string) | null;
|
|
212
|
-
};
|
|
213
|
-
invoices: Array<{
|
|
214
|
-
id?: (string) | null;
|
|
215
|
-
uuid: string;
|
|
216
|
-
invoiceNumber?: (string) | null;
|
|
217
|
-
issueDate: string;
|
|
218
|
-
totalAmount: number;
|
|
219
|
-
vatAmount: number;
|
|
220
|
-
invoiceLines: Array<{
|
|
221
|
-
taxRate: number;
|
|
222
|
-
taxAmount: number;
|
|
223
|
-
amount: number;
|
|
224
|
-
taxBase: number;
|
|
225
|
-
productGroupId: string;
|
|
226
|
-
}>;
|
|
227
|
-
}>;
|
|
113
|
+
merchant: UniRefund_TagService_Merchants_MerchantRequestDto;
|
|
114
|
+
traveller: UniRefund_TagService_Travellers_TravellerRequestDto;
|
|
115
|
+
invoices: Array<UniRefund_TagService_Invoices_InvoiceRequestDto>;
|
|
228
116
|
};
|
|
229
117
|
|
|
230
118
|
export type UniRefund_TagService_Tags_EarningType = 'None' | 'GrossComission' | 'RedefinedGC' | 'Rebate' | 'NetComission';
|
|
@@ -244,7 +132,7 @@ export type UniRefund_TagService_Tags_InvoiceLineRequestDto = {
|
|
|
244
132
|
taxAmount: number;
|
|
245
133
|
amount: number;
|
|
246
134
|
taxBase: number;
|
|
247
|
-
productGroupId
|
|
135
|
+
productGroupId?: (string) | null;
|
|
248
136
|
};
|
|
249
137
|
|
|
250
138
|
export type UniRefund_TagService_Tags_ProductGroupDto = {
|
|
@@ -254,13 +142,7 @@ export type UniRefund_TagService_Tags_ProductGroupDto = {
|
|
|
254
142
|
|
|
255
143
|
export type UniRefund_TagService_Tags_RebateStatementByVATStatementDto = {
|
|
256
144
|
vatStatementHeaderId?: string;
|
|
257
|
-
rebateStatementPropertiesByMerchantIds?: Array<
|
|
258
|
-
merchantId?: string;
|
|
259
|
-
tagCount?: number;
|
|
260
|
-
rebateAmount?: number;
|
|
261
|
-
grandTotalAmount?: number;
|
|
262
|
-
vatAmount?: number;
|
|
263
|
-
}> | null;
|
|
145
|
+
rebateStatementPropertiesByMerchantIds?: Array<UniRefund_TagService_Tags_RebateStatementPropertiesByMerchantIdsDto> | null;
|
|
264
146
|
};
|
|
265
147
|
|
|
266
148
|
export type UniRefund_TagService_Tags_RebateStatementPropertiesByMerchantIdsDto = {
|
|
@@ -272,25 +154,14 @@ export type UniRefund_TagService_Tags_RebateStatementPropertiesByMerchantIdsDto
|
|
|
272
154
|
};
|
|
273
155
|
|
|
274
156
|
export type UniRefund_TagService_Tags_SetTagRefundRequestDto = {
|
|
275
|
-
tagRefunds?: Array<
|
|
276
|
-
id?: string;
|
|
277
|
-
refundAmount?: number;
|
|
278
|
-
refundCurrency?: (string) | null;
|
|
279
|
-
refundRate?: number;
|
|
280
|
-
travellerFeeAmount?: number;
|
|
281
|
-
agentFeeAmount?: number;
|
|
282
|
-
}> | null;
|
|
157
|
+
tagRefunds?: Array<UniRefund_TagService_Tags_SetTagRefundRequestItemDto> | null;
|
|
283
158
|
refundId?: string;
|
|
284
|
-
refundType?:
|
|
159
|
+
refundType?: UniRefund_TagService_Tags_Enums_RefundType;
|
|
285
160
|
refundDate?: string;
|
|
286
|
-
status?:
|
|
161
|
+
status?: UniRefund_TagService_Tags_TagStatusType;
|
|
287
162
|
refundPointId?: string;
|
|
288
163
|
};
|
|
289
164
|
|
|
290
|
-
export type refundType = 'Cash' | 'CreditCard' | 'BankTransfer' | 'Wallet' | 'CashViaPartner';
|
|
291
|
-
|
|
292
|
-
export type status2 = 'None' | 'Open' | 'PreIssued' | 'Issued' | 'WaitingGoodsValidation' | 'WaitingStampValidation' | 'Declined' | 'ExportValidated' | 'PaymentBlocked' | 'PaymentInProgress' | 'PaymentProblem' | 'Paid' | 'Cancelled' | 'Expired' | 'Correction' | 'OptedOut';
|
|
293
|
-
|
|
294
165
|
export type UniRefund_TagService_Tags_SetTagRefundRequestItemDto = {
|
|
295
166
|
id?: string;
|
|
296
167
|
refundAmount?: number;
|
|
@@ -305,171 +176,43 @@ export type UniRefund_TagService_Tags_SetTagRefundResponseDto = {
|
|
|
305
176
|
};
|
|
306
177
|
|
|
307
178
|
export type UniRefund_TagService_Tags_SetTagVATStatementHeaderIdRequestDto = {
|
|
308
|
-
tagIdAndVATStatementHeaderIdPairs?: Array<
|
|
309
|
-
tagId: string;
|
|
310
|
-
vatStatementHeaderId: string;
|
|
311
|
-
}> | null;
|
|
179
|
+
tagIdAndVATStatementHeaderIdPairs?: Array<UniRefund_TagService_Tags_TagIdAndVATStatementHeaderIdPairDto> | null;
|
|
312
180
|
};
|
|
313
181
|
|
|
314
182
|
export type UniRefund_TagService_Tags_TagDetailDto = {
|
|
315
183
|
id?: string;
|
|
316
184
|
tagNumber: string;
|
|
317
|
-
status:
|
|
318
|
-
refundType?:
|
|
185
|
+
status: UniRefund_TagService_Tags_TagStatusType;
|
|
186
|
+
refundType?: UniRefund_TagService_Tags_Enums_RefundType;
|
|
319
187
|
issueDate: string;
|
|
320
188
|
expireDate?: (string) | null;
|
|
321
|
-
merchant?:
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
address?: {
|
|
325
|
-
id?: string;
|
|
326
|
-
fullText?: (string) | null;
|
|
327
|
-
};
|
|
328
|
-
productGroups?: Array<{
|
|
329
|
-
id?: string;
|
|
330
|
-
description?: (string) | null;
|
|
331
|
-
}> | null;
|
|
332
|
-
};
|
|
333
|
-
traveller?: {
|
|
334
|
-
id?: string;
|
|
335
|
-
travelDocumentNumber?: (string) | null;
|
|
336
|
-
countryOfResidence?: (string) | null;
|
|
337
|
-
nationality?: (string) | null;
|
|
338
|
-
firstname?: (string) | null;
|
|
339
|
-
lastname?: (string) | null;
|
|
340
|
-
};
|
|
341
|
-
exportValidation?: {
|
|
342
|
-
id?: string;
|
|
343
|
-
tagId?: (string) | null;
|
|
344
|
-
tagNumber?: (string) | null;
|
|
345
|
-
customsId: string;
|
|
346
|
-
customsName: string;
|
|
347
|
-
referenceId?: (string) | null;
|
|
348
|
-
exportDate: string;
|
|
349
|
-
status?: 'None' | 'Waiting' | 'Approved' | 'Rejected' | 'Expired';
|
|
350
|
-
stampType?: 'None' | 'Integration' | 'DigitalStamp';
|
|
351
|
-
initialValidationResult?: 'None' | 'Green';
|
|
352
|
-
finalValidationResult?: 'None' | 'Green';
|
|
353
|
-
};
|
|
189
|
+
merchant?: UniRefund_TagService_Merchants_MerchantDetailDto;
|
|
190
|
+
traveller?: UniRefund_TagService_Travellers_TravellerDetailDto;
|
|
191
|
+
exportValidation?: UniRefund_ExportValidationService_ExportValidations_ExportValidationDetailDto;
|
|
354
192
|
refundId?: (string) | null;
|
|
355
193
|
vatStatementHeaderId?: (string) | null;
|
|
356
|
-
invoices?: Array<
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
issueDate: string;
|
|
360
|
-
totalAmount: number;
|
|
361
|
-
vatAmount: number;
|
|
362
|
-
currency?: (string) | null;
|
|
363
|
-
invoiceLines?: Array<{
|
|
364
|
-
id?: string;
|
|
365
|
-
productGroup?: {
|
|
366
|
-
id?: string;
|
|
367
|
-
articleCode: string;
|
|
368
|
-
name: string;
|
|
369
|
-
unitCode: 'QNT' | 'BAG' | 'BOX';
|
|
370
|
-
companyType: 'GOVERNMENT' | 'TAXFREE' | 'CUSTOMS' | 'REFUNDPOINT' | 'MERCHANT' | 'EXCHANGE' | 'TOURGUIDE';
|
|
371
|
-
vatId?: string;
|
|
372
|
-
vatPercent?: (number) | null;
|
|
373
|
-
active: boolean;
|
|
374
|
-
food: boolean;
|
|
375
|
-
};
|
|
376
|
-
description?: (string) | null;
|
|
377
|
-
amount: number;
|
|
378
|
-
taxRate: number;
|
|
379
|
-
taxAmount: number;
|
|
380
|
-
taxBase: number;
|
|
381
|
-
currency?: (string) | null;
|
|
382
|
-
}> | null;
|
|
383
|
-
}> | null;
|
|
384
|
-
totals?: Array<{
|
|
385
|
-
totalType: 'None' | 'SalesAmount' | 'VatAmount' | 'GrossRefund' | 'RefundFee' | 'AgentRefundFee' | 'Refund';
|
|
386
|
-
amount: number;
|
|
387
|
-
description?: (string) | null;
|
|
388
|
-
currency: string;
|
|
389
|
-
rate: number;
|
|
390
|
-
}> | null;
|
|
391
|
-
earnings?: Array<{
|
|
392
|
-
earningType: 'None' | 'GrossComission' | 'RedefinedGC' | 'Rebate' | 'NetComission';
|
|
393
|
-
amount: number;
|
|
394
|
-
description?: (string) | null;
|
|
395
|
-
currency: string;
|
|
396
|
-
rate: number;
|
|
397
|
-
}> | null;
|
|
194
|
+
invoices?: Array<UniRefund_TagService_Invoices_InvoiceDto> | null;
|
|
195
|
+
totals?: Array<UniRefund_TagService_Tags_TagTotalDto> | null;
|
|
196
|
+
earnings?: Array<UniRefund_TagService_Tags_TagEarningDto> | null;
|
|
398
197
|
};
|
|
399
198
|
|
|
400
199
|
export type UniRefund_TagService_Tags_TagDetailForRefundDto = {
|
|
401
200
|
id?: string;
|
|
402
201
|
tagNumber: string;
|
|
403
|
-
status:
|
|
202
|
+
status: UniRefund_TagService_Tags_TagStatusType;
|
|
404
203
|
issueDate: string;
|
|
405
204
|
expireDate?: (string) | null;
|
|
406
|
-
merchant?:
|
|
407
|
-
|
|
408
|
-
|
|
409
|
-
|
|
410
|
-
id?: string;
|
|
411
|
-
fullText?: (string) | null;
|
|
412
|
-
};
|
|
413
|
-
productGroups?: Array<{
|
|
414
|
-
id?: string;
|
|
415
|
-
description?: (string) | null;
|
|
416
|
-
}> | null;
|
|
417
|
-
};
|
|
418
|
-
exportValidation?: {
|
|
419
|
-
id?: string;
|
|
420
|
-
tagId?: (string) | null;
|
|
421
|
-
tagNumber?: (string) | null;
|
|
422
|
-
customsId: string;
|
|
423
|
-
customsName: string;
|
|
424
|
-
referenceId?: (string) | null;
|
|
425
|
-
exportDate: string;
|
|
426
|
-
status?: 'None' | 'Waiting' | 'Approved' | 'Rejected' | 'Expired';
|
|
427
|
-
stampType?: 'None' | 'Integration' | 'DigitalStamp';
|
|
428
|
-
initialValidationResult?: 'None' | 'Green';
|
|
429
|
-
finalValidationResult?: 'None' | 'Green';
|
|
430
|
-
};
|
|
431
|
-
invoices?: Array<{
|
|
432
|
-
id?: string;
|
|
433
|
-
number?: (string) | null;
|
|
434
|
-
issueDate: string;
|
|
435
|
-
totalAmount: number;
|
|
436
|
-
vatAmount: number;
|
|
437
|
-
currency?: (string) | null;
|
|
438
|
-
invoiceLines?: Array<{
|
|
439
|
-
id?: string;
|
|
440
|
-
productGroup?: {
|
|
441
|
-
id?: string;
|
|
442
|
-
articleCode: string;
|
|
443
|
-
name: string;
|
|
444
|
-
unitCode: 'QNT' | 'BAG' | 'BOX';
|
|
445
|
-
companyType: 'GOVERNMENT' | 'TAXFREE' | 'CUSTOMS' | 'REFUNDPOINT' | 'MERCHANT' | 'EXCHANGE' | 'TOURGUIDE';
|
|
446
|
-
vatId?: string;
|
|
447
|
-
vatPercent?: (number) | null;
|
|
448
|
-
active: boolean;
|
|
449
|
-
food: boolean;
|
|
450
|
-
};
|
|
451
|
-
description?: (string) | null;
|
|
452
|
-
amount: number;
|
|
453
|
-
taxRate: number;
|
|
454
|
-
taxAmount: number;
|
|
455
|
-
taxBase: number;
|
|
456
|
-
currency?: (string) | null;
|
|
457
|
-
}> | null;
|
|
458
|
-
}> | null;
|
|
459
|
-
totals?: Array<{
|
|
460
|
-
totalType: 'None' | 'SalesAmount' | 'VatAmount' | 'GrossRefund' | 'RefundFee' | 'AgentRefundFee' | 'Refund';
|
|
461
|
-
amount: number;
|
|
462
|
-
description?: (string) | null;
|
|
463
|
-
currency: string;
|
|
464
|
-
rate: number;
|
|
465
|
-
}> | null;
|
|
205
|
+
merchant?: UniRefund_TagService_Merchants_MerchantDetailDto;
|
|
206
|
+
exportValidation?: UniRefund_ExportValidationService_ExportValidations_ExportValidationDetailDto;
|
|
207
|
+
invoices?: Array<UniRefund_TagService_Invoices_InvoiceDto> | null;
|
|
208
|
+
totals?: Array<UniRefund_TagService_Tags_TagTotalDto> | null;
|
|
466
209
|
};
|
|
467
210
|
|
|
468
211
|
export type UniRefund_TagService_Tags_TagDto = {
|
|
469
212
|
id?: string;
|
|
470
213
|
tagNumber: string;
|
|
471
|
-
status:
|
|
472
|
-
refundType?:
|
|
214
|
+
status: UniRefund_TagService_Tags_TagStatusType;
|
|
215
|
+
refundType?: UniRefund_TagService_Tags_Enums_RefundType;
|
|
473
216
|
issueDate: string;
|
|
474
217
|
expireDate?: (string) | null;
|
|
475
218
|
exportValidationId?: (string) | null;
|
|
@@ -482,25 +225,17 @@ export type UniRefund_TagService_Tags_TagDto = {
|
|
|
482
225
|
refundTableId?: (string) | null;
|
|
483
226
|
rebateTableId?: (string) | null;
|
|
484
227
|
contractHeaderId?: (string) | null;
|
|
485
|
-
totals?: Array<
|
|
486
|
-
totalType: 'None' | 'SalesAmount' | 'VatAmount' | 'GrossRefund' | 'RefundFee' | 'AgentRefundFee' | 'Refund';
|
|
487
|
-
amount: number;
|
|
488
|
-
description?: (string) | null;
|
|
489
|
-
currency: string;
|
|
490
|
-
rate: number;
|
|
491
|
-
}> | null;
|
|
228
|
+
totals?: Array<UniRefund_TagService_Tags_TagTotalDto> | null;
|
|
492
229
|
};
|
|
493
230
|
|
|
494
231
|
export type UniRefund_TagService_Tags_TagEarningDto = {
|
|
495
|
-
earningType:
|
|
232
|
+
earningType: UniRefund_TagService_Tags_EarningType;
|
|
496
233
|
amount: number;
|
|
497
234
|
description?: (string) | null;
|
|
498
235
|
currency: string;
|
|
499
236
|
rate: number;
|
|
500
237
|
};
|
|
501
238
|
|
|
502
|
-
export type earningType = 'None' | 'GrossComission' | 'RedefinedGC' | 'Rebate' | 'NetComission';
|
|
503
|
-
|
|
504
239
|
export type UniRefund_TagService_Tags_TagIdAndVATStatementHeaderIdPairDto = {
|
|
505
240
|
tagId: string;
|
|
506
241
|
vatStatementHeaderId: string;
|
|
@@ -514,14 +249,8 @@ export type UniRefund_TagService_Tags_TagListItemDto = {
|
|
|
514
249
|
travellerFullName: string;
|
|
515
250
|
travellerDocumentNumber: string;
|
|
516
251
|
merchantTitle: string;
|
|
517
|
-
status:
|
|
518
|
-
totals?: Array<
|
|
519
|
-
totalType: 'None' | 'SalesAmount' | 'VatAmount' | 'GrossRefund' | 'RefundFee' | 'AgentRefundFee' | 'Refund';
|
|
520
|
-
amount: number;
|
|
521
|
-
description?: (string) | null;
|
|
522
|
-
currency: string;
|
|
523
|
-
rate: number;
|
|
524
|
-
}> | null;
|
|
252
|
+
status: UniRefund_TagService_Tags_TagStatusType;
|
|
253
|
+
totals?: Array<UniRefund_TagService_Tags_TagTotalDto> | null;
|
|
525
254
|
};
|
|
526
255
|
|
|
527
256
|
export type UniRefund_TagService_Tags_TagListSummaryDto = {
|
|
@@ -551,28 +280,21 @@ export type UniRefund_TagService_Tags_TagSumTagsForVATStatementTagDetailResponse
|
|
|
551
280
|
};
|
|
552
281
|
|
|
553
282
|
export type UniRefund_TagService_Tags_TagSumTagsResponseDto = {
|
|
554
|
-
tagRefundFees?: Array<
|
|
555
|
-
id: string;
|
|
556
|
-
touristFee: number;
|
|
557
|
-
agentFee: number;
|
|
558
|
-
netRefundAmount: number;
|
|
559
|
-
}> | null;
|
|
283
|
+
tagRefundFees?: Array<UniRefund_TagService_Tags_TagRefundFeesDto> | null;
|
|
560
284
|
travellerId?: string;
|
|
561
285
|
travellerDocumentNumber?: (string) | null;
|
|
562
286
|
refundCurrency?: (string) | null;
|
|
563
|
-
status?:
|
|
287
|
+
status?: UniRefund_TagService_Tags_TagStatusType;
|
|
564
288
|
};
|
|
565
289
|
|
|
566
290
|
export type UniRefund_TagService_Tags_TagTotalDto = {
|
|
567
|
-
totalType:
|
|
291
|
+
totalType: UniRefund_TagService_Tags_TotalType;
|
|
568
292
|
amount: number;
|
|
569
293
|
description?: (string) | null;
|
|
570
294
|
currency: string;
|
|
571
295
|
rate: number;
|
|
572
296
|
};
|
|
573
297
|
|
|
574
|
-
export type totalType = 'None' | 'SalesAmount' | 'VatAmount' | 'GrossRefund' | 'RefundFee' | 'AgentRefundFee' | 'Refund';
|
|
575
|
-
|
|
576
298
|
export type UniRefund_TagService_Tags_TagValidForVATStatementResponseDto = {
|
|
577
299
|
tagId: string;
|
|
578
300
|
merchantId: string;
|
|
@@ -593,7 +315,7 @@ export type UniRefund_TagService_Tags_TotalType = 'None' | 'SalesAmount' | 'VatA
|
|
|
593
315
|
|
|
594
316
|
export type UniRefund_TagService_Tags_UpdateTagDto = {
|
|
595
317
|
tagNumber?: (string) | null;
|
|
596
|
-
refundType?:
|
|
318
|
+
refundType?: UniRefund_TagService_Tags_Enums_RefundType;
|
|
597
319
|
issueDate?: string;
|
|
598
320
|
expireDate?: (string) | null;
|
|
599
321
|
exportValidationId?: (string) | null;
|
|
@@ -605,13 +327,7 @@ export type UniRefund_TagService_Tags_UpdateTagDto = {
|
|
|
605
327
|
refundTableId?: (string) | null;
|
|
606
328
|
rebateTableId?: (string) | null;
|
|
607
329
|
contractHeaderId?: (string) | null;
|
|
608
|
-
totals?: Array<
|
|
609
|
-
totalType: 'None' | 'SalesAmount' | 'VatAmount' | 'GrossRefund' | 'RefundFee' | 'AgentRefundFee' | 'Refund';
|
|
610
|
-
amount: number;
|
|
611
|
-
description?: (string) | null;
|
|
612
|
-
currency: string;
|
|
613
|
-
rate: number;
|
|
614
|
-
}> | null;
|
|
330
|
+
totals?: Array<UniRefund_TagService_Tags_TagTotalDto> | null;
|
|
615
331
|
};
|
|
616
332
|
|
|
617
333
|
export type UniRefund_TagService_Travellers_TravellerDetailDto = {
|
|
@@ -641,190 +357,17 @@ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationAuthCon
|
|
|
641
357
|
};
|
|
642
358
|
|
|
643
359
|
export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationConfigurationDto = {
|
|
644
|
-
localization?:
|
|
645
|
-
|
|
646
|
-
|
|
647
|
-
|
|
648
|
-
|
|
649
|
-
|
|
650
|
-
|
|
651
|
-
|
|
652
|
-
|
|
653
|
-
|
|
654
|
-
|
|
655
|
-
baseResources?: Array<(string)> | null;
|
|
656
|
-
};
|
|
657
|
-
} | null;
|
|
658
|
-
languages?: Array<{
|
|
659
|
-
cultureName?: (string) | null;
|
|
660
|
-
uiCultureName?: (string) | null;
|
|
661
|
-
displayName?: (string) | null;
|
|
662
|
-
readonly twoLetterISOLanguageName?: (string) | null;
|
|
663
|
-
}> | null;
|
|
664
|
-
currentCulture?: {
|
|
665
|
-
displayName?: (string) | null;
|
|
666
|
-
englishName?: (string) | null;
|
|
667
|
-
threeLetterIsoLanguageName?: (string) | null;
|
|
668
|
-
twoLetterIsoLanguageName?: (string) | null;
|
|
669
|
-
isRightToLeft?: boolean;
|
|
670
|
-
cultureName?: (string) | null;
|
|
671
|
-
name?: (string) | null;
|
|
672
|
-
nativeName?: (string) | null;
|
|
673
|
-
dateTimeFormat?: {
|
|
674
|
-
calendarAlgorithmType?: (string) | null;
|
|
675
|
-
dateTimeFormatLong?: (string) | null;
|
|
676
|
-
shortDatePattern?: (string) | null;
|
|
677
|
-
fullDateTimePattern?: (string) | null;
|
|
678
|
-
dateSeparator?: (string) | null;
|
|
679
|
-
shortTimePattern?: (string) | null;
|
|
680
|
-
longTimePattern?: (string) | null;
|
|
681
|
-
};
|
|
682
|
-
};
|
|
683
|
-
defaultResourceName?: (string) | null;
|
|
684
|
-
languagesMap?: {
|
|
685
|
-
[key: string]: Array<{
|
|
686
|
-
name?: (string) | null;
|
|
687
|
-
value?: (string) | null;
|
|
688
|
-
}>;
|
|
689
|
-
} | null;
|
|
690
|
-
languageFilesMap?: {
|
|
691
|
-
[key: string]: Array<{
|
|
692
|
-
name?: (string) | null;
|
|
693
|
-
value?: (string) | null;
|
|
694
|
-
}>;
|
|
695
|
-
} | null;
|
|
696
|
-
};
|
|
697
|
-
auth?: {
|
|
698
|
-
grantedPolicies?: {
|
|
699
|
-
[key: string]: (boolean);
|
|
700
|
-
} | null;
|
|
701
|
-
};
|
|
702
|
-
setting?: {
|
|
703
|
-
values?: {
|
|
704
|
-
[key: string]: ((string) | null);
|
|
705
|
-
} | null;
|
|
706
|
-
};
|
|
707
|
-
currentUser?: {
|
|
708
|
-
isAuthenticated?: boolean;
|
|
709
|
-
id?: (string) | null;
|
|
710
|
-
tenantId?: (string) | null;
|
|
711
|
-
impersonatorUserId?: (string) | null;
|
|
712
|
-
impersonatorTenantId?: (string) | null;
|
|
713
|
-
impersonatorUserName?: (string) | null;
|
|
714
|
-
impersonatorTenantName?: (string) | null;
|
|
715
|
-
userName?: (string) | null;
|
|
716
|
-
name?: (string) | null;
|
|
717
|
-
surName?: (string) | null;
|
|
718
|
-
email?: (string) | null;
|
|
719
|
-
emailVerified?: boolean;
|
|
720
|
-
phoneNumber?: (string) | null;
|
|
721
|
-
phoneNumberVerified?: boolean;
|
|
722
|
-
roles?: Array<(string)> | null;
|
|
723
|
-
sessionId?: (string) | null;
|
|
724
|
-
};
|
|
725
|
-
features?: {
|
|
726
|
-
values?: {
|
|
727
|
-
[key: string]: ((string) | null);
|
|
728
|
-
} | null;
|
|
729
|
-
};
|
|
730
|
-
globalFeatures?: {
|
|
731
|
-
enabledFeatures?: Array<(string)> | null;
|
|
732
|
-
};
|
|
733
|
-
multiTenancy?: {
|
|
734
|
-
isEnabled?: boolean;
|
|
735
|
-
};
|
|
736
|
-
currentTenant?: {
|
|
737
|
-
id?: (string) | null;
|
|
738
|
-
name?: (string) | null;
|
|
739
|
-
isAvailable?: boolean;
|
|
740
|
-
};
|
|
741
|
-
timing?: {
|
|
742
|
-
timeZone?: {
|
|
743
|
-
iana?: {
|
|
744
|
-
timeZoneName?: (string) | null;
|
|
745
|
-
};
|
|
746
|
-
windows?: {
|
|
747
|
-
timeZoneId?: (string) | null;
|
|
748
|
-
};
|
|
749
|
-
};
|
|
750
|
-
};
|
|
751
|
-
clock?: {
|
|
752
|
-
kind?: (string) | null;
|
|
753
|
-
};
|
|
754
|
-
objectExtensions?: {
|
|
755
|
-
modules?: {
|
|
756
|
-
[key: string]: {
|
|
757
|
-
entities?: {
|
|
758
|
-
[key: string]: {
|
|
759
|
-
properties?: {
|
|
760
|
-
[key: string]: {
|
|
761
|
-
type?: (string) | null;
|
|
762
|
-
typeSimple?: (string) | null;
|
|
763
|
-
displayName?: {
|
|
764
|
-
name?: (string) | null;
|
|
765
|
-
resource?: (string) | null;
|
|
766
|
-
};
|
|
767
|
-
api?: {
|
|
768
|
-
onGet?: {
|
|
769
|
-
isAvailable?: boolean;
|
|
770
|
-
};
|
|
771
|
-
onCreate?: {
|
|
772
|
-
isAvailable?: boolean;
|
|
773
|
-
};
|
|
774
|
-
onUpdate?: {
|
|
775
|
-
isAvailable?: boolean;
|
|
776
|
-
};
|
|
777
|
-
};
|
|
778
|
-
ui?: {
|
|
779
|
-
onTable?: {
|
|
780
|
-
isVisible?: boolean;
|
|
781
|
-
};
|
|
782
|
-
onCreateForm?: {
|
|
783
|
-
isVisible?: boolean;
|
|
784
|
-
};
|
|
785
|
-
onEditForm?: {
|
|
786
|
-
isVisible?: boolean;
|
|
787
|
-
};
|
|
788
|
-
lookup?: {
|
|
789
|
-
url?: (string) | null;
|
|
790
|
-
resultListPropertyName?: (string) | null;
|
|
791
|
-
displayPropertyName?: (string) | null;
|
|
792
|
-
valuePropertyName?: (string) | null;
|
|
793
|
-
filterParamName?: (string) | null;
|
|
794
|
-
};
|
|
795
|
-
};
|
|
796
|
-
attributes?: Array<{
|
|
797
|
-
typeSimple?: (string) | null;
|
|
798
|
-
config?: {
|
|
799
|
-
[key: string]: unknown;
|
|
800
|
-
} | null;
|
|
801
|
-
}> | null;
|
|
802
|
-
configuration?: {
|
|
803
|
-
[key: string]: unknown;
|
|
804
|
-
} | null;
|
|
805
|
-
defaultValue?: unknown;
|
|
806
|
-
};
|
|
807
|
-
} | null;
|
|
808
|
-
configuration?: {
|
|
809
|
-
[key: string]: unknown;
|
|
810
|
-
} | null;
|
|
811
|
-
};
|
|
812
|
-
} | null;
|
|
813
|
-
configuration?: {
|
|
814
|
-
[key: string]: unknown;
|
|
815
|
-
} | null;
|
|
816
|
-
};
|
|
817
|
-
} | null;
|
|
818
|
-
enums?: {
|
|
819
|
-
[key: string]: {
|
|
820
|
-
fields?: Array<{
|
|
821
|
-
name?: (string) | null;
|
|
822
|
-
value?: unknown;
|
|
823
|
-
}> | null;
|
|
824
|
-
localizationResource?: (string) | null;
|
|
825
|
-
};
|
|
826
|
-
} | null;
|
|
827
|
-
};
|
|
360
|
+
localization?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationConfigurationDto;
|
|
361
|
+
auth?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationAuthConfigurationDto;
|
|
362
|
+
setting?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationSettingConfigurationDto;
|
|
363
|
+
currentUser?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_CurrentUserDto;
|
|
364
|
+
features?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationFeatureConfigurationDto;
|
|
365
|
+
globalFeatures?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationGlobalFeatureConfigurationDto;
|
|
366
|
+
multiTenancy?: Volo_Abp_AspNetCore_Mvc_MultiTenancy_MultiTenancyInfoDto;
|
|
367
|
+
currentTenant?: Volo_Abp_AspNetCore_Mvc_MultiTenancy_CurrentTenantDto;
|
|
368
|
+
timing?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_TimingDto;
|
|
369
|
+
clock?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ClockDto;
|
|
370
|
+
objectExtensions?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ObjectExtensionsDto;
|
|
828
371
|
extraProperties?: {
|
|
829
372
|
[key: string]: unknown;
|
|
830
373
|
} | null;
|
|
@@ -847,81 +390,24 @@ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocaliz
|
|
|
847
390
|
};
|
|
848
391
|
} | null;
|
|
849
392
|
resources?: {
|
|
850
|
-
[key: string]:
|
|
851
|
-
texts?: {
|
|
852
|
-
[key: string]: (string);
|
|
853
|
-
} | null;
|
|
854
|
-
baseResources?: Array<(string)> | null;
|
|
855
|
-
};
|
|
393
|
+
[key: string]: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationResourceDto;
|
|
856
394
|
} | null;
|
|
857
|
-
languages?: Array<
|
|
858
|
-
|
|
859
|
-
uiCultureName?: (string) | null;
|
|
860
|
-
displayName?: (string) | null;
|
|
861
|
-
readonly twoLetterISOLanguageName?: (string) | null;
|
|
862
|
-
}> | null;
|
|
863
|
-
currentCulture?: {
|
|
864
|
-
displayName?: (string) | null;
|
|
865
|
-
englishName?: (string) | null;
|
|
866
|
-
threeLetterIsoLanguageName?: (string) | null;
|
|
867
|
-
twoLetterIsoLanguageName?: (string) | null;
|
|
868
|
-
isRightToLeft?: boolean;
|
|
869
|
-
cultureName?: (string) | null;
|
|
870
|
-
name?: (string) | null;
|
|
871
|
-
nativeName?: (string) | null;
|
|
872
|
-
dateTimeFormat?: {
|
|
873
|
-
calendarAlgorithmType?: (string) | null;
|
|
874
|
-
dateTimeFormatLong?: (string) | null;
|
|
875
|
-
shortDatePattern?: (string) | null;
|
|
876
|
-
fullDateTimePattern?: (string) | null;
|
|
877
|
-
dateSeparator?: (string) | null;
|
|
878
|
-
shortTimePattern?: (string) | null;
|
|
879
|
-
longTimePattern?: (string) | null;
|
|
880
|
-
};
|
|
881
|
-
};
|
|
395
|
+
languages?: Array<Volo_Abp_Localization_LanguageInfo> | null;
|
|
396
|
+
currentCulture?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_CurrentCultureDto;
|
|
882
397
|
defaultResourceName?: (string) | null;
|
|
883
398
|
languagesMap?: {
|
|
884
|
-
[key: string]: Array<
|
|
885
|
-
name?: (string) | null;
|
|
886
|
-
value?: (string) | null;
|
|
887
|
-
}>;
|
|
399
|
+
[key: string]: Array<Volo_Abp_NameValue>;
|
|
888
400
|
} | null;
|
|
889
401
|
languageFilesMap?: {
|
|
890
|
-
[key: string]: Array<
|
|
891
|
-
name?: (string) | null;
|
|
892
|
-
value?: (string) | null;
|
|
893
|
-
}>;
|
|
402
|
+
[key: string]: Array<Volo_Abp_NameValue>;
|
|
894
403
|
} | null;
|
|
895
404
|
};
|
|
896
405
|
|
|
897
406
|
export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationDto = {
|
|
898
407
|
resources?: {
|
|
899
|
-
[key: string]:
|
|
900
|
-
texts?: {
|
|
901
|
-
[key: string]: (string);
|
|
902
|
-
} | null;
|
|
903
|
-
baseResources?: Array<(string)> | null;
|
|
904
|
-
};
|
|
408
|
+
[key: string]: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationResourceDto;
|
|
905
409
|
} | null;
|
|
906
|
-
currentCulture?:
|
|
907
|
-
displayName?: (string) | null;
|
|
908
|
-
englishName?: (string) | null;
|
|
909
|
-
threeLetterIsoLanguageName?: (string) | null;
|
|
910
|
-
twoLetterIsoLanguageName?: (string) | null;
|
|
911
|
-
isRightToLeft?: boolean;
|
|
912
|
-
cultureName?: (string) | null;
|
|
913
|
-
name?: (string) | null;
|
|
914
|
-
nativeName?: (string) | null;
|
|
915
|
-
dateTimeFormat?: {
|
|
916
|
-
calendarAlgorithmType?: (string) | null;
|
|
917
|
-
dateTimeFormatLong?: (string) | null;
|
|
918
|
-
shortDatePattern?: (string) | null;
|
|
919
|
-
fullDateTimePattern?: (string) | null;
|
|
920
|
-
dateSeparator?: (string) | null;
|
|
921
|
-
shortTimePattern?: (string) | null;
|
|
922
|
-
longTimePattern?: (string) | null;
|
|
923
|
-
};
|
|
924
|
-
};
|
|
410
|
+
currentCulture?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_CurrentCultureDto;
|
|
925
411
|
};
|
|
926
412
|
|
|
927
413
|
export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationResourceDto = {
|
|
@@ -950,15 +436,7 @@ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_CurrentCultureDto
|
|
|
950
436
|
cultureName?: (string) | null;
|
|
951
437
|
name?: (string) | null;
|
|
952
438
|
nativeName?: (string) | null;
|
|
953
|
-
dateTimeFormat?:
|
|
954
|
-
calendarAlgorithmType?: (string) | null;
|
|
955
|
-
dateTimeFormatLong?: (string) | null;
|
|
956
|
-
shortDatePattern?: (string) | null;
|
|
957
|
-
fullDateTimePattern?: (string) | null;
|
|
958
|
-
dateSeparator?: (string) | null;
|
|
959
|
-
shortTimePattern?: (string) | null;
|
|
960
|
-
longTimePattern?: (string) | null;
|
|
961
|
-
};
|
|
439
|
+
dateTimeFormat?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_DateTimeFormatDto;
|
|
962
440
|
};
|
|
963
441
|
|
|
964
442
|
export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_CurrentUserDto = {
|
|
@@ -996,53 +474,7 @@ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_IanaTimeZone = {
|
|
|
996
474
|
|
|
997
475
|
export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_EntityExtensionDto = {
|
|
998
476
|
properties?: {
|
|
999
|
-
[key: string]:
|
|
1000
|
-
type?: (string) | null;
|
|
1001
|
-
typeSimple?: (string) | null;
|
|
1002
|
-
displayName?: {
|
|
1003
|
-
name?: (string) | null;
|
|
1004
|
-
resource?: (string) | null;
|
|
1005
|
-
};
|
|
1006
|
-
api?: {
|
|
1007
|
-
onGet?: {
|
|
1008
|
-
isAvailable?: boolean;
|
|
1009
|
-
};
|
|
1010
|
-
onCreate?: {
|
|
1011
|
-
isAvailable?: boolean;
|
|
1012
|
-
};
|
|
1013
|
-
onUpdate?: {
|
|
1014
|
-
isAvailable?: boolean;
|
|
1015
|
-
};
|
|
1016
|
-
};
|
|
1017
|
-
ui?: {
|
|
1018
|
-
onTable?: {
|
|
1019
|
-
isVisible?: boolean;
|
|
1020
|
-
};
|
|
1021
|
-
onCreateForm?: {
|
|
1022
|
-
isVisible?: boolean;
|
|
1023
|
-
};
|
|
1024
|
-
onEditForm?: {
|
|
1025
|
-
isVisible?: boolean;
|
|
1026
|
-
};
|
|
1027
|
-
lookup?: {
|
|
1028
|
-
url?: (string) | null;
|
|
1029
|
-
resultListPropertyName?: (string) | null;
|
|
1030
|
-
displayPropertyName?: (string) | null;
|
|
1031
|
-
valuePropertyName?: (string) | null;
|
|
1032
|
-
filterParamName?: (string) | null;
|
|
1033
|
-
};
|
|
1034
|
-
};
|
|
1035
|
-
attributes?: Array<{
|
|
1036
|
-
typeSimple?: (string) | null;
|
|
1037
|
-
config?: {
|
|
1038
|
-
[key: string]: unknown;
|
|
1039
|
-
} | null;
|
|
1040
|
-
}> | null;
|
|
1041
|
-
configuration?: {
|
|
1042
|
-
[key: string]: unknown;
|
|
1043
|
-
} | null;
|
|
1044
|
-
defaultValue?: unknown;
|
|
1045
|
-
};
|
|
477
|
+
[key: string]: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyDto;
|
|
1046
478
|
} | null;
|
|
1047
479
|
configuration?: {
|
|
1048
480
|
[key: string]: unknown;
|
|
@@ -1050,10 +482,7 @@ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_En
|
|
|
1050
482
|
};
|
|
1051
483
|
|
|
1052
484
|
export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionEnumDto = {
|
|
1053
|
-
fields?: Array<
|
|
1054
|
-
name?: (string) | null;
|
|
1055
|
-
value?: unknown;
|
|
1056
|
-
}> | null;
|
|
485
|
+
fields?: Array<Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionEnumFieldDto> | null;
|
|
1057
486
|
localizationResource?: (string) | null;
|
|
1058
487
|
};
|
|
1059
488
|
|
|
@@ -1067,15 +496,9 @@ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_Ex
|
|
|
1067
496
|
};
|
|
1068
497
|
|
|
1069
498
|
export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiDto = {
|
|
1070
|
-
onGet?:
|
|
1071
|
-
|
|
1072
|
-
|
|
1073
|
-
onCreate?: {
|
|
1074
|
-
isAvailable?: boolean;
|
|
1075
|
-
};
|
|
1076
|
-
onUpdate?: {
|
|
1077
|
-
isAvailable?: boolean;
|
|
1078
|
-
};
|
|
499
|
+
onGet?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiGetDto;
|
|
500
|
+
onCreate?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiCreateDto;
|
|
501
|
+
onUpdate?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiUpdateDto;
|
|
1079
502
|
};
|
|
1080
503
|
|
|
1081
504
|
export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiGetDto = {
|
|
@@ -1096,45 +519,10 @@ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_Ex
|
|
|
1096
519
|
export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyDto = {
|
|
1097
520
|
type?: (string) | null;
|
|
1098
521
|
typeSimple?: (string) | null;
|
|
1099
|
-
displayName?:
|
|
1100
|
-
|
|
1101
|
-
|
|
1102
|
-
|
|
1103
|
-
api?: {
|
|
1104
|
-
onGet?: {
|
|
1105
|
-
isAvailable?: boolean;
|
|
1106
|
-
};
|
|
1107
|
-
onCreate?: {
|
|
1108
|
-
isAvailable?: boolean;
|
|
1109
|
-
};
|
|
1110
|
-
onUpdate?: {
|
|
1111
|
-
isAvailable?: boolean;
|
|
1112
|
-
};
|
|
1113
|
-
};
|
|
1114
|
-
ui?: {
|
|
1115
|
-
onTable?: {
|
|
1116
|
-
isVisible?: boolean;
|
|
1117
|
-
};
|
|
1118
|
-
onCreateForm?: {
|
|
1119
|
-
isVisible?: boolean;
|
|
1120
|
-
};
|
|
1121
|
-
onEditForm?: {
|
|
1122
|
-
isVisible?: boolean;
|
|
1123
|
-
};
|
|
1124
|
-
lookup?: {
|
|
1125
|
-
url?: (string) | null;
|
|
1126
|
-
resultListPropertyName?: (string) | null;
|
|
1127
|
-
displayPropertyName?: (string) | null;
|
|
1128
|
-
valuePropertyName?: (string) | null;
|
|
1129
|
-
filterParamName?: (string) | null;
|
|
1130
|
-
};
|
|
1131
|
-
};
|
|
1132
|
-
attributes?: Array<{
|
|
1133
|
-
typeSimple?: (string) | null;
|
|
1134
|
-
config?: {
|
|
1135
|
-
[key: string]: unknown;
|
|
1136
|
-
} | null;
|
|
1137
|
-
}> | null;
|
|
522
|
+
displayName?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_LocalizableStringDto;
|
|
523
|
+
api?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiDto;
|
|
524
|
+
ui?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiDto;
|
|
525
|
+
attributes?: Array<Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyAttributeDto> | null;
|
|
1138
526
|
configuration?: {
|
|
1139
527
|
[key: string]: unknown;
|
|
1140
528
|
} | null;
|
|
@@ -1142,22 +530,10 @@ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_Ex
|
|
|
1142
530
|
};
|
|
1143
531
|
|
|
1144
532
|
export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiDto = {
|
|
1145
|
-
onTable?:
|
|
1146
|
-
|
|
1147
|
-
|
|
1148
|
-
|
|
1149
|
-
isVisible?: boolean;
|
|
1150
|
-
};
|
|
1151
|
-
onEditForm?: {
|
|
1152
|
-
isVisible?: boolean;
|
|
1153
|
-
};
|
|
1154
|
-
lookup?: {
|
|
1155
|
-
url?: (string) | null;
|
|
1156
|
-
resultListPropertyName?: (string) | null;
|
|
1157
|
-
displayPropertyName?: (string) | null;
|
|
1158
|
-
valuePropertyName?: (string) | null;
|
|
1159
|
-
filterParamName?: (string) | null;
|
|
1160
|
-
};
|
|
533
|
+
onTable?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiTableDto;
|
|
534
|
+
onCreateForm?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiFormDto;
|
|
535
|
+
onEditForm?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiFormDto;
|
|
536
|
+
lookup?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiLookupDto;
|
|
1161
537
|
};
|
|
1162
538
|
|
|
1163
539
|
export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiFormDto = {
|
|
@@ -1183,60 +559,7 @@ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_Lo
|
|
|
1183
559
|
|
|
1184
560
|
export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ModuleExtensionDto = {
|
|
1185
561
|
entities?: {
|
|
1186
|
-
[key: string]:
|
|
1187
|
-
properties?: {
|
|
1188
|
-
[key: string]: {
|
|
1189
|
-
type?: (string) | null;
|
|
1190
|
-
typeSimple?: (string) | null;
|
|
1191
|
-
displayName?: {
|
|
1192
|
-
name?: (string) | null;
|
|
1193
|
-
resource?: (string) | null;
|
|
1194
|
-
};
|
|
1195
|
-
api?: {
|
|
1196
|
-
onGet?: {
|
|
1197
|
-
isAvailable?: boolean;
|
|
1198
|
-
};
|
|
1199
|
-
onCreate?: {
|
|
1200
|
-
isAvailable?: boolean;
|
|
1201
|
-
};
|
|
1202
|
-
onUpdate?: {
|
|
1203
|
-
isAvailable?: boolean;
|
|
1204
|
-
};
|
|
1205
|
-
};
|
|
1206
|
-
ui?: {
|
|
1207
|
-
onTable?: {
|
|
1208
|
-
isVisible?: boolean;
|
|
1209
|
-
};
|
|
1210
|
-
onCreateForm?: {
|
|
1211
|
-
isVisible?: boolean;
|
|
1212
|
-
};
|
|
1213
|
-
onEditForm?: {
|
|
1214
|
-
isVisible?: boolean;
|
|
1215
|
-
};
|
|
1216
|
-
lookup?: {
|
|
1217
|
-
url?: (string) | null;
|
|
1218
|
-
resultListPropertyName?: (string) | null;
|
|
1219
|
-
displayPropertyName?: (string) | null;
|
|
1220
|
-
valuePropertyName?: (string) | null;
|
|
1221
|
-
filterParamName?: (string) | null;
|
|
1222
|
-
};
|
|
1223
|
-
};
|
|
1224
|
-
attributes?: Array<{
|
|
1225
|
-
typeSimple?: (string) | null;
|
|
1226
|
-
config?: {
|
|
1227
|
-
[key: string]: unknown;
|
|
1228
|
-
} | null;
|
|
1229
|
-
}> | null;
|
|
1230
|
-
configuration?: {
|
|
1231
|
-
[key: string]: unknown;
|
|
1232
|
-
} | null;
|
|
1233
|
-
defaultValue?: unknown;
|
|
1234
|
-
};
|
|
1235
|
-
} | null;
|
|
1236
|
-
configuration?: {
|
|
1237
|
-
[key: string]: unknown;
|
|
1238
|
-
} | null;
|
|
1239
|
-
};
|
|
562
|
+
[key: string]: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_EntityExtensionDto;
|
|
1240
563
|
} | null;
|
|
1241
564
|
configuration?: {
|
|
1242
565
|
[key: string]: unknown;
|
|
@@ -1245,97 +568,20 @@ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_Mo
|
|
|
1245
568
|
|
|
1246
569
|
export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ObjectExtensionsDto = {
|
|
1247
570
|
modules?: {
|
|
1248
|
-
[key: string]:
|
|
1249
|
-
entities?: {
|
|
1250
|
-
[key: string]: {
|
|
1251
|
-
properties?: {
|
|
1252
|
-
[key: string]: {
|
|
1253
|
-
type?: (string) | null;
|
|
1254
|
-
typeSimple?: (string) | null;
|
|
1255
|
-
displayName?: {
|
|
1256
|
-
name?: (string) | null;
|
|
1257
|
-
resource?: (string) | null;
|
|
1258
|
-
};
|
|
1259
|
-
api?: {
|
|
1260
|
-
onGet?: {
|
|
1261
|
-
isAvailable?: boolean;
|
|
1262
|
-
};
|
|
1263
|
-
onCreate?: {
|
|
1264
|
-
isAvailable?: boolean;
|
|
1265
|
-
};
|
|
1266
|
-
onUpdate?: {
|
|
1267
|
-
isAvailable?: boolean;
|
|
1268
|
-
};
|
|
1269
|
-
};
|
|
1270
|
-
ui?: {
|
|
1271
|
-
onTable?: {
|
|
1272
|
-
isVisible?: boolean;
|
|
1273
|
-
};
|
|
1274
|
-
onCreateForm?: {
|
|
1275
|
-
isVisible?: boolean;
|
|
1276
|
-
};
|
|
1277
|
-
onEditForm?: {
|
|
1278
|
-
isVisible?: boolean;
|
|
1279
|
-
};
|
|
1280
|
-
lookup?: {
|
|
1281
|
-
url?: (string) | null;
|
|
1282
|
-
resultListPropertyName?: (string) | null;
|
|
1283
|
-
displayPropertyName?: (string) | null;
|
|
1284
|
-
valuePropertyName?: (string) | null;
|
|
1285
|
-
filterParamName?: (string) | null;
|
|
1286
|
-
};
|
|
1287
|
-
};
|
|
1288
|
-
attributes?: Array<{
|
|
1289
|
-
typeSimple?: (string) | null;
|
|
1290
|
-
config?: {
|
|
1291
|
-
[key: string]: unknown;
|
|
1292
|
-
} | null;
|
|
1293
|
-
}> | null;
|
|
1294
|
-
configuration?: {
|
|
1295
|
-
[key: string]: unknown;
|
|
1296
|
-
} | null;
|
|
1297
|
-
defaultValue?: unknown;
|
|
1298
|
-
};
|
|
1299
|
-
} | null;
|
|
1300
|
-
configuration?: {
|
|
1301
|
-
[key: string]: unknown;
|
|
1302
|
-
} | null;
|
|
1303
|
-
};
|
|
1304
|
-
} | null;
|
|
1305
|
-
configuration?: {
|
|
1306
|
-
[key: string]: unknown;
|
|
1307
|
-
} | null;
|
|
1308
|
-
};
|
|
571
|
+
[key: string]: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ModuleExtensionDto;
|
|
1309
572
|
} | null;
|
|
1310
573
|
enums?: {
|
|
1311
|
-
[key: string]:
|
|
1312
|
-
fields?: Array<{
|
|
1313
|
-
name?: (string) | null;
|
|
1314
|
-
value?: unknown;
|
|
1315
|
-
}> | null;
|
|
1316
|
-
localizationResource?: (string) | null;
|
|
1317
|
-
};
|
|
574
|
+
[key: string]: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionEnumDto;
|
|
1318
575
|
} | null;
|
|
1319
576
|
};
|
|
1320
577
|
|
|
1321
578
|
export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_TimeZone = {
|
|
1322
|
-
iana?:
|
|
1323
|
-
|
|
1324
|
-
};
|
|
1325
|
-
windows?: {
|
|
1326
|
-
timeZoneId?: (string) | null;
|
|
1327
|
-
};
|
|
579
|
+
iana?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_IanaTimeZone;
|
|
580
|
+
windows?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_WindowsTimeZone;
|
|
1328
581
|
};
|
|
1329
582
|
|
|
1330
583
|
export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_TimingDto = {
|
|
1331
|
-
timeZone?:
|
|
1332
|
-
iana?: {
|
|
1333
|
-
timeZoneName?: (string) | null;
|
|
1334
|
-
};
|
|
1335
|
-
windows?: {
|
|
1336
|
-
timeZoneId?: (string) | null;
|
|
1337
|
-
};
|
|
1338
|
-
};
|
|
584
|
+
timeZone?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_TimeZone;
|
|
1339
585
|
};
|
|
1340
586
|
|
|
1341
587
|
export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_WindowsTimeZone = {
|
|
@@ -1358,125 +604,19 @@ export type Volo_Abp_Http_Modeling_ActionApiDescriptionModel = {
|
|
|
1358
604
|
httpMethod?: (string) | null;
|
|
1359
605
|
url?: (string) | null;
|
|
1360
606
|
supportedVersions?: Array<(string)> | null;
|
|
1361
|
-
parametersOnMethod?: Array<
|
|
1362
|
-
|
|
1363
|
-
|
|
1364
|
-
type?: (string) | null;
|
|
1365
|
-
typeSimple?: (string) | null;
|
|
1366
|
-
isOptional?: boolean;
|
|
1367
|
-
defaultValue?: unknown;
|
|
1368
|
-
}> | null;
|
|
1369
|
-
parameters?: Array<{
|
|
1370
|
-
nameOnMethod?: (string) | null;
|
|
1371
|
-
name?: (string) | null;
|
|
1372
|
-
jsonName?: (string) | null;
|
|
1373
|
-
type?: (string) | null;
|
|
1374
|
-
typeSimple?: (string) | null;
|
|
1375
|
-
isOptional?: boolean;
|
|
1376
|
-
defaultValue?: unknown;
|
|
1377
|
-
constraintTypes?: Array<(string)> | null;
|
|
1378
|
-
bindingSourceId?: (string) | null;
|
|
1379
|
-
descriptorName?: (string) | null;
|
|
1380
|
-
}> | null;
|
|
1381
|
-
returnValue?: {
|
|
1382
|
-
type?: (string) | null;
|
|
1383
|
-
typeSimple?: (string) | null;
|
|
1384
|
-
};
|
|
607
|
+
parametersOnMethod?: Array<Volo_Abp_Http_Modeling_MethodParameterApiDescriptionModel> | null;
|
|
608
|
+
parameters?: Array<Volo_Abp_Http_Modeling_ParameterApiDescriptionModel> | null;
|
|
609
|
+
returnValue?: Volo_Abp_Http_Modeling_ReturnValueApiDescriptionModel;
|
|
1385
610
|
allowAnonymous?: (boolean) | null;
|
|
1386
611
|
implementFrom?: (string) | null;
|
|
1387
612
|
};
|
|
1388
613
|
|
|
1389
614
|
export type Volo_Abp_Http_Modeling_ApplicationApiDescriptionModel = {
|
|
1390
615
|
modules?: {
|
|
1391
|
-
[key: string]:
|
|
1392
|
-
rootPath?: (string) | null;
|
|
1393
|
-
remoteServiceName?: (string) | null;
|
|
1394
|
-
controllers?: {
|
|
1395
|
-
[key: string]: {
|
|
1396
|
-
controllerName?: (string) | null;
|
|
1397
|
-
controllerGroupName?: (string) | null;
|
|
1398
|
-
isRemoteService?: boolean;
|
|
1399
|
-
isIntegrationService?: boolean;
|
|
1400
|
-
apiVersion?: (string) | null;
|
|
1401
|
-
type?: (string) | null;
|
|
1402
|
-
interfaces?: Array<{
|
|
1403
|
-
type?: (string) | null;
|
|
1404
|
-
name?: (string) | null;
|
|
1405
|
-
methods?: Array<{
|
|
1406
|
-
name?: (string) | null;
|
|
1407
|
-
parametersOnMethod?: Array<{
|
|
1408
|
-
name?: (string) | null;
|
|
1409
|
-
typeAsString?: (string) | null;
|
|
1410
|
-
type?: (string) | null;
|
|
1411
|
-
typeSimple?: (string) | null;
|
|
1412
|
-
isOptional?: boolean;
|
|
1413
|
-
defaultValue?: unknown;
|
|
1414
|
-
}> | null;
|
|
1415
|
-
returnValue?: {
|
|
1416
|
-
type?: (string) | null;
|
|
1417
|
-
typeSimple?: (string) | null;
|
|
1418
|
-
};
|
|
1419
|
-
}> | null;
|
|
1420
|
-
}> | null;
|
|
1421
|
-
actions?: {
|
|
1422
|
-
[key: string]: {
|
|
1423
|
-
uniqueName?: (string) | null;
|
|
1424
|
-
name?: (string) | null;
|
|
1425
|
-
httpMethod?: (string) | null;
|
|
1426
|
-
url?: (string) | null;
|
|
1427
|
-
supportedVersions?: Array<(string)> | null;
|
|
1428
|
-
parametersOnMethod?: Array<{
|
|
1429
|
-
name?: (string) | null;
|
|
1430
|
-
typeAsString?: (string) | null;
|
|
1431
|
-
type?: (string) | null;
|
|
1432
|
-
typeSimple?: (string) | null;
|
|
1433
|
-
isOptional?: boolean;
|
|
1434
|
-
defaultValue?: unknown;
|
|
1435
|
-
}> | null;
|
|
1436
|
-
parameters?: Array<{
|
|
1437
|
-
nameOnMethod?: (string) | null;
|
|
1438
|
-
name?: (string) | null;
|
|
1439
|
-
jsonName?: (string) | null;
|
|
1440
|
-
type?: (string) | null;
|
|
1441
|
-
typeSimple?: (string) | null;
|
|
1442
|
-
isOptional?: boolean;
|
|
1443
|
-
defaultValue?: unknown;
|
|
1444
|
-
constraintTypes?: Array<(string)> | null;
|
|
1445
|
-
bindingSourceId?: (string) | null;
|
|
1446
|
-
descriptorName?: (string) | null;
|
|
1447
|
-
}> | null;
|
|
1448
|
-
returnValue?: {
|
|
1449
|
-
type?: (string) | null;
|
|
1450
|
-
typeSimple?: (string) | null;
|
|
1451
|
-
};
|
|
1452
|
-
allowAnonymous?: (boolean) | null;
|
|
1453
|
-
implementFrom?: (string) | null;
|
|
1454
|
-
};
|
|
1455
|
-
} | null;
|
|
1456
|
-
};
|
|
1457
|
-
} | null;
|
|
1458
|
-
};
|
|
616
|
+
[key: string]: Volo_Abp_Http_Modeling_ModuleApiDescriptionModel;
|
|
1459
617
|
} | null;
|
|
1460
618
|
types?: {
|
|
1461
|
-
[key: string]:
|
|
1462
|
-
baseType?: (string) | null;
|
|
1463
|
-
isEnum?: boolean;
|
|
1464
|
-
enumNames?: Array<(string)> | null;
|
|
1465
|
-
enumValues?: Array<unknown> | null;
|
|
1466
|
-
genericArguments?: Array<(string)> | null;
|
|
1467
|
-
properties?: Array<{
|
|
1468
|
-
name?: (string) | null;
|
|
1469
|
-
jsonName?: (string) | null;
|
|
1470
|
-
type?: (string) | null;
|
|
1471
|
-
typeSimple?: (string) | null;
|
|
1472
|
-
isRequired?: boolean;
|
|
1473
|
-
minLength?: (number) | null;
|
|
1474
|
-
maxLength?: (number) | null;
|
|
1475
|
-
minimum?: (string) | null;
|
|
1476
|
-
maximum?: (string) | null;
|
|
1477
|
-
regex?: (string) | null;
|
|
1478
|
-
}> | null;
|
|
1479
|
-
};
|
|
619
|
+
[key: string]: Volo_Abp_Http_Modeling_TypeApiDescriptionModel;
|
|
1480
620
|
} | null;
|
|
1481
621
|
};
|
|
1482
622
|
|
|
@@ -1487,96 +627,22 @@ export type Volo_Abp_Http_Modeling_ControllerApiDescriptionModel = {
|
|
|
1487
627
|
isIntegrationService?: boolean;
|
|
1488
628
|
apiVersion?: (string) | null;
|
|
1489
629
|
type?: (string) | null;
|
|
1490
|
-
interfaces?: Array<
|
|
1491
|
-
type?: (string) | null;
|
|
1492
|
-
name?: (string) | null;
|
|
1493
|
-
methods?: Array<{
|
|
1494
|
-
name?: (string) | null;
|
|
1495
|
-
parametersOnMethod?: Array<{
|
|
1496
|
-
name?: (string) | null;
|
|
1497
|
-
typeAsString?: (string) | null;
|
|
1498
|
-
type?: (string) | null;
|
|
1499
|
-
typeSimple?: (string) | null;
|
|
1500
|
-
isOptional?: boolean;
|
|
1501
|
-
defaultValue?: unknown;
|
|
1502
|
-
}> | null;
|
|
1503
|
-
returnValue?: {
|
|
1504
|
-
type?: (string) | null;
|
|
1505
|
-
typeSimple?: (string) | null;
|
|
1506
|
-
};
|
|
1507
|
-
}> | null;
|
|
1508
|
-
}> | null;
|
|
630
|
+
interfaces?: Array<Volo_Abp_Http_Modeling_ControllerInterfaceApiDescriptionModel> | null;
|
|
1509
631
|
actions?: {
|
|
1510
|
-
[key: string]:
|
|
1511
|
-
uniqueName?: (string) | null;
|
|
1512
|
-
name?: (string) | null;
|
|
1513
|
-
httpMethod?: (string) | null;
|
|
1514
|
-
url?: (string) | null;
|
|
1515
|
-
supportedVersions?: Array<(string)> | null;
|
|
1516
|
-
parametersOnMethod?: Array<{
|
|
1517
|
-
name?: (string) | null;
|
|
1518
|
-
typeAsString?: (string) | null;
|
|
1519
|
-
type?: (string) | null;
|
|
1520
|
-
typeSimple?: (string) | null;
|
|
1521
|
-
isOptional?: boolean;
|
|
1522
|
-
defaultValue?: unknown;
|
|
1523
|
-
}> | null;
|
|
1524
|
-
parameters?: Array<{
|
|
1525
|
-
nameOnMethod?: (string) | null;
|
|
1526
|
-
name?: (string) | null;
|
|
1527
|
-
jsonName?: (string) | null;
|
|
1528
|
-
type?: (string) | null;
|
|
1529
|
-
typeSimple?: (string) | null;
|
|
1530
|
-
isOptional?: boolean;
|
|
1531
|
-
defaultValue?: unknown;
|
|
1532
|
-
constraintTypes?: Array<(string)> | null;
|
|
1533
|
-
bindingSourceId?: (string) | null;
|
|
1534
|
-
descriptorName?: (string) | null;
|
|
1535
|
-
}> | null;
|
|
1536
|
-
returnValue?: {
|
|
1537
|
-
type?: (string) | null;
|
|
1538
|
-
typeSimple?: (string) | null;
|
|
1539
|
-
};
|
|
1540
|
-
allowAnonymous?: (boolean) | null;
|
|
1541
|
-
implementFrom?: (string) | null;
|
|
1542
|
-
};
|
|
632
|
+
[key: string]: Volo_Abp_Http_Modeling_ActionApiDescriptionModel;
|
|
1543
633
|
} | null;
|
|
1544
634
|
};
|
|
1545
635
|
|
|
1546
636
|
export type Volo_Abp_Http_Modeling_ControllerInterfaceApiDescriptionModel = {
|
|
1547
637
|
type?: (string) | null;
|
|
1548
638
|
name?: (string) | null;
|
|
1549
|
-
methods?: Array<
|
|
1550
|
-
name?: (string) | null;
|
|
1551
|
-
parametersOnMethod?: Array<{
|
|
1552
|
-
name?: (string) | null;
|
|
1553
|
-
typeAsString?: (string) | null;
|
|
1554
|
-
type?: (string) | null;
|
|
1555
|
-
typeSimple?: (string) | null;
|
|
1556
|
-
isOptional?: boolean;
|
|
1557
|
-
defaultValue?: unknown;
|
|
1558
|
-
}> | null;
|
|
1559
|
-
returnValue?: {
|
|
1560
|
-
type?: (string) | null;
|
|
1561
|
-
typeSimple?: (string) | null;
|
|
1562
|
-
};
|
|
1563
|
-
}> | null;
|
|
639
|
+
methods?: Array<Volo_Abp_Http_Modeling_InterfaceMethodApiDescriptionModel> | null;
|
|
1564
640
|
};
|
|
1565
641
|
|
|
1566
642
|
export type Volo_Abp_Http_Modeling_InterfaceMethodApiDescriptionModel = {
|
|
1567
643
|
name?: (string) | null;
|
|
1568
|
-
parametersOnMethod?: Array<
|
|
1569
|
-
|
|
1570
|
-
typeAsString?: (string) | null;
|
|
1571
|
-
type?: (string) | null;
|
|
1572
|
-
typeSimple?: (string) | null;
|
|
1573
|
-
isOptional?: boolean;
|
|
1574
|
-
defaultValue?: unknown;
|
|
1575
|
-
}> | null;
|
|
1576
|
-
returnValue?: {
|
|
1577
|
-
type?: (string) | null;
|
|
1578
|
-
typeSimple?: (string) | null;
|
|
1579
|
-
};
|
|
644
|
+
parametersOnMethod?: Array<Volo_Abp_Http_Modeling_MethodParameterApiDescriptionModel> | null;
|
|
645
|
+
returnValue?: Volo_Abp_Http_Modeling_ReturnValueApiDescriptionModel;
|
|
1580
646
|
};
|
|
1581
647
|
|
|
1582
648
|
export type Volo_Abp_Http_Modeling_MethodParameterApiDescriptionModel = {
|
|
@@ -1592,68 +658,7 @@ export type Volo_Abp_Http_Modeling_ModuleApiDescriptionModel = {
|
|
|
1592
658
|
rootPath?: (string) | null;
|
|
1593
659
|
remoteServiceName?: (string) | null;
|
|
1594
660
|
controllers?: {
|
|
1595
|
-
[key: string]:
|
|
1596
|
-
controllerName?: (string) | null;
|
|
1597
|
-
controllerGroupName?: (string) | null;
|
|
1598
|
-
isRemoteService?: boolean;
|
|
1599
|
-
isIntegrationService?: boolean;
|
|
1600
|
-
apiVersion?: (string) | null;
|
|
1601
|
-
type?: (string) | null;
|
|
1602
|
-
interfaces?: Array<{
|
|
1603
|
-
type?: (string) | null;
|
|
1604
|
-
name?: (string) | null;
|
|
1605
|
-
methods?: Array<{
|
|
1606
|
-
name?: (string) | null;
|
|
1607
|
-
parametersOnMethod?: Array<{
|
|
1608
|
-
name?: (string) | null;
|
|
1609
|
-
typeAsString?: (string) | null;
|
|
1610
|
-
type?: (string) | null;
|
|
1611
|
-
typeSimple?: (string) | null;
|
|
1612
|
-
isOptional?: boolean;
|
|
1613
|
-
defaultValue?: unknown;
|
|
1614
|
-
}> | null;
|
|
1615
|
-
returnValue?: {
|
|
1616
|
-
type?: (string) | null;
|
|
1617
|
-
typeSimple?: (string) | null;
|
|
1618
|
-
};
|
|
1619
|
-
}> | null;
|
|
1620
|
-
}> | null;
|
|
1621
|
-
actions?: {
|
|
1622
|
-
[key: string]: {
|
|
1623
|
-
uniqueName?: (string) | null;
|
|
1624
|
-
name?: (string) | null;
|
|
1625
|
-
httpMethod?: (string) | null;
|
|
1626
|
-
url?: (string) | null;
|
|
1627
|
-
supportedVersions?: Array<(string)> | null;
|
|
1628
|
-
parametersOnMethod?: Array<{
|
|
1629
|
-
name?: (string) | null;
|
|
1630
|
-
typeAsString?: (string) | null;
|
|
1631
|
-
type?: (string) | null;
|
|
1632
|
-
typeSimple?: (string) | null;
|
|
1633
|
-
isOptional?: boolean;
|
|
1634
|
-
defaultValue?: unknown;
|
|
1635
|
-
}> | null;
|
|
1636
|
-
parameters?: Array<{
|
|
1637
|
-
nameOnMethod?: (string) | null;
|
|
1638
|
-
name?: (string) | null;
|
|
1639
|
-
jsonName?: (string) | null;
|
|
1640
|
-
type?: (string) | null;
|
|
1641
|
-
typeSimple?: (string) | null;
|
|
1642
|
-
isOptional?: boolean;
|
|
1643
|
-
defaultValue?: unknown;
|
|
1644
|
-
constraintTypes?: Array<(string)> | null;
|
|
1645
|
-
bindingSourceId?: (string) | null;
|
|
1646
|
-
descriptorName?: (string) | null;
|
|
1647
|
-
}> | null;
|
|
1648
|
-
returnValue?: {
|
|
1649
|
-
type?: (string) | null;
|
|
1650
|
-
typeSimple?: (string) | null;
|
|
1651
|
-
};
|
|
1652
|
-
allowAnonymous?: (boolean) | null;
|
|
1653
|
-
implementFrom?: (string) | null;
|
|
1654
|
-
};
|
|
1655
|
-
} | null;
|
|
1656
|
-
};
|
|
661
|
+
[key: string]: Volo_Abp_Http_Modeling_ControllerApiDescriptionModel;
|
|
1657
662
|
} | null;
|
|
1658
663
|
};
|
|
1659
664
|
|
|
@@ -1694,18 +699,7 @@ export type Volo_Abp_Http_Modeling_TypeApiDescriptionModel = {
|
|
|
1694
699
|
enumNames?: Array<(string)> | null;
|
|
1695
700
|
enumValues?: Array<unknown> | null;
|
|
1696
701
|
genericArguments?: Array<(string)> | null;
|
|
1697
|
-
properties?: Array<
|
|
1698
|
-
name?: (string) | null;
|
|
1699
|
-
jsonName?: (string) | null;
|
|
1700
|
-
type?: (string) | null;
|
|
1701
|
-
typeSimple?: (string) | null;
|
|
1702
|
-
isRequired?: boolean;
|
|
1703
|
-
minLength?: (number) | null;
|
|
1704
|
-
maxLength?: (number) | null;
|
|
1705
|
-
minimum?: (string) | null;
|
|
1706
|
-
maximum?: (string) | null;
|
|
1707
|
-
regex?: (string) | null;
|
|
1708
|
-
}> | null;
|
|
702
|
+
properties?: Array<Volo_Abp_Http_Modeling_PropertyApiDescriptionModel> | null;
|
|
1709
703
|
};
|
|
1710
704
|
|
|
1711
705
|
export type Volo_Abp_Http_RemoteServiceErrorInfo = {
|
|
@@ -1715,25 +709,11 @@ export type Volo_Abp_Http_RemoteServiceErrorInfo = {
|
|
|
1715
709
|
data?: {
|
|
1716
710
|
[key: string]: unknown;
|
|
1717
711
|
} | null;
|
|
1718
|
-
validationErrors?: Array<
|
|
1719
|
-
message?: (string) | null;
|
|
1720
|
-
members?: Array<(string)> | null;
|
|
1721
|
-
}> | null;
|
|
712
|
+
validationErrors?: Array<Volo_Abp_Http_RemoteServiceValidationErrorInfo> | null;
|
|
1722
713
|
};
|
|
1723
714
|
|
|
1724
715
|
export type Volo_Abp_Http_RemoteServiceErrorResponse = {
|
|
1725
|
-
error?:
|
|
1726
|
-
code?: (string) | null;
|
|
1727
|
-
message?: (string) | null;
|
|
1728
|
-
details?: (string) | null;
|
|
1729
|
-
data?: {
|
|
1730
|
-
[key: string]: unknown;
|
|
1731
|
-
} | null;
|
|
1732
|
-
validationErrors?: Array<{
|
|
1733
|
-
message?: (string) | null;
|
|
1734
|
-
members?: Array<(string)> | null;
|
|
1735
|
-
}> | null;
|
|
1736
|
-
};
|
|
716
|
+
error?: Volo_Abp_Http_RemoteServiceErrorInfo;
|
|
1737
717
|
};
|
|
1738
718
|
|
|
1739
719
|
export type Volo_Abp_Http_RemoteServiceValidationErrorInfo = {
|
|
@@ -1757,389 +737,26 @@ export type GetApiAbpApiDefinitionData = {
|
|
|
1757
737
|
includeTypes?: boolean;
|
|
1758
738
|
};
|
|
1759
739
|
|
|
1760
|
-
export type GetApiAbpApiDefinitionResponse = (
|
|
1761
|
-
modules?: {
|
|
1762
|
-
[key: string]: {
|
|
1763
|
-
rootPath?: (string) | null;
|
|
1764
|
-
remoteServiceName?: (string) | null;
|
|
1765
|
-
controllers?: {
|
|
1766
|
-
[key: string]: {
|
|
1767
|
-
controllerName?: (string) | null;
|
|
1768
|
-
controllerGroupName?: (string) | null;
|
|
1769
|
-
isRemoteService?: boolean;
|
|
1770
|
-
isIntegrationService?: boolean;
|
|
1771
|
-
apiVersion?: (string) | null;
|
|
1772
|
-
type?: (string) | null;
|
|
1773
|
-
interfaces?: Array<{
|
|
1774
|
-
type?: (string) | null;
|
|
1775
|
-
name?: (string) | null;
|
|
1776
|
-
methods?: Array<{
|
|
1777
|
-
name?: (string) | null;
|
|
1778
|
-
parametersOnMethod?: Array<{
|
|
1779
|
-
name?: (string) | null;
|
|
1780
|
-
typeAsString?: (string) | null;
|
|
1781
|
-
type?: (string) | null;
|
|
1782
|
-
typeSimple?: (string) | null;
|
|
1783
|
-
isOptional?: boolean;
|
|
1784
|
-
defaultValue?: unknown;
|
|
1785
|
-
}> | null;
|
|
1786
|
-
returnValue?: {
|
|
1787
|
-
type?: (string) | null;
|
|
1788
|
-
typeSimple?: (string) | null;
|
|
1789
|
-
};
|
|
1790
|
-
}> | null;
|
|
1791
|
-
}> | null;
|
|
1792
|
-
actions?: {
|
|
1793
|
-
[key: string]: {
|
|
1794
|
-
uniqueName?: (string) | null;
|
|
1795
|
-
name?: (string) | null;
|
|
1796
|
-
httpMethod?: (string) | null;
|
|
1797
|
-
url?: (string) | null;
|
|
1798
|
-
supportedVersions?: Array<(string)> | null;
|
|
1799
|
-
parametersOnMethod?: Array<{
|
|
1800
|
-
name?: (string) | null;
|
|
1801
|
-
typeAsString?: (string) | null;
|
|
1802
|
-
type?: (string) | null;
|
|
1803
|
-
typeSimple?: (string) | null;
|
|
1804
|
-
isOptional?: boolean;
|
|
1805
|
-
defaultValue?: unknown;
|
|
1806
|
-
}> | null;
|
|
1807
|
-
parameters?: Array<{
|
|
1808
|
-
nameOnMethod?: (string) | null;
|
|
1809
|
-
name?: (string) | null;
|
|
1810
|
-
jsonName?: (string) | null;
|
|
1811
|
-
type?: (string) | null;
|
|
1812
|
-
typeSimple?: (string) | null;
|
|
1813
|
-
isOptional?: boolean;
|
|
1814
|
-
defaultValue?: unknown;
|
|
1815
|
-
constraintTypes?: Array<(string)> | null;
|
|
1816
|
-
bindingSourceId?: (string) | null;
|
|
1817
|
-
descriptorName?: (string) | null;
|
|
1818
|
-
}> | null;
|
|
1819
|
-
returnValue?: {
|
|
1820
|
-
type?: (string) | null;
|
|
1821
|
-
typeSimple?: (string) | null;
|
|
1822
|
-
};
|
|
1823
|
-
allowAnonymous?: (boolean) | null;
|
|
1824
|
-
implementFrom?: (string) | null;
|
|
1825
|
-
};
|
|
1826
|
-
} | null;
|
|
1827
|
-
};
|
|
1828
|
-
} | null;
|
|
1829
|
-
};
|
|
1830
|
-
} | null;
|
|
1831
|
-
types?: {
|
|
1832
|
-
[key: string]: {
|
|
1833
|
-
baseType?: (string) | null;
|
|
1834
|
-
isEnum?: boolean;
|
|
1835
|
-
enumNames?: Array<(string)> | null;
|
|
1836
|
-
enumValues?: Array<unknown> | null;
|
|
1837
|
-
genericArguments?: Array<(string)> | null;
|
|
1838
|
-
properties?: Array<{
|
|
1839
|
-
name?: (string) | null;
|
|
1840
|
-
jsonName?: (string) | null;
|
|
1841
|
-
type?: (string) | null;
|
|
1842
|
-
typeSimple?: (string) | null;
|
|
1843
|
-
isRequired?: boolean;
|
|
1844
|
-
minLength?: (number) | null;
|
|
1845
|
-
maxLength?: (number) | null;
|
|
1846
|
-
minimum?: (string) | null;
|
|
1847
|
-
maximum?: (string) | null;
|
|
1848
|
-
regex?: (string) | null;
|
|
1849
|
-
}> | null;
|
|
1850
|
-
};
|
|
1851
|
-
} | null;
|
|
1852
|
-
});
|
|
740
|
+
export type GetApiAbpApiDefinitionResponse = (Volo_Abp_Http_Modeling_ApplicationApiDescriptionModel);
|
|
1853
741
|
|
|
1854
742
|
export type GetApiAbpApplicationConfigurationData = {
|
|
1855
743
|
includeLocalizationResources?: boolean;
|
|
1856
744
|
};
|
|
1857
745
|
|
|
1858
|
-
export type GetApiAbpApplicationConfigurationResponse = (
|
|
1859
|
-
localization?: {
|
|
1860
|
-
values?: {
|
|
1861
|
-
[key: string]: {
|
|
1862
|
-
[key: string]: (string);
|
|
1863
|
-
};
|
|
1864
|
-
} | null;
|
|
1865
|
-
resources?: {
|
|
1866
|
-
[key: string]: {
|
|
1867
|
-
texts?: {
|
|
1868
|
-
[key: string]: (string);
|
|
1869
|
-
} | null;
|
|
1870
|
-
baseResources?: Array<(string)> | null;
|
|
1871
|
-
};
|
|
1872
|
-
} | null;
|
|
1873
|
-
languages?: Array<{
|
|
1874
|
-
cultureName?: (string) | null;
|
|
1875
|
-
uiCultureName?: (string) | null;
|
|
1876
|
-
displayName?: (string) | null;
|
|
1877
|
-
readonly twoLetterISOLanguageName?: (string) | null;
|
|
1878
|
-
}> | null;
|
|
1879
|
-
currentCulture?: {
|
|
1880
|
-
displayName?: (string) | null;
|
|
1881
|
-
englishName?: (string) | null;
|
|
1882
|
-
threeLetterIsoLanguageName?: (string) | null;
|
|
1883
|
-
twoLetterIsoLanguageName?: (string) | null;
|
|
1884
|
-
isRightToLeft?: boolean;
|
|
1885
|
-
cultureName?: (string) | null;
|
|
1886
|
-
name?: (string) | null;
|
|
1887
|
-
nativeName?: (string) | null;
|
|
1888
|
-
dateTimeFormat?: {
|
|
1889
|
-
calendarAlgorithmType?: (string) | null;
|
|
1890
|
-
dateTimeFormatLong?: (string) | null;
|
|
1891
|
-
shortDatePattern?: (string) | null;
|
|
1892
|
-
fullDateTimePattern?: (string) | null;
|
|
1893
|
-
dateSeparator?: (string) | null;
|
|
1894
|
-
shortTimePattern?: (string) | null;
|
|
1895
|
-
longTimePattern?: (string) | null;
|
|
1896
|
-
};
|
|
1897
|
-
};
|
|
1898
|
-
defaultResourceName?: (string) | null;
|
|
1899
|
-
languagesMap?: {
|
|
1900
|
-
[key: string]: Array<{
|
|
1901
|
-
name?: (string) | null;
|
|
1902
|
-
value?: (string) | null;
|
|
1903
|
-
}>;
|
|
1904
|
-
} | null;
|
|
1905
|
-
languageFilesMap?: {
|
|
1906
|
-
[key: string]: Array<{
|
|
1907
|
-
name?: (string) | null;
|
|
1908
|
-
value?: (string) | null;
|
|
1909
|
-
}>;
|
|
1910
|
-
} | null;
|
|
1911
|
-
};
|
|
1912
|
-
auth?: {
|
|
1913
|
-
grantedPolicies?: {
|
|
1914
|
-
[key: string]: (boolean);
|
|
1915
|
-
} | null;
|
|
1916
|
-
};
|
|
1917
|
-
setting?: {
|
|
1918
|
-
values?: {
|
|
1919
|
-
[key: string]: ((string) | null);
|
|
1920
|
-
} | null;
|
|
1921
|
-
};
|
|
1922
|
-
currentUser?: {
|
|
1923
|
-
isAuthenticated?: boolean;
|
|
1924
|
-
id?: (string) | null;
|
|
1925
|
-
tenantId?: (string) | null;
|
|
1926
|
-
impersonatorUserId?: (string) | null;
|
|
1927
|
-
impersonatorTenantId?: (string) | null;
|
|
1928
|
-
impersonatorUserName?: (string) | null;
|
|
1929
|
-
impersonatorTenantName?: (string) | null;
|
|
1930
|
-
userName?: (string) | null;
|
|
1931
|
-
name?: (string) | null;
|
|
1932
|
-
surName?: (string) | null;
|
|
1933
|
-
email?: (string) | null;
|
|
1934
|
-
emailVerified?: boolean;
|
|
1935
|
-
phoneNumber?: (string) | null;
|
|
1936
|
-
phoneNumberVerified?: boolean;
|
|
1937
|
-
roles?: Array<(string)> | null;
|
|
1938
|
-
sessionId?: (string) | null;
|
|
1939
|
-
};
|
|
1940
|
-
features?: {
|
|
1941
|
-
values?: {
|
|
1942
|
-
[key: string]: ((string) | null);
|
|
1943
|
-
} | null;
|
|
1944
|
-
};
|
|
1945
|
-
globalFeatures?: {
|
|
1946
|
-
enabledFeatures?: Array<(string)> | null;
|
|
1947
|
-
};
|
|
1948
|
-
multiTenancy?: {
|
|
1949
|
-
isEnabled?: boolean;
|
|
1950
|
-
};
|
|
1951
|
-
currentTenant?: {
|
|
1952
|
-
id?: (string) | null;
|
|
1953
|
-
name?: (string) | null;
|
|
1954
|
-
isAvailable?: boolean;
|
|
1955
|
-
};
|
|
1956
|
-
timing?: {
|
|
1957
|
-
timeZone?: {
|
|
1958
|
-
iana?: {
|
|
1959
|
-
timeZoneName?: (string) | null;
|
|
1960
|
-
};
|
|
1961
|
-
windows?: {
|
|
1962
|
-
timeZoneId?: (string) | null;
|
|
1963
|
-
};
|
|
1964
|
-
};
|
|
1965
|
-
};
|
|
1966
|
-
clock?: {
|
|
1967
|
-
kind?: (string) | null;
|
|
1968
|
-
};
|
|
1969
|
-
objectExtensions?: {
|
|
1970
|
-
modules?: {
|
|
1971
|
-
[key: string]: {
|
|
1972
|
-
entities?: {
|
|
1973
|
-
[key: string]: {
|
|
1974
|
-
properties?: {
|
|
1975
|
-
[key: string]: {
|
|
1976
|
-
type?: (string) | null;
|
|
1977
|
-
typeSimple?: (string) | null;
|
|
1978
|
-
displayName?: {
|
|
1979
|
-
name?: (string) | null;
|
|
1980
|
-
resource?: (string) | null;
|
|
1981
|
-
};
|
|
1982
|
-
api?: {
|
|
1983
|
-
onGet?: {
|
|
1984
|
-
isAvailable?: boolean;
|
|
1985
|
-
};
|
|
1986
|
-
onCreate?: {
|
|
1987
|
-
isAvailable?: boolean;
|
|
1988
|
-
};
|
|
1989
|
-
onUpdate?: {
|
|
1990
|
-
isAvailable?: boolean;
|
|
1991
|
-
};
|
|
1992
|
-
};
|
|
1993
|
-
ui?: {
|
|
1994
|
-
onTable?: {
|
|
1995
|
-
isVisible?: boolean;
|
|
1996
|
-
};
|
|
1997
|
-
onCreateForm?: {
|
|
1998
|
-
isVisible?: boolean;
|
|
1999
|
-
};
|
|
2000
|
-
onEditForm?: {
|
|
2001
|
-
isVisible?: boolean;
|
|
2002
|
-
};
|
|
2003
|
-
lookup?: {
|
|
2004
|
-
url?: (string) | null;
|
|
2005
|
-
resultListPropertyName?: (string) | null;
|
|
2006
|
-
displayPropertyName?: (string) | null;
|
|
2007
|
-
valuePropertyName?: (string) | null;
|
|
2008
|
-
filterParamName?: (string) | null;
|
|
2009
|
-
};
|
|
2010
|
-
};
|
|
2011
|
-
attributes?: Array<{
|
|
2012
|
-
typeSimple?: (string) | null;
|
|
2013
|
-
config?: {
|
|
2014
|
-
[key: string]: unknown;
|
|
2015
|
-
} | null;
|
|
2016
|
-
}> | null;
|
|
2017
|
-
configuration?: {
|
|
2018
|
-
[key: string]: unknown;
|
|
2019
|
-
} | null;
|
|
2020
|
-
defaultValue?: unknown;
|
|
2021
|
-
};
|
|
2022
|
-
} | null;
|
|
2023
|
-
configuration?: {
|
|
2024
|
-
[key: string]: unknown;
|
|
2025
|
-
} | null;
|
|
2026
|
-
};
|
|
2027
|
-
} | null;
|
|
2028
|
-
configuration?: {
|
|
2029
|
-
[key: string]: unknown;
|
|
2030
|
-
} | null;
|
|
2031
|
-
};
|
|
2032
|
-
} | null;
|
|
2033
|
-
enums?: {
|
|
2034
|
-
[key: string]: {
|
|
2035
|
-
fields?: Array<{
|
|
2036
|
-
name?: (string) | null;
|
|
2037
|
-
value?: unknown;
|
|
2038
|
-
}> | null;
|
|
2039
|
-
localizationResource?: (string) | null;
|
|
2040
|
-
};
|
|
2041
|
-
} | null;
|
|
2042
|
-
};
|
|
2043
|
-
extraProperties?: {
|
|
2044
|
-
[key: string]: unknown;
|
|
2045
|
-
} | null;
|
|
2046
|
-
});
|
|
746
|
+
export type GetApiAbpApplicationConfigurationResponse = (Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationConfigurationDto);
|
|
2047
747
|
|
|
2048
748
|
export type GetApiAbpApplicationLocalizationData = {
|
|
2049
749
|
cultureName: string;
|
|
2050
750
|
onlyDynamics?: boolean;
|
|
2051
751
|
};
|
|
2052
752
|
|
|
2053
|
-
export type GetApiAbpApplicationLocalizationResponse = (
|
|
2054
|
-
resources?: {
|
|
2055
|
-
[key: string]: {
|
|
2056
|
-
texts?: {
|
|
2057
|
-
[key: string]: (string);
|
|
2058
|
-
} | null;
|
|
2059
|
-
baseResources?: Array<(string)> | null;
|
|
2060
|
-
};
|
|
2061
|
-
} | null;
|
|
2062
|
-
currentCulture?: {
|
|
2063
|
-
displayName?: (string) | null;
|
|
2064
|
-
englishName?: (string) | null;
|
|
2065
|
-
threeLetterIsoLanguageName?: (string) | null;
|
|
2066
|
-
twoLetterIsoLanguageName?: (string) | null;
|
|
2067
|
-
isRightToLeft?: boolean;
|
|
2068
|
-
cultureName?: (string) | null;
|
|
2069
|
-
name?: (string) | null;
|
|
2070
|
-
nativeName?: (string) | null;
|
|
2071
|
-
dateTimeFormat?: {
|
|
2072
|
-
calendarAlgorithmType?: (string) | null;
|
|
2073
|
-
dateTimeFormatLong?: (string) | null;
|
|
2074
|
-
shortDatePattern?: (string) | null;
|
|
2075
|
-
fullDateTimePattern?: (string) | null;
|
|
2076
|
-
dateSeparator?: (string) | null;
|
|
2077
|
-
shortTimePattern?: (string) | null;
|
|
2078
|
-
longTimePattern?: (string) | null;
|
|
2079
|
-
};
|
|
2080
|
-
};
|
|
2081
|
-
});
|
|
753
|
+
export type GetApiAbpApplicationLocalizationResponse = (Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationDto);
|
|
2082
754
|
|
|
2083
755
|
export type PostApiTagServiceTagData = {
|
|
2084
|
-
requestBody?:
|
|
2085
|
-
|
|
2086
|
-
|
|
2087
|
-
|
|
2088
|
-
branchId: string;
|
|
2089
|
-
};
|
|
2090
|
-
traveller: {
|
|
2091
|
-
id?: (string) | null;
|
|
2092
|
-
travelDocumentNumber: string;
|
|
2093
|
-
nationalityCountryCode2: string;
|
|
2094
|
-
firstName: string;
|
|
2095
|
-
lastName: string;
|
|
2096
|
-
residenceCountryCode2: string;
|
|
2097
|
-
expirationDate?: (string) | null;
|
|
2098
|
-
birthDate?: (string) | null;
|
|
2099
|
-
};
|
|
2100
|
-
invoices: Array<{
|
|
2101
|
-
id?: (string) | null;
|
|
2102
|
-
uuid: string;
|
|
2103
|
-
invoiceNumber?: (string) | null;
|
|
2104
|
-
issueDate: string;
|
|
2105
|
-
totalAmount: number;
|
|
2106
|
-
vatAmount: number;
|
|
2107
|
-
invoiceLines: Array<{
|
|
2108
|
-
taxRate: number;
|
|
2109
|
-
taxAmount: number;
|
|
2110
|
-
amount: number;
|
|
2111
|
-
taxBase: number;
|
|
2112
|
-
productGroupId: string;
|
|
2113
|
-
}>;
|
|
2114
|
-
}>;
|
|
2115
|
-
};
|
|
2116
|
-
};
|
|
2117
|
-
|
|
2118
|
-
export type PostApiTagServiceTagResponse = ({
|
|
2119
|
-
id?: string;
|
|
2120
|
-
tagNumber: string;
|
|
2121
|
-
status: 'None' | 'Open' | 'PreIssued' | 'Issued' | 'WaitingGoodsValidation' | 'WaitingStampValidation' | 'Declined' | 'ExportValidated' | 'PaymentBlocked' | 'PaymentInProgress' | 'PaymentProblem' | 'Paid' | 'Cancelled' | 'Expired' | 'Correction' | 'OptedOut';
|
|
2122
|
-
refundType?: 'Cash' | 'CreditCard' | 'BankTransfer' | 'Wallet' | 'CashViaPartner';
|
|
2123
|
-
issueDate: string;
|
|
2124
|
-
expireDate?: (string) | null;
|
|
2125
|
-
exportValidationId?: (string) | null;
|
|
2126
|
-
refundId?: (string) | null;
|
|
2127
|
-
vatStatementHeaderId?: (string) | null;
|
|
2128
|
-
merchantId?: (string) | null;
|
|
2129
|
-
travellerId?: (string) | null;
|
|
2130
|
-
travelDocumentNumber?: (string) | null;
|
|
2131
|
-
tripId?: (string) | null;
|
|
2132
|
-
refundTableId?: (string) | null;
|
|
2133
|
-
rebateTableId?: (string) | null;
|
|
2134
|
-
contractHeaderId?: (string) | null;
|
|
2135
|
-
totals?: Array<{
|
|
2136
|
-
totalType: 'None' | 'SalesAmount' | 'VatAmount' | 'GrossRefund' | 'RefundFee' | 'AgentRefundFee' | 'Refund';
|
|
2137
|
-
amount: number;
|
|
2138
|
-
description?: (string) | null;
|
|
2139
|
-
currency: string;
|
|
2140
|
-
rate: number;
|
|
2141
|
-
}> | null;
|
|
2142
|
-
});
|
|
756
|
+
requestBody?: UniRefund_TagService_Tags_CreateTagRequestDto;
|
|
757
|
+
};
|
|
758
|
+
|
|
759
|
+
export type PostApiTagServiceTagResponse = (UniRefund_TagService_Tags_TagDto);
|
|
2143
760
|
|
|
2144
761
|
export type GetApiTagServiceTagData = {
|
|
2145
762
|
exportEndDate?: string;
|
|
@@ -2151,88 +768,24 @@ export type GetApiTagServiceTagData = {
|
|
|
2151
768
|
merchantIds?: Array<(string)>;
|
|
2152
769
|
paidEndDate?: string;
|
|
2153
770
|
paidStartDate?: string;
|
|
2154
|
-
refundTypes?: Array<
|
|
771
|
+
refundTypes?: Array<UniRefund_TagService_Tags_Enums_RefundType>;
|
|
2155
772
|
skipCount?: number;
|
|
2156
773
|
sorting?: string;
|
|
2157
|
-
statuses?: Array<
|
|
774
|
+
statuses?: Array<UniRefund_TagService_Tags_TagStatusType>;
|
|
2158
775
|
tagNumber?: string;
|
|
2159
776
|
travellerDocumentNumber?: string;
|
|
2160
777
|
travellerFullName?: string;
|
|
2161
778
|
travellerIds?: Array<(string)>;
|
|
2162
779
|
};
|
|
2163
780
|
|
|
2164
|
-
export type GetApiTagServiceTagResponse = (
|
|
2165
|
-
items?: Array<{
|
|
2166
|
-
id?: string;
|
|
2167
|
-
tagNumber: string;
|
|
2168
|
-
issueDate: string;
|
|
2169
|
-
expireDate?: (string) | null;
|
|
2170
|
-
travellerFullName: string;
|
|
2171
|
-
travellerDocumentNumber: string;
|
|
2172
|
-
merchantTitle: string;
|
|
2173
|
-
status: 'None' | 'Open' | 'PreIssued' | 'Issued' | 'WaitingGoodsValidation' | 'WaitingStampValidation' | 'Declined' | 'ExportValidated' | 'PaymentBlocked' | 'PaymentInProgress' | 'PaymentProblem' | 'Paid' | 'Cancelled' | 'Expired' | 'Correction' | 'OptedOut';
|
|
2174
|
-
totals?: Array<{
|
|
2175
|
-
totalType: 'None' | 'SalesAmount' | 'VatAmount' | 'GrossRefund' | 'RefundFee' | 'AgentRefundFee' | 'Refund';
|
|
2176
|
-
amount: number;
|
|
2177
|
-
description?: (string) | null;
|
|
2178
|
-
currency: string;
|
|
2179
|
-
rate: number;
|
|
2180
|
-
}> | null;
|
|
2181
|
-
}> | null;
|
|
2182
|
-
totalCount?: number;
|
|
2183
|
-
});
|
|
781
|
+
export type GetApiTagServiceTagResponse = (TagListResponseDto_TagListItemDto);
|
|
2184
782
|
|
|
2185
783
|
export type PutApiTagServiceTagByIdData = {
|
|
2186
784
|
id: string;
|
|
2187
|
-
requestBody?:
|
|
2188
|
-
|
|
2189
|
-
|
|
2190
|
-
|
|
2191
|
-
expireDate?: (string) | null;
|
|
2192
|
-
exportValidationId?: (string) | null;
|
|
2193
|
-
refundId?: (string) | null;
|
|
2194
|
-
vatStatementHeaderId?: (string) | null;
|
|
2195
|
-
merchantId?: (string) | null;
|
|
2196
|
-
travellerId?: (string) | null;
|
|
2197
|
-
tripId?: (string) | null;
|
|
2198
|
-
refundTableId?: (string) | null;
|
|
2199
|
-
rebateTableId?: (string) | null;
|
|
2200
|
-
contractHeaderId?: (string) | null;
|
|
2201
|
-
totals?: Array<{
|
|
2202
|
-
totalType: 'None' | 'SalesAmount' | 'VatAmount' | 'GrossRefund' | 'RefundFee' | 'AgentRefundFee' | 'Refund';
|
|
2203
|
-
amount: number;
|
|
2204
|
-
description?: (string) | null;
|
|
2205
|
-
currency: string;
|
|
2206
|
-
rate: number;
|
|
2207
|
-
}> | null;
|
|
2208
|
-
};
|
|
2209
|
-
};
|
|
2210
|
-
|
|
2211
|
-
export type PutApiTagServiceTagByIdResponse = ({
|
|
2212
|
-
id?: string;
|
|
2213
|
-
tagNumber: string;
|
|
2214
|
-
status: 'None' | 'Open' | 'PreIssued' | 'Issued' | 'WaitingGoodsValidation' | 'WaitingStampValidation' | 'Declined' | 'ExportValidated' | 'PaymentBlocked' | 'PaymentInProgress' | 'PaymentProblem' | 'Paid' | 'Cancelled' | 'Expired' | 'Correction' | 'OptedOut';
|
|
2215
|
-
refundType?: 'Cash' | 'CreditCard' | 'BankTransfer' | 'Wallet' | 'CashViaPartner';
|
|
2216
|
-
issueDate: string;
|
|
2217
|
-
expireDate?: (string) | null;
|
|
2218
|
-
exportValidationId?: (string) | null;
|
|
2219
|
-
refundId?: (string) | null;
|
|
2220
|
-
vatStatementHeaderId?: (string) | null;
|
|
2221
|
-
merchantId?: (string) | null;
|
|
2222
|
-
travellerId?: (string) | null;
|
|
2223
|
-
travelDocumentNumber?: (string) | null;
|
|
2224
|
-
tripId?: (string) | null;
|
|
2225
|
-
refundTableId?: (string) | null;
|
|
2226
|
-
rebateTableId?: (string) | null;
|
|
2227
|
-
contractHeaderId?: (string) | null;
|
|
2228
|
-
totals?: Array<{
|
|
2229
|
-
totalType: 'None' | 'SalesAmount' | 'VatAmount' | 'GrossRefund' | 'RefundFee' | 'AgentRefundFee' | 'Refund';
|
|
2230
|
-
amount: number;
|
|
2231
|
-
description?: (string) | null;
|
|
2232
|
-
currency: string;
|
|
2233
|
-
rate: number;
|
|
2234
|
-
}> | null;
|
|
2235
|
-
});
|
|
785
|
+
requestBody?: UniRefund_TagService_Tags_UpdateTagDto;
|
|
786
|
+
};
|
|
787
|
+
|
|
788
|
+
export type PutApiTagServiceTagByIdResponse = (UniRefund_TagService_Tags_TagDto);
|
|
2236
789
|
|
|
2237
790
|
export type DeleteApiTagServiceTagByIdData = {
|
|
2238
791
|
id: string;
|
|
@@ -2244,122 +797,19 @@ export type GetApiTagServiceTagByIdDetailData = {
|
|
|
2244
797
|
id: string;
|
|
2245
798
|
};
|
|
2246
799
|
|
|
2247
|
-
export type GetApiTagServiceTagByIdDetailResponse = (
|
|
2248
|
-
id?: string;
|
|
2249
|
-
tagNumber: string;
|
|
2250
|
-
status: 'None' | 'Open' | 'PreIssued' | 'Issued' | 'WaitingGoodsValidation' | 'WaitingStampValidation' | 'Declined' | 'ExportValidated' | 'PaymentBlocked' | 'PaymentInProgress' | 'PaymentProblem' | 'Paid' | 'Cancelled' | 'Expired' | 'Correction' | 'OptedOut';
|
|
2251
|
-
refundType?: 'Cash' | 'CreditCard' | 'BankTransfer' | 'Wallet' | 'CashViaPartner';
|
|
2252
|
-
issueDate: string;
|
|
2253
|
-
expireDate?: (string) | null;
|
|
2254
|
-
merchant?: {
|
|
2255
|
-
id?: string;
|
|
2256
|
-
name?: (string) | null;
|
|
2257
|
-
address?: {
|
|
2258
|
-
id?: string;
|
|
2259
|
-
fullText?: (string) | null;
|
|
2260
|
-
};
|
|
2261
|
-
productGroups?: Array<{
|
|
2262
|
-
id?: string;
|
|
2263
|
-
description?: (string) | null;
|
|
2264
|
-
}> | null;
|
|
2265
|
-
};
|
|
2266
|
-
traveller?: {
|
|
2267
|
-
id?: string;
|
|
2268
|
-
travelDocumentNumber?: (string) | null;
|
|
2269
|
-
countryOfResidence?: (string) | null;
|
|
2270
|
-
nationality?: (string) | null;
|
|
2271
|
-
firstname?: (string) | null;
|
|
2272
|
-
lastname?: (string) | null;
|
|
2273
|
-
};
|
|
2274
|
-
exportValidation?: {
|
|
2275
|
-
id?: string;
|
|
2276
|
-
tagId?: (string) | null;
|
|
2277
|
-
tagNumber?: (string) | null;
|
|
2278
|
-
customsId: string;
|
|
2279
|
-
customsName: string;
|
|
2280
|
-
referenceId?: (string) | null;
|
|
2281
|
-
exportDate: string;
|
|
2282
|
-
status?: 'None' | 'Waiting' | 'Approved' | 'Rejected' | 'Expired';
|
|
2283
|
-
stampType?: 'None' | 'Integration' | 'DigitalStamp';
|
|
2284
|
-
initialValidationResult?: 'None' | 'Green';
|
|
2285
|
-
finalValidationResult?: 'None' | 'Green';
|
|
2286
|
-
};
|
|
2287
|
-
refundId?: (string) | null;
|
|
2288
|
-
vatStatementHeaderId?: (string) | null;
|
|
2289
|
-
invoices?: Array<{
|
|
2290
|
-
id?: string;
|
|
2291
|
-
number?: (string) | null;
|
|
2292
|
-
issueDate: string;
|
|
2293
|
-
totalAmount: number;
|
|
2294
|
-
vatAmount: number;
|
|
2295
|
-
currency?: (string) | null;
|
|
2296
|
-
invoiceLines?: Array<{
|
|
2297
|
-
id?: string;
|
|
2298
|
-
productGroup?: {
|
|
2299
|
-
id?: string;
|
|
2300
|
-
articleCode: string;
|
|
2301
|
-
name: string;
|
|
2302
|
-
unitCode: 'QNT' | 'BAG' | 'BOX';
|
|
2303
|
-
companyType: 'GOVERNMENT' | 'TAXFREE' | 'CUSTOMS' | 'REFUNDPOINT' | 'MERCHANT' | 'EXCHANGE' | 'TOURGUIDE';
|
|
2304
|
-
vatId?: string;
|
|
2305
|
-
vatPercent?: (number) | null;
|
|
2306
|
-
active: boolean;
|
|
2307
|
-
food: boolean;
|
|
2308
|
-
};
|
|
2309
|
-
description?: (string) | null;
|
|
2310
|
-
amount: number;
|
|
2311
|
-
taxRate: number;
|
|
2312
|
-
taxAmount: number;
|
|
2313
|
-
taxBase: number;
|
|
2314
|
-
currency?: (string) | null;
|
|
2315
|
-
}> | null;
|
|
2316
|
-
}> | null;
|
|
2317
|
-
totals?: Array<{
|
|
2318
|
-
totalType: 'None' | 'SalesAmount' | 'VatAmount' | 'GrossRefund' | 'RefundFee' | 'AgentRefundFee' | 'Refund';
|
|
2319
|
-
amount: number;
|
|
2320
|
-
description?: (string) | null;
|
|
2321
|
-
currency: string;
|
|
2322
|
-
rate: number;
|
|
2323
|
-
}> | null;
|
|
2324
|
-
earnings?: Array<{
|
|
2325
|
-
earningType: 'None' | 'GrossComission' | 'RedefinedGC' | 'Rebate' | 'NetComission';
|
|
2326
|
-
amount: number;
|
|
2327
|
-
description?: (string) | null;
|
|
2328
|
-
currency: string;
|
|
2329
|
-
rate: number;
|
|
2330
|
-
}> | null;
|
|
2331
|
-
});
|
|
800
|
+
export type GetApiTagServiceTagByIdDetailResponse = (UniRefund_TagService_Tags_TagDetailDto);
|
|
2332
801
|
|
|
2333
802
|
export type GetApiTagServiceTagTagsRefundData = {
|
|
2334
803
|
isExportValidated: boolean;
|
|
2335
804
|
maxResultCount?: number;
|
|
2336
805
|
refundPointId: string;
|
|
2337
|
-
refundType:
|
|
806
|
+
refundType: UniRefund_TagService_Tags_Enums_RefundType;
|
|
2338
807
|
skipCount?: number;
|
|
2339
808
|
tagIds?: Array<(string)>;
|
|
2340
809
|
travellerDocumentNumber: string;
|
|
2341
810
|
};
|
|
2342
811
|
|
|
2343
|
-
export type GetApiTagServiceTagTagsRefundResponse = (
|
|
2344
|
-
items?: Array<{
|
|
2345
|
-
id?: string;
|
|
2346
|
-
tagNumber: string;
|
|
2347
|
-
issueDate: string;
|
|
2348
|
-
expireDate?: (string) | null;
|
|
2349
|
-
travellerFullName: string;
|
|
2350
|
-
travellerDocumentNumber: string;
|
|
2351
|
-
merchantTitle: string;
|
|
2352
|
-
status: 'None' | 'Open' | 'PreIssued' | 'Issued' | 'WaitingGoodsValidation' | 'WaitingStampValidation' | 'Declined' | 'ExportValidated' | 'PaymentBlocked' | 'PaymentInProgress' | 'PaymentProblem' | 'Paid' | 'Cancelled' | 'Expired' | 'Correction' | 'OptedOut';
|
|
2353
|
-
totals?: Array<{
|
|
2354
|
-
totalType: 'None' | 'SalesAmount' | 'VatAmount' | 'GrossRefund' | 'RefundFee' | 'AgentRefundFee' | 'Refund';
|
|
2355
|
-
amount: number;
|
|
2356
|
-
description?: (string) | null;
|
|
2357
|
-
currency: string;
|
|
2358
|
-
rate: number;
|
|
2359
|
-
}> | null;
|
|
2360
|
-
}> | null;
|
|
2361
|
-
totalCount?: number;
|
|
2362
|
-
});
|
|
812
|
+
export type GetApiTagServiceTagTagsRefundResponse = (PagedResultDto_TagListItemDto);
|
|
2363
813
|
|
|
2364
814
|
export type GetApiTagServiceTagSummaryData = {
|
|
2365
815
|
exportEndDate?: string;
|
|
@@ -2371,204 +821,66 @@ export type GetApiTagServiceTagSummaryData = {
|
|
|
2371
821
|
merchantIds?: Array<(string)>;
|
|
2372
822
|
paidEndDate?: string;
|
|
2373
823
|
paidStartDate?: string;
|
|
2374
|
-
refundTypes?: Array<
|
|
824
|
+
refundTypes?: Array<UniRefund_TagService_Tags_Enums_RefundType>;
|
|
2375
825
|
skipCount?: number;
|
|
2376
826
|
sorting?: string;
|
|
2377
|
-
statuses?: Array<
|
|
827
|
+
statuses?: Array<UniRefund_TagService_Tags_TagStatusType>;
|
|
2378
828
|
tagNumber?: string;
|
|
2379
829
|
travellerDocumentNumber?: string;
|
|
2380
830
|
travellerFullName?: string;
|
|
2381
831
|
travellerIds?: Array<(string)>;
|
|
2382
832
|
};
|
|
2383
833
|
|
|
2384
|
-
export type GetApiTagServiceTagSummaryResponse = (
|
|
2385
|
-
totalSalesAmount: number;
|
|
2386
|
-
totalRefundAmount: number;
|
|
2387
|
-
currency: string;
|
|
2388
|
-
});
|
|
834
|
+
export type GetApiTagServiceTagSummaryResponse = (UniRefund_TagService_Tags_TagListSummaryDto);
|
|
2389
835
|
|
|
2390
836
|
export type GetApiTagServiceTagTagsRefundFeesData = {
|
|
2391
837
|
refundDate: string;
|
|
2392
838
|
refundPointId: string;
|
|
2393
|
-
refundType:
|
|
839
|
+
refundType: UniRefund_TagService_Tags_Enums_RefundType;
|
|
2394
840
|
tagIds: Array<(string)>;
|
|
2395
841
|
};
|
|
2396
842
|
|
|
2397
|
-
export type GetApiTagServiceTagTagsRefundFeesResponse = (Array<
|
|
2398
|
-
id: string;
|
|
2399
|
-
touristFee: number;
|
|
2400
|
-
agentFee: number;
|
|
2401
|
-
netRefundAmount: number;
|
|
2402
|
-
}>);
|
|
843
|
+
export type GetApiTagServiceTagTagsRefundFeesResponse = (Array<UniRefund_TagService_Tags_TagRefundFeesDto>);
|
|
2403
844
|
|
|
2404
845
|
export type PutApiTagServiceTagExportValidationByIdData = {
|
|
2405
846
|
id: string;
|
|
2406
|
-
requestBody?:
|
|
2407
|
-
exportDate?: (string) | null;
|
|
2408
|
-
customsId?: string;
|
|
2409
|
-
referenceId?: (string) | null;
|
|
2410
|
-
responseCode?: (string) | null;
|
|
2411
|
-
description?: (string) | null;
|
|
2412
|
-
};
|
|
847
|
+
requestBody?: UniRefund_TagService_Tags_ExportValidationRequestDto;
|
|
2413
848
|
};
|
|
2414
849
|
|
|
2415
|
-
export type PutApiTagServiceTagExportValidationByIdResponse = (
|
|
2416
|
-
id?: string;
|
|
2417
|
-
tagId?: (string) | null;
|
|
2418
|
-
tagNumber?: (string) | null;
|
|
2419
|
-
customsId: string;
|
|
2420
|
-
customsName: string;
|
|
2421
|
-
exportDate: string;
|
|
2422
|
-
referenceId?: (string) | null;
|
|
2423
|
-
status?: 'None' | 'Waiting' | 'Approved' | 'Rejected' | 'Expired';
|
|
2424
|
-
stampType?: 'None' | 'Integration' | 'DigitalStamp';
|
|
2425
|
-
initialValidationResult?: 'None' | 'Green';
|
|
2426
|
-
finalValidationResult?: 'None' | 'Green';
|
|
2427
|
-
});
|
|
850
|
+
export type PutApiTagServiceTagExportValidationByIdResponse = (UniRefund_ExportValidationService_ExportValidations_ExportValidationDto);
|
|
2428
851
|
|
|
2429
852
|
export type GetIntegrationApiTagsSumData = {
|
|
2430
853
|
ids: Array<(string)>;
|
|
2431
854
|
refundDate: string;
|
|
2432
855
|
refundPointId: string;
|
|
2433
|
-
refundType:
|
|
856
|
+
refundType: UniRefund_TagService_Tags_Enums_RefundType;
|
|
2434
857
|
};
|
|
2435
858
|
|
|
2436
|
-
export type GetIntegrationApiTagsSumResponse = (
|
|
2437
|
-
tagRefundFees?: Array<{
|
|
2438
|
-
id: string;
|
|
2439
|
-
touristFee: number;
|
|
2440
|
-
agentFee: number;
|
|
2441
|
-
netRefundAmount: number;
|
|
2442
|
-
}> | null;
|
|
2443
|
-
travellerId?: string;
|
|
2444
|
-
travellerDocumentNumber?: (string) | null;
|
|
2445
|
-
refundCurrency?: (string) | null;
|
|
2446
|
-
status?: 'None' | 'Open' | 'PreIssued' | 'Issued' | 'WaitingGoodsValidation' | 'WaitingStampValidation' | 'Declined' | 'ExportValidated' | 'PaymentBlocked' | 'PaymentInProgress' | 'PaymentProblem' | 'Paid' | 'Cancelled' | 'Expired' | 'Correction' | 'OptedOut';
|
|
2447
|
-
});
|
|
859
|
+
export type GetIntegrationApiTagsSumResponse = (UniRefund_TagService_Tags_TagSumTagsResponseDto);
|
|
2448
860
|
|
|
2449
861
|
export type GetIntegrationApiTagsSumForVatStatementData = {
|
|
2450
862
|
tagIds?: Array<(string)>;
|
|
2451
863
|
};
|
|
2452
864
|
|
|
2453
|
-
export type GetIntegrationApiTagsSumForVatStatementResponse = (Array<
|
|
2454
|
-
tagId: string;
|
|
2455
|
-
merchantId: string;
|
|
2456
|
-
tagNumber: string;
|
|
2457
|
-
refundDate: string;
|
|
2458
|
-
grandTotal: number;
|
|
2459
|
-
taxAmount: number;
|
|
2460
|
-
refundAmount: number;
|
|
2461
|
-
currency: string;
|
|
2462
|
-
}>);
|
|
865
|
+
export type GetIntegrationApiTagsSumForVatStatementResponse = (Array<UniRefund_TagService_Tags_TagSumTagsForVATStatementTagDetailResponseDto>);
|
|
2463
866
|
|
|
2464
867
|
export type PutIntegrationApiTagsRefundData = {
|
|
2465
|
-
requestBody?:
|
|
2466
|
-
|
|
2467
|
-
|
|
2468
|
-
|
|
2469
|
-
refundCurrency?: (string) | null;
|
|
2470
|
-
refundRate?: number;
|
|
2471
|
-
travellerFeeAmount?: number;
|
|
2472
|
-
agentFeeAmount?: number;
|
|
2473
|
-
}> | null;
|
|
2474
|
-
refundId?: string;
|
|
2475
|
-
refundType?: 'Cash' | 'CreditCard' | 'BankTransfer' | 'Wallet' | 'CashViaPartner';
|
|
2476
|
-
refundDate?: string;
|
|
2477
|
-
status?: 'None' | 'Open' | 'PreIssued' | 'Issued' | 'WaitingGoodsValidation' | 'WaitingStampValidation' | 'Declined' | 'ExportValidated' | 'PaymentBlocked' | 'PaymentInProgress' | 'PaymentProblem' | 'Paid' | 'Cancelled' | 'Expired' | 'Correction' | 'OptedOut';
|
|
2478
|
-
refundPointId?: string;
|
|
2479
|
-
};
|
|
2480
|
-
};
|
|
2481
|
-
|
|
2482
|
-
export type PutIntegrationApiTagsRefundResponse = ({
|
|
2483
|
-
earlyRefundExpiryDate?: (string) | null;
|
|
2484
|
-
});
|
|
868
|
+
requestBody?: UniRefund_TagService_Tags_SetTagRefundRequestDto;
|
|
869
|
+
};
|
|
870
|
+
|
|
871
|
+
export type PutIntegrationApiTagsRefundResponse = (UniRefund_TagService_Tags_SetTagRefundResponseDto);
|
|
2485
872
|
|
|
2486
873
|
export type GetIntegrationApiTagsRebateAmountsByVatStatementData = {
|
|
2487
874
|
vAtStatementHeaderIds?: Array<(string)>;
|
|
2488
875
|
};
|
|
2489
876
|
|
|
2490
|
-
export type GetIntegrationApiTagsRebateAmountsByVatStatementResponse = (Array<
|
|
2491
|
-
vatStatementHeaderId?: string;
|
|
2492
|
-
rebateStatementPropertiesByMerchantIds?: Array<{
|
|
2493
|
-
merchantId?: string;
|
|
2494
|
-
tagCount?: number;
|
|
2495
|
-
rebateAmount?: number;
|
|
2496
|
-
grandTotalAmount?: number;
|
|
2497
|
-
vatAmount?: number;
|
|
2498
|
-
}> | null;
|
|
2499
|
-
}>);
|
|
877
|
+
export type GetIntegrationApiTagsRebateAmountsByVatStatementResponse = (Array<UniRefund_TagService_Tags_RebateStatementByVATStatementDto>);
|
|
2500
878
|
|
|
2501
879
|
export type GetIntegrationApiTagsDetailsListForRefundData = {
|
|
2502
880
|
tagIds?: Array<(string)>;
|
|
2503
881
|
};
|
|
2504
882
|
|
|
2505
|
-
export type GetIntegrationApiTagsDetailsListForRefundResponse = (Array<
|
|
2506
|
-
id?: string;
|
|
2507
|
-
tagNumber: string;
|
|
2508
|
-
status: 'None' | 'Open' | 'PreIssued' | 'Issued' | 'WaitingGoodsValidation' | 'WaitingStampValidation' | 'Declined' | 'ExportValidated' | 'PaymentBlocked' | 'PaymentInProgress' | 'PaymentProblem' | 'Paid' | 'Cancelled' | 'Expired' | 'Correction' | 'OptedOut';
|
|
2509
|
-
issueDate: string;
|
|
2510
|
-
expireDate?: (string) | null;
|
|
2511
|
-
merchant?: {
|
|
2512
|
-
id?: string;
|
|
2513
|
-
name?: (string) | null;
|
|
2514
|
-
address?: {
|
|
2515
|
-
id?: string;
|
|
2516
|
-
fullText?: (string) | null;
|
|
2517
|
-
};
|
|
2518
|
-
productGroups?: Array<{
|
|
2519
|
-
id?: string;
|
|
2520
|
-
description?: (string) | null;
|
|
2521
|
-
}> | null;
|
|
2522
|
-
};
|
|
2523
|
-
exportValidation?: {
|
|
2524
|
-
id?: string;
|
|
2525
|
-
tagId?: (string) | null;
|
|
2526
|
-
tagNumber?: (string) | null;
|
|
2527
|
-
customsId: string;
|
|
2528
|
-
customsName: string;
|
|
2529
|
-
referenceId?: (string) | null;
|
|
2530
|
-
exportDate: string;
|
|
2531
|
-
status?: 'None' | 'Waiting' | 'Approved' | 'Rejected' | 'Expired';
|
|
2532
|
-
stampType?: 'None' | 'Integration' | 'DigitalStamp';
|
|
2533
|
-
initialValidationResult?: 'None' | 'Green';
|
|
2534
|
-
finalValidationResult?: 'None' | 'Green';
|
|
2535
|
-
};
|
|
2536
|
-
invoices?: Array<{
|
|
2537
|
-
id?: string;
|
|
2538
|
-
number?: (string) | null;
|
|
2539
|
-
issueDate: string;
|
|
2540
|
-
totalAmount: number;
|
|
2541
|
-
vatAmount: number;
|
|
2542
|
-
currency?: (string) | null;
|
|
2543
|
-
invoiceLines?: Array<{
|
|
2544
|
-
id?: string;
|
|
2545
|
-
productGroup?: {
|
|
2546
|
-
id?: string;
|
|
2547
|
-
articleCode: string;
|
|
2548
|
-
name: string;
|
|
2549
|
-
unitCode: 'QNT' | 'BAG' | 'BOX';
|
|
2550
|
-
companyType: 'GOVERNMENT' | 'TAXFREE' | 'CUSTOMS' | 'REFUNDPOINT' | 'MERCHANT' | 'EXCHANGE' | 'TOURGUIDE';
|
|
2551
|
-
vatId?: string;
|
|
2552
|
-
vatPercent?: (number) | null;
|
|
2553
|
-
active: boolean;
|
|
2554
|
-
food: boolean;
|
|
2555
|
-
};
|
|
2556
|
-
description?: (string) | null;
|
|
2557
|
-
amount: number;
|
|
2558
|
-
taxRate: number;
|
|
2559
|
-
taxAmount: number;
|
|
2560
|
-
taxBase: number;
|
|
2561
|
-
currency?: (string) | null;
|
|
2562
|
-
}> | null;
|
|
2563
|
-
}> | null;
|
|
2564
|
-
totals?: Array<{
|
|
2565
|
-
totalType: 'None' | 'SalesAmount' | 'VatAmount' | 'GrossRefund' | 'RefundFee' | 'AgentRefundFee' | 'Refund';
|
|
2566
|
-
amount: number;
|
|
2567
|
-
description?: (string) | null;
|
|
2568
|
-
currency: string;
|
|
2569
|
-
rate: number;
|
|
2570
|
-
}> | null;
|
|
2571
|
-
}>);
|
|
883
|
+
export type GetIntegrationApiTagsDetailsListForRefundResponse = (Array<UniRefund_TagService_Tags_TagDetailForRefundDto>);
|
|
2572
884
|
|
|
2573
885
|
export type GetIntegrationApiTagsValidListForVatStatementData = {
|
|
2574
886
|
merchantIds?: Array<(string)>;
|
|
@@ -2576,29 +888,10 @@ export type GetIntegrationApiTagsValidListForVatStatementData = {
|
|
|
2576
888
|
year?: number;
|
|
2577
889
|
};
|
|
2578
890
|
|
|
2579
|
-
export type GetIntegrationApiTagsValidListForVatStatementResponse = (Array<
|
|
2580
|
-
tagId: string;
|
|
2581
|
-
merchantId: string;
|
|
2582
|
-
contractHeaderId: string;
|
|
2583
|
-
tagNumber: string;
|
|
2584
|
-
invoiceId?: (string) | null;
|
|
2585
|
-
taxRate?: (number) | null;
|
|
2586
|
-
taxBase: number;
|
|
2587
|
-
taxAmount: number;
|
|
2588
|
-
grandTotal: number;
|
|
2589
|
-
refundDate: string;
|
|
2590
|
-
refundAmount: number;
|
|
2591
|
-
currency: string;
|
|
2592
|
-
tenantId?: (string) | null;
|
|
2593
|
-
}>);
|
|
891
|
+
export type GetIntegrationApiTagsValidListForVatStatementResponse = (Array<UniRefund_TagService_Tags_TagValidForVATStatementResponseDto>);
|
|
2594
892
|
|
|
2595
893
|
export type PutIntegrationApiTagsSetVatStatementHeaderIdsOfTagsData = {
|
|
2596
|
-
requestBody?:
|
|
2597
|
-
tagIdAndVATStatementHeaderIdPairs?: Array<{
|
|
2598
|
-
tagId: string;
|
|
2599
|
-
vatStatementHeaderId: string;
|
|
2600
|
-
}> | null;
|
|
2601
|
-
};
|
|
894
|
+
requestBody?: UniRefund_TagService_Tags_SetTagVATStatementHeaderIdRequestDto;
|
|
2602
895
|
};
|
|
2603
896
|
|
|
2604
897
|
export type PutIntegrationApiTagsSetVatStatementHeaderIdsOfTagsResponse = (unknown);
|