@ayasofyazilim/saas 0.0.122 → 0.0.123

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.
@@ -1350,14 +1350,11 @@ export type UniRefund_CRMService_Individuals_IndividualWithAbpUserAccountDto = {
1350
1350
  };
1351
1351
 
1352
1352
  export type UniRefund_CRMService_Merchants_CreateMerchantDto = {
1353
- readonly extraProperties?: {
1354
- [key: string]: unknown;
1355
- } | null;
1356
1353
  typeCode: 'HEADQUARTER' | 'STORE';
1357
- taxOfficeId: string;
1354
+ taxOfficeId?: (string) | null;
1358
1355
  parentId?: (string) | null;
1359
1356
  customerNumber?: (string) | null;
1360
- taxpayerId: string;
1357
+ taxpayerId?: (string) | null;
1361
1358
  entityInformationTypes: Array<{
1362
1359
  readonly extraProperties?: {
1363
1360
  [key: string]: unknown;
@@ -2242,9 +2239,9 @@ export type UniRefund_CRMService_Merchants_SubIndividualDto = {
2242
2239
 
2243
2240
  export type UniRefund_CRMService_Merchants_UpdateMerchantDto = {
2244
2241
  typeCode: 'HEADQUARTER' | 'STORE';
2245
- taxOfficeId: string;
2242
+ taxOfficeId?: (string) | null;
2246
2243
  parentId?: (string) | null;
2247
- taxpayerId: string;
2244
+ taxpayerId?: (string) | null;
2248
2245
  };
2249
2246
 
2250
2247
  export type UniRefund_CRMService_NameCommonDatas_CreateNameCommonDataDto = {
@@ -2486,13 +2483,10 @@ export type UniRefund_CRMService_PersonalSummaries_UpdatePersonalSummaryDto = {
2486
2483
  };
2487
2484
 
2488
2485
  export type UniRefund_CRMService_RefundPoints_CreateRefundPointDto = {
2489
- readonly extraProperties?: {
2490
- [key: string]: unknown;
2491
- } | null;
2492
2486
  typeCode: 'HEADQUARTER' | 'REFUNDPOINT';
2493
- taxOfficeId: string;
2487
+ taxOfficeId?: (string) | null;
2494
2488
  parentId?: (string) | null;
2495
- taxpayerId: string;
2489
+ taxpayerId?: (string) | null;
2496
2490
  entityInformationTypes?: Array<{
2497
2491
  readonly extraProperties?: {
2498
2492
  [key: string]: unknown;
@@ -2659,6 +2653,8 @@ export type UniRefund_CRMService_RefundPoints_RefundPointDto = {
2659
2653
  deletionTime?: (string) | null;
2660
2654
  taxpayerId?: (string) | null;
2661
2655
  typeCode?: 'HEADQUARTER' | 'REFUNDPOINT';
2656
+ taxOfficeId?: string;
2657
+ parentId?: (string) | null;
2662
2658
  entityInformations?: Array<{
2663
2659
  id?: string;
2664
2660
  creationTime?: string;
@@ -2879,15 +2875,20 @@ export type UniRefund_CRMService_RefundPoints_RefundPointProfileDto = {
2879
2875
 
2880
2876
  export type UniRefund_CRMService_RefundPoints_RefundPointTypeCode = 'HEADQUARTER' | 'REFUNDPOINT';
2881
2877
 
2878
+ export type UniRefund_CRMService_RefundPoints_UpdateRefundPointDto = {
2879
+ typeCode?: 'HEADQUARTER' | 'REFUNDPOINT';
2880
+ taxOfficeId?: (string) | null;
2881
+ tenantId?: (string) | null;
2882
+ parentId?: (string) | null;
2883
+ taxpayerId?: (string) | null;
2884
+ };
2885
+
2882
2886
  export type UniRefund_CRMService_RefundPoints_UpdateRefundPointOrganizationDto = {
2883
2887
  name: string;
2884
2888
  parentCompanyId?: (string) | null;
2885
2889
  };
2886
2890
 
2887
2891
  export type UniRefund_CRMService_TaxFrees_CreateTaxFreeDto = {
2888
- readonly extraProperties?: {
2889
- [key: string]: unknown;
2890
- } | null;
2891
2892
  entityInformationTypes: Array<{
2892
2893
  readonly extraProperties?: {
2893
2894
  [key: string]: unknown;
@@ -2938,9 +2939,13 @@ export type UniRefund_CRMService_TaxFrees_CreateTaxFreeDto = {
2938
2939
  }> | null;
2939
2940
  }>;
2940
2941
  parentId?: (string) | null;
2941
- taxpayerId: string;
2942
+ taxpayerId?: (string) | null;
2943
+ typeCode?: 'HEADQUARTER' | 'TAXFREE';
2944
+ taxOfficeId?: (string) | null;
2942
2945
  };
2943
2946
 
2947
+ export type typeCode4 = 'HEADQUARTER' | 'TAXFREE';
2948
+
2944
2949
  export type UniRefund_CRMService_TaxFrees_CreateTaxFreeEntityInformationTypeDto = {
2945
2950
  readonly extraProperties?: {
2946
2951
  [key: string]: unknown;
@@ -3263,6 +3268,15 @@ export type UniRefund_CRMService_TaxFrees_TaxFreeProfileDto = {
3263
3268
  taxpayerId?: (string) | null;
3264
3269
  };
3265
3270
 
3271
+ export type UniRefund_CRMService_TaxFrees_TaxFreeTypeCode = 'HEADQUARTER' | 'TAXFREE';
3272
+
3273
+ export type UniRefund_CRMService_TaxFrees_UpdateTaxFreeDto = {
3274
+ parentId?: (string) | null;
3275
+ taxpayerId?: (string) | null;
3276
+ typeCode?: 'HEADQUARTER' | 'TAXFREE';
3277
+ taxOfficeId?: (string) | null;
3278
+ };
3279
+
3266
3280
  export type UniRefund_CRMService_TaxOffices_CreateTaxOfficeDto = {
3267
3281
  readonly extraProperties?: {
3268
3282
  [key: string]: unknown;
@@ -3646,6 +3660,35 @@ export type UniRefund_CRMService_TaxOffices_UpdateTaxOfficeOrganizationDto = {
3646
3660
  name: string;
3647
3661
  };
3648
3662
 
3663
+ export type UniRefund_CRMService_TelephoneCommonDatas_TelephoneCommonDataDto = {
3664
+ id?: string;
3665
+ creationTime?: string;
3666
+ creatorId?: (string) | null;
3667
+ lastModificationTime?: (string) | null;
3668
+ lastModifierId?: (string) | null;
3669
+ isDeleted?: boolean;
3670
+ deleterId?: (string) | null;
3671
+ deletionTime?: (string) | null;
3672
+ areaCode?: (string) | null;
3673
+ localNumber?: (string) | null;
3674
+ ituCountryCode?: (string) | null;
3675
+ primaryFlag?: boolean;
3676
+ typeCode?: 'HOME' | 'OFFICE' | 'MOBILE' | 'FAX';
3677
+ };
3678
+
3679
+ export type typeCode5 = 'HOME' | 'OFFICE' | 'MOBILE' | 'FAX';
3680
+
3681
+ export type UniRefund_CRMService_TelephoneCommonDatas_UpdateTelephoneCommonDataDto = {
3682
+ readonly extraProperties?: {
3683
+ [key: string]: unknown;
3684
+ } | null;
3685
+ areaCode: string;
3686
+ localNumber: string;
3687
+ ituCountryCode: string;
3688
+ primaryFlag?: boolean;
3689
+ typeCode: 'HOME' | 'OFFICE' | 'MOBILE' | 'FAX';
3690
+ };
3691
+
3649
3692
  export type UniRefund_CRMService_TelephoneTypes_CreateTelephoneTypeWithComponentsDto = {
3650
3693
  readonly extraProperties?: {
3651
3694
  [key: string]: unknown;
@@ -3657,8 +3700,6 @@ export type UniRefund_CRMService_TelephoneTypes_CreateTelephoneTypeWithComponent
3657
3700
  typeCode: 'HOME' | 'OFFICE' | 'MOBILE' | 'FAX';
3658
3701
  };
3659
3702
 
3660
- export type typeCode4 = 'HOME' | 'OFFICE' | 'MOBILE' | 'FAX';
3661
-
3662
3703
  export type UniRefund_CRMService_TelephoneTypes_TelephoneTypeDto = {
3663
3704
  id?: string;
3664
3705
  creationTime?: string;
@@ -6208,6 +6249,121 @@ export type GetApiCrmServiceIndividualsResponse = ({
6208
6249
  totalCount?: number;
6209
6250
  });
6210
6251
 
6252
+ export type GetApiCrmServiceIndividualsByIdDetailData = {
6253
+ id: string;
6254
+ };
6255
+
6256
+ export type GetApiCrmServiceIndividualsByIdDetailResponse = ({
6257
+ id?: string;
6258
+ creationTime?: string;
6259
+ creatorId?: (string) | null;
6260
+ lastModificationTime?: (string) | null;
6261
+ lastModifierId?: (string) | null;
6262
+ isDeleted?: boolean;
6263
+ deleterId?: (string) | null;
6264
+ deletionTime?: (string) | null;
6265
+ name?: {
6266
+ id?: string;
6267
+ creationTime?: string;
6268
+ creatorId?: (string) | null;
6269
+ lastModificationTime?: (string) | null;
6270
+ lastModifierId?: (string) | null;
6271
+ isDeleted?: boolean;
6272
+ deleterId?: (string) | null;
6273
+ deletionTime?: (string) | null;
6274
+ salutation?: (string) | null;
6275
+ firstName?: (string) | null;
6276
+ lastName?: (string) | null;
6277
+ suffix?: (string) | null;
6278
+ mailingName?: (string) | null;
6279
+ officialName?: (string) | null;
6280
+ individualId?: string;
6281
+ };
6282
+ contactInformations?: Array<{
6283
+ id?: string;
6284
+ creationTime?: string;
6285
+ creatorId?: (string) | null;
6286
+ lastModificationTime?: (string) | null;
6287
+ lastModifierId?: (string) | null;
6288
+ isDeleted?: boolean;
6289
+ deleterId?: (string) | null;
6290
+ deletionTime?: (string) | null;
6291
+ organizationId?: (string) | null;
6292
+ individualId?: (string) | null;
6293
+ startDate?: string;
6294
+ endDate?: string;
6295
+ telephones?: Array<{
6296
+ id?: string;
6297
+ creationTime?: string;
6298
+ creatorId?: (string) | null;
6299
+ lastModificationTime?: (string) | null;
6300
+ lastModifierId?: (string) | null;
6301
+ isDeleted?: boolean;
6302
+ deleterId?: (string) | null;
6303
+ deletionTime?: (string) | null;
6304
+ areaCode?: (string) | null;
6305
+ localNumber?: (string) | null;
6306
+ ituCountryCode?: (string) | null;
6307
+ primaryFlag?: boolean;
6308
+ typeCode?: 'HOME' | 'OFFICE' | 'MOBILE' | 'FAX';
6309
+ contactInformationTypeId?: string;
6310
+ }> | null;
6311
+ addresses?: Array<{
6312
+ id: string;
6313
+ creationTime?: string;
6314
+ creatorId?: (string) | null;
6315
+ lastModificationTime?: (string) | null;
6316
+ lastModifierId?: (string) | null;
6317
+ isDeleted?: boolean;
6318
+ deleterId?: (string) | null;
6319
+ deletionTime?: (string) | null;
6320
+ type: 'Home' | 'Office' | 'Invoice' | 'Contact';
6321
+ addressLine: string;
6322
+ postalCode: string;
6323
+ fullAddress: string;
6324
+ primaryFlag?: boolean;
6325
+ countryId: string;
6326
+ regionId?: (string) | null;
6327
+ cityId: string;
6328
+ districtId: string;
6329
+ neighborhoodId?: (string) | null;
6330
+ }> | null;
6331
+ emails?: Array<{
6332
+ id?: string;
6333
+ creationTime?: string;
6334
+ creatorId?: (string) | null;
6335
+ lastModificationTime?: (string) | null;
6336
+ lastModifierId?: (string) | null;
6337
+ isDeleted?: boolean;
6338
+ deleterId?: (string) | null;
6339
+ deletionTime?: (string) | null;
6340
+ primaryFlag?: boolean;
6341
+ typeCode?: 'WORK' | 'PERSONAL';
6342
+ emailAddress?: (string) | null;
6343
+ contactInformationTypeId?: string;
6344
+ }> | null;
6345
+ }> | null;
6346
+ personalSummaries?: Array<{
6347
+ id?: string;
6348
+ creationTime?: string;
6349
+ creatorId?: (string) | null;
6350
+ lastModificationTime?: (string) | null;
6351
+ lastModifierId?: (string) | null;
6352
+ isDeleted?: boolean;
6353
+ deleterId?: (string) | null;
6354
+ deletionTime?: (string) | null;
6355
+ date?: string;
6356
+ birthDate?: string;
6357
+ ethnicity?: (string) | null;
6358
+ maritalStatusCode?: (string) | null;
6359
+ religiousAffiliationName?: (string) | null;
6360
+ genderTypeCode?: 'MALE' | 'FEMALE';
6361
+ individualId?: string;
6362
+ }> | null;
6363
+ entityInformationTypeId?: (string) | null;
6364
+ abpUserId?: (string) | null;
6365
+ });
6366
+
6211
6367
  export type GetApiCrmServiceIndividualsByIdAffiliationsData = {
6212
6368
  id: string;
6213
6369
  showCustoms?: boolean;
@@ -6240,63 +6396,229 @@ export type GetApiCrmServiceIndividualsByIdAffiliationsResponse = ({
6240
6396
  }> | null;
6241
6397
  });
6242
6398
 
6243
- export type GetApiCrmServiceMerchantsData = {
6244
- ids?: Array<(string)>;
6245
- maxResultCount?: number;
6246
- name?: string;
6247
- productGroupIds?: Array<(string)>;
6248
- skipCount?: number;
6249
- sorting?: string;
6250
- typeCodes?: Array<('HEADQUARTER' | 'STORE')>;
6251
- };
6252
-
6253
- export type GetApiCrmServiceMerchantsResponse = ({
6254
- items?: Array<{
6255
- id: string;
6256
- typeCode?: 'HEADQUARTER' | 'STORE';
6257
- name: string;
6258
- parentId?: (string) | null;
6259
- taxpayerId: string;
6260
- parentName?: (string) | null;
6261
- entityInformationTypeCode: 'INDIVIDUAL' | 'ORGANIZATION';
6262
- organizationId?: (string) | null;
6263
- individualId?: (string) | null;
6264
- }> | null;
6265
- totalCount?: number;
6266
- });
6267
-
6268
- export type GetApiCrmServiceMerchantsByIdData = {
6399
+ export type PutApiCrmServiceIndividualsByIdNameData = {
6269
6400
  id: string;
6401
+ requestBody?: {
6402
+ readonly extraProperties?: {
6403
+ [key: string]: unknown;
6404
+ } | null;
6405
+ salutation: string;
6406
+ firstName: string;
6407
+ lastName: string;
6408
+ suffix: string;
6409
+ mailingName: string;
6410
+ officialName: string;
6411
+ };
6270
6412
  };
6271
6413
 
6272
- export type GetApiCrmServiceMerchantsByIdResponse = ({
6273
- id: string;
6274
- typeCode?: 'HEADQUARTER' | 'STORE';
6275
- name: string;
6276
- parentId?: (string) | null;
6277
- taxpayerId: string;
6278
- parentName?: (string) | null;
6279
- entityInformationTypeCode: 'INDIVIDUAL' | 'ORGANIZATION';
6280
- organizationId?: (string) | null;
6281
- individualId?: (string) | null;
6414
+ export type PutApiCrmServiceIndividualsByIdNameResponse = ({
6415
+ id?: string;
6416
+ creationTime?: string;
6417
+ creatorId?: (string) | null;
6418
+ lastModificationTime?: (string) | null;
6419
+ lastModifierId?: (string) | null;
6420
+ isDeleted?: boolean;
6421
+ deleterId?: (string) | null;
6422
+ deletionTime?: (string) | null;
6423
+ salutation?: (string) | null;
6424
+ firstName?: (string) | null;
6425
+ lastName?: (string) | null;
6426
+ suffix?: (string) | null;
6427
+ mailingName?: (string) | null;
6428
+ officialName?: (string) | null;
6429
+ individualId?: string;
6282
6430
  });
6283
6431
 
6284
- export type PutApiCrmServiceMerchantsByIdData = {
6432
+ export type PutApiCrmServiceIndividualsByIdPersonalSummaryByPersonalSummaryIdData = {
6285
6433
  id: string;
6434
+ personalSummaryId: string;
6286
6435
  requestBody?: {
6287
- typeCode: 'HEADQUARTER' | 'STORE';
6288
- taxOfficeId: string;
6289
- parentId?: (string) | null;
6290
- taxpayerId: string;
6436
+ readonly extraProperties?: {
6437
+ [key: string]: unknown;
6438
+ } | null;
6439
+ date: string;
6440
+ birthDate: string;
6441
+ ethnicity: string;
6442
+ maritalStatusCode: string;
6443
+ religiousAffiliationName: string;
6444
+ genderTypeCode: 'MALE' | 'FEMALE';
6291
6445
  };
6292
6446
  };
6293
6447
 
6294
- export type PutApiCrmServiceMerchantsByIdResponse = ({
6448
+ export type PutApiCrmServiceIndividualsByIdPersonalSummaryByPersonalSummaryIdResponse = ({
6295
6449
  id?: string;
6296
- typeCode?: 'HEADQUARTER' | 'STORE';
6297
- taxOfficeId?: string;
6298
- parentId?: (string) | null;
6299
- });
6450
+ creationTime?: string;
6451
+ creatorId?: (string) | null;
6452
+ lastModificationTime?: (string) | null;
6453
+ lastModifierId?: (string) | null;
6454
+ isDeleted?: boolean;
6455
+ deleterId?: (string) | null;
6456
+ deletionTime?: (string) | null;
6457
+ date?: string;
6458
+ birthDate?: string;
6459
+ ethnicity?: (string) | null;
6460
+ maritalStatusCode?: (string) | null;
6461
+ religiousAffiliationName?: (string) | null;
6462
+ genderTypeCode?: 'MALE' | 'FEMALE';
6463
+ individualId?: string;
6464
+ });
6465
+
6466
+ export type PutApiCrmServiceIndividualsByIdTelephoneByTelephoneIdData = {
6467
+ id: string;
6468
+ requestBody?: {
6469
+ readonly extraProperties?: {
6470
+ [key: string]: unknown;
6471
+ } | null;
6472
+ areaCode: string;
6473
+ localNumber: string;
6474
+ ituCountryCode: string;
6475
+ primaryFlag?: boolean;
6476
+ typeCode: 'HOME' | 'OFFICE' | 'MOBILE' | 'FAX';
6477
+ };
6478
+ telephoneId: string;
6479
+ };
6480
+
6481
+ export type PutApiCrmServiceIndividualsByIdTelephoneByTelephoneIdResponse = ({
6482
+ id?: string;
6483
+ creationTime?: string;
6484
+ creatorId?: (string) | null;
6485
+ lastModificationTime?: (string) | null;
6486
+ lastModifierId?: (string) | null;
6487
+ isDeleted?: boolean;
6488
+ deleterId?: (string) | null;
6489
+ deletionTime?: (string) | null;
6490
+ areaCode?: (string) | null;
6491
+ localNumber?: (string) | null;
6492
+ ituCountryCode?: (string) | null;
6493
+ primaryFlag?: boolean;
6494
+ typeCode?: 'HOME' | 'OFFICE' | 'MOBILE' | 'FAX';
6495
+ });
6496
+
6497
+ export type PutApiCrmServiceIndividualsByIdAddressByAddressIdData = {
6498
+ addressId: string;
6499
+ id: string;
6500
+ requestBody?: {
6501
+ readonly extraProperties?: {
6502
+ [key: string]: unknown;
6503
+ } | null;
6504
+ type: 'Home' | 'Office' | 'Invoice' | 'Contact';
6505
+ addressLine: string;
6506
+ postalCode: string;
6507
+ primaryFlag?: boolean;
6508
+ countryId: string;
6509
+ regionId?: (string) | null;
6510
+ cityId?: (string) | null;
6511
+ districtId?: (string) | null;
6512
+ neighborhoodId?: (string) | null;
6513
+ };
6514
+ };
6515
+
6516
+ export type PutApiCrmServiceIndividualsByIdAddressByAddressIdResponse = ({
6517
+ id: string;
6518
+ creationTime?: string;
6519
+ creatorId?: (string) | null;
6520
+ lastModificationTime?: (string) | null;
6521
+ lastModifierId?: (string) | null;
6522
+ isDeleted?: boolean;
6523
+ deleterId?: (string) | null;
6524
+ deletionTime?: (string) | null;
6525
+ type: 'Home' | 'Office' | 'Invoice' | 'Contact';
6526
+ addressLine: string;
6527
+ postalCode: string;
6528
+ fullAddress: string;
6529
+ primaryFlag?: boolean;
6530
+ countryId: string;
6531
+ regionId?: (string) | null;
6532
+ cityId: string;
6533
+ districtId: string;
6534
+ neighborhoodId?: (string) | null;
6535
+ });
6536
+
6537
+ export type PutApiCrmServiceIndividualsByIdEmailByEmailIdData = {
6538
+ emailId: string;
6539
+ id: string;
6540
+ requestBody?: {
6541
+ readonly extraProperties?: {
6542
+ [key: string]: unknown;
6543
+ } | null;
6544
+ emailAddress: string;
6545
+ primaryFlag?: boolean;
6546
+ typeCode: 'WORK' | 'PERSONAL';
6547
+ };
6548
+ };
6549
+
6550
+ export type PutApiCrmServiceIndividualsByIdEmailByEmailIdResponse = ({
6551
+ id?: string;
6552
+ creationTime?: string;
6553
+ creatorId?: (string) | null;
6554
+ lastModificationTime?: (string) | null;
6555
+ lastModifierId?: (string) | null;
6556
+ isDeleted?: boolean;
6557
+ deleterId?: (string) | null;
6558
+ deletionTime?: (string) | null;
6559
+ primaryFlag?: boolean;
6560
+ typeCode?: 'WORK' | 'PERSONAL';
6561
+ emailAddress?: (string) | null;
6562
+ contactInformationTypeId?: string;
6563
+ });
6564
+
6565
+ export type GetApiCrmServiceMerchantsData = {
6566
+ ids?: Array<(string)>;
6567
+ maxResultCount?: number;
6568
+ name?: string;
6569
+ productGroupIds?: Array<(string)>;
6570
+ skipCount?: number;
6571
+ sorting?: string;
6572
+ typeCodes?: Array<('HEADQUARTER' | 'STORE')>;
6573
+ };
6574
+
6575
+ export type GetApiCrmServiceMerchantsResponse = ({
6576
+ items?: Array<{
6577
+ id: string;
6578
+ typeCode?: 'HEADQUARTER' | 'STORE';
6579
+ name: string;
6580
+ parentId?: (string) | null;
6581
+ taxpayerId: string;
6582
+ parentName?: (string) | null;
6583
+ entityInformationTypeCode: 'INDIVIDUAL' | 'ORGANIZATION';
6584
+ organizationId?: (string) | null;
6585
+ individualId?: (string) | null;
6586
+ }> | null;
6587
+ totalCount?: number;
6588
+ });
6589
+
6590
+ export type GetApiCrmServiceMerchantsByIdData = {
6591
+ id: string;
6592
+ };
6593
+
6594
+ export type GetApiCrmServiceMerchantsByIdResponse = ({
6595
+ id: string;
6596
+ typeCode?: 'HEADQUARTER' | 'STORE';
6597
+ name: string;
6598
+ parentId?: (string) | null;
6599
+ taxpayerId: string;
6600
+ parentName?: (string) | null;
6601
+ entityInformationTypeCode: 'INDIVIDUAL' | 'ORGANIZATION';
6602
+ organizationId?: (string) | null;
6603
+ individualId?: (string) | null;
6604
+ });
6605
+
6606
+ export type PutApiCrmServiceMerchantsByIdData = {
6607
+ id: string;
6608
+ requestBody?: {
6609
+ typeCode: 'HEADQUARTER' | 'STORE';
6610
+ taxOfficeId?: (string) | null;
6611
+ parentId?: (string) | null;
6612
+ taxpayerId?: (string) | null;
6613
+ };
6614
+ };
6615
+
6616
+ export type PutApiCrmServiceMerchantsByIdResponse = ({
6617
+ id?: string;
6618
+ typeCode?: 'HEADQUARTER' | 'STORE';
6619
+ taxOfficeId?: string;
6620
+ parentId?: (string) | null;
6621
+ });
6300
6622
 
6301
6623
  export type GetApiCrmServiceMerchantsByIdDetailData = {
6302
6624
  id: string;
@@ -6582,14 +6904,11 @@ export type GetApiCrmServiceMerchantsByIdSubMerchantsResponse = ({
6582
6904
 
6583
6905
  export type PostApiCrmServiceMerchantsWithComponentsData = {
6584
6906
  requestBody?: {
6585
- readonly extraProperties?: {
6586
- [key: string]: unknown;
6587
- } | null;
6588
6907
  typeCode: 'HEADQUARTER' | 'STORE';
6589
- taxOfficeId: string;
6908
+ taxOfficeId?: (string) | null;
6590
6909
  parentId?: (string) | null;
6591
6910
  customerNumber?: (string) | null;
6592
- taxpayerId: string;
6911
+ taxpayerId?: (string) | null;
6593
6912
  entityInformationTypes: Array<{
6594
6913
  readonly extraProperties?: {
6595
6914
  [key: string]: unknown;
@@ -7971,11 +8290,18 @@ export type GetApiCrmServiceRefundPointsByIdResponse = ({
7971
8290
  taxpayerId?: (string) | null;
7972
8291
  });
7973
8292
 
7974
- export type GetApiCrmServiceRefundPointsByIdDetailData = {
8293
+ export type PutApiCrmServiceRefundPointsByIdData = {
7975
8294
  id: string;
8295
+ requestBody?: {
8296
+ typeCode?: 'HEADQUARTER' | 'REFUNDPOINT';
8297
+ taxOfficeId?: (string) | null;
8298
+ tenantId?: (string) | null;
8299
+ parentId?: (string) | null;
8300
+ taxpayerId?: (string) | null;
8301
+ };
7976
8302
  };
7977
8303
 
7978
- export type GetApiCrmServiceRefundPointsByIdDetailResponse = ({
8304
+ export type PutApiCrmServiceRefundPointsByIdResponse = ({
7979
8305
  id?: string;
7980
8306
  creationTime?: string;
7981
8307
  creatorId?: (string) | null;
@@ -7986,6 +8312,8 @@ export type GetApiCrmServiceRefundPointsByIdDetailResponse = ({
7986
8312
  deletionTime?: (string) | null;
7987
8313
  taxpayerId?: (string) | null;
7988
8314
  typeCode?: 'HEADQUARTER' | 'REFUNDPOINT';
8315
+ taxOfficeId?: string;
8316
+ parentId?: (string) | null;
7989
8317
  entityInformations?: Array<{
7990
8318
  id?: string;
7991
8319
  creationTime?: string;
@@ -8190,84 +8518,302 @@ export type GetApiCrmServiceRefundPointsByIdDetailResponse = ({
8190
8518
  }> | null;
8191
8519
  });
8192
8520
 
8193
- export type GetApiCrmServiceRefundPointsByIdSubRefundPointsData = {
8521
+ export type GetApiCrmServiceRefundPointsByIdDetailData = {
8194
8522
  id: string;
8195
8523
  };
8196
8524
 
8197
- export type GetApiCrmServiceRefundPointsByIdSubRefundPointsResponse = ({
8198
- items?: Array<{
8199
- id?: string;
8200
- name?: (string) | null;
8201
- organizationId?: string;
8202
- parentId?: (string) | null;
8203
- taxOfficeId?: string;
8204
- taxpayerId?: (string) | null;
8205
- }> | null;
8206
- totalCount?: number;
8207
- });
8208
-
8209
- export type PostApiCrmServiceRefundPointsWithComponentsData = {
8210
- requestBody?: {
8211
- readonly extraProperties?: {
8212
- [key: string]: unknown;
8213
- } | null;
8214
- typeCode: 'HEADQUARTER' | 'REFUNDPOINT';
8215
- taxOfficeId: string;
8216
- parentId?: (string) | null;
8217
- taxpayerId: string;
8218
- entityInformationTypes?: Array<{
8219
- readonly extraProperties?: {
8220
- [key: string]: unknown;
8221
- } | null;
8222
- organizations?: Array<{
8223
- name: string;
8224
- contactInformations: Array<{
8225
- readonly extraProperties?: {
8226
- [key: string]: unknown;
8227
- } | null;
8228
- telephones?: Array<{
8229
- readonly extraProperties?: {
8230
- [key: string]: unknown;
8231
- } | null;
8232
- areaCode: string;
8233
- localNumber: string;
8234
- ituCountryCode: string;
8235
- primaryFlag: boolean;
8236
- typeCode: 'HOME' | 'OFFICE' | 'MOBILE' | 'FAX';
8237
- }> | null;
8238
- addresses?: Array<{
8239
- readonly extraProperties?: {
8240
- [key: string]: unknown;
8241
- } | null;
8242
- type: 'Home' | 'Office' | 'Invoice' | 'Contact';
8243
- addressLine: string;
8244
- postalCode?: (string) | null;
8245
- primaryFlag?: boolean;
8246
- countryId: string;
8247
- regionId?: (string) | null;
8248
- cityId?: (string) | null;
8249
- districtId?: (string) | null;
8250
- neighborhoodId?: (string) | null;
8251
- }> | null;
8252
- emails?: Array<{
8253
- readonly extraProperties?: {
8254
- [key: string]: unknown;
8255
- } | null;
8256
- emailAddress: string;
8257
- primaryFlag: boolean;
8258
- typeCode: 'WORK' | 'PERSONAL';
8259
- }> | null;
8260
- }>;
8261
- }> | null;
8262
- }> | null;
8263
- };
8264
- };
8265
-
8266
- export type PostApiCrmServiceRefundPointsWithComponentsResponse = ({
8525
+ export type GetApiCrmServiceRefundPointsByIdDetailResponse = ({
8267
8526
  id?: string;
8268
- name?: (string) | null;
8269
- organizationId?: string;
8270
- parentId?: (string) | null;
8527
+ creationTime?: string;
8528
+ creatorId?: (string) | null;
8529
+ lastModificationTime?: (string) | null;
8530
+ lastModifierId?: (string) | null;
8531
+ isDeleted?: boolean;
8532
+ deleterId?: (string) | null;
8533
+ deletionTime?: (string) | null;
8534
+ taxpayerId?: (string) | null;
8535
+ typeCode?: 'HEADQUARTER' | 'REFUNDPOINT';
8536
+ taxOfficeId?: string;
8537
+ parentId?: (string) | null;
8538
+ entityInformations?: Array<{
8539
+ id?: string;
8540
+ creationTime?: string;
8541
+ creatorId?: (string) | null;
8542
+ lastModificationTime?: (string) | null;
8543
+ lastModifierId?: (string) | null;
8544
+ isDeleted?: boolean;
8545
+ deleterId?: (string) | null;
8546
+ deletionTime?: (string) | null;
8547
+ merchantId?: (string) | null;
8548
+ customsId?: (string) | null;
8549
+ entityPartyTypeCode?: 'CUSTOMS' | 'MERCHANT' | 'REFUNDPOINT' | 'TAXFREE' | 'TAXOFFICE';
8550
+ entityInformationTypeCode?: 'INDIVIDUAL' | 'ORGANIZATION';
8551
+ individuals?: Array<{
8552
+ id?: string;
8553
+ creationTime?: string;
8554
+ creatorId?: (string) | null;
8555
+ lastModificationTime?: (string) | null;
8556
+ lastModifierId?: (string) | null;
8557
+ isDeleted?: boolean;
8558
+ deleterId?: (string) | null;
8559
+ deletionTime?: (string) | null;
8560
+ name?: {
8561
+ id?: string;
8562
+ creationTime?: string;
8563
+ creatorId?: (string) | null;
8564
+ lastModificationTime?: (string) | null;
8565
+ lastModifierId?: (string) | null;
8566
+ isDeleted?: boolean;
8567
+ deleterId?: (string) | null;
8568
+ deletionTime?: (string) | null;
8569
+ salutation?: (string) | null;
8570
+ firstName?: (string) | null;
8571
+ lastName?: (string) | null;
8572
+ suffix?: (string) | null;
8573
+ mailingName?: (string) | null;
8574
+ officialName?: (string) | null;
8575
+ individualId?: string;
8576
+ };
8577
+ contactInformations?: Array<{
8578
+ id?: string;
8579
+ creationTime?: string;
8580
+ creatorId?: (string) | null;
8581
+ lastModificationTime?: (string) | null;
8582
+ lastModifierId?: (string) | null;
8583
+ isDeleted?: boolean;
8584
+ deleterId?: (string) | null;
8585
+ deletionTime?: (string) | null;
8586
+ organizationId?: (string) | null;
8587
+ individualId?: (string) | null;
8588
+ startDate?: string;
8589
+ endDate?: string;
8590
+ telephones?: Array<{
8591
+ id?: string;
8592
+ creationTime?: string;
8593
+ creatorId?: (string) | null;
8594
+ lastModificationTime?: (string) | null;
8595
+ lastModifierId?: (string) | null;
8596
+ isDeleted?: boolean;
8597
+ deleterId?: (string) | null;
8598
+ deletionTime?: (string) | null;
8599
+ areaCode?: (string) | null;
8600
+ localNumber?: (string) | null;
8601
+ ituCountryCode?: (string) | null;
8602
+ primaryFlag?: boolean;
8603
+ typeCode?: 'HOME' | 'OFFICE' | 'MOBILE' | 'FAX';
8604
+ contactInformationTypeId?: string;
8605
+ }> | null;
8606
+ addresses?: Array<{
8607
+ id: string;
8608
+ creationTime?: string;
8609
+ creatorId?: (string) | null;
8610
+ lastModificationTime?: (string) | null;
8611
+ lastModifierId?: (string) | null;
8612
+ isDeleted?: boolean;
8613
+ deleterId?: (string) | null;
8614
+ deletionTime?: (string) | null;
8615
+ type: 'Home' | 'Office' | 'Invoice' | 'Contact';
8616
+ addressLine: string;
8617
+ postalCode: string;
8618
+ fullAddress: string;
8619
+ primaryFlag?: boolean;
8620
+ countryId: string;
8621
+ regionId?: (string) | null;
8622
+ cityId: string;
8623
+ districtId: string;
8624
+ neighborhoodId?: (string) | null;
8625
+ }> | null;
8626
+ emails?: Array<{
8627
+ id?: string;
8628
+ creationTime?: string;
8629
+ creatorId?: (string) | null;
8630
+ lastModificationTime?: (string) | null;
8631
+ lastModifierId?: (string) | null;
8632
+ isDeleted?: boolean;
8633
+ deleterId?: (string) | null;
8634
+ deletionTime?: (string) | null;
8635
+ primaryFlag?: boolean;
8636
+ typeCode?: 'WORK' | 'PERSONAL';
8637
+ emailAddress?: (string) | null;
8638
+ contactInformationTypeId?: string;
8639
+ }> | null;
8640
+ }> | null;
8641
+ personalSummaries?: Array<{
8642
+ id?: string;
8643
+ creationTime?: string;
8644
+ creatorId?: (string) | null;
8645
+ lastModificationTime?: (string) | null;
8646
+ lastModifierId?: (string) | null;
8647
+ isDeleted?: boolean;
8648
+ deleterId?: (string) | null;
8649
+ deletionTime?: (string) | null;
8650
+ date?: string;
8651
+ birthDate?: string;
8652
+ ethnicity?: (string) | null;
8653
+ maritalStatusCode?: (string) | null;
8654
+ religiousAffiliationName?: (string) | null;
8655
+ genderTypeCode?: 'MALE' | 'FEMALE';
8656
+ individualId?: string;
8657
+ }> | null;
8658
+ entityInformationTypeId?: (string) | null;
8659
+ abpUserId?: (string) | null;
8660
+ }> | null;
8661
+ organizations?: Array<{
8662
+ id?: string;
8663
+ creationTime?: string;
8664
+ creatorId?: (string) | null;
8665
+ lastModificationTime?: (string) | null;
8666
+ lastModifierId?: (string) | null;
8667
+ isDeleted?: boolean;
8668
+ deleterId?: (string) | null;
8669
+ deletionTime?: (string) | null;
8670
+ entityInformationTypeId?: (string) | null;
8671
+ name?: (string) | null;
8672
+ legalStatusCode?: (string) | null;
8673
+ readonly countryCode?: (string) | null;
8674
+ contactInformations?: Array<{
8675
+ id?: string;
8676
+ creationTime?: string;
8677
+ creatorId?: (string) | null;
8678
+ lastModificationTime?: (string) | null;
8679
+ lastModifierId?: (string) | null;
8680
+ isDeleted?: boolean;
8681
+ deleterId?: (string) | null;
8682
+ deletionTime?: (string) | null;
8683
+ organizationId?: (string) | null;
8684
+ individualId?: (string) | null;
8685
+ startDate?: string;
8686
+ endDate?: string;
8687
+ telephones?: Array<{
8688
+ id?: string;
8689
+ creationTime?: string;
8690
+ creatorId?: (string) | null;
8691
+ lastModificationTime?: (string) | null;
8692
+ lastModifierId?: (string) | null;
8693
+ isDeleted?: boolean;
8694
+ deleterId?: (string) | null;
8695
+ deletionTime?: (string) | null;
8696
+ areaCode?: (string) | null;
8697
+ localNumber?: (string) | null;
8698
+ ituCountryCode?: (string) | null;
8699
+ primaryFlag?: boolean;
8700
+ typeCode?: 'HOME' | 'OFFICE' | 'MOBILE' | 'FAX';
8701
+ contactInformationTypeId?: string;
8702
+ }> | null;
8703
+ addresses?: Array<{
8704
+ id: string;
8705
+ creationTime?: string;
8706
+ creatorId?: (string) | null;
8707
+ lastModificationTime?: (string) | null;
8708
+ lastModifierId?: (string) | null;
8709
+ isDeleted?: boolean;
8710
+ deleterId?: (string) | null;
8711
+ deletionTime?: (string) | null;
8712
+ type: 'Home' | 'Office' | 'Invoice' | 'Contact';
8713
+ addressLine: string;
8714
+ postalCode: string;
8715
+ fullAddress: string;
8716
+ primaryFlag?: boolean;
8717
+ countryId: string;
8718
+ regionId?: (string) | null;
8719
+ cityId: string;
8720
+ districtId: string;
8721
+ neighborhoodId?: (string) | null;
8722
+ }> | null;
8723
+ emails?: Array<{
8724
+ id?: string;
8725
+ creationTime?: string;
8726
+ creatorId?: (string) | null;
8727
+ lastModificationTime?: (string) | null;
8728
+ lastModifierId?: (string) | null;
8729
+ isDeleted?: boolean;
8730
+ deleterId?: (string) | null;
8731
+ deletionTime?: (string) | null;
8732
+ primaryFlag?: boolean;
8733
+ typeCode?: 'WORK' | 'PERSONAL';
8734
+ emailAddress?: (string) | null;
8735
+ contactInformationTypeId?: string;
8736
+ }> | null;
8737
+ }> | null;
8738
+ }> | null;
8739
+ }> | null;
8740
+ });
8741
+
8742
+ export type GetApiCrmServiceRefundPointsByIdSubRefundPointsData = {
8743
+ id: string;
8744
+ };
8745
+
8746
+ export type GetApiCrmServiceRefundPointsByIdSubRefundPointsResponse = ({
8747
+ items?: Array<{
8748
+ id?: string;
8749
+ name?: (string) | null;
8750
+ organizationId?: string;
8751
+ parentId?: (string) | null;
8752
+ taxOfficeId?: string;
8753
+ taxpayerId?: (string) | null;
8754
+ }> | null;
8755
+ totalCount?: number;
8756
+ });
8757
+
8758
+ export type PostApiCrmServiceRefundPointsWithComponentsData = {
8759
+ requestBody?: {
8760
+ typeCode: 'HEADQUARTER' | 'REFUNDPOINT';
8761
+ taxOfficeId?: (string) | null;
8762
+ parentId?: (string) | null;
8763
+ taxpayerId?: (string) | null;
8764
+ entityInformationTypes?: Array<{
8765
+ readonly extraProperties?: {
8766
+ [key: string]: unknown;
8767
+ } | null;
8768
+ organizations?: Array<{
8769
+ name: string;
8770
+ contactInformations: Array<{
8771
+ readonly extraProperties?: {
8772
+ [key: string]: unknown;
8773
+ } | null;
8774
+ telephones?: Array<{
8775
+ readonly extraProperties?: {
8776
+ [key: string]: unknown;
8777
+ } | null;
8778
+ areaCode: string;
8779
+ localNumber: string;
8780
+ ituCountryCode: string;
8781
+ primaryFlag: boolean;
8782
+ typeCode: 'HOME' | 'OFFICE' | 'MOBILE' | 'FAX';
8783
+ }> | null;
8784
+ addresses?: Array<{
8785
+ readonly extraProperties?: {
8786
+ [key: string]: unknown;
8787
+ } | null;
8788
+ type: 'Home' | 'Office' | 'Invoice' | 'Contact';
8789
+ addressLine: string;
8790
+ postalCode?: (string) | null;
8791
+ primaryFlag?: boolean;
8792
+ countryId: string;
8793
+ regionId?: (string) | null;
8794
+ cityId?: (string) | null;
8795
+ districtId?: (string) | null;
8796
+ neighborhoodId?: (string) | null;
8797
+ }> | null;
8798
+ emails?: Array<{
8799
+ readonly extraProperties?: {
8800
+ [key: string]: unknown;
8801
+ } | null;
8802
+ emailAddress: string;
8803
+ primaryFlag: boolean;
8804
+ typeCode: 'WORK' | 'PERSONAL';
8805
+ }> | null;
8806
+ }>;
8807
+ }> | null;
8808
+ }> | null;
8809
+ };
8810
+ };
8811
+
8812
+ export type PostApiCrmServiceRefundPointsWithComponentsResponse = ({
8813
+ id?: string;
8814
+ name?: (string) | null;
8815
+ organizationId?: string;
8816
+ parentId?: (string) | null;
8271
8817
  taxOfficeId?: string;
8272
8818
  taxpayerId?: (string) | null;
8273
8819
  });
@@ -8499,31 +9045,6 @@ export type PutApiCrmServiceRefundPointsByIdEmailsByEmailIdResponse = ({
8499
9045
  contactInformationTypeId?: string;
8500
9046
  });
8501
9047
 
8502
- export type GetApiCrmServiceRefundPointsByIdAffiliatedIndividualData = {
8503
- id: string;
8504
- };
8505
-
8506
- export type GetApiCrmServiceRefundPointsByIdAffiliatedIndividualResponse = (Array<{
8507
- id?: string;
8508
- name: string;
8509
- affiliationCode?: {
8510
- id?: number;
8511
- creationTime?: string;
8512
- creatorId?: (string) | null;
8513
- lastModificationTime?: (string) | null;
8514
- lastModifierId?: (string) | null;
8515
- isDeleted?: boolean;
8516
- deleterId?: (string) | null;
8517
- deletionTime?: (string) | null;
8518
- name?: (string) | null;
8519
- description?: (string) | null;
8520
- roleId?: (string) | null;
8521
- status?: 'Waiting' | 'Approved' | 'Rejected';
8522
- entityPartyTypeCode?: 'CUSTOMS' | 'MERCHANT' | 'REFUNDPOINT' | 'TAXFREE' | 'TAXOFFICE';
8523
- language?: (string) | null;
8524
- };
8525
- }>);
8526
-
8527
9048
  export type GetApiCrmServiceRefundPointsByIdAddressesData = {
8528
9049
  id: string;
8529
9050
  };
@@ -8878,9 +9399,6 @@ export type GetApiCrmServiceTaxFreesByIdSubTaxFreeResponse = ({
8878
9399
 
8879
9400
  export type PostApiCrmServiceTaxFreesWithComponentsData = {
8880
9401
  requestBody?: {
8881
- readonly extraProperties?: {
8882
- [key: string]: unknown;
8883
- } | null;
8884
9402
  entityInformationTypes: Array<{
8885
9403
  readonly extraProperties?: {
8886
9404
  [key: string]: unknown;
@@ -8931,7 +9449,9 @@ export type PostApiCrmServiceTaxFreesWithComponentsData = {
8931
9449
  }> | null;
8932
9450
  }>;
8933
9451
  parentId?: (string) | null;
8934
- taxpayerId: string;
9452
+ taxpayerId?: (string) | null;
9453
+ typeCode?: 'HEADQUARTER' | 'TAXFREE';
9454
+ taxOfficeId?: (string) | null;
8935
9455
  };
8936
9456
  };
8937
9457
 
@@ -8944,6 +9464,229 @@ export type PostApiCrmServiceTaxFreesWithComponentsResponse = ({
8944
9464
  taxpayerId?: (string) | null;
8945
9465
  });
8946
9466
 
9467
+ export type PutApiCrmServiceTaxFreesByIdData = {
9468
+ id: string;
9469
+ requestBody?: {
9470
+ parentId?: (string) | null;
9471
+ taxpayerId?: (string) | null;
9472
+ typeCode?: 'HEADQUARTER' | 'TAXFREE';
9473
+ taxOfficeId?: (string) | null;
9474
+ };
9475
+ };
9476
+
9477
+ export type PutApiCrmServiceTaxFreesByIdResponse = ({
9478
+ id?: string;
9479
+ creationTime?: string;
9480
+ creatorId?: (string) | null;
9481
+ lastModificationTime?: (string) | null;
9482
+ lastModifierId?: (string) | null;
9483
+ isDeleted?: boolean;
9484
+ deleterId?: (string) | null;
9485
+ deletionTime?: (string) | null;
9486
+ entityInformations?: Array<{
9487
+ id?: string;
9488
+ creationTime?: string;
9489
+ creatorId?: (string) | null;
9490
+ lastModificationTime?: (string) | null;
9491
+ lastModifierId?: (string) | null;
9492
+ isDeleted?: boolean;
9493
+ deleterId?: (string) | null;
9494
+ deletionTime?: (string) | null;
9495
+ merchantId?: (string) | null;
9496
+ customsId?: (string) | null;
9497
+ entityPartyTypeCode?: 'CUSTOMS' | 'MERCHANT' | 'REFUNDPOINT' | 'TAXFREE' | 'TAXOFFICE';
9498
+ entityInformationTypeCode?: 'INDIVIDUAL' | 'ORGANIZATION';
9499
+ individuals?: Array<{
9500
+ id?: string;
9501
+ creationTime?: string;
9502
+ creatorId?: (string) | null;
9503
+ lastModificationTime?: (string) | null;
9504
+ lastModifierId?: (string) | null;
9505
+ isDeleted?: boolean;
9506
+ deleterId?: (string) | null;
9507
+ deletionTime?: (string) | null;
9508
+ name?: {
9509
+ id?: string;
9510
+ creationTime?: string;
9511
+ creatorId?: (string) | null;
9512
+ lastModificationTime?: (string) | null;
9513
+ lastModifierId?: (string) | null;
9514
+ isDeleted?: boolean;
9515
+ deleterId?: (string) | null;
9516
+ deletionTime?: (string) | null;
9517
+ salutation?: (string) | null;
9518
+ firstName?: (string) | null;
9519
+ lastName?: (string) | null;
9520
+ suffix?: (string) | null;
9521
+ mailingName?: (string) | null;
9522
+ officialName?: (string) | null;
9523
+ individualId?: string;
9524
+ };
9525
+ contactInformations?: Array<{
9526
+ id?: string;
9527
+ creationTime?: string;
9528
+ creatorId?: (string) | null;
9529
+ lastModificationTime?: (string) | null;
9530
+ lastModifierId?: (string) | null;
9531
+ isDeleted?: boolean;
9532
+ deleterId?: (string) | null;
9533
+ deletionTime?: (string) | null;
9534
+ organizationId?: (string) | null;
9535
+ individualId?: (string) | null;
9536
+ startDate?: string;
9537
+ endDate?: string;
9538
+ telephones?: Array<{
9539
+ id?: string;
9540
+ creationTime?: string;
9541
+ creatorId?: (string) | null;
9542
+ lastModificationTime?: (string) | null;
9543
+ lastModifierId?: (string) | null;
9544
+ isDeleted?: boolean;
9545
+ deleterId?: (string) | null;
9546
+ deletionTime?: (string) | null;
9547
+ areaCode?: (string) | null;
9548
+ localNumber?: (string) | null;
9549
+ ituCountryCode?: (string) | null;
9550
+ primaryFlag?: boolean;
9551
+ typeCode?: 'HOME' | 'OFFICE' | 'MOBILE' | 'FAX';
9552
+ contactInformationTypeId?: string;
9553
+ }> | null;
9554
+ addresses?: Array<{
9555
+ id: string;
9556
+ creationTime?: string;
9557
+ creatorId?: (string) | null;
9558
+ lastModificationTime?: (string) | null;
9559
+ lastModifierId?: (string) | null;
9560
+ isDeleted?: boolean;
9561
+ deleterId?: (string) | null;
9562
+ deletionTime?: (string) | null;
9563
+ type: 'Home' | 'Office' | 'Invoice' | 'Contact';
9564
+ addressLine: string;
9565
+ postalCode: string;
9566
+ fullAddress: string;
9567
+ primaryFlag?: boolean;
9568
+ countryId: string;
9569
+ regionId?: (string) | null;
9570
+ cityId: string;
9571
+ districtId: string;
9572
+ neighborhoodId?: (string) | null;
9573
+ }> | null;
9574
+ emails?: Array<{
9575
+ id?: string;
9576
+ creationTime?: string;
9577
+ creatorId?: (string) | null;
9578
+ lastModificationTime?: (string) | null;
9579
+ lastModifierId?: (string) | null;
9580
+ isDeleted?: boolean;
9581
+ deleterId?: (string) | null;
9582
+ deletionTime?: (string) | null;
9583
+ primaryFlag?: boolean;
9584
+ typeCode?: 'WORK' | 'PERSONAL';
9585
+ emailAddress?: (string) | null;
9586
+ contactInformationTypeId?: string;
9587
+ }> | null;
9588
+ }> | null;
9589
+ personalSummaries?: Array<{
9590
+ id?: string;
9591
+ creationTime?: string;
9592
+ creatorId?: (string) | null;
9593
+ lastModificationTime?: (string) | null;
9594
+ lastModifierId?: (string) | null;
9595
+ isDeleted?: boolean;
9596
+ deleterId?: (string) | null;
9597
+ deletionTime?: (string) | null;
9598
+ date?: string;
9599
+ birthDate?: string;
9600
+ ethnicity?: (string) | null;
9601
+ maritalStatusCode?: (string) | null;
9602
+ religiousAffiliationName?: (string) | null;
9603
+ genderTypeCode?: 'MALE' | 'FEMALE';
9604
+ individualId?: string;
9605
+ }> | null;
9606
+ entityInformationTypeId?: (string) | null;
9607
+ abpUserId?: (string) | null;
9608
+ }> | null;
9609
+ organizations?: Array<{
9610
+ id?: string;
9611
+ creationTime?: string;
9612
+ creatorId?: (string) | null;
9613
+ lastModificationTime?: (string) | null;
9614
+ lastModifierId?: (string) | null;
9615
+ isDeleted?: boolean;
9616
+ deleterId?: (string) | null;
9617
+ deletionTime?: (string) | null;
9618
+ entityInformationTypeId?: (string) | null;
9619
+ name?: (string) | null;
9620
+ legalStatusCode?: (string) | null;
9621
+ readonly countryCode?: (string) | null;
9622
+ contactInformations?: Array<{
9623
+ id?: string;
9624
+ creationTime?: string;
9625
+ creatorId?: (string) | null;
9626
+ lastModificationTime?: (string) | null;
9627
+ lastModifierId?: (string) | null;
9628
+ isDeleted?: boolean;
9629
+ deleterId?: (string) | null;
9630
+ deletionTime?: (string) | null;
9631
+ organizationId?: (string) | null;
9632
+ individualId?: (string) | null;
9633
+ startDate?: string;
9634
+ endDate?: string;
9635
+ telephones?: Array<{
9636
+ id?: string;
9637
+ creationTime?: string;
9638
+ creatorId?: (string) | null;
9639
+ lastModificationTime?: (string) | null;
9640
+ lastModifierId?: (string) | null;
9641
+ isDeleted?: boolean;
9642
+ deleterId?: (string) | null;
9643
+ deletionTime?: (string) | null;
9644
+ areaCode?: (string) | null;
9645
+ localNumber?: (string) | null;
9646
+ ituCountryCode?: (string) | null;
9647
+ primaryFlag?: boolean;
9648
+ typeCode?: 'HOME' | 'OFFICE' | 'MOBILE' | 'FAX';
9649
+ contactInformationTypeId?: string;
9650
+ }> | null;
9651
+ addresses?: Array<{
9652
+ id: string;
9653
+ creationTime?: string;
9654
+ creatorId?: (string) | null;
9655
+ lastModificationTime?: (string) | null;
9656
+ lastModifierId?: (string) | null;
9657
+ isDeleted?: boolean;
9658
+ deleterId?: (string) | null;
9659
+ deletionTime?: (string) | null;
9660
+ type: 'Home' | 'Office' | 'Invoice' | 'Contact';
9661
+ addressLine: string;
9662
+ postalCode: string;
9663
+ fullAddress: string;
9664
+ primaryFlag?: boolean;
9665
+ countryId: string;
9666
+ regionId?: (string) | null;
9667
+ cityId: string;
9668
+ districtId: string;
9669
+ neighborhoodId?: (string) | null;
9670
+ }> | null;
9671
+ emails?: Array<{
9672
+ id?: string;
9673
+ creationTime?: string;
9674
+ creatorId?: (string) | null;
9675
+ lastModificationTime?: (string) | null;
9676
+ lastModifierId?: (string) | null;
9677
+ isDeleted?: boolean;
9678
+ deleterId?: (string) | null;
9679
+ deletionTime?: (string) | null;
9680
+ primaryFlag?: boolean;
9681
+ typeCode?: 'WORK' | 'PERSONAL';
9682
+ emailAddress?: (string) | null;
9683
+ contactInformationTypeId?: string;
9684
+ }> | null;
9685
+ }> | null;
9686
+ }> | null;
9687
+ }> | null;
9688
+ });
9689
+
8947
9690
  export type DeleteApiCrmServiceTaxFreesByIdWithComponentsData = {
8948
9691
  id: string;
8949
9692
  };