@ayasofyazilim/saas 0.0.104 → 0.0.105

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