@ayasofyazilim/saas 0.0.55 → 0.0.56

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.
@@ -1,7 +1,67 @@
1
1
  // This file is auto-generated by @hey-api/openapi-ts
2
2
 
3
+ export type PagedResultDto_AffiliationCodeDto = {
4
+ items?: Array<UniRefund_CRMService_AffiliationCodes_AffiliationCodeDto> | null;
5
+ totalCount?: number;
6
+ };
7
+
8
+ export type PagedResultDto_AffiliationTypeDto = {
9
+ items?: Array<UniRefund_CRMService_AffiliationTypes_AffiliationTypeDto> | null;
10
+ totalCount?: number;
11
+ };
12
+
13
+ export type PagedResultDto_CustomsProfileDto = {
14
+ items?: Array<UniRefund_CRMService_Customss_CustomsProfileDto> | null;
15
+ totalCount?: number;
16
+ };
17
+
18
+ export type PagedResultDto_IndividualProfileDto = {
19
+ items?: Array<UniRefund_CRMService_Individuals_IndividualProfileDto> | null;
20
+ totalCount?: number;
21
+ };
22
+
23
+ export type PagedResultDto_MerchantProfileDto = {
24
+ items?: Array<UniRefund_CRMService_Merchants_MerchantProfileDto> | null;
25
+ totalCount?: number;
26
+ };
27
+
28
+ export type PagedResultDto_OrganizationProfileDto = {
29
+ items?: Array<UniRefund_CRMService_Organizations_OrganizationProfileDto> | null;
30
+ totalCount?: number;
31
+ };
32
+
33
+ export type PagedResultDto_RefundPointNameDto = {
34
+ items?: Array<UniRefund_CRMService_RefundPoints_RefundPointNameDto> | null;
35
+ totalCount?: number;
36
+ };
37
+
38
+ export type PagedResultDto_RefundPointProfileDto = {
39
+ items?: Array<UniRefund_CRMService_Merchants_RefundPointProfileDto> | null;
40
+ totalCount?: number;
41
+ };
42
+
43
+ export type PagedResultDto_TaxFreeProfileDto = {
44
+ items?: Array<UniRefund_CRMService_TaxFrees_TaxFreeProfileDto> | null;
45
+ totalCount?: number;
46
+ };
47
+
48
+ export type PagedResultDto_TaxOfficeProfileDto = {
49
+ items?: Array<UniRefund_CRMService_TaxOffices_TaxOfficeProfileDto> | null;
50
+ totalCount?: number;
51
+ };
52
+
53
+ export type PagedResultDto_UserDeviceNameDto = {
54
+ items?: Array<UniRefund_CRMService_RefundPoints_UserDeviceNameDto> | null;
55
+ totalCount?: number;
56
+ };
57
+
3
58
  export type UniRefund_CRMService_AddressTypes_AddressTypeDto = {
4
- id?: string;
59
+ contactInformationTypeId?: string;
60
+ locationServiceAddressId?: string;
61
+ };
62
+
63
+ export type UniRefund_CRMService_AffiliationCodes_AffiliationCodeDto = {
64
+ id?: number;
5
65
  creationTime?: string;
6
66
  creatorId?: string | null;
7
67
  lastModificationTime?: string | null;
@@ -9,58 +69,32 @@ export type UniRefund_CRMService_AddressTypes_AddressTypeDto = {
9
69
  isDeleted?: boolean;
10
70
  deleterId?: string | null;
11
71
  deletionTime?: string | null;
12
- addressLine?: string | null;
13
- city?: string | null;
14
- terriority?: string | null;
15
- postalCode?: string | null;
16
- country?: string | null;
17
- fullAddress?: string | null;
18
- typeCode?: UniRefund_CRMService_Enums_AddressTypeCode;
19
- primaryFlag?: boolean;
20
- contactInformationTypeId?: string;
72
+ name?: string | null;
73
+ description?: string | null;
74
+ roleId?: string;
75
+ status?: UniRefund_CRMService_AffiliationCodes_AffiliationCodeStatus;
76
+ language?: string | null;
21
77
  };
22
78
 
23
- export type UniRefund_CRMService_AddressTypes_CreateAddressTypeDto = {
24
- readonly extraProperties?: {
25
- [key: string]: unknown;
26
- } | null;
27
- addressLine: string;
28
- city: string;
29
- terriority: string;
30
- postalCode: string;
31
- country: string;
32
- fullAddress: string;
33
- primaryFlag: boolean;
34
- typeCode: UniRefund_CRMService_Enums_AddressTypeCode;
35
- contactInformationTypeId?: string;
79
+ export type UniRefund_CRMService_AffiliationCodes_AffiliationCodeStatus = 'Waiting' | 'Approved' | 'Rejected';
80
+
81
+ export type UniRefund_CRMService_AffiliationCodes_CreateAffiliationCodeDto = {
82
+ name?: string | null;
83
+ description?: string | null;
84
+ roleId?: string;
85
+ status?: UniRefund_CRMService_AffiliationCodes_AffiliationCodeStatus;
36
86
  };
37
87
 
38
- export type UniRefund_CRMService_AddressTypes_CreateAddressTypeWithComponentsDto = {
39
- readonly extraProperties?: {
40
- [key: string]: unknown;
41
- } | null;
42
- addressLine: string;
43
- city: string;
44
- terriority: string;
45
- postalCode: string;
46
- country: string;
47
- fullAddress: string;
48
- primaryFlag: boolean;
49
- typeCode: UniRefund_CRMService_Enums_AddressTypeCode;
88
+ export type UniRefund_CRMService_AffiliationCodes_CreateUpdateAffiliationCodeTranslationDto = {
89
+ language: string;
90
+ name: string;
50
91
  };
51
92
 
52
- export type UniRefund_CRMService_AddressTypes_UpdateAddressTypeDto = {
53
- readonly extraProperties?: {
54
- [key: string]: unknown;
55
- } | null;
56
- addressLine: string;
57
- city: string;
58
- terriority: string;
59
- postalCode: string;
60
- country: string;
61
- fullAddress: string;
62
- primaryFlag?: boolean;
63
- typeCode: UniRefund_CRMService_Enums_AddressTypeCode;
93
+ export type UniRefund_CRMService_AffiliationCodes_UpdateAffiliationCodeDto = {
94
+ name?: string | null;
95
+ description?: string | null;
96
+ roleId?: string;
97
+ status?: UniRefund_CRMService_AffiliationCodes_AffiliationCodeStatus;
64
98
  };
65
99
 
66
100
  export type UniRefund_CRMService_AffiliationTypes_AffiliationTypeDto = {
@@ -72,19 +106,30 @@ export type UniRefund_CRMService_AffiliationTypes_AffiliationTypeDto = {
72
106
  isDeleted?: boolean;
73
107
  deleterId?: string | null;
74
108
  deletionTime?: string | null;
75
- readonly name?: string | null;
76
- readonly description?: string | null;
77
- affiliationTypeCode?: UniRefund_CRMService_Enums_AffiliationTypeCode;
78
- readonly partyId?: string;
109
+ name?: string | null;
110
+ description?: string | null;
111
+ partyId?: string;
112
+ merchantId?: string | null;
79
113
  };
80
114
 
81
115
  export type UniRefund_CRMService_AffiliationTypes_CreateAffiliationTypeDto = {
116
+ readonly extraProperties?: {
117
+ [key: string]: unknown;
118
+ } | null;
119
+ name: string;
120
+ description: string;
121
+ affiliationCodeId: number;
122
+ partyId?: string | null;
123
+ };
124
+
125
+ export type UniRefund_CRMService_AffiliationTypes_UpdateAffiliationTypeDto = {
82
126
  readonly extraProperties?: {
83
127
  [key: string]: unknown;
84
128
  } | null;
85
129
  name: string;
86
130
  description: string;
87
131
  affiliationTypeCode: UniRefund_CRMService_Enums_AffiliationTypeCode;
132
+ affiliationCodeId?: number;
88
133
  partyId?: string | null;
89
134
  };
90
135
 
@@ -102,7 +147,7 @@ export type UniRefund_CRMService_ContactInformationTypes_ContactInformationTypeD
102
147
  startDate?: string;
103
148
  endDate?: string;
104
149
  telephones?: Array<UniRefund_CRMService_TelephoneTypes_TelephoneTypeDto> | null;
105
- addresses?: Array<UniRefund_CRMService_AddressTypes_AddressTypeDto> | null;
150
+ addresses?: Array<UniRefund_LocationService_AddressCommonDatas_AddressCommonDataDto> | null;
106
151
  emails?: Array<UniRefund_CRMService_EmailCommonDatas_EmailCommonDataDto> | null;
107
152
  };
108
153
 
@@ -111,7 +156,7 @@ export type UniRefund_CRMService_ContactInformationTypes_CreateContactInformatio
111
156
  [key: string]: unknown;
112
157
  } | null;
113
158
  telephones?: Array<UniRefund_CRMService_TelephoneTypes_CreateTelephoneTypeWithComponentsDto> | null;
114
- addresses?: Array<UniRefund_CRMService_AddressTypes_CreateAddressTypeWithComponentsDto> | null;
159
+ addresses?: Array<UniRefund_LocationService_AddressCommonDatas_AddressCommonDataCreateDto> | null;
115
160
  emails?: Array<UniRefund_CRMService_EmailCommonDatas_CreateEmailCommonDataWithComponentsDto> | null;
116
161
  };
117
162
 
@@ -137,7 +182,6 @@ export type UniRefund_CRMService_Customss_CreateCustomsOrganizationDto = {
137
182
  name: string;
138
183
  taxpayerId: string;
139
184
  branchId?: string | null;
140
- parentCompanyId?: string | null;
141
185
  contactInformations?: Array<UniRefund_CRMService_ContactInformationTypes_CreateContactInformationTypeDto> | null;
142
186
  };
143
187
 
@@ -167,16 +211,6 @@ export type UniRefund_CRMService_Customss_UpdateCustomsOrganizationDto = {
167
211
  branchId?: string | null;
168
212
  };
169
213
 
170
- export type UniRefund_CRMService_EmailCommonDatas_CreateEmailCommonDataDto = {
171
- readonly extraProperties?: {
172
- [key: string]: unknown;
173
- } | null;
174
- emailAddress: string;
175
- primaryFlag: boolean;
176
- typeCode: UniRefund_CRMService_Enums_EmailTypeCode;
177
- contactInformationTypeId: string;
178
- };
179
-
180
214
  export type UniRefund_CRMService_EmailCommonDatas_CreateEmailCommonDataWithComponentsDto = {
181
215
  readonly extraProperties?: {
182
216
  [key: string]: unknown;
@@ -227,8 +261,6 @@ export type UniRefund_CRMService_EntityInformationTypes_EntityInformationTypeDto
227
261
  organizations?: Array<UniRefund_CRMService_Organizations_OrganizationDto> | null;
228
262
  };
229
263
 
230
- export type UniRefund_CRMService_Enums_AddressTypeCode = 'HOME' | 'OFFICE';
231
-
232
264
  export type UniRefund_CRMService_Enums_AffiliationTypeCode = 'COFOUNDER' | 'PARTNER' | 'ABPUSER' | 'SUBCOMPANY' | 'ACCOUNTMANAGER';
233
265
 
234
266
  export type UniRefund_CRMService_Enums_EmailTypeCode = 'WORK' | 'PERSONAL';
@@ -263,6 +295,7 @@ export type UniRefund_CRMService_Individuals_IndividualDto = {
263
295
  contactInformations?: Array<UniRefund_CRMService_ContactInformationTypes_ContactInformationTypeDto> | null;
264
296
  personalSummaries?: Array<UniRefund_CRMService_PersonalSummaries_PersonalSummaryDto> | null;
265
297
  entityInformationTypeId?: string | null;
298
+ abpUserId?: string | null;
266
299
  };
267
300
 
268
301
  export type UniRefund_CRMService_Individuals_IndividualIdNameDto = {
@@ -274,10 +307,17 @@ export type UniRefund_CRMService_Individuals_IndividualProfileDto = {
274
307
  id?: string;
275
308
  name?: string | null;
276
309
  affiliationId?: string | null;
277
- affiliationTypeCode?: UniRefund_CRMService_Enums_AffiliationTypeCode;
310
+ affiliationCode?: UniRefund_CRMService_AffiliationCodes_AffiliationCodeDto;
278
311
  affiliationParentTypeCode?: UniRefund_CRMService_Enums_EntityPartyTypeCode;
279
312
  };
280
313
 
314
+ export type UniRefund_CRMService_Individuals_UpdateIndividualDto = {
315
+ readonly extraProperties?: {
316
+ [key: string]: unknown;
317
+ } | null;
318
+ abpUserId?: string | null;
319
+ };
320
+
281
321
  export type UniRefund_CRMService_Merchants_CreateMerchantDto = {
282
322
  readonly extraProperties?: {
283
323
  [key: string]: unknown;
@@ -296,6 +336,16 @@ export type UniRefund_CRMService_Merchants_CreateMerchantEntityInformationTypeDt
296
336
  organizations?: Array<UniRefund_CRMService_Merchants_CreateMerchantOrgnaizationDto> | null;
297
337
  };
298
338
 
339
+ export type UniRefund_CRMService_Merchants_CreateMerchantIndividualDto = {
340
+ readonly extraProperties?: {
341
+ [key: string]: unknown;
342
+ } | null;
343
+ name?: UniRefund_CRMService_NameCommonDatas_CreateNameCommonDataDto;
344
+ personalSummaries?: Array<UniRefund_CRMService_PersonalSummaries_CreatePersonalSummaryDto> | null;
345
+ contactInformations?: Array<UniRefund_CRMService_ContactInformationTypes_CreateContactInformationTypeDto> | null;
346
+ affiliationCodeId?: number;
347
+ };
348
+
299
349
  export type UniRefund_CRMService_Merchants_CreateMerchantOrgnaizationDto = {
300
350
  readonly extraProperties?: {
301
351
  [key: string]: unknown;
@@ -353,6 +403,7 @@ export type UniRefund_CRMService_Merchants_MerchantInfoDto = {
353
403
 
354
404
  export type UniRefund_CRMService_Merchants_MerchantProfileDto = {
355
405
  id?: string;
406
+ typeCode?: UniRefund_CRMService_Merchants_MerchantTypeCode;
356
407
  name?: string | null;
357
408
  parentId?: string | null;
358
409
  entityInformationTypeCode?: UniRefund_CRMService_Enums_EntityInformationTypeCode;
@@ -381,6 +432,13 @@ export type UniRefund_CRMService_Merchants_StoreProfilePagedResultDto = {
381
432
  totalCount?: number;
382
433
  };
383
434
 
435
+ export type UniRefund_CRMService_Merchants_SubIndividualDto = {
436
+ id?: string;
437
+ name?: string | null;
438
+ affiliationTypeCode?: UniRefund_CRMService_Enums_AffiliationTypeCode;
439
+ affiliationCode?: UniRefund_CRMService_AffiliationCodes_AffiliationCodeDto;
440
+ };
441
+
384
442
  export type UniRefund_CRMService_Merchants_UpdateMerchantDto = {
385
443
  typeCode?: UniRefund_CRMService_Merchants_MerchantTypeCode;
386
444
  taxOfficeId?: string;
@@ -389,7 +447,8 @@ export type UniRefund_CRMService_Merchants_UpdateMerchantDto = {
389
447
 
390
448
  export type UniRefund_CRMService_NameCommonDatas_CreateNameCommonDataDto = {
391
449
  salutation: string;
392
- name: string;
450
+ firstName: string;
451
+ lastName: string;
393
452
  suffix: string;
394
453
  mailingName: string;
395
454
  officialName: string;
@@ -405,7 +464,8 @@ export type UniRefund_CRMService_NameCommonDatas_NameCommonDataDto = {
405
464
  deleterId?: string | null;
406
465
  deletionTime?: string | null;
407
466
  salutation?: string | null;
408
- name?: string | null;
467
+ firstName?: string | null;
468
+ lastName?: string | null;
409
469
  suffix?: string | null;
410
470
  mailingName?: string | null;
411
471
  officialName?: string | null;
@@ -417,7 +477,8 @@ export type UniRefund_CRMService_NameCommonDatas_UpdateNameCommonDataDto = {
417
477
  [key: string]: unknown;
418
478
  } | null;
419
479
  salutation: string;
420
- name: string;
480
+ firstName: string;
481
+ lastName: string;
421
482
  suffix: string;
422
483
  mailingName: string;
423
484
  officialName: string;
@@ -459,8 +520,7 @@ export type UniRefund_CRMService_Organizations_OrganizationProfileDto = {
459
520
  id?: string;
460
521
  name?: string | null;
461
522
  affiliationId?: string | null;
462
- affiliatedName?: string | null;
463
- affiliationTypeCode?: UniRefund_CRMService_Enums_AffiliationTypeCode;
523
+ affiliationCode?: UniRefund_CRMService_AffiliationCodes_AffiliationCodeDto;
464
524
  affiliationParentTypeCode?: UniRefund_CRMService_Enums_EntityPartyTypeCode;
465
525
  };
466
526
 
@@ -538,7 +598,6 @@ export type UniRefund_CRMService_RefundPoints_CreateRefundPointOrganizationDto =
538
598
  name: string;
539
599
  taxpayerId: string;
540
600
  branchId?: string | null;
541
- parentCompanyId?: string | null;
542
601
  contactInformations: Array<UniRefund_CRMService_ContactInformationTypes_CreateContactInformationTypeDto>;
543
602
  };
544
603
 
@@ -555,6 +614,11 @@ export type UniRefund_CRMService_RefundPoints_RefundPointDto = {
555
614
  entityInformations?: Array<UniRefund_CRMService_EntityInformationTypes_EntityInformationTypeDto> | null;
556
615
  };
557
616
 
617
+ export type UniRefund_CRMService_RefundPoints_RefundPointNameDto = {
618
+ id: string;
619
+ name: string;
620
+ };
621
+
558
622
  export type UniRefund_CRMService_RefundPoints_RefundPointTypeCode = 'HEADQUARTER' | 'REFUNDPOINT';
559
623
 
560
624
  export type UniRefund_CRMService_RefundPoints_UpdateRefundPointOrganizationDto = {
@@ -564,6 +628,11 @@ export type UniRefund_CRMService_RefundPoints_UpdateRefundPointOrganizationDto =
564
628
  branchId?: string | null;
565
629
  };
566
630
 
631
+ export type UniRefund_CRMService_RefundPoints_UserDeviceNameDto = {
632
+ id: string;
633
+ name: string;
634
+ };
635
+
567
636
  export type UniRefund_CRMService_TaxFrees_CreateTaxFreeDto = {
568
637
  readonly extraProperties?: {
569
638
  [key: string]: unknown;
@@ -635,7 +704,6 @@ export type UniRefund_CRMService_TaxOffices_CreateTaxOfficeOrganizationDto = {
635
704
  legalStatusCode: string;
636
705
  customerNumber?: string | null;
637
706
  branchId?: string | null;
638
- parentCompanyId?: string | null;
639
707
  contactInformations?: Array<UniRefund_CRMService_ContactInformationTypes_CreateContactInformationTypeDto> | null;
640
708
  };
641
709
 
@@ -663,18 +731,6 @@ export type UniRefund_CRMService_TaxOffices_TaxOfficeProfileDto = {
663
731
  organizationId?: string;
664
732
  };
665
733
 
666
- export type UniRefund_CRMService_TelephoneTypes_CreateTelephoneTypeDto = {
667
- readonly extraProperties?: {
668
- [key: string]: unknown;
669
- } | null;
670
- areaCode: string;
671
- localNumber: string;
672
- ituCountryCode: string;
673
- primaryFlag: boolean;
674
- typeCode: UniRefund_CRMService_Enums_TelephoneTypeCode;
675
- contactInformationTypeId?: string;
676
- };
677
-
678
734
  export type UniRefund_CRMService_TelephoneTypes_CreateTelephoneTypeWithComponentsDto = {
679
735
  readonly extraProperties?: {
680
736
  [key: string]: unknown;
@@ -714,6 +770,59 @@ export type UniRefund_CRMService_TelephoneTypes_UpdateTelephoneTypeDto = {
714
770
  typeCode: UniRefund_CRMService_Enums_TelephoneTypeCode;
715
771
  };
716
772
 
773
+ export type UniRefund_LocationService_AddressCommonDatas_AddressCommonDataCreateDto = {
774
+ readonly extraProperties?: {
775
+ [key: string]: unknown;
776
+ } | null;
777
+ type: UniRefund_LocationService_Enums_AddressType;
778
+ addressLine: string;
779
+ postalCode: string;
780
+ primaryFlag?: boolean;
781
+ countryId: string;
782
+ regionId?: string | null;
783
+ cityId?: string | null;
784
+ districtId?: string | null;
785
+ neighborhoodId?: string | null;
786
+ };
787
+
788
+ export type UniRefund_LocationService_AddressCommonDatas_AddressCommonDataDto = {
789
+ id: string;
790
+ creationTime?: string;
791
+ creatorId?: string | null;
792
+ lastModificationTime?: string | null;
793
+ lastModifierId?: string | null;
794
+ isDeleted?: boolean;
795
+ deleterId?: string | null;
796
+ deletionTime?: string | null;
797
+ type: UniRefund_LocationService_Enums_AddressType;
798
+ addressLine: string;
799
+ postalCode: string;
800
+ fullAddress: string;
801
+ primaryFlag?: boolean;
802
+ countryId: string;
803
+ regionId?: string | null;
804
+ cityId: string;
805
+ districtId: string;
806
+ neighborhoodId?: string | null;
807
+ };
808
+
809
+ export type UniRefund_LocationService_AddressCommonDatas_AddressCommonDataUpdateDto = {
810
+ readonly extraProperties?: {
811
+ [key: string]: unknown;
812
+ } | null;
813
+ type: UniRefund_LocationService_Enums_AddressType;
814
+ addressLine: string;
815
+ postalCode: string;
816
+ primaryFlag?: boolean;
817
+ countryId: string;
818
+ regionId?: string | null;
819
+ cityId?: string | null;
820
+ districtId?: string | null;
821
+ neighborhoodId?: string | null;
822
+ };
823
+
824
+ export type UniRefund_LocationService_Enums_AddressType = 'Home' | 'Office' | 'Invoice' | 'Contact';
825
+
717
826
  export type UniRefund_SettingService_ProductGroupMerchants_CreateProductGroupMerchantDto = {
718
827
  merchantId?: string;
719
828
  productGroupId?: string;
@@ -741,61 +850,6 @@ export type UniRefund_SettingService_ProductGroups_ProductGroupDto = {
741
850
 
742
851
  export type UniRefund_SettingService_ProductGroups_UnitTypeCode = 'QNT' | 'BAG' | 'BOX';
743
852
 
744
- export type Volo_Abp_Application_Dtos_PagedResultDto_1 = {
745
- items?: Array<UniRefund_CRMService_AddressTypes_AddressTypeDto> | null;
746
- totalCount?: number;
747
- };
748
-
749
- export type Volo_Abp_Application_Dtos_PagedResultDto_12 = {
750
- items?: Array<UniRefund_CRMService_AffiliationTypes_AffiliationTypeDto> | null;
751
- totalCount?: number;
752
- };
753
-
754
- export type Volo_Abp_Application_Dtos_PagedResultDto_13 = {
755
- items?: Array<UniRefund_CRMService_Customss_CustomsProfileDto> | null;
756
- totalCount?: number;
757
- };
758
-
759
- export type Volo_Abp_Application_Dtos_PagedResultDto_14 = {
760
- items?: Array<UniRefund_CRMService_EmailCommonDatas_EmailCommonDataDto> | null;
761
- totalCount?: number;
762
- };
763
-
764
- export type Volo_Abp_Application_Dtos_PagedResultDto_15 = {
765
- items?: Array<UniRefund_CRMService_Individuals_IndividualProfileDto> | null;
766
- totalCount?: number;
767
- };
768
-
769
- export type Volo_Abp_Application_Dtos_PagedResultDto_16 = {
770
- items?: Array<UniRefund_CRMService_Merchants_MerchantProfileDto> | null;
771
- totalCount?: number;
772
- };
773
-
774
- export type Volo_Abp_Application_Dtos_PagedResultDto_17 = {
775
- items?: Array<UniRefund_CRMService_Merchants_RefundPointProfileDto> | null;
776
- totalCount?: number;
777
- };
778
-
779
- export type Volo_Abp_Application_Dtos_PagedResultDto_18 = {
780
- items?: Array<UniRefund_CRMService_Organizations_OrganizationProfileDto> | null;
781
- totalCount?: number;
782
- };
783
-
784
- export type Volo_Abp_Application_Dtos_PagedResultDto_19 = {
785
- items?: Array<UniRefund_CRMService_TaxFrees_TaxFreeProfileDto> | null;
786
- totalCount?: number;
787
- };
788
-
789
- export type Volo_Abp_Application_Dtos_PagedResultDto_110 = {
790
- items?: Array<UniRefund_CRMService_TaxOffices_TaxOfficeProfileDto> | null;
791
- totalCount?: number;
792
- };
793
-
794
- export type Volo_Abp_Application_Dtos_PagedResultDto_111 = {
795
- items?: Array<UniRefund_CRMService_TelephoneTypes_TelephoneTypeDto> | null;
796
- totalCount?: number;
797
- };
798
-
799
853
  export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationAuthConfigurationDto = {
800
854
  grantedPolicies?: {
801
855
  [key: string]: (boolean);
@@ -1198,38 +1252,58 @@ export type GetApiAbpApplicationLocalizationData = {
1198
1252
 
1199
1253
  export type GetApiAbpApplicationLocalizationResponse = Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationDto;
1200
1254
 
1201
- export type GetApiCrmServiceAddressesData = {
1255
+ export type GetApiCrmServiceAffiliationCodesData = {
1202
1256
  maxResultCount?: number;
1203
1257
  skipCount?: number;
1204
1258
  sorting?: string;
1205
1259
  };
1206
1260
 
1207
- export type GetApiCrmServiceAddressesResponse = Volo_Abp_Application_Dtos_PagedResultDto_1;
1261
+ export type GetApiCrmServiceAffiliationCodesResponse = PagedResultDto_AffiliationCodeDto;
1208
1262
 
1209
- export type PostApiCrmServiceAddressesData = {
1210
- requestBody?: UniRefund_CRMService_AddressTypes_CreateAddressTypeDto;
1263
+ export type PostApiCrmServiceAffiliationCodesData = {
1264
+ requestBody?: UniRefund_CRMService_AffiliationCodes_CreateAffiliationCodeDto;
1211
1265
  };
1212
1266
 
1213
- export type PostApiCrmServiceAddressesResponse = UniRefund_CRMService_AddressTypes_AddressTypeDto;
1267
+ export type PostApiCrmServiceAffiliationCodesResponse = UniRefund_CRMService_AffiliationCodes_AffiliationCodeDto;
1214
1268
 
1215
- export type GetApiCrmServiceAddressesByIdData = {
1216
- id: string;
1269
+ export type GetApiCrmServiceAffiliationCodesByIdData = {
1270
+ id: number;
1217
1271
  };
1218
1272
 
1219
- export type GetApiCrmServiceAddressesByIdResponse = UniRefund_CRMService_AddressTypes_AddressTypeDto;
1273
+ export type GetApiCrmServiceAffiliationCodesByIdResponse = UniRefund_CRMService_AffiliationCodes_AffiliationCodeDto;
1220
1274
 
1221
- export type PutApiCrmServiceAddressesByIdData = {
1222
- id: string;
1223
- requestBody?: UniRefund_CRMService_AddressTypes_UpdateAddressTypeDto;
1275
+ export type PutApiCrmServiceAffiliationCodesByIdData = {
1276
+ id: number;
1277
+ requestBody?: UniRefund_CRMService_AffiliationCodes_UpdateAffiliationCodeDto;
1224
1278
  };
1225
1279
 
1226
- export type PutApiCrmServiceAddressesByIdResponse = UniRefund_CRMService_AddressTypes_AddressTypeDto;
1280
+ export type PutApiCrmServiceAffiliationCodesByIdResponse = UniRefund_CRMService_AffiliationCodes_AffiliationCodeDto;
1227
1281
 
1228
- export type DeleteApiCrmServiceAddressesByIdData = {
1229
- id: string;
1282
+ export type DeleteApiCrmServiceAffiliationCodesByIdData = {
1283
+ id: number;
1284
+ };
1285
+
1286
+ export type DeleteApiCrmServiceAffiliationCodesByIdResponse = unknown;
1287
+
1288
+ export type PostApiCrmServiceAffiliationCodesByIdTranslationData = {
1289
+ id: number;
1290
+ requestBody?: UniRefund_CRMService_AffiliationCodes_CreateUpdateAffiliationCodeTranslationDto;
1291
+ };
1292
+
1293
+ export type PostApiCrmServiceAffiliationCodesByIdTranslationResponse = unknown;
1294
+
1295
+ export type PutApiCrmServiceAffiliationCodesByIdTranslationData = {
1296
+ id: number;
1297
+ requestBody?: UniRefund_CRMService_AffiliationCodes_CreateUpdateAffiliationCodeTranslationDto;
1298
+ };
1299
+
1300
+ export type PutApiCrmServiceAffiliationCodesByIdTranslationResponse = unknown;
1301
+
1302
+ export type GetApiCrmServiceAffiliationCodesByIdExistByIdAsyncData = {
1303
+ id: number;
1230
1304
  };
1231
1305
 
1232
- export type DeleteApiCrmServiceAddressesByIdResponse = unknown;
1306
+ export type GetApiCrmServiceAffiliationCodesByIdExistByIdAsyncResponse = unknown;
1233
1307
 
1234
1308
  export type GetApiCrmServiceCustomsData = {
1235
1309
  maxResultCount?: number;
@@ -1237,7 +1311,7 @@ export type GetApiCrmServiceCustomsData = {
1237
1311
  sorting?: string;
1238
1312
  };
1239
1313
 
1240
- export type GetApiCrmServiceCustomsResponse = Volo_Abp_Application_Dtos_PagedResultDto_1;
1314
+ export type GetApiCrmServiceCustomsResponse = PagedResultDto_CustomsProfileDto;
1241
1315
 
1242
1316
  export type GetApiCrmServiceCustomsByIdDetailData = {
1243
1317
  id: string;
@@ -1249,7 +1323,7 @@ export type GetApiCrmServiceCustomsByIdSubCustomsData = {
1249
1323
  id: string;
1250
1324
  };
1251
1325
 
1252
- export type GetApiCrmServiceCustomsByIdSubCustomsResponse = Volo_Abp_Application_Dtos_PagedResultDto_1;
1326
+ export type GetApiCrmServiceCustomsByIdSubCustomsResponse = PagedResultDto_CustomsProfileDto;
1253
1327
 
1254
1328
  export type PostApiCrmServiceCustomsWithComponentsData = {
1255
1329
  requestBody?: UniRefund_CRMService_Customss_CreateCustomsDto;
@@ -1271,6 +1345,7 @@ export type PostApiCrmServiceCustomsByIdAffiliationsData = {
1271
1345
  export type PostApiCrmServiceCustomsByIdAffiliationsResponse = unknown;
1272
1346
 
1273
1347
  export type GetApiCrmServiceCustomsByIdAffiliationsData = {
1348
+ affiliationCodeId?: number;
1274
1349
  affiliationTypeCode?: UniRefund_CRMService_Enums_AffiliationTypeCode;
1275
1350
  id: string;
1276
1351
  maxResultCount?: number;
@@ -1278,7 +1353,7 @@ export type GetApiCrmServiceCustomsByIdAffiliationsData = {
1278
1353
  sorting?: string;
1279
1354
  };
1280
1355
 
1281
- export type GetApiCrmServiceCustomsByIdAffiliationsResponse = Volo_Abp_Application_Dtos_PagedResultDto_1;
1356
+ export type GetApiCrmServiceCustomsByIdAffiliationsResponse = PagedResultDto_AffiliationTypeDto;
1282
1357
 
1283
1358
  export type PutApiCrmServiceCustomsByIdOrganizationsByOrganizationIdData = {
1284
1359
  id: string;
@@ -1299,7 +1374,7 @@ export type PutApiCrmServiceCustomsByIdTelephonesByTelephoneIdResponse = UniRefu
1299
1374
  export type PutApiCrmServiceCustomsByIdAddressesByAddressIdData = {
1300
1375
  addressId: string;
1301
1376
  id: string;
1302
- requestBody?: UniRefund_CRMService_AddressTypes_UpdateAddressTypeDto;
1377
+ requestBody?: UniRefund_LocationService_AddressCommonDatas_AddressCommonDataUpdateDto;
1303
1378
  };
1304
1379
 
1305
1380
  export type PutApiCrmServiceCustomsByIdAddressesByAddressIdResponse = UniRefund_CRMService_AddressTypes_AddressTypeDto;
@@ -1313,44 +1388,11 @@ export type PutApiCrmServiceCustomsByIdEmailsByEmailIdData = {
1313
1388
 
1314
1389
  export type PutApiCrmServiceCustomsByIdEmailsByEmailIdResponse = UniRefund_CRMService_EmailCommonDatas_EmailCommonDataDto;
1315
1390
 
1316
- export type GetApiCrmServiceEmailsData = {
1317
- maxResultCount?: number;
1318
- skipCount?: number;
1319
- sorting?: string;
1320
- };
1321
-
1322
- export type GetApiCrmServiceEmailsResponse = Volo_Abp_Application_Dtos_PagedResultDto_1;
1323
-
1324
- export type PostApiCrmServiceEmailsData = {
1325
- requestBody?: UniRefund_CRMService_EmailCommonDatas_CreateEmailCommonDataDto;
1326
- };
1327
-
1328
- export type PostApiCrmServiceEmailsResponse = UniRefund_CRMService_EmailCommonDatas_EmailCommonDataDto;
1329
-
1330
- export type GetApiCrmServiceEmailsByIdData = {
1331
- id: string;
1332
- };
1333
-
1334
- export type GetApiCrmServiceEmailsByIdResponse = UniRefund_CRMService_EmailCommonDatas_EmailCommonDataDto;
1335
-
1336
- export type PutApiCrmServiceEmailsByIdData = {
1337
- id: string;
1338
- requestBody?: UniRefund_CRMService_EmailCommonDatas_UpdateEmailCommonDataDto;
1339
- };
1340
-
1341
- export type PutApiCrmServiceEmailsByIdResponse = UniRefund_CRMService_EmailCommonDatas_EmailCommonDataDto;
1342
-
1343
- export type DeleteApiCrmServiceEmailsByIdData = {
1344
- id: string;
1345
- };
1346
-
1347
- export type DeleteApiCrmServiceEmailsByIdResponse = unknown;
1348
-
1349
1391
  export type PostApiCrmServiceIndividualsWithComponentsData = {
1350
1392
  requestBody?: UniRefund_CRMService_Individuals_CreateIndividualDto;
1351
1393
  };
1352
1394
 
1353
- export type PostApiCrmServiceIndividualsWithComponentsResponse = unknown;
1395
+ export type PostApiCrmServiceIndividualsWithComponentsResponse = UniRefund_CRMService_Individuals_IndividualDto;
1354
1396
 
1355
1397
  export type GetApiCrmServiceIndividualsData = {
1356
1398
  entityPartyTypeCode?: UniRefund_CRMService_Enums_EntityPartyTypeCode;
@@ -1360,7 +1402,7 @@ export type GetApiCrmServiceIndividualsData = {
1360
1402
  sorting?: string;
1361
1403
  };
1362
1404
 
1363
- export type GetApiCrmServiceIndividualsResponse = Volo_Abp_Application_Dtos_PagedResultDto_1;
1405
+ export type GetApiCrmServiceIndividualsResponse = PagedResultDto_IndividualProfileDto;
1364
1406
 
1365
1407
  export type GetApiCrmServiceIndividualsByIdData = {
1366
1408
  id: string;
@@ -1368,23 +1410,37 @@ export type GetApiCrmServiceIndividualsByIdData = {
1368
1410
 
1369
1411
  export type GetApiCrmServiceIndividualsByIdResponse = UniRefund_CRMService_Individuals_IndividualProfileDto;
1370
1412
 
1371
- export type GetApiCrmServiceMerchantsData = {
1413
+ export type GetApiCrmServiceIndividualsUserDevicesNamesData = {
1372
1414
  ids?: Array<(string)>;
1373
1415
  maxResultCount?: number;
1374
1416
  skipCount?: number;
1375
- sorting?: string;
1376
- typeCodes?: Array<UniRefund_CRMService_Merchants_MerchantTypeCode>;
1377
1417
  };
1378
1418
 
1379
- export type GetApiCrmServiceMerchantsResponse = Volo_Abp_Application_Dtos_PagedResultDto_1;
1419
+ export type GetApiCrmServiceIndividualsUserDevicesNamesResponse = PagedResultDto_UserDeviceNameDto;
1380
1420
 
1381
- export type GetApiCrmServiceMerchantsByIdBasicInformationData = {
1382
- id: string;
1421
+ export type GetApiCrmServiceIndividualsAllUserDevicesNamesData = {
1422
+ ids?: Array<(string)>;
1383
1423
  };
1384
1424
 
1385
- export type GetApiCrmServiceMerchantsByIdBasicInformationResponse = UniRefund_CRMService_Merchants_MerchantBasicInformationDto;
1425
+ export type GetApiCrmServiceIndividualsAllUserDevicesNamesResponse = Array<UniRefund_CRMService_RefundPoints_UserDeviceNameDto>;
1386
1426
 
1387
- export type GetApiCrmServiceMerchantsInfoData = {
1427
+ export type GetApiCrmServiceMerchantsData = {
1428
+ ids?: Array<(string)>;
1429
+ maxResultCount?: number;
1430
+ skipCount?: number;
1431
+ sorting?: string;
1432
+ typeCodes?: Array<UniRefund_CRMService_Merchants_MerchantTypeCode>;
1433
+ };
1434
+
1435
+ export type GetApiCrmServiceMerchantsResponse = PagedResultDto_MerchantProfileDto;
1436
+
1437
+ export type GetApiCrmServiceMerchantsByIdBasicInformationData = {
1438
+ id: string;
1439
+ };
1440
+
1441
+ export type GetApiCrmServiceMerchantsByIdBasicInformationResponse = UniRefund_CRMService_Merchants_MerchantBasicInformationDto;
1442
+
1443
+ export type GetApiCrmServiceMerchantsInfoData = {
1388
1444
  branchId?: string;
1389
1445
  countryCode?: string;
1390
1446
  vatNumber?: string;
@@ -1405,6 +1461,13 @@ export type PutApiCrmServiceMerchantsByIdData = {
1405
1461
 
1406
1462
  export type PutApiCrmServiceMerchantsByIdResponse = UniRefund_CRMService_Merchants_MerchantBaseDto;
1407
1463
 
1464
+ export type GetApiCrmServiceMerchantsByIdEnsureExistData = {
1465
+ id: string;
1466
+ subId: string;
1467
+ };
1468
+
1469
+ export type GetApiCrmServiceMerchantsByIdEnsureExistResponse = unknown;
1470
+
1408
1471
  export type GetApiCrmServiceMerchantsByIdExistData = {
1409
1472
  id: string;
1410
1473
  };
@@ -1426,6 +1489,19 @@ export type GetApiCrmServiceMerchantsByIdSubMerchantsData = {
1426
1489
 
1427
1490
  export type GetApiCrmServiceMerchantsByIdSubMerchantsResponse = UniRefund_CRMService_Merchants_StoreProfilePagedResultDto;
1428
1491
 
1492
+ export type GetApiCrmServiceMerchantsByIdAffiliatedIndividualsData = {
1493
+ id: string;
1494
+ };
1495
+
1496
+ export type GetApiCrmServiceMerchantsByIdAffiliatedIndividualsResponse = Array<UniRefund_CRMService_Merchants_SubIndividualDto>;
1497
+
1498
+ export type PostApiCrmServiceMerchantsByIdAffiliatedIndividualsData = {
1499
+ id: string;
1500
+ requestBody?: UniRefund_CRMService_Merchants_CreateMerchantIndividualDto;
1501
+ };
1502
+
1503
+ export type PostApiCrmServiceMerchantsByIdAffiliatedIndividualsResponse = UniRefund_CRMService_Individuals_IndividualDto;
1504
+
1429
1505
  export type PostApiCrmServiceMerchantsWithComponentsData = {
1430
1506
  requestBody?: UniRefund_CRMService_Merchants_CreateMerchantDto;
1431
1507
  };
@@ -1439,6 +1515,7 @@ export type DeleteApiCrmServiceMerchantsByIdWithComponentsData = {
1439
1515
  export type DeleteApiCrmServiceMerchantsByIdWithComponentsResponse = unknown;
1440
1516
 
1441
1517
  export type GetApiCrmServiceMerchantsByIdAffiliationsData = {
1518
+ affiliationCodeId?: number;
1442
1519
  affiliationTypeCode?: UniRefund_CRMService_Enums_AffiliationTypeCode;
1443
1520
  id: string;
1444
1521
  maxResultCount?: number;
@@ -1446,7 +1523,7 @@ export type GetApiCrmServiceMerchantsByIdAffiliationsData = {
1446
1523
  sorting?: string;
1447
1524
  };
1448
1525
 
1449
- export type GetApiCrmServiceMerchantsByIdAffiliationsResponse = Volo_Abp_Application_Dtos_PagedResultDto_1;
1526
+ export type GetApiCrmServiceMerchantsByIdAffiliationsResponse = PagedResultDto_AffiliationTypeDto;
1450
1527
 
1451
1528
  export type PostApiCrmServiceMerchantsByIdAffiliationsData = {
1452
1529
  id: string;
@@ -1455,6 +1532,21 @@ export type PostApiCrmServiceMerchantsByIdAffiliationsData = {
1455
1532
 
1456
1533
  export type PostApiCrmServiceMerchantsByIdAffiliationsResponse = unknown;
1457
1534
 
1535
+ export type DeleteApiCrmServiceMerchantsByIdAffiliationsByAffiliationIdData = {
1536
+ affiliationId: string;
1537
+ id: string;
1538
+ };
1539
+
1540
+ export type DeleteApiCrmServiceMerchantsByIdAffiliationsByAffiliationIdResponse = unknown;
1541
+
1542
+ export type PutApiCrmServiceMerchantsByIdAffiliationsByAffiliationIdData = {
1543
+ affiliationId: string;
1544
+ id: string;
1545
+ requestBody?: UniRefund_CRMService_AffiliationTypes_UpdateAffiliationTypeDto;
1546
+ };
1547
+
1548
+ export type PutApiCrmServiceMerchantsByIdAffiliationsByAffiliationIdResponse = UniRefund_CRMService_AffiliationTypes_AffiliationTypeDto;
1549
+
1458
1550
  export type PutApiCrmServiceMerchantsByIdOrganizationsByOrganizationIdData = {
1459
1551
  id: string;
1460
1552
  organizationId: string;
@@ -1463,6 +1555,14 @@ export type PutApiCrmServiceMerchantsByIdOrganizationsByOrganizationIdData = {
1463
1555
 
1464
1556
  export type PutApiCrmServiceMerchantsByIdOrganizationsByOrganizationIdResponse = UniRefund_CRMService_Organizations_OrganizationDto;
1465
1557
 
1558
+ export type PutApiCrmServiceMerchantsByIdAffiliatedIndividualsByIndividualIdData = {
1559
+ id: string;
1560
+ individualId: string;
1561
+ requestBody?: UniRefund_CRMService_Individuals_UpdateIndividualDto;
1562
+ };
1563
+
1564
+ export type PutApiCrmServiceMerchantsByIdAffiliatedIndividualsByIndividualIdResponse = UniRefund_CRMService_Individuals_IndividualDto;
1565
+
1466
1566
  export type PostApiCrmServiceMerchantsBulkProductGroupMerchantsData = {
1467
1567
  requestBody?: Array<UniRefund_SettingService_ProductGroupMerchants_CreateProductGroupMerchantDto>;
1468
1568
  };
@@ -1486,7 +1586,7 @@ export type GetApiCrmServiceMerchantsByIdAddressesResponse = Array<UniRefund_CRM
1486
1586
  export type PutApiCrmServiceMerchantsByIdAddressesByAddressIdData = {
1487
1587
  addressId: string;
1488
1588
  id: string;
1489
- requestBody?: UniRefund_CRMService_AddressTypes_UpdateAddressTypeDto;
1589
+ requestBody?: UniRefund_LocationService_AddressCommonDatas_AddressCommonDataUpdateDto;
1490
1590
  };
1491
1591
 
1492
1592
  export type PutApiCrmServiceMerchantsByIdAddressesByAddressIdResponse = UniRefund_CRMService_AddressTypes_AddressTypeDto;
@@ -1531,7 +1631,7 @@ export type GetApiCrmServiceOrganizationsData = {
1531
1631
  sorting?: string;
1532
1632
  };
1533
1633
 
1534
- export type GetApiCrmServiceOrganizationsResponse = Volo_Abp_Application_Dtos_PagedResultDto_1;
1634
+ export type GetApiCrmServiceOrganizationsResponse = PagedResultDto_OrganizationProfileDto;
1535
1635
 
1536
1636
  export type GetApiCrmServiceRefundPointsData = {
1537
1637
  maxResultCount?: number;
@@ -1539,7 +1639,7 @@ export type GetApiCrmServiceRefundPointsData = {
1539
1639
  sorting?: string;
1540
1640
  };
1541
1641
 
1542
- export type GetApiCrmServiceRefundPointsResponse = Volo_Abp_Application_Dtos_PagedResultDto_1;
1642
+ export type GetApiCrmServiceRefundPointsResponse = PagedResultDto_RefundPointProfileDto;
1543
1643
 
1544
1644
  export type GetApiCrmServiceRefundPointsByIdDetailData = {
1545
1645
  id: string;
@@ -1551,7 +1651,7 @@ export type GetApiCrmServiceRefundPointsByIdSubRefundPointsData = {
1551
1651
  id: string;
1552
1652
  };
1553
1653
 
1554
- export type GetApiCrmServiceRefundPointsByIdSubRefundPointsResponse = Volo_Abp_Application_Dtos_PagedResultDto_1;
1654
+ export type GetApiCrmServiceRefundPointsByIdSubRefundPointsResponse = PagedResultDto_RefundPointProfileDto;
1555
1655
 
1556
1656
  export type PostApiCrmServiceRefundPointsWithComponentsData = {
1557
1657
  requestBody?: UniRefund_CRMService_RefundPoints_CreateRefundPointDto;
@@ -1573,6 +1673,7 @@ export type PostApiCrmServiceRefundPointsByIdAffiliationsData = {
1573
1673
  export type PostApiCrmServiceRefundPointsByIdAffiliationsResponse = unknown;
1574
1674
 
1575
1675
  export type GetApiCrmServiceRefundPointsByIdAffiliationsData = {
1676
+ affiliationCodeId?: number;
1576
1677
  affiliationTypeCode?: UniRefund_CRMService_Enums_AffiliationTypeCode;
1577
1678
  id: string;
1578
1679
  maxResultCount?: number;
@@ -1580,7 +1681,7 @@ export type GetApiCrmServiceRefundPointsByIdAffiliationsData = {
1580
1681
  sorting?: string;
1581
1682
  };
1582
1683
 
1583
- export type GetApiCrmServiceRefundPointsByIdAffiliationsResponse = Volo_Abp_Application_Dtos_PagedResultDto_1;
1684
+ export type GetApiCrmServiceRefundPointsByIdAffiliationsResponse = PagedResultDto_AffiliationTypeDto;
1584
1685
 
1585
1686
  export type PutApiCrmServiceRefundPointsByIdOrganizationsByOrganizationIdData = {
1586
1687
  id: string;
@@ -1601,7 +1702,7 @@ export type PutApiCrmServiceRefundPointsByIdTelephonesByTelephoneIdResponse = Un
1601
1702
  export type PutApiCrmServiceRefundPointsByIdAddressesByAddressIdData = {
1602
1703
  addressId: string;
1603
1704
  id: string;
1604
- requestBody?: UniRefund_CRMService_AddressTypes_UpdateAddressTypeDto;
1705
+ requestBody?: UniRefund_LocationService_AddressCommonDatas_AddressCommonDataUpdateDto;
1605
1706
  };
1606
1707
 
1607
1708
  export type PutApiCrmServiceRefundPointsByIdAddressesByAddressIdResponse = UniRefund_CRMService_AddressTypes_AddressTypeDto;
@@ -1614,13 +1715,27 @@ export type PutApiCrmServiceRefundPointsByIdEmailsByEmailIdData = {
1614
1715
 
1615
1716
  export type PutApiCrmServiceRefundPointsByIdEmailsByEmailIdResponse = UniRefund_CRMService_EmailCommonDatas_EmailCommonDataDto;
1616
1717
 
1718
+ export type GetApiCrmServiceRefundPointsByIdExistData = {
1719
+ id: string;
1720
+ };
1721
+
1722
+ export type GetApiCrmServiceRefundPointsByIdExistResponse = boolean;
1723
+
1724
+ export type GetApiCrmServiceRefundPointsRefundPointNamesData = {
1725
+ ids?: Array<(string)>;
1726
+ maxResultCount?: number;
1727
+ skipCount?: number;
1728
+ };
1729
+
1730
+ export type GetApiCrmServiceRefundPointsRefundPointNamesResponse = PagedResultDto_RefundPointNameDto;
1731
+
1617
1732
  export type GetApiCrmServiceTaxFreesData = {
1618
1733
  maxResultCount?: number;
1619
1734
  skipCount?: number;
1620
1735
  sorting?: string;
1621
1736
  };
1622
1737
 
1623
- export type GetApiCrmServiceTaxFreesResponse = Volo_Abp_Application_Dtos_PagedResultDto_1;
1738
+ export type GetApiCrmServiceTaxFreesResponse = PagedResultDto_TaxFreeProfileDto;
1624
1739
 
1625
1740
  export type GetApiCrmServiceTaxFreesByIdDetailData = {
1626
1741
  id: string;
@@ -1632,7 +1747,7 @@ export type GetApiCrmServiceTaxFreesByIdSubTaxFreeData = {
1632
1747
  id: string;
1633
1748
  };
1634
1749
 
1635
- export type GetApiCrmServiceTaxFreesByIdSubTaxFreeResponse = Volo_Abp_Application_Dtos_PagedResultDto_1;
1750
+ export type GetApiCrmServiceTaxFreesByIdSubTaxFreeResponse = PagedResultDto_TaxFreeProfileDto;
1636
1751
 
1637
1752
  export type PostApiCrmServiceTaxFreesWithComponentsData = {
1638
1753
  requestBody?: UniRefund_CRMService_TaxFrees_CreateTaxFreeDto;
@@ -1654,6 +1769,7 @@ export type PostApiCrmServiceTaxFreesByIdAffiliationsData = {
1654
1769
  export type PostApiCrmServiceTaxFreesByIdAffiliationsResponse = unknown;
1655
1770
 
1656
1771
  export type GetApiCrmServiceTaxFreesByIdAffiliationsData = {
1772
+ affiliationCodeId?: number;
1657
1773
  affiliationTypeCode?: UniRefund_CRMService_Enums_AffiliationTypeCode;
1658
1774
  id: string;
1659
1775
  maxResultCount?: number;
@@ -1661,7 +1777,7 @@ export type GetApiCrmServiceTaxFreesByIdAffiliationsData = {
1661
1777
  sorting?: string;
1662
1778
  };
1663
1779
 
1664
- export type GetApiCrmServiceTaxFreesByIdAffiliationsResponse = Volo_Abp_Application_Dtos_PagedResultDto_1;
1780
+ export type GetApiCrmServiceTaxFreesByIdAffiliationsResponse = PagedResultDto_AffiliationTypeDto;
1665
1781
 
1666
1782
  export type PutApiCrmServiceTaxFreesByIdOrganizationsByOrganizationIdData = {
1667
1783
  id: string;
@@ -1682,7 +1798,7 @@ export type PutApiCrmServiceTaxFreesByIdTelephonesByTelephoneIdResponse = UniRef
1682
1798
  export type PutApiCrmServiceTaxFreesByIdAddressesByAddressIdData = {
1683
1799
  addressId: string;
1684
1800
  id: string;
1685
- requestBody?: UniRefund_CRMService_AddressTypes_UpdateAddressTypeDto;
1801
+ requestBody?: UniRefund_LocationService_AddressCommonDatas_AddressCommonDataUpdateDto;
1686
1802
  };
1687
1803
 
1688
1804
  export type PutApiCrmServiceTaxFreesByIdAddressesByAddressIdResponse = UniRefund_CRMService_AddressTypes_AddressTypeDto;
@@ -1701,7 +1817,7 @@ export type GetApiCrmServiceTaxOfficesData = {
1701
1817
  sorting?: string;
1702
1818
  };
1703
1819
 
1704
- export type GetApiCrmServiceTaxOfficesResponse = Volo_Abp_Application_Dtos_PagedResultDto_1;
1820
+ export type GetApiCrmServiceTaxOfficesResponse = PagedResultDto_TaxOfficeProfileDto;
1705
1821
 
1706
1822
  export type GetApiCrmServiceTaxOfficesByIdData = {
1707
1823
  id: string;
@@ -1719,7 +1835,7 @@ export type GetApiCrmServiceTaxOfficesByIdSubTaxOfficesData = {
1719
1835
  id: string;
1720
1836
  };
1721
1837
 
1722
- export type GetApiCrmServiceTaxOfficesByIdSubTaxOfficesResponse = Volo_Abp_Application_Dtos_PagedResultDto_1;
1838
+ export type GetApiCrmServiceTaxOfficesByIdSubTaxOfficesResponse = PagedResultDto_TaxOfficeProfileDto;
1723
1839
 
1724
1840
  export type PostApiCrmServiceTaxOfficesWithComponentsData = {
1725
1841
  requestBody?: UniRefund_CRMService_TaxOffices_CreateTaxOfficeDto;
@@ -1741,6 +1857,7 @@ export type PostApiCrmServiceTaxOfficesByIdAffiliationsData = {
1741
1857
  export type PostApiCrmServiceTaxOfficesByIdAffiliationsResponse = unknown;
1742
1858
 
1743
1859
  export type GetApiCrmServiceTaxOfficesByIdAffiliationsData = {
1860
+ affiliationCodeId?: number;
1744
1861
  affiliationTypeCode?: UniRefund_CRMService_Enums_AffiliationTypeCode;
1745
1862
  id: string;
1746
1863
  maxResultCount?: number;
@@ -1748,7 +1865,7 @@ export type GetApiCrmServiceTaxOfficesByIdAffiliationsData = {
1748
1865
  sorting?: string;
1749
1866
  };
1750
1867
 
1751
- export type GetApiCrmServiceTaxOfficesByIdAffiliationsResponse = Volo_Abp_Application_Dtos_PagedResultDto_1;
1868
+ export type GetApiCrmServiceTaxOfficesByIdAffiliationsResponse = PagedResultDto_AffiliationTypeDto;
1752
1869
 
1753
1870
  export type PutApiCrmServiceTaxOfficesByIdOrganizationsByOrganizationIdData = {
1754
1871
  id: string;
@@ -1769,7 +1886,7 @@ export type PutApiCrmServiceTaxOfficesByIdTelephonesByTelephoneIdResponse = UniR
1769
1886
  export type PutApiCrmServiceTaxOfficesByIdAddressesByAddressIdData = {
1770
1887
  addressId: string;
1771
1888
  id: string;
1772
- requestBody?: UniRefund_CRMService_AddressTypes_UpdateAddressTypeDto;
1889
+ requestBody?: UniRefund_LocationService_AddressCommonDatas_AddressCommonDataUpdateDto;
1773
1890
  };
1774
1891
 
1775
1892
  export type PutApiCrmServiceTaxOfficesByIdAddressesByAddressIdResponse = UniRefund_CRMService_AddressTypes_AddressTypeDto;
@@ -1788,39 +1905,6 @@ export type GetApiCrmServiceTaxOfficesByIdAnyData = {
1788
1905
 
1789
1906
  export type GetApiCrmServiceTaxOfficesByIdAnyResponse = boolean;
1790
1907
 
1791
- export type GetApiCrmServiceTelephonesData = {
1792
- maxResultCount?: number;
1793
- skipCount?: number;
1794
- sorting?: string;
1795
- };
1796
-
1797
- export type GetApiCrmServiceTelephonesResponse = Volo_Abp_Application_Dtos_PagedResultDto_1;
1798
-
1799
- export type PostApiCrmServiceTelephonesData = {
1800
- requestBody?: UniRefund_CRMService_TelephoneTypes_CreateTelephoneTypeDto;
1801
- };
1802
-
1803
- export type PostApiCrmServiceTelephonesResponse = UniRefund_CRMService_TelephoneTypes_TelephoneTypeDto;
1804
-
1805
- export type GetApiCrmServiceTelephonesByIdData = {
1806
- id: string;
1807
- };
1808
-
1809
- export type GetApiCrmServiceTelephonesByIdResponse = UniRefund_CRMService_TelephoneTypes_TelephoneTypeDto;
1810
-
1811
- export type PutApiCrmServiceTelephonesByIdData = {
1812
- id: string;
1813
- requestBody?: UniRefund_CRMService_TelephoneTypes_UpdateTelephoneTypeDto;
1814
- };
1815
-
1816
- export type PutApiCrmServiceTelephonesByIdResponse = UniRefund_CRMService_TelephoneTypes_TelephoneTypeDto;
1817
-
1818
- export type DeleteApiCrmServiceTelephonesByIdData = {
1819
- id: string;
1820
- };
1821
-
1822
- export type DeleteApiCrmServiceTelephonesByIdResponse = unknown;
1823
-
1824
1908
  export type $OpenApiTs = {
1825
1909
  '/api/abp/api-definition': {
1826
1910
  get: {
@@ -1927,14 +2011,14 @@ export type $OpenApiTs = {
1927
2011
  };
1928
2012
  };
1929
2013
  };
1930
- '/api/crm-service/addresses': {
2014
+ '/api/crm-service/affiliation-codes': {
1931
2015
  get: {
1932
- req: GetApiCrmServiceAddressesData;
2016
+ req: GetApiCrmServiceAffiliationCodesData;
1933
2017
  res: {
1934
2018
  /**
1935
2019
  * Success
1936
2020
  */
1937
- 200: Volo_Abp_Application_Dtos_PagedResultDto_1;
2021
+ 200: PagedResultDto_AffiliationCodeDto;
1938
2022
  /**
1939
2023
  * Bad Request
1940
2024
  */
@@ -1962,12 +2046,12 @@ export type $OpenApiTs = {
1962
2046
  };
1963
2047
  };
1964
2048
  post: {
1965
- req: PostApiCrmServiceAddressesData;
2049
+ req: PostApiCrmServiceAffiliationCodesData;
1966
2050
  res: {
1967
2051
  /**
1968
2052
  * Success
1969
2053
  */
1970
- 200: UniRefund_CRMService_AddressTypes_AddressTypeDto;
2054
+ 200: UniRefund_CRMService_AffiliationCodes_AffiliationCodeDto;
1971
2055
  /**
1972
2056
  * Bad Request
1973
2057
  */
@@ -1995,14 +2079,14 @@ export type $OpenApiTs = {
1995
2079
  };
1996
2080
  };
1997
2081
  };
1998
- '/api/crm-service/addresses/{id}': {
2082
+ '/api/crm-service/affiliation-codes/{id}': {
1999
2083
  get: {
2000
- req: GetApiCrmServiceAddressesByIdData;
2084
+ req: GetApiCrmServiceAffiliationCodesByIdData;
2001
2085
  res: {
2002
2086
  /**
2003
2087
  * Success
2004
2088
  */
2005
- 200: UniRefund_CRMService_AddressTypes_AddressTypeDto;
2089
+ 200: UniRefund_CRMService_AffiliationCodes_AffiliationCodeDto;
2006
2090
  /**
2007
2091
  * Bad Request
2008
2092
  */
@@ -2030,12 +2114,12 @@ export type $OpenApiTs = {
2030
2114
  };
2031
2115
  };
2032
2116
  put: {
2033
- req: PutApiCrmServiceAddressesByIdData;
2117
+ req: PutApiCrmServiceAffiliationCodesByIdData;
2034
2118
  res: {
2035
2119
  /**
2036
2120
  * Success
2037
2121
  */
2038
- 200: UniRefund_CRMService_AddressTypes_AddressTypeDto;
2122
+ 200: UniRefund_CRMService_AffiliationCodes_AffiliationCodeDto;
2039
2123
  /**
2040
2124
  * Bad Request
2041
2125
  */
@@ -2063,7 +2147,110 @@ export type $OpenApiTs = {
2063
2147
  };
2064
2148
  };
2065
2149
  delete: {
2066
- req: DeleteApiCrmServiceAddressesByIdData;
2150
+ req: DeleteApiCrmServiceAffiliationCodesByIdData;
2151
+ res: {
2152
+ /**
2153
+ * Success
2154
+ */
2155
+ 200: unknown;
2156
+ /**
2157
+ * Bad Request
2158
+ */
2159
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
2160
+ /**
2161
+ * Unauthorized
2162
+ */
2163
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
2164
+ /**
2165
+ * Forbidden
2166
+ */
2167
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
2168
+ /**
2169
+ * Not Found
2170
+ */
2171
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
2172
+ /**
2173
+ * Server Error
2174
+ */
2175
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
2176
+ /**
2177
+ * Server Error
2178
+ */
2179
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
2180
+ };
2181
+ };
2182
+ };
2183
+ '/api/crm-service/affiliation-codes/{id}/translation': {
2184
+ post: {
2185
+ req: PostApiCrmServiceAffiliationCodesByIdTranslationData;
2186
+ res: {
2187
+ /**
2188
+ * Success
2189
+ */
2190
+ 200: unknown;
2191
+ /**
2192
+ * Bad Request
2193
+ */
2194
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
2195
+ /**
2196
+ * Unauthorized
2197
+ */
2198
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
2199
+ /**
2200
+ * Forbidden
2201
+ */
2202
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
2203
+ /**
2204
+ * Not Found
2205
+ */
2206
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
2207
+ /**
2208
+ * Server Error
2209
+ */
2210
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
2211
+ /**
2212
+ * Server Error
2213
+ */
2214
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
2215
+ };
2216
+ };
2217
+ put: {
2218
+ req: PutApiCrmServiceAffiliationCodesByIdTranslationData;
2219
+ res: {
2220
+ /**
2221
+ * Success
2222
+ */
2223
+ 200: unknown;
2224
+ /**
2225
+ * Bad Request
2226
+ */
2227
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
2228
+ /**
2229
+ * Unauthorized
2230
+ */
2231
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
2232
+ /**
2233
+ * Forbidden
2234
+ */
2235
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
2236
+ /**
2237
+ * Not Found
2238
+ */
2239
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
2240
+ /**
2241
+ * Server Error
2242
+ */
2243
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
2244
+ /**
2245
+ * Server Error
2246
+ */
2247
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
2248
+ };
2249
+ };
2250
+ };
2251
+ '/api/crm-service/affiliation-codes/{id}/exist-by-id-async': {
2252
+ get: {
2253
+ req: GetApiCrmServiceAffiliationCodesByIdExistByIdAsyncData;
2067
2254
  res: {
2068
2255
  /**
2069
2256
  * Success
@@ -2103,7 +2290,7 @@ export type $OpenApiTs = {
2103
2290
  /**
2104
2291
  * Success
2105
2292
  */
2106
- 200: Volo_Abp_Application_Dtos_PagedResultDto_1;
2293
+ 200: PagedResultDto_CustomsProfileDto;
2107
2294
  /**
2108
2295
  * Bad Request
2109
2296
  */
@@ -2173,7 +2360,7 @@ export type $OpenApiTs = {
2173
2360
  /**
2174
2361
  * Success
2175
2362
  */
2176
- 200: Volo_Abp_Application_Dtos_PagedResultDto_1;
2363
+ 200: PagedResultDto_CustomsProfileDto;
2177
2364
  /**
2178
2365
  * Bad Request
2179
2366
  */
@@ -2311,7 +2498,7 @@ export type $OpenApiTs = {
2311
2498
  /**
2312
2499
  * Success
2313
2500
  */
2314
- 200: Volo_Abp_Application_Dtos_PagedResultDto_1;
2501
+ 200: PagedResultDto_AffiliationTypeDto;
2315
2502
  /**
2316
2503
  * Bad Request
2317
2504
  */
@@ -2479,14 +2666,14 @@ export type $OpenApiTs = {
2479
2666
  };
2480
2667
  };
2481
2668
  };
2482
- '/api/crm-service/emails': {
2483
- get: {
2484
- req: GetApiCrmServiceEmailsData;
2669
+ '/api/crm-service/individuals/with-components': {
2670
+ post: {
2671
+ req: PostApiCrmServiceIndividualsWithComponentsData;
2485
2672
  res: {
2486
2673
  /**
2487
2674
  * Success
2488
2675
  */
2489
- 200: Volo_Abp_Application_Dtos_PagedResultDto_1;
2676
+ 200: UniRefund_CRMService_Individuals_IndividualDto;
2490
2677
  /**
2491
2678
  * Bad Request
2492
2679
  */
@@ -2513,13 +2700,15 @@ export type $OpenApiTs = {
2513
2700
  501: Volo_Abp_Http_RemoteServiceErrorResponse;
2514
2701
  };
2515
2702
  };
2516
- post: {
2517
- req: PostApiCrmServiceEmailsData;
2703
+ };
2704
+ '/api/crm-service/individuals': {
2705
+ get: {
2706
+ req: GetApiCrmServiceIndividualsData;
2518
2707
  res: {
2519
2708
  /**
2520
2709
  * Success
2521
2710
  */
2522
- 200: UniRefund_CRMService_EmailCommonDatas_EmailCommonDataDto;
2711
+ 200: PagedResultDto_IndividualProfileDto;
2523
2712
  /**
2524
2713
  * Bad Request
2525
2714
  */
@@ -2547,14 +2736,14 @@ export type $OpenApiTs = {
2547
2736
  };
2548
2737
  };
2549
2738
  };
2550
- '/api/crm-service/emails/{id}': {
2739
+ '/api/crm-service/individuals/{id}': {
2551
2740
  get: {
2552
- req: GetApiCrmServiceEmailsByIdData;
2741
+ req: GetApiCrmServiceIndividualsByIdData;
2553
2742
  res: {
2554
2743
  /**
2555
2744
  * Success
2556
2745
  */
2557
- 200: UniRefund_CRMService_EmailCommonDatas_EmailCommonDataDto;
2746
+ 200: UniRefund_CRMService_Individuals_IndividualProfileDto;
2558
2747
  /**
2559
2748
  * Bad Request
2560
2749
  */
@@ -2581,13 +2770,15 @@ export type $OpenApiTs = {
2581
2770
  501: Volo_Abp_Http_RemoteServiceErrorResponse;
2582
2771
  };
2583
2772
  };
2584
- put: {
2585
- req: PutApiCrmServiceEmailsByIdData;
2773
+ };
2774
+ '/api/crm-service/individuals/user-devices-names': {
2775
+ get: {
2776
+ req: GetApiCrmServiceIndividualsUserDevicesNamesData;
2586
2777
  res: {
2587
2778
  /**
2588
2779
  * Success
2589
2780
  */
2590
- 200: UniRefund_CRMService_EmailCommonDatas_EmailCommonDataDto;
2781
+ 200: PagedResultDto_UserDeviceNameDto;
2591
2782
  /**
2592
2783
  * Bad Request
2593
2784
  */
@@ -2614,13 +2805,15 @@ export type $OpenApiTs = {
2614
2805
  501: Volo_Abp_Http_RemoteServiceErrorResponse;
2615
2806
  };
2616
2807
  };
2617
- delete: {
2618
- req: DeleteApiCrmServiceEmailsByIdData;
2808
+ };
2809
+ '/api/crm-service/individuals/all-user-devices-names': {
2810
+ get: {
2811
+ req: GetApiCrmServiceIndividualsAllUserDevicesNamesData;
2619
2812
  res: {
2620
2813
  /**
2621
2814
  * Success
2622
2815
  */
2623
- 200: unknown;
2816
+ 200: Array<UniRefund_CRMService_RefundPoints_UserDeviceNameDto>;
2624
2817
  /**
2625
2818
  * Bad Request
2626
2819
  */
@@ -2648,14 +2841,14 @@ export type $OpenApiTs = {
2648
2841
  };
2649
2842
  };
2650
2843
  };
2651
- '/api/crm-service/individuals/with-components': {
2652
- post: {
2653
- req: PostApiCrmServiceIndividualsWithComponentsData;
2844
+ '/api/crm-service/merchants': {
2845
+ get: {
2846
+ req: GetApiCrmServiceMerchantsData;
2654
2847
  res: {
2655
2848
  /**
2656
2849
  * Success
2657
2850
  */
2658
- 200: unknown;
2851
+ 200: PagedResultDto_MerchantProfileDto;
2659
2852
  /**
2660
2853
  * Bad Request
2661
2854
  */
@@ -2683,14 +2876,14 @@ export type $OpenApiTs = {
2683
2876
  };
2684
2877
  };
2685
2878
  };
2686
- '/api/crm-service/individuals': {
2879
+ '/api/crm-service/merchants/{id}/basic-information': {
2687
2880
  get: {
2688
- req: GetApiCrmServiceIndividualsData;
2881
+ req: GetApiCrmServiceMerchantsByIdBasicInformationData;
2689
2882
  res: {
2690
2883
  /**
2691
2884
  * Success
2692
2885
  */
2693
- 200: Volo_Abp_Application_Dtos_PagedResultDto_1;
2886
+ 200: UniRefund_CRMService_Merchants_MerchantBasicInformationDto;
2694
2887
  /**
2695
2888
  * Bad Request
2696
2889
  */
@@ -2718,14 +2911,14 @@ export type $OpenApiTs = {
2718
2911
  };
2719
2912
  };
2720
2913
  };
2721
- '/api/crm-service/individuals/{id}': {
2914
+ '/api/crm-service/merchants/info': {
2722
2915
  get: {
2723
- req: GetApiCrmServiceIndividualsByIdData;
2916
+ req: GetApiCrmServiceMerchantsInfoData;
2724
2917
  res: {
2725
2918
  /**
2726
2919
  * Success
2727
2920
  */
2728
- 200: UniRefund_CRMService_Individuals_IndividualProfileDto;
2921
+ 200: UniRefund_CRMService_Merchants_MerchantInfoDto;
2729
2922
  /**
2730
2923
  * Bad Request
2731
2924
  */
@@ -2753,14 +2946,47 @@ export type $OpenApiTs = {
2753
2946
  };
2754
2947
  };
2755
2948
  };
2756
- '/api/crm-service/merchants': {
2949
+ '/api/crm-service/merchants/{id}': {
2757
2950
  get: {
2758
- req: GetApiCrmServiceMerchantsData;
2951
+ req: GetApiCrmServiceMerchantsByIdData;
2952
+ res: {
2953
+ /**
2954
+ * Success
2955
+ */
2956
+ 200: UniRefund_CRMService_Merchants_MerchantProfileDto;
2957
+ /**
2958
+ * Bad Request
2959
+ */
2960
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
2961
+ /**
2962
+ * Unauthorized
2963
+ */
2964
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
2965
+ /**
2966
+ * Forbidden
2967
+ */
2968
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
2969
+ /**
2970
+ * Not Found
2971
+ */
2972
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
2973
+ /**
2974
+ * Server Error
2975
+ */
2976
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
2977
+ /**
2978
+ * Server Error
2979
+ */
2980
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
2981
+ };
2982
+ };
2983
+ put: {
2984
+ req: PutApiCrmServiceMerchantsByIdData;
2759
2985
  res: {
2760
2986
  /**
2761
2987
  * Success
2762
2988
  */
2763
- 200: Volo_Abp_Application_Dtos_PagedResultDto_1;
2989
+ 200: UniRefund_CRMService_Merchants_MerchantBaseDto;
2764
2990
  /**
2765
2991
  * Bad Request
2766
2992
  */
@@ -2788,14 +3014,14 @@ export type $OpenApiTs = {
2788
3014
  };
2789
3015
  };
2790
3016
  };
2791
- '/api/crm-service/merchants/{id}/basic-information': {
3017
+ '/api/crm-service/merchants/{id}/ensure-exist': {
2792
3018
  get: {
2793
- req: GetApiCrmServiceMerchantsByIdBasicInformationData;
3019
+ req: GetApiCrmServiceMerchantsByIdEnsureExistData;
2794
3020
  res: {
2795
3021
  /**
2796
3022
  * Success
2797
3023
  */
2798
- 200: UniRefund_CRMService_Merchants_MerchantBasicInformationDto;
3024
+ 200: unknown;
2799
3025
  /**
2800
3026
  * Bad Request
2801
3027
  */
@@ -2823,14 +3049,14 @@ export type $OpenApiTs = {
2823
3049
  };
2824
3050
  };
2825
3051
  };
2826
- '/api/crm-service/merchants/info': {
3052
+ '/api/crm-service/merchants/{id}/exist': {
2827
3053
  get: {
2828
- req: GetApiCrmServiceMerchantsInfoData;
3054
+ req: GetApiCrmServiceMerchantsByIdExistData;
2829
3055
  res: {
2830
3056
  /**
2831
3057
  * Success
2832
3058
  */
2833
- 200: UniRefund_CRMService_Merchants_MerchantInfoDto;
3059
+ 200: boolean;
2834
3060
  /**
2835
3061
  * Bad Request
2836
3062
  */
@@ -2858,14 +3084,14 @@ export type $OpenApiTs = {
2858
3084
  };
2859
3085
  };
2860
3086
  };
2861
- '/api/crm-service/merchants/{id}': {
3087
+ '/api/crm-service/merchants/{id}/detail': {
2862
3088
  get: {
2863
- req: GetApiCrmServiceMerchantsByIdData;
3089
+ req: GetApiCrmServiceMerchantsByIdDetailData;
2864
3090
  res: {
2865
3091
  /**
2866
3092
  * Success
2867
3093
  */
2868
- 200: UniRefund_CRMService_Merchants_MerchantProfileDto;
3094
+ 200: UniRefund_CRMService_Merchants_MerchantDetailDto;
2869
3095
  /**
2870
3096
  * Bad Request
2871
3097
  */
@@ -2892,13 +3118,15 @@ export type $OpenApiTs = {
2892
3118
  501: Volo_Abp_Http_RemoteServiceErrorResponse;
2893
3119
  };
2894
3120
  };
2895
- put: {
2896
- req: PutApiCrmServiceMerchantsByIdData;
3121
+ };
3122
+ '/api/crm-service/merchants/{id}/sub-merchants': {
3123
+ get: {
3124
+ req: GetApiCrmServiceMerchantsByIdSubMerchantsData;
2897
3125
  res: {
2898
3126
  /**
2899
3127
  * Success
2900
3128
  */
2901
- 200: UniRefund_CRMService_Merchants_MerchantBaseDto;
3129
+ 200: UniRefund_CRMService_Merchants_StoreProfilePagedResultDto;
2902
3130
  /**
2903
3131
  * Bad Request
2904
3132
  */
@@ -2926,14 +3154,47 @@ export type $OpenApiTs = {
2926
3154
  };
2927
3155
  };
2928
3156
  };
2929
- '/api/crm-service/merchants/{id}/exist': {
3157
+ '/api/crm-service/merchants/{id}/affiliated-individuals': {
2930
3158
  get: {
2931
- req: GetApiCrmServiceMerchantsByIdExistData;
3159
+ req: GetApiCrmServiceMerchantsByIdAffiliatedIndividualsData;
2932
3160
  res: {
2933
3161
  /**
2934
3162
  * Success
2935
3163
  */
2936
- 200: boolean;
3164
+ 200: Array<UniRefund_CRMService_Merchants_SubIndividualDto>;
3165
+ /**
3166
+ * Bad Request
3167
+ */
3168
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
3169
+ /**
3170
+ * Unauthorized
3171
+ */
3172
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
3173
+ /**
3174
+ * Forbidden
3175
+ */
3176
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
3177
+ /**
3178
+ * Not Found
3179
+ */
3180
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
3181
+ /**
3182
+ * Server Error
3183
+ */
3184
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
3185
+ /**
3186
+ * Server Error
3187
+ */
3188
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
3189
+ };
3190
+ };
3191
+ post: {
3192
+ req: PostApiCrmServiceMerchantsByIdAffiliatedIndividualsData;
3193
+ res: {
3194
+ /**
3195
+ * Success
3196
+ */
3197
+ 200: UniRefund_CRMService_Individuals_IndividualDto;
2937
3198
  /**
2938
3199
  * Bad Request
2939
3200
  */
@@ -2961,14 +3222,49 @@ export type $OpenApiTs = {
2961
3222
  };
2962
3223
  };
2963
3224
  };
2964
- '/api/crm-service/merchants/{id}/detail': {
2965
- get: {
2966
- req: GetApiCrmServiceMerchantsByIdDetailData;
3225
+ '/api/crm-service/merchants/with-components': {
3226
+ post: {
3227
+ req: PostApiCrmServiceMerchantsWithComponentsData;
2967
3228
  res: {
2968
3229
  /**
2969
3230
  * Success
2970
3231
  */
2971
- 200: UniRefund_CRMService_Merchants_MerchantDetailDto;
3232
+ 200: UniRefund_CRMService_Merchants_MerchantProfileDto;
3233
+ /**
3234
+ * Bad Request
3235
+ */
3236
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
3237
+ /**
3238
+ * Unauthorized
3239
+ */
3240
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
3241
+ /**
3242
+ * Forbidden
3243
+ */
3244
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
3245
+ /**
3246
+ * Not Found
3247
+ */
3248
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
3249
+ /**
3250
+ * Server Error
3251
+ */
3252
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
3253
+ /**
3254
+ * Server Error
3255
+ */
3256
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
3257
+ };
3258
+ };
3259
+ };
3260
+ '/api/crm-service/merchants/{id}/with-components': {
3261
+ delete: {
3262
+ req: DeleteApiCrmServiceMerchantsByIdWithComponentsData;
3263
+ res: {
3264
+ /**
3265
+ * Success
3266
+ */
3267
+ 200: unknown;
2972
3268
  /**
2973
3269
  * Bad Request
2974
3270
  */
@@ -2996,14 +3292,14 @@ export type $OpenApiTs = {
2996
3292
  };
2997
3293
  };
2998
3294
  };
2999
- '/api/crm-service/merchants/{id}/sub-merchants': {
3295
+ '/api/crm-service/merchants/{id}/affiliations': {
3000
3296
  get: {
3001
- req: GetApiCrmServiceMerchantsByIdSubMerchantsData;
3297
+ req: GetApiCrmServiceMerchantsByIdAffiliationsData;
3002
3298
  res: {
3003
3299
  /**
3004
3300
  * Success
3005
3301
  */
3006
- 200: UniRefund_CRMService_Merchants_StoreProfilePagedResultDto;
3302
+ 200: PagedResultDto_AffiliationTypeDto;
3007
3303
  /**
3008
3304
  * Bad Request
3009
3305
  */
@@ -3030,15 +3326,13 @@ export type $OpenApiTs = {
3030
3326
  501: Volo_Abp_Http_RemoteServiceErrorResponse;
3031
3327
  };
3032
3328
  };
3033
- };
3034
- '/api/crm-service/merchants/with-components': {
3035
3329
  post: {
3036
- req: PostApiCrmServiceMerchantsWithComponentsData;
3330
+ req: PostApiCrmServiceMerchantsByIdAffiliationsData;
3037
3331
  res: {
3038
3332
  /**
3039
3333
  * Success
3040
3334
  */
3041
- 200: UniRefund_CRMService_Merchants_MerchantProfileDto;
3335
+ 200: unknown;
3042
3336
  /**
3043
3337
  * Bad Request
3044
3338
  */
@@ -3066,9 +3360,9 @@ export type $OpenApiTs = {
3066
3360
  };
3067
3361
  };
3068
3362
  };
3069
- '/api/crm-service/merchants/{id}/with-components': {
3363
+ '/api/crm-service/merchants/{id}/affiliations/{affiliationId}': {
3070
3364
  delete: {
3071
- req: DeleteApiCrmServiceMerchantsByIdWithComponentsData;
3365
+ req: DeleteApiCrmServiceMerchantsByIdAffiliationsByAffiliationIdData;
3072
3366
  res: {
3073
3367
  /**
3074
3368
  * Success
@@ -3100,15 +3394,13 @@ export type $OpenApiTs = {
3100
3394
  501: Volo_Abp_Http_RemoteServiceErrorResponse;
3101
3395
  };
3102
3396
  };
3103
- };
3104
- '/api/crm-service/merchants/{id}/affiliations': {
3105
- get: {
3106
- req: GetApiCrmServiceMerchantsByIdAffiliationsData;
3397
+ put: {
3398
+ req: PutApiCrmServiceMerchantsByIdAffiliationsByAffiliationIdData;
3107
3399
  res: {
3108
3400
  /**
3109
3401
  * Success
3110
3402
  */
3111
- 200: Volo_Abp_Application_Dtos_PagedResultDto_1;
3403
+ 200: UniRefund_CRMService_AffiliationTypes_AffiliationTypeDto;
3112
3404
  /**
3113
3405
  * Bad Request
3114
3406
  */
@@ -3135,13 +3427,15 @@ export type $OpenApiTs = {
3135
3427
  501: Volo_Abp_Http_RemoteServiceErrorResponse;
3136
3428
  };
3137
3429
  };
3138
- post: {
3139
- req: PostApiCrmServiceMerchantsByIdAffiliationsData;
3430
+ };
3431
+ '/api/crm-service/merchants/{id}/organizations/{organizationId}': {
3432
+ put: {
3433
+ req: PutApiCrmServiceMerchantsByIdOrganizationsByOrganizationIdData;
3140
3434
  res: {
3141
3435
  /**
3142
3436
  * Success
3143
3437
  */
3144
- 200: unknown;
3438
+ 200: UniRefund_CRMService_Organizations_OrganizationDto;
3145
3439
  /**
3146
3440
  * Bad Request
3147
3441
  */
@@ -3169,14 +3463,14 @@ export type $OpenApiTs = {
3169
3463
  };
3170
3464
  };
3171
3465
  };
3172
- '/api/crm-service/merchants/{id}/organizations/{organizationId}': {
3466
+ '/api/crm-service/merchants/{id}/affiliated-individuals/{individualId}': {
3173
3467
  put: {
3174
- req: PutApiCrmServiceMerchantsByIdOrganizationsByOrganizationIdData;
3468
+ req: PutApiCrmServiceMerchantsByIdAffiliatedIndividualsByIndividualIdData;
3175
3469
  res: {
3176
3470
  /**
3177
3471
  * Success
3178
3472
  */
3179
- 200: UniRefund_CRMService_Organizations_OrganizationDto;
3473
+ 200: UniRefund_CRMService_Individuals_IndividualDto;
3180
3474
  /**
3181
3475
  * Bad Request
3182
3476
  */
@@ -3491,7 +3785,7 @@ export type $OpenApiTs = {
3491
3785
  /**
3492
3786
  * Success
3493
3787
  */
3494
- 200: Volo_Abp_Application_Dtos_PagedResultDto_1;
3788
+ 200: PagedResultDto_OrganizationProfileDto;
3495
3789
  /**
3496
3790
  * Bad Request
3497
3791
  */
@@ -3526,7 +3820,7 @@ export type $OpenApiTs = {
3526
3820
  /**
3527
3821
  * Success
3528
3822
  */
3529
- 200: Volo_Abp_Application_Dtos_PagedResultDto_1;
3823
+ 200: PagedResultDto_RefundPointProfileDto;
3530
3824
  /**
3531
3825
  * Bad Request
3532
3826
  */
@@ -3596,7 +3890,7 @@ export type $OpenApiTs = {
3596
3890
  /**
3597
3891
  * Success
3598
3892
  */
3599
- 200: Volo_Abp_Application_Dtos_PagedResultDto_1;
3893
+ 200: PagedResultDto_RefundPointProfileDto;
3600
3894
  /**
3601
3895
  * Bad Request
3602
3896
  */
@@ -3734,7 +4028,7 @@ export type $OpenApiTs = {
3734
4028
  /**
3735
4029
  * Success
3736
4030
  */
3737
- 200: Volo_Abp_Application_Dtos_PagedResultDto_1;
4031
+ 200: PagedResultDto_AffiliationTypeDto;
3738
4032
  /**
3739
4033
  * Bad Request
3740
4034
  */
@@ -3902,6 +4196,76 @@ export type $OpenApiTs = {
3902
4196
  };
3903
4197
  };
3904
4198
  };
4199
+ '/api/crm-service/refund-points/{id}/exist': {
4200
+ get: {
4201
+ req: GetApiCrmServiceRefundPointsByIdExistData;
4202
+ res: {
4203
+ /**
4204
+ * Success
4205
+ */
4206
+ 200: boolean;
4207
+ /**
4208
+ * Bad Request
4209
+ */
4210
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
4211
+ /**
4212
+ * Unauthorized
4213
+ */
4214
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
4215
+ /**
4216
+ * Forbidden
4217
+ */
4218
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
4219
+ /**
4220
+ * Not Found
4221
+ */
4222
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
4223
+ /**
4224
+ * Server Error
4225
+ */
4226
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
4227
+ /**
4228
+ * Server Error
4229
+ */
4230
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
4231
+ };
4232
+ };
4233
+ };
4234
+ '/api/crm-service/refund-points/refund-point-names': {
4235
+ get: {
4236
+ req: GetApiCrmServiceRefundPointsRefundPointNamesData;
4237
+ res: {
4238
+ /**
4239
+ * Success
4240
+ */
4241
+ 200: PagedResultDto_RefundPointNameDto;
4242
+ /**
4243
+ * Bad Request
4244
+ */
4245
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
4246
+ /**
4247
+ * Unauthorized
4248
+ */
4249
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
4250
+ /**
4251
+ * Forbidden
4252
+ */
4253
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
4254
+ /**
4255
+ * Not Found
4256
+ */
4257
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
4258
+ /**
4259
+ * Server Error
4260
+ */
4261
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
4262
+ /**
4263
+ * Server Error
4264
+ */
4265
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
4266
+ };
4267
+ };
4268
+ };
3905
4269
  '/api/crm-service/tax-frees': {
3906
4270
  get: {
3907
4271
  req: GetApiCrmServiceTaxFreesData;
@@ -3909,7 +4273,7 @@ export type $OpenApiTs = {
3909
4273
  /**
3910
4274
  * Success
3911
4275
  */
3912
- 200: Volo_Abp_Application_Dtos_PagedResultDto_1;
4276
+ 200: PagedResultDto_TaxFreeProfileDto;
3913
4277
  /**
3914
4278
  * Bad Request
3915
4279
  */
@@ -3979,7 +4343,7 @@ export type $OpenApiTs = {
3979
4343
  /**
3980
4344
  * Success
3981
4345
  */
3982
- 200: Volo_Abp_Application_Dtos_PagedResultDto_1;
4346
+ 200: PagedResultDto_TaxFreeProfileDto;
3983
4347
  /**
3984
4348
  * Bad Request
3985
4349
  */
@@ -4117,7 +4481,7 @@ export type $OpenApiTs = {
4117
4481
  /**
4118
4482
  * Success
4119
4483
  */
4120
- 200: Volo_Abp_Application_Dtos_PagedResultDto_1;
4484
+ 200: PagedResultDto_AffiliationTypeDto;
4121
4485
  /**
4122
4486
  * Bad Request
4123
4487
  */
@@ -4292,7 +4656,7 @@ export type $OpenApiTs = {
4292
4656
  /**
4293
4657
  * Success
4294
4658
  */
4295
- 200: Volo_Abp_Application_Dtos_PagedResultDto_1;
4659
+ 200: PagedResultDto_TaxOfficeProfileDto;
4296
4660
  /**
4297
4661
  * Bad Request
4298
4662
  */
@@ -4397,7 +4761,7 @@ export type $OpenApiTs = {
4397
4761
  /**
4398
4762
  * Success
4399
4763
  */
4400
- 200: Volo_Abp_Application_Dtos_PagedResultDto_1;
4764
+ 200: PagedResultDto_TaxOfficeProfileDto;
4401
4765
  /**
4402
4766
  * Bad Request
4403
4767
  */
@@ -4535,7 +4899,7 @@ export type $OpenApiTs = {
4535
4899
  /**
4536
4900
  * Success
4537
4901
  */
4538
- 200: Volo_Abp_Application_Dtos_PagedResultDto_1;
4902
+ 200: PagedResultDto_AffiliationTypeDto;
4539
4903
  /**
4540
4904
  * Bad Request
4541
4905
  */
@@ -4738,173 +5102,4 @@ export type $OpenApiTs = {
4738
5102
  };
4739
5103
  };
4740
5104
  };
4741
- '/api/crm-service/telephones': {
4742
- get: {
4743
- req: GetApiCrmServiceTelephonesData;
4744
- res: {
4745
- /**
4746
- * Success
4747
- */
4748
- 200: Volo_Abp_Application_Dtos_PagedResultDto_1;
4749
- /**
4750
- * Bad Request
4751
- */
4752
- 400: Volo_Abp_Http_RemoteServiceErrorResponse;
4753
- /**
4754
- * Unauthorized
4755
- */
4756
- 401: Volo_Abp_Http_RemoteServiceErrorResponse;
4757
- /**
4758
- * Forbidden
4759
- */
4760
- 403: Volo_Abp_Http_RemoteServiceErrorResponse;
4761
- /**
4762
- * Not Found
4763
- */
4764
- 404: Volo_Abp_Http_RemoteServiceErrorResponse;
4765
- /**
4766
- * Server Error
4767
- */
4768
- 500: Volo_Abp_Http_RemoteServiceErrorResponse;
4769
- /**
4770
- * Server Error
4771
- */
4772
- 501: Volo_Abp_Http_RemoteServiceErrorResponse;
4773
- };
4774
- };
4775
- post: {
4776
- req: PostApiCrmServiceTelephonesData;
4777
- res: {
4778
- /**
4779
- * Success
4780
- */
4781
- 200: UniRefund_CRMService_TelephoneTypes_TelephoneTypeDto;
4782
- /**
4783
- * Bad Request
4784
- */
4785
- 400: Volo_Abp_Http_RemoteServiceErrorResponse;
4786
- /**
4787
- * Unauthorized
4788
- */
4789
- 401: Volo_Abp_Http_RemoteServiceErrorResponse;
4790
- /**
4791
- * Forbidden
4792
- */
4793
- 403: Volo_Abp_Http_RemoteServiceErrorResponse;
4794
- /**
4795
- * Not Found
4796
- */
4797
- 404: Volo_Abp_Http_RemoteServiceErrorResponse;
4798
- /**
4799
- * Server Error
4800
- */
4801
- 500: Volo_Abp_Http_RemoteServiceErrorResponse;
4802
- /**
4803
- * Server Error
4804
- */
4805
- 501: Volo_Abp_Http_RemoteServiceErrorResponse;
4806
- };
4807
- };
4808
- };
4809
- '/api/crm-service/telephones/{id}': {
4810
- get: {
4811
- req: GetApiCrmServiceTelephonesByIdData;
4812
- res: {
4813
- /**
4814
- * Success
4815
- */
4816
- 200: UniRefund_CRMService_TelephoneTypes_TelephoneTypeDto;
4817
- /**
4818
- * Bad Request
4819
- */
4820
- 400: Volo_Abp_Http_RemoteServiceErrorResponse;
4821
- /**
4822
- * Unauthorized
4823
- */
4824
- 401: Volo_Abp_Http_RemoteServiceErrorResponse;
4825
- /**
4826
- * Forbidden
4827
- */
4828
- 403: Volo_Abp_Http_RemoteServiceErrorResponse;
4829
- /**
4830
- * Not Found
4831
- */
4832
- 404: Volo_Abp_Http_RemoteServiceErrorResponse;
4833
- /**
4834
- * Server Error
4835
- */
4836
- 500: Volo_Abp_Http_RemoteServiceErrorResponse;
4837
- /**
4838
- * Server Error
4839
- */
4840
- 501: Volo_Abp_Http_RemoteServiceErrorResponse;
4841
- };
4842
- };
4843
- put: {
4844
- req: PutApiCrmServiceTelephonesByIdData;
4845
- res: {
4846
- /**
4847
- * Success
4848
- */
4849
- 200: UniRefund_CRMService_TelephoneTypes_TelephoneTypeDto;
4850
- /**
4851
- * Bad Request
4852
- */
4853
- 400: Volo_Abp_Http_RemoteServiceErrorResponse;
4854
- /**
4855
- * Unauthorized
4856
- */
4857
- 401: Volo_Abp_Http_RemoteServiceErrorResponse;
4858
- /**
4859
- * Forbidden
4860
- */
4861
- 403: Volo_Abp_Http_RemoteServiceErrorResponse;
4862
- /**
4863
- * Not Found
4864
- */
4865
- 404: Volo_Abp_Http_RemoteServiceErrorResponse;
4866
- /**
4867
- * Server Error
4868
- */
4869
- 500: Volo_Abp_Http_RemoteServiceErrorResponse;
4870
- /**
4871
- * Server Error
4872
- */
4873
- 501: Volo_Abp_Http_RemoteServiceErrorResponse;
4874
- };
4875
- };
4876
- delete: {
4877
- req: DeleteApiCrmServiceTelephonesByIdData;
4878
- res: {
4879
- /**
4880
- * Success
4881
- */
4882
- 200: unknown;
4883
- /**
4884
- * Bad Request
4885
- */
4886
- 400: Volo_Abp_Http_RemoteServiceErrorResponse;
4887
- /**
4888
- * Unauthorized
4889
- */
4890
- 401: Volo_Abp_Http_RemoteServiceErrorResponse;
4891
- /**
4892
- * Forbidden
4893
- */
4894
- 403: Volo_Abp_Http_RemoteServiceErrorResponse;
4895
- /**
4896
- * Not Found
4897
- */
4898
- 404: Volo_Abp_Http_RemoteServiceErrorResponse;
4899
- /**
4900
- * Server Error
4901
- */
4902
- 500: Volo_Abp_Http_RemoteServiceErrorResponse;
4903
- /**
4904
- * Server Error
4905
- */
4906
- 501: Volo_Abp_Http_RemoteServiceErrorResponse;
4907
- };
4908
- };
4909
- };
4910
5105
  };