@ayasofyazilim/saas 0.0.84 → 0.0.85
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 +6 -0
- package/CRMService/schemas.gen.ts +73 -0
- package/CRMService/services.gen.ts +173 -75
- package/CRMService/types.gen.ts +225 -80
- package/package.json +1 -1
|
@@ -9,6 +9,7 @@ import { AbpApplicationLocalizationService } from './services.gen';
|
|
|
9
9
|
import { AffiliationCodeService } from './services.gen';
|
|
10
10
|
import { CustomsService } from './services.gen';
|
|
11
11
|
import { IndividualService } from './services.gen';
|
|
12
|
+
import { IndividualIntegrationService } from './services.gen';
|
|
12
13
|
import { MerchantService } from './services.gen';
|
|
13
14
|
import { MerchantIntegrationService } from './services.gen';
|
|
14
15
|
import { OrganizationService } from './services.gen';
|
|
@@ -16,6 +17,7 @@ import { RefundPointService } from './services.gen';
|
|
|
16
17
|
import { RefundPointIntegrationService } from './services.gen';
|
|
17
18
|
import { TaxFreeService } from './services.gen';
|
|
18
19
|
import { TaxOfficeService } from './services.gen';
|
|
20
|
+
import { TaxOfficeIntegrationService } from './services.gen';
|
|
19
21
|
|
|
20
22
|
type HttpRequestConstructor = new (config: OpenAPIConfig) => BaseHttpRequest;
|
|
21
23
|
|
|
@@ -27,6 +29,7 @@ export class CRMServiceClient {
|
|
|
27
29
|
public readonly affiliationCode: AffiliationCodeService;
|
|
28
30
|
public readonly customs: CustomsService;
|
|
29
31
|
public readonly individual: IndividualService;
|
|
32
|
+
public readonly individualIntegration: IndividualIntegrationService;
|
|
30
33
|
public readonly merchant: MerchantService;
|
|
31
34
|
public readonly merchantIntegration: MerchantIntegrationService;
|
|
32
35
|
public readonly organization: OrganizationService;
|
|
@@ -34,6 +37,7 @@ export class CRMServiceClient {
|
|
|
34
37
|
public readonly refundPointIntegration: RefundPointIntegrationService;
|
|
35
38
|
public readonly taxFree: TaxFreeService;
|
|
36
39
|
public readonly taxOffice: TaxOfficeService;
|
|
40
|
+
public readonly taxOfficeIntegration: TaxOfficeIntegrationService;
|
|
37
41
|
|
|
38
42
|
public readonly request: BaseHttpRequest;
|
|
39
43
|
|
|
@@ -60,6 +64,7 @@ export class CRMServiceClient {
|
|
|
60
64
|
this.affiliationCode = new AffiliationCodeService(this.request);
|
|
61
65
|
this.customs = new CustomsService(this.request);
|
|
62
66
|
this.individual = new IndividualService(this.request);
|
|
67
|
+
this.individualIntegration = new IndividualIntegrationService(this.request);
|
|
63
68
|
this.merchant = new MerchantService(this.request);
|
|
64
69
|
this.merchantIntegration = new MerchantIntegrationService(this.request);
|
|
65
70
|
this.organization = new OrganizationService(this.request);
|
|
@@ -67,5 +72,6 @@ export class CRMServiceClient {
|
|
|
67
72
|
this.refundPointIntegration = new RefundPointIntegrationService(this.request);
|
|
68
73
|
this.taxFree = new TaxFreeService(this.request);
|
|
69
74
|
this.taxOffice = new TaxOfficeService(this.request);
|
|
75
|
+
this.taxOfficeIntegration = new TaxOfficeIntegrationService(this.request);
|
|
70
76
|
}
|
|
71
77
|
}
|
|
@@ -549,6 +549,10 @@ export const $PagedResultDto_TaxFreeProfileDto = {
|
|
|
549
549
|
format: 'uuid',
|
|
550
550
|
nullable: true
|
|
551
551
|
},
|
|
552
|
+
parentName: {
|
|
553
|
+
type: 'string',
|
|
554
|
+
nullable: true
|
|
555
|
+
},
|
|
552
556
|
organizationId: {
|
|
553
557
|
type: 'string',
|
|
554
558
|
format: 'uuid'
|
|
@@ -1948,6 +1952,11 @@ export const $UniRefund_CRMService_Customss_CustomsDto = {
|
|
|
1948
1952
|
format: 'date-time',
|
|
1949
1953
|
nullable: true
|
|
1950
1954
|
},
|
|
1955
|
+
parentId: {
|
|
1956
|
+
type: 'string',
|
|
1957
|
+
format: 'uuid',
|
|
1958
|
+
nullable: true
|
|
1959
|
+
},
|
|
1951
1960
|
entityInformations: {
|
|
1952
1961
|
type: 'array',
|
|
1953
1962
|
items: {
|
|
@@ -8612,6 +8621,29 @@ export const $UniRefund_CRMService_Merchants_StoreProfileDto = {
|
|
|
8612
8621
|
additionalProperties: false
|
|
8613
8622
|
} as const;
|
|
8614
8623
|
|
|
8624
|
+
export const $UniRefund_CRMService_Merchants_StoreProfileDtoIntegration = {
|
|
8625
|
+
type: 'object',
|
|
8626
|
+
properties: {
|
|
8627
|
+
id: {
|
|
8628
|
+
type: 'string',
|
|
8629
|
+
format: 'uuid'
|
|
8630
|
+
},
|
|
8631
|
+
name: {
|
|
8632
|
+
type: 'string',
|
|
8633
|
+
nullable: true
|
|
8634
|
+
},
|
|
8635
|
+
fullAddress: {
|
|
8636
|
+
type: 'string',
|
|
8637
|
+
nullable: true
|
|
8638
|
+
},
|
|
8639
|
+
manager: {
|
|
8640
|
+
type: 'string',
|
|
8641
|
+
nullable: true
|
|
8642
|
+
}
|
|
8643
|
+
},
|
|
8644
|
+
additionalProperties: false
|
|
8645
|
+
} as const;
|
|
8646
|
+
|
|
8615
8647
|
export const $UniRefund_CRMService_Merchants_StoreProfilePagedResultDto = {
|
|
8616
8648
|
type: 'object',
|
|
8617
8649
|
properties: {
|
|
@@ -8650,6 +8682,43 @@ export const $UniRefund_CRMService_Merchants_StoreProfilePagedResultDto = {
|
|
|
8650
8682
|
additionalProperties: false
|
|
8651
8683
|
} as const;
|
|
8652
8684
|
|
|
8685
|
+
export const $UniRefund_CRMService_Merchants_StoreProfilePagedResultDtoIntegration = {
|
|
8686
|
+
type: 'object',
|
|
8687
|
+
properties: {
|
|
8688
|
+
items: {
|
|
8689
|
+
type: 'array',
|
|
8690
|
+
items: {
|
|
8691
|
+
type: 'object',
|
|
8692
|
+
properties: {
|
|
8693
|
+
id: {
|
|
8694
|
+
type: 'string',
|
|
8695
|
+
format: 'uuid'
|
|
8696
|
+
},
|
|
8697
|
+
name: {
|
|
8698
|
+
type: 'string',
|
|
8699
|
+
nullable: true
|
|
8700
|
+
},
|
|
8701
|
+
fullAddress: {
|
|
8702
|
+
type: 'string',
|
|
8703
|
+
nullable: true
|
|
8704
|
+
},
|
|
8705
|
+
manager: {
|
|
8706
|
+
type: 'string',
|
|
8707
|
+
nullable: true
|
|
8708
|
+
}
|
|
8709
|
+
},
|
|
8710
|
+
additionalProperties: false
|
|
8711
|
+
},
|
|
8712
|
+
nullable: true
|
|
8713
|
+
},
|
|
8714
|
+
totalCount: {
|
|
8715
|
+
type: 'integer',
|
|
8716
|
+
format: 'int64'
|
|
8717
|
+
}
|
|
8718
|
+
},
|
|
8719
|
+
additionalProperties: false
|
|
8720
|
+
} as const;
|
|
8721
|
+
|
|
8653
8722
|
export const $UniRefund_CRMService_Merchants_SubIndividualDto = {
|
|
8654
8723
|
required: ['affiliationTypeCode', 'name'],
|
|
8655
8724
|
type: 'object',
|
|
@@ -12965,6 +13034,10 @@ export const $UniRefund_CRMService_TaxFrees_TaxFreeProfileDto = {
|
|
|
12965
13034
|
format: 'uuid',
|
|
12966
13035
|
nullable: true
|
|
12967
13036
|
},
|
|
13037
|
+
parentName: {
|
|
13038
|
+
type: 'string',
|
|
13039
|
+
nullable: true
|
|
13040
|
+
},
|
|
12968
13041
|
organizationId: {
|
|
12969
13042
|
type: 'string',
|
|
12970
13043
|
format: 'uuid'
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
import type { CancelablePromise } from './core/CancelablePromise';
|
|
4
4
|
import type { BaseHttpRequest } from './core/BaseHttpRequest';
|
|
5
|
-
import type { GetApiAbpApiDefinitionData, GetApiAbpApiDefinitionResponse, GetApiAbpApplicationConfigurationData, GetApiAbpApplicationConfigurationResponse, GetApiAbpApplicationLocalizationData, GetApiAbpApplicationLocalizationResponse, GetApiCrmServiceAffiliationCodesData, GetApiCrmServiceAffiliationCodesResponse, PostApiCrmServiceAffiliationCodesData, PostApiCrmServiceAffiliationCodesResponse, GetApiCrmServiceAffiliationCodesByIdData, GetApiCrmServiceAffiliationCodesByIdResponse, PutApiCrmServiceAffiliationCodesByIdData, PutApiCrmServiceAffiliationCodesByIdResponse, DeleteApiCrmServiceAffiliationCodesByIdData, DeleteApiCrmServiceAffiliationCodesByIdResponse, PostApiCrmServiceAffiliationCodesByIdTranslationData, PostApiCrmServiceAffiliationCodesByIdTranslationResponse, PutApiCrmServiceAffiliationCodesByIdTranslationData, PutApiCrmServiceAffiliationCodesByIdTranslationResponse, GetApiCrmServiceAffiliationCodesByIdExistByIdAsyncData, GetApiCrmServiceAffiliationCodesByIdExistByIdAsyncResponse, GetApiCrmServiceCustomsData, GetApiCrmServiceCustomsResponse, GetApiCrmServiceCustomsByIdDetailData, GetApiCrmServiceCustomsByIdDetailResponse, GetApiCrmServiceCustomsByIdSubCustomsData, GetApiCrmServiceCustomsByIdSubCustomsResponse, PostApiCrmServiceCustomsWithComponentsData, PostApiCrmServiceCustomsWithComponentsResponse, DeleteApiCrmServiceCustomsByIdWithComponentsData, DeleteApiCrmServiceCustomsByIdWithComponentsResponse, PostApiCrmServiceCustomsByIdAffiliationsData, PostApiCrmServiceCustomsByIdAffiliationsResponse, GetApiCrmServiceCustomsByIdAffiliationsData, GetApiCrmServiceCustomsByIdAffiliationsResponse, PutApiCrmServiceCustomsByIdOrganizationsByOrganizationIdData, PutApiCrmServiceCustomsByIdOrganizationsByOrganizationIdResponse, PutApiCrmServiceCustomsByIdTelephonesByTelephoneIdData, PutApiCrmServiceCustomsByIdTelephonesByTelephoneIdResponse, PutApiCrmServiceCustomsByIdAddressesByAddressIdData, PutApiCrmServiceCustomsByIdAddressesByAddressIdResponse, PutApiCrmServiceCustomsByIdEmailsByEmailIdData, PutApiCrmServiceCustomsByIdEmailsByEmailIdResponse, GetApiCrmServiceCustomsByIdAffilatedIndividualsData, GetApiCrmServiceCustomsByIdAffilatedIndividualsResponse, PostApiCrmServiceIndividualsWithComponentsData, PostApiCrmServiceIndividualsWithComponentsResponse, DeleteApiCrmServiceIndividualsByIdData, DeleteApiCrmServiceIndividualsByIdResponse, GetApiCrmServiceIndividualsByIdData, GetApiCrmServiceIndividualsByIdResponse, GetApiCrmServiceIndividualsData, GetApiCrmServiceIndividualsResponse, GetApiCrmServiceIndividualsUserDevicesNamesData, GetApiCrmServiceIndividualsUserDevicesNamesResponse, GetApiCrmServiceIndividualsAllUserDevicesNamesData, GetApiCrmServiceIndividualsAllUserDevicesNamesResponse, GetApiCrmServiceIndividualsByIdAffiliationsData, GetApiCrmServiceIndividualsByIdAffiliationsResponse, GetApiCrmServiceMerchantsData, GetApiCrmServiceMerchantsResponse, GetApiCrmServiceMerchantsByIdData, GetApiCrmServiceMerchantsByIdResponse, PutApiCrmServiceMerchantsByIdData, PutApiCrmServiceMerchantsByIdResponse, GetApiCrmServiceMerchantsByIdDetailData, GetApiCrmServiceMerchantsByIdDetailResponse, GetApiCrmServiceMerchantsByIdSubMerchantsData, GetApiCrmServiceMerchantsByIdSubMerchantsResponse, GetApiCrmServiceMerchantsByIdAffiliatedIndividualsData, GetApiCrmServiceMerchantsByIdAffiliatedIndividualsResponse, PostApiCrmServiceMerchantsByIdAffiliatedIndividualsData, PostApiCrmServiceMerchantsByIdAffiliatedIndividualsResponse, PostApiCrmServiceMerchantsWithComponentsData, PostApiCrmServiceMerchantsWithComponentsResponse, DeleteApiCrmServiceMerchantsByIdWithComponentsData, DeleteApiCrmServiceMerchantsByIdWithComponentsResponse, GetApiCrmServiceMerchantsByIdAffiliationsData, GetApiCrmServiceMerchantsByIdAffiliationsResponse, PostApiCrmServiceMerchantsByIdAffiliationsData, PostApiCrmServiceMerchantsByIdAffiliationsResponse, DeleteApiCrmServiceMerchantsByIdAffiliationsByAffiliationIdData, DeleteApiCrmServiceMerchantsByIdAffiliationsByAffiliationIdResponse, PutApiCrmServiceMerchantsByIdAffiliationsByAffiliationIdData, PutApiCrmServiceMerchantsByIdAffiliationsByAffiliationIdResponse, PutApiCrmServiceMerchantsByIdOrganizationsByOrganizationIdData, PutApiCrmServiceMerchantsByIdOrganizationsByOrganizationIdResponse, PutApiCrmServiceMerchantsByIdAffiliatedIndividualsByIndividualIdData, PutApiCrmServiceMerchantsByIdAffiliatedIndividualsByIndividualIdResponse, PostApiCrmServiceMerchantsBulkProductGroupMerchantsData, PostApiCrmServiceMerchantsBulkProductGroupMerchantsResponse, GetApiCrmServiceMerchantsByIdTelephonesData, GetApiCrmServiceMerchantsByIdTelephonesResponse, PutApiCrmServiceMerchantsByIdTelephonesByTelephoneIdData, PutApiCrmServiceMerchantsByIdTelephonesByTelephoneIdResponse, GetApiCrmServiceMerchantsByIdAddressesData, GetApiCrmServiceMerchantsByIdAddressesResponse, PutApiCrmServiceMerchantsByIdAddressesByAddressIdData, PutApiCrmServiceMerchantsByIdAddressesByAddressIdResponse, GetApiCrmServiceMerchantsByIdEmailsData, GetApiCrmServiceMerchantsByIdEmailsResponse, PutApiCrmServiceMerchantsByIdEmailsByEmailIdData, PutApiCrmServiceMerchantsByIdEmailsByEmailIdResponse, PutApiCrmServiceMerchantsByIdIndividualByIndividualIdNameByNameIdData, PutApiCrmServiceMerchantsByIdIndividualByIndividualIdNameByNameIdResponse, PutApiCrmServiceMerchantsByIdIndividualByIndividualIdPersonalSummaryByPersonalSummaryIdData, PutApiCrmServiceMerchantsByIdIndividualByIndividualIdPersonalSummaryByPersonalSummaryIdResponse, GetIntegrationApiMerchantsByIdBasicInformationData, GetIntegrationApiMerchantsByIdBasicInformationResponse, GetIntegrationApiMerchantsInfoData, GetIntegrationApiMerchantsInfoResponse, GetIntegrationApiMerchantsByIdEnsureExistData, GetIntegrationApiMerchantsByIdEnsureExistResponse, GetIntegrationApiMerchantsData, GetIntegrationApiMerchantsResponse, GetIntegrationApiMerchantsByIdStoresData, GetIntegrationApiMerchantsByIdStoresResponse, GetIntegrationApiMerchantsByIdDetailData, GetIntegrationApiMerchantsByIdDetailResponse, GetIntegrationApiMerchantsDetailsListData, GetIntegrationApiMerchantsDetailsListResponse, PostApiCrmServiceOrganizationsWithComponentsData, PostApiCrmServiceOrganizationsWithComponentsResponse, GetApiCrmServiceOrganizationsData, GetApiCrmServiceOrganizationsResponse, GetApiCrmServiceRefundPointsData, GetApiCrmServiceRefundPointsResponse, GetApiCrmServiceRefundPointsByIdDetailData, GetApiCrmServiceRefundPointsByIdDetailResponse, GetApiCrmServiceRefundPointsByIdBasicInformationData, GetApiCrmServiceRefundPointsByIdBasicInformationResponse, GetApiCrmServiceRefundPointsByIdSubRefundPointsData, GetApiCrmServiceRefundPointsByIdSubRefundPointsResponse, PostApiCrmServiceRefundPointsWithComponentsData, PostApiCrmServiceRefundPointsWithComponentsResponse, DeleteApiCrmServiceRefundPointsByIdWithComponentsData, DeleteApiCrmServiceRefundPointsByIdWithComponentsResponse, PostApiCrmServiceRefundPointsByIdAffiliationsData, PostApiCrmServiceRefundPointsByIdAffiliationsResponse, GetApiCrmServiceRefundPointsByIdAffiliationsData, GetApiCrmServiceRefundPointsByIdAffiliationsResponse, PutApiCrmServiceRefundPointsByIdOrganizationsByOrganizationIdData, PutApiCrmServiceRefundPointsByIdOrganizationsByOrganizationIdResponse, PutApiCrmServiceRefundPointsByIdTelephonesByTelephoneIdData, PutApiCrmServiceRefundPointsByIdTelephonesByTelephoneIdResponse, PutApiCrmServiceRefundPointsByIdAddressesByAddressIdData, PutApiCrmServiceRefundPointsByIdAddressesByAddressIdResponse, PutApiCrmServiceRefundPointsByIdEmailsByEmailIdData, PutApiCrmServiceRefundPointsByIdEmailsByEmailIdResponse, GetApiCrmServiceRefundPointsByIdExistData, GetApiCrmServiceRefundPointsByIdExistResponse, GetApiCrmServiceRefundPointsRefundPointNamesData, GetApiCrmServiceRefundPointsRefundPointNamesResponse, GetApiCrmServiceRefundPointsByIdAffiliatedIndividualData, GetApiCrmServiceRefundPointsByIdAffiliatedIndividualResponse, GetIntegrationApiRefundPointsData, GetIntegrationApiRefundPointsResponse, GetApiCrmServiceTaxFreesData, GetApiCrmServiceTaxFreesResponse, GetApiCrmServiceTaxFreesByIdDetailData, GetApiCrmServiceTaxFreesByIdDetailResponse, GetApiCrmServiceTaxFreesByIdSubTaxFreeData, GetApiCrmServiceTaxFreesByIdSubTaxFreeResponse, PostApiCrmServiceTaxFreesWithComponentsData, PostApiCrmServiceTaxFreesWithComponentsResponse, DeleteApiCrmServiceTaxFreesByIdWithComponentsData, DeleteApiCrmServiceTaxFreesByIdWithComponentsResponse, PostApiCrmServiceTaxFreesByIdAffiliationsData, PostApiCrmServiceTaxFreesByIdAffiliationsResponse, GetApiCrmServiceTaxFreesByIdAffiliationsData, GetApiCrmServiceTaxFreesByIdAffiliationsResponse, PutApiCrmServiceTaxFreesByIdOrganizationsByOrganizationIdData, PutApiCrmServiceTaxFreesByIdOrganizationsByOrganizationIdResponse, PutApiCrmServiceTaxFreesByIdTelephonesByTelephoneIdData, PutApiCrmServiceTaxFreesByIdTelephonesByTelephoneIdResponse, PutApiCrmServiceTaxFreesByIdAddressesByAddressIdData, PutApiCrmServiceTaxFreesByIdAddressesByAddressIdResponse, PutApiCrmServiceTaxFreesByIdEmailsByEmailIdData, PutApiCrmServiceTaxFreesByIdEmailsByEmailIdResponse, GetApiCrmServiceTaxFreesByIdAffiliatedIndividualsData, GetApiCrmServiceTaxFreesByIdAffiliatedIndividualsResponse, GetApiCrmServiceTaxOfficesData, GetApiCrmServiceTaxOfficesResponse, GetApiCrmServiceTaxOfficesByIdData, GetApiCrmServiceTaxOfficesByIdResponse, GetApiCrmServiceTaxOfficesByIdDetailData, GetApiCrmServiceTaxOfficesByIdDetailResponse, GetApiCrmServiceTaxOfficesByIdSubTaxOfficesData, GetApiCrmServiceTaxOfficesByIdSubTaxOfficesResponse, PostApiCrmServiceTaxOfficesWithComponentsData, PostApiCrmServiceTaxOfficesWithComponentsResponse, DeleteApiCrmServiceTaxOfficesByIdWithComponentsData, DeleteApiCrmServiceTaxOfficesByIdWithComponentsResponse, PostApiCrmServiceTaxOfficesByIdAffiliationsData, PostApiCrmServiceTaxOfficesByIdAffiliationsResponse, GetApiCrmServiceTaxOfficesByIdAffiliationsData, GetApiCrmServiceTaxOfficesByIdAffiliationsResponse, PutApiCrmServiceTaxOfficesByIdOrganizationsByOrganizationIdData, PutApiCrmServiceTaxOfficesByIdOrganizationsByOrganizationIdResponse, PutApiCrmServiceTaxOfficesByIdTelephonesByTelephoneIdData, PutApiCrmServiceTaxOfficesByIdTelephonesByTelephoneIdResponse, PutApiCrmServiceTaxOfficesByIdAddressesByAddressIdData, PutApiCrmServiceTaxOfficesByIdAddressesByAddressIdResponse, PutApiCrmServiceTaxOfficesByIdEmailsByEmailIdData, PutApiCrmServiceTaxOfficesByIdEmailsByEmailIdResponse, GetApiCrmServiceTaxOfficesByIdAnyData, GetApiCrmServiceTaxOfficesByIdAnyResponse, GetApiCrmServiceTaxOfficesByIdAffiliatedIndividualsData, GetApiCrmServiceTaxOfficesByIdAffiliatedIndividualsResponse } from './types.gen';
|
|
5
|
+
import type { GetApiAbpApiDefinitionData, GetApiAbpApiDefinitionResponse, GetApiAbpApplicationConfigurationData, GetApiAbpApplicationConfigurationResponse, GetApiAbpApplicationLocalizationData, GetApiAbpApplicationLocalizationResponse, GetApiCrmServiceAffiliationCodesData, GetApiCrmServiceAffiliationCodesResponse, PostApiCrmServiceAffiliationCodesData, PostApiCrmServiceAffiliationCodesResponse, GetApiCrmServiceAffiliationCodesByIdData, GetApiCrmServiceAffiliationCodesByIdResponse, PutApiCrmServiceAffiliationCodesByIdData, PutApiCrmServiceAffiliationCodesByIdResponse, DeleteApiCrmServiceAffiliationCodesByIdData, DeleteApiCrmServiceAffiliationCodesByIdResponse, PostApiCrmServiceAffiliationCodesByIdTranslationData, PostApiCrmServiceAffiliationCodesByIdTranslationResponse, PutApiCrmServiceAffiliationCodesByIdTranslationData, PutApiCrmServiceAffiliationCodesByIdTranslationResponse, GetApiCrmServiceAffiliationCodesByIdExistByIdAsyncData, GetApiCrmServiceAffiliationCodesByIdExistByIdAsyncResponse, GetApiCrmServiceCustomsData, GetApiCrmServiceCustomsResponse, GetApiCrmServiceCustomsByIdDetailData, GetApiCrmServiceCustomsByIdDetailResponse, GetApiCrmServiceCustomsByIdSubCustomsData, GetApiCrmServiceCustomsByIdSubCustomsResponse, PostApiCrmServiceCustomsWithComponentsData, PostApiCrmServiceCustomsWithComponentsResponse, DeleteApiCrmServiceCustomsByIdWithComponentsData, DeleteApiCrmServiceCustomsByIdWithComponentsResponse, PostApiCrmServiceCustomsByIdAffiliationsData, PostApiCrmServiceCustomsByIdAffiliationsResponse, GetApiCrmServiceCustomsByIdAffiliationsData, GetApiCrmServiceCustomsByIdAffiliationsResponse, PutApiCrmServiceCustomsByIdOrganizationsByOrganizationIdData, PutApiCrmServiceCustomsByIdOrganizationsByOrganizationIdResponse, PutApiCrmServiceCustomsByIdTelephonesByTelephoneIdData, PutApiCrmServiceCustomsByIdTelephonesByTelephoneIdResponse, PutApiCrmServiceCustomsByIdAddressesByAddressIdData, PutApiCrmServiceCustomsByIdAddressesByAddressIdResponse, PutApiCrmServiceCustomsByIdEmailsByEmailIdData, PutApiCrmServiceCustomsByIdEmailsByEmailIdResponse, GetApiCrmServiceCustomsByIdAffilatedIndividualsData, GetApiCrmServiceCustomsByIdAffilatedIndividualsResponse, PostApiCrmServiceIndividualsWithComponentsData, PostApiCrmServiceIndividualsWithComponentsResponse, DeleteApiCrmServiceIndividualsByIdData, DeleteApiCrmServiceIndividualsByIdResponse, GetApiCrmServiceIndividualsByIdData, GetApiCrmServiceIndividualsByIdResponse, GetApiCrmServiceIndividualsData, GetApiCrmServiceIndividualsResponse, GetApiCrmServiceIndividualsByIdAffiliationsData, GetApiCrmServiceIndividualsByIdAffiliationsResponse, GetIntegrationApiIndividualsUserDevicesNamesData, GetIntegrationApiIndividualsUserDevicesNamesResponse, GetIntegrationApiIndividualsAllUserDevicesNamesData, GetIntegrationApiIndividualsAllUserDevicesNamesResponse, GetApiCrmServiceMerchantsData, GetApiCrmServiceMerchantsResponse, GetApiCrmServiceMerchantsByIdData, GetApiCrmServiceMerchantsByIdResponse, PutApiCrmServiceMerchantsByIdData, PutApiCrmServiceMerchantsByIdResponse, GetApiCrmServiceMerchantsByIdDetailData, GetApiCrmServiceMerchantsByIdDetailResponse, GetApiCrmServiceMerchantsByIdSubMerchantsData, GetApiCrmServiceMerchantsByIdSubMerchantsResponse, GetApiCrmServiceMerchantsByIdAffiliatedIndividualsData, GetApiCrmServiceMerchantsByIdAffiliatedIndividualsResponse, PostApiCrmServiceMerchantsByIdAffiliatedIndividualsData, PostApiCrmServiceMerchantsByIdAffiliatedIndividualsResponse, PostApiCrmServiceMerchantsWithComponentsData, PostApiCrmServiceMerchantsWithComponentsResponse, DeleteApiCrmServiceMerchantsByIdWithComponentsData, DeleteApiCrmServiceMerchantsByIdWithComponentsResponse, GetApiCrmServiceMerchantsByIdAffiliationsData, GetApiCrmServiceMerchantsByIdAffiliationsResponse, PostApiCrmServiceMerchantsByIdAffiliationsData, PostApiCrmServiceMerchantsByIdAffiliationsResponse, DeleteApiCrmServiceMerchantsByIdAffiliationsByAffiliationIdData, DeleteApiCrmServiceMerchantsByIdAffiliationsByAffiliationIdResponse, PutApiCrmServiceMerchantsByIdAffiliationsByAffiliationIdData, PutApiCrmServiceMerchantsByIdAffiliationsByAffiliationIdResponse, PutApiCrmServiceMerchantsByIdOrganizationsByOrganizationIdData, PutApiCrmServiceMerchantsByIdOrganizationsByOrganizationIdResponse, PutApiCrmServiceMerchantsByIdAffiliatedIndividualsByIndividualIdData, PutApiCrmServiceMerchantsByIdAffiliatedIndividualsByIndividualIdResponse, PostApiCrmServiceMerchantsBulkProductGroupMerchantsData, PostApiCrmServiceMerchantsBulkProductGroupMerchantsResponse, GetApiCrmServiceMerchantsByIdTelephonesData, GetApiCrmServiceMerchantsByIdTelephonesResponse, PutApiCrmServiceMerchantsByIdTelephonesByTelephoneIdData, PutApiCrmServiceMerchantsByIdTelephonesByTelephoneIdResponse, GetApiCrmServiceMerchantsByIdAddressesData, GetApiCrmServiceMerchantsByIdAddressesResponse, PutApiCrmServiceMerchantsByIdAddressesByAddressIdData, PutApiCrmServiceMerchantsByIdAddressesByAddressIdResponse, GetApiCrmServiceMerchantsByIdEmailsData, GetApiCrmServiceMerchantsByIdEmailsResponse, PutApiCrmServiceMerchantsByIdEmailsByEmailIdData, PutApiCrmServiceMerchantsByIdEmailsByEmailIdResponse, PutApiCrmServiceMerchantsByIdIndividualByIndividualIdNameByNameIdData, PutApiCrmServiceMerchantsByIdIndividualByIndividualIdNameByNameIdResponse, PutApiCrmServiceMerchantsByIdIndividualByIndividualIdPersonalSummaryByPersonalSummaryIdData, PutApiCrmServiceMerchantsByIdIndividualByIndividualIdPersonalSummaryByPersonalSummaryIdResponse, GetIntegrationApiMerchantsByIdBasicInformationData, GetIntegrationApiMerchantsByIdBasicInformationResponse, GetIntegrationApiMerchantsInfoData, GetIntegrationApiMerchantsInfoResponse, GetIntegrationApiMerchantsByIdEnsureExistData, GetIntegrationApiMerchantsByIdEnsureExistResponse, GetIntegrationApiMerchantsEnsureExistManyData, GetIntegrationApiMerchantsEnsureExistManyResponse, GetIntegrationApiMerchantsData, GetIntegrationApiMerchantsResponse, GetIntegrationApiMerchantsByIdStoresData, GetIntegrationApiMerchantsByIdStoresResponse, GetIntegrationApiMerchantsByIdDetailData, GetIntegrationApiMerchantsByIdDetailResponse, GetIntegrationApiMerchantsDetailsListData, GetIntegrationApiMerchantsDetailsListResponse, PostApiCrmServiceOrganizationsWithComponentsData, PostApiCrmServiceOrganizationsWithComponentsResponse, GetApiCrmServiceOrganizationsData, GetApiCrmServiceOrganizationsResponse, GetApiCrmServiceRefundPointsData, GetApiCrmServiceRefundPointsResponse, GetApiCrmServiceRefundPointsByIdDetailData, GetApiCrmServiceRefundPointsByIdDetailResponse, GetApiCrmServiceRefundPointsByIdSubRefundPointsData, GetApiCrmServiceRefundPointsByIdSubRefundPointsResponse, PostApiCrmServiceRefundPointsWithComponentsData, PostApiCrmServiceRefundPointsWithComponentsResponse, DeleteApiCrmServiceRefundPointsByIdWithComponentsData, DeleteApiCrmServiceRefundPointsByIdWithComponentsResponse, PostApiCrmServiceRefundPointsByIdAffiliationsData, PostApiCrmServiceRefundPointsByIdAffiliationsResponse, GetApiCrmServiceRefundPointsByIdAffiliationsData, GetApiCrmServiceRefundPointsByIdAffiliationsResponse, PutApiCrmServiceRefundPointsByIdOrganizationsByOrganizationIdData, PutApiCrmServiceRefundPointsByIdOrganizationsByOrganizationIdResponse, PutApiCrmServiceRefundPointsByIdTelephonesByTelephoneIdData, PutApiCrmServiceRefundPointsByIdTelephonesByTelephoneIdResponse, PutApiCrmServiceRefundPointsByIdAddressesByAddressIdData, PutApiCrmServiceRefundPointsByIdAddressesByAddressIdResponse, PutApiCrmServiceRefundPointsByIdEmailsByEmailIdData, PutApiCrmServiceRefundPointsByIdEmailsByEmailIdResponse, GetApiCrmServiceRefundPointsByIdAffiliatedIndividualData, GetApiCrmServiceRefundPointsByIdAffiliatedIndividualResponse, GetIntegrationApiRefundPointsData, GetIntegrationApiRefundPointsResponse, GetIntegrationApiRefundPointsByIdDetailForRefundData, GetIntegrationApiRefundPointsByIdDetailForRefundResponse, GetIntegrationApiRefundPointsRefundPointNamesData, GetIntegrationApiRefundPointsRefundPointNamesResponse, GetIntegrationApiRefundPointsByIdExistData, GetIntegrationApiRefundPointsByIdExistResponse, GetIntegrationApiRefundPointsByIdBasicInformationData, GetIntegrationApiRefundPointsByIdBasicInformationResponse, GetApiCrmServiceTaxFreesData, GetApiCrmServiceTaxFreesResponse, GetApiCrmServiceTaxFreesByIdDetailData, GetApiCrmServiceTaxFreesByIdDetailResponse, GetApiCrmServiceTaxFreesByIdSubTaxFreeData, GetApiCrmServiceTaxFreesByIdSubTaxFreeResponse, PostApiCrmServiceTaxFreesWithComponentsData, PostApiCrmServiceTaxFreesWithComponentsResponse, DeleteApiCrmServiceTaxFreesByIdWithComponentsData, DeleteApiCrmServiceTaxFreesByIdWithComponentsResponse, PostApiCrmServiceTaxFreesByIdAffiliationsData, PostApiCrmServiceTaxFreesByIdAffiliationsResponse, GetApiCrmServiceTaxFreesByIdAffiliationsData, GetApiCrmServiceTaxFreesByIdAffiliationsResponse, PutApiCrmServiceTaxFreesByIdOrganizationsByOrganizationIdData, PutApiCrmServiceTaxFreesByIdOrganizationsByOrganizationIdResponse, PutApiCrmServiceTaxFreesByIdTelephonesByTelephoneIdData, PutApiCrmServiceTaxFreesByIdTelephonesByTelephoneIdResponse, PutApiCrmServiceTaxFreesByIdAddressesByAddressIdData, PutApiCrmServiceTaxFreesByIdAddressesByAddressIdResponse, PutApiCrmServiceTaxFreesByIdEmailsByEmailIdData, PutApiCrmServiceTaxFreesByIdEmailsByEmailIdResponse, GetApiCrmServiceTaxFreesByIdAffiliatedIndividualsData, GetApiCrmServiceTaxFreesByIdAffiliatedIndividualsResponse, GetApiCrmServiceTaxOfficesData, GetApiCrmServiceTaxOfficesResponse, GetApiCrmServiceTaxOfficesByIdData, GetApiCrmServiceTaxOfficesByIdResponse, GetApiCrmServiceTaxOfficesByIdDetailData, GetApiCrmServiceTaxOfficesByIdDetailResponse, GetApiCrmServiceTaxOfficesByIdSubTaxOfficesData, GetApiCrmServiceTaxOfficesByIdSubTaxOfficesResponse, PostApiCrmServiceTaxOfficesWithComponentsData, PostApiCrmServiceTaxOfficesWithComponentsResponse, DeleteApiCrmServiceTaxOfficesByIdWithComponentsData, DeleteApiCrmServiceTaxOfficesByIdWithComponentsResponse, PostApiCrmServiceTaxOfficesByIdAffiliationsData, PostApiCrmServiceTaxOfficesByIdAffiliationsResponse, GetApiCrmServiceTaxOfficesByIdAffiliationsData, GetApiCrmServiceTaxOfficesByIdAffiliationsResponse, PutApiCrmServiceTaxOfficesByIdOrganizationsByOrganizationIdData, PutApiCrmServiceTaxOfficesByIdOrganizationsByOrganizationIdResponse, PutApiCrmServiceTaxOfficesByIdTelephonesByTelephoneIdData, PutApiCrmServiceTaxOfficesByIdTelephonesByTelephoneIdResponse, PutApiCrmServiceTaxOfficesByIdAddressesByAddressIdData, PutApiCrmServiceTaxOfficesByIdAddressesByAddressIdResponse, PutApiCrmServiceTaxOfficesByIdEmailsByEmailIdData, PutApiCrmServiceTaxOfficesByIdEmailsByEmailIdResponse, GetApiCrmServiceTaxOfficesByIdAnyData, GetApiCrmServiceTaxOfficesByIdAnyResponse, GetApiCrmServiceTaxOfficesByIdAffiliatedIndividualsData, GetApiCrmServiceTaxOfficesByIdAffiliatedIndividualsResponse, GetIntegrationApiTaxOfficesByIdData, GetIntegrationApiTaxOfficesByIdResponse } from './types.gen';
|
|
6
6
|
|
|
7
7
|
export class AbpApiDefinitionService {
|
|
8
8
|
constructor(public readonly httpRequest: BaseHttpRequest) { }
|
|
@@ -753,20 +753,28 @@ export class IndividualService {
|
|
|
753
753
|
|
|
754
754
|
/**
|
|
755
755
|
* @param data The data for the request.
|
|
756
|
-
* @param data.
|
|
757
|
-
* @param data.
|
|
758
|
-
* @param data.
|
|
759
|
-
* @
|
|
756
|
+
* @param data.id
|
|
757
|
+
* @param data.showMerchant
|
|
758
|
+
* @param data.showCustoms
|
|
759
|
+
* @param data.showRefundPoint
|
|
760
|
+
* @param data.showTaxOffice
|
|
761
|
+
* @param data.showTaxFree
|
|
762
|
+
* @returns UniRefund_CRMService_Individuals_IndividualAffiliationsDto Success
|
|
760
763
|
* @throws ApiError
|
|
761
764
|
*/
|
|
762
|
-
public
|
|
765
|
+
public getApiCrmServiceIndividualsByIdAffiliations(data: GetApiCrmServiceIndividualsByIdAffiliationsData): CancelablePromise<GetApiCrmServiceIndividualsByIdAffiliationsResponse> {
|
|
763
766
|
return this.httpRequest.request({
|
|
764
767
|
method: 'GET',
|
|
765
|
-
url: '/api/crm-service/individuals/
|
|
768
|
+
url: '/api/crm-service/individuals/{id}/affiliations',
|
|
769
|
+
path: {
|
|
770
|
+
id: data.id
|
|
771
|
+
},
|
|
766
772
|
query: {
|
|
767
|
-
|
|
768
|
-
|
|
769
|
-
|
|
773
|
+
ShowMerchant: data.showMerchant,
|
|
774
|
+
ShowCustoms: data.showCustoms,
|
|
775
|
+
ShowRefundPoint: data.showRefundPoint,
|
|
776
|
+
ShowTaxOffice: data.showTaxOffice,
|
|
777
|
+
ShowTaxFree: data.showTaxFree
|
|
770
778
|
},
|
|
771
779
|
errors: {
|
|
772
780
|
400: 'Bad Request',
|
|
@@ -779,16 +787,21 @@ export class IndividualService {
|
|
|
779
787
|
});
|
|
780
788
|
}
|
|
781
789
|
|
|
790
|
+
}
|
|
791
|
+
|
|
792
|
+
export class IndividualIntegrationService {
|
|
793
|
+
constructor(public readonly httpRequest: BaseHttpRequest) { }
|
|
794
|
+
|
|
782
795
|
/**
|
|
783
796
|
* @param data The data for the request.
|
|
784
797
|
* @param data.ids
|
|
785
798
|
* @returns UniRefund_CRMService_RefundPoints_UserDeviceNameDto Success
|
|
786
799
|
* @throws ApiError
|
|
787
800
|
*/
|
|
788
|
-
public
|
|
801
|
+
public getIntegrationApiIndividualsUserDevicesNames(data: GetIntegrationApiIndividualsUserDevicesNamesData): CancelablePromise<GetIntegrationApiIndividualsUserDevicesNamesResponse> {
|
|
789
802
|
return this.httpRequest.request({
|
|
790
803
|
method: 'GET',
|
|
791
|
-
url: '/api/
|
|
804
|
+
url: '/integration-api/individuals/user-devices-names',
|
|
792
805
|
query: {
|
|
793
806
|
Ids: data.ids
|
|
794
807
|
},
|
|
@@ -805,28 +818,20 @@ export class IndividualService {
|
|
|
805
818
|
|
|
806
819
|
/**
|
|
807
820
|
* @param data The data for the request.
|
|
808
|
-
* @param data.
|
|
809
|
-
* @param data.
|
|
810
|
-
* @param data.
|
|
811
|
-
* @
|
|
812
|
-
* @param data.showTaxOffice
|
|
813
|
-
* @param data.showTaxFree
|
|
814
|
-
* @returns UniRefund_CRMService_Individuals_IndividualAffiliationsDto Success
|
|
821
|
+
* @param data.ids
|
|
822
|
+
* @param data.skipCount
|
|
823
|
+
* @param data.maxResultCount
|
|
824
|
+
* @returns PagedResultDto_UserDeviceNameDto Success
|
|
815
825
|
* @throws ApiError
|
|
816
826
|
*/
|
|
817
|
-
public
|
|
827
|
+
public getIntegrationApiIndividualsAllUserDevicesNames(data: GetIntegrationApiIndividualsAllUserDevicesNamesData): CancelablePromise<GetIntegrationApiIndividualsAllUserDevicesNamesResponse> {
|
|
818
828
|
return this.httpRequest.request({
|
|
819
829
|
method: 'GET',
|
|
820
|
-
url: '/api/
|
|
821
|
-
path: {
|
|
822
|
-
id: data.id
|
|
823
|
-
},
|
|
830
|
+
url: '/integration-api/individuals/all-user-devices-names',
|
|
824
831
|
query: {
|
|
825
|
-
|
|
826
|
-
|
|
827
|
-
|
|
828
|
-
ShowTaxOffice: data.showTaxOffice,
|
|
829
|
-
ShowTaxFree: data.showTaxFree
|
|
832
|
+
Ids: data.ids,
|
|
833
|
+
SkipCount: data.skipCount,
|
|
834
|
+
MaxResultCount: data.maxResultCount
|
|
830
835
|
},
|
|
831
836
|
errors: {
|
|
832
837
|
400: 'Bad Request',
|
|
@@ -1565,7 +1570,7 @@ export class MerchantIntegrationService {
|
|
|
1565
1570
|
/**
|
|
1566
1571
|
* @param data The data for the request.
|
|
1567
1572
|
* @param data.id
|
|
1568
|
-
* @param data.
|
|
1573
|
+
* @param data.parentId
|
|
1569
1574
|
* @param data.typeCode
|
|
1570
1575
|
* @returns unknown Success
|
|
1571
1576
|
* @throws ApiError
|
|
@@ -1578,7 +1583,35 @@ export class MerchantIntegrationService {
|
|
|
1578
1583
|
id: data.id
|
|
1579
1584
|
},
|
|
1580
1585
|
query: {
|
|
1581
|
-
|
|
1586
|
+
parentId: data.parentId,
|
|
1587
|
+
typeCode: data.typeCode
|
|
1588
|
+
},
|
|
1589
|
+
errors: {
|
|
1590
|
+
400: 'Bad Request',
|
|
1591
|
+
401: 'Unauthorized',
|
|
1592
|
+
403: 'Forbidden',
|
|
1593
|
+
404: 'Not Found',
|
|
1594
|
+
500: 'Server Error',
|
|
1595
|
+
501: 'Server Error'
|
|
1596
|
+
}
|
|
1597
|
+
});
|
|
1598
|
+
}
|
|
1599
|
+
|
|
1600
|
+
/**
|
|
1601
|
+
* @param data The data for the request.
|
|
1602
|
+
* @param data.ids
|
|
1603
|
+
* @param data.parentId
|
|
1604
|
+
* @param data.typeCode
|
|
1605
|
+
* @returns unknown Success
|
|
1606
|
+
* @throws ApiError
|
|
1607
|
+
*/
|
|
1608
|
+
public getIntegrationApiMerchantsEnsureExistMany(data: GetIntegrationApiMerchantsEnsureExistManyData = {}): CancelablePromise<GetIntegrationApiMerchantsEnsureExistManyResponse> {
|
|
1609
|
+
return this.httpRequest.request({
|
|
1610
|
+
method: 'GET',
|
|
1611
|
+
url: '/integration-api/merchants/ensure-exist-many',
|
|
1612
|
+
query: {
|
|
1613
|
+
ids: data.ids,
|
|
1614
|
+
parentId: data.parentId,
|
|
1582
1615
|
typeCode: data.typeCode
|
|
1583
1616
|
},
|
|
1584
1617
|
errors: {
|
|
@@ -1624,7 +1657,7 @@ export class MerchantIntegrationService {
|
|
|
1624
1657
|
* @param data.sorting
|
|
1625
1658
|
* @param data.skipCount
|
|
1626
1659
|
* @param data.maxResultCount
|
|
1627
|
-
* @returns
|
|
1660
|
+
* @returns UniRefund_CRMService_Merchants_StoreProfilePagedResultDtoIntegration Success
|
|
1628
1661
|
* @throws ApiError
|
|
1629
1662
|
*/
|
|
1630
1663
|
public getIntegrationApiMerchantsByIdStores(data: GetIntegrationApiMerchantsByIdStoresData): CancelablePromise<GetIntegrationApiMerchantsByIdStoresResponse> {
|
|
@@ -1766,6 +1799,7 @@ export class RefundPointService {
|
|
|
1766
1799
|
/**
|
|
1767
1800
|
* @param data The data for the request.
|
|
1768
1801
|
* @param data.ids
|
|
1802
|
+
* @param data.name
|
|
1769
1803
|
* @param data.sorting
|
|
1770
1804
|
* @param data.skipCount
|
|
1771
1805
|
* @param data.maxResultCount
|
|
@@ -1778,6 +1812,7 @@ export class RefundPointService {
|
|
|
1778
1812
|
url: '/api/crm-service/refund-points',
|
|
1779
1813
|
query: {
|
|
1780
1814
|
Ids: data.ids,
|
|
1815
|
+
Name: data.name,
|
|
1781
1816
|
Sorting: data.sorting,
|
|
1782
1817
|
SkipCount: data.skipCount,
|
|
1783
1818
|
MaxResultCount: data.maxResultCount
|
|
@@ -1817,30 +1852,6 @@ export class RefundPointService {
|
|
|
1817
1852
|
});
|
|
1818
1853
|
}
|
|
1819
1854
|
|
|
1820
|
-
/**
|
|
1821
|
-
* @param data The data for the request.
|
|
1822
|
-
* @param data.id
|
|
1823
|
-
* @returns UniRefund_CRMService_RefundPoints_RefundPointBasicInformationDto Success
|
|
1824
|
-
* @throws ApiError
|
|
1825
|
-
*/
|
|
1826
|
-
public getApiCrmServiceRefundPointsByIdBasicInformation(data: GetApiCrmServiceRefundPointsByIdBasicInformationData): CancelablePromise<GetApiCrmServiceRefundPointsByIdBasicInformationResponse> {
|
|
1827
|
-
return this.httpRequest.request({
|
|
1828
|
-
method: 'GET',
|
|
1829
|
-
url: '/api/crm-service/refund-points/{id}/basic-information',
|
|
1830
|
-
path: {
|
|
1831
|
-
id: data.id
|
|
1832
|
-
},
|
|
1833
|
-
errors: {
|
|
1834
|
-
400: 'Bad Request',
|
|
1835
|
-
401: 'Unauthorized',
|
|
1836
|
-
403: 'Forbidden',
|
|
1837
|
-
404: 'Not Found',
|
|
1838
|
-
500: 'Server Error',
|
|
1839
|
-
501: 'Server Error'
|
|
1840
|
-
}
|
|
1841
|
-
});
|
|
1842
|
-
}
|
|
1843
|
-
|
|
1844
1855
|
/**
|
|
1845
1856
|
* @param data The data for the request.
|
|
1846
1857
|
* @param data.id
|
|
@@ -2094,19 +2105,76 @@ export class RefundPointService {
|
|
|
2094
2105
|
/**
|
|
2095
2106
|
* @param data The data for the request.
|
|
2096
2107
|
* @param data.id
|
|
2097
|
-
* @
|
|
2098
|
-
* @returns unknown Success
|
|
2108
|
+
* @returns UniRefund_CRMService_Merchants_SubIndividualDto Success
|
|
2099
2109
|
* @throws ApiError
|
|
2100
2110
|
*/
|
|
2101
|
-
public
|
|
2111
|
+
public getApiCrmServiceRefundPointsByIdAffiliatedIndividual(data: GetApiCrmServiceRefundPointsByIdAffiliatedIndividualData): CancelablePromise<GetApiCrmServiceRefundPointsByIdAffiliatedIndividualResponse> {
|
|
2102
2112
|
return this.httpRequest.request({
|
|
2103
2113
|
method: 'GET',
|
|
2104
|
-
url: '/api/crm-service/refund-points/{id}/
|
|
2114
|
+
url: '/api/crm-service/refund-points/{id}/affiliated-individual',
|
|
2105
2115
|
path: {
|
|
2106
2116
|
id: data.id
|
|
2107
2117
|
},
|
|
2118
|
+
errors: {
|
|
2119
|
+
400: 'Bad Request',
|
|
2120
|
+
401: 'Unauthorized',
|
|
2121
|
+
403: 'Forbidden',
|
|
2122
|
+
404: 'Not Found',
|
|
2123
|
+
500: 'Server Error',
|
|
2124
|
+
501: 'Server Error'
|
|
2125
|
+
}
|
|
2126
|
+
});
|
|
2127
|
+
}
|
|
2128
|
+
|
|
2129
|
+
}
|
|
2130
|
+
|
|
2131
|
+
export class RefundPointIntegrationService {
|
|
2132
|
+
constructor(public readonly httpRequest: BaseHttpRequest) { }
|
|
2133
|
+
|
|
2134
|
+
/**
|
|
2135
|
+
* @param data The data for the request.
|
|
2136
|
+
* @param data.ids
|
|
2137
|
+
* @param data.name
|
|
2138
|
+
* @param data.sorting
|
|
2139
|
+
* @param data.skipCount
|
|
2140
|
+
* @param data.maxResultCount
|
|
2141
|
+
* @returns PagedResultDto_RefundPointProfileDto Success
|
|
2142
|
+
* @throws ApiError
|
|
2143
|
+
*/
|
|
2144
|
+
public getIntegrationApiRefundPoints(data: GetIntegrationApiRefundPointsData = {}): CancelablePromise<GetIntegrationApiRefundPointsResponse> {
|
|
2145
|
+
return this.httpRequest.request({
|
|
2146
|
+
method: 'GET',
|
|
2147
|
+
url: '/integration-api/refund-points',
|
|
2108
2148
|
query: {
|
|
2109
|
-
|
|
2149
|
+
Ids: data.ids,
|
|
2150
|
+
Name: data.name,
|
|
2151
|
+
Sorting: data.sorting,
|
|
2152
|
+
SkipCount: data.skipCount,
|
|
2153
|
+
MaxResultCount: data.maxResultCount
|
|
2154
|
+
},
|
|
2155
|
+
errors: {
|
|
2156
|
+
400: 'Bad Request',
|
|
2157
|
+
401: 'Unauthorized',
|
|
2158
|
+
403: 'Forbidden',
|
|
2159
|
+
404: 'Not Found',
|
|
2160
|
+
500: 'Server Error',
|
|
2161
|
+
501: 'Server Error'
|
|
2162
|
+
}
|
|
2163
|
+
});
|
|
2164
|
+
}
|
|
2165
|
+
|
|
2166
|
+
/**
|
|
2167
|
+
* @param data The data for the request.
|
|
2168
|
+
* @param data.id
|
|
2169
|
+
* @returns UniRefund_CRMService_RefundPoints_RefundPointDetailForRefund Success
|
|
2170
|
+
* @throws ApiError
|
|
2171
|
+
*/
|
|
2172
|
+
public getIntegrationApiRefundPointsByIdDetailForRefund(data: GetIntegrationApiRefundPointsByIdDetailForRefundData): CancelablePromise<GetIntegrationApiRefundPointsByIdDetailForRefundResponse> {
|
|
2173
|
+
return this.httpRequest.request({
|
|
2174
|
+
method: 'GET',
|
|
2175
|
+
url: '/integration-api/refund-points/{id}/detail-for-refund',
|
|
2176
|
+
path: {
|
|
2177
|
+
id: data.id
|
|
2110
2178
|
},
|
|
2111
2179
|
errors: {
|
|
2112
2180
|
400: 'Bad Request',
|
|
@@ -2127,10 +2195,10 @@ export class RefundPointService {
|
|
|
2127
2195
|
* @returns PagedResultDto_RefundPointNameDto Success
|
|
2128
2196
|
* @throws ApiError
|
|
2129
2197
|
*/
|
|
2130
|
-
public
|
|
2198
|
+
public getIntegrationApiRefundPointsRefundPointNames(data: GetIntegrationApiRefundPointsRefundPointNamesData = {}): CancelablePromise<GetIntegrationApiRefundPointsRefundPointNamesResponse> {
|
|
2131
2199
|
return this.httpRequest.request({
|
|
2132
2200
|
method: 'GET',
|
|
2133
|
-
url: '/api/
|
|
2201
|
+
url: '/integration-api/refund-points/refund-point-names',
|
|
2134
2202
|
query: {
|
|
2135
2203
|
Ids: data.ids,
|
|
2136
2204
|
SkipCount: data.skipCount,
|
|
@@ -2150,16 +2218,20 @@ export class RefundPointService {
|
|
|
2150
2218
|
/**
|
|
2151
2219
|
* @param data The data for the request.
|
|
2152
2220
|
* @param data.id
|
|
2153
|
-
* @
|
|
2221
|
+
* @param data.refundPointTypeCode
|
|
2222
|
+
* @returns unknown Success
|
|
2154
2223
|
* @throws ApiError
|
|
2155
2224
|
*/
|
|
2156
|
-
public
|
|
2225
|
+
public getIntegrationApiRefundPointsByIdExist(data: GetIntegrationApiRefundPointsByIdExistData): CancelablePromise<GetIntegrationApiRefundPointsByIdExistResponse> {
|
|
2157
2226
|
return this.httpRequest.request({
|
|
2158
2227
|
method: 'GET',
|
|
2159
|
-
url: '/api/
|
|
2228
|
+
url: '/integration-api/refund-points/{id}/exist',
|
|
2160
2229
|
path: {
|
|
2161
2230
|
id: data.id
|
|
2162
2231
|
},
|
|
2232
|
+
query: {
|
|
2233
|
+
refundPointTypeCode: data.refundPointTypeCode
|
|
2234
|
+
},
|
|
2163
2235
|
errors: {
|
|
2164
2236
|
400: 'Bad Request',
|
|
2165
2237
|
401: 'Unauthorized',
|
|
@@ -2171,22 +2243,17 @@ export class RefundPointService {
|
|
|
2171
2243
|
});
|
|
2172
2244
|
}
|
|
2173
2245
|
|
|
2174
|
-
}
|
|
2175
|
-
|
|
2176
|
-
export class RefundPointIntegrationService {
|
|
2177
|
-
constructor(public readonly httpRequest: BaseHttpRequest) { }
|
|
2178
|
-
|
|
2179
2246
|
/**
|
|
2180
2247
|
* @param data The data for the request.
|
|
2181
2248
|
* @param data.id
|
|
2182
|
-
* @returns
|
|
2249
|
+
* @returns UniRefund_CRMService_RefundPoints_RefundPointBasicInformationDto Success
|
|
2183
2250
|
* @throws ApiError
|
|
2184
2251
|
*/
|
|
2185
|
-
public
|
|
2252
|
+
public getIntegrationApiRefundPointsByIdBasicInformation(data: GetIntegrationApiRefundPointsByIdBasicInformationData): CancelablePromise<GetIntegrationApiRefundPointsByIdBasicInformationResponse> {
|
|
2186
2253
|
return this.httpRequest.request({
|
|
2187
2254
|
method: 'GET',
|
|
2188
|
-
url: '/integration-api/refund-points',
|
|
2189
|
-
|
|
2255
|
+
url: '/integration-api/refund-points/{id}/basic-information',
|
|
2256
|
+
path: {
|
|
2190
2257
|
id: data.id
|
|
2191
2258
|
},
|
|
2192
2259
|
errors: {
|
|
@@ -2207,6 +2274,7 @@ export class TaxFreeService {
|
|
|
2207
2274
|
|
|
2208
2275
|
/**
|
|
2209
2276
|
* @param data The data for the request.
|
|
2277
|
+
* @param data.name
|
|
2210
2278
|
* @param data.sorting
|
|
2211
2279
|
* @param data.skipCount
|
|
2212
2280
|
* @param data.maxResultCount
|
|
@@ -2218,6 +2286,7 @@ export class TaxFreeService {
|
|
|
2218
2286
|
method: 'GET',
|
|
2219
2287
|
url: '/api/crm-service/tax-frees',
|
|
2220
2288
|
query: {
|
|
2289
|
+
Name: data.name,
|
|
2221
2290
|
Sorting: data.sorting,
|
|
2222
2291
|
SkipCount: data.skipCount,
|
|
2223
2292
|
MaxResultCount: data.maxResultCount
|
|
@@ -2910,4 +2979,33 @@ export class TaxOfficeService {
|
|
|
2910
2979
|
});
|
|
2911
2980
|
}
|
|
2912
2981
|
|
|
2982
|
+
}
|
|
2983
|
+
|
|
2984
|
+
export class TaxOfficeIntegrationService {
|
|
2985
|
+
constructor(public readonly httpRequest: BaseHttpRequest) { }
|
|
2986
|
+
|
|
2987
|
+
/**
|
|
2988
|
+
* @param data The data for the request.
|
|
2989
|
+
* @param data.id
|
|
2990
|
+
* @returns UniRefund_CRMService_TaxOffices_TaxOfficeProfileDto Success
|
|
2991
|
+
* @throws ApiError
|
|
2992
|
+
*/
|
|
2993
|
+
public getIntegrationApiTaxOfficesById(data: GetIntegrationApiTaxOfficesByIdData): CancelablePromise<GetIntegrationApiTaxOfficesByIdResponse> {
|
|
2994
|
+
return this.httpRequest.request({
|
|
2995
|
+
method: 'GET',
|
|
2996
|
+
url: '/integration-api/tax-offices/{id}',
|
|
2997
|
+
path: {
|
|
2998
|
+
id: data.id
|
|
2999
|
+
},
|
|
3000
|
+
errors: {
|
|
3001
|
+
400: 'Bad Request',
|
|
3002
|
+
401: 'Unauthorized',
|
|
3003
|
+
403: 'Forbidden',
|
|
3004
|
+
404: 'Not Found',
|
|
3005
|
+
500: 'Server Error',
|
|
3006
|
+
501: 'Server Error'
|
|
3007
|
+
}
|
|
3008
|
+
});
|
|
3009
|
+
}
|
|
3010
|
+
|
|
2913
3011
|
}
|
package/CRMService/types.gen.ts
CHANGED
|
@@ -196,6 +196,7 @@ export type UniRefund_CRMService_Customss_CustomsDto = {
|
|
|
196
196
|
isDeleted?: boolean;
|
|
197
197
|
deleterId?: string | null;
|
|
198
198
|
deletionTime?: string | null;
|
|
199
|
+
parentId?: string | null;
|
|
199
200
|
entityInformations?: Array<UniRefund_CRMService_EntityInformationTypes_EntityInformationTypeDto> | null;
|
|
200
201
|
};
|
|
201
202
|
|
|
@@ -452,11 +453,23 @@ export type UniRefund_CRMService_Merchants_StoreProfileDto = {
|
|
|
452
453
|
manager: string;
|
|
453
454
|
};
|
|
454
455
|
|
|
456
|
+
export type UniRefund_CRMService_Merchants_StoreProfileDtoIntegration = {
|
|
457
|
+
id?: string;
|
|
458
|
+
name?: string | null;
|
|
459
|
+
fullAddress?: string | null;
|
|
460
|
+
manager?: string | null;
|
|
461
|
+
};
|
|
462
|
+
|
|
455
463
|
export type UniRefund_CRMService_Merchants_StoreProfilePagedResultDto = {
|
|
456
464
|
items?: Array<UniRefund_CRMService_Merchants_StoreProfileDto> | null;
|
|
457
465
|
totalCount?: number;
|
|
458
466
|
};
|
|
459
467
|
|
|
468
|
+
export type UniRefund_CRMService_Merchants_StoreProfilePagedResultDtoIntegration = {
|
|
469
|
+
items?: Array<UniRefund_CRMService_Merchants_StoreProfileDtoIntegration> | null;
|
|
470
|
+
totalCount?: number;
|
|
471
|
+
};
|
|
472
|
+
|
|
460
473
|
export type UniRefund_CRMService_Merchants_SubIndividualDto = {
|
|
461
474
|
id?: string;
|
|
462
475
|
name: string;
|
|
@@ -720,6 +733,7 @@ export type UniRefund_CRMService_TaxFrees_TaxFreeProfileDto = {
|
|
|
720
733
|
id?: string;
|
|
721
734
|
name?: string | null;
|
|
722
735
|
parentId?: string | null;
|
|
736
|
+
parentName?: string | null;
|
|
723
737
|
organizationId?: string;
|
|
724
738
|
};
|
|
725
739
|
|
|
@@ -1462,20 +1476,6 @@ export type GetApiCrmServiceIndividualsData = {
|
|
|
1462
1476
|
|
|
1463
1477
|
export type GetApiCrmServiceIndividualsResponse = PagedResultDto_IndividualProfileDto;
|
|
1464
1478
|
|
|
1465
|
-
export type GetApiCrmServiceIndividualsUserDevicesNamesData = {
|
|
1466
|
-
ids?: Array<(string)>;
|
|
1467
|
-
maxResultCount?: number;
|
|
1468
|
-
skipCount?: number;
|
|
1469
|
-
};
|
|
1470
|
-
|
|
1471
|
-
export type GetApiCrmServiceIndividualsUserDevicesNamesResponse = PagedResultDto_UserDeviceNameDto;
|
|
1472
|
-
|
|
1473
|
-
export type GetApiCrmServiceIndividualsAllUserDevicesNamesData = {
|
|
1474
|
-
ids?: Array<(string)>;
|
|
1475
|
-
};
|
|
1476
|
-
|
|
1477
|
-
export type GetApiCrmServiceIndividualsAllUserDevicesNamesResponse = Array<UniRefund_CRMService_RefundPoints_UserDeviceNameDto>;
|
|
1478
|
-
|
|
1479
1479
|
export type GetApiCrmServiceIndividualsByIdAffiliationsData = {
|
|
1480
1480
|
id: string;
|
|
1481
1481
|
showCustoms?: boolean;
|
|
@@ -1487,6 +1487,20 @@ export type GetApiCrmServiceIndividualsByIdAffiliationsData = {
|
|
|
1487
1487
|
|
|
1488
1488
|
export type GetApiCrmServiceIndividualsByIdAffiliationsResponse = UniRefund_CRMService_Individuals_IndividualAffiliationsDto;
|
|
1489
1489
|
|
|
1490
|
+
export type GetIntegrationApiIndividualsUserDevicesNamesData = {
|
|
1491
|
+
ids: Array<(string)>;
|
|
1492
|
+
};
|
|
1493
|
+
|
|
1494
|
+
export type GetIntegrationApiIndividualsUserDevicesNamesResponse = Array<UniRefund_CRMService_RefundPoints_UserDeviceNameDto>;
|
|
1495
|
+
|
|
1496
|
+
export type GetIntegrationApiIndividualsAllUserDevicesNamesData = {
|
|
1497
|
+
ids: Array<(string)>;
|
|
1498
|
+
maxResultCount?: number;
|
|
1499
|
+
skipCount?: number;
|
|
1500
|
+
};
|
|
1501
|
+
|
|
1502
|
+
export type GetIntegrationApiIndividualsAllUserDevicesNamesResponse = PagedResultDto_UserDeviceNameDto;
|
|
1503
|
+
|
|
1490
1504
|
export type GetApiCrmServiceMerchantsData = {
|
|
1491
1505
|
ids?: Array<(string)>;
|
|
1492
1506
|
maxResultCount?: number;
|
|
@@ -1683,12 +1697,20 @@ export type GetIntegrationApiMerchantsInfoResponse = UniRefund_CRMService_Mercha
|
|
|
1683
1697
|
|
|
1684
1698
|
export type GetIntegrationApiMerchantsByIdEnsureExistData = {
|
|
1685
1699
|
id: string;
|
|
1686
|
-
|
|
1700
|
+
parentId?: string;
|
|
1687
1701
|
typeCode?: UniRefund_CRMService_Merchants_MerchantTypeCode;
|
|
1688
1702
|
};
|
|
1689
1703
|
|
|
1690
1704
|
export type GetIntegrationApiMerchantsByIdEnsureExistResponse = unknown;
|
|
1691
1705
|
|
|
1706
|
+
export type GetIntegrationApiMerchantsEnsureExistManyData = {
|
|
1707
|
+
ids?: Array<(string)>;
|
|
1708
|
+
parentId?: string;
|
|
1709
|
+
typeCode?: UniRefund_CRMService_Merchants_MerchantTypeCode;
|
|
1710
|
+
};
|
|
1711
|
+
|
|
1712
|
+
export type GetIntegrationApiMerchantsEnsureExistManyResponse = unknown;
|
|
1713
|
+
|
|
1692
1714
|
export type GetIntegrationApiMerchantsData = {
|
|
1693
1715
|
ids: Array<(string)>;
|
|
1694
1716
|
typeCodes?: Array<UniRefund_CRMService_Merchants_MerchantTypeCode>;
|
|
@@ -1703,7 +1725,7 @@ export type GetIntegrationApiMerchantsByIdStoresData = {
|
|
|
1703
1725
|
sorting?: string;
|
|
1704
1726
|
};
|
|
1705
1727
|
|
|
1706
|
-
export type GetIntegrationApiMerchantsByIdStoresResponse =
|
|
1728
|
+
export type GetIntegrationApiMerchantsByIdStoresResponse = UniRefund_CRMService_Merchants_StoreProfilePagedResultDtoIntegration;
|
|
1707
1729
|
|
|
1708
1730
|
export type GetIntegrationApiMerchantsByIdDetailData = {
|
|
1709
1731
|
id: string;
|
|
@@ -1736,6 +1758,7 @@ export type GetApiCrmServiceOrganizationsResponse = PagedResultDto_OrganizationP
|
|
|
1736
1758
|
export type GetApiCrmServiceRefundPointsData = {
|
|
1737
1759
|
ids?: Array<(string)>;
|
|
1738
1760
|
maxResultCount?: number;
|
|
1761
|
+
name?: string;
|
|
1739
1762
|
skipCount?: number;
|
|
1740
1763
|
sorting?: string;
|
|
1741
1764
|
};
|
|
@@ -1748,12 +1771,6 @@ export type GetApiCrmServiceRefundPointsByIdDetailData = {
|
|
|
1748
1771
|
|
|
1749
1772
|
export type GetApiCrmServiceRefundPointsByIdDetailResponse = UniRefund_CRMService_RefundPoints_RefundPointDto;
|
|
1750
1773
|
|
|
1751
|
-
export type GetApiCrmServiceRefundPointsByIdBasicInformationData = {
|
|
1752
|
-
id: string;
|
|
1753
|
-
};
|
|
1754
|
-
|
|
1755
|
-
export type GetApiCrmServiceRefundPointsByIdBasicInformationResponse = UniRefund_CRMService_RefundPoints_RefundPointBasicInformationDto;
|
|
1756
|
-
|
|
1757
1774
|
export type GetApiCrmServiceRefundPointsByIdSubRefundPointsData = {
|
|
1758
1775
|
id: string;
|
|
1759
1776
|
};
|
|
@@ -1822,35 +1839,52 @@ export type PutApiCrmServiceRefundPointsByIdEmailsByEmailIdData = {
|
|
|
1822
1839
|
|
|
1823
1840
|
export type PutApiCrmServiceRefundPointsByIdEmailsByEmailIdResponse = UniRefund_CRMService_EmailCommonDatas_EmailCommonDataDto;
|
|
1824
1841
|
|
|
1825
|
-
export type
|
|
1842
|
+
export type GetApiCrmServiceRefundPointsByIdAffiliatedIndividualData = {
|
|
1826
1843
|
id: string;
|
|
1827
|
-
refundPointTypeCode?: UniRefund_CRMService_RefundPoints_RefundPointTypeCode;
|
|
1828
1844
|
};
|
|
1829
1845
|
|
|
1830
|
-
export type
|
|
1846
|
+
export type GetApiCrmServiceRefundPointsByIdAffiliatedIndividualResponse = Array<UniRefund_CRMService_Merchants_SubIndividualDto>;
|
|
1831
1847
|
|
|
1832
|
-
export type
|
|
1848
|
+
export type GetIntegrationApiRefundPointsData = {
|
|
1833
1849
|
ids?: Array<(string)>;
|
|
1834
1850
|
maxResultCount?: number;
|
|
1851
|
+
name?: string;
|
|
1835
1852
|
skipCount?: number;
|
|
1853
|
+
sorting?: string;
|
|
1836
1854
|
};
|
|
1837
1855
|
|
|
1838
|
-
export type
|
|
1856
|
+
export type GetIntegrationApiRefundPointsResponse = PagedResultDto_RefundPointProfileDto;
|
|
1839
1857
|
|
|
1840
|
-
export type
|
|
1858
|
+
export type GetIntegrationApiRefundPointsByIdDetailForRefundData = {
|
|
1841
1859
|
id: string;
|
|
1842
1860
|
};
|
|
1843
1861
|
|
|
1844
|
-
export type
|
|
1862
|
+
export type GetIntegrationApiRefundPointsByIdDetailForRefundResponse = UniRefund_CRMService_RefundPoints_RefundPointDetailForRefund;
|
|
1845
1863
|
|
|
1846
|
-
export type
|
|
1847
|
-
|
|
1864
|
+
export type GetIntegrationApiRefundPointsRefundPointNamesData = {
|
|
1865
|
+
ids?: Array<(string)>;
|
|
1866
|
+
maxResultCount?: number;
|
|
1867
|
+
skipCount?: number;
|
|
1868
|
+
};
|
|
1869
|
+
|
|
1870
|
+
export type GetIntegrationApiRefundPointsRefundPointNamesResponse = PagedResultDto_RefundPointNameDto;
|
|
1871
|
+
|
|
1872
|
+
export type GetIntegrationApiRefundPointsByIdExistData = {
|
|
1873
|
+
id: string;
|
|
1874
|
+
refundPointTypeCode?: UniRefund_CRMService_RefundPoints_RefundPointTypeCode;
|
|
1875
|
+
};
|
|
1876
|
+
|
|
1877
|
+
export type GetIntegrationApiRefundPointsByIdExistResponse = unknown;
|
|
1878
|
+
|
|
1879
|
+
export type GetIntegrationApiRefundPointsByIdBasicInformationData = {
|
|
1880
|
+
id: string;
|
|
1848
1881
|
};
|
|
1849
1882
|
|
|
1850
|
-
export type
|
|
1883
|
+
export type GetIntegrationApiRefundPointsByIdBasicInformationResponse = UniRefund_CRMService_RefundPoints_RefundPointBasicInformationDto;
|
|
1851
1884
|
|
|
1852
1885
|
export type GetApiCrmServiceTaxFreesData = {
|
|
1853
1886
|
maxResultCount?: number;
|
|
1887
|
+
name?: string;
|
|
1854
1888
|
skipCount?: number;
|
|
1855
1889
|
sorting?: string;
|
|
1856
1890
|
};
|
|
@@ -2037,6 +2071,12 @@ export type GetApiCrmServiceTaxOfficesByIdAffiliatedIndividualsData = {
|
|
|
2037
2071
|
|
|
2038
2072
|
export type GetApiCrmServiceTaxOfficesByIdAffiliatedIndividualsResponse = Array<UniRefund_CRMService_Merchants_SubIndividualDto>;
|
|
2039
2073
|
|
|
2074
|
+
export type GetIntegrationApiTaxOfficesByIdData = {
|
|
2075
|
+
id: string;
|
|
2076
|
+
};
|
|
2077
|
+
|
|
2078
|
+
export type GetIntegrationApiTaxOfficesByIdResponse = UniRefund_CRMService_TaxOffices_TaxOfficeProfileDto;
|
|
2079
|
+
|
|
2040
2080
|
export type $OpenApiTs = {
|
|
2041
2081
|
'/api/abp/api-definition': {
|
|
2042
2082
|
get: {
|
|
@@ -2971,14 +3011,14 @@ export type $OpenApiTs = {
|
|
|
2971
3011
|
};
|
|
2972
3012
|
};
|
|
2973
3013
|
};
|
|
2974
|
-
'/api/crm-service/individuals/
|
|
3014
|
+
'/api/crm-service/individuals/{id}/affiliations': {
|
|
2975
3015
|
get: {
|
|
2976
|
-
req:
|
|
3016
|
+
req: GetApiCrmServiceIndividualsByIdAffiliationsData;
|
|
2977
3017
|
res: {
|
|
2978
3018
|
/**
|
|
2979
3019
|
* Success
|
|
2980
3020
|
*/
|
|
2981
|
-
200:
|
|
3021
|
+
200: UniRefund_CRMService_Individuals_IndividualAffiliationsDto;
|
|
2982
3022
|
/**
|
|
2983
3023
|
* Bad Request
|
|
2984
3024
|
*/
|
|
@@ -3006,9 +3046,9 @@ export type $OpenApiTs = {
|
|
|
3006
3046
|
};
|
|
3007
3047
|
};
|
|
3008
3048
|
};
|
|
3009
|
-
'/api/
|
|
3049
|
+
'/integration-api/individuals/user-devices-names': {
|
|
3010
3050
|
get: {
|
|
3011
|
-
req:
|
|
3051
|
+
req: GetIntegrationApiIndividualsUserDevicesNamesData;
|
|
3012
3052
|
res: {
|
|
3013
3053
|
/**
|
|
3014
3054
|
* Success
|
|
@@ -3041,14 +3081,14 @@ export type $OpenApiTs = {
|
|
|
3041
3081
|
};
|
|
3042
3082
|
};
|
|
3043
3083
|
};
|
|
3044
|
-
'/api/
|
|
3084
|
+
'/integration-api/individuals/all-user-devices-names': {
|
|
3045
3085
|
get: {
|
|
3046
|
-
req:
|
|
3086
|
+
req: GetIntegrationApiIndividualsAllUserDevicesNamesData;
|
|
3047
3087
|
res: {
|
|
3048
3088
|
/**
|
|
3049
3089
|
* Success
|
|
3050
3090
|
*/
|
|
3051
|
-
200:
|
|
3091
|
+
200: PagedResultDto_UserDeviceNameDto;
|
|
3052
3092
|
/**
|
|
3053
3093
|
* Bad Request
|
|
3054
3094
|
*/
|
|
@@ -4013,14 +4053,14 @@ export type $OpenApiTs = {
|
|
|
4013
4053
|
};
|
|
4014
4054
|
};
|
|
4015
4055
|
};
|
|
4016
|
-
'/integration-api/merchants': {
|
|
4056
|
+
'/integration-api/merchants/ensure-exist-many': {
|
|
4017
4057
|
get: {
|
|
4018
|
-
req:
|
|
4058
|
+
req: GetIntegrationApiMerchantsEnsureExistManyData;
|
|
4019
4059
|
res: {
|
|
4020
4060
|
/**
|
|
4021
4061
|
* Success
|
|
4022
4062
|
*/
|
|
4023
|
-
200:
|
|
4063
|
+
200: unknown;
|
|
4024
4064
|
/**
|
|
4025
4065
|
* Bad Request
|
|
4026
4066
|
*/
|
|
@@ -4048,14 +4088,14 @@ export type $OpenApiTs = {
|
|
|
4048
4088
|
};
|
|
4049
4089
|
};
|
|
4050
4090
|
};
|
|
4051
|
-
'/integration-api/merchants
|
|
4091
|
+
'/integration-api/merchants': {
|
|
4052
4092
|
get: {
|
|
4053
|
-
req:
|
|
4093
|
+
req: GetIntegrationApiMerchantsData;
|
|
4054
4094
|
res: {
|
|
4055
4095
|
/**
|
|
4056
4096
|
* Success
|
|
4057
4097
|
*/
|
|
4058
|
-
200:
|
|
4098
|
+
200: Array<UniRefund_CRMService_Merchants_MerchantProfileDto>;
|
|
4059
4099
|
/**
|
|
4060
4100
|
* Bad Request
|
|
4061
4101
|
*/
|
|
@@ -4083,14 +4123,14 @@ export type $OpenApiTs = {
|
|
|
4083
4123
|
};
|
|
4084
4124
|
};
|
|
4085
4125
|
};
|
|
4086
|
-
'/integration-api/merchants/{id}/
|
|
4126
|
+
'/integration-api/merchants/{id}/stores': {
|
|
4087
4127
|
get: {
|
|
4088
|
-
req:
|
|
4128
|
+
req: GetIntegrationApiMerchantsByIdStoresData;
|
|
4089
4129
|
res: {
|
|
4090
4130
|
/**
|
|
4091
4131
|
* Success
|
|
4092
4132
|
*/
|
|
4093
|
-
200:
|
|
4133
|
+
200: UniRefund_CRMService_Merchants_StoreProfilePagedResultDtoIntegration;
|
|
4094
4134
|
/**
|
|
4095
4135
|
* Bad Request
|
|
4096
4136
|
*/
|
|
@@ -4118,14 +4158,14 @@ export type $OpenApiTs = {
|
|
|
4118
4158
|
};
|
|
4119
4159
|
};
|
|
4120
4160
|
};
|
|
4121
|
-
'/integration-api/merchants/
|
|
4161
|
+
'/integration-api/merchants/{id}/detail': {
|
|
4122
4162
|
get: {
|
|
4123
|
-
req:
|
|
4163
|
+
req: GetIntegrationApiMerchantsByIdDetailData;
|
|
4124
4164
|
res: {
|
|
4125
4165
|
/**
|
|
4126
4166
|
* Success
|
|
4127
4167
|
*/
|
|
4128
|
-
200:
|
|
4168
|
+
200: UniRefund_CRMService_Merchants_MerchantDetailDto;
|
|
4129
4169
|
/**
|
|
4130
4170
|
* Bad Request
|
|
4131
4171
|
*/
|
|
@@ -4153,14 +4193,14 @@ export type $OpenApiTs = {
|
|
|
4153
4193
|
};
|
|
4154
4194
|
};
|
|
4155
4195
|
};
|
|
4156
|
-
'/api/
|
|
4157
|
-
|
|
4158
|
-
req:
|
|
4196
|
+
'/integration-api/merchants/details-list': {
|
|
4197
|
+
get: {
|
|
4198
|
+
req: GetIntegrationApiMerchantsDetailsListData;
|
|
4159
4199
|
res: {
|
|
4160
4200
|
/**
|
|
4161
4201
|
* Success
|
|
4162
4202
|
*/
|
|
4163
|
-
200:
|
|
4203
|
+
200: Array<UniRefund_CRMService_Merchants_MerchantDetailDto>;
|
|
4164
4204
|
/**
|
|
4165
4205
|
* Bad Request
|
|
4166
4206
|
*/
|
|
@@ -4188,14 +4228,14 @@ export type $OpenApiTs = {
|
|
|
4188
4228
|
};
|
|
4189
4229
|
};
|
|
4190
4230
|
};
|
|
4191
|
-
'/api/crm-service/organizations': {
|
|
4192
|
-
|
|
4193
|
-
req:
|
|
4231
|
+
'/api/crm-service/organizations/with-components': {
|
|
4232
|
+
post: {
|
|
4233
|
+
req: PostApiCrmServiceOrganizationsWithComponentsData;
|
|
4194
4234
|
res: {
|
|
4195
4235
|
/**
|
|
4196
4236
|
* Success
|
|
4197
4237
|
*/
|
|
4198
|
-
200:
|
|
4238
|
+
200: unknown;
|
|
4199
4239
|
/**
|
|
4200
4240
|
* Bad Request
|
|
4201
4241
|
*/
|
|
@@ -4223,14 +4263,14 @@ export type $OpenApiTs = {
|
|
|
4223
4263
|
};
|
|
4224
4264
|
};
|
|
4225
4265
|
};
|
|
4226
|
-
'/api/crm-service/
|
|
4266
|
+
'/api/crm-service/organizations': {
|
|
4227
4267
|
get: {
|
|
4228
|
-
req:
|
|
4268
|
+
req: GetApiCrmServiceOrganizationsData;
|
|
4229
4269
|
res: {
|
|
4230
4270
|
/**
|
|
4231
4271
|
* Success
|
|
4232
4272
|
*/
|
|
4233
|
-
200:
|
|
4273
|
+
200: PagedResultDto_OrganizationProfileDto;
|
|
4234
4274
|
/**
|
|
4235
4275
|
* Bad Request
|
|
4236
4276
|
*/
|
|
@@ -4258,14 +4298,14 @@ export type $OpenApiTs = {
|
|
|
4258
4298
|
};
|
|
4259
4299
|
};
|
|
4260
4300
|
};
|
|
4261
|
-
'/api/crm-service/refund-points
|
|
4301
|
+
'/api/crm-service/refund-points': {
|
|
4262
4302
|
get: {
|
|
4263
|
-
req:
|
|
4303
|
+
req: GetApiCrmServiceRefundPointsData;
|
|
4264
4304
|
res: {
|
|
4265
4305
|
/**
|
|
4266
4306
|
* Success
|
|
4267
4307
|
*/
|
|
4268
|
-
200:
|
|
4308
|
+
200: PagedResultDto_RefundPointProfileDto;
|
|
4269
4309
|
/**
|
|
4270
4310
|
* Bad Request
|
|
4271
4311
|
*/
|
|
@@ -4293,14 +4333,14 @@ export type $OpenApiTs = {
|
|
|
4293
4333
|
};
|
|
4294
4334
|
};
|
|
4295
4335
|
};
|
|
4296
|
-
'/api/crm-service/refund-points/{id}/
|
|
4336
|
+
'/api/crm-service/refund-points/{id}/detail': {
|
|
4297
4337
|
get: {
|
|
4298
|
-
req:
|
|
4338
|
+
req: GetApiCrmServiceRefundPointsByIdDetailData;
|
|
4299
4339
|
res: {
|
|
4300
4340
|
/**
|
|
4301
4341
|
* Success
|
|
4302
4342
|
*/
|
|
4303
|
-
200:
|
|
4343
|
+
200: UniRefund_CRMService_RefundPoints_RefundPointDto;
|
|
4304
4344
|
/**
|
|
4305
4345
|
* Bad Request
|
|
4306
4346
|
*/
|
|
@@ -4641,14 +4681,14 @@ export type $OpenApiTs = {
|
|
|
4641
4681
|
};
|
|
4642
4682
|
};
|
|
4643
4683
|
};
|
|
4644
|
-
'/api/crm-service/refund-points/{id}/
|
|
4684
|
+
'/api/crm-service/refund-points/{id}/affiliated-individual': {
|
|
4645
4685
|
get: {
|
|
4646
|
-
req:
|
|
4686
|
+
req: GetApiCrmServiceRefundPointsByIdAffiliatedIndividualData;
|
|
4647
4687
|
res: {
|
|
4648
4688
|
/**
|
|
4649
4689
|
* Success
|
|
4650
4690
|
*/
|
|
4651
|
-
200:
|
|
4691
|
+
200: Array<UniRefund_CRMService_Merchants_SubIndividualDto>;
|
|
4652
4692
|
/**
|
|
4653
4693
|
* Bad Request
|
|
4654
4694
|
*/
|
|
@@ -4676,9 +4716,79 @@ export type $OpenApiTs = {
|
|
|
4676
4716
|
};
|
|
4677
4717
|
};
|
|
4678
4718
|
};
|
|
4679
|
-
'/api/
|
|
4719
|
+
'/integration-api/refund-points': {
|
|
4680
4720
|
get: {
|
|
4681
|
-
req:
|
|
4721
|
+
req: GetIntegrationApiRefundPointsData;
|
|
4722
|
+
res: {
|
|
4723
|
+
/**
|
|
4724
|
+
* Success
|
|
4725
|
+
*/
|
|
4726
|
+
200: PagedResultDto_RefundPointProfileDto;
|
|
4727
|
+
/**
|
|
4728
|
+
* Bad Request
|
|
4729
|
+
*/
|
|
4730
|
+
400: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
4731
|
+
/**
|
|
4732
|
+
* Unauthorized
|
|
4733
|
+
*/
|
|
4734
|
+
401: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
4735
|
+
/**
|
|
4736
|
+
* Forbidden
|
|
4737
|
+
*/
|
|
4738
|
+
403: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
4739
|
+
/**
|
|
4740
|
+
* Not Found
|
|
4741
|
+
*/
|
|
4742
|
+
404: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
4743
|
+
/**
|
|
4744
|
+
* Server Error
|
|
4745
|
+
*/
|
|
4746
|
+
500: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
4747
|
+
/**
|
|
4748
|
+
* Server Error
|
|
4749
|
+
*/
|
|
4750
|
+
501: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
4751
|
+
};
|
|
4752
|
+
};
|
|
4753
|
+
};
|
|
4754
|
+
'/integration-api/refund-points/{id}/detail-for-refund': {
|
|
4755
|
+
get: {
|
|
4756
|
+
req: GetIntegrationApiRefundPointsByIdDetailForRefundData;
|
|
4757
|
+
res: {
|
|
4758
|
+
/**
|
|
4759
|
+
* Success
|
|
4760
|
+
*/
|
|
4761
|
+
200: UniRefund_CRMService_RefundPoints_RefundPointDetailForRefund;
|
|
4762
|
+
/**
|
|
4763
|
+
* Bad Request
|
|
4764
|
+
*/
|
|
4765
|
+
400: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
4766
|
+
/**
|
|
4767
|
+
* Unauthorized
|
|
4768
|
+
*/
|
|
4769
|
+
401: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
4770
|
+
/**
|
|
4771
|
+
* Forbidden
|
|
4772
|
+
*/
|
|
4773
|
+
403: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
4774
|
+
/**
|
|
4775
|
+
* Not Found
|
|
4776
|
+
*/
|
|
4777
|
+
404: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
4778
|
+
/**
|
|
4779
|
+
* Server Error
|
|
4780
|
+
*/
|
|
4781
|
+
500: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
4782
|
+
/**
|
|
4783
|
+
* Server Error
|
|
4784
|
+
*/
|
|
4785
|
+
501: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
4786
|
+
};
|
|
4787
|
+
};
|
|
4788
|
+
};
|
|
4789
|
+
'/integration-api/refund-points/refund-point-names': {
|
|
4790
|
+
get: {
|
|
4791
|
+
req: GetIntegrationApiRefundPointsRefundPointNamesData;
|
|
4682
4792
|
res: {
|
|
4683
4793
|
/**
|
|
4684
4794
|
* Success
|
|
@@ -4711,14 +4821,14 @@ export type $OpenApiTs = {
|
|
|
4711
4821
|
};
|
|
4712
4822
|
};
|
|
4713
4823
|
};
|
|
4714
|
-
'/api/
|
|
4824
|
+
'/integration-api/refund-points/{id}/exist': {
|
|
4715
4825
|
get: {
|
|
4716
|
-
req:
|
|
4826
|
+
req: GetIntegrationApiRefundPointsByIdExistData;
|
|
4717
4827
|
res: {
|
|
4718
4828
|
/**
|
|
4719
4829
|
* Success
|
|
4720
4830
|
*/
|
|
4721
|
-
200:
|
|
4831
|
+
200: unknown;
|
|
4722
4832
|
/**
|
|
4723
4833
|
* Bad Request
|
|
4724
4834
|
*/
|
|
@@ -4746,14 +4856,14 @@ export type $OpenApiTs = {
|
|
|
4746
4856
|
};
|
|
4747
4857
|
};
|
|
4748
4858
|
};
|
|
4749
|
-
'/integration-api/refund-points': {
|
|
4859
|
+
'/integration-api/refund-points/{id}/basic-information': {
|
|
4750
4860
|
get: {
|
|
4751
|
-
req:
|
|
4861
|
+
req: GetIntegrationApiRefundPointsByIdBasicInformationData;
|
|
4752
4862
|
res: {
|
|
4753
4863
|
/**
|
|
4754
4864
|
* Success
|
|
4755
4865
|
*/
|
|
4756
|
-
200:
|
|
4866
|
+
200: UniRefund_CRMService_RefundPoints_RefundPointBasicInformationDto;
|
|
4757
4867
|
/**
|
|
4758
4868
|
* Bad Request
|
|
4759
4869
|
*/
|
|
@@ -5687,4 +5797,39 @@ export type $OpenApiTs = {
|
|
|
5687
5797
|
};
|
|
5688
5798
|
};
|
|
5689
5799
|
};
|
|
5800
|
+
'/integration-api/tax-offices/{id}': {
|
|
5801
|
+
get: {
|
|
5802
|
+
req: GetIntegrationApiTaxOfficesByIdData;
|
|
5803
|
+
res: {
|
|
5804
|
+
/**
|
|
5805
|
+
* Success
|
|
5806
|
+
*/
|
|
5807
|
+
200: UniRefund_CRMService_TaxOffices_TaxOfficeProfileDto;
|
|
5808
|
+
/**
|
|
5809
|
+
* Bad Request
|
|
5810
|
+
*/
|
|
5811
|
+
400: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
5812
|
+
/**
|
|
5813
|
+
* Unauthorized
|
|
5814
|
+
*/
|
|
5815
|
+
401: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
5816
|
+
/**
|
|
5817
|
+
* Forbidden
|
|
5818
|
+
*/
|
|
5819
|
+
403: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
5820
|
+
/**
|
|
5821
|
+
* Not Found
|
|
5822
|
+
*/
|
|
5823
|
+
404: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
5824
|
+
/**
|
|
5825
|
+
* Server Error
|
|
5826
|
+
*/
|
|
5827
|
+
500: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
5828
|
+
/**
|
|
5829
|
+
* Server Error
|
|
5830
|
+
*/
|
|
5831
|
+
501: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
5832
|
+
};
|
|
5833
|
+
};
|
|
5834
|
+
};
|
|
5690
5835
|
};
|