@ayasofyazilim/saas 0.0.63 → 0.0.65

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.
@@ -109,6 +109,8 @@ export type UniRefund_CRMService_AffiliationTypes_AffiliationTypeDto = {
109
109
  name?: string | null;
110
110
  description?: string | null;
111
111
  partyId?: string;
112
+ approvedUserId?: string | null;
113
+ approvedDate?: string | null;
112
114
  merchantId?: string | null;
113
115
  };
114
116
 
@@ -261,7 +263,7 @@ export type UniRefund_CRMService_EntityInformationTypes_EntityInformationTypeDto
261
263
  organizations?: Array<UniRefund_CRMService_Organizations_OrganizationDto> | null;
262
264
  };
263
265
 
264
- export type UniRefund_CRMService_Enums_AffiliationTypeCode = 'COFOUNDER' | 'PARTNER' | 'ABPUSER' | 'SUBCOMPANY' | 'ACCOUNTMANAGER';
266
+ export type UniRefund_CRMService_Enums_AffiliationTypeCode = 'COFOUNDER' | 'PARTNER' | 'ABPUSER' | 'SUBCOMPANY' | 'ACCOUNTMANAGER' | 'Franchise';
265
267
 
266
268
  export type UniRefund_CRMService_Enums_EmailTypeCode = 'WORK' | 'PERSONAL';
267
269
 
@@ -343,7 +345,7 @@ export type UniRefund_CRMService_Merchants_CreateMerchantIndividualDto = {
343
345
  name?: UniRefund_CRMService_NameCommonDatas_CreateNameCommonDataDto;
344
346
  personalSummaries?: Array<UniRefund_CRMService_PersonalSummaries_CreatePersonalSummaryDto> | null;
345
347
  contactInformations?: Array<UniRefund_CRMService_ContactInformationTypes_CreateContactInformationTypeDto> | null;
346
- affiliationCodeId?: number;
348
+ affiliationCodeId: number;
347
349
  };
348
350
 
