@ayasofyazilim/saas 0.0.76 → 0.0.77
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.
|
@@ -8,7 +8,10 @@ import { AbpApplicationConfigurationService } from './services.gen';
|
|
|
8
8
|
import { AbpApplicationLocalizationService } from './services.gen';
|
|
9
9
|
import { ContractsMerchantService } from './services.gen';
|
|
10
10
|
import { ContractsRefundPointService } from './services.gen';
|
|
11
|
+
import { ContractsRefundPointIntegrationService } from './services.gen';
|
|
11
12
|
import { RebateTablesService } from './services.gen';
|
|
13
|
+
import { RefundFeeHeaderIntegrationService } from './services.gen';
|
|
14
|
+
import { RefundTableHeaderIntegrationService } from './services.gen';
|
|
12
15
|
import { RefundTablesService } from './services.gen';
|
|
13
16
|
|
|
14
17
|
type HttpRequestConstructor = new (config: OpenAPIConfig) => BaseHttpRequest;
|
|
@@ -20,7 +23,10 @@ export class ContractServiceClient {
|
|
|
20
23
|
public readonly abpApplicationLocalization: AbpApplicationLocalizationService;
|
|
21
24
|
public readonly contractsMerchant: ContractsMerchantService;
|
|
22
25
|
public readonly contractsRefundPoint: ContractsRefundPointService;
|
|
26
|
+
public readonly contractsRefundPointIntegration: ContractsRefundPointIntegrationService;
|
|
23
27
|
public readonly rebateTables: RebateTablesService;
|
|
28
|
+
public readonly refundFeeHeaderIntegration: RefundFeeHeaderIntegrationService;
|
|
29
|
+
public readonly refundTableHeaderIntegration: RefundTableHeaderIntegrationService;
|
|
24
30
|
public readonly refundTables: RefundTablesService;
|
|
25
31
|
|
|
26
32
|
public readonly request: BaseHttpRequest;
|
|
@@ -47,7 +53,10 @@ export class ContractServiceClient {
|
|
|
47
53
|
this.abpApplicationLocalization = new AbpApplicationLocalizationService(this.request);
|
|
48
54
|
this.contractsMerchant = new ContractsMerchantService(this.request);
|
|
49
55
|
this.contractsRefundPoint = new ContractsRefundPointService(this.request);
|
|
56
|
+
this.contractsRefundPointIntegration = new ContractsRefundPointIntegrationService(this.request);
|
|
50
57
|
this.rebateTables = new RebateTablesService(this.request);
|
|
58
|
+
this.refundFeeHeaderIntegration = new RefundFeeHeaderIntegrationService(this.request);
|
|
59
|
+
this.refundTableHeaderIntegration = new RefundTableHeaderIntegrationService(this.request);
|
|
51
60
|
this.refundTables = new RefundTablesService(this.request);
|
|
52
61
|
}
|
|
53
62
|
}
|
|
@@ -319,7 +319,7 @@ export const $PagedResultDto_ContractHeaderDetailForMerchantDto = {
|
|
|
319
319
|
refundTableDetails: {
|
|
320
320
|
type: 'array',
|
|
321
321
|
items: {
|
|
322
|
-
required: ['id', 'vatRate'],
|
|
322
|
+
required: ['id', 'maxValue', 'minValue', 'refundAmount', 'refundPercent', 'vatRate'],
|
|
323
323
|
type: 'object',
|
|
324
324
|
properties: {
|
|
325
325
|
id: {
|
|
@@ -1121,7 +1121,7 @@ export const $PagedResultDto_ContractHeaderForMerchantDto = {
|
|
|
1121
1121
|
refundTableDetails: {
|
|
1122
1122
|
type: 'array',
|
|
1123
1123
|
items: {
|
|
1124
|
-
required: ['id', 'vatRate'],
|
|
1124
|
+
required: ['id', 'maxValue', 'minValue', 'refundAmount', 'refundPercent', 'vatRate'],
|
|
1125
1125
|
type: 'object',
|
|
1126
1126
|
properties: {
|
|
1127
1127
|
id: {
|
|
@@ -2443,7 +2443,7 @@ export const $PagedResultDto_RefundTableHeaderDto = {
|
|
|
2443
2443
|
refundTableDetails: {
|
|
2444
2444
|
type: 'array',
|
|
2445
2445
|
items: {
|
|
2446
|
-
required: ['id', 'vatRate'],
|
|
2446
|
+
required: ['id', 'maxValue', 'minValue', 'refundAmount', 'refundPercent', 'vatRate'],
|
|
2447
2447
|
type: 'object',
|
|
2448
2448
|
properties: {
|
|
2449
2449
|
id: {
|
|
@@ -2658,81 +2658,6 @@ export const $UniRefund_CRMService_TaxOffices_TaxOfficeNameDto = {
|
|
|
2658
2658
|
additionalProperties: false
|
|
2659
2659
|
} as const;
|
|
2660
2660
|
|
|
2661
|
-
export const $UniRefund_ContractService_ContractHeaderRefundFeeHeaders_ContractHeaders_ContractHeaderForRefundPointUpdateDto = {
|
|
2662
|
-
required: ['addressCommonDataId', 'merchantClassification', 'status', 'validFrom', 'validTo'],
|
|
2663
|
-
type: 'object',
|
|
2664
|
-
properties: {
|
|
2665
|
-
extraProperties: {
|
|
2666
|
-
type: 'object',
|
|
2667
|
-
additionalProperties: {},
|
|
2668
|
-
nullable: true,
|
|
2669
|
-
readOnly: true
|
|
2670
|
-
},
|
|
2671
|
-
webSite: {
|
|
2672
|
-
maxLength: 1024,
|
|
2673
|
-
minLength: 0,
|
|
2674
|
-
type: 'string',
|
|
2675
|
-
nullable: true
|
|
2676
|
-
},
|
|
2677
|
-
merchantClassification: {
|
|
2678
|
-
enum: ['Excellent', 'Good', 'Satisfactory', 'Low'],
|
|
2679
|
-
type: 'string'
|
|
2680
|
-
},
|
|
2681
|
-
status: {
|
|
2682
|
-
enum: ['None', 'Registered', 'DeRegistrationRequestedByUniRefund', 'DeRegistrationDataRequestedByAuthorities', 'SuspendedInternallyAfterDeRegistrationDecline', 'DeRegisteredAtAuthorities', 'SuspendedInternallyOnly', 'SuspensionRequestedByUniRefund', 'SuspensionRequestedByAuthorities', 'UnSuspensionRequestedByUniRefund', 'UnSuspensionRequestedByAuthorities', 'SuspendedAtAuthorities', 'UnSuspensionForFurtherDeRegistrationInvitedByAuthorities', 'UnSuspensionForFurtherDeRegistrationRequestedByUniRefund', 'Terminated'],
|
|
2683
|
-
type: 'string'
|
|
2684
|
-
},
|
|
2685
|
-
validFrom: {
|
|
2686
|
-
type: 'string',
|
|
2687
|
-
format: 'date-time'
|
|
2688
|
-
},
|
|
2689
|
-
validTo: {
|
|
2690
|
-
type: 'string',
|
|
2691
|
-
format: 'date-time'
|
|
2692
|
-
},
|
|
2693
|
-
earlyRefund: {
|
|
2694
|
-
type: 'boolean'
|
|
2695
|
-
},
|
|
2696
|
-
addressCommonDataId: {
|
|
2697
|
-
type: 'string',
|
|
2698
|
-
format: 'uuid'
|
|
2699
|
-
},
|
|
2700
|
-
refundFeeHeaders: {
|
|
2701
|
-
type: 'array',
|
|
2702
|
-
items: {
|
|
2703
|
-
required: ['refundFeeHeaderId', 'validFrom', 'validTo'],
|
|
2704
|
-
type: 'object',
|
|
2705
|
-
properties: {
|
|
2706
|
-
extraProperties: {
|
|
2707
|
-
type: 'object',
|
|
2708
|
-
additionalProperties: {},
|
|
2709
|
-
nullable: true,
|
|
2710
|
-
readOnly: true
|
|
2711
|
-
},
|
|
2712
|
-
refundFeeHeaderId: {
|
|
2713
|
-
type: 'string',
|
|
2714
|
-
format: 'uuid'
|
|
2715
|
-
},
|
|
2716
|
-
validFrom: {
|
|
2717
|
-
type: 'string',
|
|
2718
|
-
format: 'date-time'
|
|
2719
|
-
},
|
|
2720
|
-
validTo: {
|
|
2721
|
-
type: 'string',
|
|
2722
|
-
format: 'date-time'
|
|
2723
|
-
},
|
|
2724
|
-
isDefault: {
|
|
2725
|
-
type: 'boolean'
|
|
2726
|
-
}
|
|
2727
|
-
},
|
|
2728
|
-
additionalProperties: false
|
|
2729
|
-
},
|
|
2730
|
-
nullable: true
|
|
2731
|
-
}
|
|
2732
|
-
},
|
|
2733
|
-
additionalProperties: false
|
|
2734
|
-
} as const;
|
|
2735
|
-
|
|
2736
2661
|
export const $UniRefund_ContractService_ContractsForMerchant_ContractHeaderRefundTableHeaders_ContractHeaderRefundTableHeaderCreateAndUpdateDto = {
|
|
2737
2662
|
required: ['refundTableHeaderId', 'validFrom', 'validTo'],
|
|
2738
2663
|
type: 'object',
|
|
@@ -2856,7 +2781,7 @@ export const $UniRefund_ContractService_ContractsForMerchant_ContractHeaderRefun
|
|
|
2856
2781
|
refundTableDetails: {
|
|
2857
2782
|
type: 'array',
|
|
2858
2783
|
items: {
|
|
2859
|
-
required: ['id', 'vatRate'],
|
|
2784
|
+
required: ['id', 'maxValue', 'minValue', 'refundAmount', 'refundPercent', 'vatRate'],
|
|
2860
2785
|
type: 'object',
|
|
2861
2786
|
properties: {
|
|
2862
2787
|
id: {
|
|
@@ -3255,7 +3180,7 @@ export const $UniRefund_ContractService_ContractsForMerchant_ContractHeaders_Con
|
|
|
3255
3180
|
refundTableDetails: {
|
|
3256
3181
|
type: 'array',
|
|
3257
3182
|
items: {
|
|
3258
|
-
required: ['id', 'vatRate'],
|
|
3183
|
+
required: ['id', 'maxValue', 'minValue', 'refundAmount', 'refundPercent', 'vatRate'],
|
|
3259
3184
|
type: 'object',
|
|
3260
3185
|
properties: {
|
|
3261
3186
|
id: {
|
|
@@ -3664,7 +3589,7 @@ export const $UniRefund_ContractService_ContractsForMerchant_ContractHeaders_Con
|
|
|
3664
3589
|
refundTableDetails: {
|
|
3665
3590
|
type: 'array',
|
|
3666
3591
|
items: {
|
|
3667
|
-
required: ['id', 'vatRate'],
|
|
3592
|
+
required: ['id', 'maxValue', 'minValue', 'refundAmount', 'refundPercent', 'vatRate'],
|
|
3668
3593
|
type: 'object',
|
|
3669
3594
|
properties: {
|
|
3670
3595
|
id: {
|
|
@@ -3840,9 +3765,6 @@ export const $UniRefund_ContractService_ContractsForMerchant_ContractSettings_Co
|
|
|
3840
3765
|
minLength: 0,
|
|
3841
3766
|
type: 'string'
|
|
3842
3767
|
},
|
|
3843
|
-
isDefault: {
|
|
3844
|
-
type: 'boolean'
|
|
3845
|
-
},
|
|
3846
3768
|
referenceNumber: {
|
|
3847
3769
|
type: 'integer',
|
|
3848
3770
|
format: 'int32'
|
|
@@ -5539,6 +5461,81 @@ export const $UniRefund_ContractService_ContractsForRefundPoint_ContractHeaders_
|
|
|
5539
5461
|
additionalProperties: false
|
|
5540
5462
|
} as const;
|
|
5541
5463
|
|
|
5464
|
+
export const $UniRefund_ContractService_ContractsForRefundPoint_ContractHeaders_ContractHeaderForRefundPointUpdateDto = {
|
|
5465
|
+
required: ['addressCommonDataId', 'merchantClassification', 'status', 'validFrom', 'validTo'],
|
|
5466
|
+
type: 'object',
|
|
5467
|
+
properties: {
|
|
5468
|
+
extraProperties: {
|
|
5469
|
+
type: 'object',
|
|
5470
|
+
additionalProperties: {},
|
|
5471
|
+
nullable: true,
|
|
5472
|
+
readOnly: true
|
|
5473
|
+
},
|
|
5474
|
+
webSite: {
|
|
5475
|
+
maxLength: 1024,
|
|
5476
|
+
minLength: 0,
|
|
5477
|
+
type: 'string',
|
|
5478
|
+
nullable: true
|
|
5479
|
+
},
|
|
5480
|
+
merchantClassification: {
|
|
5481
|
+
enum: ['Excellent', 'Good', 'Satisfactory', 'Low'],
|
|
5482
|
+
type: 'string'
|
|
5483
|
+
},
|
|
5484
|
+
status: {
|
|
5485
|
+
enum: ['None', 'Registered', 'DeRegistrationRequestedByUniRefund', 'DeRegistrationDataRequestedByAuthorities', 'SuspendedInternallyAfterDeRegistrationDecline', 'DeRegisteredAtAuthorities', 'SuspendedInternallyOnly', 'SuspensionRequestedByUniRefund', 'SuspensionRequestedByAuthorities', 'UnSuspensionRequestedByUniRefund', 'UnSuspensionRequestedByAuthorities', 'SuspendedAtAuthorities', 'UnSuspensionForFurtherDeRegistrationInvitedByAuthorities', 'UnSuspensionForFurtherDeRegistrationRequestedByUniRefund', 'Terminated'],
|
|
5486
|
+
type: 'string'
|
|
5487
|
+
},
|
|
5488
|
+
validFrom: {
|
|
5489
|
+
type: 'string',
|
|
5490
|
+
format: 'date-time'
|
|
5491
|
+
},
|
|
5492
|
+
validTo: {
|
|
5493
|
+
type: 'string',
|
|
5494
|
+
format: 'date-time'
|
|
5495
|
+
},
|
|
5496
|
+
earlyRefund: {
|
|
5497
|
+
type: 'boolean'
|
|
5498
|
+
},
|
|
5499
|
+
addressCommonDataId: {
|
|
5500
|
+
type: 'string',
|
|
5501
|
+
format: 'uuid'
|
|
5502
|
+
},
|
|
5503
|
+
refundFeeHeaders: {
|
|
5504
|
+
type: 'array',
|
|
5505
|
+
items: {
|
|
5506
|
+
required: ['refundFeeHeaderId', 'validFrom', 'validTo'],
|
|
5507
|
+
type: 'object',
|
|
5508
|
+
properties: {
|
|
5509
|
+
extraProperties: {
|
|
5510
|
+
type: 'object',
|
|
5511
|
+
additionalProperties: {},
|
|
5512
|
+
nullable: true,
|
|
5513
|
+
readOnly: true
|
|
5514
|
+
},
|
|
5515
|
+
refundFeeHeaderId: {
|
|
5516
|
+
type: 'string',
|
|
5517
|
+
format: 'uuid'
|
|
5518
|
+
},
|
|
5519
|
+
validFrom: {
|
|
5520
|
+
type: 'string',
|
|
5521
|
+
format: 'date-time'
|
|
5522
|
+
},
|
|
5523
|
+
validTo: {
|
|
5524
|
+
type: 'string',
|
|
5525
|
+
format: 'date-time'
|
|
5526
|
+
},
|
|
5527
|
+
isDefault: {
|
|
5528
|
+
type: 'boolean'
|
|
5529
|
+
}
|
|
5530
|
+
},
|
|
5531
|
+
additionalProperties: false
|
|
5532
|
+
},
|
|
5533
|
+
nullable: true
|
|
5534
|
+
}
|
|
5535
|
+
},
|
|
5536
|
+
additionalProperties: false
|
|
5537
|
+
} as const;
|
|
5538
|
+
|
|
5542
5539
|
export const $UniRefund_ContractService_Enums_ContractHeaderForMerchantDraftMissingSteps = {
|
|
5543
5540
|
enum: ['ContractSetting', 'RebateSettings', 'RefundTableHeader'],
|
|
5544
5541
|
type: 'string'
|
|
@@ -7397,6 +7394,91 @@ export const $UniRefund_ContractService_Rebates_RebateTableHeaders_RebateTableHe
|
|
|
7397
7394
|
additionalProperties: false
|
|
7398
7395
|
} as const;
|
|
7399
7396
|
|
|
7397
|
+
export const $UniRefund_ContractService_Refunds_RefundFeeDetails_RefundFeeDetailCreateByListDto = {
|
|
7398
|
+
type: 'object',
|
|
7399
|
+
properties: {
|
|
7400
|
+
extraProperties: {
|
|
7401
|
+
type: 'object',
|
|
7402
|
+
additionalProperties: {},
|
|
7403
|
+
nullable: true,
|
|
7404
|
+
readOnly: true
|
|
7405
|
+
},
|
|
7406
|
+
refundFeeDetails: {
|
|
7407
|
+
type: 'array',
|
|
7408
|
+
items: {
|
|
7409
|
+
required: ['amountFrom', 'amountTo', 'feeType', 'fixedFeeValue', 'maxFee', 'minFee', 'percentFeeValue', 'refundMethod'],
|
|
7410
|
+
type: 'object',
|
|
7411
|
+
properties: {
|
|
7412
|
+
extraProperties: {
|
|
7413
|
+
type: 'object',
|
|
7414
|
+
additionalProperties: {},
|
|
7415
|
+
nullable: true,
|
|
7416
|
+
readOnly: true
|
|
7417
|
+
},
|
|
7418
|
+
amountFrom: {
|
|
7419
|
+
type: 'number',
|
|
7420
|
+
format: 'double'
|
|
7421
|
+
},
|
|
7422
|
+
amountTo: {
|
|
7423
|
+
type: 'number',
|
|
7424
|
+
format: 'double'
|
|
7425
|
+
},
|
|
7426
|
+
fixedFeeValue: {
|
|
7427
|
+
type: 'number',
|
|
7428
|
+
format: 'double'
|
|
7429
|
+
},
|
|
7430
|
+
percentFeeValue: {
|
|
7431
|
+
type: 'number',
|
|
7432
|
+
format: 'double'
|
|
7433
|
+
},
|
|
7434
|
+
fixedFeeValueEarlyRefund: {
|
|
7435
|
+
type: 'number',
|
|
7436
|
+
format: 'double',
|
|
7437
|
+
nullable: true
|
|
7438
|
+
},
|
|
7439
|
+
percentFeeValueEarlyRefund: {
|
|
7440
|
+
type: 'number',
|
|
7441
|
+
format: 'double',
|
|
7442
|
+
nullable: true
|
|
7443
|
+
},
|
|
7444
|
+
minFee: {
|
|
7445
|
+
type: 'number',
|
|
7446
|
+
format: 'double'
|
|
7447
|
+
},
|
|
7448
|
+
maxFee: {
|
|
7449
|
+
type: 'number',
|
|
7450
|
+
format: 'double'
|
|
7451
|
+
},
|
|
7452
|
+
minFeeEarlyRefund: {
|
|
7453
|
+
type: 'number',
|
|
7454
|
+
format: 'double',
|
|
7455
|
+
nullable: true
|
|
7456
|
+
},
|
|
7457
|
+
maxFeeEarlyRefund: {
|
|
7458
|
+
type: 'number',
|
|
7459
|
+
format: 'double',
|
|
7460
|
+
nullable: true
|
|
7461
|
+
},
|
|
7462
|
+
feeType: {
|
|
7463
|
+
enum: ['TouristFee', 'TouristBonusFee', 'AgentFee', 'AirportFee'],
|
|
7464
|
+
type: 'string'
|
|
7465
|
+
},
|
|
7466
|
+
refundMethod: {
|
|
7467
|
+
enum: ['All', 'Cash', 'CreditCard', 'BankTransfer', 'Wallet', 'CashViaPartner'],
|
|
7468
|
+
type: 'string'
|
|
7469
|
+
},
|
|
7470
|
+
isForEarlyRefund: {
|
|
7471
|
+
type: 'boolean'
|
|
7472
|
+
}
|
|
7473
|
+
},
|
|
7474
|
+
additionalProperties: false
|
|
7475
|
+
},
|
|
7476
|
+
nullable: true
|
|
7477
|
+
}
|
|
7478
|
+
},
|
|
7479
|
+
additionalProperties: false
|
|
7480
|
+
} as const;
|
|
7481
|
+
|
|
7400
7482
|
export const $UniRefund_ContractService_Refunds_RefundFeeDetails_RefundFeeDetailCreateDto = {
|
|
7401
7483
|
required: ['amountFrom', 'amountTo', 'feeType', 'fixedFeeValue', 'maxFee', 'minFee', 'percentFeeValue', 'refundMethod'],
|
|
7402
7484
|
type: 'object',
|
|
@@ -7562,72 +7644,6 @@ export const $UniRefund_ContractService_Refunds_RefundFeeDetails_RefundFeeDetail
|
|
|
7562
7644
|
additionalProperties: false
|
|
7563
7645
|
} as const;
|
|
7564
7646
|
|
|
7565
|
-
export const $UniRefund_ContractService_Refunds_RefundFeeDetails_RefundFeeDetailUpdateDto = {
|
|
7566
|
-
required: ['amountFrom', 'amountTo', 'feeType', 'fixedFeeValue', 'maxFee', 'minFee', 'percentFeeValue', 'refundMethod'],
|
|
7567
|
-
type: 'object',
|
|
7568
|
-
properties: {
|
|
7569
|
-
extraProperties: {
|
|
7570
|
-
type: 'object',
|
|
7571
|
-
additionalProperties: {},
|
|
7572
|
-
nullable: true,
|
|
7573
|
-
readOnly: true
|
|
7574
|
-
},
|
|
7575
|
-
amountFrom: {
|
|
7576
|
-
type: 'number',
|
|
7577
|
-
format: 'double'
|
|
7578
|
-
},
|
|
7579
|
-
amountTo: {
|
|
7580
|
-
type: 'number',
|
|
7581
|
-
format: 'double'
|
|
7582
|
-
},
|
|
7583
|
-
fixedFeeValue: {
|
|
7584
|
-
type: 'number',
|
|
7585
|
-
format: 'double'
|
|
7586
|
-
},
|
|
7587
|
-
percentFeeValue: {
|
|
7588
|
-
type: 'number',
|
|
7589
|
-
format: 'double'
|
|
7590
|
-
},
|
|
7591
|
-
fixedFeeValueEarlyRefund: {
|
|
7592
|
-
type: 'number',
|
|
7593
|
-
format: 'double',
|
|
7594
|
-
nullable: true
|
|
7595
|
-
},
|
|
7596
|
-
percentFeeValueEarlyRefund: {
|
|
7597
|
-
type: 'number',
|
|
7598
|
-
format: 'double',
|
|
7599
|
-
nullable: true
|
|
7600
|
-
},
|
|
7601
|
-
minFee: {
|
|
7602
|
-
type: 'number',
|
|
7603
|
-
format: 'double'
|
|
7604
|
-
},
|
|
7605
|
-
maxFee: {
|
|
7606
|
-
type: 'number',
|
|
7607
|
-
format: 'double'
|
|
7608
|
-
},
|
|
7609
|
-
minFeeEarlyRefund: {
|
|
7610
|
-
type: 'number',
|
|
7611
|
-
format: 'double',
|
|
7612
|
-
nullable: true
|
|
7613
|
-
},
|
|
7614
|
-
maxFeeEarlyRefund: {
|
|
7615
|
-
type: 'number',
|
|
7616
|
-
format: 'double',
|
|
7617
|
-
nullable: true
|
|
7618
|
-
},
|
|
7619
|
-
feeType: {
|
|
7620
|
-
enum: ['TouristFee', 'TouristBonusFee', 'AgentFee', 'AirportFee'],
|
|
7621
|
-
type: 'string'
|
|
7622
|
-
},
|
|
7623
|
-
refundMethod: {
|
|
7624
|
-
enum: ['All', 'Cash', 'CreditCard', 'BankTransfer', 'Wallet', 'CashViaPartner'],
|
|
7625
|
-
type: 'string'
|
|
7626
|
-
}
|
|
7627
|
-
},
|
|
7628
|
-
additionalProperties: false
|
|
7629
|
-
} as const;
|
|
7630
|
-
|
|
7631
7647
|
export const $UniRefund_ContractService_Refunds_RefundFeeHeaders_RefundFeeHeaderCreateDto = {
|
|
7632
7648
|
required: ['name'],
|
|
7633
7649
|
type: 'object',
|
|
@@ -7914,7 +7930,7 @@ export const $UniRefund_ContractService_Refunds_RefundTableDetails_RefundTableDe
|
|
|
7914
7930
|
} as const;
|
|
7915
7931
|
|
|
7916
7932
|
export const $UniRefund_ContractService_Refunds_RefundTableDetails_RefundTableDetailDto = {
|
|
7917
|
-
required: ['id', 'vatRate'],
|
|
7933
|
+
required: ['id', 'maxValue', 'minValue', 'refundAmount', 'refundPercent', 'vatRate'],
|
|
7918
7934
|
type: 'object',
|
|
7919
7935
|
properties: {
|
|
7920
7936
|
id: {
|
|
@@ -8059,7 +8075,7 @@ export const $UniRefund_ContractService_Refunds_RefundTableHeaders_RefundTableHe
|
|
|
8059
8075
|
refundTableDetails: {
|
|
8060
8076
|
type: 'array',
|
|
8061
8077
|
items: {
|
|
8062
|
-
required: ['id', 'vatRate'],
|
|
8078
|
+
required: ['id', 'maxValue', 'minValue', 'refundAmount', 'refundPercent', 'vatRate'],
|
|
8063
8079
|
type: 'object',
|
|
8064
8080
|
properties: {
|
|
8065
8081
|
id: {
|