@ayasofyazilim/saas 0.0.29 → 0.0.31
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 +71 -0
- package/CRMService/core/ApiError.ts +21 -0
- package/CRMService/core/ApiRequestOptions.ts +13 -0
- package/CRMService/core/ApiResult.ts +7 -0
- package/CRMService/core/BaseHttpRequest.ts +10 -0
- package/CRMService/core/CancelablePromise.ts +126 -0
- package/CRMService/core/FetchHttpRequest.ts +22 -0
- package/CRMService/core/OpenAPI.ts +56 -0
- package/CRMService/core/request.ts +341 -0
- package/CRMService/index.ts +9 -0
- package/CRMService/schemas.gen.ts +14633 -0
- package/CRMService/services.gen.ts +1422 -0
- package/CRMService/types.gen.ts +3112 -0
- package/generator.mjs +26 -16
- package/package.json +2 -10
|
@@ -0,0 +1,3112 @@
|
|
|
1
|
+
// This file is auto-generated by @hey-api/openapi-ts
|
|
2
|
+
|
|
3
|
+
export type UniRefund_CRMService_AddressTypes_AddressTypeDto = {
|
|
4
|
+
id?: string;
|
|
5
|
+
creationTime?: string;
|
|
6
|
+
creatorId?: string | null;
|
|
7
|
+
lastModificationTime?: string | null;
|
|
8
|
+
lastModifierId?: string | null;
|
|
9
|
+
isDeleted?: boolean;
|
|
10
|
+
deleterId?: string | null;
|
|
11
|
+
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;
|
|
21
|
+
};
|
|
22
|
+
|
|
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;
|
|
36
|
+
};
|
|
37
|
+
|
|
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;
|
|
50
|
+
};
|
|
51
|
+
|
|
52
|
+
export type UniRefund_CRMService_AddressTypes_UpdateAddressTypeDto = {
|
|
53
|
+
readonly extraProperties?: {
|
|
54
|
+
[key: string]: unknown;
|
|
55
|
+
} | null;
|
|
56
|
+
id: string;
|
|
57
|
+
addressLine: string;
|
|
58
|
+
city: string;
|
|
59
|
+
terriority: string;
|
|
60
|
+
postalCode: string;
|
|
61
|
+
country: string;
|
|
62
|
+
fullAddress: string;
|
|
63
|
+
primaryFlag: boolean;
|
|
64
|
+
typeCode: UniRefund_CRMService_Enums_AddressTypeCode;
|
|
65
|
+
};
|
|
66
|
+
|
|
67
|
+
export type UniRefund_CRMService_AffiliationTypes_AffiliationTypeDto = {
|
|
68
|
+
id?: string;
|
|
69
|
+
creationTime?: string;
|
|
70
|
+
creatorId?: string | null;
|
|
71
|
+
lastModificationTime?: string | null;
|
|
72
|
+
lastModifierId?: string | null;
|
|
73
|
+
isDeleted?: boolean;
|
|
74
|
+
deleterId?: string | null;
|
|
75
|
+
deletionTime?: string | null;
|
|
76
|
+
readonly name?: string | null;
|
|
77
|
+
readonly description?: string | null;
|
|
78
|
+
affiliationTypeCode?: UniRefund_CRMService_Enums_AffiliationTypeCode;
|
|
79
|
+
readonly partyId?: string;
|
|
80
|
+
};
|
|
81
|
+
|
|
82
|
+
export type UniRefund_CRMService_AffiliationTypes_CreateAffiliationTypeDto = {
|
|
83
|
+
readonly extraProperties?: {
|
|
84
|
+
[key: string]: unknown;
|
|
85
|
+
} | null;
|
|
86
|
+
name: string;
|
|
87
|
+
description: string;
|
|
88
|
+
affiliationTypeCode: UniRefund_CRMService_Enums_AffiliationTypeCode;
|
|
89
|
+
partyId?: string | null;
|
|
90
|
+
};
|
|
91
|
+
|
|
92
|
+
export type UniRefund_CRMService_ContactInformationTypes_ContactInformationTypeDto = {
|
|
93
|
+
id?: string;
|
|
94
|
+
creationTime?: string;
|
|
95
|
+
creatorId?: string | null;
|
|
96
|
+
lastModificationTime?: string | null;
|
|
97
|
+
lastModifierId?: string | null;
|
|
98
|
+
isDeleted?: boolean;
|
|
99
|
+
deleterId?: string | null;
|
|
100
|
+
deletionTime?: string | null;
|
|
101
|
+
organizationId?: string | null;
|
|
102
|
+
individualId?: string | null;
|
|
103
|
+
startDate?: string;
|
|
104
|
+
endDate?: string;
|
|
105
|
+
telephones?: Array<UniRefund_CRMService_TelephoneTypes_TelephoneTypeDto> | null;
|
|
106
|
+
addresses?: Array<UniRefund_CRMService_AddressTypes_AddressTypeDto> | null;
|
|
107
|
+
emails?: Array<UniRefund_CRMService_EmailCommonDatas_EmailCommonDataDto> | null;
|
|
108
|
+
};
|
|
109
|
+
|
|
110
|
+
export type UniRefund_CRMService_ContactInformationTypes_CreateContactInformationTypeDto = {
|
|
111
|
+
readonly extraProperties?: {
|
|
112
|
+
[key: string]: unknown;
|
|
113
|
+
} | null;
|
|
114
|
+
telephones?: Array<UniRefund_CRMService_TelephoneTypes_CreateTelephoneTypeWithComponentsDto> | null;
|
|
115
|
+
addresses?: Array<UniRefund_CRMService_AddressTypes_CreateAddressTypeWithComponentsDto> | null;
|
|
116
|
+
emails?: Array<UniRefund_CRMService_EmailCommonDatas_CreateEmailCommonDataWithComponentsDto> | null;
|
|
117
|
+
};
|
|
118
|
+
|
|
119
|
+
export type UniRefund_CRMService_Customss_CreateCustomsDto = {
|
|
120
|
+
readonly extraProperties?: {
|
|
121
|
+
[key: string]: unknown;
|
|
122
|
+
} | null;
|
|
123
|
+
entityInformationTypes: Array<UniRefund_CRMService_EntityInformationTypes_CreateOrganizationInformationTypeDto>;
|
|
124
|
+
};
|
|
125
|
+
|
|
126
|
+
export type UniRefund_CRMService_Customss_CustomsDto = {
|
|
127
|
+
id?: string;
|
|
128
|
+
creationTime?: string;
|
|
129
|
+
creatorId?: string | null;
|
|
130
|
+
lastModificationTime?: string | null;
|
|
131
|
+
lastModifierId?: string | null;
|
|
132
|
+
isDeleted?: boolean;
|
|
133
|
+
deleterId?: string | null;
|
|
134
|
+
deletionTime?: string | null;
|
|
135
|
+
entityInformations?: Array<UniRefund_CRMService_EntityInformationTypes_EntityInformationTypeDto> | null;
|
|
136
|
+
};
|
|
137
|
+
|
|
138
|
+
export type UniRefund_CRMService_Customss_CustomsProfileDto = {
|
|
139
|
+
id?: string;
|
|
140
|
+
name?: string | null;
|
|
141
|
+
parentCompanyId?: string | null;
|
|
142
|
+
};
|
|
143
|
+
|
|
144
|
+
export type UniRefund_CRMService_EmailCommonDatas_CreateEmailCommonDataDto = {
|
|
145
|
+
readonly extraProperties?: {
|
|
146
|
+
[key: string]: unknown;
|
|
147
|
+
} | null;
|
|
148
|
+
emailAddress: string;
|
|
149
|
+
primaryFlag: boolean;
|
|
150
|
+
typeCode: UniRefund_CRMService_Enums_EmailTypeCode;
|
|
151
|
+
contactInformationTypeId: string;
|
|
152
|
+
};
|
|
153
|
+
|
|
154
|
+
export type UniRefund_CRMService_EmailCommonDatas_CreateEmailCommonDataWithComponentsDto = {
|
|
155
|
+
readonly extraProperties?: {
|
|
156
|
+
[key: string]: unknown;
|
|
157
|
+
} | null;
|
|
158
|
+
emailAddress: string;
|
|
159
|
+
primaryFlag: boolean;
|
|
160
|
+
typeCode: UniRefund_CRMService_Enums_EmailTypeCode;
|
|
161
|
+
};
|
|
162
|
+
|
|
163
|
+
export type UniRefund_CRMService_EmailCommonDatas_EmailCommonDataDto = {
|
|
164
|
+
id?: string;
|
|
165
|
+
creationTime?: string;
|
|
166
|
+
creatorId?: string | null;
|
|
167
|
+
lastModificationTime?: string | null;
|
|
168
|
+
lastModifierId?: string | null;
|
|
169
|
+
isDeleted?: boolean;
|
|
170
|
+
deleterId?: string | null;
|
|
171
|
+
deletionTime?: string | null;
|
|
172
|
+
primaryFlag?: boolean;
|
|
173
|
+
typeCode?: UniRefund_CRMService_Enums_EmailTypeCode;
|
|
174
|
+
emailAddress?: string | null;
|
|
175
|
+
contactInformationTypeId?: string;
|
|
176
|
+
};
|
|
177
|
+
|
|
178
|
+
export type UniRefund_CRMService_EmailCommonDatas_UpdateEmailCommonDataDto = {
|
|
179
|
+
readonly extraProperties?: {
|
|
180
|
+
[key: string]: unknown;
|
|
181
|
+
} | null;
|
|
182
|
+
id: string;
|
|
183
|
+
emailAddress: string;
|
|
184
|
+
primaryFlag: boolean;
|
|
185
|
+
typeCode: UniRefund_CRMService_Enums_EmailTypeCode;
|
|
186
|
+
};
|
|
187
|
+
|
|
188
|
+
export type UniRefund_CRMService_EntityInformationTypes_CreateEntityInformationTypeDto = {
|
|
189
|
+
readonly extraProperties?: {
|
|
190
|
+
[key: string]: unknown;
|
|
191
|
+
} | null;
|
|
192
|
+
organizations?: Array<UniRefund_CRMService_Organizations_CreateOrganizationDto> | null;
|
|
193
|
+
individuals?: Array<UniRefund_CRMService_Individuals_CreateIndividualDto> | null;
|
|
194
|
+
};
|
|
195
|
+
|
|
196
|
+
export type UniRefund_CRMService_EntityInformationTypes_CreateOrganizationInformationTypeDto = {
|
|
197
|
+
readonly extraProperties?: {
|
|
198
|
+
[key: string]: unknown;
|
|
199
|
+
} | null;
|
|
200
|
+
organizations?: Array<UniRefund_CRMService_Organizations_CreateOrganizationDto> | null;
|
|
201
|
+
};
|
|
202
|
+
|
|
203
|
+
export type UniRefund_CRMService_EntityInformationTypes_EntityInformationTypeDto = {
|
|
204
|
+
id?: string;
|
|
205
|
+
creationTime?: string;
|
|
206
|
+
creatorId?: string | null;
|
|
207
|
+
lastModificationTime?: string | null;
|
|
208
|
+
lastModifierId?: string | null;
|
|
209
|
+
isDeleted?: boolean;
|
|
210
|
+
deleterId?: string | null;
|
|
211
|
+
deletionTime?: string | null;
|
|
212
|
+
merchantId?: string | null;
|
|
213
|
+
customsId?: string | null;
|
|
214
|
+
entityPartyTypeCode?: UniRefund_CRMService_Enums_EntityPartyTypeCode;
|
|
215
|
+
entityInformationTypeCode?: UniRefund_CRMService_Enums_EntityInformationTypeCode;
|
|
216
|
+
individuals?: Array<UniRefund_CRMService_Individuals_IndividualDto> | null;
|
|
217
|
+
organizations?: Array<UniRefund_CRMService_Organizations_OrganizationDto> | null;
|
|
218
|
+
};
|
|
219
|
+
|
|
220
|
+
export type UniRefund_CRMService_Enums_AddressTypeCode = 0 | 1;
|
|
221
|
+
|
|
222
|
+
export type UniRefund_CRMService_Enums_AffiliationTypeCode = 0 | 1 | 2;
|
|
223
|
+
|
|
224
|
+
export type UniRefund_CRMService_Enums_EmailTypeCode = 0 | 1;
|
|
225
|
+
|
|
226
|
+
export type UniRefund_CRMService_Enums_EntityInformationTypeCode = 0 | 1;
|
|
227
|
+
|
|
228
|
+
export type UniRefund_CRMService_Enums_EntityPartyTypeCode = 0 | 1 | 2 | 3 | 4;
|
|
229
|
+
|
|
230
|
+
export type UniRefund_CRMService_Enums_GenderTypeCode = 0 | 1;
|
|
231
|
+
|
|
232
|
+
export type UniRefund_CRMService_Enums_TelephoneTypeCode = 0 | 1 | 2 | 3;
|
|
233
|
+
|
|
234
|
+
export type UniRefund_CRMService_Individuals_CreateIndividualDto = {
|
|
235
|
+
readonly extraProperties?: {
|
|
236
|
+
[key: string]: unknown;
|
|
237
|
+
} | null;
|
|
238
|
+
name?: UniRefund_CRMService_NameCommonDatas_CreateNameCommonDataDto;
|
|
239
|
+
personalSummaries?: Array<UniRefund_CRMService_PersonalSummaries_CreatePersonalSummaryDto> | null;
|
|
240
|
+
contactInformations?: Array<UniRefund_CRMService_ContactInformationTypes_CreateContactInformationTypeDto> | null;
|
|
241
|
+
};
|
|
242
|
+
|
|
243
|
+
export type UniRefund_CRMService_Individuals_IndividualDto = {
|
|
244
|
+
id?: string;
|
|
245
|
+
creationTime?: string;
|
|
246
|
+
creatorId?: string | null;
|
|
247
|
+
lastModificationTime?: string | null;
|
|
248
|
+
lastModifierId?: string | null;
|
|
249
|
+
isDeleted?: boolean;
|
|
250
|
+
deleterId?: string | null;
|
|
251
|
+
deletionTime?: string | null;
|
|
252
|
+
name?: UniRefund_CRMService_NameCommonDatas_NameCommonDataDto;
|
|
253
|
+
contactInformations?: Array<UniRefund_CRMService_ContactInformationTypes_ContactInformationTypeDto> | null;
|
|
254
|
+
personalSummaries?: Array<UniRefund_CRMService_PersonalSummaries_PersonalSummaryDto> | null;
|
|
255
|
+
entityInformationTypeId?: string | null;
|
|
256
|
+
};
|
|
257
|
+
|
|
258
|
+
export type UniRefund_CRMService_Individuals_IndividualProfileDto = {
|
|
259
|
+
id?: string;
|
|
260
|
+
name?: string | null;
|
|
261
|
+
affiliationId?: string | null;
|
|
262
|
+
affiliatedName?: string | null;
|
|
263
|
+
affiliationTypeCode?: UniRefund_CRMService_Enums_AffiliationTypeCode;
|
|
264
|
+
affiliationTypeCodeValue?: string | null;
|
|
265
|
+
affiliationParentTypeCode?: UniRefund_CRMService_Enums_EntityPartyTypeCode;
|
|
266
|
+
affiliationParentTypeCodeValue?: string | null;
|
|
267
|
+
};
|
|
268
|
+
|
|
269
|
+
export type UniRefund_CRMService_Merchants_CreateMerchantDto = {
|
|
270
|
+
readonly extraProperties?: {
|
|
271
|
+
[key: string]: unknown;
|
|
272
|
+
} | null;
|
|
273
|
+
entityInformationTypes: Array<UniRefund_CRMService_EntityInformationTypes_CreateEntityInformationTypeDto>;
|
|
274
|
+
};
|
|
275
|
+
|
|
276
|
+
export type UniRefund_CRMService_Merchants_MerchantDto = {
|
|
277
|
+
id?: string;
|
|
278
|
+
creationTime?: string;
|
|
279
|
+
creatorId?: string | null;
|
|
280
|
+
lastModificationTime?: string | null;
|
|
281
|
+
lastModifierId?: string | null;
|
|
282
|
+
isDeleted?: boolean;
|
|
283
|
+
deleterId?: string | null;
|
|
284
|
+
deletionTime?: string | null;
|
|
285
|
+
entityInformations?: Array<UniRefund_CRMService_EntityInformationTypes_EntityInformationTypeDto> | null;
|
|
286
|
+
affiliations?: Array<UniRefund_CRMService_AffiliationTypes_AffiliationTypeDto> | null;
|
|
287
|
+
};
|
|
288
|
+
|
|
289
|
+
export type UniRefund_CRMService_Merchants_MerchantProfileDto = {
|
|
290
|
+
id?: string;
|
|
291
|
+
name?: string | null;
|
|
292
|
+
parentCompanyId?: string | null;
|
|
293
|
+
entityInformationTypeCode?: UniRefund_CRMService_Enums_EntityInformationTypeCode;
|
|
294
|
+
entityInformationTypeCodeName?: string | null;
|
|
295
|
+
};
|
|
296
|
+
|
|
297
|
+
export type UniRefund_CRMService_Merchants_RefundPointProfileDto = {
|
|
298
|
+
id?: string;
|
|
299
|
+
name?: string | null;
|
|
300
|
+
entityInformationTypeCode?: UniRefund_CRMService_Enums_EntityInformationTypeCode;
|
|
301
|
+
entityInformationTypeCodeValue?: string | null;
|
|
302
|
+
};
|
|
303
|
+
|
|
304
|
+
export type UniRefund_CRMService_NameCommonDatas_CreateNameCommonDataDto = {
|
|
305
|
+
salutation: string;
|
|
306
|
+
name: string;
|
|
307
|
+
suffix: string;
|
|
308
|
+
mailingName: string;
|
|
309
|
+
officialName: string;
|
|
310
|
+
};
|
|
311
|
+
|
|
312
|
+
export type UniRefund_CRMService_NameCommonDatas_NameCommonDataDto = {
|
|
313
|
+
id?: string;
|
|
314
|
+
creationTime?: string;
|
|
315
|
+
creatorId?: string | null;
|
|
316
|
+
lastModificationTime?: string | null;
|
|
317
|
+
lastModifierId?: string | null;
|
|
318
|
+
isDeleted?: boolean;
|
|
319
|
+
deleterId?: string | null;
|
|
320
|
+
deletionTime?: string | null;
|
|
321
|
+
salutation?: string | null;
|
|
322
|
+
name?: string | null;
|
|
323
|
+
suffix?: string | null;
|
|
324
|
+
mailingName?: string | null;
|
|
325
|
+
officialName?: string | null;
|
|
326
|
+
individualId?: string;
|
|
327
|
+
};
|
|
328
|
+
|
|
329
|
+
export type UniRefund_CRMService_Organizations_CreateOrganizationDto = {
|
|
330
|
+
readonly extraProperties?: {
|
|
331
|
+
[key: string]: unknown;
|
|
332
|
+
} | null;
|
|
333
|
+
name: string;
|
|
334
|
+
taxpayerId: string;
|
|
335
|
+
legalStatusCode: string;
|
|
336
|
+
customerNumber?: string | null;
|
|
337
|
+
contactInformations?: Array<UniRefund_CRMService_ContactInformationTypes_CreateContactInformationTypeDto> | null;
|
|
338
|
+
};
|
|
339
|
+
|
|
340
|
+
export type UniRefund_CRMService_Organizations_OrganizationDto = {
|
|
341
|
+
id?: string;
|
|
342
|
+
creationTime?: string;
|
|
343
|
+
creatorId?: string | null;
|
|
344
|
+
lastModificationTime?: string | null;
|
|
345
|
+
lastModifierId?: string | null;
|
|
346
|
+
isDeleted?: boolean;
|
|
347
|
+
deleterId?: string | null;
|
|
348
|
+
deletionTime?: string | null;
|
|
349
|
+
entityInformationTypeId?: string | null;
|
|
350
|
+
name?: string | null;
|
|
351
|
+
taxpayerId?: string | null;
|
|
352
|
+
legalStatusCode?: string | null;
|
|
353
|
+
parentCompanyId?: string | null;
|
|
354
|
+
customerNumber?: string | null;
|
|
355
|
+
subCompanies?: Array<UniRefund_CRMService_Organizations_OrganizationDto> | null;
|
|
356
|
+
contactInformations?: Array<UniRefund_CRMService_ContactInformationTypes_ContactInformationTypeDto> | null;
|
|
357
|
+
};
|
|
358
|
+
|
|
359
|
+
export type UniRefund_CRMService_Organizations_OrganizationProfileDto = {
|
|
360
|
+
id?: string;
|
|
361
|
+
name?: string | null;
|
|
362
|
+
affiliationId?: string | null;
|
|
363
|
+
affiliatedName?: string | null;
|
|
364
|
+
affiliationTypeCode?: UniRefund_CRMService_Enums_AffiliationTypeCode;
|
|
365
|
+
affiliationTypeCodeValue?: string | null;
|
|
366
|
+
affiliationParentTypeCode?: UniRefund_CRMService_Enums_EntityPartyTypeCode;
|
|
367
|
+
affiliationParentTypeCodeValue?: string | null;
|
|
368
|
+
};
|
|
369
|
+
|
|
370
|
+
export type UniRefund_CRMService_PersonalSummaries_CreatePersonalSummaryDto = {
|
|
371
|
+
readonly extraProperties?: {
|
|
372
|
+
[key: string]: unknown;
|
|
373
|
+
} | null;
|
|
374
|
+
date: string;
|
|
375
|
+
birthDate: string;
|
|
376
|
+
ethnicity: string;
|
|
377
|
+
maritalStatusCode: string;
|
|
378
|
+
religiousAffiliationName: string;
|
|
379
|
+
genderTypeCode: UniRefund_CRMService_Enums_GenderTypeCode;
|
|
380
|
+
};
|
|
381
|
+
|
|
382
|
+
export type UniRefund_CRMService_PersonalSummaries_PersonalSummaryDto = {
|
|
383
|
+
id?: string;
|
|
384
|
+
creationTime?: string;
|
|
385
|
+
creatorId?: string | null;
|
|
386
|
+
lastModificationTime?: string | null;
|
|
387
|
+
lastModifierId?: string | null;
|
|
388
|
+
isDeleted?: boolean;
|
|
389
|
+
deleterId?: string | null;
|
|
390
|
+
deletionTime?: string | null;
|
|
391
|
+
date?: string;
|
|
392
|
+
birthDate?: string;
|
|
393
|
+
ethnicity?: string | null;
|
|
394
|
+
maritalStatusCode?: string | null;
|
|
395
|
+
religiousAffiliationName?: string | null;
|
|
396
|
+
genderTypeCode?: UniRefund_CRMService_Enums_GenderTypeCode;
|
|
397
|
+
individualId?: string;
|
|
398
|
+
};
|
|
399
|
+
|
|
400
|
+
export type UniRefund_CRMService_RefundPoints_CreateRefundPointDto = {
|
|
401
|
+
readonly extraProperties?: {
|
|
402
|
+
[key: string]: unknown;
|
|
403
|
+
} | null;
|
|
404
|
+
entityInformationTypes?: Array<UniRefund_CRMService_EntityInformationTypes_CreateOrganizationInformationTypeDto> | null;
|
|
405
|
+
};
|
|
406
|
+
|
|
407
|
+
export type UniRefund_CRMService_RefundPoints_RefundPointDto = {
|
|
408
|
+
id?: string;
|
|
409
|
+
creationTime?: string;
|
|
410
|
+
creatorId?: string | null;
|
|
411
|
+
lastModificationTime?: string | null;
|
|
412
|
+
lastModifierId?: string | null;
|
|
413
|
+
isDeleted?: boolean;
|
|
414
|
+
deleterId?: string | null;
|
|
415
|
+
deletionTime?: string | null;
|
|
416
|
+
entityInformations?: Array<UniRefund_CRMService_EntityInformationTypes_EntityInformationTypeDto> | null;
|
|
417
|
+
};
|
|
418
|
+
|
|
419
|
+
export type UniRefund_CRMService_TaxFrees_CreateTaxFreeDto = {
|
|
420
|
+
readonly extraProperties?: {
|
|
421
|
+
[key: string]: unknown;
|
|
422
|
+
} | null;
|
|
423
|
+
entityInformationTypes: Array<UniRefund_CRMService_EntityInformationTypes_CreateOrganizationInformationTypeDto>;
|
|
424
|
+
};
|
|
425
|
+
|
|
426
|
+
export type UniRefund_CRMService_TaxFrees_TaxFreeDto = {
|
|
427
|
+
id?: string;
|
|
428
|
+
creationTime?: string;
|
|
429
|
+
creatorId?: string | null;
|
|
430
|
+
lastModificationTime?: string | null;
|
|
431
|
+
lastModifierId?: string | null;
|
|
432
|
+
isDeleted?: boolean;
|
|
433
|
+
deleterId?: string | null;
|
|
434
|
+
deletionTime?: string | null;
|
|
435
|
+
entityInformations?: Array<UniRefund_CRMService_EntityInformationTypes_EntityInformationTypeDto> | null;
|
|
436
|
+
};
|
|
437
|
+
|
|
438
|
+
export type UniRefund_CRMService_TaxFrees_TaxFreeProfileDto = {
|
|
439
|
+
id?: string;
|
|
440
|
+
name?: string | null;
|
|
441
|
+
parentCompanyId?: string | null;
|
|
442
|
+
};
|
|
443
|
+
|
|
444
|
+
export type UniRefund_CRMService_TaxOffices_CreateTaxOfficeDto = {
|
|
445
|
+
readonly extraProperties?: {
|
|
446
|
+
[key: string]: unknown;
|
|
447
|
+
} | null;
|
|
448
|
+
entityInformationTypes: Array<UniRefund_CRMService_EntityInformationTypes_CreateOrganizationInformationTypeDto>;
|
|
449
|
+
};
|
|
450
|
+
|
|
451
|
+
export type UniRefund_CRMService_TaxOffices_TaxOfficeDto = {
|
|
452
|
+
id?: string;
|
|
453
|
+
creationTime?: string;
|
|
454
|
+
creatorId?: string | null;
|
|
455
|
+
lastModificationTime?: string | null;
|
|
456
|
+
lastModifierId?: string | null;
|
|
457
|
+
isDeleted?: boolean;
|
|
458
|
+
deleterId?: string | null;
|
|
459
|
+
deletionTime?: string | null;
|
|
460
|
+
entityInformations?: Array<UniRefund_CRMService_EntityInformationTypes_EntityInformationTypeDto> | null;
|
|
461
|
+
};
|
|
462
|
+
|
|
463
|
+
export type UniRefund_CRMService_TaxOffices_TaxOfficeProfileDto = {
|
|
464
|
+
id?: string;
|
|
465
|
+
name?: string | null;
|
|
466
|
+
parentCompanyId?: string | null;
|
|
467
|
+
};
|
|
468
|
+
|
|
469
|
+
export type UniRefund_CRMService_TelephoneTypes_CreateTelephoneTypeDto = {
|
|
470
|
+
readonly extraProperties?: {
|
|
471
|
+
[key: string]: unknown;
|
|
472
|
+
} | null;
|
|
473
|
+
areaCode: string;
|
|
474
|
+
localNumber: string;
|
|
475
|
+
ituCountryCode: string;
|
|
476
|
+
primaryFlag: boolean;
|
|
477
|
+
typeCode: UniRefund_CRMService_Enums_TelephoneTypeCode;
|
|
478
|
+
contactInformationTypeId?: string;
|
|
479
|
+
};
|
|
480
|
+
|
|
481
|
+
export type UniRefund_CRMService_TelephoneTypes_CreateTelephoneTypeWithComponentsDto = {
|
|
482
|
+
readonly extraProperties?: {
|
|
483
|
+
[key: string]: unknown;
|
|
484
|
+
} | null;
|
|
485
|
+
areaCode: string;
|
|
486
|
+
localNumber: string;
|
|
487
|
+
ituCountryCode: string;
|
|
488
|
+
primaryFlag: boolean;
|
|
489
|
+
typeCode: UniRefund_CRMService_Enums_TelephoneTypeCode;
|
|
490
|
+
};
|
|
491
|
+
|
|
492
|
+
export type UniRefund_CRMService_TelephoneTypes_TelephoneTypeDto = {
|
|
493
|
+
id?: string;
|
|
494
|
+
creationTime?: string;
|
|
495
|
+
creatorId?: string | null;
|
|
496
|
+
lastModificationTime?: string | null;
|
|
497
|
+
lastModifierId?: string | null;
|
|
498
|
+
isDeleted?: boolean;
|
|
499
|
+
deleterId?: string | null;
|
|
500
|
+
deletionTime?: string | null;
|
|
501
|
+
areaCode?: string | null;
|
|
502
|
+
localNumber?: string | null;
|
|
503
|
+
ituCountryCode?: string | null;
|
|
504
|
+
primaryFlag?: boolean;
|
|
505
|
+
typeCode?: UniRefund_CRMService_Enums_TelephoneTypeCode;
|
|
506
|
+
contactInformationTypeId?: string;
|
|
507
|
+
};
|
|
508
|
+
|
|
509
|
+
export type UniRefund_CRMService_TelephoneTypes_UpdateTelephoneTypeDto = {
|
|
510
|
+
readonly extraProperties?: {
|
|
511
|
+
[key: string]: unknown;
|
|
512
|
+
} | null;
|
|
513
|
+
id: string;
|
|
514
|
+
areaCode: string;
|
|
515
|
+
localNumber: string;
|
|
516
|
+
ituCountryCode: string;
|
|
517
|
+
primaryFlag: boolean;
|
|
518
|
+
typeCode: UniRefund_CRMService_Enums_TelephoneTypeCode;
|
|
519
|
+
};
|
|
520
|
+
|
|
521
|
+
export type Volo_Abp_Application_Dtos_PagedResultDto_1 = {
|
|
522
|
+
items?: Array<UniRefund_CRMService_AddressTypes_AddressTypeDto> | null;
|
|
523
|
+
totalCount?: number;
|
|
524
|
+
};
|
|
525
|
+
|
|
526
|
+
export type Volo_Abp_Application_Dtos_PagedResultDto_12 = {
|
|
527
|
+
items?: Array<UniRefund_CRMService_AffiliationTypes_AffiliationTypeDto> | null;
|
|
528
|
+
totalCount?: number;
|
|
529
|
+
};
|
|
530
|
+
|
|
531
|
+
export type Volo_Abp_Application_Dtos_PagedResultDto_13 = {
|
|
532
|
+
items?: Array<UniRefund_CRMService_Customss_CustomsProfileDto> | null;
|
|
533
|
+
totalCount?: number;
|
|
534
|
+
};
|
|
535
|
+
|
|
536
|
+
export type Volo_Abp_Application_Dtos_PagedResultDto_14 = {
|
|
537
|
+
items?: Array<UniRefund_CRMService_EmailCommonDatas_EmailCommonDataDto> | null;
|
|
538
|
+
totalCount?: number;
|
|
539
|
+
};
|
|
540
|
+
|
|
541
|
+
export type Volo_Abp_Application_Dtos_PagedResultDto_15 = {
|
|
542
|
+
items?: Array<UniRefund_CRMService_Individuals_IndividualProfileDto> | null;
|
|
543
|
+
totalCount?: number;
|
|
544
|
+
};
|
|
545
|
+
|
|
546
|
+
export type Volo_Abp_Application_Dtos_PagedResultDto_16 = {
|
|
547
|
+
items?: Array<UniRefund_CRMService_Merchants_MerchantProfileDto> | null;
|
|
548
|
+
totalCount?: number;
|
|
549
|
+
};
|
|
550
|
+
|
|
551
|
+
export type Volo_Abp_Application_Dtos_PagedResultDto_17 = {
|
|
552
|
+
items?: Array<UniRefund_CRMService_Merchants_RefundPointProfileDto> | null;
|
|
553
|
+
totalCount?: number;
|
|
554
|
+
};
|
|
555
|
+
|
|
556
|
+
export type Volo_Abp_Application_Dtos_PagedResultDto_18 = {
|
|
557
|
+
items?: Array<UniRefund_CRMService_Organizations_OrganizationProfileDto> | null;
|
|
558
|
+
totalCount?: number;
|
|
559
|
+
};
|
|
560
|
+
|
|
561
|
+
export type Volo_Abp_Application_Dtos_PagedResultDto_19 = {
|
|
562
|
+
items?: Array<UniRefund_CRMService_TaxFrees_TaxFreeProfileDto> | null;
|
|
563
|
+
totalCount?: number;
|
|
564
|
+
};
|
|
565
|
+
|
|
566
|
+
export type Volo_Abp_Application_Dtos_PagedResultDto_110 = {
|
|
567
|
+
items?: Array<UniRefund_CRMService_TaxOffices_TaxOfficeProfileDto> | null;
|
|
568
|
+
totalCount?: number;
|
|
569
|
+
};
|
|
570
|
+
|
|
571
|
+
export type Volo_Abp_Application_Dtos_PagedResultDto_111 = {
|
|
572
|
+
items?: Array<UniRefund_CRMService_TelephoneTypes_TelephoneTypeDto> | null;
|
|
573
|
+
totalCount?: number;
|
|
574
|
+
};
|
|
575
|
+
|
|
576
|
+
export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationAuthConfigurationDto = {
|
|
577
|
+
grantedPolicies?: {
|
|
578
|
+
[key: string]: (boolean);
|
|
579
|
+
} | null;
|
|
580
|
+
};
|
|
581
|
+
|
|
582
|
+
export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationConfigurationDto = {
|
|
583
|
+
localization?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationConfigurationDto;
|
|
584
|
+
auth?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationAuthConfigurationDto;
|
|
585
|
+
setting?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationSettingConfigurationDto;
|
|
586
|
+
currentUser?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_CurrentUserDto;
|
|
587
|
+
features?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationFeatureConfigurationDto;
|
|
588
|
+
globalFeatures?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationGlobalFeatureConfigurationDto;
|
|
589
|
+
multiTenancy?: Volo_Abp_AspNetCore_Mvc_MultiTenancy_MultiTenancyInfoDto;
|
|
590
|
+
currentTenant?: Volo_Abp_AspNetCore_Mvc_MultiTenancy_CurrentTenantDto;
|
|
591
|
+
timing?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_TimingDto;
|
|
592
|
+
clock?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ClockDto;
|
|
593
|
+
objectExtensions?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ObjectExtensionsDto;
|
|
594
|
+
extraProperties?: {
|
|
595
|
+
[key: string]: unknown;
|
|
596
|
+
} | null;
|
|
597
|
+
};
|
|
598
|
+
|
|
599
|
+
export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationFeatureConfigurationDto = {
|
|
600
|
+
values?: {
|
|
601
|
+
[key: string]: (string | null);
|
|
602
|
+
} | null;
|
|
603
|
+
};
|
|
604
|
+
|
|
605
|
+
export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationGlobalFeatureConfigurationDto = {
|
|
606
|
+
enabledFeatures?: Array<(string)> | null;
|
|
607
|
+
};
|
|
608
|
+
|
|
609
|
+
export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationConfigurationDto = {
|
|
610
|
+
values?: {
|
|
611
|
+
[key: string]: {
|
|
612
|
+
[key: string]: (string);
|
|
613
|
+
};
|
|
614
|
+
} | null;
|
|
615
|
+
resources?: {
|
|
616
|
+
[key: string]: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationResourceDto;
|
|
617
|
+
} | null;
|
|
618
|
+
languages?: Array<Volo_Abp_Localization_LanguageInfo> | null;
|
|
619
|
+
currentCulture?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_CurrentCultureDto;
|
|
620
|
+
defaultResourceName?: string | null;
|
|
621
|
+
languagesMap?: {
|
|
622
|
+
[key: string]: Array<Volo_Abp_NameValue>;
|
|
623
|
+
} | null;
|
|
624
|
+
languageFilesMap?: {
|
|
625
|
+
[key: string]: Array<Volo_Abp_NameValue>;
|
|
626
|
+
} | null;
|
|
627
|
+
};
|
|
628
|
+
|
|
629
|
+
export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationDto = {
|
|
630
|
+
resources?: {
|
|
631
|
+
[key: string]: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationResourceDto;
|
|
632
|
+
} | null;
|
|
633
|
+
currentCulture?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_CurrentCultureDto;
|
|
634
|
+
};
|
|
635
|
+
|
|
636
|
+
export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationResourceDto = {
|
|
637
|
+
texts?: {
|
|
638
|
+
[key: string]: (string);
|
|
639
|
+
} | null;
|
|
640
|
+
baseResources?: Array<(string)> | null;
|
|
641
|
+
};
|
|
642
|
+
|
|
643
|
+
export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationSettingConfigurationDto = {
|
|
644
|
+
values?: {
|
|
645
|
+
[key: string]: (string | null);
|
|
646
|
+
} | null;
|
|
647
|
+
};
|
|
648
|
+
|
|
649
|
+
export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ClockDto = {
|
|
650
|
+
kind?: string | null;
|
|
651
|
+
};
|
|
652
|
+
|
|
653
|
+
export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_CurrentCultureDto = {
|
|
654
|
+
displayName?: string | null;
|
|
655
|
+
englishName?: string | null;
|
|
656
|
+
threeLetterIsoLanguageName?: string | null;
|
|
657
|
+
twoLetterIsoLanguageName?: string | null;
|
|
658
|
+
isRightToLeft?: boolean;
|
|
659
|
+
cultureName?: string | null;
|
|
660
|
+
name?: string | null;
|
|
661
|
+
nativeName?: string | null;
|
|
662
|
+
dateTimeFormat?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_DateTimeFormatDto;
|
|
663
|
+
};
|
|
664
|
+
|
|
665
|
+
export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_CurrentUserDto = {
|
|
666
|
+
isAuthenticated?: boolean;
|
|
667
|
+
id?: string | null;
|
|
668
|
+
tenantId?: string | null;
|
|
669
|
+
impersonatorUserId?: string | null;
|
|
670
|
+
impersonatorTenantId?: string | null;
|
|
671
|
+
impersonatorUserName?: string | null;
|
|
672
|
+
impersonatorTenantName?: string | null;
|
|
673
|
+
userName?: string | null;
|
|
674
|
+
name?: string | null;
|
|
675
|
+
surName?: string | null;
|
|
676
|
+
email?: string | null;
|
|
677
|
+
emailVerified?: boolean;
|
|
678
|
+
phoneNumber?: string | null;
|
|
679
|
+
phoneNumberVerified?: boolean;
|
|
680
|
+
roles?: Array<(string)> | null;
|
|
681
|
+
sessionId?: string | null;
|
|
682
|
+
};
|
|
683
|
+
|
|
684
|
+
export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_DateTimeFormatDto = {
|
|
685
|
+
calendarAlgorithmType?: string | null;
|
|
686
|
+
dateTimeFormatLong?: string | null;
|
|
687
|
+
shortDatePattern?: string | null;
|
|
688
|
+
fullDateTimePattern?: string | null;
|
|
689
|
+
dateSeparator?: string | null;
|
|
690
|
+
shortTimePattern?: string | null;
|
|
691
|
+
longTimePattern?: string | null;
|
|
692
|
+
};
|
|
693
|
+
|
|
694
|
+
export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_IanaTimeZone = {
|
|
695
|
+
timeZoneName?: string | null;
|
|
696
|
+
};
|
|
697
|
+
|
|
698
|
+
export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_EntityExtensionDto = {
|
|
699
|
+
properties?: {
|
|
700
|
+
[key: string]: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyDto;
|
|
701
|
+
} | null;
|
|
702
|
+
configuration?: {
|
|
703
|
+
[key: string]: unknown;
|
|
704
|
+
} | null;
|
|
705
|
+
};
|
|
706
|
+
|
|
707
|
+
export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionEnumDto = {
|
|
708
|
+
fields?: Array<Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionEnumFieldDto> | null;
|
|
709
|
+
localizationResource?: string | null;
|
|
710
|
+
};
|
|
711
|
+
|
|
712
|
+
export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionEnumFieldDto = {
|
|
713
|
+
name?: string | null;
|
|
714
|
+
value?: unknown;
|
|
715
|
+
};
|
|
716
|
+
|
|
717
|
+
export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiCreateDto = {
|
|
718
|
+
isAvailable?: boolean;
|
|
719
|
+
};
|
|
720
|
+
|
|
721
|
+
export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiDto = {
|
|
722
|
+
onGet?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiGetDto;
|
|
723
|
+
onCreate?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiCreateDto;
|
|
724
|
+
onUpdate?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiUpdateDto;
|
|
725
|
+
};
|
|
726
|
+
|
|
727
|
+
export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiGetDto = {
|
|
728
|
+
isAvailable?: boolean;
|
|
729
|
+
};
|
|
730
|
+
|
|
731
|
+
export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiUpdateDto = {
|
|
732
|
+
isAvailable?: boolean;
|
|
733
|
+
};
|
|
734
|
+
|
|
735
|
+
export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyAttributeDto = {
|
|
736
|
+
typeSimple?: string | null;
|
|
737
|
+
config?: {
|
|
738
|
+
[key: string]: unknown;
|
|
739
|
+
} | null;
|
|
740
|
+
};
|
|
741
|
+
|
|
742
|
+
export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyDto = {
|
|
743
|
+
type?: string | null;
|
|
744
|
+
typeSimple?: string | null;
|
|
745
|
+
displayName?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_LocalizableStringDto;
|
|
746
|
+
api?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiDto;
|
|
747
|
+
ui?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiDto;
|
|
748
|
+
attributes?: Array<Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyAttributeDto> | null;
|
|
749
|
+
configuration?: {
|
|
750
|
+
[key: string]: unknown;
|
|
751
|
+
} | null;
|
|
752
|
+
defaultValue?: unknown;
|
|
753
|
+
};
|
|
754
|
+
|
|
755
|
+
export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiDto = {
|
|
756
|
+
onTable?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiTableDto;
|
|
757
|
+
onCreateForm?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiFormDto;
|
|
758
|
+
onEditForm?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiFormDto;
|
|
759
|
+
lookup?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiLookupDto;
|
|
760
|
+
};
|
|
761
|
+
|
|
762
|
+
export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiFormDto = {
|
|
763
|
+
isVisible?: boolean;
|
|
764
|
+
};
|
|
765
|
+
|
|
766
|
+
export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiLookupDto = {
|
|
767
|
+
url?: string | null;
|
|
768
|
+
resultListPropertyName?: string | null;
|
|
769
|
+
displayPropertyName?: string | null;
|
|
770
|
+
valuePropertyName?: string | null;
|
|
771
|
+
filterParamName?: string | null;
|
|
772
|
+
};
|
|
773
|
+
|
|
774
|
+
export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiTableDto = {
|
|
775
|
+
isVisible?: boolean;
|
|
776
|
+
};
|
|
777
|
+
|
|
778
|
+
export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_LocalizableStringDto = {
|
|
779
|
+
name?: string | null;
|
|
780
|
+
resource?: string | null;
|
|
781
|
+
};
|
|
782
|
+
|
|
783
|
+
export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ModuleExtensionDto = {
|
|
784
|
+
entities?: {
|
|
785
|
+
[key: string]: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_EntityExtensionDto;
|
|
786
|
+
} | null;
|
|
787
|
+
configuration?: {
|
|
788
|
+
[key: string]: unknown;
|
|
789
|
+
} | null;
|
|
790
|
+
};
|
|
791
|
+
|
|
792
|
+
export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ObjectExtensionsDto = {
|
|
793
|
+
modules?: {
|
|
794
|
+
[key: string]: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ModuleExtensionDto;
|
|
795
|
+
} | null;
|
|
796
|
+
enums?: {
|
|
797
|
+
[key: string]: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionEnumDto;
|
|
798
|
+
} | null;
|
|
799
|
+
};
|
|
800
|
+
|
|
801
|
+
export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_TimeZone = {
|
|
802
|
+
iana?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_IanaTimeZone;
|
|
803
|
+
windows?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_WindowsTimeZone;
|
|
804
|
+
};
|
|
805
|
+
|
|
806
|
+
export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_TimingDto = {
|
|
807
|
+
timeZone?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_TimeZone;
|
|
808
|
+
};
|
|
809
|
+
|
|
810
|
+
export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_WindowsTimeZone = {
|
|
811
|
+
timeZoneId?: string | null;
|
|
812
|
+
};
|
|
813
|
+
|
|
814
|
+
export type Volo_Abp_AspNetCore_Mvc_MultiTenancy_CurrentTenantDto = {
|
|
815
|
+
id?: string | null;
|
|
816
|
+
name?: string | null;
|
|
817
|
+
isAvailable?: boolean;
|
|
818
|
+
};
|
|
819
|
+
|
|
820
|
+
export type Volo_Abp_AspNetCore_Mvc_MultiTenancy_MultiTenancyInfoDto = {
|
|
821
|
+
isEnabled?: boolean;
|
|
822
|
+
};
|
|
823
|
+
|
|
824
|
+
export type Volo_Abp_Http_Modeling_ActionApiDescriptionModel = {
|
|
825
|
+
uniqueName?: string | null;
|
|
826
|
+
name?: string | null;
|
|
827
|
+
httpMethod?: string | null;
|
|
828
|
+
url?: string | null;
|
|
829
|
+
supportedVersions?: Array<(string)> | null;
|
|
830
|
+
parametersOnMethod?: Array<Volo_Abp_Http_Modeling_MethodParameterApiDescriptionModel> | null;
|
|
831
|
+
parameters?: Array<Volo_Abp_Http_Modeling_ParameterApiDescriptionModel> | null;
|
|
832
|
+
returnValue?: Volo_Abp_Http_Modeling_ReturnValueApiDescriptionModel;
|
|
833
|
+
allowAnonymous?: boolean | null;
|
|
834
|
+
implementFrom?: string | null;
|
|
835
|
+
};
|
|
836
|
+
|
|
837
|
+
export type Volo_Abp_Http_Modeling_ApplicationApiDescriptionModel = {
|
|
838
|
+
modules?: {
|
|
839
|
+
[key: string]: Volo_Abp_Http_Modeling_ModuleApiDescriptionModel;
|
|
840
|
+
} | null;
|
|
841
|
+
types?: {
|
|
842
|
+
[key: string]: Volo_Abp_Http_Modeling_TypeApiDescriptionModel;
|
|
843
|
+
} | null;
|
|
844
|
+
};
|
|
845
|
+
|
|
846
|
+
export type Volo_Abp_Http_Modeling_ControllerApiDescriptionModel = {
|
|
847
|
+
controllerName?: string | null;
|
|
848
|
+
controllerGroupName?: string | null;
|
|
849
|
+
isRemoteService?: boolean;
|
|
850
|
+
isIntegrationService?: boolean;
|
|
851
|
+
apiVersion?: string | null;
|
|
852
|
+
type?: string | null;
|
|
853
|
+
interfaces?: Array<Volo_Abp_Http_Modeling_ControllerInterfaceApiDescriptionModel> | null;
|
|
854
|
+
actions?: {
|
|
855
|
+
[key: string]: Volo_Abp_Http_Modeling_ActionApiDescriptionModel;
|
|
856
|
+
} | null;
|
|
857
|
+
};
|
|
858
|
+
|
|
859
|
+
export type Volo_Abp_Http_Modeling_ControllerInterfaceApiDescriptionModel = {
|
|
860
|
+
type?: string | null;
|
|
861
|
+
name?: string | null;
|
|
862
|
+
methods?: Array<Volo_Abp_Http_Modeling_InterfaceMethodApiDescriptionModel> | null;
|
|
863
|
+
};
|
|
864
|
+
|
|
865
|
+
export type Volo_Abp_Http_Modeling_InterfaceMethodApiDescriptionModel = {
|
|
866
|
+
name?: string | null;
|
|
867
|
+
parametersOnMethod?: Array<Volo_Abp_Http_Modeling_MethodParameterApiDescriptionModel> | null;
|
|
868
|
+
returnValue?: Volo_Abp_Http_Modeling_ReturnValueApiDescriptionModel;
|
|
869
|
+
};
|
|
870
|
+
|
|
871
|
+
export type Volo_Abp_Http_Modeling_MethodParameterApiDescriptionModel = {
|
|
872
|
+
name?: string | null;
|
|
873
|
+
typeAsString?: string | null;
|
|
874
|
+
type?: string | null;
|
|
875
|
+
typeSimple?: string | null;
|
|
876
|
+
isOptional?: boolean;
|
|
877
|
+
defaultValue?: unknown;
|
|
878
|
+
};
|
|
879
|
+
|
|
880
|
+
export type Volo_Abp_Http_Modeling_ModuleApiDescriptionModel = {
|
|
881
|
+
rootPath?: string | null;
|
|
882
|
+
remoteServiceName?: string | null;
|
|
883
|
+
controllers?: {
|
|
884
|
+
[key: string]: Volo_Abp_Http_Modeling_ControllerApiDescriptionModel;
|
|
885
|
+
} | null;
|
|
886
|
+
};
|
|
887
|
+
|
|
888
|
+
export type Volo_Abp_Http_Modeling_ParameterApiDescriptionModel = {
|
|
889
|
+
nameOnMethod?: string | null;
|
|
890
|
+
name?: string | null;
|
|
891
|
+
jsonName?: string | null;
|
|
892
|
+
type?: string | null;
|
|
893
|
+
typeSimple?: string | null;
|
|
894
|
+
isOptional?: boolean;
|
|
895
|
+
defaultValue?: unknown;
|
|
896
|
+
constraintTypes?: Array<(string)> | null;
|
|
897
|
+
bindingSourceId?: string | null;
|
|
898
|
+
descriptorName?: string | null;
|
|
899
|
+
};
|
|
900
|
+
|
|
901
|
+
export type Volo_Abp_Http_Modeling_PropertyApiDescriptionModel = {
|
|
902
|
+
name?: string | null;
|
|
903
|
+
jsonName?: string | null;
|
|
904
|
+
type?: string | null;
|
|
905
|
+
typeSimple?: string | null;
|
|
906
|
+
isRequired?: boolean;
|
|
907
|
+
minLength?: number | null;
|
|
908
|
+
maxLength?: number | null;
|
|
909
|
+
minimum?: string | null;
|
|
910
|
+
maximum?: string | null;
|
|
911
|
+
regex?: string | null;
|
|
912
|
+
};
|
|
913
|
+
|
|
914
|
+
export type Volo_Abp_Http_Modeling_ReturnValueApiDescriptionModel = {
|
|
915
|
+
type?: string | null;
|
|
916
|
+
typeSimple?: string | null;
|
|
917
|
+
};
|
|
918
|
+
|
|
919
|
+
export type Volo_Abp_Http_Modeling_TypeApiDescriptionModel = {
|
|
920
|
+
baseType?: string | null;
|
|
921
|
+
isEnum?: boolean;
|
|
922
|
+
enumNames?: Array<(string)> | null;
|
|
923
|
+
enumValues?: Array<unknown> | null;
|
|
924
|
+
genericArguments?: Array<(string)> | null;
|
|
925
|
+
properties?: Array<Volo_Abp_Http_Modeling_PropertyApiDescriptionModel> | null;
|
|
926
|
+
};
|
|
927
|
+
|
|
928
|
+
export type Volo_Abp_Http_RemoteServiceErrorInfo = {
|
|
929
|
+
code?: string | null;
|
|
930
|
+
message?: string | null;
|
|
931
|
+
details?: string | null;
|
|
932
|
+
data?: {
|
|
933
|
+
[key: string]: unknown;
|
|
934
|
+
} | null;
|
|
935
|
+
validationErrors?: Array<Volo_Abp_Http_RemoteServiceValidationErrorInfo> | null;
|
|
936
|
+
};
|
|
937
|
+
|
|
938
|
+
export type Volo_Abp_Http_RemoteServiceErrorResponse = {
|
|
939
|
+
error?: Volo_Abp_Http_RemoteServiceErrorInfo;
|
|
940
|
+
};
|
|
941
|
+
|
|
942
|
+
export type Volo_Abp_Http_RemoteServiceValidationErrorInfo = {
|
|
943
|
+
message?: string | null;
|
|
944
|
+
members?: Array<(string)> | null;
|
|
945
|
+
};
|
|
946
|
+
|
|
947
|
+
export type Volo_Abp_Localization_LanguageInfo = {
|
|
948
|
+
cultureName?: string | null;
|
|
949
|
+
uiCultureName?: string | null;
|
|
950
|
+
displayName?: string | null;
|
|
951
|
+
readonly twoLetterISOLanguageName?: string | null;
|
|
952
|
+
};
|
|
953
|
+
|
|
954
|
+
export type Volo_Abp_NameValue = {
|
|
955
|
+
name?: string | null;
|
|
956
|
+
value?: string | null;
|
|
957
|
+
};
|
|
958
|
+
|
|
959
|
+
export type GetApiAbpApiDefinitionData = {
|
|
960
|
+
includeTypes?: boolean;
|
|
961
|
+
};
|
|
962
|
+
|
|
963
|
+
export type GetApiAbpApiDefinitionResponse = Volo_Abp_Http_Modeling_ApplicationApiDescriptionModel;
|
|
964
|
+
|
|
965
|
+
export type GetApiAbpApplicationConfigurationData = {
|
|
966
|
+
includeLocalizationResources?: boolean;
|
|
967
|
+
};
|
|
968
|
+
|
|
969
|
+
export type GetApiAbpApplicationConfigurationResponse = Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationConfigurationDto;
|
|
970
|
+
|
|
971
|
+
export type GetApiAbpApplicationLocalizationData = {
|
|
972
|
+
cultureName: string;
|
|
973
|
+
onlyDynamics?: boolean;
|
|
974
|
+
};
|
|
975
|
+
|
|
976
|
+
export type GetApiAbpApplicationLocalizationResponse = Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationDto;
|
|
977
|
+
|
|
978
|
+
export type GetApiCrmServiceAddressesData = {
|
|
979
|
+
maxResultCount?: number;
|
|
980
|
+
skipCount?: number;
|
|
981
|
+
sorting?: string;
|
|
982
|
+
};
|
|
983
|
+
|
|
984
|
+
export type GetApiCrmServiceAddressesResponse = Volo_Abp_Application_Dtos_PagedResultDto_1;
|
|
985
|
+
|
|
986
|
+
export type PostApiCrmServiceAddressesData = {
|
|
987
|
+
requestBody?: UniRefund_CRMService_AddressTypes_CreateAddressTypeDto;
|
|
988
|
+
};
|
|
989
|
+
|
|
990
|
+
export type PostApiCrmServiceAddressesResponse = UniRefund_CRMService_AddressTypes_AddressTypeDto;
|
|
991
|
+
|
|
992
|
+
export type GetApiCrmServiceAddressesByIdData = {
|
|
993
|
+
id: string;
|
|
994
|
+
};
|
|
995
|
+
|
|
996
|
+
export type GetApiCrmServiceAddressesByIdResponse = UniRefund_CRMService_AddressTypes_AddressTypeDto;
|
|
997
|
+
|
|
998
|
+
export type PutApiCrmServiceAddressesByIdData = {
|
|
999
|
+
id: string;
|
|
1000
|
+
requestBody?: UniRefund_CRMService_AddressTypes_UpdateAddressTypeDto;
|
|
1001
|
+
};
|
|
1002
|
+
|
|
1003
|
+
export type PutApiCrmServiceAddressesByIdResponse = UniRefund_CRMService_AddressTypes_AddressTypeDto;
|
|
1004
|
+
|
|
1005
|
+
export type DeleteApiCrmServiceAddressesByIdData = {
|
|
1006
|
+
id: string;
|
|
1007
|
+
};
|
|
1008
|
+
|
|
1009
|
+
export type DeleteApiCrmServiceAddressesByIdResponse = unknown;
|
|
1010
|
+
|
|
1011
|
+
export type GetApiCrmServiceCustomsData = {
|
|
1012
|
+
maxResultCount?: number;
|
|
1013
|
+
skipCount?: number;
|
|
1014
|
+
sorting?: string;
|
|
1015
|
+
};
|
|
1016
|
+
|
|
1017
|
+
export type GetApiCrmServiceCustomsResponse = Volo_Abp_Application_Dtos_PagedResultDto_1;
|
|
1018
|
+
|
|
1019
|
+
export type GetApiCrmServiceCustomsDetailByIdData = {
|
|
1020
|
+
id: string;
|
|
1021
|
+
};
|
|
1022
|
+
|
|
1023
|
+
export type GetApiCrmServiceCustomsDetailByIdResponse = UniRefund_CRMService_Customss_CustomsDto;
|
|
1024
|
+
|
|
1025
|
+
export type PostApiCrmServiceCustomsWithComponentsData = {
|
|
1026
|
+
requestBody?: UniRefund_CRMService_Customss_CreateCustomsDto;
|
|
1027
|
+
};
|
|
1028
|
+
|
|
1029
|
+
export type PostApiCrmServiceCustomsWithComponentsResponse = unknown;
|
|
1030
|
+
|
|
1031
|
+
export type DeleteApiCrmServiceCustomsWithComponentsByIdData = {
|
|
1032
|
+
id: string;
|
|
1033
|
+
};
|
|
1034
|
+
|
|
1035
|
+
export type DeleteApiCrmServiceCustomsWithComponentsByIdResponse = unknown;
|
|
1036
|
+
|
|
1037
|
+
export type PostApiCrmServiceCustomsByCustomsIdAffiliationsData = {
|
|
1038
|
+
customsId: string;
|
|
1039
|
+
requestBody?: UniRefund_CRMService_AffiliationTypes_CreateAffiliationTypeDto;
|
|
1040
|
+
};
|
|
1041
|
+
|
|
1042
|
+
export type PostApiCrmServiceCustomsByCustomsIdAffiliationsResponse = unknown;
|
|
1043
|
+
|
|
1044
|
+
export type GetApiCrmServiceCustomsByCustomsIdAffiliationsData = {
|
|
1045
|
+
customsId: string;
|
|
1046
|
+
maxResultCount?: number;
|
|
1047
|
+
skipCount?: number;
|
|
1048
|
+
sorting?: string;
|
|
1049
|
+
};
|
|
1050
|
+
|
|
1051
|
+
export type GetApiCrmServiceCustomsByCustomsIdAffiliationsResponse = Volo_Abp_Application_Dtos_PagedResultDto_1;
|
|
1052
|
+
|
|
1053
|
+
export type GetApiCrmServiceEmailsData = {
|
|
1054
|
+
maxResultCount?: number;
|
|
1055
|
+
skipCount?: number;
|
|
1056
|
+
sorting?: string;
|
|
1057
|
+
};
|
|
1058
|
+
|
|
1059
|
+
export type GetApiCrmServiceEmailsResponse = Volo_Abp_Application_Dtos_PagedResultDto_1;
|
|
1060
|
+
|
|
1061
|
+
export type PostApiCrmServiceEmailsData = {
|
|
1062
|
+
requestBody?: UniRefund_CRMService_EmailCommonDatas_CreateEmailCommonDataDto;
|
|
1063
|
+
};
|
|
1064
|
+
|
|
1065
|
+
export type PostApiCrmServiceEmailsResponse = UniRefund_CRMService_EmailCommonDatas_EmailCommonDataDto;
|
|
1066
|
+
|
|
1067
|
+
export type GetApiCrmServiceEmailsByIdData = {
|
|
1068
|
+
id: string;
|
|
1069
|
+
};
|
|
1070
|
+
|
|
1071
|
+
export type GetApiCrmServiceEmailsByIdResponse = UniRefund_CRMService_EmailCommonDatas_EmailCommonDataDto;
|
|
1072
|
+
|
|
1073
|
+
export type PutApiCrmServiceEmailsByIdData = {
|
|
1074
|
+
id: string;
|
|
1075
|
+
requestBody?: UniRefund_CRMService_EmailCommonDatas_UpdateEmailCommonDataDto;
|
|
1076
|
+
};
|
|
1077
|
+
|
|
1078
|
+
export type PutApiCrmServiceEmailsByIdResponse = UniRefund_CRMService_EmailCommonDatas_EmailCommonDataDto;
|
|
1079
|
+
|
|
1080
|
+
export type DeleteApiCrmServiceEmailsByIdData = {
|
|
1081
|
+
id: string;
|
|
1082
|
+
};
|
|
1083
|
+
|
|
1084
|
+
export type DeleteApiCrmServiceEmailsByIdResponse = unknown;
|
|
1085
|
+
|
|
1086
|
+
export type PostApiCrmServiceIndividualsWithComponentsData = {
|
|
1087
|
+
requestBody?: UniRefund_CRMService_Individuals_CreateIndividualDto;
|
|
1088
|
+
};
|
|
1089
|
+
|
|
1090
|
+
export type PostApiCrmServiceIndividualsWithComponentsResponse = unknown;
|
|
1091
|
+
|
|
1092
|
+
export type GetApiCrmServiceIndividualsData = {
|
|
1093
|
+
entityPartyTypeCode?: UniRefund_CRMService_Enums_EntityPartyTypeCode;
|
|
1094
|
+
maxResultCount?: number;
|
|
1095
|
+
parentId?: string;
|
|
1096
|
+
skipCount?: number;
|
|
1097
|
+
sorting?: string;
|
|
1098
|
+
};
|
|
1099
|
+
|
|
1100
|
+
export type GetApiCrmServiceIndividualsResponse = Volo_Abp_Application_Dtos_PagedResultDto_1;
|
|
1101
|
+
|
|
1102
|
+
export type GetApiCrmServiceMerchantsData = {
|
|
1103
|
+
maxResultCount?: number;
|
|
1104
|
+
skipCount?: number;
|
|
1105
|
+
sorting?: string;
|
|
1106
|
+
};
|
|
1107
|
+
|
|
1108
|
+
export type GetApiCrmServiceMerchantsResponse = Volo_Abp_Application_Dtos_PagedResultDto_1;
|
|
1109
|
+
|
|
1110
|
+
export type GetApiCrmServiceMerchantsDetailByIdData = {
|
|
1111
|
+
id: string;
|
|
1112
|
+
};
|
|
1113
|
+
|
|
1114
|
+
export type GetApiCrmServiceMerchantsDetailByIdResponse = UniRefund_CRMService_Merchants_MerchantDto;
|
|
1115
|
+
|
|
1116
|
+
export type PostApiCrmServiceMerchantsWithComponentsData = {
|
|
1117
|
+
requestBody?: UniRefund_CRMService_Merchants_CreateMerchantDto;
|
|
1118
|
+
};
|
|
1119
|
+
|
|
1120
|
+
export type PostApiCrmServiceMerchantsWithComponentsResponse = unknown;
|
|
1121
|
+
|
|
1122
|
+
export type DeleteApiCrmServiceMerchantsWithComponentsByIdData = {
|
|
1123
|
+
id: string;
|
|
1124
|
+
};
|
|
1125
|
+
|
|
1126
|
+
export type DeleteApiCrmServiceMerchantsWithComponentsByIdResponse = unknown;
|
|
1127
|
+
|
|
1128
|
+
export type PostApiCrmServiceMerchantsByMerchantIdAffiliationsData = {
|
|
1129
|
+
merchantId: string;
|
|
1130
|
+
requestBody?: UniRefund_CRMService_AffiliationTypes_CreateAffiliationTypeDto;
|
|
1131
|
+
};
|
|
1132
|
+
|
|
1133
|
+
export type PostApiCrmServiceMerchantsByMerchantIdAffiliationsResponse = unknown;
|
|
1134
|
+
|
|
1135
|
+
export type GetApiCrmServiceMerchantsByMerchantIdAffiliationsData = {
|
|
1136
|
+
maxResultCount?: number;
|
|
1137
|
+
merchantId: string;
|
|
1138
|
+
skipCount?: number;
|
|
1139
|
+
sorting?: string;
|
|
1140
|
+
};
|
|
1141
|
+
|
|
1142
|
+
export type GetApiCrmServiceMerchantsByMerchantIdAffiliationsResponse = Volo_Abp_Application_Dtos_PagedResultDto_1;
|
|
1143
|
+
|
|
1144
|
+
export type PostApiCrmServiceOrganizationsWithComponentsData = {
|
|
1145
|
+
requestBody?: UniRefund_CRMService_Organizations_CreateOrganizationDto;
|
|
1146
|
+
};
|
|
1147
|
+
|
|
1148
|
+
export type PostApiCrmServiceOrganizationsWithComponentsResponse = unknown;
|
|
1149
|
+
|
|
1150
|
+
export type GetApiCrmServiceOrganizationsData = {
|
|
1151
|
+
entityPartyTypeCode?: UniRefund_CRMService_Enums_EntityPartyTypeCode;
|
|
1152
|
+
maxResultCount?: number;
|
|
1153
|
+
parentId?: string;
|
|
1154
|
+
skipCount?: number;
|
|
1155
|
+
sorting?: string;
|
|
1156
|
+
};
|
|
1157
|
+
|
|
1158
|
+
export type GetApiCrmServiceOrganizationsResponse = Volo_Abp_Application_Dtos_PagedResultDto_1;
|
|
1159
|
+
|
|
1160
|
+
export type GetApiCrmServiceRefundPointsData = {
|
|
1161
|
+
maxResultCount?: number;
|
|
1162
|
+
skipCount?: number;
|
|
1163
|
+
sorting?: string;
|
|
1164
|
+
};
|
|
1165
|
+
|
|
1166
|
+
export type GetApiCrmServiceRefundPointsResponse = Volo_Abp_Application_Dtos_PagedResultDto_1;
|
|
1167
|
+
|
|
1168
|
+
export type GetApiCrmServiceRefundPointsDetailByIdData = {
|
|
1169
|
+
id: string;
|
|
1170
|
+
};
|
|
1171
|
+
|
|
1172
|
+
export type GetApiCrmServiceRefundPointsDetailByIdResponse = UniRefund_CRMService_RefundPoints_RefundPointDto;
|
|
1173
|
+
|
|
1174
|
+
export type PostApiCrmServiceRefundPointsWithComponentsData = {
|
|
1175
|
+
requestBody?: UniRefund_CRMService_RefundPoints_CreateRefundPointDto;
|
|
1176
|
+
};
|
|
1177
|
+
|
|
1178
|
+
export type PostApiCrmServiceRefundPointsWithComponentsResponse = unknown;
|
|
1179
|
+
|
|
1180
|
+
export type DeleteApiCrmServiceRefundPointsWithComponentsByIdData = {
|
|
1181
|
+
id: string;
|
|
1182
|
+
};
|
|
1183
|
+
|
|
1184
|
+
export type DeleteApiCrmServiceRefundPointsWithComponentsByIdResponse = unknown;
|
|
1185
|
+
|
|
1186
|
+
export type PostApiCrmServiceRefundPointsByRefundPointIdAffiliationsData = {
|
|
1187
|
+
refundPointId: string;
|
|
1188
|
+
requestBody?: UniRefund_CRMService_AffiliationTypes_CreateAffiliationTypeDto;
|
|
1189
|
+
};
|
|
1190
|
+
|
|
1191
|
+
export type PostApiCrmServiceRefundPointsByRefundPointIdAffiliationsResponse = unknown;
|
|
1192
|
+
|
|
1193
|
+
export type GetApiCrmServiceRefundPointsByRefundPointIdAffiliationsData = {
|
|
1194
|
+
maxResultCount?: number;
|
|
1195
|
+
refundPointId: string;
|
|
1196
|
+
skipCount?: number;
|
|
1197
|
+
sorting?: string;
|
|
1198
|
+
};
|
|
1199
|
+
|
|
1200
|
+
export type GetApiCrmServiceRefundPointsByRefundPointIdAffiliationsResponse = Volo_Abp_Application_Dtos_PagedResultDto_1;
|
|
1201
|
+
|
|
1202
|
+
export type GetApiCrmServiceTaxFreesData = {
|
|
1203
|
+
maxResultCount?: number;
|
|
1204
|
+
skipCount?: number;
|
|
1205
|
+
sorting?: string;
|
|
1206
|
+
};
|
|
1207
|
+
|
|
1208
|
+
export type GetApiCrmServiceTaxFreesResponse = Volo_Abp_Application_Dtos_PagedResultDto_1;
|
|
1209
|
+
|
|
1210
|
+
export type GetApiCrmServiceTaxFreesDetailByIdData = {
|
|
1211
|
+
id: string;
|
|
1212
|
+
};
|
|
1213
|
+
|
|
1214
|
+
export type GetApiCrmServiceTaxFreesDetailByIdResponse = UniRefund_CRMService_TaxFrees_TaxFreeDto;
|
|
1215
|
+
|
|
1216
|
+
export type PostApiCrmServiceTaxFreesWithComponentsData = {
|
|
1217
|
+
requestBody?: UniRefund_CRMService_TaxFrees_CreateTaxFreeDto;
|
|
1218
|
+
};
|
|
1219
|
+
|
|
1220
|
+
export type PostApiCrmServiceTaxFreesWithComponentsResponse = unknown;
|
|
1221
|
+
|
|
1222
|
+
export type DeleteApiCrmServiceTaxFreesWithComponentsByIdData = {
|
|
1223
|
+
id: string;
|
|
1224
|
+
};
|
|
1225
|
+
|
|
1226
|
+
export type DeleteApiCrmServiceTaxFreesWithComponentsByIdResponse = unknown;
|
|
1227
|
+
|
|
1228
|
+
export type PostApiCrmServiceTaxFreesByTaxFreesIdAffiliationsData = {
|
|
1229
|
+
requestBody?: UniRefund_CRMService_AffiliationTypes_CreateAffiliationTypeDto;
|
|
1230
|
+
taxFreesId: string;
|
|
1231
|
+
};
|
|
1232
|
+
|
|
1233
|
+
export type PostApiCrmServiceTaxFreesByTaxFreesIdAffiliationsResponse = unknown;
|
|
1234
|
+
|
|
1235
|
+
export type GetApiCrmServiceTaxFreesByTaxFreesIdAffiliationsData = {
|
|
1236
|
+
maxResultCount?: number;
|
|
1237
|
+
skipCount?: number;
|
|
1238
|
+
sorting?: string;
|
|
1239
|
+
taxFreesId: string;
|
|
1240
|
+
};
|
|
1241
|
+
|
|
1242
|
+
export type GetApiCrmServiceTaxFreesByTaxFreesIdAffiliationsResponse = Volo_Abp_Application_Dtos_PagedResultDto_1;
|
|
1243
|
+
|
|
1244
|
+
export type GetApiCrmServiceTaxOfficesData = {
|
|
1245
|
+
maxResultCount?: number;
|
|
1246
|
+
skipCount?: number;
|
|
1247
|
+
sorting?: string;
|
|
1248
|
+
};
|
|
1249
|
+
|
|
1250
|
+
export type GetApiCrmServiceTaxOfficesResponse = Volo_Abp_Application_Dtos_PagedResultDto_1;
|
|
1251
|
+
|
|
1252
|
+
export type GetApiCrmServiceTaxOfficesDetailByIdData = {
|
|
1253
|
+
id: string;
|
|
1254
|
+
};
|
|
1255
|
+
|
|
1256
|
+
export type GetApiCrmServiceTaxOfficesDetailByIdResponse = UniRefund_CRMService_TaxOffices_TaxOfficeDto;
|
|
1257
|
+
|
|
1258
|
+
export type PostApiCrmServiceTaxOfficesWithComponentsData = {
|
|
1259
|
+
requestBody?: UniRefund_CRMService_TaxOffices_CreateTaxOfficeDto;
|
|
1260
|
+
};
|
|
1261
|
+
|
|
1262
|
+
export type PostApiCrmServiceTaxOfficesWithComponentsResponse = unknown;
|
|
1263
|
+
|
|
1264
|
+
export type DeleteApiCrmServiceTaxOfficesWithComponentsByIdData = {
|
|
1265
|
+
id: string;
|
|
1266
|
+
};
|
|
1267
|
+
|
|
1268
|
+
export type DeleteApiCrmServiceTaxOfficesWithComponentsByIdResponse = unknown;
|
|
1269
|
+
|
|
1270
|
+
export type PostApiCrmServiceTaxOfficesByTaxOfficesIdAffiliationsData = {
|
|
1271
|
+
requestBody?: UniRefund_CRMService_AffiliationTypes_CreateAffiliationTypeDto;
|
|
1272
|
+
taxOfficesId: string;
|
|
1273
|
+
};
|
|
1274
|
+
|
|
1275
|
+
export type PostApiCrmServiceTaxOfficesByTaxOfficesIdAffiliationsResponse = unknown;
|
|
1276
|
+
|
|
1277
|
+
export type GetApiCrmServiceTaxOfficesByTaxOfficesIdAffiliationsData = {
|
|
1278
|
+
maxResultCount?: number;
|
|
1279
|
+
skipCount?: number;
|
|
1280
|
+
sorting?: string;
|
|
1281
|
+
taxOfficesId: string;
|
|
1282
|
+
};
|
|
1283
|
+
|
|
1284
|
+
export type GetApiCrmServiceTaxOfficesByTaxOfficesIdAffiliationsResponse = Volo_Abp_Application_Dtos_PagedResultDto_1;
|
|
1285
|
+
|
|
1286
|
+
export type GetApiCrmServiceTelephonesData = {
|
|
1287
|
+
maxResultCount?: number;
|
|
1288
|
+
skipCount?: number;
|
|
1289
|
+
sorting?: string;
|
|
1290
|
+
};
|
|
1291
|
+
|
|
1292
|
+
export type GetApiCrmServiceTelephonesResponse = Volo_Abp_Application_Dtos_PagedResultDto_1;
|
|
1293
|
+
|
|
1294
|
+
export type PostApiCrmServiceTelephonesData = {
|
|
1295
|
+
requestBody?: UniRefund_CRMService_TelephoneTypes_CreateTelephoneTypeDto;
|
|
1296
|
+
};
|
|
1297
|
+
|
|
1298
|
+
export type PostApiCrmServiceTelephonesResponse = UniRefund_CRMService_TelephoneTypes_TelephoneTypeDto;
|
|
1299
|
+
|
|
1300
|
+
export type GetApiCrmServiceTelephonesByIdData = {
|
|
1301
|
+
id: string;
|
|
1302
|
+
};
|
|
1303
|
+
|
|
1304
|
+
export type GetApiCrmServiceTelephonesByIdResponse = UniRefund_CRMService_TelephoneTypes_TelephoneTypeDto;
|
|
1305
|
+
|
|
1306
|
+
export type PutApiCrmServiceTelephonesByIdData = {
|
|
1307
|
+
id: string;
|
|
1308
|
+
requestBody?: UniRefund_CRMService_TelephoneTypes_UpdateTelephoneTypeDto;
|
|
1309
|
+
};
|
|
1310
|
+
|
|
1311
|
+
export type PutApiCrmServiceTelephonesByIdResponse = UniRefund_CRMService_TelephoneTypes_TelephoneTypeDto;
|
|
1312
|
+
|
|
1313
|
+
export type DeleteApiCrmServiceTelephonesByIdData = {
|
|
1314
|
+
id: string;
|
|
1315
|
+
};
|
|
1316
|
+
|
|
1317
|
+
export type DeleteApiCrmServiceTelephonesByIdResponse = unknown;
|
|
1318
|
+
|
|
1319
|
+
export type $OpenApiTs = {
|
|
1320
|
+
'/api/abp/api-definition': {
|
|
1321
|
+
get: {
|
|
1322
|
+
req: GetApiAbpApiDefinitionData;
|
|
1323
|
+
res: {
|
|
1324
|
+
/**
|
|
1325
|
+
* Success
|
|
1326
|
+
*/
|
|
1327
|
+
200: Volo_Abp_Http_Modeling_ApplicationApiDescriptionModel;
|
|
1328
|
+
/**
|
|
1329
|
+
* Bad Request
|
|
1330
|
+
*/
|
|
1331
|
+
400: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
1332
|
+
/**
|
|
1333
|
+
* Unauthorized
|
|
1334
|
+
*/
|
|
1335
|
+
401: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
1336
|
+
/**
|
|
1337
|
+
* Forbidden
|
|
1338
|
+
*/
|
|
1339
|
+
403: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
1340
|
+
/**
|
|
1341
|
+
* Not Found
|
|
1342
|
+
*/
|
|
1343
|
+
404: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
1344
|
+
/**
|
|
1345
|
+
* Server Error
|
|
1346
|
+
*/
|
|
1347
|
+
500: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
1348
|
+
/**
|
|
1349
|
+
* Server Error
|
|
1350
|
+
*/
|
|
1351
|
+
501: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
1352
|
+
};
|
|
1353
|
+
};
|
|
1354
|
+
};
|
|
1355
|
+
'/api/abp/application-configuration': {
|
|
1356
|
+
get: {
|
|
1357
|
+
req: GetApiAbpApplicationConfigurationData;
|
|
1358
|
+
res: {
|
|
1359
|
+
/**
|
|
1360
|
+
* Success
|
|
1361
|
+
*/
|
|
1362
|
+
200: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationConfigurationDto;
|
|
1363
|
+
/**
|
|
1364
|
+
* Bad Request
|
|
1365
|
+
*/
|
|
1366
|
+
400: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
1367
|
+
/**
|
|
1368
|
+
* Unauthorized
|
|
1369
|
+
*/
|
|
1370
|
+
401: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
1371
|
+
/**
|
|
1372
|
+
* Forbidden
|
|
1373
|
+
*/
|
|
1374
|
+
403: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
1375
|
+
/**
|
|
1376
|
+
* Not Found
|
|
1377
|
+
*/
|
|
1378
|
+
404: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
1379
|
+
/**
|
|
1380
|
+
* Server Error
|
|
1381
|
+
*/
|
|
1382
|
+
500: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
1383
|
+
/**
|
|
1384
|
+
* Server Error
|
|
1385
|
+
*/
|
|
1386
|
+
501: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
1387
|
+
};
|
|
1388
|
+
};
|
|
1389
|
+
};
|
|
1390
|
+
'/api/abp/application-localization': {
|
|
1391
|
+
get: {
|
|
1392
|
+
req: GetApiAbpApplicationLocalizationData;
|
|
1393
|
+
res: {
|
|
1394
|
+
/**
|
|
1395
|
+
* Success
|
|
1396
|
+
*/
|
|
1397
|
+
200: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationDto;
|
|
1398
|
+
/**
|
|
1399
|
+
* Bad Request
|
|
1400
|
+
*/
|
|
1401
|
+
400: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
1402
|
+
/**
|
|
1403
|
+
* Unauthorized
|
|
1404
|
+
*/
|
|
1405
|
+
401: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
1406
|
+
/**
|
|
1407
|
+
* Forbidden
|
|
1408
|
+
*/
|
|
1409
|
+
403: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
1410
|
+
/**
|
|
1411
|
+
* Not Found
|
|
1412
|
+
*/
|
|
1413
|
+
404: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
1414
|
+
/**
|
|
1415
|
+
* Server Error
|
|
1416
|
+
*/
|
|
1417
|
+
500: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
1418
|
+
/**
|
|
1419
|
+
* Server Error
|
|
1420
|
+
*/
|
|
1421
|
+
501: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
1422
|
+
};
|
|
1423
|
+
};
|
|
1424
|
+
};
|
|
1425
|
+
'/api/crm-service/addresses': {
|
|
1426
|
+
get: {
|
|
1427
|
+
req: GetApiCrmServiceAddressesData;
|
|
1428
|
+
res: {
|
|
1429
|
+
/**
|
|
1430
|
+
* Success
|
|
1431
|
+
*/
|
|
1432
|
+
200: Volo_Abp_Application_Dtos_PagedResultDto_1;
|
|
1433
|
+
/**
|
|
1434
|
+
* Bad Request
|
|
1435
|
+
*/
|
|
1436
|
+
400: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
1437
|
+
/**
|
|
1438
|
+
* Unauthorized
|
|
1439
|
+
*/
|
|
1440
|
+
401: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
1441
|
+
/**
|
|
1442
|
+
* Forbidden
|
|
1443
|
+
*/
|
|
1444
|
+
403: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
1445
|
+
/**
|
|
1446
|
+
* Not Found
|
|
1447
|
+
*/
|
|
1448
|
+
404: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
1449
|
+
/**
|
|
1450
|
+
* Server Error
|
|
1451
|
+
*/
|
|
1452
|
+
500: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
1453
|
+
/**
|
|
1454
|
+
* Server Error
|
|
1455
|
+
*/
|
|
1456
|
+
501: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
1457
|
+
};
|
|
1458
|
+
};
|
|
1459
|
+
post: {
|
|
1460
|
+
req: PostApiCrmServiceAddressesData;
|
|
1461
|
+
res: {
|
|
1462
|
+
/**
|
|
1463
|
+
* Success
|
|
1464
|
+
*/
|
|
1465
|
+
200: UniRefund_CRMService_AddressTypes_AddressTypeDto;
|
|
1466
|
+
/**
|
|
1467
|
+
* Bad Request
|
|
1468
|
+
*/
|
|
1469
|
+
400: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
1470
|
+
/**
|
|
1471
|
+
* Unauthorized
|
|
1472
|
+
*/
|
|
1473
|
+
401: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
1474
|
+
/**
|
|
1475
|
+
* Forbidden
|
|
1476
|
+
*/
|
|
1477
|
+
403: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
1478
|
+
/**
|
|
1479
|
+
* Not Found
|
|
1480
|
+
*/
|
|
1481
|
+
404: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
1482
|
+
/**
|
|
1483
|
+
* Server Error
|
|
1484
|
+
*/
|
|
1485
|
+
500: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
1486
|
+
/**
|
|
1487
|
+
* Server Error
|
|
1488
|
+
*/
|
|
1489
|
+
501: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
1490
|
+
};
|
|
1491
|
+
};
|
|
1492
|
+
};
|
|
1493
|
+
'/api/crm-service/addresses/{id}': {
|
|
1494
|
+
get: {
|
|
1495
|
+
req: GetApiCrmServiceAddressesByIdData;
|
|
1496
|
+
res: {
|
|
1497
|
+
/**
|
|
1498
|
+
* Success
|
|
1499
|
+
*/
|
|
1500
|
+
200: UniRefund_CRMService_AddressTypes_AddressTypeDto;
|
|
1501
|
+
/**
|
|
1502
|
+
* Bad Request
|
|
1503
|
+
*/
|
|
1504
|
+
400: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
1505
|
+
/**
|
|
1506
|
+
* Unauthorized
|
|
1507
|
+
*/
|
|
1508
|
+
401: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
1509
|
+
/**
|
|
1510
|
+
* Forbidden
|
|
1511
|
+
*/
|
|
1512
|
+
403: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
1513
|
+
/**
|
|
1514
|
+
* Not Found
|
|
1515
|
+
*/
|
|
1516
|
+
404: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
1517
|
+
/**
|
|
1518
|
+
* Server Error
|
|
1519
|
+
*/
|
|
1520
|
+
500: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
1521
|
+
/**
|
|
1522
|
+
* Server Error
|
|
1523
|
+
*/
|
|
1524
|
+
501: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
1525
|
+
};
|
|
1526
|
+
};
|
|
1527
|
+
put: {
|
|
1528
|
+
req: PutApiCrmServiceAddressesByIdData;
|
|
1529
|
+
res: {
|
|
1530
|
+
/**
|
|
1531
|
+
* Success
|
|
1532
|
+
*/
|
|
1533
|
+
200: UniRefund_CRMService_AddressTypes_AddressTypeDto;
|
|
1534
|
+
/**
|
|
1535
|
+
* Bad Request
|
|
1536
|
+
*/
|
|
1537
|
+
400: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
1538
|
+
/**
|
|
1539
|
+
* Unauthorized
|
|
1540
|
+
*/
|
|
1541
|
+
401: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
1542
|
+
/**
|
|
1543
|
+
* Forbidden
|
|
1544
|
+
*/
|
|
1545
|
+
403: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
1546
|
+
/**
|
|
1547
|
+
* Not Found
|
|
1548
|
+
*/
|
|
1549
|
+
404: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
1550
|
+
/**
|
|
1551
|
+
* Server Error
|
|
1552
|
+
*/
|
|
1553
|
+
500: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
1554
|
+
/**
|
|
1555
|
+
* Server Error
|
|
1556
|
+
*/
|
|
1557
|
+
501: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
1558
|
+
};
|
|
1559
|
+
};
|
|
1560
|
+
delete: {
|
|
1561
|
+
req: DeleteApiCrmServiceAddressesByIdData;
|
|
1562
|
+
res: {
|
|
1563
|
+
/**
|
|
1564
|
+
* Success
|
|
1565
|
+
*/
|
|
1566
|
+
200: unknown;
|
|
1567
|
+
/**
|
|
1568
|
+
* Bad Request
|
|
1569
|
+
*/
|
|
1570
|
+
400: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
1571
|
+
/**
|
|
1572
|
+
* Unauthorized
|
|
1573
|
+
*/
|
|
1574
|
+
401: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
1575
|
+
/**
|
|
1576
|
+
* Forbidden
|
|
1577
|
+
*/
|
|
1578
|
+
403: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
1579
|
+
/**
|
|
1580
|
+
* Not Found
|
|
1581
|
+
*/
|
|
1582
|
+
404: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
1583
|
+
/**
|
|
1584
|
+
* Server Error
|
|
1585
|
+
*/
|
|
1586
|
+
500: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
1587
|
+
/**
|
|
1588
|
+
* Server Error
|
|
1589
|
+
*/
|
|
1590
|
+
501: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
1591
|
+
};
|
|
1592
|
+
};
|
|
1593
|
+
};
|
|
1594
|
+
'/api/crm-service/customs': {
|
|
1595
|
+
get: {
|
|
1596
|
+
req: GetApiCrmServiceCustomsData;
|
|
1597
|
+
res: {
|
|
1598
|
+
/**
|
|
1599
|
+
* Success
|
|
1600
|
+
*/
|
|
1601
|
+
200: Volo_Abp_Application_Dtos_PagedResultDto_1;
|
|
1602
|
+
/**
|
|
1603
|
+
* Bad Request
|
|
1604
|
+
*/
|
|
1605
|
+
400: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
1606
|
+
/**
|
|
1607
|
+
* Unauthorized
|
|
1608
|
+
*/
|
|
1609
|
+
401: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
1610
|
+
/**
|
|
1611
|
+
* Forbidden
|
|
1612
|
+
*/
|
|
1613
|
+
403: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
1614
|
+
/**
|
|
1615
|
+
* Not Found
|
|
1616
|
+
*/
|
|
1617
|
+
404: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
1618
|
+
/**
|
|
1619
|
+
* Server Error
|
|
1620
|
+
*/
|
|
1621
|
+
500: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
1622
|
+
/**
|
|
1623
|
+
* Server Error
|
|
1624
|
+
*/
|
|
1625
|
+
501: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
1626
|
+
};
|
|
1627
|
+
};
|
|
1628
|
+
};
|
|
1629
|
+
'/api/crm-service/customs/detail/{id}': {
|
|
1630
|
+
get: {
|
|
1631
|
+
req: GetApiCrmServiceCustomsDetailByIdData;
|
|
1632
|
+
res: {
|
|
1633
|
+
/**
|
|
1634
|
+
* Success
|
|
1635
|
+
*/
|
|
1636
|
+
200: UniRefund_CRMService_Customss_CustomsDto;
|
|
1637
|
+
/**
|
|
1638
|
+
* Bad Request
|
|
1639
|
+
*/
|
|
1640
|
+
400: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
1641
|
+
/**
|
|
1642
|
+
* Unauthorized
|
|
1643
|
+
*/
|
|
1644
|
+
401: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
1645
|
+
/**
|
|
1646
|
+
* Forbidden
|
|
1647
|
+
*/
|
|
1648
|
+
403: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
1649
|
+
/**
|
|
1650
|
+
* Not Found
|
|
1651
|
+
*/
|
|
1652
|
+
404: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
1653
|
+
/**
|
|
1654
|
+
* Server Error
|
|
1655
|
+
*/
|
|
1656
|
+
500: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
1657
|
+
/**
|
|
1658
|
+
* Server Error
|
|
1659
|
+
*/
|
|
1660
|
+
501: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
1661
|
+
};
|
|
1662
|
+
};
|
|
1663
|
+
};
|
|
1664
|
+
'/api/crm-service/customs/with-components': {
|
|
1665
|
+
post: {
|
|
1666
|
+
req: PostApiCrmServiceCustomsWithComponentsData;
|
|
1667
|
+
res: {
|
|
1668
|
+
/**
|
|
1669
|
+
* Success
|
|
1670
|
+
*/
|
|
1671
|
+
200: unknown;
|
|
1672
|
+
/**
|
|
1673
|
+
* Bad Request
|
|
1674
|
+
*/
|
|
1675
|
+
400: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
1676
|
+
/**
|
|
1677
|
+
* Unauthorized
|
|
1678
|
+
*/
|
|
1679
|
+
401: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
1680
|
+
/**
|
|
1681
|
+
* Forbidden
|
|
1682
|
+
*/
|
|
1683
|
+
403: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
1684
|
+
/**
|
|
1685
|
+
* Not Found
|
|
1686
|
+
*/
|
|
1687
|
+
404: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
1688
|
+
/**
|
|
1689
|
+
* Server Error
|
|
1690
|
+
*/
|
|
1691
|
+
500: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
1692
|
+
/**
|
|
1693
|
+
* Server Error
|
|
1694
|
+
*/
|
|
1695
|
+
501: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
1696
|
+
};
|
|
1697
|
+
};
|
|
1698
|
+
};
|
|
1699
|
+
'/api/crm-service/customs/with-components/{id}': {
|
|
1700
|
+
delete: {
|
|
1701
|
+
req: DeleteApiCrmServiceCustomsWithComponentsByIdData;
|
|
1702
|
+
res: {
|
|
1703
|
+
/**
|
|
1704
|
+
* Success
|
|
1705
|
+
*/
|
|
1706
|
+
200: unknown;
|
|
1707
|
+
/**
|
|
1708
|
+
* Bad Request
|
|
1709
|
+
*/
|
|
1710
|
+
400: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
1711
|
+
/**
|
|
1712
|
+
* Unauthorized
|
|
1713
|
+
*/
|
|
1714
|
+
401: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
1715
|
+
/**
|
|
1716
|
+
* Forbidden
|
|
1717
|
+
*/
|
|
1718
|
+
403: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
1719
|
+
/**
|
|
1720
|
+
* Not Found
|
|
1721
|
+
*/
|
|
1722
|
+
404: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
1723
|
+
/**
|
|
1724
|
+
* Server Error
|
|
1725
|
+
*/
|
|
1726
|
+
500: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
1727
|
+
/**
|
|
1728
|
+
* Server Error
|
|
1729
|
+
*/
|
|
1730
|
+
501: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
1731
|
+
};
|
|
1732
|
+
};
|
|
1733
|
+
};
|
|
1734
|
+
'/api/crm-service/customs/{customsId}/affiliations': {
|
|
1735
|
+
post: {
|
|
1736
|
+
req: PostApiCrmServiceCustomsByCustomsIdAffiliationsData;
|
|
1737
|
+
res: {
|
|
1738
|
+
/**
|
|
1739
|
+
* Success
|
|
1740
|
+
*/
|
|
1741
|
+
200: unknown;
|
|
1742
|
+
/**
|
|
1743
|
+
* Bad Request
|
|
1744
|
+
*/
|
|
1745
|
+
400: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
1746
|
+
/**
|
|
1747
|
+
* Unauthorized
|
|
1748
|
+
*/
|
|
1749
|
+
401: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
1750
|
+
/**
|
|
1751
|
+
* Forbidden
|
|
1752
|
+
*/
|
|
1753
|
+
403: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
1754
|
+
/**
|
|
1755
|
+
* Not Found
|
|
1756
|
+
*/
|
|
1757
|
+
404: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
1758
|
+
/**
|
|
1759
|
+
* Server Error
|
|
1760
|
+
*/
|
|
1761
|
+
500: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
1762
|
+
/**
|
|
1763
|
+
* Server Error
|
|
1764
|
+
*/
|
|
1765
|
+
501: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
1766
|
+
};
|
|
1767
|
+
};
|
|
1768
|
+
get: {
|
|
1769
|
+
req: GetApiCrmServiceCustomsByCustomsIdAffiliationsData;
|
|
1770
|
+
res: {
|
|
1771
|
+
/**
|
|
1772
|
+
* Success
|
|
1773
|
+
*/
|
|
1774
|
+
200: Volo_Abp_Application_Dtos_PagedResultDto_1;
|
|
1775
|
+
/**
|
|
1776
|
+
* Bad Request
|
|
1777
|
+
*/
|
|
1778
|
+
400: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
1779
|
+
/**
|
|
1780
|
+
* Unauthorized
|
|
1781
|
+
*/
|
|
1782
|
+
401: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
1783
|
+
/**
|
|
1784
|
+
* Forbidden
|
|
1785
|
+
*/
|
|
1786
|
+
403: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
1787
|
+
/**
|
|
1788
|
+
* Not Found
|
|
1789
|
+
*/
|
|
1790
|
+
404: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
1791
|
+
/**
|
|
1792
|
+
* Server Error
|
|
1793
|
+
*/
|
|
1794
|
+
500: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
1795
|
+
/**
|
|
1796
|
+
* Server Error
|
|
1797
|
+
*/
|
|
1798
|
+
501: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
1799
|
+
};
|
|
1800
|
+
};
|
|
1801
|
+
};
|
|
1802
|
+
'/api/crm-service/emails': {
|
|
1803
|
+
get: {
|
|
1804
|
+
req: GetApiCrmServiceEmailsData;
|
|
1805
|
+
res: {
|
|
1806
|
+
/**
|
|
1807
|
+
* Success
|
|
1808
|
+
*/
|
|
1809
|
+
200: Volo_Abp_Application_Dtos_PagedResultDto_1;
|
|
1810
|
+
/**
|
|
1811
|
+
* Bad Request
|
|
1812
|
+
*/
|
|
1813
|
+
400: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
1814
|
+
/**
|
|
1815
|
+
* Unauthorized
|
|
1816
|
+
*/
|
|
1817
|
+
401: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
1818
|
+
/**
|
|
1819
|
+
* Forbidden
|
|
1820
|
+
*/
|
|
1821
|
+
403: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
1822
|
+
/**
|
|
1823
|
+
* Not Found
|
|
1824
|
+
*/
|
|
1825
|
+
404: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
1826
|
+
/**
|
|
1827
|
+
* Server Error
|
|
1828
|
+
*/
|
|
1829
|
+
500: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
1830
|
+
/**
|
|
1831
|
+
* Server Error
|
|
1832
|
+
*/
|
|
1833
|
+
501: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
1834
|
+
};
|
|
1835
|
+
};
|
|
1836
|
+
post: {
|
|
1837
|
+
req: PostApiCrmServiceEmailsData;
|
|
1838
|
+
res: {
|
|
1839
|
+
/**
|
|
1840
|
+
* Success
|
|
1841
|
+
*/
|
|
1842
|
+
200: UniRefund_CRMService_EmailCommonDatas_EmailCommonDataDto;
|
|
1843
|
+
/**
|
|
1844
|
+
* Bad Request
|
|
1845
|
+
*/
|
|
1846
|
+
400: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
1847
|
+
/**
|
|
1848
|
+
* Unauthorized
|
|
1849
|
+
*/
|
|
1850
|
+
401: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
1851
|
+
/**
|
|
1852
|
+
* Forbidden
|
|
1853
|
+
*/
|
|
1854
|
+
403: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
1855
|
+
/**
|
|
1856
|
+
* Not Found
|
|
1857
|
+
*/
|
|
1858
|
+
404: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
1859
|
+
/**
|
|
1860
|
+
* Server Error
|
|
1861
|
+
*/
|
|
1862
|
+
500: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
1863
|
+
/**
|
|
1864
|
+
* Server Error
|
|
1865
|
+
*/
|
|
1866
|
+
501: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
1867
|
+
};
|
|
1868
|
+
};
|
|
1869
|
+
};
|
|
1870
|
+
'/api/crm-service/emails/{id}': {
|
|
1871
|
+
get: {
|
|
1872
|
+
req: GetApiCrmServiceEmailsByIdData;
|
|
1873
|
+
res: {
|
|
1874
|
+
/**
|
|
1875
|
+
* Success
|
|
1876
|
+
*/
|
|
1877
|
+
200: UniRefund_CRMService_EmailCommonDatas_EmailCommonDataDto;
|
|
1878
|
+
/**
|
|
1879
|
+
* Bad Request
|
|
1880
|
+
*/
|
|
1881
|
+
400: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
1882
|
+
/**
|
|
1883
|
+
* Unauthorized
|
|
1884
|
+
*/
|
|
1885
|
+
401: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
1886
|
+
/**
|
|
1887
|
+
* Forbidden
|
|
1888
|
+
*/
|
|
1889
|
+
403: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
1890
|
+
/**
|
|
1891
|
+
* Not Found
|
|
1892
|
+
*/
|
|
1893
|
+
404: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
1894
|
+
/**
|
|
1895
|
+
* Server Error
|
|
1896
|
+
*/
|
|
1897
|
+
500: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
1898
|
+
/**
|
|
1899
|
+
* Server Error
|
|
1900
|
+
*/
|
|
1901
|
+
501: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
1902
|
+
};
|
|
1903
|
+
};
|
|
1904
|
+
put: {
|
|
1905
|
+
req: PutApiCrmServiceEmailsByIdData;
|
|
1906
|
+
res: {
|
|
1907
|
+
/**
|
|
1908
|
+
* Success
|
|
1909
|
+
*/
|
|
1910
|
+
200: UniRefund_CRMService_EmailCommonDatas_EmailCommonDataDto;
|
|
1911
|
+
/**
|
|
1912
|
+
* Bad Request
|
|
1913
|
+
*/
|
|
1914
|
+
400: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
1915
|
+
/**
|
|
1916
|
+
* Unauthorized
|
|
1917
|
+
*/
|
|
1918
|
+
401: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
1919
|
+
/**
|
|
1920
|
+
* Forbidden
|
|
1921
|
+
*/
|
|
1922
|
+
403: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
1923
|
+
/**
|
|
1924
|
+
* Not Found
|
|
1925
|
+
*/
|
|
1926
|
+
404: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
1927
|
+
/**
|
|
1928
|
+
* Server Error
|
|
1929
|
+
*/
|
|
1930
|
+
500: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
1931
|
+
/**
|
|
1932
|
+
* Server Error
|
|
1933
|
+
*/
|
|
1934
|
+
501: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
1935
|
+
};
|
|
1936
|
+
};
|
|
1937
|
+
delete: {
|
|
1938
|
+
req: DeleteApiCrmServiceEmailsByIdData;
|
|
1939
|
+
res: {
|
|
1940
|
+
/**
|
|
1941
|
+
* Success
|
|
1942
|
+
*/
|
|
1943
|
+
200: unknown;
|
|
1944
|
+
/**
|
|
1945
|
+
* Bad Request
|
|
1946
|
+
*/
|
|
1947
|
+
400: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
1948
|
+
/**
|
|
1949
|
+
* Unauthorized
|
|
1950
|
+
*/
|
|
1951
|
+
401: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
1952
|
+
/**
|
|
1953
|
+
* Forbidden
|
|
1954
|
+
*/
|
|
1955
|
+
403: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
1956
|
+
/**
|
|
1957
|
+
* Not Found
|
|
1958
|
+
*/
|
|
1959
|
+
404: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
1960
|
+
/**
|
|
1961
|
+
* Server Error
|
|
1962
|
+
*/
|
|
1963
|
+
500: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
1964
|
+
/**
|
|
1965
|
+
* Server Error
|
|
1966
|
+
*/
|
|
1967
|
+
501: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
1968
|
+
};
|
|
1969
|
+
};
|
|
1970
|
+
};
|
|
1971
|
+
'/api/crm-service/individuals/with-components': {
|
|
1972
|
+
post: {
|
|
1973
|
+
req: PostApiCrmServiceIndividualsWithComponentsData;
|
|
1974
|
+
res: {
|
|
1975
|
+
/**
|
|
1976
|
+
* Success
|
|
1977
|
+
*/
|
|
1978
|
+
200: unknown;
|
|
1979
|
+
/**
|
|
1980
|
+
* Bad Request
|
|
1981
|
+
*/
|
|
1982
|
+
400: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
1983
|
+
/**
|
|
1984
|
+
* Unauthorized
|
|
1985
|
+
*/
|
|
1986
|
+
401: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
1987
|
+
/**
|
|
1988
|
+
* Forbidden
|
|
1989
|
+
*/
|
|
1990
|
+
403: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
1991
|
+
/**
|
|
1992
|
+
* Not Found
|
|
1993
|
+
*/
|
|
1994
|
+
404: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
1995
|
+
/**
|
|
1996
|
+
* Server Error
|
|
1997
|
+
*/
|
|
1998
|
+
500: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
1999
|
+
/**
|
|
2000
|
+
* Server Error
|
|
2001
|
+
*/
|
|
2002
|
+
501: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2003
|
+
};
|
|
2004
|
+
};
|
|
2005
|
+
};
|
|
2006
|
+
'/api/crm-service/individuals': {
|
|
2007
|
+
get: {
|
|
2008
|
+
req: GetApiCrmServiceIndividualsData;
|
|
2009
|
+
res: {
|
|
2010
|
+
/**
|
|
2011
|
+
* Success
|
|
2012
|
+
*/
|
|
2013
|
+
200: Volo_Abp_Application_Dtos_PagedResultDto_1;
|
|
2014
|
+
/**
|
|
2015
|
+
* Bad Request
|
|
2016
|
+
*/
|
|
2017
|
+
400: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2018
|
+
/**
|
|
2019
|
+
* Unauthorized
|
|
2020
|
+
*/
|
|
2021
|
+
401: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2022
|
+
/**
|
|
2023
|
+
* Forbidden
|
|
2024
|
+
*/
|
|
2025
|
+
403: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2026
|
+
/**
|
|
2027
|
+
* Not Found
|
|
2028
|
+
*/
|
|
2029
|
+
404: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2030
|
+
/**
|
|
2031
|
+
* Server Error
|
|
2032
|
+
*/
|
|
2033
|
+
500: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2034
|
+
/**
|
|
2035
|
+
* Server Error
|
|
2036
|
+
*/
|
|
2037
|
+
501: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2038
|
+
};
|
|
2039
|
+
};
|
|
2040
|
+
};
|
|
2041
|
+
'/api/crm-service/merchants': {
|
|
2042
|
+
get: {
|
|
2043
|
+
req: GetApiCrmServiceMerchantsData;
|
|
2044
|
+
res: {
|
|
2045
|
+
/**
|
|
2046
|
+
* Success
|
|
2047
|
+
*/
|
|
2048
|
+
200: Volo_Abp_Application_Dtos_PagedResultDto_1;
|
|
2049
|
+
/**
|
|
2050
|
+
* Bad Request
|
|
2051
|
+
*/
|
|
2052
|
+
400: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2053
|
+
/**
|
|
2054
|
+
* Unauthorized
|
|
2055
|
+
*/
|
|
2056
|
+
401: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2057
|
+
/**
|
|
2058
|
+
* Forbidden
|
|
2059
|
+
*/
|
|
2060
|
+
403: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2061
|
+
/**
|
|
2062
|
+
* Not Found
|
|
2063
|
+
*/
|
|
2064
|
+
404: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2065
|
+
/**
|
|
2066
|
+
* Server Error
|
|
2067
|
+
*/
|
|
2068
|
+
500: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2069
|
+
/**
|
|
2070
|
+
* Server Error
|
|
2071
|
+
*/
|
|
2072
|
+
501: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2073
|
+
};
|
|
2074
|
+
};
|
|
2075
|
+
};
|
|
2076
|
+
'/api/crm-service/merchants/detail/{id}': {
|
|
2077
|
+
get: {
|
|
2078
|
+
req: GetApiCrmServiceMerchantsDetailByIdData;
|
|
2079
|
+
res: {
|
|
2080
|
+
/**
|
|
2081
|
+
* Success
|
|
2082
|
+
*/
|
|
2083
|
+
200: UniRefund_CRMService_Merchants_MerchantDto;
|
|
2084
|
+
/**
|
|
2085
|
+
* Bad Request
|
|
2086
|
+
*/
|
|
2087
|
+
400: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2088
|
+
/**
|
|
2089
|
+
* Unauthorized
|
|
2090
|
+
*/
|
|
2091
|
+
401: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2092
|
+
/**
|
|
2093
|
+
* Forbidden
|
|
2094
|
+
*/
|
|
2095
|
+
403: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2096
|
+
/**
|
|
2097
|
+
* Not Found
|
|
2098
|
+
*/
|
|
2099
|
+
404: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2100
|
+
/**
|
|
2101
|
+
* Server Error
|
|
2102
|
+
*/
|
|
2103
|
+
500: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2104
|
+
/**
|
|
2105
|
+
* Server Error
|
|
2106
|
+
*/
|
|
2107
|
+
501: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2108
|
+
};
|
|
2109
|
+
};
|
|
2110
|
+
};
|
|
2111
|
+
'/api/crm-service/merchants/with-components': {
|
|
2112
|
+
post: {
|
|
2113
|
+
req: PostApiCrmServiceMerchantsWithComponentsData;
|
|
2114
|
+
res: {
|
|
2115
|
+
/**
|
|
2116
|
+
* Success
|
|
2117
|
+
*/
|
|
2118
|
+
200: unknown;
|
|
2119
|
+
/**
|
|
2120
|
+
* Bad Request
|
|
2121
|
+
*/
|
|
2122
|
+
400: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2123
|
+
/**
|
|
2124
|
+
* Unauthorized
|
|
2125
|
+
*/
|
|
2126
|
+
401: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2127
|
+
/**
|
|
2128
|
+
* Forbidden
|
|
2129
|
+
*/
|
|
2130
|
+
403: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2131
|
+
/**
|
|
2132
|
+
* Not Found
|
|
2133
|
+
*/
|
|
2134
|
+
404: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2135
|
+
/**
|
|
2136
|
+
* Server Error
|
|
2137
|
+
*/
|
|
2138
|
+
500: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2139
|
+
/**
|
|
2140
|
+
* Server Error
|
|
2141
|
+
*/
|
|
2142
|
+
501: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2143
|
+
};
|
|
2144
|
+
};
|
|
2145
|
+
};
|
|
2146
|
+
'/api/crm-service/merchants/with-components/{id}': {
|
|
2147
|
+
delete: {
|
|
2148
|
+
req: DeleteApiCrmServiceMerchantsWithComponentsByIdData;
|
|
2149
|
+
res: {
|
|
2150
|
+
/**
|
|
2151
|
+
* Success
|
|
2152
|
+
*/
|
|
2153
|
+
200: unknown;
|
|
2154
|
+
/**
|
|
2155
|
+
* Bad Request
|
|
2156
|
+
*/
|
|
2157
|
+
400: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2158
|
+
/**
|
|
2159
|
+
* Unauthorized
|
|
2160
|
+
*/
|
|
2161
|
+
401: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2162
|
+
/**
|
|
2163
|
+
* Forbidden
|
|
2164
|
+
*/
|
|
2165
|
+
403: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2166
|
+
/**
|
|
2167
|
+
* Not Found
|
|
2168
|
+
*/
|
|
2169
|
+
404: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2170
|
+
/**
|
|
2171
|
+
* Server Error
|
|
2172
|
+
*/
|
|
2173
|
+
500: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2174
|
+
/**
|
|
2175
|
+
* Server Error
|
|
2176
|
+
*/
|
|
2177
|
+
501: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2178
|
+
};
|
|
2179
|
+
};
|
|
2180
|
+
};
|
|
2181
|
+
'/api/crm-service/merchants/{merchantId}/affiliations': {
|
|
2182
|
+
post: {
|
|
2183
|
+
req: PostApiCrmServiceMerchantsByMerchantIdAffiliationsData;
|
|
2184
|
+
res: {
|
|
2185
|
+
/**
|
|
2186
|
+
* Success
|
|
2187
|
+
*/
|
|
2188
|
+
200: unknown;
|
|
2189
|
+
/**
|
|
2190
|
+
* Bad Request
|
|
2191
|
+
*/
|
|
2192
|
+
400: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2193
|
+
/**
|
|
2194
|
+
* Unauthorized
|
|
2195
|
+
*/
|
|
2196
|
+
401: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2197
|
+
/**
|
|
2198
|
+
* Forbidden
|
|
2199
|
+
*/
|
|
2200
|
+
403: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2201
|
+
/**
|
|
2202
|
+
* Not Found
|
|
2203
|
+
*/
|
|
2204
|
+
404: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2205
|
+
/**
|
|
2206
|
+
* Server Error
|
|
2207
|
+
*/
|
|
2208
|
+
500: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2209
|
+
/**
|
|
2210
|
+
* Server Error
|
|
2211
|
+
*/
|
|
2212
|
+
501: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2213
|
+
};
|
|
2214
|
+
};
|
|
2215
|
+
get: {
|
|
2216
|
+
req: GetApiCrmServiceMerchantsByMerchantIdAffiliationsData;
|
|
2217
|
+
res: {
|
|
2218
|
+
/**
|
|
2219
|
+
* Success
|
|
2220
|
+
*/
|
|
2221
|
+
200: Volo_Abp_Application_Dtos_PagedResultDto_1;
|
|
2222
|
+
/**
|
|
2223
|
+
* Bad Request
|
|
2224
|
+
*/
|
|
2225
|
+
400: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2226
|
+
/**
|
|
2227
|
+
* Unauthorized
|
|
2228
|
+
*/
|
|
2229
|
+
401: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2230
|
+
/**
|
|
2231
|
+
* Forbidden
|
|
2232
|
+
*/
|
|
2233
|
+
403: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2234
|
+
/**
|
|
2235
|
+
* Not Found
|
|
2236
|
+
*/
|
|
2237
|
+
404: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2238
|
+
/**
|
|
2239
|
+
* Server Error
|
|
2240
|
+
*/
|
|
2241
|
+
500: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2242
|
+
/**
|
|
2243
|
+
* Server Error
|
|
2244
|
+
*/
|
|
2245
|
+
501: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2246
|
+
};
|
|
2247
|
+
};
|
|
2248
|
+
};
|
|
2249
|
+
'/api/crm-service/organizations/with-components': {
|
|
2250
|
+
post: {
|
|
2251
|
+
req: PostApiCrmServiceOrganizationsWithComponentsData;
|
|
2252
|
+
res: {
|
|
2253
|
+
/**
|
|
2254
|
+
* Success
|
|
2255
|
+
*/
|
|
2256
|
+
200: unknown;
|
|
2257
|
+
/**
|
|
2258
|
+
* Bad Request
|
|
2259
|
+
*/
|
|
2260
|
+
400: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2261
|
+
/**
|
|
2262
|
+
* Unauthorized
|
|
2263
|
+
*/
|
|
2264
|
+
401: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2265
|
+
/**
|
|
2266
|
+
* Forbidden
|
|
2267
|
+
*/
|
|
2268
|
+
403: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2269
|
+
/**
|
|
2270
|
+
* Not Found
|
|
2271
|
+
*/
|
|
2272
|
+
404: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2273
|
+
/**
|
|
2274
|
+
* Server Error
|
|
2275
|
+
*/
|
|
2276
|
+
500: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2277
|
+
/**
|
|
2278
|
+
* Server Error
|
|
2279
|
+
*/
|
|
2280
|
+
501: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2281
|
+
};
|
|
2282
|
+
};
|
|
2283
|
+
};
|
|
2284
|
+
'/api/crm-service/organizations': {
|
|
2285
|
+
get: {
|
|
2286
|
+
req: GetApiCrmServiceOrganizationsData;
|
|
2287
|
+
res: {
|
|
2288
|
+
/**
|
|
2289
|
+
* Success
|
|
2290
|
+
*/
|
|
2291
|
+
200: Volo_Abp_Application_Dtos_PagedResultDto_1;
|
|
2292
|
+
/**
|
|
2293
|
+
* Bad Request
|
|
2294
|
+
*/
|
|
2295
|
+
400: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2296
|
+
/**
|
|
2297
|
+
* Unauthorized
|
|
2298
|
+
*/
|
|
2299
|
+
401: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2300
|
+
/**
|
|
2301
|
+
* Forbidden
|
|
2302
|
+
*/
|
|
2303
|
+
403: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2304
|
+
/**
|
|
2305
|
+
* Not Found
|
|
2306
|
+
*/
|
|
2307
|
+
404: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2308
|
+
/**
|
|
2309
|
+
* Server Error
|
|
2310
|
+
*/
|
|
2311
|
+
500: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2312
|
+
/**
|
|
2313
|
+
* Server Error
|
|
2314
|
+
*/
|
|
2315
|
+
501: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2316
|
+
};
|
|
2317
|
+
};
|
|
2318
|
+
};
|
|
2319
|
+
'/api/crm-service/refund-points': {
|
|
2320
|
+
get: {
|
|
2321
|
+
req: GetApiCrmServiceRefundPointsData;
|
|
2322
|
+
res: {
|
|
2323
|
+
/**
|
|
2324
|
+
* Success
|
|
2325
|
+
*/
|
|
2326
|
+
200: Volo_Abp_Application_Dtos_PagedResultDto_1;
|
|
2327
|
+
/**
|
|
2328
|
+
* Bad Request
|
|
2329
|
+
*/
|
|
2330
|
+
400: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2331
|
+
/**
|
|
2332
|
+
* Unauthorized
|
|
2333
|
+
*/
|
|
2334
|
+
401: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2335
|
+
/**
|
|
2336
|
+
* Forbidden
|
|
2337
|
+
*/
|
|
2338
|
+
403: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2339
|
+
/**
|
|
2340
|
+
* Not Found
|
|
2341
|
+
*/
|
|
2342
|
+
404: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2343
|
+
/**
|
|
2344
|
+
* Server Error
|
|
2345
|
+
*/
|
|
2346
|
+
500: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2347
|
+
/**
|
|
2348
|
+
* Server Error
|
|
2349
|
+
*/
|
|
2350
|
+
501: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2351
|
+
};
|
|
2352
|
+
};
|
|
2353
|
+
};
|
|
2354
|
+
'/api/crm-service/refund-points/detail/{id}': {
|
|
2355
|
+
get: {
|
|
2356
|
+
req: GetApiCrmServiceRefundPointsDetailByIdData;
|
|
2357
|
+
res: {
|
|
2358
|
+
/**
|
|
2359
|
+
* Success
|
|
2360
|
+
*/
|
|
2361
|
+
200: UniRefund_CRMService_RefundPoints_RefundPointDto;
|
|
2362
|
+
/**
|
|
2363
|
+
* Bad Request
|
|
2364
|
+
*/
|
|
2365
|
+
400: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2366
|
+
/**
|
|
2367
|
+
* Unauthorized
|
|
2368
|
+
*/
|
|
2369
|
+
401: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2370
|
+
/**
|
|
2371
|
+
* Forbidden
|
|
2372
|
+
*/
|
|
2373
|
+
403: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2374
|
+
/**
|
|
2375
|
+
* Not Found
|
|
2376
|
+
*/
|
|
2377
|
+
404: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2378
|
+
/**
|
|
2379
|
+
* Server Error
|
|
2380
|
+
*/
|
|
2381
|
+
500: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2382
|
+
/**
|
|
2383
|
+
* Server Error
|
|
2384
|
+
*/
|
|
2385
|
+
501: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2386
|
+
};
|
|
2387
|
+
};
|
|
2388
|
+
};
|
|
2389
|
+
'/api/crm-service/refund-points/with-components': {
|
|
2390
|
+
post: {
|
|
2391
|
+
req: PostApiCrmServiceRefundPointsWithComponentsData;
|
|
2392
|
+
res: {
|
|
2393
|
+
/**
|
|
2394
|
+
* Success
|
|
2395
|
+
*/
|
|
2396
|
+
200: unknown;
|
|
2397
|
+
/**
|
|
2398
|
+
* Bad Request
|
|
2399
|
+
*/
|
|
2400
|
+
400: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2401
|
+
/**
|
|
2402
|
+
* Unauthorized
|
|
2403
|
+
*/
|
|
2404
|
+
401: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2405
|
+
/**
|
|
2406
|
+
* Forbidden
|
|
2407
|
+
*/
|
|
2408
|
+
403: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2409
|
+
/**
|
|
2410
|
+
* Not Found
|
|
2411
|
+
*/
|
|
2412
|
+
404: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2413
|
+
/**
|
|
2414
|
+
* Server Error
|
|
2415
|
+
*/
|
|
2416
|
+
500: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2417
|
+
/**
|
|
2418
|
+
* Server Error
|
|
2419
|
+
*/
|
|
2420
|
+
501: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2421
|
+
};
|
|
2422
|
+
};
|
|
2423
|
+
};
|
|
2424
|
+
'/api/crm-service/refund-points/with-components/{id}': {
|
|
2425
|
+
delete: {
|
|
2426
|
+
req: DeleteApiCrmServiceRefundPointsWithComponentsByIdData;
|
|
2427
|
+
res: {
|
|
2428
|
+
/**
|
|
2429
|
+
* Success
|
|
2430
|
+
*/
|
|
2431
|
+
200: unknown;
|
|
2432
|
+
/**
|
|
2433
|
+
* Bad Request
|
|
2434
|
+
*/
|
|
2435
|
+
400: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2436
|
+
/**
|
|
2437
|
+
* Unauthorized
|
|
2438
|
+
*/
|
|
2439
|
+
401: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2440
|
+
/**
|
|
2441
|
+
* Forbidden
|
|
2442
|
+
*/
|
|
2443
|
+
403: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2444
|
+
/**
|
|
2445
|
+
* Not Found
|
|
2446
|
+
*/
|
|
2447
|
+
404: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2448
|
+
/**
|
|
2449
|
+
* Server Error
|
|
2450
|
+
*/
|
|
2451
|
+
500: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2452
|
+
/**
|
|
2453
|
+
* Server Error
|
|
2454
|
+
*/
|
|
2455
|
+
501: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2456
|
+
};
|
|
2457
|
+
};
|
|
2458
|
+
};
|
|
2459
|
+
'/api/crm-service/refund-points/{refundPointId}/affiliations': {
|
|
2460
|
+
post: {
|
|
2461
|
+
req: PostApiCrmServiceRefundPointsByRefundPointIdAffiliationsData;
|
|
2462
|
+
res: {
|
|
2463
|
+
/**
|
|
2464
|
+
* Success
|
|
2465
|
+
*/
|
|
2466
|
+
200: unknown;
|
|
2467
|
+
/**
|
|
2468
|
+
* Bad Request
|
|
2469
|
+
*/
|
|
2470
|
+
400: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2471
|
+
/**
|
|
2472
|
+
* Unauthorized
|
|
2473
|
+
*/
|
|
2474
|
+
401: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2475
|
+
/**
|
|
2476
|
+
* Forbidden
|
|
2477
|
+
*/
|
|
2478
|
+
403: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2479
|
+
/**
|
|
2480
|
+
* Not Found
|
|
2481
|
+
*/
|
|
2482
|
+
404: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2483
|
+
/**
|
|
2484
|
+
* Server Error
|
|
2485
|
+
*/
|
|
2486
|
+
500: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2487
|
+
/**
|
|
2488
|
+
* Server Error
|
|
2489
|
+
*/
|
|
2490
|
+
501: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2491
|
+
};
|
|
2492
|
+
};
|
|
2493
|
+
get: {
|
|
2494
|
+
req: GetApiCrmServiceRefundPointsByRefundPointIdAffiliationsData;
|
|
2495
|
+
res: {
|
|
2496
|
+
/**
|
|
2497
|
+
* Success
|
|
2498
|
+
*/
|
|
2499
|
+
200: Volo_Abp_Application_Dtos_PagedResultDto_1;
|
|
2500
|
+
/**
|
|
2501
|
+
* Bad Request
|
|
2502
|
+
*/
|
|
2503
|
+
400: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2504
|
+
/**
|
|
2505
|
+
* Unauthorized
|
|
2506
|
+
*/
|
|
2507
|
+
401: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2508
|
+
/**
|
|
2509
|
+
* Forbidden
|
|
2510
|
+
*/
|
|
2511
|
+
403: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2512
|
+
/**
|
|
2513
|
+
* Not Found
|
|
2514
|
+
*/
|
|
2515
|
+
404: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2516
|
+
/**
|
|
2517
|
+
* Server Error
|
|
2518
|
+
*/
|
|
2519
|
+
500: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2520
|
+
/**
|
|
2521
|
+
* Server Error
|
|
2522
|
+
*/
|
|
2523
|
+
501: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2524
|
+
};
|
|
2525
|
+
};
|
|
2526
|
+
};
|
|
2527
|
+
'/api/crm-service/tax-frees': {
|
|
2528
|
+
get: {
|
|
2529
|
+
req: GetApiCrmServiceTaxFreesData;
|
|
2530
|
+
res: {
|
|
2531
|
+
/**
|
|
2532
|
+
* Success
|
|
2533
|
+
*/
|
|
2534
|
+
200: Volo_Abp_Application_Dtos_PagedResultDto_1;
|
|
2535
|
+
/**
|
|
2536
|
+
* Bad Request
|
|
2537
|
+
*/
|
|
2538
|
+
400: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2539
|
+
/**
|
|
2540
|
+
* Unauthorized
|
|
2541
|
+
*/
|
|
2542
|
+
401: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2543
|
+
/**
|
|
2544
|
+
* Forbidden
|
|
2545
|
+
*/
|
|
2546
|
+
403: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2547
|
+
/**
|
|
2548
|
+
* Not Found
|
|
2549
|
+
*/
|
|
2550
|
+
404: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2551
|
+
/**
|
|
2552
|
+
* Server Error
|
|
2553
|
+
*/
|
|
2554
|
+
500: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2555
|
+
/**
|
|
2556
|
+
* Server Error
|
|
2557
|
+
*/
|
|
2558
|
+
501: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2559
|
+
};
|
|
2560
|
+
};
|
|
2561
|
+
};
|
|
2562
|
+
'/api/crm-service/tax-frees/detail/{id}': {
|
|
2563
|
+
get: {
|
|
2564
|
+
req: GetApiCrmServiceTaxFreesDetailByIdData;
|
|
2565
|
+
res: {
|
|
2566
|
+
/**
|
|
2567
|
+
* Success
|
|
2568
|
+
*/
|
|
2569
|
+
200: UniRefund_CRMService_TaxFrees_TaxFreeDto;
|
|
2570
|
+
/**
|
|
2571
|
+
* Bad Request
|
|
2572
|
+
*/
|
|
2573
|
+
400: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2574
|
+
/**
|
|
2575
|
+
* Unauthorized
|
|
2576
|
+
*/
|
|
2577
|
+
401: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2578
|
+
/**
|
|
2579
|
+
* Forbidden
|
|
2580
|
+
*/
|
|
2581
|
+
403: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2582
|
+
/**
|
|
2583
|
+
* Not Found
|
|
2584
|
+
*/
|
|
2585
|
+
404: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2586
|
+
/**
|
|
2587
|
+
* Server Error
|
|
2588
|
+
*/
|
|
2589
|
+
500: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2590
|
+
/**
|
|
2591
|
+
* Server Error
|
|
2592
|
+
*/
|
|
2593
|
+
501: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2594
|
+
};
|
|
2595
|
+
};
|
|
2596
|
+
};
|
|
2597
|
+
'/api/crm-service/tax-frees/with-components': {
|
|
2598
|
+
post: {
|
|
2599
|
+
req: PostApiCrmServiceTaxFreesWithComponentsData;
|
|
2600
|
+
res: {
|
|
2601
|
+
/**
|
|
2602
|
+
* Success
|
|
2603
|
+
*/
|
|
2604
|
+
200: unknown;
|
|
2605
|
+
/**
|
|
2606
|
+
* Bad Request
|
|
2607
|
+
*/
|
|
2608
|
+
400: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2609
|
+
/**
|
|
2610
|
+
* Unauthorized
|
|
2611
|
+
*/
|
|
2612
|
+
401: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2613
|
+
/**
|
|
2614
|
+
* Forbidden
|
|
2615
|
+
*/
|
|
2616
|
+
403: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2617
|
+
/**
|
|
2618
|
+
* Not Found
|
|
2619
|
+
*/
|
|
2620
|
+
404: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2621
|
+
/**
|
|
2622
|
+
* Server Error
|
|
2623
|
+
*/
|
|
2624
|
+
500: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2625
|
+
/**
|
|
2626
|
+
* Server Error
|
|
2627
|
+
*/
|
|
2628
|
+
501: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2629
|
+
};
|
|
2630
|
+
};
|
|
2631
|
+
};
|
|
2632
|
+
'/api/crm-service/tax-frees/with-components/{id}': {
|
|
2633
|
+
delete: {
|
|
2634
|
+
req: DeleteApiCrmServiceTaxFreesWithComponentsByIdData;
|
|
2635
|
+
res: {
|
|
2636
|
+
/**
|
|
2637
|
+
* Success
|
|
2638
|
+
*/
|
|
2639
|
+
200: unknown;
|
|
2640
|
+
/**
|
|
2641
|
+
* Bad Request
|
|
2642
|
+
*/
|
|
2643
|
+
400: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2644
|
+
/**
|
|
2645
|
+
* Unauthorized
|
|
2646
|
+
*/
|
|
2647
|
+
401: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2648
|
+
/**
|
|
2649
|
+
* Forbidden
|
|
2650
|
+
*/
|
|
2651
|
+
403: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2652
|
+
/**
|
|
2653
|
+
* Not Found
|
|
2654
|
+
*/
|
|
2655
|
+
404: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2656
|
+
/**
|
|
2657
|
+
* Server Error
|
|
2658
|
+
*/
|
|
2659
|
+
500: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2660
|
+
/**
|
|
2661
|
+
* Server Error
|
|
2662
|
+
*/
|
|
2663
|
+
501: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2664
|
+
};
|
|
2665
|
+
};
|
|
2666
|
+
};
|
|
2667
|
+
'/api/crm-service/tax-frees/{taxFreesId}/affiliations': {
|
|
2668
|
+
post: {
|
|
2669
|
+
req: PostApiCrmServiceTaxFreesByTaxFreesIdAffiliationsData;
|
|
2670
|
+
res: {
|
|
2671
|
+
/**
|
|
2672
|
+
* Success
|
|
2673
|
+
*/
|
|
2674
|
+
200: unknown;
|
|
2675
|
+
/**
|
|
2676
|
+
* Bad Request
|
|
2677
|
+
*/
|
|
2678
|
+
400: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2679
|
+
/**
|
|
2680
|
+
* Unauthorized
|
|
2681
|
+
*/
|
|
2682
|
+
401: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2683
|
+
/**
|
|
2684
|
+
* Forbidden
|
|
2685
|
+
*/
|
|
2686
|
+
403: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2687
|
+
/**
|
|
2688
|
+
* Not Found
|
|
2689
|
+
*/
|
|
2690
|
+
404: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2691
|
+
/**
|
|
2692
|
+
* Server Error
|
|
2693
|
+
*/
|
|
2694
|
+
500: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2695
|
+
/**
|
|
2696
|
+
* Server Error
|
|
2697
|
+
*/
|
|
2698
|
+
501: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2699
|
+
};
|
|
2700
|
+
};
|
|
2701
|
+
get: {
|
|
2702
|
+
req: GetApiCrmServiceTaxFreesByTaxFreesIdAffiliationsData;
|
|
2703
|
+
res: {
|
|
2704
|
+
/**
|
|
2705
|
+
* Success
|
|
2706
|
+
*/
|
|
2707
|
+
200: Volo_Abp_Application_Dtos_PagedResultDto_1;
|
|
2708
|
+
/**
|
|
2709
|
+
* Bad Request
|
|
2710
|
+
*/
|
|
2711
|
+
400: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2712
|
+
/**
|
|
2713
|
+
* Unauthorized
|
|
2714
|
+
*/
|
|
2715
|
+
401: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2716
|
+
/**
|
|
2717
|
+
* Forbidden
|
|
2718
|
+
*/
|
|
2719
|
+
403: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2720
|
+
/**
|
|
2721
|
+
* Not Found
|
|
2722
|
+
*/
|
|
2723
|
+
404: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2724
|
+
/**
|
|
2725
|
+
* Server Error
|
|
2726
|
+
*/
|
|
2727
|
+
500: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2728
|
+
/**
|
|
2729
|
+
* Server Error
|
|
2730
|
+
*/
|
|
2731
|
+
501: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2732
|
+
};
|
|
2733
|
+
};
|
|
2734
|
+
};
|
|
2735
|
+
'/api/crm-service/tax-offices': {
|
|
2736
|
+
get: {
|
|
2737
|
+
req: GetApiCrmServiceTaxOfficesData;
|
|
2738
|
+
res: {
|
|
2739
|
+
/**
|
|
2740
|
+
* Success
|
|
2741
|
+
*/
|
|
2742
|
+
200: Volo_Abp_Application_Dtos_PagedResultDto_1;
|
|
2743
|
+
/**
|
|
2744
|
+
* Bad Request
|
|
2745
|
+
*/
|
|
2746
|
+
400: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2747
|
+
/**
|
|
2748
|
+
* Unauthorized
|
|
2749
|
+
*/
|
|
2750
|
+
401: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2751
|
+
/**
|
|
2752
|
+
* Forbidden
|
|
2753
|
+
*/
|
|
2754
|
+
403: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2755
|
+
/**
|
|
2756
|
+
* Not Found
|
|
2757
|
+
*/
|
|
2758
|
+
404: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2759
|
+
/**
|
|
2760
|
+
* Server Error
|
|
2761
|
+
*/
|
|
2762
|
+
500: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2763
|
+
/**
|
|
2764
|
+
* Server Error
|
|
2765
|
+
*/
|
|
2766
|
+
501: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2767
|
+
};
|
|
2768
|
+
};
|
|
2769
|
+
};
|
|
2770
|
+
'/api/crm-service/tax-offices/detail/{id}': {
|
|
2771
|
+
get: {
|
|
2772
|
+
req: GetApiCrmServiceTaxOfficesDetailByIdData;
|
|
2773
|
+
res: {
|
|
2774
|
+
/**
|
|
2775
|
+
* Success
|
|
2776
|
+
*/
|
|
2777
|
+
200: UniRefund_CRMService_TaxOffices_TaxOfficeDto;
|
|
2778
|
+
/**
|
|
2779
|
+
* Bad Request
|
|
2780
|
+
*/
|
|
2781
|
+
400: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2782
|
+
/**
|
|
2783
|
+
* Unauthorized
|
|
2784
|
+
*/
|
|
2785
|
+
401: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2786
|
+
/**
|
|
2787
|
+
* Forbidden
|
|
2788
|
+
*/
|
|
2789
|
+
403: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2790
|
+
/**
|
|
2791
|
+
* Not Found
|
|
2792
|
+
*/
|
|
2793
|
+
404: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2794
|
+
/**
|
|
2795
|
+
* Server Error
|
|
2796
|
+
*/
|
|
2797
|
+
500: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2798
|
+
/**
|
|
2799
|
+
* Server Error
|
|
2800
|
+
*/
|
|
2801
|
+
501: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2802
|
+
};
|
|
2803
|
+
};
|
|
2804
|
+
};
|
|
2805
|
+
'/api/crm-service/tax-offices/with-components': {
|
|
2806
|
+
post: {
|
|
2807
|
+
req: PostApiCrmServiceTaxOfficesWithComponentsData;
|
|
2808
|
+
res: {
|
|
2809
|
+
/**
|
|
2810
|
+
* Success
|
|
2811
|
+
*/
|
|
2812
|
+
200: unknown;
|
|
2813
|
+
/**
|
|
2814
|
+
* Bad Request
|
|
2815
|
+
*/
|
|
2816
|
+
400: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2817
|
+
/**
|
|
2818
|
+
* Unauthorized
|
|
2819
|
+
*/
|
|
2820
|
+
401: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2821
|
+
/**
|
|
2822
|
+
* Forbidden
|
|
2823
|
+
*/
|
|
2824
|
+
403: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2825
|
+
/**
|
|
2826
|
+
* Not Found
|
|
2827
|
+
*/
|
|
2828
|
+
404: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2829
|
+
/**
|
|
2830
|
+
* Server Error
|
|
2831
|
+
*/
|
|
2832
|
+
500: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2833
|
+
/**
|
|
2834
|
+
* Server Error
|
|
2835
|
+
*/
|
|
2836
|
+
501: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2837
|
+
};
|
|
2838
|
+
};
|
|
2839
|
+
};
|
|
2840
|
+
'/api/crm-service/tax-offices/with-components/{id}': {
|
|
2841
|
+
delete: {
|
|
2842
|
+
req: DeleteApiCrmServiceTaxOfficesWithComponentsByIdData;
|
|
2843
|
+
res: {
|
|
2844
|
+
/**
|
|
2845
|
+
* Success
|
|
2846
|
+
*/
|
|
2847
|
+
200: unknown;
|
|
2848
|
+
/**
|
|
2849
|
+
* Bad Request
|
|
2850
|
+
*/
|
|
2851
|
+
400: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2852
|
+
/**
|
|
2853
|
+
* Unauthorized
|
|
2854
|
+
*/
|
|
2855
|
+
401: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2856
|
+
/**
|
|
2857
|
+
* Forbidden
|
|
2858
|
+
*/
|
|
2859
|
+
403: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2860
|
+
/**
|
|
2861
|
+
* Not Found
|
|
2862
|
+
*/
|
|
2863
|
+
404: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2864
|
+
/**
|
|
2865
|
+
* Server Error
|
|
2866
|
+
*/
|
|
2867
|
+
500: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2868
|
+
/**
|
|
2869
|
+
* Server Error
|
|
2870
|
+
*/
|
|
2871
|
+
501: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2872
|
+
};
|
|
2873
|
+
};
|
|
2874
|
+
};
|
|
2875
|
+
'/api/crm-service/tax-offices/{taxOfficesId}/affiliations': {
|
|
2876
|
+
post: {
|
|
2877
|
+
req: PostApiCrmServiceTaxOfficesByTaxOfficesIdAffiliationsData;
|
|
2878
|
+
res: {
|
|
2879
|
+
/**
|
|
2880
|
+
* Success
|
|
2881
|
+
*/
|
|
2882
|
+
200: unknown;
|
|
2883
|
+
/**
|
|
2884
|
+
* Bad Request
|
|
2885
|
+
*/
|
|
2886
|
+
400: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2887
|
+
/**
|
|
2888
|
+
* Unauthorized
|
|
2889
|
+
*/
|
|
2890
|
+
401: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2891
|
+
/**
|
|
2892
|
+
* Forbidden
|
|
2893
|
+
*/
|
|
2894
|
+
403: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2895
|
+
/**
|
|
2896
|
+
* Not Found
|
|
2897
|
+
*/
|
|
2898
|
+
404: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2899
|
+
/**
|
|
2900
|
+
* Server Error
|
|
2901
|
+
*/
|
|
2902
|
+
500: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2903
|
+
/**
|
|
2904
|
+
* Server Error
|
|
2905
|
+
*/
|
|
2906
|
+
501: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2907
|
+
};
|
|
2908
|
+
};
|
|
2909
|
+
get: {
|
|
2910
|
+
req: GetApiCrmServiceTaxOfficesByTaxOfficesIdAffiliationsData;
|
|
2911
|
+
res: {
|
|
2912
|
+
/**
|
|
2913
|
+
* Success
|
|
2914
|
+
*/
|
|
2915
|
+
200: Volo_Abp_Application_Dtos_PagedResultDto_1;
|
|
2916
|
+
/**
|
|
2917
|
+
* Bad Request
|
|
2918
|
+
*/
|
|
2919
|
+
400: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2920
|
+
/**
|
|
2921
|
+
* Unauthorized
|
|
2922
|
+
*/
|
|
2923
|
+
401: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2924
|
+
/**
|
|
2925
|
+
* Forbidden
|
|
2926
|
+
*/
|
|
2927
|
+
403: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2928
|
+
/**
|
|
2929
|
+
* Not Found
|
|
2930
|
+
*/
|
|
2931
|
+
404: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2932
|
+
/**
|
|
2933
|
+
* Server Error
|
|
2934
|
+
*/
|
|
2935
|
+
500: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2936
|
+
/**
|
|
2937
|
+
* Server Error
|
|
2938
|
+
*/
|
|
2939
|
+
501: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2940
|
+
};
|
|
2941
|
+
};
|
|
2942
|
+
};
|
|
2943
|
+
'/api/crm-service/telephones': {
|
|
2944
|
+
get: {
|
|
2945
|
+
req: GetApiCrmServiceTelephonesData;
|
|
2946
|
+
res: {
|
|
2947
|
+
/**
|
|
2948
|
+
* Success
|
|
2949
|
+
*/
|
|
2950
|
+
200: Volo_Abp_Application_Dtos_PagedResultDto_1;
|
|
2951
|
+
/**
|
|
2952
|
+
* Bad Request
|
|
2953
|
+
*/
|
|
2954
|
+
400: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2955
|
+
/**
|
|
2956
|
+
* Unauthorized
|
|
2957
|
+
*/
|
|
2958
|
+
401: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2959
|
+
/**
|
|
2960
|
+
* Forbidden
|
|
2961
|
+
*/
|
|
2962
|
+
403: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2963
|
+
/**
|
|
2964
|
+
* Not Found
|
|
2965
|
+
*/
|
|
2966
|
+
404: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2967
|
+
/**
|
|
2968
|
+
* Server Error
|
|
2969
|
+
*/
|
|
2970
|
+
500: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2971
|
+
/**
|
|
2972
|
+
* Server Error
|
|
2973
|
+
*/
|
|
2974
|
+
501: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2975
|
+
};
|
|
2976
|
+
};
|
|
2977
|
+
post: {
|
|
2978
|
+
req: PostApiCrmServiceTelephonesData;
|
|
2979
|
+
res: {
|
|
2980
|
+
/**
|
|
2981
|
+
* Success
|
|
2982
|
+
*/
|
|
2983
|
+
200: UniRefund_CRMService_TelephoneTypes_TelephoneTypeDto;
|
|
2984
|
+
/**
|
|
2985
|
+
* Bad Request
|
|
2986
|
+
*/
|
|
2987
|
+
400: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2988
|
+
/**
|
|
2989
|
+
* Unauthorized
|
|
2990
|
+
*/
|
|
2991
|
+
401: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2992
|
+
/**
|
|
2993
|
+
* Forbidden
|
|
2994
|
+
*/
|
|
2995
|
+
403: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
2996
|
+
/**
|
|
2997
|
+
* Not Found
|
|
2998
|
+
*/
|
|
2999
|
+
404: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
3000
|
+
/**
|
|
3001
|
+
* Server Error
|
|
3002
|
+
*/
|
|
3003
|
+
500: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
3004
|
+
/**
|
|
3005
|
+
* Server Error
|
|
3006
|
+
*/
|
|
3007
|
+
501: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
3008
|
+
};
|
|
3009
|
+
};
|
|
3010
|
+
};
|
|
3011
|
+
'/api/crm-service/telephones/{id}': {
|
|
3012
|
+
get: {
|
|
3013
|
+
req: GetApiCrmServiceTelephonesByIdData;
|
|
3014
|
+
res: {
|
|
3015
|
+
/**
|
|
3016
|
+
* Success
|
|
3017
|
+
*/
|
|
3018
|
+
200: UniRefund_CRMService_TelephoneTypes_TelephoneTypeDto;
|
|
3019
|
+
/**
|
|
3020
|
+
* Bad Request
|
|
3021
|
+
*/
|
|
3022
|
+
400: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
3023
|
+
/**
|
|
3024
|
+
* Unauthorized
|
|
3025
|
+
*/
|
|
3026
|
+
401: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
3027
|
+
/**
|
|
3028
|
+
* Forbidden
|
|
3029
|
+
*/
|
|
3030
|
+
403: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
3031
|
+
/**
|
|
3032
|
+
* Not Found
|
|
3033
|
+
*/
|
|
3034
|
+
404: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
3035
|
+
/**
|
|
3036
|
+
* Server Error
|
|
3037
|
+
*/
|
|
3038
|
+
500: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
3039
|
+
/**
|
|
3040
|
+
* Server Error
|
|
3041
|
+
*/
|
|
3042
|
+
501: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
3043
|
+
};
|
|
3044
|
+
};
|
|
3045
|
+
put: {
|
|
3046
|
+
req: PutApiCrmServiceTelephonesByIdData;
|
|
3047
|
+
res: {
|
|
3048
|
+
/**
|
|
3049
|
+
* Success
|
|
3050
|
+
*/
|
|
3051
|
+
200: UniRefund_CRMService_TelephoneTypes_TelephoneTypeDto;
|
|
3052
|
+
/**
|
|
3053
|
+
* Bad Request
|
|
3054
|
+
*/
|
|
3055
|
+
400: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
3056
|
+
/**
|
|
3057
|
+
* Unauthorized
|
|
3058
|
+
*/
|
|
3059
|
+
401: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
3060
|
+
/**
|
|
3061
|
+
* Forbidden
|
|
3062
|
+
*/
|
|
3063
|
+
403: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
3064
|
+
/**
|
|
3065
|
+
* Not Found
|
|
3066
|
+
*/
|
|
3067
|
+
404: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
3068
|
+
/**
|
|
3069
|
+
* Server Error
|
|
3070
|
+
*/
|
|
3071
|
+
500: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
3072
|
+
/**
|
|
3073
|
+
* Server Error
|
|
3074
|
+
*/
|
|
3075
|
+
501: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
3076
|
+
};
|
|
3077
|
+
};
|
|
3078
|
+
delete: {
|
|
3079
|
+
req: DeleteApiCrmServiceTelephonesByIdData;
|
|
3080
|
+
res: {
|
|
3081
|
+
/**
|
|
3082
|
+
* Success
|
|
3083
|
+
*/
|
|
3084
|
+
200: unknown;
|
|
3085
|
+
/**
|
|
3086
|
+
* Bad Request
|
|
3087
|
+
*/
|
|
3088
|
+
400: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
3089
|
+
/**
|
|
3090
|
+
* Unauthorized
|
|
3091
|
+
*/
|
|
3092
|
+
401: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
3093
|
+
/**
|
|
3094
|
+
* Forbidden
|
|
3095
|
+
*/
|
|
3096
|
+
403: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
3097
|
+
/**
|
|
3098
|
+
* Not Found
|
|
3099
|
+
*/
|
|
3100
|
+
404: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
3101
|
+
/**
|
|
3102
|
+
* Server Error
|
|
3103
|
+
*/
|
|
3104
|
+
500: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
3105
|
+
/**
|
|
3106
|
+
* Server Error
|
|
3107
|
+
*/
|
|
3108
|
+
501: Volo_Abp_Http_RemoteServiceErrorResponse;
|
|
3109
|
+
};
|
|
3110
|
+
};
|
|
3111
|
+
};
|
|
3112
|
+
};
|