@ayasofyazilim/saas 0.0.52 → 0.0.53
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/ContractService/ContractServiceClient.ts +3 -3
- package/ContractService/schemas.gen.ts +2236 -532
- package/ContractService/services.gen.ts +178 -114
- package/ContractService/types.gen.ts +372 -166
- package/package.json +1 -1
|
@@ -1,6 +1,24 @@
|
|
|
1
1
|
// This file is auto-generated by @hey-api/openapi-ts
|
|
2
2
|
|
|
3
|
-
export type
|
|
3
|
+
export type UniRefund_CRMService_Individuals_IndividualIdNameDto = {
|
|
4
|
+
id?: string;
|
|
5
|
+
name?: string | null;
|
|
6
|
+
};
|
|
7
|
+
|
|
8
|
+
export type UniRefund_CRMService_Merchants_MerchantBasicInformationDto = {
|
|
9
|
+
id?: string;
|
|
10
|
+
name?: string | null;
|
|
11
|
+
taxOffice?: UniRefund_CRMService_TaxOffices_TaxOfficeIdNameDto;
|
|
12
|
+
numberOfStores?: number;
|
|
13
|
+
accountManagers?: Array<UniRefund_CRMService_Individuals_IndividualIdNameDto> | null;
|
|
14
|
+
};
|
|
15
|
+
|
|
16
|
+
export type UniRefund_CRMService_TaxOffices_TaxOfficeIdNameDto = {
|
|
17
|
+
id?: string;
|
|
18
|
+
name?: string | null;
|
|
19
|
+
};
|
|
20
|
+
|
|
21
|
+
export type UniRefund_ContractService_ContractsForMerchant_ContractHeaderRefundTableHeaders_ContractHeaderRefundTableHeaderCreateDto = {
|
|
4
22
|
readonly extraProperties?: {
|
|
5
23
|
[key: string]: unknown;
|
|
6
24
|
} | null;
|
|
@@ -8,7 +26,7 @@ export type UniRefund_ContractService_Contracts_ContractHeaderRefundTableHeaders
|
|
|
8
26
|
isDefault?: boolean;
|
|
9
27
|
};
|
|
10
28
|
|
|
11
|
-
export type
|
|
29
|
+
export type UniRefund_ContractService_ContractsForMerchant_ContractHeaderRefundTableHeaders_ContractHeaderRefundTableHeaderDto = {
|
|
12
30
|
id: string;
|
|
13
31
|
creationTime?: string;
|
|
14
32
|
creatorId?: string | null;
|
|
@@ -21,18 +39,47 @@ export type UniRefund_ContractService_Contracts_ContractHeaderRefundTableHeaders
|
|
|
21
39
|
isDefault?: boolean;
|
|
22
40
|
};
|
|
23
41
|
|
|
24
|
-
export type
|
|
42
|
+
export type UniRefund_ContractService_ContractsForMerchant_ContractHeaderRefundTableHeaders_ContractHeaderRefundTableHeaderForMerchantUpdateDto = {
|
|
25
43
|
readonly extraProperties?: {
|
|
26
44
|
[key: string]: unknown;
|
|
27
45
|
} | null;
|
|
28
|
-
|
|
29
|
-
|
|
46
|
+
id?: string;
|
|
47
|
+
isDefault?: boolean;
|
|
48
|
+
};
|
|
49
|
+
|
|
50
|
+
export type UniRefund_ContractService_ContractsForMerchant_ContractHeaders_ContractHeaderDetailForMerchantDto = {
|
|
51
|
+
id: string;
|
|
52
|
+
creationTime?: string;
|
|
53
|
+
creatorId?: string | null;
|
|
54
|
+
lastModificationTime?: string | null;
|
|
55
|
+
lastModifierId?: string | null;
|
|
56
|
+
isDeleted?: boolean;
|
|
57
|
+
deleterId?: string | null;
|
|
58
|
+
deletionTime?: string | null;
|
|
59
|
+
name: string;
|
|
60
|
+
contractTypeIdentifier: string;
|
|
61
|
+
webSite?: string | null;
|
|
62
|
+
merchantClassification: UniRefund_ContractService_Enums_MerchantClassification;
|
|
63
|
+
merchantBasicInformationDto?: UniRefund_CRMService_Merchants_MerchantBasicInformationDto;
|
|
64
|
+
contractType: UniRefund_ContractService_Enums_ContractType;
|
|
65
|
+
addressCommonData: UniRefund_LocationService_AddressCommonDatas_AddressCommonDataDto;
|
|
66
|
+
contractHeaderRefundTableHeaders: Array<UniRefund_ContractService_ContractsForMerchant_ContractHeaderRefundTableHeaders_ContractHeaderRefundTableHeaderDto>;
|
|
67
|
+
};
|
|
68
|
+
|
|
69
|
+
export type UniRefund_ContractService_ContractsForMerchant_ContractHeaders_ContractHeaderForMerchantCreateDto = {
|
|
70
|
+
readonly extraProperties?: {
|
|
71
|
+
[key: string]: unknown;
|
|
72
|
+
} | null;
|
|
73
|
+
contractTypeIdentifier: string;
|
|
74
|
+
webSite?: string | null;
|
|
75
|
+
merchantClassification: UniRefund_ContractService_Enums_MerchantClassification;
|
|
76
|
+
addressCommonData: UniRefund_LocationService_AddressCommonDatas_AddressCommonDataCreateDto;
|
|
30
77
|
rebateSetting: UniRefund_ContractService_Rebates_RebateSettings_RebateSettingCreateDto;
|
|
31
|
-
contractSettings: Array<
|
|
32
|
-
refundTableHeaders?: Array<
|
|
78
|
+
contractSettings: Array<UniRefund_ContractService_ContractsForMerchant_ContractSettings_ContractSettingCreateDto>;
|
|
79
|
+
refundTableHeaders?: Array<UniRefund_ContractService_ContractsForMerchant_ContractHeaderRefundTableHeaders_ContractHeaderRefundTableHeaderCreateDto> | null;
|
|
33
80
|
};
|
|
34
81
|
|
|
35
|
-
export type
|
|
82
|
+
export type UniRefund_ContractService_ContractsForMerchant_ContractHeaders_ContractHeaderForMerchantDto = {
|
|
36
83
|
id: string;
|
|
37
84
|
creationTime?: string;
|
|
38
85
|
creatorId?: string | null;
|
|
@@ -41,22 +88,26 @@ export type UniRefund_ContractService_Contracts_ContractHeaders_ContractHeaderDt
|
|
|
41
88
|
isDeleted?: boolean;
|
|
42
89
|
deleterId?: string | null;
|
|
43
90
|
deletionTime?: string | null;
|
|
44
|
-
|
|
45
|
-
|
|
91
|
+
name: string;
|
|
92
|
+
contractTypeIdentifier: string;
|
|
93
|
+
contractType: UniRefund_ContractService_Enums_ContractType;
|
|
94
|
+
addressCommonData: UniRefund_LocationService_AddressCommonDatas_AddressCommonDataDto;
|
|
46
95
|
rebateSetting: UniRefund_ContractService_Rebates_RebateSettings_RebateSettingDto;
|
|
47
|
-
contractHeaderRefundTableHeaders: Array<
|
|
48
|
-
contractSettings: Array<
|
|
96
|
+
contractHeaderRefundTableHeaders: Array<UniRefund_ContractService_ContractsForMerchant_ContractHeaderRefundTableHeaders_ContractHeaderRefundTableHeaderDto>;
|
|
97
|
+
contractSettings: Array<UniRefund_ContractService_ContractsForMerchant_ContractSettings_ContractSettingDto>;
|
|
49
98
|
};
|
|
50
99
|
|
|
51
|
-
export type
|
|
100
|
+
export type UniRefund_ContractService_ContractsForMerchant_ContractHeaders_ContractHeaderForMerchantUpdateDto = {
|
|
52
101
|
readonly extraProperties?: {
|
|
53
102
|
[key: string]: unknown;
|
|
54
103
|
} | null;
|
|
55
|
-
|
|
56
|
-
|
|
104
|
+
webSite?: string | null;
|
|
105
|
+
merchantClassification: UniRefund_ContractService_Enums_MerchantClassification;
|
|
106
|
+
addressCommonData?: UniRefund_LocationService_AddressCommonDatas_AddressCommonDataUpdateDto;
|
|
107
|
+
contractHeaderRefundTableHeaders?: Array<UniRefund_ContractService_ContractsForMerchant_ContractHeaderRefundTableHeaders_ContractHeaderRefundTableHeaderForMerchantUpdateDto> | null;
|
|
57
108
|
};
|
|
58
109
|
|
|
59
|
-
export type
|
|
110
|
+
export type UniRefund_ContractService_ContractsForMerchant_ContractSettings_ContractSettingCreateDto = {
|
|
60
111
|
readonly extraProperties?: {
|
|
61
112
|
[key: string]: unknown;
|
|
62
113
|
} | null;
|
|
@@ -67,7 +118,7 @@ export type UniRefund_ContractService_Contracts_ContractSettings_ContractSetting
|
|
|
67
118
|
termOfPayment: number;
|
|
68
119
|
deliveryFee?: boolean;
|
|
69
120
|
factoring?: boolean;
|
|
70
|
-
|
|
121
|
+
invoicingAddressCommonData: UniRefund_LocationService_AddressCommonDatas_AddressCommonDataCreateDto;
|
|
71
122
|
invoiceChannel: UniRefund_ContractService_Enums_InvoiceChannel;
|
|
72
123
|
eTaxFree?: boolean;
|
|
73
124
|
receiptType: UniRefund_ContractService_Enums_ReceiptType;
|
|
@@ -76,10 +127,9 @@ export type UniRefund_ContractService_Contracts_ContractSettings_ContractSetting
|
|
|
76
127
|
goodsHaveSerialNumbers?: boolean;
|
|
77
128
|
excludeFromCashLimit?: boolean;
|
|
78
129
|
deskoScanner?: boolean;
|
|
79
|
-
contractStores?: Array<UniRefund_ContractService_Contracts_ContractStores_ContractStoreCreateDto> | null;
|
|
80
130
|
};
|
|
81
131
|
|
|
82
|
-
export type
|
|
132
|
+
export type UniRefund_ContractService_ContractsForMerchant_ContractSettings_ContractSettingDto = {
|
|
83
133
|
id: string;
|
|
84
134
|
creationTime?: string;
|
|
85
135
|
creatorId?: string | null;
|
|
@@ -95,7 +145,7 @@ export type UniRefund_ContractService_Contracts_ContractSettings_ContractSetting
|
|
|
95
145
|
termOfPayment: number;
|
|
96
146
|
deliveryFee?: boolean;
|
|
97
147
|
factoring?: boolean;
|
|
98
|
-
|
|
148
|
+
invoicingAddressCommonData: UniRefund_LocationService_AddressCommonDatas_AddressCommonDataDto;
|
|
99
149
|
invoiceChannel: UniRefund_ContractService_Enums_InvoiceChannel;
|
|
100
150
|
eTaxFree?: boolean;
|
|
101
151
|
receiptType: UniRefund_ContractService_Enums_ReceiptType;
|
|
@@ -105,10 +155,9 @@ export type UniRefund_ContractService_Contracts_ContractSettings_ContractSetting
|
|
|
105
155
|
excludeFromCashLimit?: boolean;
|
|
106
156
|
deskoScanner?: boolean;
|
|
107
157
|
contractHeaderId?: string;
|
|
108
|
-
contractStores?: Array<UniRefund_ContractService_Contracts_ContractStores_ContractStoreDto> | null;
|
|
109
158
|
};
|
|
110
159
|
|
|
111
|
-
export type
|
|
160
|
+
export type UniRefund_ContractService_ContractsForMerchant_ContractSettings_ContractSettingUpdateDto = {
|
|
112
161
|
readonly extraProperties?: {
|
|
113
162
|
[key: string]: unknown;
|
|
114
163
|
} | null;
|
|
@@ -119,7 +168,7 @@ export type UniRefund_ContractService_Contracts_ContractSettings_ContractSetting
|
|
|
119
168
|
termOfPayment: number;
|
|
120
169
|
deliveryFee?: boolean;
|
|
121
170
|
factoring?: boolean;
|
|
122
|
-
|
|
171
|
+
invoicingAddressCommonData: UniRefund_LocationService_AddressCommonDatas_AddressCommonDataUpdateDto;
|
|
123
172
|
invoiceChannel: UniRefund_ContractService_Enums_InvoiceChannel;
|
|
124
173
|
eTaxFree?: boolean;
|
|
125
174
|
receiptType: UniRefund_ContractService_Enums_ReceiptType;
|
|
@@ -130,15 +179,15 @@ export type UniRefund_ContractService_Contracts_ContractSettings_ContractSetting
|
|
|
130
179
|
deskoScanner?: boolean;
|
|
131
180
|
};
|
|
132
181
|
|
|
133
|
-
export type
|
|
182
|
+
export type UniRefund_ContractService_ContractsForMerchant_ContractStores_ContractStoreCreateDto = {
|
|
134
183
|
readonly extraProperties?: {
|
|
135
184
|
[key: string]: unknown;
|
|
136
185
|
} | null;
|
|
137
|
-
|
|
186
|
+
contractTypeIdentifiersSubId: string;
|
|
138
187
|
receiptType: UniRefund_ContractService_Enums_ReceiptType;
|
|
139
188
|
};
|
|
140
189
|
|
|
141
|
-
export type
|
|
190
|
+
export type UniRefund_ContractService_ContractsForMerchant_ContractStores_ContractStoreDto = {
|
|
142
191
|
id: string;
|
|
143
192
|
creationTime?: string;
|
|
144
193
|
creatorId?: string | null;
|
|
@@ -147,24 +196,29 @@ export type UniRefund_ContractService_Contracts_ContractStores_ContractStoreDto
|
|
|
147
196
|
isDeleted?: boolean;
|
|
148
197
|
deleterId?: string | null;
|
|
149
198
|
deletionTime?: string | null;
|
|
150
|
-
|
|
199
|
+
contractTypeIdentifiersSubId: string;
|
|
151
200
|
receiptType: UniRefund_ContractService_Enums_ReceiptType;
|
|
152
201
|
};
|
|
153
202
|
|
|
154
|
-
export type
|
|
203
|
+
export type UniRefund_ContractService_ContractsForMerchant_ContractStores_ContractStoreUpdateDto = {
|
|
155
204
|
readonly extraProperties?: {
|
|
156
205
|
[key: string]: unknown;
|
|
157
206
|
} | null;
|
|
158
|
-
|
|
207
|
+
contractTypeIdentifiersSubId: string;
|
|
208
|
+
contractSettingId: string;
|
|
159
209
|
receiptType: UniRefund_ContractService_Enums_ReceiptType;
|
|
160
210
|
};
|
|
161
211
|
|
|
212
|
+
export type UniRefund_ContractService_Enums_ContractType = 'Merchant' | 'RefundPoint';
|
|
213
|
+
|
|
162
214
|
export type UniRefund_ContractService_Enums_FeeType = 'TouristFee' | 'TouristBonusFee' | 'AgentFee' | 'AirportFee';
|
|
163
215
|
|
|
164
216
|
export type UniRefund_ContractService_Enums_InvoiceChannel = 'ElectronicInvoice' | 'Email' | 'PaperInvoice';
|
|
165
217
|
|
|
166
218
|
export type UniRefund_ContractService_Enums_InvoicingFrequency = 'OneTimePerMonth' | 'TwoTimesPerMonth';
|
|
167
219
|
|
|
220
|
+
export type UniRefund_ContractService_Enums_MerchantClassification = 'Excellent' | 'Good' | 'Satisfactory' | 'Low';
|
|
221
|
+
|
|
168
222
|
export type UniRefund_ContractService_Enums_RebateStatementPeriod = 'None' | 'Monthly' | 'Quarterly' | 'BiAnnually' | 'Annually';
|
|
169
223
|
|
|
170
224
|
export type UniRefund_ContractService_Enums_ReceiptType = 'NoBarcodeNumber' | 'NoBarcodeText' | 'Barcode' | 'QRCodeIntegration' | 'UniRefundVoucherIntegration';
|
|
@@ -266,7 +320,7 @@ export type UniRefund_ContractService_Rebates_RebateSettings_RebateSettingCreate
|
|
|
266
320
|
referenceNumber: number;
|
|
267
321
|
isTrustedMerchant: boolean;
|
|
268
322
|
rebateStatementPeriod: UniRefund_ContractService_Enums_RebateStatementPeriod;
|
|
269
|
-
rebateTableHeaders?: Array<
|
|
323
|
+
rebateTableHeaders?: Array<UniRefund_ContractService_Rebates_RebateTableHeaders_RebateTableHeaderNotTemplateCreateDto> | null;
|
|
270
324
|
rebateTableHeaderIds?: Array<(string)> | null;
|
|
271
325
|
contactInformationTypeId: string;
|
|
272
326
|
minimumNetCommissions?: Array<UniRefund_ContractService_Rebates_MinimumNetCommissions_MinimumNetCommissionCreateDto> | null;
|
|
@@ -285,7 +339,6 @@ export type UniRefund_ContractService_Rebates_RebateSettings_RebateSettingDto =
|
|
|
285
339
|
isTrustedMerchant: boolean;
|
|
286
340
|
rebateStatementPeriod: UniRefund_ContractService_Enums_RebateStatementPeriod;
|
|
287
341
|
contactInformationTypeId: string;
|
|
288
|
-
merchantId: string;
|
|
289
342
|
contractHeaderId: string;
|
|
290
343
|
rebateSettingRebateTableHeaders?: Array<UniRefund_ContractService_Rebates_RebateSettingRebateTableHeaders_RebateSettingRebateTableHeaderDto> | null;
|
|
291
344
|
minimumNetCommissions?: Array<UniRefund_ContractService_Rebates_MinimumNetCommissions_MinimumNetCommissionDto> | null;
|
|
@@ -299,7 +352,6 @@ export type UniRefund_ContractService_Rebates_RebateSettings_RebateSettingUpdate
|
|
|
299
352
|
isTrustedMerchant: boolean;
|
|
300
353
|
rebateStatementPeriod: UniRefund_ContractService_Enums_RebateStatementPeriod;
|
|
301
354
|
contactInformationTypeId: string;
|
|
302
|
-
merchantId: string;
|
|
303
355
|
};
|
|
304
356
|
|
|
305
357
|
export type UniRefund_ContractService_Rebates_RebateTableDetails_RebateTableDetailCreateDto = {
|
|
@@ -379,6 +431,18 @@ export type UniRefund_ContractService_Rebates_RebateTableHeaders_RebateTableHead
|
|
|
379
431
|
processingFeeDetails?: Array<UniRefund_ContractService_Rebates_ProcessingFeeDetails_ProcessingFeeDetailDto> | null;
|
|
380
432
|
};
|
|
381
433
|
|
|
434
|
+
export type UniRefund_ContractService_Rebates_RebateTableHeaders_RebateTableHeaderNotTemplateCreateDto = {
|
|
435
|
+
readonly extraProperties?: {
|
|
436
|
+
[key: string]: unknown;
|
|
437
|
+
} | null;
|
|
438
|
+
name: string;
|
|
439
|
+
calculateNetCommissionInsteadOfRefund?: boolean;
|
|
440
|
+
validFrom: string;
|
|
441
|
+
validTo: string;
|
|
442
|
+
rebateTableDetails?: Array<UniRefund_ContractService_Rebates_RebateTableDetails_RebateTableDetailCreateDto> | null;
|
|
443
|
+
processingFeeDetails?: Array<UniRefund_ContractService_Rebates_ProcessingFeeDetails_ProcessingFeeDetailCreateDto> | null;
|
|
444
|
+
};
|
|
445
|
+
|
|
382
446
|
export type UniRefund_ContractService_Rebates_RebateTableHeaders_RebateTableHeaderUpdateDto = {
|
|
383
447
|
readonly extraProperties?: {
|
|
384
448
|
[key: string]: unknown;
|
|
@@ -556,47 +620,105 @@ export type UniRefund_ContractService_Refunds_RefundTableHeaders_RefundTableHead
|
|
|
556
620
|
validTo?: string | null;
|
|
557
621
|
};
|
|
558
622
|
|
|
623
|
+
export type UniRefund_LocationService_AddressCommonDatas_AddressCommonDataCreateDto = {
|
|
624
|
+
readonly extraProperties?: {
|
|
625
|
+
[key: string]: unknown;
|
|
626
|
+
} | null;
|
|
627
|
+
type: UniRefund_LocationService_Enums_AddressType;
|
|
628
|
+
addressLine: string;
|
|
629
|
+
postalCode: string;
|
|
630
|
+
primaryFlag?: boolean;
|
|
631
|
+
countryId: string;
|
|
632
|
+
regionId?: string | null;
|
|
633
|
+
cityId?: string | null;
|
|
634
|
+
districtId?: string | null;
|
|
635
|
+
neighborhoodId?: string | null;
|
|
636
|
+
};
|
|
637
|
+
|
|
638
|
+
export type UniRefund_LocationService_AddressCommonDatas_AddressCommonDataDto = {
|
|
639
|
+
id: string;
|
|
640
|
+
creationTime?: string;
|
|
641
|
+
creatorId?: string | null;
|
|
642
|
+
lastModificationTime?: string | null;
|
|
643
|
+
lastModifierId?: string | null;
|
|
644
|
+
isDeleted?: boolean;
|
|
645
|
+
deleterId?: string | null;
|
|
646
|
+
deletionTime?: string | null;
|
|
647
|
+
type: UniRefund_LocationService_Enums_AddressType;
|
|
648
|
+
addressLine: string;
|
|
649
|
+
postalCode: string;
|
|
650
|
+
fullAddress: string;
|
|
651
|
+
primaryFlag?: boolean;
|
|
652
|
+
countryId: string;
|
|
653
|
+
regionId?: string | null;
|
|
654
|
+
cityId: string;
|
|
655
|
+
districtId: string;
|
|
656
|
+
neighborhoodId?: string | null;
|
|
657
|
+
};
|
|
658
|
+
|
|
659
|
+
export type UniRefund_LocationService_AddressCommonDatas_AddressCommonDataUpdateDto = {
|
|
660
|
+
readonly extraProperties?: {
|
|
661
|
+
[key: string]: unknown;
|
|
662
|
+
} | null;
|
|
663
|
+
type: UniRefund_LocationService_Enums_AddressType;
|
|
664
|
+
addressLine: string;
|
|
665
|
+
postalCode: string;
|
|
666
|
+
primaryFlag?: boolean;
|
|
667
|
+
countryId: string;
|
|
668
|
+
regionId?: string | null;
|
|
669
|
+
cityId?: string | null;
|
|
670
|
+
districtId?: string | null;
|
|
671
|
+
neighborhoodId?: string | null;
|
|
672
|
+
};
|
|
673
|
+
|
|
674
|
+
export type UniRefund_LocationService_Enums_AddressType = 'Home' | 'Office';
|
|
675
|
+
|
|
559
676
|
export type Volo_Abp_Application_Dtos_PagedResultDto_1 = {
|
|
560
|
-
items?: Array<
|
|
677
|
+
items?: Array<UniRefund_ContractService_ContractsForMerchant_ContractHeaders_ContractHeaderDetailForMerchantDto> | null;
|
|
561
678
|
totalCount?: number;
|
|
562
679
|
};
|
|
563
680
|
|
|
564
681
|
export type Volo_Abp_Application_Dtos_PagedResultDto_12 = {
|
|
565
|
-
items?: Array<
|
|
682
|
+
items?: Array<UniRefund_ContractService_ContractsForMerchant_ContractHeaders_ContractHeaderForMerchantDto> | null;
|
|
566
683
|
totalCount?: number;
|
|
567
684
|
};
|
|
568
685
|
|
|
569
686
|
export type Volo_Abp_Application_Dtos_PagedResultDto_13 = {
|
|
570
|
-
items?: Array<
|
|
687
|
+
items?: Array<UniRefund_ContractService_ContractsForMerchant_ContractSettings_ContractSettingDto> | null;
|
|
571
688
|
totalCount?: number;
|
|
572
689
|
};
|
|
573
690
|
|
|
574
691
|
export type Volo_Abp_Application_Dtos_PagedResultDto_14 = {
|
|
575
|
-
items?: Array<
|
|
692
|
+
items?: Array<UniRefund_ContractService_ContractsForMerchant_ContractStores_ContractStoreDto> | null;
|
|
576
693
|
totalCount?: number;
|
|
577
694
|
};
|
|
578
695
|
|
|
579
696
|
export type Volo_Abp_Application_Dtos_PagedResultDto_15 = {
|
|
580
|
-
items?: Array<
|
|
697
|
+
items?: Array<UniRefund_ContractService_Rebates_MinimumNetCommissions_MinimumNetCommissionDto> | null;
|
|
581
698
|
totalCount?: number;
|
|
582
699
|
};
|
|
583
700
|
|
|
584
701
|
export type Volo_Abp_Application_Dtos_PagedResultDto_16 = {
|
|
585
|
-
items?: Array<
|
|
702
|
+
items?: Array<UniRefund_ContractService_Rebates_RebateTableDetails_RebateTableDetailDto> | null;
|
|
586
703
|
totalCount?: number;
|
|
587
704
|
};
|
|
588
705
|
|
|
589
706
|
export type Volo_Abp_Application_Dtos_PagedResultDto_17 = {
|
|
590
|
-
items?: Array<
|
|
707
|
+
items?: Array<UniRefund_ContractService_Rebates_RebateTableHeaders_RebateTableHeaderDto> | null;
|
|
591
708
|
totalCount?: number;
|
|
592
709
|
};
|
|
593
710
|
|
|
594
711
|
export type Volo_Abp_Application_Dtos_PagedResultDto_18 = {
|
|
595
|
-
items?: Array<
|
|
712
|
+
items?: Array<UniRefund_ContractService_Refunds_RefundFeeHeaders_RefundFeeHeaderDto> | null;
|
|
596
713
|
totalCount?: number;
|
|
597
714
|
};
|
|
598
715
|
|
|
599
716
|
export type Volo_Abp_Application_Dtos_PagedResultDto_19 = {
|
|
717
|
+
items?: Array<UniRefund_ContractService_Refunds_RefundTableDetails_RefundTableDetailDto> | null;
|
|
718
|
+
totalCount?: number;
|
|
719
|
+
};
|
|
720
|
+
|
|
721
|
+
export type Volo_Abp_Application_Dtos_PagedResultDto_110 = {
|
|
600
722
|
items?: Array<UniRefund_ContractService_Refunds_RefundTableHeaders_RefundTableHeaderDto> | null;
|
|
601
723
|
totalCount?: number;
|
|
602
724
|
};
|
|
@@ -1003,112 +1125,130 @@ export type GetApiAbpApplicationLocalizationData = {
|
|
|
1003
1125
|
|
|
1004
1126
|
export type GetApiAbpApplicationLocalizationResponse = Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationDto;
|
|
1005
1127
|
|
|
1006
|
-
export type
|
|
1128
|
+
export type GetApiContractServiceMerchantsContractsContractSettingsByIdData = {
|
|
1007
1129
|
id: string;
|
|
1008
1130
|
};
|
|
1009
1131
|
|
|
1010
|
-
export type
|
|
1132
|
+
export type GetApiContractServiceMerchantsContractsContractSettingsByIdResponse = UniRefund_ContractService_ContractsForMerchant_ContractSettings_ContractSettingDto;
|
|
1011
1133
|
|
|
1012
|
-
export type
|
|
1134
|
+
export type PutApiContractServiceMerchantsContractsContractSettingsByIdData = {
|
|
1013
1135
|
id: string;
|
|
1136
|
+
requestBody?: UniRefund_ContractService_ContractsForMerchant_ContractSettings_ContractSettingUpdateDto;
|
|
1014
1137
|
};
|
|
1015
1138
|
|
|
1016
|
-
export type
|
|
1139
|
+
export type PutApiContractServiceMerchantsContractsContractSettingsByIdResponse = UniRefund_ContractService_ContractsForMerchant_ContractSettings_ContractSettingDto;
|
|
1017
1140
|
|
|
1018
|
-
export type
|
|
1141
|
+
export type DeleteApiContractServiceMerchantsContractsContractSettingsByIdData = {
|
|
1019
1142
|
id: string;
|
|
1020
|
-
requestBody?: UniRefund_ContractService_Contracts_ContractSettings_ContractSettingUpdateDto;
|
|
1021
1143
|
};
|
|
1022
1144
|
|
|
1023
|
-
export type
|
|
1145
|
+
export type DeleteApiContractServiceMerchantsContractsContractSettingsByIdResponse = unknown;
|
|
1024
1146
|
|
|
1025
|
-
export type
|
|
1147
|
+
export type GetApiContractServiceMerchantsContractsContractSettingsData = {
|
|
1026
1148
|
maxResultCount?: number;
|
|
1027
1149
|
skipCount?: number;
|
|
1028
1150
|
sorting?: string;
|
|
1029
1151
|
};
|
|
1030
1152
|
|
|
1031
|
-
export type
|
|
1153
|
+
export type GetApiContractServiceMerchantsContractsContractSettingsResponse = Volo_Abp_Application_Dtos_PagedResultDto_1;
|
|
1032
1154
|
|
|
1033
|
-
export type
|
|
1155
|
+
export type GetApiContractServiceMerchantsContractsContractHeadersByIdContractSettingsData = {
|
|
1034
1156
|
id: string;
|
|
1035
|
-
|
|
1157
|
+
maxResultCount?: number;
|
|
1158
|
+
skipCount?: number;
|
|
1159
|
+
sorting?: string;
|
|
1036
1160
|
};
|
|
1037
1161
|
|
|
1038
|
-
export type
|
|
1162
|
+
export type GetApiContractServiceMerchantsContractsContractHeadersByIdContractSettingsResponse = Volo_Abp_Application_Dtos_PagedResultDto_1;
|
|
1039
1163
|
|
|
1040
|
-
export type
|
|
1164
|
+
export type PostApiContractServiceMerchantsContractsContractHeadersByIdContractSettingsData = {
|
|
1041
1165
|
id: string;
|
|
1166
|
+
requestBody?: UniRefund_ContractService_ContractsForMerchant_ContractSettings_ContractSettingCreateDto;
|
|
1042
1167
|
};
|
|
1043
1168
|
|
|
1044
|
-
export type
|
|
1169
|
+
export type PostApiContractServiceMerchantsContractsContractHeadersByIdContractSettingsResponse = UniRefund_ContractService_ContractsForMerchant_ContractSettings_ContractSettingDto;
|
|
1045
1170
|
|
|
1046
|
-
export type
|
|
1171
|
+
export type GetApiContractServiceMerchantsContractsContractHeadersByIdRebateSettingsData = {
|
|
1047
1172
|
id: string;
|
|
1048
1173
|
};
|
|
1049
1174
|
|
|
1050
|
-
export type
|
|
1175
|
+
export type GetApiContractServiceMerchantsContractsContractHeadersByIdRebateSettingsResponse = UniRefund_ContractService_Rebates_RebateSettings_RebateSettingDto;
|
|
1051
1176
|
|
|
1052
|
-
export type
|
|
1177
|
+
export type PostApiContractServiceMerchantsContractsContractSettingsByIdContractStoresData = {
|
|
1053
1178
|
id: string;
|
|
1054
|
-
requestBody?:
|
|
1179
|
+
requestBody?: UniRefund_ContractService_ContractsForMerchant_ContractStores_ContractStoreCreateDto;
|
|
1055
1180
|
};
|
|
1056
1181
|
|
|
1057
|
-
export type
|
|
1182
|
+
export type PostApiContractServiceMerchantsContractsContractSettingsByIdContractStoresResponse = UniRefund_ContractService_ContractsForMerchant_ContractStores_ContractStoreDto;
|
|
1058
1183
|
|
|
1059
|
-
export type
|
|
1060
|
-
|
|
1061
|
-
skipCount?: number;
|
|
1062
|
-
sorting?: string;
|
|
1184
|
+
export type DeleteApiContractServiceMerchantsContractsContractStoresByIdData = {
|
|
1185
|
+
id: string;
|
|
1063
1186
|
};
|
|
1064
1187
|
|
|
1065
|
-
export type
|
|
1188
|
+
export type DeleteApiContractServiceMerchantsContractsContractStoresByIdResponse = unknown;
|
|
1066
1189
|
|
|
1067
|
-
export type
|
|
1068
|
-
|
|
1190
|
+
export type GetApiContractServiceMerchantsContractsContractStoresByIdData = {
|
|
1191
|
+
id: string;
|
|
1069
1192
|
};
|
|
1070
1193
|
|
|
1071
|
-
export type
|
|
1194
|
+
export type GetApiContractServiceMerchantsContractsContractStoresByIdResponse = UniRefund_ContractService_ContractsForMerchant_ContractStores_ContractStoreDto;
|
|
1072
1195
|
|
|
1073
|
-
export type
|
|
1196
|
+
export type PutApiContractServiceMerchantsContractsContractStoresByIdData = {
|
|
1197
|
+
id: string;
|
|
1198
|
+
requestBody?: UniRefund_ContractService_ContractsForMerchant_ContractStores_ContractStoreUpdateDto;
|
|
1199
|
+
};
|
|
1200
|
+
|
|
1201
|
+
export type PutApiContractServiceMerchantsContractsContractStoresByIdResponse = UniRefund_ContractService_ContractsForMerchant_ContractStores_ContractStoreDto;
|
|
1202
|
+
|
|
1203
|
+
export type GetApiContractServiceMerchantsContractsContractStoresData = {
|
|
1074
1204
|
maxResultCount?: number;
|
|
1075
1205
|
skipCount?: number;
|
|
1076
1206
|
sorting?: string;
|
|
1077
1207
|
};
|
|
1078
1208
|
|
|
1079
|
-
export type
|
|
1209
|
+
export type GetApiContractServiceMerchantsContractsContractStoresResponse = Volo_Abp_Application_Dtos_PagedResultDto_1;
|
|
1080
1210
|
|
|
1081
|
-
export type
|
|
1082
|
-
|
|
1083
|
-
requestBody?: UniRefund_ContractService_Contracts_ContractSettings_ContractSettingCreateDto;
|
|
1211
|
+
export type PostApiContractServiceMerchantsContractsContractHeadersData = {
|
|
1212
|
+
requestBody?: UniRefund_ContractService_ContractsForMerchant_ContractHeaders_ContractHeaderForMerchantCreateDto;
|
|
1084
1213
|
};
|
|
1085
1214
|
|
|
1086
|
-
export type
|
|
1215
|
+
export type PostApiContractServiceMerchantsContractsContractHeadersResponse = UniRefund_ContractService_ContractsForMerchant_ContractHeaders_ContractHeaderForMerchantDto;
|
|
1087
1216
|
|
|
1088
|
-
export type
|
|
1217
|
+
export type GetApiContractServiceMerchantsContractsContractHeadersData = {
|
|
1218
|
+
maxResultCount?: number;
|
|
1219
|
+
skipCount?: number;
|
|
1220
|
+
sorting?: string;
|
|
1221
|
+
};
|
|
1222
|
+
|
|
1223
|
+
export type GetApiContractServiceMerchantsContractsContractHeadersResponse = Volo_Abp_Application_Dtos_PagedResultDto_1;
|
|
1224
|
+
|
|
1225
|
+
export type DeleteApiContractServiceMerchantsContractsContractHeadersByIdData = {
|
|
1089
1226
|
id: string;
|
|
1090
1227
|
};
|
|
1091
1228
|
|
|
1092
|
-
export type
|
|
1229
|
+
export type DeleteApiContractServiceMerchantsContractsContractHeadersByIdResponse = unknown;
|
|
1093
1230
|
|
|
1094
|
-
export type
|
|
1231
|
+
export type GetApiContractServiceMerchantsContractsContractHeadersByIdData = {
|
|
1095
1232
|
id: string;
|
|
1096
1233
|
};
|
|
1097
1234
|
|
|
1098
|
-
export type
|
|
1235
|
+
export type GetApiContractServiceMerchantsContractsContractHeadersByIdResponse = UniRefund_ContractService_ContractsForMerchant_ContractHeaders_ContractHeaderDetailForMerchantDto;
|
|
1099
1236
|
|
|
1100
|
-
export type
|
|
1237
|
+
export type PutApiContractServiceMerchantsContractsContractHeadersByIdData = {
|
|
1101
1238
|
id: string;
|
|
1102
|
-
requestBody?:
|
|
1239
|
+
requestBody?: UniRefund_ContractService_ContractsForMerchant_ContractHeaders_ContractHeaderForMerchantUpdateDto;
|
|
1103
1240
|
};
|
|
1104
1241
|
|
|
1105
|
-
export type
|
|
1242
|
+
export type PutApiContractServiceMerchantsContractsContractHeadersByIdResponse = UniRefund_ContractService_ContractsForMerchant_ContractHeaders_ContractHeaderDetailForMerchantDto;
|
|
1106
1243
|
|
|
1107
|
-
export type
|
|
1244
|
+
export type GetApiContractServiceMerchantsByIdContractsContractHeadersData = {
|
|
1108
1245
|
id: string;
|
|
1246
|
+
maxResultCount?: number;
|
|
1247
|
+
skipCount?: number;
|
|
1248
|
+
sorting?: string;
|
|
1109
1249
|
};
|
|
1110
1250
|
|
|
1111
|
-
export type
|
|
1251
|
+
export type GetApiContractServiceMerchantsByIdContractsContractHeadersResponse = Volo_Abp_Application_Dtos_PagedResultDto_1;
|
|
1112
1252
|
|
|
1113
1253
|
export type GetApiContractServiceRebateTablesRebateSettingsByIdData = {
|
|
1114
1254
|
id: string;
|
|
@@ -1222,11 +1362,24 @@ export type GetApiContractServiceRebateTablesRebateTableDetailsData = {
|
|
|
1222
1362
|
|
|
1223
1363
|
export type GetApiContractServiceRebateTablesRebateTableDetailsResponse = Volo_Abp_Application_Dtos_PagedResultDto_1;
|
|
1224
1364
|
|
|
1225
|
-
export type
|
|
1365
|
+
export type GetApiContractServiceRebateTablesRebateTableHeadersByIdData = {
|
|
1366
|
+
id: string;
|
|
1367
|
+
};
|
|
1368
|
+
|
|
1369
|
+
export type GetApiContractServiceRebateTablesRebateTableHeadersByIdResponse = UniRefund_ContractService_Rebates_RebateTableHeaders_RebateTableHeaderDto;
|
|
1370
|
+
|
|
1371
|
+
export type PutApiContractServiceRebateTablesRebateTableHeadersByIdData = {
|
|
1372
|
+
id: string;
|
|
1373
|
+
requestBody?: UniRefund_ContractService_Rebates_RebateTableHeaders_RebateTableHeaderUpdateDto;
|
|
1374
|
+
};
|
|
1375
|
+
|
|
1376
|
+
export type PutApiContractServiceRebateTablesRebateTableHeadersByIdResponse = UniRefund_ContractService_Rebates_RebateTableHeaders_RebateTableHeaderDto;
|
|
1377
|
+
|
|
1378
|
+
export type DeleteApiContractServiceRebateTablesRebateTableHeadersByIdData = {
|
|
1226
1379
|
id: string;
|
|
1227
1380
|
};
|
|
1228
1381
|
|
|
1229
|
-
export type
|
|
1382
|
+
export type DeleteApiContractServiceRebateTablesRebateTableHeadersByIdResponse = unknown;
|
|
1230
1383
|
|
|
1231
1384
|
export type GetApiContractServiceRebateTablesRebateTableHeadersTemplatesData = {
|
|
1232
1385
|
maxResultCount?: number;
|
|
@@ -1249,19 +1402,6 @@ export type PostApiContractServiceRebateTablesRebateTableHeadersByIdRebateTableD
|
|
|
1249
1402
|
|
|
1250
1403
|
export type PostApiContractServiceRebateTablesRebateTableHeadersByIdRebateTableDetailsResponse = UniRefund_ContractService_Rebates_RebateTableDetails_RebateTableDetailDto;
|
|
1251
1404
|
|
|
1252
|
-
export type PutApiContractServiceRebateTablesRebateTableHeadersByIdData = {
|
|
1253
|
-
id: string;
|
|
1254
|
-
requestBody?: UniRefund_ContractService_Rebates_RebateTableHeaders_RebateTableHeaderUpdateDto;
|
|
1255
|
-
};
|
|
1256
|
-
|
|
1257
|
-
export type PutApiContractServiceRebateTablesRebateTableHeadersByIdResponse = UniRefund_ContractService_Rebates_RebateTableHeaders_RebateTableHeaderDto;
|
|
1258
|
-
|
|
1259
|
-
export type DeleteApiContractServiceRebateTablesRebateTableHeadersByIdData = {
|
|
1260
|
-
id: string;
|
|
1261
|
-
};
|
|
1262
|
-
|
|
1263
|
-
export type DeleteApiContractServiceRebateTablesRebateTableHeadersByIdResponse = unknown;
|
|
1264
|
-
|
|
1265
1405
|
export type GetApiContractServiceRefundTablesRefundTableHeadersByIdData = {
|
|
1266
1406
|
id: string;
|
|
1267
1407
|
};
|
|
@@ -1505,14 +1645,14 @@ export type $OpenApiTs = {
|
|
|
1505
1645
|
};
|
|
1506
1646
|
};
|
|
1507
1647
|
};
|
|
1508
|
-
'/api/contract-service/contracts/contract-settings/{id}': {
|
|
1509
|
-
|
|
1510
|
-
req:
|
|
1648
|
+
'/api/contract-service/merchants/contracts/contract-settings/{id}': {
|
|
1649
|
+
get: {
|
|
1650
|
+
req: GetApiContractServiceMerchantsContractsContractSettingsByIdData;
|
|
1511
1651
|
res: {
|
|
1512
1652
|
/**
|
|
1513
1653
|
* Success
|
|
1514
1654
|
*/
|
|
1515
|
-
200:
|
|
1655
|
+
200: UniRefund_ContractService_ContractsForMerchant_ContractSettings_ContractSettingDto;
|
|
1516
1656
|
/**
|
|
1517
1657
|
* Bad Request
|
|
1518
1658
|
*/
|
|
@@ -1539,13 +1679,13 @@ export type $OpenApiTs = {
|
|
|
1539
1679
|
501: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
1540
1680
|
};
|
|
1541
1681
|
};
|
|
1542
|
-
|
|
1543
|
-
req:
|
|
1682
|
+
put: {
|
|
1683
|
+
req: PutApiContractServiceMerchantsContractsContractSettingsByIdData;
|
|
1544
1684
|
res: {
|
|
1545
1685
|
/**
|
|
1546
1686
|
* Success
|
|
1547
1687
|
*/
|
|
1548
|
-
200:
|
|
1688
|
+
200: UniRefund_ContractService_ContractsForMerchant_ContractSettings_ContractSettingDto;
|
|
1549
1689
|
/**
|
|
1550
1690
|
* Bad Request
|
|
1551
1691
|
*/
|
|
@@ -1572,13 +1712,13 @@ export type $OpenApiTs = {
|
|
|
1572
1712
|
501: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
1573
1713
|
};
|
|
1574
1714
|
};
|
|
1575
|
-
|
|
1576
|
-
req:
|
|
1715
|
+
delete: {
|
|
1716
|
+
req: DeleteApiContractServiceMerchantsContractsContractSettingsByIdData;
|
|
1577
1717
|
res: {
|
|
1578
1718
|
/**
|
|
1579
1719
|
* Success
|
|
1580
1720
|
*/
|
|
1581
|
-
200:
|
|
1721
|
+
200: unknown;
|
|
1582
1722
|
/**
|
|
1583
1723
|
* Bad Request
|
|
1584
1724
|
*/
|
|
@@ -1606,9 +1746,9 @@ export type $OpenApiTs = {
|
|
|
1606
1746
|
};
|
|
1607
1747
|
};
|
|
1608
1748
|
};
|
|
1609
|
-
'/api/contract-service/contracts/contract-settings': {
|
|
1749
|
+
'/api/contract-service/merchants/contracts/contract-settings': {
|
|
1610
1750
|
get: {
|
|
1611
|
-
req:
|
|
1751
|
+
req: GetApiContractServiceMerchantsContractsContractSettingsData;
|
|
1612
1752
|
res: {
|
|
1613
1753
|
/**
|
|
1614
1754
|
* Success
|
|
@@ -1641,14 +1781,14 @@ export type $OpenApiTs = {
|
|
|
1641
1781
|
};
|
|
1642
1782
|
};
|
|
1643
1783
|
};
|
|
1644
|
-
'/api/contract-service/contracts/contract-
|
|
1645
|
-
|
|
1646
|
-
req:
|
|
1784
|
+
'/api/contract-service/merchants/contracts/contract-headers/{id}/contract-settings': {
|
|
1785
|
+
get: {
|
|
1786
|
+
req: GetApiContractServiceMerchantsContractsContractHeadersByIdContractSettingsData;
|
|
1647
1787
|
res: {
|
|
1648
1788
|
/**
|
|
1649
1789
|
* Success
|
|
1650
1790
|
*/
|
|
1651
|
-
200:
|
|
1791
|
+
200: Volo_Abp_Application_Dtos_PagedResultDto_1;
|
|
1652
1792
|
/**
|
|
1653
1793
|
* Bad Request
|
|
1654
1794
|
*/
|
|
@@ -1675,15 +1815,13 @@ export type $OpenApiTs = {
|
|
|
1675
1815
|
501: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
1676
1816
|
};
|
|
1677
1817
|
};
|
|
1678
|
-
|
|
1679
|
-
|
|
1680
|
-
delete: {
|
|
1681
|
-
req: DeleteApiContractServiceContractsContractStoresByIdData;
|
|
1818
|
+
post: {
|
|
1819
|
+
req: PostApiContractServiceMerchantsContractsContractHeadersByIdContractSettingsData;
|
|
1682
1820
|
res: {
|
|
1683
1821
|
/**
|
|
1684
1822
|
* Success
|
|
1685
1823
|
*/
|
|
1686
|
-
200:
|
|
1824
|
+
200: UniRefund_ContractService_ContractsForMerchant_ContractSettings_ContractSettingDto;
|
|
1687
1825
|
/**
|
|
1688
1826
|
* Bad Request
|
|
1689
1827
|
*/
|
|
@@ -1710,13 +1848,15 @@ export type $OpenApiTs = {
|
|
|
1710
1848
|
501: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
1711
1849
|
};
|
|
1712
1850
|
};
|
|
1851
|
+
};
|
|
1852
|
+
'/api/contract-service/merchants/contracts/contract-headers/{id}/rebate-settings': {
|
|
1713
1853
|
get: {
|
|
1714
|
-
req:
|
|
1854
|
+
req: GetApiContractServiceMerchantsContractsContractHeadersByIdRebateSettingsData;
|
|
1715
1855
|
res: {
|
|
1716
1856
|
/**
|
|
1717
1857
|
* Success
|
|
1718
1858
|
*/
|
|
1719
|
-
200:
|
|
1859
|
+
200: UniRefund_ContractService_Rebates_RebateSettings_RebateSettingDto;
|
|
1720
1860
|
/**
|
|
1721
1861
|
* Bad Request
|
|
1722
1862
|
*/
|
|
@@ -1743,13 +1883,15 @@ export type $OpenApiTs = {
|
|
|
1743
1883
|
501: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
1744
1884
|
};
|
|
1745
1885
|
};
|
|
1746
|
-
|
|
1747
|
-
|
|
1886
|
+
};
|
|
1887
|
+
'/api/contract-service/merchants/contracts/contract-settings/{id}/contract-stores': {
|
|
1888
|
+
post: {
|
|
1889
|
+
req: PostApiContractServiceMerchantsContractsContractSettingsByIdContractStoresData;
|
|
1748
1890
|
res: {
|
|
1749
1891
|
/**
|
|
1750
1892
|
* Success
|
|
1751
1893
|
*/
|
|
1752
|
-
200:
|
|
1894
|
+
200: UniRefund_ContractService_ContractsForMerchant_ContractStores_ContractStoreDto;
|
|
1753
1895
|
/**
|
|
1754
1896
|
* Bad Request
|
|
1755
1897
|
*/
|
|
@@ -1777,14 +1919,47 @@ export type $OpenApiTs = {
|
|
|
1777
1919
|
};
|
|
1778
1920
|
};
|
|
1779
1921
|
};
|
|
1780
|
-
'/api/contract-service/contracts/contract-stores': {
|
|
1922
|
+
'/api/contract-service/merchants/contracts/contract-stores/{id}': {
|
|
1923
|
+
delete: {
|
|
1924
|
+
req: DeleteApiContractServiceMerchantsContractsContractStoresByIdData;
|
|
1925
|
+
res: {
|
|
1926
|
+
/**
|
|
1927
|
+
* Success
|
|
1928
|
+
*/
|
|
1929
|
+
200: unknown;
|
|
1930
|
+
/**
|
|
1931
|
+
* Bad Request
|
|
1932
|
+
*/
|
|
1933
|
+
400: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
1934
|
+
/**
|
|
1935
|
+
* Unauthorized
|
|
1936
|
+
*/
|
|
1937
|
+
401: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
1938
|
+
/**
|
|
1939
|
+
* Forbidden
|
|
1940
|
+
*/
|
|
1941
|
+
403: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
1942
|
+
/**
|
|
1943
|
+
* Not Found
|
|
1944
|
+
*/
|
|
1945
|
+
404: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
1946
|
+
/**
|
|
1947
|
+
* Server Error
|
|
1948
|
+
*/
|
|
1949
|
+
500: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
1950
|
+
/**
|
|
1951
|
+
* Server Error
|
|
1952
|
+
*/
|
|
1953
|
+
501: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
1954
|
+
};
|
|
1955
|
+
};
|
|
1781
1956
|
get: {
|
|
1782
|
-
req:
|
|
1957
|
+
req: GetApiContractServiceMerchantsContractsContractStoresByIdData;
|
|
1783
1958
|
res: {
|
|
1784
1959
|
/**
|
|
1785
1960
|
* Success
|
|
1786
1961
|
*/
|
|
1787
|
-
200:
|
|
1962
|
+
200: UniRefund_ContractService_ContractsForMerchant_ContractStores_ContractStoreDto;
|
|
1788
1963
|
/**
|
|
1789
1964
|
* Bad Request
|
|
1790
1965
|
*/
|
|
@@ -1811,15 +1986,13 @@ export type $OpenApiTs = {
|
|
|
1811
1986
|
501: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
1812
1987
|
};
|
|
1813
1988
|
};
|
|
1814
|
-
|
|
1815
|
-
|
|
1816
|
-
post: {
|
|
1817
|
-
req: PostApiContractServiceContractsContractHeadersData;
|
|
1989
|
+
put: {
|
|
1990
|
+
req: PutApiContractServiceMerchantsContractsContractStoresByIdData;
|
|
1818
1991
|
res: {
|
|
1819
1992
|
/**
|
|
1820
1993
|
* Success
|
|
1821
1994
|
*/
|
|
1822
|
-
200:
|
|
1995
|
+
200: UniRefund_ContractService_ContractsForMerchant_ContractStores_ContractStoreDto;
|
|
1823
1996
|
/**
|
|
1824
1997
|
* Bad Request
|
|
1825
1998
|
*/
|
|
@@ -1846,8 +2019,10 @@ export type $OpenApiTs = {
|
|
|
1846
2019
|
501: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
1847
2020
|
};
|
|
1848
2021
|
};
|
|
2022
|
+
};
|
|
2023
|
+
'/api/contract-service/merchants/contracts/contract-stores': {
|
|
1849
2024
|
get: {
|
|
1850
|
-
req:
|
|
2025
|
+
req: GetApiContractServiceMerchantsContractsContractStoresData;
|
|
1851
2026
|
res: {
|
|
1852
2027
|
/**
|
|
1853
2028
|
* Success
|
|
@@ -1880,14 +2055,47 @@ export type $OpenApiTs = {
|
|
|
1880
2055
|
};
|
|
1881
2056
|
};
|
|
1882
2057
|
};
|
|
1883
|
-
'/api/contract-service/contracts/contract-headers
|
|
2058
|
+
'/api/contract-service/merchants/contracts/contract-headers': {
|
|
1884
2059
|
post: {
|
|
1885
|
-
req:
|
|
2060
|
+
req: PostApiContractServiceMerchantsContractsContractHeadersData;
|
|
1886
2061
|
res: {
|
|
1887
2062
|
/**
|
|
1888
2063
|
* Success
|
|
1889
2064
|
*/
|
|
1890
|
-
200:
|
|
2065
|
+
200: UniRefund_ContractService_ContractsForMerchant_ContractHeaders_ContractHeaderForMerchantDto;
|
|
2066
|
+
/**
|
|
2067
|
+
* Bad Request
|
|
2068
|
+
*/
|
|
2069
|
+
400: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2070
|
+
/**
|
|
2071
|
+
* Unauthorized
|
|
2072
|
+
*/
|
|
2073
|
+
401: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2074
|
+
/**
|
|
2075
|
+
* Forbidden
|
|
2076
|
+
*/
|
|
2077
|
+
403: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2078
|
+
/**
|
|
2079
|
+
* Not Found
|
|
2080
|
+
*/
|
|
2081
|
+
404: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2082
|
+
/**
|
|
2083
|
+
* Server Error
|
|
2084
|
+
*/
|
|
2085
|
+
500: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2086
|
+
/**
|
|
2087
|
+
* Server Error
|
|
2088
|
+
*/
|
|
2089
|
+
501: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2090
|
+
};
|
|
2091
|
+
};
|
|
2092
|
+
get: {
|
|
2093
|
+
req: GetApiContractServiceMerchantsContractsContractHeadersData;
|
|
2094
|
+
res: {
|
|
2095
|
+
/**
|
|
2096
|
+
* Success
|
|
2097
|
+
*/
|
|
2098
|
+
200: Volo_Abp_Application_Dtos_PagedResultDto_1;
|
|
1891
2099
|
/**
|
|
1892
2100
|
* Bad Request
|
|
1893
2101
|
*/
|
|
@@ -1915,9 +2123,9 @@ export type $OpenApiTs = {
|
|
|
1915
2123
|
};
|
|
1916
2124
|
};
|
|
1917
2125
|
};
|
|
1918
|
-
'/api/contract-service/contracts/contract-headers/{id}': {
|
|
2126
|
+
'/api/contract-service/merchants/contracts/contract-headers/{id}': {
|
|
1919
2127
|
delete: {
|
|
1920
|
-
req:
|
|
2128
|
+
req: DeleteApiContractServiceMerchantsContractsContractHeadersByIdData;
|
|
1921
2129
|
res: {
|
|
1922
2130
|
/**
|
|
1923
2131
|
* Success
|
|
@@ -1950,12 +2158,12 @@ export type $OpenApiTs = {
|
|
|
1950
2158
|
};
|
|
1951
2159
|
};
|
|
1952
2160
|
get: {
|
|
1953
|
-
req:
|
|
2161
|
+
req: GetApiContractServiceMerchantsContractsContractHeadersByIdData;
|
|
1954
2162
|
res: {
|
|
1955
2163
|
/**
|
|
1956
2164
|
* Success
|
|
1957
2165
|
*/
|
|
1958
|
-
200:
|
|
2166
|
+
200: UniRefund_ContractService_ContractsForMerchant_ContractHeaders_ContractHeaderDetailForMerchantDto;
|
|
1959
2167
|
/**
|
|
1960
2168
|
* Bad Request
|
|
1961
2169
|
*/
|
|
@@ -1983,12 +2191,12 @@ export type $OpenApiTs = {
|
|
|
1983
2191
|
};
|
|
1984
2192
|
};
|
|
1985
2193
|
put: {
|
|
1986
|
-
req:
|
|
2194
|
+
req: PutApiContractServiceMerchantsContractsContractHeadersByIdData;
|
|
1987
2195
|
res: {
|
|
1988
2196
|
/**
|
|
1989
2197
|
* Success
|
|
1990
2198
|
*/
|
|
1991
|
-
200:
|
|
2199
|
+
200: UniRefund_ContractService_ContractsForMerchant_ContractHeaders_ContractHeaderDetailForMerchantDto;
|
|
1992
2200
|
/**
|
|
1993
2201
|
* Bad Request
|
|
1994
2202
|
*/
|
|
@@ -2016,14 +2224,14 @@ export type $OpenApiTs = {
|
|
|
2016
2224
|
};
|
|
2017
2225
|
};
|
|
2018
2226
|
};
|
|
2019
|
-
'/api/contract-service/contracts/contract-headers
|
|
2227
|
+
'/api/contract-service/merchants/{id}/contracts/contract-headers': {
|
|
2020
2228
|
get: {
|
|
2021
|
-
req:
|
|
2229
|
+
req: GetApiContractServiceMerchantsByIdContractsContractHeadersData;
|
|
2022
2230
|
res: {
|
|
2023
2231
|
/**
|
|
2024
2232
|
* Success
|
|
2025
2233
|
*/
|
|
2026
|
-
200:
|
|
2234
|
+
200: Volo_Abp_Application_Dtos_PagedResultDto_1;
|
|
2027
2235
|
/**
|
|
2028
2236
|
* Bad Request
|
|
2029
2237
|
*/
|
|
@@ -2630,9 +2838,9 @@ export type $OpenApiTs = {
|
|
|
2630
2838
|
};
|
|
2631
2839
|
};
|
|
2632
2840
|
};
|
|
2633
|
-
'/api/contract-service/rebate-tables/rebate-table-headers/
|
|
2841
|
+
'/api/contract-service/rebate-tables/rebate-table-headers/{id}': {
|
|
2634
2842
|
get: {
|
|
2635
|
-
req:
|
|
2843
|
+
req: GetApiContractServiceRebateTablesRebateTableHeadersByIdData;
|
|
2636
2844
|
res: {
|
|
2637
2845
|
/**
|
|
2638
2846
|
* Success
|
|
@@ -2664,15 +2872,13 @@ export type $OpenApiTs = {
|
|
|
2664
2872
|
501: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2665
2873
|
};
|
|
2666
2874
|
};
|
|
2667
|
-
|
|
2668
|
-
|
|
2669
|
-
get: {
|
|
2670
|
-
req: GetApiContractServiceRebateTablesRebateTableHeadersTemplatesData;
|
|
2875
|
+
put: {
|
|
2876
|
+
req: PutApiContractServiceRebateTablesRebateTableHeadersByIdData;
|
|
2671
2877
|
res: {
|
|
2672
2878
|
/**
|
|
2673
2879
|
* Success
|
|
2674
2880
|
*/
|
|
2675
|
-
200:
|
|
2881
|
+
200: UniRefund_ContractService_Rebates_RebateTableHeaders_RebateTableHeaderDto;
|
|
2676
2882
|
/**
|
|
2677
2883
|
* Bad Request
|
|
2678
2884
|
*/
|
|
@@ -2699,15 +2905,13 @@ export type $OpenApiTs = {
|
|
|
2699
2905
|
501: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2700
2906
|
};
|
|
2701
2907
|
};
|
|
2702
|
-
|
|
2703
|
-
|
|
2704
|
-
post: {
|
|
2705
|
-
req: PostApiContractServiceRebateTablesRebateTableHeadersData;
|
|
2908
|
+
delete: {
|
|
2909
|
+
req: DeleteApiContractServiceRebateTablesRebateTableHeadersByIdData;
|
|
2706
2910
|
res: {
|
|
2707
2911
|
/**
|
|
2708
2912
|
* Success
|
|
2709
2913
|
*/
|
|
2710
|
-
200:
|
|
2914
|
+
200: unknown;
|
|
2711
2915
|
/**
|
|
2712
2916
|
* Bad Request
|
|
2713
2917
|
*/
|
|
@@ -2735,14 +2939,14 @@ export type $OpenApiTs = {
|
|
|
2735
2939
|
};
|
|
2736
2940
|
};
|
|
2737
2941
|
};
|
|
2738
|
-
'/api/contract-service/rebate-tables/rebate-table-headers/
|
|
2739
|
-
|
|
2740
|
-
req:
|
|
2942
|
+
'/api/contract-service/rebate-tables/rebate-table-headers/templates': {
|
|
2943
|
+
get: {
|
|
2944
|
+
req: GetApiContractServiceRebateTablesRebateTableHeadersTemplatesData;
|
|
2741
2945
|
res: {
|
|
2742
2946
|
/**
|
|
2743
2947
|
* Success
|
|
2744
2948
|
*/
|
|
2745
|
-
200:
|
|
2949
|
+
200: Volo_Abp_Application_Dtos_PagedResultDto_1;
|
|
2746
2950
|
/**
|
|
2747
2951
|
* Bad Request
|
|
2748
2952
|
*/
|
|
@@ -2770,9 +2974,9 @@ export type $OpenApiTs = {
|
|
|
2770
2974
|
};
|
|
2771
2975
|
};
|
|
2772
2976
|
};
|
|
2773
|
-
'/api/contract-service/rebate-tables/rebate-table-headers
|
|
2774
|
-
|
|
2775
|
-
req:
|
|
2977
|
+
'/api/contract-service/rebate-tables/rebate-table-headers': {
|
|
2978
|
+
post: {
|
|
2979
|
+
req: PostApiContractServiceRebateTablesRebateTableHeadersData;
|
|
2776
2980
|
res: {
|
|
2777
2981
|
/**
|
|
2778
2982
|
* Success
|
|
@@ -2804,13 +3008,15 @@ export type $OpenApiTs = {
|
|
|
2804
3008
|
501: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2805
3009
|
};
|
|
2806
3010
|
};
|
|
2807
|
-
|
|
2808
|
-
|
|
3011
|
+
};
|
|
3012
|
+
'/api/contract-service/rebate-tables/rebate-table-headers/{id}/rebate-table-details': {
|
|
3013
|
+
post: {
|
|
3014
|
+
req: PostApiContractServiceRebateTablesRebateTableHeadersByIdRebateTableDetailsData;
|
|
2809
3015
|
res: {
|
|
2810
3016
|
/**
|
|
2811
3017
|
* Success
|
|
2812
3018
|
*/
|
|
2813
|
-
200:
|
|
3019
|
+
200: UniRefund_ContractService_Rebates_RebateTableDetails_RebateTableDetailDto;
|
|
2814
3020
|
/**
|
|
2815
3021
|
* Bad Request
|
|
2816
3022
|
*/
|