@ayasofyazilim/saas 0.0.36 → 0.0.38
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/AccountService/core/ApiRequestOptions.ts +12 -12
- package/AccountService/core/BaseHttpRequest.ts +9 -9
- package/AccountService/core/FetchHttpRequest.ts +21 -21
- package/AccountService/core/OpenAPI.ts +55 -55
- package/AccountService/core/request.ts +340 -340
- package/AccountService/index.ts +8 -8
- package/AdministrationService/core/ApiRequestOptions.ts +12 -12
- package/AdministrationService/core/BaseHttpRequest.ts +9 -9
- package/AdministrationService/core/FetchHttpRequest.ts +21 -21
- package/AdministrationService/core/OpenAPI.ts +55 -55
- package/AdministrationService/core/request.ts +340 -340
- package/BackerService/core/ApiRequestOptions.ts +12 -12
- package/BackerService/core/BaseHttpRequest.ts +9 -9
- package/BackerService/core/FetchHttpRequest.ts +21 -21
- package/BackerService/core/OpenAPI.ts +55 -55
- package/BackerService/core/request.ts +340 -340
- package/BackerService/index.ts +8 -8
- package/BackerService/services.gen.ts +866 -866
- package/CRMService/schemas.gen.ts +3 -15
- package/CRMService/services.gen.ts +444 -9
- package/CRMService/types.gen.ts +692 -50
- package/FundraiserService/core/ApiRequestOptions.ts +12 -12
- package/FundraiserService/core/BaseHttpRequest.ts +9 -9
- package/FundraiserService/core/FetchHttpRequest.ts +21 -21
- package/FundraiserService/core/OpenAPI.ts +55 -55
- package/FundraiserService/core/request.ts +340 -340
- package/FundraiserService/index.ts +8 -8
- package/FundraiserService/services.gen.ts +627 -627
- package/IdentityService/core/ApiRequestOptions.ts +12 -12
- package/IdentityService/core/BaseHttpRequest.ts +9 -9
- package/IdentityService/core/FetchHttpRequest.ts +21 -21
- package/IdentityService/core/OpenAPI.ts +55 -55
- package/IdentityService/core/request.ts +340 -340
- package/IdentityService/index.ts +8 -8
- package/MerchantService/core/ApiRequestOptions.ts +12 -12
- package/MerchantService/core/BaseHttpRequest.ts +9 -9
- package/MerchantService/core/FetchHttpRequest.ts +21 -21
- package/MerchantService/core/OpenAPI.ts +55 -55
- package/MerchantService/core/request.ts +340 -340
- package/MerchantService/schemas.gen.ts +14764 -14764
- package/MerchantService/services.gen.ts +1602 -1602
- package/ProjectService/core/ApiRequestOptions.ts +12 -12
- package/ProjectService/core/BaseHttpRequest.ts +9 -9
- package/ProjectService/core/FetchHttpRequest.ts +21 -21
- package/ProjectService/core/OpenAPI.ts +55 -55
- package/ProjectService/core/request.ts +340 -340
- package/ProjectService/index.ts +8 -8
- package/ProjectService/services.gen.ts +492 -492
- package/ProjectService.json +2937 -2937
- package/SaasService/core/ApiRequestOptions.ts +12 -12
- package/SaasService/core/BaseHttpRequest.ts +9 -9
- package/SaasService/core/FetchHttpRequest.ts +21 -21
- package/SaasService/core/OpenAPI.ts +55 -55
- package/SaasService/core/request.ts +340 -340
- package/SaasService/index.ts +8 -8
- package/TravellerService/TravellerServiceClient.ts +56 -56
- package/TravellerService/core/ApiError.ts +20 -20
- package/TravellerService/core/ApiRequestOptions.ts +12 -12
- package/TravellerService/core/ApiResult.ts +6 -6
- package/TravellerService/core/BaseHttpRequest.ts +9 -9
- package/TravellerService/core/CancelablePromise.ts +125 -125
- package/TravellerService/core/FetchHttpRequest.ts +21 -21
- package/TravellerService/core/OpenAPI.ts +55 -55
- package/TravellerService/core/request.ts +340 -340
- package/TravellerService/index.ts +8 -8
- package/TravellerService/schemas.gen.ts +6204 -7980
- package/TravellerService/services.gen.ts +695 -709
- package/TravellerService/types.gen.ts +1808 -1850
- package/generator.mjs +4 -8
- package/package.json +1 -1
- package/swagger.json +4794 -4794
package/CRMService/types.gen.ts
CHANGED
|
@@ -53,14 +53,13 @@ export type UniRefund_CRMService_AddressTypes_UpdateAddressTypeDto = {
|
|
|
53
53
|
readonly extraProperties?: {
|
|
54
54
|
[key: string]: unknown;
|
|
55
55
|
} | null;
|
|
56
|
-
id: string;
|
|
57
56
|
addressLine: string;
|
|
58
57
|
city: string;
|
|
59
58
|
terriority: string;
|
|
60
59
|
postalCode: string;
|
|
61
60
|
country: string;
|
|
62
61
|
fullAddress: string;
|
|
63
|
-
primaryFlag
|
|
62
|
+
primaryFlag?: boolean;
|
|
64
63
|
typeCode: UniRefund_CRMService_Enums_AddressTypeCode;
|
|
65
64
|
};
|
|
66
65
|
|
|
@@ -180,9 +179,8 @@ export type UniRefund_CRMService_EmailCommonDatas_UpdateEmailCommonDataDto = {
|
|
|
180
179
|
readonly extraProperties?: {
|
|
181
180
|
[key: string]: unknown;
|
|
182
181
|
} | null;
|
|
183
|
-
id: string;
|
|
184
182
|
emailAddress: string;
|
|
185
|
-
primaryFlag
|
|
183
|
+
primaryFlag?: boolean;
|
|
186
184
|
typeCode: UniRefund_CRMService_Enums_EmailTypeCode;
|
|
187
185
|
};
|
|
188
186
|
|
|
@@ -537,11 +535,10 @@ export type UniRefund_CRMService_TelephoneTypes_UpdateTelephoneTypeDto = {
|
|
|
537
535
|
readonly extraProperties?: {
|
|
538
536
|
[key: string]: unknown;
|
|
539
537
|
} | null;
|
|
540
|
-
id: string;
|
|
541
538
|
areaCode: string;
|
|
542
539
|
localNumber: string;
|
|
543
540
|
ituCountryCode: string;
|
|
544
|
-
primaryFlag
|
|
541
|
+
primaryFlag?: boolean;
|
|
545
542
|
typeCode: UniRefund_CRMService_Enums_TelephoneTypeCode;
|
|
546
543
|
};
|
|
547
544
|
|
|
@@ -1112,6 +1109,30 @@ export type PutApiCrmServiceCustomsByIdOrganizationByOrganizationIdData = {
|
|
|
1112
1109
|
|
|
1113
1110
|
export type PutApiCrmServiceCustomsByIdOrganizationByOrganizationIdResponse = unknown;
|
|
1114
1111
|
|
|
1112
|
+
export type PutApiCrmServiceCustomsByCustomsIdTelephoneByIdData = {
|
|
1113
|
+
customsId: string;
|
|
1114
|
+
id: string;
|
|
1115
|
+
requestBody?: UniRefund_CRMService_TelephoneTypes_UpdateTelephoneTypeDto;
|
|
1116
|
+
};
|
|
1117
|
+
|
|
1118
|
+
export type PutApiCrmServiceCustomsByCustomsIdTelephoneByIdResponse = UniRefund_CRMService_TelephoneTypes_TelephoneTypeDto;
|
|
1119
|
+
|
|
1120
|
+
export type PutApiCrmServiceCustomsByCustomsIdAddressByIdData = {
|
|
1121
|
+
customsId: string;
|
|
1122
|
+
id: string;
|
|
1123
|
+
requestBody?: UniRefund_CRMService_AddressTypes_UpdateAddressTypeDto;
|
|
1124
|
+
};
|
|
1125
|
+
|
|
1126
|
+
export type PutApiCrmServiceCustomsByCustomsIdAddressByIdResponse = UniRefund_CRMService_AddressTypes_AddressTypeDto;
|
|
1127
|
+
|
|
1128
|
+
export type PutApiCrmServiceCustomsByCustomsIdEmailByIdData = {
|
|
1129
|
+
customsId: string;
|
|
1130
|
+
id: string;
|
|
1131
|
+
requestBody?: UniRefund_CRMService_EmailCommonDatas_UpdateEmailCommonDataDto;
|
|
1132
|
+
};
|
|
1133
|
+
|
|
1134
|
+
export type PutApiCrmServiceCustomsByCustomsIdEmailByIdResponse = UniRefund_CRMService_EmailCommonDatas_EmailCommonDataDto;
|
|
1135
|
+
|
|
1115
1136
|
export type GetApiCrmServiceEmailsData = {
|
|
1116
1137
|
maxResultCount?: number;
|
|
1117
1138
|
skipCount?: number;
|
|
@@ -1225,6 +1246,30 @@ export type PostApiCrmServiceMerchantsBulkProductGroupMerchantData = {
|
|
|
1225
1246
|
|
|
1226
1247
|
export type PostApiCrmServiceMerchantsBulkProductGroupMerchantResponse = unknown;
|
|
1227
1248
|
|
|
1249
|
+
export type PutApiCrmServiceMerchantsByMerchantIdTelephoneByIdData = {
|
|
1250
|
+
id: string;
|
|
1251
|
+
merchantId: string;
|
|
1252
|
+
requestBody?: UniRefund_CRMService_TelephoneTypes_UpdateTelephoneTypeDto;
|
|
1253
|
+
};
|
|
1254
|
+
|
|
1255
|
+
export type PutApiCrmServiceMerchantsByMerchantIdTelephoneByIdResponse = UniRefund_CRMService_TelephoneTypes_TelephoneTypeDto;
|
|
1256
|
+
|
|
1257
|
+
export type PutApiCrmServiceMerchantsByMerchantIdAddressByIdData = {
|
|
1258
|
+
id: string;
|
|
1259
|
+
merchantId: string;
|
|
1260
|
+
requestBody?: UniRefund_CRMService_AddressTypes_UpdateAddressTypeDto;
|
|
1261
|
+
};
|
|
1262
|
+
|
|
1263
|
+
export type PutApiCrmServiceMerchantsByMerchantIdAddressByIdResponse = UniRefund_CRMService_AddressTypes_AddressTypeDto;
|
|
1264
|
+
|
|
1265
|
+
export type PutApiCrmServiceMerchantsByMerchantIdEmailByIdData = {
|
|
1266
|
+
id: string;
|
|
1267
|
+
merchantId: string;
|
|
1268
|
+
requestBody?: UniRefund_CRMService_EmailCommonDatas_UpdateEmailCommonDataDto;
|
|
1269
|
+
};
|
|
1270
|
+
|
|
1271
|
+
export type PutApiCrmServiceMerchantsByMerchantIdEmailByIdResponse = UniRefund_CRMService_EmailCommonDatas_EmailCommonDataDto;
|
|
1272
|
+
|
|
1228
1273
|
export type PostApiCrmServiceOrganizationsWithComponentsData = {
|
|
1229
1274
|
requestBody?: UniRefund_CRMService_Organizations_CreateOrganizationDto;
|
|
1230
1275
|
};
|
|
@@ -1283,13 +1328,37 @@ export type GetApiCrmServiceRefundPointsByRefundPointIdAffiliationsData = {
|
|
|
1283
1328
|
|
|
1284
1329
|
export type GetApiCrmServiceRefundPointsByRefundPointIdAffiliationsResponse = Volo_Abp_Application_Dtos_PagedResultDto_1;
|
|
1285
1330
|
|
|
1286
|
-
export type
|
|
1287
|
-
id: string;
|
|
1331
|
+
export type PutApiCrmServiceRefundPointsByRefundPointIdOrganizationByOrganizationIdData = {
|
|
1288
1332
|
organizationId: string;
|
|
1333
|
+
refundPointId: string;
|
|
1289
1334
|
requestBody?: UniRefund_CRMService_Organizations_UpdateOrganizationDto;
|
|
1290
1335
|
};
|
|
1291
1336
|
|
|
1292
|
-
export type
|
|
1337
|
+
export type PutApiCrmServiceRefundPointsByRefundPointIdOrganizationByOrganizationIdResponse = unknown;
|
|
1338
|
+
|
|
1339
|
+
export type PutApiCrmServiceRefundPointsByRefundPointIdTelephoneByIdData = {
|
|
1340
|
+
id: string;
|
|
1341
|
+
refundPointId: string;
|
|
1342
|
+
requestBody?: UniRefund_CRMService_TelephoneTypes_UpdateTelephoneTypeDto;
|
|
1343
|
+
};
|
|
1344
|
+
|
|
1345
|
+
export type PutApiCrmServiceRefundPointsByRefundPointIdTelephoneByIdResponse = UniRefund_CRMService_TelephoneTypes_TelephoneTypeDto;
|
|
1346
|
+
|
|
1347
|
+
export type PutApiCrmServiceRefundPointsByRefundPointIdAddressByIdData = {
|
|
1348
|
+
id: string;
|
|
1349
|
+
refundPointId: string;
|
|
1350
|
+
requestBody?: UniRefund_CRMService_AddressTypes_UpdateAddressTypeDto;
|
|
1351
|
+
};
|
|
1352
|
+
|
|
1353
|
+
export type PutApiCrmServiceRefundPointsByRefundPointIdAddressByIdResponse = UniRefund_CRMService_AddressTypes_AddressTypeDto;
|
|
1354
|
+
|
|
1355
|
+
export type PutApiCrmServiceRefundPointsByRefundPointIdEmailByIdData = {
|
|
1356
|
+
id: string;
|
|
1357
|
+
refundPointId: string;
|
|
1358
|
+
requestBody?: UniRefund_CRMService_EmailCommonDatas_UpdateEmailCommonDataDto;
|
|
1359
|
+
};
|
|
1360
|
+
|
|
1361
|
+
export type PutApiCrmServiceRefundPointsByRefundPointIdEmailByIdResponse = UniRefund_CRMService_EmailCommonDatas_EmailCommonDataDto;
|
|
1293
1362
|
|
|
1294
1363
|
export type GetApiCrmServiceTaxFreesData = {
|
|
1295
1364
|
maxResultCount?: number;
|
|
@@ -1341,6 +1410,30 @@ export type PutApiCrmServiceTaxFreesByIdOrganizationByOrganizationIdData = {
|
|
|
1341
1410
|
|
|
1342
1411
|
export type PutApiCrmServiceTaxFreesByIdOrganizationByOrganizationIdResponse = unknown;
|
|
1343
1412
|
|
|
1413
|
+
export type PutApiCrmServiceTaxFreesByTaxFreeIdTelephoneByIdData = {
|
|
1414
|
+
id: string;
|
|
1415
|
+
requestBody?: UniRefund_CRMService_TelephoneTypes_UpdateTelephoneTypeDto;
|
|
1416
|
+
taxFreeId: string;
|
|
1417
|
+
};
|
|
1418
|
+
|
|
1419
|
+
export type PutApiCrmServiceTaxFreesByTaxFreeIdTelephoneByIdResponse = UniRefund_CRMService_TelephoneTypes_TelephoneTypeDto;
|
|
1420
|
+
|
|
1421
|
+
export type PutApiCrmServiceTaxFreesByTaxFreeIdAddressByIdData = {
|
|
1422
|
+
id: string;
|
|
1423
|
+
requestBody?: UniRefund_CRMService_AddressTypes_UpdateAddressTypeDto;
|
|
1424
|
+
taxFreeId: string;
|
|
1425
|
+
};
|
|
1426
|
+
|
|
1427
|
+
export type PutApiCrmServiceTaxFreesByTaxFreeIdAddressByIdResponse = UniRefund_CRMService_AddressTypes_AddressTypeDto;
|
|
1428
|
+
|
|
1429
|
+
export type PutApiCrmServiceTaxFreesByTaxFreeIdEmailByIdData = {
|
|
1430
|
+
id: string;
|
|
1431
|
+
requestBody?: UniRefund_CRMService_EmailCommonDatas_UpdateEmailCommonDataDto;
|
|
1432
|
+
taxFreeId: string;
|
|
1433
|
+
};
|
|
1434
|
+
|
|
1435
|
+
export type PutApiCrmServiceTaxFreesByTaxFreeIdEmailByIdResponse = UniRefund_CRMService_EmailCommonDatas_EmailCommonDataDto;
|
|
1436
|
+
|
|
1344
1437
|
export type GetApiCrmServiceTaxOfficesData = {
|
|
1345
1438
|
maxResultCount?: number;
|
|
1346
1439
|
skipCount?: number;
|
|
@@ -1383,13 +1476,37 @@ export type GetApiCrmServiceTaxOfficesByTaxOfficesIdAffiliationsData = {
|
|
|
1383
1476
|
|
|
1384
1477
|
export type GetApiCrmServiceTaxOfficesByTaxOfficesIdAffiliationsResponse = Volo_Abp_Application_Dtos_PagedResultDto_1;
|
|
1385
1478
|
|
|
1386
|
-
export type
|
|
1387
|
-
id: string;
|
|
1479
|
+
export type PutApiCrmServiceTaxOfficesByTaxOfficeIdOrganizationByOrganizationIdData = {
|
|
1388
1480
|
organizationId: string;
|
|
1389
1481
|
requestBody?: UniRefund_CRMService_Organizations_UpdateOrganizationDto;
|
|
1482
|
+
taxOfficeId: string;
|
|
1483
|
+
};
|
|
1484
|
+
|
|
1485
|
+
export type PutApiCrmServiceTaxOfficesByTaxOfficeIdOrganizationByOrganizationIdResponse = unknown;
|
|
1486
|
+
|
|
1487
|
+
export type PutApiCrmServiceTaxOfficesByTaxOfficeIdTelephoneByIdData = {
|
|
1488
|
+
id: string;
|
|
1489
|
+
requestBody?: UniRefund_CRMService_TelephoneTypes_UpdateTelephoneTypeDto;
|
|
1490
|
+
taxOfficeId: string;
|
|
1491
|
+
};
|
|
1492
|
+
|
|
1493
|
+
export type PutApiCrmServiceTaxOfficesByTaxOfficeIdTelephoneByIdResponse = UniRefund_CRMService_TelephoneTypes_TelephoneTypeDto;
|
|
1494
|
+
|
|
1495
|
+
export type PutApiCrmServiceTaxOfficesByTaxOfficeIdAddressByIdData = {
|
|
1496
|
+
id: string;
|
|
1497
|
+
requestBody?: UniRefund_CRMService_AddressTypes_UpdateAddressTypeDto;
|
|
1498
|
+
taxOfficeId: string;
|
|
1390
1499
|
};
|
|
1391
1500
|
|
|
1392
|
-
export type
|
|
1501
|
+
export type PutApiCrmServiceTaxOfficesByTaxOfficeIdAddressByIdResponse = UniRefund_CRMService_AddressTypes_AddressTypeDto;
|
|
1502
|
+
|
|
1503
|
+
export type PutApiCrmServiceTaxOfficesByTaxOfficeIdEmailByIdData = {
|
|
1504
|
+
id: string;
|
|
1505
|
+
requestBody?: UniRefund_CRMService_EmailCommonDatas_UpdateEmailCommonDataDto;
|
|
1506
|
+
taxOfficeId: string;
|
|
1507
|
+
};
|
|
1508
|
+
|
|
1509
|
+
export type PutApiCrmServiceTaxOfficesByTaxOfficeIdEmailByIdResponse = UniRefund_CRMService_EmailCommonDatas_EmailCommonDataDto;
|
|
1393
1510
|
|
|
1394
1511
|
export type GetApiCrmServiceTelephonesData = {
|
|
1395
1512
|
maxResultCount?: number;
|
|
@@ -1942,6 +2059,111 @@ export type $OpenApiTs = {
|
|
|
1942
2059
|
};
|
|
1943
2060
|
};
|
|
1944
2061
|
};
|
|
2062
|
+
'/api/crm-service/customs/{customsId}/telephone/{id}': {
|
|
2063
|
+
put: {
|
|
2064
|
+
req: PutApiCrmServiceCustomsByCustomsIdTelephoneByIdData;
|
|
2065
|
+
res: {
|
|
2066
|
+
/**
|
|
2067
|
+
* Success
|
|
2068
|
+
*/
|
|
2069
|
+
200: UniRefund_CRMService_TelephoneTypes_TelephoneTypeDto;
|
|
2070
|
+
/**
|
|
2071
|
+
* Bad Request
|
|
2072
|
+
*/
|
|
2073
|
+
400: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2074
|
+
/**
|
|
2075
|
+
* Unauthorized
|
|
2076
|
+
*/
|
|
2077
|
+
401: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2078
|
+
/**
|
|
2079
|
+
* Forbidden
|
|
2080
|
+
*/
|
|
2081
|
+
403: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2082
|
+
/**
|
|
2083
|
+
* Not Found
|
|
2084
|
+
*/
|
|
2085
|
+
404: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2086
|
+
/**
|
|
2087
|
+
* Server Error
|
|
2088
|
+
*/
|
|
2089
|
+
500: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2090
|
+
/**
|
|
2091
|
+
* Server Error
|
|
2092
|
+
*/
|
|
2093
|
+
501: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2094
|
+
};
|
|
2095
|
+
};
|
|
2096
|
+
};
|
|
2097
|
+
'/api/crm-service/customs/{customsId}/address/{id}': {
|
|
2098
|
+
put: {
|
|
2099
|
+
req: PutApiCrmServiceCustomsByCustomsIdAddressByIdData;
|
|
2100
|
+
res: {
|
|
2101
|
+
/**
|
|
2102
|
+
* Success
|
|
2103
|
+
*/
|
|
2104
|
+
200: UniRefund_CRMService_AddressTypes_AddressTypeDto;
|
|
2105
|
+
/**
|
|
2106
|
+
* Bad Request
|
|
2107
|
+
*/
|
|
2108
|
+
400: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2109
|
+
/**
|
|
2110
|
+
* Unauthorized
|
|
2111
|
+
*/
|
|
2112
|
+
401: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2113
|
+
/**
|
|
2114
|
+
* Forbidden
|
|
2115
|
+
*/
|
|
2116
|
+
403: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2117
|
+
/**
|
|
2118
|
+
* Not Found
|
|
2119
|
+
*/
|
|
2120
|
+
404: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2121
|
+
/**
|
|
2122
|
+
* Server Error
|
|
2123
|
+
*/
|
|
2124
|
+
500: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2125
|
+
/**
|
|
2126
|
+
* Server Error
|
|
2127
|
+
*/
|
|
2128
|
+
501: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2129
|
+
};
|
|
2130
|
+
};
|
|
2131
|
+
};
|
|
2132
|
+
'/api/crm-service/customs/{customsId}/email/{id}': {
|
|
2133
|
+
put: {
|
|
2134
|
+
req: PutApiCrmServiceCustomsByCustomsIdEmailByIdData;
|
|
2135
|
+
res: {
|
|
2136
|
+
/**
|
|
2137
|
+
* Success
|
|
2138
|
+
*/
|
|
2139
|
+
200: UniRefund_CRMService_EmailCommonDatas_EmailCommonDataDto;
|
|
2140
|
+
/**
|
|
2141
|
+
* Bad Request
|
|
2142
|
+
*/
|
|
2143
|
+
400: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2144
|
+
/**
|
|
2145
|
+
* Unauthorized
|
|
2146
|
+
*/
|
|
2147
|
+
401: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2148
|
+
/**
|
|
2149
|
+
* Forbidden
|
|
2150
|
+
*/
|
|
2151
|
+
403: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2152
|
+
/**
|
|
2153
|
+
* Not Found
|
|
2154
|
+
*/
|
|
2155
|
+
404: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2156
|
+
/**
|
|
2157
|
+
* Server Error
|
|
2158
|
+
*/
|
|
2159
|
+
500: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2160
|
+
/**
|
|
2161
|
+
* Server Error
|
|
2162
|
+
*/
|
|
2163
|
+
501: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2164
|
+
};
|
|
2165
|
+
};
|
|
2166
|
+
};
|
|
1945
2167
|
'/api/crm-service/emails': {
|
|
1946
2168
|
get: {
|
|
1947
2169
|
req: GetApiCrmServiceEmailsData;
|
|
@@ -2494,14 +2716,14 @@ export type $OpenApiTs = {
|
|
|
2494
2716
|
};
|
|
2495
2717
|
};
|
|
2496
2718
|
};
|
|
2497
|
-
'/api/crm-service/
|
|
2498
|
-
|
|
2499
|
-
req:
|
|
2719
|
+
'/api/crm-service/merchants/{merchantId}/telephone/{id}': {
|
|
2720
|
+
put: {
|
|
2721
|
+
req: PutApiCrmServiceMerchantsByMerchantIdTelephoneByIdData;
|
|
2500
2722
|
res: {
|
|
2501
2723
|
/**
|
|
2502
2724
|
* Success
|
|
2503
2725
|
*/
|
|
2504
|
-
200:
|
|
2726
|
+
200: UniRefund_CRMService_TelephoneTypes_TelephoneTypeDto;
|
|
2505
2727
|
/**
|
|
2506
2728
|
* Bad Request
|
|
2507
2729
|
*/
|
|
@@ -2529,14 +2751,14 @@ export type $OpenApiTs = {
|
|
|
2529
2751
|
};
|
|
2530
2752
|
};
|
|
2531
2753
|
};
|
|
2532
|
-
'/api/crm-service/
|
|
2533
|
-
|
|
2534
|
-
req:
|
|
2754
|
+
'/api/crm-service/merchants/{merchantId}/address/{id}': {
|
|
2755
|
+
put: {
|
|
2756
|
+
req: PutApiCrmServiceMerchantsByMerchantIdAddressByIdData;
|
|
2535
2757
|
res: {
|
|
2536
2758
|
/**
|
|
2537
2759
|
* Success
|
|
2538
2760
|
*/
|
|
2539
|
-
200:
|
|
2761
|
+
200: UniRefund_CRMService_AddressTypes_AddressTypeDto;
|
|
2540
2762
|
/**
|
|
2541
2763
|
* Bad Request
|
|
2542
2764
|
*/
|
|
@@ -2564,14 +2786,14 @@ export type $OpenApiTs = {
|
|
|
2564
2786
|
};
|
|
2565
2787
|
};
|
|
2566
2788
|
};
|
|
2567
|
-
'/api/crm-service/
|
|
2568
|
-
|
|
2569
|
-
req:
|
|
2789
|
+
'/api/crm-service/merchants/{merchantId}/email/{id}': {
|
|
2790
|
+
put: {
|
|
2791
|
+
req: PutApiCrmServiceMerchantsByMerchantIdEmailByIdData;
|
|
2570
2792
|
res: {
|
|
2571
2793
|
/**
|
|
2572
2794
|
* Success
|
|
2573
2795
|
*/
|
|
2574
|
-
200:
|
|
2796
|
+
200: UniRefund_CRMService_EmailCommonDatas_EmailCommonDataDto;
|
|
2575
2797
|
/**
|
|
2576
2798
|
* Bad Request
|
|
2577
2799
|
*/
|
|
@@ -2599,14 +2821,14 @@ export type $OpenApiTs = {
|
|
|
2599
2821
|
};
|
|
2600
2822
|
};
|
|
2601
2823
|
};
|
|
2602
|
-
'/api/crm-service/
|
|
2603
|
-
|
|
2604
|
-
req:
|
|
2824
|
+
'/api/crm-service/organizations/with-components': {
|
|
2825
|
+
post: {
|
|
2826
|
+
req: PostApiCrmServiceOrganizationsWithComponentsData;
|
|
2605
2827
|
res: {
|
|
2606
2828
|
/**
|
|
2607
2829
|
* Success
|
|
2608
2830
|
*/
|
|
2609
|
-
200:
|
|
2831
|
+
200: unknown;
|
|
2610
2832
|
/**
|
|
2611
2833
|
* Bad Request
|
|
2612
2834
|
*/
|
|
@@ -2634,14 +2856,14 @@ export type $OpenApiTs = {
|
|
|
2634
2856
|
};
|
|
2635
2857
|
};
|
|
2636
2858
|
};
|
|
2637
|
-
'/api/crm-service/
|
|
2638
|
-
|
|
2639
|
-
req:
|
|
2859
|
+
'/api/crm-service/organizations': {
|
|
2860
|
+
get: {
|
|
2861
|
+
req: GetApiCrmServiceOrganizationsData;
|
|
2640
2862
|
res: {
|
|
2641
2863
|
/**
|
|
2642
2864
|
* Success
|
|
2643
2865
|
*/
|
|
2644
|
-
200:
|
|
2866
|
+
200: Volo_Abp_Application_Dtos_PagedResultDto_1;
|
|
2645
2867
|
/**
|
|
2646
2868
|
* Bad Request
|
|
2647
2869
|
*/
|
|
@@ -2669,14 +2891,14 @@ export type $OpenApiTs = {
|
|
|
2669
2891
|
};
|
|
2670
2892
|
};
|
|
2671
2893
|
};
|
|
2672
|
-
'/api/crm-service/refund-points
|
|
2673
|
-
|
|
2674
|
-
req:
|
|
2894
|
+
'/api/crm-service/refund-points': {
|
|
2895
|
+
get: {
|
|
2896
|
+
req: GetApiCrmServiceRefundPointsData;
|
|
2675
2897
|
res: {
|
|
2676
2898
|
/**
|
|
2677
2899
|
* Success
|
|
2678
2900
|
*/
|
|
2679
|
-
200:
|
|
2901
|
+
200: Volo_Abp_Application_Dtos_PagedResultDto_1;
|
|
2680
2902
|
/**
|
|
2681
2903
|
* Bad Request
|
|
2682
2904
|
*/
|
|
@@ -2704,14 +2926,14 @@ export type $OpenApiTs = {
|
|
|
2704
2926
|
};
|
|
2705
2927
|
};
|
|
2706
2928
|
};
|
|
2707
|
-
'/api/crm-service/refund-points/{
|
|
2708
|
-
|
|
2709
|
-
req:
|
|
2929
|
+
'/api/crm-service/refund-points/detail/{id}': {
|
|
2930
|
+
get: {
|
|
2931
|
+
req: GetApiCrmServiceRefundPointsDetailByIdData;
|
|
2710
2932
|
res: {
|
|
2711
2933
|
/**
|
|
2712
2934
|
* Success
|
|
2713
2935
|
*/
|
|
2714
|
-
200:
|
|
2936
|
+
200: UniRefund_CRMService_RefundPoints_RefundPointDto;
|
|
2715
2937
|
/**
|
|
2716
2938
|
* Bad Request
|
|
2717
2939
|
*/
|
|
@@ -2738,13 +2960,15 @@ export type $OpenApiTs = {
|
|
|
2738
2960
|
501: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2739
2961
|
};
|
|
2740
2962
|
};
|
|
2741
|
-
|
|
2742
|
-
|
|
2963
|
+
};
|
|
2964
|
+
'/api/crm-service/refund-points/with-components': {
|
|
2965
|
+
post: {
|
|
2966
|
+
req: PostApiCrmServiceRefundPointsWithComponentsData;
|
|
2743
2967
|
res: {
|
|
2744
2968
|
/**
|
|
2745
2969
|
* Success
|
|
2746
2970
|
*/
|
|
2747
|
-
200:
|
|
2971
|
+
200: unknown;
|
|
2748
2972
|
/**
|
|
2749
2973
|
* Bad Request
|
|
2750
2974
|
*/
|
|
@@ -2772,9 +2996,9 @@ export type $OpenApiTs = {
|
|
|
2772
2996
|
};
|
|
2773
2997
|
};
|
|
2774
2998
|
};
|
|
2775
|
-
'/api/crm-service/refund-points/{id}
|
|
2776
|
-
|
|
2777
|
-
req:
|
|
2999
|
+
'/api/crm-service/refund-points/with-components/{id}': {
|
|
3000
|
+
delete: {
|
|
3001
|
+
req: DeleteApiCrmServiceRefundPointsWithComponentsByIdData;
|
|
2778
3002
|
res: {
|
|
2779
3003
|
/**
|
|
2780
3004
|
* Success
|
|
@@ -2807,8 +3031,216 @@ export type $OpenApiTs = {
|
|
|
2807
3031
|
};
|
|
2808
3032
|
};
|
|
2809
3033
|
};
|
|
2810
|
-
'/api/crm-service/
|
|
2811
|
-
|
|
3034
|
+
'/api/crm-service/refund-points/{refundPointId}/affiliations': {
|
|
3035
|
+
post: {
|
|
3036
|
+
req: PostApiCrmServiceRefundPointsByRefundPointIdAffiliationsData;
|
|
3037
|
+
res: {
|
|
3038
|
+
/**
|
|
3039
|
+
* Success
|
|
3040
|
+
*/
|
|
3041
|
+
200: unknown;
|
|
3042
|
+
/**
|
|
3043
|
+
* Bad Request
|
|
3044
|
+
*/
|
|
3045
|
+
400: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
3046
|
+
/**
|
|
3047
|
+
* Unauthorized
|
|
3048
|
+
*/
|
|
3049
|
+
401: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
3050
|
+
/**
|
|
3051
|
+
* Forbidden
|
|
3052
|
+
*/
|
|
3053
|
+
403: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
3054
|
+
/**
|
|
3055
|
+
* Not Found
|
|
3056
|
+
*/
|
|
3057
|
+
404: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
3058
|
+
/**
|
|
3059
|
+
* Server Error
|
|
3060
|
+
*/
|
|
3061
|
+
500: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
3062
|
+
/**
|
|
3063
|
+
* Server Error
|
|
3064
|
+
*/
|
|
3065
|
+
501: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
3066
|
+
};
|
|
3067
|
+
};
|
|
3068
|
+
get: {
|
|
3069
|
+
req: GetApiCrmServiceRefundPointsByRefundPointIdAffiliationsData;
|
|
3070
|
+
res: {
|
|
3071
|
+
/**
|
|
3072
|
+
* Success
|
|
3073
|
+
*/
|
|
3074
|
+
200: Volo_Abp_Application_Dtos_PagedResultDto_1;
|
|
3075
|
+
/**
|
|
3076
|
+
* Bad Request
|
|
3077
|
+
*/
|
|
3078
|
+
400: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
3079
|
+
/**
|
|
3080
|
+
* Unauthorized
|
|
3081
|
+
*/
|
|
3082
|
+
401: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
3083
|
+
/**
|
|
3084
|
+
* Forbidden
|
|
3085
|
+
*/
|
|
3086
|
+
403: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
3087
|
+
/**
|
|
3088
|
+
* Not Found
|
|
3089
|
+
*/
|
|
3090
|
+
404: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
3091
|
+
/**
|
|
3092
|
+
* Server Error
|
|
3093
|
+
*/
|
|
3094
|
+
500: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
3095
|
+
/**
|
|
3096
|
+
* Server Error
|
|
3097
|
+
*/
|
|
3098
|
+
501: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
3099
|
+
};
|
|
3100
|
+
};
|
|
3101
|
+
};
|
|
3102
|
+
'/api/crm-service/refund-points/{refundPointId}/organization/{organizationId}': {
|
|
3103
|
+
put: {
|
|
3104
|
+
req: PutApiCrmServiceRefundPointsByRefundPointIdOrganizationByOrganizationIdData;
|
|
3105
|
+
res: {
|
|
3106
|
+
/**
|
|
3107
|
+
* Success
|
|
3108
|
+
*/
|
|
3109
|
+
200: unknown;
|
|
3110
|
+
/**
|
|
3111
|
+
* Bad Request
|
|
3112
|
+
*/
|
|
3113
|
+
400: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
3114
|
+
/**
|
|
3115
|
+
* Unauthorized
|
|
3116
|
+
*/
|
|
3117
|
+
401: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
3118
|
+
/**
|
|
3119
|
+
* Forbidden
|
|
3120
|
+
*/
|
|
3121
|
+
403: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
3122
|
+
/**
|
|
3123
|
+
* Not Found
|
|
3124
|
+
*/
|
|
3125
|
+
404: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
3126
|
+
/**
|
|
3127
|
+
* Server Error
|
|
3128
|
+
*/
|
|
3129
|
+
500: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
3130
|
+
/**
|
|
3131
|
+
* Server Error
|
|
3132
|
+
*/
|
|
3133
|
+
501: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
3134
|
+
};
|
|
3135
|
+
};
|
|
3136
|
+
};
|
|
3137
|
+
'/api/crm-service/refund-points/{refundPointId}/telephone/{id}': {
|
|
3138
|
+
put: {
|
|
3139
|
+
req: PutApiCrmServiceRefundPointsByRefundPointIdTelephoneByIdData;
|
|
3140
|
+
res: {
|
|
3141
|
+
/**
|
|
3142
|
+
* Success
|
|
3143
|
+
*/
|
|
3144
|
+
200: UniRefund_CRMService_TelephoneTypes_TelephoneTypeDto;
|
|
3145
|
+
/**
|
|
3146
|
+
* Bad Request
|
|
3147
|
+
*/
|
|
3148
|
+
400: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
3149
|
+
/**
|
|
3150
|
+
* Unauthorized
|
|
3151
|
+
*/
|
|
3152
|
+
401: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
3153
|
+
/**
|
|
3154
|
+
* Forbidden
|
|
3155
|
+
*/
|
|
3156
|
+
403: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
3157
|
+
/**
|
|
3158
|
+
* Not Found
|
|
3159
|
+
*/
|
|
3160
|
+
404: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
3161
|
+
/**
|
|
3162
|
+
* Server Error
|
|
3163
|
+
*/
|
|
3164
|
+
500: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
3165
|
+
/**
|
|
3166
|
+
* Server Error
|
|
3167
|
+
*/
|
|
3168
|
+
501: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
3169
|
+
};
|
|
3170
|
+
};
|
|
3171
|
+
};
|
|
3172
|
+
'/api/crm-service/refund-points/{refundPointId}/address/{id}': {
|
|
3173
|
+
put: {
|
|
3174
|
+
req: PutApiCrmServiceRefundPointsByRefundPointIdAddressByIdData;
|
|
3175
|
+
res: {
|
|
3176
|
+
/**
|
|
3177
|
+
* Success
|
|
3178
|
+
*/
|
|
3179
|
+
200: UniRefund_CRMService_AddressTypes_AddressTypeDto;
|
|
3180
|
+
/**
|
|
3181
|
+
* Bad Request
|
|
3182
|
+
*/
|
|
3183
|
+
400: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
3184
|
+
/**
|
|
3185
|
+
* Unauthorized
|
|
3186
|
+
*/
|
|
3187
|
+
401: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
3188
|
+
/**
|
|
3189
|
+
* Forbidden
|
|
3190
|
+
*/
|
|
3191
|
+
403: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
3192
|
+
/**
|
|
3193
|
+
* Not Found
|
|
3194
|
+
*/
|
|
3195
|
+
404: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
3196
|
+
/**
|
|
3197
|
+
* Server Error
|
|
3198
|
+
*/
|
|
3199
|
+
500: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
3200
|
+
/**
|
|
3201
|
+
* Server Error
|
|
3202
|
+
*/
|
|
3203
|
+
501: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
3204
|
+
};
|
|
3205
|
+
};
|
|
3206
|
+
};
|
|
3207
|
+
'/api/crm-service/refund-points/{refundPointId}/email/{id}': {
|
|
3208
|
+
put: {
|
|
3209
|
+
req: PutApiCrmServiceRefundPointsByRefundPointIdEmailByIdData;
|
|
3210
|
+
res: {
|
|
3211
|
+
/**
|
|
3212
|
+
* Success
|
|
3213
|
+
*/
|
|
3214
|
+
200: UniRefund_CRMService_EmailCommonDatas_EmailCommonDataDto;
|
|
3215
|
+
/**
|
|
3216
|
+
* Bad Request
|
|
3217
|
+
*/
|
|
3218
|
+
400: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
3219
|
+
/**
|
|
3220
|
+
* Unauthorized
|
|
3221
|
+
*/
|
|
3222
|
+
401: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
3223
|
+
/**
|
|
3224
|
+
* Forbidden
|
|
3225
|
+
*/
|
|
3226
|
+
403: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
3227
|
+
/**
|
|
3228
|
+
* Not Found
|
|
3229
|
+
*/
|
|
3230
|
+
404: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
3231
|
+
/**
|
|
3232
|
+
* Server Error
|
|
3233
|
+
*/
|
|
3234
|
+
500: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
3235
|
+
/**
|
|
3236
|
+
* Server Error
|
|
3237
|
+
*/
|
|
3238
|
+
501: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
3239
|
+
};
|
|
3240
|
+
};
|
|
3241
|
+
};
|
|
3242
|
+
'/api/crm-service/tax-frees': {
|
|
3243
|
+
get: {
|
|
2812
3244
|
req: GetApiCrmServiceTaxFreesData;
|
|
2813
3245
|
res: {
|
|
2814
3246
|
/**
|
|
@@ -3050,6 +3482,111 @@ export type $OpenApiTs = {
|
|
|
3050
3482
|
};
|
|
3051
3483
|
};
|
|
3052
3484
|
};
|
|
3485
|
+
'/api/crm-service/tax-frees/{taxFreeId}/telephone/{id}': {
|
|
3486
|
+
put: {
|
|
3487
|
+
req: PutApiCrmServiceTaxFreesByTaxFreeIdTelephoneByIdData;
|
|
3488
|
+
res: {
|
|
3489
|
+
/**
|
|
3490
|
+
* Success
|
|
3491
|
+
*/
|
|
3492
|
+
200: UniRefund_CRMService_TelephoneTypes_TelephoneTypeDto;
|
|
3493
|
+
/**
|
|
3494
|
+
* Bad Request
|
|
3495
|
+
*/
|
|
3496
|
+
400: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
3497
|
+
/**
|
|
3498
|
+
* Unauthorized
|
|
3499
|
+
*/
|
|
3500
|
+
401: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
3501
|
+
/**
|
|
3502
|
+
* Forbidden
|
|
3503
|
+
*/
|
|
3504
|
+
403: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
3505
|
+
/**
|
|
3506
|
+
* Not Found
|
|
3507
|
+
*/
|
|
3508
|
+
404: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
3509
|
+
/**
|
|
3510
|
+
* Server Error
|
|
3511
|
+
*/
|
|
3512
|
+
500: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
3513
|
+
/**
|
|
3514
|
+
* Server Error
|
|
3515
|
+
*/
|
|
3516
|
+
501: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
3517
|
+
};
|
|
3518
|
+
};
|
|
3519
|
+
};
|
|
3520
|
+
'/api/crm-service/tax-frees/{taxFreeId}/address/{id}': {
|
|
3521
|
+
put: {
|
|
3522
|
+
req: PutApiCrmServiceTaxFreesByTaxFreeIdAddressByIdData;
|
|
3523
|
+
res: {
|
|
3524
|
+
/**
|
|
3525
|
+
* Success
|
|
3526
|
+
*/
|
|
3527
|
+
200: UniRefund_CRMService_AddressTypes_AddressTypeDto;
|
|
3528
|
+
/**
|
|
3529
|
+
* Bad Request
|
|
3530
|
+
*/
|
|
3531
|
+
400: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
3532
|
+
/**
|
|
3533
|
+
* Unauthorized
|
|
3534
|
+
*/
|
|
3535
|
+
401: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
3536
|
+
/**
|
|
3537
|
+
* Forbidden
|
|
3538
|
+
*/
|
|
3539
|
+
403: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
3540
|
+
/**
|
|
3541
|
+
* Not Found
|
|
3542
|
+
*/
|
|
3543
|
+
404: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
3544
|
+
/**
|
|
3545
|
+
* Server Error
|
|
3546
|
+
*/
|
|
3547
|
+
500: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
3548
|
+
/**
|
|
3549
|
+
* Server Error
|
|
3550
|
+
*/
|
|
3551
|
+
501: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
3552
|
+
};
|
|
3553
|
+
};
|
|
3554
|
+
};
|
|
3555
|
+
'/api/crm-service/tax-frees/{taxFreeId}/email/{id}': {
|
|
3556
|
+
put: {
|
|
3557
|
+
req: PutApiCrmServiceTaxFreesByTaxFreeIdEmailByIdData;
|
|
3558
|
+
res: {
|
|
3559
|
+
/**
|
|
3560
|
+
* Success
|
|
3561
|
+
*/
|
|
3562
|
+
200: UniRefund_CRMService_EmailCommonDatas_EmailCommonDataDto;
|
|
3563
|
+
/**
|
|
3564
|
+
* Bad Request
|
|
3565
|
+
*/
|
|
3566
|
+
400: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
3567
|
+
/**
|
|
3568
|
+
* Unauthorized
|
|
3569
|
+
*/
|
|
3570
|
+
401: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
3571
|
+
/**
|
|
3572
|
+
* Forbidden
|
|
3573
|
+
*/
|
|
3574
|
+
403: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
3575
|
+
/**
|
|
3576
|
+
* Not Found
|
|
3577
|
+
*/
|
|
3578
|
+
404: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
3579
|
+
/**
|
|
3580
|
+
* Server Error
|
|
3581
|
+
*/
|
|
3582
|
+
500: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
3583
|
+
/**
|
|
3584
|
+
* Server Error
|
|
3585
|
+
*/
|
|
3586
|
+
501: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
3587
|
+
};
|
|
3588
|
+
};
|
|
3589
|
+
};
|
|
3053
3590
|
'/api/crm-service/tax-offices': {
|
|
3054
3591
|
get: {
|
|
3055
3592
|
req: GetApiCrmServiceTaxOfficesData;
|
|
@@ -3258,9 +3795,9 @@ export type $OpenApiTs = {
|
|
|
3258
3795
|
};
|
|
3259
3796
|
};
|
|
3260
3797
|
};
|
|
3261
|
-
'/api/crm-service/tax-offices/{
|
|
3798
|
+
'/api/crm-service/tax-offices/{taxOfficeId}/organization/{organizationId}': {
|
|
3262
3799
|
put: {
|
|
3263
|
-
req:
|
|
3800
|
+
req: PutApiCrmServiceTaxOfficesByTaxOfficeIdOrganizationByOrganizationIdData;
|
|
3264
3801
|
res: {
|
|
3265
3802
|
/**
|
|
3266
3803
|
* Success
|
|
@@ -3293,6 +3830,111 @@ export type $OpenApiTs = {
|
|
|
3293
3830
|
};
|
|
3294
3831
|
};
|
|
3295
3832
|
};
|
|
3833
|
+
'/api/crm-service/tax-offices/{taxOfficeId}/telephone/{id}': {
|
|
3834
|
+
put: {
|
|
3835
|
+
req: PutApiCrmServiceTaxOfficesByTaxOfficeIdTelephoneByIdData;
|
|
3836
|
+
res: {
|
|
3837
|
+
/**
|
|
3838
|
+
* Success
|
|
3839
|
+
*/
|
|
3840
|
+
200: UniRefund_CRMService_TelephoneTypes_TelephoneTypeDto;
|
|
3841
|
+
/**
|
|
3842
|
+
* Bad Request
|
|
3843
|
+
*/
|
|
3844
|
+
400: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
3845
|
+
/**
|
|
3846
|
+
* Unauthorized
|
|
3847
|
+
*/
|
|
3848
|
+
401: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
3849
|
+
/**
|
|
3850
|
+
* Forbidden
|
|
3851
|
+
*/
|
|
3852
|
+
403: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
3853
|
+
/**
|
|
3854
|
+
* Not Found
|
|
3855
|
+
*/
|
|
3856
|
+
404: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
3857
|
+
/**
|
|
3858
|
+
* Server Error
|
|
3859
|
+
*/
|
|
3860
|
+
500: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
3861
|
+
/**
|
|
3862
|
+
* Server Error
|
|
3863
|
+
*/
|
|
3864
|
+
501: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
3865
|
+
};
|
|
3866
|
+
};
|
|
3867
|
+
};
|
|
3868
|
+
'/api/crm-service/tax-offices/{taxOfficeId}/address/{id}': {
|
|
3869
|
+
put: {
|
|
3870
|
+
req: PutApiCrmServiceTaxOfficesByTaxOfficeIdAddressByIdData;
|
|
3871
|
+
res: {
|
|
3872
|
+
/**
|
|
3873
|
+
* Success
|
|
3874
|
+
*/
|
|
3875
|
+
200: UniRefund_CRMService_AddressTypes_AddressTypeDto;
|
|
3876
|
+
/**
|
|
3877
|
+
* Bad Request
|
|
3878
|
+
*/
|
|
3879
|
+
400: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
3880
|
+
/**
|
|
3881
|
+
* Unauthorized
|
|
3882
|
+
*/
|
|
3883
|
+
401: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
3884
|
+
/**
|
|
3885
|
+
* Forbidden
|
|
3886
|
+
*/
|
|
3887
|
+
403: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
3888
|
+
/**
|
|
3889
|
+
* Not Found
|
|
3890
|
+
*/
|
|
3891
|
+
404: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
3892
|
+
/**
|
|
3893
|
+
* Server Error
|
|
3894
|
+
*/
|
|
3895
|
+
500: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
3896
|
+
/**
|
|
3897
|
+
* Server Error
|
|
3898
|
+
*/
|
|
3899
|
+
501: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
3900
|
+
};
|
|
3901
|
+
};
|
|
3902
|
+
};
|
|
3903
|
+
'/api/crm-service/tax-offices/{taxOfficeId}/email/{id}': {
|
|
3904
|
+
put: {
|
|
3905
|
+
req: PutApiCrmServiceTaxOfficesByTaxOfficeIdEmailByIdData;
|
|
3906
|
+
res: {
|
|
3907
|
+
/**
|
|
3908
|
+
* Success
|
|
3909
|
+
*/
|
|
3910
|
+
200: UniRefund_CRMService_EmailCommonDatas_EmailCommonDataDto;
|
|
3911
|
+
/**
|
|
3912
|
+
* Bad Request
|
|
3913
|
+
*/
|
|
3914
|
+
400: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
3915
|
+
/**
|
|
3916
|
+
* Unauthorized
|
|
3917
|
+
*/
|
|
3918
|
+
401: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
3919
|
+
/**
|
|
3920
|
+
* Forbidden
|
|
3921
|
+
*/
|
|
3922
|
+
403: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
3923
|
+
/**
|
|
3924
|
+
* Not Found
|
|
3925
|
+
*/
|
|
3926
|
+
404: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
3927
|
+
/**
|
|
3928
|
+
* Server Error
|
|
3929
|
+
*/
|
|
3930
|
+
500: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
3931
|
+
/**
|
|
3932
|
+
* Server Error
|
|
3933
|
+
*/
|
|
3934
|
+
501: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
3935
|
+
};
|
|
3936
|
+
};
|
|
3937
|
+
};
|
|
3296
3938
|
'/api/crm-service/telephones': {
|
|
3297
3939
|
get: {
|
|
3298
3940
|
req: GetApiCrmServiceTelephonesData;
|