@ayasofyazilim/saas 0.0.67 → 0.0.69
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.github/workflows/release.yaml +2 -2
- package/ContractService/ContractServiceClient.ts +3 -0
- package/ContractService/schemas.gen.ts +3520 -1491
- package/ContractService/services.gen.ts +303 -2
- package/ContractService/types.gen.ts +647 -56
- package/README.md +26 -1
- package/SettingService/SettingServiceClient.ts +0 -3
- package/SettingService/schemas.gen.ts +352 -539
- package/SettingService/services.gen.ts +38 -170
- package/SettingService/types.gen.ts +83 -335
- package/package.json +1 -1
|
@@ -5,11 +5,21 @@ export type PagedResultDto_ContractHeaderDetailForMerchantDto = {
|
|
|
5
5
|
totalCount?: number;
|
|
6
6
|
};
|
|
7
7
|
|
|
8
|
+
export type PagedResultDto_ContractHeaderDetailForRefundPointDto = {
|
|
9
|
+
items?: Array<UniRefund_ContractService_ContractsForRefundPoint_ContractHeaders_ContractHeaderDetailForRefundPointDto> | null;
|
|
10
|
+
totalCount?: number;
|
|
11
|
+
};
|
|
12
|
+
|
|
8
13
|
export type PagedResultDto_ContractHeaderForMerchantDto = {
|
|
9
14
|
items?: Array<UniRefund_ContractService_ContractsForMerchant_ContractHeaders_ContractHeaderForMerchantDto> | null;
|
|
10
15
|
totalCount?: number;
|
|
11
16
|
};
|
|
12
17
|
|
|
18
|
+
export type PagedResultDto_ContractHeaderForRefundPointDto = {
|
|
19
|
+
items?: Array<UniRefund_ContractService_ContractsForRefundPoint_ContractHeaders_ContractHeaderForRefundPointDto> | null;
|
|
20
|
+
totalCount?: number;
|
|
21
|
+
};
|
|
22
|
+
|
|
13
23
|
export type PagedResultDto_ContractSettingDto = {
|
|
14
24
|
items?: Array<UniRefund_ContractService_ContractsForMerchant_ContractSettings_ContractSettingDto> | null;
|
|
15
25
|
totalCount?: number;
|
|
@@ -63,16 +73,39 @@ export type UniRefund_CRMService_Merchants_MerchantBasicInformationDto = {
|
|
|
63
73
|
accountManagers?: Array<UniRefund_CRMService_Individuals_IndividualIdNameDto> | null;
|
|
64
74
|
};
|
|
65
75
|
|
|
76
|
+
export type UniRefund_CRMService_RefundPoints_RefundPointBasicInformationDto = {
|
|
77
|
+
id?: string;
|
|
78
|
+
name?: string | null;
|
|
79
|
+
taxOffice?: UniRefund_CRMService_TaxOffices_TaxOfficeIdNameDto;
|
|
80
|
+
numberOfStores?: number;
|
|
81
|
+
accountManagers?: Array<UniRefund_CRMService_Individuals_IndividualIdNameDto> | null;
|
|
82
|
+
};
|
|
83
|
+
|
|
66
84
|
export type UniRefund_CRMService_TaxOffices_TaxOfficeIdNameDto = {
|
|
67
85
|
id?: string;
|
|
68
86
|
name?: string | null;
|
|
69
87
|
};
|
|
70
88
|
|
|
89
|
+
export type UniRefund_ContractService_ContractHeaderRefundFeeHeaders_ContractHeaders_ContractHeaderForRefundPointUpdateDto = {
|
|
90
|
+
readonly extraProperties?: {
|
|
91
|
+
[key: string]: unknown;
|
|
92
|
+
} | null;
|
|
93
|
+
webSite?: string | null;
|
|
94
|
+
merchantClassification: UniRefund_ContractService_Enums_MerchantClassification;
|
|
95
|
+
status: UniRefund_ContractService_Enums_ContractHeaderStatus;
|
|
96
|
+
validFrom: string;
|
|
97
|
+
validTo: string;
|
|
98
|
+
addressCommonDataId: string;
|
|
99
|
+
refundFeeHeaders?: Array<UniRefund_ContractService_ContractsForRefundPoint_ContractHeaderRefundFeeHeaders_ContractHeaderRefundFeeHeaderCreateAndUpdateDto> | null;
|
|
100
|
+
};
|
|
101
|
+
|
|
71
102
|
export type UniRefund_ContractService_ContractsForMerchant_ContractHeaderRefundTableHeaders_ContractHeaderRefundTableHeaderCreateAndUpdateDto = {
|
|
72
103
|
readonly extraProperties?: {
|
|
73
104
|
[key: string]: unknown;
|
|
74
105
|
} | null;
|
|
75
106
|
refundTableHeaderId: string;
|
|
107
|
+
validFrom: string;
|
|
108
|
+
validTo: string;
|
|
76
109
|
isDefault?: boolean;
|
|
77
110
|
};
|
|
78
111
|
|
|
@@ -86,6 +119,8 @@ export type UniRefund_ContractService_ContractsForMerchant_ContractHeaderRefundT
|
|
|
86
119
|
deleterId?: string | null;
|
|
87
120
|
deletionTime?: string | null;
|
|
88
121
|
refundTableHeader: UniRefund_ContractService_Refunds_RefundTableHeaders_RefundTableHeaderDto;
|
|
122
|
+
validFrom: string;
|
|
123
|
+
validTo: string;
|
|
89
124
|
isDefault?: boolean;
|
|
90
125
|
};
|
|
91
126
|
|
|
@@ -121,7 +156,7 @@ export type UniRefund_ContractService_ContractsForMerchant_ContractHeaders_Contr
|
|
|
121
156
|
validFrom: string;
|
|
122
157
|
validTo: string;
|
|
123
158
|
addressCommonDataId: string;
|
|
124
|
-
refundTableHeaders
|
|
159
|
+
refundTableHeaders: Array<UniRefund_ContractService_ContractsForMerchant_ContractHeaderRefundTableHeaders_ContractHeaderRefundTableHeaderCreateAndUpdateDto>;
|
|
125
160
|
};
|
|
126
161
|
|
|
127
162
|
export type UniRefund_ContractService_ContractsForMerchant_ContractHeaders_ContractHeaderForMerchantDto = {
|
|
@@ -207,6 +242,13 @@ export type UniRefund_ContractService_ContractsForMerchant_ContractSettings_Cont
|
|
|
207
242
|
contractHeaderId?: string;
|
|
208
243
|
};
|
|
209
244
|
|
|
245
|
+
export type UniRefund_ContractService_ContractsForMerchant_ContractSettings_ContractSettingMakeDefaultDto = {
|
|
246
|
+
readonly extraProperties?: {
|
|
247
|
+
[key: string]: unknown;
|
|
248
|
+
} | null;
|
|
249
|
+
contractSettingId?: string;
|
|
250
|
+
};
|
|
251
|
+
|
|
210
252
|
export type UniRefund_ContractService_ContractsForMerchant_ContractSettings_ContractSettingRestrictedDto = {
|
|
211
253
|
id: string;
|
|
212
254
|
name: string;
|
|
@@ -218,7 +260,6 @@ export type UniRefund_ContractService_ContractsForMerchant_ContractSettings_Cont
|
|
|
218
260
|
[key: string]: unknown;
|
|
219
261
|
} | null;
|
|
220
262
|
name: string;
|
|
221
|
-
isDefault?: boolean;
|
|
222
263
|
referenceNumber: number;
|
|
223
264
|
invoicingFrequency: UniRefund_ContractService_Enums_InvoicingFrequency;
|
|
224
265
|
termOfPayment: number;
|
|
@@ -267,7 +308,110 @@ export type UniRefund_ContractService_ContractsForMerchant_ContractStores_Contra
|
|
|
267
308
|
receiptType: UniRefund_ContractService_Enums_ReceiptType;
|
|
268
309
|
};
|
|
269
310
|
|
|
270
|
-
export type
|
|
311
|
+
export type UniRefund_ContractService_ContractsForRefundPoint_ContractHeaderRefundFeeHeaders_ContractHeaderRefundFeeHeaderCreateAndUpdateDto = {
|
|
312
|
+
readonly extraProperties?: {
|
|
313
|
+
[key: string]: unknown;
|
|
314
|
+
} | null;
|
|
315
|
+
refundFeeHeaderId: string;
|
|
316
|
+
validFrom: string;
|
|
317
|
+
validTo: string;
|
|
318
|
+
isDefault?: boolean;
|
|
319
|
+
};
|
|
320
|
+
|
|
321
|
+
export type UniRefund_ContractService_ContractsForRefundPoint_ContractHeaderRefundFeeHeaders_ContractHeaderRefundFeeHeaderDto = {
|
|
322
|
+
id: string;
|
|
323
|
+
creationTime?: string;
|
|
324
|
+
creatorId?: string | null;
|
|
325
|
+
lastModificationTime?: string | null;
|
|
326
|
+
lastModifierId?: string | null;
|
|
327
|
+
isDeleted?: boolean;
|
|
328
|
+
deleterId?: string | null;
|
|
329
|
+
deletionTime?: string | null;
|
|
330
|
+
refundFeeHeader: UniRefund_ContractService_Refunds_RefundFeeHeaders_RefundFeeHeaderDto;
|
|
331
|
+
validFrom: string;
|
|
332
|
+
validTo: string;
|
|
333
|
+
isDefault?: boolean;
|
|
334
|
+
};
|
|
335
|
+
|
|
336
|
+
export type UniRefund_ContractService_ContractsForRefundPoint_ContractHeaders_CalculateFeesForRefundRequestDto = {
|
|
337
|
+
refundMethod?: UniRefund_ContractService_Enums_RefundMethod;
|
|
338
|
+
tagAmounts?: {
|
|
339
|
+
[key: string]: (number);
|
|
340
|
+
} | null;
|
|
341
|
+
refundDate?: string;
|
|
342
|
+
};
|
|
343
|
+
|
|
344
|
+
export type UniRefund_ContractService_ContractsForRefundPoint_ContractHeaders_CalculateFeesForRefundResponseDto = {
|
|
345
|
+
tagRefundAmounts?: Array<UniRefund_ContractService_ContractsForRefundPoint_ContractHeaders_CalculateFeesTagRefundItem> | null;
|
|
346
|
+
};
|
|
347
|
+
|
|
348
|
+
export type UniRefund_ContractService_ContractsForRefundPoint_ContractHeaders_CalculateFeesTagRefundItem = {
|
|
349
|
+
tagId?: string;
|
|
350
|
+
refundAmount?: number;
|
|
351
|
+
touristFee?: number;
|
|
352
|
+
touristBonusFee?: number | null;
|
|
353
|
+
agentFee?: number;
|
|
354
|
+
airportFee?: number | null;
|
|
355
|
+
};
|
|
356
|
+
|
|
357
|
+
export type UniRefund_ContractService_ContractsForRefundPoint_ContractHeaders_ContractHeaderDetailForRefundPointDto = {
|
|
358
|
+
id: string;
|
|
359
|
+
creationTime?: string;
|
|
360
|
+
creatorId?: string | null;
|
|
361
|
+
lastModificationTime?: string | null;
|
|
362
|
+
lastModifierId?: string | null;
|
|
363
|
+
isDeleted?: boolean;
|
|
364
|
+
deleterId?: string | null;
|
|
365
|
+
deletionTime?: string | null;
|
|
366
|
+
name: string;
|
|
367
|
+
contractTypeIdentifier: string;
|
|
368
|
+
webSite?: string | null;
|
|
369
|
+
merchantClassification: UniRefund_ContractService_Enums_MerchantClassification;
|
|
370
|
+
status?: UniRefund_ContractService_Enums_ContractHeaderStatus;
|
|
371
|
+
refundPointBasicInformationDto?: UniRefund_CRMService_RefundPoints_RefundPointBasicInformationDto;
|
|
372
|
+
isDraft?: boolean;
|
|
373
|
+
validFrom: string;
|
|
374
|
+
validTo: string;
|
|
375
|
+
contractType: UniRefund_ContractService_Enums_ContractType;
|
|
376
|
+
addressCommonData: UniRefund_LocationService_AddressCommonDatas_AddressCommonDataDto;
|
|
377
|
+
contractHeaderRefundFeeHeaders: Array<UniRefund_ContractService_ContractsForRefundPoint_ContractHeaderRefundFeeHeaders_ContractHeaderRefundFeeHeaderDto>;
|
|
378
|
+
};
|
|
379
|
+
|
|
380
|
+
export type UniRefund_ContractService_ContractsForRefundPoint_ContractHeaders_ContractHeaderForRefundPointCreateDto = {
|
|
381
|
+
readonly extraProperties?: {
|
|
382
|
+
[key: string]: unknown;
|
|
383
|
+
} | null;
|
|
384
|
+
webSite?: string | null;
|
|
385
|
+
merchantClassification: UniRefund_ContractService_Enums_MerchantClassification;
|
|
386
|
+
validFrom: string;
|
|
387
|
+
validTo: string;
|
|
388
|
+
addressCommonDataId: string;
|
|
389
|
+
refundFeeHeaders: Array<UniRefund_ContractService_ContractsForRefundPoint_ContractHeaderRefundFeeHeaders_ContractHeaderRefundFeeHeaderCreateAndUpdateDto>;
|
|
390
|
+
};
|
|
391
|
+
|
|
392
|
+
export type UniRefund_ContractService_ContractsForRefundPoint_ContractHeaders_ContractHeaderForRefundPointDto = {
|
|
393
|
+
id: string;
|
|
394
|
+
creationTime?: string;
|
|
395
|
+
creatorId?: string | null;
|
|
396
|
+
lastModificationTime?: string | null;
|
|
397
|
+
lastModifierId?: string | null;
|
|
398
|
+
isDeleted?: boolean;
|
|
399
|
+
deleterId?: string | null;
|
|
400
|
+
deletionTime?: string | null;
|
|
401
|
+
name: string;
|
|
402
|
+
contractTypeIdentifier: string;
|
|
403
|
+
isDraft?: boolean;
|
|
404
|
+
status?: UniRefund_ContractService_Enums_ContractHeaderStatus;
|
|
405
|
+
contractType: UniRefund_ContractService_Enums_ContractType;
|
|
406
|
+
validFrom: string;
|
|
407
|
+
validTo: string;
|
|
408
|
+
addressCommonData: UniRefund_LocationService_AddressCommonDatas_AddressCommonDataDto;
|
|
409
|
+
contractHeaderRefundFeeHeaders: Array<UniRefund_ContractService_ContractsForRefundPoint_ContractHeaderRefundFeeHeaders_ContractHeaderRefundFeeHeaderDto>;
|
|
410
|
+
};
|
|
411
|
+
|
|
412
|
+
export type UniRefund_ContractService_Enums_ContractHeaderForMerchantDraftMissingSteps = 'ContractSetting' | 'RebateSettings' | 'RefundTableHeader';
|
|
413
|
+
|
|
414
|
+
export type UniRefund_ContractService_Enums_ContractHeaderForRefundPointDraftMissingSteps = 'RefundFeeHeader';
|
|
271
415
|
|
|
272
416
|
export type UniRefund_ContractService_Enums_ContractHeaderStatus = 'None' | 'Registered' | 'DeRegistrationRequestedByUniRefund' | 'DeRegistrationDataRequestedByAuthorities' | 'SuspendedInternallyAfterDeRegistrationDecline' | 'DeRegisteredAtAuthorities' | 'SuspendedInternallyOnly' | 'SuspensionRequestedByUniRefund' | 'SuspensionRequestedByAuthorities' | 'UnSuspensionRequestedByUniRefund' | 'UnSuspensionRequestedByAuthorities' | 'SuspendedAtAuthorities' | 'UnSuspensionForFurtherDeRegistrationInvitedByAuthorities' | 'UnSuspensionForFurtherDeRegistrationRequestedByUniRefund' | 'Terminated';
|
|
273
417
|
|
|
@@ -285,7 +429,7 @@ export type UniRefund_ContractService_Enums_RebateStatementPeriod = 'None' | 'Mo
|
|
|
285
429
|
|
|
286
430
|
export type UniRefund_ContractService_Enums_ReceiptType = 'None' | 'NoBarcodeNumber' | 'NoBarcodeText' | 'Barcode' | 'QRCodeIntegration' | 'UniRefundVoucherIntegration';
|
|
287
431
|
|
|
288
|
-
export type UniRefund_ContractService_Enums_RefundMethod = 'All' | 'Cash' | 'CreditCard' | '
|
|
432
|
+
export type UniRefund_ContractService_Enums_RefundMethod = 'All' | 'Cash' | 'CreditCard' | 'BankTransfer' | 'Wallet' | 'CashViaPartner';
|
|
289
433
|
|
|
290
434
|
export type UniRefund_ContractService_Enums_VariableFee = 'PercentOfGC' | 'PercentOfGcWithoutVAT' | 'PercentOfVAT' | 'PercentOfSIS';
|
|
291
435
|
|
|
@@ -372,6 +516,8 @@ export type UniRefund_ContractService_Rebates_RebateSettingRebateTableHeaders_Re
|
|
|
372
516
|
isDeleted?: boolean;
|
|
373
517
|
deleterId?: string | null;
|
|
374
518
|
deletionTime?: string | null;
|
|
519
|
+
validFrom: string;
|
|
520
|
+
validTo: string;
|
|
375
521
|
rebateTableHeader: UniRefund_ContractService_Rebates_RebateTableHeaders_RebateTableHeaderDto;
|
|
376
522
|
};
|
|
377
523
|
|
|
@@ -383,7 +529,7 @@ export type UniRefund_ContractService_Rebates_RebateSettings_RebateSettingCreate
|
|
|
383
529
|
isTrustedMerchant: boolean;
|
|
384
530
|
rebateStatementPeriod: UniRefund_ContractService_Enums_RebateStatementPeriod;
|
|
385
531
|
rebateTableHeaders?: Array<UniRefund_ContractService_Rebates_RebateTableHeaders_RebateTableHeaderNotTemplateCreateDto> | null;
|
|
386
|
-
|
|
532
|
+
rebateTableHeadersFromTemplate?: Array<UniRefund_ContractService_Rebates_RebateTableHeaders_RebateTableHeaderFromTemplateCreateDto> | null;
|
|
387
533
|
contactInformationTypeId: string;
|
|
388
534
|
minimumNetCommissions?: Array<UniRefund_ContractService_Rebates_MinimumNetCommissions_MinimumNetCommissionCreateDto> | null;
|
|
389
535
|
};
|
|
@@ -468,8 +614,6 @@ export type UniRefund_ContractService_Rebates_RebateTableHeaders_RebateTableHead
|
|
|
468
614
|
} | null;
|
|
469
615
|
name: string;
|
|
470
616
|
calculateNetCommissionInsteadOfRefund?: boolean;
|
|
471
|
-
validFrom: string;
|
|
472
|
-
validTo: string;
|
|
473
617
|
rebateTableDetails?: Array<UniRefund_ContractService_Rebates_RebateTableDetails_RebateTableDetailCreateDto> | null;
|
|
474
618
|
processingFeeDetails?: Array<UniRefund_ContractService_Rebates_ProcessingFeeDetails_ProcessingFeeDetailCreateDto> | null;
|
|
475
619
|
};
|
|
@@ -485,23 +629,27 @@ export type UniRefund_ContractService_Rebates_RebateTableHeaders_RebateTableHead
|
|
|
485
629
|
deletionTime?: string | null;
|
|
486
630
|
name: string;
|
|
487
631
|
calculateNetCommissionInsteadOfRefund?: boolean;
|
|
488
|
-
validFrom: string;
|
|
489
|
-
validTo: string;
|
|
490
632
|
isTemplate?: boolean;
|
|
491
633
|
rebateTableDetails?: Array<UniRefund_ContractService_Rebates_RebateTableDetails_RebateTableDetailDto> | null;
|
|
492
634
|
processingFeeDetails?: Array<UniRefund_ContractService_Rebates_ProcessingFeeDetails_ProcessingFeeDetailDto> | null;
|
|
493
635
|
};
|
|
494
636
|
|
|
637
|
+
export type UniRefund_ContractService_Rebates_RebateTableHeaders_RebateTableHeaderFromTemplateCreateDto = {
|
|
638
|
+
id: string;
|
|
639
|
+
validFrom: string;
|
|
640
|
+
validTo: string;
|
|
641
|
+
};
|
|
642
|
+
|
|
495
643
|
export type UniRefund_ContractService_Rebates_RebateTableHeaders_RebateTableHeaderNotTemplateCreateDto = {
|
|
496
644
|
readonly extraProperties?: {
|
|
497
645
|
[key: string]: unknown;
|
|
498
646
|
} | null;
|
|
499
647
|
name: string;
|
|
500
648
|
calculateNetCommissionInsteadOfRefund?: boolean;
|
|
501
|
-
validFrom: string;
|
|
502
|
-
validTo: string;
|
|
503
649
|
rebateTableDetails?: Array<UniRefund_ContractService_Rebates_RebateTableDetails_RebateTableDetailCreateDto> | null;
|
|
504
650
|
processingFeeDetails?: Array<UniRefund_ContractService_Rebates_ProcessingFeeDetails_ProcessingFeeDetailCreateDto> | null;
|
|
651
|
+
validFrom: string;
|
|
652
|
+
validTo: string;
|
|
505
653
|
};
|
|
506
654
|
|
|
507
655
|
export type UniRefund_ContractService_Rebates_RebateTableHeaders_RebateTableHeaderUpdateDto = {
|
|
@@ -510,8 +658,6 @@ export type UniRefund_ContractService_Rebates_RebateTableHeaders_RebateTableHead
|
|
|
510
658
|
} | null;
|
|
511
659
|
name: string;
|
|
512
660
|
calculateNetCommissionInsteadOfRefund?: boolean;
|
|
513
|
-
validFrom: string;
|
|
514
|
-
validTo: string;
|
|
515
661
|
isTemplate?: boolean;
|
|
516
662
|
rebateTableDetails?: Array<UniRefund_ContractService_Rebates_RebateTableDetails_RebateTableDetailUpdateWithRandomIdDto> | null;
|
|
517
663
|
processingFeeDetails?: Array<UniRefund_ContractService_Rebates_ProcessingFeeDetails_ProcessingFeeDetailUpdateWithRandomIdDto> | null;
|
|
@@ -522,7 +668,7 @@ export type UniRefund_ContractService_Rebates_RebateTableHeaders_RebateTableHead
|
|
|
522
668
|
[key: string]: unknown;
|
|
523
669
|
} | null;
|
|
524
670
|
rebateTableHeaders?: Array<UniRefund_ContractService_Rebates_RebateTableHeaders_RebateTableHeaderNotTemplateCreateDto> | null;
|
|
525
|
-
|
|
671
|
+
rebateTableHeadersFromTemplate?: Array<UniRefund_ContractService_Rebates_RebateTableHeaders_RebateTableHeaderFromTemplateCreateDto> | null;
|
|
526
672
|
};
|
|
527
673
|
|
|
528
674
|
export type UniRefund_ContractService_Refunds_RefundFeeDetails_RefundFeeDetailCreateDto = {
|
|
@@ -578,8 +724,6 @@ export type UniRefund_ContractService_Refunds_RefundFeeHeaders_RefundFeeHeaderCr
|
|
|
578
724
|
[key: string]: unknown;
|
|
579
725
|
} | null;
|
|
580
726
|
name: string;
|
|
581
|
-
validFrom: string;
|
|
582
|
-
validTo: string;
|
|
583
727
|
isActive?: boolean;
|
|
584
728
|
};
|
|
585
729
|
|
|
@@ -593,8 +737,6 @@ export type UniRefund_ContractService_Refunds_RefundFeeHeaders_RefundFeeHeaderDt
|
|
|
593
737
|
deleterId?: string | null;
|
|
594
738
|
deletionTime?: string | null;
|
|
595
739
|
name: string;
|
|
596
|
-
validFrom: string;
|
|
597
|
-
validTo: string;
|
|
598
740
|
isActive?: boolean;
|
|
599
741
|
refundFeeDetails?: Array<UniRefund_ContractService_Refunds_RefundFeeDetails_RefundFeeDetailDto> | null;
|
|
600
742
|
};
|
|
@@ -604,8 +746,6 @@ export type UniRefund_ContractService_Refunds_RefundFeeHeaders_RefundFeeHeaderUp
|
|
|
604
746
|
[key: string]: unknown;
|
|
605
747
|
} | null;
|
|
606
748
|
name: string;
|
|
607
|
-
validFrom: string;
|
|
608
|
-
validTo: string;
|
|
609
749
|
isActive?: boolean;
|
|
610
750
|
};
|
|
611
751
|
|
|
@@ -657,8 +797,6 @@ export type UniRefund_ContractService_Refunds_RefundTableHeaders_RefundTableHead
|
|
|
657
797
|
name: string;
|
|
658
798
|
isDefault?: boolean;
|
|
659
799
|
isBundling?: boolean;
|
|
660
|
-
validFrom?: string | null;
|
|
661
|
-
validTo?: string | null;
|
|
662
800
|
};
|
|
663
801
|
|
|
664
802
|
export type UniRefund_ContractService_Refunds_RefundTableHeaders_RefundTableHeaderDto = {
|
|
@@ -673,8 +811,6 @@ export type UniRefund_ContractService_Refunds_RefundTableHeaders_RefundTableHead
|
|
|
673
811
|
name: string;
|
|
674
812
|
isDefault?: boolean;
|
|
675
813
|
isBundling?: boolean;
|
|
676
|
-
validFrom?: string | null;
|
|
677
|
-
validTo?: string | null;
|
|
678
814
|
refundTableDetails?: Array<UniRefund_ContractService_Refunds_RefundTableDetails_RefundTableDetailDto> | null;
|
|
679
815
|
};
|
|
680
816
|
|
|
@@ -685,8 +821,6 @@ export type UniRefund_ContractService_Refunds_RefundTableHeaders_RefundTableHead
|
|
|
685
821
|
name: string;
|
|
686
822
|
isDefault?: boolean;
|
|
687
823
|
isBundling?: boolean;
|
|
688
|
-
validFrom?: string | null;
|
|
689
|
-
validTo?: string | null;
|
|
690
824
|
};
|
|
691
825
|
|
|
692
826
|
export type UniRefund_LocationService_AddressCommonDatas_AddressCommonDataDto = {
|
|
@@ -1192,6 +1326,13 @@ export type PostApiContractServiceMerchantsContractsContractHeadersByIdRebateSet
|
|
|
1192
1326
|
|
|
1193
1327
|
export type PostApiContractServiceMerchantsContractsContractHeadersByIdRebateSettingsResponse = UniRefund_ContractService_Rebates_RebateSettings_RebateSettingDto;
|
|
1194
1328
|
|
|
1329
|
+
export type PutApiContractServiceMerchantsContractsContractHeadersByIdSetDefaultSettingData = {
|
|
1330
|
+
id: string;
|
|
1331
|
+
requestBody?: UniRefund_ContractService_ContractsForMerchant_ContractSettings_ContractSettingMakeDefaultDto;
|
|
1332
|
+
};
|
|
1333
|
+
|
|
1334
|
+
export type PutApiContractServiceMerchantsContractsContractHeadersByIdSetDefaultSettingResponse = UniRefund_ContractService_ContractsForMerchant_ContractSettings_ContractSettingDto;
|
|
1335
|
+
|
|
1195
1336
|
export type PostApiContractServiceMerchantsByIdContractsContractHeadersData = {
|
|
1196
1337
|
id: string;
|
|
1197
1338
|
requestBody?: UniRefund_ContractService_ContractsForMerchant_ContractHeaders_ContractHeaderForMerchantCreateDto;
|
|
@@ -1241,7 +1382,71 @@ export type GetApiContractServiceMerchantsContractsContractHeadersByIdGetMissing
|
|
|
1241
1382
|
id: string;
|
|
1242
1383
|
};
|
|
1243
1384
|
|
|
1244
|
-
export type GetApiContractServiceMerchantsContractsContractHeadersByIdGetMissingStepsResponse = Array<
|
|
1385
|
+
export type GetApiContractServiceMerchantsContractsContractHeadersByIdGetMissingStepsResponse = Array<UniRefund_ContractService_Enums_ContractHeaderForMerchantDraftMissingSteps>;
|
|
1386
|
+
|
|
1387
|
+
export type PostApiContractServiceRefundPointsByIdContractsContractHeadersData = {
|
|
1388
|
+
id: string;
|
|
1389
|
+
requestBody?: UniRefund_ContractService_ContractsForRefundPoint_ContractHeaders_ContractHeaderForRefundPointCreateDto;
|
|
1390
|
+
};
|
|
1391
|
+
|
|
1392
|
+
export type PostApiContractServiceRefundPointsByIdContractsContractHeadersResponse = UniRefund_ContractService_ContractsForRefundPoint_ContractHeaders_ContractHeaderForRefundPointDto;
|
|
1393
|
+
|
|
1394
|
+
export type GetApiContractServiceRefundPointsByIdContractsContractHeadersData = {
|
|
1395
|
+
id: string;
|
|
1396
|
+
isDraft?: boolean;
|
|
1397
|
+
maxResultCount?: number;
|
|
1398
|
+
skipCount?: number;
|
|
1399
|
+
sorting?: string;
|
|
1400
|
+
};
|
|
1401
|
+
|
|
1402
|
+
export type GetApiContractServiceRefundPointsByIdContractsContractHeadersResponse = PagedResultDto_ContractHeaderDetailForRefundPointDto;
|
|
1403
|
+
|
|
1404
|
+
export type DeleteApiContractServiceRefundPointsContractsContractHeadersByIdData = {
|
|
1405
|
+
id: string;
|
|
1406
|
+
};
|
|
1407
|
+
|
|
1408
|
+
export type DeleteApiContractServiceRefundPointsContractsContractHeadersByIdResponse = unknown;
|
|
1409
|
+
|
|
1410
|
+
export type GetApiContractServiceRefundPointsContractsContractHeadersByIdData = {
|
|
1411
|
+
id: string;
|
|
1412
|
+
};
|
|
1413
|
+
|
|
1414
|
+
export type GetApiContractServiceRefundPointsContractsContractHeadersByIdResponse = UniRefund_ContractService_ContractsForRefundPoint_ContractHeaders_ContractHeaderDetailForRefundPointDto;
|
|
1415
|
+
|
|
1416
|
+
export type PutApiContractServiceRefundPointsContractsContractHeadersByIdData = {
|
|
1417
|
+
id: string;
|
|
1418
|
+
requestBody?: UniRefund_ContractService_ContractHeaderRefundFeeHeaders_ContractHeaders_ContractHeaderForRefundPointUpdateDto;
|
|
1419
|
+
};
|
|
1420
|
+
|
|
1421
|
+
export type PutApiContractServiceRefundPointsContractsContractHeadersByIdResponse = UniRefund_ContractService_ContractsForRefundPoint_ContractHeaders_ContractHeaderDetailForRefundPointDto;
|
|
1422
|
+
|
|
1423
|
+
export type PostApiContractServiceRefundPointsByIdCalculateFeesData = {
|
|
1424
|
+
id: string;
|
|
1425
|
+
requestBody?: UniRefund_ContractService_ContractsForRefundPoint_ContractHeaders_CalculateFeesForRefundRequestDto;
|
|
1426
|
+
};
|
|
1427
|
+
|
|
1428
|
+
export type PostApiContractServiceRefundPointsByIdCalculateFeesResponse = UniRefund_ContractService_ContractsForRefundPoint_ContractHeaders_CalculateFeesForRefundResponseDto;
|
|
1429
|
+
|
|
1430
|
+
export type GetApiContractServiceRefundPointsContractsContractHeadersData = {
|
|
1431
|
+
isDraft?: boolean;
|
|
1432
|
+
maxResultCount?: number;
|
|
1433
|
+
skipCount?: number;
|
|
1434
|
+
sorting?: string;
|
|
1435
|
+
};
|
|
1436
|
+
|
|
1437
|
+
export type GetApiContractServiceRefundPointsContractsContractHeadersResponse = PagedResultDto_ContractHeaderForRefundPointDto;
|
|
1438
|
+
|
|
1439
|
+
export type GetApiContractServiceRefundPointsContractsContractHeadersByIdGetMissingStepsData = {
|
|
1440
|
+
id: string;
|
|
1441
|
+
};
|
|
1442
|
+
|
|
1443
|
+
export type GetApiContractServiceRefundPointsContractsContractHeadersByIdGetMissingStepsResponse = Array<UniRefund_ContractService_Enums_ContractHeaderForRefundPointDraftMissingSteps>;
|
|
1444
|
+
|
|
1445
|
+
export type PostApiContractServiceRefundPointsContractsContractHeadersByIdValidateData = {
|
|
1446
|
+
id: string;
|
|
1447
|
+
};
|
|
1448
|
+
|
|
1449
|
+
export type PostApiContractServiceRefundPointsContractsContractHeadersByIdValidateResponse = boolean;
|
|
1245
1450
|
|
|
1246
1451
|
export type GetApiContractServiceRebateTablesRebateSettingsByIdData = {
|
|
1247
1452
|
id: string;
|
|
@@ -1488,6 +1693,13 @@ export type DeleteApiContractServiceRefundTablesRefundFeeHeadersByIdData = {
|
|
|
1488
1693
|
|
|
1489
1694
|
export type DeleteApiContractServiceRefundTablesRefundFeeHeadersByIdResponse = unknown;
|
|
1490
1695
|
|
|
1696
|
+
export type GetApiContractServiceRefundTablesRefundFeeHeadersRefundPointsByIdData = {
|
|
1697
|
+
id: string;
|
|
1698
|
+
refundFeeHeaderId?: string;
|
|
1699
|
+
};
|
|
1700
|
+
|
|
1701
|
+
export type GetApiContractServiceRefundTablesRefundFeeHeadersRefundPointsByIdResponse = UniRefund_ContractService_Refunds_RefundFeeHeaders_RefundFeeHeaderDto;
|
|
1702
|
+
|
|
1491
1703
|
export type GetApiContractServiceRefundTablesRefundFeeHeadersData = {
|
|
1492
1704
|
maxResultCount?: number;
|
|
1493
1705
|
skipCount?: number;
|
|
@@ -2014,6 +2226,41 @@ export type $OpenApiTs = {
|
|
|
2014
2226
|
};
|
|
2015
2227
|
};
|
|
2016
2228
|
};
|
|
2229
|
+
'/api/contract-service/merchants/contracts/contract-headers/{id}/set-default-setting': {
|
|
2230
|
+
put: {
|
|
2231
|
+
req: PutApiContractServiceMerchantsContractsContractHeadersByIdSetDefaultSettingData;
|
|
2232
|
+
res: {
|
|
2233
|
+
/**
|
|
2234
|
+
* Success
|
|
2235
|
+
*/
|
|
2236
|
+
200: UniRefund_ContractService_ContractsForMerchant_ContractSettings_ContractSettingDto;
|
|
2237
|
+
/**
|
|
2238
|
+
* Bad Request
|
|
2239
|
+
*/
|
|
2240
|
+
400: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2241
|
+
/**
|
|
2242
|
+
* Unauthorized
|
|
2243
|
+
*/
|
|
2244
|
+
401: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2245
|
+
/**
|
|
2246
|
+
* Forbidden
|
|
2247
|
+
*/
|
|
2248
|
+
403: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2249
|
+
/**
|
|
2250
|
+
* Not Found
|
|
2251
|
+
*/
|
|
2252
|
+
404: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2253
|
+
/**
|
|
2254
|
+
* Server Error
|
|
2255
|
+
*/
|
|
2256
|
+
500: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2257
|
+
/**
|
|
2258
|
+
* Server Error
|
|
2259
|
+
*/
|
|
2260
|
+
501: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2261
|
+
};
|
|
2262
|
+
};
|
|
2263
|
+
};
|
|
2017
2264
|
'/api/contract-service/merchants/{id}/contracts/contract-headers': {
|
|
2018
2265
|
post: {
|
|
2019
2266
|
req: PostApiContractServiceMerchantsByIdContractsContractHeadersData;
|
|
@@ -2225,7 +2472,7 @@ export type $OpenApiTs = {
|
|
|
2225
2472
|
/**
|
|
2226
2473
|
* Success
|
|
2227
2474
|
*/
|
|
2228
|
-
200: Array<
|
|
2475
|
+
200: Array<UniRefund_ContractService_Enums_ContractHeaderForMerchantDraftMissingSteps>;
|
|
2229
2476
|
/**
|
|
2230
2477
|
* Bad Request
|
|
2231
2478
|
*/
|
|
@@ -2253,14 +2500,14 @@ export type $OpenApiTs = {
|
|
|
2253
2500
|
};
|
|
2254
2501
|
};
|
|
2255
2502
|
};
|
|
2256
|
-
'/api/contract-service/
|
|
2257
|
-
|
|
2258
|
-
req:
|
|
2503
|
+
'/api/contract-service/refund-points/{id}/contracts/contract-headers': {
|
|
2504
|
+
post: {
|
|
2505
|
+
req: PostApiContractServiceRefundPointsByIdContractsContractHeadersData;
|
|
2259
2506
|
res: {
|
|
2260
2507
|
/**
|
|
2261
2508
|
* Success
|
|
2262
2509
|
*/
|
|
2263
|
-
200:
|
|
2510
|
+
200: UniRefund_ContractService_ContractsForRefundPoint_ContractHeaders_ContractHeaderForRefundPointDto;
|
|
2264
2511
|
/**
|
|
2265
2512
|
* Bad Request
|
|
2266
2513
|
*/
|
|
@@ -2287,13 +2534,13 @@ export type $OpenApiTs = {
|
|
|
2287
2534
|
501: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2288
2535
|
};
|
|
2289
2536
|
};
|
|
2290
|
-
|
|
2291
|
-
req:
|
|
2537
|
+
get: {
|
|
2538
|
+
req: GetApiContractServiceRefundPointsByIdContractsContractHeadersData;
|
|
2292
2539
|
res: {
|
|
2293
2540
|
/**
|
|
2294
2541
|
* Success
|
|
2295
2542
|
*/
|
|
2296
|
-
200:
|
|
2543
|
+
200: PagedResultDto_ContractHeaderDetailForRefundPointDto;
|
|
2297
2544
|
/**
|
|
2298
2545
|
* Bad Request
|
|
2299
2546
|
*/
|
|
@@ -2321,14 +2568,14 @@ export type $OpenApiTs = {
|
|
|
2321
2568
|
};
|
|
2322
2569
|
};
|
|
2323
2570
|
};
|
|
2324
|
-
'/api/contract-service/
|
|
2325
|
-
|
|
2326
|
-
req:
|
|
2571
|
+
'/api/contract-service/refund-points/contracts/contract-headers/{id}': {
|
|
2572
|
+
delete: {
|
|
2573
|
+
req: DeleteApiContractServiceRefundPointsContractsContractHeadersByIdData;
|
|
2327
2574
|
res: {
|
|
2328
2575
|
/**
|
|
2329
2576
|
* Success
|
|
2330
2577
|
*/
|
|
2331
|
-
200:
|
|
2578
|
+
200: unknown;
|
|
2332
2579
|
/**
|
|
2333
2580
|
* Bad Request
|
|
2334
2581
|
*/
|
|
@@ -2355,15 +2602,13 @@ export type $OpenApiTs = {
|
|
|
2355
2602
|
501: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2356
2603
|
};
|
|
2357
2604
|
};
|
|
2358
|
-
|
|
2359
|
-
|
|
2360
|
-
post: {
|
|
2361
|
-
req: PostApiContractServiceRebateTablesRebateSettingsByIdMinimumNetCommissionsData;
|
|
2605
|
+
get: {
|
|
2606
|
+
req: GetApiContractServiceRefundPointsContractsContractHeadersByIdData;
|
|
2362
2607
|
res: {
|
|
2363
2608
|
/**
|
|
2364
2609
|
* Success
|
|
2365
2610
|
*/
|
|
2366
|
-
200:
|
|
2611
|
+
200: UniRefund_ContractService_ContractsForRefundPoint_ContractHeaders_ContractHeaderDetailForRefundPointDto;
|
|
2367
2612
|
/**
|
|
2368
2613
|
* Bad Request
|
|
2369
2614
|
*/
|
|
@@ -2390,15 +2635,13 @@ export type $OpenApiTs = {
|
|
|
2390
2635
|
501: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2391
2636
|
};
|
|
2392
2637
|
};
|
|
2393
|
-
|
|
2394
|
-
|
|
2395
|
-
get: {
|
|
2396
|
-
req: GetApiContractServiceRebateTablesRebateSettingsDetailByIdData;
|
|
2638
|
+
put: {
|
|
2639
|
+
req: PutApiContractServiceRefundPointsContractsContractHeadersByIdData;
|
|
2397
2640
|
res: {
|
|
2398
2641
|
/**
|
|
2399
2642
|
* Success
|
|
2400
2643
|
*/
|
|
2401
|
-
200:
|
|
2644
|
+
200: UniRefund_ContractService_ContractsForRefundPoint_ContractHeaders_ContractHeaderDetailForRefundPointDto;
|
|
2402
2645
|
/**
|
|
2403
2646
|
* Bad Request
|
|
2404
2647
|
*/
|
|
@@ -2426,14 +2669,14 @@ export type $OpenApiTs = {
|
|
|
2426
2669
|
};
|
|
2427
2670
|
};
|
|
2428
2671
|
};
|
|
2429
|
-
'/api/contract-service/
|
|
2430
|
-
|
|
2431
|
-
req:
|
|
2672
|
+
'/api/contract-service/refund-points/{id}/calculate-fees': {
|
|
2673
|
+
post: {
|
|
2674
|
+
req: PostApiContractServiceRefundPointsByIdCalculateFeesData;
|
|
2432
2675
|
res: {
|
|
2433
2676
|
/**
|
|
2434
2677
|
* Success
|
|
2435
2678
|
*/
|
|
2436
|
-
200:
|
|
2679
|
+
200: UniRefund_ContractService_ContractsForRefundPoint_ContractHeaders_CalculateFeesForRefundResponseDto;
|
|
2437
2680
|
/**
|
|
2438
2681
|
* Bad Request
|
|
2439
2682
|
*/
|
|
@@ -2460,9 +2703,322 @@ export type $OpenApiTs = {
|
|
|
2460
2703
|
501: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2461
2704
|
};
|
|
2462
2705
|
};
|
|
2463
|
-
|
|
2464
|
-
|
|
2465
|
-
|
|
2706
|
+
};
|
|
2707
|
+
'/api/contract-service/refund-points/contracts/contract-headers': {
|
|
2708
|
+
get: {
|
|
2709
|
+
req: GetApiContractServiceRefundPointsContractsContractHeadersData;
|
|
2710
|
+
res: {
|
|
2711
|
+
/**
|
|
2712
|
+
* Success
|
|
2713
|
+
*/
|
|
2714
|
+
200: PagedResultDto_ContractHeaderForRefundPointDto;
|
|
2715
|
+
/**
|
|
2716
|
+
* Bad Request
|
|
2717
|
+
*/
|
|
2718
|
+
400: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2719
|
+
/**
|
|
2720
|
+
* Unauthorized
|
|
2721
|
+
*/
|
|
2722
|
+
401: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2723
|
+
/**
|
|
2724
|
+
* Forbidden
|
|
2725
|
+
*/
|
|
2726
|
+
403: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2727
|
+
/**
|
|
2728
|
+
* Not Found
|
|
2729
|
+
*/
|
|
2730
|
+
404: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2731
|
+
/**
|
|
2732
|
+
* Server Error
|
|
2733
|
+
*/
|
|
2734
|
+
500: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2735
|
+
/**
|
|
2736
|
+
* Server Error
|
|
2737
|
+
*/
|
|
2738
|
+
501: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2739
|
+
};
|
|
2740
|
+
};
|
|
2741
|
+
};
|
|
2742
|
+
'/api/contract-service/refund-points/contracts/contract-headers/{id}/get-missing-steps': {
|
|
2743
|
+
get: {
|
|
2744
|
+
req: GetApiContractServiceRefundPointsContractsContractHeadersByIdGetMissingStepsData;
|
|
2745
|
+
res: {
|
|
2746
|
+
/**
|
|
2747
|
+
* Success
|
|
2748
|
+
*/
|
|
2749
|
+
200: Array<UniRefund_ContractService_Enums_ContractHeaderForRefundPointDraftMissingSteps>;
|
|
2750
|
+
/**
|
|
2751
|
+
* Bad Request
|
|
2752
|
+
*/
|
|
2753
|
+
400: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2754
|
+
/**
|
|
2755
|
+
* Unauthorized
|
|
2756
|
+
*/
|
|
2757
|
+
401: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2758
|
+
/**
|
|
2759
|
+
* Forbidden
|
|
2760
|
+
*/
|
|
2761
|
+
403: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2762
|
+
/**
|
|
2763
|
+
* Not Found
|
|
2764
|
+
*/
|
|
2765
|
+
404: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2766
|
+
/**
|
|
2767
|
+
* Server Error
|
|
2768
|
+
*/
|
|
2769
|
+
500: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2770
|
+
/**
|
|
2771
|
+
* Server Error
|
|
2772
|
+
*/
|
|
2773
|
+
501: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2774
|
+
};
|
|
2775
|
+
};
|
|
2776
|
+
};
|
|
2777
|
+
'/api/contract-service/refund-points/contracts/contract-headers/{id}/validate': {
|
|
2778
|
+
post: {
|
|
2779
|
+
req: PostApiContractServiceRefundPointsContractsContractHeadersByIdValidateData;
|
|
2780
|
+
res: {
|
|
2781
|
+
/**
|
|
2782
|
+
* Success
|
|
2783
|
+
*/
|
|
2784
|
+
200: boolean;
|
|
2785
|
+
/**
|
|
2786
|
+
* Bad Request
|
|
2787
|
+
*/
|
|
2788
|
+
400: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2789
|
+
/**
|
|
2790
|
+
* Unauthorized
|
|
2791
|
+
*/
|
|
2792
|
+
401: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2793
|
+
/**
|
|
2794
|
+
* Forbidden
|
|
2795
|
+
*/
|
|
2796
|
+
403: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2797
|
+
/**
|
|
2798
|
+
* Not Found
|
|
2799
|
+
*/
|
|
2800
|
+
404: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2801
|
+
/**
|
|
2802
|
+
* Server Error
|
|
2803
|
+
*/
|
|
2804
|
+
500: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2805
|
+
/**
|
|
2806
|
+
* Server Error
|
|
2807
|
+
*/
|
|
2808
|
+
501: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2809
|
+
};
|
|
2810
|
+
};
|
|
2811
|
+
};
|
|
2812
|
+
'/api/contract-service/rebate-tables/rebate-settings/{id}': {
|
|
2813
|
+
get: {
|
|
2814
|
+
req: GetApiContractServiceRebateTablesRebateSettingsByIdData;
|
|
2815
|
+
res: {
|
|
2816
|
+
/**
|
|
2817
|
+
* Success
|
|
2818
|
+
*/
|
|
2819
|
+
200: UniRefund_ContractService_Rebates_RebateSettings_RebateSettingDto;
|
|
2820
|
+
/**
|
|
2821
|
+
* Bad Request
|
|
2822
|
+
*/
|
|
2823
|
+
400: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2824
|
+
/**
|
|
2825
|
+
* Unauthorized
|
|
2826
|
+
*/
|
|
2827
|
+
401: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2828
|
+
/**
|
|
2829
|
+
* Forbidden
|
|
2830
|
+
*/
|
|
2831
|
+
403: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2832
|
+
/**
|
|
2833
|
+
* Not Found
|
|
2834
|
+
*/
|
|
2835
|
+
404: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2836
|
+
/**
|
|
2837
|
+
* Server Error
|
|
2838
|
+
*/
|
|
2839
|
+
500: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2840
|
+
/**
|
|
2841
|
+
* Server Error
|
|
2842
|
+
*/
|
|
2843
|
+
501: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2844
|
+
};
|
|
2845
|
+
};
|
|
2846
|
+
put: {
|
|
2847
|
+
req: PutApiContractServiceRebateTablesRebateSettingsByIdData;
|
|
2848
|
+
res: {
|
|
2849
|
+
/**
|
|
2850
|
+
* Success
|
|
2851
|
+
*/
|
|
2852
|
+
200: UniRefund_ContractService_Rebates_RebateSettings_RebateSettingDto;
|
|
2853
|
+
/**
|
|
2854
|
+
* Bad Request
|
|
2855
|
+
*/
|
|
2856
|
+
400: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2857
|
+
/**
|
|
2858
|
+
* Unauthorized
|
|
2859
|
+
*/
|
|
2860
|
+
401: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2861
|
+
/**
|
|
2862
|
+
* Forbidden
|
|
2863
|
+
*/
|
|
2864
|
+
403: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2865
|
+
/**
|
|
2866
|
+
* Not Found
|
|
2867
|
+
*/
|
|
2868
|
+
404: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2869
|
+
/**
|
|
2870
|
+
* Server Error
|
|
2871
|
+
*/
|
|
2872
|
+
500: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2873
|
+
/**
|
|
2874
|
+
* Server Error
|
|
2875
|
+
*/
|
|
2876
|
+
501: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2877
|
+
};
|
|
2878
|
+
};
|
|
2879
|
+
};
|
|
2880
|
+
'/api/contract-service/rebate-tables/rebate-settings/{id}/rebate-table-headers': {
|
|
2881
|
+
post: {
|
|
2882
|
+
req: PostApiContractServiceRebateTablesRebateSettingsByIdRebateTableHeadersData;
|
|
2883
|
+
res: {
|
|
2884
|
+
/**
|
|
2885
|
+
* Success
|
|
2886
|
+
*/
|
|
2887
|
+
200: UniRefund_ContractService_Rebates_RebateSettings_RebateSettingDto;
|
|
2888
|
+
/**
|
|
2889
|
+
* Bad Request
|
|
2890
|
+
*/
|
|
2891
|
+
400: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2892
|
+
/**
|
|
2893
|
+
* Unauthorized
|
|
2894
|
+
*/
|
|
2895
|
+
401: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2896
|
+
/**
|
|
2897
|
+
* Forbidden
|
|
2898
|
+
*/
|
|
2899
|
+
403: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2900
|
+
/**
|
|
2901
|
+
* Not Found
|
|
2902
|
+
*/
|
|
2903
|
+
404: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2904
|
+
/**
|
|
2905
|
+
* Server Error
|
|
2906
|
+
*/
|
|
2907
|
+
500: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2908
|
+
/**
|
|
2909
|
+
* Server Error
|
|
2910
|
+
*/
|
|
2911
|
+
501: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2912
|
+
};
|
|
2913
|
+
};
|
|
2914
|
+
};
|
|
2915
|
+
'/api/contract-service/rebate-tables/rebate-settings/{id}/minimum-net-commissions': {
|
|
2916
|
+
post: {
|
|
2917
|
+
req: PostApiContractServiceRebateTablesRebateSettingsByIdMinimumNetCommissionsData;
|
|
2918
|
+
res: {
|
|
2919
|
+
/**
|
|
2920
|
+
* Success
|
|
2921
|
+
*/
|
|
2922
|
+
200: UniRefund_ContractService_Rebates_MinimumNetCommissions_MinimumNetCommissionDto;
|
|
2923
|
+
/**
|
|
2924
|
+
* Bad Request
|
|
2925
|
+
*/
|
|
2926
|
+
400: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2927
|
+
/**
|
|
2928
|
+
* Unauthorized
|
|
2929
|
+
*/
|
|
2930
|
+
401: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2931
|
+
/**
|
|
2932
|
+
* Forbidden
|
|
2933
|
+
*/
|
|
2934
|
+
403: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2935
|
+
/**
|
|
2936
|
+
* Not Found
|
|
2937
|
+
*/
|
|
2938
|
+
404: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2939
|
+
/**
|
|
2940
|
+
* Server Error
|
|
2941
|
+
*/
|
|
2942
|
+
500: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2943
|
+
/**
|
|
2944
|
+
* Server Error
|
|
2945
|
+
*/
|
|
2946
|
+
501: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2947
|
+
};
|
|
2948
|
+
};
|
|
2949
|
+
};
|
|
2950
|
+
'/api/contract-service/rebate-tables/rebate-settings/detail/{id}': {
|
|
2951
|
+
get: {
|
|
2952
|
+
req: GetApiContractServiceRebateTablesRebateSettingsDetailByIdData;
|
|
2953
|
+
res: {
|
|
2954
|
+
/**
|
|
2955
|
+
* Success
|
|
2956
|
+
*/
|
|
2957
|
+
200: UniRefund_ContractService_Rebates_RebateSettings_RebateSettingDto;
|
|
2958
|
+
/**
|
|
2959
|
+
* Bad Request
|
|
2960
|
+
*/
|
|
2961
|
+
400: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2962
|
+
/**
|
|
2963
|
+
* Unauthorized
|
|
2964
|
+
*/
|
|
2965
|
+
401: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2966
|
+
/**
|
|
2967
|
+
* Forbidden
|
|
2968
|
+
*/
|
|
2969
|
+
403: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2970
|
+
/**
|
|
2971
|
+
* Not Found
|
|
2972
|
+
*/
|
|
2973
|
+
404: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2974
|
+
/**
|
|
2975
|
+
* Server Error
|
|
2976
|
+
*/
|
|
2977
|
+
500: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2978
|
+
/**
|
|
2979
|
+
* Server Error
|
|
2980
|
+
*/
|
|
2981
|
+
501: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2982
|
+
};
|
|
2983
|
+
};
|
|
2984
|
+
};
|
|
2985
|
+
'/api/contract-service/rebate-tables/minimum-net-commissions/{id}': {
|
|
2986
|
+
get: {
|
|
2987
|
+
req: GetApiContractServiceRebateTablesMinimumNetCommissionsByIdData;
|
|
2988
|
+
res: {
|
|
2989
|
+
/**
|
|
2990
|
+
* Success
|
|
2991
|
+
*/
|
|
2992
|
+
200: UniRefund_ContractService_Rebates_MinimumNetCommissions_MinimumNetCommissionDto;
|
|
2993
|
+
/**
|
|
2994
|
+
* Bad Request
|
|
2995
|
+
*/
|
|
2996
|
+
400: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2997
|
+
/**
|
|
2998
|
+
* Unauthorized
|
|
2999
|
+
*/
|
|
3000
|
+
401: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
3001
|
+
/**
|
|
3002
|
+
* Forbidden
|
|
3003
|
+
*/
|
|
3004
|
+
403: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
3005
|
+
/**
|
|
3006
|
+
* Not Found
|
|
3007
|
+
*/
|
|
3008
|
+
404: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
3009
|
+
/**
|
|
3010
|
+
* Server Error
|
|
3011
|
+
*/
|
|
3012
|
+
500: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
3013
|
+
/**
|
|
3014
|
+
* Server Error
|
|
3015
|
+
*/
|
|
3016
|
+
501: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
3017
|
+
};
|
|
3018
|
+
};
|
|
3019
|
+
put: {
|
|
3020
|
+
req: PutApiContractServiceRebateTablesMinimumNetCommissionsByIdData;
|
|
3021
|
+
res: {
|
|
2466
3022
|
/**
|
|
2467
3023
|
* Success
|
|
2468
3024
|
*/
|
|
@@ -3514,6 +4070,41 @@ export type $OpenApiTs = {
|
|
|
3514
4070
|
};
|
|
3515
4071
|
};
|
|
3516
4072
|
};
|
|
4073
|
+
'/api/contract-service/refund-tables/refund-fee-headers/refund-points/{id}': {
|
|
4074
|
+
get: {
|
|
4075
|
+
req: GetApiContractServiceRefundTablesRefundFeeHeadersRefundPointsByIdData;
|
|
4076
|
+
res: {
|
|
4077
|
+
/**
|
|
4078
|
+
* Success
|
|
4079
|
+
*/
|
|
4080
|
+
200: UniRefund_ContractService_Refunds_RefundFeeHeaders_RefundFeeHeaderDto;
|
|
4081
|
+
/**
|
|
4082
|
+
* Bad Request
|
|
4083
|
+
*/
|
|
4084
|
+
400: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
4085
|
+
/**
|
|
4086
|
+
* Unauthorized
|
|
4087
|
+
*/
|
|
4088
|
+
401: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
4089
|
+
/**
|
|
4090
|
+
* Forbidden
|
|
4091
|
+
*/
|
|
4092
|
+
403: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
4093
|
+
/**
|
|
4094
|
+
* Not Found
|
|
4095
|
+
*/
|
|
4096
|
+
404: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
4097
|
+
/**
|
|
4098
|
+
* Server Error
|
|
4099
|
+
*/
|
|
4100
|
+
500: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
4101
|
+
/**
|
|
4102
|
+
* Server Error
|
|
4103
|
+
*/
|
|
4104
|
+
501: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
4105
|
+
};
|
|
4106
|
+
};
|
|
4107
|
+
};
|
|
3517
4108
|
'/api/contract-service/refund-tables/refund-fee-headers': {
|
|
3518
4109
|
get: {
|
|
3519
4110
|
req: GetApiContractServiceRefundTablesRefundFeeHeadersData;
|