@ayasofyazilim/saas 0.0.44 → 0.0.46
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/schemas.gen.ts +88 -5
- package/CRMService/services.gen.ts +63 -1
- package/CRMService/types.gen.ts +113 -2
- package/ContractService/schemas.gen.ts +126 -66
- package/ContractService/services.gen.ts +29 -1
- package/ContractService/types.gen.ts +58 -7
- package/LocationService/LocationServiceClient.ts +3 -39
- package/LocationService/schemas.gen.ts +1436 -4933
- package/LocationService/services.gen.ts +195 -1861
- package/LocationService/types.gen.ts +449 -3341
- package/TagService/schemas.gen.ts +496 -266
- package/TagService/types.gen.ts +74 -43
- package/TravellerService/schemas.gen.ts +164 -26
- package/TravellerService/services.gen.ts +16 -2
- package/TravellerService/types.gen.ts +38 -9
- package/package.json +1 -1
|
@@ -7432,6 +7432,45 @@ export const $UniRefund_CRMService_NameCommonDatas_NameCommonDataDto = {
|
|
|
7432
7432
|
additionalProperties: false
|
|
7433
7433
|
} as const;
|
|
7434
7434
|
|
|
7435
|
+
export const $UniRefund_CRMService_NameCommonDatas_UpdateNameCommonDataDto = {
|
|
7436
|
+
required: ['mailingName', 'name', 'officialName', 'salutation', 'suffix'],
|
|
7437
|
+
type: 'object',
|
|
7438
|
+
properties: {
|
|
7439
|
+
extraProperties: {
|
|
7440
|
+
type: 'object',
|
|
7441
|
+
additionalProperties: {},
|
|
7442
|
+
nullable: true,
|
|
7443
|
+
readOnly: true
|
|
7444
|
+
},
|
|
7445
|
+
salutation: {
|
|
7446
|
+
maxLength: 255,
|
|
7447
|
+
minLength: 0,
|
|
7448
|
+
type: 'string'
|
|
7449
|
+
},
|
|
7450
|
+
name: {
|
|
7451
|
+
maxLength: 255,
|
|
7452
|
+
minLength: 0,
|
|
7453
|
+
type: 'string'
|
|
7454
|
+
},
|
|
7455
|
+
suffix: {
|
|
7456
|
+
maxLength: 255,
|
|
7457
|
+
minLength: 0,
|
|
7458
|
+
type: 'string'
|
|
7459
|
+
},
|
|
7460
|
+
mailingName: {
|
|
7461
|
+
maxLength: 255,
|
|
7462
|
+
minLength: 0,
|
|
7463
|
+
type: 'string'
|
|
7464
|
+
},
|
|
7465
|
+
officialName: {
|
|
7466
|
+
maxLength: 255,
|
|
7467
|
+
minLength: 0,
|
|
7468
|
+
type: 'string'
|
|
7469
|
+
}
|
|
7470
|
+
},
|
|
7471
|
+
additionalProperties: false
|
|
7472
|
+
} as const;
|
|
7473
|
+
|
|
7435
7474
|
export const $UniRefund_CRMService_Organizations_CreateOrganizationDto = {
|
|
7436
7475
|
required: ['legalStatusCode', 'name', 'taxpayerId'],
|
|
7437
7476
|
type: 'object',
|
|
@@ -8005,7 +8044,7 @@ export const $UniRefund_CRMService_Organizations_OrganizationProfileDto = {
|
|
|
8005
8044
|
} as const;
|
|
8006
8045
|
|
|
8007
8046
|
export const $UniRefund_CRMService_Organizations_UpdateOrganizationDto = {
|
|
8008
|
-
required: ['name'],
|
|
8047
|
+
required: ['legalStatusCode', 'name', 'taxpayerId'],
|
|
8009
8048
|
type: 'object',
|
|
8010
8049
|
properties: {
|
|
8011
8050
|
extraProperties: {
|
|
@@ -8020,12 +8059,14 @@ export const $UniRefund_CRMService_Organizations_UpdateOrganizationDto = {
|
|
|
8020
8059
|
type: 'string'
|
|
8021
8060
|
},
|
|
8022
8061
|
taxpayerId: {
|
|
8023
|
-
|
|
8024
|
-
|
|
8062
|
+
maxLength: 255,
|
|
8063
|
+
minLength: 0,
|
|
8064
|
+
type: 'string'
|
|
8025
8065
|
},
|
|
8026
8066
|
legalStatusCode: {
|
|
8027
|
-
|
|
8028
|
-
|
|
8067
|
+
maxLength: 255,
|
|
8068
|
+
minLength: 0,
|
|
8069
|
+
type: 'string'
|
|
8029
8070
|
},
|
|
8030
8071
|
customerNumber: {
|
|
8031
8072
|
type: 'string',
|
|
@@ -8158,6 +8199,48 @@ export const $UniRefund_CRMService_PersonalSummaries_PersonalSummaryDto = {
|
|
|
8158
8199
|
additionalProperties: false
|
|
8159
8200
|
} as const;
|
|
8160
8201
|
|
|
8202
|
+
export const $UniRefund_CRMService_PersonalSummaries_UpdatePersonalSummaryDto = {
|
|
8203
|
+
required: ['birthDate', 'date', 'ethnicity', 'genderTypeCode', 'maritalStatusCode', 'religiousAffiliationName'],
|
|
8204
|
+
type: 'object',
|
|
8205
|
+
properties: {
|
|
8206
|
+
extraProperties: {
|
|
8207
|
+
type: 'object',
|
|
8208
|
+
additionalProperties: {},
|
|
8209
|
+
nullable: true,
|
|
8210
|
+
readOnly: true
|
|
8211
|
+
},
|
|
8212
|
+
date: {
|
|
8213
|
+
type: 'string',
|
|
8214
|
+
format: 'date-time'
|
|
8215
|
+
},
|
|
8216
|
+
birthDate: {
|
|
8217
|
+
type: 'string',
|
|
8218
|
+
format: 'date-time'
|
|
8219
|
+
},
|
|
8220
|
+
ethnicity: {
|
|
8221
|
+
maxLength: 255,
|
|
8222
|
+
minLength: 0,
|
|
8223
|
+
type: 'string'
|
|
8224
|
+
},
|
|
8225
|
+
maritalStatusCode: {
|
|
8226
|
+
maxLength: 255,
|
|
8227
|
+
minLength: 0,
|
|
8228
|
+
type: 'string'
|
|
8229
|
+
},
|
|
8230
|
+
religiousAffiliationName: {
|
|
8231
|
+
maxLength: 255,
|
|
8232
|
+
minLength: 0,
|
|
8233
|
+
type: 'string'
|
|
8234
|
+
},
|
|
8235
|
+
genderTypeCode: {
|
|
8236
|
+
enum: [0, 1],
|
|
8237
|
+
type: 'integer',
|
|
8238
|
+
format: 'int32'
|
|
8239
|
+
}
|
|
8240
|
+
},
|
|
8241
|
+
additionalProperties: false
|
|
8242
|
+
} as const;
|
|
8243
|
+
|
|
8161
8244
|
export const $UniRefund_CRMService_RefundPoints_CreateRefundPointDto = {
|
|
8162
8245
|
required: ['typeCode'],
|
|
8163
8246
|
type: 'object',
|
|
@@ -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, GetApiCrmServiceAddressesData, GetApiCrmServiceAddressesResponse, PostApiCrmServiceAddressesData, PostApiCrmServiceAddressesResponse, GetApiCrmServiceAddressesByIdData, GetApiCrmServiceAddressesByIdResponse, PutApiCrmServiceAddressesByIdData, PutApiCrmServiceAddressesByIdResponse, DeleteApiCrmServiceAddressesByIdData, DeleteApiCrmServiceAddressesByIdResponse, GetApiCrmServiceCustomsData, GetApiCrmServiceCustomsResponse, GetApiCrmServiceCustomsByIdDetailData, GetApiCrmServiceCustomsByIdDetailResponse, PostApiCrmServiceCustomsWithComponentsData, PostApiCrmServiceCustomsWithComponentsResponse, DeleteApiCrmServiceCustomsByIdWithComponentsData, DeleteApiCrmServiceCustomsByIdWithComponentsResponse, PostApiCrmServiceCustomsByIdAffiliationsData, PostApiCrmServiceCustomsByIdAffiliationsResponse, GetApiCrmServiceCustomsByIdAffiliationsData, GetApiCrmServiceCustomsByIdAffiliationsResponse, PutApiCrmServiceCustomsByIdOrganizationsByOrganizationIdData, PutApiCrmServiceCustomsByIdOrganizationsByOrganizationIdResponse, PutApiCrmServiceCustomsByIdTelephonesByTelephoneIdData, PutApiCrmServiceCustomsByIdTelephonesByTelephoneIdResponse, PutApiCrmServiceCustomsByIdAddressesByAddressIdData, PutApiCrmServiceCustomsByIdAddressesByAddressIdResponse, PutApiCrmServiceCustomsByIdEmailsByEmailIdData, PutApiCrmServiceCustomsByIdEmailsByEmailIdResponse, GetApiCrmServiceEmailsData, GetApiCrmServiceEmailsResponse, PostApiCrmServiceEmailsData, PostApiCrmServiceEmailsResponse, GetApiCrmServiceEmailsByIdData, GetApiCrmServiceEmailsByIdResponse, PutApiCrmServiceEmailsByIdData, PutApiCrmServiceEmailsByIdResponse, DeleteApiCrmServiceEmailsByIdData, DeleteApiCrmServiceEmailsByIdResponse, PostApiCrmServiceIndividualsWithComponentsData, PostApiCrmServiceIndividualsWithComponentsResponse, GetApiCrmServiceIndividualsData, GetApiCrmServiceIndividualsResponse, GetApiCrmServiceMerchantsData, GetApiCrmServiceMerchantsResponse, GetApiCrmServiceMerchantsInfoData, GetApiCrmServiceMerchantsInfoResponse, GetApiCrmServiceMerchantsByIdDetailData, GetApiCrmServiceMerchantsByIdDetailResponse, GetApiCrmServiceMerchantsByIdSubMerchantsData, GetApiCrmServiceMerchantsByIdSubMerchantsResponse, PostApiCrmServiceMerchantsWithComponentsData, PostApiCrmServiceMerchantsWithComponentsResponse, DeleteApiCrmServiceMerchantsByIdWithComponentsData, DeleteApiCrmServiceMerchantsByIdWithComponentsResponse, GetApiCrmServiceMerchantsByIdAffiliationsData, GetApiCrmServiceMerchantsByIdAffiliationsResponse, PostApiCrmServiceMerchantsByIdAffiliationsData, PostApiCrmServiceMerchantsByIdAffiliationsResponse, PutApiCrmServiceMerchantsByIdOrganizationsByOrganizationIdData, PutApiCrmServiceMerchantsByIdOrganizationsByOrganizationIdResponse, PostApiCrmServiceMerchantsBulkProductGroupMerchantsData, PostApiCrmServiceMerchantsBulkProductGroupMerchantsResponse, PutApiCrmServiceMerchantsByIdTelephonesByTelephoneIdData, PutApiCrmServiceMerchantsByIdTelephonesByTelephoneIdResponse, GetApiCrmServiceMerchantsByIdAddressesData, GetApiCrmServiceMerchantsByIdAddressesResponse, PutApiCrmServiceMerchantsByIdAddressesByAddressIdData, PutApiCrmServiceMerchantsByIdAddressesByAddressIdResponse, PutApiCrmServiceMerchantsByIdEmailsByEmailIdData, PutApiCrmServiceMerchantsByIdEmailsByEmailIdResponse, PostApiCrmServiceOrganizationsWithComponentsData, PostApiCrmServiceOrganizationsWithComponentsResponse, GetApiCrmServiceOrganizationsData, GetApiCrmServiceOrganizationsResponse, GetApiCrmServiceRefundPointsData, GetApiCrmServiceRefundPointsResponse, GetApiCrmServiceRefundPointsByIdDetailData, GetApiCrmServiceRefundPointsByIdDetailResponse, PostApiCrmServiceRefundPointsWithComponentsData, PostApiCrmServiceRefundPointsWithComponentsResponse, DeleteApiCrmServiceRefundPointsByIdWithComponentsData, DeleteApiCrmServiceRefundPointsByIdWithComponentsResponse, PostApiCrmServiceRefundPointsByIdAffiliationsData, PostApiCrmServiceRefundPointsByIdAffiliationsResponse, GetApiCrmServiceRefundPointsByIdAffiliationsData, GetApiCrmServiceRefundPointsByIdAffiliationsResponse, PutApiCrmServiceRefundPointsByIdOrganizationsByOrganizationIdData, PutApiCrmServiceRefundPointsByIdOrganizationsByOrganizationIdResponse, PutApiCrmServiceRefundPointsByIdTelephonesByTelephoneIdData, PutApiCrmServiceRefundPointsByIdTelephonesByTelephoneIdResponse, PutApiCrmServiceRefundPointsByIdAddressesByAddressIdData, PutApiCrmServiceRefundPointsByIdAddressesByAddressIdResponse, PutApiCrmServiceRefundPointsByIdEmailsByEmailIdData, PutApiCrmServiceRefundPointsByIdEmailsByEmailIdResponse, GetApiCrmServiceTaxFreesData, GetApiCrmServiceTaxFreesResponse, GetApiCrmServiceTaxFreesByIdDetailData, GetApiCrmServiceTaxFreesByIdDetailResponse, PostApiCrmServiceTaxFreesWithComponentsData, PostApiCrmServiceTaxFreesWithComponentsResponse, DeleteApiCrmServiceTaxFreesByIdWithComponentsData, DeleteApiCrmServiceTaxFreesByIdWithComponentsResponse, PostApiCrmServiceTaxFreesByIdAffiliationsData, PostApiCrmServiceTaxFreesByIdAffiliationsResponse, GetApiCrmServiceTaxFreesByIdAffiliationsData, GetApiCrmServiceTaxFreesByIdAffiliationsResponse, PutApiCrmServiceTaxFreesByIdOrganizationsByOrganizationIdData, PutApiCrmServiceTaxFreesByIdOrganizationsByOrganizationIdResponse, PutApiCrmServiceTaxFreesByIdTelephonesByTelephoneIdData, PutApiCrmServiceTaxFreesByIdTelephonesByTelephoneIdResponse, PutApiCrmServiceTaxFreesByIdAddressesByAddressIdData, PutApiCrmServiceTaxFreesByIdAddressesByAddressIdResponse, PutApiCrmServiceTaxFreesByIdEmailsByEmailIdData, PutApiCrmServiceTaxFreesByIdEmailsByEmailIdResponse, GetApiCrmServiceTaxOfficesData, GetApiCrmServiceTaxOfficesResponse, GetApiCrmServiceTaxOfficesByIdDetailData, GetApiCrmServiceTaxOfficesByIdDetailResponse, PostApiCrmServiceTaxOfficesWithComponentsData, PostApiCrmServiceTaxOfficesWithComponentsResponse, DeleteApiCrmServiceTaxOfficesByIdWithComponentsData, DeleteApiCrmServiceTaxOfficesByIdWithComponentsResponse, PostApiCrmServiceTaxOfficesByIdAffiliationsData, PostApiCrmServiceTaxOfficesByIdAffiliationsResponse, GetApiCrmServiceTaxOfficesByIdAffiliationsData, GetApiCrmServiceTaxOfficesByIdAffiliationsResponse, PutApiCrmServiceTaxOfficesByIdOrganizationsByOrganizationIdData, PutApiCrmServiceTaxOfficesByIdOrganizationsByOrganizationIdResponse, PutApiCrmServiceTaxOfficesByIdTelephonesByTelephoneIdData, PutApiCrmServiceTaxOfficesByIdTelephonesByTelephoneIdResponse, PutApiCrmServiceTaxOfficesByIdAddressesByAddressIdData, PutApiCrmServiceTaxOfficesByIdAddressesByAddressIdResponse, PutApiCrmServiceTaxOfficesByIdEmailsByEmailIdData, PutApiCrmServiceTaxOfficesByIdEmailsByEmailIdResponse, GetApiCrmServiceTelephonesData, GetApiCrmServiceTelephonesResponse, PostApiCrmServiceTelephonesData, PostApiCrmServiceTelephonesResponse, GetApiCrmServiceTelephonesByIdData, GetApiCrmServiceTelephonesByIdResponse, PutApiCrmServiceTelephonesByIdData, PutApiCrmServiceTelephonesByIdResponse, DeleteApiCrmServiceTelephonesByIdData, DeleteApiCrmServiceTelephonesByIdResponse } from './types.gen';
|
|
5
|
+
import type { GetApiAbpApiDefinitionData, GetApiAbpApiDefinitionResponse, GetApiAbpApplicationConfigurationData, GetApiAbpApplicationConfigurationResponse, GetApiAbpApplicationLocalizationData, GetApiAbpApplicationLocalizationResponse, GetApiCrmServiceAddressesData, GetApiCrmServiceAddressesResponse, PostApiCrmServiceAddressesData, PostApiCrmServiceAddressesResponse, GetApiCrmServiceAddressesByIdData, GetApiCrmServiceAddressesByIdResponse, PutApiCrmServiceAddressesByIdData, PutApiCrmServiceAddressesByIdResponse, DeleteApiCrmServiceAddressesByIdData, DeleteApiCrmServiceAddressesByIdResponse, GetApiCrmServiceCustomsData, GetApiCrmServiceCustomsResponse, GetApiCrmServiceCustomsByIdDetailData, GetApiCrmServiceCustomsByIdDetailResponse, PostApiCrmServiceCustomsWithComponentsData, PostApiCrmServiceCustomsWithComponentsResponse, DeleteApiCrmServiceCustomsByIdWithComponentsData, DeleteApiCrmServiceCustomsByIdWithComponentsResponse, PostApiCrmServiceCustomsByIdAffiliationsData, PostApiCrmServiceCustomsByIdAffiliationsResponse, GetApiCrmServiceCustomsByIdAffiliationsData, GetApiCrmServiceCustomsByIdAffiliationsResponse, PutApiCrmServiceCustomsByIdOrganizationsByOrganizationIdData, PutApiCrmServiceCustomsByIdOrganizationsByOrganizationIdResponse, PutApiCrmServiceCustomsByIdTelephonesByTelephoneIdData, PutApiCrmServiceCustomsByIdTelephonesByTelephoneIdResponse, PutApiCrmServiceCustomsByIdAddressesByAddressIdData, PutApiCrmServiceCustomsByIdAddressesByAddressIdResponse, PutApiCrmServiceCustomsByIdEmailsByEmailIdData, PutApiCrmServiceCustomsByIdEmailsByEmailIdResponse, GetApiCrmServiceEmailsData, GetApiCrmServiceEmailsResponse, PostApiCrmServiceEmailsData, PostApiCrmServiceEmailsResponse, GetApiCrmServiceEmailsByIdData, GetApiCrmServiceEmailsByIdResponse, PutApiCrmServiceEmailsByIdData, PutApiCrmServiceEmailsByIdResponse, DeleteApiCrmServiceEmailsByIdData, DeleteApiCrmServiceEmailsByIdResponse, PostApiCrmServiceIndividualsWithComponentsData, PostApiCrmServiceIndividualsWithComponentsResponse, GetApiCrmServiceIndividualsData, GetApiCrmServiceIndividualsResponse, GetApiCrmServiceMerchantsData, GetApiCrmServiceMerchantsResponse, GetApiCrmServiceMerchantsInfoData, GetApiCrmServiceMerchantsInfoResponse, GetApiCrmServiceMerchantsByIdDetailData, GetApiCrmServiceMerchantsByIdDetailResponse, GetApiCrmServiceMerchantsByIdSubMerchantsData, GetApiCrmServiceMerchantsByIdSubMerchantsResponse, PostApiCrmServiceMerchantsWithComponentsData, PostApiCrmServiceMerchantsWithComponentsResponse, DeleteApiCrmServiceMerchantsByIdWithComponentsData, DeleteApiCrmServiceMerchantsByIdWithComponentsResponse, GetApiCrmServiceMerchantsByIdAffiliationsData, GetApiCrmServiceMerchantsByIdAffiliationsResponse, PostApiCrmServiceMerchantsByIdAffiliationsData, PostApiCrmServiceMerchantsByIdAffiliationsResponse, PutApiCrmServiceMerchantsByIdOrganizationsByOrganizationIdData, PutApiCrmServiceMerchantsByIdOrganizationsByOrganizationIdResponse, PostApiCrmServiceMerchantsBulkProductGroupMerchantsData, PostApiCrmServiceMerchantsBulkProductGroupMerchantsResponse, PutApiCrmServiceMerchantsByIdTelephonesByTelephoneIdData, PutApiCrmServiceMerchantsByIdTelephonesByTelephoneIdResponse, GetApiCrmServiceMerchantsByIdAddressesData, GetApiCrmServiceMerchantsByIdAddressesResponse, PutApiCrmServiceMerchantsByIdAddressesByAddressIdData, PutApiCrmServiceMerchantsByIdAddressesByAddressIdResponse, PutApiCrmServiceMerchantsByIdEmailsByEmailIdData, PutApiCrmServiceMerchantsByIdEmailsByEmailIdResponse, PutApiCrmServiceMerchantsByIdIndividualByIndividualIdNameByNameIdData, PutApiCrmServiceMerchantsByIdIndividualByIndividualIdNameByNameIdResponse, PutApiCrmServiceMerchantsByIdIndividualByIndividualIdPersonalSummaryByPersonalSummaryIdData, PutApiCrmServiceMerchantsByIdIndividualByIndividualIdPersonalSummaryByPersonalSummaryIdResponse, PostApiCrmServiceOrganizationsWithComponentsData, PostApiCrmServiceOrganizationsWithComponentsResponse, GetApiCrmServiceOrganizationsData, GetApiCrmServiceOrganizationsResponse, GetApiCrmServiceRefundPointsData, GetApiCrmServiceRefundPointsResponse, GetApiCrmServiceRefundPointsByIdDetailData, GetApiCrmServiceRefundPointsByIdDetailResponse, PostApiCrmServiceRefundPointsWithComponentsData, PostApiCrmServiceRefundPointsWithComponentsResponse, DeleteApiCrmServiceRefundPointsByIdWithComponentsData, DeleteApiCrmServiceRefundPointsByIdWithComponentsResponse, PostApiCrmServiceRefundPointsByIdAffiliationsData, PostApiCrmServiceRefundPointsByIdAffiliationsResponse, GetApiCrmServiceRefundPointsByIdAffiliationsData, GetApiCrmServiceRefundPointsByIdAffiliationsResponse, PutApiCrmServiceRefundPointsByIdOrganizationsByOrganizationIdData, PutApiCrmServiceRefundPointsByIdOrganizationsByOrganizationIdResponse, PutApiCrmServiceRefundPointsByIdTelephonesByTelephoneIdData, PutApiCrmServiceRefundPointsByIdTelephonesByTelephoneIdResponse, PutApiCrmServiceRefundPointsByIdAddressesByAddressIdData, PutApiCrmServiceRefundPointsByIdAddressesByAddressIdResponse, PutApiCrmServiceRefundPointsByIdEmailsByEmailIdData, PutApiCrmServiceRefundPointsByIdEmailsByEmailIdResponse, GetApiCrmServiceTaxFreesData, GetApiCrmServiceTaxFreesResponse, GetApiCrmServiceTaxFreesByIdDetailData, GetApiCrmServiceTaxFreesByIdDetailResponse, PostApiCrmServiceTaxFreesWithComponentsData, PostApiCrmServiceTaxFreesWithComponentsResponse, DeleteApiCrmServiceTaxFreesByIdWithComponentsData, DeleteApiCrmServiceTaxFreesByIdWithComponentsResponse, PostApiCrmServiceTaxFreesByIdAffiliationsData, PostApiCrmServiceTaxFreesByIdAffiliationsResponse, GetApiCrmServiceTaxFreesByIdAffiliationsData, GetApiCrmServiceTaxFreesByIdAffiliationsResponse, PutApiCrmServiceTaxFreesByIdOrganizationsByOrganizationIdData, PutApiCrmServiceTaxFreesByIdOrganizationsByOrganizationIdResponse, PutApiCrmServiceTaxFreesByIdTelephonesByTelephoneIdData, PutApiCrmServiceTaxFreesByIdTelephonesByTelephoneIdResponse, PutApiCrmServiceTaxFreesByIdAddressesByAddressIdData, PutApiCrmServiceTaxFreesByIdAddressesByAddressIdResponse, PutApiCrmServiceTaxFreesByIdEmailsByEmailIdData, PutApiCrmServiceTaxFreesByIdEmailsByEmailIdResponse, GetApiCrmServiceTaxOfficesData, GetApiCrmServiceTaxOfficesResponse, GetApiCrmServiceTaxOfficesByIdDetailData, GetApiCrmServiceTaxOfficesByIdDetailResponse, PostApiCrmServiceTaxOfficesWithComponentsData, PostApiCrmServiceTaxOfficesWithComponentsResponse, DeleteApiCrmServiceTaxOfficesByIdWithComponentsData, DeleteApiCrmServiceTaxOfficesByIdWithComponentsResponse, PostApiCrmServiceTaxOfficesByIdAffiliationsData, PostApiCrmServiceTaxOfficesByIdAffiliationsResponse, GetApiCrmServiceTaxOfficesByIdAffiliationsData, GetApiCrmServiceTaxOfficesByIdAffiliationsResponse, PutApiCrmServiceTaxOfficesByIdOrganizationsByOrganizationIdData, PutApiCrmServiceTaxOfficesByIdOrganizationsByOrganizationIdResponse, PutApiCrmServiceTaxOfficesByIdTelephonesByTelephoneIdData, PutApiCrmServiceTaxOfficesByIdTelephonesByTelephoneIdResponse, PutApiCrmServiceTaxOfficesByIdAddressesByAddressIdData, PutApiCrmServiceTaxOfficesByIdAddressesByAddressIdResponse, PutApiCrmServiceTaxOfficesByIdEmailsByEmailIdData, PutApiCrmServiceTaxOfficesByIdEmailsByEmailIdResponse, GetApiCrmServiceTelephonesData, GetApiCrmServiceTelephonesResponse, PostApiCrmServiceTelephonesData, PostApiCrmServiceTelephonesResponse, GetApiCrmServiceTelephonesByIdData, GetApiCrmServiceTelephonesByIdResponse, PutApiCrmServiceTelephonesByIdData, PutApiCrmServiceTelephonesByIdResponse, DeleteApiCrmServiceTelephonesByIdData, DeleteApiCrmServiceTelephonesByIdResponse } from './types.gen';
|
|
6
6
|
|
|
7
7
|
export class AbpApiDefinitionService {
|
|
8
8
|
constructor(public readonly httpRequest: BaseHttpRequest) { }
|
|
@@ -1074,6 +1074,68 @@ export class MerchantService {
|
|
|
1074
1074
|
});
|
|
1075
1075
|
}
|
|
1076
1076
|
|
|
1077
|
+
/**
|
|
1078
|
+
* @param data The data for the request.
|
|
1079
|
+
* @param data.id
|
|
1080
|
+
* @param data.individualId
|
|
1081
|
+
* @param data.nameId
|
|
1082
|
+
* @param data.requestBody
|
|
1083
|
+
* @returns UniRefund_CRMService_NameCommonDatas_NameCommonDataDto Success
|
|
1084
|
+
* @throws ApiError
|
|
1085
|
+
*/
|
|
1086
|
+
public putApiCrmServiceMerchantsByIdIndividualByIndividualIdNameByNameId(data: PutApiCrmServiceMerchantsByIdIndividualByIndividualIdNameByNameIdData): CancelablePromise<PutApiCrmServiceMerchantsByIdIndividualByIndividualIdNameByNameIdResponse> {
|
|
1087
|
+
return this.httpRequest.request({
|
|
1088
|
+
method: 'PUT',
|
|
1089
|
+
url: '/api/crm-service/merchants/{id}/individual/{individualId}/name/{nameId}',
|
|
1090
|
+
path: {
|
|
1091
|
+
id: data.id,
|
|
1092
|
+
individualId: data.individualId,
|
|
1093
|
+
nameId: data.nameId
|
|
1094
|
+
},
|
|
1095
|
+
body: data.requestBody,
|
|
1096
|
+
mediaType: 'application/json',
|
|
1097
|
+
errors: {
|
|
1098
|
+
400: 'Bad Request',
|
|
1099
|
+
401: 'Unauthorized',
|
|
1100
|
+
403: 'Forbidden',
|
|
1101
|
+
404: 'Not Found',
|
|
1102
|
+
500: 'Server Error',
|
|
1103
|
+
501: 'Server Error'
|
|
1104
|
+
}
|
|
1105
|
+
});
|
|
1106
|
+
}
|
|
1107
|
+
|
|
1108
|
+
/**
|
|
1109
|
+
* @param data The data for the request.
|
|
1110
|
+
* @param data.id
|
|
1111
|
+
* @param data.individualId
|
|
1112
|
+
* @param data.personalSummaryId
|
|
1113
|
+
* @param data.requestBody
|
|
1114
|
+
* @returns UniRefund_CRMService_PersonalSummaries_PersonalSummaryDto Success
|
|
1115
|
+
* @throws ApiError
|
|
1116
|
+
*/
|
|
1117
|
+
public putApiCrmServiceMerchantsByIdIndividualByIndividualIdPersonalSummaryByPersonalSummaryId(data: PutApiCrmServiceMerchantsByIdIndividualByIndividualIdPersonalSummaryByPersonalSummaryIdData): CancelablePromise<PutApiCrmServiceMerchantsByIdIndividualByIndividualIdPersonalSummaryByPersonalSummaryIdResponse> {
|
|
1118
|
+
return this.httpRequest.request({
|
|
1119
|
+
method: 'PUT',
|
|
1120
|
+
url: '/api/crm-service/merchants/{id}/individual/{individualId}/personal-summary/{personalSummaryId}',
|
|
1121
|
+
path: {
|
|
1122
|
+
id: data.id,
|
|
1123
|
+
individualId: data.individualId,
|
|
1124
|
+
personalSummaryId: data.personalSummaryId
|
|
1125
|
+
},
|
|
1126
|
+
body: data.requestBody,
|
|
1127
|
+
mediaType: 'application/json',
|
|
1128
|
+
errors: {
|
|
1129
|
+
400: 'Bad Request',
|
|
1130
|
+
401: 'Unauthorized',
|
|
1131
|
+
403: 'Forbidden',
|
|
1132
|
+
404: 'Not Found',
|
|
1133
|
+
500: 'Server Error',
|
|
1134
|
+
501: 'Server Error'
|
|
1135
|
+
}
|
|
1136
|
+
});
|
|
1137
|
+
}
|
|
1138
|
+
|
|
1077
1139
|
}
|
|
1078
1140
|
|
|
1079
1141
|
export class OrganizationService {
|
package/CRMService/types.gen.ts
CHANGED
|
@@ -367,6 +367,17 @@ export type UniRefund_CRMService_NameCommonDatas_NameCommonDataDto = {
|
|
|
367
367
|
individualId?: string;
|
|
368
368
|
};
|
|
369
369
|
|
|
370
|
+
export type UniRefund_CRMService_NameCommonDatas_UpdateNameCommonDataDto = {
|
|
371
|
+
readonly extraProperties?: {
|
|
372
|
+
[key: string]: unknown;
|
|
373
|
+
} | null;
|
|
374
|
+
salutation: string;
|
|
375
|
+
name: string;
|
|
376
|
+
suffix: string;
|
|
377
|
+
mailingName: string;
|
|
378
|
+
officialName: string;
|
|
379
|
+
};
|
|
380
|
+
|
|
370
381
|
export type UniRefund_CRMService_Organizations_CreateOrganizationDto = {
|
|
371
382
|
readonly extraProperties?: {
|
|
372
383
|
[key: string]: unknown;
|
|
@@ -414,8 +425,8 @@ export type UniRefund_CRMService_Organizations_UpdateOrganizationDto = {
|
|
|
414
425
|
[key: string]: unknown;
|
|
415
426
|
} | null;
|
|
416
427
|
name: string;
|
|
417
|
-
taxpayerId
|
|
418
|
-
legalStatusCode
|
|
428
|
+
taxpayerId: string;
|
|
429
|
+
legalStatusCode: string;
|
|
419
430
|
customerNumber?: string | null;
|
|
420
431
|
parentCompanyId?: string | null;
|
|
421
432
|
branchId?: string | null;
|
|
@@ -451,6 +462,18 @@ export type UniRefund_CRMService_PersonalSummaries_PersonalSummaryDto = {
|
|
|
451
462
|
individualId?: string;
|
|
452
463
|
};
|
|
453
464
|
|
|
465
|
+
export type UniRefund_CRMService_PersonalSummaries_UpdatePersonalSummaryDto = {
|
|
466
|
+
readonly extraProperties?: {
|
|
467
|
+
[key: string]: unknown;
|
|
468
|
+
} | null;
|
|
469
|
+
date: string;
|
|
470
|
+
birthDate: string;
|
|
471
|
+
ethnicity: string;
|
|
472
|
+
maritalStatusCode: string;
|
|
473
|
+
religiousAffiliationName: string;
|
|
474
|
+
genderTypeCode: UniRefund_CRMService_Enums_GenderTypeCode;
|
|
475
|
+
};
|
|
476
|
+
|
|
454
477
|
export type UniRefund_CRMService_RefundPoints_CreateRefundPointDto = {
|
|
455
478
|
readonly extraProperties?: {
|
|
456
479
|
[key: string]: unknown;
|
|
@@ -1372,6 +1395,24 @@ export type PutApiCrmServiceMerchantsByIdEmailsByEmailIdData = {
|
|
|
1372
1395
|
|
|
1373
1396
|
export type PutApiCrmServiceMerchantsByIdEmailsByEmailIdResponse = UniRefund_CRMService_EmailCommonDatas_EmailCommonDataDto;
|
|
1374
1397
|
|
|
1398
|
+
export type PutApiCrmServiceMerchantsByIdIndividualByIndividualIdNameByNameIdData = {
|
|
1399
|
+
id: string;
|
|
1400
|
+
individualId: string;
|
|
1401
|
+
nameId: string;
|
|
1402
|
+
requestBody?: UniRefund_CRMService_NameCommonDatas_UpdateNameCommonDataDto;
|
|
1403
|
+
};
|
|
1404
|
+
|
|
1405
|
+
export type PutApiCrmServiceMerchantsByIdIndividualByIndividualIdNameByNameIdResponse = UniRefund_CRMService_NameCommonDatas_NameCommonDataDto;
|
|
1406
|
+
|
|
1407
|
+
export type PutApiCrmServiceMerchantsByIdIndividualByIndividualIdPersonalSummaryByPersonalSummaryIdData = {
|
|
1408
|
+
id: string;
|
|
1409
|
+
individualId: string;
|
|
1410
|
+
personalSummaryId: string;
|
|
1411
|
+
requestBody?: UniRefund_CRMService_PersonalSummaries_UpdatePersonalSummaryDto;
|
|
1412
|
+
};
|
|
1413
|
+
|
|
1414
|
+
export type PutApiCrmServiceMerchantsByIdIndividualByIndividualIdPersonalSummaryByPersonalSummaryIdResponse = UniRefund_CRMService_PersonalSummaries_PersonalSummaryDto;
|
|
1415
|
+
|
|
1375
1416
|
export type PostApiCrmServiceOrganizationsWithComponentsData = {
|
|
1376
1417
|
requestBody?: UniRefund_CRMService_Organizations_CreateOrganizationDto;
|
|
1377
1418
|
};
|
|
@@ -2993,6 +3034,76 @@ export type $OpenApiTs = {
|
|
|
2993
3034
|
};
|
|
2994
3035
|
};
|
|
2995
3036
|
};
|
|
3037
|
+
'/api/crm-service/merchants/{id}/individual/{individualId}/name/{nameId}': {
|
|
3038
|
+
put: {
|
|
3039
|
+
req: PutApiCrmServiceMerchantsByIdIndividualByIndividualIdNameByNameIdData;
|
|
3040
|
+
res: {
|
|
3041
|
+
/**
|
|
3042
|
+
* Success
|
|
3043
|
+
*/
|
|
3044
|
+
200: UniRefund_CRMService_NameCommonDatas_NameCommonDataDto;
|
|
3045
|
+
/**
|
|
3046
|
+
* Bad Request
|
|
3047
|
+
*/
|
|
3048
|
+
400: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
3049
|
+
/**
|
|
3050
|
+
* Unauthorized
|
|
3051
|
+
*/
|
|
3052
|
+
401: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
3053
|
+
/**
|
|
3054
|
+
* Forbidden
|
|
3055
|
+
*/
|
|
3056
|
+
403: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
3057
|
+
/**
|
|
3058
|
+
* Not Found
|
|
3059
|
+
*/
|
|
3060
|
+
404: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
3061
|
+
/**
|
|
3062
|
+
* Server Error
|
|
3063
|
+
*/
|
|
3064
|
+
500: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
3065
|
+
/**
|
|
3066
|
+
* Server Error
|
|
3067
|
+
*/
|
|
3068
|
+
501: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
3069
|
+
};
|
|
3070
|
+
};
|
|
3071
|
+
};
|
|
3072
|
+
'/api/crm-service/merchants/{id}/individual/{individualId}/personal-summary/{personalSummaryId}': {
|
|
3073
|
+
put: {
|
|
3074
|
+
req: PutApiCrmServiceMerchantsByIdIndividualByIndividualIdPersonalSummaryByPersonalSummaryIdData;
|
|
3075
|
+
res: {
|
|
3076
|
+
/**
|
|
3077
|
+
* Success
|
|
3078
|
+
*/
|
|
3079
|
+
200: UniRefund_CRMService_PersonalSummaries_PersonalSummaryDto;
|
|
3080
|
+
/**
|
|
3081
|
+
* Bad Request
|
|
3082
|
+
*/
|
|
3083
|
+
400: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
3084
|
+
/**
|
|
3085
|
+
* Unauthorized
|
|
3086
|
+
*/
|
|
3087
|
+
401: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
3088
|
+
/**
|
|
3089
|
+
* Forbidden
|
|
3090
|
+
*/
|
|
3091
|
+
403: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
3092
|
+
/**
|
|
3093
|
+
* Not Found
|
|
3094
|
+
*/
|
|
3095
|
+
404: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
3096
|
+
/**
|
|
3097
|
+
* Server Error
|
|
3098
|
+
*/
|
|
3099
|
+
500: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
3100
|
+
/**
|
|
3101
|
+
* Server Error
|
|
3102
|
+
*/
|
|
3103
|
+
501: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
3104
|
+
};
|
|
3105
|
+
};
|
|
3106
|
+
};
|
|
2996
3107
|
'/api/crm-service/organizations/with-components': {
|
|
2997
3108
|
post: {
|
|
2998
3109
|
req: PostApiCrmServiceOrganizationsWithComponentsData;
|