@ayasofyazilim/saas 0.0.95 → 0.0.97
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CRMService/CRMServiceClient.ts +3 -3
- package/CRMService/schemas.gen.ts +518 -830
- package/CRMService/services.gen.ts +311 -128
- package/CRMService/types.gen.ts +472 -223
- package/package.json +1 -1
package/CRMService/types.gen.ts
CHANGED
|
@@ -5,8 +5,8 @@ export type PagedResultDto_AffiliationCodeDto = {
|
|
|
5
5
|
totalCount?: number;
|
|
6
6
|
};
|
|
7
7
|
|
|
8
|
-
export type
|
|
9
|
-
items?: Array<
|
|
8
|
+
export type PagedResultDto_AffiliationTypeDetailDto = {
|
|
9
|
+
items?: Array<UniRefund_CRMService_AffiliationTypes_AffiliationTypeDetailDto> | null;
|
|
10
10
|
totalCount?: number;
|
|
11
11
|
};
|
|
12
12
|
|
|
@@ -50,11 +50,6 @@ export type PagedResultDto_TaxOfficeProfileDto = {
|
|
|
50
50
|
totalCount?: number;
|
|
51
51
|
};
|
|
52
52
|
|
|
53
|
-
export type PagedResultDto_UserDeviceNameDto = {
|
|
54
|
-
items?: Array<UniRefund_CRMService_RefundPoints_UserDeviceNameDto> | null;
|
|
55
|
-
totalCount?: number;
|
|
56
|
-
};
|
|
57
|
-
|
|
58
53
|
export type UniRefund_CRMService_AddressTypes_AddressTypeDto = {
|
|
59
54
|
contactInformationTypeId?: string;
|
|
60
55
|
locationServiceAddressId?: string;
|
|
@@ -71,18 +66,20 @@ export type UniRefund_CRMService_AffiliationCodes_AffiliationCodeDto = {
|
|
|
71
66
|
deletionTime?: string | null;
|
|
72
67
|
name?: string | null;
|
|
73
68
|
description?: string | null;
|
|
74
|
-
roleId?: string;
|
|
69
|
+
roleId?: string | null;
|
|
75
70
|
status?: UniRefund_CRMService_AffiliationCodes_AffiliationCodeStatus;
|
|
71
|
+
entityPartyTypeCode?: UniRefund_CRMService_Enums_EntityPartyTypeCode;
|
|
76
72
|
language?: string | null;
|
|
77
73
|
};
|
|
78
74
|
|
|
79
75
|
export type UniRefund_CRMService_AffiliationCodes_AffiliationCodeStatus = 'Waiting' | 'Approved' | 'Rejected';
|
|
80
76
|
|
|
81
77
|
export type UniRefund_CRMService_AffiliationCodes_CreateAffiliationCodeDto = {
|
|
82
|
-
name
|
|
78
|
+
name: string;
|
|
83
79
|
description?: string | null;
|
|
84
|
-
roleId?: string;
|
|
85
|
-
status
|
|
80
|
+
roleId?: string | null;
|
|
81
|
+
status: UniRefund_CRMService_AffiliationCodes_AffiliationCodeStatus;
|
|
82
|
+
entityPartyTypeCode: UniRefund_CRMService_Enums_EntityPartyTypeCode;
|
|
86
83
|
};
|
|
87
84
|
|
|
88
85
|
export type UniRefund_CRMService_AffiliationCodes_CreateUpdateAffiliationCodeTranslationDto = {
|
|
@@ -91,10 +88,22 @@ export type UniRefund_CRMService_AffiliationCodes_CreateUpdateAffiliationCodeTra
|
|
|
91
88
|
};
|
|
92
89
|
|
|
93
90
|
export type UniRefund_CRMService_AffiliationCodes_UpdateAffiliationCodeDto = {
|
|
94
|
-
name
|
|
91
|
+
name: string;
|
|
95
92
|
description?: string | null;
|
|
96
|
-
roleId?: string;
|
|
97
|
-
status
|
|
93
|
+
roleId?: string | null;
|
|
94
|
+
status: UniRefund_CRMService_AffiliationCodes_AffiliationCodeStatus;
|
|
95
|
+
entityPartyTypeCode: UniRefund_CRMService_Enums_EntityPartyTypeCode;
|
|
96
|
+
};
|
|
97
|
+
|
|
98
|
+
export type UniRefund_CRMService_AffiliationTypes_AffiliationTypeDetailDto = {
|
|
99
|
+
id?: string;
|
|
100
|
+
name: string;
|
|
101
|
+
codeId: number;
|
|
102
|
+
codeName: string;
|
|
103
|
+
entityInformationTypeCode: UniRefund_CRMService_Enums_EntityInformationTypeCode;
|
|
104
|
+
isAbpUser?: boolean | null;
|
|
105
|
+
email: string;
|
|
106
|
+
telephone: string;
|
|
98
107
|
};
|
|
99
108
|
|
|
100
109
|
export type UniRefund_CRMService_AffiliationTypes_AffiliationTypeDto = {
|
|
@@ -106,33 +115,31 @@ export type UniRefund_CRMService_AffiliationTypes_AffiliationTypeDto = {
|
|
|
106
115
|
isDeleted?: boolean;
|
|
107
116
|
deleterId?: string | null;
|
|
108
117
|
deletionTime?: string | null;
|
|
109
|
-
name?: string | null;
|
|
110
118
|
description?: string | null;
|
|
111
|
-
|
|
119
|
+
affiliationCode: UniRefund_CRMService_AffiliationCodes_AffiliationCodeDto;
|
|
120
|
+
partyId: string;
|
|
112
121
|
approvedUserId?: string | null;
|
|
113
122
|
approvedDate?: string | null;
|
|
114
|
-
merchantId?: string | null;
|
|
115
123
|
};
|
|
116
124
|
|
|
117
125
|
export type UniRefund_CRMService_AffiliationTypes_CreateAffiliationTypeDto = {
|
|
118
126
|
readonly extraProperties?: {
|
|
119
127
|
[key: string]: unknown;
|
|
120
128
|
} | null;
|
|
121
|
-
|
|
122
|
-
description: string;
|
|
129
|
+
description?: string | null;
|
|
123
130
|
affiliationCodeId: number;
|
|
124
|
-
partyId
|
|
131
|
+
partyId: string;
|
|
132
|
+
entityInformationTypeCode: UniRefund_CRMService_Enums_EntityInformationTypeCode;
|
|
125
133
|
};
|
|
126
134
|
|
|
127
135
|
export type UniRefund_CRMService_AffiliationTypes_UpdateAffiliationTypeDto = {
|
|
128
136
|
readonly extraProperties?: {
|
|
129
137
|
[key: string]: unknown;
|
|
130
138
|
} | null;
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
partyId?: string;
|
|
139
|
+
description?: string | null;
|
|
140
|
+
affiliationCodeId: number;
|
|
141
|
+
partyId: string;
|
|
142
|
+
entityInformationTypeCode: UniRefund_CRMService_Enums_EntityInformationTypeCode;
|
|
136
143
|
};
|
|
137
144
|
|
|
138
145
|
export type UniRefund_CRMService_ContactInformationTypes_ContactInformationTypeDto = {
|
|
@@ -183,7 +190,6 @@ export type UniRefund_CRMService_Customss_CreateCustomsOrganizationDto = {
|
|
|
183
190
|
} | null;
|
|
184
191
|
name: string;
|
|
185
192
|
taxpayerId: string;
|
|
186
|
-
branchId?: string | null;
|
|
187
193
|
contactInformations?: Array<UniRefund_CRMService_ContactInformationTypes_CreateContactInformationTypeDto> | null;
|
|
188
194
|
};
|
|
189
195
|
|
|
@@ -216,7 +222,6 @@ export type UniRefund_CRMService_Customss_UpdateCustomsOrganizationDto = {
|
|
|
216
222
|
name: string;
|
|
217
223
|
taxpayerId: string;
|
|
218
224
|
parentCompanyId?: string | null;
|
|
219
|
-
branchId?: string | null;
|
|
220
225
|
};
|
|
221
226
|
|
|
222
227
|
export type UniRefund_CRMService_EmailCommonDatas_CreateEmailCommonDataWithComponentsDto = {
|
|
@@ -269,8 +274,6 @@ export type UniRefund_CRMService_EntityInformationTypes_EntityInformationTypeDto
|
|
|
269
274
|
organizations?: Array<UniRefund_CRMService_Organizations_OrganizationDto> | null;
|
|
270
275
|
};
|
|
271
276
|
|
|
272
|
-
export type UniRefund_CRMService_Enums_AffiliationTypeCode = 'COFOUNDER' | 'PARTNER' | 'ABPUSER' | 'SUBCOMPANY' | 'ACCOUNTMANAGER' | 'Franchise';
|
|
273
|
-
|
|
274
277
|
export type UniRefund_CRMService_Enums_EmailTypeCode = 'WORK' | 'PERSONAL';
|
|
275
278
|
|
|
276
279
|
export type UniRefund_CRMService_Enums_EntityInformationTypeCode = 'INDIVIDUAL' | 'ORGANIZATION';
|
|
@@ -325,7 +328,6 @@ export type UniRefund_CRMService_Individuals_IndividualProfileDto = {
|
|
|
325
328
|
name?: string | null;
|
|
326
329
|
affiliationId?: string | null;
|
|
327
330
|
affiliationCode?: UniRefund_CRMService_AffiliationCodes_AffiliationCodeDto;
|
|
328
|
-
affiliationParentTypeCode?: UniRefund_CRMService_Enums_EntityPartyTypeCode;
|
|
329
331
|
};
|
|
330
332
|
|
|
331
333
|
export type UniRefund_CRMService_Individuals_UpdateIndividualDto = {
|
|
@@ -342,6 +344,7 @@ export type UniRefund_CRMService_Merchants_CreateMerchantDto = {
|
|
|
342
344
|
typeCode: UniRefund_CRMService_Merchants_MerchantTypeCode;
|
|
343
345
|
taxOfficeId: string;
|
|
344
346
|
parentId?: string | null;
|
|
347
|
+
customerNumber?: string | null;
|
|
345
348
|
entityInformationTypes: Array<UniRefund_CRMService_Merchants_CreateMerchantEntityInformationTypeDto>;
|
|
346
349
|
};
|
|
347
350
|
|
|
@@ -353,17 +356,6 @@ export type UniRefund_CRMService_Merchants_CreateMerchantEntityInformationTypeDt
|
|
|
353
356
|
organizations?: Array<UniRefund_CRMService_Merchants_CreateMerchantOrgnaizationDto> | null;
|
|
354
357
|
};
|
|
355
358
|
|
|
356
|
-
export type UniRefund_CRMService_Merchants_CreateMerchantIndividualDto = {
|
|
357
|
-
readonly extraProperties?: {
|
|
358
|
-
[key: string]: unknown;
|
|
359
|
-
} | null;
|
|
360
|
-
name?: UniRefund_CRMService_NameCommonDatas_CreateNameCommonDataDto;
|
|
361
|
-
personalSummaries?: Array<UniRefund_CRMService_PersonalSummaries_CreatePersonalSummaryDto> | null;
|
|
362
|
-
contactInformations?: Array<UniRefund_CRMService_ContactInformationTypes_CreateContactInformationTypeDto> | null;
|
|
363
|
-
createAbpUserAccount?: boolean;
|
|
364
|
-
affiliationCodeId: number;
|
|
365
|
-
};
|
|
366
|
-
|
|
367
359
|
export type UniRefund_CRMService_Merchants_CreateMerchantOrgnaizationDto = {
|
|
368
360
|
readonly extraProperties?: {
|
|
369
361
|
[key: string]: unknown;
|
|
@@ -371,8 +363,6 @@ export type UniRefund_CRMService_Merchants_CreateMerchantOrgnaizationDto = {
|
|
|
371
363
|
name: string;
|
|
372
364
|
taxpayerId: string;
|
|
373
365
|
legalStatusCode: string;
|
|
374
|
-
customerNumber?: string | null;
|
|
375
|
-
branchId?: string | null;
|
|
376
366
|
contactInformations: Array<UniRefund_CRMService_ContactInformationTypes_CreateContactInformationTypeDto>;
|
|
377
367
|
};
|
|
378
368
|
|
|
@@ -417,7 +407,7 @@ export type UniRefund_CRMService_Merchants_MerchantInfoDto = {
|
|
|
417
407
|
id?: string;
|
|
418
408
|
vatNumber?: string | null;
|
|
419
409
|
countryCode?: string | null;
|
|
420
|
-
|
|
410
|
+
customerNumber?: string | null;
|
|
421
411
|
};
|
|
422
412
|
|
|
423
413
|
export type UniRefund_CRMService_Merchants_MerchantNameDto = {
|
|
@@ -473,7 +463,6 @@ export type UniRefund_CRMService_Merchants_StoreProfilePagedResultDtoIntegration
|
|
|
473
463
|
export type UniRefund_CRMService_Merchants_SubIndividualDto = {
|
|
474
464
|
id?: string;
|
|
475
465
|
name: string;
|
|
476
|
-
affiliationTypeCode: UniRefund_CRMService_Enums_AffiliationTypeCode;
|
|
477
466
|
affiliationCode?: UniRefund_CRMService_AffiliationCodes_AffiliationCodeDto;
|
|
478
467
|
};
|
|
479
468
|
|
|
@@ -529,9 +518,6 @@ export type UniRefund_CRMService_Organizations_CreateOrganizationDto = {
|
|
|
529
518
|
name: string;
|
|
530
519
|
taxpayerId: string;
|
|
531
520
|
legalStatusCode: string;
|
|
532
|
-
customerNumber?: string | null;
|
|
533
|
-
branchId?: string | null;
|
|
534
|
-
parentCompanyId?: string | null;
|
|
535
521
|
contactInformations?: Array<UniRefund_CRMService_ContactInformationTypes_CreateContactInformationTypeDto> | null;
|
|
536
522
|
};
|
|
537
523
|
|
|
@@ -548,8 +534,6 @@ export type UniRefund_CRMService_Organizations_OrganizationDto = {
|
|
|
548
534
|
name?: string | null;
|
|
549
535
|
taxpayerId?: string | null;
|
|
550
536
|
legalStatusCode?: string | null;
|
|
551
|
-
customerNumber?: string | null;
|
|
552
|
-
readonly branchId?: string | null;
|
|
553
537
|
readonly countryCode?: string | null;
|
|
554
538
|
contactInformations?: Array<UniRefund_CRMService_ContactInformationTypes_ContactInformationTypeDto> | null;
|
|
555
539
|
};
|
|
@@ -559,7 +543,6 @@ export type UniRefund_CRMService_Organizations_OrganizationProfileDto = {
|
|
|
559
543
|
name?: string | null;
|
|
560
544
|
affiliationId?: string | null;
|
|
561
545
|
affiliationCode?: UniRefund_CRMService_AffiliationCodes_AffiliationCodeDto;
|
|
562
|
-
affiliationParentTypeCode?: UniRefund_CRMService_Enums_EntityPartyTypeCode;
|
|
563
546
|
};
|
|
564
547
|
|
|
565
548
|
export type UniRefund_CRMService_Organizations_UpdateOrganizationDto = {
|
|
@@ -569,9 +552,7 @@ export type UniRefund_CRMService_Organizations_UpdateOrganizationDto = {
|
|
|
569
552
|
name: string;
|
|
570
553
|
taxpayerId: string;
|
|
571
554
|
legalStatusCode?: string | null;
|
|
572
|
-
customerNumber?: string | null;
|
|
573
555
|
parentCompanyId?: string | null;
|
|
574
|
-
branchId?: string | null;
|
|
575
556
|
};
|
|
576
557
|
|
|
577
558
|
export type UniRefund_CRMService_PersonalSummaries_CreatePersonalSummaryDto = {
|
|
@@ -636,7 +617,6 @@ export type UniRefund_CRMService_RefundPoints_CreateRefundPointEntityInformation
|
|
|
636
617
|
export type UniRefund_CRMService_RefundPoints_CreateRefundPointOrganizationDto = {
|
|
637
618
|
name: string;
|
|
638
619
|
taxpayerId: string;
|
|
639
|
-
branchId?: string | null;
|
|
640
620
|
contactInformations: Array<UniRefund_CRMService_ContactInformationTypes_CreateContactInformationTypeDto>;
|
|
641
621
|
};
|
|
642
622
|
|
|
@@ -677,12 +657,6 @@ export type UniRefund_CRMService_RefundPoints_UpdateRefundPointOrganizationDto =
|
|
|
677
657
|
name: string;
|
|
678
658
|
taxpayerId: string;
|
|
679
659
|
parentCompanyId?: string | null;
|
|
680
|
-
branchId?: string | null;
|
|
681
|
-
};
|
|
682
|
-
|
|
683
|
-
export type UniRefund_CRMService_RefundPoints_UserDeviceNameDto = {
|
|
684
|
-
id: string;
|
|
685
|
-
name: string;
|
|
686
660
|
};
|
|
687
661
|
|
|
688
662
|
export type UniRefund_CRMService_TaxFrees_CreateTaxFreeDto = {
|
|
@@ -707,8 +681,6 @@ export type UniRefund_CRMService_TaxFrees_CreateTaxFreeOrganizationDto = {
|
|
|
707
681
|
name: string;
|
|
708
682
|
taxpayerId: string;
|
|
709
683
|
legalStatusCode: string;
|
|
710
|
-
customerNumber?: string | null;
|
|
711
|
-
branchId?: string | null;
|
|
712
684
|
contactInformations?: Array<UniRefund_CRMService_ContactInformationTypes_CreateContactInformationTypeDto> | null;
|
|
713
685
|
};
|
|
714
686
|
|
|
@@ -758,9 +730,6 @@ export type UniRefund_CRMService_TaxOffices_CreateTaxOfficeOrganizationDto = {
|
|
|
758
730
|
} | null;
|
|
759
731
|
name: string;
|
|
760
732
|
taxpayerId: string;
|
|
761
|
-
legalStatusCode: string;
|
|
762
|
-
customerNumber?: string | null;
|
|
763
|
-
branchId?: string | null;
|
|
764
733
|
contactInformations?: Array<UniRefund_CRMService_ContactInformationTypes_CreateContactInformationTypeDto> | null;
|
|
765
734
|
};
|
|
766
735
|
|
|
@@ -788,6 +757,14 @@ export type UniRefund_CRMService_TaxOffices_TaxOfficeProfileDto = {
|
|
|
788
757
|
organizationId?: string;
|
|
789
758
|
};
|
|
790
759
|
|
|
760
|
+
export type UniRefund_CRMService_TaxOffices_UpdateTaxOfficeOrganizationDto = {
|
|
761
|
+
readonly extraProperties?: {
|
|
762
|
+
[key: string]: unknown;
|
|
763
|
+
} | null;
|
|
764
|
+
name: string;
|
|
765
|
+
taxpayerId: string;
|
|
766
|
+
};
|
|
767
|
+
|
|
791
768
|
export type UniRefund_CRMService_TelephoneTypes_CreateTelephoneTypeWithComponentsDto = {
|
|
792
769
|
readonly extraProperties?: {
|
|
793
770
|
[key: string]: unknown;
|
|
@@ -1303,6 +1280,7 @@ export type GetApiAbpApplicationLocalizationData = {
|
|
|
1303
1280
|
export type GetApiAbpApplicationLocalizationResponse = Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationDto;
|
|
1304
1281
|
|
|
1305
1282
|
export type GetApiCrmServiceAffiliationCodesData = {
|
|
1283
|
+
entityPartyTypeCode?: UniRefund_CRMService_Enums_EntityPartyTypeCode;
|
|
1306
1284
|
maxResultCount?: number;
|
|
1307
1285
|
skipCount?: number;
|
|
1308
1286
|
sorting?: string;
|
|
@@ -1397,14 +1375,24 @@ export type PostApiCrmServiceCustomsByIdAffiliationsResponse = unknown;
|
|
|
1397
1375
|
|
|
1398
1376
|
export type GetApiCrmServiceCustomsByIdAffiliationsData = {
|
|
1399
1377
|
affiliationCodeId?: number;
|
|
1400
|
-
|
|
1378
|
+
email?: string;
|
|
1379
|
+
entityInformationTypeCode?: UniRefund_CRMService_Enums_EntityInformationTypeCode;
|
|
1401
1380
|
id: string;
|
|
1402
1381
|
maxResultCount?: number;
|
|
1382
|
+
name?: string;
|
|
1403
1383
|
skipCount?: number;
|
|
1404
1384
|
sorting?: string;
|
|
1385
|
+
telephone?: string;
|
|
1386
|
+
};
|
|
1387
|
+
|
|
1388
|
+
export type GetApiCrmServiceCustomsByIdAffiliationsResponse = PagedResultDto_AffiliationTypeDetailDto;
|
|
1389
|
+
|
|
1390
|
+
export type DeleteApiCrmServiceCustomsByIdAffiliationsByAffiliationIdData = {
|
|
1391
|
+
affiliationId: string;
|
|
1392
|
+
id: string;
|
|
1405
1393
|
};
|
|
1406
1394
|
|
|
1407
|
-
export type
|
|
1395
|
+
export type DeleteApiCrmServiceCustomsByIdAffiliationsByAffiliationIdResponse = unknown;
|
|
1408
1396
|
|
|
1409
1397
|
export type PutApiCrmServiceCustomsByIdOrganizationsByOrganizationIdData = {
|
|
1410
1398
|
id: string;
|
|
@@ -1445,6 +1433,12 @@ export type GetApiCrmServiceCustomsByIdAffilatedIndividualsData = {
|
|
|
1445
1433
|
|
|
1446
1434
|
export type GetApiCrmServiceCustomsByIdAffilatedIndividualsResponse = Array<UniRefund_CRMService_Merchants_SubIndividualDto>;
|
|
1447
1435
|
|
|
1436
|
+
export type GetIntegrationApiCustomsByIdExistData = {
|
|
1437
|
+
id: string;
|
|
1438
|
+
};
|
|
1439
|
+
|
|
1440
|
+
export type GetIntegrationApiCustomsByIdExistResponse = unknown;
|
|
1441
|
+
|
|
1448
1442
|
export type PostApiCrmServiceIndividualsWithComponentsData = {
|
|
1449
1443
|
requestBody?: UniRefund_CRMService_Individuals_CreateIndividualDto;
|
|
1450
1444
|
};
|
|
@@ -1464,7 +1458,6 @@ export type GetApiCrmServiceIndividualsByIdData = {
|
|
|
1464
1458
|
export type GetApiCrmServiceIndividualsByIdResponse = UniRefund_CRMService_Individuals_IndividualProfileDto;
|
|
1465
1459
|
|
|
1466
1460
|
export type GetApiCrmServiceIndividualsData = {
|
|
1467
|
-
affiliationTypes?: Array<UniRefund_CRMService_Enums_AffiliationTypeCode>;
|
|
1468
1461
|
email?: string;
|
|
1469
1462
|
entityPartyTypeCodes?: Array<UniRefund_CRMService_Enums_EntityPartyTypeCode>;
|
|
1470
1463
|
maxResultCount?: number;
|
|
@@ -1488,20 +1481,6 @@ export type GetApiCrmServiceIndividualsByIdAffiliationsData = {
|
|
|
1488
1481
|
|
|
1489
1482
|
export type GetApiCrmServiceIndividualsByIdAffiliationsResponse = UniRefund_CRMService_Individuals_IndividualAffiliationsDto;
|
|
1490
1483
|
|
|
1491
|
-
export type GetIntegrationApiIndividualsUserDevicesNamesData = {
|
|
1492
|
-
ids: Array<(string)>;
|
|
1493
|
-
};
|
|
1494
|
-
|
|
1495
|
-
export type GetIntegrationApiIndividualsUserDevicesNamesResponse = Array<UniRefund_CRMService_RefundPoints_UserDeviceNameDto>;
|
|
1496
|
-
|
|
1497
|
-
export type GetIntegrationApiIndividualsAllUserDevicesNamesData = {
|
|
1498
|
-
ids: Array<(string)>;
|
|
1499
|
-
maxResultCount?: number;
|
|
1500
|
-
skipCount?: number;
|
|
1501
|
-
};
|
|
1502
|
-
|
|
1503
|
-
export type GetIntegrationApiIndividualsAllUserDevicesNamesResponse = PagedResultDto_UserDeviceNameDto;
|
|
1504
|
-
|
|
1505
1484
|
export type GetApiCrmServiceMerchantsData = {
|
|
1506
1485
|
ids?: Array<(string)>;
|
|
1507
1486
|
maxResultCount?: number;
|
|
@@ -1542,19 +1521,6 @@ export type GetApiCrmServiceMerchantsByIdSubMerchantsData = {
|
|
|
1542
1521
|
|
|
1543
1522
|
export type GetApiCrmServiceMerchantsByIdSubMerchantsResponse = UniRefund_CRMService_Merchants_StoreProfilePagedResultDto;
|
|
1544
1523
|
|
|
1545
|
-
export type GetApiCrmServiceMerchantsByIdAffiliatedIndividualsData = {
|
|
1546
|
-
id: string;
|
|
1547
|
-
};
|
|
1548
|
-
|
|
1549
|
-
export type GetApiCrmServiceMerchantsByIdAffiliatedIndividualsResponse = Array<UniRefund_CRMService_Merchants_SubIndividualDto>;
|
|
1550
|
-
|
|
1551
|
-
export type PostApiCrmServiceMerchantsByIdAffiliatedIndividualsData = {
|
|
1552
|
-
id: string;
|
|
1553
|
-
requestBody?: UniRefund_CRMService_Merchants_CreateMerchantIndividualDto;
|
|
1554
|
-
};
|
|
1555
|
-
|
|
1556
|
-
export type PostApiCrmServiceMerchantsByIdAffiliatedIndividualsResponse = UniRefund_CRMService_Individuals_IndividualDto;
|
|
1557
|
-
|
|
1558
1524
|
export type PostApiCrmServiceMerchantsWithComponentsData = {
|
|
1559
1525
|
requestBody?: UniRefund_CRMService_Merchants_CreateMerchantDto;
|
|
1560
1526
|
};
|
|
@@ -1569,14 +1535,17 @@ export type DeleteApiCrmServiceMerchantsByIdWithComponentsResponse = unknown;
|
|
|
1569
1535
|
|
|
1570
1536
|
export type GetApiCrmServiceMerchantsByIdAffiliationsData = {
|
|
1571
1537
|
affiliationCodeId?: number;
|
|
1572
|
-
|
|
1538
|
+
email?: string;
|
|
1539
|
+
entityInformationTypeCode?: UniRefund_CRMService_Enums_EntityInformationTypeCode;
|
|
1573
1540
|
id: string;
|
|
1574
1541
|
maxResultCount?: number;
|
|
1542
|
+
name?: string;
|
|
1575
1543
|
skipCount?: number;
|
|
1576
1544
|
sorting?: string;
|
|
1545
|
+
telephone?: string;
|
|
1577
1546
|
};
|
|
1578
1547
|
|
|
1579
|
-
export type GetApiCrmServiceMerchantsByIdAffiliationsResponse =
|
|
1548
|
+
export type GetApiCrmServiceMerchantsByIdAffiliationsResponse = PagedResultDto_AffiliationTypeDetailDto;
|
|
1580
1549
|
|
|
1581
1550
|
export type PostApiCrmServiceMerchantsByIdAffiliationsData = {
|
|
1582
1551
|
id: string;
|
|
@@ -1689,13 +1658,33 @@ export type GetIntegrationApiMerchantsByIdBasicInformationData = {
|
|
|
1689
1658
|
export type GetIntegrationApiMerchantsByIdBasicInformationResponse = UniRefund_CRMService_Merchants_MerchantBasicInformationDto;
|
|
1690
1659
|
|
|
1691
1660
|
export type GetIntegrationApiMerchantsInfoData = {
|
|
1692
|
-
branchId?: string;
|
|
1693
1661
|
countryCode?: string;
|
|
1662
|
+
customerNumber?: string;
|
|
1694
1663
|
vatNumber?: string;
|
|
1695
1664
|
};
|
|
1696
1665
|
|
|
1697
1666
|
export type GetIntegrationApiMerchantsInfoResponse = UniRefund_CRMService_Merchants_MerchantInfoDto;
|
|
1698
1667
|
|
|
1668
|
+
export type GetIntegrationApiMerchantsByIdParentIdOrSelfIdData = {
|
|
1669
|
+
id: string;
|
|
1670
|
+
};
|
|
1671
|
+
|
|
1672
|
+
export type GetIntegrationApiMerchantsByIdParentIdOrSelfIdResponse = string;
|
|
1673
|
+
|
|
1674
|
+
export type GetIntegrationApiMerchantsByIdSubsData = {
|
|
1675
|
+
id: string;
|
|
1676
|
+
};
|
|
1677
|
+
|
|
1678
|
+
export type GetIntegrationApiMerchantsByIdSubsResponse = Array<(string)>;
|
|
1679
|
+
|
|
1680
|
+
export type GetIntegrationApiMerchantsNamesData = {
|
|
1681
|
+
ids?: Array<(string)>;
|
|
1682
|
+
};
|
|
1683
|
+
|
|
1684
|
+
export type GetIntegrationApiMerchantsNamesResponse = {
|
|
1685
|
+
[key: string]: (string);
|
|
1686
|
+
};
|
|
1687
|
+
|
|
1699
1688
|
export type GetIntegrationApiMerchantsByIdEnsureExistData = {
|
|
1700
1689
|
id: string;
|
|
1701
1690
|
parentId?: string;
|
|
@@ -1767,6 +1756,16 @@ export type GetApiCrmServiceRefundPointsData = {
|
|
|
1767
1756
|
|
|
1768
1757
|
export type GetApiCrmServiceRefundPointsResponse = PagedResultDto_RefundPointProfileDto;
|
|
1769
1758
|
|
|
1759
|
+
export type GetApiCrmServiceRefundPointsAccessibleData = {
|
|
1760
|
+
ids?: Array<(string)>;
|
|
1761
|
+
maxResultCount?: number;
|
|
1762
|
+
name?: string;
|
|
1763
|
+
skipCount?: number;
|
|
1764
|
+
sorting?: string;
|
|
1765
|
+
};
|
|
1766
|
+
|
|
1767
|
+
export type GetApiCrmServiceRefundPointsAccessibleResponse = PagedResultDto_RefundPointProfileDto;
|
|
1768
|
+
|
|
1770
1769
|
export type GetApiCrmServiceRefundPointsByIdData = {
|
|
1771
1770
|
id: string;
|
|
1772
1771
|
};
|
|
@@ -1806,14 +1805,24 @@ export type PostApiCrmServiceRefundPointsByIdAffiliationsResponse = unknown;
|
|
|
1806
1805
|
|
|
1807
1806
|
export type GetApiCrmServiceRefundPointsByIdAffiliationsData = {
|
|
1808
1807
|
affiliationCodeId?: number;
|
|
1809
|
-
|
|
1808
|
+
email?: string;
|
|
1809
|
+
entityInformationTypeCode?: UniRefund_CRMService_Enums_EntityInformationTypeCode;
|
|
1810
1810
|
id: string;
|
|
1811
1811
|
maxResultCount?: number;
|
|
1812
|
+
name?: string;
|
|
1812
1813
|
skipCount?: number;
|
|
1813
1814
|
sorting?: string;
|
|
1815
|
+
telephone?: string;
|
|
1816
|
+
};
|
|
1817
|
+
|
|
1818
|
+
export type GetApiCrmServiceRefundPointsByIdAffiliationsResponse = PagedResultDto_AffiliationTypeDetailDto;
|
|
1819
|
+
|
|
1820
|
+
export type DeleteApiCrmServiceRefundPointsByIdAffiliationsByAffiliationIdData = {
|
|
1821
|
+
affiliationId: string;
|
|
1822
|
+
id: string;
|
|
1814
1823
|
};
|
|
1815
1824
|
|
|
1816
|
-
export type
|
|
1825
|
+
export type DeleteApiCrmServiceRefundPointsByIdAffiliationsByAffiliationIdResponse = unknown;
|
|
1817
1826
|
|
|
1818
1827
|
export type PutApiCrmServiceRefundPointsByIdOrganizationsByOrganizationIdData = {
|
|
1819
1828
|
id: string;
|
|
@@ -1859,6 +1868,12 @@ export type GetApiCrmServiceRefundPointsByIdAddressesData = {
|
|
|
1859
1868
|
|
|
1860
1869
|
export type GetApiCrmServiceRefundPointsByIdAddressesResponse = Array<UniRefund_LocationService_AddressCommonDatas_AddressCommonDataDto>;
|
|
1861
1870
|
|
|
1871
|
+
export type GetIntegrationApiRefundPointsByIdParentIdOrSelfIdData = {
|
|
1872
|
+
id: string;
|
|
1873
|
+
};
|
|
1874
|
+
|
|
1875
|
+
export type GetIntegrationApiRefundPointsByIdParentIdOrSelfIdResponse = string;
|
|
1876
|
+
|
|
1862
1877
|
export type GetIntegrationApiRefundPointsData = {
|
|
1863
1878
|
ids?: Array<(string)>;
|
|
1864
1879
|
maxResultCount?: number;
|
|
@@ -1938,14 +1953,24 @@ export type PostApiCrmServiceTaxFreesByIdAffiliationsResponse = unknown;
|
|
|
1938
1953
|
|
|
1939
1954
|
export type GetApiCrmServiceTaxFreesByIdAffiliationsData = {
|
|
1940
1955
|
affiliationCodeId?: number;
|
|
1941
|
-
|
|
1956
|
+
email?: string;
|
|
1957
|
+
entityInformationTypeCode?: UniRefund_CRMService_Enums_EntityInformationTypeCode;
|
|
1942
1958
|
id: string;
|
|
1943
1959
|
maxResultCount?: number;
|
|
1960
|
+
name?: string;
|
|
1944
1961
|
skipCount?: number;
|
|
1945
1962
|
sorting?: string;
|
|
1963
|
+
telephone?: string;
|
|
1964
|
+
};
|
|
1965
|
+
|
|
1966
|
+
export type GetApiCrmServiceTaxFreesByIdAffiliationsResponse = PagedResultDto_AffiliationTypeDetailDto;
|
|
1967
|
+
|
|
1968
|
+
export type DeleteApiCrmServiceTaxFreesByIdAffiliationsByAffiliationIdData = {
|
|
1969
|
+
affiliationId: string;
|
|
1970
|
+
id: string;
|
|
1946
1971
|
};
|
|
1947
1972
|
|
|
1948
|
-
export type
|
|
1973
|
+
export type DeleteApiCrmServiceTaxFreesByIdAffiliationsByAffiliationIdResponse = unknown;
|
|
1949
1974
|
|
|
1950
1975
|
export type PutApiCrmServiceTaxFreesByIdOrganizationsByOrganizationIdData = {
|
|
1951
1976
|
id: string;
|
|
@@ -2033,19 +2058,29 @@ export type PostApiCrmServiceTaxOfficesByIdAffiliationsResponse = unknown;
|
|
|
2033
2058
|
|
|
2034
2059
|
export type GetApiCrmServiceTaxOfficesByIdAffiliationsData = {
|
|
2035
2060
|
affiliationCodeId?: number;
|
|
2036
|
-
|
|
2061
|
+
email?: string;
|
|
2062
|
+
entityInformationTypeCode?: UniRefund_CRMService_Enums_EntityInformationTypeCode;
|
|
2037
2063
|
id: string;
|
|
2038
2064
|
maxResultCount?: number;
|
|
2065
|
+
name?: string;
|
|
2039
2066
|
skipCount?: number;
|
|
2040
2067
|
sorting?: string;
|
|
2068
|
+
telephone?: string;
|
|
2069
|
+
};
|
|
2070
|
+
|
|
2071
|
+
export type GetApiCrmServiceTaxOfficesByIdAffiliationsResponse = PagedResultDto_AffiliationTypeDetailDto;
|
|
2072
|
+
|
|
2073
|
+
export type DeleteApiCrmServiceTaxOfficesByIdAffiliationsByAffiliationIdData = {
|
|
2074
|
+
affiliationId: string;
|
|
2075
|
+
id: string;
|
|
2041
2076
|
};
|
|
2042
2077
|
|
|
2043
|
-
export type
|
|
2078
|
+
export type DeleteApiCrmServiceTaxOfficesByIdAffiliationsByAffiliationIdResponse = unknown;
|
|
2044
2079
|
|
|
2045
2080
|
export type PutApiCrmServiceTaxOfficesByIdOrganizationsByOrganizationIdData = {
|
|
2046
2081
|
id: string;
|
|
2047
2082
|
organizationId: string;
|
|
2048
|
-
requestBody?:
|
|
2083
|
+
requestBody?: UniRefund_CRMService_TaxOffices_UpdateTaxOfficeOrganizationDto;
|
|
2049
2084
|
};
|
|
2050
2085
|
|
|
2051
2086
|
export type PutApiCrmServiceTaxOfficesByIdOrganizationsByOrganizationIdResponse = UniRefund_CRMService_Organizations_OrganizationDto;
|
|
@@ -2685,7 +2720,7 @@ export type $OpenApiTs = {
|
|
|
2685
2720
|
/**
|
|
2686
2721
|
* Success
|
|
2687
2722
|
*/
|
|
2688
|
-
200:
|
|
2723
|
+
200: PagedResultDto_AffiliationTypeDetailDto;
|
|
2689
2724
|
/**
|
|
2690
2725
|
* Bad Request
|
|
2691
2726
|
*/
|
|
@@ -2713,14 +2748,14 @@ export type $OpenApiTs = {
|
|
|
2713
2748
|
};
|
|
2714
2749
|
};
|
|
2715
2750
|
};
|
|
2716
|
-
'/api/crm-service/customs/{id}/
|
|
2717
|
-
|
|
2718
|
-
req:
|
|
2751
|
+
'/api/crm-service/customs/{id}/affiliations/{affiliationId}': {
|
|
2752
|
+
delete: {
|
|
2753
|
+
req: DeleteApiCrmServiceCustomsByIdAffiliationsByAffiliationIdData;
|
|
2719
2754
|
res: {
|
|
2720
2755
|
/**
|
|
2721
2756
|
* Success
|
|
2722
2757
|
*/
|
|
2723
|
-
200:
|
|
2758
|
+
200: unknown;
|
|
2724
2759
|
/**
|
|
2725
2760
|
* Bad Request
|
|
2726
2761
|
*/
|
|
@@ -2748,14 +2783,14 @@ export type $OpenApiTs = {
|
|
|
2748
2783
|
};
|
|
2749
2784
|
};
|
|
2750
2785
|
};
|
|
2751
|
-
'/api/crm-service/customs/{id}/
|
|
2786
|
+
'/api/crm-service/customs/{id}/organizations/{organizationId}': {
|
|
2752
2787
|
put: {
|
|
2753
|
-
req:
|
|
2788
|
+
req: PutApiCrmServiceCustomsByIdOrganizationsByOrganizationIdData;
|
|
2754
2789
|
res: {
|
|
2755
2790
|
/**
|
|
2756
2791
|
* Success
|
|
2757
2792
|
*/
|
|
2758
|
-
200:
|
|
2793
|
+
200: UniRefund_CRMService_Organizations_OrganizationDto;
|
|
2759
2794
|
/**
|
|
2760
2795
|
* Bad Request
|
|
2761
2796
|
*/
|
|
@@ -2783,14 +2818,14 @@ export type $OpenApiTs = {
|
|
|
2783
2818
|
};
|
|
2784
2819
|
};
|
|
2785
2820
|
};
|
|
2786
|
-
'/api/crm-service/customs/{id}/
|
|
2821
|
+
'/api/crm-service/customs/{id}/telephones/{telephoneId}': {
|
|
2787
2822
|
put: {
|
|
2788
|
-
req:
|
|
2823
|
+
req: PutApiCrmServiceCustomsByIdTelephonesByTelephoneIdData;
|
|
2789
2824
|
res: {
|
|
2790
2825
|
/**
|
|
2791
2826
|
* Success
|
|
2792
2827
|
*/
|
|
2793
|
-
200:
|
|
2828
|
+
200: UniRefund_CRMService_TelephoneTypes_TelephoneTypeDto;
|
|
2794
2829
|
/**
|
|
2795
2830
|
* Bad Request
|
|
2796
2831
|
*/
|
|
@@ -2818,14 +2853,14 @@ export type $OpenApiTs = {
|
|
|
2818
2853
|
};
|
|
2819
2854
|
};
|
|
2820
2855
|
};
|
|
2821
|
-
'/api/crm-service/customs/{id}/
|
|
2856
|
+
'/api/crm-service/customs/{id}/addresses/{addressId}': {
|
|
2822
2857
|
put: {
|
|
2823
|
-
req:
|
|
2858
|
+
req: PutApiCrmServiceCustomsByIdAddressesByAddressIdData;
|
|
2824
2859
|
res: {
|
|
2825
2860
|
/**
|
|
2826
2861
|
* Success
|
|
2827
2862
|
*/
|
|
2828
|
-
200:
|
|
2863
|
+
200: UniRefund_CRMService_AddressTypes_AddressTypeDto;
|
|
2829
2864
|
/**
|
|
2830
2865
|
* Bad Request
|
|
2831
2866
|
*/
|
|
@@ -2853,14 +2888,14 @@ export type $OpenApiTs = {
|
|
|
2853
2888
|
};
|
|
2854
2889
|
};
|
|
2855
2890
|
};
|
|
2856
|
-
'/api/crm-service/customs/{id}/
|
|
2857
|
-
|
|
2858
|
-
req:
|
|
2891
|
+
'/api/crm-service/customs/{id}/emails/{emailId}': {
|
|
2892
|
+
put: {
|
|
2893
|
+
req: PutApiCrmServiceCustomsByIdEmailsByEmailIdData;
|
|
2859
2894
|
res: {
|
|
2860
2895
|
/**
|
|
2861
2896
|
* Success
|
|
2862
2897
|
*/
|
|
2863
|
-
200:
|
|
2898
|
+
200: UniRefund_CRMService_EmailCommonDatas_EmailCommonDataDto;
|
|
2864
2899
|
/**
|
|
2865
2900
|
* Bad Request
|
|
2866
2901
|
*/
|
|
@@ -2888,14 +2923,14 @@ export type $OpenApiTs = {
|
|
|
2888
2923
|
};
|
|
2889
2924
|
};
|
|
2890
2925
|
};
|
|
2891
|
-
'/api/crm-service/
|
|
2892
|
-
|
|
2893
|
-
req:
|
|
2926
|
+
'/api/crm-service/customs/{id}/affilated-individuals': {
|
|
2927
|
+
get: {
|
|
2928
|
+
req: GetApiCrmServiceCustomsByIdAffilatedIndividualsData;
|
|
2894
2929
|
res: {
|
|
2895
2930
|
/**
|
|
2896
2931
|
* Success
|
|
2897
2932
|
*/
|
|
2898
|
-
200:
|
|
2933
|
+
200: Array<UniRefund_CRMService_Merchants_SubIndividualDto>;
|
|
2899
2934
|
/**
|
|
2900
2935
|
* Bad Request
|
|
2901
2936
|
*/
|
|
@@ -2923,9 +2958,9 @@ export type $OpenApiTs = {
|
|
|
2923
2958
|
};
|
|
2924
2959
|
};
|
|
2925
2960
|
};
|
|
2926
|
-
'/api/
|
|
2927
|
-
|
|
2928
|
-
req:
|
|
2961
|
+
'/integration-api/customs/{id}/exist': {
|
|
2962
|
+
get: {
|
|
2963
|
+
req: GetIntegrationApiCustomsByIdExistData;
|
|
2929
2964
|
res: {
|
|
2930
2965
|
/**
|
|
2931
2966
|
* Success
|
|
@@ -2957,13 +2992,15 @@ export type $OpenApiTs = {
|
|
|
2957
2992
|
501: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2958
2993
|
};
|
|
2959
2994
|
};
|
|
2960
|
-
|
|
2961
|
-
|
|
2995
|
+
};
|
|
2996
|
+
'/api/crm-service/individuals/with-components': {
|
|
2997
|
+
post: {
|
|
2998
|
+
req: PostApiCrmServiceIndividualsWithComponentsData;
|
|
2962
2999
|
res: {
|
|
2963
3000
|
/**
|
|
2964
3001
|
* Success
|
|
2965
3002
|
*/
|
|
2966
|
-
200:
|
|
3003
|
+
200: UniRefund_CRMService_Individuals_IndividualDto;
|
|
2967
3004
|
/**
|
|
2968
3005
|
* Bad Request
|
|
2969
3006
|
*/
|
|
@@ -2991,14 +3028,14 @@ export type $OpenApiTs = {
|
|
|
2991
3028
|
};
|
|
2992
3029
|
};
|
|
2993
3030
|
};
|
|
2994
|
-
'/api/crm-service/individuals': {
|
|
2995
|
-
|
|
2996
|
-
req:
|
|
3031
|
+
'/api/crm-service/individuals/{id}': {
|
|
3032
|
+
delete: {
|
|
3033
|
+
req: DeleteApiCrmServiceIndividualsByIdData;
|
|
2997
3034
|
res: {
|
|
2998
3035
|
/**
|
|
2999
3036
|
* Success
|
|
3000
3037
|
*/
|
|
3001
|
-
200:
|
|
3038
|
+
200: unknown;
|
|
3002
3039
|
/**
|
|
3003
3040
|
* Bad Request
|
|
3004
3041
|
*/
|
|
@@ -3025,15 +3062,13 @@ export type $OpenApiTs = {
|
|
|
3025
3062
|
501: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
3026
3063
|
};
|
|
3027
3064
|
};
|
|
3028
|
-
};
|
|
3029
|
-
'/api/crm-service/individuals/{id}/affiliations': {
|
|
3030
3065
|
get: {
|
|
3031
|
-
req:
|
|
3066
|
+
req: GetApiCrmServiceIndividualsByIdData;
|
|
3032
3067
|
res: {
|
|
3033
3068
|
/**
|
|
3034
3069
|
* Success
|
|
3035
3070
|
*/
|
|
3036
|
-
200:
|
|
3071
|
+
200: UniRefund_CRMService_Individuals_IndividualProfileDto;
|
|
3037
3072
|
/**
|
|
3038
3073
|
* Bad Request
|
|
3039
3074
|
*/
|
|
@@ -3061,14 +3096,14 @@ export type $OpenApiTs = {
|
|
|
3061
3096
|
};
|
|
3062
3097
|
};
|
|
3063
3098
|
};
|
|
3064
|
-
'/
|
|
3099
|
+
'/api/crm-service/individuals': {
|
|
3065
3100
|
get: {
|
|
3066
|
-
req:
|
|
3101
|
+
req: GetApiCrmServiceIndividualsData;
|
|
3067
3102
|
res: {
|
|
3068
3103
|
/**
|
|
3069
3104
|
* Success
|
|
3070
3105
|
*/
|
|
3071
|
-
200:
|
|
3106
|
+
200: PagedResultDto_IndividualProfileDto;
|
|
3072
3107
|
/**
|
|
3073
3108
|
* Bad Request
|
|
3074
3109
|
*/
|
|
@@ -3096,14 +3131,14 @@ export type $OpenApiTs = {
|
|
|
3096
3131
|
};
|
|
3097
3132
|
};
|
|
3098
3133
|
};
|
|
3099
|
-
'/
|
|
3134
|
+
'/api/crm-service/individuals/{id}/affiliations': {
|
|
3100
3135
|
get: {
|
|
3101
|
-
req:
|
|
3136
|
+
req: GetApiCrmServiceIndividualsByIdAffiliationsData;
|
|
3102
3137
|
res: {
|
|
3103
3138
|
/**
|
|
3104
3139
|
* Success
|
|
3105
3140
|
*/
|
|
3106
|
-
200:
|
|
3141
|
+
200: UniRefund_CRMService_Individuals_IndividualAffiliationsDto;
|
|
3107
3142
|
/**
|
|
3108
3143
|
* Bad Request
|
|
3109
3144
|
*/
|
|
@@ -3304,14 +3339,14 @@ export type $OpenApiTs = {
|
|
|
3304
3339
|
};
|
|
3305
3340
|
};
|
|
3306
3341
|
};
|
|
3307
|
-
'/api/crm-service/merchants/
|
|
3308
|
-
|
|
3309
|
-
req:
|
|
3342
|
+
'/api/crm-service/merchants/with-components': {
|
|
3343
|
+
post: {
|
|
3344
|
+
req: PostApiCrmServiceMerchantsWithComponentsData;
|
|
3310
3345
|
res: {
|
|
3311
3346
|
/**
|
|
3312
3347
|
* Success
|
|
3313
3348
|
*/
|
|
3314
|
-
200:
|
|
3349
|
+
200: UniRefund_CRMService_Merchants_MerchantProfileDto;
|
|
3315
3350
|
/**
|
|
3316
3351
|
* Bad Request
|
|
3317
3352
|
*/
|
|
@@ -3338,13 +3373,15 @@ export type $OpenApiTs = {
|
|
|
3338
3373
|
501: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
3339
3374
|
};
|
|
3340
3375
|
};
|
|
3341
|
-
|
|
3342
|
-
|
|
3376
|
+
};
|
|
3377
|
+
'/api/crm-service/merchants/{id}/with-components': {
|
|
3378
|
+
delete: {
|
|
3379
|
+
req: DeleteApiCrmServiceMerchantsByIdWithComponentsData;
|
|
3343
3380
|
res: {
|
|
3344
3381
|
/**
|
|
3345
3382
|
* Success
|
|
3346
3383
|
*/
|
|
3347
|
-
200:
|
|
3384
|
+
200: unknown;
|
|
3348
3385
|
/**
|
|
3349
3386
|
* Bad Request
|
|
3350
3387
|
*/
|
|
@@ -3372,14 +3409,14 @@ export type $OpenApiTs = {
|
|
|
3372
3409
|
};
|
|
3373
3410
|
};
|
|
3374
3411
|
};
|
|
3375
|
-
'/api/crm-service/merchants/
|
|
3376
|
-
|
|
3377
|
-
req:
|
|
3412
|
+
'/api/crm-service/merchants/{id}/affiliations': {
|
|
3413
|
+
get: {
|
|
3414
|
+
req: GetApiCrmServiceMerchantsByIdAffiliationsData;
|
|
3378
3415
|
res: {
|
|
3379
3416
|
/**
|
|
3380
3417
|
* Success
|
|
3381
3418
|
*/
|
|
3382
|
-
200:
|
|
3419
|
+
200: PagedResultDto_AffiliationTypeDetailDto;
|
|
3383
3420
|
/**
|
|
3384
3421
|
* Bad Request
|
|
3385
3422
|
*/
|
|
@@ -3406,10 +3443,8 @@ export type $OpenApiTs = {
|
|
|
3406
3443
|
501: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
3407
3444
|
};
|
|
3408
3445
|
};
|
|
3409
|
-
|
|
3410
|
-
|
|
3411
|
-
delete: {
|
|
3412
|
-
req: DeleteApiCrmServiceMerchantsByIdWithComponentsData;
|
|
3446
|
+
post: {
|
|
3447
|
+
req: PostApiCrmServiceMerchantsByIdAffiliationsData;
|
|
3413
3448
|
res: {
|
|
3414
3449
|
/**
|
|
3415
3450
|
* Success
|
|
@@ -3442,14 +3477,14 @@ export type $OpenApiTs = {
|
|
|
3442
3477
|
};
|
|
3443
3478
|
};
|
|
3444
3479
|
};
|
|
3445
|
-
'/api/crm-service/merchants/{id}/affiliations': {
|
|
3446
|
-
|
|
3447
|
-
req:
|
|
3480
|
+
'/api/crm-service/merchants/{id}/affiliations/{affiliationId}': {
|
|
3481
|
+
delete: {
|
|
3482
|
+
req: DeleteApiCrmServiceMerchantsByIdAffiliationsByAffiliationIdData;
|
|
3448
3483
|
res: {
|
|
3449
3484
|
/**
|
|
3450
3485
|
* Success
|
|
3451
3486
|
*/
|
|
3452
|
-
200:
|
|
3487
|
+
200: unknown;
|
|
3453
3488
|
/**
|
|
3454
3489
|
* Bad Request
|
|
3455
3490
|
*/
|
|
@@ -3476,13 +3511,13 @@ export type $OpenApiTs = {
|
|
|
3476
3511
|
501: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
3477
3512
|
};
|
|
3478
3513
|
};
|
|
3479
|
-
|
|
3480
|
-
req:
|
|
3514
|
+
put: {
|
|
3515
|
+
req: PutApiCrmServiceMerchantsByIdAffiliationsByAffiliationIdData;
|
|
3481
3516
|
res: {
|
|
3482
3517
|
/**
|
|
3483
3518
|
* Success
|
|
3484
3519
|
*/
|
|
3485
|
-
200:
|
|
3520
|
+
200: UniRefund_CRMService_AffiliationTypes_AffiliationTypeDto;
|
|
3486
3521
|
/**
|
|
3487
3522
|
* Bad Request
|
|
3488
3523
|
*/
|
|
@@ -3510,14 +3545,14 @@ export type $OpenApiTs = {
|
|
|
3510
3545
|
};
|
|
3511
3546
|
};
|
|
3512
3547
|
};
|
|
3513
|
-
'/api/crm-service/merchants/{id}/
|
|
3514
|
-
|
|
3515
|
-
req:
|
|
3548
|
+
'/api/crm-service/merchants/{id}/organizations/{organizationId}': {
|
|
3549
|
+
put: {
|
|
3550
|
+
req: PutApiCrmServiceMerchantsByIdOrganizationsByOrganizationIdData;
|
|
3516
3551
|
res: {
|
|
3517
3552
|
/**
|
|
3518
3553
|
* Success
|
|
3519
3554
|
*/
|
|
3520
|
-
200:
|
|
3555
|
+
200: UniRefund_CRMService_Organizations_OrganizationDto;
|
|
3521
3556
|
/**
|
|
3522
3557
|
* Bad Request
|
|
3523
3558
|
*/
|
|
@@ -3544,13 +3579,15 @@ export type $OpenApiTs = {
|
|
|
3544
3579
|
501: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
3545
3580
|
};
|
|
3546
3581
|
};
|
|
3582
|
+
};
|
|
3583
|
+
'/api/crm-service/merchants/{id}/affiliated-individuals/{individualId}': {
|
|
3547
3584
|
put: {
|
|
3548
|
-
req:
|
|
3585
|
+
req: PutApiCrmServiceMerchantsByIdAffiliatedIndividualsByIndividualIdData;
|
|
3549
3586
|
res: {
|
|
3550
3587
|
/**
|
|
3551
3588
|
* Success
|
|
3552
3589
|
*/
|
|
3553
|
-
200:
|
|
3590
|
+
200: UniRefund_CRMService_Individuals_IndividualDto;
|
|
3554
3591
|
/**
|
|
3555
3592
|
* Bad Request
|
|
3556
3593
|
*/
|
|
@@ -3578,14 +3615,14 @@ export type $OpenApiTs = {
|
|
|
3578
3615
|
};
|
|
3579
3616
|
};
|
|
3580
3617
|
};
|
|
3581
|
-
'/api/crm-service/merchants/
|
|
3582
|
-
|
|
3583
|
-
req:
|
|
3618
|
+
'/api/crm-service/merchants/bulk-product-group-merchants': {
|
|
3619
|
+
post: {
|
|
3620
|
+
req: PostApiCrmServiceMerchantsBulkProductGroupMerchantsData;
|
|
3584
3621
|
res: {
|
|
3585
3622
|
/**
|
|
3586
3623
|
* Success
|
|
3587
3624
|
*/
|
|
3588
|
-
200:
|
|
3625
|
+
200: unknown;
|
|
3589
3626
|
/**
|
|
3590
3627
|
* Bad Request
|
|
3591
3628
|
*/
|
|
@@ -3613,14 +3650,14 @@ export type $OpenApiTs = {
|
|
|
3613
3650
|
};
|
|
3614
3651
|
};
|
|
3615
3652
|
};
|
|
3616
|
-
'/api/crm-service/merchants/{id}/
|
|
3617
|
-
|
|
3618
|
-
req:
|
|
3653
|
+
'/api/crm-service/merchants/{id}/telephones': {
|
|
3654
|
+
get: {
|
|
3655
|
+
req: GetApiCrmServiceMerchantsByIdTelephonesData;
|
|
3619
3656
|
res: {
|
|
3620
3657
|
/**
|
|
3621
3658
|
* Success
|
|
3622
3659
|
*/
|
|
3623
|
-
200:
|
|
3660
|
+
200: Array<UniRefund_CRMService_TelephoneTypes_TelephoneTypeDto>;
|
|
3624
3661
|
/**
|
|
3625
3662
|
* Bad Request
|
|
3626
3663
|
*/
|
|
@@ -3648,14 +3685,14 @@ export type $OpenApiTs = {
|
|
|
3648
3685
|
};
|
|
3649
3686
|
};
|
|
3650
3687
|
};
|
|
3651
|
-
'/api/crm-service/merchants/
|
|
3652
|
-
|
|
3653
|
-
req:
|
|
3688
|
+
'/api/crm-service/merchants/{id}/telephones/{telephoneId}': {
|
|
3689
|
+
put: {
|
|
3690
|
+
req: PutApiCrmServiceMerchantsByIdTelephonesByTelephoneIdData;
|
|
3654
3691
|
res: {
|
|
3655
3692
|
/**
|
|
3656
3693
|
* Success
|
|
3657
3694
|
*/
|
|
3658
|
-
200:
|
|
3695
|
+
200: UniRefund_CRMService_TelephoneTypes_TelephoneTypeDto;
|
|
3659
3696
|
/**
|
|
3660
3697
|
* Bad Request
|
|
3661
3698
|
*/
|
|
@@ -3683,14 +3720,14 @@ export type $OpenApiTs = {
|
|
|
3683
3720
|
};
|
|
3684
3721
|
};
|
|
3685
3722
|
};
|
|
3686
|
-
'/api/crm-service/merchants/{id}/
|
|
3723
|
+
'/api/crm-service/merchants/{id}/addresses': {
|
|
3687
3724
|
get: {
|
|
3688
|
-
req:
|
|
3725
|
+
req: GetApiCrmServiceMerchantsByIdAddressesData;
|
|
3689
3726
|
res: {
|
|
3690
3727
|
/**
|
|
3691
3728
|
* Success
|
|
3692
3729
|
*/
|
|
3693
|
-
200: Array<
|
|
3730
|
+
200: Array<UniRefund_LocationService_AddressCommonDatas_AddressCommonDataDto>;
|
|
3694
3731
|
/**
|
|
3695
3732
|
* Bad Request
|
|
3696
3733
|
*/
|
|
@@ -3718,14 +3755,14 @@ export type $OpenApiTs = {
|
|
|
3718
3755
|
};
|
|
3719
3756
|
};
|
|
3720
3757
|
};
|
|
3721
|
-
'/api/crm-service/merchants/{id}/
|
|
3758
|
+
'/api/crm-service/merchants/{id}/addresses/{addressId}': {
|
|
3722
3759
|
put: {
|
|
3723
|
-
req:
|
|
3760
|
+
req: PutApiCrmServiceMerchantsByIdAddressesByAddressIdData;
|
|
3724
3761
|
res: {
|
|
3725
3762
|
/**
|
|
3726
3763
|
* Success
|
|
3727
3764
|
*/
|
|
3728
|
-
200:
|
|
3765
|
+
200: UniRefund_LocationService_AddressCommonDatas_AddressCommonDataDto;
|
|
3729
3766
|
/**
|
|
3730
3767
|
* Bad Request
|
|
3731
3768
|
*/
|
|
@@ -3753,14 +3790,14 @@ export type $OpenApiTs = {
|
|
|
3753
3790
|
};
|
|
3754
3791
|
};
|
|
3755
3792
|
};
|
|
3756
|
-
'/api/crm-service/merchants/{id}/
|
|
3793
|
+
'/api/crm-service/merchants/{id}/emails': {
|
|
3757
3794
|
get: {
|
|
3758
|
-
req:
|
|
3795
|
+
req: GetApiCrmServiceMerchantsByIdEmailsData;
|
|
3759
3796
|
res: {
|
|
3760
3797
|
/**
|
|
3761
3798
|
* Success
|
|
3762
3799
|
*/
|
|
3763
|
-
200: Array<
|
|
3800
|
+
200: Array<UniRefund_CRMService_EmailCommonDatas_EmailCommonDataDto>;
|
|
3764
3801
|
/**
|
|
3765
3802
|
* Bad Request
|
|
3766
3803
|
*/
|
|
@@ -3788,14 +3825,14 @@ export type $OpenApiTs = {
|
|
|
3788
3825
|
};
|
|
3789
3826
|
};
|
|
3790
3827
|
};
|
|
3791
|
-
'/api/crm-service/merchants/{id}/
|
|
3828
|
+
'/api/crm-service/merchants/{id}/emails/{emailId}': {
|
|
3792
3829
|
put: {
|
|
3793
|
-
req:
|
|
3830
|
+
req: PutApiCrmServiceMerchantsByIdEmailsByEmailIdData;
|
|
3794
3831
|
res: {
|
|
3795
3832
|
/**
|
|
3796
3833
|
* Success
|
|
3797
3834
|
*/
|
|
3798
|
-
200:
|
|
3835
|
+
200: UniRefund_CRMService_EmailCommonDatas_EmailCommonDataDto;
|
|
3799
3836
|
/**
|
|
3800
3837
|
* Bad Request
|
|
3801
3838
|
*/
|
|
@@ -3823,14 +3860,14 @@ export type $OpenApiTs = {
|
|
|
3823
3860
|
};
|
|
3824
3861
|
};
|
|
3825
3862
|
};
|
|
3826
|
-
'/api/crm-service/merchants/{id}/
|
|
3827
|
-
|
|
3828
|
-
req:
|
|
3863
|
+
'/api/crm-service/merchants/{id}/individual/{individualId}/name/{nameId}': {
|
|
3864
|
+
put: {
|
|
3865
|
+
req: PutApiCrmServiceMerchantsByIdIndividualByIndividualIdNameByNameIdData;
|
|
3829
3866
|
res: {
|
|
3830
3867
|
/**
|
|
3831
3868
|
* Success
|
|
3832
3869
|
*/
|
|
3833
|
-
200:
|
|
3870
|
+
200: UniRefund_CRMService_NameCommonDatas_NameCommonDataDto;
|
|
3834
3871
|
/**
|
|
3835
3872
|
* Bad Request
|
|
3836
3873
|
*/
|
|
@@ -3858,14 +3895,14 @@ export type $OpenApiTs = {
|
|
|
3858
3895
|
};
|
|
3859
3896
|
};
|
|
3860
3897
|
};
|
|
3861
|
-
'/api/crm-service/merchants/{id}/
|
|
3898
|
+
'/api/crm-service/merchants/{id}/individual/{individualId}/personal-summary/{personalSummaryId}': {
|
|
3862
3899
|
put: {
|
|
3863
|
-
req:
|
|
3900
|
+
req: PutApiCrmServiceMerchantsByIdIndividualByIndividualIdPersonalSummaryByPersonalSummaryIdData;
|
|
3864
3901
|
res: {
|
|
3865
3902
|
/**
|
|
3866
3903
|
* Success
|
|
3867
3904
|
*/
|
|
3868
|
-
200:
|
|
3905
|
+
200: UniRefund_CRMService_PersonalSummaries_PersonalSummaryDto;
|
|
3869
3906
|
/**
|
|
3870
3907
|
* Bad Request
|
|
3871
3908
|
*/
|
|
@@ -3893,14 +3930,14 @@ export type $OpenApiTs = {
|
|
|
3893
3930
|
};
|
|
3894
3931
|
};
|
|
3895
3932
|
};
|
|
3896
|
-
'/api/
|
|
3897
|
-
|
|
3898
|
-
req:
|
|
3933
|
+
'/integration-api/merchants/{id}/basic-information': {
|
|
3934
|
+
get: {
|
|
3935
|
+
req: GetIntegrationApiMerchantsByIdBasicInformationData;
|
|
3899
3936
|
res: {
|
|
3900
3937
|
/**
|
|
3901
3938
|
* Success
|
|
3902
3939
|
*/
|
|
3903
|
-
200:
|
|
3940
|
+
200: UniRefund_CRMService_Merchants_MerchantBasicInformationDto;
|
|
3904
3941
|
/**
|
|
3905
3942
|
* Bad Request
|
|
3906
3943
|
*/
|
|
@@ -3928,14 +3965,14 @@ export type $OpenApiTs = {
|
|
|
3928
3965
|
};
|
|
3929
3966
|
};
|
|
3930
3967
|
};
|
|
3931
|
-
'/api/
|
|
3932
|
-
|
|
3933
|
-
req:
|
|
3968
|
+
'/integration-api/merchants/info': {
|
|
3969
|
+
get: {
|
|
3970
|
+
req: GetIntegrationApiMerchantsInfoData;
|
|
3934
3971
|
res: {
|
|
3935
3972
|
/**
|
|
3936
3973
|
* Success
|
|
3937
3974
|
*/
|
|
3938
|
-
200:
|
|
3975
|
+
200: UniRefund_CRMService_Merchants_MerchantInfoDto;
|
|
3939
3976
|
/**
|
|
3940
3977
|
* Bad Request
|
|
3941
3978
|
*/
|
|
@@ -3963,14 +4000,14 @@ export type $OpenApiTs = {
|
|
|
3963
4000
|
};
|
|
3964
4001
|
};
|
|
3965
4002
|
};
|
|
3966
|
-
'/integration-api/merchants/{id}/
|
|
4003
|
+
'/integration-api/merchants/{id}/parentId-or-selfId': {
|
|
3967
4004
|
get: {
|
|
3968
|
-
req:
|
|
4005
|
+
req: GetIntegrationApiMerchantsByIdParentIdOrSelfIdData;
|
|
3969
4006
|
res: {
|
|
3970
4007
|
/**
|
|
3971
4008
|
* Success
|
|
3972
4009
|
*/
|
|
3973
|
-
200:
|
|
4010
|
+
200: string;
|
|
3974
4011
|
/**
|
|
3975
4012
|
* Bad Request
|
|
3976
4013
|
*/
|
|
@@ -3998,14 +4035,51 @@ export type $OpenApiTs = {
|
|
|
3998
4035
|
};
|
|
3999
4036
|
};
|
|
4000
4037
|
};
|
|
4001
|
-
'/integration-api/merchants/
|
|
4038
|
+
'/integration-api/merchants/{id}/subs': {
|
|
4002
4039
|
get: {
|
|
4003
|
-
req:
|
|
4040
|
+
req: GetIntegrationApiMerchantsByIdSubsData;
|
|
4004
4041
|
res: {
|
|
4005
4042
|
/**
|
|
4006
4043
|
* Success
|
|
4007
4044
|
*/
|
|
4008
|
-
200:
|
|
4045
|
+
200: Array<(string)>;
|
|
4046
|
+
/**
|
|
4047
|
+
* Bad Request
|
|
4048
|
+
*/
|
|
4049
|
+
400: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
4050
|
+
/**
|
|
4051
|
+
* Unauthorized
|
|
4052
|
+
*/
|
|
4053
|
+
401: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
4054
|
+
/**
|
|
4055
|
+
* Forbidden
|
|
4056
|
+
*/
|
|
4057
|
+
403: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
4058
|
+
/**
|
|
4059
|
+
* Not Found
|
|
4060
|
+
*/
|
|
4061
|
+
404: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
4062
|
+
/**
|
|
4063
|
+
* Server Error
|
|
4064
|
+
*/
|
|
4065
|
+
500: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
4066
|
+
/**
|
|
4067
|
+
* Server Error
|
|
4068
|
+
*/
|
|
4069
|
+
501: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
4070
|
+
};
|
|
4071
|
+
};
|
|
4072
|
+
};
|
|
4073
|
+
'/integration-api/merchants/names': {
|
|
4074
|
+
get: {
|
|
4075
|
+
req: GetIntegrationApiMerchantsNamesData;
|
|
4076
|
+
res: {
|
|
4077
|
+
/**
|
|
4078
|
+
* Success
|
|
4079
|
+
*/
|
|
4080
|
+
200: {
|
|
4081
|
+
[key: string]: (string);
|
|
4082
|
+
};
|
|
4009
4083
|
/**
|
|
4010
4084
|
* Bad Request
|
|
4011
4085
|
*/
|
|
@@ -4348,6 +4422,41 @@ export type $OpenApiTs = {
|
|
|
4348
4422
|
};
|
|
4349
4423
|
};
|
|
4350
4424
|
};
|
|
4425
|
+
'/api/crm-service/refund-points/accessible': {
|
|
4426
|
+
get: {
|
|
4427
|
+
req: GetApiCrmServiceRefundPointsAccessibleData;
|
|
4428
|
+
res: {
|
|
4429
|
+
/**
|
|
4430
|
+
* Success
|
|
4431
|
+
*/
|
|
4432
|
+
200: PagedResultDto_RefundPointProfileDto;
|
|
4433
|
+
/**
|
|
4434
|
+
* Bad Request
|
|
4435
|
+
*/
|
|
4436
|
+
400: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
4437
|
+
/**
|
|
4438
|
+
* Unauthorized
|
|
4439
|
+
*/
|
|
4440
|
+
401: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
4441
|
+
/**
|
|
4442
|
+
* Forbidden
|
|
4443
|
+
*/
|
|
4444
|
+
403: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
4445
|
+
/**
|
|
4446
|
+
* Not Found
|
|
4447
|
+
*/
|
|
4448
|
+
404: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
4449
|
+
/**
|
|
4450
|
+
* Server Error
|
|
4451
|
+
*/
|
|
4452
|
+
500: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
4453
|
+
/**
|
|
4454
|
+
* Server Error
|
|
4455
|
+
*/
|
|
4456
|
+
501: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
4457
|
+
};
|
|
4458
|
+
};
|
|
4459
|
+
};
|
|
4351
4460
|
'/api/crm-service/refund-points/{id}': {
|
|
4352
4461
|
get: {
|
|
4353
4462
|
req: GetApiCrmServiceRefundPointsByIdData;
|
|
@@ -4563,7 +4672,42 @@ export type $OpenApiTs = {
|
|
|
4563
4672
|
/**
|
|
4564
4673
|
* Success
|
|
4565
4674
|
*/
|
|
4566
|
-
200:
|
|
4675
|
+
200: PagedResultDto_AffiliationTypeDetailDto;
|
|
4676
|
+
/**
|
|
4677
|
+
* Bad Request
|
|
4678
|
+
*/
|
|
4679
|
+
400: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
4680
|
+
/**
|
|
4681
|
+
* Unauthorized
|
|
4682
|
+
*/
|
|
4683
|
+
401: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
4684
|
+
/**
|
|
4685
|
+
* Forbidden
|
|
4686
|
+
*/
|
|
4687
|
+
403: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
4688
|
+
/**
|
|
4689
|
+
* Not Found
|
|
4690
|
+
*/
|
|
4691
|
+
404: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
4692
|
+
/**
|
|
4693
|
+
* Server Error
|
|
4694
|
+
*/
|
|
4695
|
+
500: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
4696
|
+
/**
|
|
4697
|
+
* Server Error
|
|
4698
|
+
*/
|
|
4699
|
+
501: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
4700
|
+
};
|
|
4701
|
+
};
|
|
4702
|
+
};
|
|
4703
|
+
'/api/crm-service/refund-points/{id}/affiliations/{affiliationId}': {
|
|
4704
|
+
delete: {
|
|
4705
|
+
req: DeleteApiCrmServiceRefundPointsByIdAffiliationsByAffiliationIdData;
|
|
4706
|
+
res: {
|
|
4707
|
+
/**
|
|
4708
|
+
* Success
|
|
4709
|
+
*/
|
|
4710
|
+
200: unknown;
|
|
4567
4711
|
/**
|
|
4568
4712
|
* Bad Request
|
|
4569
4713
|
*/
|
|
@@ -4801,6 +4945,41 @@ export type $OpenApiTs = {
|
|
|
4801
4945
|
};
|
|
4802
4946
|
};
|
|
4803
4947
|
};
|
|
4948
|
+
'/integration-api/refund-points/{id}/parentId-or-selfId': {
|
|
4949
|
+
get: {
|
|
4950
|
+
req: GetIntegrationApiRefundPointsByIdParentIdOrSelfIdData;
|
|
4951
|
+
res: {
|
|
4952
|
+
/**
|
|
4953
|
+
* Success
|
|
4954
|
+
*/
|
|
4955
|
+
200: string;
|
|
4956
|
+
/**
|
|
4957
|
+
* Bad Request
|
|
4958
|
+
*/
|
|
4959
|
+
400: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
4960
|
+
/**
|
|
4961
|
+
* Unauthorized
|
|
4962
|
+
*/
|
|
4963
|
+
401: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
4964
|
+
/**
|
|
4965
|
+
* Forbidden
|
|
4966
|
+
*/
|
|
4967
|
+
403: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
4968
|
+
/**
|
|
4969
|
+
* Not Found
|
|
4970
|
+
*/
|
|
4971
|
+
404: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
4972
|
+
/**
|
|
4973
|
+
* Server Error
|
|
4974
|
+
*/
|
|
4975
|
+
500: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
4976
|
+
/**
|
|
4977
|
+
* Server Error
|
|
4978
|
+
*/
|
|
4979
|
+
501: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
4980
|
+
};
|
|
4981
|
+
};
|
|
4982
|
+
};
|
|
4804
4983
|
'/integration-api/refund-points': {
|
|
4805
4984
|
get: {
|
|
4806
4985
|
req: GetIntegrationApiRefundPointsData;
|
|
@@ -5191,7 +5370,42 @@ export type $OpenApiTs = {
|
|
|
5191
5370
|
/**
|
|
5192
5371
|
* Success
|
|
5193
5372
|
*/
|
|
5194
|
-
200:
|
|
5373
|
+
200: PagedResultDto_AffiliationTypeDetailDto;
|
|
5374
|
+
/**
|
|
5375
|
+
* Bad Request
|
|
5376
|
+
*/
|
|
5377
|
+
400: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
5378
|
+
/**
|
|
5379
|
+
* Unauthorized
|
|
5380
|
+
*/
|
|
5381
|
+
401: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
5382
|
+
/**
|
|
5383
|
+
* Forbidden
|
|
5384
|
+
*/
|
|
5385
|
+
403: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
5386
|
+
/**
|
|
5387
|
+
* Not Found
|
|
5388
|
+
*/
|
|
5389
|
+
404: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
5390
|
+
/**
|
|
5391
|
+
* Server Error
|
|
5392
|
+
*/
|
|
5393
|
+
500: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
5394
|
+
/**
|
|
5395
|
+
* Server Error
|
|
5396
|
+
*/
|
|
5397
|
+
501: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
5398
|
+
};
|
|
5399
|
+
};
|
|
5400
|
+
};
|
|
5401
|
+
'/api/crm-service/tax-frees/{id}/affiliations/{affiliationId}': {
|
|
5402
|
+
delete: {
|
|
5403
|
+
req: DeleteApiCrmServiceTaxFreesByIdAffiliationsByAffiliationIdData;
|
|
5404
|
+
res: {
|
|
5405
|
+
/**
|
|
5406
|
+
* Success
|
|
5407
|
+
*/
|
|
5408
|
+
200: unknown;
|
|
5195
5409
|
/**
|
|
5196
5410
|
* Bad Request
|
|
5197
5411
|
*/
|
|
@@ -5644,7 +5858,42 @@ export type $OpenApiTs = {
|
|
|
5644
5858
|
/**
|
|
5645
5859
|
* Success
|
|
5646
5860
|
*/
|
|
5647
|
-
200:
|
|
5861
|
+
200: PagedResultDto_AffiliationTypeDetailDto;
|
|
5862
|
+
/**
|
|
5863
|
+
* Bad Request
|
|
5864
|
+
*/
|
|
5865
|
+
400: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
5866
|
+
/**
|
|
5867
|
+
* Unauthorized
|
|
5868
|
+
*/
|
|
5869
|
+
401: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
5870
|
+
/**
|
|
5871
|
+
* Forbidden
|
|
5872
|
+
*/
|
|
5873
|
+
403: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
5874
|
+
/**
|
|
5875
|
+
* Not Found
|
|
5876
|
+
*/
|
|
5877
|
+
404: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
5878
|
+
/**
|
|
5879
|
+
* Server Error
|
|
5880
|
+
*/
|
|
5881
|
+
500: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
5882
|
+
/**
|
|
5883
|
+
* Server Error
|
|
5884
|
+
*/
|
|
5885
|
+
501: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
5886
|
+
};
|
|
5887
|
+
};
|
|
5888
|
+
};
|
|
5889
|
+
'/api/crm-service/tax-offices/{id}/affiliations/{affiliationId}': {
|
|
5890
|
+
delete: {
|
|
5891
|
+
req: DeleteApiCrmServiceTaxOfficesByIdAffiliationsByAffiliationIdData;
|
|
5892
|
+
res: {
|
|
5893
|
+
/**
|
|
5894
|
+
* Success
|
|
5895
|
+
*/
|
|
5896
|
+
200: unknown;
|
|
5648
5897
|
/**
|
|
5649
5898
|
* Bad Request
|
|
5650
5899
|
*/
|