349
351
  export type UniRefund_CRMService_Merchants_CreateMerchantOrgnaizationDto = {
@@ -389,8 +391,9 @@ export type UniRefund_CRMService_Merchants_MerchantDto = {
389
391
  deletionTime?: string | null;
390
392
  entityInformations?: Array<UniRefund_CRMService_EntityInformationTypes_EntityInformationTypeDto> | null;
391
393
  affiliations?: Array<UniRefund_CRMService_AffiliationTypes_AffiliationTypeDto> | null;
392
- typeCode?: UniRefund_CRMService_Merchants_MerchantTypeCode;
393
- taxOfficeId?: string;
394
+ typeCode: UniRefund_CRMService_Merchants_MerchantTypeCode;
395
+ taxOfficeId: string;
396
+ readonly parentId?: string | null;
394
397
  tenantId?: string | null;
395
398
  };
396
399
 
@@ -402,11 +405,11 @@ export type UniRefund_CRMService_Merchants_MerchantInfoDto = {
402
405
  };
403
406
 
404
407
  export type UniRefund_CRMService_Merchants_MerchantProfileDto = {
405
- id?: string;
408
+ id: string;
406
409
  typeCode?: UniRefund_CRMService_Merchants_MerchantTypeCode;
407
- name?: string | null;
410
+ name: string;
408
411
  parentId?: string | null;
409
- entityInformationTypeCode?: UniRefund_CRMService_Enums_EntityInformationTypeCode;
412
+ entityInformationTypeCode: UniRefund_CRMService_Enums_EntityInformationTypeCode;
410
413
  organizationId?: string | null;
411
414
  individualId?: string | null;
412
415
  };
@@ -416,15 +419,16 @@ export type UniRefund_CRMService_Merchants_MerchantTypeCode = 'HEADQUARTER' | 'S
416
419
  export type UniRefund_CRMService_Merchants_RefundPointProfileDto = {
417
420
  id?: string;
418
421
  name?: string | null;
419
- entityInformationTypeCode?: UniRefund_CRMService_Enums_EntityInformationTypeCode;
420
422
  organizationId?: string;
423
+ parentId?: string | null;
424
+ taxOfficeId?: string;
421
425
  };
422
426
 
423
427
  export type UniRefund_CRMService_Merchants_StoreProfileDto = {
424
- id?: string;
425
- name?: string | null;
426
- fullAddress?: string | null;
427
- manager?: string | null;
428
+ id: string;
429
+ name: string;
430
+ fullAddress: string;
431
+ manager: string;
428
432
  };
429
433
 
430
434
  export type UniRefund_CRMService_Merchants_StoreProfilePagedResultDto = {
@@ -434,14 +438,14 @@ export type UniRefund_CRMService_Merchants_StoreProfilePagedResultDto = {
434
438
 
435
439
  export type UniRefund_CRMService_Merchants_SubIndividualDto = {
436
440
  id?: string;
437
- name?: string | null;
438
- affiliationTypeCode?: UniRefund_CRMService_Enums_AffiliationTypeCode;
441
+ name: string;
442
+ affiliationTypeCode: UniRefund_CRMService_Enums_AffiliationTypeCode;
439
443
  affiliationCode?: UniRefund_CRMService_AffiliationCodes_AffiliationCodeDto;
440
444
  };
441
445
 
442
446
  export type UniRefund_CRMService_Merchants_UpdateMerchantDto = {
443
- typeCode?: UniRefund_CRMService_Merchants_MerchantTypeCode;
444
- taxOfficeId?: string;
447
+ typeCode: UniRefund_CRMService_Merchants_MerchantTypeCode;
448
+ taxOfficeId: string;
445
449
  parentId?: string | null;
446
450
  };
447
451
 
@@ -583,6 +587,7 @@ export type UniRefund_CRMService_RefundPoints_CreateRefundPointDto = {
583
587
  [key: string]: unknown;
584
588
  } | null;
585
589
  typeCode: UniRefund_CRMService_RefundPoints_RefundPointTypeCode;
590
+ taxOfficeId: string;
586
591
  parentId?: string | null;
587
592
  entityInformationTypes?: Array<UniRefund_CRMService_RefundPoints_CreateRefundPointEntityInformationTypeDto> | null;
588
593
  };
@@ -601,6 +606,14 @@ export type UniRefund_CRMService_RefundPoints_CreateRefundPointOrganizationDto =
601
606
  contactInformations: Array<UniRefund_CRMService_ContactInformationTypes_CreateContactInformationTypeDto>;
602
607
  };
603
608
 
609
+ export type UniRefund_CRMService_RefundPoints_RefundPointBasicInformationDto = {
610
+ id?: string;
611
+ name?: string | null;
612
+ taxOffice?: UniRefund_CRMService_TaxOffices_TaxOfficeIdNameDto;
613
+ numberOfStores?: number;
614
+ accountManagers?: Array<UniRefund_CRMService_Individuals_IndividualIdNameDto> | null;
615
+ };
616
+
604
617
  export type UniRefund_CRMService_RefundPoints_RefundPointDto = {
605
618
  id?: string;
606
619
  creationTime?: string;
@@ -832,20 +845,13 @@ export type UniRefund_SettingService_ProductGroups_CompanyTypeCode = 'GOVERNMENT
832
845
 
833
846
  export type UniRefund_SettingService_ProductGroups_ProductGroupDto = {
834
847
  id?: string;
835
- creationTime?: string;
836
- creatorId?: string | null;
837
- lastModificationTime?: string | null;
838
- lastModifierId?: string | null;
839
- isDeleted?: boolean;
840
- deleterId?: string | null;
841
- deletionTime?: string | null;
842
- articleCode?: string | null;
843
- name?: string | null;
844
- unitCode?: UniRefund_SettingService_ProductGroups_UnitTypeCode;
845
- companyType?: UniRefund_SettingService_ProductGroups_CompanyTypeCode;
846
- active?: boolean;
847
- food?: boolean;
848
- language?: string | null;
848
+ articleCode: string;
849
+ name: string;
850
+ unitCode: UniRefund_SettingService_ProductGroups_UnitTypeCode;
851
+ companyType: UniRefund_SettingService_ProductGroups_CompanyTypeCode;
852
+ vatId?: string | null;
853
+ active: boolean;
854
+ food: boolean;
849
855
  };
850
856
 
851
857
  export type UniRefund_SettingService_ProductGroups_UnitTypeCode = 'QNT' | 'BAG' | 'BOX';
@@ -1329,7 +1335,7 @@ export type PostApiCrmServiceCustomsWithComponentsData = {
1329
1335
  requestBody?: UniRefund_CRMService_Customss_CreateCustomsDto;
1330
1336
  };
1331
1337
 
1332
- export type PostApiCrmServiceCustomsWithComponentsResponse = unknown;
1338
+ export type PostApiCrmServiceCustomsWithComponentsResponse = UniRefund_CRMService_Customss_CustomsProfileDto;
1333
1339
 
1334
1340
  export type DeleteApiCrmServiceCustomsByIdWithComponentsData = {
1335
1341
  id: string;
@@ -1394,22 +1400,32 @@ export type PostApiCrmServiceIndividualsWithComponentsData = {
1394
1400
 
1395
1401
  export type PostApiCrmServiceIndividualsWithComponentsResponse = UniRefund_CRMService_Individuals_IndividualDto;
1396
1402
 
1403
+ export type DeleteApiCrmServiceIndividualsByIdData = {
1404
+ id: string;
1405
+ };
1406
+
1407
+ export type DeleteApiCrmServiceIndividualsByIdResponse = unknown;
1408
+
1409
+ export type GetApiCrmServiceIndividualsByIdData = {
1410
+ id: string;
1411
+ };
1412
+
1413
+ export type GetApiCrmServiceIndividualsByIdResponse = UniRefund_CRMService_Individuals_IndividualProfileDto;
1414
+
1397
1415
  export type GetApiCrmServiceIndividualsData = {
1416
+ affiliationType?: UniRefund_CRMService_Enums_AffiliationTypeCode;
1417
+ email?: string;
1398
1418
  entityPartyTypeCode?: UniRefund_CRMService_Enums_EntityPartyTypeCode;
1399
1419
  maxResultCount?: number;
1420
+ name?: string;
1400
1421
  parentId?: string;
1401
1422
  skipCount?: number;
1402
1423
  sorting?: string;
1424
+ telephone?: string;
1403
1425
  };
1404
1426
 
1405
1427
  export type GetApiCrmServiceIndividualsResponse = PagedResultDto_IndividualProfileDto;
1406
1428
 
1407
- export type GetApiCrmServiceIndividualsByIdData = {
1408
- id: string;
1409
- };
1410
-
1411
- export type GetApiCrmServiceIndividualsByIdResponse = UniRefund_CRMService_Individuals_IndividualProfileDto;
1412
-
1413
1429
  export type GetApiCrmServiceIndividualsUserDevicesNamesData = {
1414
1430
  ids?: Array<(string)>;
1415
1431
  maxResultCount?: number;
@@ -1463,17 +1479,12 @@ export type PutApiCrmServiceMerchantsByIdResponse = UniRefund_CRMService_Merchan
1463
1479
 
1464
1480
  export type GetApiCrmServiceMerchantsByIdEnsureExistData = {
1465
1481
  id: string;
1466
- subId: string;
1482
+ subId?: string;
1483
+ typeCode?: UniRefund_CRMService_Merchants_MerchantTypeCode;
1467
1484
  };
1468
1485
 
1469
1486
  export type GetApiCrmServiceMerchantsByIdEnsureExistResponse = unknown;
1470
1487
 
1471
- export type GetApiCrmServiceMerchantsByIdExistData = {
1472
- id: string;
1473
- };
1474
-
1475
- export type GetApiCrmServiceMerchantsByIdExistResponse = boolean;
1476
-
1477
1488
  export type GetApiCrmServiceMerchantsByIdDetailData = {
1478
1489
  id: string;
1479
1490
  };
@@ -1569,6 +1580,12 @@ export type PostApiCrmServiceMerchantsBulkProductGroupMerchantsData = {
1569
1580
 
1570
1581
  export type PostApiCrmServiceMerchantsBulkProductGroupMerchantsResponse = unknown;
1571
1582
 
1583
+ export type GetApiCrmServiceMerchantsByIdTelephonesData = {
1584
+ id: string;
1585
+ };
1586
+
1587
+ export type GetApiCrmServiceMerchantsByIdTelephonesResponse = Array<UniRefund_CRMService_TelephoneTypes_TelephoneTypeDto>;
1588
+
1572
1589
  export type PutApiCrmServiceMerchantsByIdTelephonesByTelephoneIdData = {
1573
1590
  id: string;
1574
1591
  requestBody?: UniRefund_CRMService_TelephoneTypes_UpdateTelephoneTypeDto;
@@ -1581,7 +1598,7 @@ export type GetApiCrmServiceMerchantsByIdAddressesData = {
1581
1598
  id: string;
1582
1599
  };
1583
1600
 
1584
- export type GetApiCrmServiceMerchantsByIdAddressesResponse = Array<UniRefund_CRMService_AddressTypes_AddressTypeDto>;
1601
+ export type GetApiCrmServiceMerchantsByIdAddressesResponse = Array<UniRefund_LocationService_AddressCommonDatas_AddressCommonDataDto>;
1585
1602
 
1586
1603
  export type PutApiCrmServiceMerchantsByIdAddressesByAddressIdData = {
1587
1604
  addressId: string;
@@ -1589,7 +1606,13 @@ export type PutApiCrmServiceMerchantsByIdAddressesByAddressIdData = {
1589
1606
  requestBody?: UniRefund_LocationService_AddressCommonDatas_AddressCommonDataUpdateDto;
1590
1607
  };
1591
1608
 
1592
- export type PutApiCrmServiceMerchantsByIdAddressesByAddressIdResponse = UniRefund_CRMService_AddressTypes_AddressTypeDto;
1609
+ export type PutApiCrmServiceMerchantsByIdAddressesByAddressIdResponse = UniRefund_LocationService_AddressCommonDatas_AddressCommonDataDto;
1610
+
1611
+ export type GetApiCrmServiceMerchantsByIdEmailsData = {
1612
+ id: string;
1613
+ };
1614
+
1615
+ export type GetApiCrmServiceMerchantsByIdEmailsResponse = Array<UniRefund_CRMService_EmailCommonDatas_EmailCommonDataDto>;
1593
1616
 
1594
1617
  export type PutApiCrmServiceMerchantsByIdEmailsByEmailIdData = {
1595
1618
  emailId: string;
@@ -1634,6 +1657,7 @@ export type GetApiCrmServiceOrganizationsData = {
1634
1657
  export type GetApiCrmServiceOrganizationsResponse = PagedResultDto_OrganizationProfileDto;
1635
1658
 
1636
1659
  export type GetApiCrmServiceRefundPointsData = {
1660
+ ids?: Array<(string)>;
1637
1661
  maxResultCount?: number;
1638
1662
  skipCount?: number;
1639
1663
  sorting?: string;
@@ -1647,6 +1671,12 @@ export type GetApiCrmServiceRefundPointsByIdDetailData = {
1647
1671
 
1648
1672
  export type GetApiCrmServiceRefundPointsByIdDetailResponse = UniRefund_CRMService_RefundPoints_RefundPointDto;
1649
1673
 
1674
+ export type GetApiCrmServiceRefundPointsByIdBasicInformationData = {
1675
+ id: string;
1676
+ };
1677
+
1678
+ export type GetApiCrmServiceRefundPointsByIdBasicInformationResponse = UniRefund_CRMService_RefundPoints_RefundPointBasicInformationDto;
1679
+
1650
1680
  export type GetApiCrmServiceRefundPointsByIdSubRefundPointsData = {
1651
1681
  id: string;
1652
1682
  };
@@ -1657,7 +1687,7 @@ export type PostApiCrmServiceRefundPointsWithComponentsData = {
1657
1687
  requestBody?: UniRefund_CRMService_RefundPoints_CreateRefundPointDto;
1658
1688
  };
1659
1689
 
1660
- export type PostApiCrmServiceRefundPointsWithComponentsResponse = unknown;
1690
+ export type PostApiCrmServiceRefundPointsWithComponentsResponse = UniRefund_CRMService_Merchants_RefundPointProfileDto;
1661
1691
 
1662
1692
  export type DeleteApiCrmServiceRefundPointsByIdWithComponentsData = {
1663
1693
  id: string;
@@ -1717,9 +1747,10 @@ export type PutApiCrmServiceRefundPointsByIdEmailsByEmailIdResponse = UniRefund_
1717
1747
 
1718
1748
  export type GetApiCrmServiceRefundPointsByIdExistData = {
1719
1749
  id: string;
1750
+ refundPointTypeCode?: UniRefund_CRMService_RefundPoints_RefundPointTypeCode;
1720
1751
  };
1721
1752
 
1722
- export type GetApiCrmServiceRefundPointsByIdExistResponse = boolean;
1753
+ export type GetApiCrmServiceRefundPointsByIdExistResponse = unknown;
1723
1754
 
1724
1755
  export type GetApiCrmServiceRefundPointsRefundPointNamesData = {
1725
1756
  ids?: Array<(string)>;
@@ -1753,7 +1784,7 @@ export type PostApiCrmServiceTaxFreesWithComponentsData = {
1753
1784
  requestBody?: UniRefund_CRMService_TaxFrees_CreateTaxFreeDto;
1754
1785
  };
1755
1786
 
1756
- export type PostApiCrmServiceTaxFreesWithComponentsResponse = unknown;
1787
+ export type PostApiCrmServiceTaxFreesWithComponentsResponse = UniRefund_CRMService_TaxFrees_TaxFreeProfileDto;
1757
1788
 
1758
1789
  export type DeleteApiCrmServiceTaxFreesByIdWithComponentsData = {
1759
1790
  id: string;
@@ -1841,7 +1872,7 @@ export type PostApiCrmServiceTaxOfficesWithComponentsData = {
1841
1872
  requestBody?: UniRefund_CRMService_TaxOffices_CreateTaxOfficeDto;
1842
1873
  };
1843
1874
 
1844
- export type PostApiCrmServiceTaxOfficesWithComponentsResponse = unknown;
1875
+ export type PostApiCrmServiceTaxOfficesWithComponentsResponse = UniRefund_CRMService_TaxOffices_TaxOfficeProfileDto;
1845
1876
 
1846
1877
  export type DeleteApiCrmServiceTaxOfficesByIdWithComponentsData = {
1847
1878
  id: string;
@@ -2395,7 +2426,7 @@ export type $OpenApiTs = {
2395
2426
  /**
2396
2427
  * Success
2397
2428
  */
2398
- 200: unknown;
2429
+ 200: UniRefund_CRMService_Customss_CustomsProfileDto;
2399
2430
  /**
2400
2431
  * Bad Request
2401
2432
  */
@@ -2701,14 +2732,14 @@ export type $OpenApiTs = {
2701
2732
  };
2702
2733
  };
2703
2734
  };
2704
- '/api/crm-service/individuals': {
2705
- get: {
2706
- req: GetApiCrmServiceIndividualsData;
2735
+ '/api/crm-service/individuals/{id}': {
2736
+ delete: {
2737
+ req: DeleteApiCrmServiceIndividualsByIdData;
2707
2738
  res: {
2708
2739
  /**
2709
2740
  * Success
2710
2741
  */
2711
- 200: PagedResultDto_IndividualProfileDto;
2742
+ 200: unknown;
2712
2743
  /**
2713
2744
  * Bad Request
2714
2745
  */
@@ -2735,8 +2766,6 @@ export type $OpenApiTs = {
2735
2766
  501: Volo_Abp_Http_RemoteServiceErrorResponse;
2736
2767
  };
2737
2768
  };
2738
- };
2739
- '/api/crm-service/individuals/{id}': {
2740
2769
  get: {
2741
2770
  req: GetApiCrmServiceIndividualsByIdData;
2742
2771
  res: {
@@ -2771,14 +2800,14 @@ export type $OpenApiTs = {
2771
2800
  };
2772
2801
  };
2773
2802
  };
2774
- '/api/crm-service/individuals/user-devices-names': {
2803
+ '/api/crm-service/individuals': {
2775
2804
  get: {
2776
- req: GetApiCrmServiceIndividualsUserDevicesNamesData;
2805
+ req: GetApiCrmServiceIndividualsData;
2777
2806
  res: {
2778
2807
  /**
2779
2808
  * Success
2780
2809
  */
2781
- 200: PagedResultDto_UserDeviceNameDto;
2810
+ 200: PagedResultDto_IndividualProfileDto;
2782
2811
  /**
2783
2812
  * Bad Request
2784
2813
  */
@@ -2806,14 +2835,14 @@ export type $OpenApiTs = {
2806
2835
  };
2807
2836
  };
2808
2837
  };
2809
- '/api/crm-service/individuals/all-user-devices-names': {
2838
+ '/api/crm-service/individuals/user-devices-names': {
2810
2839
  get: {
2811
- req: GetApiCrmServiceIndividualsAllUserDevicesNamesData;
2840
+ req: GetApiCrmServiceIndividualsUserDevicesNamesData;
2812
2841
  res: {
2813
2842
  /**
2814
2843
  * Success
2815
2844
  */
2816
- 200: Array<UniRefund_CRMService_RefundPoints_UserDeviceNameDto>;
2845
+ 200: PagedResultDto_UserDeviceNameDto;
2817
2846
  /**
2818
2847
  * Bad Request
2819
2848
  */
@@ -2841,14 +2870,14 @@ export type $OpenApiTs = {
2841
2870
  };
2842
2871
  };
2843
2872
  };
2844
- '/api/crm-service/merchants': {
2873
+ '/api/crm-service/individuals/all-user-devices-names': {
2845
2874
  get: {
2846
- req: GetApiCrmServiceMerchantsData;
2875
+ req: GetApiCrmServiceIndividualsAllUserDevicesNamesData;
2847
2876
  res: {
2848
2877
  /**
2849
2878
  * Success
2850
2879
  */
2851
- 200: PagedResultDto_MerchantProfileDto;
2880
+ 200: Array<UniRefund_CRMService_RefundPoints_UserDeviceNameDto>;
2852
2881
  /**
2853
2882
  * Bad Request
2854
2883
  */
@@ -2876,14 +2905,14 @@ export type $OpenApiTs = {
2876
2905
  };
2877
2906
  };
2878
2907
  };
2879
- '/api/crm-service/merchants/{id}/basic-information': {
2908
+ '/api/crm-service/merchants': {
2880
2909
  get: {
2881
- req: GetApiCrmServiceMerchantsByIdBasicInformationData;
2910
+ req: GetApiCrmServiceMerchantsData;
2882
2911
  res: {
2883
2912
  /**
2884
2913
  * Success
2885
2914
  */
2886
- 200: UniRefund_CRMService_Merchants_MerchantBasicInformationDto;
2915
+ 200: PagedResultDto_MerchantProfileDto;
2887
2916
  /**
2888
2917
  * Bad Request
2889
2918
  */
@@ -2911,14 +2940,14 @@ export type $OpenApiTs = {
2911
2940
  };
2912
2941
  };
2913
2942
  };
2914
- '/api/crm-service/merchants/info': {
2943
+ '/api/crm-service/merchants/{id}/basic-information': {
2915
2944
  get: {
2916
- req: GetApiCrmServiceMerchantsInfoData;
2945
+ req: GetApiCrmServiceMerchantsByIdBasicInformationData;
2917
2946
  res: {
2918
2947
  /**
2919
2948
  * Success
2920
2949
  */
2921
- 200: UniRefund_CRMService_Merchants_MerchantInfoDto;
2950
+ 200: UniRefund_CRMService_Merchants_MerchantBasicInformationDto;
2922
2951
  /**
2923
2952
  * Bad Request
2924
2953
  */
@@ -2946,14 +2975,14 @@ export type $OpenApiTs = {
2946
2975
  };
2947
2976
  };
2948
2977
  };
2949
- '/api/crm-service/merchants/{id}': {
2978
+ '/api/crm-service/merchants/info': {
2950
2979
  get: {
2951
- req: GetApiCrmServiceMerchantsByIdData;
2980
+ req: GetApiCrmServiceMerchantsInfoData;
2952
2981
  res: {
2953
2982
  /**
2954
2983
  * Success
2955
2984
  */
2956
- 200: UniRefund_CRMService_Merchants_MerchantProfileDto;
2985
+ 200: UniRefund_CRMService_Merchants_MerchantInfoDto;
2957
2986
  /**
2958
2987
  * Bad Request
2959
2988
  */
@@ -2980,13 +3009,15 @@ export type $OpenApiTs = {
2980
3009
  501: Volo_Abp_Http_RemoteServiceErrorResponse;
2981
3010
  };
2982
3011
  };
2983
- put: {
2984
- req: PutApiCrmServiceMerchantsByIdData;
3012
+ };
3013
+ '/api/crm-service/merchants/{id}': {
3014
+ get: {
3015
+ req: GetApiCrmServiceMerchantsByIdData;
2985
3016
  res: {
2986
3017
  /**
2987
3018
  * Success
2988
3019
  */
2989
- 200: UniRefund_CRMService_Merchants_MerchantBaseDto;
3020
+ 200: UniRefund_CRMService_Merchants_MerchantProfileDto;
2990
3021
  /**
2991
3022
  * Bad Request
2992
3023
  */
@@ -3013,15 +3044,13 @@ export type $OpenApiTs = {
3013
3044
  501: Volo_Abp_Http_RemoteServiceErrorResponse;
3014
3045
  };
3015
3046
  };
3016
- };
3017
- '/api/crm-service/merchants/{id}/ensure-exist': {
3018
- get: {
3019
- req: GetApiCrmServiceMerchantsByIdEnsureExistData;
3047
+ put: {
3048
+ req: PutApiCrmServiceMerchantsByIdData;
3020
3049
  res: {
3021
3050
  /**
3022
3051
  * Success
3023
3052
  */
3024
- 200: unknown;
3053
+ 200: UniRefund_CRMService_Merchants_MerchantBaseDto;
3025
3054
  /**
3026
3055
  * Bad Request
3027
3056
  */
@@ -3049,14 +3078,14 @@ export type $OpenApiTs = {
3049
3078
  };
3050
3079
  };
3051
3080
  };
3052
- '/api/crm-service/merchants/{id}/exist': {
3081
+ '/api/crm-service/merchants/{id}/ensure-exist': {
3053
3082
  get: {
3054
- req: GetApiCrmServiceMerchantsByIdExistData;
3083
+ req: GetApiCrmServiceMerchantsByIdEnsureExistData;
3055
3084
  res: {
3056
3085
  /**
3057
3086
  * Success
3058
3087
  */
3059
- 200: boolean;
3088
+ 200: unknown;
3060
3089
  /**
3061
3090
  * Bad Request
3062
3091
  */
@@ -3533,6 +3562,41 @@ export type $OpenApiTs = {
3533
3562
  };
3534
3563
  };
3535
3564
  };
3565
+ '/api/crm-service/merchants/{id}/telephones': {
3566
+ get: {
3567
+ req: GetApiCrmServiceMerchantsByIdTelephonesData;
3568
+ res: {
3569
+ /**
3570
+ * Success
3571
+ */
3572
+ 200: Array<UniRefund_CRMService_TelephoneTypes_TelephoneTypeDto>;
3573
+ /**
3574
+ * Bad Request
3575
+ */
3576
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
3577
+ /**
3578
+ * Unauthorized
3579
+ */
3580
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
3581
+ /**
3582
+ * Forbidden
3583
+ */
3584
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
3585
+ /**
3586
+ * Not Found
3587
+ */
3588
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
3589
+ /**
3590
+ * Server Error
3591
+ */
3592
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
3593
+ /**
3594
+ * Server Error
3595
+ */
3596
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
3597
+ };
3598
+ };
3599
+ };
3536
3600
  '/api/crm-service/merchants/{id}/telephones/{telephoneId}': {
3537
3601
  put: {
3538
3602
  req: PutApiCrmServiceMerchantsByIdTelephonesByTelephoneIdData;
@@ -3575,7 +3639,7 @@ export type $OpenApiTs = {
3575
3639
  /**
3576
3640
  * Success
3577
3641
  */
3578
- 200: Array<UniRefund_CRMService_AddressTypes_AddressTypeDto>;
3642
+ 200: Array<UniRefund_LocationService_AddressCommonDatas_AddressCommonDataDto>;
3579
3643
  /**
3580
3644
  * Bad Request
3581
3645
  */
@@ -3610,7 +3674,42 @@ export type $OpenApiTs = {
3610
3674
  /**
3611
3675
  * Success
3612
3676
  */
3613
- 200: UniRefund_CRMService_AddressTypes_AddressTypeDto;
3677
+ 200: UniRefund_LocationService_AddressCommonDatas_AddressCommonDataDto;
3678
+ /**
3679
+ * Bad Request
3680
+ */
3681
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
3682
+ /**
3683
+ * Unauthorized
3684
+ */
3685
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
3686
+ /**
3687
+ * Forbidden
3688
+ */
3689
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
3690
+ /**
3691
+ * Not Found
3692
+ */
3693
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
3694
+ /**
3695
+ * Server Error
3696
+ */
3697
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
3698
+ /**
3699
+ * Server Error
3700
+ */
3701
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
3702
+ };
3703
+ };
3704
+ };
3705
+ '/api/crm-service/merchants/{id}/emails': {
3706
+ get: {
3707
+ req: GetApiCrmServiceMerchantsByIdEmailsData;
3708
+ res: {
3709
+ /**
3710
+ * Success
3711
+ */
3712
+ 200: Array<UniRefund_CRMService_EmailCommonDatas_EmailCommonDataDto>;
3614
3713
  /**
3615
3714
  * Bad Request
3616
3715
  */
@@ -3883,6 +3982,41 @@ export type $OpenApiTs = {
3883
3982
  };
3884
3983
  };
3885
3984
  };
3985
+ '/api/crm-service/refund-points/{id}/basic-information': {
3986
+ get: {
3987
+ req: GetApiCrmServiceRefundPointsByIdBasicInformationData;
3988
+ res: {
3989
+ /**
3990
+ * Success
3991
+ */
3992
+ 200: UniRefund_CRMService_RefundPoints_RefundPointBasicInformationDto;
3993
+ /**
3994
+ * Bad Request
3995
+ */
3996
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
3997
+ /**
3998
+ * Unauthorized
3999
+ */
4000
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
4001
+ /**
4002
+ * Forbidden
4003
+ */
4004
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
4005
+ /**
4006
+ * Not Found
4007
+ */
4008
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
4009
+ /**
4010
+ * Server Error
4011
+ */
4012
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
4013
+ /**
4014
+ * Server Error
4015
+ */
4016
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
4017
+ };
4018
+ };
4019
+ };
3886
4020
  '/api/crm-service/refund-points/{id}/sub-refund-points': {
3887
4021
  get: {
3888
4022
  req: GetApiCrmServiceRefundPointsByIdSubRefundPointsData;
@@ -3925,7 +4059,7 @@ export type $OpenApiTs = {
3925
4059
  /**
3926
4060
  * Success
3927
4061
  */
3928
- 200: unknown;
4062
+ 200: UniRefund_CRMService_Merchants_RefundPointProfileDto;
3929
4063
  /**
3930
4064
  * Bad Request
3931
4065
  */
@@ -4203,7 +4337,7 @@ export type $OpenApiTs = {
4203
4337
  /**
4204
4338
  * Success
4205
4339
  */
4206
- 200: boolean;
4340
+ 200: unknown;
4207
4341
  /**
4208
4342
  * Bad Request
4209
4343
  */
@@ -4378,7 +4512,7 @@ export type $OpenApiTs = {
4378
4512
  /**
4379
4513
  * Success
4380
4514
  */
4381
- 200: unknown;
4515
+ 200: UniRefund_CRMService_TaxFrees_TaxFreeProfileDto;
4382
4516
  /**
4383
4517
  * Bad Request
4384
4518
  */
@@ -4796,7 +4930,7 @@ export type $OpenApiTs = {
4796
4930
  /**
4797
4931
  * Success
4798
4932
  */
4799
- 200: unknown;
4933
+ 200: UniRefund_CRMService_TaxOffices_TaxOfficeProfileDto;
4800
4934
  /**
4801
4935
  * Bad Request
4802
4936
  */