@ayasofyazilim/saas 0.0.96 → 0.0.98
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/.github/workflows/release.yaml +3 -2
- package/CRMService/CRMServiceClient.ts +3 -0
- package/CRMService/schemas.gen.ts +66 -266
- package/CRMService/services.gen.ts +168 -13
- package/CRMService/types.gen.ts +239 -25
- package/TagService/schemas.gen.ts +330 -91
- package/TagService/services.gen.ts +86 -3
- package/TagService/types.gen.ts +245 -70
- package/package.json +1 -1
package/CRMService/types.gen.ts
CHANGED
|
@@ -97,10 +97,13 @@ export type UniRefund_CRMService_AffiliationCodes_UpdateAffiliationCodeDto = {
|
|
|
97
97
|
|
|
98
98
|
export type UniRefund_CRMService_AffiliationTypes_AffiliationTypeDetailDto = {
|
|
99
99
|
id?: string;
|
|
100
|
-
name
|
|
101
|
-
codeId
|
|
102
|
-
codeName
|
|
103
|
-
entityInformationTypeCode
|
|
100
|
+
name: string;
|
|
101
|
+
codeId: number;
|
|
102
|
+
codeName: string;
|
|
103
|
+
entityInformationTypeCode: UniRefund_CRMService_Enums_EntityInformationTypeCode;
|
|
104
|
+
isAbpUser?: boolean | null;
|
|
105
|
+
email: string;
|
|
106
|
+
telephone: string;
|
|
104
107
|
};
|
|
105
108
|
|
|
106
109
|
export type UniRefund_CRMService_AffiliationTypes_AffiliationTypeDto = {
|
|
@@ -187,7 +190,6 @@ export type UniRefund_CRMService_Customss_CreateCustomsOrganizationDto = {
|
|
|
187
190
|
} | null;
|
|
188
191
|
name: string;
|
|
189
192
|
taxpayerId: string;
|
|
190
|
-
branchId?: string | null;
|
|
191
193
|
contactInformations?: Array<UniRefund_CRMService_ContactInformationTypes_CreateContactInformationTypeDto> | null;
|
|
192
194
|
};
|
|
193
195
|
|
|
@@ -220,7 +222,6 @@ export type UniRefund_CRMService_Customss_UpdateCustomsOrganizationDto = {
|
|
|
220
222
|
name: string;
|
|
221
223
|
taxpayerId: string;
|
|
222
224
|
parentCompanyId?: string | null;
|
|
223
|
-
branchId?: string | null;
|
|
224
225
|
};
|
|
225
226
|
|
|
226
227
|
export type UniRefund_CRMService_EmailCommonDatas_CreateEmailCommonDataWithComponentsDto = {
|
|
@@ -343,6 +344,7 @@ export type UniRefund_CRMService_Merchants_CreateMerchantDto = {
|
|
|
343
344
|
typeCode: UniRefund_CRMService_Merchants_MerchantTypeCode;
|
|
344
345
|
taxOfficeId: string;
|
|
345
346
|
parentId?: string | null;
|
|
347
|
+
customerNumber?: string | null;
|
|
346
348
|
entityInformationTypes: Array<UniRefund_CRMService_Merchants_CreateMerchantEntityInformationTypeDto>;
|
|
347
349
|
};
|
|
348
350
|
|
|
@@ -361,8 +363,6 @@ export type UniRefund_CRMService_Merchants_CreateMerchantOrgnaizationDto = {
|
|
|
361
363
|
name: string;
|
|
362
364
|
taxpayerId: string;
|
|
363
365
|
legalStatusCode: string;
|
|
364
|
-
customerNumber?: string | null;
|
|
365
|
-
branchId?: string | null;
|
|
366
366
|
contactInformations: Array<UniRefund_CRMService_ContactInformationTypes_CreateContactInformationTypeDto>;
|
|
367
367
|
};
|
|
368
368
|
|
|
@@ -407,7 +407,7 @@ export type UniRefund_CRMService_Merchants_MerchantInfoDto = {
|
|
|
407
407
|
id?: string;
|
|
408
408
|
vatNumber?: string | null;
|
|
409
409
|
countryCode?: string | null;
|
|
410
|
-
|
|
410
|
+
customerNumber?: string | null;
|
|
411
411
|
};
|
|
412
412
|
|
|
413
413
|
export type UniRefund_CRMService_Merchants_MerchantNameDto = {
|
|
@@ -518,9 +518,6 @@ export type UniRefund_CRMService_Organizations_CreateOrganizationDto = {
|
|
|
518
518
|
name: string;
|
|
519
519
|
taxpayerId: string;
|
|
520
520
|
legalStatusCode: string;
|
|
521
|
-
customerNumber?: string | null;
|
|
522
|
-
branchId?: string | null;
|
|
523
|
-
parentCompanyId?: string | null;
|
|
524
521
|
contactInformations?: Array<UniRefund_CRMService_ContactInformationTypes_CreateContactInformationTypeDto> | null;
|
|
525
522
|
};
|
|
526
523
|
|
|
@@ -537,8 +534,6 @@ export type UniRefund_CRMService_Organizations_OrganizationDto = {
|
|
|
537
534
|
name?: string | null;
|
|
538
535
|
taxpayerId?: string | null;
|
|
539
536
|
legalStatusCode?: string | null;
|
|
540
|
-
customerNumber?: string | null;
|
|
541
|
-
readonly branchId?: string | null;
|
|
542
537
|
readonly countryCode?: string | null;
|
|
543
538
|
contactInformations?: Array<UniRefund_CRMService_ContactInformationTypes_ContactInformationTypeDto> | null;
|
|
544
539
|
};
|
|
@@ -557,9 +552,7 @@ export type UniRefund_CRMService_Organizations_UpdateOrganizationDto = {
|
|
|
557
552
|
name: string;
|
|
558
553
|
taxpayerId: string;
|
|
559
554
|
legalStatusCode?: string | null;
|
|
560
|
-
customerNumber?: string | null;
|
|
561
555
|
parentCompanyId?: string | null;
|
|
562
|
-
branchId?: string | null;
|
|
563
556
|
};
|
|
564
557
|
|
|
565
558
|
export type UniRefund_CRMService_PersonalSummaries_CreatePersonalSummaryDto = {
|
|
@@ -624,7 +617,6 @@ export type UniRefund_CRMService_RefundPoints_CreateRefundPointEntityInformation
|
|
|
624
617
|
export type UniRefund_CRMService_RefundPoints_CreateRefundPointOrganizationDto = {
|
|
625
618
|
name: string;
|
|
626
619
|
taxpayerId: string;
|
|
627
|
-
branchId?: string | null;
|
|
628
620
|
contactInformations: Array<UniRefund_CRMService_ContactInformationTypes_CreateContactInformationTypeDto>;
|
|
629
621
|
};
|
|
630
622
|
|
|
@@ -665,7 +657,6 @@ export type UniRefund_CRMService_RefundPoints_UpdateRefundPointOrganizationDto =
|
|
|
665
657
|
name: string;
|
|
666
658
|
taxpayerId: string;
|
|
667
659
|
parentCompanyId?: string | null;
|
|
668
|
-
branchId?: string | null;
|
|
669
660
|
};
|
|
670
661
|
|
|
671
662
|
export type UniRefund_CRMService_TaxFrees_CreateTaxFreeDto = {
|
|
@@ -690,8 +681,6 @@ export type UniRefund_CRMService_TaxFrees_CreateTaxFreeOrganizationDto = {
|
|
|
690
681
|
name: string;
|
|
691
682
|
taxpayerId: string;
|
|
692
683
|
legalStatusCode: string;
|
|
693
|
-
customerNumber?: string | null;
|
|
694
|
-
branchId?: string | null;
|
|
695
684
|
contactInformations?: Array<UniRefund_CRMService_ContactInformationTypes_CreateContactInformationTypeDto> | null;
|
|
696
685
|
};
|
|
697
686
|
|
|
@@ -741,9 +730,6 @@ export type UniRefund_CRMService_TaxOffices_CreateTaxOfficeOrganizationDto = {
|
|
|
741
730
|
} | null;
|
|
742
731
|
name: string;
|
|
743
732
|
taxpayerId: string;
|
|
744
|
-
legalStatusCode: string;
|
|
745
|
-
customerNumber?: string | null;
|
|
746
|
-
branchId?: string | null;
|
|
747
733
|
contactInformations?: Array<UniRefund_CRMService_ContactInformationTypes_CreateContactInformationTypeDto> | null;
|
|
748
734
|
};
|
|
749
735
|
|
|
@@ -771,6 +757,14 @@ export type UniRefund_CRMService_TaxOffices_TaxOfficeProfileDto = {
|
|
|
771
757
|
organizationId?: string;
|
|
772
758
|
};
|
|
773
759
|
|
|
760
|
+
export type UniRefund_CRMService_TaxOffices_UpdateTaxOfficeOrganizationDto = {
|
|
761
|
+
readonly extraProperties?: {
|
|
762
|
+
[key: string]: unknown;
|
|
763
|
+
} | null;
|
|
764
|
+
name: string;
|
|
765
|
+
taxpayerId: string;
|
|
766
|
+
};
|
|
767
|
+
|
|
774
768
|
export type UniRefund_CRMService_TelephoneTypes_CreateTelephoneTypeWithComponentsDto = {
|
|
775
769
|
readonly extraProperties?: {
|
|
776
770
|
[key: string]: unknown;
|
|
@@ -1286,6 +1280,7 @@ export type GetApiAbpApplicationLocalizationData = {
|
|
|
1286
1280
|
export type GetApiAbpApplicationLocalizationResponse = Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationDto;
|
|
1287
1281
|
|
|
1288
1282
|
export type GetApiCrmServiceAffiliationCodesData = {
|
|
1283
|
+
entityPartyTypeCode?: UniRefund_CRMService_Enums_EntityPartyTypeCode;
|
|
1289
1284
|
maxResultCount?: number;
|
|
1290
1285
|
skipCount?: number;
|
|
1291
1286
|
sorting?: string;
|
|
@@ -1380,16 +1375,25 @@ export type PostApiCrmServiceCustomsByIdAffiliationsResponse = unknown;
|
|
|
1380
1375
|
|
|
1381
1376
|
export type GetApiCrmServiceCustomsByIdAffiliationsData = {
|
|
1382
1377
|
affiliationCodeId?: number;
|
|
1378
|
+
email?: string;
|
|
1383
1379
|
entityInformationTypeCode?: UniRefund_CRMService_Enums_EntityInformationTypeCode;
|
|
1384
1380
|
id: string;
|
|
1385
1381
|
maxResultCount?: number;
|
|
1386
1382
|
name?: string;
|
|
1387
1383
|
skipCount?: number;
|
|
1388
1384
|
sorting?: string;
|
|
1385
|
+
telephone?: string;
|
|
1389
1386
|
};
|
|
1390
1387
|
|
|
1391
1388
|
export type GetApiCrmServiceCustomsByIdAffiliationsResponse = PagedResultDto_AffiliationTypeDetailDto;
|
|
1392
1389
|
|
|
1390
|
+
export type DeleteApiCrmServiceCustomsByIdAffiliationsByAffiliationIdData = {
|
|
1391
|
+
affiliationId: string;
|
|
1392
|
+
id: string;
|
|
1393
|
+
};
|
|
1394
|
+
|
|
1395
|
+
export type DeleteApiCrmServiceCustomsByIdAffiliationsByAffiliationIdResponse = unknown;
|
|
1396
|
+
|
|
1393
1397
|
export type PutApiCrmServiceCustomsByIdOrganizationsByOrganizationIdData = {
|
|
1394
1398
|
id: string;
|
|
1395
1399
|
organizationId: string;
|
|
@@ -1429,6 +1433,12 @@ export type GetApiCrmServiceCustomsByIdAffilatedIndividualsData = {
|
|
|
1429
1433
|
|
|
1430
1434
|
export type GetApiCrmServiceCustomsByIdAffilatedIndividualsResponse = Array<UniRefund_CRMService_Merchants_SubIndividualDto>;
|
|
1431
1435
|
|
|
1436
|
+
export type GetIntegrationApiCustomsByIdExistData = {
|
|
1437
|
+
id: string;
|
|
1438
|
+
};
|
|
1439
|
+
|
|
1440
|
+
export type GetIntegrationApiCustomsByIdExistResponse = unknown;
|
|
1441
|
+
|
|
1432
1442
|
export type PostApiCrmServiceIndividualsWithComponentsData = {
|
|
1433
1443
|
requestBody?: UniRefund_CRMService_Individuals_CreateIndividualDto;
|
|
1434
1444
|
};
|
|
@@ -1525,12 +1535,14 @@ export type DeleteApiCrmServiceMerchantsByIdWithComponentsResponse = unknown;
|
|
|
1525
1535
|
|
|
1526
1536
|
export type GetApiCrmServiceMerchantsByIdAffiliationsData = {
|
|
1527
1537
|
affiliationCodeId?: number;
|
|
1538
|
+
email?: string;
|
|
1528
1539
|
entityInformationTypeCode?: UniRefund_CRMService_Enums_EntityInformationTypeCode;
|
|
1529
1540
|
id: string;
|
|
1530
1541
|
maxResultCount?: number;
|
|
1531
1542
|
name?: string;
|
|
1532
1543
|
skipCount?: number;
|
|
1533
1544
|
sorting?: string;
|
|
1545
|
+
telephone?: string;
|
|
1534
1546
|
};
|
|
1535
1547
|
|
|
1536
1548
|
export type GetApiCrmServiceMerchantsByIdAffiliationsResponse = PagedResultDto_AffiliationTypeDetailDto;
|
|
@@ -1646,8 +1658,8 @@ export type GetIntegrationApiMerchantsByIdBasicInformationData = {
|
|
|
1646
1658
|
export type GetIntegrationApiMerchantsByIdBasicInformationResponse = UniRefund_CRMService_Merchants_MerchantBasicInformationDto;
|
|
1647
1659
|
|
|
1648
1660
|
export type GetIntegrationApiMerchantsInfoData = {
|
|
1649
|
-
branchId?: string;
|
|
1650
1661
|
countryCode?: string;
|
|
1662
|
+
customerNumber?: string;
|
|
1651
1663
|
vatNumber?: string;
|
|
1652
1664
|
};
|
|
1653
1665
|
|
|
@@ -1793,16 +1805,25 @@ export type PostApiCrmServiceRefundPointsByIdAffiliationsResponse = unknown;
|
|
|
1793
1805
|
|
|
1794
1806
|
export type GetApiCrmServiceRefundPointsByIdAffiliationsData = {
|
|
1795
1807
|
affiliationCodeId?: number;
|
|
1808
|
+
email?: string;
|
|
1796
1809
|
entityInformationTypeCode?: UniRefund_CRMService_Enums_EntityInformationTypeCode;
|
|
1797
1810
|
id: string;
|
|
1798
1811
|
maxResultCount?: number;
|
|
1799
1812
|
name?: string;
|
|
1800
1813
|
skipCount?: number;
|
|
1801
1814
|
sorting?: string;
|
|
1815
|
+
telephone?: string;
|
|
1802
1816
|
};
|
|
1803
1817
|
|
|
1804
1818
|
export type GetApiCrmServiceRefundPointsByIdAffiliationsResponse = PagedResultDto_AffiliationTypeDetailDto;
|
|
1805
1819
|
|
|
1820
|
+
export type DeleteApiCrmServiceRefundPointsByIdAffiliationsByAffiliationIdData = {
|
|
1821
|
+
affiliationId: string;
|
|
1822
|
+
id: string;
|
|
1823
|
+
};
|
|
1824
|
+
|
|
1825
|
+
export type DeleteApiCrmServiceRefundPointsByIdAffiliationsByAffiliationIdResponse = unknown;
|
|
1826
|
+
|
|
1806
1827
|
export type PutApiCrmServiceRefundPointsByIdOrganizationsByOrganizationIdData = {
|
|
1807
1828
|
id: string;
|
|
1808
1829
|
organizationId: string;
|
|
@@ -1932,16 +1953,25 @@ export type PostApiCrmServiceTaxFreesByIdAffiliationsResponse = unknown;
|
|
|
1932
1953
|
|
|
1933
1954
|
export type GetApiCrmServiceTaxFreesByIdAffiliationsData = {
|
|
1934
1955
|
affiliationCodeId?: number;
|
|
1956
|
+
email?: string;
|
|
1935
1957
|
entityInformationTypeCode?: UniRefund_CRMService_Enums_EntityInformationTypeCode;
|
|
1936
1958
|
id: string;
|
|
1937
1959
|
maxResultCount?: number;
|
|
1938
1960
|
name?: string;
|
|
1939
1961
|
skipCount?: number;
|
|
1940
1962
|
sorting?: string;
|
|
1963
|
+
telephone?: string;
|
|
1941
1964
|
};
|
|
1942
1965
|
|
|
1943
1966
|
export type GetApiCrmServiceTaxFreesByIdAffiliationsResponse = PagedResultDto_AffiliationTypeDetailDto;
|
|
1944
1967
|
|
|
1968
|
+
export type DeleteApiCrmServiceTaxFreesByIdAffiliationsByAffiliationIdData = {
|
|
1969
|
+
affiliationId: string;
|
|
1970
|
+
id: string;
|
|
1971
|
+
};
|
|
1972
|
+
|
|
1973
|
+
export type DeleteApiCrmServiceTaxFreesByIdAffiliationsByAffiliationIdResponse = unknown;
|
|
1974
|
+
|
|
1945
1975
|
export type PutApiCrmServiceTaxFreesByIdOrganizationsByOrganizationIdData = {
|
|
1946
1976
|
id: string;
|
|
1947
1977
|
organizationId: string;
|
|
@@ -2028,20 +2058,29 @@ export type PostApiCrmServiceTaxOfficesByIdAffiliationsResponse = unknown;
|
|
|
2028
2058
|
|
|
2029
2059
|
export type GetApiCrmServiceTaxOfficesByIdAffiliationsData = {
|
|
2030
2060
|
affiliationCodeId?: number;
|
|
2061
|
+
email?: string;
|
|
2031
2062
|
entityInformationTypeCode?: UniRefund_CRMService_Enums_EntityInformationTypeCode;
|
|
2032
2063
|
id: string;
|
|
2033
2064
|
maxResultCount?: number;
|
|
2034
2065
|
name?: string;
|
|
2035
2066
|
skipCount?: number;
|
|
2036
2067
|
sorting?: string;
|
|
2068
|
+
telephone?: string;
|
|
2037
2069
|
};
|
|
2038
2070
|
|
|
2039
2071
|
export type GetApiCrmServiceTaxOfficesByIdAffiliationsResponse = PagedResultDto_AffiliationTypeDetailDto;
|
|
2040
2072
|
|
|
2073
|
+
export type DeleteApiCrmServiceTaxOfficesByIdAffiliationsByAffiliationIdData = {
|
|
2074
|
+
affiliationId: string;
|
|
2075
|
+
id: string;
|
|
2076
|
+
};
|
|
2077
|
+
|
|
2078
|
+
export type DeleteApiCrmServiceTaxOfficesByIdAffiliationsByAffiliationIdResponse = unknown;
|
|
2079
|
+
|
|
2041
2080
|
export type PutApiCrmServiceTaxOfficesByIdOrganizationsByOrganizationIdData = {
|
|
2042
2081
|
id: string;
|
|
2043
2082
|
organizationId: string;
|
|
2044
|
-
requestBody?:
|
|
2083
|
+
requestBody?: UniRefund_CRMService_TaxOffices_UpdateTaxOfficeOrganizationDto;
|
|
2045
2084
|
};
|
|
2046
2085
|
|
|
2047
2086
|
export type PutApiCrmServiceTaxOfficesByIdOrganizationsByOrganizationIdResponse = UniRefund_CRMService_Organizations_OrganizationDto;
|
|
@@ -2709,6 +2748,41 @@ export type $OpenApiTs = {
|
|
|
2709
2748
|
};
|
|
2710
2749
|
};
|
|
2711
2750
|
};
|
|
2751
|
+
'/api/crm-service/customs/{id}/affiliations/{affiliationId}': {
|
|
2752
|
+
delete: {
|
|
2753
|
+
req: DeleteApiCrmServiceCustomsByIdAffiliationsByAffiliationIdData;
|
|
2754
|
+
res: {
|
|
2755
|
+
/**
|
|
2756
|
+
* Success
|
|
2757
|
+
*/
|
|
2758
|
+
200: unknown;
|
|
2759
|
+
/**
|
|
2760
|
+
* Bad Request
|
|
2761
|
+
*/
|
|
2762
|
+
400: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2763
|
+
/**
|
|
2764
|
+
* Unauthorized
|
|
2765
|
+
*/
|
|
2766
|
+
401: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2767
|
+
/**
|
|
2768
|
+
* Forbidden
|
|
2769
|
+
*/
|
|
2770
|
+
403: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2771
|
+
/**
|
|
2772
|
+
* Not Found
|
|
2773
|
+
*/
|
|
2774
|
+
404: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2775
|
+
/**
|
|
2776
|
+
* Server Error
|
|
2777
|
+
*/
|
|
2778
|
+
500: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2779
|
+
/**
|
|
2780
|
+
* Server Error
|
|
2781
|
+
*/
|
|
2782
|
+
501: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2783
|
+
};
|
|
2784
|
+
};
|
|
2785
|
+
};
|
|
2712
2786
|
'/api/crm-service/customs/{id}/organizations/{organizationId}': {
|
|
2713
2787
|
put: {
|
|
2714
2788
|
req: PutApiCrmServiceCustomsByIdOrganizationsByOrganizationIdData;
|
|
@@ -2884,6 +2958,41 @@ export type $OpenApiTs = {
|
|
|
2884
2958
|
};
|
|
2885
2959
|
};
|
|
2886
2960
|
};
|
|
2961
|
+
'/integration-api/customs/{id}/exist': {
|
|
2962
|
+
get: {
|
|
2963
|
+
req: GetIntegrationApiCustomsByIdExistData;
|
|
2964
|
+
res: {
|
|
2965
|
+
/**
|
|
2966
|
+
* Success
|
|
2967
|
+
*/
|
|
2968
|
+
200: unknown;
|
|
2969
|
+
/**
|
|
2970
|
+
* Bad Request
|
|
2971
|
+
*/
|
|
2972
|
+
400: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2973
|
+
/**
|
|
2974
|
+
* Unauthorized
|
|
2975
|
+
*/
|
|
2976
|
+
401: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2977
|
+
/**
|
|
2978
|
+
* Forbidden
|
|
2979
|
+
*/
|
|
2980
|
+
403: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2981
|
+
/**
|
|
2982
|
+
* Not Found
|
|
2983
|
+
*/
|
|
2984
|
+
404: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2985
|
+
/**
|
|
2986
|
+
* Server Error
|
|
2987
|
+
*/
|
|
2988
|
+
500: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2989
|
+
/**
|
|
2990
|
+
* Server Error
|
|
2991
|
+
*/
|
|
2992
|
+
501: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2993
|
+
};
|
|
2994
|
+
};
|
|
2995
|
+
};
|
|
2887
2996
|
'/api/crm-service/individuals/with-components': {
|
|
2888
2997
|
post: {
|
|
2889
2998
|
req: PostApiCrmServiceIndividualsWithComponentsData;
|
|
@@ -4591,6 +4700,41 @@ export type $OpenApiTs = {
|
|
|
4591
4700
|
};
|
|
4592
4701
|
};
|
|
4593
4702
|
};
|
|
4703
|
+
'/api/crm-service/refund-points/{id}/affiliations/{affiliationId}': {
|
|
4704
|
+
delete: {
|
|
4705
|
+
req: DeleteApiCrmServiceRefundPointsByIdAffiliationsByAffiliationIdData;
|
|
4706
|
+
res: {
|
|
4707
|
+
/**
|
|
4708
|
+
* Success
|
|
4709
|
+
*/
|
|
4710
|
+
200: unknown;
|
|
4711
|
+
/**
|
|
4712
|
+
* Bad Request
|
|
4713
|
+
*/
|
|
4714
|
+
400: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
4715
|
+
/**
|
|
4716
|
+
* Unauthorized
|
|
4717
|
+
*/
|
|
4718
|
+
401: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
4719
|
+
/**
|
|
4720
|
+
* Forbidden
|
|
4721
|
+
*/
|
|
4722
|
+
403: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
4723
|
+
/**
|
|
4724
|
+
* Not Found
|
|
4725
|
+
*/
|
|
4726
|
+
404: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
4727
|
+
/**
|
|
4728
|
+
* Server Error
|
|
4729
|
+
*/
|
|
4730
|
+
500: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
4731
|
+
/**
|
|
4732
|
+
* Server Error
|
|
4733
|
+
*/
|
|
4734
|
+
501: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
4735
|
+
};
|
|
4736
|
+
};
|
|
4737
|
+
};
|
|
4594
4738
|
'/api/crm-service/refund-points/{id}/organizations/{organizationId}': {
|
|
4595
4739
|
put: {
|
|
4596
4740
|
req: PutApiCrmServiceRefundPointsByIdOrganizationsByOrganizationIdData;
|
|
@@ -5254,6 +5398,41 @@ export type $OpenApiTs = {
|
|
|
5254
5398
|
};
|
|
5255
5399
|
};
|
|
5256
5400
|
};
|
|
5401
|
+
'/api/crm-service/tax-frees/{id}/affiliations/{affiliationId}': {
|
|
5402
|
+
delete: {
|
|
5403
|
+
req: DeleteApiCrmServiceTaxFreesByIdAffiliationsByAffiliationIdData;
|
|
5404
|
+
res: {
|
|
5405
|
+
/**
|
|
5406
|
+
* Success
|
|
5407
|
+
*/
|
|
5408
|
+
200: unknown;
|
|
5409
|
+
/**
|
|
5410
|
+
* Bad Request
|
|
5411
|
+
*/
|
|
5412
|
+
400: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
5413
|
+
/**
|
|
5414
|
+
* Unauthorized
|
|
5415
|
+
*/
|
|
5416
|
+
401: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
5417
|
+
/**
|
|
5418
|
+
* Forbidden
|
|
5419
|
+
*/
|
|
5420
|
+
403: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
5421
|
+
/**
|
|
5422
|
+
* Not Found
|
|
5423
|
+
*/
|
|
5424
|
+
404: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
5425
|
+
/**
|
|
5426
|
+
* Server Error
|
|
5427
|
+
*/
|
|
5428
|
+
500: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
5429
|
+
/**
|
|
5430
|
+
* Server Error
|
|
5431
|
+
*/
|
|
5432
|
+
501: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
5433
|
+
};
|
|
5434
|
+
};
|
|
5435
|
+
};
|
|
5257
5436
|
'/api/crm-service/tax-frees/{id}/organizations/{organizationId}': {
|
|
5258
5437
|
put: {
|
|
5259
5438
|
req: PutApiCrmServiceTaxFreesByIdOrganizationsByOrganizationIdData;
|
|
@@ -5707,6 +5886,41 @@ export type $OpenApiTs = {
|
|
|
5707
5886
|
};
|
|
5708
5887
|
};
|
|
5709
5888
|
};
|
|
5889
|
+
'/api/crm-service/tax-offices/{id}/affiliations/{affiliationId}': {
|
|
5890
|
+
delete: {
|
|
5891
|
+
req: DeleteApiCrmServiceTaxOfficesByIdAffiliationsByAffiliationIdData;
|
|
5892
|
+
res: {
|
|
5893
|
+
/**
|
|
5894
|
+
* Success
|
|
5895
|
+
*/
|
|
5896
|
+
200: unknown;
|
|
5897
|
+
/**
|
|
5898
|
+
* Bad Request
|
|
5899
|
+
*/
|
|
5900
|
+
400: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
5901
|
+
/**
|
|
5902
|
+
* Unauthorized
|
|
5903
|
+
*/
|
|
5904
|
+
401: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
5905
|
+
/**
|
|
5906
|
+
* Forbidden
|
|
5907
|
+
*/
|
|
5908
|
+
403: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
5909
|
+
/**
|
|
5910
|
+
* Not Found
|
|
5911
|
+
*/
|
|
5912
|
+
404: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
5913
|
+
/**
|
|
5914
|
+
* Server Error
|
|
5915
|
+
*/
|
|
5916
|
+
500: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
5917
|
+
/**
|
|
5918
|
+
* Server Error
|
|
5919
|
+
*/
|
|
5920
|
+
501: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
5921
|
+
};
|
|
5922
|
+
};
|
|
5923
|
+
};
|
|
5710
5924
|
'/api/crm-service/tax-offices/{id}/organizations/{organizationId}': {
|
|
5711
5925
|
put: {
|
|
5712
5926
|
req: PutApiCrmServiceTaxOfficesByIdOrganizationsByOrganizationIdData;
|