@ayasofyazilim/saas 0.0.35 → 0.0.37
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/AccountServiceClient.ts +65 -65
- 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/schemas.gen.ts +5103 -5103
- package/AccountService/services.gen.ts +1452 -1452
- package/AccountService/types.gen.ts +9896 -9896
- package/AdministrationService/AdministrationServiceClient.ts +74 -74
- 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/AdministrationService/index.ts +8 -8
- package/AdministrationService/schemas.gen.ts +5897 -5897
- package/AdministrationService/services.gen.ts +1332 -1332
- package/AdministrationService/types.gen.ts +9024 -9024
- 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/schemas.gen.ts +12444 -12444
- package/CRMService/schemas.gen.ts +94 -55
- package/CRMService/services.gen.ts +472 -9
- package/CRMService/types.gen.ts +795 -101
- package/ContractService/ContractServiceClient.ts +53 -53
- package/ContractService/core/ApiError.ts +20 -20
- package/ContractService/core/ApiRequestOptions.ts +12 -12
- package/ContractService/core/ApiResult.ts +6 -6
- package/ContractService/core/BaseHttpRequest.ts +9 -9
- package/ContractService/core/CancelablePromise.ts +125 -125
- package/ContractService/core/FetchHttpRequest.ts +21 -21
- package/ContractService/core/OpenAPI.ts +55 -55
- package/ContractService/core/request.ts +340 -340
- package/ContractService/index.ts +8 -8
- package/ContractService/schemas.gen.ts +10943 -10947
- package/ContractService/services.gen.ts +1720 -1716
- package/ContractService/types.gen.ts +3691 -3691
- package/FundraiserService/FundraiserServiceClient.ts +47 -47
- package/FundraiserService/core/ApiError.ts +20 -20
- package/FundraiserService/core/ApiResult.ts +6 -6
- package/FundraiserService/core/CancelablePromise.ts +125 -125
- package/FundraiserService/index.ts +8 -8
- package/FundraiserService/schemas.gen.ts +11548 -11548
- package/FundraiserService/services.gen.ts +627 -627
- package/IdentityService/IdentityServiceClient.ts +77 -77
- 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/schemas.gen.ts +6573 -6573
- package/IdentityService/services.gen.ts +2839 -2839
- package/IdentityService/types.gen.ts +17446 -17446
- 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/schemas.gen.ts +5147 -5147
- 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/schemas.gen.ts +5278 -5278
- package/SaasService/services.gen.ts +1325 -1325
- package/SaasService/types.gen.ts +9052 -9052
- package/SettingService/SettingServiceClient.ts +62 -62
- package/SettingService/index.ts +8 -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
|
|
|
@@ -292,6 +290,13 @@ export type UniRefund_CRMService_Merchants_MerchantDto = {
|
|
|
292
290
|
affiliations?: Array<UniRefund_CRMService_AffiliationTypes_AffiliationTypeDto> | null;
|
|
293
291
|
};
|
|
294
292
|
|
|
293
|
+
export type UniRefund_CRMService_Merchants_MerchantInfoDto = {
|
|
294
|
+
id?: string;
|
|
295
|
+
vatNumber?: string | null;
|
|
296
|
+
countryCode?: string | null;
|
|
297
|
+
branchId?: string | null;
|
|
298
|
+
};
|
|
299
|
+
|
|
295
300
|
export type UniRefund_CRMService_Merchants_MerchantProfileDto = {
|
|
296
301
|
id?: string;
|
|
297
302
|
name?: string | null;
|
|
@@ -343,6 +348,8 @@ export type UniRefund_CRMService_Organizations_CreateOrganizationDto = {
|
|
|
343
348
|
taxpayerId: string;
|
|
344
349
|
legalStatusCode: string;
|
|
345
350
|
customerNumber?: string | null;
|
|
351
|
+
branchId?: string | null;
|
|
352
|
+
parentCompanyId?: string | null;
|
|
346
353
|
contactInformations?: Array<UniRefund_CRMService_ContactInformationTypes_CreateContactInformationTypeDto> | null;
|
|
347
354
|
};
|
|
348
355
|
|
|
@@ -361,7 +368,6 @@ export type UniRefund_CRMService_Organizations_OrganizationDto = {
|
|
|
361
368
|
legalStatusCode?: string | null;
|
|
362
369
|
parentCompanyId?: string | null;
|
|
363
370
|
customerNumber?: string | null;
|
|
364
|
-
subCompanies?: Array<UniRefund_CRMService_Organizations_OrganizationDto> | null;
|
|
365
371
|
contactInformations?: Array<UniRefund_CRMService_ContactInformationTypes_ContactInformationTypeDto> | null;
|
|
366
372
|
};
|
|
367
373
|
|
|
@@ -381,6 +387,7 @@ export type UniRefund_CRMService_Organizations_UpdateOrganizationDto = {
|
|
|
381
387
|
[key: string]: unknown;
|
|
382
388
|
} | null;
|
|
383
389
|
name: string;
|
|
390
|
+
parentCompanyId?: string;
|
|
384
391
|
};
|
|
385
392
|
|
|
386
393
|
export type UniRefund_CRMService_PersonalSummaries_CreatePersonalSummaryDto = {
|
|
@@ -528,11 +535,10 @@ export type UniRefund_CRMService_TelephoneTypes_UpdateTelephoneTypeDto = {
|
|
|
528
535
|
readonly extraProperties?: {
|
|
529
536
|
[key: string]: unknown;
|
|
530
537
|
} | null;
|
|
531
|
-
id: string;
|
|
532
538
|
areaCode: string;
|
|
533
539
|
localNumber: string;
|
|
534
540
|
ituCountryCode: string;
|
|
535
|
-
primaryFlag
|
|
541
|
+
primaryFlag?: boolean;
|
|
536
542
|
typeCode: UniRefund_CRMService_Enums_TelephoneTypeCode;
|
|
537
543
|
};
|
|
538
544
|
|
|
@@ -1103,6 +1109,30 @@ export type PutApiCrmServiceCustomsByIdOrganizationByOrganizationIdData = {
|
|
|
1103
1109
|
|
|
1104
1110
|
export type PutApiCrmServiceCustomsByIdOrganizationByOrganizationIdResponse = unknown;
|
|
1105
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
|
+
|
|
1106
1136
|
export type GetApiCrmServiceEmailsData = {
|
|
1107
1137
|
maxResultCount?: number;
|
|
1108
1138
|
skipCount?: number;
|
|
@@ -1160,6 +1190,14 @@ export type GetApiCrmServiceMerchantsData = {
|
|
|
1160
1190
|
|
|
1161
1191
|
export type GetApiCrmServiceMerchantsResponse = Volo_Abp_Application_Dtos_PagedResultDto_1;
|
|
1162
1192
|
|
|
1193
|
+
export type GetApiCrmServiceMerchantsInfoData = {
|
|
1194
|
+
branchId?: string;
|
|
1195
|
+
countryCode?: string;
|
|
1196
|
+
vatNumber?: string;
|
|
1197
|
+
};
|
|
1198
|
+
|
|
1199
|
+
export type GetApiCrmServiceMerchantsInfoResponse = UniRefund_CRMService_Merchants_MerchantInfoDto;
|
|
1200
|
+
|
|
1163
1201
|
export type GetApiCrmServiceMerchantsDetailByIdData = {
|
|
1164
1202
|
id: string;
|
|
1165
1203
|
};
|
|
@@ -1208,6 +1246,30 @@ export type PostApiCrmServiceMerchantsBulkProductGroupMerchantData = {
|
|
|
1208
1246
|
|
|
1209
1247
|
export type PostApiCrmServiceMerchantsBulkProductGroupMerchantResponse = unknown;
|
|
1210
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
|
+
|
|
1211
1273
|
export type PostApiCrmServiceOrganizationsWithComponentsData = {
|
|
1212
1274
|
requestBody?: UniRefund_CRMService_Organizations_CreateOrganizationDto;
|
|
1213
1275
|
};
|
|
@@ -1266,13 +1328,37 @@ export type GetApiCrmServiceRefundPointsByRefundPointIdAffiliationsData = {
|
|
|
1266
1328
|
|
|
1267
1329
|
export type GetApiCrmServiceRefundPointsByRefundPointIdAffiliationsResponse = Volo_Abp_Application_Dtos_PagedResultDto_1;
|
|
1268
1330
|
|
|
1269
|
-
export type
|
|
1270
|
-
id: string;
|
|
1331
|
+
export type PutApiCrmServiceRefundPointsByRefundPointIdOrganizationByOrganizationIdData = {
|
|
1271
1332
|
organizationId: string;
|
|
1333
|
+
refundPointId: string;
|
|
1272
1334
|
requestBody?: UniRefund_CRMService_Organizations_UpdateOrganizationDto;
|
|
1273
1335
|
};
|
|
1274
1336
|
|
|
1275
|
-
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;
|
|
1276
1362
|
|
|
1277
1363
|
export type GetApiCrmServiceTaxFreesData = {
|
|
1278
1364
|
maxResultCount?: number;
|
|
@@ -1324,6 +1410,30 @@ export type PutApiCrmServiceTaxFreesByIdOrganizationByOrganizationIdData = {
|
|
|
1324
1410
|
|
|
1325
1411
|
export type PutApiCrmServiceTaxFreesByIdOrganizationByOrganizationIdResponse = unknown;
|
|
1326
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
|
+
|
|
1327
1437
|
export type GetApiCrmServiceTaxOfficesData = {
|
|
1328
1438
|
maxResultCount?: number;
|
|
1329
1439
|
skipCount?: number;
|
|
@@ -1366,13 +1476,37 @@ export type GetApiCrmServiceTaxOfficesByTaxOfficesIdAffiliationsData = {
|
|
|
1366
1476
|
|
|
1367
1477
|
export type GetApiCrmServiceTaxOfficesByTaxOfficesIdAffiliationsResponse = Volo_Abp_Application_Dtos_PagedResultDto_1;
|
|
1368
1478
|
|
|
1369
|
-
export type
|
|
1370
|
-
id: string;
|
|
1479
|
+
export type PutApiCrmServiceTaxOfficesByTaxOfficeIdOrganizationByOrganizationIdData = {
|
|
1371
1480
|
organizationId: string;
|
|
1372
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;
|
|
1499
|
+
};
|
|
1500
|
+
|
|
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;
|
|
1373
1507
|
};
|
|
1374
1508
|
|
|
1375
|
-
export type
|
|
1509
|
+
export type PutApiCrmServiceTaxOfficesByTaxOfficeIdEmailByIdResponse = UniRefund_CRMService_EmailCommonDatas_EmailCommonDataDto;
|
|
1376
1510
|
|
|
1377
1511
|
export type GetApiCrmServiceTelephonesData = {
|
|
1378
1512
|
maxResultCount?: number;
|
|
@@ -1925,14 +2059,14 @@ export type $OpenApiTs = {
|
|
|
1925
2059
|
};
|
|
1926
2060
|
};
|
|
1927
2061
|
};
|
|
1928
|
-
'/api/crm-service/
|
|
1929
|
-
|
|
1930
|
-
req:
|
|
2062
|
+
'/api/crm-service/customs/{customsId}/telephone/{id}': {
|
|
2063
|
+
put: {
|
|
2064
|
+
req: PutApiCrmServiceCustomsByCustomsIdTelephoneByIdData;
|
|
1931
2065
|
res: {
|
|
1932
2066
|
/**
|
|
1933
2067
|
* Success
|
|
1934
2068
|
*/
|
|
1935
|
-
200:
|
|
2069
|
+
200: UniRefund_CRMService_TelephoneTypes_TelephoneTypeDto;
|
|
1936
2070
|
/**
|
|
1937
2071
|
* Bad Request
|
|
1938
2072
|
*/
|
|
@@ -1959,13 +2093,15 @@ export type $OpenApiTs = {
|
|
|
1959
2093
|
501: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
1960
2094
|
};
|
|
1961
2095
|
};
|
|
1962
|
-
|
|
1963
|
-
|
|
2096
|
+
};
|
|
2097
|
+
'/api/crm-service/customs/{customsId}/address/{id}': {
|
|
2098
|
+
put: {
|
|
2099
|
+
req: PutApiCrmServiceCustomsByCustomsIdAddressByIdData;
|
|
1964
2100
|
res: {
|
|
1965
2101
|
/**
|
|
1966
2102
|
* Success
|
|
1967
2103
|
*/
|
|
1968
|
-
200:
|
|
2104
|
+
200: UniRefund_CRMService_AddressTypes_AddressTypeDto;
|
|
1969
2105
|
/**
|
|
1970
2106
|
* Bad Request
|
|
1971
2107
|
*/
|
|
@@ -1993,9 +2129,9 @@ export type $OpenApiTs = {
|
|
|
1993
2129
|
};
|
|
1994
2130
|
};
|
|
1995
2131
|
};
|
|
1996
|
-
'/api/crm-service/
|
|
1997
|
-
|
|
1998
|
-
req:
|
|
2132
|
+
'/api/crm-service/customs/{customsId}/email/{id}': {
|
|
2133
|
+
put: {
|
|
2134
|
+
req: PutApiCrmServiceCustomsByCustomsIdEmailByIdData;
|
|
1999
2135
|
res: {
|
|
2000
2136
|
/**
|
|
2001
2137
|
* Success
|
|
@@ -2027,13 +2163,15 @@ export type $OpenApiTs = {
|
|
|
2027
2163
|
501: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2028
2164
|
};
|
|
2029
2165
|
};
|
|
2030
|
-
|
|
2031
|
-
|
|
2166
|
+
};
|
|
2167
|
+
'/api/crm-service/emails': {
|
|
2168
|
+
get: {
|
|
2169
|
+
req: GetApiCrmServiceEmailsData;
|
|
2032
2170
|
res: {
|
|
2033
2171
|
/**
|
|
2034
2172
|
* Success
|
|
2035
2173
|
*/
|
|
2036
|
-
200:
|
|
2174
|
+
200: Volo_Abp_Application_Dtos_PagedResultDto_1;
|
|
2037
2175
|
/**
|
|
2038
2176
|
* Bad Request
|
|
2039
2177
|
*/
|
|
@@ -2060,13 +2198,13 @@ export type $OpenApiTs = {
|
|
|
2060
2198
|
501: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2061
2199
|
};
|
|
2062
2200
|
};
|
|
2063
|
-
|
|
2064
|
-
req:
|
|
2201
|
+
post: {
|
|
2202
|
+
req: PostApiCrmServiceEmailsData;
|
|
2065
2203
|
res: {
|
|
2066
2204
|
/**
|
|
2067
2205
|
* Success
|
|
2068
2206
|
*/
|
|
2069
|
-
200:
|
|
2207
|
+
200: UniRefund_CRMService_EmailCommonDatas_EmailCommonDataDto;
|
|
2070
2208
|
/**
|
|
2071
2209
|
* Bad Request
|
|
2072
2210
|
*/
|
|
@@ -2094,14 +2232,14 @@ export type $OpenApiTs = {
|
|
|
2094
2232
|
};
|
|
2095
2233
|
};
|
|
2096
2234
|
};
|
|
2097
|
-
'/api/crm-service/
|
|
2098
|
-
|
|
2099
|
-
req:
|
|
2235
|
+
'/api/crm-service/emails/{id}': {
|
|
2236
|
+
get: {
|
|
2237
|
+
req: GetApiCrmServiceEmailsByIdData;
|
|
2100
2238
|
res: {
|
|
2101
2239
|
/**
|
|
2102
2240
|
* Success
|
|
2103
2241
|
*/
|
|
2104
|
-
200:
|
|
2242
|
+
200: UniRefund_CRMService_EmailCommonDatas_EmailCommonDataDto;
|
|
2105
2243
|
/**
|
|
2106
2244
|
* Bad Request
|
|
2107
2245
|
*/
|
|
@@ -2128,15 +2266,13 @@ export type $OpenApiTs = {
|
|
|
2128
2266
|
501: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2129
2267
|
};
|
|
2130
2268
|
};
|
|
2131
|
-
|
|
2132
|
-
|
|
2133
|
-
get: {
|
|
2134
|
-
req: GetApiCrmServiceIndividualsData;
|
|
2269
|
+
put: {
|
|
2270
|
+
req: PutApiCrmServiceEmailsByIdData;
|
|
2135
2271
|
res: {
|
|
2136
2272
|
/**
|
|
2137
2273
|
* Success
|
|
2138
2274
|
*/
|
|
2139
|
-
200:
|
|
2275
|
+
200: UniRefund_CRMService_EmailCommonDatas_EmailCommonDataDto;
|
|
2140
2276
|
/**
|
|
2141
2277
|
* Bad Request
|
|
2142
2278
|
*/
|
|
@@ -2163,15 +2299,13 @@ export type $OpenApiTs = {
|
|
|
2163
2299
|
501: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2164
2300
|
};
|
|
2165
2301
|
};
|
|
2166
|
-
|
|
2167
|
-
|
|
2168
|
-
get: {
|
|
2169
|
-
req: GetApiCrmServiceMerchantsData;
|
|
2302
|
+
delete: {
|
|
2303
|
+
req: DeleteApiCrmServiceEmailsByIdData;
|
|
2170
2304
|
res: {
|
|
2171
2305
|
/**
|
|
2172
2306
|
* Success
|
|
2173
2307
|
*/
|
|
2174
|
-
200:
|
|
2308
|
+
200: unknown;
|
|
2175
2309
|
/**
|
|
2176
2310
|
* Bad Request
|
|
2177
2311
|
*/
|
|
@@ -2199,14 +2333,14 @@ export type $OpenApiTs = {
|
|
|
2199
2333
|
};
|
|
2200
2334
|
};
|
|
2201
2335
|
};
|
|
2202
|
-
'/api/crm-service/
|
|
2203
|
-
|
|
2204
|
-
req:
|
|
2336
|
+
'/api/crm-service/individuals/with-components': {
|
|
2337
|
+
post: {
|
|
2338
|
+
req: PostApiCrmServiceIndividualsWithComponentsData;
|
|
2205
2339
|
res: {
|
|
2206
2340
|
/**
|
|
2207
2341
|
* Success
|
|
2208
2342
|
*/
|
|
2209
|
-
200:
|
|
2343
|
+
200: unknown;
|
|
2210
2344
|
/**
|
|
2211
2345
|
* Bad Request
|
|
2212
2346
|
*/
|
|
@@ -2234,14 +2368,14 @@ export type $OpenApiTs = {
|
|
|
2234
2368
|
};
|
|
2235
2369
|
};
|
|
2236
2370
|
};
|
|
2237
|
-
'/api/crm-service/
|
|
2238
|
-
|
|
2239
|
-
req:
|
|
2371
|
+
'/api/crm-service/individuals': {
|
|
2372
|
+
get: {
|
|
2373
|
+
req: GetApiCrmServiceIndividualsData;
|
|
2240
2374
|
res: {
|
|
2241
2375
|
/**
|
|
2242
2376
|
* Success
|
|
2243
2377
|
*/
|
|
2244
|
-
200:
|
|
2378
|
+
200: Volo_Abp_Application_Dtos_PagedResultDto_1;
|
|
2245
2379
|
/**
|
|
2246
2380
|
* Bad Request
|
|
2247
2381
|
*/
|
|
@@ -2269,14 +2403,14 @@ export type $OpenApiTs = {
|
|
|
2269
2403
|
};
|
|
2270
2404
|
};
|
|
2271
2405
|
};
|
|
2272
|
-
'/api/crm-service/merchants
|
|
2273
|
-
|
|
2274
|
-
req:
|
|
2406
|
+
'/api/crm-service/merchants': {
|
|
2407
|
+
get: {
|
|
2408
|
+
req: GetApiCrmServiceMerchantsData;
|
|
2275
2409
|
res: {
|
|
2276
2410
|
/**
|
|
2277
2411
|
* Success
|
|
2278
2412
|
*/
|
|
2279
|
-
200:
|
|
2413
|
+
200: Volo_Abp_Application_Dtos_PagedResultDto_1;
|
|
2280
2414
|
/**
|
|
2281
2415
|
* Bad Request
|
|
2282
2416
|
*/
|
|
@@ -2304,14 +2438,14 @@ export type $OpenApiTs = {
|
|
|
2304
2438
|
};
|
|
2305
2439
|
};
|
|
2306
2440
|
};
|
|
2307
|
-
'/api/crm-service/merchants/
|
|
2308
|
-
|
|
2309
|
-
req:
|
|
2441
|
+
'/api/crm-service/merchants/info': {
|
|
2442
|
+
get: {
|
|
2443
|
+
req: GetApiCrmServiceMerchantsInfoData;
|
|
2310
2444
|
res: {
|
|
2311
2445
|
/**
|
|
2312
2446
|
* Success
|
|
2313
2447
|
*/
|
|
2314
|
-
200:
|
|
2448
|
+
200: UniRefund_CRMService_Merchants_MerchantInfoDto;
|
|
2315
2449
|
/**
|
|
2316
2450
|
* Bad Request
|
|
2317
2451
|
*/
|
|
@@ -2338,13 +2472,15 @@ export type $OpenApiTs = {
|
|
|
2338
2472
|
501: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2339
2473
|
};
|
|
2340
2474
|
};
|
|
2475
|
+
};
|
|
2476
|
+
'/api/crm-service/merchants/detail/{id}': {
|
|
2341
2477
|
get: {
|
|
2342
|
-
req:
|
|
2478
|
+
req: GetApiCrmServiceMerchantsDetailByIdData;
|
|
2343
2479
|
res: {
|
|
2344
2480
|
/**
|
|
2345
2481
|
* Success
|
|
2346
2482
|
*/
|
|
2347
|
-
200:
|
|
2483
|
+
200: UniRefund_CRMService_Merchants_MerchantDetailDto;
|
|
2348
2484
|
/**
|
|
2349
2485
|
* Bad Request
|
|
2350
2486
|
*/
|
|
@@ -2372,9 +2508,9 @@ export type $OpenApiTs = {
|
|
|
2372
2508
|
};
|
|
2373
2509
|
};
|
|
2374
2510
|
};
|
|
2375
|
-
'/api/crm-service/merchants/
|
|
2376
|
-
|
|
2377
|
-
req:
|
|
2511
|
+
'/api/crm-service/merchants/with-components': {
|
|
2512
|
+
post: {
|
|
2513
|
+
req: PostApiCrmServiceMerchantsWithComponentsData;
|
|
2378
2514
|
res: {
|
|
2379
2515
|
/**
|
|
2380
2516
|
* Success
|
|
@@ -2407,9 +2543,9 @@ export type $OpenApiTs = {
|
|
|
2407
2543
|
};
|
|
2408
2544
|
};
|
|
2409
2545
|
};
|
|
2410
|
-
'/api/crm-service/merchants/
|
|
2411
|
-
|
|
2412
|
-
req:
|
|
2546
|
+
'/api/crm-service/merchants/with-components/{id}': {
|
|
2547
|
+
delete: {
|
|
2548
|
+
req: DeleteApiCrmServiceMerchantsWithComponentsByIdData;
|
|
2413
2549
|
res: {
|
|
2414
2550
|
/**
|
|
2415
2551
|
* Success
|
|
@@ -2442,9 +2578,9 @@ export type $OpenApiTs = {
|
|
|
2442
2578
|
};
|
|
2443
2579
|
};
|
|
2444
2580
|
};
|
|
2445
|
-
'/api/crm-service/
|
|
2581
|
+
'/api/crm-service/merchants/{merchantId}/affiliations': {
|
|
2446
2582
|
post: {
|
|
2447
|
-
req:
|
|
2583
|
+
req: PostApiCrmServiceMerchantsByMerchantIdAffiliationsData;
|
|
2448
2584
|
res: {
|
|
2449
2585
|
/**
|
|
2450
2586
|
* Success
|
|
@@ -2476,10 +2612,8 @@ export type $OpenApiTs = {
|
|
|
2476
2612
|
501: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2477
2613
|
};
|
|
2478
2614
|
};
|
|
2479
|
-
};
|
|
2480
|
-
'/api/crm-service/organizations': {
|
|
2481
2615
|
get: {
|
|
2482
|
-
req:
|
|
2616
|
+
req: GetApiCrmServiceMerchantsByMerchantIdAffiliationsData;
|
|
2483
2617
|
res: {
|
|
2484
2618
|
/**
|
|
2485
2619
|
* Success
|
|
@@ -2512,14 +2646,14 @@ export type $OpenApiTs = {
|
|
|
2512
2646
|
};
|
|
2513
2647
|
};
|
|
2514
2648
|
};
|
|
2515
|
-
'/api/crm-service/
|
|
2516
|
-
|
|
2517
|
-
req:
|
|
2649
|
+
'/api/crm-service/merchants/{id}/organization/{organizationId}': {
|
|
2650
|
+
put: {
|
|
2651
|
+
req: PutApiCrmServiceMerchantsByIdOrganizationByOrganizationIdData;
|
|
2518
2652
|
res: {
|
|
2519
2653
|
/**
|
|
2520
2654
|
* Success
|
|
2521
2655
|
*/
|
|
2522
|
-
200:
|
|
2656
|
+
200: unknown;
|
|
2523
2657
|
/**
|
|
2524
2658
|
* Bad Request
|
|
2525
2659
|
*/
|
|
@@ -2547,14 +2681,14 @@ export type $OpenApiTs = {
|
|
|
2547
2681
|
};
|
|
2548
2682
|
};
|
|
2549
2683
|
};
|
|
2550
|
-
'/api/crm-service/
|
|
2551
|
-
|
|
2552
|
-
req:
|
|
2684
|
+
'/api/crm-service/merchants/bulk-product-group-merchant': {
|
|
2685
|
+
post: {
|
|
2686
|
+
req: PostApiCrmServiceMerchantsBulkProductGroupMerchantData;
|
|
2553
2687
|
res: {
|
|
2554
2688
|
/**
|
|
2555
2689
|
* Success
|
|
2556
2690
|
*/
|
|
2557
|
-
200:
|
|
2691
|
+
200: unknown;
|
|
2558
2692
|
/**
|
|
2559
2693
|
* Bad Request
|
|
2560
2694
|
*/
|
|
@@ -2582,14 +2716,14 @@ export type $OpenApiTs = {
|
|
|
2582
2716
|
};
|
|
2583
2717
|
};
|
|
2584
2718
|
};
|
|
2585
|
-
'/api/crm-service/
|
|
2586
|
-
|
|
2587
|
-
req:
|
|
2719
|
+
'/api/crm-service/merchants/{merchantId}/telephone/{id}': {
|
|
2720
|
+
put: {
|
|
2721
|
+
req: PutApiCrmServiceMerchantsByMerchantIdTelephoneByIdData;
|
|
2588
2722
|
res: {
|
|
2589
2723
|
/**
|
|
2590
2724
|
* Success
|
|
2591
2725
|
*/
|
|
2592
|
-
200:
|
|
2726
|
+
200: UniRefund_CRMService_TelephoneTypes_TelephoneTypeDto;
|
|
2593
2727
|
/**
|
|
2594
2728
|
* Bad Request
|
|
2595
2729
|
*/
|
|
@@ -2617,14 +2751,14 @@ export type $OpenApiTs = {
|
|
|
2617
2751
|
};
|
|
2618
2752
|
};
|
|
2619
2753
|
};
|
|
2620
|
-
'/api/crm-service/
|
|
2621
|
-
|
|
2622
|
-
req:
|
|
2754
|
+
'/api/crm-service/merchants/{merchantId}/address/{id}': {
|
|
2755
|
+
put: {
|
|
2756
|
+
req: PutApiCrmServiceMerchantsByMerchantIdAddressByIdData;
|
|
2623
2757
|
res: {
|
|
2624
2758
|
/**
|
|
2625
2759
|
* Success
|
|
2626
2760
|
*/
|
|
2627
|
-
200:
|
|
2761
|
+
200: UniRefund_CRMService_AddressTypes_AddressTypeDto;
|
|
2628
2762
|
/**
|
|
2629
2763
|
* Bad Request
|
|
2630
2764
|
*/
|
|
@@ -2652,14 +2786,14 @@ export type $OpenApiTs = {
|
|
|
2652
2786
|
};
|
|
2653
2787
|
};
|
|
2654
2788
|
};
|
|
2655
|
-
'/api/crm-service/
|
|
2656
|
-
|
|
2657
|
-
req:
|
|
2789
|
+
'/api/crm-service/merchants/{merchantId}/email/{id}': {
|
|
2790
|
+
put: {
|
|
2791
|
+
req: PutApiCrmServiceMerchantsByMerchantIdEmailByIdData;
|
|
2658
2792
|
res: {
|
|
2659
2793
|
/**
|
|
2660
2794
|
* Success
|
|
2661
2795
|
*/
|
|
2662
|
-
200:
|
|
2796
|
+
200: UniRefund_CRMService_EmailCommonDatas_EmailCommonDataDto;
|
|
2663
2797
|
/**
|
|
2664
2798
|
* Bad Request
|
|
2665
2799
|
*/
|
|
@@ -2686,13 +2820,15 @@ export type $OpenApiTs = {
|
|
|
2686
2820
|
501: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2687
2821
|
};
|
|
2688
2822
|
};
|
|
2689
|
-
|
|
2690
|
-
|
|
2823
|
+
};
|
|
2824
|
+
'/api/crm-service/organizations/with-components': {
|
|
2825
|
+
post: {
|
|
2826
|
+
req: PostApiCrmServiceOrganizationsWithComponentsData;
|
|
2691
2827
|
res: {
|
|
2692
2828
|
/**
|
|
2693
2829
|
* Success
|
|
2694
2830
|
*/
|
|
2695
|
-
200:
|
|
2831
|
+
200: unknown;
|
|
2696
2832
|
/**
|
|
2697
2833
|
* Bad Request
|
|
2698
2834
|
*/
|
|
@@ -2720,14 +2856,362 @@ export type $OpenApiTs = {
|
|
|
2720
2856
|
};
|
|
2721
2857
|
};
|
|
2722
2858
|
};
|
|
2723
|
-
'/api/crm-service/
|
|
2724
|
-
|
|
2725
|
-
req:
|
|
2859
|
+
'/api/crm-service/organizations': {
|
|
2860
|
+
get: {
|
|
2861
|
+
req: GetApiCrmServiceOrganizationsData;
|
|
2726
2862
|
res: {
|
|
2727
2863
|
/**
|
|
2728
2864
|
* Success
|
|
2729
2865
|
*/
|
|
2730
|
-
200:
|
|
2866
|
+
200: Volo_Abp_Application_Dtos_PagedResultDto_1;
|
|
2867
|
+
/**
|
|
2868
|
+
* Bad Request
|
|
2869
|
+
*/
|
|
2870
|
+
400: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2871
|
+
/**
|
|
2872
|
+
* Unauthorized
|
|
2873
|
+
*/
|
|
2874
|
+
401: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2875
|
+
/**
|
|
2876
|
+
* Forbidden
|
|
2877
|
+
*/
|
|
2878
|
+
403: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2879
|
+
/**
|
|
2880
|
+
* Not Found
|
|
2881
|
+
*/
|
|
2882
|
+
404: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2883
|
+
/**
|
|
2884
|
+
* Server Error
|
|
2885
|
+
*/
|
|
2886
|
+
500: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2887
|
+
/**
|
|
2888
|
+
* Server Error
|
|
2889
|
+
*/
|
|
2890
|
+
501: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2891
|
+
};
|
|
2892
|
+
};
|
|
2893
|
+
};
|
|
2894
|
+
'/api/crm-service/refund-points': {
|
|
2895
|
+
get: {
|
|
2896
|
+
req: GetApiCrmServiceRefundPointsData;
|
|
2897
|
+
res: {
|
|
2898
|
+
/**
|
|
2899
|
+
* Success
|
|
2900
|
+
*/
|
|
2901
|
+
200: Volo_Abp_Application_Dtos_PagedResultDto_1;
|
|
2902
|
+
/**
|
|
2903
|
+
* Bad Request
|
|
2904
|
+
*/
|
|
2905
|
+
400: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2906
|
+
/**
|
|
2907
|
+
* Unauthorized
|
|
2908
|
+
*/
|
|
2909
|
+
401: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2910
|
+
/**
|
|
2911
|
+
* Forbidden
|
|
2912
|
+
*/
|
|
2913
|
+
403: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2914
|
+
/**
|
|
2915
|
+
* Not Found
|
|
2916
|
+
*/
|
|
2917
|
+
404: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2918
|
+
/**
|
|
2919
|
+
* Server Error
|
|
2920
|
+
*/
|
|
2921
|
+
500: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2922
|
+
/**
|
|
2923
|
+
* Server Error
|
|
2924
|
+
*/
|
|
2925
|
+
501: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2926
|
+
};
|
|
2927
|
+
};
|
|
2928
|
+
};
|
|
2929
|
+
'/api/crm-service/refund-points/detail/{id}': {
|
|
2930
|
+
get: {
|
|
2931
|
+
req: GetApiCrmServiceRefundPointsDetailByIdData;
|
|
2932
|
+
res: {
|
|
2933
|
+
/**
|
|
2934
|
+
* Success
|
|
2935
|
+
*/
|
|
2936
|
+
200: UniRefund_CRMService_RefundPoints_RefundPointDto;
|
|
2937
|
+
/**
|
|
2938
|
+
* Bad Request
|
|
2939
|
+
*/
|
|
2940
|
+
400: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2941
|
+
/**
|
|
2942
|
+
* Unauthorized
|
|
2943
|
+
*/
|
|
2944
|
+
401: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2945
|
+
/**
|
|
2946
|
+
* Forbidden
|
|
2947
|
+
*/
|
|
2948
|
+
403: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2949
|
+
/**
|
|
2950
|
+
* Not Found
|
|
2951
|
+
*/
|
|
2952
|
+
404: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2953
|
+
/**
|
|
2954
|
+
* Server Error
|
|
2955
|
+
*/
|
|
2956
|
+
500: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2957
|
+
/**
|
|
2958
|
+
* Server Error
|
|
2959
|
+
*/
|
|
2960
|
+
501: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2961
|
+
};
|
|
2962
|
+
};
|
|
2963
|
+
};
|
|
2964
|
+
'/api/crm-service/refund-points/with-components': {
|
|
2965
|
+
post: {
|
|
2966
|
+
req: PostApiCrmServiceRefundPointsWithComponentsData;
|
|
2967
|
+
res: {
|
|
2968
|
+
/**
|
|
2969
|
+
* Success
|
|
2970
|
+
*/
|
|
2971
|
+
200: unknown;
|
|
2972
|
+
/**
|
|
2973
|
+
* Bad Request
|
|
2974
|
+
*/
|
|
2975
|
+
400: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2976
|
+
/**
|
|
2977
|
+
* Unauthorized
|
|
2978
|
+
*/
|
|
2979
|
+
401: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2980
|
+
/**
|
|
2981
|
+
* Forbidden
|
|
2982
|
+
*/
|
|
2983
|
+
403: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2984
|
+
/**
|
|
2985
|
+
* Not Found
|
|
2986
|
+
*/
|
|
2987
|
+
404: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2988
|
+
/**
|
|
2989
|
+
* Server Error
|
|
2990
|
+
*/
|
|
2991
|
+
500: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2992
|
+
/**
|
|
2993
|
+
* Server Error
|
|
2994
|
+
*/
|
|
2995
|
+
501: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2996
|
+
};
|
|
2997
|
+
};
|
|
2998
|
+
};
|
|
2999
|
+
'/api/crm-service/refund-points/with-components/{id}': {
|
|
3000
|
+
delete: {
|
|
3001
|
+
req: DeleteApiCrmServiceRefundPointsWithComponentsByIdData;
|
|
3002
|
+
res: {
|
|
3003
|
+
/**
|
|
3004
|
+
* Success
|
|
3005
|
+
*/
|
|
3006
|
+
200: unknown;
|
|
3007
|
+
/**
|
|
3008
|
+
* Bad Request
|
|
3009
|
+
*/
|
|
3010
|
+
400: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
3011
|
+
/**
|
|
3012
|
+
* Unauthorized
|
|
3013
|
+
*/
|
|
3014
|
+
401: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
3015
|
+
/**
|
|
3016
|
+
* Forbidden
|
|
3017
|
+
*/
|
|
3018
|
+
403: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
3019
|
+
/**
|
|
3020
|
+
* Not Found
|
|
3021
|
+
*/
|
|
3022
|
+
404: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
3023
|
+
/**
|
|
3024
|
+
* Server Error
|
|
3025
|
+
*/
|
|
3026
|
+
500: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
3027
|
+
/**
|
|
3028
|
+
* Server Error
|
|
3029
|
+
*/
|
|
3030
|
+
501: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
3031
|
+
};
|
|
3032
|
+
};
|
|
3033
|
+
};
|
|
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;
|
|
2731
3215
|
/**
|
|
2732
3216
|
* Bad Request
|
|
2733
3217
|
*/
|
|
@@ -2998,6 +3482,111 @@ export type $OpenApiTs = {
|
|
|
2998
3482
|
};
|
|
2999
3483
|
};
|
|
3000
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
|
+
};
|
|
3001
3590
|
'/api/crm-service/tax-offices': {
|
|
3002
3591
|
get: {
|
|
3003
3592
|
req: GetApiCrmServiceTaxOfficesData;
|
|
@@ -3206,9 +3795,9 @@ export type $OpenApiTs = {
|
|
|
3206
3795
|
};
|
|
3207
3796
|
};
|
|
3208
3797
|
};
|
|
3209
|
-
'/api/crm-service/tax-offices/{
|
|
3798
|
+
'/api/crm-service/tax-offices/{taxOfficeId}/organization/{organizationId}': {
|
|
3210
3799
|
put: {
|
|
3211
|
-
req:
|
|
3800
|
+
req: PutApiCrmServiceTaxOfficesByTaxOfficeIdOrganizationByOrganizationIdData;
|
|
3212
3801
|
res: {
|
|
3213
3802
|
/**
|
|
3214
3803
|
* Success
|
|
@@ -3241,6 +3830,111 @@ export type $OpenApiTs = {
|
|
|
3241
3830
|
};
|
|
3242
3831
|
};
|
|
3243
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
|
+
};
|
|
3244
3938
|
'/api/crm-service/telephones': {
|
|
3245
3939
|
get: {
|
|
3246
3940
|
req: GetApiCrmServiceTelephonesData;
|