@ayasofyazilim/saas 0.0.76 → 0.0.78

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.
@@ -6,7 +6,7 @@ export const $PagedResultDto_RefundListItem = {
6
6
  items: {
7
7
  type: 'array',
8
8
  items: {
9
- required: ['processedDate', 'reconciliationStatus', 'referenceNumber', 'refundAmount', 'refundAmountInCurrency', 'refundCurrency', 'refundType', 'status', 'travelDocumentNumber', 'travellerFeeAmount', 'userDeviceName'],
9
+ required: ['processedDate', 'reconciliationStatus', 'referenceNumber', 'refundAmount', 'refundAmountInCurrency', 'refundCurrency', 'refundType', 'status', 'travellerDocumentNumber', 'travellerFeeAmount', 'userDeviceName'],
10
10
  type: 'object',
11
11
  properties: {
12
12
  id: {
@@ -15,35 +15,42 @@ export const $PagedResultDto_RefundListItem = {
15
15
  },
16
16
  userDeviceName: {
17
17
  minLength: 1,
18
- type: 'string'
18
+ type: 'string',
19
+ readOnly: true
19
20
  },
20
21
  refundType: {
21
22
  enum: ['Cash', 'CreditCard', 'BankTransfer', 'Wallet', 'CashViaPartner'],
22
23
  type: 'string'
23
24
  },
24
- travelDocumentNumber: {
25
+ travellerDocumentNumber: {
25
26
  minLength: 1,
26
- type: 'string'
27
+ type: 'string',
28
+ readOnly: true
27
29
  },
28
30
  refundAmount: {
29
31
  type: 'number',
30
- format: 'double'
32
+ format: 'double',
33
+ readOnly: true
31
34
  },
32
35
  refundCurrency: {
33
36
  minLength: 1,
34
- type: 'string'
37
+ type: 'string',
38
+ readOnly: true
35
39
  },
36
40
  refundAmountInCurrency: {
37
41
  type: 'number',
38
- format: 'double'
42
+ format: 'double',
43
+ readOnly: true
39
44
  },
40
45
  travellerFeeAmount: {
41
46
  type: 'number',
42
- format: 'double'
47
+ format: 'double',
48
+ readOnly: true
43
49
  },
44
50
  referenceNumber: {
45
51
  minLength: 1,
46
- type: 'string'
52
+ type: 'string',
53
+ readOnly: true
47
54
  },
48
55
  status: {
49
56
  enum: ['NotPaid', 'PendingDeparture', 'Blocked', 'Processing', 'PartlyPaid', 'Paid', 'Overpaid', 'Rejected', 'Cancelled', 'Error'],
@@ -55,12 +62,14 @@ export const $PagedResultDto_RefundListItem = {
55
62
  },
56
63
  processedDate: {
57
64
  type: 'string',
58
- format: 'date-time'
65
+ format: 'date-time',
66
+ readOnly: true
59
67
  },
60
68
  paidDate: {
61
69
  type: 'string',
62
70
  format: 'date-time',
63
- nullable: true
71
+ nullable: true,
72
+ readOnly: true
64
73
  }
65
74
  },
66
75
  additionalProperties: false
@@ -135,6 +144,21 @@ export const $PagedResultDto_UserDeviceNameDto = {
135
144
  additionalProperties: false
136
145
  } as const;
137
146
 
147
+ export const $UniRefund_CRMService_RefundPoints_RefundPointDetailForRefund = {
148
+ type: 'object',
149
+ properties: {
150
+ name: {
151
+ type: 'string',
152
+ nullable: true
153
+ },
154
+ fullAddress: {
155
+ type: 'string',
156
+ nullable: true
157
+ }
158
+ },
159
+ additionalProperties: false
160
+ } as const;
161
+
138
162
  export const $UniRefund_CRMService_RefundPoints_RefundPointNameDto = {
139
163
  required: ['id', 'name'],
140
164
  type: 'object',
@@ -167,6 +191,16 @@ export const $UniRefund_CRMService_RefundPoints_UserDeviceNameDto = {
167
191
  additionalProperties: false
168
192
  } as const;
169
193
 
194
+ export const $UniRefund_ExportValidationService_ExportValidations_ExportValidationStatusCode = {
195
+ enum: ['None', 'Waiting', 'Approved', 'Rejected', 'Expired'],
196
+ type: 'string'
197
+ } as const;
198
+
199
+ export const $UniRefund_ExportValidationService_ExportValidations_StampTypeCode = {
200
+ enum: ['None', 'Integration', 'DigitalStamp'],
201
+ type: 'string'
202
+ } as const;
203
+
170
204
  export const $UniRefund_RefundService_Enums_RefundReconciliationStatus = {
171
205
  enum: ['Approved', 'NotApproved', 'Error', 'InProgress'],
172
206
  type: 'string'
@@ -178,20 +212,17 @@ export const $UniRefund_RefundService_Enums_RefundStatus = {
178
212
  } as const;
179
213
 
180
214
  export const $UniRefund_RefundService_Refunds_CreateRefundDto = {
181
- required: ['refundPointId', 'refundType', 'tagIds', 'travellerId'],
215
+ required: ['refundPointId', 'refundType', 'tagIds'],
182
216
  type: 'object',
183
217
  properties: {
184
218
  tagIds: {
219
+ minItems: 1,
185
220
  type: 'array',
186
221
  items: {
187
222
  type: 'string',
188
223
  format: 'uuid'
189
224
  }
190
225
  },
191
- travellerId: {
192
- type: 'string',
193
- format: 'uuid'
194
- },
195
226
  refundType: {
196
227
  enum: ['Cash', 'CreditCard', 'BankTransfer', 'Wallet', 'CashViaPartner'],
197
228
  type: 'string'
@@ -234,50 +265,159 @@ export const $UniRefund_RefundService_Refunds_CreateRefundResponseDto = {
234
265
  additionalProperties: false
235
266
  } as const;
236
267
 
237
- export const $UniRefund_RefundService_Refunds_GetListAsync_RefundListInputTimeFilter = {
238
- enum: ['AllTime', 'Today', 'Yesterday', 'Days30', 'ThisWeek', 'ThisMonth', 'ThisQuarter', 'ThisYear', 'LastWeek', 'LastMonth', 'LastQuarter', 'LastYear', 'DateRange'],
239
- type: 'string'
240
- } as const;
241
-
242
- export const $UniRefund_RefundService_Refunds_GetListAsync_RefundListItem = {
243
- required: ['processedDate', 'reconciliationStatus', 'referenceNumber', 'refundAmount', 'refundAmountInCurrency', 'refundCurrency', 'refundType', 'status', 'travelDocumentNumber', 'travellerFeeAmount', 'userDeviceName'],
268
+ export const $UniRefund_RefundService_Refunds_GetDetailAsync_RefundDetailDto = {
269
+ required: ['processedDate', 'reconciliationStatus', 'referenceNumber', 'refundAmount', 'refundAmountInCurrency', 'refundCurrency', 'refundPoint', 'refundType', 'status', 'tags', 'traveller', 'travellerDocumentNumber', 'travellerFeeAmount', 'userDeviceName'],
244
270
  type: 'object',
245
271
  properties: {
246
- id: {
247
- type: 'string',
248
- format: 'uuid'
272
+ refundPoint: {
273
+ type: 'object',
274
+ properties: {
275
+ name: {
276
+ type: 'string',
277
+ nullable: true
278
+ },
279
+ fullAddress: {
280
+ type: 'string',
281
+ nullable: true
282
+ }
283
+ },
284
+ additionalProperties: false
285
+ },
286
+ traveller: {
287
+ required: ['hasUserAccount', 'id', 'personalIdentifications'],
288
+ type: 'object',
289
+ properties: {
290
+ id: {
291
+ type: 'string',
292
+ format: 'uuid'
293
+ },
294
+ languagePreferenceCode: {
295
+ type: 'string',
296
+ nullable: true
297
+ },
298
+ userAccountId: {
299
+ type: 'string',
300
+ format: 'uuid',
301
+ nullable: true
302
+ },
303
+ hasUserAccount: {
304
+ type: 'boolean',
305
+ readOnly: true
306
+ },
307
+ gender: {
308
+ enum: ['MALE', 'FEMALE'],
309
+ type: 'string'
310
+ },
311
+ personalIdentifications: {
312
+ type: 'array',
313
+ items: {
314
+ required: ['expirationDate', 'firstName', 'fullName', 'id', 'identificationType', 'lastName', 'nationalityCountryCode2', 'nationalityCountryName', 'residenceCountryCode2', 'residenceCountryName', 'travelDocumentNumber'],
315
+ type: 'object',
316
+ properties: {
317
+ id: {
318
+ type: 'string',
319
+ format: 'uuid'
320
+ },
321
+ travelDocumentNumber: {
322
+ minLength: 1,
323
+ type: 'string'
324
+ },
325
+ residenceCountryCode2: {
326
+ minLength: 1,
327
+ type: 'string'
328
+ },
329
+ residenceCountryName: {
330
+ minLength: 1,
331
+ type: 'string'
332
+ },
333
+ nationalityCountryCode2: {
334
+ minLength: 1,
335
+ type: 'string'
336
+ },
337
+ nationalityCountryName: {
338
+ minLength: 1,
339
+ type: 'string'
340
+ },
341
+ firstName: {
342
+ minLength: 1,
343
+ type: 'string'
344
+ },
345
+ middleName: {
346
+ type: 'string',
347
+ nullable: true
348
+ },
349
+ lastName: {
350
+ minLength: 1,
351
+ type: 'string'
352
+ },
353
+ fullName: {
354
+ minLength: 1,
355
+ type: 'string',
356
+ readOnly: true
357
+ },
358
+ birthDate: {
359
+ type: 'string',
360
+ format: 'date-time',
361
+ nullable: true
362
+ },
363
+ issueDate: {
364
+ type: 'string',
365
+ format: 'date-time',
366
+ nullable: true
367
+ },
368
+ expirationDate: {
369
+ type: 'string',
370
+ format: 'date-time'
371
+ },
372
+ identificationType: {
373
+ enum: ['Passport'],
374
+ type: 'string'
375
+ }
376
+ },
377
+ additionalProperties: false
378
+ }
379
+ }
380
+ },
381
+ additionalProperties: false
249
382
  },
250
383
  userDeviceName: {
251
384
  minLength: 1,
252
- type: 'string'
385
+ type: 'string',
386
+ readOnly: true
253
387
  },
254
388
  refundType: {
255
389
  enum: ['Cash', 'CreditCard', 'BankTransfer', 'Wallet', 'CashViaPartner'],
256
390
  type: 'string'
257
391
  },
258
- travelDocumentNumber: {
392
+ travellerDocumentNumber: {
259
393
  minLength: 1,
260
- type: 'string'
394
+ type: 'string',
395
+ readOnly: true
261
396
  },
262
397
  refundAmount: {
263
398
  type: 'number',
264
- format: 'double'
399
+ format: 'double',
400
+ readOnly: true
265
401
  },
266
402
  refundCurrency: {
267
403
  minLength: 1,
268
- type: 'string'
404
+ type: 'string',
405
+ readOnly: true
269
406
  },
270
407
  refundAmountInCurrency: {
271
408
  type: 'number',
272
- format: 'double'
409
+ format: 'double',
410
+ readOnly: true
273
411
  },
274
412
  travellerFeeAmount: {
275
413
  type: 'number',
276
- format: 'double'
414
+ format: 'double',
415
+ readOnly: true
277
416
  },
278
417
  referenceNumber: {
279
418
  minLength: 1,
280
- type: 'string'
419
+ type: 'string',
420
+ readOnly: true
281
421
  },
282
422
  status: {
283
423
  enum: ['NotPaid', 'PendingDeparture', 'Blocked', 'Processing', 'PartlyPaid', 'Paid', 'Overpaid', 'Rejected', 'Cancelled', 'Error'],
@@ -289,44 +429,1039 @@ export const $UniRefund_RefundService_Refunds_GetListAsync_RefundListItem = {
289
429
  },
290
430
  processedDate: {
291
431
  type: 'string',
292
- format: 'date-time'
432
+ format: 'date-time',
433
+ readOnly: true
293
434
  },
294
435
  paidDate: {
295
436
  type: 'string',
296
437
  format: 'date-time',
297
- nullable: true
298
- }
299
- },
300
- additionalProperties: false
301
- } as const;
302
-
303
- export const $UniRefund_RefundService_Refunds_GetListAsync_RefundTextFilterType = {
304
- enum: ['TravellerDocumentNumber', 'CardNumber', 'ReferenceNumber', 'InvoiceNumber'],
305
- type: 'string'
306
- } as const;
307
-
308
- export const $UniRefund_RefundService_Refunds_GetRefundStatistics_RefundStatistics = {
309
- type: 'object',
310
- properties: {
311
- refundsCount: {
312
- type: 'integer',
313
- format: 'int32'
314
- },
315
- refundsAmount: {
316
- type: 'number',
317
- format: 'double'
438
+ nullable: true,
439
+ readOnly: true
318
440
  },
319
- refundsCashBalance: {
320
- type: 'number',
321
- format: 'double'
322
- }
323
- },
324
- additionalProperties: false
325
- } as const;
326
-
327
- export const $UniRefund_TagService_Tags_RefundType = {
328
- enum: ['Cash', 'CreditCard', 'BankTransfer', 'Wallet', 'CashViaPartner'],
329
- type: 'string'
441
+ tags: {
442
+ type: 'array',
443
+ items: {
444
+ required: ['billing', 'expireDate', 'exportValidation', 'invoices', 'issueDate', 'merchant', 'status', 'tagNumber', 'totals'],
445
+ type: 'object',
446
+ properties: {
447
+ id: {
448
+ type: 'string',
449
+ format: 'uuid'
450
+ },
451
+ tagNumber: {
452
+ minLength: 1,
453
+ type: 'string'
454
+ },
455
+ status: {
456
+ enum: ['None', 'Open', 'PreIssued', 'Issued', 'WaitingGoodsValidation', 'WaitingStampValidation', 'Declined', 'ExportValidated', 'PaymentBlocked', 'PaymentInProgress', 'PaymentProblem', 'Paid', 'Cancelled', 'Expired', 'Correction', 'OptedOut'],
457
+ type: 'string'
458
+ },
459
+ issueDate: {
460
+ type: 'string',
461
+ format: 'date-time'
462
+ },
463
+ expireDate: {
464
+ type: 'string',
465
+ format: 'date-time'
466
+ },
467
+ merchant: {
468
+ type: 'object',
469
+ properties: {
470
+ id: {
471
+ type: 'string',
472
+ format: 'uuid'
473
+ },
474
+ name: {
475
+ type: 'string',
476
+ nullable: true
477
+ },
478
+ address: {
479
+ type: 'object',
480
+ properties: {
481
+ id: {
482
+ type: 'string',
483
+ format: 'uuid'
484
+ },
485
+ fullText: {
486
+ type: 'string',
487
+ nullable: true
488
+ }
489
+ },
490
+ additionalProperties: false
491
+ },
492
+ productGroups: {
493
+ type: 'array',
494
+ items: {
495
+ type: 'object',
496
+ properties: {
497
+ id: {
498
+ type: 'string',
499
+ format: 'uuid'
500
+ },
501
+ description: {
502
+ type: 'string',
503
+ nullable: true
504
+ }
505
+ },
506
+ additionalProperties: false
507
+ },
508
+ nullable: true
509
+ }
510
+ },
511
+ additionalProperties: false
512
+ },
513
+ exportValidation: {
514
+ type: 'object',
515
+ properties: {
516
+ id: {
517
+ type: 'string',
518
+ format: 'uuid'
519
+ },
520
+ endpointId: {
521
+ type: 'string',
522
+ format: 'uuid',
523
+ nullable: true
524
+ },
525
+ referenceId: {
526
+ type: 'string',
527
+ nullable: true
528
+ },
529
+ date: {
530
+ type: 'string',
531
+ format: 'date-time',
532
+ nullable: true
533
+ },
534
+ status: {
535
+ enum: ['None', 'Waiting', 'Approved', 'Rejected', 'Expired'],
536
+ type: 'string'
537
+ },
538
+ stampType: {
539
+ enum: ['None', 'Integration', 'DigitalStamp'],
540
+ type: 'string'
541
+ }
542
+ },
543
+ additionalProperties: false
544
+ },
545
+ billing: {
546
+ type: 'object',
547
+ properties: {
548
+ id: {
549
+ type: 'string',
550
+ format: 'uuid'
551
+ },
552
+ billingDate: {
553
+ type: 'string',
554
+ format: 'date-time',
555
+ nullable: true
556
+ },
557
+ billingNumber: {
558
+ type: 'string',
559
+ nullable: true
560
+ },
561
+ status: {
562
+ type: 'integer',
563
+ format: 'int32',
564
+ nullable: true
565
+ }
566
+ },
567
+ additionalProperties: false
568
+ },
569
+ invoices: {
570
+ type: 'array',
571
+ items: {
572
+ type: 'object',
573
+ properties: {
574
+ id: {
575
+ type: 'string',
576
+ format: 'uuid'
577
+ },
578
+ number: {
579
+ type: 'string',
580
+ nullable: true
581
+ },
582
+ issueDate: {
583
+ type: 'string',
584
+ format: 'date-time'
585
+ },
586
+ totalAmount: {
587
+ type: 'number',
588
+ format: 'double'
589
+ },
590
+ vatAmount: {
591
+ type: 'number',
592
+ format: 'double'
593
+ },
594
+ currency: {
595
+ type: 'string',
596
+ nullable: true
597
+ },
598
+ invoiceLines: {
599
+ type: 'array',
600
+ items: {
601
+ type: 'object',
602
+ properties: {
603
+ id: {
604
+ type: 'string',
605
+ format: 'uuid'
606
+ },
607
+ productGroup: {
608
+ type: 'string',
609
+ nullable: true
610
+ },
611
+ description: {
612
+ type: 'string',
613
+ nullable: true
614
+ },
615
+ amount: {
616
+ type: 'number',
617
+ format: 'double'
618
+ },
619
+ taxRate: {
620
+ type: 'number',
621
+ format: 'double'
622
+ },
623
+ taxAmount: {
624
+ type: 'number',
625
+ format: 'double'
626
+ },
627
+ taxBase: {
628
+ type: 'number',
629
+ format: 'double'
630
+ },
631
+ currency: {
632
+ type: 'string',
633
+ nullable: true
634
+ }
635
+ },
636
+ additionalProperties: false
637
+ },
638
+ nullable: true
639
+ }
640
+ },
641
+ additionalProperties: false
642
+ }
643
+ },
644
+ totals: {
645
+ type: 'array',
646
+ items: {
647
+ type: 'object',
648
+ properties: {
649
+ totalType: {
650
+ enum: ['None', 'SalesAmount', 'VatAmount', 'GrossRefund', 'RefundFee', 'AgentRefundFee', 'Refund'],
651
+ type: 'string'
652
+ },
653
+ amount: {
654
+ type: 'number',
655
+ format: 'double'
656
+ },
657
+ description: {
658
+ type: 'string',
659
+ nullable: true
660
+ },
661
+ currency: {
662
+ type: 'string',
663
+ nullable: true
664
+ }
665
+ },
666
+ additionalProperties: false
667
+ }
668
+ }
669
+ },
670
+ additionalProperties: false
671
+ },
672
+ readOnly: true
673
+ }
674
+ },
675
+ additionalProperties: false
676
+ } as const;
677
+
678
+ export const $UniRefund_RefundService_Refunds_GetListAsync_RefundListInputTimeFilter = {
679
+ enum: ['AllTime', 'Today', 'Yesterday', 'Days30', 'ThisWeek', 'ThisMonth', 'ThisQuarter', 'ThisYear', 'LastWeek', 'LastMonth', 'LastQuarter', 'LastYear', 'DateRange'],
680
+ type: 'string'
681
+ } as const;
682
+
683
+ export const $UniRefund_RefundService_Refunds_GetListAsync_RefundListItem = {
684
+ required: ['processedDate', 'reconciliationStatus', 'referenceNumber', 'refundAmount', 'refundAmountInCurrency', 'refundCurrency', 'refundType', 'status', 'travellerDocumentNumber', 'travellerFeeAmount', 'userDeviceName'],
685
+ type: 'object',
686
+ properties: {
687
+ id: {
688
+ type: 'string',
689
+ format: 'uuid'
690
+ },
691
+ userDeviceName: {
692
+ minLength: 1,
693
+ type: 'string',
694
+ readOnly: true
695
+ },
696
+ refundType: {
697
+ enum: ['Cash', 'CreditCard', 'BankTransfer', 'Wallet', 'CashViaPartner'],
698
+ type: 'string'
699
+ },
700
+ travellerDocumentNumber: {
701
+ minLength: 1,
702
+ type: 'string',
703
+ readOnly: true
704
+ },
705
+ refundAmount: {
706
+ type: 'number',
707
+ format: 'double',
708
+ readOnly: true
709
+ },
710
+ refundCurrency: {
711
+ minLength: 1,
712
+ type: 'string',
713
+ readOnly: true
714
+ },
715
+ refundAmountInCurrency: {
716
+ type: 'number',
717
+ format: 'double',
718
+ readOnly: true
719
+ },
720
+ travellerFeeAmount: {
721
+ type: 'number',
722
+ format: 'double',
723
+ readOnly: true
724
+ },
725
+ referenceNumber: {
726
+ minLength: 1,
727
+ type: 'string',
728
+ readOnly: true
729
+ },
730
+ status: {
731
+ enum: ['NotPaid', 'PendingDeparture', 'Blocked', 'Processing', 'PartlyPaid', 'Paid', 'Overpaid', 'Rejected', 'Cancelled', 'Error'],
732
+ type: 'string'
733
+ },
734
+ reconciliationStatus: {
735
+ enum: ['Approved', 'NotApproved', 'Error', 'InProgress'],
736
+ type: 'string'
737
+ },
738
+ processedDate: {
739
+ type: 'string',
740
+ format: 'date-time',
741
+ readOnly: true
742
+ },
743
+ paidDate: {
744
+ type: 'string',
745
+ format: 'date-time',
746
+ nullable: true,
747
+ readOnly: true
748
+ }
749
+ },
750
+ additionalProperties: false
751
+ } as const;
752
+
753
+ export const $UniRefund_RefundService_Refunds_GetListAsync_RefundTextFilterType = {
754
+ enum: ['TravellerDocumentNumber', 'CardNumber', 'ReferenceNumber', 'InvoiceNumber'],
755
+ type: 'string'
756
+ } as const;
757
+
758
+ export const $UniRefund_RefundService_Refunds_GetRefundStatistics_RefundStatistics = {
759
+ type: 'object',
760
+ properties: {
761
+ refundsCount: {
762
+ type: 'integer',
763
+ format: 'int32'
764
+ },
765
+ refundsAmount: {
766
+ type: 'number',
767
+ format: 'double'
768
+ },
769
+ refundsCashBalance: {
770
+ type: 'number',
771
+ format: 'double'
772
+ }
773
+ },
774
+ additionalProperties: false
775
+ } as const;
776
+
777
+ export const $UniRefund_TagService_Billings_BillingDto = {
778
+ type: 'object',
779
+ properties: {
780
+ id: {
781
+ type: 'string',
782
+ format: 'uuid'
783
+ },
784
+ billingDate: {
785
+ type: 'string',
786
+ format: 'date-time',
787
+ nullable: true
788
+ },
789
+ billingNumber: {
790
+ type: 'string',
791
+ nullable: true
792
+ },
793
+ status: {
794
+ type: 'integer',
795
+ format: 'int32',
796
+ nullable: true
797
+ }
798
+ },
799
+ additionalProperties: false
800
+ } as const;
801
+
802
+ export const $UniRefund_TagService_ExportValidations_ExportValidationDto = {
803
+ type: 'object',
804
+ properties: {
805
+ id: {
806
+ type: 'string',
807
+ format: 'uuid'
808
+ },
809
+ endpointId: {
810
+ type: 'string',
811
+ format: 'uuid',
812
+ nullable: true
813
+ },
814
+ referenceId: {
815
+ type: 'string',
816
+ nullable: true
817
+ },
818
+ date: {
819
+ type: 'string',
820
+ format: 'date-time',
821
+ nullable: true
822
+ },
823
+ status: {
824
+ enum: ['None', 'Waiting', 'Approved', 'Rejected', 'Expired'],
825
+ type: 'string'
826
+ },
827
+ stampType: {
828
+ enum: ['None', 'Integration', 'DigitalStamp'],
829
+ type: 'string'
830
+ }
831
+ },
832
+ additionalProperties: false
833
+ } as const;
834
+
835
+ export const $UniRefund_TagService_Invoices_InvoiceDto = {
836
+ type: 'object',
837
+ properties: {
838
+ id: {
839
+ type: 'string',
840
+ format: 'uuid'
841
+ },
842
+ number: {
843
+ type: 'string',
844
+ nullable: true
845
+ },
846
+ issueDate: {
847
+ type: 'string',
848
+ format: 'date-time'
849
+ },
850
+ totalAmount: {
851
+ type: 'number',
852
+ format: 'double'
853
+ },
854
+ vatAmount: {
855
+ type: 'number',
856
+ format: 'double'
857
+ },
858
+ currency: {
859
+ type: 'string',
860
+ nullable: true
861
+ },
862
+ invoiceLines: {
863
+ type: 'array',
864
+ items: {
865
+ type: 'object',
866
+ properties: {
867
+ id: {
868
+ type: 'string',
869
+ format: 'uuid'
870
+ },
871
+ productGroup: {
872
+ type: 'string',
873
+ nullable: true
874
+ },
875
+ description: {
876
+ type: 'string',
877
+ nullable: true
878
+ },
879
+ amount: {
880
+ type: 'number',
881
+ format: 'double'
882
+ },
883
+ taxRate: {
884
+ type: 'number',
885
+ format: 'double'
886
+ },
887
+ taxAmount: {
888
+ type: 'number',
889
+ format: 'double'
890
+ },
891
+ taxBase: {
892
+ type: 'number',
893
+ format: 'double'
894
+ },
895
+ currency: {
896
+ type: 'string',
897
+ nullable: true
898
+ }
899
+ },
900
+ additionalProperties: false
901
+ },
902
+ nullable: true
903
+ }
904
+ },
905
+ additionalProperties: false
906
+ } as const;
907
+
908
+ export const $UniRefund_TagService_Invoices_InvoiceLineDto = {
909
+ type: 'object',
910
+ properties: {
911
+ id: {
912
+ type: 'string',
913
+ format: 'uuid'
914
+ },
915
+ productGroup: {
916
+ type: 'string',
917
+ nullable: true
918
+ },
919
+ description: {
920
+ type: 'string',
921
+ nullable: true
922
+ },
923
+ amount: {
924
+ type: 'number',
925
+ format: 'double'
926
+ },
927
+ taxRate: {
928
+ type: 'number',
929
+ format: 'double'
930
+ },
931
+ taxAmount: {
932
+ type: 'number',
933
+ format: 'double'
934
+ },
935
+ taxBase: {
936
+ type: 'number',
937
+ format: 'double'
938
+ },
939
+ currency: {
940
+ type: 'string',
941
+ nullable: true
942
+ }
943
+ },
944
+ additionalProperties: false
945
+ } as const;
946
+
947
+ export const $UniRefund_TagService_Merchants_MerchantDetailDto = {
948
+ type: 'object',
949
+ properties: {
950
+ id: {
951
+ type: 'string',
952
+ format: 'uuid'
953
+ },
954
+ name: {
955
+ type: 'string',
956
+ nullable: true
957
+ },
958
+ address: {
959
+ type: 'object',
960
+ properties: {
961
+ id: {
962
+ type: 'string',
963
+ format: 'uuid'
964
+ },
965
+ fullText: {
966
+ type: 'string',
967
+ nullable: true
968
+ }
969
+ },
970
+ additionalProperties: false
971
+ },
972
+ productGroups: {
973
+ type: 'array',
974
+ items: {
975
+ type: 'object',
976
+ properties: {
977
+ id: {
978
+ type: 'string',
979
+ format: 'uuid'
980
+ },
981
+ description: {
982
+ type: 'string',
983
+ nullable: true
984
+ }
985
+ },
986
+ additionalProperties: false
987
+ },
988
+ nullable: true
989
+ }
990
+ },
991
+ additionalProperties: false
992
+ } as const;
993
+
994
+ export const $UniRefund_TagService_Tags_AddressDto = {
995
+ type: 'object',
996
+ properties: {
997
+ id: {
998
+ type: 'string',
999
+ format: 'uuid'
1000
+ },
1001
+ fullText: {
1002
+ type: 'string',
1003
+ nullable: true
1004
+ }
1005
+ },
1006
+ additionalProperties: false
1007
+ } as const;
1008
+
1009
+ export const $UniRefund_TagService_Tags_ProductGroupDto = {
1010
+ type: 'object',
1011
+ properties: {
1012
+ id: {
1013
+ type: 'string',
1014
+ format: 'uuid'
1015
+ },
1016
+ description: {
1017
+ type: 'string',
1018
+ nullable: true
1019
+ }
1020
+ },
1021
+ additionalProperties: false
1022
+ } as const;
1023
+
1024
+ export const $UniRefund_TagService_Tags_RefundType = {
1025
+ enum: ['Cash', 'CreditCard', 'BankTransfer', 'Wallet', 'CashViaPartner'],
1026
+ type: 'string'
1027
+ } as const;
1028
+
1029
+ export const $UniRefund_TagService_Tags_TagDetailForRefundDto = {
1030
+ required: ['billing', 'expireDate', 'exportValidation', 'invoices', 'issueDate', 'merchant', 'status', 'tagNumber', 'totals'],
1031
+ type: 'object',
1032
+ properties: {
1033
+ id: {
1034
+ type: 'string',
1035
+ format: 'uuid'
1036
+ },
1037
+ tagNumber: {
1038
+ minLength: 1,
1039
+ type: 'string'
1040
+ },
1041
+ status: {
1042
+ enum: ['None', 'Open', 'PreIssued', 'Issued', 'WaitingGoodsValidation', 'WaitingStampValidation', 'Declined', 'ExportValidated', 'PaymentBlocked', 'PaymentInProgress', 'PaymentProblem', 'Paid', 'Cancelled', 'Expired', 'Correction', 'OptedOut'],
1043
+ type: 'string'
1044
+ },
1045
+ issueDate: {
1046
+ type: 'string',
1047
+ format: 'date-time'
1048
+ },
1049
+ expireDate: {
1050
+ type: 'string',
1051
+ format: 'date-time'
1052
+ },
1053
+ merchant: {
1054
+ type: 'object',
1055
+ properties: {
1056
+ id: {
1057
+ type: 'string',
1058
+ format: 'uuid'
1059
+ },
1060
+ name: {
1061
+ type: 'string',
1062
+ nullable: true
1063
+ },
1064
+ address: {
1065
+ type: 'object',
1066
+ properties: {
1067
+ id: {
1068
+ type: 'string',
1069
+ format: 'uuid'
1070
+ },
1071
+ fullText: {
1072
+ type: 'string',
1073
+ nullable: true
1074
+ }
1075
+ },
1076
+ additionalProperties: false
1077
+ },
1078
+ productGroups: {
1079
+ type: 'array',
1080
+ items: {
1081
+ type: 'object',
1082
+ properties: {
1083
+ id: {
1084
+ type: 'string',
1085
+ format: 'uuid'
1086
+ },
1087
+ description: {
1088
+ type: 'string',
1089
+ nullable: true
1090
+ }
1091
+ },
1092
+ additionalProperties: false
1093
+ },
1094
+ nullable: true
1095
+ }
1096
+ },
1097
+ additionalProperties: false
1098
+ },
1099
+ exportValidation: {
1100
+ type: 'object',
1101
+ properties: {
1102
+ id: {
1103
+ type: 'string',
1104
+ format: 'uuid'
1105
+ },
1106
+ endpointId: {
1107
+ type: 'string',
1108
+ format: 'uuid',
1109
+ nullable: true
1110
+ },
1111
+ referenceId: {
1112
+ type: 'string',
1113
+ nullable: true
1114
+ },
1115
+ date: {
1116
+ type: 'string',
1117
+ format: 'date-time',
1118
+ nullable: true
1119
+ },
1120
+ status: {
1121
+ enum: ['None', 'Waiting', 'Approved', 'Rejected', 'Expired'],
1122
+ type: 'string'
1123
+ },
1124
+ stampType: {
1125
+ enum: ['None', 'Integration', 'DigitalStamp'],
1126
+ type: 'string'
1127
+ }
1128
+ },
1129
+ additionalProperties: false
1130
+ },
1131
+ billing: {
1132
+ type: 'object',
1133
+ properties: {
1134
+ id: {
1135
+ type: 'string',
1136
+ format: 'uuid'
1137
+ },
1138
+ billingDate: {
1139
+ type: 'string',
1140
+ format: 'date-time',
1141
+ nullable: true
1142
+ },
1143
+ billingNumber: {
1144
+ type: 'string',
1145
+ nullable: true
1146
+ },
1147
+ status: {
1148
+ type: 'integer',
1149
+ format: 'int32',
1150
+ nullable: true
1151
+ }
1152
+ },
1153
+ additionalProperties: false
1154
+ },
1155
+ invoices: {
1156
+ type: 'array',
1157
+ items: {
1158
+ type: 'object',
1159
+ properties: {
1160
+ id: {
1161
+ type: 'string',
1162
+ format: 'uuid'
1163
+ },
1164
+ number: {
1165
+ type: 'string',
1166
+ nullable: true
1167
+ },
1168
+ issueDate: {
1169
+ type: 'string',
1170
+ format: 'date-time'
1171
+ },
1172
+ totalAmount: {
1173
+ type: 'number',
1174
+ format: 'double'
1175
+ },
1176
+ vatAmount: {
1177
+ type: 'number',
1178
+ format: 'double'
1179
+ },
1180
+ currency: {
1181
+ type: 'string',
1182
+ nullable: true
1183
+ },
1184
+ invoiceLines: {
1185
+ type: 'array',
1186
+ items: {
1187
+ type: 'object',
1188
+ properties: {
1189
+ id: {
1190
+ type: 'string',
1191
+ format: 'uuid'
1192
+ },
1193
+ productGroup: {
1194
+ type: 'string',
1195
+ nullable: true
1196
+ },
1197
+ description: {
1198
+ type: 'string',
1199
+ nullable: true
1200
+ },
1201
+ amount: {
1202
+ type: 'number',
1203
+ format: 'double'
1204
+ },
1205
+ taxRate: {
1206
+ type: 'number',
1207
+ format: 'double'
1208
+ },
1209
+ taxAmount: {
1210
+ type: 'number',
1211
+ format: 'double'
1212
+ },
1213
+ taxBase: {
1214
+ type: 'number',
1215
+ format: 'double'
1216
+ },
1217
+ currency: {
1218
+ type: 'string',
1219
+ nullable: true
1220
+ }
1221
+ },
1222
+ additionalProperties: false
1223
+ },
1224
+ nullable: true
1225
+ }
1226
+ },
1227
+ additionalProperties: false
1228
+ }
1229
+ },
1230
+ totals: {
1231
+ type: 'array',
1232
+ items: {
1233
+ type: 'object',
1234
+ properties: {
1235
+ totalType: {
1236
+ enum: ['None', 'SalesAmount', 'VatAmount', 'GrossRefund', 'RefundFee', 'AgentRefundFee', 'Refund'],
1237
+ type: 'string'
1238
+ },
1239
+ amount: {
1240
+ type: 'number',
1241
+ format: 'double'
1242
+ },
1243
+ description: {
1244
+ type: 'string',
1245
+ nullable: true
1246
+ },
1247
+ currency: {
1248
+ type: 'string',
1249
+ nullable: true
1250
+ }
1251
+ },
1252
+ additionalProperties: false
1253
+ }
1254
+ }
1255
+ },
1256
+ additionalProperties: false
1257
+ } as const;
1258
+
1259
+ export const $UniRefund_TagService_Tags_TagStatusType = {
1260
+ enum: ['None', 'Open', 'PreIssued', 'Issued', 'WaitingGoodsValidation', 'WaitingStampValidation', 'Declined', 'ExportValidated', 'PaymentBlocked', 'PaymentInProgress', 'PaymentProblem', 'Paid', 'Cancelled', 'Expired', 'Correction', 'OptedOut'],
1261
+ type: 'string'
1262
+ } as const;
1263
+
1264
+ export const $UniRefund_TagService_Tags_TagTotalDto = {
1265
+ type: 'object',
1266
+ properties: {
1267
+ totalType: {
1268
+ enum: ['None', 'SalesAmount', 'VatAmount', 'GrossRefund', 'RefundFee', 'AgentRefundFee', 'Refund'],
1269
+ type: 'string'
1270
+ },
1271
+ amount: {
1272
+ type: 'number',
1273
+ format: 'double'
1274
+ },
1275
+ description: {
1276
+ type: 'string',
1277
+ nullable: true
1278
+ },
1279
+ currency: {
1280
+ type: 'string',
1281
+ nullable: true
1282
+ }
1283
+ },
1284
+ additionalProperties: false
1285
+ } as const;
1286
+
1287
+ export const $UniRefund_TagService_Tags_TotalType = {
1288
+ enum: ['None', 'SalesAmount', 'VatAmount', 'GrossRefund', 'RefundFee', 'AgentRefundFee', 'Refund'],
1289
+ type: 'string'
1290
+ } as const;
1291
+
1292
+ export const $UniRefund_TravellerService_Enums_GenderTypeCode = {
1293
+ enum: ['MALE', 'FEMALE'],
1294
+ type: 'string'
1295
+ } as const;
1296
+
1297
+ export const $UniRefund_TravellerService_Enums_PersonalIdentificationTypeCode = {
1298
+ enum: ['Passport'],
1299
+ type: 'string'
1300
+ } as const;
1301
+
1302
+ export const $UniRefund_TravellerService_PersonalIdentificationCommonDatas_PersonalIdentificationProfileDto = {
1303
+ required: ['expirationDate', 'firstName', 'fullName', 'id', 'identificationType', 'lastName', 'nationalityCountryCode2', 'nationalityCountryName', 'residenceCountryCode2', 'residenceCountryName', 'travelDocumentNumber'],
1304
+ type: 'object',
1305
+ properties: {
1306
+ id: {
1307
+ type: 'string',
1308
+ format: 'uuid'
1309
+ },
1310
+ travelDocumentNumber: {
1311
+ minLength: 1,
1312
+ type: 'string'
1313
+ },
1314
+ residenceCountryCode2: {
1315
+ minLength: 1,
1316
+ type: 'string'
1317
+ },
1318
+ residenceCountryName: {
1319
+ minLength: 1,
1320
+ type: 'string'
1321
+ },
1322
+ nationalityCountryCode2: {
1323
+ minLength: 1,
1324
+ type: 'string'
1325
+ },
1326
+ nationalityCountryName: {
1327
+ minLength: 1,
1328
+ type: 'string'
1329
+ },
1330
+ firstName: {
1331
+ minLength: 1,
1332
+ type: 'string'
1333
+ },
1334
+ middleName: {
1335
+ type: 'string',
1336
+ nullable: true
1337
+ },
1338
+ lastName: {
1339
+ minLength: 1,
1340
+ type: 'string'
1341
+ },
1342
+ fullName: {
1343
+ minLength: 1,
1344
+ type: 'string',
1345
+ readOnly: true
1346
+ },
1347
+ birthDate: {
1348
+ type: 'string',
1349
+ format: 'date-time',
1350
+ nullable: true
1351
+ },
1352
+ issueDate: {
1353
+ type: 'string',
1354
+ format: 'date-time',
1355
+ nullable: true
1356
+ },
1357
+ expirationDate: {
1358
+ type: 'string',
1359
+ format: 'date-time'
1360
+ },
1361
+ identificationType: {
1362
+ enum: ['Passport'],
1363
+ type: 'string'
1364
+ }
1365
+ },
1366
+ additionalProperties: false
1367
+ } as const;
1368
+
1369
+ export const $UniRefund_TravellerService_Travellers_TravellerDetailProfileDto = {
1370
+ required: ['hasUserAccount', 'id', 'personalIdentifications'],
1371
+ type: 'object',
1372
+ properties: {
1373
+ id: {
1374
+ type: 'string',
1375
+ format: 'uuid'
1376
+ },
1377
+ languagePreferenceCode: {
1378
+ type: 'string',
1379
+ nullable: true
1380
+ },
1381
+ userAccountId: {
1382
+ type: 'string',
1383
+ format: 'uuid',
1384
+ nullable: true
1385
+ },
1386
+ hasUserAccount: {
1387
+ type: 'boolean',
1388
+ readOnly: true
1389
+ },
1390
+ gender: {
1391
+ enum: ['MALE', 'FEMALE'],
1392
+ type: 'string'
1393
+ },
1394
+ personalIdentifications: {
1395
+ type: 'array',
1396
+ items: {
1397
+ required: ['expirationDate', 'firstName', 'fullName', 'id', 'identificationType', 'lastName', 'nationalityCountryCode2', 'nationalityCountryName', 'residenceCountryCode2', 'residenceCountryName', 'travelDocumentNumber'],
1398
+ type: 'object',
1399
+ properties: {
1400
+ id: {
1401
+ type: 'string',
1402
+ format: 'uuid'
1403
+ },
1404
+ travelDocumentNumber: {
1405
+ minLength: 1,
1406
+ type: 'string'
1407
+ },
1408
+ residenceCountryCode2: {
1409
+ minLength: 1,
1410
+ type: 'string'
1411
+ },
1412
+ residenceCountryName: {
1413
+ minLength: 1,
1414
+ type: 'string'
1415
+ },
1416
+ nationalityCountryCode2: {
1417
+ minLength: 1,
1418
+ type: 'string'
1419
+ },
1420
+ nationalityCountryName: {
1421
+ minLength: 1,
1422
+ type: 'string'
1423
+ },
1424
+ firstName: {
1425
+ minLength: 1,
1426
+ type: 'string'
1427
+ },
1428
+ middleName: {
1429
+ type: 'string',
1430
+ nullable: true
1431
+ },
1432
+ lastName: {
1433
+ minLength: 1,
1434
+ type: 'string'
1435
+ },
1436
+ fullName: {
1437
+ minLength: 1,
1438
+ type: 'string',
1439
+ readOnly: true
1440
+ },
1441
+ birthDate: {
1442
+ type: 'string',
1443
+ format: 'date-time',
1444
+ nullable: true
1445
+ },
1446
+ issueDate: {
1447
+ type: 'string',
1448
+ format: 'date-time',
1449
+ nullable: true
1450
+ },
1451
+ expirationDate: {
1452
+ type: 'string',
1453
+ format: 'date-time'
1454
+ },
1455
+ identificationType: {
1456
+ enum: ['Passport'],
1457
+ type: 'string'
1458
+ }
1459
+ },
1460
+ additionalProperties: false
1461
+ }
1462
+ }
1463
+ },
1464
+ additionalProperties: false
330
1465
  } as const;
331
1466
 
332
1467
  export const $Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationAuthConfigurationDto = {