@ayasofyazilim/saas 0.0.83 → 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.
@@ -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.ids
757
- * @param data.skipCount
758
- * @param data.maxResultCount
759
- * @returns PagedResultDto_UserDeviceNameDto Success
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 getApiCrmServiceIndividualsUserDevicesNames(data: GetApiCrmServiceIndividualsUserDevicesNamesData = {}): CancelablePromise<GetApiCrmServiceIndividualsUserDevicesNamesResponse> {
765
+ public getApiCrmServiceIndividualsByIdAffiliations(data: GetApiCrmServiceIndividualsByIdAffiliationsData): CancelablePromise<GetApiCrmServiceIndividualsByIdAffiliationsResponse> {
763
766
  return this.httpRequest.request({
764
767
  method: 'GET',
765
- url: '/api/crm-service/individuals/user-devices-names',
768
+ url: '/api/crm-service/individuals/{id}/affiliations',
769
+ path: {
770
+ id: data.id
771
+ },
766
772
  query: {
767
- Ids: data.ids,
768
- SkipCount: data.skipCount,
769
- MaxResultCount: data.maxResultCount
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 getApiCrmServiceIndividualsAllUserDevicesNames(data: GetApiCrmServiceIndividualsAllUserDevicesNamesData = {}): CancelablePromise<GetApiCrmServiceIndividualsAllUserDevicesNamesResponse> {
801
+ public getIntegrationApiIndividualsUserDevicesNames(data: GetIntegrationApiIndividualsUserDevicesNamesData): CancelablePromise<GetIntegrationApiIndividualsUserDevicesNamesResponse> {
789
802
  return this.httpRequest.request({
790
803
  method: 'GET',
791
- url: '/api/crm-service/individuals/all-user-devices-names',
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.id
809
- * @param data.showMerchant
810
- * @param data.showCustoms
811
- * @param data.showRefundPoint
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 getApiCrmServiceIndividualsByIdAffiliations(data: GetApiCrmServiceIndividualsByIdAffiliationsData): CancelablePromise<GetApiCrmServiceIndividualsByIdAffiliationsResponse> {
827
+ public getIntegrationApiIndividualsAllUserDevicesNames(data: GetIntegrationApiIndividualsAllUserDevicesNamesData): CancelablePromise<GetIntegrationApiIndividualsAllUserDevicesNamesResponse> {
818
828
  return this.httpRequest.request({
819
829
  method: 'GET',
820
- url: '/api/crm-service/individuals/{id}/affiliations',
821
- path: {
822
- id: data.id
823
- },
830
+ url: '/integration-api/individuals/all-user-devices-names',
824
831
  query: {
825
- ShowMerchant: data.showMerchant,
826
- ShowCustoms: data.showCustoms,
827
- ShowRefundPoint: data.showRefundPoint,
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.storeId
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
- storeId: data.storeId,
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 UniRefund_CRMService_Merchants_StoreProfilePagedResultDto Success
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
- * @param data.refundPointTypeCode
2098
- * @returns unknown Success
2108
+ * @returns UniRefund_CRMService_Merchants_SubIndividualDto Success
2099
2109
  * @throws ApiError
2100
2110
  */
2101
- public getApiCrmServiceRefundPointsByIdExist(data: GetApiCrmServiceRefundPointsByIdExistData): CancelablePromise<GetApiCrmServiceRefundPointsByIdExistResponse> {
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}/exist',
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
- refundPointTypeCode: data.refundPointTypeCode
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 getApiCrmServiceRefundPointsRefundPointNames(data: GetApiCrmServiceRefundPointsRefundPointNamesData = {}): CancelablePromise<GetApiCrmServiceRefundPointsRefundPointNamesResponse> {
2198
+ public getIntegrationApiRefundPointsRefundPointNames(data: GetIntegrationApiRefundPointsRefundPointNamesData = {}): CancelablePromise<GetIntegrationApiRefundPointsRefundPointNamesResponse> {
2131
2199
  return this.httpRequest.request({
2132
2200
  method: 'GET',
2133
- url: '/api/crm-service/refund-points/refund-point-names',
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
- * @returns UniRefund_CRMService_Merchants_SubIndividualDto Success
2221
+ * @param data.refundPointTypeCode
2222
+ * @returns unknown Success
2154
2223
  * @throws ApiError
2155
2224
  */
2156
- public getApiCrmServiceRefundPointsByIdAffiliatedIndividual(data: GetApiCrmServiceRefundPointsByIdAffiliatedIndividualData): CancelablePromise<GetApiCrmServiceRefundPointsByIdAffiliatedIndividualResponse> {
2225
+ public getIntegrationApiRefundPointsByIdExist(data: GetIntegrationApiRefundPointsByIdExistData): CancelablePromise<GetIntegrationApiRefundPointsByIdExistResponse> {
2157
2226
  return this.httpRequest.request({
2158
2227
  method: 'GET',
2159
- url: '/api/crm-service/refund-points/{id}/affiliated-individual',
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 UniRefund_CRMService_RefundPoints_RefundPointDetailForRefund Success
2249
+ * @returns UniRefund_CRMService_RefundPoints_RefundPointBasicInformationDto Success
2183
2250
  * @throws ApiError
2184
2251
  */
2185
- public getIntegrationApiRefundPoints(data: GetIntegrationApiRefundPointsData = {}): CancelablePromise<GetIntegrationApiRefundPointsResponse> {
2252
+ public getIntegrationApiRefundPointsByIdBasicInformation(data: GetIntegrationApiRefundPointsByIdBasicInformationData): CancelablePromise<GetIntegrationApiRefundPointsByIdBasicInformationResponse> {
2186
2253
  return this.httpRequest.request({
2187
2254
  method: 'GET',
2188
- url: '/integration-api/refund-points',
2189
- query: {
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
  }