@ayasofyazilim/saas 0.0.95 → 0.0.96
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CRMService/CRMServiceClient.ts +0 -3
- package/CRMService/schemas.gen.ts +375 -487
- package/CRMService/services.gen.ts +154 -126
- package/CRMService/types.gen.ts +247 -212
- package/package.json +1 -1
package/CRMService/types.gen.ts
CHANGED
|
@@ -5,8 +5,8 @@ export type PagedResultDto_AffiliationCodeDto = {
|
|
|
5
5
|
totalCount?: number;
|
|
6
6
|
};
|
|
7
7
|
|
|
8
|
-
export type
|
|
9
|
-
items?: Array<
|
|
8
|
+
export type PagedResultDto_AffiliationTypeDetailDto = {
|
|
9
|
+
items?: Array<UniRefund_CRMService_AffiliationTypes_AffiliationTypeDetailDto> | null;
|
|
10
10
|
totalCount?: number;
|
|
11
11
|
};
|
|
12
12
|
|
|
@@ -50,11 +50,6 @@ export type PagedResultDto_TaxOfficeProfileDto = {
|
|
|
50
50
|
totalCount?: number;
|
|
51
51
|
};
|
|
52
52
|
|
|
53
|
-
export type PagedResultDto_UserDeviceNameDto = {
|
|
54
|
-
items?: Array<UniRefund_CRMService_RefundPoints_UserDeviceNameDto> | null;
|
|
55
|
-
totalCount?: number;
|
|
56
|
-
};
|
|
57
|
-
|
|
58
53
|
export type UniRefund_CRMService_AddressTypes_AddressTypeDto = {
|
|
59
54
|
contactInformationTypeId?: string;
|
|
60
55
|
locationServiceAddressId?: string;
|
|
@@ -71,18 +66,20 @@ export type UniRefund_CRMService_AffiliationCodes_AffiliationCodeDto = {
|
|
|
71
66
|
deletionTime?: string | null;
|
|
72
67
|
name?: string | null;
|
|
73
68
|
description?: string | null;
|
|
74
|
-
roleId?: string;
|
|
69
|
+
roleId?: string | null;
|
|
75
70
|
status?: UniRefund_CRMService_AffiliationCodes_AffiliationCodeStatus;
|
|
71
|
+
entityPartyTypeCode?: UniRefund_CRMService_Enums_EntityPartyTypeCode;
|
|
76
72
|
language?: string | null;
|
|
77
73
|
};
|
|
78
74
|
|
|
79
75
|
export type UniRefund_CRMService_AffiliationCodes_AffiliationCodeStatus = 'Waiting' | 'Approved' | 'Rejected';
|
|
80
76
|
|
|
81
77
|
export type UniRefund_CRMService_AffiliationCodes_CreateAffiliationCodeDto = {
|
|
82
|
-
name
|
|
78
|
+
name: string;
|
|
83
79
|
description?: string | null;
|
|
84
|
-
roleId?: string;
|
|
85
|
-
status
|
|
80
|
+
roleId?: string | null;
|
|
81
|
+
status: UniRefund_CRMService_AffiliationCodes_AffiliationCodeStatus;
|
|
82
|
+
entityPartyTypeCode: UniRefund_CRMService_Enums_EntityPartyTypeCode;
|
|
86
83
|
};
|
|
87
84
|
|
|
88
85
|
export type UniRefund_CRMService_AffiliationCodes_CreateUpdateAffiliationCodeTranslationDto = {
|
|
@@ -91,10 +88,19 @@ export type UniRefund_CRMService_AffiliationCodes_CreateUpdateAffiliationCodeTra
|
|
|
91
88
|
};
|
|
92
89
|
|
|
93
90
|
export type UniRefund_CRMService_AffiliationCodes_UpdateAffiliationCodeDto = {
|
|
94
|
-
name
|
|
91
|
+
name: string;
|
|
95
92
|
description?: string | null;
|
|
96
|
-
roleId?: string;
|
|
97
|
-
status
|
|
93
|
+
roleId?: string | null;
|
|
94
|
+
status: UniRefund_CRMService_AffiliationCodes_AffiliationCodeStatus;
|
|
95
|
+
entityPartyTypeCode: UniRefund_CRMService_Enums_EntityPartyTypeCode;
|
|
96
|
+
};
|
|
97
|
+
|
|
98
|
+
export type UniRefund_CRMService_AffiliationTypes_AffiliationTypeDetailDto = {
|
|
99
|
+
id?: string;
|
|
100
|
+
name?: string | null;
|
|
101
|
+
codeId?: number;
|
|
102
|
+
codeName?: string | null;
|
|
103
|
+
entityInformationTypeCode?: UniRefund_CRMService_Enums_EntityInformationTypeCode;
|
|
98
104
|
};
|
|
99
105
|
|
|
100
106
|
export type UniRefund_CRMService_AffiliationTypes_AffiliationTypeDto = {
|
|
@@ -106,33 +112,31 @@ export type UniRefund_CRMService_AffiliationTypes_AffiliationTypeDto = {
|
|
|
106
112
|
isDeleted?: boolean;
|
|
107
113
|
deleterId?: string | null;
|
|
108
114
|
deletionTime?: string | null;
|
|
109
|
-
name?: string | null;
|
|
110
115
|
description?: string | null;
|
|
111
|
-
|
|
116
|
+
affiliationCode: UniRefund_CRMService_AffiliationCodes_AffiliationCodeDto;
|
|
117
|
+
partyId: string;
|
|
112
118
|
approvedUserId?: string | null;
|
|
113
119
|
approvedDate?: string | null;
|
|
114
|
-
merchantId?: string | null;
|
|
115
120
|
};
|
|
116
121
|
|
|
117
122
|
export type UniRefund_CRMService_AffiliationTypes_CreateAffiliationTypeDto = {
|
|
118
123
|
readonly extraProperties?: {
|
|
119
124
|
[key: string]: unknown;
|
|
120
125
|
} | null;
|
|
121
|
-
|
|
122
|
-
description: string;
|
|
126
|
+
description?: string | null;
|
|
123
127
|
affiliationCodeId: number;
|
|
124
|
-
partyId
|
|
128
|
+
partyId: string;
|
|
129
|
+
entityInformationTypeCode: UniRefund_CRMService_Enums_EntityInformationTypeCode;
|
|
125
130
|
};
|
|
126
131
|
|
|
127
132
|
export type UniRefund_CRMService_AffiliationTypes_UpdateAffiliationTypeDto = {
|
|
128
133
|
readonly extraProperties?: {
|
|
129
134
|
[key: string]: unknown;
|
|
130
135
|
} | null;
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
partyId?: string;
|
|
136
|
+
description?: string | null;
|
|
137
|
+
affiliationCodeId: number;
|
|
138
|
+
partyId: string;
|
|
139
|
+
entityInformationTypeCode: UniRefund_CRMService_Enums_EntityInformationTypeCode;
|
|
136
140
|
};
|
|
137
141
|
|
|
138
142
|
export type UniRefund_CRMService_ContactInformationTypes_ContactInformationTypeDto = {
|
|
@@ -269,8 +273,6 @@ export type UniRefund_CRMService_EntityInformationTypes_EntityInformationTypeDto
|
|
|
269
273
|
organizations?: Array<UniRefund_CRMService_Organizations_OrganizationDto> | null;
|
|
270
274
|
};
|
|
271
275
|
|
|
272
|
-
export type UniRefund_CRMService_Enums_AffiliationTypeCode = 'COFOUNDER' | 'PARTNER' | 'ABPUSER' | 'SUBCOMPANY' | 'ACCOUNTMANAGER' | 'Franchise';
|
|
273
|
-
|
|
274
276
|
export type UniRefund_CRMService_Enums_EmailTypeCode = 'WORK' | 'PERSONAL';
|
|
275
277
|
|
|
276
278
|
export type UniRefund_CRMService_Enums_EntityInformationTypeCode = 'INDIVIDUAL' | 'ORGANIZATION';
|
|
@@ -325,7 +327,6 @@ export type UniRefund_CRMService_Individuals_IndividualProfileDto = {
|
|
|
325
327
|
name?: string | null;
|
|
326
328
|
affiliationId?: string | null;
|
|
327
329
|
affiliationCode?: UniRefund_CRMService_AffiliationCodes_AffiliationCodeDto;
|
|
328
|
-
affiliationParentTypeCode?: UniRefund_CRMService_Enums_EntityPartyTypeCode;
|
|
329
330
|
};
|
|
330
331
|
|
|
331
332
|
export type UniRefund_CRMService_Individuals_UpdateIndividualDto = {
|
|
@@ -353,17 +354,6 @@ export type UniRefund_CRMService_Merchants_CreateMerchantEntityInformationTypeDt
|
|
|
353
354
|
organizations?: Array<UniRefund_CRMService_Merchants_CreateMerchantOrgnaizationDto> | null;
|
|
354
355
|
};
|
|
355
356
|
|
|
356
|
-
export type UniRefund_CRMService_Merchants_CreateMerchantIndividualDto = {
|
|
357
|
-
readonly extraProperties?: {
|
|
358
|
-
[key: string]: unknown;
|
|
359
|
-
} | null;
|
|
360
|
-
name?: UniRefund_CRMService_NameCommonDatas_CreateNameCommonDataDto;
|
|
361
|
-
personalSummaries?: Array<UniRefund_CRMService_PersonalSummaries_CreatePersonalSummaryDto> | null;
|
|
362
|
-
contactInformations?: Array<UniRefund_CRMService_ContactInformationTypes_CreateContactInformationTypeDto> | null;
|
|
363
|
-
createAbpUserAccount?: boolean;
|
|
364
|
-
affiliationCodeId: number;
|
|
365
|
-
};
|
|
366
|
-
|
|
367
357
|
export type UniRefund_CRMService_Merchants_CreateMerchantOrgnaizationDto = {
|
|
368
358
|
readonly extraProperties?: {
|
|
369
359
|
[key: string]: unknown;
|
|
@@ -473,7 +463,6 @@ export type UniRefund_CRMService_Merchants_StoreProfilePagedResultDtoIntegration
|
|
|
473
463
|
export type UniRefund_CRMService_Merchants_SubIndividualDto = {
|
|
474
464
|
id?: string;
|
|
475
465
|
name: string;
|
|
476
|
-
affiliationTypeCode: UniRefund_CRMService_Enums_AffiliationTypeCode;
|
|
477
466
|
affiliationCode?: UniRefund_CRMService_AffiliationCodes_AffiliationCodeDto;
|
|
478
467
|
};
|
|
479
468
|
|
|
@@ -559,7 +548,6 @@ export type UniRefund_CRMService_Organizations_OrganizationProfileDto = {
|
|
|
559
548
|
name?: string | null;
|
|
560
549
|
affiliationId?: string | null;
|
|
561
550
|
affiliationCode?: UniRefund_CRMService_AffiliationCodes_AffiliationCodeDto;
|
|
562
|
-
affiliationParentTypeCode?: UniRefund_CRMService_Enums_EntityPartyTypeCode;
|
|
563
551
|
};
|
|
564
552
|
|
|
565
553
|
export type UniRefund_CRMService_Organizations_UpdateOrganizationDto = {
|
|
@@ -680,11 +668,6 @@ export type UniRefund_CRMService_RefundPoints_UpdateRefundPointOrganizationDto =
|
|
|
680
668
|
branchId?: string | null;
|
|
681
669
|
};
|
|
682
670
|
|
|
683
|
-
export type UniRefund_CRMService_RefundPoints_UserDeviceNameDto = {
|
|
684
|
-
id: string;
|
|
685
|
-
name: string;
|
|
686
|
-
};
|
|
687
|
-
|
|
688
671
|
export type UniRefund_CRMService_TaxFrees_CreateTaxFreeDto = {
|
|
689
672
|
readonly extraProperties?: {
|
|
690
673
|
[key: string]: unknown;
|
|
@@ -1397,14 +1380,15 @@ export type PostApiCrmServiceCustomsByIdAffiliationsResponse = unknown;
|
|
|
1397
1380
|
|
|
1398
1381
|
export type GetApiCrmServiceCustomsByIdAffiliationsData = {
|
|
1399
1382
|
affiliationCodeId?: number;
|
|
1400
|
-
|
|
1383
|
+
entityInformationTypeCode?: UniRefund_CRMService_Enums_EntityInformationTypeCode;
|
|
1401
1384
|
id: string;
|
|
1402
1385
|
maxResultCount?: number;
|
|
1386
|
+
name?: string;
|
|
1403
1387
|
skipCount?: number;
|
|
1404
1388
|
sorting?: string;
|
|
1405
1389
|
};
|
|
1406
1390
|
|
|
1407
|
-
export type GetApiCrmServiceCustomsByIdAffiliationsResponse =
|
|
1391
|
+
export type GetApiCrmServiceCustomsByIdAffiliationsResponse = PagedResultDto_AffiliationTypeDetailDto;
|
|
1408
1392
|
|
|
1409
1393
|
export type PutApiCrmServiceCustomsByIdOrganizationsByOrganizationIdData = {
|
|
1410
1394
|
id: string;
|
|
@@ -1464,7 +1448,6 @@ export type GetApiCrmServiceIndividualsByIdData = {
|
|
|
1464
1448
|
export type GetApiCrmServiceIndividualsByIdResponse = UniRefund_CRMService_Individuals_IndividualProfileDto;
|
|
1465
1449
|
|
|
1466
1450
|
export type GetApiCrmServiceIndividualsData = {
|
|
1467
|
-
affiliationTypes?: Array<UniRefund_CRMService_Enums_AffiliationTypeCode>;
|
|
1468
1451
|
email?: string;
|
|
1469
1452
|
entityPartyTypeCodes?: Array<UniRefund_CRMService_Enums_EntityPartyTypeCode>;
|
|
1470
1453
|
maxResultCount?: number;
|
|
@@ -1488,20 +1471,6 @@ export type GetApiCrmServiceIndividualsByIdAffiliationsData = {
|
|
|
1488
1471
|
|
|
1489
1472
|
export type GetApiCrmServiceIndividualsByIdAffiliationsResponse = UniRefund_CRMService_Individuals_IndividualAffiliationsDto;
|
|
1490
1473
|
|
|
1491
|
-
export type GetIntegrationApiIndividualsUserDevicesNamesData = {
|
|
1492
|
-
ids: Array<(string)>;
|
|
1493
|
-
};
|
|
1494
|
-
|
|
1495
|
-
export type GetIntegrationApiIndividualsUserDevicesNamesResponse = Array<UniRefund_CRMService_RefundPoints_UserDeviceNameDto>;
|
|
1496
|
-
|
|
1497
|
-
export type GetIntegrationApiIndividualsAllUserDevicesNamesData = {
|
|
1498
|
-
ids: Array<(string)>;
|
|
1499
|
-
maxResultCount?: number;
|
|
1500
|
-
skipCount?: number;
|
|
1501
|
-
};
|
|
1502
|
-
|
|
1503
|
-
export type GetIntegrationApiIndividualsAllUserDevicesNamesResponse = PagedResultDto_UserDeviceNameDto;
|
|
1504
|
-
|
|
1505
1474
|
export type GetApiCrmServiceMerchantsData = {
|
|
1506
1475
|
ids?: Array<(string)>;
|
|
1507
1476
|
maxResultCount?: number;
|
|
@@ -1542,19 +1511,6 @@ export type GetApiCrmServiceMerchantsByIdSubMerchantsData = {
|
|
|
1542
1511
|
|
|
1543
1512
|
export type GetApiCrmServiceMerchantsByIdSubMerchantsResponse = UniRefund_CRMService_Merchants_StoreProfilePagedResultDto;
|
|
1544
1513
|
|
|
1545
|
-
export type GetApiCrmServiceMerchantsByIdAffiliatedIndividualsData = {
|
|
1546
|
-
id: string;
|
|
1547
|
-
};
|
|
1548
|
-
|
|
1549
|
-
export type GetApiCrmServiceMerchantsByIdAffiliatedIndividualsResponse = Array<UniRefund_CRMService_Merchants_SubIndividualDto>;
|
|
1550
|
-
|
|
1551
|
-
export type PostApiCrmServiceMerchantsByIdAffiliatedIndividualsData = {
|
|
1552
|
-
id: string;
|
|
1553
|
-
requestBody?: UniRefund_CRMService_Merchants_CreateMerchantIndividualDto;
|
|
1554
|
-
};
|
|
1555
|
-
|
|
1556
|
-
export type PostApiCrmServiceMerchantsByIdAffiliatedIndividualsResponse = UniRefund_CRMService_Individuals_IndividualDto;
|
|
1557
|
-
|
|
1558
1514
|
export type PostApiCrmServiceMerchantsWithComponentsData = {
|
|
1559
1515
|
requestBody?: UniRefund_CRMService_Merchants_CreateMerchantDto;
|
|
1560
1516
|
};
|
|
@@ -1569,14 +1525,15 @@ export type DeleteApiCrmServiceMerchantsByIdWithComponentsResponse = unknown;
|
|
|
1569
1525
|
|
|
1570
1526
|
export type GetApiCrmServiceMerchantsByIdAffiliationsData = {
|
|
1571
1527
|
affiliationCodeId?: number;
|
|
1572
|
-
|
|
1528
|
+
entityInformationTypeCode?: UniRefund_CRMService_Enums_EntityInformationTypeCode;
|
|
1573
1529
|
id: string;
|
|
1574
1530
|
maxResultCount?: number;
|
|
1531
|
+
name?: string;
|
|
1575
1532
|
skipCount?: number;
|
|
1576
1533
|
sorting?: string;
|
|
1577
1534
|
};
|
|
1578
1535
|
|
|
1579
|
-
export type GetApiCrmServiceMerchantsByIdAffiliationsResponse =
|
|
1536
|
+
export type GetApiCrmServiceMerchantsByIdAffiliationsResponse = PagedResultDto_AffiliationTypeDetailDto;
|
|
1580
1537
|
|
|
1581
1538
|
export type PostApiCrmServiceMerchantsByIdAffiliationsData = {
|
|
1582
1539
|
id: string;
|
|
@@ -1696,6 +1653,26 @@ export type GetIntegrationApiMerchantsInfoData = {
|
|
|
1696
1653
|
|
|
1697
1654
|
export type GetIntegrationApiMerchantsInfoResponse = UniRefund_CRMService_Merchants_MerchantInfoDto;
|
|
1698
1655
|
|
|
1656
|
+
export type GetIntegrationApiMerchantsByIdParentIdOrSelfIdData = {
|
|
1657
|
+
id: string;
|
|
1658
|
+
};
|
|
1659
|
+
|
|
1660
|
+
export type GetIntegrationApiMerchantsByIdParentIdOrSelfIdResponse = string;
|
|
1661
|
+
|
|
1662
|
+
export type GetIntegrationApiMerchantsByIdSubsData = {
|
|
1663
|
+
id: string;
|
|
1664
|
+
};
|
|
1665
|
+
|
|
1666
|
+
export type GetIntegrationApiMerchantsByIdSubsResponse = Array<(string)>;
|
|
1667
|
+
|
|
1668
|
+
export type GetIntegrationApiMerchantsNamesData = {
|
|
1669
|
+
ids?: Array<(string)>;
|
|
1670
|
+
};
|
|
1671
|
+
|
|
1672
|
+
export type GetIntegrationApiMerchantsNamesResponse = {
|
|
1673
|
+
[key: string]: (string);
|
|
1674
|
+
};
|
|
1675
|
+
|
|
1699
1676
|
export type GetIntegrationApiMerchantsByIdEnsureExistData = {
|
|
1700
1677
|
id: string;
|
|
1701
1678
|
parentId?: string;
|
|
@@ -1767,6 +1744,16 @@ export type GetApiCrmServiceRefundPointsData = {
|
|
|
1767
1744
|
|
|
1768
1745
|
export type GetApiCrmServiceRefundPointsResponse = PagedResultDto_RefundPointProfileDto;
|
|
1769
1746
|
|
|
1747
|
+
export type GetApiCrmServiceRefundPointsAccessibleData = {
|
|
1748
|
+
ids?: Array<(string)>;
|
|
1749
|
+
maxResultCount?: number;
|
|
1750
|
+
name?: string;
|
|
1751
|
+
skipCount?: number;
|
|
1752
|
+
sorting?: string;
|
|
1753
|
+
};
|
|
1754
|
+
|
|
1755
|
+
export type GetApiCrmServiceRefundPointsAccessibleResponse = PagedResultDto_RefundPointProfileDto;
|
|
1756
|
+
|
|
1770
1757
|
export type GetApiCrmServiceRefundPointsByIdData = {
|
|
1771
1758
|
id: string;
|
|
1772
1759
|
};
|
|
@@ -1806,14 +1793,15 @@ export type PostApiCrmServiceRefundPointsByIdAffiliationsResponse = unknown;
|
|
|
1806
1793
|
|
|
1807
1794
|
export type GetApiCrmServiceRefundPointsByIdAffiliationsData = {
|
|
1808
1795
|
affiliationCodeId?: number;
|
|
1809
|
-
|
|
1796
|
+
entityInformationTypeCode?: UniRefund_CRMService_Enums_EntityInformationTypeCode;
|
|
1810
1797
|
id: string;
|
|
1811
1798
|
maxResultCount?: number;
|
|
1799
|
+
name?: string;
|
|
1812
1800
|
skipCount?: number;
|
|
1813
1801
|
sorting?: string;
|
|
1814
1802
|
};
|
|
1815
1803
|
|
|
1816
|
-
export type GetApiCrmServiceRefundPointsByIdAffiliationsResponse =
|
|
1804
|
+
export type GetApiCrmServiceRefundPointsByIdAffiliationsResponse = PagedResultDto_AffiliationTypeDetailDto;
|
|
1817
1805
|
|
|
1818
1806
|
export type PutApiCrmServiceRefundPointsByIdOrganizationsByOrganizationIdData = {
|
|
1819
1807
|
id: string;
|
|
@@ -1859,6 +1847,12 @@ export type GetApiCrmServiceRefundPointsByIdAddressesData = {
|
|
|
1859
1847
|
|
|
1860
1848
|
export type GetApiCrmServiceRefundPointsByIdAddressesResponse = Array<UniRefund_LocationService_AddressCommonDatas_AddressCommonDataDto>;
|
|
1861
1849
|
|
|
1850
|
+
export type GetIntegrationApiRefundPointsByIdParentIdOrSelfIdData = {
|
|
1851
|
+
id: string;
|
|
1852
|
+
};
|
|
1853
|
+
|
|
1854
|
+
export type GetIntegrationApiRefundPointsByIdParentIdOrSelfIdResponse = string;
|
|
1855
|
+
|
|
1862
1856
|
export type GetIntegrationApiRefundPointsData = {
|
|
1863
1857
|
ids?: Array<(string)>;
|
|
1864
1858
|
maxResultCount?: number;
|
|
@@ -1938,14 +1932,15 @@ export type PostApiCrmServiceTaxFreesByIdAffiliationsResponse = unknown;
|
|
|
1938
1932
|
|
|
1939
1933
|
export type GetApiCrmServiceTaxFreesByIdAffiliationsData = {
|
|
1940
1934
|
affiliationCodeId?: number;
|
|
1941
|
-
|
|
1935
|
+
entityInformationTypeCode?: UniRefund_CRMService_Enums_EntityInformationTypeCode;
|
|
1942
1936
|
id: string;
|
|
1943
1937
|
maxResultCount?: number;
|
|
1938
|
+
name?: string;
|
|
1944
1939
|
skipCount?: number;
|
|
1945
1940
|
sorting?: string;
|
|
1946
1941
|
};
|
|
1947
1942
|
|
|
1948
|
-
export type GetApiCrmServiceTaxFreesByIdAffiliationsResponse =
|
|
1943
|
+
export type GetApiCrmServiceTaxFreesByIdAffiliationsResponse = PagedResultDto_AffiliationTypeDetailDto;
|
|
1949
1944
|
|
|
1950
1945
|
export type PutApiCrmServiceTaxFreesByIdOrganizationsByOrganizationIdData = {
|
|
1951
1946
|
id: string;
|
|
@@ -2033,14 +2028,15 @@ export type PostApiCrmServiceTaxOfficesByIdAffiliationsResponse = unknown;
|
|
|
2033
2028
|
|
|
2034
2029
|
export type GetApiCrmServiceTaxOfficesByIdAffiliationsData = {
|
|
2035
2030
|
affiliationCodeId?: number;
|
|
2036
|
-
|
|
2031
|
+
entityInformationTypeCode?: UniRefund_CRMService_Enums_EntityInformationTypeCode;
|
|
2037
2032
|
id: string;
|
|
2038
2033
|
maxResultCount?: number;
|
|
2034
|
+
name?: string;
|
|
2039
2035
|
skipCount?: number;
|
|
2040
2036
|
sorting?: string;
|
|
2041
2037
|
};
|
|
2042
2038
|
|
|
2043
|
-
export type GetApiCrmServiceTaxOfficesByIdAffiliationsResponse =
|
|
2039
|
+
export type GetApiCrmServiceTaxOfficesByIdAffiliationsResponse = PagedResultDto_AffiliationTypeDetailDto;
|
|
2044
2040
|
|
|
2045
2041
|
export type PutApiCrmServiceTaxOfficesByIdOrganizationsByOrganizationIdData = {
|
|
2046
2042
|
id: string;
|
|
@@ -2685,7 +2681,7 @@ export type $OpenApiTs = {
|
|
|
2685
2681
|
/**
|
|
2686
2682
|
* Success
|
|
2687
2683
|
*/
|
|
2688
|
-
200:
|
|
2684
|
+
200: PagedResultDto_AffiliationTypeDetailDto;
|
|
2689
2685
|
/**
|
|
2690
2686
|
* Bad Request
|
|
2691
2687
|
*/
|
|
@@ -3061,14 +3057,14 @@ export type $OpenApiTs = {
|
|
|
3061
3057
|
};
|
|
3062
3058
|
};
|
|
3063
3059
|
};
|
|
3064
|
-
'/
|
|
3060
|
+
'/api/crm-service/merchants': {
|
|
3065
3061
|
get: {
|
|
3066
|
-
req:
|
|
3062
|
+
req: GetApiCrmServiceMerchantsData;
|
|
3067
3063
|
res: {
|
|
3068
3064
|
/**
|
|
3069
3065
|
* Success
|
|
3070
3066
|
*/
|
|
3071
|
-
200:
|
|
3067
|
+
200: PagedResultDto_MerchantProfileDto;
|
|
3072
3068
|
/**
|
|
3073
3069
|
* Bad Request
|
|
3074
3070
|
*/
|
|
@@ -3096,14 +3092,14 @@ export type $OpenApiTs = {
|
|
|
3096
3092
|
};
|
|
3097
3093
|
};
|
|
3098
3094
|
};
|
|
3099
|
-
'/
|
|
3095
|
+
'/api/crm-service/merchants/{id}': {
|
|
3100
3096
|
get: {
|
|
3101
|
-
req:
|
|
3097
|
+
req: GetApiCrmServiceMerchantsByIdData;
|
|
3102
3098
|
res: {
|
|
3103
3099
|
/**
|
|
3104
3100
|
* Success
|
|
3105
3101
|
*/
|
|
3106
|
-
200:
|
|
3102
|
+
200: UniRefund_CRMService_Merchants_MerchantProfileDto;
|
|
3107
3103
|
/**
|
|
3108
3104
|
* Bad Request
|
|
3109
3105
|
*/
|
|
@@ -3130,15 +3126,13 @@ export type $OpenApiTs = {
|
|
|
3130
3126
|
501: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
3131
3127
|
};
|
|
3132
3128
|
};
|
|
3133
|
-
|
|
3134
|
-
|
|
3135
|
-
get: {
|
|
3136
|
-
req: GetApiCrmServiceMerchantsData;
|
|
3129
|
+
put: {
|
|
3130
|
+
req: PutApiCrmServiceMerchantsByIdData;
|
|
3137
3131
|
res: {
|
|
3138
3132
|
/**
|
|
3139
3133
|
* Success
|
|
3140
3134
|
*/
|
|
3141
|
-
200:
|
|
3135
|
+
200: UniRefund_CRMService_Merchants_MerchantBaseDto;
|
|
3142
3136
|
/**
|
|
3143
3137
|
* Bad Request
|
|
3144
3138
|
*/
|
|
@@ -3166,14 +3160,14 @@ export type $OpenApiTs = {
|
|
|
3166
3160
|
};
|
|
3167
3161
|
};
|
|
3168
3162
|
};
|
|
3169
|
-
'/api/crm-service/merchants/{id}': {
|
|
3163
|
+
'/api/crm-service/merchants/{id}/detail': {
|
|
3170
3164
|
get: {
|
|
3171
|
-
req:
|
|
3165
|
+
req: GetApiCrmServiceMerchantsByIdDetailData;
|
|
3172
3166
|
res: {
|
|
3173
3167
|
/**
|
|
3174
3168
|
* Success
|
|
3175
3169
|
*/
|
|
3176
|
-
200:
|
|
3170
|
+
200: UniRefund_CRMService_Merchants_MerchantDetailDto;
|
|
3177
3171
|
/**
|
|
3178
3172
|
* Bad Request
|
|
3179
3173
|
*/
|
|
@@ -3200,13 +3194,15 @@ export type $OpenApiTs = {
|
|
|
3200
3194
|
501: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
3201
3195
|
};
|
|
3202
3196
|
};
|
|
3203
|
-
|
|
3204
|
-
|
|
3197
|
+
};
|
|
3198
|
+
'/api/crm-service/merchants/{id}/sub-merchants': {
|
|
3199
|
+
get: {
|
|
3200
|
+
req: GetApiCrmServiceMerchantsByIdSubMerchantsData;
|
|
3205
3201
|
res: {
|
|
3206
3202
|
/**
|
|
3207
3203
|
* Success
|
|
3208
3204
|
*/
|
|
3209
|
-
200:
|
|
3205
|
+
200: UniRefund_CRMService_Merchants_StoreProfilePagedResultDto;
|
|
3210
3206
|
/**
|
|
3211
3207
|
* Bad Request
|
|
3212
3208
|
*/
|
|
@@ -3234,14 +3230,14 @@ export type $OpenApiTs = {
|
|
|
3234
3230
|
};
|
|
3235
3231
|
};
|
|
3236
3232
|
};
|
|
3237
|
-
'/api/crm-service/merchants/
|
|
3238
|
-
|
|
3239
|
-
req:
|
|
3233
|
+
'/api/crm-service/merchants/with-components': {
|
|
3234
|
+
post: {
|
|
3235
|
+
req: PostApiCrmServiceMerchantsWithComponentsData;
|
|
3240
3236
|
res: {
|
|
3241
3237
|
/**
|
|
3242
3238
|
* Success
|
|
3243
3239
|
*/
|
|
3244
|
-
200:
|
|
3240
|
+
200: UniRefund_CRMService_Merchants_MerchantProfileDto;
|
|
3245
3241
|
/**
|
|
3246
3242
|
* Bad Request
|
|
3247
3243
|
*/
|
|
@@ -3269,14 +3265,14 @@ export type $OpenApiTs = {
|
|
|
3269
3265
|
};
|
|
3270
3266
|
};
|
|
3271
3267
|
};
|
|
3272
|
-
'/api/crm-service/merchants/{id}/
|
|
3273
|
-
|
|
3274
|
-
req:
|
|
3268
|
+
'/api/crm-service/merchants/{id}/with-components': {
|
|
3269
|
+
delete: {
|
|
3270
|
+
req: DeleteApiCrmServiceMerchantsByIdWithComponentsData;
|
|
3275
3271
|
res: {
|
|
3276
3272
|
/**
|
|
3277
3273
|
* Success
|
|
3278
3274
|
*/
|
|
3279
|
-
200:
|
|
3275
|
+
200: unknown;
|
|
3280
3276
|
/**
|
|
3281
3277
|
* Bad Request
|
|
3282
3278
|
*/
|
|
@@ -3304,14 +3300,14 @@ export type $OpenApiTs = {
|
|
|
3304
3300
|
};
|
|
3305
3301
|
};
|
|
3306
3302
|
};
|
|
3307
|
-
'/api/crm-service/merchants/{id}/
|
|
3303
|
+
'/api/crm-service/merchants/{id}/affiliations': {
|
|
3308
3304
|
get: {
|
|
3309
|
-
req:
|
|
3305
|
+
req: GetApiCrmServiceMerchantsByIdAffiliationsData;
|
|
3310
3306
|
res: {
|
|
3311
3307
|
/**
|
|
3312
3308
|
* Success
|
|
3313
3309
|
*/
|
|
3314
|
-
200:
|
|
3310
|
+
200: PagedResultDto_AffiliationTypeDetailDto;
|
|
3315
3311
|
/**
|
|
3316
3312
|
* Bad Request
|
|
3317
3313
|
*/
|
|
@@ -3339,12 +3335,12 @@ export type $OpenApiTs = {
|
|
|
3339
3335
|
};
|
|
3340
3336
|
};
|
|
3341
3337
|
post: {
|
|
3342
|
-
req:
|
|
3338
|
+
req: PostApiCrmServiceMerchantsByIdAffiliationsData;
|
|
3343
3339
|
res: {
|
|
3344
3340
|
/**
|
|
3345
3341
|
* Success
|
|
3346
3342
|
*/
|
|
3347
|
-
200:
|
|
3343
|
+
200: unknown;
|
|
3348
3344
|
/**
|
|
3349
3345
|
* Bad Request
|
|
3350
3346
|
*/
|
|
@@ -3372,14 +3368,14 @@ export type $OpenApiTs = {
|
|
|
3372
3368
|
};
|
|
3373
3369
|
};
|
|
3374
3370
|
};
|
|
3375
|
-
'/api/crm-service/merchants/
|
|
3376
|
-
|
|
3377
|
-
req:
|
|
3371
|
+
'/api/crm-service/merchants/{id}/affiliations/{affiliationId}': {
|
|
3372
|
+
delete: {
|
|
3373
|
+
req: DeleteApiCrmServiceMerchantsByIdAffiliationsByAffiliationIdData;
|
|
3378
3374
|
res: {
|
|
3379
3375
|
/**
|
|
3380
3376
|
* Success
|
|
3381
3377
|
*/
|
|
3382
|
-
200:
|
|
3378
|
+
200: unknown;
|
|
3383
3379
|
/**
|
|
3384
3380
|
* Bad Request
|
|
3385
3381
|
*/
|
|
@@ -3406,15 +3402,13 @@ export type $OpenApiTs = {
|
|
|
3406
3402
|
501: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
3407
3403
|
};
|
|
3408
3404
|
};
|
|
3409
|
-
|
|
3410
|
-
|
|
3411
|
-
delete: {
|
|
3412
|
-
req: DeleteApiCrmServiceMerchantsByIdWithComponentsData;
|
|
3405
|
+
put: {
|
|
3406
|
+
req: PutApiCrmServiceMerchantsByIdAffiliationsByAffiliationIdData;
|
|
3413
3407
|
res: {
|
|
3414
3408
|
/**
|
|
3415
3409
|
* Success
|
|
3416
3410
|
*/
|
|
3417
|
-
200:
|
|
3411
|
+
200: UniRefund_CRMService_AffiliationTypes_AffiliationTypeDto;
|
|
3418
3412
|
/**
|
|
3419
3413
|
* Bad Request
|
|
3420
3414
|
*/
|
|
@@ -3442,14 +3436,14 @@ export type $OpenApiTs = {
|
|
|
3442
3436
|
};
|
|
3443
3437
|
};
|
|
3444
3438
|
};
|
|
3445
|
-
'/api/crm-service/merchants/{id}/
|
|
3446
|
-
|
|
3447
|
-
req:
|
|
3439
|
+
'/api/crm-service/merchants/{id}/organizations/{organizationId}': {
|
|
3440
|
+
put: {
|
|
3441
|
+
req: PutApiCrmServiceMerchantsByIdOrganizationsByOrganizationIdData;
|
|
3448
3442
|
res: {
|
|
3449
3443
|
/**
|
|
3450
3444
|
* Success
|
|
3451
3445
|
*/
|
|
3452
|
-
200:
|
|
3446
|
+
200: UniRefund_CRMService_Organizations_OrganizationDto;
|
|
3453
3447
|
/**
|
|
3454
3448
|
* Bad Request
|
|
3455
3449
|
*/
|
|
@@ -3476,13 +3470,15 @@ export type $OpenApiTs = {
|
|
|
3476
3470
|
501: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
3477
3471
|
};
|
|
3478
3472
|
};
|
|
3479
|
-
|
|
3480
|
-
|
|
3473
|
+
};
|
|
3474
|
+
'/api/crm-service/merchants/{id}/affiliated-individuals/{individualId}': {
|
|
3475
|
+
put: {
|
|
3476
|
+
req: PutApiCrmServiceMerchantsByIdAffiliatedIndividualsByIndividualIdData;
|
|
3481
3477
|
res: {
|
|
3482
3478
|
/**
|
|
3483
3479
|
* Success
|
|
3484
3480
|
*/
|
|
3485
|
-
200:
|
|
3481
|
+
200: UniRefund_CRMService_Individuals_IndividualDto;
|
|
3486
3482
|
/**
|
|
3487
3483
|
* Bad Request
|
|
3488
3484
|
*/
|
|
@@ -3510,9 +3506,9 @@ export type $OpenApiTs = {
|
|
|
3510
3506
|
};
|
|
3511
3507
|
};
|
|
3512
3508
|
};
|
|
3513
|
-
'/api/crm-service/merchants/
|
|
3514
|
-
|
|
3515
|
-
req:
|
|
3509
|
+
'/api/crm-service/merchants/bulk-product-group-merchants': {
|
|
3510
|
+
post: {
|
|
3511
|
+
req: PostApiCrmServiceMerchantsBulkProductGroupMerchantsData;
|
|
3516
3512
|
res: {
|
|
3517
3513
|
/**
|
|
3518
3514
|
* Success
|
|
@@ -3544,13 +3540,15 @@ export type $OpenApiTs = {
|
|
|
3544
3540
|
501: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
3545
3541
|
};
|
|
3546
3542
|
};
|
|
3547
|
-
|
|
3548
|
-
|
|
3543
|
+
};
|
|
3544
|
+
'/api/crm-service/merchants/{id}/telephones': {
|
|
3545
|
+
get: {
|
|
3546
|
+
req: GetApiCrmServiceMerchantsByIdTelephonesData;
|
|
3549
3547
|
res: {
|
|
3550
3548
|
/**
|
|
3551
3549
|
* Success
|
|
3552
3550
|
*/
|
|
3553
|
-
200:
|
|
3551
|
+
200: Array<UniRefund_CRMService_TelephoneTypes_TelephoneTypeDto>;
|
|
3554
3552
|
/**
|
|
3555
3553
|
* Bad Request
|
|
3556
3554
|
*/
|
|
@@ -3578,14 +3576,14 @@ export type $OpenApiTs = {
|
|
|
3578
3576
|
};
|
|
3579
3577
|
};
|
|
3580
3578
|
};
|
|
3581
|
-
'/api/crm-service/merchants/{id}/
|
|
3579
|
+
'/api/crm-service/merchants/{id}/telephones/{telephoneId}': {
|
|
3582
3580
|
put: {
|
|
3583
|
-
req:
|
|
3581
|
+
req: PutApiCrmServiceMerchantsByIdTelephonesByTelephoneIdData;
|
|
3584
3582
|
res: {
|
|
3585
3583
|
/**
|
|
3586
3584
|
* Success
|
|
3587
3585
|
*/
|
|
3588
|
-
200:
|
|
3586
|
+
200: UniRefund_CRMService_TelephoneTypes_TelephoneTypeDto;
|
|
3589
3587
|
/**
|
|
3590
3588
|
* Bad Request
|
|
3591
3589
|
*/
|
|
@@ -3613,14 +3611,14 @@ export type $OpenApiTs = {
|
|
|
3613
3611
|
};
|
|
3614
3612
|
};
|
|
3615
3613
|
};
|
|
3616
|
-
'/api/crm-service/merchants/{id}/
|
|
3617
|
-
|
|
3618
|
-
req:
|
|
3614
|
+
'/api/crm-service/merchants/{id}/addresses': {
|
|
3615
|
+
get: {
|
|
3616
|
+
req: GetApiCrmServiceMerchantsByIdAddressesData;
|
|
3619
3617
|
res: {
|
|
3620
3618
|
/**
|
|
3621
3619
|
* Success
|
|
3622
3620
|
*/
|
|
3623
|
-
200:
|
|
3621
|
+
200: Array<UniRefund_LocationService_AddressCommonDatas_AddressCommonDataDto>;
|
|
3624
3622
|
/**
|
|
3625
3623
|
* Bad Request
|
|
3626
3624
|
*/
|
|
@@ -3648,14 +3646,14 @@ export type $OpenApiTs = {
|
|
|
3648
3646
|
};
|
|
3649
3647
|
};
|
|
3650
3648
|
};
|
|
3651
|
-
'/api/crm-service/merchants/
|
|
3652
|
-
|
|
3653
|
-
req:
|
|
3649
|
+
'/api/crm-service/merchants/{id}/addresses/{addressId}': {
|
|
3650
|
+
put: {
|
|
3651
|
+
req: PutApiCrmServiceMerchantsByIdAddressesByAddressIdData;
|
|
3654
3652
|
res: {
|
|
3655
3653
|
/**
|
|
3656
3654
|
* Success
|
|
3657
3655
|
*/
|
|
3658
|
-
200:
|
|
3656
|
+
200: UniRefund_LocationService_AddressCommonDatas_AddressCommonDataDto;
|
|
3659
3657
|
/**
|
|
3660
3658
|
* Bad Request
|
|
3661
3659
|
*/
|
|
@@ -3683,14 +3681,14 @@ export type $OpenApiTs = {
|
|
|
3683
3681
|
};
|
|
3684
3682
|
};
|
|
3685
3683
|
};
|
|
3686
|
-
'/api/crm-service/merchants/{id}/
|
|
3684
|
+
'/api/crm-service/merchants/{id}/emails': {
|
|
3687
3685
|
get: {
|
|
3688
|
-
req:
|
|
3686
|
+
req: GetApiCrmServiceMerchantsByIdEmailsData;
|
|
3689
3687
|
res: {
|
|
3690
3688
|
/**
|
|
3691
3689
|
* Success
|
|
3692
3690
|
*/
|
|
3693
|
-
200: Array<
|
|
3691
|
+
200: Array<UniRefund_CRMService_EmailCommonDatas_EmailCommonDataDto>;
|
|
3694
3692
|
/**
|
|
3695
3693
|
* Bad Request
|
|
3696
3694
|
*/
|
|
@@ -3718,14 +3716,14 @@ export type $OpenApiTs = {
|
|
|
3718
3716
|
};
|
|
3719
3717
|
};
|
|
3720
3718
|
};
|
|
3721
|
-
'/api/crm-service/merchants/{id}/
|
|
3719
|
+
'/api/crm-service/merchants/{id}/emails/{emailId}': {
|
|
3722
3720
|
put: {
|
|
3723
|
-
req:
|
|
3721
|
+
req: PutApiCrmServiceMerchantsByIdEmailsByEmailIdData;
|
|
3724
3722
|
res: {
|
|
3725
3723
|
/**
|
|
3726
3724
|
* Success
|
|
3727
3725
|
*/
|
|
3728
|
-
200:
|
|
3726
|
+
200: UniRefund_CRMService_EmailCommonDatas_EmailCommonDataDto;
|
|
3729
3727
|
/**
|
|
3730
3728
|
* Bad Request
|
|
3731
3729
|
*/
|
|
@@ -3753,14 +3751,14 @@ export type $OpenApiTs = {
|
|
|
3753
3751
|
};
|
|
3754
3752
|
};
|
|
3755
3753
|
};
|
|
3756
|
-
'/api/crm-service/merchants/{id}/
|
|
3757
|
-
|
|
3758
|
-
req:
|
|
3754
|
+
'/api/crm-service/merchants/{id}/individual/{individualId}/name/{nameId}': {
|
|
3755
|
+
put: {
|
|
3756
|
+
req: PutApiCrmServiceMerchantsByIdIndividualByIndividualIdNameByNameIdData;
|
|
3759
3757
|
res: {
|
|
3760
3758
|
/**
|
|
3761
3759
|
* Success
|
|
3762
3760
|
*/
|
|
3763
|
-
200:
|
|
3761
|
+
200: UniRefund_CRMService_NameCommonDatas_NameCommonDataDto;
|
|
3764
3762
|
/**
|
|
3765
3763
|
* Bad Request
|
|
3766
3764
|
*/
|
|
@@ -3788,14 +3786,14 @@ export type $OpenApiTs = {
|
|
|
3788
3786
|
};
|
|
3789
3787
|
};
|
|
3790
3788
|
};
|
|
3791
|
-
'/api/crm-service/merchants/{id}/
|
|
3789
|
+
'/api/crm-service/merchants/{id}/individual/{individualId}/personal-summary/{personalSummaryId}': {
|
|
3792
3790
|
put: {
|
|
3793
|
-
req:
|
|
3791
|
+
req: PutApiCrmServiceMerchantsByIdIndividualByIndividualIdPersonalSummaryByPersonalSummaryIdData;
|
|
3794
3792
|
res: {
|
|
3795
3793
|
/**
|
|
3796
3794
|
* Success
|
|
3797
3795
|
*/
|
|
3798
|
-
200:
|
|
3796
|
+
200: UniRefund_CRMService_PersonalSummaries_PersonalSummaryDto;
|
|
3799
3797
|
/**
|
|
3800
3798
|
* Bad Request
|
|
3801
3799
|
*/
|
|
@@ -3823,14 +3821,14 @@ export type $OpenApiTs = {
|
|
|
3823
3821
|
};
|
|
3824
3822
|
};
|
|
3825
3823
|
};
|
|
3826
|
-
'/api/
|
|
3824
|
+
'/integration-api/merchants/{id}/basic-information': {
|
|
3827
3825
|
get: {
|
|
3828
|
-
req:
|
|
3826
|
+
req: GetIntegrationApiMerchantsByIdBasicInformationData;
|
|
3829
3827
|
res: {
|
|
3830
3828
|
/**
|
|
3831
3829
|
* Success
|
|
3832
3830
|
*/
|
|
3833
|
-
200:
|
|
3831
|
+
200: UniRefund_CRMService_Merchants_MerchantBasicInformationDto;
|
|
3834
3832
|
/**
|
|
3835
3833
|
* Bad Request
|
|
3836
3834
|
*/
|
|
@@ -3858,14 +3856,14 @@ export type $OpenApiTs = {
|
|
|
3858
3856
|
};
|
|
3859
3857
|
};
|
|
3860
3858
|
};
|
|
3861
|
-
'/api/
|
|
3862
|
-
|
|
3863
|
-
req:
|
|
3859
|
+
'/integration-api/merchants/info': {
|
|
3860
|
+
get: {
|
|
3861
|
+
req: GetIntegrationApiMerchantsInfoData;
|
|
3864
3862
|
res: {
|
|
3865
3863
|
/**
|
|
3866
3864
|
* Success
|
|
3867
3865
|
*/
|
|
3868
|
-
200:
|
|
3866
|
+
200: UniRefund_CRMService_Merchants_MerchantInfoDto;
|
|
3869
3867
|
/**
|
|
3870
3868
|
* Bad Request
|
|
3871
3869
|
*/
|
|
@@ -3893,14 +3891,14 @@ export type $OpenApiTs = {
|
|
|
3893
3891
|
};
|
|
3894
3892
|
};
|
|
3895
3893
|
};
|
|
3896
|
-
'/api/
|
|
3897
|
-
|
|
3898
|
-
req:
|
|
3894
|
+
'/integration-api/merchants/{id}/parentId-or-selfId': {
|
|
3895
|
+
get: {
|
|
3896
|
+
req: GetIntegrationApiMerchantsByIdParentIdOrSelfIdData;
|
|
3899
3897
|
res: {
|
|
3900
3898
|
/**
|
|
3901
3899
|
* Success
|
|
3902
3900
|
*/
|
|
3903
|
-
200:
|
|
3901
|
+
200: string;
|
|
3904
3902
|
/**
|
|
3905
3903
|
* Bad Request
|
|
3906
3904
|
*/
|
|
@@ -3928,14 +3926,14 @@ export type $OpenApiTs = {
|
|
|
3928
3926
|
};
|
|
3929
3927
|
};
|
|
3930
3928
|
};
|
|
3931
|
-
'/api/
|
|
3932
|
-
|
|
3933
|
-
req:
|
|
3929
|
+
'/integration-api/merchants/{id}/subs': {
|
|
3930
|
+
get: {
|
|
3931
|
+
req: GetIntegrationApiMerchantsByIdSubsData;
|
|
3934
3932
|
res: {
|
|
3935
3933
|
/**
|
|
3936
3934
|
* Success
|
|
3937
3935
|
*/
|
|
3938
|
-
200:
|
|
3936
|
+
200: Array<(string)>;
|
|
3939
3937
|
/**
|
|
3940
3938
|
* Bad Request
|
|
3941
3939
|
*/
|
|
@@ -3963,14 +3961,16 @@ export type $OpenApiTs = {
|
|
|
3963
3961
|
};
|
|
3964
3962
|
};
|
|
3965
3963
|
};
|
|
3966
|
-
'/integration-api/merchants/
|
|
3964
|
+
'/integration-api/merchants/names': {
|
|
3967
3965
|
get: {
|
|
3968
|
-
req:
|
|
3966
|
+
req: GetIntegrationApiMerchantsNamesData;
|
|
3969
3967
|
res: {
|
|
3970
3968
|
/**
|
|
3971
3969
|
* Success
|
|
3972
3970
|
*/
|
|
3973
|
-
200:
|
|
3971
|
+
200: {
|
|
3972
|
+
[key: string]: (string);
|
|
3973
|
+
};
|
|
3974
3974
|
/**
|
|
3975
3975
|
* Bad Request
|
|
3976
3976
|
*/
|
|
@@ -3998,14 +3998,14 @@ export type $OpenApiTs = {
|
|
|
3998
3998
|
};
|
|
3999
3999
|
};
|
|
4000
4000
|
};
|
|
4001
|
-
'/integration-api/merchants/
|
|
4001
|
+
'/integration-api/merchants/{id}/ensure-exist': {
|
|
4002
4002
|
get: {
|
|
4003
|
-
req:
|
|
4003
|
+
req: GetIntegrationApiMerchantsByIdEnsureExistData;
|
|
4004
4004
|
res: {
|
|
4005
4005
|
/**
|
|
4006
4006
|
* Success
|
|
4007
4007
|
*/
|
|
4008
|
-
200:
|
|
4008
|
+
200: unknown;
|
|
4009
4009
|
/**
|
|
4010
4010
|
* Bad Request
|
|
4011
4011
|
*/
|
|
@@ -4033,9 +4033,9 @@ export type $OpenApiTs = {
|
|
|
4033
4033
|
};
|
|
4034
4034
|
};
|
|
4035
4035
|
};
|
|
4036
|
-
'/integration-api/merchants/
|
|
4036
|
+
'/integration-api/merchants/ensure-exist-many': {
|
|
4037
4037
|
get: {
|
|
4038
|
-
req:
|
|
4038
|
+
req: GetIntegrationApiMerchantsEnsureExistManyData;
|
|
4039
4039
|
res: {
|
|
4040
4040
|
/**
|
|
4041
4041
|
* Success
|
|
@@ -4068,14 +4068,14 @@ export type $OpenApiTs = {
|
|
|
4068
4068
|
};
|
|
4069
4069
|
};
|
|
4070
4070
|
};
|
|
4071
|
-
'/integration-api/merchants
|
|
4071
|
+
'/integration-api/merchants': {
|
|
4072
4072
|
get: {
|
|
4073
|
-
req:
|
|
4073
|
+
req: GetIntegrationApiMerchantsData;
|
|
4074
4074
|
res: {
|
|
4075
4075
|
/**
|
|
4076
4076
|
* Success
|
|
4077
4077
|
*/
|
|
4078
|
-
200:
|
|
4078
|
+
200: Array<UniRefund_CRMService_Merchants_MerchantProfileDto>;
|
|
4079
4079
|
/**
|
|
4080
4080
|
* Bad Request
|
|
4081
4081
|
*/
|
|
@@ -4103,14 +4103,14 @@ export type $OpenApiTs = {
|
|
|
4103
4103
|
};
|
|
4104
4104
|
};
|
|
4105
4105
|
};
|
|
4106
|
-
'/integration-api/merchants': {
|
|
4106
|
+
'/integration-api/merchants/{id}/stores': {
|
|
4107
4107
|
get: {
|
|
4108
|
-
req:
|
|
4108
|
+
req: GetIntegrationApiMerchantsByIdStoresData;
|
|
4109
4109
|
res: {
|
|
4110
4110
|
/**
|
|
4111
4111
|
* Success
|
|
4112
4112
|
*/
|
|
4113
|
-
200:
|
|
4113
|
+
200: UniRefund_CRMService_Merchants_StoreProfilePagedResultDtoIntegration;
|
|
4114
4114
|
/**
|
|
4115
4115
|
* Bad Request
|
|
4116
4116
|
*/
|
|
@@ -4138,14 +4138,14 @@ export type $OpenApiTs = {
|
|
|
4138
4138
|
};
|
|
4139
4139
|
};
|
|
4140
4140
|
};
|
|
4141
|
-
'/integration-api/merchants/{id}/
|
|
4141
|
+
'/integration-api/merchants/{id}/detail': {
|
|
4142
4142
|
get: {
|
|
4143
|
-
req:
|
|
4143
|
+
req: GetIntegrationApiMerchantsByIdDetailData;
|
|
4144
4144
|
res: {
|
|
4145
4145
|
/**
|
|
4146
4146
|
* Success
|
|
4147
4147
|
*/
|
|
4148
|
-
200:
|
|
4148
|
+
200: UniRefund_CRMService_Merchants_MerchantDetailDto;
|
|
4149
4149
|
/**
|
|
4150
4150
|
* Bad Request
|
|
4151
4151
|
*/
|
|
@@ -4173,14 +4173,14 @@ export type $OpenApiTs = {
|
|
|
4173
4173
|
};
|
|
4174
4174
|
};
|
|
4175
4175
|
};
|
|
4176
|
-
'/integration-api/merchants/
|
|
4176
|
+
'/integration-api/merchants/details-list': {
|
|
4177
4177
|
get: {
|
|
4178
|
-
req:
|
|
4178
|
+
req: GetIntegrationApiMerchantsDetailsListData;
|
|
4179
4179
|
res: {
|
|
4180
4180
|
/**
|
|
4181
4181
|
* Success
|
|
4182
4182
|
*/
|
|
4183
|
-
200: UniRefund_CRMService_Merchants_MerchantDetailDto
|
|
4183
|
+
200: Array<UniRefund_CRMService_Merchants_MerchantDetailDto>;
|
|
4184
4184
|
/**
|
|
4185
4185
|
* Bad Request
|
|
4186
4186
|
*/
|
|
@@ -4208,14 +4208,14 @@ export type $OpenApiTs = {
|
|
|
4208
4208
|
};
|
|
4209
4209
|
};
|
|
4210
4210
|
};
|
|
4211
|
-
'/
|
|
4212
|
-
|
|
4213
|
-
req:
|
|
4211
|
+
'/api/crm-service/organizations/with-components': {
|
|
4212
|
+
post: {
|
|
4213
|
+
req: PostApiCrmServiceOrganizationsWithComponentsData;
|
|
4214
4214
|
res: {
|
|
4215
4215
|
/**
|
|
4216
4216
|
* Success
|
|
4217
4217
|
*/
|
|
4218
|
-
200:
|
|
4218
|
+
200: unknown;
|
|
4219
4219
|
/**
|
|
4220
4220
|
* Bad Request
|
|
4221
4221
|
*/
|
|
@@ -4243,14 +4243,14 @@ export type $OpenApiTs = {
|
|
|
4243
4243
|
};
|
|
4244
4244
|
};
|
|
4245
4245
|
};
|
|
4246
|
-
'/api/crm-service/organizations
|
|
4247
|
-
|
|
4248
|
-
req:
|
|
4246
|
+
'/api/crm-service/organizations': {
|
|
4247
|
+
get: {
|
|
4248
|
+
req: GetApiCrmServiceOrganizationsData;
|
|
4249
4249
|
res: {
|
|
4250
4250
|
/**
|
|
4251
4251
|
* Success
|
|
4252
4252
|
*/
|
|
4253
|
-
200:
|
|
4253
|
+
200: PagedResultDto_OrganizationProfileDto;
|
|
4254
4254
|
/**
|
|
4255
4255
|
* Bad Request
|
|
4256
4256
|
*/
|
|
@@ -4278,14 +4278,14 @@ export type $OpenApiTs = {
|
|
|
4278
4278
|
};
|
|
4279
4279
|
};
|
|
4280
4280
|
};
|
|
4281
|
-
'/api/crm-service/
|
|
4281
|
+
'/api/crm-service/refund-points': {
|
|
4282
4282
|
get: {
|
|
4283
|
-
req:
|
|
4283
|
+
req: GetApiCrmServiceRefundPointsData;
|
|
4284
4284
|
res: {
|
|
4285
4285
|
/**
|
|
4286
4286
|
* Success
|
|
4287
4287
|
*/
|
|
4288
|
-
200:
|
|
4288
|
+
200: PagedResultDto_RefundPointProfileDto;
|
|
4289
4289
|
/**
|
|
4290
4290
|
* Bad Request
|
|
4291
4291
|
*/
|
|
@@ -4313,9 +4313,9 @@ export type $OpenApiTs = {
|
|
|
4313
4313
|
};
|
|
4314
4314
|
};
|
|
4315
4315
|
};
|
|
4316
|
-
'/api/crm-service/refund-points': {
|
|
4316
|
+
'/api/crm-service/refund-points/accessible': {
|
|
4317
4317
|
get: {
|
|
4318
|
-
req:
|
|
4318
|
+
req: GetApiCrmServiceRefundPointsAccessibleData;
|
|
4319
4319
|
res: {
|
|
4320
4320
|
/**
|
|
4321
4321
|
* Success
|
|
@@ -4563,7 +4563,7 @@ export type $OpenApiTs = {
|
|
|
4563
4563
|
/**
|
|
4564
4564
|
* Success
|
|
4565
4565
|
*/
|
|
4566
|
-
200:
|
|
4566
|
+
200: PagedResultDto_AffiliationTypeDetailDto;
|
|
4567
4567
|
/**
|
|
4568
4568
|
* Bad Request
|
|
4569
4569
|
*/
|
|
@@ -4801,6 +4801,41 @@ export type $OpenApiTs = {
|
|
|
4801
4801
|
};
|
|
4802
4802
|
};
|
|
4803
4803
|
};
|
|
4804
|
+
'/integration-api/refund-points/{id}/parentId-or-selfId': {
|
|
4805
|
+
get: {
|
|
4806
|
+
req: GetIntegrationApiRefundPointsByIdParentIdOrSelfIdData;
|
|
4807
|
+
res: {
|
|
4808
|
+
/**
|
|
4809
|
+
* Success
|
|
4810
|
+
*/
|
|
4811
|
+
200: string;
|
|
4812
|
+
/**
|
|
4813
|
+
* Bad Request
|
|
4814
|
+
*/
|
|
4815
|
+
400: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
4816
|
+
/**
|
|
4817
|
+
* Unauthorized
|
|
4818
|
+
*/
|
|
4819
|
+
401: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
4820
|
+
/**
|
|
4821
|
+
* Forbidden
|
|
4822
|
+
*/
|
|
4823
|
+
403: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
4824
|
+
/**
|
|
4825
|
+
* Not Found
|
|
4826
|
+
*/
|
|
4827
|
+
404: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
4828
|
+
/**
|
|
4829
|
+
* Server Error
|
|
4830
|
+
*/
|
|
4831
|
+
500: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
4832
|
+
/**
|
|
4833
|
+
* Server Error
|
|
4834
|
+
*/
|
|
4835
|
+
501: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
4836
|
+
};
|
|
4837
|
+
};
|
|
4838
|
+
};
|
|
4804
4839
|
'/integration-api/refund-points': {
|
|
4805
4840
|
get: {
|
|
4806
4841
|
req: GetIntegrationApiRefundPointsData;
|
|
@@ -5191,7 +5226,7 @@ export type $OpenApiTs = {
|
|
|
5191
5226
|
/**
|
|
5192
5227
|
* Success
|
|
5193
5228
|
*/
|
|
5194
|
-
200:
|
|
5229
|
+
200: PagedResultDto_AffiliationTypeDetailDto;
|
|
5195
5230
|
/**
|
|
5196
5231
|
* Bad Request
|
|
5197
5232
|
*/
|
|
@@ -5644,7 +5679,7 @@ export type $OpenApiTs = {
|
|
|
5644
5679
|
/**
|
|
5645
5680
|
* Success
|
|
5646
5681
|
*/
|
|
5647
|
-
200:
|
|
5682
|
+
200: PagedResultDto_AffiliationTypeDetailDto;
|
|
5648
5683
|
/**
|
|
5649
5684
|
* Bad Request
|
|
5650
5685
|
*/
|