@ayasofyazilim/saas 0.0.81 → 0.0.82
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 +15 -15
- package/CRMService/services.gen.ts +323 -83
- package/CRMService/types.gen.ts +541 -162
- package/package.json +1 -1
|
@@ -10,8 +10,10 @@ import { AffiliationCodeService } from './services.gen';
|
|
|
10
10
|
import { CustomsService } from './services.gen';
|
|
11
11
|
import { IndividualService } from './services.gen';
|
|
12
12
|
import { MerchantService } from './services.gen';
|
|
13
|
+
import { MerchantIntegrationService } from './services.gen';
|
|
13
14
|
import { OrganizationService } from './services.gen';
|
|
14
15
|
import { RefundPointService } from './services.gen';
|
|
16
|
+
import { RefundPointIntegrationService } from './services.gen';
|
|
15
17
|
import { TaxFreeService } from './services.gen';
|
|
16
18
|
import { TaxOfficeService } from './services.gen';
|
|
17
19
|
|
|
@@ -26,8 +28,10 @@ export class CRMServiceClient {
|
|
|
26
28
|
public readonly customs: CustomsService;
|
|
27
29
|
public readonly individual: IndividualService;
|
|
28
30
|
public readonly merchant: MerchantService;
|
|
31
|
+
public readonly merchantIntegration: MerchantIntegrationService;
|
|
29
32
|
public readonly organization: OrganizationService;
|
|
30
33
|
public readonly refundPoint: RefundPointService;
|
|
34
|
+
public readonly refundPointIntegration: RefundPointIntegrationService;
|
|
31
35
|
public readonly taxFree: TaxFreeService;
|
|
32
36
|
public readonly taxOffice: TaxOfficeService;
|
|
33
37
|
|
|
@@ -57,8 +61,10 @@ export class CRMServiceClient {
|
|
|
57
61
|
this.customs = new CustomsService(this.request);
|
|
58
62
|
this.individual = new IndividualService(this.request);
|
|
59
63
|
this.merchant = new MerchantService(this.request);
|
|
64
|
+
this.merchantIntegration = new MerchantIntegrationService(this.request);
|
|
60
65
|
this.organization = new OrganizationService(this.request);
|
|
61
66
|
this.refundPoint = new RefundPointService(this.request);
|
|
67
|
+
this.refundPointIntegration = new RefundPointIntegrationService(this.request);
|
|
62
68
|
this.taxFree = new TaxFreeService(this.request);
|
|
63
69
|
this.taxOffice = new TaxOfficeService(this.request);
|
|
64
70
|
}
|
|
@@ -10340,6 +10340,21 @@ export const $UniRefund_CRMService_RefundPoints_RefundPointBasicInformationDto =
|
|
|
10340
10340
|
additionalProperties: false
|
|
10341
10341
|
} as const;
|
|
10342
10342
|
|
|
10343
|
+
export const $UniRefund_CRMService_RefundPoints_RefundPointDetailForRefund = {
|
|
10344
|
+
type: 'object',
|
|
10345
|
+
properties: {
|
|
10346
|
+
name: {
|
|
10347
|
+
type: 'string',
|
|
10348
|
+
nullable: true
|
|
10349
|
+
},
|
|
10350
|
+
fullAddress: {
|
|
10351
|
+
type: 'string',
|
|
10352
|
+
nullable: true
|
|
10353
|
+
}
|
|
10354
|
+
},
|
|
10355
|
+
additionalProperties: false
|
|
10356
|
+
} as const;
|
|
10357
|
+
|
|
10343
10358
|
export const $UniRefund_CRMService_RefundPoints_RefundPointDto = {
|
|
10344
10359
|
type: 'object',
|
|
10345
10360
|
properties: {
|
|
@@ -11422,11 +11437,6 @@ export const $UniRefund_CRMService_TaxFrees_CreateTaxFreeDto = {
|
|
|
11422
11437
|
type: 'string',
|
|
11423
11438
|
nullable: true
|
|
11424
11439
|
},
|
|
11425
|
-
parentCompanyId: {
|
|
11426
|
-
type: 'string',
|
|
11427
|
-
format: 'uuid',
|
|
11428
|
-
nullable: true
|
|
11429
|
-
},
|
|
11430
11440
|
contactInformations: {
|
|
11431
11441
|
type: 'array',
|
|
11432
11442
|
items: {
|
|
@@ -11635,11 +11645,6 @@ export const $UniRefund_CRMService_TaxFrees_CreateTaxFreeEntityInformationTypeDt
|
|
|
11635
11645
|
type: 'string',
|
|
11636
11646
|
nullable: true
|
|
11637
11647
|
},
|
|
11638
|
-
parentCompanyId: {
|
|
11639
|
-
type: 'string',
|
|
11640
|
-
format: 'uuid',
|
|
11641
|
-
nullable: true
|
|
11642
|
-
},
|
|
11643
11648
|
contactInformations: {
|
|
11644
11649
|
type: 'array',
|
|
11645
11650
|
items: {
|
|
@@ -11828,11 +11833,6 @@ export const $UniRefund_CRMService_TaxFrees_CreateTaxFreeOrganizationDto = {
|
|
|
11828
11833
|
type: 'string',
|
|
11829
11834
|
nullable: true
|
|
11830
11835
|
},
|
|
11831
|
-
parentCompanyId: {
|
|
11832
|
-
type: 'string',
|
|
11833
|
-
format: 'uuid',
|
|
11834
|
-
nullable: true
|
|
11835
|
-
},
|
|
11836
11836
|
contactInformations: {
|
|
11837
11837
|
type: 'array',
|
|
11838
11838
|
items: {
|
|
@@ -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, PostApiCrmServiceIndividualsWithComponentsData, PostApiCrmServiceIndividualsWithComponentsResponse, DeleteApiCrmServiceIndividualsByIdData, DeleteApiCrmServiceIndividualsByIdResponse, GetApiCrmServiceIndividualsByIdData, GetApiCrmServiceIndividualsByIdResponse, GetApiCrmServiceIndividualsData, GetApiCrmServiceIndividualsResponse, GetApiCrmServiceIndividualsUserDevicesNamesData, GetApiCrmServiceIndividualsUserDevicesNamesResponse, GetApiCrmServiceIndividualsAllUserDevicesNamesData, GetApiCrmServiceIndividualsAllUserDevicesNamesResponse, GetApiCrmServiceIndividualsByIdAffiliationsData, GetApiCrmServiceIndividualsByIdAffiliationsResponse, GetApiCrmServiceMerchantsData, GetApiCrmServiceMerchantsResponse, GetApiCrmServiceMerchantsByIdBasicInformationData, GetApiCrmServiceMerchantsByIdBasicInformationResponse, GetApiCrmServiceMerchantsInfoData, GetApiCrmServiceMerchantsInfoResponse, GetApiCrmServiceMerchantsByIdData, GetApiCrmServiceMerchantsByIdResponse, PutApiCrmServiceMerchantsByIdData, PutApiCrmServiceMerchantsByIdResponse, GetApiCrmServiceMerchantsByIdEnsureExistData, GetApiCrmServiceMerchantsByIdEnsureExistResponse, 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, 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, GetApiCrmServiceTaxFreesData, GetApiCrmServiceTaxFreesResponse, GetApiCrmServiceTaxFreesByIdDetailData, GetApiCrmServiceTaxFreesByIdDetailResponse, GetApiCrmServiceTaxFreesByIdSubTaxFreeData, GetApiCrmServiceTaxFreesByIdSubTaxFreeResponse, PostApiCrmServiceTaxFreesWithComponentsData, PostApiCrmServiceTaxFreesWithComponentsResponse, DeleteApiCrmServiceTaxFreesByIdWithComponentsData, DeleteApiCrmServiceTaxFreesByIdWithComponentsResponse, PostApiCrmServiceTaxFreesByIdAffiliationsData, PostApiCrmServiceTaxFreesByIdAffiliationsResponse, GetApiCrmServiceTaxFreesByIdAffiliationsData, GetApiCrmServiceTaxFreesByIdAffiliationsResponse, PutApiCrmServiceTaxFreesByIdOrganizationsByOrganizationIdData, PutApiCrmServiceTaxFreesByIdOrganizationsByOrganizationIdResponse, PutApiCrmServiceTaxFreesByIdTelephonesByTelephoneIdData, PutApiCrmServiceTaxFreesByIdTelephonesByTelephoneIdResponse, PutApiCrmServiceTaxFreesByIdAddressesByAddressIdData, PutApiCrmServiceTaxFreesByIdAddressesByAddressIdResponse, PutApiCrmServiceTaxFreesByIdEmailsByEmailIdData, PutApiCrmServiceTaxFreesByIdEmailsByEmailIdResponse, 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 } 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, 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';
|
|
6
6
|
|
|
7
7
|
export class AbpApiDefinitionService {
|
|
8
8
|
constructor(public readonly httpRequest: BaseHttpRequest) { }
|
|
@@ -611,6 +611,30 @@ export class CustomsService {
|
|
|
611
611
|
});
|
|
612
612
|
}
|
|
613
613
|
|
|
614
|
+
/**
|
|
615
|
+
* @param data The data for the request.
|
|
616
|
+
* @param data.id
|
|
617
|
+
* @returns UniRefund_CRMService_Merchants_SubIndividualDto Success
|
|
618
|
+
* @throws ApiError
|
|
619
|
+
*/
|
|
620
|
+
public getApiCrmServiceCustomsByIdAffilatedIndividuals(data: GetApiCrmServiceCustomsByIdAffilatedIndividualsData): CancelablePromise<GetApiCrmServiceCustomsByIdAffilatedIndividualsResponse> {
|
|
621
|
+
return this.httpRequest.request({
|
|
622
|
+
method: 'GET',
|
|
623
|
+
url: '/api/crm-service/customs/{id}/affilated-individuals',
|
|
624
|
+
path: {
|
|
625
|
+
id: data.id
|
|
626
|
+
},
|
|
627
|
+
errors: {
|
|
628
|
+
400: 'Bad Request',
|
|
629
|
+
401: 'Unauthorized',
|
|
630
|
+
403: 'Forbidden',
|
|
631
|
+
404: 'Not Found',
|
|
632
|
+
500: 'Server Error',
|
|
633
|
+
501: 'Server Error'
|
|
634
|
+
}
|
|
635
|
+
});
|
|
636
|
+
}
|
|
637
|
+
|
|
614
638
|
}
|
|
615
639
|
|
|
616
640
|
export class IndividualService {
|
|
@@ -824,6 +848,8 @@ export class MerchantService {
|
|
|
824
848
|
* @param data The data for the request.
|
|
825
849
|
* @param data.ids
|
|
826
850
|
* @param data.typeCodes
|
|
851
|
+
* @param data.name
|
|
852
|
+
* @param data.productGroupIds
|
|
827
853
|
* @param data.sorting
|
|
828
854
|
* @param data.skipCount
|
|
829
855
|
* @param data.maxResultCount
|
|
@@ -837,6 +863,8 @@ export class MerchantService {
|
|
|
837
863
|
query: {
|
|
838
864
|
Ids: data.ids,
|
|
839
865
|
TypeCodes: data.typeCodes,
|
|
866
|
+
Name: data.name,
|
|
867
|
+
ProductGroupIds: data.productGroupIds,
|
|
840
868
|
Sorting: data.sorting,
|
|
841
869
|
SkipCount: data.skipCount,
|
|
842
870
|
MaxResultCount: data.maxResultCount
|
|
@@ -852,58 +880,6 @@ export class MerchantService {
|
|
|
852
880
|
});
|
|
853
881
|
}
|
|
854
882
|
|
|
855
|
-
/**
|
|
856
|
-
* @param data The data for the request.
|
|
857
|
-
* @param data.id
|
|
858
|
-
* @returns UniRefund_CRMService_Merchants_MerchantBasicInformationDto Success
|
|
859
|
-
* @throws ApiError
|
|
860
|
-
*/
|
|
861
|
-
public getApiCrmServiceMerchantsByIdBasicInformation(data: GetApiCrmServiceMerchantsByIdBasicInformationData): CancelablePromise<GetApiCrmServiceMerchantsByIdBasicInformationResponse> {
|
|
862
|
-
return this.httpRequest.request({
|
|
863
|
-
method: 'GET',
|
|
864
|
-
url: '/api/crm-service/merchants/{id}/basic-information',
|
|
865
|
-
path: {
|
|
866
|
-
id: data.id
|
|
867
|
-
},
|
|
868
|
-
errors: {
|
|
869
|
-
400: 'Bad Request',
|
|
870
|
-
401: 'Unauthorized',
|
|
871
|
-
403: 'Forbidden',
|
|
872
|
-
404: 'Not Found',
|
|
873
|
-
500: 'Server Error',
|
|
874
|
-
501: 'Server Error'
|
|
875
|
-
}
|
|
876
|
-
});
|
|
877
|
-
}
|
|
878
|
-
|
|
879
|
-
/**
|
|
880
|
-
* @param data The data for the request.
|
|
881
|
-
* @param data.vatNumber
|
|
882
|
-
* @param data.countryCode
|
|
883
|
-
* @param data.branchId
|
|
884
|
-
* @returns UniRefund_CRMService_Merchants_MerchantInfoDto Success
|
|
885
|
-
* @throws ApiError
|
|
886
|
-
*/
|
|
887
|
-
public getApiCrmServiceMerchantsInfo(data: GetApiCrmServiceMerchantsInfoData = {}): CancelablePromise<GetApiCrmServiceMerchantsInfoResponse> {
|
|
888
|
-
return this.httpRequest.request({
|
|
889
|
-
method: 'GET',
|
|
890
|
-
url: '/api/crm-service/merchants/info',
|
|
891
|
-
query: {
|
|
892
|
-
VatNumber: data.vatNumber,
|
|
893
|
-
CountryCode: data.countryCode,
|
|
894
|
-
BranchId: data.branchId
|
|
895
|
-
},
|
|
896
|
-
errors: {
|
|
897
|
-
400: 'Bad Request',
|
|
898
|
-
401: 'Unauthorized',
|
|
899
|
-
403: 'Forbidden',
|
|
900
|
-
404: 'Not Found',
|
|
901
|
-
500: 'Server Error',
|
|
902
|
-
501: 'Server Error'
|
|
903
|
-
}
|
|
904
|
-
});
|
|
905
|
-
}
|
|
906
|
-
|
|
907
883
|
/**
|
|
908
884
|
* @param data The data for the request.
|
|
909
885
|
* @param data.id
|
|
@@ -955,36 +931,6 @@ export class MerchantService {
|
|
|
955
931
|
});
|
|
956
932
|
}
|
|
957
933
|
|
|
958
|
-
/**
|
|
959
|
-
* @param data The data for the request.
|
|
960
|
-
* @param data.id
|
|
961
|
-
* @param data.subId
|
|
962
|
-
* @param data.typeCode
|
|
963
|
-
* @returns unknown Success
|
|
964
|
-
* @throws ApiError
|
|
965
|
-
*/
|
|
966
|
-
public getApiCrmServiceMerchantsByIdEnsureExist(data: GetApiCrmServiceMerchantsByIdEnsureExistData): CancelablePromise<GetApiCrmServiceMerchantsByIdEnsureExistResponse> {
|
|
967
|
-
return this.httpRequest.request({
|
|
968
|
-
method: 'GET',
|
|
969
|
-
url: '/api/crm-service/merchants/{id}/ensure-exist',
|
|
970
|
-
path: {
|
|
971
|
-
id: data.id
|
|
972
|
-
},
|
|
973
|
-
query: {
|
|
974
|
-
subId: data.subId,
|
|
975
|
-
typeCode: data.typeCode
|
|
976
|
-
},
|
|
977
|
-
errors: {
|
|
978
|
-
400: 'Bad Request',
|
|
979
|
-
401: 'Unauthorized',
|
|
980
|
-
403: 'Forbidden',
|
|
981
|
-
404: 'Not Found',
|
|
982
|
-
500: 'Server Error',
|
|
983
|
-
501: 'Server Error'
|
|
984
|
-
}
|
|
985
|
-
});
|
|
986
|
-
}
|
|
987
|
-
|
|
988
934
|
/**
|
|
989
935
|
* @param data The data for the request.
|
|
990
936
|
* @param data.id
|
|
@@ -1561,6 +1507,199 @@ export class MerchantService {
|
|
|
1561
1507
|
|
|
1562
1508
|
}
|
|
1563
1509
|
|
|
1510
|
+
export class MerchantIntegrationService {
|
|
1511
|
+
constructor(public readonly httpRequest: BaseHttpRequest) { }
|
|
1512
|
+
|
|
1513
|
+
/**
|
|
1514
|
+
* @param data The data for the request.
|
|
1515
|
+
* @param data.id
|
|
1516
|
+
* @returns UniRefund_CRMService_Merchants_MerchantBasicInformationDto Success
|
|
1517
|
+
* @throws ApiError
|
|
1518
|
+
*/
|
|
1519
|
+
public getIntegrationApiMerchantsByIdBasicInformation(data: GetIntegrationApiMerchantsByIdBasicInformationData): CancelablePromise<GetIntegrationApiMerchantsByIdBasicInformationResponse> {
|
|
1520
|
+
return this.httpRequest.request({
|
|
1521
|
+
method: 'GET',
|
|
1522
|
+
url: '/integration-api/merchants/{id}/basic-information',
|
|
1523
|
+
path: {
|
|
1524
|
+
id: data.id
|
|
1525
|
+
},
|
|
1526
|
+
errors: {
|
|
1527
|
+
400: 'Bad Request',
|
|
1528
|
+
401: 'Unauthorized',
|
|
1529
|
+
403: 'Forbidden',
|
|
1530
|
+
404: 'Not Found',
|
|
1531
|
+
500: 'Server Error',
|
|
1532
|
+
501: 'Server Error'
|
|
1533
|
+
}
|
|
1534
|
+
});
|
|
1535
|
+
}
|
|
1536
|
+
|
|
1537
|
+
/**
|
|
1538
|
+
* @param data The data for the request.
|
|
1539
|
+
* @param data.vatNumber
|
|
1540
|
+
* @param data.countryCode
|
|
1541
|
+
* @param data.branchId
|
|
1542
|
+
* @returns UniRefund_CRMService_Merchants_MerchantInfoDto Success
|
|
1543
|
+
* @throws ApiError
|
|
1544
|
+
*/
|
|
1545
|
+
public getIntegrationApiMerchantsInfo(data: GetIntegrationApiMerchantsInfoData = {}): CancelablePromise<GetIntegrationApiMerchantsInfoResponse> {
|
|
1546
|
+
return this.httpRequest.request({
|
|
1547
|
+
method: 'GET',
|
|
1548
|
+
url: '/integration-api/merchants/info',
|
|
1549
|
+
query: {
|
|
1550
|
+
VatNumber: data.vatNumber,
|
|
1551
|
+
CountryCode: data.countryCode,
|
|
1552
|
+
BranchId: data.branchId
|
|
1553
|
+
},
|
|
1554
|
+
errors: {
|
|
1555
|
+
400: 'Bad Request',
|
|
1556
|
+
401: 'Unauthorized',
|
|
1557
|
+
403: 'Forbidden',
|
|
1558
|
+
404: 'Not Found',
|
|
1559
|
+
500: 'Server Error',
|
|
1560
|
+
501: 'Server Error'
|
|
1561
|
+
}
|
|
1562
|
+
});
|
|
1563
|
+
}
|
|
1564
|
+
|
|
1565
|
+
/**
|
|
1566
|
+
* @param data The data for the request.
|
|
1567
|
+
* @param data.id
|
|
1568
|
+
* @param data.storeId
|
|
1569
|
+
* @param data.typeCode
|
|
1570
|
+
* @returns unknown Success
|
|
1571
|
+
* @throws ApiError
|
|
1572
|
+
*/
|
|
1573
|
+
public getIntegrationApiMerchantsByIdEnsureExist(data: GetIntegrationApiMerchantsByIdEnsureExistData): CancelablePromise<GetIntegrationApiMerchantsByIdEnsureExistResponse> {
|
|
1574
|
+
return this.httpRequest.request({
|
|
1575
|
+
method: 'GET',
|
|
1576
|
+
url: '/integration-api/merchants/{id}/ensure-exist',
|
|
1577
|
+
path: {
|
|
1578
|
+
id: data.id
|
|
1579
|
+
},
|
|
1580
|
+
query: {
|
|
1581
|
+
storeId: data.storeId,
|
|
1582
|
+
typeCode: data.typeCode
|
|
1583
|
+
},
|
|
1584
|
+
errors: {
|
|
1585
|
+
400: 'Bad Request',
|
|
1586
|
+
401: 'Unauthorized',
|
|
1587
|
+
403: 'Forbidden',
|
|
1588
|
+
404: 'Not Found',
|
|
1589
|
+
500: 'Server Error',
|
|
1590
|
+
501: 'Server Error'
|
|
1591
|
+
}
|
|
1592
|
+
});
|
|
1593
|
+
}
|
|
1594
|
+
|
|
1595
|
+
/**
|
|
1596
|
+
* @param data The data for the request.
|
|
1597
|
+
* @param data.ids
|
|
1598
|
+
* @param data.typeCodes
|
|
1599
|
+
* @returns UniRefund_CRMService_Merchants_MerchantProfileDto Success
|
|
1600
|
+
* @throws ApiError
|
|
1601
|
+
*/
|
|
1602
|
+
public getIntegrationApiMerchants(data: GetIntegrationApiMerchantsData): CancelablePromise<GetIntegrationApiMerchantsResponse> {
|
|
1603
|
+
return this.httpRequest.request({
|
|
1604
|
+
method: 'GET',
|
|
1605
|
+
url: '/integration-api/merchants',
|
|
1606
|
+
query: {
|
|
1607
|
+
Ids: data.ids,
|
|
1608
|
+
TypeCodes: data.typeCodes
|
|
1609
|
+
},
|
|
1610
|
+
errors: {
|
|
1611
|
+
400: 'Bad Request',
|
|
1612
|
+
401: 'Unauthorized',
|
|
1613
|
+
403: 'Forbidden',
|
|
1614
|
+
404: 'Not Found',
|
|
1615
|
+
500: 'Server Error',
|
|
1616
|
+
501: 'Server Error'
|
|
1617
|
+
}
|
|
1618
|
+
});
|
|
1619
|
+
}
|
|
1620
|
+
|
|
1621
|
+
/**
|
|
1622
|
+
* @param data The data for the request.
|
|
1623
|
+
* @param data.id
|
|
1624
|
+
* @param data.sorting
|
|
1625
|
+
* @param data.skipCount
|
|
1626
|
+
* @param data.maxResultCount
|
|
1627
|
+
* @returns UniRefund_CRMService_Merchants_StoreProfilePagedResultDto Success
|
|
1628
|
+
* @throws ApiError
|
|
1629
|
+
*/
|
|
1630
|
+
public getIntegrationApiMerchantsByIdStores(data: GetIntegrationApiMerchantsByIdStoresData): CancelablePromise<GetIntegrationApiMerchantsByIdStoresResponse> {
|
|
1631
|
+
return this.httpRequest.request({
|
|
1632
|
+
method: 'GET',
|
|
1633
|
+
url: '/integration-api/merchants/{id}/stores',
|
|
1634
|
+
path: {
|
|
1635
|
+
id: data.id
|
|
1636
|
+
},
|
|
1637
|
+
query: {
|
|
1638
|
+
Sorting: data.sorting,
|
|
1639
|
+
SkipCount: data.skipCount,
|
|
1640
|
+
MaxResultCount: data.maxResultCount
|
|
1641
|
+
},
|
|
1642
|
+
errors: {
|
|
1643
|
+
400: 'Bad Request',
|
|
1644
|
+
401: 'Unauthorized',
|
|
1645
|
+
403: 'Forbidden',
|
|
1646
|
+
404: 'Not Found',
|
|
1647
|
+
500: 'Server Error',
|
|
1648
|
+
501: 'Server Error'
|
|
1649
|
+
}
|
|
1650
|
+
});
|
|
1651
|
+
}
|
|
1652
|
+
|
|
1653
|
+
/**
|
|
1654
|
+
* @param data The data for the request.
|
|
1655
|
+
* @param data.id
|
|
1656
|
+
* @returns UniRefund_CRMService_Merchants_MerchantDetailDto Success
|
|
1657
|
+
* @throws ApiError
|
|
1658
|
+
*/
|
|
1659
|
+
public getIntegrationApiMerchantsByIdDetail(data: GetIntegrationApiMerchantsByIdDetailData): CancelablePromise<GetIntegrationApiMerchantsByIdDetailResponse> {
|
|
1660
|
+
return this.httpRequest.request({
|
|
1661
|
+
method: 'GET',
|
|
1662
|
+
url: '/integration-api/merchants/{id}/detail',
|
|
1663
|
+
path: {
|
|
1664
|
+
id: data.id
|
|
1665
|
+
},
|
|
1666
|
+
errors: {
|
|
1667
|
+
400: 'Bad Request',
|
|
1668
|
+
401: 'Unauthorized',
|
|
1669
|
+
403: 'Forbidden',
|
|
1670
|
+
404: 'Not Found',
|
|
1671
|
+
500: 'Server Error',
|
|
1672
|
+
501: 'Server Error'
|
|
1673
|
+
}
|
|
1674
|
+
});
|
|
1675
|
+
}
|
|
1676
|
+
|
|
1677
|
+
/**
|
|
1678
|
+
* @param data The data for the request.
|
|
1679
|
+
* @param data.ids
|
|
1680
|
+
* @returns UniRefund_CRMService_Merchants_MerchantDetailDto Success
|
|
1681
|
+
* @throws ApiError
|
|
1682
|
+
*/
|
|
1683
|
+
public getIntegrationApiMerchantsDetailsList(data: GetIntegrationApiMerchantsDetailsListData = {}): CancelablePromise<GetIntegrationApiMerchantsDetailsListResponse> {
|
|
1684
|
+
return this.httpRequest.request({
|
|
1685
|
+
method: 'GET',
|
|
1686
|
+
url: '/integration-api/merchants/details-list',
|
|
1687
|
+
query: {
|
|
1688
|
+
ids: data.ids
|
|
1689
|
+
},
|
|
1690
|
+
errors: {
|
|
1691
|
+
400: 'Bad Request',
|
|
1692
|
+
401: 'Unauthorized',
|
|
1693
|
+
403: 'Forbidden',
|
|
1694
|
+
404: 'Not Found',
|
|
1695
|
+
500: 'Server Error',
|
|
1696
|
+
501: 'Server Error'
|
|
1697
|
+
}
|
|
1698
|
+
});
|
|
1699
|
+
}
|
|
1700
|
+
|
|
1701
|
+
}
|
|
1702
|
+
|
|
1564
1703
|
export class OrganizationService {
|
|
1565
1704
|
constructor(public readonly httpRequest: BaseHttpRequest) { }
|
|
1566
1705
|
|
|
@@ -2008,6 +2147,59 @@ export class RefundPointService {
|
|
|
2008
2147
|
});
|
|
2009
2148
|
}
|
|
2010
2149
|
|
|
2150
|
+
/**
|
|
2151
|
+
* @param data The data for the request.
|
|
2152
|
+
* @param data.id
|
|
2153
|
+
* @returns UniRefund_CRMService_Merchants_SubIndividualDto Success
|
|
2154
|
+
* @throws ApiError
|
|
2155
|
+
*/
|
|
2156
|
+
public getApiCrmServiceRefundPointsByIdAffiliatedIndividual(data: GetApiCrmServiceRefundPointsByIdAffiliatedIndividualData): CancelablePromise<GetApiCrmServiceRefundPointsByIdAffiliatedIndividualResponse> {
|
|
2157
|
+
return this.httpRequest.request({
|
|
2158
|
+
method: 'GET',
|
|
2159
|
+
url: '/api/crm-service/refund-points/{id}/affiliated-individual',
|
|
2160
|
+
path: {
|
|
2161
|
+
id: data.id
|
|
2162
|
+
},
|
|
2163
|
+
errors: {
|
|
2164
|
+
400: 'Bad Request',
|
|
2165
|
+
401: 'Unauthorized',
|
|
2166
|
+
403: 'Forbidden',
|
|
2167
|
+
404: 'Not Found',
|
|
2168
|
+
500: 'Server Error',
|
|
2169
|
+
501: 'Server Error'
|
|
2170
|
+
}
|
|
2171
|
+
});
|
|
2172
|
+
}
|
|
2173
|
+
|
|
2174
|
+
}
|
|
2175
|
+
|
|
2176
|
+
export class RefundPointIntegrationService {
|
|
2177
|
+
constructor(public readonly httpRequest: BaseHttpRequest) { }
|
|
2178
|
+
|
|
2179
|
+
/**
|
|
2180
|
+
* @param data The data for the request.
|
|
2181
|
+
* @param data.id
|
|
2182
|
+
* @returns UniRefund_CRMService_RefundPoints_RefundPointDetailForRefund Success
|
|
2183
|
+
* @throws ApiError
|
|
2184
|
+
*/
|
|
2185
|
+
public getIntegrationApiRefundPoints(data: GetIntegrationApiRefundPointsData = {}): CancelablePromise<GetIntegrationApiRefundPointsResponse> {
|
|
2186
|
+
return this.httpRequest.request({
|
|
2187
|
+
method: 'GET',
|
|
2188
|
+
url: '/integration-api/refund-points',
|
|
2189
|
+
query: {
|
|
2190
|
+
id: data.id
|
|
2191
|
+
},
|
|
2192
|
+
errors: {
|
|
2193
|
+
400: 'Bad Request',
|
|
2194
|
+
401: 'Unauthorized',
|
|
2195
|
+
403: 'Forbidden',
|
|
2196
|
+
404: 'Not Found',
|
|
2197
|
+
500: 'Server Error',
|
|
2198
|
+
501: 'Server Error'
|
|
2199
|
+
}
|
|
2200
|
+
});
|
|
2201
|
+
}
|
|
2202
|
+
|
|
2011
2203
|
}
|
|
2012
2204
|
|
|
2013
2205
|
export class TaxFreeService {
|
|
@@ -2315,6 +2507,30 @@ export class TaxFreeService {
|
|
|
2315
2507
|
});
|
|
2316
2508
|
}
|
|
2317
2509
|
|
|
2510
|
+
/**
|
|
2511
|
+
* @param data The data for the request.
|
|
2512
|
+
* @param data.id
|
|
2513
|
+
* @returns UniRefund_CRMService_Merchants_SubIndividualDto Success
|
|
2514
|
+
* @throws ApiError
|
|
2515
|
+
*/
|
|
2516
|
+
public getApiCrmServiceTaxFreesByIdAffiliatedIndividuals(data: GetApiCrmServiceTaxFreesByIdAffiliatedIndividualsData): CancelablePromise<GetApiCrmServiceTaxFreesByIdAffiliatedIndividualsResponse> {
|
|
2517
|
+
return this.httpRequest.request({
|
|
2518
|
+
method: 'GET',
|
|
2519
|
+
url: '/api/crm-service/tax-frees/{id}/affiliated-individuals',
|
|
2520
|
+
path: {
|
|
2521
|
+
id: data.id
|
|
2522
|
+
},
|
|
2523
|
+
errors: {
|
|
2524
|
+
400: 'Bad Request',
|
|
2525
|
+
401: 'Unauthorized',
|
|
2526
|
+
403: 'Forbidden',
|
|
2527
|
+
404: 'Not Found',
|
|
2528
|
+
500: 'Server Error',
|
|
2529
|
+
501: 'Server Error'
|
|
2530
|
+
}
|
|
2531
|
+
});
|
|
2532
|
+
}
|
|
2533
|
+
|
|
2318
2534
|
}
|
|
2319
2535
|
|
|
2320
2536
|
export class TaxOfficeService {
|
|
@@ -2670,4 +2886,28 @@ export class TaxOfficeService {
|
|
|
2670
2886
|
});
|
|
2671
2887
|
}
|
|
2672
2888
|
|
|
2889
|
+
/**
|
|
2890
|
+
* @param data The data for the request.
|
|
2891
|
+
* @param data.id
|
|
2892
|
+
* @returns UniRefund_CRMService_Merchants_SubIndividualDto Success
|
|
2893
|
+
* @throws ApiError
|
|
2894
|
+
*/
|
|
2895
|
+
public getApiCrmServiceTaxOfficesByIdAffiliatedIndividuals(data: GetApiCrmServiceTaxOfficesByIdAffiliatedIndividualsData): CancelablePromise<GetApiCrmServiceTaxOfficesByIdAffiliatedIndividualsResponse> {
|
|
2896
|
+
return this.httpRequest.request({
|
|
2897
|
+
method: 'GET',
|
|
2898
|
+
url: '/api/crm-service/tax-offices/{id}/affiliated-individuals',
|
|
2899
|
+
path: {
|
|
2900
|
+
id: data.id
|
|
2901
|
+
},
|
|
2902
|
+
errors: {
|
|
2903
|
+
400: 'Bad Request',
|
|
2904
|
+
401: 'Unauthorized',
|
|
2905
|
+
403: 'Forbidden',
|
|
2906
|
+
404: 'Not Found',
|
|
2907
|
+
500: 'Server Error',
|
|
2908
|
+
501: 'Server Error'
|
|
2909
|
+
}
|
|
2910
|
+
});
|
|
2911
|
+
}
|
|
2912
|
+
|
|
2673
2913
|
}
|