@ayasofyazilim/saas 0.0.33 → 0.0.35
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/CRMService/schemas.gen.ts +1251 -2
- package/CRMService/services.gen.ts +178 -10
- package/CRMService/types.gen.ts +312 -11
- package/ContractService/schemas.gen.ts +3412 -2902
- package/ContractService/services.gen.ts +250 -568
- package/ContractService/types.gen.ts +412 -1004
- package/TravellerService/TravellerServiceClient.ts +56 -0
- package/TravellerService/core/ApiError.ts +21 -0
- package/TravellerService/core/ApiRequestOptions.ts +13 -0
- package/TravellerService/core/ApiResult.ts +7 -0
- package/TravellerService/core/BaseHttpRequest.ts +10 -0
- package/TravellerService/core/CancelablePromise.ts +126 -0
- package/TravellerService/core/FetchHttpRequest.ts +22 -0
- package/TravellerService/core/OpenAPI.ts +56 -0
- package/TravellerService/core/request.ts +341 -0
- package/TravellerService/index.ts +9 -0
- package/TravellerService/schemas.gen.ts +7981 -0
- package/TravellerService/services.gen.ts +710 -0
- package/TravellerService/types.gen.ts +1851 -0
- package/generator.mjs +7 -1
- package/package.json +1 -1
|
@@ -29,19 +29,11 @@ export type AyasofYazilim_Enum_Enums_AddEnumTranslationDto = {
|
|
|
29
29
|
|
|
30
30
|
export type AyasofYazilim_Enum_Enums_EnumDto = {
|
|
31
31
|
id?: string;
|
|
32
|
-
creationTime?: string;
|
|
33
|
-
creatorId?: string | null;
|
|
34
|
-
lastModificationTime?: string | null;
|
|
35
|
-
lastModifierId?: string | null;
|
|
36
|
-
isDeleted?: boolean;
|
|
37
|
-
deleterId?: string | null;
|
|
38
|
-
deletionTime?: string | null;
|
|
39
32
|
key?: string | null;
|
|
40
33
|
value?: number;
|
|
41
34
|
displayName?: string | null;
|
|
42
35
|
isActive?: boolean;
|
|
43
36
|
description?: string | null;
|
|
44
|
-
enumTypeId?: string | null;
|
|
45
37
|
language?: string | null;
|
|
46
38
|
};
|
|
47
39
|
|
|
@@ -64,7 +56,8 @@ export type UniRefund_ContractService_Contracts_ContractHeaders_ContractHeaderCr
|
|
|
64
56
|
merchantId: string;
|
|
65
57
|
addressId: string;
|
|
66
58
|
rebateSetting: UniRefund_ContractService_Rebates_RebateSettings_RebateSettingCreateDto;
|
|
67
|
-
|
|
59
|
+
contractSettings: Array<UniRefund_ContractService_Contracts_ContractSettings_ContractSettingCreateDto>;
|
|
60
|
+
refundTableHeaderIds?: Array<(string)> | null;
|
|
68
61
|
};
|
|
69
62
|
|
|
70
63
|
export type UniRefund_ContractService_Contracts_ContractHeaders_ContractHeaderDto = {
|
|
@@ -87,10 +80,8 @@ export type UniRefund_ContractService_Contracts_ContractHeaders_ContractHeaderUp
|
|
|
87
80
|
readonly extraProperties?: {
|
|
88
81
|
[key: string]: unknown;
|
|
89
82
|
} | null;
|
|
90
|
-
id: string;
|
|
91
83
|
merchantId: string;
|
|
92
84
|
addressId: string;
|
|
93
|
-
rebateSettingId: string;
|
|
94
85
|
};
|
|
95
86
|
|
|
96
87
|
export type UniRefund_ContractService_Contracts_ContractSettings_ContractSettingCreateDto = {
|
|
@@ -98,21 +89,22 @@ export type UniRefund_ContractService_Contracts_ContractSettings_ContractSetting
|
|
|
98
89
|
[key: string]: unknown;
|
|
99
90
|
} | null;
|
|
100
91
|
name: string;
|
|
92
|
+
isDefault?: boolean;
|
|
101
93
|
referenceNumber: number;
|
|
102
94
|
invoicingFrequency: number;
|
|
103
95
|
termOfPayment: number;
|
|
104
|
-
deliveryFee
|
|
105
|
-
factoring
|
|
106
|
-
|
|
96
|
+
deliveryFee?: boolean;
|
|
97
|
+
factoring?: boolean;
|
|
98
|
+
invoicingAddressId: string;
|
|
107
99
|
invoiceChannel: number;
|
|
108
|
-
eTaxFree
|
|
100
|
+
eTaxFree?: boolean;
|
|
109
101
|
receiptType: number;
|
|
110
|
-
crossTaxFreeForm
|
|
111
|
-
facturaNumberIsUnique
|
|
112
|
-
goodsHaveSerialNumbers
|
|
113
|
-
excludeFromCashLimit
|
|
114
|
-
deskoScanner
|
|
115
|
-
|
|
102
|
+
crossTaxFreeForm?: boolean;
|
|
103
|
+
facturaNumberIsUnique?: boolean;
|
|
104
|
+
goodsHaveSerialNumbers?: boolean;
|
|
105
|
+
excludeFromCashLimit?: boolean;
|
|
106
|
+
deskoScanner?: boolean;
|
|
107
|
+
contractStores?: Array<UniRefund_ContractService_Contracts_ContractStores_ContractStoreCreateDto> | null;
|
|
116
108
|
};
|
|
117
109
|
|
|
118
110
|
export type UniRefund_ContractService_Contracts_ContractSettings_ContractSettingDto = {
|
|
@@ -125,15 +117,16 @@ export type UniRefund_ContractService_Contracts_ContractSettings_ContractSetting
|
|
|
125
117
|
deleterId?: string | null;
|
|
126
118
|
deletionTime?: string | null;
|
|
127
119
|
name?: string | null;
|
|
120
|
+
isDefault?: boolean;
|
|
128
121
|
referenceNumber?: number;
|
|
129
|
-
invoicingFrequency?:
|
|
122
|
+
invoicingFrequency?: AyasofYazilim_Enum_Enums_EnumDto;
|
|
130
123
|
termOfPayment?: number;
|
|
131
124
|
deliveryFee?: boolean;
|
|
132
125
|
factoring?: boolean;
|
|
133
|
-
|
|
134
|
-
invoiceChannel?:
|
|
126
|
+
invoicingAddressId?: string;
|
|
127
|
+
invoiceChannel?: AyasofYazilim_Enum_Enums_EnumDto;
|
|
135
128
|
eTaxFree?: boolean;
|
|
136
|
-
receiptType?:
|
|
129
|
+
receiptType?: AyasofYazilim_Enum_Enums_EnumDto;
|
|
137
130
|
crossTaxFreeForm?: boolean;
|
|
138
131
|
facturaNumberIsUnique?: boolean;
|
|
139
132
|
goodsHaveSerialNumbers?: boolean;
|
|
@@ -147,23 +140,22 @@ export type UniRefund_ContractService_Contracts_ContractSettings_ContractSetting
|
|
|
147
140
|
readonly extraProperties?: {
|
|
148
141
|
[key: string]: unknown;
|
|
149
142
|
} | null;
|
|
150
|
-
id: string;
|
|
151
143
|
name: string;
|
|
144
|
+
isDefault?: boolean;
|
|
152
145
|
referenceNumber: number;
|
|
153
146
|
invoicingFrequency: number;
|
|
154
147
|
termOfPayment: number;
|
|
155
|
-
deliveryFee
|
|
156
|
-
factoring
|
|
157
|
-
|
|
148
|
+
deliveryFee?: boolean;
|
|
149
|
+
factoring?: boolean;
|
|
150
|
+
invoicingAddressId: string;
|
|
158
151
|
invoiceChannel: number;
|
|
159
|
-
eTaxFree
|
|
152
|
+
eTaxFree?: boolean;
|
|
160
153
|
receiptType: number;
|
|
161
|
-
crossTaxFreeForm
|
|
162
|
-
facturaNumberIsUnique
|
|
163
|
-
goodsHaveSerialNumbers
|
|
164
|
-
excludeFromCashLimit
|
|
165
|
-
deskoScanner
|
|
166
|
-
contractHeaderId: string;
|
|
154
|
+
crossTaxFreeForm?: boolean;
|
|
155
|
+
facturaNumberIsUnique?: boolean;
|
|
156
|
+
goodsHaveSerialNumbers?: boolean;
|
|
157
|
+
excludeFromCashLimit?: boolean;
|
|
158
|
+
deskoScanner?: boolean;
|
|
167
159
|
};
|
|
168
160
|
|
|
169
161
|
export type UniRefund_ContractService_Contracts_ContractStores_ContractStoreCreateDto = {
|
|
@@ -171,7 +163,6 @@ export type UniRefund_ContractService_Contracts_ContractStores_ContractStoreCrea
|
|
|
171
163
|
[key: string]: unknown;
|
|
172
164
|
} | null;
|
|
173
165
|
merchantId: string;
|
|
174
|
-
contractSettingId: string;
|
|
175
166
|
receiptType: number;
|
|
176
167
|
};
|
|
177
168
|
|
|
@@ -185,55 +176,17 @@ export type UniRefund_ContractService_Contracts_ContractStores_ContractStoreDto
|
|
|
185
176
|
deleterId?: string | null;
|
|
186
177
|
deletionTime?: string | null;
|
|
187
178
|
merchantId?: string;
|
|
188
|
-
receiptType?:
|
|
179
|
+
receiptType?: AyasofYazilim_Enum_Enums_EnumDto;
|
|
189
180
|
};
|
|
190
181
|
|
|
191
182
|
export type UniRefund_ContractService_Contracts_ContractStores_ContractStoreUpdateDto = {
|
|
192
183
|
readonly extraProperties?: {
|
|
193
184
|
[key: string]: unknown;
|
|
194
185
|
} | null;
|
|
195
|
-
id: string;
|
|
196
186
|
merchantId: string;
|
|
197
|
-
contractSettingId: string;
|
|
198
187
|
receiptType: number;
|
|
199
188
|
};
|
|
200
189
|
|
|
201
|
-
export type UniRefund_ContractService_Enums_EnumDto = {
|
|
202
|
-
enumTypeId?: string | null;
|
|
203
|
-
key?: string | null;
|
|
204
|
-
value?: number;
|
|
205
|
-
};
|
|
206
|
-
|
|
207
|
-
export type UniRefund_ContractService_FeeTypes_FeeTypeCreateDto = {
|
|
208
|
-
readonly extraProperties?: {
|
|
209
|
-
[key: string]: unknown;
|
|
210
|
-
} | null;
|
|
211
|
-
feeTypeCode: number;
|
|
212
|
-
direction: number;
|
|
213
|
-
};
|
|
214
|
-
|
|
215
|
-
export type UniRefund_ContractService_FeeTypes_FeeTypeDto = {
|
|
216
|
-
id?: number;
|
|
217
|
-
creationTime?: string;
|
|
218
|
-
creatorId?: string | null;
|
|
219
|
-
lastModificationTime?: string | null;
|
|
220
|
-
lastModifierId?: string | null;
|
|
221
|
-
isDeleted?: boolean;
|
|
222
|
-
deleterId?: string | null;
|
|
223
|
-
deletionTime?: string | null;
|
|
224
|
-
feeTypeCode?: UniRefund_ContractService_Enums_EnumDto;
|
|
225
|
-
direction?: UniRefund_ContractService_Enums_EnumDto;
|
|
226
|
-
};
|
|
227
|
-
|
|
228
|
-
export type UniRefund_ContractService_FeeTypes_FeeTypeUpdateDto = {
|
|
229
|
-
readonly extraProperties?: {
|
|
230
|
-
[key: string]: unknown;
|
|
231
|
-
} | null;
|
|
232
|
-
id: number;
|
|
233
|
-
feeTypeCode: number;
|
|
234
|
-
direction: number;
|
|
235
|
-
};
|
|
236
|
-
|
|
237
190
|
export type UniRefund_ContractService_Rebates_MinimumNetCommissions_MinimumNetCommissionCreateDto = {
|
|
238
191
|
readonly extraProperties?: {
|
|
239
192
|
[key: string]: unknown;
|
|
@@ -241,7 +194,6 @@ export type UniRefund_ContractService_Rebates_MinimumNetCommissions_MinimumNetCo
|
|
|
241
194
|
amount: number;
|
|
242
195
|
validFrom: string;
|
|
243
196
|
validTo: string;
|
|
244
|
-
rebateSettingId: string;
|
|
245
197
|
appliedOrganizationId?: string | null;
|
|
246
198
|
};
|
|
247
199
|
|
|
@@ -265,11 +217,9 @@ export type UniRefund_ContractService_Rebates_MinimumNetCommissions_MinimumNetCo
|
|
|
265
217
|
readonly extraProperties?: {
|
|
266
218
|
[key: string]: unknown;
|
|
267
219
|
} | null;
|
|
268
|
-
id: string;
|
|
269
220
|
amount: number;
|
|
270
221
|
validFrom: string;
|
|
271
222
|
validTo: string;
|
|
272
|
-
rebateSettingId: string;
|
|
273
223
|
appliedOrganizationId?: string | null;
|
|
274
224
|
};
|
|
275
225
|
|
|
@@ -281,7 +231,6 @@ export type UniRefund_ContractService_Rebates_ProcessingFeeDetails_ProcessingFee
|
|
|
281
231
|
amount: number;
|
|
282
232
|
validFrom: string;
|
|
283
233
|
validTo: string;
|
|
284
|
-
rebateTableHeaderId: string;
|
|
285
234
|
};
|
|
286
235
|
|
|
287
236
|
export type UniRefund_ContractService_Rebates_ProcessingFeeDetails_ProcessingFeeDetailDto = {
|
|
@@ -304,12 +253,22 @@ export type UniRefund_ContractService_Rebates_ProcessingFeeDetails_ProcessingFee
|
|
|
304
253
|
readonly extraProperties?: {
|
|
305
254
|
[key: string]: unknown;
|
|
306
255
|
} | null;
|
|
307
|
-
id: string;
|
|
308
256
|
name: string;
|
|
309
257
|
amount: number;
|
|
310
258
|
validFrom: string;
|
|
311
259
|
validTo: string;
|
|
312
|
-
|
|
260
|
+
};
|
|
261
|
+
|
|
262
|
+
export type UniRefund_ContractService_Rebates_RebateSettingRebateTableHeaders_RebateSettingRebateTableHeaderDto = {
|
|
263
|
+
id?: string;
|
|
264
|
+
creationTime?: string;
|
|
265
|
+
creatorId?: string | null;
|
|
266
|
+
lastModificationTime?: string | null;
|
|
267
|
+
lastModifierId?: string | null;
|
|
268
|
+
isDeleted?: boolean;
|
|
269
|
+
deleterId?: string | null;
|
|
270
|
+
deletionTime?: string | null;
|
|
271
|
+
rebateTableHeader?: UniRefund_ContractService_Rebates_RebateTableHeaders_RebateTableHeaderDto;
|
|
313
272
|
};
|
|
314
273
|
|
|
315
274
|
export type UniRefund_ContractService_Rebates_RebateSettings_RebateSettingCreateDto = {
|
|
@@ -319,9 +278,10 @@ export type UniRefund_ContractService_Rebates_RebateSettings_RebateSettingCreate
|
|
|
319
278
|
referenceNumber: number;
|
|
320
279
|
isTrustedMerchant: boolean;
|
|
321
280
|
rebateStatementPeriod: number;
|
|
322
|
-
|
|
281
|
+
rebateTableHeaders?: Array<UniRefund_ContractService_Rebates_RebateTableHeaders_RebateTableHeaderCreateDto> | null;
|
|
282
|
+
rebateTableHeaderIds?: Array<(string)> | null;
|
|
323
283
|
contactInformationTypeId: string;
|
|
324
|
-
|
|
284
|
+
minimumNetCommissions?: Array<UniRefund_ContractService_Rebates_MinimumNetCommissions_MinimumNetCommissionCreateDto> | null;
|
|
325
285
|
};
|
|
326
286
|
|
|
327
287
|
export type UniRefund_ContractService_Rebates_RebateSettings_RebateSettingDto = {
|
|
@@ -335,11 +295,11 @@ export type UniRefund_ContractService_Rebates_RebateSettings_RebateSettingDto =
|
|
|
335
295
|
deletionTime?: string | null;
|
|
336
296
|
referenceNumber?: number;
|
|
337
297
|
isTrustedMerchant?: boolean;
|
|
338
|
-
rebateStatementPeriod?:
|
|
339
|
-
rebateTableHeader?: UniRefund_ContractService_Rebates_RebateTableHeaders_RebateTableHeaderDto;
|
|
298
|
+
rebateStatementPeriod?: AyasofYazilim_Enum_Enums_EnumDto;
|
|
340
299
|
contactInformationTypeId?: string;
|
|
341
300
|
merchantId?: string;
|
|
342
301
|
contractHeaderId?: string;
|
|
302
|
+
rebateSettingRebateTableHeaders?: Array<UniRefund_ContractService_Rebates_RebateSettingRebateTableHeaders_RebateSettingRebateTableHeaderDto> | null;
|
|
343
303
|
minimumNetCommissions?: Array<UniRefund_ContractService_Rebates_MinimumNetCommissions_MinimumNetCommissionDto> | null;
|
|
344
304
|
};
|
|
345
305
|
|
|
@@ -347,14 +307,11 @@ export type UniRefund_ContractService_Rebates_RebateSettings_RebateSettingUpdate
|
|
|
347
307
|
readonly extraProperties?: {
|
|
348
308
|
[key: string]: unknown;
|
|
349
309
|
} | null;
|
|
350
|
-
id: string;
|
|
351
310
|
referenceNumber: number;
|
|
352
311
|
isTrustedMerchant: boolean;
|
|
353
312
|
rebateStatementPeriod: number;
|
|
354
|
-
rebateTableHeaderId: string;
|
|
355
313
|
contactInformationTypeId: string;
|
|
356
314
|
merchantId: string;
|
|
357
|
-
contractHeaderId: string;
|
|
358
315
|
};
|
|
359
316
|
|
|
360
317
|
export type UniRefund_ContractService_Rebates_RebateTableDetails_RebateTableDetailCreateDto = {
|
|
@@ -365,7 +322,6 @@ export type UniRefund_ContractService_Rebates_RebateTableDetails_RebateTableDeta
|
|
|
365
322
|
percentFeeValue: number;
|
|
366
323
|
refundMethod: number;
|
|
367
324
|
variableFee: number;
|
|
368
|
-
rebateTableHeaderId: string;
|
|
369
325
|
};
|
|
370
326
|
|
|
371
327
|
export type UniRefund_ContractService_Rebates_RebateTableDetails_RebateTableDetailDto = {
|
|
@@ -379,8 +335,8 @@ export type UniRefund_ContractService_Rebates_RebateTableDetails_RebateTableDeta
|
|
|
379
335
|
deletionTime?: string | null;
|
|
380
336
|
fixedFeeValue?: number;
|
|
381
337
|
percentFeeValue?: number;
|
|
382
|
-
refundMethod?:
|
|
383
|
-
variableFee?:
|
|
338
|
+
refundMethod?: AyasofYazilim_Enum_Enums_EnumDto;
|
|
339
|
+
variableFee?: AyasofYazilim_Enum_Enums_EnumDto;
|
|
384
340
|
rebateTableHeaderId?: string;
|
|
385
341
|
};
|
|
386
342
|
|
|
@@ -388,12 +344,10 @@ export type UniRefund_ContractService_Rebates_RebateTableDetails_RebateTableDeta
|
|
|
388
344
|
readonly extraProperties?: {
|
|
389
345
|
[key: string]: unknown;
|
|
390
346
|
} | null;
|
|
391
|
-
id: string;
|
|
392
347
|
fixedFeeValue: number;
|
|
393
348
|
percentFeeValue: number;
|
|
394
349
|
refundMethod: number;
|
|
395
350
|
variableFee: number;
|
|
396
|
-
rebateTableHeaderId: string;
|
|
397
351
|
};
|
|
398
352
|
|
|
399
353
|
export type UniRefund_ContractService_Rebates_RebateTableHeaders_RebateTableHeaderCreateDto = {
|
|
@@ -401,10 +355,12 @@ export type UniRefund_ContractService_Rebates_RebateTableHeaders_RebateTableHead
|
|
|
401
355
|
[key: string]: unknown;
|
|
402
356
|
} | null;
|
|
403
357
|
name: string;
|
|
404
|
-
calculateNetCommissionInsteadOfRefund
|
|
358
|
+
calculateNetCommissionInsteadOfRefund?: boolean;
|
|
405
359
|
validFrom: string;
|
|
406
360
|
validTo: string;
|
|
407
|
-
isTemplate
|
|
361
|
+
isTemplate?: boolean;
|
|
362
|
+
rebateTableDetails?: Array<UniRefund_ContractService_Rebates_RebateTableDetails_RebateTableDetailCreateDto> | null;
|
|
363
|
+
processingFeeDetails?: Array<UniRefund_ContractService_Rebates_ProcessingFeeDetails_ProcessingFeeDetailCreateDto> | null;
|
|
408
364
|
};
|
|
409
365
|
|
|
410
366
|
export type UniRefund_ContractService_Rebates_RebateTableHeaders_RebateTableHeaderDto = {
|
|
@@ -429,12 +385,11 @@ export type UniRefund_ContractService_Rebates_RebateTableHeaders_RebateTableHead
|
|
|
429
385
|
readonly extraProperties?: {
|
|
430
386
|
[key: string]: unknown;
|
|
431
387
|
} | null;
|
|
432
|
-
id: string;
|
|
433
388
|
name: string;
|
|
434
|
-
calculateNetCommissionInsteadOfRefund
|
|
389
|
+
calculateNetCommissionInsteadOfRefund?: boolean;
|
|
435
390
|
validFrom: string;
|
|
436
391
|
validTo: string;
|
|
437
|
-
isTemplate
|
|
392
|
+
isTemplate?: boolean;
|
|
438
393
|
};
|
|
439
394
|
|
|
440
395
|
export type UniRefund_ContractService_Refunds_RefundFeeDetails_RefundFeeDetailCreateDto = {
|
|
@@ -447,7 +402,7 @@ export type UniRefund_ContractService_Refunds_RefundFeeDetails_RefundFeeDetailCr
|
|
|
447
402
|
percentFeeValue: number;
|
|
448
403
|
minFee: number;
|
|
449
404
|
maxFee: number;
|
|
450
|
-
|
|
405
|
+
feeType: number;
|
|
451
406
|
refundMethod: number;
|
|
452
407
|
refundFeeHeaderId: string;
|
|
453
408
|
};
|
|
@@ -467,8 +422,8 @@ export type UniRefund_ContractService_Refunds_RefundFeeDetails_RefundFeeDetailDt
|
|
|
467
422
|
percentFeeValue?: number;
|
|
468
423
|
minFee?: number;
|
|
469
424
|
maxFee?: number;
|
|
470
|
-
|
|
471
|
-
refundMethod?:
|
|
425
|
+
feeType?: AyasofYazilim_Enum_Enums_EnumDto;
|
|
426
|
+
refundMethod?: AyasofYazilim_Enum_Enums_EnumDto;
|
|
472
427
|
refundFeeHeaderId?: string;
|
|
473
428
|
};
|
|
474
429
|
|
|
@@ -476,16 +431,14 @@ export type UniRefund_ContractService_Refunds_RefundFeeDetails_RefundFeeDetailUp
|
|
|
476
431
|
readonly extraProperties?: {
|
|
477
432
|
[key: string]: unknown;
|
|
478
433
|
} | null;
|
|
479
|
-
id: string;
|
|
480
434
|
amountFrom: number;
|
|
481
435
|
amountTo: number;
|
|
482
436
|
fixedFeeValue: number;
|
|
483
437
|
percentFeeValue: number;
|
|
484
438
|
minFee: number;
|
|
485
439
|
maxFee: number;
|
|
486
|
-
|
|
440
|
+
feeType: number;
|
|
487
441
|
refundMethod: number;
|
|
488
|
-
refundFeeHeaderId: string;
|
|
489
442
|
};
|
|
490
443
|
|
|
491
444
|
export type UniRefund_ContractService_Refunds_RefundFeeHeaders_RefundFeeHeaderCreateDto = {
|
|
@@ -495,7 +448,7 @@ export type UniRefund_ContractService_Refunds_RefundFeeHeaders_RefundFeeHeaderCr
|
|
|
495
448
|
name: string;
|
|
496
449
|
validFrom: string;
|
|
497
450
|
validTo: string;
|
|
498
|
-
isActive
|
|
451
|
+
isActive?: boolean;
|
|
499
452
|
};
|
|
500
453
|
|
|
501
454
|
export type UniRefund_ContractService_Refunds_RefundFeeHeaders_RefundFeeHeaderDto = {
|
|
@@ -518,11 +471,10 @@ export type UniRefund_ContractService_Refunds_RefundFeeHeaders_RefundFeeHeaderUp
|
|
|
518
471
|
readonly extraProperties?: {
|
|
519
472
|
[key: string]: unknown;
|
|
520
473
|
} | null;
|
|
521
|
-
id: string;
|
|
522
474
|
name: string;
|
|
523
475
|
validFrom: string;
|
|
524
476
|
validTo: string;
|
|
525
|
-
isActive
|
|
477
|
+
isActive?: boolean;
|
|
526
478
|
};
|
|
527
479
|
|
|
528
480
|
export type UniRefund_ContractService_Refunds_RefundTableDetails_RefundTableDetailCreateDto = {
|
|
@@ -530,12 +482,11 @@ export type UniRefund_ContractService_Refunds_RefundTableDetails_RefundTableDeta
|
|
|
530
482
|
[key: string]: unknown;
|
|
531
483
|
} | null;
|
|
532
484
|
vatRate: number;
|
|
533
|
-
minValue
|
|
534
|
-
maxValue
|
|
535
|
-
refundAmount
|
|
536
|
-
refundPercent
|
|
537
|
-
isLoyalty
|
|
538
|
-
refundTableHeaderId: string;
|
|
485
|
+
minValue?: number;
|
|
486
|
+
maxValue?: number;
|
|
487
|
+
refundAmount?: number;
|
|
488
|
+
refundPercent?: number;
|
|
489
|
+
isLoyalty?: boolean;
|
|
539
490
|
};
|
|
540
491
|
|
|
541
492
|
export type UniRefund_ContractService_Refunds_RefundTableDetails_RefundTableDetailDto = {
|
|
@@ -559,14 +510,12 @@ export type UniRefund_ContractService_Refunds_RefundTableDetails_RefundTableDeta
|
|
|
559
510
|
readonly extraProperties?: {
|
|
560
511
|
[key: string]: unknown;
|
|
561
512
|
} | null;
|
|
562
|
-
id: string;
|
|
563
513
|
vatRate: number;
|
|
564
514
|
minValue: number;
|
|
565
515
|
maxValue: number;
|
|
566
516
|
refundAmount: number;
|
|
567
517
|
refundPercent: number;
|
|
568
|
-
isLoyalty
|
|
569
|
-
refundTableHeaderId: string;
|
|
518
|
+
isLoyalty?: boolean;
|
|
570
519
|
};
|
|
571
520
|
|
|
572
521
|
export type UniRefund_ContractService_Refunds_RefundTableHeaders_RefundTableHeaderCreateDto = {
|
|
@@ -576,8 +525,8 @@ export type UniRefund_ContractService_Refunds_RefundTableHeaders_RefundTableHead
|
|
|
576
525
|
name: string;
|
|
577
526
|
validFrom: string;
|
|
578
527
|
validTo: string;
|
|
579
|
-
isDefault
|
|
580
|
-
isBundling
|
|
528
|
+
isDefault?: boolean;
|
|
529
|
+
isBundling?: boolean;
|
|
581
530
|
};
|
|
582
531
|
|
|
583
532
|
export type UniRefund_ContractService_Refunds_RefundTableHeaders_RefundTableHeaderDto = {
|
|
@@ -601,12 +550,11 @@ export type UniRefund_ContractService_Refunds_RefundTableHeaders_RefundTableHead
|
|
|
601
550
|
readonly extraProperties?: {
|
|
602
551
|
[key: string]: unknown;
|
|
603
552
|
} | null;
|
|
604
|
-
id: string;
|
|
605
553
|
name: string;
|
|
606
554
|
validFrom: string;
|
|
607
555
|
validTo: string;
|
|
608
|
-
isDefault
|
|
609
|
-
isBundling
|
|
556
|
+
isDefault?: boolean;
|
|
557
|
+
isBundling?: boolean;
|
|
610
558
|
};
|
|
611
559
|
|
|
612
560
|
export type Volo_Abp_Application_Dtos_PagedResultDto_1 = {
|
|
@@ -635,51 +583,31 @@ export type Volo_Abp_Application_Dtos_PagedResultDto_15 = {
|
|
|
635
583
|
};
|
|
636
584
|
|
|
637
585
|
export type Volo_Abp_Application_Dtos_PagedResultDto_16 = {
|
|
638
|
-
items?: Array<UniRefund_ContractService_FeeTypes_FeeTypeDto> | null;
|
|
639
|
-
totalCount?: number;
|
|
640
|
-
};
|
|
641
|
-
|
|
642
|
-
export type Volo_Abp_Application_Dtos_PagedResultDto_17 = {
|
|
643
586
|
items?: Array<UniRefund_ContractService_Rebates_MinimumNetCommissions_MinimumNetCommissionDto> | null;
|
|
644
587
|
totalCount?: number;
|
|
645
588
|
};
|
|
646
589
|
|
|
647
|
-
export type
|
|
648
|
-
items?: Array<UniRefund_ContractService_Rebates_ProcessingFeeDetails_ProcessingFeeDetailDto> | null;
|
|
649
|
-
totalCount?: number;
|
|
650
|
-
};
|
|
651
|
-
|
|
652
|
-
export type Volo_Abp_Application_Dtos_PagedResultDto_19 = {
|
|
653
|
-
items?: Array<UniRefund_ContractService_Rebates_RebateSettings_RebateSettingDto> | null;
|
|
654
|
-
totalCount?: number;
|
|
655
|
-
};
|
|
656
|
-
|
|
657
|
-
export type Volo_Abp_Application_Dtos_PagedResultDto_110 = {
|
|
590
|
+
export type Volo_Abp_Application_Dtos_PagedResultDto_17 = {
|
|
658
591
|
items?: Array<UniRefund_ContractService_Rebates_RebateTableDetails_RebateTableDetailDto> | null;
|
|
659
592
|
totalCount?: number;
|
|
660
593
|
};
|
|
661
594
|
|
|
662
|
-
export type
|
|
595
|
+
export type Volo_Abp_Application_Dtos_PagedResultDto_18 = {
|
|
663
596
|
items?: Array<UniRefund_ContractService_Rebates_RebateTableHeaders_RebateTableHeaderDto> | null;
|
|
664
597
|
totalCount?: number;
|
|
665
598
|
};
|
|
666
599
|
|
|
667
|
-
export type
|
|
668
|
-
items?: Array<UniRefund_ContractService_Refunds_RefundFeeDetails_RefundFeeDetailDto> | null;
|
|
669
|
-
totalCount?: number;
|
|
670
|
-
};
|
|
671
|
-
|
|
672
|
-
export type Volo_Abp_Application_Dtos_PagedResultDto_113 = {
|
|
600
|
+
export type Volo_Abp_Application_Dtos_PagedResultDto_19 = {
|
|
673
601
|
items?: Array<UniRefund_ContractService_Refunds_RefundFeeHeaders_RefundFeeHeaderDto> | null;
|
|
674
602
|
totalCount?: number;
|
|
675
603
|
};
|
|
676
604
|
|
|
677
|
-
export type
|
|
605
|
+
export type Volo_Abp_Application_Dtos_PagedResultDto_110 = {
|
|
678
606
|
items?: Array<UniRefund_ContractService_Refunds_RefundTableDetails_RefundTableDetailDto> | null;
|
|
679
607
|
totalCount?: number;
|
|
680
608
|
};
|
|
681
609
|
|
|
682
|
-
export type
|
|
610
|
+
export type Volo_Abp_Application_Dtos_PagedResultDto_111 = {
|
|
683
611
|
items?: Array<UniRefund_ContractService_Refunds_RefundTableHeaders_RefundTableHeaderDto> | null;
|
|
684
612
|
totalCount?: number;
|
|
685
613
|
};
|
|
@@ -1086,17 +1014,31 @@ export type GetApiAbpApplicationLocalizationData = {
|
|
|
1086
1014
|
|
|
1087
1015
|
export type GetApiAbpApplicationLocalizationResponse = Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationDto;
|
|
1088
1016
|
|
|
1089
|
-
export type
|
|
1017
|
+
export type PostApiContractServiceContractsContractSettingsByContractHeaderIdData = {
|
|
1018
|
+
contractHeaderId: string;
|
|
1090
1019
|
requestBody?: UniRefund_ContractService_Contracts_ContractSettings_ContractSettingCreateDto;
|
|
1091
1020
|
};
|
|
1092
1021
|
|
|
1093
|
-
export type
|
|
1022
|
+
export type PostApiContractServiceContractsContractSettingsByContractHeaderIdResponse = UniRefund_ContractService_Contracts_ContractSettings_ContractSettingDto;
|
|
1094
1023
|
|
|
1095
|
-
export type
|
|
1096
|
-
id
|
|
1024
|
+
export type DeleteApiContractServiceContractsContractSettingsByIdData = {
|
|
1025
|
+
id: string;
|
|
1026
|
+
};
|
|
1027
|
+
|
|
1028
|
+
export type DeleteApiContractServiceContractsContractSettingsByIdResponse = unknown;
|
|
1029
|
+
|
|
1030
|
+
export type GetApiContractServiceContractsContractSettingsByIdData = {
|
|
1031
|
+
id: string;
|
|
1097
1032
|
};
|
|
1098
1033
|
|
|
1099
|
-
export type
|
|
1034
|
+
export type GetApiContractServiceContractsContractSettingsByIdResponse = UniRefund_ContractService_Contracts_ContractSettings_ContractSettingDto;
|
|
1035
|
+
|
|
1036
|
+
export type PutApiContractServiceContractsContractSettingsByIdData = {
|
|
1037
|
+
id: string;
|
|
1038
|
+
requestBody?: UniRefund_ContractService_Contracts_ContractSettings_ContractSettingUpdateDto;
|
|
1039
|
+
};
|
|
1040
|
+
|
|
1041
|
+
export type PutApiContractServiceContractsContractSettingsByIdResponse = UniRefund_ContractService_Contracts_ContractSettings_ContractSettingDto;
|
|
1100
1042
|
|
|
1101
1043
|
export type GetApiContractServiceContractsContractSettingsData = {
|
|
1102
1044
|
maxResultCount?: number;
|
|
@@ -1106,30 +1048,31 @@ export type GetApiContractServiceContractsContractSettingsData = {
|
|
|
1106
1048
|
|
|
1107
1049
|
export type GetApiContractServiceContractsContractSettingsResponse = Volo_Abp_Application_Dtos_PagedResultDto_1;
|
|
1108
1050
|
|
|
1109
|
-
export type
|
|
1110
|
-
|
|
1111
|
-
requestBody?:
|
|
1051
|
+
export type PostApiContractServiceContractsContractStoresByContractSettingIdData = {
|
|
1052
|
+
contractSettingId: string;
|
|
1053
|
+
requestBody?: UniRefund_ContractService_Contracts_ContractStores_ContractStoreCreateDto;
|
|
1112
1054
|
};
|
|
1113
1055
|
|
|
1114
|
-
export type
|
|
1056
|
+
export type PostApiContractServiceContractsContractStoresByContractSettingIdResponse = UniRefund_ContractService_Contracts_ContractStores_ContractStoreDto;
|
|
1115
1057
|
|
|
1116
|
-
export type
|
|
1058
|
+
export type DeleteApiContractServiceContractsContractStoresByIdData = {
|
|
1117
1059
|
id: string;
|
|
1118
1060
|
};
|
|
1119
1061
|
|
|
1120
|
-
export type
|
|
1062
|
+
export type DeleteApiContractServiceContractsContractStoresByIdResponse = unknown;
|
|
1121
1063
|
|
|
1122
|
-
export type
|
|
1123
|
-
|
|
1064
|
+
export type GetApiContractServiceContractsContractStoresByIdData = {
|
|
1065
|
+
id: string;
|
|
1124
1066
|
};
|
|
1125
1067
|
|
|
1126
|
-
export type
|
|
1068
|
+
export type GetApiContractServiceContractsContractStoresByIdResponse = UniRefund_ContractService_Contracts_ContractStores_ContractStoreDto;
|
|
1127
1069
|
|
|
1128
|
-
export type
|
|
1129
|
-
id
|
|
1070
|
+
export type PutApiContractServiceContractsContractStoresByIdData = {
|
|
1071
|
+
id: string;
|
|
1072
|
+
requestBody?: UniRefund_ContractService_Contracts_ContractStores_ContractStoreUpdateDto;
|
|
1130
1073
|
};
|
|
1131
1074
|
|
|
1132
|
-
export type
|
|
1075
|
+
export type PutApiContractServiceContractsContractStoresByIdResponse = UniRefund_ContractService_Contracts_ContractStores_ContractStoreDto;
|
|
1133
1076
|
|
|
1134
1077
|
export type GetApiContractServiceContractsContractStoresData = {
|
|
1135
1078
|
maxResultCount?: number;
|
|
@@ -1139,31 +1082,12 @@ export type GetApiContractServiceContractsContractStoresData = {
|
|
|
1139
1082
|
|
|
1140
1083
|
export type GetApiContractServiceContractsContractStoresResponse = Volo_Abp_Application_Dtos_PagedResultDto_1;
|
|
1141
1084
|
|
|
1142
|
-
export type PutApiContractServiceContractsContractStoresData = {
|
|
1143
|
-
id?: string;
|
|
1144
|
-
requestBody?: UniRefund_ContractService_Contracts_ContractStores_ContractStoreUpdateDto;
|
|
1145
|
-
};
|
|
1146
|
-
|
|
1147
|
-
export type PutApiContractServiceContractsContractStoresResponse = UniRefund_ContractService_Contracts_ContractStores_ContractStoreDto;
|
|
1148
|
-
|
|
1149
|
-
export type GetApiContractServiceContractsContractStoresByIdData = {
|
|
1150
|
-
id: string;
|
|
1151
|
-
};
|
|
1152
|
-
|
|
1153
|
-
export type GetApiContractServiceContractsContractStoresByIdResponse = UniRefund_ContractService_Contracts_ContractStores_ContractStoreDto;
|
|
1154
|
-
|
|
1155
1085
|
export type PostApiContractServiceContractsContractHeadersData = {
|
|
1156
1086
|
requestBody?: UniRefund_ContractService_Contracts_ContractHeaders_ContractHeaderCreateDto;
|
|
1157
1087
|
};
|
|
1158
1088
|
|
|
1159
1089
|
export type PostApiContractServiceContractsContractHeadersResponse = UniRefund_ContractService_Contracts_ContractHeaders_ContractHeaderDto;
|
|
1160
1090
|
|
|
1161
|
-
export type DeleteApiContractServiceContractsContractHeadersData = {
|
|
1162
|
-
id?: string;
|
|
1163
|
-
};
|
|
1164
|
-
|
|
1165
|
-
export type DeleteApiContractServiceContractsContractHeadersResponse = unknown;
|
|
1166
|
-
|
|
1167
1091
|
export type GetApiContractServiceContractsContractHeadersData = {
|
|
1168
1092
|
maxResultCount?: number;
|
|
1169
1093
|
skipCount?: number;
|
|
@@ -1172,12 +1096,11 @@ export type GetApiContractServiceContractsContractHeadersData = {
|
|
|
1172
1096
|
|
|
1173
1097
|
export type GetApiContractServiceContractsContractHeadersResponse = Volo_Abp_Application_Dtos_PagedResultDto_1;
|
|
1174
1098
|
|
|
1175
|
-
export type
|
|
1176
|
-
id
|
|
1177
|
-
requestBody?: UniRefund_ContractService_Contracts_ContractHeaders_ContractHeaderUpdateDto;
|
|
1099
|
+
export type DeleteApiContractServiceContractsContractHeadersByIdData = {
|
|
1100
|
+
id: string;
|
|
1178
1101
|
};
|
|
1179
1102
|
|
|
1180
|
-
export type
|
|
1103
|
+
export type DeleteApiContractServiceContractsContractHeadersByIdResponse = unknown;
|
|
1181
1104
|
|
|
1182
1105
|
export type GetApiContractServiceContractsContractHeadersByIdData = {
|
|
1183
1106
|
id: string;
|
|
@@ -1185,19 +1108,18 @@ export type GetApiContractServiceContractsContractHeadersByIdData = {
|
|
|
1185
1108
|
|
|
1186
1109
|
export type GetApiContractServiceContractsContractHeadersByIdResponse = UniRefund_ContractService_Contracts_ContractHeaders_ContractHeaderDto;
|
|
1187
1110
|
|
|
1188
|
-
export type
|
|
1111
|
+
export type PutApiContractServiceContractsContractHeadersByIdData = {
|
|
1189
1112
|
id: string;
|
|
1113
|
+
requestBody?: UniRefund_ContractService_Contracts_ContractHeaders_ContractHeaderUpdateDto;
|
|
1190
1114
|
};
|
|
1191
1115
|
|
|
1192
|
-
export type
|
|
1116
|
+
export type PutApiContractServiceContractsContractHeadersByIdResponse = UniRefund_ContractService_Contracts_ContractHeaders_ContractHeaderDto;
|
|
1193
1117
|
|
|
1194
|
-
export type
|
|
1195
|
-
|
|
1196
|
-
skipCount?: number;
|
|
1197
|
-
sorting?: string;
|
|
1118
|
+
export type GetApiContractServiceContractsContractHeadersDetailByIdData = {
|
|
1119
|
+
id: string;
|
|
1198
1120
|
};
|
|
1199
1121
|
|
|
1200
|
-
export type
|
|
1122
|
+
export type GetApiContractServiceContractsContractHeadersDetailByIdResponse = UniRefund_ContractService_Contracts_ContractHeaders_ContractHeaderDto;
|
|
1201
1123
|
|
|
1202
1124
|
export type GetApiEnumServiceEnumsGetListByEnumTypeIdByEnumTypeIdData = {
|
|
1203
1125
|
enumTypeId: string;
|
|
@@ -1233,26 +1155,18 @@ export type GetApiContractServiceRebateTablesRebateSettingsByIdData = {
|
|
|
1233
1155
|
|
|
1234
1156
|
export type GetApiContractServiceRebateTablesRebateSettingsByIdResponse = UniRefund_ContractService_Rebates_RebateSettings_RebateSettingDto;
|
|
1235
1157
|
|
|
1236
|
-
export type
|
|
1237
|
-
|
|
1238
|
-
skipCount?: number;
|
|
1239
|
-
sorting?: string;
|
|
1240
|
-
};
|
|
1241
|
-
|
|
1242
|
-
export type GetApiContractServiceRebateTablesRebateSettingsResponse = Volo_Abp_Application_Dtos_PagedResultDto_1;
|
|
1243
|
-
|
|
1244
|
-
export type PutApiContractServiceRebateTablesRebateSettingsData = {
|
|
1245
|
-
id?: string;
|
|
1158
|
+
export type PutApiContractServiceRebateTablesRebateSettingsByIdData = {
|
|
1159
|
+
id: string;
|
|
1246
1160
|
requestBody?: UniRefund_ContractService_Rebates_RebateSettings_RebateSettingUpdateDto;
|
|
1247
1161
|
};
|
|
1248
1162
|
|
|
1249
|
-
export type
|
|
1163
|
+
export type PutApiContractServiceRebateTablesRebateSettingsByIdResponse = UniRefund_ContractService_Rebates_RebateSettings_RebateSettingDto;
|
|
1250
1164
|
|
|
1251
|
-
export type
|
|
1252
|
-
id
|
|
1165
|
+
export type DeleteApiContractServiceRebateTablesRebateSettingsByIdData = {
|
|
1166
|
+
id: string;
|
|
1253
1167
|
};
|
|
1254
1168
|
|
|
1255
|
-
export type
|
|
1169
|
+
export type DeleteApiContractServiceRebateTablesRebateSettingsByIdResponse = unknown;
|
|
1256
1170
|
|
|
1257
1171
|
export type GetApiContractServiceRebateTablesRebateSettingsDetailByIdData = {
|
|
1258
1172
|
id: string;
|
|
@@ -1260,19 +1174,24 @@ export type GetApiContractServiceRebateTablesRebateSettingsDetailByIdData = {
|
|
|
1260
1174
|
|
|
1261
1175
|
export type GetApiContractServiceRebateTablesRebateSettingsDetailByIdResponse = UniRefund_ContractService_Rebates_RebateSettings_RebateSettingDto;
|
|
1262
1176
|
|
|
1263
|
-
export type
|
|
1264
|
-
|
|
1265
|
-
skipCount?: number;
|
|
1266
|
-
sorting?: string;
|
|
1177
|
+
export type GetApiContractServiceRebateTablesMinimumNetCommissionsByIdData = {
|
|
1178
|
+
id: string;
|
|
1267
1179
|
};
|
|
1268
1180
|
|
|
1269
|
-
export type
|
|
1181
|
+
export type GetApiContractServiceRebateTablesMinimumNetCommissionsByIdResponse = UniRefund_ContractService_Rebates_MinimumNetCommissions_MinimumNetCommissionDto;
|
|
1270
1182
|
|
|
1271
|
-
export type
|
|
1183
|
+
export type PutApiContractServiceRebateTablesMinimumNetCommissionsByIdData = {
|
|
1184
|
+
id: string;
|
|
1185
|
+
requestBody?: UniRefund_ContractService_Rebates_MinimumNetCommissions_MinimumNetCommissionUpdateDto;
|
|
1186
|
+
};
|
|
1187
|
+
|
|
1188
|
+
export type PutApiContractServiceRebateTablesMinimumNetCommissionsByIdResponse = UniRefund_ContractService_Rebates_MinimumNetCommissions_MinimumNetCommissionDto;
|
|
1189
|
+
|
|
1190
|
+
export type DeleteApiContractServiceRebateTablesMinimumNetCommissionsByIdData = {
|
|
1272
1191
|
id: string;
|
|
1273
1192
|
};
|
|
1274
1193
|
|
|
1275
|
-
export type
|
|
1194
|
+
export type DeleteApiContractServiceRebateTablesMinimumNetCommissionsByIdResponse = unknown;
|
|
1276
1195
|
|
|
1277
1196
|
export type GetApiContractServiceRebateTablesMinimumNetCommissionsData = {
|
|
1278
1197
|
maxResultCount?: number;
|
|
@@ -1282,63 +1201,57 @@ export type GetApiContractServiceRebateTablesMinimumNetCommissionsData = {
|
|
|
1282
1201
|
|
|
1283
1202
|
export type GetApiContractServiceRebateTablesMinimumNetCommissionsResponse = Volo_Abp_Application_Dtos_PagedResultDto_1;
|
|
1284
1203
|
|
|
1285
|
-
export type
|
|
1204
|
+
export type PostApiContractServiceRebateTablesMinimumNetCommissionsByRebateSettingIdData = {
|
|
1205
|
+
rebateSettingId: string;
|
|
1286
1206
|
requestBody?: UniRefund_ContractService_Rebates_MinimumNetCommissions_MinimumNetCommissionCreateDto;
|
|
1287
1207
|
};
|
|
1288
1208
|
|
|
1289
|
-
export type
|
|
1290
|
-
|
|
1291
|
-
export type PutApiContractServiceRebateTablesMinimumNetCommissionsData = {
|
|
1292
|
-
id?: string;
|
|
1293
|
-
requestBody?: UniRefund_ContractService_Rebates_MinimumNetCommissions_MinimumNetCommissionUpdateDto;
|
|
1294
|
-
};
|
|
1295
|
-
|
|
1296
|
-
export type PutApiContractServiceRebateTablesMinimumNetCommissionsResponse = UniRefund_ContractService_Rebates_MinimumNetCommissions_MinimumNetCommissionDto;
|
|
1209
|
+
export type PostApiContractServiceRebateTablesMinimumNetCommissionsByRebateSettingIdResponse = UniRefund_ContractService_Rebates_MinimumNetCommissions_MinimumNetCommissionDto;
|
|
1297
1210
|
|
|
1298
|
-
export type
|
|
1299
|
-
id
|
|
1211
|
+
export type GetApiContractServiceRebateTablesRebateTableHeadersProcessingFeeDetailsByIdData = {
|
|
1212
|
+
id: string;
|
|
1300
1213
|
};
|
|
1301
1214
|
|
|
1302
|
-
export type
|
|
1215
|
+
export type GetApiContractServiceRebateTablesRebateTableHeadersProcessingFeeDetailsByIdResponse = UniRefund_ContractService_Rebates_ProcessingFeeDetails_ProcessingFeeDetailDto;
|
|
1303
1216
|
|
|
1304
|
-
export type
|
|
1217
|
+
export type PutApiContractServiceRebateTablesRebateTableHeadersProcessingFeeDetailsByIdData = {
|
|
1305
1218
|
id: string;
|
|
1219
|
+
requestBody?: UniRefund_ContractService_Rebates_ProcessingFeeDetails_ProcessingFeeDetailUpdateDto;
|
|
1306
1220
|
};
|
|
1307
1221
|
|
|
1308
|
-
export type
|
|
1222
|
+
export type PutApiContractServiceRebateTablesRebateTableHeadersProcessingFeeDetailsByIdResponse = UniRefund_ContractService_Rebates_ProcessingFeeDetails_ProcessingFeeDetailDto;
|
|
1309
1223
|
|
|
1310
|
-
export type
|
|
1311
|
-
|
|
1312
|
-
skipCount?: number;
|
|
1313
|
-
sorting?: string;
|
|
1224
|
+
export type DeleteApiContractServiceRebateTablesRebateTableHeadersProcessingFeeDetailsByIdData = {
|
|
1225
|
+
id: string;
|
|
1314
1226
|
};
|
|
1315
1227
|
|
|
1316
|
-
export type
|
|
1228
|
+
export type DeleteApiContractServiceRebateTablesRebateTableHeadersProcessingFeeDetailsByIdResponse = unknown;
|
|
1317
1229
|
|
|
1318
|
-
export type
|
|
1230
|
+
export type PostApiContractServiceRebateTablesRebateTableHeadersProcessingFeeDetailsByRebateTableHeaderIdData = {
|
|
1231
|
+
rebateTableHeaderId: string;
|
|
1319
1232
|
requestBody?: UniRefund_ContractService_Rebates_ProcessingFeeDetails_ProcessingFeeDetailCreateDto;
|
|
1320
1233
|
};
|
|
1321
1234
|
|
|
1322
|
-
export type
|
|
1235
|
+
export type PostApiContractServiceRebateTablesRebateTableHeadersProcessingFeeDetailsByRebateTableHeaderIdResponse = UniRefund_ContractService_Rebates_ProcessingFeeDetails_ProcessingFeeDetailDto;
|
|
1323
1236
|
|
|
1324
|
-
export type
|
|
1325
|
-
id
|
|
1326
|
-
requestBody?: UniRefund_ContractService_Rebates_ProcessingFeeDetails_ProcessingFeeDetailUpdateDto;
|
|
1237
|
+
export type GetApiContractServiceRebateTablesRebateTableDetailsByIdData = {
|
|
1238
|
+
id: string;
|
|
1327
1239
|
};
|
|
1328
1240
|
|
|
1329
|
-
export type
|
|
1241
|
+
export type GetApiContractServiceRebateTablesRebateTableDetailsByIdResponse = UniRefund_ContractService_Rebates_RebateTableDetails_RebateTableDetailDto;
|
|
1330
1242
|
|
|
1331
|
-
export type
|
|
1332
|
-
id
|
|
1243
|
+
export type PutApiContractServiceRebateTablesRebateTableDetailsByIdData = {
|
|
1244
|
+
id: string;
|
|
1245
|
+
requestBody?: UniRefund_ContractService_Rebates_RebateTableDetails_RebateTableDetailUpdateDto;
|
|
1333
1246
|
};
|
|
1334
1247
|
|
|
1335
|
-
export type
|
|
1248
|
+
export type PutApiContractServiceRebateTablesRebateTableDetailsByIdResponse = UniRefund_ContractService_Rebates_RebateTableDetails_RebateTableDetailDto;
|
|
1336
1249
|
|
|
1337
|
-
export type
|
|
1250
|
+
export type DeleteApiContractServiceRebateTablesRebateTableDetailsByIdData = {
|
|
1338
1251
|
id: string;
|
|
1339
1252
|
};
|
|
1340
1253
|
|
|
1341
|
-
export type
|
|
1254
|
+
export type DeleteApiContractServiceRebateTablesRebateTableDetailsByIdResponse = unknown;
|
|
1342
1255
|
|
|
1343
1256
|
export type GetApiContractServiceRebateTablesRebateTableDetailsData = {
|
|
1344
1257
|
maxResultCount?: number;
|
|
@@ -1348,24 +1261,12 @@ export type GetApiContractServiceRebateTablesRebateTableDetailsData = {
|
|
|
1348
1261
|
|
|
1349
1262
|
export type GetApiContractServiceRebateTablesRebateTableDetailsResponse = Volo_Abp_Application_Dtos_PagedResultDto_1;
|
|
1350
1263
|
|
|
1351
|
-
export type
|
|
1264
|
+
export type PostApiContractServiceRebateTablesRebateTableDetailsByRebateTableHeaderIdData = {
|
|
1265
|
+
rebateTableHeaderId: string;
|
|
1352
1266
|
requestBody?: UniRefund_ContractService_Rebates_RebateTableDetails_RebateTableDetailCreateDto;
|
|
1353
1267
|
};
|
|
1354
1268
|
|
|
1355
|
-
export type
|
|
1356
|
-
|
|
1357
|
-
export type PutApiContractServiceRebateTablesRebateTableDetailsData = {
|
|
1358
|
-
id?: string;
|
|
1359
|
-
requestBody?: UniRefund_ContractService_Rebates_RebateTableDetails_RebateTableDetailUpdateDto;
|
|
1360
|
-
};
|
|
1361
|
-
|
|
1362
|
-
export type PutApiContractServiceRebateTablesRebateTableDetailsResponse = UniRefund_ContractService_Rebates_RebateTableDetails_RebateTableDetailDto;
|
|
1363
|
-
|
|
1364
|
-
export type DeleteApiContractServiceRebateTablesRebateTableDetailsData = {
|
|
1365
|
-
id?: string;
|
|
1366
|
-
};
|
|
1367
|
-
|
|
1368
|
-
export type DeleteApiContractServiceRebateTablesRebateTableDetailsResponse = unknown;
|
|
1269
|
+
export type PostApiContractServiceRebateTablesRebateTableDetailsByRebateTableHeaderIdResponse = UniRefund_ContractService_Rebates_RebateTableDetails_RebateTableDetailDto;
|
|
1369
1270
|
|
|
1370
1271
|
export type GetApiContractServiceRebateTablesRebateTableHeadersDetailByIdData = {
|
|
1371
1272
|
id: string;
|
|
@@ -1373,13 +1274,13 @@ export type GetApiContractServiceRebateTablesRebateTableHeadersDetailByIdData =
|
|
|
1373
1274
|
|
|
1374
1275
|
export type GetApiContractServiceRebateTablesRebateTableHeadersDetailByIdResponse = UniRefund_ContractService_Rebates_RebateTableHeaders_RebateTableHeaderDto;
|
|
1375
1276
|
|
|
1376
|
-
export type
|
|
1277
|
+
export type GetApiContractServiceRebateTablesRebateTableHeadersTemplatesData = {
|
|
1377
1278
|
maxResultCount?: number;
|
|
1378
1279
|
skipCount?: number;
|
|
1379
1280
|
sorting?: string;
|
|
1380
1281
|
};
|
|
1381
1282
|
|
|
1382
|
-
export type
|
|
1283
|
+
export type GetApiContractServiceRebateTablesRebateTableHeadersTemplatesResponse = Volo_Abp_Application_Dtos_PagedResultDto_1;
|
|
1383
1284
|
|
|
1384
1285
|
export type PostApiContractServiceRebateTablesRebateTableHeadersData = {
|
|
1385
1286
|
requestBody?: UniRefund_ContractService_Rebates_RebateTableHeaders_RebateTableHeaderCreateDto;
|
|
@@ -1387,18 +1288,18 @@ export type PostApiContractServiceRebateTablesRebateTableHeadersData = {
|
|
|
1387
1288
|
|
|
1388
1289
|
export type PostApiContractServiceRebateTablesRebateTableHeadersResponse = UniRefund_ContractService_Rebates_RebateTableHeaders_RebateTableHeaderDto;
|
|
1389
1290
|
|
|
1390
|
-
export type
|
|
1391
|
-
id
|
|
1291
|
+
export type PutApiContractServiceRebateTablesRebateTableHeadersByIdData = {
|
|
1292
|
+
id: string;
|
|
1392
1293
|
requestBody?: UniRefund_ContractService_Rebates_RebateTableHeaders_RebateTableHeaderUpdateDto;
|
|
1393
1294
|
};
|
|
1394
1295
|
|
|
1395
|
-
export type
|
|
1296
|
+
export type PutApiContractServiceRebateTablesRebateTableHeadersByIdResponse = UniRefund_ContractService_Rebates_RebateTableHeaders_RebateTableHeaderDto;
|
|
1396
1297
|
|
|
1397
|
-
export type
|
|
1398
|
-
id
|
|
1298
|
+
export type DeleteApiContractServiceRebateTablesRebateTableHeadersByIdData = {
|
|
1299
|
+
id: string;
|
|
1399
1300
|
};
|
|
1400
1301
|
|
|
1401
|
-
export type
|
|
1302
|
+
export type DeleteApiContractServiceRebateTablesRebateTableHeadersByIdResponse = unknown;
|
|
1402
1303
|
|
|
1403
1304
|
export type GetApiContractServiceRefundTablesRefundTableHeadersByIdData = {
|
|
1404
1305
|
id: string;
|
|
@@ -1406,50 +1307,50 @@ export type GetApiContractServiceRefundTablesRefundTableHeadersByIdData = {
|
|
|
1406
1307
|
|
|
1407
1308
|
export type GetApiContractServiceRefundTablesRefundTableHeadersByIdResponse = UniRefund_ContractService_Refunds_RefundTableHeaders_RefundTableHeaderDto;
|
|
1408
1309
|
|
|
1409
|
-
export type
|
|
1410
|
-
|
|
1411
|
-
|
|
1310
|
+
export type PutApiContractServiceRefundTablesRefundTableHeadersByIdData = {
|
|
1311
|
+
id: string;
|
|
1312
|
+
requestBody?: UniRefund_ContractService_Refunds_RefundTableHeaders_RefundTableHeaderUpdateDto;
|
|
1412
1313
|
};
|
|
1413
1314
|
|
|
1414
|
-
export type
|
|
1315
|
+
export type PutApiContractServiceRefundTablesRefundTableHeadersByIdResponse = UniRefund_ContractService_Refunds_RefundTableHeaders_RefundTableHeaderDto;
|
|
1415
1316
|
|
|
1416
|
-
export type
|
|
1417
|
-
|
|
1317
|
+
export type DeleteApiContractServiceRefundTablesRefundTableHeadersByIdData = {
|
|
1318
|
+
id: string;
|
|
1418
1319
|
};
|
|
1419
1320
|
|
|
1420
|
-
export type
|
|
1321
|
+
export type DeleteApiContractServiceRefundTablesRefundTableHeadersByIdResponse = unknown;
|
|
1421
1322
|
|
|
1422
|
-
export type
|
|
1423
|
-
|
|
1424
|
-
|
|
1323
|
+
export type GetApiContractServiceRefundTablesRefundTableHeadersData = {
|
|
1324
|
+
maxResultCount?: number;
|
|
1325
|
+
skipCount?: number;
|
|
1425
1326
|
};
|
|
1426
1327
|
|
|
1427
|
-
export type
|
|
1328
|
+
export type GetApiContractServiceRefundTablesRefundTableHeadersResponse = Volo_Abp_Application_Dtos_PagedResultDto_1;
|
|
1428
1329
|
|
|
1429
|
-
export type
|
|
1430
|
-
|
|
1330
|
+
export type PostApiContractServiceRefundTablesRefundTableHeadersData = {
|
|
1331
|
+
requestBody?: UniRefund_ContractService_Refunds_RefundTableHeaders_RefundTableHeaderCreateDto;
|
|
1431
1332
|
};
|
|
1432
1333
|
|
|
1433
|
-
export type
|
|
1334
|
+
export type PostApiContractServiceRefundTablesRefundTableHeadersResponse = UniRefund_ContractService_Refunds_RefundTableHeaders_RefundTableHeaderDto;
|
|
1434
1335
|
|
|
1435
|
-
export type
|
|
1336
|
+
export type GetApiContractServiceRefundTablesRefundTableDetailsByIdData = {
|
|
1436
1337
|
id: string;
|
|
1437
1338
|
};
|
|
1438
1339
|
|
|
1439
|
-
export type
|
|
1340
|
+
export type GetApiContractServiceRefundTablesRefundTableDetailsByIdResponse = UniRefund_ContractService_Refunds_RefundTableDetails_RefundTableDetailDto;
|
|
1440
1341
|
|
|
1441
|
-
export type
|
|
1442
|
-
|
|
1443
|
-
|
|
1342
|
+
export type PutApiContractServiceRefundTablesRefundTableDetailsByIdData = {
|
|
1343
|
+
id: string;
|
|
1344
|
+
requestBody?: UniRefund_ContractService_Refunds_RefundTableDetails_RefundTableDetailUpdateDto;
|
|
1444
1345
|
};
|
|
1445
1346
|
|
|
1446
|
-
export type
|
|
1347
|
+
export type PutApiContractServiceRefundTablesRefundTableDetailsByIdResponse = UniRefund_ContractService_Refunds_RefundTableDetails_RefundTableDetailDto;
|
|
1447
1348
|
|
|
1448
|
-
export type
|
|
1349
|
+
export type DeleteApiContractServiceRefundTablesRefundTableDetailsByIdData = {
|
|
1449
1350
|
id: string;
|
|
1450
1351
|
};
|
|
1451
1352
|
|
|
1452
|
-
export type
|
|
1353
|
+
export type DeleteApiContractServiceRefundTablesRefundTableDetailsByIdResponse = unknown;
|
|
1453
1354
|
|
|
1454
1355
|
export type GetApiContractServiceRefundTablesRefundTableDetailsData = {
|
|
1455
1356
|
maxResultCount?: number;
|
|
@@ -1459,30 +1360,31 @@ export type GetApiContractServiceRefundTablesRefundTableDetailsData = {
|
|
|
1459
1360
|
|
|
1460
1361
|
export type GetApiContractServiceRefundTablesRefundTableDetailsResponse = Volo_Abp_Application_Dtos_PagedResultDto_1;
|
|
1461
1362
|
|
|
1462
|
-
export type
|
|
1363
|
+
export type PostApiContractServiceRefundTablesRefundTableDetailsByRefundTableHeaderIdData = {
|
|
1364
|
+
refundTableHeaderId: string;
|
|
1463
1365
|
requestBody?: UniRefund_ContractService_Refunds_RefundTableDetails_RefundTableDetailCreateDto;
|
|
1464
1366
|
};
|
|
1465
1367
|
|
|
1466
|
-
export type
|
|
1368
|
+
export type PostApiContractServiceRefundTablesRefundTableDetailsByRefundTableHeaderIdResponse = UniRefund_ContractService_Refunds_RefundTableDetails_RefundTableDetailDto;
|
|
1467
1369
|
|
|
1468
|
-
export type
|
|
1469
|
-
id
|
|
1470
|
-
requestBody?: UniRefund_ContractService_Refunds_RefundTableDetails_RefundTableDetailUpdateDto;
|
|
1370
|
+
export type GetApiContractServiceRefundTablesRefundFeeHeadersByIdData = {
|
|
1371
|
+
id: string;
|
|
1471
1372
|
};
|
|
1472
1373
|
|
|
1473
|
-
export type
|
|
1374
|
+
export type GetApiContractServiceRefundTablesRefundFeeHeadersByIdResponse = UniRefund_ContractService_Refunds_RefundFeeHeaders_RefundFeeHeaderDto;
|
|
1474
1375
|
|
|
1475
|
-
export type
|
|
1476
|
-
id
|
|
1376
|
+
export type PutApiContractServiceRefundTablesRefundFeeHeadersByIdData = {
|
|
1377
|
+
id: string;
|
|
1378
|
+
requestBody?: UniRefund_ContractService_Refunds_RefundFeeHeaders_RefundFeeHeaderUpdateDto;
|
|
1477
1379
|
};
|
|
1478
1380
|
|
|
1479
|
-
export type
|
|
1381
|
+
export type PutApiContractServiceRefundTablesRefundFeeHeadersByIdResponse = UniRefund_ContractService_Refunds_RefundFeeHeaders_RefundFeeHeaderDto;
|
|
1480
1382
|
|
|
1481
|
-
export type
|
|
1383
|
+
export type DeleteApiContractServiceRefundTablesRefundFeeHeadersByIdData = {
|
|
1482
1384
|
id: string;
|
|
1483
1385
|
};
|
|
1484
1386
|
|
|
1485
|
-
export type
|
|
1387
|
+
export type DeleteApiContractServiceRefundTablesRefundFeeHeadersByIdResponse = unknown;
|
|
1486
1388
|
|
|
1487
1389
|
export type GetApiContractServiceRefundTablesRefundFeeHeadersData = {
|
|
1488
1390
|
maxResultCount?: number;
|
|
@@ -1497,97 +1399,36 @@ export type PostApiContractServiceRefundTablesRefundFeeHeadersData = {
|
|
|
1497
1399
|
|
|
1498
1400
|
export type PostApiContractServiceRefundTablesRefundFeeHeadersResponse = UniRefund_ContractService_Refunds_RefundFeeHeaders_RefundFeeHeaderDto;
|
|
1499
1401
|
|
|
1500
|
-
export type PutApiContractServiceRefundTablesRefundFeeHeadersData = {
|
|
1501
|
-
id?: string;
|
|
1502
|
-
requestBody?: UniRefund_ContractService_Refunds_RefundFeeHeaders_RefundFeeHeaderUpdateDto;
|
|
1503
|
-
};
|
|
1504
|
-
|
|
1505
|
-
export type PutApiContractServiceRefundTablesRefundFeeHeadersResponse = UniRefund_ContractService_Refunds_RefundFeeHeaders_RefundFeeHeaderDto;
|
|
1506
|
-
|
|
1507
|
-
export type DeleteApiContractServiceRefundTablesRefundFeeHeadersData = {
|
|
1508
|
-
id?: string;
|
|
1509
|
-
};
|
|
1510
|
-
|
|
1511
|
-
export type DeleteApiContractServiceRefundTablesRefundFeeHeadersResponse = unknown;
|
|
1512
|
-
|
|
1513
1402
|
export type GetApiContractServiceRefundTablesRefundFeeHeadersDetailByIdData = {
|
|
1514
1403
|
id: string;
|
|
1515
1404
|
};
|
|
1516
1405
|
|
|
1517
1406
|
export type GetApiContractServiceRefundTablesRefundFeeHeadersDetailByIdResponse = UniRefund_ContractService_Refunds_RefundFeeHeaders_RefundFeeHeaderDto;
|
|
1518
1407
|
|
|
1519
|
-
export type GetApiContractServiceRefundTablesRefundFeeHeadersDetailData = {
|
|
1520
|
-
maxResultCount?: number;
|
|
1521
|
-
skipCount?: number;
|
|
1522
|
-
};
|
|
1523
|
-
|
|
1524
|
-
export type GetApiContractServiceRefundTablesRefundFeeHeadersDetailResponse = Volo_Abp_Application_Dtos_PagedResultDto_1;
|
|
1525
|
-
|
|
1526
1408
|
export type GetApiContractServiceRefundTablesRefundFeeDetailsByIdData = {
|
|
1527
1409
|
id: string;
|
|
1528
1410
|
};
|
|
1529
1411
|
|
|
1530
1412
|
export type GetApiContractServiceRefundTablesRefundFeeDetailsByIdResponse = UniRefund_ContractService_Refunds_RefundFeeDetails_RefundFeeDetailDto;
|
|
1531
1413
|
|
|
1532
|
-
export type
|
|
1533
|
-
|
|
1534
|
-
skipCount?: number;
|
|
1535
|
-
sorting?: string;
|
|
1536
|
-
};
|
|
1537
|
-
|
|
1538
|
-
export type GetApiContractServiceRefundTablesRefundFeeDetailsResponse = Volo_Abp_Application_Dtos_PagedResultDto_1;
|
|
1539
|
-
|
|
1540
|
-
export type PostApiContractServiceRefundTablesRefundFeeDetailsData = {
|
|
1541
|
-
requestBody?: UniRefund_ContractService_Refunds_RefundFeeDetails_RefundFeeDetailCreateDto;
|
|
1542
|
-
};
|
|
1543
|
-
|
|
1544
|
-
export type PostApiContractServiceRefundTablesRefundFeeDetailsResponse = UniRefund_ContractService_Refunds_RefundFeeDetails_RefundFeeDetailDto;
|
|
1545
|
-
|
|
1546
|
-
export type PutApiContractServiceRefundTablesRefundFeeDetailsData = {
|
|
1547
|
-
id?: string;
|
|
1414
|
+
export type PutApiContractServiceRefundTablesRefundFeeDetailsByIdData = {
|
|
1415
|
+
id: string;
|
|
1548
1416
|
requestBody?: UniRefund_ContractService_Refunds_RefundFeeDetails_RefundFeeDetailUpdateDto;
|
|
1549
1417
|
};
|
|
1550
1418
|
|
|
1551
|
-
export type
|
|
1552
|
-
|
|
1553
|
-
export type DeleteApiContractServiceRefundTablesRefundFeeDetailsData = {
|
|
1554
|
-
id?: string;
|
|
1555
|
-
};
|
|
1556
|
-
|
|
1557
|
-
export type DeleteApiContractServiceRefundTablesRefundFeeDetailsResponse = unknown;
|
|
1558
|
-
|
|
1559
|
-
export type GetApiContractServiceRefundTablesFeeTypesByIdData = {
|
|
1560
|
-
id: number;
|
|
1561
|
-
};
|
|
1562
|
-
|
|
1563
|
-
export type GetApiContractServiceRefundTablesFeeTypesByIdResponse = UniRefund_ContractService_FeeTypes_FeeTypeDto;
|
|
1564
|
-
|
|
1565
|
-
export type GetApiContractServiceRefundTablesFeeTypesData = {
|
|
1566
|
-
maxResultCount?: number;
|
|
1567
|
-
skipCount?: number;
|
|
1568
|
-
sorting?: string;
|
|
1569
|
-
};
|
|
1570
|
-
|
|
1571
|
-
export type GetApiContractServiceRefundTablesFeeTypesResponse = Volo_Abp_Application_Dtos_PagedResultDto_1;
|
|
1572
|
-
|
|
1573
|
-
export type PostApiContractServiceRefundTablesFeeTypesData = {
|
|
1574
|
-
requestBody?: UniRefund_ContractService_FeeTypes_FeeTypeCreateDto;
|
|
1575
|
-
};
|
|
1576
|
-
|
|
1577
|
-
export type PostApiContractServiceRefundTablesFeeTypesResponse = UniRefund_ContractService_FeeTypes_FeeTypeDto;
|
|
1419
|
+
export type PutApiContractServiceRefundTablesRefundFeeDetailsByIdResponse = UniRefund_ContractService_Refunds_RefundFeeDetails_RefundFeeDetailDto;
|
|
1578
1420
|
|
|
1579
|
-
export type
|
|
1580
|
-
id
|
|
1581
|
-
requestBody?: UniRefund_ContractService_FeeTypes_FeeTypeUpdateDto;
|
|
1421
|
+
export type DeleteApiContractServiceRefundTablesRefundFeeDetailsByIdData = {
|
|
1422
|
+
id: string;
|
|
1582
1423
|
};
|
|
1583
1424
|
|
|
1584
|
-
export type
|
|
1425
|
+
export type DeleteApiContractServiceRefundTablesRefundFeeDetailsByIdResponse = unknown;
|
|
1585
1426
|
|
|
1586
|
-
export type
|
|
1587
|
-
|
|
1427
|
+
export type PostApiContractServiceRefundTablesRefundFeeDetailsData = {
|
|
1428
|
+
requestBody?: UniRefund_ContractService_Refunds_RefundFeeDetails_RefundFeeDetailCreateDto;
|
|
1588
1429
|
};
|
|
1589
1430
|
|
|
1590
|
-
export type
|
|
1431
|
+
export type PostApiContractServiceRefundTablesRefundFeeDetailsResponse = UniRefund_ContractService_Refunds_RefundFeeDetails_RefundFeeDetailDto;
|
|
1591
1432
|
|
|
1592
1433
|
export type $OpenApiTs = {
|
|
1593
1434
|
'/api/abp/api-definition': {
|
|
@@ -1695,9 +1536,9 @@ export type $OpenApiTs = {
|
|
|
1695
1536
|
};
|
|
1696
1537
|
};
|
|
1697
1538
|
};
|
|
1698
|
-
'/api/contract-service/contracts/contract-settings': {
|
|
1539
|
+
'/api/contract-service/contracts/contract-settings/{contractHeaderId}': {
|
|
1699
1540
|
post: {
|
|
1700
|
-
req:
|
|
1541
|
+
req: PostApiContractServiceContractsContractSettingsByContractHeaderIdData;
|
|
1701
1542
|
res: {
|
|
1702
1543
|
/**
|
|
1703
1544
|
* Success
|
|
@@ -1729,8 +1570,10 @@ export type $OpenApiTs = {
|
|
|
1729
1570
|
501: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
1730
1571
|
};
|
|
1731
1572
|
};
|
|
1573
|
+
};
|
|
1574
|
+
'/api/contract-service/contracts/contract-settings/{id}': {
|
|
1732
1575
|
delete: {
|
|
1733
|
-
req:
|
|
1576
|
+
req: DeleteApiContractServiceContractsContractSettingsByIdData;
|
|
1734
1577
|
res: {
|
|
1735
1578
|
/**
|
|
1736
1579
|
* Success
|
|
@@ -1763,12 +1606,12 @@ export type $OpenApiTs = {
|
|
|
1763
1606
|
};
|
|
1764
1607
|
};
|
|
1765
1608
|
get: {
|
|
1766
|
-
req:
|
|
1609
|
+
req: GetApiContractServiceContractsContractSettingsByIdData;
|
|
1767
1610
|
res: {
|
|
1768
1611
|
/**
|
|
1769
1612
|
* Success
|
|
1770
1613
|
*/
|
|
1771
|
-
200:
|
|
1614
|
+
200: UniRefund_ContractService_Contracts_ContractSettings_ContractSettingDto;
|
|
1772
1615
|
/**
|
|
1773
1616
|
* Bad Request
|
|
1774
1617
|
*/
|
|
@@ -1796,7 +1639,7 @@ export type $OpenApiTs = {
|
|
|
1796
1639
|
};
|
|
1797
1640
|
};
|
|
1798
1641
|
put: {
|
|
1799
|
-
req:
|
|
1642
|
+
req: PutApiContractServiceContractsContractSettingsByIdData;
|
|
1800
1643
|
res: {
|
|
1801
1644
|
/**
|
|
1802
1645
|
* Success
|
|
@@ -1829,14 +1672,14 @@ export type $OpenApiTs = {
|
|
|
1829
1672
|
};
|
|
1830
1673
|
};
|
|
1831
1674
|
};
|
|
1832
|
-
'/api/contract-service/contracts/contract-settings
|
|
1675
|
+
'/api/contract-service/contracts/contract-settings': {
|
|
1833
1676
|
get: {
|
|
1834
|
-
req:
|
|
1677
|
+
req: GetApiContractServiceContractsContractSettingsData;
|
|
1835
1678
|
res: {
|
|
1836
1679
|
/**
|
|
1837
1680
|
* Success
|
|
1838
1681
|
*/
|
|
1839
|
-
200:
|
|
1682
|
+
200: Volo_Abp_Application_Dtos_PagedResultDto_1;
|
|
1840
1683
|
/**
|
|
1841
1684
|
* Bad Request
|
|
1842
1685
|
*/
|
|
@@ -1864,9 +1707,9 @@ export type $OpenApiTs = {
|
|
|
1864
1707
|
};
|
|
1865
1708
|
};
|
|
1866
1709
|
};
|
|
1867
|
-
'/api/contract-service/contracts/contract-stores': {
|
|
1710
|
+
'/api/contract-service/contracts/contract-stores/{contractSettingId}': {
|
|
1868
1711
|
post: {
|
|
1869
|
-
req:
|
|
1712
|
+
req: PostApiContractServiceContractsContractStoresByContractSettingIdData;
|
|
1870
1713
|
res: {
|
|
1871
1714
|
/**
|
|
1872
1715
|
* Success
|
|
@@ -1898,8 +1741,10 @@ export type $OpenApiTs = {
|
|
|
1898
1741
|
501: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
1899
1742
|
};
|
|
1900
1743
|
};
|
|
1744
|
+
};
|
|
1745
|
+
'/api/contract-service/contracts/contract-stores/{id}': {
|
|
1901
1746
|
delete: {
|
|
1902
|
-
req:
|
|
1747
|
+
req: DeleteApiContractServiceContractsContractStoresByIdData;
|
|
1903
1748
|
res: {
|
|
1904
1749
|
/**
|
|
1905
1750
|
* Success
|
|
@@ -1932,12 +1777,12 @@ export type $OpenApiTs = {
|
|
|
1932
1777
|
};
|
|
1933
1778
|
};
|
|
1934
1779
|
get: {
|
|
1935
|
-
req:
|
|
1780
|
+
req: GetApiContractServiceContractsContractStoresByIdData;
|
|
1936
1781
|
res: {
|
|
1937
1782
|
/**
|
|
1938
1783
|
* Success
|
|
1939
1784
|
*/
|
|
1940
|
-
200:
|
|
1785
|
+
200: UniRefund_ContractService_Contracts_ContractStores_ContractStoreDto;
|
|
1941
1786
|
/**
|
|
1942
1787
|
* Bad Request
|
|
1943
1788
|
*/
|
|
@@ -1965,7 +1810,7 @@ export type $OpenApiTs = {
|
|
|
1965
1810
|
};
|
|
1966
1811
|
};
|
|
1967
1812
|
put: {
|
|
1968
|
-
req:
|
|
1813
|
+
req: PutApiContractServiceContractsContractStoresByIdData;
|
|
1969
1814
|
res: {
|
|
1970
1815
|
/**
|
|
1971
1816
|
* Success
|
|
@@ -1998,14 +1843,14 @@ export type $OpenApiTs = {
|
|
|
1998
1843
|
};
|
|
1999
1844
|
};
|
|
2000
1845
|
};
|
|
2001
|
-
'/api/contract-service/contracts/contract-stores
|
|
1846
|
+
'/api/contract-service/contracts/contract-stores': {
|
|
2002
1847
|
get: {
|
|
2003
|
-
req:
|
|
1848
|
+
req: GetApiContractServiceContractsContractStoresData;
|
|
2004
1849
|
res: {
|
|
2005
1850
|
/**
|
|
2006
1851
|
* Success
|
|
2007
1852
|
*/
|
|
2008
|
-
200:
|
|
1853
|
+
200: Volo_Abp_Application_Dtos_PagedResultDto_1;
|
|
2009
1854
|
/**
|
|
2010
1855
|
* Bad Request
|
|
2011
1856
|
*/
|
|
@@ -2067,39 +1912,6 @@ export type $OpenApiTs = {
|
|
|
2067
1912
|
501: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2068
1913
|
};
|
|
2069
1914
|
};
|
|
2070
|
-
delete: {
|
|
2071
|
-
req: DeleteApiContractServiceContractsContractHeadersData;
|
|
2072
|
-
res: {
|
|
2073
|
-
/**
|
|
2074
|
-
* Success
|
|
2075
|
-
*/
|
|
2076
|
-
200: unknown;
|
|
2077
|
-
/**
|
|
2078
|
-
* Bad Request
|
|
2079
|
-
*/
|
|
2080
|
-
400: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2081
|
-
/**
|
|
2082
|
-
* Unauthorized
|
|
2083
|
-
*/
|
|
2084
|
-
401: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2085
|
-
/**
|
|
2086
|
-
* Forbidden
|
|
2087
|
-
*/
|
|
2088
|
-
403: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2089
|
-
/**
|
|
2090
|
-
* Not Found
|
|
2091
|
-
*/
|
|
2092
|
-
404: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2093
|
-
/**
|
|
2094
|
-
* Server Error
|
|
2095
|
-
*/
|
|
2096
|
-
500: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2097
|
-
/**
|
|
2098
|
-
* Server Error
|
|
2099
|
-
*/
|
|
2100
|
-
501: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2101
|
-
};
|
|
2102
|
-
};
|
|
2103
1915
|
get: {
|
|
2104
1916
|
req: GetApiContractServiceContractsContractHeadersData;
|
|
2105
1917
|
res: {
|
|
@@ -2133,48 +1945,15 @@ export type $OpenApiTs = {
|
|
|
2133
1945
|
501: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2134
1946
|
};
|
|
2135
1947
|
};
|
|
2136
|
-
put: {
|
|
2137
|
-
req: PutApiContractServiceContractsContractHeadersData;
|
|
2138
|
-
res: {
|
|
2139
|
-
/**
|
|
2140
|
-
* Success
|
|
2141
|
-
*/
|
|
2142
|
-
200: UniRefund_ContractService_Contracts_ContractHeaders_ContractHeaderDto;
|
|
2143
|
-
/**
|
|
2144
|
-
* Bad Request
|
|
2145
|
-
*/
|
|
2146
|
-
400: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2147
|
-
/**
|
|
2148
|
-
* Unauthorized
|
|
2149
|
-
*/
|
|
2150
|
-
401: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2151
|
-
/**
|
|
2152
|
-
* Forbidden
|
|
2153
|
-
*/
|
|
2154
|
-
403: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2155
|
-
/**
|
|
2156
|
-
* Not Found
|
|
2157
|
-
*/
|
|
2158
|
-
404: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2159
|
-
/**
|
|
2160
|
-
* Server Error
|
|
2161
|
-
*/
|
|
2162
|
-
500: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2163
|
-
/**
|
|
2164
|
-
* Server Error
|
|
2165
|
-
*/
|
|
2166
|
-
501: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2167
|
-
};
|
|
2168
|
-
};
|
|
2169
1948
|
};
|
|
2170
1949
|
'/api/contract-service/contracts/contract-headers/{id}': {
|
|
2171
|
-
|
|
2172
|
-
req:
|
|
1950
|
+
delete: {
|
|
1951
|
+
req: DeleteApiContractServiceContractsContractHeadersByIdData;
|
|
2173
1952
|
res: {
|
|
2174
1953
|
/**
|
|
2175
1954
|
* Success
|
|
2176
1955
|
*/
|
|
2177
|
-
200:
|
|
1956
|
+
200: unknown;
|
|
2178
1957
|
/**
|
|
2179
1958
|
* Bad Request
|
|
2180
1959
|
*/
|
|
@@ -2201,10 +1980,8 @@ export type $OpenApiTs = {
|
|
|
2201
1980
|
501: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2202
1981
|
};
|
|
2203
1982
|
};
|
|
2204
|
-
};
|
|
2205
|
-
'/api/contract-service/contracts/contract-headers/detail/{id}': {
|
|
2206
1983
|
get: {
|
|
2207
|
-
req:
|
|
1984
|
+
req: GetApiContractServiceContractsContractHeadersByIdData;
|
|
2208
1985
|
res: {
|
|
2209
1986
|
/**
|
|
2210
1987
|
* Success
|
|
@@ -2235,397 +2012,14 @@ export type $OpenApiTs = {
|
|
|
2235
2012
|
*/
|
|
2236
2013
|
501: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2237
2014
|
};
|
|
2238
|
-
};
|
|
2239
|
-
|
|
2240
|
-
|
|
2241
|
-
get: {
|
|
2242
|
-
req: GetApiContractServiceContractsContractHeadersDetailData;
|
|
2243
|
-
res: {
|
|
2244
|
-
/**
|
|
2245
|
-
* Success
|
|
2246
|
-
*/
|
|
2247
|
-
200: Volo_Abp_Application_Dtos_PagedResultDto_1;
|
|
2248
|
-
/**
|
|
2249
|
-
* Bad Request
|
|
2250
|
-
*/
|
|
2251
|
-
400: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2252
|
-
/**
|
|
2253
|
-
* Unauthorized
|
|
2254
|
-
*/
|
|
2255
|
-
401: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2256
|
-
/**
|
|
2257
|
-
* Forbidden
|
|
2258
|
-
*/
|
|
2259
|
-
403: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2260
|
-
/**
|
|
2261
|
-
* Not Found
|
|
2262
|
-
*/
|
|
2263
|
-
404: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2264
|
-
/**
|
|
2265
|
-
* Server Error
|
|
2266
|
-
*/
|
|
2267
|
-
500: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2268
|
-
/**
|
|
2269
|
-
* Server Error
|
|
2270
|
-
*/
|
|
2271
|
-
501: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2272
|
-
};
|
|
2273
|
-
};
|
|
2274
|
-
};
|
|
2275
|
-
'/api/enum-service/enums/get-list-by-enumTypeId/{enumTypeId}': {
|
|
2276
|
-
get: {
|
|
2277
|
-
req: GetApiEnumServiceEnumsGetListByEnumTypeIdByEnumTypeIdData;
|
|
2278
|
-
res: {
|
|
2279
|
-
/**
|
|
2280
|
-
* Success
|
|
2281
|
-
*/
|
|
2282
|
-
200: Volo_Abp_Application_Dtos_PagedResultDto_1;
|
|
2283
|
-
/**
|
|
2284
|
-
* Bad Request
|
|
2285
|
-
*/
|
|
2286
|
-
400: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2287
|
-
/**
|
|
2288
|
-
* Unauthorized
|
|
2289
|
-
*/
|
|
2290
|
-
401: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2291
|
-
/**
|
|
2292
|
-
* Forbidden
|
|
2293
|
-
*/
|
|
2294
|
-
403: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2295
|
-
/**
|
|
2296
|
-
* Not Found
|
|
2297
|
-
*/
|
|
2298
|
-
404: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2299
|
-
/**
|
|
2300
|
-
* Server Error
|
|
2301
|
-
*/
|
|
2302
|
-
500: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2303
|
-
/**
|
|
2304
|
-
* Server Error
|
|
2305
|
-
*/
|
|
2306
|
-
501: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2307
|
-
};
|
|
2308
|
-
};
|
|
2309
|
-
};
|
|
2310
|
-
'/api/enum-service/enums/translation': {
|
|
2311
|
-
post: {
|
|
2312
|
-
req: PostApiEnumServiceEnumsTranslationData;
|
|
2313
|
-
res: {
|
|
2314
|
-
/**
|
|
2315
|
-
* Success
|
|
2316
|
-
*/
|
|
2317
|
-
200: unknown;
|
|
2318
|
-
/**
|
|
2319
|
-
* Bad Request
|
|
2320
|
-
*/
|
|
2321
|
-
400: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2322
|
-
/**
|
|
2323
|
-
* Unauthorized
|
|
2324
|
-
*/
|
|
2325
|
-
401: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2326
|
-
/**
|
|
2327
|
-
* Forbidden
|
|
2328
|
-
*/
|
|
2329
|
-
403: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2330
|
-
/**
|
|
2331
|
-
* Not Found
|
|
2332
|
-
*/
|
|
2333
|
-
404: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2334
|
-
/**
|
|
2335
|
-
* Server Error
|
|
2336
|
-
*/
|
|
2337
|
-
500: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2338
|
-
/**
|
|
2339
|
-
* Server Error
|
|
2340
|
-
*/
|
|
2341
|
-
501: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2342
|
-
};
|
|
2343
|
-
};
|
|
2344
|
-
};
|
|
2345
|
-
'/api/enum-service/enums/enum-type-translation': {
|
|
2346
|
-
post: {
|
|
2347
|
-
req: PostApiEnumServiceEnumsEnumTypeTranslationData;
|
|
2348
|
-
res: {
|
|
2349
|
-
/**
|
|
2350
|
-
* Success
|
|
2351
|
-
*/
|
|
2352
|
-
200: unknown;
|
|
2353
|
-
/**
|
|
2354
|
-
* Bad Request
|
|
2355
|
-
*/
|
|
2356
|
-
400: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2357
|
-
/**
|
|
2358
|
-
* Unauthorized
|
|
2359
|
-
*/
|
|
2360
|
-
401: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2361
|
-
/**
|
|
2362
|
-
* Forbidden
|
|
2363
|
-
*/
|
|
2364
|
-
403: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2365
|
-
/**
|
|
2366
|
-
* Not Found
|
|
2367
|
-
*/
|
|
2368
|
-
404: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2369
|
-
/**
|
|
2370
|
-
* Server Error
|
|
2371
|
-
*/
|
|
2372
|
-
500: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2373
|
-
/**
|
|
2374
|
-
* Server Error
|
|
2375
|
-
*/
|
|
2376
|
-
501: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2377
|
-
};
|
|
2378
|
-
};
|
|
2379
|
-
};
|
|
2380
|
-
'/api/enum-service/enums/enum-type': {
|
|
2381
|
-
get: {
|
|
2382
|
-
req: GetApiEnumServiceEnumsEnumTypeData;
|
|
2383
|
-
res: {
|
|
2384
|
-
/**
|
|
2385
|
-
* Success
|
|
2386
|
-
*/
|
|
2387
|
-
200: Volo_Abp_Application_Dtos_PagedResultDto_1;
|
|
2388
|
-
/**
|
|
2389
|
-
* Bad Request
|
|
2390
|
-
*/
|
|
2391
|
-
400: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2392
|
-
/**
|
|
2393
|
-
* Unauthorized
|
|
2394
|
-
*/
|
|
2395
|
-
401: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2396
|
-
/**
|
|
2397
|
-
* Forbidden
|
|
2398
|
-
*/
|
|
2399
|
-
403: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2400
|
-
/**
|
|
2401
|
-
* Not Found
|
|
2402
|
-
*/
|
|
2403
|
-
404: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2404
|
-
/**
|
|
2405
|
-
* Server Error
|
|
2406
|
-
*/
|
|
2407
|
-
500: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2408
|
-
/**
|
|
2409
|
-
* Server Error
|
|
2410
|
-
*/
|
|
2411
|
-
501: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2412
|
-
};
|
|
2413
|
-
};
|
|
2414
|
-
};
|
|
2415
|
-
'/api/contract-service/rebate-tables/rebate-settings/{id}': {
|
|
2416
|
-
get: {
|
|
2417
|
-
req: GetApiContractServiceRebateTablesRebateSettingsByIdData;
|
|
2418
|
-
res: {
|
|
2419
|
-
/**
|
|
2420
|
-
* Success
|
|
2421
|
-
*/
|
|
2422
|
-
200: UniRefund_ContractService_Rebates_RebateSettings_RebateSettingDto;
|
|
2423
|
-
/**
|
|
2424
|
-
* Bad Request
|
|
2425
|
-
*/
|
|
2426
|
-
400: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2427
|
-
/**
|
|
2428
|
-
* Unauthorized
|
|
2429
|
-
*/
|
|
2430
|
-
401: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2431
|
-
/**
|
|
2432
|
-
* Forbidden
|
|
2433
|
-
*/
|
|
2434
|
-
403: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2435
|
-
/**
|
|
2436
|
-
* Not Found
|
|
2437
|
-
*/
|
|
2438
|
-
404: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2439
|
-
/**
|
|
2440
|
-
* Server Error
|
|
2441
|
-
*/
|
|
2442
|
-
500: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2443
|
-
/**
|
|
2444
|
-
* Server Error
|
|
2445
|
-
*/
|
|
2446
|
-
501: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2447
|
-
};
|
|
2448
|
-
};
|
|
2449
|
-
};
|
|
2450
|
-
'/api/contract-service/rebate-tables/rebate-settings': {
|
|
2451
|
-
get: {
|
|
2452
|
-
req: GetApiContractServiceRebateTablesRebateSettingsData;
|
|
2453
|
-
res: {
|
|
2454
|
-
/**
|
|
2455
|
-
* Success
|
|
2456
|
-
*/
|
|
2457
|
-
200: Volo_Abp_Application_Dtos_PagedResultDto_1;
|
|
2458
|
-
/**
|
|
2459
|
-
* Bad Request
|
|
2460
|
-
*/
|
|
2461
|
-
400: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2462
|
-
/**
|
|
2463
|
-
* Unauthorized
|
|
2464
|
-
*/
|
|
2465
|
-
401: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2466
|
-
/**
|
|
2467
|
-
* Forbidden
|
|
2468
|
-
*/
|
|
2469
|
-
403: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2470
|
-
/**
|
|
2471
|
-
* Not Found
|
|
2472
|
-
*/
|
|
2473
|
-
404: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2474
|
-
/**
|
|
2475
|
-
* Server Error
|
|
2476
|
-
*/
|
|
2477
|
-
500: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2478
|
-
/**
|
|
2479
|
-
* Server Error
|
|
2480
|
-
*/
|
|
2481
|
-
501: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2482
|
-
};
|
|
2483
|
-
};
|
|
2484
|
-
put: {
|
|
2485
|
-
req: PutApiContractServiceRebateTablesRebateSettingsData;
|
|
2486
|
-
res: {
|
|
2487
|
-
/**
|
|
2488
|
-
* Success
|
|
2489
|
-
*/
|
|
2490
|
-
200: UniRefund_ContractService_Rebates_RebateSettings_RebateSettingDto;
|
|
2491
|
-
/**
|
|
2492
|
-
* Bad Request
|
|
2493
|
-
*/
|
|
2494
|
-
400: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2495
|
-
/**
|
|
2496
|
-
* Unauthorized
|
|
2497
|
-
*/
|
|
2498
|
-
401: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2499
|
-
/**
|
|
2500
|
-
* Forbidden
|
|
2501
|
-
*/
|
|
2502
|
-
403: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2503
|
-
/**
|
|
2504
|
-
* Not Found
|
|
2505
|
-
*/
|
|
2506
|
-
404: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2507
|
-
/**
|
|
2508
|
-
* Server Error
|
|
2509
|
-
*/
|
|
2510
|
-
500: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2511
|
-
/**
|
|
2512
|
-
* Server Error
|
|
2513
|
-
*/
|
|
2514
|
-
501: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2515
|
-
};
|
|
2516
|
-
};
|
|
2517
|
-
delete: {
|
|
2518
|
-
req: DeleteApiContractServiceRebateTablesRebateSettingsData;
|
|
2519
|
-
res: {
|
|
2520
|
-
/**
|
|
2521
|
-
* Success
|
|
2522
|
-
*/
|
|
2523
|
-
200: unknown;
|
|
2524
|
-
/**
|
|
2525
|
-
* Bad Request
|
|
2526
|
-
*/
|
|
2527
|
-
400: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2528
|
-
/**
|
|
2529
|
-
* Unauthorized
|
|
2530
|
-
*/
|
|
2531
|
-
401: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2532
|
-
/**
|
|
2533
|
-
* Forbidden
|
|
2534
|
-
*/
|
|
2535
|
-
403: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2536
|
-
/**
|
|
2537
|
-
* Not Found
|
|
2538
|
-
*/
|
|
2539
|
-
404: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2540
|
-
/**
|
|
2541
|
-
* Server Error
|
|
2542
|
-
*/
|
|
2543
|
-
500: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2544
|
-
/**
|
|
2545
|
-
* Server Error
|
|
2546
|
-
*/
|
|
2547
|
-
501: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2548
|
-
};
|
|
2549
|
-
};
|
|
2550
|
-
};
|
|
2551
|
-
'/api/contract-service/rebate-tables/rebate-settings/detail/{id}': {
|
|
2552
|
-
get: {
|
|
2553
|
-
req: GetApiContractServiceRebateTablesRebateSettingsDetailByIdData;
|
|
2554
|
-
res: {
|
|
2555
|
-
/**
|
|
2556
|
-
* Success
|
|
2557
|
-
*/
|
|
2558
|
-
200: UniRefund_ContractService_Rebates_RebateSettings_RebateSettingDto;
|
|
2559
|
-
/**
|
|
2560
|
-
* Bad Request
|
|
2561
|
-
*/
|
|
2562
|
-
400: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2563
|
-
/**
|
|
2564
|
-
* Unauthorized
|
|
2565
|
-
*/
|
|
2566
|
-
401: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2567
|
-
/**
|
|
2568
|
-
* Forbidden
|
|
2569
|
-
*/
|
|
2570
|
-
403: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2571
|
-
/**
|
|
2572
|
-
* Not Found
|
|
2573
|
-
*/
|
|
2574
|
-
404: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2575
|
-
/**
|
|
2576
|
-
* Server Error
|
|
2577
|
-
*/
|
|
2578
|
-
500: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2579
|
-
/**
|
|
2580
|
-
* Server Error
|
|
2581
|
-
*/
|
|
2582
|
-
501: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2583
|
-
};
|
|
2584
|
-
};
|
|
2585
|
-
};
|
|
2586
|
-
'/api/contract-service/rebate-tables/rebate-settings/detail': {
|
|
2587
|
-
get: {
|
|
2588
|
-
req: GetApiContractServiceRebateTablesRebateSettingsDetailData;
|
|
2589
|
-
res: {
|
|
2590
|
-
/**
|
|
2591
|
-
* Success
|
|
2592
|
-
*/
|
|
2593
|
-
200: Volo_Abp_Application_Dtos_PagedResultDto_1;
|
|
2594
|
-
/**
|
|
2595
|
-
* Bad Request
|
|
2596
|
-
*/
|
|
2597
|
-
400: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2598
|
-
/**
|
|
2599
|
-
* Unauthorized
|
|
2600
|
-
*/
|
|
2601
|
-
401: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2602
|
-
/**
|
|
2603
|
-
* Forbidden
|
|
2604
|
-
*/
|
|
2605
|
-
403: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2606
|
-
/**
|
|
2607
|
-
* Not Found
|
|
2608
|
-
*/
|
|
2609
|
-
404: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2610
|
-
/**
|
|
2611
|
-
* Server Error
|
|
2612
|
-
*/
|
|
2613
|
-
500: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2614
|
-
/**
|
|
2615
|
-
* Server Error
|
|
2616
|
-
*/
|
|
2617
|
-
501: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2618
|
-
};
|
|
2619
|
-
};
|
|
2620
|
-
};
|
|
2621
|
-
'/api/contract-service/rebate-tables/minimum-net-commissions/{id}': {
|
|
2622
|
-
get: {
|
|
2623
|
-
req: GetApiContractServiceRebateTablesMinimumNetCommissionsByIdData;
|
|
2015
|
+
};
|
|
2016
|
+
put: {
|
|
2017
|
+
req: PutApiContractServiceContractsContractHeadersByIdData;
|
|
2624
2018
|
res: {
|
|
2625
2019
|
/**
|
|
2626
2020
|
* Success
|
|
2627
2021
|
*/
|
|
2628
|
-
200:
|
|
2022
|
+
200: UniRefund_ContractService_Contracts_ContractHeaders_ContractHeaderDto;
|
|
2629
2023
|
/**
|
|
2630
2024
|
* Bad Request
|
|
2631
2025
|
*/
|
|
@@ -2653,14 +2047,14 @@ export type $OpenApiTs = {
|
|
|
2653
2047
|
};
|
|
2654
2048
|
};
|
|
2655
2049
|
};
|
|
2656
|
-
'/api/contract-service/
|
|
2050
|
+
'/api/contract-service/contracts/contract-headers/detail/{id}': {
|
|
2657
2051
|
get: {
|
|
2658
|
-
req:
|
|
2052
|
+
req: GetApiContractServiceContractsContractHeadersDetailByIdData;
|
|
2659
2053
|
res: {
|
|
2660
2054
|
/**
|
|
2661
2055
|
* Success
|
|
2662
2056
|
*/
|
|
2663
|
-
200:
|
|
2057
|
+
200: UniRefund_ContractService_Contracts_ContractHeaders_ContractHeaderDto;
|
|
2664
2058
|
/**
|
|
2665
2059
|
* Bad Request
|
|
2666
2060
|
*/
|
|
@@ -2687,13 +2081,15 @@ export type $OpenApiTs = {
|
|
|
2687
2081
|
501: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2688
2082
|
};
|
|
2689
2083
|
};
|
|
2690
|
-
|
|
2691
|
-
|
|
2084
|
+
};
|
|
2085
|
+
'/api/enum-service/enums/get-list-by-enumTypeId/{enumTypeId}': {
|
|
2086
|
+
get: {
|
|
2087
|
+
req: GetApiEnumServiceEnumsGetListByEnumTypeIdByEnumTypeIdData;
|
|
2692
2088
|
res: {
|
|
2693
2089
|
/**
|
|
2694
2090
|
* Success
|
|
2695
2091
|
*/
|
|
2696
|
-
200:
|
|
2092
|
+
200: Volo_Abp_Application_Dtos_PagedResultDto_1;
|
|
2697
2093
|
/**
|
|
2698
2094
|
* Bad Request
|
|
2699
2095
|
*/
|
|
@@ -2720,13 +2116,15 @@ export type $OpenApiTs = {
|
|
|
2720
2116
|
501: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2721
2117
|
};
|
|
2722
2118
|
};
|
|
2723
|
-
|
|
2724
|
-
|
|
2119
|
+
};
|
|
2120
|
+
'/api/enum-service/enums/translation': {
|
|
2121
|
+
post: {
|
|
2122
|
+
req: PostApiEnumServiceEnumsTranslationData;
|
|
2725
2123
|
res: {
|
|
2726
2124
|
/**
|
|
2727
2125
|
* Success
|
|
2728
2126
|
*/
|
|
2729
|
-
200:
|
|
2127
|
+
200: unknown;
|
|
2730
2128
|
/**
|
|
2731
2129
|
* Bad Request
|
|
2732
2130
|
*/
|
|
@@ -2753,8 +2151,10 @@ export type $OpenApiTs = {
|
|
|
2753
2151
|
501: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2754
2152
|
};
|
|
2755
2153
|
};
|
|
2756
|
-
|
|
2757
|
-
|
|
2154
|
+
};
|
|
2155
|
+
'/api/enum-service/enums/enum-type-translation': {
|
|
2156
|
+
post: {
|
|
2157
|
+
req: PostApiEnumServiceEnumsEnumTypeTranslationData;
|
|
2758
2158
|
res: {
|
|
2759
2159
|
/**
|
|
2760
2160
|
* Success
|
|
@@ -2787,14 +2187,14 @@ export type $OpenApiTs = {
|
|
|
2787
2187
|
};
|
|
2788
2188
|
};
|
|
2789
2189
|
};
|
|
2790
|
-
'/api/
|
|
2190
|
+
'/api/enum-service/enums/enum-type': {
|
|
2791
2191
|
get: {
|
|
2792
|
-
req:
|
|
2192
|
+
req: GetApiEnumServiceEnumsEnumTypeData;
|
|
2793
2193
|
res: {
|
|
2794
2194
|
/**
|
|
2795
2195
|
* Success
|
|
2796
2196
|
*/
|
|
2797
|
-
200:
|
|
2197
|
+
200: Volo_Abp_Application_Dtos_PagedResultDto_1;
|
|
2798
2198
|
/**
|
|
2799
2199
|
* Bad Request
|
|
2800
2200
|
*/
|
|
@@ -2822,14 +2222,14 @@ export type $OpenApiTs = {
|
|
|
2822
2222
|
};
|
|
2823
2223
|
};
|
|
2824
2224
|
};
|
|
2825
|
-
'/api/contract-service/rebate-tables/
|
|
2225
|
+
'/api/contract-service/rebate-tables/rebate-settings/{id}': {
|
|
2826
2226
|
get: {
|
|
2827
|
-
req:
|
|
2227
|
+
req: GetApiContractServiceRebateTablesRebateSettingsByIdData;
|
|
2828
2228
|
res: {
|
|
2829
2229
|
/**
|
|
2830
2230
|
* Success
|
|
2831
2231
|
*/
|
|
2832
|
-
200:
|
|
2232
|
+
200: UniRefund_ContractService_Rebates_RebateSettings_RebateSettingDto;
|
|
2833
2233
|
/**
|
|
2834
2234
|
* Bad Request
|
|
2835
2235
|
*/
|
|
@@ -2856,13 +2256,13 @@ export type $OpenApiTs = {
|
|
|
2856
2256
|
501: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2857
2257
|
};
|
|
2858
2258
|
};
|
|
2859
|
-
|
|
2860
|
-
req:
|
|
2259
|
+
put: {
|
|
2260
|
+
req: PutApiContractServiceRebateTablesRebateSettingsByIdData;
|
|
2861
2261
|
res: {
|
|
2862
2262
|
/**
|
|
2863
2263
|
* Success
|
|
2864
2264
|
*/
|
|
2865
|
-
200:
|
|
2265
|
+
200: UniRefund_ContractService_Rebates_RebateSettings_RebateSettingDto;
|
|
2866
2266
|
/**
|
|
2867
2267
|
* Bad Request
|
|
2868
2268
|
*/
|
|
@@ -2889,13 +2289,13 @@ export type $OpenApiTs = {
|
|
|
2889
2289
|
501: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2890
2290
|
};
|
|
2891
2291
|
};
|
|
2892
|
-
|
|
2893
|
-
req:
|
|
2292
|
+
delete: {
|
|
2293
|
+
req: DeleteApiContractServiceRebateTablesRebateSettingsByIdData;
|
|
2894
2294
|
res: {
|
|
2895
2295
|
/**
|
|
2896
2296
|
* Success
|
|
2897
2297
|
*/
|
|
2898
|
-
200:
|
|
2298
|
+
200: unknown;
|
|
2899
2299
|
/**
|
|
2900
2300
|
* Bad Request
|
|
2901
2301
|
*/
|
|
@@ -2922,13 +2322,15 @@ export type $OpenApiTs = {
|
|
|
2922
2322
|
501: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2923
2323
|
};
|
|
2924
2324
|
};
|
|
2925
|
-
|
|
2926
|
-
|
|
2325
|
+
};
|
|
2326
|
+
'/api/contract-service/rebate-tables/rebate-settings/detail/{id}': {
|
|
2327
|
+
get: {
|
|
2328
|
+
req: GetApiContractServiceRebateTablesRebateSettingsDetailByIdData;
|
|
2927
2329
|
res: {
|
|
2928
2330
|
/**
|
|
2929
2331
|
* Success
|
|
2930
2332
|
*/
|
|
2931
|
-
200:
|
|
2333
|
+
200: UniRefund_ContractService_Rebates_RebateSettings_RebateSettingDto;
|
|
2932
2334
|
/**
|
|
2933
2335
|
* Bad Request
|
|
2934
2336
|
*/
|
|
@@ -2956,14 +2358,14 @@ export type $OpenApiTs = {
|
|
|
2956
2358
|
};
|
|
2957
2359
|
};
|
|
2958
2360
|
};
|
|
2959
|
-
'/api/contract-service/rebate-tables/
|
|
2361
|
+
'/api/contract-service/rebate-tables/minimum-net-commissions/{id}': {
|
|
2960
2362
|
get: {
|
|
2961
|
-
req:
|
|
2363
|
+
req: GetApiContractServiceRebateTablesMinimumNetCommissionsByIdData;
|
|
2962
2364
|
res: {
|
|
2963
2365
|
/**
|
|
2964
2366
|
* Success
|
|
2965
2367
|
*/
|
|
2966
|
-
200:
|
|
2368
|
+
200: UniRefund_ContractService_Rebates_MinimumNetCommissions_MinimumNetCommissionDto;
|
|
2967
2369
|
/**
|
|
2968
2370
|
* Bad Request
|
|
2969
2371
|
*/
|
|
@@ -2990,15 +2392,13 @@ export type $OpenApiTs = {
|
|
|
2990
2392
|
501: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2991
2393
|
};
|
|
2992
2394
|
};
|
|
2993
|
-
|
|
2994
|
-
|
|
2995
|
-
get: {
|
|
2996
|
-
req: GetApiContractServiceRebateTablesRebateTableDetailsData;
|
|
2395
|
+
put: {
|
|
2396
|
+
req: PutApiContractServiceRebateTablesMinimumNetCommissionsByIdData;
|
|
2997
2397
|
res: {
|
|
2998
2398
|
/**
|
|
2999
2399
|
* Success
|
|
3000
2400
|
*/
|
|
3001
|
-
200:
|
|
2401
|
+
200: UniRefund_ContractService_Rebates_MinimumNetCommissions_MinimumNetCommissionDto;
|
|
3002
2402
|
/**
|
|
3003
2403
|
* Bad Request
|
|
3004
2404
|
*/
|
|
@@ -3025,13 +2425,13 @@ export type $OpenApiTs = {
|
|
|
3025
2425
|
501: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
3026
2426
|
};
|
|
3027
2427
|
};
|
|
3028
|
-
|
|
3029
|
-
req:
|
|
2428
|
+
delete: {
|
|
2429
|
+
req: DeleteApiContractServiceRebateTablesMinimumNetCommissionsByIdData;
|
|
3030
2430
|
res: {
|
|
3031
2431
|
/**
|
|
3032
2432
|
* Success
|
|
3033
2433
|
*/
|
|
3034
|
-
200:
|
|
2434
|
+
200: unknown;
|
|
3035
2435
|
/**
|
|
3036
2436
|
* Bad Request
|
|
3037
2437
|
*/
|
|
@@ -3058,13 +2458,15 @@ export type $OpenApiTs = {
|
|
|
3058
2458
|
501: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
3059
2459
|
};
|
|
3060
2460
|
};
|
|
3061
|
-
|
|
3062
|
-
|
|
2461
|
+
};
|
|
2462
|
+
'/api/contract-service/rebate-tables/minimum-net-commissions': {
|
|
2463
|
+
get: {
|
|
2464
|
+
req: GetApiContractServiceRebateTablesMinimumNetCommissionsData;
|
|
3063
2465
|
res: {
|
|
3064
2466
|
/**
|
|
3065
2467
|
* Success
|
|
3066
2468
|
*/
|
|
3067
|
-
200:
|
|
2469
|
+
200: Volo_Abp_Application_Dtos_PagedResultDto_1;
|
|
3068
2470
|
/**
|
|
3069
2471
|
* Bad Request
|
|
3070
2472
|
*/
|
|
@@ -3091,13 +2493,15 @@ export type $OpenApiTs = {
|
|
|
3091
2493
|
501: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
3092
2494
|
};
|
|
3093
2495
|
};
|
|
3094
|
-
|
|
3095
|
-
|
|
2496
|
+
};
|
|
2497
|
+
'/api/contract-service/rebate-tables/minimum-net-commissions/{rebateSettingId}': {
|
|
2498
|
+
post: {
|
|
2499
|
+
req: PostApiContractServiceRebateTablesMinimumNetCommissionsByRebateSettingIdData;
|
|
3096
2500
|
res: {
|
|
3097
2501
|
/**
|
|
3098
2502
|
* Success
|
|
3099
2503
|
*/
|
|
3100
|
-
200:
|
|
2504
|
+
200: UniRefund_ContractService_Rebates_MinimumNetCommissions_MinimumNetCommissionDto;
|
|
3101
2505
|
/**
|
|
3102
2506
|
* Bad Request
|
|
3103
2507
|
*/
|
|
@@ -3125,14 +2529,14 @@ export type $OpenApiTs = {
|
|
|
3125
2529
|
};
|
|
3126
2530
|
};
|
|
3127
2531
|
};
|
|
3128
|
-
'/api/contract-service/rebate-tables/rebate-table-headers/
|
|
2532
|
+
'/api/contract-service/rebate-tables/rebate-table-headers/processing-fee-details/{id}': {
|
|
3129
2533
|
get: {
|
|
3130
|
-
req:
|
|
2534
|
+
req: GetApiContractServiceRebateTablesRebateTableHeadersProcessingFeeDetailsByIdData;
|
|
3131
2535
|
res: {
|
|
3132
2536
|
/**
|
|
3133
2537
|
* Success
|
|
3134
2538
|
*/
|
|
3135
|
-
200:
|
|
2539
|
+
200: UniRefund_ContractService_Rebates_ProcessingFeeDetails_ProcessingFeeDetailDto;
|
|
3136
2540
|
/**
|
|
3137
2541
|
* Bad Request
|
|
3138
2542
|
*/
|
|
@@ -3159,15 +2563,13 @@ export type $OpenApiTs = {
|
|
|
3159
2563
|
501: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
3160
2564
|
};
|
|
3161
2565
|
};
|
|
3162
|
-
|
|
3163
|
-
|
|
3164
|
-
get: {
|
|
3165
|
-
req: GetApiContractServiceRebateTablesRebateTableHeadersDetailData;
|
|
2566
|
+
put: {
|
|
2567
|
+
req: PutApiContractServiceRebateTablesRebateTableHeadersProcessingFeeDetailsByIdData;
|
|
3166
2568
|
res: {
|
|
3167
2569
|
/**
|
|
3168
2570
|
* Success
|
|
3169
2571
|
*/
|
|
3170
|
-
200:
|
|
2572
|
+
200: UniRefund_ContractService_Rebates_ProcessingFeeDetails_ProcessingFeeDetailDto;
|
|
3171
2573
|
/**
|
|
3172
2574
|
* Bad Request
|
|
3173
2575
|
*/
|
|
@@ -3194,15 +2596,13 @@ export type $OpenApiTs = {
|
|
|
3194
2596
|
501: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
3195
2597
|
};
|
|
3196
2598
|
};
|
|
3197
|
-
|
|
3198
|
-
|
|
3199
|
-
post: {
|
|
3200
|
-
req: PostApiContractServiceRebateTablesRebateTableHeadersData;
|
|
2599
|
+
delete: {
|
|
2600
|
+
req: DeleteApiContractServiceRebateTablesRebateTableHeadersProcessingFeeDetailsByIdData;
|
|
3201
2601
|
res: {
|
|
3202
2602
|
/**
|
|
3203
2603
|
* Success
|
|
3204
2604
|
*/
|
|
3205
|
-
200:
|
|
2605
|
+
200: unknown;
|
|
3206
2606
|
/**
|
|
3207
2607
|
* Bad Request
|
|
3208
2608
|
*/
|
|
@@ -3229,13 +2629,15 @@ export type $OpenApiTs = {
|
|
|
3229
2629
|
501: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
3230
2630
|
};
|
|
3231
2631
|
};
|
|
3232
|
-
|
|
3233
|
-
|
|
2632
|
+
};
|
|
2633
|
+
'/api/contract-service/rebate-tables/rebate-table-headers/processing-fee-details/{rebateTableHeaderId}': {
|
|
2634
|
+
post: {
|
|
2635
|
+
req: PostApiContractServiceRebateTablesRebateTableHeadersProcessingFeeDetailsByRebateTableHeaderIdData;
|
|
3234
2636
|
res: {
|
|
3235
2637
|
/**
|
|
3236
2638
|
* Success
|
|
3237
2639
|
*/
|
|
3238
|
-
200:
|
|
2640
|
+
200: UniRefund_ContractService_Rebates_ProcessingFeeDetails_ProcessingFeeDetailDto;
|
|
3239
2641
|
/**
|
|
3240
2642
|
* Bad Request
|
|
3241
2643
|
*/
|
|
@@ -3262,13 +2664,15 @@ export type $OpenApiTs = {
|
|
|
3262
2664
|
501: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
3263
2665
|
};
|
|
3264
2666
|
};
|
|
3265
|
-
|
|
3266
|
-
|
|
2667
|
+
};
|
|
2668
|
+
'/api/contract-service/rebate-tables/rebate-table-details/{id}': {
|
|
2669
|
+
get: {
|
|
2670
|
+
req: GetApiContractServiceRebateTablesRebateTableDetailsByIdData;
|
|
3267
2671
|
res: {
|
|
3268
2672
|
/**
|
|
3269
2673
|
* Success
|
|
3270
2674
|
*/
|
|
3271
|
-
200:
|
|
2675
|
+
200: UniRefund_ContractService_Rebates_RebateTableDetails_RebateTableDetailDto;
|
|
3272
2676
|
/**
|
|
3273
2677
|
* Bad Request
|
|
3274
2678
|
*/
|
|
@@ -3295,15 +2699,13 @@ export type $OpenApiTs = {
|
|
|
3295
2699
|
501: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
3296
2700
|
};
|
|
3297
2701
|
};
|
|
3298
|
-
|
|
3299
|
-
|
|
3300
|
-
get: {
|
|
3301
|
-
req: GetApiContractServiceRefundTablesRefundTableHeadersByIdData;
|
|
2702
|
+
put: {
|
|
2703
|
+
req: PutApiContractServiceRebateTablesRebateTableDetailsByIdData;
|
|
3302
2704
|
res: {
|
|
3303
2705
|
/**
|
|
3304
2706
|
* Success
|
|
3305
2707
|
*/
|
|
3306
|
-
200:
|
|
2708
|
+
200: UniRefund_ContractService_Rebates_RebateTableDetails_RebateTableDetailDto;
|
|
3307
2709
|
/**
|
|
3308
2710
|
* Bad Request
|
|
3309
2711
|
*/
|
|
@@ -3330,15 +2732,13 @@ export type $OpenApiTs = {
|
|
|
3330
2732
|
501: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
3331
2733
|
};
|
|
3332
2734
|
};
|
|
3333
|
-
|
|
3334
|
-
|
|
3335
|
-
get: {
|
|
3336
|
-
req: GetApiContractServiceRefundTablesRefundTableHeadersData;
|
|
2735
|
+
delete: {
|
|
2736
|
+
req: DeleteApiContractServiceRebateTablesRebateTableDetailsByIdData;
|
|
3337
2737
|
res: {
|
|
3338
2738
|
/**
|
|
3339
2739
|
* Success
|
|
3340
2740
|
*/
|
|
3341
|
-
200:
|
|
2741
|
+
200: unknown;
|
|
3342
2742
|
/**
|
|
3343
2743
|
* Bad Request
|
|
3344
2744
|
*/
|
|
@@ -3365,13 +2765,15 @@ export type $OpenApiTs = {
|
|
|
3365
2765
|
501: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
3366
2766
|
};
|
|
3367
2767
|
};
|
|
3368
|
-
|
|
3369
|
-
|
|
2768
|
+
};
|
|
2769
|
+
'/api/contract-service/rebate-tables/rebate-table-details': {
|
|
2770
|
+
get: {
|
|
2771
|
+
req: GetApiContractServiceRebateTablesRebateTableDetailsData;
|
|
3370
2772
|
res: {
|
|
3371
2773
|
/**
|
|
3372
2774
|
* Success
|
|
3373
2775
|
*/
|
|
3374
|
-
200:
|
|
2776
|
+
200: Volo_Abp_Application_Dtos_PagedResultDto_1;
|
|
3375
2777
|
/**
|
|
3376
2778
|
* Bad Request
|
|
3377
2779
|
*/
|
|
@@ -3398,13 +2800,15 @@ export type $OpenApiTs = {
|
|
|
3398
2800
|
501: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
3399
2801
|
};
|
|
3400
2802
|
};
|
|
3401
|
-
|
|
3402
|
-
|
|
2803
|
+
};
|
|
2804
|
+
'/api/contract-service/rebate-tables/rebate-table-details/{rebateTableHeaderId}': {
|
|
2805
|
+
post: {
|
|
2806
|
+
req: PostApiContractServiceRebateTablesRebateTableDetailsByRebateTableHeaderIdData;
|
|
3403
2807
|
res: {
|
|
3404
2808
|
/**
|
|
3405
2809
|
* Success
|
|
3406
2810
|
*/
|
|
3407
|
-
200:
|
|
2811
|
+
200: UniRefund_ContractService_Rebates_RebateTableDetails_RebateTableDetailDto;
|
|
3408
2812
|
/**
|
|
3409
2813
|
* Bad Request
|
|
3410
2814
|
*/
|
|
@@ -3431,13 +2835,15 @@ export type $OpenApiTs = {
|
|
|
3431
2835
|
501: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
3432
2836
|
};
|
|
3433
2837
|
};
|
|
3434
|
-
|
|
3435
|
-
|
|
2838
|
+
};
|
|
2839
|
+
'/api/contract-service/rebate-tables/rebate-table-headers/detail/{id}': {
|
|
2840
|
+
get: {
|
|
2841
|
+
req: GetApiContractServiceRebateTablesRebateTableHeadersDetailByIdData;
|
|
3436
2842
|
res: {
|
|
3437
2843
|
/**
|
|
3438
2844
|
* Success
|
|
3439
2845
|
*/
|
|
3440
|
-
200:
|
|
2846
|
+
200: UniRefund_ContractService_Rebates_RebateTableHeaders_RebateTableHeaderDto;
|
|
3441
2847
|
/**
|
|
3442
2848
|
* Bad Request
|
|
3443
2849
|
*/
|
|
@@ -3465,14 +2871,14 @@ export type $OpenApiTs = {
|
|
|
3465
2871
|
};
|
|
3466
2872
|
};
|
|
3467
2873
|
};
|
|
3468
|
-
'/api/contract-service/
|
|
2874
|
+
'/api/contract-service/rebate-tables/rebate-table-headers/templates': {
|
|
3469
2875
|
get: {
|
|
3470
|
-
req:
|
|
2876
|
+
req: GetApiContractServiceRebateTablesRebateTableHeadersTemplatesData;
|
|
3471
2877
|
res: {
|
|
3472
2878
|
/**
|
|
3473
2879
|
* Success
|
|
3474
2880
|
*/
|
|
3475
|
-
200:
|
|
2881
|
+
200: Volo_Abp_Application_Dtos_PagedResultDto_1;
|
|
3476
2882
|
/**
|
|
3477
2883
|
* Bad Request
|
|
3478
2884
|
*/
|
|
@@ -3500,14 +2906,14 @@ export type $OpenApiTs = {
|
|
|
3500
2906
|
};
|
|
3501
2907
|
};
|
|
3502
2908
|
};
|
|
3503
|
-
'/api/contract-service/
|
|
3504
|
-
|
|
3505
|
-
req:
|
|
2909
|
+
'/api/contract-service/rebate-tables/rebate-table-headers': {
|
|
2910
|
+
post: {
|
|
2911
|
+
req: PostApiContractServiceRebateTablesRebateTableHeadersData;
|
|
3506
2912
|
res: {
|
|
3507
2913
|
/**
|
|
3508
2914
|
* Success
|
|
3509
2915
|
*/
|
|
3510
|
-
200:
|
|
2916
|
+
200: UniRefund_ContractService_Rebates_RebateTableHeaders_RebateTableHeaderDto;
|
|
3511
2917
|
/**
|
|
3512
2918
|
* Bad Request
|
|
3513
2919
|
*/
|
|
@@ -3535,14 +2941,14 @@ export type $OpenApiTs = {
|
|
|
3535
2941
|
};
|
|
3536
2942
|
};
|
|
3537
2943
|
};
|
|
3538
|
-
'/api/contract-service/
|
|
3539
|
-
|
|
3540
|
-
req:
|
|
2944
|
+
'/api/contract-service/rebate-tables/rebate-table-headers/{id}': {
|
|
2945
|
+
put: {
|
|
2946
|
+
req: PutApiContractServiceRebateTablesRebateTableHeadersByIdData;
|
|
3541
2947
|
res: {
|
|
3542
2948
|
/**
|
|
3543
2949
|
* Success
|
|
3544
2950
|
*/
|
|
3545
|
-
200:
|
|
2951
|
+
200: UniRefund_ContractService_Rebates_RebateTableHeaders_RebateTableHeaderDto;
|
|
3546
2952
|
/**
|
|
3547
2953
|
* Bad Request
|
|
3548
2954
|
*/
|
|
@@ -3569,15 +2975,13 @@ export type $OpenApiTs = {
|
|
|
3569
2975
|
501: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
3570
2976
|
};
|
|
3571
2977
|
};
|
|
3572
|
-
|
|
3573
|
-
|
|
3574
|
-
get: {
|
|
3575
|
-
req: GetApiContractServiceRefundTablesRefundTableDetailsData;
|
|
2978
|
+
delete: {
|
|
2979
|
+
req: DeleteApiContractServiceRebateTablesRebateTableHeadersByIdData;
|
|
3576
2980
|
res: {
|
|
3577
2981
|
/**
|
|
3578
2982
|
* Success
|
|
3579
2983
|
*/
|
|
3580
|
-
200:
|
|
2984
|
+
200: unknown;
|
|
3581
2985
|
/**
|
|
3582
2986
|
* Bad Request
|
|
3583
2987
|
*/
|
|
@@ -3604,13 +3008,15 @@ export type $OpenApiTs = {
|
|
|
3604
3008
|
501: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
3605
3009
|
};
|
|
3606
3010
|
};
|
|
3607
|
-
|
|
3608
|
-
|
|
3011
|
+
};
|
|
3012
|
+
'/api/contract-service/refund-tables/refund-table-headers/{id}': {
|
|
3013
|
+
get: {
|
|
3014
|
+
req: GetApiContractServiceRefundTablesRefundTableHeadersByIdData;
|
|
3609
3015
|
res: {
|
|
3610
3016
|
/**
|
|
3611
3017
|
* Success
|
|
3612
3018
|
*/
|
|
3613
|
-
200:
|
|
3019
|
+
200: UniRefund_ContractService_Refunds_RefundTableHeaders_RefundTableHeaderDto;
|
|
3614
3020
|
/**
|
|
3615
3021
|
* Bad Request
|
|
3616
3022
|
*/
|
|
@@ -3638,12 +3044,12 @@ export type $OpenApiTs = {
|
|
|
3638
3044
|
};
|
|
3639
3045
|
};
|
|
3640
3046
|
put: {
|
|
3641
|
-
req:
|
|
3047
|
+
req: PutApiContractServiceRefundTablesRefundTableHeadersByIdData;
|
|
3642
3048
|
res: {
|
|
3643
3049
|
/**
|
|
3644
3050
|
* Success
|
|
3645
3051
|
*/
|
|
3646
|
-
200:
|
|
3052
|
+
200: UniRefund_ContractService_Refunds_RefundTableHeaders_RefundTableHeaderDto;
|
|
3647
3053
|
/**
|
|
3648
3054
|
* Bad Request
|
|
3649
3055
|
*/
|
|
@@ -3671,7 +3077,7 @@ export type $OpenApiTs = {
|
|
|
3671
3077
|
};
|
|
3672
3078
|
};
|
|
3673
3079
|
delete: {
|
|
3674
|
-
req:
|
|
3080
|
+
req: DeleteApiContractServiceRefundTablesRefundTableHeadersByIdData;
|
|
3675
3081
|
res: {
|
|
3676
3082
|
/**
|
|
3677
3083
|
* Success
|
|
@@ -3704,14 +3110,14 @@ export type $OpenApiTs = {
|
|
|
3704
3110
|
};
|
|
3705
3111
|
};
|
|
3706
3112
|
};
|
|
3707
|
-
'/api/contract-service/refund-tables/refund-
|
|
3113
|
+
'/api/contract-service/refund-tables/refund-table-headers': {
|
|
3708
3114
|
get: {
|
|
3709
|
-
req:
|
|
3115
|
+
req: GetApiContractServiceRefundTablesRefundTableHeadersData;
|
|
3710
3116
|
res: {
|
|
3711
3117
|
/**
|
|
3712
3118
|
* Success
|
|
3713
3119
|
*/
|
|
3714
|
-
200:
|
|
3120
|
+
200: Volo_Abp_Application_Dtos_PagedResultDto_1;
|
|
3715
3121
|
/**
|
|
3716
3122
|
* Bad Request
|
|
3717
3123
|
*/
|
|
@@ -3738,15 +3144,13 @@ export type $OpenApiTs = {
|
|
|
3738
3144
|
501: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
3739
3145
|
};
|
|
3740
3146
|
};
|
|
3741
|
-
|
|
3742
|
-
|
|
3743
|
-
get: {
|
|
3744
|
-
req: GetApiContractServiceRefundTablesRefundFeeHeadersData;
|
|
3147
|
+
post: {
|
|
3148
|
+
req: PostApiContractServiceRefundTablesRefundTableHeadersData;
|
|
3745
3149
|
res: {
|
|
3746
3150
|
/**
|
|
3747
3151
|
* Success
|
|
3748
3152
|
*/
|
|
3749
|
-
200:
|
|
3153
|
+
200: UniRefund_ContractService_Refunds_RefundTableHeaders_RefundTableHeaderDto;
|
|
3750
3154
|
/**
|
|
3751
3155
|
* Bad Request
|
|
3752
3156
|
*/
|
|
@@ -3773,13 +3177,15 @@ export type $OpenApiTs = {
|
|
|
3773
3177
|
501: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
3774
3178
|
};
|
|
3775
3179
|
};
|
|
3776
|
-
|
|
3777
|
-
|
|
3180
|
+
};
|
|
3181
|
+
'/api/contract-service/refund-tables/refund-table-details/{id}': {
|
|
3182
|
+
get: {
|
|
3183
|
+
req: GetApiContractServiceRefundTablesRefundTableDetailsByIdData;
|
|
3778
3184
|
res: {
|
|
3779
3185
|
/**
|
|
3780
3186
|
* Success
|
|
3781
3187
|
*/
|
|
3782
|
-
200:
|
|
3188
|
+
200: UniRefund_ContractService_Refunds_RefundTableDetails_RefundTableDetailDto;
|
|
3783
3189
|
/**
|
|
3784
3190
|
* Bad Request
|
|
3785
3191
|
*/
|
|
@@ -3807,12 +3213,12 @@ export type $OpenApiTs = {
|
|
|
3807
3213
|
};
|
|
3808
3214
|
};
|
|
3809
3215
|
put: {
|
|
3810
|
-
req:
|
|
3216
|
+
req: PutApiContractServiceRefundTablesRefundTableDetailsByIdData;
|
|
3811
3217
|
res: {
|
|
3812
3218
|
/**
|
|
3813
3219
|
* Success
|
|
3814
3220
|
*/
|
|
3815
|
-
200:
|
|
3221
|
+
200: UniRefund_ContractService_Refunds_RefundTableDetails_RefundTableDetailDto;
|
|
3816
3222
|
/**
|
|
3817
3223
|
* Bad Request
|
|
3818
3224
|
*/
|
|
@@ -3840,7 +3246,7 @@ export type $OpenApiTs = {
|
|
|
3840
3246
|
};
|
|
3841
3247
|
};
|
|
3842
3248
|
delete: {
|
|
3843
|
-
req:
|
|
3249
|
+
req: DeleteApiContractServiceRefundTablesRefundTableDetailsByIdData;
|
|
3844
3250
|
res: {
|
|
3845
3251
|
/**
|
|
3846
3252
|
* Success
|
|
@@ -3873,14 +3279,14 @@ export type $OpenApiTs = {
|
|
|
3873
3279
|
};
|
|
3874
3280
|
};
|
|
3875
3281
|
};
|
|
3876
|
-
'/api/contract-service/refund-tables/refund-
|
|
3282
|
+
'/api/contract-service/refund-tables/refund-table-details': {
|
|
3877
3283
|
get: {
|
|
3878
|
-
req:
|
|
3284
|
+
req: GetApiContractServiceRefundTablesRefundTableDetailsData;
|
|
3879
3285
|
res: {
|
|
3880
3286
|
/**
|
|
3881
3287
|
* Success
|
|
3882
3288
|
*/
|
|
3883
|
-
200:
|
|
3289
|
+
200: Volo_Abp_Application_Dtos_PagedResultDto_1;
|
|
3884
3290
|
/**
|
|
3885
3291
|
* Bad Request
|
|
3886
3292
|
*/
|
|
@@ -3908,14 +3314,14 @@ export type $OpenApiTs = {
|
|
|
3908
3314
|
};
|
|
3909
3315
|
};
|
|
3910
3316
|
};
|
|
3911
|
-
'/api/contract-service/refund-tables/refund-
|
|
3912
|
-
|
|
3913
|
-
req:
|
|
3317
|
+
'/api/contract-service/refund-tables/refund-table-details/{refundTableHeaderId}': {
|
|
3318
|
+
post: {
|
|
3319
|
+
req: PostApiContractServiceRefundTablesRefundTableDetailsByRefundTableHeaderIdData;
|
|
3914
3320
|
res: {
|
|
3915
3321
|
/**
|
|
3916
3322
|
* Success
|
|
3917
3323
|
*/
|
|
3918
|
-
200:
|
|
3324
|
+
200: UniRefund_ContractService_Refunds_RefundTableDetails_RefundTableDetailDto;
|
|
3919
3325
|
/**
|
|
3920
3326
|
* Bad Request
|
|
3921
3327
|
*/
|
|
@@ -3943,14 +3349,14 @@ export type $OpenApiTs = {
|
|
|
3943
3349
|
};
|
|
3944
3350
|
};
|
|
3945
3351
|
};
|
|
3946
|
-
'/api/contract-service/refund-tables/refund-fee-
|
|
3352
|
+
'/api/contract-service/refund-tables/refund-fee-headers/{id}': {
|
|
3947
3353
|
get: {
|
|
3948
|
-
req:
|
|
3354
|
+
req: GetApiContractServiceRefundTablesRefundFeeHeadersByIdData;
|
|
3949
3355
|
res: {
|
|
3950
3356
|
/**
|
|
3951
3357
|
* Success
|
|
3952
3358
|
*/
|
|
3953
|
-
200:
|
|
3359
|
+
200: UniRefund_ContractService_Refunds_RefundFeeHeaders_RefundFeeHeaderDto;
|
|
3954
3360
|
/**
|
|
3955
3361
|
* Bad Request
|
|
3956
3362
|
*/
|
|
@@ -3977,15 +3383,13 @@ export type $OpenApiTs = {
|
|
|
3977
3383
|
501: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
3978
3384
|
};
|
|
3979
3385
|
};
|
|
3980
|
-
|
|
3981
|
-
|
|
3982
|
-
get: {
|
|
3983
|
-
req: GetApiContractServiceRefundTablesRefundFeeDetailsData;
|
|
3386
|
+
put: {
|
|
3387
|
+
req: PutApiContractServiceRefundTablesRefundFeeHeadersByIdData;
|
|
3984
3388
|
res: {
|
|
3985
3389
|
/**
|
|
3986
3390
|
* Success
|
|
3987
3391
|
*/
|
|
3988
|
-
200:
|
|
3392
|
+
200: UniRefund_ContractService_Refunds_RefundFeeHeaders_RefundFeeHeaderDto;
|
|
3989
3393
|
/**
|
|
3990
3394
|
* Bad Request
|
|
3991
3395
|
*/
|
|
@@ -4012,13 +3416,13 @@ export type $OpenApiTs = {
|
|
|
4012
3416
|
501: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
4013
3417
|
};
|
|
4014
3418
|
};
|
|
4015
|
-
|
|
4016
|
-
req:
|
|
3419
|
+
delete: {
|
|
3420
|
+
req: DeleteApiContractServiceRefundTablesRefundFeeHeadersByIdData;
|
|
4017
3421
|
res: {
|
|
4018
3422
|
/**
|
|
4019
3423
|
* Success
|
|
4020
3424
|
*/
|
|
4021
|
-
200:
|
|
3425
|
+
200: unknown;
|
|
4022
3426
|
/**
|
|
4023
3427
|
* Bad Request
|
|
4024
3428
|
*/
|
|
@@ -4045,13 +3449,15 @@ export type $OpenApiTs = {
|
|
|
4045
3449
|
501: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
4046
3450
|
};
|
|
4047
3451
|
};
|
|
4048
|
-
|
|
4049
|
-
|
|
3452
|
+
};
|
|
3453
|
+
'/api/contract-service/refund-tables/refund-fee-headers': {
|
|
3454
|
+
get: {
|
|
3455
|
+
req: GetApiContractServiceRefundTablesRefundFeeHeadersData;
|
|
4050
3456
|
res: {
|
|
4051
3457
|
/**
|
|
4052
3458
|
* Success
|
|
4053
3459
|
*/
|
|
4054
|
-
200:
|
|
3460
|
+
200: Volo_Abp_Application_Dtos_PagedResultDto_1;
|
|
4055
3461
|
/**
|
|
4056
3462
|
* Bad Request
|
|
4057
3463
|
*/
|
|
@@ -4078,13 +3484,13 @@ export type $OpenApiTs = {
|
|
|
4078
3484
|
501: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
4079
3485
|
};
|
|
4080
3486
|
};
|
|
4081
|
-
|
|
4082
|
-
req:
|
|
3487
|
+
post: {
|
|
3488
|
+
req: PostApiContractServiceRefundTablesRefundFeeHeadersData;
|
|
4083
3489
|
res: {
|
|
4084
3490
|
/**
|
|
4085
3491
|
* Success
|
|
4086
3492
|
*/
|
|
4087
|
-
200:
|
|
3493
|
+
200: UniRefund_ContractService_Refunds_RefundFeeHeaders_RefundFeeHeaderDto;
|
|
4088
3494
|
/**
|
|
4089
3495
|
* Bad Request
|
|
4090
3496
|
*/
|
|
@@ -4112,14 +3518,14 @@ export type $OpenApiTs = {
|
|
|
4112
3518
|
};
|
|
4113
3519
|
};
|
|
4114
3520
|
};
|
|
4115
|
-
'/api/contract-service/refund-tables/fee-
|
|
3521
|
+
'/api/contract-service/refund-tables/refund-fee-headers/detail/{id}': {
|
|
4116
3522
|
get: {
|
|
4117
|
-
req:
|
|
3523
|
+
req: GetApiContractServiceRefundTablesRefundFeeHeadersDetailByIdData;
|
|
4118
3524
|
res: {
|
|
4119
3525
|
/**
|
|
4120
3526
|
* Success
|
|
4121
3527
|
*/
|
|
4122
|
-
200:
|
|
3528
|
+
200: UniRefund_ContractService_Refunds_RefundFeeHeaders_RefundFeeHeaderDto;
|
|
4123
3529
|
/**
|
|
4124
3530
|
* Bad Request
|
|
4125
3531
|
*/
|
|
@@ -4147,14 +3553,14 @@ export type $OpenApiTs = {
|
|
|
4147
3553
|
};
|
|
4148
3554
|
};
|
|
4149
3555
|
};
|
|
4150
|
-
'/api/contract-service/refund-tables/fee-
|
|
3556
|
+
'/api/contract-service/refund-tables/refund-fee-details/{id}': {
|
|
4151
3557
|
get: {
|
|
4152
|
-
req:
|
|
3558
|
+
req: GetApiContractServiceRefundTablesRefundFeeDetailsByIdData;
|
|
4153
3559
|
res: {
|
|
4154
3560
|
/**
|
|
4155
3561
|
* Success
|
|
4156
3562
|
*/
|
|
4157
|
-
200:
|
|
3563
|
+
200: UniRefund_ContractService_Refunds_RefundFeeDetails_RefundFeeDetailDto;
|
|
4158
3564
|
/**
|
|
4159
3565
|
* Bad Request
|
|
4160
3566
|
*/
|
|
@@ -4181,13 +3587,13 @@ export type $OpenApiTs = {
|
|
|
4181
3587
|
501: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
4182
3588
|
};
|
|
4183
3589
|
};
|
|
4184
|
-
|
|
4185
|
-
req:
|
|
3590
|
+
put: {
|
|
3591
|
+
req: PutApiContractServiceRefundTablesRefundFeeDetailsByIdData;
|
|
4186
3592
|
res: {
|
|
4187
3593
|
/**
|
|
4188
3594
|
* Success
|
|
4189
3595
|
*/
|
|
4190
|
-
200:
|
|
3596
|
+
200: UniRefund_ContractService_Refunds_RefundFeeDetails_RefundFeeDetailDto;
|
|
4191
3597
|
/**
|
|
4192
3598
|
* Bad Request
|
|
4193
3599
|
*/
|
|
@@ -4214,13 +3620,13 @@ export type $OpenApiTs = {
|
|
|
4214
3620
|
501: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
4215
3621
|
};
|
|
4216
3622
|
};
|
|
4217
|
-
|
|
4218
|
-
req:
|
|
3623
|
+
delete: {
|
|
3624
|
+
req: DeleteApiContractServiceRefundTablesRefundFeeDetailsByIdData;
|
|
4219
3625
|
res: {
|
|
4220
3626
|
/**
|
|
4221
3627
|
* Success
|
|
4222
3628
|
*/
|
|
4223
|
-
200:
|
|
3629
|
+
200: unknown;
|
|
4224
3630
|
/**
|
|
4225
3631
|
* Bad Request
|
|
4226
3632
|
*/
|
|
@@ -4247,13 +3653,15 @@ export type $OpenApiTs = {
|
|
|
4247
3653
|
501: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
4248
3654
|
};
|
|
4249
3655
|
};
|
|
4250
|
-
|
|
4251
|
-
|
|
3656
|
+
};
|
|
3657
|
+
'/api/contract-service/refund-tables/refund-fee-details': {
|
|
3658
|
+
post: {
|
|
3659
|
+
req: PostApiContractServiceRefundTablesRefundFeeDetailsData;
|
|
4252
3660
|
res: {
|
|
4253
3661
|
/**
|
|
4254
3662
|
* Success
|
|
4255
3663
|
*/
|
|
4256
|
-
200:
|
|
3664
|
+
200: UniRefund_ContractService_Refunds_RefundFeeDetails_RefundFeeDetailDto;
|
|
4257
3665
|
/**
|
|
4258
3666
|
* Bad Request
|
|
4259
3667
|
*/
|