@ayasofyazilim/saas 0.0.58 → 0.0.59
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/ContractService/schemas.gen.ts +293 -95
- package/ContractService/services.gen.ts +49 -93
- package/ContractService/types.gen.ts +106 -172
- package/generator.mjs +1 -1
- package/package.json +1 -1
|
@@ -15,8 +15,8 @@ export type PagedResultDto_ContractSettingDto = {
|
|
|
15
15
|
totalCount?: number;
|
|
16
16
|
};
|
|
17
17
|
|
|
18
|
-
export type
|
|
19
|
-
items?: Array<
|
|
18
|
+
export type PagedResultDto_ContractStoreDetailedDto = {
|
|
19
|
+
items?: Array<UniRefund_ContractService_ContractsForMerchant_ContractStores_ContractStoreDetailedDto> | null;
|
|
20
20
|
totalCount?: number;
|
|
21
21
|
};
|
|
22
22
|
|
|
@@ -68,7 +68,7 @@ export type UniRefund_CRMService_TaxOffices_TaxOfficeIdNameDto = {
|
|
|
68
68
|
name?: string | null;
|
|
69
69
|
};
|
|
70
70
|
|
|
71
|
-
export type
|
|
71
|
+
export type UniRefund_ContractService_ContractsForMerchant_ContractHeaderRefundTableHeaders_ContractHeaderRefundTableHeaderCreateAndUpdateDto = {
|
|
72
72
|
readonly extraProperties?: {
|
|
73
73
|
[key: string]: unknown;
|
|
74
74
|
} | null;
|
|
@@ -89,14 +89,6 @@ export type UniRefund_ContractService_ContractsForMerchant_ContractHeaderRefundT
|
|
|
89
89
|
isDefault?: boolean;
|
|
90
90
|
};
|
|
91
91
|
|
|
92
|
-
export type UniRefund_ContractService_ContractsForMerchant_ContractHeaderRefundTableHeaders_ContractHeaderRefundTableHeaderForMerchantUpdateDto = {
|
|
93
|
-
readonly extraProperties?: {
|
|
94
|
-
[key: string]: unknown;
|
|
95
|
-
} | null;
|
|
96
|
-
id?: string;
|
|
97
|
-
isDefault?: boolean;
|
|
98
|
-
};
|
|
99
|
-
|
|
100
92
|
export type UniRefund_ContractService_ContractsForMerchant_ContractHeaders_ContractHeaderDetailForMerchantDto = {
|
|
101
93
|
id: string;
|
|
102
94
|
creationTime?: string;
|
|
@@ -113,6 +105,8 @@ export type UniRefund_ContractService_ContractsForMerchant_ContractHeaders_Contr
|
|
|
113
105
|
status?: UniRefund_ContractService_Enums_ContractHeaderStatus;
|
|
114
106
|
merchantBasicInformationDto?: UniRefund_CRMService_Merchants_MerchantBasicInformationDto;
|
|
115
107
|
isDraft?: boolean;
|
|
108
|
+
validFrom: string;
|
|
109
|
+
validTo: string;
|
|
116
110
|
contractType: UniRefund_ContractService_Enums_ContractType;
|
|
117
111
|
addressCommonData: UniRefund_LocationService_AddressCommonDatas_AddressCommonDataDto;
|
|
118
112
|
contractHeaderRefundTableHeaders: Array<UniRefund_ContractService_ContractsForMerchant_ContractHeaderRefundTableHeaders_ContractHeaderRefundTableHeaderDto>;
|
|
@@ -124,8 +118,10 @@ export type UniRefund_ContractService_ContractsForMerchant_ContractHeaders_Contr
|
|
|
124
118
|
} | null;
|
|
125
119
|
webSite?: string | null;
|
|
126
120
|
merchantClassification: UniRefund_ContractService_Enums_MerchantClassification;
|
|
121
|
+
validFrom: string;
|
|
122
|
+
validTo: string;
|
|
127
123
|
addressCommonDataId: string;
|
|
128
|
-
refundTableHeaders?: Array<
|
|
124
|
+
refundTableHeaders?: Array<UniRefund_ContractService_ContractsForMerchant_ContractHeaderRefundTableHeaders_ContractHeaderRefundTableHeaderCreateAndUpdateDto> | null;
|
|
129
125
|
};
|
|
130
126
|
|
|
131
127
|
export type UniRefund_ContractService_ContractsForMerchant_ContractHeaders_ContractHeaderForMerchantDto = {
|
|
@@ -142,6 +138,8 @@ export type UniRefund_ContractService_ContractsForMerchant_ContractHeaders_Contr
|
|
|
142
138
|
isDraft?: boolean;
|
|
143
139
|
status?: UniRefund_ContractService_Enums_ContractHeaderStatus;
|
|
144
140
|
contractType: UniRefund_ContractService_Enums_ContractType;
|
|
141
|
+
validFrom: string;
|
|
142
|
+
validTo: string;
|
|
145
143
|
addressCommonData: UniRefund_LocationService_AddressCommonDatas_AddressCommonDataDto;
|
|
146
144
|
contractHeaderRefundTableHeaders: Array<UniRefund_ContractService_ContractsForMerchant_ContractHeaderRefundTableHeaders_ContractHeaderRefundTableHeaderDto>;
|
|
147
145
|
};
|
|
@@ -153,8 +151,10 @@ export type UniRefund_ContractService_ContractsForMerchant_ContractHeaders_Contr
|
|
|
153
151
|
webSite?: string | null;
|
|
154
152
|
merchantClassification: UniRefund_ContractService_Enums_MerchantClassification;
|
|
155
153
|
status: UniRefund_ContractService_Enums_ContractHeaderStatus;
|
|
154
|
+
validFrom: string;
|
|
155
|
+
validTo: string;
|
|
156
156
|
addressCommonDataId: string;
|
|
157
|
-
|
|
157
|
+
refundTableHeaders?: Array<UniRefund_ContractService_ContractsForMerchant_ContractHeaderRefundTableHeaders_ContractHeaderRefundTableHeaderCreateAndUpdateDto> | null;
|
|
158
158
|
};
|
|
159
159
|
|
|
160
160
|
export type UniRefund_ContractService_ContractsForMerchant_ContractSettings_ContractSettingCreateDto = {
|
|
@@ -207,6 +207,12 @@ export type UniRefund_ContractService_ContractsForMerchant_ContractSettings_Cont
|
|
|
207
207
|
contractHeaderId?: string;
|
|
208
208
|
};
|
|
209
209
|
|
|
210
|
+
export type UniRefund_ContractService_ContractsForMerchant_ContractSettings_ContractSettingRestrictedDto = {
|
|
211
|
+
id: string;
|
|
212
|
+
name: string;
|
|
213
|
+
isDefault?: boolean;
|
|
214
|
+
};
|
|
215
|
+
|
|
210
216
|
export type UniRefund_ContractService_ContractsForMerchant_ContractSettings_ContractSettingUpdateDto = {
|
|
211
217
|
readonly extraProperties?: {
|
|
212
218
|
[key: string]: unknown;
|
|
@@ -229,12 +235,22 @@ export type UniRefund_ContractService_ContractsForMerchant_ContractSettings_Cont
|
|
|
229
235
|
deskoScanner?: boolean;
|
|
230
236
|
};
|
|
231
237
|
|
|
232
|
-
export type
|
|
238
|
+
export type UniRefund_ContractService_ContractsForMerchant_ContractStores_ContractStoreCreateAndUpdateDto = {
|
|
233
239
|
readonly extraProperties?: {
|
|
234
240
|
[key: string]: unknown;
|
|
235
241
|
} | null;
|
|
236
242
|
contractTypeIdentifiersSubId: string;
|
|
237
243
|
receiptType: UniRefund_ContractService_Enums_ReceiptType;
|
|
244
|
+
contractSettingId: string;
|
|
245
|
+
};
|
|
246
|
+
|
|
247
|
+
export type UniRefund_ContractService_ContractsForMerchant_ContractStores_ContractStoreDetailedDto = {
|
|
248
|
+
contractTypeIdentifiersSubId: string;
|
|
249
|
+
name?: string | null;
|
|
250
|
+
fullAddress?: string | null;
|
|
251
|
+
manager?: string | null;
|
|
252
|
+
contractSetting?: UniRefund_ContractService_ContractsForMerchant_ContractSettings_ContractSettingRestrictedDto;
|
|
253
|
+
receiptType: UniRefund_ContractService_Enums_ReceiptType;
|
|
238
254
|
};
|
|
239
255
|
|
|
240
256
|
export type UniRefund_ContractService_ContractsForMerchant_ContractStores_ContractStoreDto = {
|
|
@@ -247,15 +263,7 @@ export type UniRefund_ContractService_ContractsForMerchant_ContractStores_Contra
|
|
|
247
263
|
deleterId?: string | null;
|
|
248
264
|
deletionTime?: string | null;
|
|
249
265
|
contractTypeIdentifiersSubId: string;
|
|
250
|
-
|
|
251
|
-
};
|
|
252
|
-
|
|
253
|
-
export type UniRefund_ContractService_ContractsForMerchant_ContractStores_ContractStoreUpdateDto = {
|
|
254
|
-
readonly extraProperties?: {
|
|
255
|
-
[key: string]: unknown;
|
|
256
|
-
} | null;
|
|
257
|
-
contractTypeIdentifiersSubId: string;
|
|
258
|
-
contractSettingId: string;
|
|
266
|
+
contractSetting?: UniRefund_ContractService_ContractsForMerchant_ContractSettings_ContractSettingRestrictedDto;
|
|
259
267
|
receiptType: UniRefund_ContractService_Enums_ReceiptType;
|
|
260
268
|
};
|
|
261
269
|
|
|
@@ -275,7 +283,7 @@ export type UniRefund_ContractService_Enums_MerchantClassification = 'Excellent'
|
|
|
275
283
|
|
|
276
284
|
export type UniRefund_ContractService_Enums_RebateStatementPeriod = 'None' | 'Monthly' | 'Quarterly' | 'BiAnnually' | 'Annually';
|
|
277
285
|
|
|
278
|
-
export type UniRefund_ContractService_Enums_ReceiptType = 'NoBarcodeNumber' | 'NoBarcodeText' | 'Barcode' | 'QRCodeIntegration' | 'UniRefundVoucherIntegration';
|
|
286
|
+
export type UniRefund_ContractService_Enums_ReceiptType = 'None' | 'NoBarcodeNumber' | 'NoBarcodeText' | 'Barcode' | 'QRCodeIntegration' | 'UniRefundVoucherIntegration';
|
|
279
287
|
|
|
280
288
|
export type UniRefund_ContractService_Enums_RefundMethod = 'All' | 'Cash' | 'CreditCard' | 'Alipay' | 'WeChat' | 'CashViaPartner' | 'RefundLater';
|
|
281
289
|
|
|
@@ -462,7 +470,6 @@ export type UniRefund_ContractService_Rebates_RebateTableHeaders_RebateTableHead
|
|
|
462
470
|
calculateNetCommissionInsteadOfRefund?: boolean;
|
|
463
471
|
validFrom: string;
|
|
464
472
|
validTo: string;
|
|
465
|
-
isTemplate?: boolean;
|
|
466
473
|
rebateTableDetails?: Array<UniRefund_ContractService_Rebates_RebateTableDetails_RebateTableDetailCreateDto> | null;
|
|
467
474
|
processingFeeDetails?: Array<UniRefund_ContractService_Rebates_ProcessingFeeDetails_ProcessingFeeDetailCreateDto> | null;
|
|
468
475
|
};
|
|
@@ -510,6 +517,14 @@ export type UniRefund_ContractService_Rebates_RebateTableHeaders_RebateTableHead
|
|
|
510
517
|
processingFeeDetails?: Array<UniRefund_ContractService_Rebates_ProcessingFeeDetails_ProcessingFeeDetailUpdateWithRandomIdDto> | null;
|
|
511
518
|
};
|
|
512
519
|
|
|
520
|
+
export type UniRefund_ContractService_Rebates_RebateTableHeaders_RebateTableHeadersToContractHeaderCreateDto = {
|
|
521
|
+
readonly extraProperties?: {
|
|
522
|
+
[key: string]: unknown;
|
|
523
|
+
} | null;
|
|
524
|
+
rebateTableHeaders?: Array<UniRefund_ContractService_Rebates_RebateTableHeaders_RebateTableHeaderNotTemplateCreateDto> | null;
|
|
525
|
+
rebateTableHeaderIds?: Array<(string)> | null;
|
|
526
|
+
};
|
|
527
|
+
|
|
513
528
|
export type UniRefund_ContractService_Refunds_RefundFeeDetails_RefundFeeDetailCreateDto = {
|
|
514
529
|
readonly extraProperties?: {
|
|
515
530
|
[key: string]: unknown;
|
|
@@ -1148,52 +1163,34 @@ export type PostApiContractServiceMerchantsContractsContractHeadersByIdContractS
|
|
|
1148
1163
|
|
|
1149
1164
|
export type PostApiContractServiceMerchantsContractsContractHeadersByIdContractSettingsResponse = UniRefund_ContractService_ContractsForMerchant_ContractSettings_ContractSettingDto;
|
|
1150
1165
|
|
|
1151
|
-
export type
|
|
1166
|
+
export type GetApiContractServiceMerchantsContractsContractHeadersByIdContractStoresData = {
|
|
1152
1167
|
id: string;
|
|
1168
|
+
maxResultCount?: number;
|
|
1169
|
+
skipCount?: number;
|
|
1170
|
+
sorting?: string;
|
|
1153
1171
|
};
|
|
1154
1172
|
|
|
1155
|
-
export type
|
|
1156
|
-
|
|
1157
|
-
export type PostApiContractServiceMerchantsContractsContractHeadersByIdRebateSettingsData = {
|
|
1158
|
-
id: string;
|
|
1159
|
-
requestBody?: UniRefund_ContractService_Rebates_RebateSettings_RebateSettingCreateDto;
|
|
1160
|
-
};
|
|
1161
|
-
|
|
1162
|
-
export type PostApiContractServiceMerchantsContractsContractHeadersByIdRebateSettingsResponse = UniRefund_ContractService_Rebates_RebateSettings_RebateSettingDto;
|
|
1163
|
-
|
|
1164
|
-
export type PostApiContractServiceMerchantsContractsContractSettingsByIdContractStoresData = {
|
|
1165
|
-
id: string;
|
|
1166
|
-
requestBody?: UniRefund_ContractService_ContractsForMerchant_ContractStores_ContractStoreCreateDto;
|
|
1167
|
-
};
|
|
1168
|
-
|
|
1169
|
-
export type PostApiContractServiceMerchantsContractsContractSettingsByIdContractStoresResponse = UniRefund_ContractService_ContractsForMerchant_ContractStores_ContractStoreDto;
|
|
1173
|
+
export type GetApiContractServiceMerchantsContractsContractHeadersByIdContractStoresResponse = PagedResultDto_ContractStoreDetailedDto;
|
|
1170
1174
|
|
|
1171
|
-
export type
|
|
1175
|
+
export type PostApiContractServiceMerchantsContractsContractHeadersByIdContractStoresData = {
|
|
1172
1176
|
id: string;
|
|
1177
|
+
requestBody?: UniRefund_ContractService_ContractsForMerchant_ContractStores_ContractStoreCreateAndUpdateDto;
|
|
1173
1178
|
};
|
|
1174
1179
|
|
|
1175
|
-
export type
|
|
1180
|
+
export type PostApiContractServiceMerchantsContractsContractHeadersByIdContractStoresResponse = UniRefund_ContractService_ContractsForMerchant_ContractStores_ContractStoreDto;
|
|
1176
1181
|
|
|
1177
|
-
export type
|
|
1182
|
+
export type GetApiContractServiceMerchantsContractsContractHeadersByIdRebateSettingsData = {
|
|
1178
1183
|
id: string;
|
|
1179
1184
|
};
|
|
1180
1185
|
|
|
1181
|
-
export type
|
|
1186
|
+
export type GetApiContractServiceMerchantsContractsContractHeadersByIdRebateSettingsResponse = UniRefund_ContractService_Rebates_RebateSettings_RebateSettingDto;
|
|
1182
1187
|
|
|
1183
|
-
export type
|
|
1188
|
+
export type PostApiContractServiceMerchantsContractsContractHeadersByIdRebateSettingsData = {
|
|
1184
1189
|
id: string;
|
|
1185
|
-
requestBody?:
|
|
1186
|
-
};
|
|
1187
|
-
|
|
1188
|
-
export type PutApiContractServiceMerchantsContractsContractStoresByIdResponse = UniRefund_ContractService_ContractsForMerchant_ContractStores_ContractStoreDto;
|
|
1189
|
-
|
|
1190
|
-
export type GetApiContractServiceMerchantsContractsContractStoresData = {
|
|
1191
|
-
maxResultCount?: number;
|
|
1192
|
-
skipCount?: number;
|
|
1193
|
-
sorting?: string;
|
|
1190
|
+
requestBody?: UniRefund_ContractService_Rebates_RebateSettings_RebateSettingCreateDto;
|
|
1194
1191
|
};
|
|
1195
1192
|
|
|
1196
|
-
export type
|
|
1193
|
+
export type PostApiContractServiceMerchantsContractsContractHeadersByIdRebateSettingsResponse = UniRefund_ContractService_Rebates_RebateSettings_RebateSettingDto;
|
|
1197
1194
|
|
|
1198
1195
|
export type PostApiContractServiceMerchantsByIdContractsContractHeadersData = {
|
|
1199
1196
|
id: string;
|
|
@@ -1259,6 +1256,13 @@ export type PutApiContractServiceRebateTablesRebateSettingsByIdData = {
|
|
|
1259
1256
|
|
|
1260
1257
|
export type PutApiContractServiceRebateTablesRebateSettingsByIdResponse = UniRefund_ContractService_Rebates_RebateSettings_RebateSettingDto;
|
|
1261
1258
|
|
|
1259
|
+
export type PostApiContractServiceRebateTablesRebateSettingsByIdRebateTableHeadersData = {
|
|
1260
|
+
id: string;
|
|
1261
|
+
requestBody?: UniRefund_ContractService_Rebates_RebateTableHeaders_RebateTableHeadersToContractHeaderCreateDto;
|
|
1262
|
+
};
|
|
1263
|
+
|
|
1264
|
+
export type PostApiContractServiceRebateTablesRebateSettingsByIdRebateTableHeadersResponse = UniRefund_ContractService_Rebates_RebateSettings_RebateSettingDto;
|
|
1265
|
+
|
|
1262
1266
|
export type PostApiContractServiceRebateTablesRebateSettingsByIdMinimumNetCommissionsData = {
|
|
1263
1267
|
id: string;
|
|
1264
1268
|
requestBody?: UniRefund_ContractService_Rebates_MinimumNetCommissions_MinimumNetCommissionCreateDto;
|
|
@@ -1379,11 +1383,11 @@ export type GetApiContractServiceRebateTablesRebateTableHeadersTemplatesData = {
|
|
|
1379
1383
|
|
|
1380
1384
|
export type GetApiContractServiceRebateTablesRebateTableHeadersTemplatesResponse = PagedResultDto_RebateTableHeaderDto;
|
|
1381
1385
|
|
|
1382
|
-
export type
|
|
1386
|
+
export type PostApiContractServiceRebateTablesRebateTableHeadersTemplatesData = {
|
|
1383
1387
|
requestBody?: UniRefund_ContractService_Rebates_RebateTableHeaders_RebateTableHeaderCreateDto;
|
|
1384
1388
|
};
|
|
1385
1389
|
|
|
1386
|
-
export type
|
|
1390
|
+
export type PostApiContractServiceRebateTablesRebateTableHeadersTemplatesResponse = UniRefund_ContractService_Rebates_RebateTableHeaders_RebateTableHeaderDto;
|
|
1387
1391
|
|
|
1388
1392
|
export type PostApiContractServiceRebateTablesRebateTableHeadersByIdRebateTableDetailsData = {
|
|
1389
1393
|
id: string;
|
|
@@ -1874,14 +1878,14 @@ export type $OpenApiTs = {
|
|
|
1874
1878
|
};
|
|
1875
1879
|
};
|
|
1876
1880
|
};
|
|
1877
|
-
'/api/contract-service/merchants/contracts/contract-headers/{id}/
|
|
1881
|
+
'/api/contract-service/merchants/contracts/contract-headers/{id}/contract-stores': {
|
|
1878
1882
|
get: {
|
|
1879
|
-
req:
|
|
1883
|
+
req: GetApiContractServiceMerchantsContractsContractHeadersByIdContractStoresData;
|
|
1880
1884
|
res: {
|
|
1881
1885
|
/**
|
|
1882
1886
|
* Success
|
|
1883
1887
|
*/
|
|
1884
|
-
200:
|
|
1888
|
+
200: PagedResultDto_ContractStoreDetailedDto;
|
|
1885
1889
|
/**
|
|
1886
1890
|
* Bad Request
|
|
1887
1891
|
*/
|
|
@@ -1909,42 +1913,7 @@ export type $OpenApiTs = {
|
|
|
1909
1913
|
};
|
|
1910
1914
|
};
|
|
1911
1915
|
post: {
|
|
1912
|
-
req:
|
|
1913
|
-
res: {
|
|
1914
|
-
/**
|
|
1915
|
-
* Success
|
|
1916
|
-
*/
|
|
1917
|
-
200: UniRefund_ContractService_Rebates_RebateSettings_RebateSettingDto;
|
|
1918
|
-
/**
|
|
1919
|
-
* Bad Request
|
|
1920
|
-
*/
|
|
1921
|
-
400: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
1922
|
-
/**
|
|
1923
|
-
* Unauthorized
|
|
1924
|
-
*/
|
|
1925
|
-
401: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
1926
|
-
/**
|
|
1927
|
-
* Forbidden
|
|
1928
|
-
*/
|
|
1929
|
-
403: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
1930
|
-
/**
|
|
1931
|
-
* Not Found
|
|
1932
|
-
*/
|
|
1933
|
-
404: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
1934
|
-
/**
|
|
1935
|
-
* Server Error
|
|
1936
|
-
*/
|
|
1937
|
-
500: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
1938
|
-
/**
|
|
1939
|
-
* Server Error
|
|
1940
|
-
*/
|
|
1941
|
-
501: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
1942
|
-
};
|
|
1943
|
-
};
|
|
1944
|
-
};
|
|
1945
|
-
'/api/contract-service/merchants/contracts/contract-settings/{id}/contract-stores': {
|
|
1946
|
-
post: {
|
|
1947
|
-
req: PostApiContractServiceMerchantsContractsContractSettingsByIdContractStoresData;
|
|
1916
|
+
req: PostApiContractServiceMerchantsContractsContractHeadersByIdContractStoresData;
|
|
1948
1917
|
res: {
|
|
1949
1918
|
/**
|
|
1950
1919
|
* Success
|
|
@@ -1977,14 +1946,14 @@ export type $OpenApiTs = {
|
|
|
1977
1946
|
};
|
|
1978
1947
|
};
|
|
1979
1948
|
};
|
|
1980
|
-
'/api/contract-service/merchants/contracts/contract-
|
|
1981
|
-
|
|
1982
|
-
req:
|
|
1949
|
+
'/api/contract-service/merchants/contracts/contract-headers/{id}/rebate-settings': {
|
|
1950
|
+
get: {
|
|
1951
|
+
req: GetApiContractServiceMerchantsContractsContractHeadersByIdRebateSettingsData;
|
|
1983
1952
|
res: {
|
|
1984
1953
|
/**
|
|
1985
1954
|
* Success
|
|
1986
1955
|
*/
|
|
1987
|
-
200:
|
|
1956
|
+
200: UniRefund_ContractService_Rebates_RebateSettings_RebateSettingDto;
|
|
1988
1957
|
/**
|
|
1989
1958
|
* Bad Request
|
|
1990
1959
|
*/
|
|
@@ -2011,13 +1980,13 @@ export type $OpenApiTs = {
|
|
|
2011
1980
|
501: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2012
1981
|
};
|
|
2013
1982
|
};
|
|
2014
|
-
|
|
2015
|
-
req:
|
|
1983
|
+
post: {
|
|
1984
|
+
req: PostApiContractServiceMerchantsContractsContractHeadersByIdRebateSettingsData;
|
|
2016
1985
|
res: {
|
|
2017
1986
|
/**
|
|
2018
1987
|
* Success
|
|
2019
1988
|
*/
|
|
2020
|
-
200:
|
|
1989
|
+
200: UniRefund_ContractService_Rebates_RebateSettings_RebateSettingDto;
|
|
2021
1990
|
/**
|
|
2022
1991
|
* Bad Request
|
|
2023
1992
|
*/
|
|
@@ -2044,13 +2013,15 @@ export type $OpenApiTs = {
|
|
|
2044
2013
|
501: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2045
2014
|
};
|
|
2046
2015
|
};
|
|
2047
|
-
|
|
2048
|
-
|
|
2016
|
+
};
|
|
2017
|
+
'/api/contract-service/merchants/{id}/contracts/contract-headers': {
|
|
2018
|
+
post: {
|
|
2019
|
+
req: PostApiContractServiceMerchantsByIdContractsContractHeadersData;
|
|
2049
2020
|
res: {
|
|
2050
2021
|
/**
|
|
2051
2022
|
* Success
|
|
2052
2023
|
*/
|
|
2053
|
-
200:
|
|
2024
|
+
200: UniRefund_ContractService_ContractsForMerchant_ContractHeaders_ContractHeaderForMerchantDto;
|
|
2054
2025
|
/**
|
|
2055
2026
|
* Bad Request
|
|
2056
2027
|
*/
|
|
@@ -2077,15 +2048,13 @@ export type $OpenApiTs = {
|
|
|
2077
2048
|
501: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2078
2049
|
};
|
|
2079
2050
|
};
|
|
2080
|
-
};
|
|
2081
|
-
'/api/contract-service/merchants/contracts/contract-stores': {
|
|
2082
2051
|
get: {
|
|
2083
|
-
req:
|
|
2052
|
+
req: GetApiContractServiceMerchantsByIdContractsContractHeadersData;
|
|
2084
2053
|
res: {
|
|
2085
2054
|
/**
|
|
2086
2055
|
* Success
|
|
2087
2056
|
*/
|
|
2088
|
-
200:
|
|
2057
|
+
200: PagedResultDto_ContractHeaderDetailForMerchantDto;
|
|
2089
2058
|
/**
|
|
2090
2059
|
* Bad Request
|
|
2091
2060
|
*/
|
|
@@ -2113,14 +2082,14 @@ export type $OpenApiTs = {
|
|
|
2113
2082
|
};
|
|
2114
2083
|
};
|
|
2115
2084
|
};
|
|
2116
|
-
'/api/contract-service/merchants/
|
|
2117
|
-
|
|
2118
|
-
req:
|
|
2085
|
+
'/api/contract-service/merchants/contracts/contract-headers/{id}': {
|
|
2086
|
+
delete: {
|
|
2087
|
+
req: DeleteApiContractServiceMerchantsContractsContractHeadersByIdData;
|
|
2119
2088
|
res: {
|
|
2120
2089
|
/**
|
|
2121
2090
|
* Success
|
|
2122
2091
|
*/
|
|
2123
|
-
200:
|
|
2092
|
+
200: unknown;
|
|
2124
2093
|
/**
|
|
2125
2094
|
* Bad Request
|
|
2126
2095
|
*/
|
|
@@ -2148,47 +2117,12 @@ export type $OpenApiTs = {
|
|
|
2148
2117
|
};
|
|
2149
2118
|
};
|
|
2150
2119
|
get: {
|
|
2151
|
-
req:
|
|
2152
|
-
res: {
|
|
2153
|
-
/**
|
|
2154
|
-
* Success
|
|
2155
|
-
*/
|
|
2156
|
-
200: PagedResultDto_ContractHeaderDetailForMerchantDto;
|
|
2157
|
-
/**
|
|
2158
|
-
* Bad Request
|
|
2159
|
-
*/
|
|
2160
|
-
400: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2161
|
-
/**
|
|
2162
|
-
* Unauthorized
|
|
2163
|
-
*/
|
|
2164
|
-
401: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2165
|
-
/**
|
|
2166
|
-
* Forbidden
|
|
2167
|
-
*/
|
|
2168
|
-
403: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2169
|
-
/**
|
|
2170
|
-
* Not Found
|
|
2171
|
-
*/
|
|
2172
|
-
404: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2173
|
-
/**
|
|
2174
|
-
* Server Error
|
|
2175
|
-
*/
|
|
2176
|
-
500: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2177
|
-
/**
|
|
2178
|
-
* Server Error
|
|
2179
|
-
*/
|
|
2180
|
-
501: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2181
|
-
};
|
|
2182
|
-
};
|
|
2183
|
-
};
|
|
2184
|
-
'/api/contract-service/merchants/contracts/contract-headers/{id}': {
|
|
2185
|
-
delete: {
|
|
2186
|
-
req: DeleteApiContractServiceMerchantsContractsContractHeadersByIdData;
|
|
2120
|
+
req: GetApiContractServiceMerchantsContractsContractHeadersByIdData;
|
|
2187
2121
|
res: {
|
|
2188
2122
|
/**
|
|
2189
2123
|
* Success
|
|
2190
2124
|
*/
|
|
2191
|
-
200:
|
|
2125
|
+
200: UniRefund_ContractService_ContractsForMerchant_ContractHeaders_ContractHeaderDetailForMerchantDto;
|
|
2192
2126
|
/**
|
|
2193
2127
|
* Bad Request
|
|
2194
2128
|
*/
|
|
@@ -2215,8 +2149,8 @@ export type $OpenApiTs = {
|
|
|
2215
2149
|
501: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2216
2150
|
};
|
|
2217
2151
|
};
|
|
2218
|
-
|
|
2219
|
-
req:
|
|
2152
|
+
put: {
|
|
2153
|
+
req: PutApiContractServiceMerchantsContractsContractHeadersByIdData;
|
|
2220
2154
|
res: {
|
|
2221
2155
|
/**
|
|
2222
2156
|
* Success
|
|
@@ -2248,13 +2182,15 @@ export type $OpenApiTs = {
|
|
|
2248
2182
|
501: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2249
2183
|
};
|
|
2250
2184
|
};
|
|
2251
|
-
|
|
2252
|
-
|
|
2185
|
+
};
|
|
2186
|
+
'/api/contract-service/merchants/contracts/contract-headers': {
|
|
2187
|
+
get: {
|
|
2188
|
+
req: GetApiContractServiceMerchantsContractsContractHeadersData;
|
|
2253
2189
|
res: {
|
|
2254
2190
|
/**
|
|
2255
2191
|
* Success
|
|
2256
2192
|
*/
|
|
2257
|
-
200:
|
|
2193
|
+
200: PagedResultDto_ContractHeaderForMerchantDto;
|
|
2258
2194
|
/**
|
|
2259
2195
|
* Bad Request
|
|
2260
2196
|
*/
|
|
@@ -2282,14 +2218,14 @@ export type $OpenApiTs = {
|
|
|
2282
2218
|
};
|
|
2283
2219
|
};
|
|
2284
2220
|
};
|
|
2285
|
-
'/api/contract-service/merchants/contracts/contract-headers': {
|
|
2221
|
+
'/api/contract-service/merchants/contracts/contract-headers/{id}/get-missing-steps': {
|
|
2286
2222
|
get: {
|
|
2287
|
-
req:
|
|
2223
|
+
req: GetApiContractServiceMerchantsContractsContractHeadersByIdGetMissingStepsData;
|
|
2288
2224
|
res: {
|
|
2289
2225
|
/**
|
|
2290
2226
|
* Success
|
|
2291
2227
|
*/
|
|
2292
|
-
200:
|
|
2228
|
+
200: Array<UniRefund_ContractService_Enums_ContractHeaderDraftMissingSteps>;
|
|
2293
2229
|
/**
|
|
2294
2230
|
* Bad Request
|
|
2295
2231
|
*/
|
|
@@ -2317,14 +2253,14 @@ export type $OpenApiTs = {
|
|
|
2317
2253
|
};
|
|
2318
2254
|
};
|
|
2319
2255
|
};
|
|
2320
|
-
'/api/contract-service/
|
|
2256
|
+
'/api/contract-service/rebate-tables/rebate-settings/{id}': {
|
|
2321
2257
|
get: {
|
|
2322
|
-
req:
|
|
2258
|
+
req: GetApiContractServiceRebateTablesRebateSettingsByIdData;
|
|
2323
2259
|
res: {
|
|
2324
2260
|
/**
|
|
2325
2261
|
* Success
|
|
2326
2262
|
*/
|
|
2327
|
-
200:
|
|
2263
|
+
200: UniRefund_ContractService_Rebates_RebateSettings_RebateSettingDto;
|
|
2328
2264
|
/**
|
|
2329
2265
|
* Bad Request
|
|
2330
2266
|
*/
|
|
@@ -2351,10 +2287,8 @@ export type $OpenApiTs = {
|
|
|
2351
2287
|
501: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2352
2288
|
};
|
|
2353
2289
|
};
|
|
2354
|
-
|
|
2355
|
-
|
|
2356
|
-
get: {
|
|
2357
|
-
req: GetApiContractServiceRebateTablesRebateSettingsByIdData;
|
|
2290
|
+
put: {
|
|
2291
|
+
req: PutApiContractServiceRebateTablesRebateSettingsByIdData;
|
|
2358
2292
|
res: {
|
|
2359
2293
|
/**
|
|
2360
2294
|
* Success
|
|
@@ -2386,8 +2320,10 @@ export type $OpenApiTs = {
|
|
|
2386
2320
|
501: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2387
2321
|
};
|
|
2388
2322
|
};
|
|
2389
|
-
|
|
2390
|
-
|
|
2323
|
+
};
|
|
2324
|
+
'/api/contract-service/rebate-tables/rebate-settings/{id}/rebate-table-headers': {
|
|
2325
|
+
post: {
|
|
2326
|
+
req: PostApiContractServiceRebateTablesRebateSettingsByIdRebateTableHeadersData;
|
|
2391
2327
|
res: {
|
|
2392
2328
|
/**
|
|
2393
2329
|
* Success
|
|
@@ -3033,10 +2969,8 @@ export type $OpenApiTs = {
|
|
|
3033
2969
|
501: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
3034
2970
|
};
|
|
3035
2971
|
};
|
|
3036
|
-
};
|
|
3037
|
-
'/api/contract-service/rebate-tables/rebate-table-headers': {
|
|
3038
2972
|
post: {
|
|
3039
|
-
req:
|
|
2973
|
+
req: PostApiContractServiceRebateTablesRebateTableHeadersTemplatesData;
|
|
3040
2974
|
res: {
|
|
3041
2975
|
/**
|
|
3042
2976
|
* Success
|
package/generator.mjs
CHANGED