@ayasofyazilim/saas 0.0.127 → 0.0.129
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/schemas.gen.ts +195 -99
- package/CRMService/sdk.gen.ts +22 -0
- package/CRMService/types.gen.ts +44 -29
- package/ContractService/schemas.gen.ts +118 -65
- package/ContractService/sdk.gen.ts +91 -1
- package/ContractService/types.gen.ts +280 -3373
- package/package.json +1 -1
|
@@ -1,266 +1,47 @@
|
|
|
1
1
|
// This file is auto-generated by @hey-api/openapi-ts
|
|
2
2
|
|
|
3
3
|
export type PagedResultDto_ContractHeaderDetailForMerchantDto = {
|
|
4
|
-
items?: Array<
|
|
5
|
-
id: string;
|
|
6
|
-
creationTime?: string;
|
|
7
|
-
creatorId?: (string) | null;
|
|
8
|
-
lastModificationTime?: (string) | null;
|
|
9
|
-
lastModifierId?: (string) | null;
|
|
10
|
-
isDeleted?: boolean;
|
|
11
|
-
deleterId?: (string) | null;
|
|
12
|
-
deletionTime?: (string) | null;
|
|
13
|
-
name: string;
|
|
14
|
-
contractTypeIdentifier: string;
|
|
15
|
-
webSite?: (string) | null;
|
|
16
|
-
merchantClassification: 'Excellent' | 'Good' | 'Satisfactory' | 'Low';
|
|
17
|
-
status?: 'None' | 'Registered' | 'DeRegistrationRequestedByUniRefund' | 'DeRegistrationDataRequestedByAuthorities' | 'SuspendedInternallyAfterDeRegistrationDecline' | 'DeRegisteredAtAuthorities' | 'SuspendedInternallyOnly' | 'SuspensionRequestedByUniRefund' | 'SuspensionRequestedByAuthorities' | 'UnSuspensionRequestedByUniRefund' | 'UnSuspensionRequestedByAuthorities' | 'SuspendedAtAuthorities' | 'UnSuspensionForFurtherDeRegistrationInvitedByAuthorities' | 'UnSuspensionForFurtherDeRegistrationRequestedByUniRefund' | 'Terminated';
|
|
18
|
-
merchantBasicInformationDto?: {
|
|
19
|
-
id?: string;
|
|
20
|
-
name?: (string) | null;
|
|
21
|
-
taxOffice?: {
|
|
22
|
-
id: string;
|
|
23
|
-
name: string;
|
|
24
|
-
};
|
|
25
|
-
numberOfStores?: number;
|
|
26
|
-
accountManagers?: Array<{
|
|
27
|
-
id?: string;
|
|
28
|
-
name?: (string) | null;
|
|
29
|
-
}> | null;
|
|
30
|
-
};
|
|
31
|
-
isDraft?: boolean;
|
|
32
|
-
isActive?: boolean;
|
|
33
|
-
validFrom: string;
|
|
34
|
-
validTo: string;
|
|
35
|
-
contractType: 'Merchant' | 'RefundPoint';
|
|
36
|
-
addressCommonDataId: string;
|
|
37
|
-
refundTableHeaders: Array<{
|
|
38
|
-
name: string;
|
|
39
|
-
id: string;
|
|
40
|
-
validFrom: string;
|
|
41
|
-
validTo?: (string) | null;
|
|
42
|
-
isDefault: boolean;
|
|
43
|
-
}>;
|
|
44
|
-
}> | null;
|
|
4
|
+
items?: Array<UniRefund_ContractService_ContractsForMerchant_ContractHeaders_ContractHeaderDetailForMerchantDto> | null;
|
|
45
5
|
totalCount?: number;
|
|
46
6
|
};
|
|
47
7
|
|
|
48
8
|
export type PagedResultDto_ContractHeaderDetailForRefundPointDto = {
|
|
49
|
-
items?: Array<
|
|
50
|
-
id: string;
|
|
51
|
-
creationTime?: string;
|
|
52
|
-
creatorId?: (string) | null;
|
|
53
|
-
lastModificationTime?: (string) | null;
|
|
54
|
-
lastModifierId?: (string) | null;
|
|
55
|
-
isDeleted?: boolean;
|
|
56
|
-
deleterId?: (string) | null;
|
|
57
|
-
deletionTime?: (string) | null;
|
|
58
|
-
name: string;
|
|
59
|
-
contractTypeIdentifier: string;
|
|
60
|
-
webSite?: (string) | null;
|
|
61
|
-
merchantClassification: 'Excellent' | 'Good' | 'Satisfactory' | 'Low';
|
|
62
|
-
status?: 'None' | 'Registered' | 'DeRegistrationRequestedByUniRefund' | 'DeRegistrationDataRequestedByAuthorities' | 'SuspendedInternallyAfterDeRegistrationDecline' | 'DeRegisteredAtAuthorities' | 'SuspendedInternallyOnly' | 'SuspensionRequestedByUniRefund' | 'SuspensionRequestedByAuthorities' | 'UnSuspensionRequestedByUniRefund' | 'UnSuspensionRequestedByAuthorities' | 'SuspendedAtAuthorities' | 'UnSuspensionForFurtherDeRegistrationInvitedByAuthorities' | 'UnSuspensionForFurtherDeRegistrationRequestedByUniRefund' | 'Terminated';
|
|
63
|
-
refundPointBasicInformationDto?: {
|
|
64
|
-
id?: string;
|
|
65
|
-
name?: (string) | null;
|
|
66
|
-
taxOffice?: {
|
|
67
|
-
id: string;
|
|
68
|
-
name: string;
|
|
69
|
-
};
|
|
70
|
-
numberOfStores?: number;
|
|
71
|
-
accountManagers?: Array<{
|
|
72
|
-
id?: string;
|
|
73
|
-
name?: (string) | null;
|
|
74
|
-
}> | null;
|
|
75
|
-
};
|
|
76
|
-
isDraft?: boolean;
|
|
77
|
-
isActive?: boolean;
|
|
78
|
-
validFrom: string;
|
|
79
|
-
validTo: string;
|
|
80
|
-
earlyRefund?: boolean;
|
|
81
|
-
contractType: 'Merchant' | 'RefundPoint';
|
|
82
|
-
addressCommonDataId: string;
|
|
83
|
-
refundFeeHeaders: Array<{
|
|
84
|
-
name: string;
|
|
85
|
-
id: string;
|
|
86
|
-
validFrom: string;
|
|
87
|
-
validTo?: (string) | null;
|
|
88
|
-
isDefault: boolean;
|
|
89
|
-
}>;
|
|
90
|
-
}> | null;
|
|
9
|
+
items?: Array<UniRefund_ContractService_ContractsForRefundPoint_ContractHeaders_ContractHeaderDetailForRefundPointDto> | null;
|
|
91
10
|
totalCount?: number;
|
|
92
11
|
};
|
|
93
12
|
|
|
94
13
|
export type PagedResultDto_ContractHeaderForMerchantDto = {
|
|
95
|
-
items?: Array<
|
|
96
|
-
id: string;
|
|
97
|
-
creationTime?: string;
|
|
98
|
-
creatorId?: (string) | null;
|
|
99
|
-
lastModificationTime?: (string) | null;
|
|
100
|
-
lastModifierId?: (string) | null;
|
|
101
|
-
isDeleted?: boolean;
|
|
102
|
-
deleterId?: (string) | null;
|
|
103
|
-
deletionTime?: (string) | null;
|
|
104
|
-
name: string;
|
|
105
|
-
contractTypeIdentifier: string;
|
|
106
|
-
isDraft?: boolean;
|
|
107
|
-
isActive?: boolean;
|
|
108
|
-
status?: 'None' | 'Registered' | 'DeRegistrationRequestedByUniRefund' | 'DeRegistrationDataRequestedByAuthorities' | 'SuspendedInternallyAfterDeRegistrationDecline' | 'DeRegisteredAtAuthorities' | 'SuspendedInternallyOnly' | 'SuspensionRequestedByUniRefund' | 'SuspensionRequestedByAuthorities' | 'UnSuspensionRequestedByUniRefund' | 'UnSuspensionRequestedByAuthorities' | 'SuspendedAtAuthorities' | 'UnSuspensionForFurtherDeRegistrationInvitedByAuthorities' | 'UnSuspensionForFurtherDeRegistrationRequestedByUniRefund' | 'Terminated';
|
|
109
|
-
contractType: 'Merchant' | 'RefundPoint';
|
|
110
|
-
validFrom: string;
|
|
111
|
-
validTo: string;
|
|
112
|
-
addressCommonDataId: string;
|
|
113
|
-
}> | null;
|
|
14
|
+
items?: Array<UniRefund_ContractService_ContractsForMerchant_ContractHeaders_ContractHeaderForMerchantDto> | null;
|
|
114
15
|
totalCount?: number;
|
|
115
16
|
};
|
|
116
17
|
|
|
117
18
|
export type PagedResultDto_ContractHeaderForRefundPointDto = {
|
|
118
|
-
items?: Array<
|
|
119
|
-
id: string;
|
|
120
|
-
creationTime?: string;
|
|
121
|
-
creatorId?: (string) | null;
|
|
122
|
-
lastModificationTime?: (string) | null;
|
|
123
|
-
lastModifierId?: (string) | null;
|
|
124
|
-
isDeleted?: boolean;
|
|
125
|
-
deleterId?: (string) | null;
|
|
126
|
-
deletionTime?: (string) | null;
|
|
127
|
-
name: string;
|
|
128
|
-
contractTypeIdentifier: string;
|
|
129
|
-
isDraft?: boolean;
|
|
130
|
-
isActive?: boolean;
|
|
131
|
-
status?: 'None' | 'Registered' | 'DeRegistrationRequestedByUniRefund' | 'DeRegistrationDataRequestedByAuthorities' | 'SuspendedInternallyAfterDeRegistrationDecline' | 'DeRegisteredAtAuthorities' | 'SuspendedInternallyOnly' | 'SuspensionRequestedByUniRefund' | 'SuspensionRequestedByAuthorities' | 'UnSuspensionRequestedByUniRefund' | 'UnSuspensionRequestedByAuthorities' | 'SuspendedAtAuthorities' | 'UnSuspensionForFurtherDeRegistrationInvitedByAuthorities' | 'UnSuspensionForFurtherDeRegistrationRequestedByUniRefund' | 'Terminated';
|
|
132
|
-
contractType: 'Merchant' | 'RefundPoint';
|
|
133
|
-
validFrom: string;
|
|
134
|
-
validTo: string;
|
|
135
|
-
earlyRefund?: boolean;
|
|
136
|
-
addressCommonDataId: string;
|
|
137
|
-
}> | null;
|
|
19
|
+
items?: Array<UniRefund_ContractService_ContractsForRefundPoint_ContractHeaders_ContractHeaderForRefundPointDto> | null;
|
|
138
20
|
totalCount?: number;
|
|
139
21
|
};
|
|
140
22
|
|
|
141
23
|
export type PagedResultDto_ContractSettingDto = {
|
|
142
|
-
items?: Array<
|
|
143
|
-
id: string;
|
|
144
|
-
creationTime?: string;
|
|
145
|
-
creatorId?: (string) | null;
|
|
146
|
-
lastModificationTime?: (string) | null;
|
|
147
|
-
lastModifierId?: (string) | null;
|
|
148
|
-
isDeleted?: boolean;
|
|
149
|
-
deleterId?: (string) | null;
|
|
150
|
-
deletionTime?: (string) | null;
|
|
151
|
-
name: string;
|
|
152
|
-
isDefault?: boolean;
|
|
153
|
-
referenceNumber: number;
|
|
154
|
-
invoicingFrequency: 'OneTimePerMonth' | 'TwoTimesPerMonth';
|
|
155
|
-
termOfPayment: number;
|
|
156
|
-
deliveryFee?: boolean;
|
|
157
|
-
factoring?: boolean;
|
|
158
|
-
invoicingAddressCommonData: {
|
|
159
|
-
id: string;
|
|
160
|
-
creationTime?: string;
|
|
161
|
-
creatorId?: (string) | null;
|
|
162
|
-
lastModificationTime?: (string) | null;
|
|
163
|
-
lastModifierId?: (string) | null;
|
|
164
|
-
isDeleted?: boolean;
|
|
165
|
-
deleterId?: (string) | null;
|
|
166
|
-
deletionTime?: (string) | null;
|
|
167
|
-
type: 'Home' | 'Office' | 'Invoice' | 'Contact';
|
|
168
|
-
addressLine: string;
|
|
169
|
-
postalCode: string;
|
|
170
|
-
fullAddress: string;
|
|
171
|
-
primaryFlag?: boolean;
|
|
172
|
-
countryId: string;
|
|
173
|
-
regionId?: (string) | null;
|
|
174
|
-
cityId: string;
|
|
175
|
-
districtId: string;
|
|
176
|
-
neighborhoodId?: (string) | null;
|
|
177
|
-
};
|
|
178
|
-
invoiceChannel: 'ElectronicInvoice' | 'Email' | 'PaperInvoice';
|
|
179
|
-
eTaxFree?: boolean;
|
|
180
|
-
receiptType: 'None' | 'NoBarcodeNumber' | 'NoBarcodeText' | 'Barcode' | 'QRCodeIntegration' | 'UniRefundVoucherIntegration';
|
|
181
|
-
crossTaxFreeForm?: boolean;
|
|
182
|
-
facturaNumberIsUnique?: boolean;
|
|
183
|
-
goodsHaveSerialNumbers?: boolean;
|
|
184
|
-
excludeFromCashLimit?: boolean;
|
|
185
|
-
deskoScanner?: boolean;
|
|
186
|
-
contractHeaderId?: string;
|
|
187
|
-
}> | null;
|
|
24
|
+
items?: Array<UniRefund_ContractService_ContractsForMerchant_ContractSettings_ContractSettingDto> | null;
|
|
188
25
|
totalCount?: number;
|
|
189
26
|
};
|
|
190
27
|
|
|
191
28
|
export type PagedResultDto_ContractStoreDetailedDto = {
|
|
192
|
-
items?: Array<
|
|
193
|
-
contractTypeIdentifiersSubId: string;
|
|
194
|
-
name?: (string) | null;
|
|
195
|
-
fullAddress?: (string) | null;
|
|
196
|
-
manager?: (string) | null;
|
|
197
|
-
contractSettingId?: string;
|
|
198
|
-
receiptType: 'None' | 'NoBarcodeNumber' | 'NoBarcodeText' | 'Barcode' | 'QRCodeIntegration' | 'UniRefundVoucherIntegration';
|
|
199
|
-
}> | null;
|
|
29
|
+
items?: Array<UniRefund_ContractService_ContractsForMerchant_ContractStores_ContractStoreDetailedDto> | null;
|
|
200
30
|
totalCount?: number;
|
|
201
31
|
};
|
|
202
32
|
|
|
203
33
|
export type PagedResultDto_RebateTableHeaderListDto = {
|
|
204
|
-
items?: Array<
|
|
205
|
-
id: string;
|
|
206
|
-
creationTime?: string;
|
|
207
|
-
creatorId?: (string) | null;
|
|
208
|
-
lastModificationTime?: (string) | null;
|
|
209
|
-
lastModifierId?: (string) | null;
|
|
210
|
-
isDeleted?: boolean;
|
|
211
|
-
deleterId?: (string) | null;
|
|
212
|
-
deletionTime?: (string) | null;
|
|
213
|
-
name: string;
|
|
214
|
-
calculateNetCommissionInsteadOfRefund: boolean;
|
|
215
|
-
isTemplate: boolean;
|
|
216
|
-
isAssigned: boolean;
|
|
217
|
-
isCustomizedOverTemplate?: (boolean) | null;
|
|
218
|
-
merchantId?: (string) | null;
|
|
219
|
-
sourceTemplateId?: (string) | null;
|
|
220
|
-
}> | null;
|
|
34
|
+
items?: Array<UniRefund_ContractService_Rebates_RebateTableHeaders_RebateTableHeaderListDto> | null;
|
|
221
35
|
totalCount?: number;
|
|
222
36
|
};
|
|
223
37
|
|
|
224
38
|
export type PagedResultDto_RefundFeeHeaderListDto = {
|
|
225
|
-
items?: Array<
|
|
226
|
-
id: string;
|
|
227
|
-
creationTime?: string;
|
|
228
|
-
creatorId?: (string) | null;
|
|
229
|
-
lastModificationTime?: (string) | null;
|
|
230
|
-
lastModifierId?: (string) | null;
|
|
231
|
-
isDeleted?: boolean;
|
|
232
|
-
deleterId?: (string) | null;
|
|
233
|
-
deletionTime?: (string) | null;
|
|
234
|
-
name: string;
|
|
235
|
-
isActive?: boolean;
|
|
236
|
-
isTemplate: boolean;
|
|
237
|
-
isAssigned: boolean;
|
|
238
|
-
isCustomizedOverTemplate?: (boolean) | null;
|
|
239
|
-
refundPointId?: (string) | null;
|
|
240
|
-
sourceTemplateId?: (string) | null;
|
|
241
|
-
}> | null;
|
|
39
|
+
items?: Array<UniRefund_ContractService_Refunds_RefundFeeHeaders_RefundFeeHeaderListDto> | null;
|
|
242
40
|
totalCount?: number;
|
|
243
41
|
};
|
|
244
42
|
|
|
245
43
|
export type PagedResultDto_RefundTableHeaderListDto = {
|
|
246
|
-
items?: Array<
|
|
247
|
-
id: string;
|
|
248
|
-
creationTime?: string;
|
|
249
|
-
creatorId?: (string) | null;
|
|
250
|
-
lastModificationTime?: (string) | null;
|
|
251
|
-
lastModifierId?: (string) | null;
|
|
252
|
-
isDeleted?: boolean;
|
|
253
|
-
deleterId?: (string) | null;
|
|
254
|
-
deletionTime?: (string) | null;
|
|
255
|
-
name: string;
|
|
256
|
-
isDefault?: boolean;
|
|
257
|
-
isBundling?: boolean;
|
|
258
|
-
isTemplate: boolean;
|
|
259
|
-
isAssigned: boolean;
|
|
260
|
-
isCustomizedOverTemplate?: (boolean) | null;
|
|
261
|
-
merchantId?: (string) | null;
|
|
262
|
-
sourceTemplateId?: (string) | null;
|
|
263
|
-
}> | null;
|
|
44
|
+
items?: Array<UniRefund_ContractService_Refunds_RefundTableHeaders_RefundTableHeaderListDto> | null;
|
|
264
45
|
totalCount?: number;
|
|
265
46
|
};
|
|
266
47
|
|
|
@@ -270,7 +51,7 @@ export type UniRefund_ContractService_ContractsForMerchant_ContractHeaderRefundT
|
|
|
270
51
|
} | null;
|
|
271
52
|
refundTableHeaderId: string;
|
|
272
53
|
validFrom: string;
|
|
273
|
-
validTo
|
|
54
|
+
validTo?: (string) | null;
|
|
274
55
|
isDefault?: boolean;
|
|
275
56
|
};
|
|
276
57
|
|
|
@@ -294,60 +75,28 @@ export type UniRefund_ContractService_ContractsForMerchant_ContractHeaders_Contr
|
|
|
294
75
|
name: string;
|
|
295
76
|
contractTypeIdentifier: string;
|
|
296
77
|
webSite?: (string) | null;
|
|
297
|
-
merchantClassification:
|
|
298
|
-
status
|
|
299
|
-
merchantBasicInformationDto?:
|
|
300
|
-
id?: string;
|
|
301
|
-
name?: (string) | null;
|
|
302
|
-
taxOffice?: {
|
|
303
|
-
id: string;
|
|
304
|
-
name: string;
|
|
305
|
-
};
|
|
306
|
-
numberOfStores?: number;
|
|
307
|
-
accountManagers?: Array<{
|
|
308
|
-
id?: string;
|
|
309
|
-
name?: (string) | null;
|
|
310
|
-
}> | null;
|
|
311
|
-
};
|
|
78
|
+
merchantClassification: UniRefund_ContractService_Enums_MerchantClassification;
|
|
79
|
+
status: UniRefund_ContractService_Enums_ContractHeaderStatus;
|
|
80
|
+
merchantBasicInformationDto?: UniRefund_CRMService_Merchants_MerchantBasicInformationDto;
|
|
312
81
|
isDraft?: boolean;
|
|
313
82
|
isActive?: boolean;
|
|
314
83
|
validFrom: string;
|
|
315
|
-
validTo
|
|
316
|
-
contractType:
|
|
84
|
+
validTo?: (string) | null;
|
|
85
|
+
contractType: UniRefund_ContractService_Enums_ContractType;
|
|
317
86
|
addressCommonDataId: string;
|
|
318
|
-
refundTableHeaders: Array<
|
|
319
|
-
name: string;
|
|
320
|
-
id: string;
|
|
321
|
-
validFrom: string;
|
|
322
|
-
validTo?: (string) | null;
|
|
323
|
-
isDefault: boolean;
|
|
324
|
-
}>;
|
|
87
|
+
refundTableHeaders: Array<UniRefund_ContractService_ContractsForMerchant_ContractHeaderRefundTableHeaders_ContractHeaderRefundTableHeaderInformationDto>;
|
|
325
88
|
};
|
|
326
89
|
|
|
327
|
-
export type merchantClassification = 'Excellent' | 'Good' | 'Satisfactory' | 'Low';
|
|
328
|
-
|
|
329
|
-
export type status = 'None' | 'Registered' | 'DeRegistrationRequestedByUniRefund' | 'DeRegistrationDataRequestedByAuthorities' | 'SuspendedInternallyAfterDeRegistrationDecline' | 'DeRegisteredAtAuthorities' | 'SuspendedInternallyOnly' | 'SuspensionRequestedByUniRefund' | 'SuspensionRequestedByAuthorities' | 'UnSuspensionRequestedByUniRefund' | 'UnSuspensionRequestedByAuthorities' | 'SuspendedAtAuthorities' | 'UnSuspensionForFurtherDeRegistrationInvitedByAuthorities' | 'UnSuspensionForFurtherDeRegistrationRequestedByUniRefund' | 'Terminated';
|
|
330
|
-
|
|
331
|
-
export type contractType = 'Merchant' | 'RefundPoint';
|
|
332
|
-
|
|
333
90
|
export type UniRefund_ContractService_ContractsForMerchant_ContractHeaders_ContractHeaderForMerchantCreateDto = {
|
|
334
91
|
readonly extraProperties?: {
|
|
335
92
|
[key: string]: unknown;
|
|
336
93
|
} | null;
|
|
337
94
|
webSite?: (string) | null;
|
|
338
|
-
merchantClassification:
|
|
95
|
+
merchantClassification: UniRefund_ContractService_Enums_MerchantClassification;
|
|
339
96
|
validFrom: string;
|
|
340
|
-
validTo
|
|
97
|
+
validTo?: (string) | null;
|
|
341
98
|
addressCommonDataId: string;
|
|
342
|
-
refundTableHeaders: Array<
|
|
343
|
-
readonly extraProperties?: {
|
|
344
|
-
[key: string]: unknown;
|
|
345
|
-
} | null;
|
|
346
|
-
refundTableHeaderId: string;
|
|
347
|
-
validFrom: string;
|
|
348
|
-
validTo: string;
|
|
349
|
-
isDefault?: boolean;
|
|
350
|
-
}>;
|
|
99
|
+
refundTableHeaders: Array<UniRefund_ContractService_ContractsForMerchant_ContractHeaderRefundTableHeaders_ContractHeaderRefundTableHeaderCreateAndUpdateDto>;
|
|
351
100
|
};
|
|
352
101
|
|
|
353
102
|
export type UniRefund_ContractService_ContractsForMerchant_ContractHeaders_ContractHeaderForMerchantDto = {
|
|
@@ -363,10 +112,10 @@ export type UniRefund_ContractService_ContractsForMerchant_ContractHeaders_Contr
|
|
|
363
112
|
contractTypeIdentifier: string;
|
|
364
113
|
isDraft?: boolean;
|
|
365
114
|
isActive?: boolean;
|
|
366
|
-
status
|
|
367
|
-
contractType:
|
|
115
|
+
status: UniRefund_ContractService_Enums_ContractHeaderStatus;
|
|
116
|
+
contractType: UniRefund_ContractService_Enums_ContractType;
|
|
368
117
|
validFrom: string;
|
|
369
|
-
validTo
|
|
118
|
+
validTo?: (string) | null;
|
|
370
119
|
addressCommonDataId: string;
|
|
371
120
|
};
|
|
372
121
|
|
|
@@ -375,41 +124,26 @@ export type UniRefund_ContractService_ContractsForMerchant_ContractHeaders_Contr
|
|
|
375
124
|
[key: string]: unknown;
|
|
376
125
|
} | null;
|
|
377
126
|
webSite?: (string) | null;
|
|
378
|
-
merchantClassification:
|
|
379
|
-
status:
|
|
127
|
+
merchantClassification: UniRefund_ContractService_Enums_MerchantClassification;
|
|
128
|
+
status: UniRefund_ContractService_Enums_ContractHeaderStatus;
|
|
380
129
|
validFrom: string;
|
|
381
|
-
validTo
|
|
130
|
+
validTo?: (string) | null;
|
|
382
131
|
addressCommonDataId: string;
|
|
383
|
-
refundTableHeaders?: Array<
|
|
384
|
-
readonly extraProperties?: {
|
|
385
|
-
[key: string]: unknown;
|
|
386
|
-
} | null;
|
|
387
|
-
refundTableHeaderId: string;
|
|
388
|
-
validFrom: string;
|
|
389
|
-
validTo: string;
|
|
390
|
-
isDefault?: boolean;
|
|
391
|
-
}> | null;
|
|
132
|
+
refundTableHeaders?: Array<UniRefund_ContractService_ContractsForMerchant_ContractHeaderRefundTableHeaders_ContractHeaderRefundTableHeaderCreateAndUpdateDto> | null;
|
|
392
133
|
};
|
|
393
134
|
|
|
394
135
|
export type UniRefund_ContractService_ContractsForMerchant_ContractHeaders_ContractHeaderInformationForVATStatementDto = {
|
|
395
136
|
merchantId?: string;
|
|
396
137
|
contractHeaderId?: string;
|
|
397
|
-
billingPeriod?:
|
|
138
|
+
billingPeriod?: UniRefund_ContractService_Enums_InvoicingFrequency;
|
|
398
139
|
termOfPayment?: number;
|
|
399
140
|
isFactoring?: boolean;
|
|
400
|
-
deliveryMethod?:
|
|
141
|
+
deliveryMethod?: UniRefund_ContractService_Enums_InvoiceChannel;
|
|
401
142
|
};
|
|
402
143
|
|
|
403
|
-
export type billingPeriod = 'OneTimePerMonth' | 'TwoTimesPerMonth';
|
|
404
|
-
|
|
405
|
-
export type deliveryMethod = 'ElectronicInvoice' | 'Email' | 'PaperInvoice';
|
|
406
|
-
|
|
407
144
|
export type UniRefund_ContractService_ContractsForMerchant_ContractHeaders_EnsureHasActiveContractHeaderRequestDto = {
|
|
408
145
|
merchantId: string;
|
|
409
|
-
invoices: Array<
|
|
410
|
-
invoiceDate: string;
|
|
411
|
-
invoiceAmount: number;
|
|
412
|
-
}>;
|
|
146
|
+
invoices: Array<UniRefund_ContractService_ContractsForMerchant_ContractHeaders_EnsureHasActiveContractHeaderRequestItemDto>;
|
|
413
147
|
};
|
|
414
148
|
|
|
415
149
|
export type UniRefund_ContractService_ContractsForMerchant_ContractHeaders_EnsureHasActiveContractHeaderRequestItemDto = {
|
|
@@ -423,14 +157,14 @@ export type UniRefund_ContractService_ContractsForMerchant_ContractSettings_Cont
|
|
|
423
157
|
} | null;
|
|
424
158
|
name: string;
|
|
425
159
|
referenceNumber: number;
|
|
426
|
-
invoicingFrequency:
|
|
160
|
+
invoicingFrequency: UniRefund_ContractService_Enums_InvoicingFrequency;
|
|
427
161
|
termOfPayment: number;
|
|
428
162
|
deliveryFee?: boolean;
|
|
429
163
|
factoring?: boolean;
|
|
430
164
|
invoicingAddressCommonDataId: string;
|
|
431
|
-
invoiceChannel:
|
|
165
|
+
invoiceChannel: UniRefund_ContractService_Enums_InvoiceChannel;
|
|
432
166
|
eTaxFree?: boolean;
|
|
433
|
-
receiptType:
|
|
167
|
+
receiptType: UniRefund_ContractService_Enums_ReceiptType;
|
|
434
168
|
crossTaxFreeForm?: boolean;
|
|
435
169
|
facturaNumberIsUnique?: boolean;
|
|
436
170
|
goodsHaveSerialNumbers?: boolean;
|
|
@@ -438,12 +172,6 @@ export type UniRefund_ContractService_ContractsForMerchant_ContractSettings_Cont
|
|
|
438
172
|
deskoScanner?: boolean;
|
|
439
173
|
};
|
|
440
174
|
|
|
441
|
-
export type invoicingFrequency = 'OneTimePerMonth' | 'TwoTimesPerMonth';
|
|
442
|
-
|
|
443
|
-
export type invoiceChannel = 'ElectronicInvoice' | 'Email' | 'PaperInvoice';
|
|
444
|
-
|
|
445
|
-
export type receiptType = 'None' | 'NoBarcodeNumber' | 'NoBarcodeText' | 'Barcode' | 'QRCodeIntegration' | 'UniRefundVoucherIntegration';
|
|
446
|
-
|
|
447
175
|
export type UniRefund_ContractService_ContractsForMerchant_ContractSettings_ContractSettingDto = {
|
|
448
176
|
id: string;
|
|
449
177
|
creationTime?: string;
|
|
@@ -456,33 +184,14 @@ export type UniRefund_ContractService_ContractsForMerchant_ContractSettings_Cont
|
|
|
456
184
|
name: string;
|
|
457
185
|
isDefault?: boolean;
|
|
458
186
|
referenceNumber: number;
|
|
459
|
-
invoicingFrequency:
|
|
187
|
+
invoicingFrequency: UniRefund_ContractService_Enums_InvoicingFrequency;
|
|
460
188
|
termOfPayment: number;
|
|
461
189
|
deliveryFee?: boolean;
|
|
462
190
|
factoring?: boolean;
|
|
463
|
-
invoicingAddressCommonData:
|
|
464
|
-
|
|
465
|
-
creationTime?: string;
|
|
466
|
-
creatorId?: (string) | null;
|
|
467
|
-
lastModificationTime?: (string) | null;
|
|
468
|
-
lastModifierId?: (string) | null;
|
|
469
|
-
isDeleted?: boolean;
|
|
470
|
-
deleterId?: (string) | null;
|
|
471
|
-
deletionTime?: (string) | null;
|
|
472
|
-
type: 'Home' | 'Office' | 'Invoice' | 'Contact';
|
|
473
|
-
addressLine: string;
|
|
474
|
-
postalCode: string;
|
|
475
|
-
fullAddress: string;
|
|
476
|
-
primaryFlag?: boolean;
|
|
477
|
-
countryId: string;
|
|
478
|
-
regionId?: (string) | null;
|
|
479
|
-
cityId: string;
|
|
480
|
-
districtId: string;
|
|
481
|
-
neighborhoodId?: (string) | null;
|
|
482
|
-
};
|
|
483
|
-
invoiceChannel: 'ElectronicInvoice' | 'Email' | 'PaperInvoice';
|
|
191
|
+
invoicingAddressCommonData: UniRefund_LocationService_AddressCommonDatas_AddressCommonDataDto;
|
|
192
|
+
invoiceChannel: UniRefund_ContractService_Enums_InvoiceChannel;
|
|
484
193
|
eTaxFree?: boolean;
|
|
485
|
-
receiptType:
|
|
194
|
+
receiptType: UniRefund_ContractService_Enums_ReceiptType;
|
|
486
195
|
crossTaxFreeForm?: boolean;
|
|
487
196
|
facturaNumberIsUnique?: boolean;
|
|
488
197
|
goodsHaveSerialNumbers?: boolean;
|
|
@@ -491,8 +200,6 @@ export type UniRefund_ContractService_ContractsForMerchant_ContractSettings_Cont
|
|
|
491
200
|
contractHeaderId?: string;
|
|
492
201
|
};
|
|
493
202
|
|
|
494
|
-
export type type = 'Home' | 'Office' | 'Invoice' | 'Contact';
|
|
495
|
-
|
|
496
203
|
export type UniRefund_ContractService_ContractsForMerchant_ContractSettings_ContractSettingMakeDefaultDto = {
|
|
497
204
|
readonly extraProperties?: {
|
|
498
205
|
[key: string]: unknown;
|
|
@@ -506,14 +213,14 @@ export type UniRefund_ContractService_ContractsForMerchant_ContractSettings_Cont
|
|
|
506
213
|
} | null;
|
|
507
214
|
name: string;
|
|
508
215
|
referenceNumber: number;
|
|
509
|
-
invoicingFrequency:
|
|
216
|
+
invoicingFrequency: UniRefund_ContractService_Enums_InvoicingFrequency;
|
|
510
217
|
termOfPayment: number;
|
|
511
218
|
deliveryFee?: boolean;
|
|
512
219
|
factoring?: boolean;
|
|
513
220
|
invoicingAddressCommonDataId: string;
|
|
514
|
-
invoiceChannel:
|
|
221
|
+
invoiceChannel: UniRefund_ContractService_Enums_InvoiceChannel;
|
|
515
222
|
eTaxFree?: boolean;
|
|
516
|
-
receiptType:
|
|
223
|
+
receiptType: UniRefund_ContractService_Enums_ReceiptType;
|
|
517
224
|
crossTaxFreeForm?: boolean;
|
|
518
225
|
facturaNumberIsUnique?: boolean;
|
|
519
226
|
goodsHaveSerialNumbers?: boolean;
|
|
@@ -525,14 +232,7 @@ export type UniRefund_ContractService_ContractsForMerchant_ContractStores_Contra
|
|
|
525
232
|
readonly extraProperties?: {
|
|
526
233
|
[key: string]: unknown;
|
|
527
234
|
} | null;
|
|
528
|
-
contractStores?: Array<
|
|
529
|
-
readonly extraProperties?: {
|
|
530
|
-
[key: string]: unknown;
|
|
531
|
-
} | null;
|
|
532
|
-
contractTypeIdentifiersSubId: string;
|
|
533
|
-
receiptType: 'None' | 'NoBarcodeNumber' | 'NoBarcodeText' | 'Barcode' | 'QRCodeIntegration' | 'UniRefundVoucherIntegration';
|
|
534
|
-
contractSettingId: string;
|
|
535
|
-
}> | null;
|
|
235
|
+
contractStores?: Array<UniRefund_ContractService_ContractsForMerchant_ContractStores_ContractStoreCreateAndUpdateDto> | null;
|
|
536
236
|
};
|
|
537
237
|
|
|
538
238
|
export type UniRefund_ContractService_ContractsForMerchant_ContractStores_ContractStoreCreateAndUpdateDto = {
|
|
@@ -540,7 +240,7 @@ export type UniRefund_ContractService_ContractsForMerchant_ContractStores_Contra
|
|
|
540
240
|
[key: string]: unknown;
|
|
541
241
|
} | null;
|
|
542
242
|
contractTypeIdentifiersSubId: string;
|
|
543
|
-
receiptType:
|
|
243
|
+
receiptType: UniRefund_ContractService_Enums_ReceiptType;
|
|
544
244
|
contractSettingId: string;
|
|
545
245
|
};
|
|
546
246
|
|
|
@@ -550,7 +250,7 @@ export type UniRefund_ContractService_ContractsForMerchant_ContractStores_Contra
|
|
|
550
250
|
fullAddress?: (string) | null;
|
|
551
251
|
manager?: (string) | null;
|
|
552
252
|
contractSettingId?: string;
|
|
553
|
-
receiptType:
|
|
253
|
+
receiptType: UniRefund_ContractService_Enums_ReceiptType;
|
|
554
254
|
};
|
|
555
255
|
|
|
556
256
|
export type UniRefund_ContractService_ContractsForMerchant_ContractStores_ContractStoreDto = {
|
|
@@ -564,7 +264,7 @@ export type UniRefund_ContractService_ContractsForMerchant_ContractStores_Contra
|
|
|
564
264
|
deletionTime?: (string) | null;
|
|
565
265
|
contractTypeIdentifiersSubId: string;
|
|
566
266
|
contractSettingId: string;
|
|
567
|
-
receiptType:
|
|
267
|
+
receiptType: UniRefund_ContractService_Enums_ReceiptType;
|
|
568
268
|
};
|
|
569
269
|
|
|
570
270
|
export type UniRefund_ContractService_ContractsForRefundPoint_ContractHeaderRefundFeeHeaders_ContractHeaderRefundFeeHeaderCreateAndUpdateDto = {
|
|
@@ -573,7 +273,7 @@ export type UniRefund_ContractService_ContractsForRefundPoint_ContractHeaderRefu
|
|
|
573
273
|
} | null;
|
|
574
274
|
refundFeeHeaderId: string;
|
|
575
275
|
validFrom: string;
|
|
576
|
-
validTo
|
|
276
|
+
validTo?: (string) | null;
|
|
577
277
|
isDefault?: boolean;
|
|
578
278
|
};
|
|
579
279
|
|
|
@@ -586,24 +286,13 @@ export type UniRefund_ContractService_ContractsForRefundPoint_ContractHeaderRefu
|
|
|
586
286
|
};
|
|
587
287
|
|
|
588
288
|
export type UniRefund_ContractService_ContractsForRefundPoint_ContractHeaders_CalculateFeesForRebateRequestDto = {
|
|
589
|
-
refundMethod?:
|
|
590
|
-
tagAmounts?: Array<
|
|
591
|
-
tagId?: string;
|
|
592
|
-
merchantId?: string;
|
|
593
|
-
sisAmount?: number;
|
|
594
|
-
grossCommission?: number;
|
|
595
|
-
vatRate?: number;
|
|
596
|
-
}> | null;
|
|
289
|
+
refundMethod?: UniRefund_ContractService_Enums_RefundMethod;
|
|
290
|
+
tagAmounts?: Array<UniRefund_ContractService_ContractsForRefundPoint_ContractHeaders_CalculateFeesForRebateTagAmountDto> | null;
|
|
597
291
|
rebateDate?: string;
|
|
598
292
|
};
|
|
599
293
|
|
|
600
|
-
export type refundMethod = 'All' | 'Cash' | 'CreditCard' | 'BankTransfer' | 'Wallet' | 'CashViaPartner';
|
|
601
|
-
|
|
602
294
|
export type UniRefund_ContractService_ContractsForRefundPoint_ContractHeaders_CalculateFeesForRebateResponseDto = {
|
|
603
|
-
tagRebateAmounts?: Array<
|
|
604
|
-
tagId?: string;
|
|
605
|
-
rebateAmount?: number;
|
|
606
|
-
}> | null;
|
|
295
|
+
tagRebateAmounts?: Array<UniRefund_ContractService_ContractsForRefundPoint_ContractHeaders_CalculateFeesTagRebateItem> | null;
|
|
607
296
|
};
|
|
608
297
|
|
|
609
298
|
export type UniRefund_ContractService_ContractsForRefundPoint_ContractHeaders_CalculateFeesForRebateTagAmountDto = {
|
|
@@ -615,7 +304,7 @@ export type UniRefund_ContractService_ContractsForRefundPoint_ContractHeaders_Ca
|
|
|
615
304
|
};
|
|
616
305
|
|
|
617
306
|
export type UniRefund_ContractService_ContractsForRefundPoint_ContractHeaders_CalculateFeesForRefundRequestDto = {
|
|
618
|
-
refundMethod?:
|
|
307
|
+
refundMethod?: UniRefund_ContractService_Enums_RefundMethod;
|
|
619
308
|
tagAmounts?: {
|
|
620
309
|
[key: string]: (number);
|
|
621
310
|
} | null;
|
|
@@ -624,14 +313,7 @@ export type UniRefund_ContractService_ContractsForRefundPoint_ContractHeaders_Ca
|
|
|
624
313
|
};
|
|
625
314
|
|
|
626
315
|
export type UniRefund_ContractService_ContractsForRefundPoint_ContractHeaders_CalculateFeesForRefundResponseDto = {
|
|
627
|
-
tagRefundAmounts?: Array<
|
|
628
|
-
tagId?: string;
|
|
629
|
-
refundAmount?: number;
|
|
630
|
-
touristFee?: number;
|
|
631
|
-
touristBonusFee?: (number) | null;
|
|
632
|
-
agentFee?: number;
|
|
633
|
-
airportFee?: (number) | null;
|
|
634
|
-
}> | null;
|
|
316
|
+
tagRefundAmounts?: Array<UniRefund_ContractService_ContractsForRefundPoint_ContractHeaders_CalculateFeesTagRefundItem> | null;
|
|
635
317
|
};
|
|
636
318
|
|
|
637
319
|
export type UniRefund_ContractService_ContractsForRefundPoint_ContractHeaders_CalculateFeesTagRebateItem = {
|
|
@@ -660,35 +342,17 @@ export type UniRefund_ContractService_ContractsForRefundPoint_ContractHeaders_Co
|
|
|
660
342
|
name: string;
|
|
661
343
|
contractTypeIdentifier: string;
|
|
662
344
|
webSite?: (string) | null;
|
|
663
|
-
merchantClassification:
|
|
664
|
-
status
|
|
665
|
-
refundPointBasicInformationDto?:
|
|
666
|
-
id?: string;
|
|
667
|
-
name?: (string) | null;
|
|
668
|
-
taxOffice?: {
|
|
669
|
-
id: string;
|
|
670
|
-
name: string;
|
|
671
|
-
};
|
|
672
|
-
numberOfStores?: number;
|
|
673
|
-
accountManagers?: Array<{
|
|
674
|
-
id?: string;
|
|
675
|
-
name?: (string) | null;
|
|
676
|
-
}> | null;
|
|
677
|
-
};
|
|
345
|
+
merchantClassification: UniRefund_ContractService_Enums_MerchantClassification;
|
|
346
|
+
status: UniRefund_ContractService_Enums_ContractHeaderStatus;
|
|
347
|
+
refundPointBasicInformationDto?: UniRefund_CRMService_RefundPoints_RefundPointBasicInformationDto;
|
|
678
348
|
isDraft?: boolean;
|
|
679
349
|
isActive?: boolean;
|
|
680
350
|
validFrom: string;
|
|
681
|
-
validTo
|
|
351
|
+
validTo?: (string) | null;
|
|
682
352
|
earlyRefund?: boolean;
|
|
683
|
-
contractType:
|
|
353
|
+
contractType: UniRefund_ContractService_Enums_ContractType;
|
|
684
354
|
addressCommonDataId: string;
|
|
685
|
-
refundFeeHeaders: Array<
|
|
686
|
-
name: string;
|
|
687
|
-
id: string;
|
|
688
|
-
validFrom: string;
|
|
689
|
-
validTo?: (string) | null;
|
|
690
|
-
isDefault: boolean;
|
|
691
|
-
}>;
|
|
355
|
+
refundFeeHeaders: Array<UniRefund_ContractService_ContractsForRefundPoint_ContractHeaderRefundFeeHeaders_ContractHeaderRefundFeeHeaderInformationDto>;
|
|
692
356
|
};
|
|
693
357
|
|
|
694
358
|
export type UniRefund_ContractService_ContractsForRefundPoint_ContractHeaders_ContractHeaderForRefundPointCreateDto = {
|
|
@@ -696,20 +360,12 @@ export type UniRefund_ContractService_ContractsForRefundPoint_ContractHeaders_Co
|
|
|
696
360
|
[key: string]: unknown;
|
|
697
361
|
} | null;
|
|
698
362
|
webSite?: (string) | null;
|
|
699
|
-
merchantClassification:
|
|
363
|
+
merchantClassification: UniRefund_ContractService_Enums_MerchantClassification;
|
|
700
364
|
validFrom: string;
|
|
701
|
-
validTo
|
|
365
|
+
validTo?: (string) | null;
|
|
702
366
|
earlyRefund?: boolean;
|
|
703
367
|
addressCommonDataId: string;
|
|
704
|
-
refundFeeHeaders: Array<
|
|
705
|
-
readonly extraProperties?: {
|
|
706
|
-
[key: string]: unknown;
|
|
707
|
-
} | null;
|
|
708
|
-
refundFeeHeaderId: string;
|
|
709
|
-
validFrom: string;
|
|
710
|
-
validTo: string;
|
|
711
|
-
isDefault?: boolean;
|
|
712
|
-
}>;
|
|
368
|
+
refundFeeHeaders: Array<UniRefund_ContractService_ContractsForRefundPoint_ContractHeaderRefundFeeHeaders_ContractHeaderRefundFeeHeaderCreateAndUpdateDto>;
|
|
713
369
|
};
|
|
714
370
|
|
|
715
371
|
export type UniRefund_ContractService_ContractsForRefundPoint_ContractHeaders_ContractHeaderForRefundPointDto = {
|
|
@@ -725,10 +381,10 @@ export type UniRefund_ContractService_ContractsForRefundPoint_ContractHeaders_Co
|
|
|
725
381
|
contractTypeIdentifier: string;
|
|
726
382
|
isDraft?: boolean;
|
|
727
383
|
isActive?: boolean;
|
|
728
|
-
status
|
|
729
|
-
contractType:
|
|
384
|
+
status: UniRefund_ContractService_Enums_ContractHeaderStatus;
|
|
385
|
+
contractType: UniRefund_ContractService_Enums_ContractType;
|
|
730
386
|
validFrom: string;
|
|
731
|
-
validTo
|
|
387
|
+
validTo?: (string) | null;
|
|
732
388
|
earlyRefund?: boolean;
|
|
733
389
|
addressCommonDataId: string;
|
|
734
390
|
};
|
|
@@ -738,21 +394,13 @@ export type UniRefund_ContractService_ContractsForRefundPoint_ContractHeaders_Co
|
|
|
738
394
|
[key: string]: unknown;
|
|
739
395
|
} | null;
|
|
740
396
|
webSite?: (string) | null;
|
|
741
|
-
merchantClassification:
|
|
742
|
-
status:
|
|
397
|
+
merchantClassification: UniRefund_ContractService_Enums_MerchantClassification;
|
|
398
|
+
status: UniRefund_ContractService_Enums_ContractHeaderStatus;
|
|
743
399
|
validFrom: string;
|
|
744
|
-
validTo
|
|
400
|
+
validTo?: (string) | null;
|
|
745
401
|
earlyRefund?: boolean;
|
|
746
402
|
addressCommonDataId: string;
|
|
747
|
-
refundFeeHeaders?: Array<
|
|
748
|
-
readonly extraProperties?: {
|
|
749
|
-
[key: string]: unknown;
|
|
750
|
-
} | null;
|
|
751
|
-
refundFeeHeaderId: string;
|
|
752
|
-
validFrom: string;
|
|
753
|
-
validTo: string;
|
|
754
|
-
isDefault?: boolean;
|
|
755
|
-
}> | null;
|
|
403
|
+
refundFeeHeaders?: Array<UniRefund_ContractService_ContractsForRefundPoint_ContractHeaderRefundFeeHeaders_ContractHeaderRefundFeeHeaderCreateAndUpdateDto> | null;
|
|
756
404
|
};
|
|
757
405
|
|
|
758
406
|
export type UniRefund_ContractService_Enums_ContractHeaderStatus = 'None' | 'Registered' | 'DeRegistrationRequestedByUniRefund' | 'DeRegistrationDataRequestedByAuthorities' | 'SuspendedInternallyAfterDeRegistrationDecline' | 'DeRegisteredAtAuthorities' | 'SuspendedInternallyOnly' | 'SuspensionRequestedByUniRefund' | 'SuspensionRequestedByAuthorities' | 'UnSuspensionRequestedByUniRefund' | 'UnSuspensionRequestedByAuthorities' | 'SuspendedAtAuthorities' | 'UnSuspensionForFurtherDeRegistrationInvitedByAuthorities' | 'UnSuspensionForFurtherDeRegistrationRequestedByUniRefund' | 'Terminated';
|
|
@@ -786,7 +434,7 @@ export type UniRefund_ContractService_Rebates_MinimumNetCommissions_MinimumNetCo
|
|
|
786
434
|
deletionTime?: (string) | null;
|
|
787
435
|
amount: number;
|
|
788
436
|
validFrom: string;
|
|
789
|
-
validTo
|
|
437
|
+
validTo?: (string) | null;
|
|
790
438
|
rebateSettingId?: string;
|
|
791
439
|
appliedOrganizationId?: (string) | null;
|
|
792
440
|
};
|
|
@@ -797,7 +445,7 @@ export type UniRefund_ContractService_Rebates_MinimumNetCommissions_MinimumNetCo
|
|
|
797
445
|
} | null;
|
|
798
446
|
amount: number;
|
|
799
447
|
validFrom: string;
|
|
800
|
-
validTo
|
|
448
|
+
validTo?: (string) | null;
|
|
801
449
|
appliedOrganizationId?: (string) | null;
|
|
802
450
|
};
|
|
803
451
|
|
|
@@ -847,61 +495,25 @@ export type UniRefund_ContractService_Rebates_RebateSettings_RebateSettingDto =
|
|
|
847
495
|
isDeleted?: boolean;
|
|
848
496
|
deleterId?: (string) | null;
|
|
849
497
|
deletionTime?: (string) | null;
|
|
850
|
-
referenceNumber
|
|
851
|
-
isTrustedMerchant
|
|
852
|
-
rebateStatementPeriod:
|
|
498
|
+
referenceNumber?: (string) | null;
|
|
499
|
+
isTrustedMerchant?: boolean;
|
|
500
|
+
rebateStatementPeriod: UniRefund_ContractService_Enums_RebateStatementPeriod;
|
|
853
501
|
contactInformationTypeId: string;
|
|
854
502
|
contractHeaderId: string;
|
|
855
|
-
rebateTableHeaders?: Array<
|
|
856
|
-
|
|
857
|
-
|
|
858
|
-
validFrom: string;
|
|
859
|
-
validTo?: (string) | null;
|
|
860
|
-
}> | null;
|
|
861
|
-
minimumNetCommissions?: Array<{
|
|
862
|
-
id: string;
|
|
863
|
-
creationTime?: string;
|
|
864
|
-
creatorId?: (string) | null;
|
|
865
|
-
lastModificationTime?: (string) | null;
|
|
866
|
-
lastModifierId?: (string) | null;
|
|
867
|
-
isDeleted?: boolean;
|
|
868
|
-
deleterId?: (string) | null;
|
|
869
|
-
deletionTime?: (string) | null;
|
|
870
|
-
amount: number;
|
|
871
|
-
validFrom: string;
|
|
872
|
-
validTo: string;
|
|
873
|
-
rebateSettingId?: string;
|
|
874
|
-
appliedOrganizationId?: (string) | null;
|
|
875
|
-
}> | null;
|
|
876
|
-
};
|
|
877
|
-
|
|
878
|
-
export type rebateStatementPeriod = 'None' | 'Monthly' | 'Quarterly' | 'BiAnnually' | 'Annually';
|
|
503
|
+
rebateTableHeaders?: Array<UniRefund_ContractService_Rebates_RebateSettingRebateTableHeaders_RebateSettingRebateTableHeaderInformationDto> | null;
|
|
504
|
+
minimumNetCommissions?: Array<UniRefund_ContractService_Rebates_MinimumNetCommissions_MinimumNetCommissionDto> | null;
|
|
505
|
+
};
|
|
879
506
|
|
|
880
507
|
export type UniRefund_ContractService_Rebates_RebateSettings_RebateSettingUpSertDto = {
|
|
881
508
|
readonly extraProperties?: {
|
|
882
509
|
[key: string]: unknown;
|
|
883
510
|
} | null;
|
|
884
|
-
referenceNumber
|
|
885
|
-
isTrustedMerchant
|
|
886
|
-
rebateStatementPeriod:
|
|
887
|
-
rebateTableHeaders?: Array<{
|
|
888
|
-
readonly extraProperties?: {
|
|
889
|
-
[key: string]: unknown;
|
|
890
|
-
} | null;
|
|
891
|
-
rebateTableHeaderId: string;
|
|
892
|
-
validFrom: string;
|
|
893
|
-
validTo?: (string) | null;
|
|
894
|
-
}> | null;
|
|
511
|
+
referenceNumber?: (string) | null;
|
|
512
|
+
isTrustedMerchant?: (boolean) | null;
|
|
513
|
+
rebateStatementPeriod: UniRefund_ContractService_Enums_RebateStatementPeriod;
|
|
895
514
|
contactInformationTypeId: string;
|
|
896
|
-
|
|
897
|
-
|
|
898
|
-
[key: string]: unknown;
|
|
899
|
-
} | null;
|
|
900
|
-
amount: number;
|
|
901
|
-
validFrom: string;
|
|
902
|
-
validTo: string;
|
|
903
|
-
appliedOrganizationId?: (string) | null;
|
|
904
|
-
}> | null;
|
|
515
|
+
rebateTableHeaders?: Array<UniRefund_ContractService_Rebates_RebateTableHeaders_RebateTableHeadersToRebateSettingUpSertDto> | null;
|
|
516
|
+
minimumNetCommissions?: Array<UniRefund_ContractService_Rebates_MinimumNetCommissions_MinimumNetCommissionUpSertDto> | null;
|
|
905
517
|
};
|
|
906
518
|
|
|
907
519
|
export type UniRefund_ContractService_Rebates_RebateTableDetails_RebateTableDetailCreateDto = {
|
|
@@ -910,12 +522,10 @@ export type UniRefund_ContractService_Rebates_RebateTableDetails_RebateTableDeta
|
|
|
910
522
|
} | null;
|
|
911
523
|
fixedFeeValue: number;
|
|
912
524
|
percentFeeValue: number;
|
|
913
|
-
refundMethod:
|
|
914
|
-
variableFee:
|
|
525
|
+
refundMethod: UniRefund_ContractService_Enums_RefundMethod;
|
|
526
|
+
variableFee: UniRefund_ContractService_Enums_VariableFee;
|
|
915
527
|
};
|
|
916
528
|
|
|
917
|
-
export type variableFee = 'PercentOfGC' | 'PercentOfGcWithoutVAT' | 'PercentOfVAT' | 'PercentOfSIS';
|
|
918
|
-
|
|
919
529
|
export type UniRefund_ContractService_Rebates_RebateTableDetails_RebateTableDetailDto = {
|
|
920
530
|
id: string;
|
|
921
531
|
creationTime?: string;
|
|
@@ -927,8 +537,8 @@ export type UniRefund_ContractService_Rebates_RebateTableDetails_RebateTableDeta
|
|
|
927
537
|
deletionTime?: (string) | null;
|
|
928
538
|
fixedFeeValue: number;
|
|
929
539
|
percentFeeValue: number;
|
|
930
|
-
refundMethod:
|
|
931
|
-
variableFee:
|
|
540
|
+
refundMethod: UniRefund_ContractService_Enums_RefundMethod;
|
|
541
|
+
variableFee: UniRefund_ContractService_Enums_VariableFee;
|
|
932
542
|
rebateTableHeaderId: string;
|
|
933
543
|
};
|
|
934
544
|
|
|
@@ -938,8 +548,8 @@ export type UniRefund_ContractService_Rebates_RebateTableDetails_RebateTableDeta
|
|
|
938
548
|
} | null;
|
|
939
549
|
fixedFeeValue: number;
|
|
940
550
|
percentFeeValue: number;
|
|
941
|
-
refundMethod:
|
|
942
|
-
variableFee:
|
|
551
|
+
refundMethod: UniRefund_ContractService_Enums_RefundMethod;
|
|
552
|
+
variableFee: UniRefund_ContractService_Enums_VariableFee;
|
|
943
553
|
};
|
|
944
554
|
|
|
945
555
|
export type UniRefund_ContractService_Rebates_RebateTableHeaders_RebateTableHeaderCreateDto = {
|
|
@@ -950,22 +560,8 @@ export type UniRefund_ContractService_Rebates_RebateTableHeaders_RebateTableHead
|
|
|
950
560
|
calculateNetCommissionInsteadOfRefund?: boolean;
|
|
951
561
|
isTemplate?: boolean;
|
|
952
562
|
merchantId?: (string) | null;
|
|
953
|
-
rebateTableDetails?: Array<
|
|
954
|
-
|
|
955
|
-
[key: string]: unknown;
|
|
956
|
-
} | null;
|
|
957
|
-
fixedFeeValue: number;
|
|
958
|
-
percentFeeValue: number;
|
|
959
|
-
refundMethod: 'All' | 'Cash' | 'CreditCard' | 'BankTransfer' | 'Wallet' | 'CashViaPartner';
|
|
960
|
-
variableFee: 'PercentOfGC' | 'PercentOfGcWithoutVAT' | 'PercentOfVAT' | 'PercentOfSIS';
|
|
961
|
-
}> | null;
|
|
962
|
-
processingFeeDetails?: Array<{
|
|
963
|
-
readonly extraProperties?: {
|
|
964
|
-
[key: string]: unknown;
|
|
965
|
-
} | null;
|
|
966
|
-
name: string;
|
|
967
|
-
amount: number;
|
|
968
|
-
}> | null;
|
|
563
|
+
rebateTableDetails?: Array<UniRefund_ContractService_Rebates_RebateTableDetails_RebateTableDetailCreateDto> | null;
|
|
564
|
+
processingFeeDetails?: Array<UniRefund_ContractService_Rebates_ProcessingFeeDetails_ProcessingFeeDetailCreateDto> | null;
|
|
969
565
|
};
|
|
970
566
|
|
|
971
567
|
export type UniRefund_ContractService_Rebates_RebateTableHeaders_RebateTableHeaderDto = {
|
|
@@ -981,37 +577,12 @@ export type UniRefund_ContractService_Rebates_RebateTableHeaders_RebateTableHead
|
|
|
981
577
|
calculateNetCommissionInsteadOfRefund: boolean;
|
|
982
578
|
isTemplate: boolean;
|
|
983
579
|
isAssigned: boolean;
|
|
580
|
+
isEditable: boolean;
|
|
984
581
|
isCustomizedOverTemplate?: (boolean) | null;
|
|
985
582
|
merchantId?: (string) | null;
|
|
986
583
|
sourceTemplateId?: (string) | null;
|
|
987
|
-
rebateTableDetails?: Array<
|
|
988
|
-
|
|
989
|
-
creationTime?: string;
|
|
990
|
-
creatorId?: (string) | null;
|
|
991
|
-
lastModificationTime?: (string) | null;
|
|
992
|
-
lastModifierId?: (string) | null;
|
|
993
|
-
isDeleted?: boolean;
|
|
994
|
-
deleterId?: (string) | null;
|
|
995
|
-
deletionTime?: (string) | null;
|
|
996
|
-
fixedFeeValue: number;
|
|
997
|
-
percentFeeValue: number;
|
|
998
|
-
refundMethod: 'All' | 'Cash' | 'CreditCard' | 'BankTransfer' | 'Wallet' | 'CashViaPartner';
|
|
999
|
-
variableFee: 'PercentOfGC' | 'PercentOfGcWithoutVAT' | 'PercentOfVAT' | 'PercentOfSIS';
|
|
1000
|
-
rebateTableHeaderId: string;
|
|
1001
|
-
}> | null;
|
|
1002
|
-
processingFeeDetails?: Array<{
|
|
1003
|
-
id: string;
|
|
1004
|
-
creationTime?: string;
|
|
1005
|
-
creatorId?: (string) | null;
|
|
1006
|
-
lastModificationTime?: (string) | null;
|
|
1007
|
-
lastModifierId?: (string) | null;
|
|
1008
|
-
isDeleted?: boolean;
|
|
1009
|
-
deleterId?: (string) | null;
|
|
1010
|
-
deletionTime?: (string) | null;
|
|
1011
|
-
name: string;
|
|
1012
|
-
amount: number;
|
|
1013
|
-
rebateTableHeaderId: string;
|
|
1014
|
-
}> | null;
|
|
584
|
+
rebateTableDetails?: Array<UniRefund_ContractService_Rebates_RebateTableDetails_RebateTableDetailDto> | null;
|
|
585
|
+
processingFeeDetails?: Array<UniRefund_ContractService_Rebates_ProcessingFeeDetails_ProcessingFeeDetailDto> | null;
|
|
1015
586
|
};
|
|
1016
587
|
|
|
1017
588
|
export type UniRefund_ContractService_Rebates_RebateTableHeaders_RebateTableHeaderInformationDto = {
|
|
@@ -1033,6 +604,7 @@ export type UniRefund_ContractService_Rebates_RebateTableHeaders_RebateTableHead
|
|
|
1033
604
|
calculateNetCommissionInsteadOfRefund: boolean;
|
|
1034
605
|
isTemplate: boolean;
|
|
1035
606
|
isAssigned: boolean;
|
|
607
|
+
isEditable: boolean;
|
|
1036
608
|
isCustomizedOverTemplate?: (boolean) | null;
|
|
1037
609
|
merchantId?: (string) | null;
|
|
1038
610
|
sourceTemplateId?: (string) | null;
|
|
@@ -1053,22 +625,8 @@ export type UniRefund_ContractService_Rebates_RebateTableHeaders_RebateTableHead
|
|
|
1053
625
|
} | null;
|
|
1054
626
|
name: string;
|
|
1055
627
|
calculateNetCommissionInsteadOfRefund?: boolean;
|
|
1056
|
-
rebateTableDetails?: Array<
|
|
1057
|
-
|
|
1058
|
-
[key: string]: unknown;
|
|
1059
|
-
} | null;
|
|
1060
|
-
fixedFeeValue: number;
|
|
1061
|
-
percentFeeValue: number;
|
|
1062
|
-
refundMethod: 'All' | 'Cash' | 'CreditCard' | 'BankTransfer' | 'Wallet' | 'CashViaPartner';
|
|
1063
|
-
variableFee: 'PercentOfGC' | 'PercentOfGcWithoutVAT' | 'PercentOfVAT' | 'PercentOfSIS';
|
|
1064
|
-
}> | null;
|
|
1065
|
-
processingFeeDetails?: Array<{
|
|
1066
|
-
readonly extraProperties?: {
|
|
1067
|
-
[key: string]: unknown;
|
|
1068
|
-
} | null;
|
|
1069
|
-
name: string;
|
|
1070
|
-
amount: number;
|
|
1071
|
-
}> | null;
|
|
628
|
+
rebateTableDetails?: Array<UniRefund_ContractService_Rebates_RebateTableDetails_RebateTableDetailUpdateWithRandomIdDto> | null;
|
|
629
|
+
processingFeeDetails?: Array<UniRefund_ContractService_Rebates_ProcessingFeeDetails_ProcessingFeeDetailUpdateWithRandomIdDto> | null;
|
|
1072
630
|
};
|
|
1073
631
|
|
|
1074
632
|
export type UniRefund_ContractService_Refunds_RefundFeeDetails_RefundFeeDetailCreateDto = {
|
|
@@ -1085,13 +643,11 @@ export type UniRefund_ContractService_Refunds_RefundFeeDetails_RefundFeeDetailCr
|
|
|
1085
643
|
maxFee: number;
|
|
1086
644
|
minFeeEarlyRefund?: (number) | null;
|
|
1087
645
|
maxFeeEarlyRefund?: (number) | null;
|
|
1088
|
-
feeType:
|
|
1089
|
-
refundMethod:
|
|
646
|
+
feeType: UniRefund_ContractService_Enums_FeeType;
|
|
647
|
+
refundMethod: UniRefund_ContractService_Enums_RefundMethod;
|
|
1090
648
|
isForEarlyRefund?: boolean;
|
|
1091
649
|
};
|
|
1092
650
|
|
|
1093
|
-
export type feeType = 'TouristFee' | 'TouristBonusFee' | 'AgentFee' | 'AirportFee';
|
|
1094
|
-
|
|
1095
651
|
export type UniRefund_ContractService_Refunds_RefundFeeDetails_RefundFeeDetailDto = {
|
|
1096
652
|
id: string;
|
|
1097
653
|
creationTime?: string;
|
|
@@ -1111,8 +667,8 @@ export type UniRefund_ContractService_Refunds_RefundFeeDetails_RefundFeeDetailDt
|
|
|
1111
667
|
maxFee: number;
|
|
1112
668
|
minFeeEarlyRefund?: number;
|
|
1113
669
|
maxFeeEarlyRefund?: number;
|
|
1114
|
-
feeType:
|
|
1115
|
-
refundMethod:
|
|
670
|
+
feeType: UniRefund_ContractService_Enums_FeeType;
|
|
671
|
+
refundMethod: UniRefund_ContractService_Enums_RefundMethod;
|
|
1116
672
|
refundFeeHeaderId: string;
|
|
1117
673
|
};
|
|
1118
674
|
|
|
@@ -1130,8 +686,8 @@ export type UniRefund_ContractService_Refunds_RefundFeeDetails_RefundFeeDetailUp
|
|
|
1130
686
|
maxFee: number;
|
|
1131
687
|
minFeeEarlyRefund?: (number) | null;
|
|
1132
688
|
maxFeeEarlyRefund?: (number) | null;
|
|
1133
|
-
feeType:
|
|
1134
|
-
refundMethod:
|
|
689
|
+
feeType: UniRefund_ContractService_Enums_FeeType;
|
|
690
|
+
refundMethod: UniRefund_ContractService_Enums_RefundMethod;
|
|
1135
691
|
};
|
|
1136
692
|
|
|
1137
693
|
export type UniRefund_ContractService_Refunds_RefundFeeHeaders_RefundFeeHeaderCreateDto = {
|
|
@@ -1142,24 +698,7 @@ export type UniRefund_ContractService_Refunds_RefundFeeHeaders_RefundFeeHeaderCr
|
|
|
1142
698
|
isActive?: boolean;
|
|
1143
699
|
isTemplate?: boolean;
|
|
1144
700
|
refundPointId?: (string) | null;
|
|
1145
|
-
refundFeeDetails?: Array<
|
|
1146
|
-
readonly extraProperties?: {
|
|
1147
|
-
[key: string]: unknown;
|
|
1148
|
-
} | null;
|
|
1149
|
-
amountFrom: number;
|
|
1150
|
-
amountTo: number;
|
|
1151
|
-
fixedFeeValue: number;
|
|
1152
|
-
percentFeeValue: number;
|
|
1153
|
-
fixedFeeValueEarlyRefund?: (number) | null;
|
|
1154
|
-
percentFeeValueEarlyRefund?: (number) | null;
|
|
1155
|
-
minFee: number;
|
|
1156
|
-
maxFee: number;
|
|
1157
|
-
minFeeEarlyRefund?: (number) | null;
|
|
1158
|
-
maxFeeEarlyRefund?: (number) | null;
|
|
1159
|
-
feeType: 'TouristFee' | 'TouristBonusFee' | 'AgentFee' | 'AirportFee';
|
|
1160
|
-
refundMethod: 'All' | 'Cash' | 'CreditCard' | 'BankTransfer' | 'Wallet' | 'CashViaPartner';
|
|
1161
|
-
isForEarlyRefund?: boolean;
|
|
1162
|
-
}> | null;
|
|
701
|
+
refundFeeDetails?: Array<UniRefund_ContractService_Refunds_RefundFeeDetails_RefundFeeDetailCreateDto> | null;
|
|
1163
702
|
};
|
|
1164
703
|
|
|
1165
704
|
export type UniRefund_ContractService_Refunds_RefundFeeHeaders_RefundFeeHeaderDto = {
|
|
@@ -1175,32 +714,11 @@ export type UniRefund_ContractService_Refunds_RefundFeeHeaders_RefundFeeHeaderDt
|
|
|
1175
714
|
isActive?: boolean;
|
|
1176
715
|
isTemplate: boolean;
|
|
1177
716
|
isAssigned: boolean;
|
|
717
|
+
isEditable: boolean;
|
|
1178
718
|
isCustomizedOverTemplate?: (boolean) | null;
|
|
1179
719
|
refundPointId?: (string) | null;
|
|
1180
720
|
sourceTemplateId?: (string) | null;
|
|
1181
|
-
refundFeeDetails?: Array<
|
|
1182
|
-
id: string;
|
|
1183
|
-
creationTime?: string;
|
|
1184
|
-
creatorId?: (string) | null;
|
|
1185
|
-
lastModificationTime?: (string) | null;
|
|
1186
|
-
lastModifierId?: (string) | null;
|
|
1187
|
-
isDeleted?: boolean;
|
|
1188
|
-
deleterId?: (string) | null;
|
|
1189
|
-
deletionTime?: (string) | null;
|
|
1190
|
-
amountFrom: number;
|
|
1191
|
-
amountTo: number;
|
|
1192
|
-
fixedFeeValue: number;
|
|
1193
|
-
percentFeeValue: number;
|
|
1194
|
-
fixedFeeValueEarlyRefund?: number;
|
|
1195
|
-
percentFeeValueEarlyRefund?: number;
|
|
1196
|
-
minFee: number;
|
|
1197
|
-
maxFee: number;
|
|
1198
|
-
minFeeEarlyRefund?: number;
|
|
1199
|
-
maxFeeEarlyRefund?: number;
|
|
1200
|
-
feeType: 'TouristFee' | 'TouristBonusFee' | 'AgentFee' | 'AirportFee';
|
|
1201
|
-
refundMethod: 'All' | 'Cash' | 'CreditCard' | 'BankTransfer' | 'Wallet' | 'CashViaPartner';
|
|
1202
|
-
refundFeeHeaderId: string;
|
|
1203
|
-
}> | null;
|
|
721
|
+
refundFeeDetails?: Array<UniRefund_ContractService_Refunds_RefundFeeDetails_RefundFeeDetailDto> | null;
|
|
1204
722
|
};
|
|
1205
723
|
|
|
1206
724
|
export type UniRefund_ContractService_Refunds_RefundFeeHeaders_RefundFeeHeaderInformationDto = {
|
|
@@ -1222,6 +740,7 @@ export type UniRefund_ContractService_Refunds_RefundFeeHeaders_RefundFeeHeaderLi
|
|
|
1222
740
|
isActive?: boolean;
|
|
1223
741
|
isTemplate: boolean;
|
|
1224
742
|
isAssigned: boolean;
|
|
743
|
+
isEditable: boolean;
|
|
1225
744
|
isCustomizedOverTemplate?: (boolean) | null;
|
|
1226
745
|
refundPointId?: (string) | null;
|
|
1227
746
|
sourceTemplateId?: (string) | null;
|
|
@@ -1233,23 +752,7 @@ export type UniRefund_ContractService_Refunds_RefundFeeHeaders_RefundFeeHeaderUp
|
|
|
1233
752
|
} | null;
|
|
1234
753
|
name: string;
|
|
1235
754
|
isActive?: boolean;
|
|
1236
|
-
refundFeeDetails?: Array<
|
|
1237
|
-
readonly extraProperties?: {
|
|
1238
|
-
[key: string]: unknown;
|
|
1239
|
-
} | null;
|
|
1240
|
-
amountFrom: number;
|
|
1241
|
-
amountTo: number;
|
|
1242
|
-
fixedFeeValue: number;
|
|
1243
|
-
percentFeeValue: number;
|
|
1244
|
-
fixedFeeValueEarlyRefund?: (number) | null;
|
|
1245
|
-
percentFeeValueEarlyRefund?: (number) | null;
|
|
1246
|
-
minFee: number;
|
|
1247
|
-
maxFee: number;
|
|
1248
|
-
minFeeEarlyRefund?: (number) | null;
|
|
1249
|
-
maxFeeEarlyRefund?: (number) | null;
|
|
1250
|
-
feeType: 'TouristFee' | 'TouristBonusFee' | 'AgentFee' | 'AirportFee';
|
|
1251
|
-
refundMethod: 'All' | 'Cash' | 'CreditCard' | 'BankTransfer' | 'Wallet' | 'CashViaPartner';
|
|
1252
|
-
}> | null;
|
|
755
|
+
refundFeeDetails?: Array<UniRefund_ContractService_Refunds_RefundFeeDetails_RefundFeeDetailUpdateWithRandomIdDto> | null;
|
|
1253
756
|
};
|
|
1254
757
|
|
|
1255
758
|
export type UniRefund_ContractService_Refunds_RefundTableDetails_RefundTableDetailCreateDto = {
|
|
@@ -1302,17 +805,7 @@ export type UniRefund_ContractService_Refunds_RefundTableHeaders_RefundTableHead
|
|
|
1302
805
|
isBundling?: boolean;
|
|
1303
806
|
isTemplate?: boolean;
|
|
1304
807
|
merchantId?: (string) | null;
|
|
1305
|
-
refundTableDetails?: Array<
|
|
1306
|
-
readonly extraProperties?: {
|
|
1307
|
-
[key: string]: unknown;
|
|
1308
|
-
} | null;
|
|
1309
|
-
vatRate: number;
|
|
1310
|
-
minValue: number;
|
|
1311
|
-
maxValue: number;
|
|
1312
|
-
refundAmount: number;
|
|
1313
|
-
refundPercent: number;
|
|
1314
|
-
isLoyalty?: boolean;
|
|
1315
|
-
}> | null;
|
|
808
|
+
refundTableDetails?: Array<UniRefund_ContractService_Refunds_RefundTableDetails_RefundTableDetailCreateDto> | null;
|
|
1316
809
|
};
|
|
1317
810
|
|
|
1318
811
|
export type UniRefund_ContractService_Refunds_RefundTableHeaders_RefundTableHeaderDto = {
|
|
@@ -1329,25 +822,11 @@ export type UniRefund_ContractService_Refunds_RefundTableHeaders_RefundTableHead
|
|
|
1329
822
|
isBundling?: boolean;
|
|
1330
823
|
isTemplate: boolean;
|
|
1331
824
|
isAssigned: boolean;
|
|
825
|
+
isEditable: boolean;
|
|
1332
826
|
isCustomizedOverTemplate?: (boolean) | null;
|
|
1333
827
|
merchantId?: (string) | null;
|
|
1334
828
|
sourceTemplateId?: (string) | null;
|
|
1335
|
-
refundTableDetails?: Array<
|
|
1336
|
-
id: string;
|
|
1337
|
-
creationTime?: string;
|
|
1338
|
-
creatorId?: (string) | null;
|
|
1339
|
-
lastModificationTime?: (string) | null;
|
|
1340
|
-
lastModifierId?: (string) | null;
|
|
1341
|
-
isDeleted?: boolean;
|
|
1342
|
-
deleterId?: (string) | null;
|
|
1343
|
-
deletionTime?: (string) | null;
|
|
1344
|
-
vatRate: number;
|
|
1345
|
-
minValue: number;
|
|
1346
|
-
maxValue: number;
|
|
1347
|
-
refundAmount: number;
|
|
1348
|
-
refundPercent: number;
|
|
1349
|
-
isLoyalty?: boolean;
|
|
1350
|
-
}> | null;
|
|
829
|
+
refundTableDetails?: Array<UniRefund_ContractService_Refunds_RefundTableDetails_RefundTableDetailDto> | null;
|
|
1351
830
|
};
|
|
1352
831
|
|
|
1353
832
|
export type UniRefund_ContractService_Refunds_RefundTableHeaders_RefundTableHeaderForTagDto = {
|
|
@@ -1364,25 +843,11 @@ export type UniRefund_ContractService_Refunds_RefundTableHeaders_RefundTableHead
|
|
|
1364
843
|
isBundling?: boolean;
|
|
1365
844
|
isTemplate: boolean;
|
|
1366
845
|
isAssigned: boolean;
|
|
846
|
+
isEditable: boolean;
|
|
1367
847
|
isCustomizedOverTemplate?: (boolean) | null;
|
|
1368
848
|
merchantId?: (string) | null;
|
|
1369
849
|
sourceTemplateId?: (string) | null;
|
|
1370
|
-
refundTableDetails?: Array<
|
|
1371
|
-
id: string;
|
|
1372
|
-
creationTime?: string;
|
|
1373
|
-
creatorId?: (string) | null;
|
|
1374
|
-
lastModificationTime?: (string) | null;
|
|
1375
|
-
lastModifierId?: (string) | null;
|
|
1376
|
-
isDeleted?: boolean;
|
|
1377
|
-
deleterId?: (string) | null;
|
|
1378
|
-
deletionTime?: (string) | null;
|
|
1379
|
-
vatRate: number;
|
|
1380
|
-
minValue: number;
|
|
1381
|
-
maxValue: number;
|
|
1382
|
-
refundAmount: number;
|
|
1383
|
-
refundPercent: number;
|
|
1384
|
-
isLoyalty?: boolean;
|
|
1385
|
-
}> | null;
|
|
850
|
+
refundTableDetails?: Array<UniRefund_ContractService_Refunds_RefundTableDetails_RefundTableDetailDto> | null;
|
|
1386
851
|
contractHeaderId?: string;
|
|
1387
852
|
};
|
|
1388
853
|
|
|
@@ -1406,6 +871,7 @@ export type UniRefund_ContractService_Refunds_RefundTableHeaders_RefundTableHead
|
|
|
1406
871
|
isBundling?: boolean;
|
|
1407
872
|
isTemplate: boolean;
|
|
1408
873
|
isAssigned: boolean;
|
|
874
|
+
isEditable: boolean;
|
|
1409
875
|
isCustomizedOverTemplate?: (boolean) | null;
|
|
1410
876
|
merchantId?: (string) | null;
|
|
1411
877
|
sourceTemplateId?: (string) | null;
|
|
@@ -1418,17 +884,7 @@ export type UniRefund_ContractService_Refunds_RefundTableHeaders_RefundTableHead
|
|
|
1418
884
|
name: string;
|
|
1419
885
|
isDefault?: boolean;
|
|
1420
886
|
isBundling?: boolean;
|
|
1421
|
-
refundTableDetails?: Array<
|
|
1422
|
-
readonly extraProperties?: {
|
|
1423
|
-
[key: string]: unknown;
|
|
1424
|
-
} | null;
|
|
1425
|
-
vatRate: number;
|
|
1426
|
-
minValue: number;
|
|
1427
|
-
maxValue: number;
|
|
1428
|
-
refundAmount: number;
|
|
1429
|
-
refundPercent: number;
|
|
1430
|
-
isLoyalty?: boolean;
|
|
1431
|
-
}> | null;
|
|
887
|
+
refundTableDetails?: Array<UniRefund_ContractService_Refunds_RefundTableDetails_RefundTableDetailUpdateWithRandomIdDto> | null;
|
|
1432
888
|
};
|
|
1433
889
|
|
|
1434
890
|
export type UniRefund_CRMService_Individuals_IndividualIdNameDto = {
|
|
@@ -1439,29 +895,17 @@ export type UniRefund_CRMService_Individuals_IndividualIdNameDto = {
|
|
|
1439
895
|
export type UniRefund_CRMService_Merchants_MerchantBasicInformationDto = {
|
|
1440
896
|
id?: string;
|
|
1441
897
|
name?: (string) | null;
|
|
1442
|
-
taxOffice?:
|
|
1443
|
-
id: string;
|
|
1444
|
-
name: string;
|
|
1445
|
-
};
|
|
898
|
+
taxOffice?: UniRefund_CRMService_TaxOffices_TaxOfficeNameDto;
|
|
1446
899
|
numberOfStores?: number;
|
|
1447
|
-
accountManagers?: Array<
|
|
1448
|
-
id?: string;
|
|
1449
|
-
name?: (string) | null;
|
|
1450
|
-
}> | null;
|
|
900
|
+
accountManagers?: Array<UniRefund_CRMService_Individuals_IndividualIdNameDto> | null;
|
|
1451
901
|
};
|
|
1452
902
|
|
|
1453
903
|
export type UniRefund_CRMService_RefundPoints_RefundPointBasicInformationDto = {
|
|
1454
904
|
id?: string;
|
|
1455
905
|
name?: (string) | null;
|
|
1456
|
-
taxOffice?:
|
|
1457
|
-
id: string;
|
|
1458
|
-
name: string;
|
|
1459
|
-
};
|
|
906
|
+
taxOffice?: UniRefund_CRMService_TaxOffices_TaxOfficeNameDto;
|
|
1460
907
|
numberOfStores?: number;
|
|
1461
|
-
accountManagers?: Array<
|
|
1462
|
-
id?: string;
|
|
1463
|
-
name?: (string) | null;
|
|
1464
|
-
}> | null;
|
|
908
|
+
accountManagers?: Array<UniRefund_CRMService_Individuals_IndividualIdNameDto> | null;
|
|
1465
909
|
};
|
|
1466
910
|
|
|
1467
911
|
export type UniRefund_CRMService_TaxOffices_TaxOfficeNameDto = {
|
|
@@ -1478,7 +922,7 @@ export type UniRefund_LocationService_AddressCommonDatas_AddressCommonDataDto =
|
|
|
1478
922
|
isDeleted?: boolean;
|
|
1479
923
|
deleterId?: (string) | null;
|
|
1480
924
|
deletionTime?: (string) | null;
|
|
1481
|
-
type:
|
|
925
|
+
type: UniRefund_LocationService_Enums_AddressType;
|
|
1482
926
|
addressLine: string;
|
|
1483
927
|
postalCode: string;
|
|
1484
928
|
fullAddress: string;
|
|
@@ -1499,190 +943,17 @@ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationAuthCon
|
|
|
1499
943
|
};
|
|
1500
944
|
|
|
1501
945
|
export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationConfigurationDto = {
|
|
1502
|
-
localization?:
|
|
1503
|
-
|
|
1504
|
-
|
|
1505
|
-
|
|
1506
|
-
|
|
1507
|
-
|
|
1508
|
-
|
|
1509
|
-
|
|
1510
|
-
|
|
1511
|
-
|
|
1512
|
-
|
|
1513
|
-
baseResources?: Array<(string)> | null;
|
|
1514
|
-
};
|
|
1515
|
-
} | null;
|
|
1516
|
-
languages?: Array<{
|
|
1517
|
-
cultureName?: (string) | null;
|
|
1518
|
-
uiCultureName?: (string) | null;
|
|
1519
|
-
displayName?: (string) | null;
|
|
1520
|
-
readonly twoLetterISOLanguageName?: (string) | null;
|
|
1521
|
-
}> | null;
|
|
1522
|
-
currentCulture?: {
|
|
1523
|
-
displayName?: (string) | null;
|
|
1524
|
-
englishName?: (string) | null;
|
|
1525
|
-
threeLetterIsoLanguageName?: (string) | null;
|
|
1526
|
-
twoLetterIsoLanguageName?: (string) | null;
|
|
1527
|
-
isRightToLeft?: boolean;
|
|
1528
|
-
cultureName?: (string) | null;
|
|
1529
|
-
name?: (string) | null;
|
|
1530
|
-
nativeName?: (string) | null;
|
|
1531
|
-
dateTimeFormat?: {
|
|
1532
|
-
calendarAlgorithmType?: (string) | null;
|
|
1533
|
-
dateTimeFormatLong?: (string) | null;
|
|
1534
|
-
shortDatePattern?: (string) | null;
|
|
1535
|
-
fullDateTimePattern?: (string) | null;
|
|
1536
|
-
dateSeparator?: (string) | null;
|
|
1537
|
-
shortTimePattern?: (string) | null;
|
|
1538
|
-
longTimePattern?: (string) | null;
|
|
1539
|
-
};
|
|
1540
|
-
};
|
|
1541
|
-
defaultResourceName?: (string) | null;
|
|
1542
|
-
languagesMap?: {
|
|
1543
|
-
[key: string]: Array<{
|
|
1544
|
-
name?: (string) | null;
|
|
1545
|
-
value?: (string) | null;
|
|
1546
|
-
}>;
|
|
1547
|
-
} | null;
|
|
1548
|
-
languageFilesMap?: {
|
|
1549
|
-
[key: string]: Array<{
|
|
1550
|
-
name?: (string) | null;
|
|
1551
|
-
value?: (string) | null;
|
|
1552
|
-
}>;
|
|
1553
|
-
} | null;
|
|
1554
|
-
};
|
|
1555
|
-
auth?: {
|
|
1556
|
-
grantedPolicies?: {
|
|
1557
|
-
[key: string]: (boolean);
|
|
1558
|
-
} | null;
|
|
1559
|
-
};
|
|
1560
|
-
setting?: {
|
|
1561
|
-
values?: {
|
|
1562
|
-
[key: string]: ((string) | null);
|
|
1563
|
-
} | null;
|
|
1564
|
-
};
|
|
1565
|
-
currentUser?: {
|
|
1566
|
-
isAuthenticated?: boolean;
|
|
1567
|
-
id?: (string) | null;
|
|
1568
|
-
tenantId?: (string) | null;
|
|
1569
|
-
impersonatorUserId?: (string) | null;
|
|
1570
|
-
impersonatorTenantId?: (string) | null;
|
|
1571
|
-
impersonatorUserName?: (string) | null;
|
|
1572
|
-
impersonatorTenantName?: (string) | null;
|
|
1573
|
-
userName?: (string) | null;
|
|
1574
|
-
name?: (string) | null;
|
|
1575
|
-
surName?: (string) | null;
|
|
1576
|
-
email?: (string) | null;
|
|
1577
|
-
emailVerified?: boolean;
|
|
1578
|
-
phoneNumber?: (string) | null;
|
|
1579
|
-
phoneNumberVerified?: boolean;
|
|
1580
|
-
roles?: Array<(string)> | null;
|
|
1581
|
-
sessionId?: (string) | null;
|
|
1582
|
-
};
|
|
1583
|
-
features?: {
|
|
1584
|
-
values?: {
|
|
1585
|
-
[key: string]: ((string) | null);
|
|
1586
|
-
} | null;
|
|
1587
|
-
};
|
|
1588
|
-
globalFeatures?: {
|
|
1589
|
-
enabledFeatures?: Array<(string)> | null;
|
|
1590
|
-
};
|
|
1591
|
-
multiTenancy?: {
|
|
1592
|
-
isEnabled?: boolean;
|
|
1593
|
-
};
|
|
1594
|
-
currentTenant?: {
|
|
1595
|
-
id?: (string) | null;
|
|
1596
|
-
name?: (string) | null;
|
|
1597
|
-
isAvailable?: boolean;
|
|
1598
|
-
};
|
|
1599
|
-
timing?: {
|
|
1600
|
-
timeZone?: {
|
|
1601
|
-
iana?: {
|
|
1602
|
-
timeZoneName?: (string) | null;
|
|
1603
|
-
};
|
|
1604
|
-
windows?: {
|
|
1605
|
-
timeZoneId?: (string) | null;
|
|
1606
|
-
};
|
|
1607
|
-
};
|
|
1608
|
-
};
|
|
1609
|
-
clock?: {
|
|
1610
|
-
kind?: (string) | null;
|
|
1611
|
-
};
|
|
1612
|
-
objectExtensions?: {
|
|
1613
|
-
modules?: {
|
|
1614
|
-
[key: string]: {
|
|
1615
|
-
entities?: {
|
|
1616
|
-
[key: string]: {
|
|
1617
|
-
properties?: {
|
|
1618
|
-
[key: string]: {
|
|
1619
|
-
type?: (string) | null;
|
|
1620
|
-
typeSimple?: (string) | null;
|
|
1621
|
-
displayName?: {
|
|
1622
|
-
name?: (string) | null;
|
|
1623
|
-
resource?: (string) | null;
|
|
1624
|
-
};
|
|
1625
|
-
api?: {
|
|
1626
|
-
onGet?: {
|
|
1627
|
-
isAvailable?: boolean;
|
|
1628
|
-
};
|
|
1629
|
-
onCreate?: {
|
|
1630
|
-
isAvailable?: boolean;
|
|
1631
|
-
};
|
|
1632
|
-
onUpdate?: {
|
|
1633
|
-
isAvailable?: boolean;
|
|
1634
|
-
};
|
|
1635
|
-
};
|
|
1636
|
-
ui?: {
|
|
1637
|
-
onTable?: {
|
|
1638
|
-
isVisible?: boolean;
|
|
1639
|
-
};
|
|
1640
|
-
onCreateForm?: {
|
|
1641
|
-
isVisible?: boolean;
|
|
1642
|
-
};
|
|
1643
|
-
onEditForm?: {
|
|
1644
|
-
isVisible?: boolean;
|
|
1645
|
-
};
|
|
1646
|
-
lookup?: {
|
|
1647
|
-
url?: (string) | null;
|
|
1648
|
-
resultListPropertyName?: (string) | null;
|
|
1649
|
-
displayPropertyName?: (string) | null;
|
|
1650
|
-
valuePropertyName?: (string) | null;
|
|
1651
|
-
filterParamName?: (string) | null;
|
|
1652
|
-
};
|
|
1653
|
-
};
|
|
1654
|
-
attributes?: Array<{
|
|
1655
|
-
typeSimple?: (string) | null;
|
|
1656
|
-
config?: {
|
|
1657
|
-
[key: string]: unknown;
|
|
1658
|
-
} | null;
|
|
1659
|
-
}> | null;
|
|
1660
|
-
configuration?: {
|
|
1661
|
-
[key: string]: unknown;
|
|
1662
|
-
} | null;
|
|
1663
|
-
defaultValue?: unknown;
|
|
1664
|
-
};
|
|
1665
|
-
} | null;
|
|
1666
|
-
configuration?: {
|
|
1667
|
-
[key: string]: unknown;
|
|
1668
|
-
} | null;
|
|
1669
|
-
};
|
|
1670
|
-
} | null;
|
|
1671
|
-
configuration?: {
|
|
1672
|
-
[key: string]: unknown;
|
|
1673
|
-
} | null;
|
|
1674
|
-
};
|
|
1675
|
-
} | null;
|
|
1676
|
-
enums?: {
|
|
1677
|
-
[key: string]: {
|
|
1678
|
-
fields?: Array<{
|
|
1679
|
-
name?: (string) | null;
|
|
1680
|
-
value?: unknown;
|
|
1681
|
-
}> | null;
|
|
1682
|
-
localizationResource?: (string) | null;
|
|
1683
|
-
};
|
|
1684
|
-
} | null;
|
|
1685
|
-
};
|
|
946
|
+
localization?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationConfigurationDto;
|
|
947
|
+
auth?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationAuthConfigurationDto;
|
|
948
|
+
setting?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationSettingConfigurationDto;
|
|
949
|
+
currentUser?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_CurrentUserDto;
|
|
950
|
+
features?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationFeatureConfigurationDto;
|
|
951
|
+
globalFeatures?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationGlobalFeatureConfigurationDto;
|
|
952
|
+
multiTenancy?: Volo_Abp_AspNetCore_Mvc_MultiTenancy_MultiTenancyInfoDto;
|
|
953
|
+
currentTenant?: Volo_Abp_AspNetCore_Mvc_MultiTenancy_CurrentTenantDto;
|
|
954
|
+
timing?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_TimingDto;
|
|
955
|
+
clock?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ClockDto;
|
|
956
|
+
objectExtensions?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ObjectExtensionsDto;
|
|
1686
957
|
extraProperties?: {
|
|
1687
958
|
[key: string]: unknown;
|
|
1688
959
|
} | null;
|
|
@@ -1705,81 +976,24 @@ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocaliz
|
|
|
1705
976
|
};
|
|
1706
977
|
} | null;
|
|
1707
978
|
resources?: {
|
|
1708
|
-
[key: string]:
|
|
1709
|
-
texts?: {
|
|
1710
|
-
[key: string]: (string);
|
|
1711
|
-
} | null;
|
|
1712
|
-
baseResources?: Array<(string)> | null;
|
|
1713
|
-
};
|
|
979
|
+
[key: string]: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationResourceDto;
|
|
1714
980
|
} | null;
|
|
1715
|
-
languages?: Array<
|
|
1716
|
-
|
|
1717
|
-
uiCultureName?: (string) | null;
|
|
1718
|
-
displayName?: (string) | null;
|
|
1719
|
-
readonly twoLetterISOLanguageName?: (string) | null;
|
|
1720
|
-
}> | null;
|
|
1721
|
-
currentCulture?: {
|
|
1722
|
-
displayName?: (string) | null;
|
|
1723
|
-
englishName?: (string) | null;
|
|
1724
|
-
threeLetterIsoLanguageName?: (string) | null;
|
|
1725
|
-
twoLetterIsoLanguageName?: (string) | null;
|
|
1726
|
-
isRightToLeft?: boolean;
|
|
1727
|
-
cultureName?: (string) | null;
|
|
1728
|
-
name?: (string) | null;
|
|
1729
|
-
nativeName?: (string) | null;
|
|
1730
|
-
dateTimeFormat?: {
|
|
1731
|
-
calendarAlgorithmType?: (string) | null;
|
|
1732
|
-
dateTimeFormatLong?: (string) | null;
|
|
1733
|
-
shortDatePattern?: (string) | null;
|
|
1734
|
-
fullDateTimePattern?: (string) | null;
|
|
1735
|
-
dateSeparator?: (string) | null;
|
|
1736
|
-
shortTimePattern?: (string) | null;
|
|
1737
|
-
longTimePattern?: (string) | null;
|
|
1738
|
-
};
|
|
1739
|
-
};
|
|
981
|
+
languages?: Array<Volo_Abp_Localization_LanguageInfo> | null;
|
|
982
|
+
currentCulture?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_CurrentCultureDto;
|
|
1740
983
|
defaultResourceName?: (string) | null;
|
|
1741
984
|
languagesMap?: {
|
|
1742
|
-
[key: string]: Array<
|
|
1743
|
-
name?: (string) | null;
|
|
1744
|
-
value?: (string) | null;
|
|
1745
|
-
}>;
|
|
985
|
+
[key: string]: Array<Volo_Abp_NameValue>;
|
|
1746
986
|
} | null;
|
|
1747
987
|
languageFilesMap?: {
|
|
1748
|
-
[key: string]: Array<
|
|
1749
|
-
name?: (string) | null;
|
|
1750
|
-
value?: (string) | null;
|
|
1751
|
-
}>;
|
|
988
|
+
[key: string]: Array<Volo_Abp_NameValue>;
|
|
1752
989
|
} | null;
|
|
1753
990
|
};
|
|
1754
991
|
|
|
1755
992
|
export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationDto = {
|
|
1756
993
|
resources?: {
|
|
1757
|
-
[key: string]:
|
|
1758
|
-
texts?: {
|
|
1759
|
-
[key: string]: (string);
|
|
1760
|
-
} | null;
|
|
1761
|
-
baseResources?: Array<(string)> | null;
|
|
1762
|
-
};
|
|
994
|
+
[key: string]: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationResourceDto;
|
|
1763
995
|
} | null;
|
|
1764
|
-
currentCulture?:
|
|
1765
|
-
displayName?: (string) | null;
|
|
1766
|
-
englishName?: (string) | null;
|
|
1767
|
-
threeLetterIsoLanguageName?: (string) | null;
|
|
1768
|
-
twoLetterIsoLanguageName?: (string) | null;
|
|
1769
|
-
isRightToLeft?: boolean;
|
|
1770
|
-
cultureName?: (string) | null;
|
|
1771
|
-
name?: (string) | null;
|
|
1772
|
-
nativeName?: (string) | null;
|
|
1773
|
-
dateTimeFormat?: {
|
|
1774
|
-
calendarAlgorithmType?: (string) | null;
|
|
1775
|
-
dateTimeFormatLong?: (string) | null;
|
|
1776
|
-
shortDatePattern?: (string) | null;
|
|
1777
|
-
fullDateTimePattern?: (string) | null;
|
|
1778
|
-
dateSeparator?: (string) | null;
|
|
1779
|
-
shortTimePattern?: (string) | null;
|
|
1780
|
-
longTimePattern?: (string) | null;
|
|
1781
|
-
};
|
|
1782
|
-
};
|
|
996
|
+
currentCulture?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_CurrentCultureDto;
|
|
1783
997
|
};
|
|
1784
998
|
|
|
1785
999
|
export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationResourceDto = {
|
|
@@ -1808,15 +1022,7 @@ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_CurrentCultureDto
|
|
|
1808
1022
|
cultureName?: (string) | null;
|
|
1809
1023
|
name?: (string) | null;
|
|
1810
1024
|
nativeName?: (string) | null;
|
|
1811
|
-
dateTimeFormat?:
|
|
1812
|
-
calendarAlgorithmType?: (string) | null;
|
|
1813
|
-
dateTimeFormatLong?: (string) | null;
|
|
1814
|
-
shortDatePattern?: (string) | null;
|
|
1815
|
-
fullDateTimePattern?: (string) | null;
|
|
1816
|
-
dateSeparator?: (string) | null;
|
|
1817
|
-
shortTimePattern?: (string) | null;
|
|
1818
|
-
longTimePattern?: (string) | null;
|
|
1819
|
-
};
|
|
1025
|
+
dateTimeFormat?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_DateTimeFormatDto;
|
|
1820
1026
|
};
|
|
1821
1027
|
|
|
1822
1028
|
export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_CurrentUserDto = {
|
|
@@ -1854,53 +1060,7 @@ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_IanaTimeZone = {
|
|
|
1854
1060
|
|
|
1855
1061
|
export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_EntityExtensionDto = {
|
|
1856
1062
|
properties?: {
|
|
1857
|
-
[key: string]:
|
|
1858
|
-
type?: (string) | null;
|
|
1859
|
-
typeSimple?: (string) | null;
|
|
1860
|
-
displayName?: {
|
|
1861
|
-
name?: (string) | null;
|
|
1862
|
-
resource?: (string) | null;
|
|
1863
|
-
};
|
|
1864
|
-
api?: {
|
|
1865
|
-
onGet?: {
|
|
1866
|
-
isAvailable?: boolean;
|
|
1867
|
-
};
|
|
1868
|
-
onCreate?: {
|
|
1869
|
-
isAvailable?: boolean;
|
|
1870
|
-
};
|
|
1871
|
-
onUpdate?: {
|
|
1872
|
-
isAvailable?: boolean;
|
|
1873
|
-
};
|
|
1874
|
-
};
|
|
1875
|
-
ui?: {
|
|
1876
|
-
onTable?: {
|
|
1877
|
-
isVisible?: boolean;
|
|
1878
|
-
};
|
|
1879
|
-
onCreateForm?: {
|
|
1880
|
-
isVisible?: boolean;
|
|
1881
|
-
};
|
|
1882
|
-
onEditForm?: {
|
|
1883
|
-
isVisible?: boolean;
|
|
1884
|
-
};
|
|
1885
|
-
lookup?: {
|
|
1886
|
-
url?: (string) | null;
|
|
1887
|
-
resultListPropertyName?: (string) | null;
|
|
1888
|
-
displayPropertyName?: (string) | null;
|
|
1889
|
-
valuePropertyName?: (string) | null;
|
|
1890
|
-
filterParamName?: (string) | null;
|
|
1891
|
-
};
|
|
1892
|
-
};
|
|
1893
|
-
attributes?: Array<{
|
|
1894
|
-
typeSimple?: (string) | null;
|
|
1895
|
-
config?: {
|
|
1896
|
-
[key: string]: unknown;
|
|
1897
|
-
} | null;
|
|
1898
|
-
}> | null;
|
|
1899
|
-
configuration?: {
|
|
1900
|
-
[key: string]: unknown;
|
|
1901
|
-
} | null;
|
|
1902
|
-
defaultValue?: unknown;
|
|
1903
|
-
};
|
|
1063
|
+
[key: string]: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyDto;
|
|
1904
1064
|
} | null;
|
|
1905
1065
|
configuration?: {
|
|
1906
1066
|
[key: string]: unknown;
|
|
@@ -1908,10 +1068,7 @@ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_En
|
|
|
1908
1068
|
};
|
|
1909
1069
|
|
|
1910
1070
|
export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionEnumDto = {
|
|
1911
|
-
fields?: Array<
|
|
1912
|
-
name?: (string) | null;
|
|
1913
|
-
value?: unknown;
|
|
1914
|
-
}> | null;
|
|
1071
|
+
fields?: Array<Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionEnumFieldDto> | null;
|
|
1915
1072
|
localizationResource?: (string) | null;
|
|
1916
1073
|
};
|
|
1917
1074
|
|
|
@@ -1925,15 +1082,9 @@ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_Ex
|
|
|
1925
1082
|
};
|
|
1926
1083
|
|
|
1927
1084
|
export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiDto = {
|
|
1928
|
-
onGet?:
|
|
1929
|
-
|
|
1930
|
-
|
|
1931
|
-
onCreate?: {
|
|
1932
|
-
isAvailable?: boolean;
|
|
1933
|
-
};
|
|
1934
|
-
onUpdate?: {
|
|
1935
|
-
isAvailable?: boolean;
|
|
1936
|
-
};
|
|
1085
|
+
onGet?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiGetDto;
|
|
1086
|
+
onCreate?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiCreateDto;
|
|
1087
|
+
onUpdate?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiUpdateDto;
|
|
1937
1088
|
};
|
|
1938
1089
|
|
|
1939
1090
|
export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiGetDto = {
|
|
@@ -1954,45 +1105,10 @@ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_Ex
|
|
|
1954
1105
|
export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyDto = {
|
|
1955
1106
|
type?: (string) | null;
|
|
1956
1107
|
typeSimple?: (string) | null;
|
|
1957
|
-
displayName?:
|
|
1958
|
-
|
|
1959
|
-
|
|
1960
|
-
|
|
1961
|
-
api?: {
|
|
1962
|
-
onGet?: {
|
|
1963
|
-
isAvailable?: boolean;
|
|
1964
|
-
};
|
|
1965
|
-
onCreate?: {
|
|
1966
|
-
isAvailable?: boolean;
|
|
1967
|
-
};
|
|
1968
|
-
onUpdate?: {
|
|
1969
|
-
isAvailable?: boolean;
|
|
1970
|
-
};
|
|
1971
|
-
};
|
|
1972
|
-
ui?: {
|
|
1973
|
-
onTable?: {
|
|
1974
|
-
isVisible?: boolean;
|
|
1975
|
-
};
|
|
1976
|
-
onCreateForm?: {
|
|
1977
|
-
isVisible?: boolean;
|
|
1978
|
-
};
|
|
1979
|
-
onEditForm?: {
|
|
1980
|
-
isVisible?: boolean;
|
|
1981
|
-
};
|
|
1982
|
-
lookup?: {
|
|
1983
|
-
url?: (string) | null;
|
|
1984
|
-
resultListPropertyName?: (string) | null;
|
|
1985
|
-
displayPropertyName?: (string) | null;
|
|
1986
|
-
valuePropertyName?: (string) | null;
|
|
1987
|
-
filterParamName?: (string) | null;
|
|
1988
|
-
};
|
|
1989
|
-
};
|
|
1990
|
-
attributes?: Array<{
|
|
1991
|
-
typeSimple?: (string) | null;
|
|
1992
|
-
config?: {
|
|
1993
|
-
[key: string]: unknown;
|
|
1994
|
-
} | null;
|
|
1995
|
-
}> | null;
|
|
1108
|
+
displayName?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_LocalizableStringDto;
|
|
1109
|
+
api?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiDto;
|
|
1110
|
+
ui?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiDto;
|
|
1111
|
+
attributes?: Array<Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyAttributeDto> | null;
|
|
1996
1112
|
configuration?: {
|
|
1997
1113
|
[key: string]: unknown;
|
|
1998
1114
|
} | null;
|
|
@@ -2000,22 +1116,10 @@ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_Ex
|
|
|
2000
1116
|
};
|
|
2001
1117
|
|
|
2002
1118
|
export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiDto = {
|
|
2003
|
-
onTable?:
|
|
2004
|
-
|
|
2005
|
-
|
|
2006
|
-
|
|
2007
|
-
isVisible?: boolean;
|
|
2008
|
-
};
|
|
2009
|
-
onEditForm?: {
|
|
2010
|
-
isVisible?: boolean;
|
|
2011
|
-
};
|
|
2012
|
-
lookup?: {
|
|
2013
|
-
url?: (string) | null;
|
|
2014
|
-
resultListPropertyName?: (string) | null;
|
|
2015
|
-
displayPropertyName?: (string) | null;
|
|
2016
|
-
valuePropertyName?: (string) | null;
|
|
2017
|
-
filterParamName?: (string) | null;
|
|
2018
|
-
};
|
|
1119
|
+
onTable?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiTableDto;
|
|
1120
|
+
onCreateForm?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiFormDto;
|
|
1121
|
+
onEditForm?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiFormDto;
|
|
1122
|
+
lookup?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiLookupDto;
|
|
2019
1123
|
};
|
|
2020
1124
|
|
|
2021
1125
|
export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiFormDto = {
|
|
@@ -2041,60 +1145,7 @@ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_Lo
|
|
|
2041
1145
|
|
|
2042
1146
|
export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ModuleExtensionDto = {
|
|
2043
1147
|
entities?: {
|
|
2044
|
-
[key: string]:
|
|
2045
|
-
properties?: {
|
|
2046
|
-
[key: string]: {
|
|
2047
|
-
type?: (string) | null;
|
|
2048
|
-
typeSimple?: (string) | null;
|
|
2049
|
-
displayName?: {
|
|
2050
|
-
name?: (string) | null;
|
|
2051
|
-
resource?: (string) | null;
|
|
2052
|
-
};
|
|
2053
|
-
api?: {
|
|
2054
|
-
onGet?: {
|
|
2055
|
-
isAvailable?: boolean;
|
|
2056
|
-
};
|
|
2057
|
-
onCreate?: {
|
|
2058
|
-
isAvailable?: boolean;
|
|
2059
|
-
};
|
|
2060
|
-
onUpdate?: {
|
|
2061
|
-
isAvailable?: boolean;
|
|
2062
|
-
};
|
|
2063
|
-
};
|
|
2064
|
-
ui?: {
|
|
2065
|
-
onTable?: {
|
|
2066
|
-
isVisible?: boolean;
|
|
2067
|
-
};
|
|
2068
|
-
onCreateForm?: {
|
|
2069
|
-
isVisible?: boolean;
|
|
2070
|
-
};
|
|
2071
|
-
onEditForm?: {
|
|
2072
|
-
isVisible?: boolean;
|
|
2073
|
-
};
|
|
2074
|
-
lookup?: {
|
|
2075
|
-
url?: (string) | null;
|
|
2076
|
-
resultListPropertyName?: (string) | null;
|
|
2077
|
-
displayPropertyName?: (string) | null;
|
|
2078
|
-
valuePropertyName?: (string) | null;
|
|
2079
|
-
filterParamName?: (string) | null;
|
|
2080
|
-
};
|
|
2081
|
-
};
|
|
2082
|
-
attributes?: Array<{
|
|
2083
|
-
typeSimple?: (string) | null;
|
|
2084
|
-
config?: {
|
|
2085
|
-
[key: string]: unknown;
|
|
2086
|
-
} | null;
|
|
2087
|
-
}> | null;
|
|
2088
|
-
configuration?: {
|
|
2089
|
-
[key: string]: unknown;
|
|
2090
|
-
} | null;
|
|
2091
|
-
defaultValue?: unknown;
|
|
2092
|
-
};
|
|
2093
|
-
} | null;
|
|
2094
|
-
configuration?: {
|
|
2095
|
-
[key: string]: unknown;
|
|
2096
|
-
} | null;
|
|
2097
|
-
};
|
|
1148
|
+
[key: string]: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_EntityExtensionDto;
|
|
2098
1149
|
} | null;
|
|
2099
1150
|
configuration?: {
|
|
2100
1151
|
[key: string]: unknown;
|
|
@@ -2103,97 +1154,20 @@ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_Mo
|
|
|
2103
1154
|
|
|
2104
1155
|
export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ObjectExtensionsDto = {
|
|
2105
1156
|
modules?: {
|
|
2106
|
-
[key: string]:
|
|
2107
|
-
entities?: {
|
|
2108
|
-
[key: string]: {
|
|
2109
|
-
properties?: {
|
|
2110
|
-
[key: string]: {
|
|
2111
|
-
type?: (string) | null;
|
|
2112
|
-
typeSimple?: (string) | null;
|
|
2113
|
-
displayName?: {
|
|
2114
|
-
name?: (string) | null;
|
|
2115
|
-
resource?: (string) | null;
|
|
2116
|
-
};
|
|
2117
|
-
api?: {
|
|
2118
|
-
onGet?: {
|
|
2119
|
-
isAvailable?: boolean;
|
|
2120
|
-
};
|
|
2121
|
-
onCreate?: {
|
|
2122
|
-
isAvailable?: boolean;
|
|
2123
|
-
};
|
|
2124
|
-
onUpdate?: {
|
|
2125
|
-
isAvailable?: boolean;
|
|
2126
|
-
};
|
|
2127
|
-
};
|
|
2128
|
-
ui?: {
|
|
2129
|
-
onTable?: {
|
|
2130
|
-
isVisible?: boolean;
|
|
2131
|
-
};
|
|
2132
|
-
onCreateForm?: {
|
|
2133
|
-
isVisible?: boolean;
|
|
2134
|
-
};
|
|
2135
|
-
onEditForm?: {
|
|
2136
|
-
isVisible?: boolean;
|
|
2137
|
-
};
|
|
2138
|
-
lookup?: {
|
|
2139
|
-
url?: (string) | null;
|
|
2140
|
-
resultListPropertyName?: (string) | null;
|
|
2141
|
-
displayPropertyName?: (string) | null;
|
|
2142
|
-
valuePropertyName?: (string) | null;
|
|
2143
|
-
filterParamName?: (string) | null;
|
|
2144
|
-
};
|
|
2145
|
-
};
|
|
2146
|
-
attributes?: Array<{
|
|
2147
|
-
typeSimple?: (string) | null;
|
|
2148
|
-
config?: {
|
|
2149
|
-
[key: string]: unknown;
|
|
2150
|
-
} | null;
|
|
2151
|
-
}> | null;
|
|
2152
|
-
configuration?: {
|
|
2153
|
-
[key: string]: unknown;
|
|
2154
|
-
} | null;
|
|
2155
|
-
defaultValue?: unknown;
|
|
2156
|
-
};
|
|
2157
|
-
} | null;
|
|
2158
|
-
configuration?: {
|
|
2159
|
-
[key: string]: unknown;
|
|
2160
|
-
} | null;
|
|
2161
|
-
};
|
|
2162
|
-
} | null;
|
|
2163
|
-
configuration?: {
|
|
2164
|
-
[key: string]: unknown;
|
|
2165
|
-
} | null;
|
|
2166
|
-
};
|
|
1157
|
+
[key: string]: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ModuleExtensionDto;
|
|
2167
1158
|
} | null;
|
|
2168
1159
|
enums?: {
|
|
2169
|
-
[key: string]:
|
|
2170
|
-
fields?: Array<{
|
|
2171
|
-
name?: (string) | null;
|
|
2172
|
-
value?: unknown;
|
|
2173
|
-
}> | null;
|
|
2174
|
-
localizationResource?: (string) | null;
|
|
2175
|
-
};
|
|
1160
|
+
[key: string]: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionEnumDto;
|
|
2176
1161
|
} | null;
|
|
2177
1162
|
};
|
|
2178
1163
|
|
|
2179
1164
|
export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_TimeZone = {
|
|
2180
|
-
iana?:
|
|
2181
|
-
|
|
2182
|
-
};
|
|
2183
|
-
windows?: {
|
|
2184
|
-
timeZoneId?: (string) | null;
|
|
2185
|
-
};
|
|
1165
|
+
iana?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_IanaTimeZone;
|
|
1166
|
+
windows?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_WindowsTimeZone;
|
|
2186
1167
|
};
|
|
2187
1168
|
|
|
2188
1169
|
export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_TimingDto = {
|
|
2189
|
-
timeZone?:
|
|
2190
|
-
iana?: {
|
|
2191
|
-
timeZoneName?: (string) | null;
|
|
2192
|
-
};
|
|
2193
|
-
windows?: {
|
|
2194
|
-
timeZoneId?: (string) | null;
|
|
2195
|
-
};
|
|
2196
|
-
};
|
|
1170
|
+
timeZone?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_TimeZone;
|
|
2197
1171
|
};
|
|
2198
1172
|
|
|
2199
1173
|
export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_WindowsTimeZone = {
|
|
@@ -2216,125 +1190,19 @@ export type Volo_Abp_Http_Modeling_ActionApiDescriptionModel = {
|
|
|
2216
1190
|
httpMethod?: (string) | null;
|
|
2217
1191
|
url?: (string) | null;
|
|
2218
1192
|
supportedVersions?: Array<(string)> | null;
|
|
2219
|
-
parametersOnMethod?: Array<
|
|
2220
|
-
|
|
2221
|
-
|
|
2222
|
-
type?: (string) | null;
|
|
2223
|
-
typeSimple?: (string) | null;
|
|
2224
|
-
isOptional?: boolean;
|
|
2225
|
-
defaultValue?: unknown;
|
|
2226
|
-
}> | null;
|
|
2227
|
-
parameters?: Array<{
|
|
2228
|
-
nameOnMethod?: (string) | null;
|
|
2229
|
-
name?: (string) | null;
|
|
2230
|
-
jsonName?: (string) | null;
|
|
2231
|
-
type?: (string) | null;
|
|
2232
|
-
typeSimple?: (string) | null;
|
|
2233
|
-
isOptional?: boolean;
|
|
2234
|
-
defaultValue?: unknown;
|
|
2235
|
-
constraintTypes?: Array<(string)> | null;
|
|
2236
|
-
bindingSourceId?: (string) | null;
|
|
2237
|
-
descriptorName?: (string) | null;
|
|
2238
|
-
}> | null;
|
|
2239
|
-
returnValue?: {
|
|
2240
|
-
type?: (string) | null;
|
|
2241
|
-
typeSimple?: (string) | null;
|
|
2242
|
-
};
|
|
1193
|
+
parametersOnMethod?: Array<Volo_Abp_Http_Modeling_MethodParameterApiDescriptionModel> | null;
|
|
1194
|
+
parameters?: Array<Volo_Abp_Http_Modeling_ParameterApiDescriptionModel> | null;
|
|
1195
|
+
returnValue?: Volo_Abp_Http_Modeling_ReturnValueApiDescriptionModel;
|
|
2243
1196
|
allowAnonymous?: (boolean) | null;
|
|
2244
1197
|
implementFrom?: (string) | null;
|
|
2245
1198
|
};
|
|
2246
1199
|
|
|
2247
1200
|
export type Volo_Abp_Http_Modeling_ApplicationApiDescriptionModel = {
|
|
2248
1201
|
modules?: {
|
|
2249
|
-
[key: string]:
|
|
2250
|
-
rootPath?: (string) | null;
|
|
2251
|
-
remoteServiceName?: (string) | null;
|
|
2252
|
-
controllers?: {
|
|
2253
|
-
[key: string]: {
|
|
2254
|
-
controllerName?: (string) | null;
|
|
2255
|
-
controllerGroupName?: (string) | null;
|
|
2256
|
-
isRemoteService?: boolean;
|
|
2257
|
-
isIntegrationService?: boolean;
|
|
2258
|
-
apiVersion?: (string) | null;
|
|
2259
|
-
type?: (string) | null;
|
|
2260
|
-
interfaces?: Array<{
|
|
2261
|
-
type?: (string) | null;
|
|
2262
|
-
name?: (string) | null;
|
|
2263
|
-
methods?: Array<{
|
|
2264
|
-
name?: (string) | null;
|
|
2265
|
-
parametersOnMethod?: Array<{
|
|
2266
|
-
name?: (string) | null;
|
|
2267
|
-
typeAsString?: (string) | null;
|
|
2268
|
-
type?: (string) | null;
|
|
2269
|
-
typeSimple?: (string) | null;
|
|
2270
|
-
isOptional?: boolean;
|
|
2271
|
-
defaultValue?: unknown;
|
|
2272
|
-
}> | null;
|
|
2273
|
-
returnValue?: {
|
|
2274
|
-
type?: (string) | null;
|
|
2275
|
-
typeSimple?: (string) | null;
|
|
2276
|
-
};
|
|
2277
|
-
}> | null;
|
|
2278
|
-
}> | null;
|
|
2279
|
-
actions?: {
|
|
2280
|
-
[key: string]: {
|
|
2281
|
-
uniqueName?: (string) | null;
|
|
2282
|
-
name?: (string) | null;
|
|
2283
|
-
httpMethod?: (string) | null;
|
|
2284
|
-
url?: (string) | null;
|
|
2285
|
-
supportedVersions?: Array<(string)> | null;
|
|
2286
|
-
parametersOnMethod?: Array<{
|
|
2287
|
-
name?: (string) | null;
|
|
2288
|
-
typeAsString?: (string) | null;
|
|
2289
|
-
type?: (string) | null;
|
|
2290
|
-
typeSimple?: (string) | null;
|
|
2291
|
-
isOptional?: boolean;
|
|
2292
|
-
defaultValue?: unknown;
|
|
2293
|
-
}> | null;
|
|
2294
|
-
parameters?: Array<{
|
|
2295
|
-
nameOnMethod?: (string) | null;
|
|
2296
|
-
name?: (string) | null;
|
|
2297
|
-
jsonName?: (string) | null;
|
|
2298
|
-
type?: (string) | null;
|
|
2299
|
-
typeSimple?: (string) | null;
|
|
2300
|
-
isOptional?: boolean;
|
|
2301
|
-
defaultValue?: unknown;
|
|
2302
|
-
constraintTypes?: Array<(string)> | null;
|
|
2303
|
-
bindingSourceId?: (string) | null;
|
|
2304
|
-
descriptorName?: (string) | null;
|
|
2305
|
-
}> | null;
|
|
2306
|
-
returnValue?: {
|
|
2307
|
-
type?: (string) | null;
|
|
2308
|
-
typeSimple?: (string) | null;
|
|
2309
|
-
};
|
|
2310
|
-
allowAnonymous?: (boolean) | null;
|
|
2311
|
-
implementFrom?: (string) | null;
|
|
2312
|
-
};
|
|
2313
|
-
} | null;
|
|
2314
|
-
};
|
|
2315
|
-
} | null;
|
|
2316
|
-
};
|
|
1202
|
+
[key: string]: Volo_Abp_Http_Modeling_ModuleApiDescriptionModel;
|
|
2317
1203
|
} | null;
|
|
2318
1204
|
types?: {
|
|
2319
|
-
[key: string]:
|
|
2320
|
-
baseType?: (string) | null;
|
|
2321
|
-
isEnum?: boolean;
|
|
2322
|
-
enumNames?: Array<(string)> | null;
|
|
2323
|
-
enumValues?: Array<unknown> | null;
|
|
2324
|
-
genericArguments?: Array<(string)> | null;
|
|
2325
|
-
properties?: Array<{
|
|
2326
|
-
name?: (string) | null;
|
|
2327
|
-
jsonName?: (string) | null;
|
|
2328
|
-
type?: (string) | null;
|
|
2329
|
-
typeSimple?: (string) | null;
|
|
2330
|
-
isRequired?: boolean;
|
|
2331
|
-
minLength?: (number) | null;
|
|
2332
|
-
maxLength?: (number) | null;
|
|
2333
|
-
minimum?: (string) | null;
|
|
2334
|
-
maximum?: (string) | null;
|
|
2335
|
-
regex?: (string) | null;
|
|
2336
|
-
}> | null;
|
|
2337
|
-
};
|
|
1205
|
+
[key: string]: Volo_Abp_Http_Modeling_TypeApiDescriptionModel;
|
|
2338
1206
|
} | null;
|
|
2339
1207
|
};
|
|
2340
1208
|
|
|
@@ -2345,96 +1213,22 @@ export type Volo_Abp_Http_Modeling_ControllerApiDescriptionModel = {
|
|
|
2345
1213
|
isIntegrationService?: boolean;
|
|
2346
1214
|
apiVersion?: (string) | null;
|
|
2347
1215
|
type?: (string) | null;
|
|
2348
|
-
interfaces?: Array<
|
|
2349
|
-
type?: (string) | null;
|
|
2350
|
-
name?: (string) | null;
|
|
2351
|
-
methods?: Array<{
|
|
2352
|
-
name?: (string) | null;
|
|
2353
|
-
parametersOnMethod?: Array<{
|
|
2354
|
-
name?: (string) | null;
|
|
2355
|
-
typeAsString?: (string) | null;
|
|
2356
|
-
type?: (string) | null;
|
|
2357
|
-
typeSimple?: (string) | null;
|
|
2358
|
-
isOptional?: boolean;
|
|
2359
|
-
defaultValue?: unknown;
|
|
2360
|
-
}> | null;
|
|
2361
|
-
returnValue?: {
|
|
2362
|
-
type?: (string) | null;
|
|
2363
|
-
typeSimple?: (string) | null;
|
|
2364
|
-
};
|
|
2365
|
-
}> | null;
|
|
2366
|
-
}> | null;
|
|
1216
|
+
interfaces?: Array<Volo_Abp_Http_Modeling_ControllerInterfaceApiDescriptionModel> | null;
|
|
2367
1217
|
actions?: {
|
|
2368
|
-
[key: string]:
|
|
2369
|
-
uniqueName?: (string) | null;
|
|
2370
|
-
name?: (string) | null;
|
|
2371
|
-
httpMethod?: (string) | null;
|
|
2372
|
-
url?: (string) | null;
|
|
2373
|
-
supportedVersions?: Array<(string)> | null;
|
|
2374
|
-
parametersOnMethod?: Array<{
|
|
2375
|
-
name?: (string) | null;
|
|
2376
|
-
typeAsString?: (string) | null;
|
|
2377
|
-
type?: (string) | null;
|
|
2378
|
-
typeSimple?: (string) | null;
|
|
2379
|
-
isOptional?: boolean;
|
|
2380
|
-
defaultValue?: unknown;
|
|
2381
|
-
}> | null;
|
|
2382
|
-
parameters?: Array<{
|
|
2383
|
-
nameOnMethod?: (string) | null;
|
|
2384
|
-
name?: (string) | null;
|
|
2385
|
-
jsonName?: (string) | null;
|
|
2386
|
-
type?: (string) | null;
|
|
2387
|
-
typeSimple?: (string) | null;
|
|
2388
|
-
isOptional?: boolean;
|
|
2389
|
-
defaultValue?: unknown;
|
|
2390
|
-
constraintTypes?: Array<(string)> | null;
|
|
2391
|
-
bindingSourceId?: (string) | null;
|
|
2392
|
-
descriptorName?: (string) | null;
|
|
2393
|
-
}> | null;
|
|
2394
|
-
returnValue?: {
|
|
2395
|
-
type?: (string) | null;
|
|
2396
|
-
typeSimple?: (string) | null;
|
|
2397
|
-
};
|
|
2398
|
-
allowAnonymous?: (boolean) | null;
|
|
2399
|
-
implementFrom?: (string) | null;
|
|
2400
|
-
};
|
|
1218
|
+
[key: string]: Volo_Abp_Http_Modeling_ActionApiDescriptionModel;
|
|
2401
1219
|
} | null;
|
|
2402
1220
|
};
|
|
2403
1221
|
|
|
2404
1222
|
export type Volo_Abp_Http_Modeling_ControllerInterfaceApiDescriptionModel = {
|
|
2405
1223
|
type?: (string) | null;
|
|
2406
1224
|
name?: (string) | null;
|
|
2407
|
-
methods?: Array<
|
|
2408
|
-
name?: (string) | null;
|
|
2409
|
-
parametersOnMethod?: Array<{
|
|
2410
|
-
name?: (string) | null;
|
|
2411
|
-
typeAsString?: (string) | null;
|
|
2412
|
-
type?: (string) | null;
|
|
2413
|
-
typeSimple?: (string) | null;
|
|
2414
|
-
isOptional?: boolean;
|
|
2415
|
-
defaultValue?: unknown;
|
|
2416
|
-
}> | null;
|
|
2417
|
-
returnValue?: {
|
|
2418
|
-
type?: (string) | null;
|
|
2419
|
-
typeSimple?: (string) | null;
|
|
2420
|
-
};
|
|
2421
|
-
}> | null;
|
|
1225
|
+
methods?: Array<Volo_Abp_Http_Modeling_InterfaceMethodApiDescriptionModel> | null;
|
|
2422
1226
|
};
|
|
2423
1227
|
|
|
2424
1228
|
export type Volo_Abp_Http_Modeling_InterfaceMethodApiDescriptionModel = {
|
|
2425
1229
|
name?: (string) | null;
|
|
2426
|
-
parametersOnMethod?: Array<
|
|
2427
|
-
|
|
2428
|
-
typeAsString?: (string) | null;
|
|
2429
|
-
type?: (string) | null;
|
|
2430
|
-
typeSimple?: (string) | null;
|
|
2431
|
-
isOptional?: boolean;
|
|
2432
|
-
defaultValue?: unknown;
|
|
2433
|
-
}> | null;
|
|
2434
|
-
returnValue?: {
|
|
2435
|
-
type?: (string) | null;
|
|
2436
|
-
typeSimple?: (string) | null;
|
|
2437
|
-
};
|
|
1230
|
+
parametersOnMethod?: Array<Volo_Abp_Http_Modeling_MethodParameterApiDescriptionModel> | null;
|
|
1231
|
+
returnValue?: Volo_Abp_Http_Modeling_ReturnValueApiDescriptionModel;
|
|
2438
1232
|
};
|
|
2439
1233
|
|
|
2440
1234
|
export type Volo_Abp_Http_Modeling_MethodParameterApiDescriptionModel = {
|
|
@@ -2450,68 +1244,7 @@ export type Volo_Abp_Http_Modeling_ModuleApiDescriptionModel = {
|
|
|
2450
1244
|
rootPath?: (string) | null;
|
|
2451
1245
|
remoteServiceName?: (string) | null;
|
|
2452
1246
|
controllers?: {
|
|
2453
|
-
[key: string]:
|
|
2454
|
-
controllerName?: (string) | null;
|
|
2455
|
-
controllerGroupName?: (string) | null;
|
|
2456
|
-
isRemoteService?: boolean;
|
|
2457
|
-
isIntegrationService?: boolean;
|
|
2458
|
-
apiVersion?: (string) | null;
|
|
2459
|
-
type?: (string) | null;
|
|
2460
|
-
interfaces?: Array<{
|
|
2461
|
-
type?: (string) | null;
|
|
2462
|
-
name?: (string) | null;
|
|
2463
|
-
methods?: Array<{
|
|
2464
|
-
name?: (string) | null;
|
|
2465
|
-
parametersOnMethod?: Array<{
|
|
2466
|
-
name?: (string) | null;
|
|
2467
|
-
typeAsString?: (string) | null;
|
|
2468
|
-
type?: (string) | null;
|
|
2469
|
-
typeSimple?: (string) | null;
|
|
2470
|
-
isOptional?: boolean;
|
|
2471
|
-
defaultValue?: unknown;
|
|
2472
|
-
}> | null;
|
|
2473
|
-
returnValue?: {
|
|
2474
|
-
type?: (string) | null;
|
|
2475
|
-
typeSimple?: (string) | null;
|
|
2476
|
-
};
|
|
2477
|
-
}> | null;
|
|
2478
|
-
}> | null;
|
|
2479
|
-
actions?: {
|
|
2480
|
-
[key: string]: {
|
|
2481
|
-
uniqueName?: (string) | null;
|
|
2482
|
-
name?: (string) | null;
|
|
2483
|
-
httpMethod?: (string) | null;
|
|
2484
|
-
url?: (string) | null;
|
|
2485
|
-
supportedVersions?: Array<(string)> | null;
|
|
2486
|
-
parametersOnMethod?: Array<{
|
|
2487
|
-
name?: (string) | null;
|
|
2488
|
-
typeAsString?: (string) | null;
|
|
2489
|
-
type?: (string) | null;
|
|
2490
|
-
typeSimple?: (string) | null;
|
|
2491
|
-
isOptional?: boolean;
|
|
2492
|
-
defaultValue?: unknown;
|
|
2493
|
-
}> | null;
|
|
2494
|
-
parameters?: Array<{
|
|
2495
|
-
nameOnMethod?: (string) | null;
|
|
2496
|
-
name?: (string) | null;
|
|
2497
|
-
jsonName?: (string) | null;
|
|
2498
|
-
type?: (string) | null;
|
|
2499
|
-
typeSimple?: (string) | null;
|
|
2500
|
-
isOptional?: boolean;
|
|
2501
|
-
defaultValue?: unknown;
|
|
2502
|
-
constraintTypes?: Array<(string)> | null;
|
|
2503
|
-
bindingSourceId?: (string) | null;
|
|
2504
|
-
descriptorName?: (string) | null;
|
|
2505
|
-
}> | null;
|
|
2506
|
-
returnValue?: {
|
|
2507
|
-
type?: (string) | null;
|
|
2508
|
-
typeSimple?: (string) | null;
|
|
2509
|
-
};
|
|
2510
|
-
allowAnonymous?: (boolean) | null;
|
|
2511
|
-
implementFrom?: (string) | null;
|
|
2512
|
-
};
|
|
2513
|
-
} | null;
|
|
2514
|
-
};
|
|
1247
|
+
[key: string]: Volo_Abp_Http_Modeling_ControllerApiDescriptionModel;
|
|
2515
1248
|
} | null;
|
|
2516
1249
|
};
|
|
2517
1250
|
|
|
@@ -2552,18 +1285,7 @@ export type Volo_Abp_Http_Modeling_TypeApiDescriptionModel = {
|
|
|
2552
1285
|
enumNames?: Array<(string)> | null;
|
|
2553
1286
|
enumValues?: Array<unknown> | null;
|
|
2554
1287
|
genericArguments?: Array<(string)> | null;
|
|
2555
|
-
properties?: Array<
|
|
2556
|
-
name?: (string) | null;
|
|
2557
|
-
jsonName?: (string) | null;
|
|
2558
|
-
type?: (string) | null;
|
|
2559
|
-
typeSimple?: (string) | null;
|
|
2560
|
-
isRequired?: boolean;
|
|
2561
|
-
minLength?: (number) | null;
|
|
2562
|
-
maxLength?: (number) | null;
|
|
2563
|
-
minimum?: (string) | null;
|
|
2564
|
-
maximum?: (string) | null;
|
|
2565
|
-
regex?: (string) | null;
|
|
2566
|
-
}> | null;
|
|
1288
|
+
properties?: Array<Volo_Abp_Http_Modeling_PropertyApiDescriptionModel> | null;
|
|
2567
1289
|
};
|
|
2568
1290
|
|
|
2569
1291
|
export type Volo_Abp_Http_RemoteServiceErrorInfo = {
|
|
@@ -2573,25 +1295,11 @@ export type Volo_Abp_Http_RemoteServiceErrorInfo = {
|
|
|
2573
1295
|
data?: {
|
|
2574
1296
|
[key: string]: unknown;
|
|
2575
1297
|
} | null;
|
|
2576
|
-
validationErrors?: Array<
|
|
2577
|
-
message?: (string) | null;
|
|
2578
|
-
members?: Array<(string)> | null;
|
|
2579
|
-
}> | null;
|
|
1298
|
+
validationErrors?: Array<Volo_Abp_Http_RemoteServiceValidationErrorInfo> | null;
|
|
2580
1299
|
};
|
|
2581
1300
|
|
|
2582
1301
|
export type Volo_Abp_Http_RemoteServiceErrorResponse = {
|
|
2583
|
-
error?:
|
|
2584
|
-
code?: (string) | null;
|
|
2585
|
-
message?: (string) | null;
|
|
2586
|
-
details?: (string) | null;
|
|
2587
|
-
data?: {
|
|
2588
|
-
[key: string]: unknown;
|
|
2589
|
-
} | null;
|
|
2590
|
-
validationErrors?: Array<{
|
|
2591
|
-
message?: (string) | null;
|
|
2592
|
-
members?: Array<(string)> | null;
|
|
2593
|
-
}> | null;
|
|
2594
|
-
};
|
|
1302
|
+
error?: Volo_Abp_Http_RemoteServiceErrorInfo;
|
|
2595
1303
|
};
|
|
2596
1304
|
|
|
2597
1305
|
export type Volo_Abp_Http_RemoteServiceValidationErrorInfo = {
|
|
@@ -2615,440 +1323,33 @@ export type GetApiAbpApiDefinitionData = {
|
|
|
2615
1323
|
includeTypes?: boolean;
|
|
2616
1324
|
};
|
|
2617
1325
|
|
|
2618
|
-
export type GetApiAbpApiDefinitionResponse = (
|
|
2619
|
-
modules?: {
|
|
2620
|
-
[key: string]: {
|
|
2621
|
-
rootPath?: (string) | null;
|
|
2622
|
-
remoteServiceName?: (string) | null;
|
|
2623
|
-
controllers?: {
|
|
2624
|
-
[key: string]: {
|
|
2625
|
-
controllerName?: (string) | null;
|
|
2626
|
-
controllerGroupName?: (string) | null;
|
|
2627
|
-
isRemoteService?: boolean;
|
|
2628
|
-
isIntegrationService?: boolean;
|
|
2629
|
-
apiVersion?: (string) | null;
|
|
2630
|
-
type?: (string) | null;
|
|
2631
|
-
interfaces?: Array<{
|
|
2632
|
-
type?: (string) | null;
|
|
2633
|
-
name?: (string) | null;
|
|
2634
|
-
methods?: Array<{
|
|
2635
|
-
name?: (string) | null;
|
|
2636
|
-
parametersOnMethod?: Array<{
|
|
2637
|
-
name?: (string) | null;
|
|
2638
|
-
typeAsString?: (string) | null;
|
|
2639
|
-
type?: (string) | null;
|
|
2640
|
-
typeSimple?: (string) | null;
|
|
2641
|
-
isOptional?: boolean;
|
|
2642
|
-
defaultValue?: unknown;
|
|
2643
|
-
}> | null;
|
|
2644
|
-
returnValue?: {
|
|
2645
|
-
type?: (string) | null;
|
|
2646
|
-
typeSimple?: (string) | null;
|
|
2647
|
-
};
|
|
2648
|
-
}> | null;
|
|
2649
|
-
}> | null;
|
|
2650
|
-
actions?: {
|
|
2651
|
-
[key: string]: {
|
|
2652
|
-
uniqueName?: (string) | null;
|
|
2653
|
-
name?: (string) | null;
|
|
2654
|
-
httpMethod?: (string) | null;
|
|
2655
|
-
url?: (string) | null;
|
|
2656
|
-
supportedVersions?: Array<(string)> | null;
|
|
2657
|
-
parametersOnMethod?: Array<{
|
|
2658
|
-
name?: (string) | null;
|
|
2659
|
-
typeAsString?: (string) | null;
|
|
2660
|
-
type?: (string) | null;
|
|
2661
|
-
typeSimple?: (string) | null;
|
|
2662
|
-
isOptional?: boolean;
|
|
2663
|
-
defaultValue?: unknown;
|
|
2664
|
-
}> | null;
|
|
2665
|
-
parameters?: Array<{
|
|
2666
|
-
nameOnMethod?: (string) | null;
|
|
2667
|
-
name?: (string) | null;
|
|
2668
|
-
jsonName?: (string) | null;
|
|
2669
|
-
type?: (string) | null;
|
|
2670
|
-
typeSimple?: (string) | null;
|
|
2671
|
-
isOptional?: boolean;
|
|
2672
|
-
defaultValue?: unknown;
|
|
2673
|
-
constraintTypes?: Array<(string)> | null;
|
|
2674
|
-
bindingSourceId?: (string) | null;
|
|
2675
|
-
descriptorName?: (string) | null;
|
|
2676
|
-
}> | null;
|
|
2677
|
-
returnValue?: {
|
|
2678
|
-
type?: (string) | null;
|
|
2679
|
-
typeSimple?: (string) | null;
|
|
2680
|
-
};
|
|
2681
|
-
allowAnonymous?: (boolean) | null;
|
|
2682
|
-
implementFrom?: (string) | null;
|
|
2683
|
-
};
|
|
2684
|
-
} | null;
|
|
2685
|
-
};
|
|
2686
|
-
} | null;
|
|
2687
|
-
};
|
|
2688
|
-
} | null;
|
|
2689
|
-
types?: {
|
|
2690
|
-
[key: string]: {
|
|
2691
|
-
baseType?: (string) | null;
|
|
2692
|
-
isEnum?: boolean;
|
|
2693
|
-
enumNames?: Array<(string)> | null;
|
|
2694
|
-
enumValues?: Array<unknown> | null;
|
|
2695
|
-
genericArguments?: Array<(string)> | null;
|
|
2696
|
-
properties?: Array<{
|
|
2697
|
-
name?: (string) | null;
|
|
2698
|
-
jsonName?: (string) | null;
|
|
2699
|
-
type?: (string) | null;
|
|
2700
|
-
typeSimple?: (string) | null;
|
|
2701
|
-
isRequired?: boolean;
|
|
2702
|
-
minLength?: (number) | null;
|
|
2703
|
-
maxLength?: (number) | null;
|
|
2704
|
-
minimum?: (string) | null;
|
|
2705
|
-
maximum?: (string) | null;
|
|
2706
|
-
regex?: (string) | null;
|
|
2707
|
-
}> | null;
|
|
2708
|
-
};
|
|
2709
|
-
} | null;
|
|
2710
|
-
});
|
|
1326
|
+
export type GetApiAbpApiDefinitionResponse = (Volo_Abp_Http_Modeling_ApplicationApiDescriptionModel);
|
|
2711
1327
|
|
|
2712
1328
|
export type GetApiAbpApplicationConfigurationData = {
|
|
2713
1329
|
includeLocalizationResources?: boolean;
|
|
2714
1330
|
};
|
|
2715
1331
|
|
|
2716
|
-
export type GetApiAbpApplicationConfigurationResponse = (
|
|
2717
|
-
localization?: {
|
|
2718
|
-
values?: {
|
|
2719
|
-
[key: string]: {
|
|
2720
|
-
[key: string]: (string);
|
|
2721
|
-
};
|
|
2722
|
-
} | null;
|
|
2723
|
-
resources?: {
|
|
2724
|
-
[key: string]: {
|
|
2725
|
-
texts?: {
|
|
2726
|
-
[key: string]: (string);
|
|
2727
|
-
} | null;
|
|
2728
|
-
baseResources?: Array<(string)> | null;
|
|
2729
|
-
};
|
|
2730
|
-
} | null;
|
|
2731
|
-
languages?: Array<{
|
|
2732
|
-
cultureName?: (string) | null;
|
|
2733
|
-
uiCultureName?: (string) | null;
|
|
2734
|
-
displayName?: (string) | null;
|
|
2735
|
-
readonly twoLetterISOLanguageName?: (string) | null;
|
|
2736
|
-
}> | null;
|
|
2737
|
-
currentCulture?: {
|
|
2738
|
-
displayName?: (string) | null;
|
|
2739
|
-
englishName?: (string) | null;
|
|
2740
|
-
threeLetterIsoLanguageName?: (string) | null;
|
|
2741
|
-
twoLetterIsoLanguageName?: (string) | null;
|
|
2742
|
-
isRightToLeft?: boolean;
|
|
2743
|
-
cultureName?: (string) | null;
|
|
2744
|
-
name?: (string) | null;
|
|
2745
|
-
nativeName?: (string) | null;
|
|
2746
|
-
dateTimeFormat?: {
|
|
2747
|
-
calendarAlgorithmType?: (string) | null;
|
|
2748
|
-
dateTimeFormatLong?: (string) | null;
|
|
2749
|
-
shortDatePattern?: (string) | null;
|
|
2750
|
-
fullDateTimePattern?: (string) | null;
|
|
2751
|
-
dateSeparator?: (string) | null;
|
|
2752
|
-
shortTimePattern?: (string) | null;
|
|
2753
|
-
longTimePattern?: (string) | null;
|
|
2754
|
-
};
|
|
2755
|
-
};
|
|
2756
|
-
defaultResourceName?: (string) | null;
|
|
2757
|
-
languagesMap?: {
|
|
2758
|
-
[key: string]: Array<{
|
|
2759
|
-
name?: (string) | null;
|
|
2760
|
-
value?: (string) | null;
|
|
2761
|
-
}>;
|
|
2762
|
-
} | null;
|
|
2763
|
-
languageFilesMap?: {
|
|
2764
|
-
[key: string]: Array<{
|
|
2765
|
-
name?: (string) | null;
|
|
2766
|
-
value?: (string) | null;
|
|
2767
|
-
}>;
|
|
2768
|
-
} | null;
|
|
2769
|
-
};
|
|
2770
|
-
auth?: {
|
|
2771
|
-
grantedPolicies?: {
|
|
2772
|
-
[key: string]: (boolean);
|
|
2773
|
-
} | null;
|
|
2774
|
-
};
|
|
2775
|
-
setting?: {
|
|
2776
|
-
values?: {
|
|
2777
|
-
[key: string]: ((string) | null);
|
|
2778
|
-
} | null;
|
|
2779
|
-
};
|
|
2780
|
-
currentUser?: {
|
|
2781
|
-
isAuthenticated?: boolean;
|
|
2782
|
-
id?: (string) | null;
|
|
2783
|
-
tenantId?: (string) | null;
|
|
2784
|
-
impersonatorUserId?: (string) | null;
|
|
2785
|
-
impersonatorTenantId?: (string) | null;
|
|
2786
|
-
impersonatorUserName?: (string) | null;
|
|
2787
|
-
impersonatorTenantName?: (string) | null;
|
|
2788
|
-
userName?: (string) | null;
|
|
2789
|
-
name?: (string) | null;
|
|
2790
|
-
surName?: (string) | null;
|
|
2791
|
-
email?: (string) | null;
|
|
2792
|
-
emailVerified?: boolean;
|
|
2793
|
-
phoneNumber?: (string) | null;
|
|
2794
|
-
phoneNumberVerified?: boolean;
|
|
2795
|
-
roles?: Array<(string)> | null;
|
|
2796
|
-
sessionId?: (string) | null;
|
|
2797
|
-
};
|
|
2798
|
-
features?: {
|
|
2799
|
-
values?: {
|
|
2800
|
-
[key: string]: ((string) | null);
|
|
2801
|
-
} | null;
|
|
2802
|
-
};
|
|
2803
|
-
globalFeatures?: {
|
|
2804
|
-
enabledFeatures?: Array<(string)> | null;
|
|
2805
|
-
};
|
|
2806
|
-
multiTenancy?: {
|
|
2807
|
-
isEnabled?: boolean;
|
|
2808
|
-
};
|
|
2809
|
-
currentTenant?: {
|
|
2810
|
-
id?: (string) | null;
|
|
2811
|
-
name?: (string) | null;
|
|
2812
|
-
isAvailable?: boolean;
|
|
2813
|
-
};
|
|
2814
|
-
timing?: {
|
|
2815
|
-
timeZone?: {
|
|
2816
|
-
iana?: {
|
|
2817
|
-
timeZoneName?: (string) | null;
|
|
2818
|
-
};
|
|
2819
|
-
windows?: {
|
|
2820
|
-
timeZoneId?: (string) | null;
|
|
2821
|
-
};
|
|
2822
|
-
};
|
|
2823
|
-
};
|
|
2824
|
-
clock?: {
|
|
2825
|
-
kind?: (string) | null;
|
|
2826
|
-
};
|
|
2827
|
-
objectExtensions?: {
|
|
2828
|
-
modules?: {
|
|
2829
|
-
[key: string]: {
|
|
2830
|
-
entities?: {
|
|
2831
|
-
[key: string]: {
|
|
2832
|
-
properties?: {
|
|
2833
|
-
[key: string]: {
|
|
2834
|
-
type?: (string) | null;
|
|
2835
|
-
typeSimple?: (string) | null;
|
|
2836
|
-
displayName?: {
|
|
2837
|
-
name?: (string) | null;
|
|
2838
|
-
resource?: (string) | null;
|
|
2839
|
-
};
|
|
2840
|
-
api?: {
|
|
2841
|
-
onGet?: {
|
|
2842
|
-
isAvailable?: boolean;
|
|
2843
|
-
};
|
|
2844
|
-
onCreate?: {
|
|
2845
|
-
isAvailable?: boolean;
|
|
2846
|
-
};
|
|
2847
|
-
onUpdate?: {
|
|
2848
|
-
isAvailable?: boolean;
|
|
2849
|
-
};
|
|
2850
|
-
};
|
|
2851
|
-
ui?: {
|
|
2852
|
-
onTable?: {
|
|
2853
|
-
isVisible?: boolean;
|
|
2854
|
-
};
|
|
2855
|
-
onCreateForm?: {
|
|
2856
|
-
isVisible?: boolean;
|
|
2857
|
-
};
|
|
2858
|
-
onEditForm?: {
|
|
2859
|
-
isVisible?: boolean;
|
|
2860
|
-
};
|
|
2861
|
-
lookup?: {
|
|
2862
|
-
url?: (string) | null;
|
|
2863
|
-
resultListPropertyName?: (string) | null;
|
|
2864
|
-
displayPropertyName?: (string) | null;
|
|
2865
|
-
valuePropertyName?: (string) | null;
|
|
2866
|
-
filterParamName?: (string) | null;
|
|
2867
|
-
};
|
|
2868
|
-
};
|
|
2869
|
-
attributes?: Array<{
|
|
2870
|
-
typeSimple?: (string) | null;
|
|
2871
|
-
config?: {
|
|
2872
|
-
[key: string]: unknown;
|
|
2873
|
-
} | null;
|
|
2874
|
-
}> | null;
|
|
2875
|
-
configuration?: {
|
|
2876
|
-
[key: string]: unknown;
|
|
2877
|
-
} | null;
|
|
2878
|
-
defaultValue?: unknown;
|
|
2879
|
-
};
|
|
2880
|
-
} | null;
|
|
2881
|
-
configuration?: {
|
|
2882
|
-
[key: string]: unknown;
|
|
2883
|
-
} | null;
|
|
2884
|
-
};
|
|
2885
|
-
} | null;
|
|
2886
|
-
configuration?: {
|
|
2887
|
-
[key: string]: unknown;
|
|
2888
|
-
} | null;
|
|
2889
|
-
};
|
|
2890
|
-
} | null;
|
|
2891
|
-
enums?: {
|
|
2892
|
-
[key: string]: {
|
|
2893
|
-
fields?: Array<{
|
|
2894
|
-
name?: (string) | null;
|
|
2895
|
-
value?: unknown;
|
|
2896
|
-
}> | null;
|
|
2897
|
-
localizationResource?: (string) | null;
|
|
2898
|
-
};
|
|
2899
|
-
} | null;
|
|
2900
|
-
};
|
|
2901
|
-
extraProperties?: {
|
|
2902
|
-
[key: string]: unknown;
|
|
2903
|
-
} | null;
|
|
2904
|
-
});
|
|
1332
|
+
export type GetApiAbpApplicationConfigurationResponse = (Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationConfigurationDto);
|
|
2905
1333
|
|
|
2906
1334
|
export type GetApiAbpApplicationLocalizationData = {
|
|
2907
1335
|
cultureName: string;
|
|
2908
1336
|
onlyDynamics?: boolean;
|
|
2909
1337
|
};
|
|
2910
1338
|
|
|
2911
|
-
export type GetApiAbpApplicationLocalizationResponse = (
|
|
2912
|
-
resources?: {
|
|
2913
|
-
[key: string]: {
|
|
2914
|
-
texts?: {
|
|
2915
|
-
[key: string]: (string);
|
|
2916
|
-
} | null;
|
|
2917
|
-
baseResources?: Array<(string)> | null;
|
|
2918
|
-
};
|
|
2919
|
-
} | null;
|
|
2920
|
-
currentCulture?: {
|
|
2921
|
-
displayName?: (string) | null;
|
|
2922
|
-
englishName?: (string) | null;
|
|
2923
|
-
threeLetterIsoLanguageName?: (string) | null;
|
|
2924
|
-
twoLetterIsoLanguageName?: (string) | null;
|
|
2925
|
-
isRightToLeft?: boolean;
|
|
2926
|
-
cultureName?: (string) | null;
|
|
2927
|
-
name?: (string) | null;
|
|
2928
|
-
nativeName?: (string) | null;
|
|
2929
|
-
dateTimeFormat?: {
|
|
2930
|
-
calendarAlgorithmType?: (string) | null;
|
|
2931
|
-
dateTimeFormatLong?: (string) | null;
|
|
2932
|
-
shortDatePattern?: (string) | null;
|
|
2933
|
-
fullDateTimePattern?: (string) | null;
|
|
2934
|
-
dateSeparator?: (string) | null;
|
|
2935
|
-
shortTimePattern?: (string) | null;
|
|
2936
|
-
longTimePattern?: (string) | null;
|
|
2937
|
-
};
|
|
2938
|
-
};
|
|
2939
|
-
});
|
|
1339
|
+
export type GetApiAbpApplicationLocalizationResponse = (Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationDto);
|
|
2940
1340
|
|
|
2941
1341
|
export type GetApiContractServiceMerchantsContractsContractHeadersByIdData = {
|
|
2942
1342
|
id: string;
|
|
2943
1343
|
};
|
|
2944
1344
|
|
|
2945
|
-
export type GetApiContractServiceMerchantsContractsContractHeadersByIdResponse = (
|
|
2946
|
-
id: string;
|
|
2947
|
-
creationTime?: string;
|
|
2948
|
-
creatorId?: (string) | null;
|
|
2949
|
-
lastModificationTime?: (string) | null;
|
|
2950
|
-
lastModifierId?: (string) | null;
|
|
2951
|
-
isDeleted?: boolean;
|
|
2952
|
-
deleterId?: (string) | null;
|
|
2953
|
-
deletionTime?: (string) | null;
|
|
2954
|
-
name: string;
|
|
2955
|
-
contractTypeIdentifier: string;
|
|
2956
|
-
webSite?: (string) | null;
|
|
2957
|
-
merchantClassification: 'Excellent' | 'Good' | 'Satisfactory' | 'Low';
|
|
2958
|
-
status?: 'None' | 'Registered' | 'DeRegistrationRequestedByUniRefund' | 'DeRegistrationDataRequestedByAuthorities' | 'SuspendedInternallyAfterDeRegistrationDecline' | 'DeRegisteredAtAuthorities' | 'SuspendedInternallyOnly' | 'SuspensionRequestedByUniRefund' | 'SuspensionRequestedByAuthorities' | 'UnSuspensionRequestedByUniRefund' | 'UnSuspensionRequestedByAuthorities' | 'SuspendedAtAuthorities' | 'UnSuspensionForFurtherDeRegistrationInvitedByAuthorities' | 'UnSuspensionForFurtherDeRegistrationRequestedByUniRefund' | 'Terminated';
|
|
2959
|
-
merchantBasicInformationDto?: {
|
|
2960
|
-
id?: string;
|
|
2961
|
-
name?: (string) | null;
|
|
2962
|
-
taxOffice?: {
|
|
2963
|
-
id: string;
|
|
2964
|
-
name: string;
|
|
2965
|
-
};
|
|
2966
|
-
numberOfStores?: number;
|
|
2967
|
-
accountManagers?: Array<{
|
|
2968
|
-
id?: string;
|
|
2969
|
-
name?: (string) | null;
|
|
2970
|
-
}> | null;
|
|
2971
|
-
};
|
|
2972
|
-
isDraft?: boolean;
|
|
2973
|
-
isActive?: boolean;
|
|
2974
|
-
validFrom: string;
|
|
2975
|
-
validTo: string;
|
|
2976
|
-
contractType: 'Merchant' | 'RefundPoint';
|
|
2977
|
-
addressCommonDataId: string;
|
|
2978
|
-
refundTableHeaders: Array<{
|
|
2979
|
-
name: string;
|
|
2980
|
-
id: string;
|
|
2981
|
-
validFrom: string;
|
|
2982
|
-
validTo?: (string) | null;
|
|
2983
|
-
isDefault: boolean;
|
|
2984
|
-
}>;
|
|
2985
|
-
});
|
|
1345
|
+
export type GetApiContractServiceMerchantsContractsContractHeadersByIdResponse = (UniRefund_ContractService_ContractsForMerchant_ContractHeaders_ContractHeaderDetailForMerchantDto);
|
|
2986
1346
|
|
|
2987
1347
|
export type PutApiContractServiceMerchantsContractsContractHeadersByIdData = {
|
|
2988
1348
|
id: string;
|
|
2989
|
-
requestBody?:
|
|
2990
|
-
|
|
2991
|
-
|
|
2992
|
-
|
|
2993
|
-
webSite?: (string) | null;
|
|
2994
|
-
merchantClassification: 'Excellent' | 'Good' | 'Satisfactory' | 'Low';
|
|
2995
|
-
status: 'None' | 'Registered' | 'DeRegistrationRequestedByUniRefund' | 'DeRegistrationDataRequestedByAuthorities' | 'SuspendedInternallyAfterDeRegistrationDecline' | 'DeRegisteredAtAuthorities' | 'SuspendedInternallyOnly' | 'SuspensionRequestedByUniRefund' | 'SuspensionRequestedByAuthorities' | 'UnSuspensionRequestedByUniRefund' | 'UnSuspensionRequestedByAuthorities' | 'SuspendedAtAuthorities' | 'UnSuspensionForFurtherDeRegistrationInvitedByAuthorities' | 'UnSuspensionForFurtherDeRegistrationRequestedByUniRefund' | 'Terminated';
|
|
2996
|
-
validFrom: string;
|
|
2997
|
-
validTo: string;
|
|
2998
|
-
addressCommonDataId: string;
|
|
2999
|
-
refundTableHeaders?: Array<{
|
|
3000
|
-
readonly extraProperties?: {
|
|
3001
|
-
[key: string]: unknown;
|
|
3002
|
-
} | null;
|
|
3003
|
-
refundTableHeaderId: string;
|
|
3004
|
-
validFrom: string;
|
|
3005
|
-
validTo: string;
|
|
3006
|
-
isDefault?: boolean;
|
|
3007
|
-
}> | null;
|
|
3008
|
-
};
|
|
3009
|
-
};
|
|
3010
|
-
|
|
3011
|
-
export type PutApiContractServiceMerchantsContractsContractHeadersByIdResponse = ({
|
|
3012
|
-
id: string;
|
|
3013
|
-
creationTime?: string;
|
|
3014
|
-
creatorId?: (string) | null;
|
|
3015
|
-
lastModificationTime?: (string) | null;
|
|
3016
|
-
lastModifierId?: (string) | null;
|
|
3017
|
-
isDeleted?: boolean;
|
|
3018
|
-
deleterId?: (string) | null;
|
|
3019
|
-
deletionTime?: (string) | null;
|
|
3020
|
-
name: string;
|
|
3021
|
-
contractTypeIdentifier: string;
|
|
3022
|
-
webSite?: (string) | null;
|
|
3023
|
-
merchantClassification: 'Excellent' | 'Good' | 'Satisfactory' | 'Low';
|
|
3024
|
-
status?: 'None' | 'Registered' | 'DeRegistrationRequestedByUniRefund' | 'DeRegistrationDataRequestedByAuthorities' | 'SuspendedInternallyAfterDeRegistrationDecline' | 'DeRegisteredAtAuthorities' | 'SuspendedInternallyOnly' | 'SuspensionRequestedByUniRefund' | 'SuspensionRequestedByAuthorities' | 'UnSuspensionRequestedByUniRefund' | 'UnSuspensionRequestedByAuthorities' | 'SuspendedAtAuthorities' | 'UnSuspensionForFurtherDeRegistrationInvitedByAuthorities' | 'UnSuspensionForFurtherDeRegistrationRequestedByUniRefund' | 'Terminated';
|
|
3025
|
-
merchantBasicInformationDto?: {
|
|
3026
|
-
id?: string;
|
|
3027
|
-
name?: (string) | null;
|
|
3028
|
-
taxOffice?: {
|
|
3029
|
-
id: string;
|
|
3030
|
-
name: string;
|
|
3031
|
-
};
|
|
3032
|
-
numberOfStores?: number;
|
|
3033
|
-
accountManagers?: Array<{
|
|
3034
|
-
id?: string;
|
|
3035
|
-
name?: (string) | null;
|
|
3036
|
-
}> | null;
|
|
3037
|
-
};
|
|
3038
|
-
isDraft?: boolean;
|
|
3039
|
-
isActive?: boolean;
|
|
3040
|
-
validFrom: string;
|
|
3041
|
-
validTo: string;
|
|
3042
|
-
contractType: 'Merchant' | 'RefundPoint';
|
|
3043
|
-
addressCommonDataId: string;
|
|
3044
|
-
refundTableHeaders: Array<{
|
|
3045
|
-
name: string;
|
|
3046
|
-
id: string;
|
|
3047
|
-
validFrom: string;
|
|
3048
|
-
validTo?: (string) | null;
|
|
3049
|
-
isDefault: boolean;
|
|
3050
|
-
}>;
|
|
3051
|
-
});
|
|
1349
|
+
requestBody?: UniRefund_ContractService_ContractsForMerchant_ContractHeaders_ContractHeaderForMerchantUpdateDto;
|
|
1350
|
+
};
|
|
1351
|
+
|
|
1352
|
+
export type PutApiContractServiceMerchantsContractsContractHeadersByIdResponse = (UniRefund_ContractService_ContractsForMerchant_ContractHeaders_ContractHeaderDetailForMerchantDto);
|
|
3052
1353
|
|
|
3053
1354
|
export type DeleteApiContractServiceMerchantsContractsContractHeadersByIdData = {
|
|
3054
1355
|
id: string;
|
|
@@ -3063,28 +1364,7 @@ export type GetApiContractServiceMerchantsContractsContractHeadersData = {
|
|
|
3063
1364
|
sorting?: string;
|
|
3064
1365
|
};
|
|
3065
1366
|
|
|
3066
|
-
export type GetApiContractServiceMerchantsContractsContractHeadersResponse = (
|
|
3067
|
-
items?: Array<{
|
|
3068
|
-
id: string;
|
|
3069
|
-
creationTime?: string;
|
|
3070
|
-
creatorId?: (string) | null;
|
|
3071
|
-
lastModificationTime?: (string) | null;
|
|
3072
|
-
lastModifierId?: (string) | null;
|
|
3073
|
-
isDeleted?: boolean;
|
|
3074
|
-
deleterId?: (string) | null;
|
|
3075
|
-
deletionTime?: (string) | null;
|
|
3076
|
-
name: string;
|
|
3077
|
-
contractTypeIdentifier: string;
|
|
3078
|
-
isDraft?: boolean;
|
|
3079
|
-
isActive?: boolean;
|
|
3080
|
-
status?: 'None' | 'Registered' | 'DeRegistrationRequestedByUniRefund' | 'DeRegistrationDataRequestedByAuthorities' | 'SuspendedInternallyAfterDeRegistrationDecline' | 'DeRegisteredAtAuthorities' | 'SuspendedInternallyOnly' | 'SuspensionRequestedByUniRefund' | 'SuspensionRequestedByAuthorities' | 'UnSuspensionRequestedByUniRefund' | 'UnSuspensionRequestedByAuthorities' | 'SuspendedAtAuthorities' | 'UnSuspensionForFurtherDeRegistrationInvitedByAuthorities' | 'UnSuspensionForFurtherDeRegistrationRequestedByUniRefund' | 'Terminated';
|
|
3081
|
-
contractType: 'Merchant' | 'RefundPoint';
|
|
3082
|
-
validFrom: string;
|
|
3083
|
-
validTo: string;
|
|
3084
|
-
addressCommonDataId: string;
|
|
3085
|
-
}> | null;
|
|
3086
|
-
totalCount?: number;
|
|
3087
|
-
});
|
|
1367
|
+
export type GetApiContractServiceMerchantsContractsContractHeadersResponse = (PagedResultDto_ContractHeaderForMerchantDto);
|
|
3088
1368
|
|
|
3089
1369
|
export type GetApiContractServiceMerchantsByIdContractsContractHeadersData = {
|
|
3090
1370
|
id: string;
|
|
@@ -3094,115 +1374,14 @@ export type GetApiContractServiceMerchantsByIdContractsContractHeadersData = {
|
|
|
3094
1374
|
sorting?: string;
|
|
3095
1375
|
};
|
|
3096
1376
|
|
|
3097
|
-
export type GetApiContractServiceMerchantsByIdContractsContractHeadersResponse = (
|
|
3098
|
-
items?: Array<{
|
|
3099
|
-
id: string;
|
|
3100
|
-
creationTime?: string;
|
|
3101
|
-
creatorId?: (string) | null;
|
|
3102
|
-
lastModificationTime?: (string) | null;
|
|
3103
|
-
lastModifierId?: (string) | null;
|
|
3104
|
-
isDeleted?: boolean;
|
|
3105
|
-
deleterId?: (string) | null;
|
|
3106
|
-
deletionTime?: (string) | null;
|
|
3107
|
-
name: string;
|
|
3108
|
-
contractTypeIdentifier: string;
|
|
3109
|
-
webSite?: (string) | null;
|
|
3110
|
-
merchantClassification: 'Excellent' | 'Good' | 'Satisfactory' | 'Low';
|
|
3111
|
-
status?: 'None' | 'Registered' | 'DeRegistrationRequestedByUniRefund' | 'DeRegistrationDataRequestedByAuthorities' | 'SuspendedInternallyAfterDeRegistrationDecline' | 'DeRegisteredAtAuthorities' | 'SuspendedInternallyOnly' | 'SuspensionRequestedByUniRefund' | 'SuspensionRequestedByAuthorities' | 'UnSuspensionRequestedByUniRefund' | 'UnSuspensionRequestedByAuthorities' | 'SuspendedAtAuthorities' | 'UnSuspensionForFurtherDeRegistrationInvitedByAuthorities' | 'UnSuspensionForFurtherDeRegistrationRequestedByUniRefund' | 'Terminated';
|
|
3112
|
-
merchantBasicInformationDto?: {
|
|
3113
|
-
id?: string;
|
|
3114
|
-
name?: (string) | null;
|
|
3115
|
-
taxOffice?: {
|
|
3116
|
-
id: string;
|
|
3117
|
-
name: string;
|
|
3118
|
-
};
|
|
3119
|
-
numberOfStores?: number;
|
|
3120
|
-
accountManagers?: Array<{
|
|
3121
|
-
id?: string;
|
|
3122
|
-
name?: (string) | null;
|
|
3123
|
-
}> | null;
|
|
3124
|
-
};
|
|
3125
|
-
isDraft?: boolean;
|
|
3126
|
-
isActive?: boolean;
|
|
3127
|
-
validFrom: string;
|
|
3128
|
-
validTo: string;
|
|
3129
|
-
contractType: 'Merchant' | 'RefundPoint';
|
|
3130
|
-
addressCommonDataId: string;
|
|
3131
|
-
refundTableHeaders: Array<{
|
|
3132
|
-
name: string;
|
|
3133
|
-
id: string;
|
|
3134
|
-
validFrom: string;
|
|
3135
|
-
validTo?: (string) | null;
|
|
3136
|
-
isDefault: boolean;
|
|
3137
|
-
}>;
|
|
3138
|
-
}> | null;
|
|
3139
|
-
totalCount?: number;
|
|
3140
|
-
});
|
|
1377
|
+
export type GetApiContractServiceMerchantsByIdContractsContractHeadersResponse = (PagedResultDto_ContractHeaderDetailForMerchantDto);
|
|
3141
1378
|
|
|
3142
1379
|
export type PostApiContractServiceMerchantsByIdContractsContractHeadersData = {
|
|
3143
1380
|
id: string;
|
|
3144
|
-
requestBody?:
|
|
3145
|
-
|
|
3146
|
-
|
|
3147
|
-
|
|
3148
|
-
webSite?: (string) | null;
|
|
3149
|
-
merchantClassification: 'Excellent' | 'Good' | 'Satisfactory' | 'Low';
|
|
3150
|
-
validFrom: string;
|
|
3151
|
-
validTo: string;
|
|
3152
|
-
addressCommonDataId: string;
|
|
3153
|
-
refundTableHeaders: Array<{
|
|
3154
|
-
readonly extraProperties?: {
|
|
3155
|
-
[key: string]: unknown;
|
|
3156
|
-
} | null;
|
|
3157
|
-
refundTableHeaderId: string;
|
|
3158
|
-
validFrom: string;
|
|
3159
|
-
validTo: string;
|
|
3160
|
-
isDefault?: boolean;
|
|
3161
|
-
}>;
|
|
3162
|
-
};
|
|
3163
|
-
};
|
|
3164
|
-
|
|
3165
|
-
export type PostApiContractServiceMerchantsByIdContractsContractHeadersResponse = ({
|
|
3166
|
-
id: string;
|
|
3167
|
-
creationTime?: string;
|
|
3168
|
-
creatorId?: (string) | null;
|
|
3169
|
-
lastModificationTime?: (string) | null;
|
|
3170
|
-
lastModifierId?: (string) | null;
|
|
3171
|
-
isDeleted?: boolean;
|
|
3172
|
-
deleterId?: (string) | null;
|
|
3173
|
-
deletionTime?: (string) | null;
|
|
3174
|
-
name: string;
|
|
3175
|
-
contractTypeIdentifier: string;
|
|
3176
|
-
webSite?: (string) | null;
|
|
3177
|
-
merchantClassification: 'Excellent' | 'Good' | 'Satisfactory' | 'Low';
|
|
3178
|
-
status?: 'None' | 'Registered' | 'DeRegistrationRequestedByUniRefund' | 'DeRegistrationDataRequestedByAuthorities' | 'SuspendedInternallyAfterDeRegistrationDecline' | 'DeRegisteredAtAuthorities' | 'SuspendedInternallyOnly' | 'SuspensionRequestedByUniRefund' | 'SuspensionRequestedByAuthorities' | 'UnSuspensionRequestedByUniRefund' | 'UnSuspensionRequestedByAuthorities' | 'SuspendedAtAuthorities' | 'UnSuspensionForFurtherDeRegistrationInvitedByAuthorities' | 'UnSuspensionForFurtherDeRegistrationRequestedByUniRefund' | 'Terminated';
|
|
3179
|
-
merchantBasicInformationDto?: {
|
|
3180
|
-
id?: string;
|
|
3181
|
-
name?: (string) | null;
|
|
3182
|
-
taxOffice?: {
|
|
3183
|
-
id: string;
|
|
3184
|
-
name: string;
|
|
3185
|
-
};
|
|
3186
|
-
numberOfStores?: number;
|
|
3187
|
-
accountManagers?: Array<{
|
|
3188
|
-
id?: string;
|
|
3189
|
-
name?: (string) | null;
|
|
3190
|
-
}> | null;
|
|
3191
|
-
};
|
|
3192
|
-
isDraft?: boolean;
|
|
3193
|
-
isActive?: boolean;
|
|
3194
|
-
validFrom: string;
|
|
3195
|
-
validTo: string;
|
|
3196
|
-
contractType: 'Merchant' | 'RefundPoint';
|
|
3197
|
-
addressCommonDataId: string;
|
|
3198
|
-
refundTableHeaders: Array<{
|
|
3199
|
-
name: string;
|
|
3200
|
-
id: string;
|
|
3201
|
-
validFrom: string;
|
|
3202
|
-
validTo?: (string) | null;
|
|
3203
|
-
isDefault: boolean;
|
|
3204
|
-
}>;
|
|
3205
|
-
});
|
|
1381
|
+
requestBody?: UniRefund_ContractService_ContractsForMerchant_ContractHeaders_ContractHeaderForMerchantCreateDto;
|
|
1382
|
+
};
|
|
1383
|
+
|
|
1384
|
+
export type PostApiContractServiceMerchantsByIdContractsContractHeadersResponse = (UniRefund_ContractService_ContractsForMerchant_ContractHeaders_ContractHeaderDetailForMerchantDto);
|
|
3206
1385
|
|
|
3207
1386
|
export type PostApiContractServiceMerchantsContractsContractHeadersByIdValidateData = {
|
|
3208
1387
|
id: string;
|
|
@@ -3220,231 +1399,27 @@ export type GetApiContractServiceMerchantsContractsContractHeadersByIdRebateSett
|
|
|
3220
1399
|
id: string;
|
|
3221
1400
|
};
|
|
3222
1401
|
|
|
3223
|
-
export type GetApiContractServiceMerchantsContractsContractHeadersByIdRebateSettingsResponse = (
|
|
3224
|
-
id: string;
|
|
3225
|
-
creationTime?: string;
|
|
3226
|
-
creatorId?: (string) | null;
|
|
3227
|
-
lastModificationTime?: (string) | null;
|
|
3228
|
-
lastModifierId?: (string) | null;
|
|
3229
|
-
isDeleted?: boolean;
|
|
3230
|
-
deleterId?: (string) | null;
|
|
3231
|
-
deletionTime?: (string) | null;
|
|
3232
|
-
referenceNumber: number;
|
|
3233
|
-
isTrustedMerchant: boolean;
|
|
3234
|
-
rebateStatementPeriod: 'None' | 'Monthly' | 'Quarterly' | 'BiAnnually' | 'Annually';
|
|
3235
|
-
contactInformationTypeId: string;
|
|
3236
|
-
contractHeaderId: string;
|
|
3237
|
-
rebateTableHeaders?: Array<{
|
|
3238
|
-
name: string;
|
|
3239
|
-
id: string;
|
|
3240
|
-
validFrom: string;
|
|
3241
|
-
validTo?: (string) | null;
|
|
3242
|
-
}> | null;
|
|
3243
|
-
minimumNetCommissions?: Array<{
|
|
3244
|
-
id: string;
|
|
3245
|
-
creationTime?: string;
|
|
3246
|
-
creatorId?: (string) | null;
|
|
3247
|
-
lastModificationTime?: (string) | null;
|
|
3248
|
-
lastModifierId?: (string) | null;
|
|
3249
|
-
isDeleted?: boolean;
|
|
3250
|
-
deleterId?: (string) | null;
|
|
3251
|
-
deletionTime?: (string) | null;
|
|
3252
|
-
amount: number;
|
|
3253
|
-
validFrom: string;
|
|
3254
|
-
validTo: string;
|
|
3255
|
-
rebateSettingId?: string;
|
|
3256
|
-
appliedOrganizationId?: (string) | null;
|
|
3257
|
-
}> | null;
|
|
3258
|
-
});
|
|
1402
|
+
export type GetApiContractServiceMerchantsContractsContractHeadersByIdRebateSettingsResponse = (UniRefund_ContractService_Rebates_RebateSettings_RebateSettingDto);
|
|
3259
1403
|
|
|
3260
1404
|
export type PostApiContractServiceMerchantsContractsContractHeadersByIdRebateSettingsData = {
|
|
3261
1405
|
id: string;
|
|
3262
|
-
requestBody?:
|
|
3263
|
-
|
|
3264
|
-
|
|
3265
|
-
|
|
3266
|
-
referenceNumber: number;
|
|
3267
|
-
isTrustedMerchant: boolean;
|
|
3268
|
-
rebateStatementPeriod: 'None' | 'Monthly' | 'Quarterly' | 'BiAnnually' | 'Annually';
|
|
3269
|
-
rebateTableHeaders?: Array<{
|
|
3270
|
-
readonly extraProperties?: {
|
|
3271
|
-
[key: string]: unknown;
|
|
3272
|
-
} | null;
|
|
3273
|
-
rebateTableHeaderId: string;
|
|
3274
|
-
validFrom: string;
|
|
3275
|
-
validTo?: (string) | null;
|
|
3276
|
-
}> | null;
|
|
3277
|
-
contactInformationTypeId: string;
|
|
3278
|
-
minimumNetCommissions?: Array<{
|
|
3279
|
-
readonly extraProperties?: {
|
|
3280
|
-
[key: string]: unknown;
|
|
3281
|
-
} | null;
|
|
3282
|
-
amount: number;
|
|
3283
|
-
validFrom: string;
|
|
3284
|
-
validTo: string;
|
|
3285
|
-
appliedOrganizationId?: (string) | null;
|
|
3286
|
-
}> | null;
|
|
3287
|
-
};
|
|
3288
|
-
};
|
|
3289
|
-
|
|
3290
|
-
export type PostApiContractServiceMerchantsContractsContractHeadersByIdRebateSettingsResponse = ({
|
|
3291
|
-
id: string;
|
|
3292
|
-
creationTime?: string;
|
|
3293
|
-
creatorId?: (string) | null;
|
|
3294
|
-
lastModificationTime?: (string) | null;
|
|
3295
|
-
lastModifierId?: (string) | null;
|
|
3296
|
-
isDeleted?: boolean;
|
|
3297
|
-
deleterId?: (string) | null;
|
|
3298
|
-
deletionTime?: (string) | null;
|
|
3299
|
-
referenceNumber: number;
|
|
3300
|
-
isTrustedMerchant: boolean;
|
|
3301
|
-
rebateStatementPeriod: 'None' | 'Monthly' | 'Quarterly' | 'BiAnnually' | 'Annually';
|
|
3302
|
-
contactInformationTypeId: string;
|
|
3303
|
-
contractHeaderId: string;
|
|
3304
|
-
rebateTableHeaders?: Array<{
|
|
3305
|
-
name: string;
|
|
3306
|
-
id: string;
|
|
3307
|
-
validFrom: string;
|
|
3308
|
-
validTo?: (string) | null;
|
|
3309
|
-
}> | null;
|
|
3310
|
-
minimumNetCommissions?: Array<{
|
|
3311
|
-
id: string;
|
|
3312
|
-
creationTime?: string;
|
|
3313
|
-
creatorId?: (string) | null;
|
|
3314
|
-
lastModificationTime?: (string) | null;
|
|
3315
|
-
lastModifierId?: (string) | null;
|
|
3316
|
-
isDeleted?: boolean;
|
|
3317
|
-
deleterId?: (string) | null;
|
|
3318
|
-
deletionTime?: (string) | null;
|
|
3319
|
-
amount: number;
|
|
3320
|
-
validFrom: string;
|
|
3321
|
-
validTo: string;
|
|
3322
|
-
rebateSettingId?: string;
|
|
3323
|
-
appliedOrganizationId?: (string) | null;
|
|
3324
|
-
}> | null;
|
|
3325
|
-
});
|
|
1406
|
+
requestBody?: UniRefund_ContractService_Rebates_RebateSettings_RebateSettingUpSertDto;
|
|
1407
|
+
};
|
|
1408
|
+
|
|
1409
|
+
export type PostApiContractServiceMerchantsContractsContractHeadersByIdRebateSettingsResponse = (UniRefund_ContractService_Rebates_RebateSettings_RebateSettingDto);
|
|
3326
1410
|
|
|
3327
1411
|
export type GetApiContractServiceMerchantsContractsContractSettingsByIdData = {
|
|
3328
1412
|
id: string;
|
|
3329
1413
|
};
|
|
3330
1414
|
|
|
3331
|
-
export type GetApiContractServiceMerchantsContractsContractSettingsByIdResponse = (
|
|
3332
|
-
id: string;
|
|
3333
|
-
creationTime?: string;
|
|
3334
|
-
creatorId?: (string) | null;
|
|
3335
|
-
lastModificationTime?: (string) | null;
|
|
3336
|
-
lastModifierId?: (string) | null;
|
|
3337
|
-
isDeleted?: boolean;
|
|
3338
|
-
deleterId?: (string) | null;
|
|
3339
|
-
deletionTime?: (string) | null;
|
|
3340
|
-
name: string;
|
|
3341
|
-
isDefault?: boolean;
|
|
3342
|
-
referenceNumber: number;
|
|
3343
|
-
invoicingFrequency: 'OneTimePerMonth' | 'TwoTimesPerMonth';
|
|
3344
|
-
termOfPayment: number;
|
|
3345
|
-
deliveryFee?: boolean;
|
|
3346
|
-
factoring?: boolean;
|
|
3347
|
-
invoicingAddressCommonData: {
|
|
3348
|
-
id: string;
|
|
3349
|
-
creationTime?: string;
|
|
3350
|
-
creatorId?: (string) | null;
|
|
3351
|
-
lastModificationTime?: (string) | null;
|
|
3352
|
-
lastModifierId?: (string) | null;
|
|
3353
|
-
isDeleted?: boolean;
|
|
3354
|
-
deleterId?: (string) | null;
|
|
3355
|
-
deletionTime?: (string) | null;
|
|
3356
|
-
type: 'Home' | 'Office' | 'Invoice' | 'Contact';
|
|
3357
|
-
addressLine: string;
|
|
3358
|
-
postalCode: string;
|
|
3359
|
-
fullAddress: string;
|
|
3360
|
-
primaryFlag?: boolean;
|
|
3361
|
-
countryId: string;
|
|
3362
|
-
regionId?: (string) | null;
|
|
3363
|
-
cityId: string;
|
|
3364
|
-
districtId: string;
|
|
3365
|
-
neighborhoodId?: (string) | null;
|
|
3366
|
-
};
|
|
3367
|
-
invoiceChannel: 'ElectronicInvoice' | 'Email' | 'PaperInvoice';
|
|
3368
|
-
eTaxFree?: boolean;
|
|
3369
|
-
receiptType: 'None' | 'NoBarcodeNumber' | 'NoBarcodeText' | 'Barcode' | 'QRCodeIntegration' | 'UniRefundVoucherIntegration';
|
|
3370
|
-
crossTaxFreeForm?: boolean;
|
|
3371
|
-
facturaNumberIsUnique?: boolean;
|
|
3372
|
-
goodsHaveSerialNumbers?: boolean;
|
|
3373
|
-
excludeFromCashLimit?: boolean;
|
|
3374
|
-
deskoScanner?: boolean;
|
|
3375
|
-
contractHeaderId?: string;
|
|
3376
|
-
});
|
|
1415
|
+
export type GetApiContractServiceMerchantsContractsContractSettingsByIdResponse = (UniRefund_ContractService_ContractsForMerchant_ContractSettings_ContractSettingDto);
|
|
3377
1416
|
|
|
3378
1417
|
export type PutApiContractServiceMerchantsContractsContractSettingsByIdData = {
|
|
3379
1418
|
id: string;
|
|
3380
|
-
requestBody?:
|
|
3381
|
-
|
|
3382
|
-
|
|
3383
|
-
|
|
3384
|
-
name: string;
|
|
3385
|
-
referenceNumber: number;
|
|
3386
|
-
invoicingFrequency: 'OneTimePerMonth' | 'TwoTimesPerMonth';
|
|
3387
|
-
termOfPayment: number;
|
|
3388
|
-
deliveryFee?: boolean;
|
|
3389
|
-
factoring?: boolean;
|
|
3390
|
-
invoicingAddressCommonDataId: string;
|
|
3391
|
-
invoiceChannel: 'ElectronicInvoice' | 'Email' | 'PaperInvoice';
|
|
3392
|
-
eTaxFree?: boolean;
|
|
3393
|
-
receiptType: 'None' | 'NoBarcodeNumber' | 'NoBarcodeText' | 'Barcode' | 'QRCodeIntegration' | 'UniRefundVoucherIntegration';
|
|
3394
|
-
crossTaxFreeForm?: boolean;
|
|
3395
|
-
facturaNumberIsUnique?: boolean;
|
|
3396
|
-
goodsHaveSerialNumbers?: boolean;
|
|
3397
|
-
excludeFromCashLimit?: boolean;
|
|
3398
|
-
deskoScanner?: boolean;
|
|
3399
|
-
};
|
|
3400
|
-
};
|
|
3401
|
-
|
|
3402
|
-
export type PutApiContractServiceMerchantsContractsContractSettingsByIdResponse = ({
|
|
3403
|
-
id: string;
|
|
3404
|
-
creationTime?: string;
|
|
3405
|
-
creatorId?: (string) | null;
|
|
3406
|
-
lastModificationTime?: (string) | null;
|
|
3407
|
-
lastModifierId?: (string) | null;
|
|
3408
|
-
isDeleted?: boolean;
|
|
3409
|
-
deleterId?: (string) | null;
|
|
3410
|
-
deletionTime?: (string) | null;
|
|
3411
|
-
name: string;
|
|
3412
|
-
isDefault?: boolean;
|
|
3413
|
-
referenceNumber: number;
|
|
3414
|
-
invoicingFrequency: 'OneTimePerMonth' | 'TwoTimesPerMonth';
|
|
3415
|
-
termOfPayment: number;
|
|
3416
|
-
deliveryFee?: boolean;
|
|
3417
|
-
factoring?: boolean;
|
|
3418
|
-
invoicingAddressCommonData: {
|
|
3419
|
-
id: string;
|
|
3420
|
-
creationTime?: string;
|
|
3421
|
-
creatorId?: (string) | null;
|
|
3422
|
-
lastModificationTime?: (string) | null;
|
|
3423
|
-
lastModifierId?: (string) | null;
|
|
3424
|
-
isDeleted?: boolean;
|
|
3425
|
-
deleterId?: (string) | null;
|
|
3426
|
-
deletionTime?: (string) | null;
|
|
3427
|
-
type: 'Home' | 'Office' | 'Invoice' | 'Contact';
|
|
3428
|
-
addressLine: string;
|
|
3429
|
-
postalCode: string;
|
|
3430
|
-
fullAddress: string;
|
|
3431
|
-
primaryFlag?: boolean;
|
|
3432
|
-
countryId: string;
|
|
3433
|
-
regionId?: (string) | null;
|
|
3434
|
-
cityId: string;
|
|
3435
|
-
districtId: string;
|
|
3436
|
-
neighborhoodId?: (string) | null;
|
|
3437
|
-
};
|
|
3438
|
-
invoiceChannel: 'ElectronicInvoice' | 'Email' | 'PaperInvoice';
|
|
3439
|
-
eTaxFree?: boolean;
|
|
3440
|
-
receiptType: 'None' | 'NoBarcodeNumber' | 'NoBarcodeText' | 'Barcode' | 'QRCodeIntegration' | 'UniRefundVoucherIntegration';
|
|
3441
|
-
crossTaxFreeForm?: boolean;
|
|
3442
|
-
facturaNumberIsUnique?: boolean;
|
|
3443
|
-
goodsHaveSerialNumbers?: boolean;
|
|
3444
|
-
excludeFromCashLimit?: boolean;
|
|
3445
|
-
deskoScanner?: boolean;
|
|
3446
|
-
contractHeaderId?: string;
|
|
3447
|
-
});
|
|
1419
|
+
requestBody?: UniRefund_ContractService_ContractsForMerchant_ContractSettings_ContractSettingUpdateDto;
|
|
1420
|
+
};
|
|
1421
|
+
|
|
1422
|
+
export type PutApiContractServiceMerchantsContractsContractSettingsByIdResponse = (UniRefund_ContractService_ContractsForMerchant_ContractSettings_ContractSettingDto);
|
|
3448
1423
|
|
|
3449
1424
|
export type DeleteApiContractServiceMerchantsContractsContractSettingsByIdData = {
|
|
3450
1425
|
id: string;
|
|
@@ -3459,284 +1434,60 @@ export type GetApiContractServiceMerchantsContractsContractHeadersByIdContractSe
|
|
|
3459
1434
|
sorting?: string;
|
|
3460
1435
|
};
|
|
3461
1436
|
|
|
3462
|
-
export type GetApiContractServiceMerchantsContractsContractHeadersByIdContractSettingsResponse = (
|
|
3463
|
-
items?: Array<{
|
|
3464
|
-
id: string;
|
|
3465
|
-
creationTime?: string;
|
|
3466
|
-
creatorId?: (string) | null;
|
|
3467
|
-
lastModificationTime?: (string) | null;
|
|
3468
|
-
lastModifierId?: (string) | null;
|
|
3469
|
-
isDeleted?: boolean;
|
|
3470
|
-
deleterId?: (string) | null;
|
|
3471
|
-
deletionTime?: (string) | null;
|
|
3472
|
-
name: string;
|
|
3473
|
-
isDefault?: boolean;
|
|
3474
|
-
referenceNumber: number;
|
|
3475
|
-
invoicingFrequency: 'OneTimePerMonth' | 'TwoTimesPerMonth';
|
|
3476
|
-
termOfPayment: number;
|
|
3477
|
-
deliveryFee?: boolean;
|
|
3478
|
-
factoring?: boolean;
|
|
3479
|
-
invoicingAddressCommonData: {
|
|
3480
|
-
id: string;
|
|
3481
|
-
creationTime?: string;
|
|
3482
|
-
creatorId?: (string) | null;
|
|
3483
|
-
lastModificationTime?: (string) | null;
|
|
3484
|
-
lastModifierId?: (string) | null;
|
|
3485
|
-
isDeleted?: boolean;
|
|
3486
|
-
deleterId?: (string) | null;
|
|
3487
|
-
deletionTime?: (string) | null;
|
|
3488
|
-
type: 'Home' | 'Office' | 'Invoice' | 'Contact';
|
|
3489
|
-
addressLine: string;
|
|
3490
|
-
postalCode: string;
|
|
3491
|
-
fullAddress: string;
|
|
3492
|
-
primaryFlag?: boolean;
|
|
3493
|
-
countryId: string;
|
|
3494
|
-
regionId?: (string) | null;
|
|
3495
|
-
cityId: string;
|
|
3496
|
-
districtId: string;
|
|
3497
|
-
neighborhoodId?: (string) | null;
|
|
3498
|
-
};
|
|
3499
|
-
invoiceChannel: 'ElectronicInvoice' | 'Email' | 'PaperInvoice';
|
|
3500
|
-
eTaxFree?: boolean;
|
|
3501
|
-
receiptType: 'None' | 'NoBarcodeNumber' | 'NoBarcodeText' | 'Barcode' | 'QRCodeIntegration' | 'UniRefundVoucherIntegration';
|
|
3502
|
-
crossTaxFreeForm?: boolean;
|
|
3503
|
-
facturaNumberIsUnique?: boolean;
|
|
3504
|
-
goodsHaveSerialNumbers?: boolean;
|
|
3505
|
-
excludeFromCashLimit?: boolean;
|
|
3506
|
-
deskoScanner?: boolean;
|
|
3507
|
-
contractHeaderId?: string;
|
|
3508
|
-
}> | null;
|
|
3509
|
-
totalCount?: number;
|
|
3510
|
-
});
|
|
1437
|
+
export type GetApiContractServiceMerchantsContractsContractHeadersByIdContractSettingsResponse = (PagedResultDto_ContractSettingDto);
|
|
3511
1438
|
|
|
3512
1439
|
export type PostApiContractServiceMerchantsContractsContractHeadersByIdContractSettingsData = {
|
|
3513
1440
|
id: string;
|
|
3514
|
-
requestBody?:
|
|
3515
|
-
|
|
3516
|
-
|
|
3517
|
-
|
|
3518
|
-
name: string;
|
|
3519
|
-
referenceNumber: number;
|
|
3520
|
-
invoicingFrequency: 'OneTimePerMonth' | 'TwoTimesPerMonth';
|
|
3521
|
-
termOfPayment: number;
|
|
3522
|
-
deliveryFee?: boolean;
|
|
3523
|
-
factoring?: boolean;
|
|
3524
|
-
invoicingAddressCommonDataId: string;
|
|
3525
|
-
invoiceChannel: 'ElectronicInvoice' | 'Email' | 'PaperInvoice';
|
|
3526
|
-
eTaxFree?: boolean;
|
|
3527
|
-
receiptType: 'None' | 'NoBarcodeNumber' | 'NoBarcodeText' | 'Barcode' | 'QRCodeIntegration' | 'UniRefundVoucherIntegration';
|
|
3528
|
-
crossTaxFreeForm?: boolean;
|
|
3529
|
-
facturaNumberIsUnique?: boolean;
|
|
3530
|
-
goodsHaveSerialNumbers?: boolean;
|
|
3531
|
-
excludeFromCashLimit?: boolean;
|
|
3532
|
-
deskoScanner?: boolean;
|
|
3533
|
-
};
|
|
3534
|
-
};
|
|
3535
|
-
|
|
3536
|
-
export type PostApiContractServiceMerchantsContractsContractHeadersByIdContractSettingsResponse = ({
|
|
3537
|
-
id: string;
|
|
3538
|
-
creationTime?: string;
|
|
3539
|
-
creatorId?: (string) | null;
|
|
3540
|
-
lastModificationTime?: (string) | null;
|
|
3541
|
-
lastModifierId?: (string) | null;
|
|
3542
|
-
isDeleted?: boolean;
|
|
3543
|
-
deleterId?: (string) | null;
|
|
3544
|
-
deletionTime?: (string) | null;
|
|
3545
|
-
name: string;
|
|
3546
|
-
isDefault?: boolean;
|
|
3547
|
-
referenceNumber: number;
|
|
3548
|
-
invoicingFrequency: 'OneTimePerMonth' | 'TwoTimesPerMonth';
|
|
3549
|
-
termOfPayment: number;
|
|
3550
|
-
deliveryFee?: boolean;
|
|
3551
|
-
factoring?: boolean;
|
|
3552
|
-
invoicingAddressCommonData: {
|
|
3553
|
-
id: string;
|
|
3554
|
-
creationTime?: string;
|
|
3555
|
-
creatorId?: (string) | null;
|
|
3556
|
-
lastModificationTime?: (string) | null;
|
|
3557
|
-
lastModifierId?: (string) | null;
|
|
3558
|
-
isDeleted?: boolean;
|
|
3559
|
-
deleterId?: (string) | null;
|
|
3560
|
-
deletionTime?: (string) | null;
|
|
3561
|
-
type: 'Home' | 'Office' | 'Invoice' | 'Contact';
|
|
3562
|
-
addressLine: string;
|
|
3563
|
-
postalCode: string;
|
|
3564
|
-
fullAddress: string;
|
|
3565
|
-
primaryFlag?: boolean;
|
|
3566
|
-
countryId: string;
|
|
3567
|
-
regionId?: (string) | null;
|
|
3568
|
-
cityId: string;
|
|
3569
|
-
districtId: string;
|
|
3570
|
-
neighborhoodId?: (string) | null;
|
|
3571
|
-
};
|
|
3572
|
-
invoiceChannel: 'ElectronicInvoice' | 'Email' | 'PaperInvoice';
|
|
3573
|
-
eTaxFree?: boolean;
|
|
3574
|
-
receiptType: 'None' | 'NoBarcodeNumber' | 'NoBarcodeText' | 'Barcode' | 'QRCodeIntegration' | 'UniRefundVoucherIntegration';
|
|
3575
|
-
crossTaxFreeForm?: boolean;
|
|
3576
|
-
facturaNumberIsUnique?: boolean;
|
|
3577
|
-
goodsHaveSerialNumbers?: boolean;
|
|
3578
|
-
excludeFromCashLimit?: boolean;
|
|
3579
|
-
deskoScanner?: boolean;
|
|
3580
|
-
contractHeaderId?: string;
|
|
3581
|
-
});
|
|
1441
|
+
requestBody?: UniRefund_ContractService_ContractsForMerchant_ContractSettings_ContractSettingCreateDto;
|
|
1442
|
+
};
|
|
1443
|
+
|
|
1444
|
+
export type PostApiContractServiceMerchantsContractsContractHeadersByIdContractSettingsResponse = (UniRefund_ContractService_ContractsForMerchant_ContractSettings_ContractSettingDto);
|
|
3582
1445
|
|
|
3583
1446
|
export type PutApiContractServiceMerchantsContractsContractHeadersByIdSetDefaultSettingData = {
|
|
3584
1447
|
id: string;
|
|
3585
|
-
requestBody?:
|
|
3586
|
-
readonly extraProperties?: {
|
|
3587
|
-
[key: string]: unknown;
|
|
3588
|
-
} | null;
|
|
3589
|
-
contractSettingId?: string;
|
|
3590
|
-
};
|
|
1448
|
+
requestBody?: UniRefund_ContractService_ContractsForMerchant_ContractSettings_ContractSettingMakeDefaultDto;
|
|
3591
1449
|
};
|
|
3592
1450
|
|
|
3593
|
-
export type PutApiContractServiceMerchantsContractsContractHeadersByIdSetDefaultSettingResponse = (
|
|
3594
|
-
|
|
3595
|
-
|
|
3596
|
-
creatorId?: (string) | null;
|
|
3597
|
-
lastModificationTime?: (string) | null;
|
|
3598
|
-
lastModifierId?: (string) | null;
|
|
3599
|
-
isDeleted?: boolean;
|
|
3600
|
-
deleterId?: (string) | null;
|
|
3601
|
-
deletionTime?: (string) | null;
|
|
3602
|
-
name: string;
|
|
3603
|
-
isDefault?: boolean;
|
|
3604
|
-
referenceNumber: number;
|
|
3605
|
-
invoicingFrequency: 'OneTimePerMonth' | 'TwoTimesPerMonth';
|
|
3606
|
-
termOfPayment: number;
|
|
3607
|
-
deliveryFee?: boolean;
|
|
3608
|
-
factoring?: boolean;
|
|
3609
|
-
invoicingAddressCommonData: {
|
|
3610
|
-
id: string;
|
|
3611
|
-
creationTime?: string;
|
|
3612
|
-
creatorId?: (string) | null;
|
|
3613
|
-
lastModificationTime?: (string) | null;
|
|
3614
|
-
lastModifierId?: (string) | null;
|
|
3615
|
-
isDeleted?: boolean;
|
|
3616
|
-
deleterId?: (string) | null;
|
|
3617
|
-
deletionTime?: (string) | null;
|
|
3618
|
-
type: 'Home' | 'Office' | 'Invoice' | 'Contact';
|
|
3619
|
-
addressLine: string;
|
|
3620
|
-
postalCode: string;
|
|
3621
|
-
fullAddress: string;
|
|
3622
|
-
primaryFlag?: boolean;
|
|
3623
|
-
countryId: string;
|
|
3624
|
-
regionId?: (string) | null;
|
|
3625
|
-
cityId: string;
|
|
3626
|
-
districtId: string;
|
|
3627
|
-
neighborhoodId?: (string) | null;
|
|
3628
|
-
};
|
|
3629
|
-
invoiceChannel: 'ElectronicInvoice' | 'Email' | 'PaperInvoice';
|
|
3630
|
-
eTaxFree?: boolean;
|
|
3631
|
-
receiptType: 'None' | 'NoBarcodeNumber' | 'NoBarcodeText' | 'Barcode' | 'QRCodeIntegration' | 'UniRefundVoucherIntegration';
|
|
3632
|
-
crossTaxFreeForm?: boolean;
|
|
3633
|
-
facturaNumberIsUnique?: boolean;
|
|
3634
|
-
goodsHaveSerialNumbers?: boolean;
|
|
3635
|
-
excludeFromCashLimit?: boolean;
|
|
3636
|
-
deskoScanner?: boolean;
|
|
3637
|
-
contractHeaderId?: string;
|
|
3638
|
-
});
|
|
3639
|
-
|
|
3640
|
-
export type GetApiContractServiceMerchantsContractsContractHeadersByIdContractStoresData = {
|
|
1451
|
+
export type PutApiContractServiceMerchantsContractsContractHeadersByIdSetDefaultSettingResponse = (UniRefund_ContractService_ContractsForMerchant_ContractSettings_ContractSettingDto);
|
|
1452
|
+
|
|
1453
|
+
export type GetApiContractServiceMerchantsContractsContractHeadersByIdContractStoresData = {
|
|
3641
1454
|
id: string;
|
|
3642
1455
|
maxResultCount?: number;
|
|
3643
1456
|
skipCount?: number;
|
|
3644
1457
|
sorting?: string;
|
|
3645
1458
|
};
|
|
3646
1459
|
|
|
3647
|
-
export type GetApiContractServiceMerchantsContractsContractHeadersByIdContractStoresResponse = (
|
|
3648
|
-
items?: Array<{
|
|
3649
|
-
contractTypeIdentifiersSubId: string;
|
|
3650
|
-
name?: (string) | null;
|
|
3651
|
-
fullAddress?: (string) | null;
|
|
3652
|
-
manager?: (string) | null;
|
|
3653
|
-
contractSettingId?: string;
|
|
3654
|
-
receiptType: 'None' | 'NoBarcodeNumber' | 'NoBarcodeText' | 'Barcode' | 'QRCodeIntegration' | 'UniRefundVoucherIntegration';
|
|
3655
|
-
}> | null;
|
|
3656
|
-
totalCount?: number;
|
|
3657
|
-
});
|
|
1460
|
+
export type GetApiContractServiceMerchantsContractsContractHeadersByIdContractStoresResponse = (PagedResultDto_ContractStoreDetailedDto);
|
|
3658
1461
|
|
|
3659
1462
|
export type PostApiContractServiceMerchantsContractsContractHeadersByIdContractStoresData = {
|
|
3660
1463
|
id: string;
|
|
3661
|
-
requestBody?:
|
|
3662
|
-
|
|
3663
|
-
|
|
3664
|
-
|
|
3665
|
-
contractStores?: Array<{
|
|
3666
|
-
readonly extraProperties?: {
|
|
3667
|
-
[key: string]: unknown;
|
|
3668
|
-
} | null;
|
|
3669
|
-
contractTypeIdentifiersSubId: string;
|
|
3670
|
-
receiptType: 'None' | 'NoBarcodeNumber' | 'NoBarcodeText' | 'Barcode' | 'QRCodeIntegration' | 'UniRefundVoucherIntegration';
|
|
3671
|
-
contractSettingId: string;
|
|
3672
|
-
}> | null;
|
|
3673
|
-
};
|
|
3674
|
-
};
|
|
3675
|
-
|
|
3676
|
-
export type PostApiContractServiceMerchantsContractsContractHeadersByIdContractStoresResponse = (Array<{
|
|
3677
|
-
id: string;
|
|
3678
|
-
creationTime?: string;
|
|
3679
|
-
creatorId?: (string) | null;
|
|
3680
|
-
lastModificationTime?: (string) | null;
|
|
3681
|
-
lastModifierId?: (string) | null;
|
|
3682
|
-
isDeleted?: boolean;
|
|
3683
|
-
deleterId?: (string) | null;
|
|
3684
|
-
deletionTime?: (string) | null;
|
|
3685
|
-
contractTypeIdentifiersSubId: string;
|
|
3686
|
-
contractSettingId: string;
|
|
3687
|
-
receiptType: 'None' | 'NoBarcodeNumber' | 'NoBarcodeText' | 'Barcode' | 'QRCodeIntegration' | 'UniRefundVoucherIntegration';
|
|
3688
|
-
}>);
|
|
1464
|
+
requestBody?: UniRefund_ContractService_ContractsForMerchant_ContractStores_ContractStoreCreateAndUpdateByListDto;
|
|
1465
|
+
};
|
|
1466
|
+
|
|
1467
|
+
export type PostApiContractServiceMerchantsContractsContractHeadersByIdContractStoresResponse = (Array<UniRefund_ContractService_ContractsForMerchant_ContractStores_ContractStoreDto>);
|
|
3689
1468
|
|
|
3690
1469
|
export type GetIntegrationApiMerchantsContractsForVatStatementData = {
|
|
3691
1470
|
contractHeaderIds?: Array<(string)>;
|
|
3692
1471
|
};
|
|
3693
1472
|
|
|
3694
|
-
export type GetIntegrationApiMerchantsContractsForVatStatementResponse = (Array<
|
|
3695
|
-
merchantId?: string;
|
|
3696
|
-
contractHeaderId?: string;
|
|
3697
|
-
billingPeriod?: 'OneTimePerMonth' | 'TwoTimesPerMonth';
|
|
3698
|
-
termOfPayment?: number;
|
|
3699
|
-
isFactoring?: boolean;
|
|
3700
|
-
deliveryMethod?: 'ElectronicInvoice' | 'Email' | 'PaperInvoice';
|
|
3701
|
-
}>);
|
|
1473
|
+
export type GetIntegrationApiMerchantsContractsForVatStatementResponse = (Array<UniRefund_ContractService_ContractsForMerchant_ContractHeaders_ContractHeaderInformationForVATStatementDto>);
|
|
3702
1474
|
|
|
3703
1475
|
export type GetIntegrationApiMerchantsContractsRebateStatementPeriodsData = {
|
|
3704
1476
|
contractHeaderIds?: Array<(string)>;
|
|
3705
1477
|
};
|
|
3706
1478
|
|
|
3707
1479
|
export type GetIntegrationApiMerchantsContractsRebateStatementPeriodsResponse = ({
|
|
3708
|
-
[key: string]:
|
|
1480
|
+
[key: string]: UniRefund_ContractService_Enums_RebateStatementPeriod;
|
|
3709
1481
|
});
|
|
3710
1482
|
|
|
3711
1483
|
export type PostIntegrationApiMerchantsContractsCalculateFeesForRebateData = {
|
|
3712
|
-
requestBody?:
|
|
3713
|
-
|
|
3714
|
-
|
|
3715
|
-
|
|
3716
|
-
merchantId?: string;
|
|
3717
|
-
sisAmount?: number;
|
|
3718
|
-
grossCommission?: number;
|
|
3719
|
-
vatRate?: number;
|
|
3720
|
-
}> | null;
|
|
3721
|
-
rebateDate?: string;
|
|
3722
|
-
};
|
|
3723
|
-
};
|
|
3724
|
-
|
|
3725
|
-
export type PostIntegrationApiMerchantsContractsCalculateFeesForRebateResponse = ({
|
|
3726
|
-
tagRebateAmounts?: Array<{
|
|
3727
|
-
tagId?: string;
|
|
3728
|
-
rebateAmount?: number;
|
|
3729
|
-
}> | null;
|
|
3730
|
-
});
|
|
1484
|
+
requestBody?: UniRefund_ContractService_ContractsForRefundPoint_ContractHeaders_CalculateFeesForRebateRequestDto;
|
|
1485
|
+
};
|
|
1486
|
+
|
|
1487
|
+
export type PostIntegrationApiMerchantsContractsCalculateFeesForRebateResponse = (UniRefund_ContractService_ContractsForRefundPoint_ContractHeaders_CalculateFeesForRebateResponseDto);
|
|
3731
1488
|
|
|
3732
1489
|
export type PostIntegrationApiMerchantsContractsEnsureHasActiveContractHeaderWithRefundAndRebateData = {
|
|
3733
|
-
requestBody?:
|
|
3734
|
-
merchantId: string;
|
|
3735
|
-
invoices: Array<{
|
|
3736
|
-
invoiceDate: string;
|
|
3737
|
-
invoiceAmount: number;
|
|
3738
|
-
}>;
|
|
3739
|
-
};
|
|
1490
|
+
requestBody?: UniRefund_ContractService_ContractsForMerchant_ContractHeaders_EnsureHasActiveContractHeaderRequestDto;
|
|
3740
1491
|
};
|
|
3741
1492
|
|
|
3742
1493
|
export type PostIntegrationApiMerchantsContractsEnsureHasActiveContractHeaderWithRefundAndRebateResponse = (unknown);
|
|
@@ -3745,116 +1496,14 @@ export type GetApiContractServiceRefundPointsContractsContractHeadersByIdData =
|
|
|
3745
1496
|
id: string;
|
|
3746
1497
|
};
|
|
3747
1498
|
|
|
3748
|
-
export type GetApiContractServiceRefundPointsContractsContractHeadersByIdResponse = (
|
|
3749
|
-
id: string;
|
|
3750
|
-
creationTime?: string;
|
|
3751
|
-
creatorId?: (string) | null;
|
|
3752
|
-
lastModificationTime?: (string) | null;
|
|
3753
|
-
lastModifierId?: (string) | null;
|
|
3754
|
-
isDeleted?: boolean;
|
|
3755
|
-
deleterId?: (string) | null;
|
|
3756
|
-
deletionTime?: (string) | null;
|
|
3757
|
-
name: string;
|
|
3758
|
-
contractTypeIdentifier: string;
|
|
3759
|
-
webSite?: (string) | null;
|
|
3760
|
-
merchantClassification: 'Excellent' | 'Good' | 'Satisfactory' | 'Low';
|
|
3761
|
-
status?: 'None' | 'Registered' | 'DeRegistrationRequestedByUniRefund' | 'DeRegistrationDataRequestedByAuthorities' | 'SuspendedInternallyAfterDeRegistrationDecline' | 'DeRegisteredAtAuthorities' | 'SuspendedInternallyOnly' | 'SuspensionRequestedByUniRefund' | 'SuspensionRequestedByAuthorities' | 'UnSuspensionRequestedByUniRefund' | 'UnSuspensionRequestedByAuthorities' | 'SuspendedAtAuthorities' | 'UnSuspensionForFurtherDeRegistrationInvitedByAuthorities' | 'UnSuspensionForFurtherDeRegistrationRequestedByUniRefund' | 'Terminated';
|
|
3762
|
-
refundPointBasicInformationDto?: {
|
|
3763
|
-
id?: string;
|
|
3764
|
-
name?: (string) | null;
|
|
3765
|
-
taxOffice?: {
|
|
3766
|
-
id: string;
|
|
3767
|
-
name: string;
|
|
3768
|
-
};
|
|
3769
|
-
numberOfStores?: number;
|
|
3770
|
-
accountManagers?: Array<{
|
|
3771
|
-
id?: string;
|
|
3772
|
-
name?: (string) | null;
|
|
3773
|
-
}> | null;
|
|
3774
|
-
};
|
|
3775
|
-
isDraft?: boolean;
|
|
3776
|
-
isActive?: boolean;
|
|
3777
|
-
validFrom: string;
|
|
3778
|
-
validTo: string;
|
|
3779
|
-
earlyRefund?: boolean;
|
|
3780
|
-
contractType: 'Merchant' | 'RefundPoint';
|
|
3781
|
-
addressCommonDataId: string;
|
|
3782
|
-
refundFeeHeaders: Array<{
|
|
3783
|
-
name: string;
|
|
3784
|
-
id: string;
|
|
3785
|
-
validFrom: string;
|
|
3786
|
-
validTo?: (string) | null;
|
|
3787
|
-
isDefault: boolean;
|
|
3788
|
-
}>;
|
|
3789
|
-
});
|
|
1499
|
+
export type GetApiContractServiceRefundPointsContractsContractHeadersByIdResponse = (UniRefund_ContractService_ContractsForRefundPoint_ContractHeaders_ContractHeaderDetailForRefundPointDto);
|
|
3790
1500
|
|
|
3791
1501
|
export type PutApiContractServiceRefundPointsContractsContractHeadersByIdData = {
|
|
3792
1502
|
id: string;
|
|
3793
|
-
requestBody?:
|
|
3794
|
-
|
|
3795
|
-
|
|
3796
|
-
|
|
3797
|
-
webSite?: (string) | null;
|
|
3798
|
-
merchantClassification: 'Excellent' | 'Good' | 'Satisfactory' | 'Low';
|
|
3799
|
-
status: 'None' | 'Registered' | 'DeRegistrationRequestedByUniRefund' | 'DeRegistrationDataRequestedByAuthorities' | 'SuspendedInternallyAfterDeRegistrationDecline' | 'DeRegisteredAtAuthorities' | 'SuspendedInternallyOnly' | 'SuspensionRequestedByUniRefund' | 'SuspensionRequestedByAuthorities' | 'UnSuspensionRequestedByUniRefund' | 'UnSuspensionRequestedByAuthorities' | 'SuspendedAtAuthorities' | 'UnSuspensionForFurtherDeRegistrationInvitedByAuthorities' | 'UnSuspensionForFurtherDeRegistrationRequestedByUniRefund' | 'Terminated';
|
|
3800
|
-
validFrom: string;
|
|
3801
|
-
validTo: string;
|
|
3802
|
-
earlyRefund?: boolean;
|
|
3803
|
-
addressCommonDataId: string;
|
|
3804
|
-
refundFeeHeaders?: Array<{
|
|
3805
|
-
readonly extraProperties?: {
|
|
3806
|
-
[key: string]: unknown;
|
|
3807
|
-
} | null;
|
|
3808
|
-
refundFeeHeaderId: string;
|
|
3809
|
-
validFrom: string;
|
|
3810
|
-
validTo: string;
|
|
3811
|
-
isDefault?: boolean;
|
|
3812
|
-
}> | null;
|
|
3813
|
-
};
|
|
3814
|
-
};
|
|
3815
|
-
|
|
3816
|
-
export type PutApiContractServiceRefundPointsContractsContractHeadersByIdResponse = ({
|
|
3817
|
-
id: string;
|
|
3818
|
-
creationTime?: string;
|
|
3819
|
-
creatorId?: (string) | null;
|
|
3820
|
-
lastModificationTime?: (string) | null;
|
|
3821
|
-
lastModifierId?: (string) | null;
|
|
3822
|
-
isDeleted?: boolean;
|
|
3823
|
-
deleterId?: (string) | null;
|
|
3824
|
-
deletionTime?: (string) | null;
|
|
3825
|
-
name: string;
|
|
3826
|
-
contractTypeIdentifier: string;
|
|
3827
|
-
webSite?: (string) | null;
|
|
3828
|
-
merchantClassification: 'Excellent' | 'Good' | 'Satisfactory' | 'Low';
|
|
3829
|
-
status?: 'None' | 'Registered' | 'DeRegistrationRequestedByUniRefund' | 'DeRegistrationDataRequestedByAuthorities' | 'SuspendedInternallyAfterDeRegistrationDecline' | 'DeRegisteredAtAuthorities' | 'SuspendedInternallyOnly' | 'SuspensionRequestedByUniRefund' | 'SuspensionRequestedByAuthorities' | 'UnSuspensionRequestedByUniRefund' | 'UnSuspensionRequestedByAuthorities' | 'SuspendedAtAuthorities' | 'UnSuspensionForFurtherDeRegistrationInvitedByAuthorities' | 'UnSuspensionForFurtherDeRegistrationRequestedByUniRefund' | 'Terminated';
|
|
3830
|
-
refundPointBasicInformationDto?: {
|
|
3831
|
-
id?: string;
|
|
3832
|
-
name?: (string) | null;
|
|
3833
|
-
taxOffice?: {
|
|
3834
|
-
id: string;
|
|
3835
|
-
name: string;
|
|
3836
|
-
};
|
|
3837
|
-
numberOfStores?: number;
|
|
3838
|
-
accountManagers?: Array<{
|
|
3839
|
-
id?: string;
|
|
3840
|
-
name?: (string) | null;
|
|
3841
|
-
}> | null;
|
|
3842
|
-
};
|
|
3843
|
-
isDraft?: boolean;
|
|
3844
|
-
isActive?: boolean;
|
|
3845
|
-
validFrom: string;
|
|
3846
|
-
validTo: string;
|
|
3847
|
-
earlyRefund?: boolean;
|
|
3848
|
-
contractType: 'Merchant' | 'RefundPoint';
|
|
3849
|
-
addressCommonDataId: string;
|
|
3850
|
-
refundFeeHeaders: Array<{
|
|
3851
|
-
name: string;
|
|
3852
|
-
id: string;
|
|
3853
|
-
validFrom: string;
|
|
3854
|
-
validTo?: (string) | null;
|
|
3855
|
-
isDefault: boolean;
|
|
3856
|
-
}>;
|
|
3857
|
-
});
|
|
1503
|
+
requestBody?: UniRefund_ContractService_ContractsForRefundPoint_ContractHeaders_ContractHeaderForRefundPointUpdateDto;
|
|
1504
|
+
};
|
|
1505
|
+
|
|
1506
|
+
export type PutApiContractServiceRefundPointsContractsContractHeadersByIdResponse = (UniRefund_ContractService_ContractsForRefundPoint_ContractHeaders_ContractHeaderDetailForRefundPointDto);
|
|
3858
1507
|
|
|
3859
1508
|
export type DeleteApiContractServiceRefundPointsContractsContractHeadersByIdData = {
|
|
3860
1509
|
id: string;
|
|
@@ -3869,29 +1518,7 @@ export type GetApiContractServiceRefundPointsContractsContractHeadersData = {
|
|
|
3869
1518
|
sorting?: string;
|
|
3870
1519
|
};
|
|
3871
1520
|
|
|
3872
|
-
export type GetApiContractServiceRefundPointsContractsContractHeadersResponse = (
|
|
3873
|
-
items?: Array<{
|
|
3874
|
-
id: string;
|
|
3875
|
-
creationTime?: string;
|
|
3876
|
-
creatorId?: (string) | null;
|
|
3877
|
-
lastModificationTime?: (string) | null;
|
|
3878
|
-
lastModifierId?: (string) | null;
|
|
3879
|
-
isDeleted?: boolean;
|
|
3880
|
-
deleterId?: (string) | null;
|
|
3881
|
-
deletionTime?: (string) | null;
|
|
3882
|
-
name: string;
|
|
3883
|
-
contractTypeIdentifier: string;
|
|
3884
|
-
isDraft?: boolean;
|
|
3885
|
-
isActive?: boolean;
|
|
3886
|
-
status?: 'None' | 'Registered' | 'DeRegistrationRequestedByUniRefund' | 'DeRegistrationDataRequestedByAuthorities' | 'SuspendedInternallyAfterDeRegistrationDecline' | 'DeRegisteredAtAuthorities' | 'SuspendedInternallyOnly' | 'SuspensionRequestedByUniRefund' | 'SuspensionRequestedByAuthorities' | 'UnSuspensionRequestedByUniRefund' | 'UnSuspensionRequestedByAuthorities' | 'SuspendedAtAuthorities' | 'UnSuspensionForFurtherDeRegistrationInvitedByAuthorities' | 'UnSuspensionForFurtherDeRegistrationRequestedByUniRefund' | 'Terminated';
|
|
3887
|
-
contractType: 'Merchant' | 'RefundPoint';
|
|
3888
|
-
validFrom: string;
|
|
3889
|
-
validTo: string;
|
|
3890
|
-
earlyRefund?: boolean;
|
|
3891
|
-
addressCommonDataId: string;
|
|
3892
|
-
}> | null;
|
|
3893
|
-
totalCount?: number;
|
|
3894
|
-
});
|
|
1521
|
+
export type GetApiContractServiceRefundPointsContractsContractHeadersResponse = (PagedResultDto_ContractHeaderForRefundPointDto);
|
|
3895
1522
|
|
|
3896
1523
|
export type GetApiContractServiceRefundPointsByIdContractsContractHeadersData = {
|
|
3897
1524
|
id: string;
|
|
@@ -3901,118 +1528,14 @@ export type GetApiContractServiceRefundPointsByIdContractsContractHeadersData =
|
|
|
3901
1528
|
sorting?: string;
|
|
3902
1529
|
};
|
|
3903
1530
|
|
|
3904
|
-
export type GetApiContractServiceRefundPointsByIdContractsContractHeadersResponse = (
|
|
3905
|
-
items?: Array<{
|
|
3906
|
-
id: string;
|
|
3907
|
-
creationTime?: string;
|
|
3908
|
-
creatorId?: (string) | null;
|
|
3909
|
-
lastModificationTime?: (string) | null;
|
|
3910
|
-
lastModifierId?: (string) | null;
|
|
3911
|
-
isDeleted?: boolean;
|
|
3912
|
-
deleterId?: (string) | null;
|
|
3913
|
-
deletionTime?: (string) | null;
|
|
3914
|
-
name: string;
|
|
3915
|
-
contractTypeIdentifier: string;
|
|
3916
|
-
webSite?: (string) | null;
|
|
3917
|
-
merchantClassification: 'Excellent' | 'Good' | 'Satisfactory' | 'Low';
|
|
3918
|
-
status?: 'None' | 'Registered' | 'DeRegistrationRequestedByUniRefund' | 'DeRegistrationDataRequestedByAuthorities' | 'SuspendedInternallyAfterDeRegistrationDecline' | 'DeRegisteredAtAuthorities' | 'SuspendedInternallyOnly' | 'SuspensionRequestedByUniRefund' | 'SuspensionRequestedByAuthorities' | 'UnSuspensionRequestedByUniRefund' | 'UnSuspensionRequestedByAuthorities' | 'SuspendedAtAuthorities' | 'UnSuspensionForFurtherDeRegistrationInvitedByAuthorities' | 'UnSuspensionForFurtherDeRegistrationRequestedByUniRefund' | 'Terminated';
|
|
3919
|
-
refundPointBasicInformationDto?: {
|
|
3920
|
-
id?: string;
|
|
3921
|
-
name?: (string) | null;
|
|
3922
|
-
taxOffice?: {
|
|
3923
|
-
id: string;
|
|
3924
|
-
name: string;
|
|
3925
|
-
};
|
|
3926
|
-
numberOfStores?: number;
|
|
3927
|
-
accountManagers?: Array<{
|
|
3928
|
-
id?: string;
|
|
3929
|
-
name?: (string) | null;
|
|
3930
|
-
}> | null;
|
|
3931
|
-
};
|
|
3932
|
-
isDraft?: boolean;
|
|
3933
|
-
isActive?: boolean;
|
|
3934
|
-
validFrom: string;
|
|
3935
|
-
validTo: string;
|
|
3936
|
-
earlyRefund?: boolean;
|
|
3937
|
-
contractType: 'Merchant' | 'RefundPoint';
|
|
3938
|
-
addressCommonDataId: string;
|
|
3939
|
-
refundFeeHeaders: Array<{
|
|
3940
|
-
name: string;
|
|
3941
|
-
id: string;
|
|
3942
|
-
validFrom: string;
|
|
3943
|
-
validTo?: (string) | null;
|
|
3944
|
-
isDefault: boolean;
|
|
3945
|
-
}>;
|
|
3946
|
-
}> | null;
|
|
3947
|
-
totalCount?: number;
|
|
3948
|
-
});
|
|
1531
|
+
export type GetApiContractServiceRefundPointsByIdContractsContractHeadersResponse = (PagedResultDto_ContractHeaderDetailForRefundPointDto);
|
|
3949
1532
|
|
|
3950
1533
|
export type PostApiContractServiceRefundPointsByIdContractsContractHeadersData = {
|
|
3951
1534
|
id: string;
|
|
3952
|
-
requestBody?:
|
|
3953
|
-
|
|
3954
|
-
|
|
3955
|
-
|
|
3956
|
-
webSite?: (string) | null;
|
|
3957
|
-
merchantClassification: 'Excellent' | 'Good' | 'Satisfactory' | 'Low';
|
|
3958
|
-
validFrom: string;
|
|
3959
|
-
validTo: string;
|
|
3960
|
-
earlyRefund?: boolean;
|
|
3961
|
-
addressCommonDataId: string;
|
|
3962
|
-
refundFeeHeaders: Array<{
|
|
3963
|
-
readonly extraProperties?: {
|
|
3964
|
-
[key: string]: unknown;
|
|
3965
|
-
} | null;
|
|
3966
|
-
refundFeeHeaderId: string;
|
|
3967
|
-
validFrom: string;
|
|
3968
|
-
validTo: string;
|
|
3969
|
-
isDefault?: boolean;
|
|
3970
|
-
}>;
|
|
3971
|
-
};
|
|
3972
|
-
};
|
|
3973
|
-
|
|
3974
|
-
export type PostApiContractServiceRefundPointsByIdContractsContractHeadersResponse = ({
|
|
3975
|
-
id: string;
|
|
3976
|
-
creationTime?: string;
|
|
3977
|
-
creatorId?: (string) | null;
|
|
3978
|
-
lastModificationTime?: (string) | null;
|
|
3979
|
-
lastModifierId?: (string) | null;
|
|
3980
|
-
isDeleted?: boolean;
|
|
3981
|
-
deleterId?: (string) | null;
|
|
3982
|
-
deletionTime?: (string) | null;
|
|
3983
|
-
name: string;
|
|
3984
|
-
contractTypeIdentifier: string;
|
|
3985
|
-
webSite?: (string) | null;
|
|
3986
|
-
merchantClassification: 'Excellent' | 'Good' | 'Satisfactory' | 'Low';
|
|
3987
|
-
status?: 'None' | 'Registered' | 'DeRegistrationRequestedByUniRefund' | 'DeRegistrationDataRequestedByAuthorities' | 'SuspendedInternallyAfterDeRegistrationDecline' | 'DeRegisteredAtAuthorities' | 'SuspendedInternallyOnly' | 'SuspensionRequestedByUniRefund' | 'SuspensionRequestedByAuthorities' | 'UnSuspensionRequestedByUniRefund' | 'UnSuspensionRequestedByAuthorities' | 'SuspendedAtAuthorities' | 'UnSuspensionForFurtherDeRegistrationInvitedByAuthorities' | 'UnSuspensionForFurtherDeRegistrationRequestedByUniRefund' | 'Terminated';
|
|
3988
|
-
refundPointBasicInformationDto?: {
|
|
3989
|
-
id?: string;
|
|
3990
|
-
name?: (string) | null;
|
|
3991
|
-
taxOffice?: {
|
|
3992
|
-
id: string;
|
|
3993
|
-
name: string;
|
|
3994
|
-
};
|
|
3995
|
-
numberOfStores?: number;
|
|
3996
|
-
accountManagers?: Array<{
|
|
3997
|
-
id?: string;
|
|
3998
|
-
name?: (string) | null;
|
|
3999
|
-
}> | null;
|
|
4000
|
-
};
|
|
4001
|
-
isDraft?: boolean;
|
|
4002
|
-
isActive?: boolean;
|
|
4003
|
-
validFrom: string;
|
|
4004
|
-
validTo: string;
|
|
4005
|
-
earlyRefund?: boolean;
|
|
4006
|
-
contractType: 'Merchant' | 'RefundPoint';
|
|
4007
|
-
addressCommonDataId: string;
|
|
4008
|
-
refundFeeHeaders: Array<{
|
|
4009
|
-
name: string;
|
|
4010
|
-
id: string;
|
|
4011
|
-
validFrom: string;
|
|
4012
|
-
validTo?: (string) | null;
|
|
4013
|
-
isDefault: boolean;
|
|
4014
|
-
}>;
|
|
4015
|
-
});
|
|
1535
|
+
requestBody?: UniRefund_ContractService_ContractsForRefundPoint_ContractHeaders_ContractHeaderForRefundPointCreateDto;
|
|
1536
|
+
};
|
|
1537
|
+
|
|
1538
|
+
export type PostApiContractServiceRefundPointsByIdContractsContractHeadersResponse = (UniRefund_ContractService_ContractsForRefundPoint_ContractHeaders_ContractHeaderDetailForRefundPointDto);
|
|
4016
1539
|
|
|
4017
1540
|
export type PostApiContractServiceRefundPointsContractsContractHeadersByIdValidateData = {
|
|
4018
1541
|
id: string;
|
|
@@ -4028,160 +1551,30 @@ export type PutApiContractServiceRefundPointsContractsContractHeadersByIdMakePas
|
|
|
4028
1551
|
|
|
4029
1552
|
export type PostIntegrationApiRefundPointsByIdCalculateFeesData = {
|
|
4030
1553
|
id: string;
|
|
4031
|
-
requestBody?:
|
|
4032
|
-
|
|
4033
|
-
|
|
4034
|
-
|
|
4035
|
-
} | null;
|
|
4036
|
-
refundDate?: string;
|
|
4037
|
-
earlyRefund?: boolean;
|
|
4038
|
-
};
|
|
4039
|
-
};
|
|
4040
|
-
|
|
4041
|
-
export type PostIntegrationApiRefundPointsByIdCalculateFeesResponse = ({
|
|
4042
|
-
tagRefundAmounts?: Array<{
|
|
4043
|
-
tagId?: string;
|
|
4044
|
-
refundAmount?: number;
|
|
4045
|
-
touristFee?: number;
|
|
4046
|
-
touristBonusFee?: (number) | null;
|
|
4047
|
-
agentFee?: number;
|
|
4048
|
-
airportFee?: (number) | null;
|
|
4049
|
-
}> | null;
|
|
4050
|
-
});
|
|
1554
|
+
requestBody?: UniRefund_ContractService_ContractsForRefundPoint_ContractHeaders_CalculateFeesForRefundRequestDto;
|
|
1555
|
+
};
|
|
1556
|
+
|
|
1557
|
+
export type PostIntegrationApiRefundPointsByIdCalculateFeesResponse = (UniRefund_ContractService_ContractsForRefundPoint_ContractHeaders_CalculateFeesForRefundResponseDto);
|
|
4051
1558
|
|
|
4052
1559
|
export type GetApiContractServiceRebateTableHeadersAssignablesByMerchantData = {
|
|
4053
1560
|
merchantId: string;
|
|
4054
1561
|
sorting?: string;
|
|
4055
1562
|
};
|
|
4056
1563
|
|
|
4057
|
-
export type GetApiContractServiceRebateTableHeadersAssignablesByMerchantResponse = (Array<
|
|
4058
|
-
id: string;
|
|
4059
|
-
name: string;
|
|
4060
|
-
isTemplate: boolean;
|
|
4061
|
-
}>);
|
|
1564
|
+
export type GetApiContractServiceRebateTableHeadersAssignablesByMerchantResponse = (Array<UniRefund_ContractService_Rebates_RebateTableHeaders_RebateTableHeaderInformationDto>);
|
|
4062
1565
|
|
|
4063
1566
|
export type GetApiContractServiceRebateTableHeadersByIdData = {
|
|
4064
1567
|
id: string;
|
|
4065
1568
|
};
|
|
4066
1569
|
|
|
4067
|
-
export type GetApiContractServiceRebateTableHeadersByIdResponse = (
|
|
4068
|
-
id: string;
|
|
4069
|
-
creationTime?: string;
|
|
4070
|
-
creatorId?: (string) | null;
|
|
4071
|
-
lastModificationTime?: (string) | null;
|
|
4072
|
-
lastModifierId?: (string) | null;
|
|
4073
|
-
isDeleted?: boolean;
|
|
4074
|
-
deleterId?: (string) | null;
|
|
4075
|
-
deletionTime?: (string) | null;
|
|
4076
|
-
name: string;
|
|
4077
|
-
calculateNetCommissionInsteadOfRefund: boolean;
|
|
4078
|
-
isTemplate: boolean;
|
|
4079
|
-
isAssigned: boolean;
|
|
4080
|
-
isCustomizedOverTemplate?: (boolean) | null;
|
|
4081
|
-
merchantId?: (string) | null;
|
|
4082
|
-
sourceTemplateId?: (string) | null;
|
|
4083
|
-
rebateTableDetails?: Array<{
|
|
4084
|
-
id: string;
|
|
4085
|
-
creationTime?: string;
|
|
4086
|
-
creatorId?: (string) | null;
|
|
4087
|
-
lastModificationTime?: (string) | null;
|
|
4088
|
-
lastModifierId?: (string) | null;
|
|
4089
|
-
isDeleted?: boolean;
|
|
4090
|
-
deleterId?: (string) | null;
|
|
4091
|
-
deletionTime?: (string) | null;
|
|
4092
|
-
fixedFeeValue: number;
|
|
4093
|
-
percentFeeValue: number;
|
|
4094
|
-
refundMethod: 'All' | 'Cash' | 'CreditCard' | 'BankTransfer' | 'Wallet' | 'CashViaPartner';
|
|
4095
|
-
variableFee: 'PercentOfGC' | 'PercentOfGcWithoutVAT' | 'PercentOfVAT' | 'PercentOfSIS';
|
|
4096
|
-
rebateTableHeaderId: string;
|
|
4097
|
-
}> | null;
|
|
4098
|
-
processingFeeDetails?: Array<{
|
|
4099
|
-
id: string;
|
|
4100
|
-
creationTime?: string;
|
|
4101
|
-
creatorId?: (string) | null;
|
|
4102
|
-
lastModificationTime?: (string) | null;
|
|
4103
|
-
lastModifierId?: (string) | null;
|
|
4104
|
-
isDeleted?: boolean;
|
|
4105
|
-
deleterId?: (string) | null;
|
|
4106
|
-
deletionTime?: (string) | null;
|
|
4107
|
-
name: string;
|
|
4108
|
-
amount: number;
|
|
4109
|
-
rebateTableHeaderId: string;
|
|
4110
|
-
}> | null;
|
|
4111
|
-
});
|
|
1570
|
+
export type GetApiContractServiceRebateTableHeadersByIdResponse = (UniRefund_ContractService_Rebates_RebateTableHeaders_RebateTableHeaderDto);
|
|
4112
1571
|
|
|
4113
1572
|
export type PutApiContractServiceRebateTableHeadersByIdData = {
|
|
4114
1573
|
id: string;
|
|
4115
|
-
requestBody?:
|
|
4116
|
-
|
|
4117
|
-
|
|
4118
|
-
|
|
4119
|
-
name: string;
|
|
4120
|
-
calculateNetCommissionInsteadOfRefund?: boolean;
|
|
4121
|
-
rebateTableDetails?: Array<{
|
|
4122
|
-
readonly extraProperties?: {
|
|
4123
|
-
[key: string]: unknown;
|
|
4124
|
-
} | null;
|
|
4125
|
-
fixedFeeValue: number;
|
|
4126
|
-
percentFeeValue: number;
|
|
4127
|
-
refundMethod: 'All' | 'Cash' | 'CreditCard' | 'BankTransfer' | 'Wallet' | 'CashViaPartner';
|
|
4128
|
-
variableFee: 'PercentOfGC' | 'PercentOfGcWithoutVAT' | 'PercentOfVAT' | 'PercentOfSIS';
|
|
4129
|
-
}> | null;
|
|
4130
|
-
processingFeeDetails?: Array<{
|
|
4131
|
-
readonly extraProperties?: {
|
|
4132
|
-
[key: string]: unknown;
|
|
4133
|
-
} | null;
|
|
4134
|
-
name: string;
|
|
4135
|
-
amount: number;
|
|
4136
|
-
}> | null;
|
|
4137
|
-
};
|
|
4138
|
-
};
|
|
4139
|
-
|
|
4140
|
-
export type PutApiContractServiceRebateTableHeadersByIdResponse = ({
|
|
4141
|
-
id: string;
|
|
4142
|
-
creationTime?: string;
|
|
4143
|
-
creatorId?: (string) | null;
|
|
4144
|
-
lastModificationTime?: (string) | null;
|
|
4145
|
-
lastModifierId?: (string) | null;
|
|
4146
|
-
isDeleted?: boolean;
|
|
4147
|
-
deleterId?: (string) | null;
|
|
4148
|
-
deletionTime?: (string) | null;
|
|
4149
|
-
name: string;
|
|
4150
|
-
calculateNetCommissionInsteadOfRefund: boolean;
|
|
4151
|
-
isTemplate: boolean;
|
|
4152
|
-
isAssigned: boolean;
|
|
4153
|
-
isCustomizedOverTemplate?: (boolean) | null;
|
|
4154
|
-
merchantId?: (string) | null;
|
|
4155
|
-
sourceTemplateId?: (string) | null;
|
|
4156
|
-
rebateTableDetails?: Array<{
|
|
4157
|
-
id: string;
|
|
4158
|
-
creationTime?: string;
|
|
4159
|
-
creatorId?: (string) | null;
|
|
4160
|
-
lastModificationTime?: (string) | null;
|
|
4161
|
-
lastModifierId?: (string) | null;
|
|
4162
|
-
isDeleted?: boolean;
|
|
4163
|
-
deleterId?: (string) | null;
|
|
4164
|
-
deletionTime?: (string) | null;
|
|
4165
|
-
fixedFeeValue: number;
|
|
4166
|
-
percentFeeValue: number;
|
|
4167
|
-
refundMethod: 'All' | 'Cash' | 'CreditCard' | 'BankTransfer' | 'Wallet' | 'CashViaPartner';
|
|
4168
|
-
variableFee: 'PercentOfGC' | 'PercentOfGcWithoutVAT' | 'PercentOfVAT' | 'PercentOfSIS';
|
|
4169
|
-
rebateTableHeaderId: string;
|
|
4170
|
-
}> | null;
|
|
4171
|
-
processingFeeDetails?: Array<{
|
|
4172
|
-
id: string;
|
|
4173
|
-
creationTime?: string;
|
|
4174
|
-
creatorId?: (string) | null;
|
|
4175
|
-
lastModificationTime?: (string) | null;
|
|
4176
|
-
lastModifierId?: (string) | null;
|
|
4177
|
-
isDeleted?: boolean;
|
|
4178
|
-
deleterId?: (string) | null;
|
|
4179
|
-
deletionTime?: (string) | null;
|
|
4180
|
-
name: string;
|
|
4181
|
-
amount: number;
|
|
4182
|
-
rebateTableHeaderId: string;
|
|
4183
|
-
}> | null;
|
|
4184
|
-
});
|
|
1574
|
+
requestBody?: UniRefund_ContractService_Rebates_RebateTableHeaders_RebateTableHeaderUpdateDto;
|
|
1575
|
+
};
|
|
1576
|
+
|
|
1577
|
+
export type PutApiContractServiceRebateTableHeadersByIdResponse = (UniRefund_ContractService_Rebates_RebateTableHeaders_RebateTableHeaderDto);
|
|
4185
1578
|
|
|
4186
1579
|
export type GetApiContractServiceRebateTableHeadersData = {
|
|
4187
1580
|
isTemplate?: boolean;
|
|
@@ -4190,225 +1583,41 @@ export type GetApiContractServiceRebateTableHeadersData = {
|
|
|
4190
1583
|
sorting?: string;
|
|
4191
1584
|
};
|
|
4192
1585
|
|
|
4193
|
-
export type GetApiContractServiceRebateTableHeadersResponse = (
|
|
4194
|
-
items?: Array<{
|
|
4195
|
-
id: string;
|
|
4196
|
-
creationTime?: string;
|
|
4197
|
-
creatorId?: (string) | null;
|
|
4198
|
-
lastModificationTime?: (string) | null;
|
|
4199
|
-
lastModifierId?: (string) | null;
|
|
4200
|
-
isDeleted?: boolean;
|
|
4201
|
-
deleterId?: (string) | null;
|
|
4202
|
-
deletionTime?: (string) | null;
|
|
4203
|
-
name: string;
|
|
4204
|
-
calculateNetCommissionInsteadOfRefund: boolean;
|
|
4205
|
-
isTemplate: boolean;
|
|
4206
|
-
isAssigned: boolean;
|
|
4207
|
-
isCustomizedOverTemplate?: (boolean) | null;
|
|
4208
|
-
merchantId?: (string) | null;
|
|
4209
|
-
sourceTemplateId?: (string) | null;
|
|
4210
|
-
}> | null;
|
|
4211
|
-
totalCount?: number;
|
|
4212
|
-
});
|
|
1586
|
+
export type GetApiContractServiceRebateTableHeadersResponse = (PagedResultDto_RebateTableHeaderListDto);
|
|
4213
1587
|
|
|
4214
1588
|
export type PostApiContractServiceRebateTableHeadersData = {
|
|
4215
|
-
requestBody?:
|
|
4216
|
-
|
|
4217
|
-
|
|
4218
|
-
|
|
4219
|
-
|
|
4220
|
-
|
|
4221
|
-
isTemplate?: boolean;
|
|
4222
|
-
merchantId?: (string) | null;
|
|
4223
|
-
rebateTableDetails?: Array<{
|
|
4224
|
-
readonly extraProperties?: {
|
|
4225
|
-
[key: string]: unknown;
|
|
4226
|
-
} | null;
|
|
4227
|
-
fixedFeeValue: number;
|
|
4228
|
-
percentFeeValue: number;
|
|
4229
|
-
refundMethod: 'All' | 'Cash' | 'CreditCard' | 'BankTransfer' | 'Wallet' | 'CashViaPartner';
|
|
4230
|
-
variableFee: 'PercentOfGC' | 'PercentOfGcWithoutVAT' | 'PercentOfVAT' | 'PercentOfSIS';
|
|
4231
|
-
}> | null;
|
|
4232
|
-
processingFeeDetails?: Array<{
|
|
4233
|
-
readonly extraProperties?: {
|
|
4234
|
-
[key: string]: unknown;
|
|
4235
|
-
} | null;
|
|
4236
|
-
name: string;
|
|
4237
|
-
amount: number;
|
|
4238
|
-
}> | null;
|
|
4239
|
-
};
|
|
4240
|
-
};
|
|
4241
|
-
|
|
4242
|
-
export type PostApiContractServiceRebateTableHeadersResponse = ({
|
|
1589
|
+
requestBody?: UniRefund_ContractService_Rebates_RebateTableHeaders_RebateTableHeaderCreateDto;
|
|
1590
|
+
};
|
|
1591
|
+
|
|
1592
|
+
export type PostApiContractServiceRebateTableHeadersResponse = (UniRefund_ContractService_Rebates_RebateTableHeaders_RebateTableHeaderDto);
|
|
1593
|
+
|
|
1594
|
+
export type PostApiContractServiceRebateTableHeadersCloneByIdData = {
|
|
4243
1595
|
id: string;
|
|
4244
|
-
creationTime?: string;
|
|
4245
|
-
creatorId?: (string) | null;
|
|
4246
|
-
lastModificationTime?: (string) | null;
|
|
4247
|
-
lastModifierId?: (string) | null;
|
|
4248
|
-
isDeleted?: boolean;
|
|
4249
|
-
deleterId?: (string) | null;
|
|
4250
|
-
deletionTime?: (string) | null;
|
|
4251
|
-
name: string;
|
|
4252
|
-
calculateNetCommissionInsteadOfRefund: boolean;
|
|
4253
1596
|
isTemplate: boolean;
|
|
4254
|
-
|
|
4255
|
-
|
|
4256
|
-
|
|
4257
|
-
|
|
4258
|
-
rebateTableDetails?: Array<{
|
|
4259
|
-
id: string;
|
|
4260
|
-
creationTime?: string;
|
|
4261
|
-
creatorId?: (string) | null;
|
|
4262
|
-
lastModificationTime?: (string) | null;
|
|
4263
|
-
lastModifierId?: (string) | null;
|
|
4264
|
-
isDeleted?: boolean;
|
|
4265
|
-
deleterId?: (string) | null;
|
|
4266
|
-
deletionTime?: (string) | null;
|
|
4267
|
-
fixedFeeValue: number;
|
|
4268
|
-
percentFeeValue: number;
|
|
4269
|
-
refundMethod: 'All' | 'Cash' | 'CreditCard' | 'BankTransfer' | 'Wallet' | 'CashViaPartner';
|
|
4270
|
-
variableFee: 'PercentOfGC' | 'PercentOfGcWithoutVAT' | 'PercentOfVAT' | 'PercentOfSIS';
|
|
4271
|
-
rebateTableHeaderId: string;
|
|
4272
|
-
}> | null;
|
|
4273
|
-
processingFeeDetails?: Array<{
|
|
4274
|
-
id: string;
|
|
4275
|
-
creationTime?: string;
|
|
4276
|
-
creatorId?: (string) | null;
|
|
4277
|
-
lastModificationTime?: (string) | null;
|
|
4278
|
-
lastModifierId?: (string) | null;
|
|
4279
|
-
isDeleted?: boolean;
|
|
4280
|
-
deleterId?: (string) | null;
|
|
4281
|
-
deletionTime?: (string) | null;
|
|
4282
|
-
name: string;
|
|
4283
|
-
amount: number;
|
|
4284
|
-
rebateTableHeaderId: string;
|
|
4285
|
-
}> | null;
|
|
4286
|
-
});
|
|
1597
|
+
merchantId?: string;
|
|
1598
|
+
};
|
|
1599
|
+
|
|
1600
|
+
export type PostApiContractServiceRebateTableHeadersCloneByIdResponse = (UniRefund_ContractService_Rebates_RebateTableHeaders_RebateTableHeaderDto);
|
|
4287
1601
|
|
|
4288
1602
|
export type GetApiContractServiceRefundFeeHeadersAssignablesByRefundPointData = {
|
|
4289
1603
|
refundPointId: string;
|
|
4290
1604
|
sorting?: string;
|
|
4291
1605
|
};
|
|
4292
1606
|
|
|
4293
|
-
export type GetApiContractServiceRefundFeeHeadersAssignablesByRefundPointResponse = (Array<
|
|
4294
|
-
id: string;
|
|
4295
|
-
name: string;
|
|
4296
|
-
isTemplate: boolean;
|
|
4297
|
-
}>);
|
|
1607
|
+
export type GetApiContractServiceRefundFeeHeadersAssignablesByRefundPointResponse = (Array<UniRefund_ContractService_Refunds_RefundFeeHeaders_RefundFeeHeaderInformationDto>);
|
|
4298
1608
|
|
|
4299
1609
|
export type GetApiContractServiceRefundFeeHeadersByIdData = {
|
|
4300
1610
|
id: string;
|
|
4301
1611
|
};
|
|
4302
1612
|
|
|
4303
|
-
export type GetApiContractServiceRefundFeeHeadersByIdResponse = (
|
|
4304
|
-
id: string;
|
|
4305
|
-
creationTime?: string;
|
|
4306
|
-
creatorId?: (string) | null;
|
|
4307
|
-
lastModificationTime?: (string) | null;
|
|
4308
|
-
lastModifierId?: (string) | null;
|
|
4309
|
-
isDeleted?: boolean;
|
|
4310
|
-
deleterId?: (string) | null;
|
|
4311
|
-
deletionTime?: (string) | null;
|
|
4312
|
-
name: string;
|
|
4313
|
-
isActive?: boolean;
|
|
4314
|
-
isTemplate: boolean;
|
|
4315
|
-
isAssigned: boolean;
|
|
4316
|
-
isCustomizedOverTemplate?: (boolean) | null;
|
|
4317
|
-
refundPointId?: (string) | null;
|
|
4318
|
-
sourceTemplateId?: (string) | null;
|
|
4319
|
-
refundFeeDetails?: Array<{
|
|
4320
|
-
id: string;
|
|
4321
|
-
creationTime?: string;
|
|
4322
|
-
creatorId?: (string) | null;
|
|
4323
|
-
lastModificationTime?: (string) | null;
|
|
4324
|
-
lastModifierId?: (string) | null;
|
|
4325
|
-
isDeleted?: boolean;
|
|
4326
|
-
deleterId?: (string) | null;
|
|
4327
|
-
deletionTime?: (string) | null;
|
|
4328
|
-
amountFrom: number;
|
|
4329
|
-
amountTo: number;
|
|
4330
|
-
fixedFeeValue: number;
|
|
4331
|
-
percentFeeValue: number;
|
|
4332
|
-
fixedFeeValueEarlyRefund?: number;
|
|
4333
|
-
percentFeeValueEarlyRefund?: number;
|
|
4334
|
-
minFee: number;
|
|
4335
|
-
maxFee: number;
|
|
4336
|
-
minFeeEarlyRefund?: number;
|
|
4337
|
-
maxFeeEarlyRefund?: number;
|
|
4338
|
-
feeType: 'TouristFee' | 'TouristBonusFee' | 'AgentFee' | 'AirportFee';
|
|
4339
|
-
refundMethod: 'All' | 'Cash' | 'CreditCard' | 'BankTransfer' | 'Wallet' | 'CashViaPartner';
|
|
4340
|
-
refundFeeHeaderId: string;
|
|
4341
|
-
}> | null;
|
|
4342
|
-
});
|
|
1613
|
+
export type GetApiContractServiceRefundFeeHeadersByIdResponse = (UniRefund_ContractService_Refunds_RefundFeeHeaders_RefundFeeHeaderDto);
|
|
4343
1614
|
|
|
4344
1615
|
export type PutApiContractServiceRefundFeeHeadersByIdData = {
|
|
4345
1616
|
id: string;
|
|
4346
|
-
requestBody?:
|
|
4347
|
-
|
|
4348
|
-
|
|
4349
|
-
|
|
4350
|
-
name: string;
|
|
4351
|
-
isActive?: boolean;
|
|
4352
|
-
refundFeeDetails?: Array<{
|
|
4353
|
-
readonly extraProperties?: {
|
|
4354
|
-
[key: string]: unknown;
|
|
4355
|
-
} | null;
|
|
4356
|
-
amountFrom: number;
|
|
4357
|
-
amountTo: number;
|
|
4358
|
-
fixedFeeValue: number;
|
|
4359
|
-
percentFeeValue: number;
|
|
4360
|
-
fixedFeeValueEarlyRefund?: (number) | null;
|
|
4361
|
-
percentFeeValueEarlyRefund?: (number) | null;
|
|
4362
|
-
minFee: number;
|
|
4363
|
-
maxFee: number;
|
|
4364
|
-
minFeeEarlyRefund?: (number) | null;
|
|
4365
|
-
maxFeeEarlyRefund?: (number) | null;
|
|
4366
|
-
feeType: 'TouristFee' | 'TouristBonusFee' | 'AgentFee' | 'AirportFee';
|
|
4367
|
-
refundMethod: 'All' | 'Cash' | 'CreditCard' | 'BankTransfer' | 'Wallet' | 'CashViaPartner';
|
|
4368
|
-
}> | null;
|
|
4369
|
-
};
|
|
4370
|
-
};
|
|
4371
|
-
|
|
4372
|
-
export type PutApiContractServiceRefundFeeHeadersByIdResponse = ({
|
|
4373
|
-
id: string;
|
|
4374
|
-
creationTime?: string;
|
|
4375
|
-
creatorId?: (string) | null;
|
|
4376
|
-
lastModificationTime?: (string) | null;
|
|
4377
|
-
lastModifierId?: (string) | null;
|
|
4378
|
-
isDeleted?: boolean;
|
|
4379
|
-
deleterId?: (string) | null;
|
|
4380
|
-
deletionTime?: (string) | null;
|
|
4381
|
-
name: string;
|
|
4382
|
-
isActive?: boolean;
|
|
4383
|
-
isTemplate: boolean;
|
|
4384
|
-
isAssigned: boolean;
|
|
4385
|
-
isCustomizedOverTemplate?: (boolean) | null;
|
|
4386
|
-
refundPointId?: (string) | null;
|
|
4387
|
-
sourceTemplateId?: (string) | null;
|
|
4388
|
-
refundFeeDetails?: Array<{
|
|
4389
|
-
id: string;
|
|
4390
|
-
creationTime?: string;
|
|
4391
|
-
creatorId?: (string) | null;
|
|
4392
|
-
lastModificationTime?: (string) | null;
|
|
4393
|
-
lastModifierId?: (string) | null;
|
|
4394
|
-
isDeleted?: boolean;
|
|
4395
|
-
deleterId?: (string) | null;
|
|
4396
|
-
deletionTime?: (string) | null;
|
|
4397
|
-
amountFrom: number;
|
|
4398
|
-
amountTo: number;
|
|
4399
|
-
fixedFeeValue: number;
|
|
4400
|
-
percentFeeValue: number;
|
|
4401
|
-
fixedFeeValueEarlyRefund?: number;
|
|
4402
|
-
percentFeeValueEarlyRefund?: number;
|
|
4403
|
-
minFee: number;
|
|
4404
|
-
maxFee: number;
|
|
4405
|
-
minFeeEarlyRefund?: number;
|
|
4406
|
-
maxFeeEarlyRefund?: number;
|
|
4407
|
-
feeType: 'TouristFee' | 'TouristBonusFee' | 'AgentFee' | 'AirportFee';
|
|
4408
|
-
refundMethod: 'All' | 'Cash' | 'CreditCard' | 'BankTransfer' | 'Wallet' | 'CashViaPartner';
|
|
4409
|
-
refundFeeHeaderId: string;
|
|
4410
|
-
}> | null;
|
|
4411
|
-
});
|
|
1617
|
+
requestBody?: UniRefund_ContractService_Refunds_RefundFeeHeaders_RefundFeeHeaderUpdateDto;
|
|
1618
|
+
};
|
|
1619
|
+
|
|
1620
|
+
export type PutApiContractServiceRefundFeeHeadersByIdResponse = (UniRefund_ContractService_Refunds_RefundFeeHeaders_RefundFeeHeaderDto);
|
|
4412
1621
|
|
|
4413
1622
|
export type GetApiContractServiceRefundFeeHeadersData = {
|
|
4414
1623
|
isTemplate?: boolean;
|
|
@@ -4416,251 +1625,48 @@ export type GetApiContractServiceRefundFeeHeadersData = {
|
|
|
4416
1625
|
skipCount?: number;
|
|
4417
1626
|
};
|
|
4418
1627
|
|
|
4419
|
-
export type GetApiContractServiceRefundFeeHeadersResponse = (
|
|
4420
|
-
items?: Array<{
|
|
4421
|
-
id: string;
|
|
4422
|
-
creationTime?: string;
|
|
4423
|
-
creatorId?: (string) | null;
|
|
4424
|
-
lastModificationTime?: (string) | null;
|
|
4425
|
-
lastModifierId?: (string) | null;
|
|
4426
|
-
isDeleted?: boolean;
|
|
4427
|
-
deleterId?: (string) | null;
|
|
4428
|
-
deletionTime?: (string) | null;
|
|
4429
|
-
name: string;
|
|
4430
|
-
isActive?: boolean;
|
|
4431
|
-
isTemplate: boolean;
|
|
4432
|
-
isAssigned: boolean;
|
|
4433
|
-
isCustomizedOverTemplate?: (boolean) | null;
|
|
4434
|
-
refundPointId?: (string) | null;
|
|
4435
|
-
sourceTemplateId?: (string) | null;
|
|
4436
|
-
}> | null;
|
|
4437
|
-
totalCount?: number;
|
|
4438
|
-
});
|
|
1628
|
+
export type GetApiContractServiceRefundFeeHeadersResponse = (PagedResultDto_RefundFeeHeaderListDto);
|
|
4439
1629
|
|
|
4440
1630
|
export type PostApiContractServiceRefundFeeHeadersData = {
|
|
4441
|
-
requestBody?:
|
|
4442
|
-
|
|
4443
|
-
|
|
4444
|
-
|
|
4445
|
-
|
|
4446
|
-
|
|
4447
|
-
isTemplate?: boolean;
|
|
4448
|
-
refundPointId?: (string) | null;
|
|
4449
|
-
refundFeeDetails?: Array<{
|
|
4450
|
-
readonly extraProperties?: {
|
|
4451
|
-
[key: string]: unknown;
|
|
4452
|
-
} | null;
|
|
4453
|
-
amountFrom: number;
|
|
4454
|
-
amountTo: number;
|
|
4455
|
-
fixedFeeValue: number;
|
|
4456
|
-
percentFeeValue: number;
|
|
4457
|
-
fixedFeeValueEarlyRefund?: (number) | null;
|
|
4458
|
-
percentFeeValueEarlyRefund?: (number) | null;
|
|
4459
|
-
minFee: number;
|
|
4460
|
-
maxFee: number;
|
|
4461
|
-
minFeeEarlyRefund?: (number) | null;
|
|
4462
|
-
maxFeeEarlyRefund?: (number) | null;
|
|
4463
|
-
feeType: 'TouristFee' | 'TouristBonusFee' | 'AgentFee' | 'AirportFee';
|
|
4464
|
-
refundMethod: 'All' | 'Cash' | 'CreditCard' | 'BankTransfer' | 'Wallet' | 'CashViaPartner';
|
|
4465
|
-
isForEarlyRefund?: boolean;
|
|
4466
|
-
}> | null;
|
|
4467
|
-
};
|
|
4468
|
-
};
|
|
4469
|
-
|
|
4470
|
-
export type PostApiContractServiceRefundFeeHeadersResponse = ({
|
|
1631
|
+
requestBody?: UniRefund_ContractService_Refunds_RefundFeeHeaders_RefundFeeHeaderCreateDto;
|
|
1632
|
+
};
|
|
1633
|
+
|
|
1634
|
+
export type PostApiContractServiceRefundFeeHeadersResponse = (UniRefund_ContractService_Refunds_RefundFeeHeaders_RefundFeeHeaderDto);
|
|
1635
|
+
|
|
1636
|
+
export type PostApiContractServiceRefundFeeHeadersCloneByIdData = {
|
|
4471
1637
|
id: string;
|
|
4472
|
-
creationTime?: string;
|
|
4473
|
-
creatorId?: (string) | null;
|
|
4474
|
-
lastModificationTime?: (string) | null;
|
|
4475
|
-
lastModifierId?: (string) | null;
|
|
4476
|
-
isDeleted?: boolean;
|
|
4477
|
-
deleterId?: (string) | null;
|
|
4478
|
-
deletionTime?: (string) | null;
|
|
4479
|
-
name: string;
|
|
4480
|
-
isActive?: boolean;
|
|
4481
1638
|
isTemplate: boolean;
|
|
4482
|
-
|
|
4483
|
-
|
|
4484
|
-
|
|
4485
|
-
|
|
4486
|
-
refundFeeDetails?: Array<{
|
|
4487
|
-
id: string;
|
|
4488
|
-
creationTime?: string;
|
|
4489
|
-
creatorId?: (string) | null;
|
|
4490
|
-
lastModificationTime?: (string) | null;
|
|
4491
|
-
lastModifierId?: (string) | null;
|
|
4492
|
-
isDeleted?: boolean;
|
|
4493
|
-
deleterId?: (string) | null;
|
|
4494
|
-
deletionTime?: (string) | null;
|
|
4495
|
-
amountFrom: number;
|
|
4496
|
-
amountTo: number;
|
|
4497
|
-
fixedFeeValue: number;
|
|
4498
|
-
percentFeeValue: number;
|
|
4499
|
-
fixedFeeValueEarlyRefund?: number;
|
|
4500
|
-
percentFeeValueEarlyRefund?: number;
|
|
4501
|
-
minFee: number;
|
|
4502
|
-
maxFee: number;
|
|
4503
|
-
minFeeEarlyRefund?: number;
|
|
4504
|
-
maxFeeEarlyRefund?: number;
|
|
4505
|
-
feeType: 'TouristFee' | 'TouristBonusFee' | 'AgentFee' | 'AirportFee';
|
|
4506
|
-
refundMethod: 'All' | 'Cash' | 'CreditCard' | 'BankTransfer' | 'Wallet' | 'CashViaPartner';
|
|
4507
|
-
refundFeeHeaderId: string;
|
|
4508
|
-
}> | null;
|
|
4509
|
-
});
|
|
1639
|
+
refundPointId?: string;
|
|
1640
|
+
};
|
|
1641
|
+
|
|
1642
|
+
export type PostApiContractServiceRefundFeeHeadersCloneByIdResponse = (UniRefund_ContractService_Refunds_RefundFeeHeaders_RefundFeeHeaderDto);
|
|
4510
1643
|
|
|
4511
1644
|
export type GetIntegrationApiRefundFeeHeadersRefundPointsByIdData = {
|
|
4512
1645
|
id: string;
|
|
4513
1646
|
refundFeeHeaderId?: string;
|
|
4514
1647
|
};
|
|
4515
1648
|
|
|
4516
|
-
export type GetIntegrationApiRefundFeeHeadersRefundPointsByIdResponse = (
|
|
4517
|
-
id: string;
|
|
4518
|
-
creationTime?: string;
|
|
4519
|
-
creatorId?: (string) | null;
|
|
4520
|
-
lastModificationTime?: (string) | null;
|
|
4521
|
-
lastModifierId?: (string) | null;
|
|
4522
|
-
isDeleted?: boolean;
|
|
4523
|
-
deleterId?: (string) | null;
|
|
4524
|
-
deletionTime?: (string) | null;
|
|
4525
|
-
name: string;
|
|
4526
|
-
isActive?: boolean;
|
|
4527
|
-
isTemplate: boolean;
|
|
4528
|
-
isAssigned: boolean;
|
|
4529
|
-
isCustomizedOverTemplate?: (boolean) | null;
|
|
4530
|
-
refundPointId?: (string) | null;
|
|
4531
|
-
sourceTemplateId?: (string) | null;
|
|
4532
|
-
refundFeeDetails?: Array<{
|
|
4533
|
-
id: string;
|
|
4534
|
-
creationTime?: string;
|
|
4535
|
-
creatorId?: (string) | null;
|
|
4536
|
-
lastModificationTime?: (string) | null;
|
|
4537
|
-
lastModifierId?: (string) | null;
|
|
4538
|
-
isDeleted?: boolean;
|
|
4539
|
-
deleterId?: (string) | null;
|
|
4540
|
-
deletionTime?: (string) | null;
|
|
4541
|
-
amountFrom: number;
|
|
4542
|
-
amountTo: number;
|
|
4543
|
-
fixedFeeValue: number;
|
|
4544
|
-
percentFeeValue: number;
|
|
4545
|
-
fixedFeeValueEarlyRefund?: number;
|
|
4546
|
-
percentFeeValueEarlyRefund?: number;
|
|
4547
|
-
minFee: number;
|
|
4548
|
-
maxFee: number;
|
|
4549
|
-
minFeeEarlyRefund?: number;
|
|
4550
|
-
maxFeeEarlyRefund?: number;
|
|
4551
|
-
feeType: 'TouristFee' | 'TouristBonusFee' | 'AgentFee' | 'AirportFee';
|
|
4552
|
-
refundMethod: 'All' | 'Cash' | 'CreditCard' | 'BankTransfer' | 'Wallet' | 'CashViaPartner';
|
|
4553
|
-
refundFeeHeaderId: string;
|
|
4554
|
-
}> | null;
|
|
4555
|
-
});
|
|
1649
|
+
export type GetIntegrationApiRefundFeeHeadersRefundPointsByIdResponse = (UniRefund_ContractService_Refunds_RefundFeeHeaders_RefundFeeHeaderDto);
|
|
4556
1650
|
|
|
4557
1651
|
export type GetApiContractServiceRefundTableHeadersAssignablesByMerchantData = {
|
|
4558
1652
|
merchantId: string;
|
|
4559
1653
|
sorting?: string;
|
|
4560
1654
|
};
|
|
4561
1655
|
|
|
4562
|
-
export type GetApiContractServiceRefundTableHeadersAssignablesByMerchantResponse = (Array<
|
|
4563
|
-
id: string;
|
|
4564
|
-
name: string;
|
|
4565
|
-
isTemplate: boolean;
|
|
4566
|
-
}>);
|
|
1656
|
+
export type GetApiContractServiceRefundTableHeadersAssignablesByMerchantResponse = (Array<UniRefund_ContractService_Refunds_RefundTableHeaders_RefundTableHeaderInformationDto>);
|
|
4567
1657
|
|
|
4568
1658
|
export type GetApiContractServiceRefundTableHeadersByIdData = {
|
|
4569
1659
|
id: string;
|
|
4570
1660
|
};
|
|
4571
1661
|
|
|
4572
|
-
export type GetApiContractServiceRefundTableHeadersByIdResponse = (
|
|
4573
|
-
id: string;
|
|
4574
|
-
creationTime?: string;
|
|
4575
|
-
creatorId?: (string) | null;
|
|
4576
|
-
lastModificationTime?: (string) | null;
|
|
4577
|
-
lastModifierId?: (string) | null;
|
|
4578
|
-
isDeleted?: boolean;
|
|
4579
|
-
deleterId?: (string) | null;
|
|
4580
|
-
deletionTime?: (string) | null;
|
|
4581
|
-
name: string;
|
|
4582
|
-
isDefault?: boolean;
|
|
4583
|
-
isBundling?: boolean;
|
|
4584
|
-
isTemplate: boolean;
|
|
4585
|
-
isAssigned: boolean;
|
|
4586
|
-
isCustomizedOverTemplate?: (boolean) | null;
|
|
4587
|
-
merchantId?: (string) | null;
|
|
4588
|
-
sourceTemplateId?: (string) | null;
|
|
4589
|
-
refundTableDetails?: Array<{
|
|
4590
|
-
id: string;
|
|
4591
|
-
creationTime?: string;
|
|
4592
|
-
creatorId?: (string) | null;
|
|
4593
|
-
lastModificationTime?: (string) | null;
|
|
4594
|
-
lastModifierId?: (string) | null;
|
|
4595
|
-
isDeleted?: boolean;
|
|
4596
|
-
deleterId?: (string) | null;
|
|
4597
|
-
deletionTime?: (string) | null;
|
|
4598
|
-
vatRate: number;
|
|
4599
|
-
minValue: number;
|
|
4600
|
-
maxValue: number;
|
|
4601
|
-
refundAmount: number;
|
|
4602
|
-
refundPercent: number;
|
|
4603
|
-
isLoyalty?: boolean;
|
|
4604
|
-
}> | null;
|
|
4605
|
-
});
|
|
1662
|
+
export type GetApiContractServiceRefundTableHeadersByIdResponse = (UniRefund_ContractService_Refunds_RefundTableHeaders_RefundTableHeaderDto);
|
|
4606
1663
|
|
|
4607
1664
|
export type PutApiContractServiceRefundTableHeadersByIdData = {
|
|
4608
1665
|
id: string;
|
|
4609
|
-
requestBody?:
|
|
4610
|
-
|
|
4611
|
-
|
|
4612
|
-
|
|
4613
|
-
name: string;
|
|
4614
|
-
isDefault?: boolean;
|
|
4615
|
-
isBundling?: boolean;
|
|
4616
|
-
refundTableDetails?: Array<{
|
|
4617
|
-
readonly extraProperties?: {
|
|
4618
|
-
[key: string]: unknown;
|
|
4619
|
-
} | null;
|
|
4620
|
-
vatRate: number;
|
|
4621
|
-
minValue: number;
|
|
4622
|
-
maxValue: number;
|
|
4623
|
-
refundAmount: number;
|
|
4624
|
-
refundPercent: number;
|
|
4625
|
-
isLoyalty?: boolean;
|
|
4626
|
-
}> | null;
|
|
4627
|
-
};
|
|
4628
|
-
};
|
|
4629
|
-
|
|
4630
|
-
export type PutApiContractServiceRefundTableHeadersByIdResponse = ({
|
|
4631
|
-
id: string;
|
|
4632
|
-
creationTime?: string;
|
|
4633
|
-
creatorId?: (string) | null;
|
|
4634
|
-
lastModificationTime?: (string) | null;
|
|
4635
|
-
lastModifierId?: (string) | null;
|
|
4636
|
-
isDeleted?: boolean;
|
|
4637
|
-
deleterId?: (string) | null;
|
|
4638
|
-
deletionTime?: (string) | null;
|
|
4639
|
-
name: string;
|
|
4640
|
-
isDefault?: boolean;
|
|
4641
|
-
isBundling?: boolean;
|
|
4642
|
-
isTemplate: boolean;
|
|
4643
|
-
isAssigned: boolean;
|
|
4644
|
-
isCustomizedOverTemplate?: (boolean) | null;
|
|
4645
|
-
merchantId?: (string) | null;
|
|
4646
|
-
sourceTemplateId?: (string) | null;
|
|
4647
|
-
refundTableDetails?: Array<{
|
|
4648
|
-
id: string;
|
|
4649
|
-
creationTime?: string;
|
|
4650
|
-
creatorId?: (string) | null;
|
|
4651
|
-
lastModificationTime?: (string) | null;
|
|
4652
|
-
lastModifierId?: (string) | null;
|
|
4653
|
-
isDeleted?: boolean;
|
|
4654
|
-
deleterId?: (string) | null;
|
|
4655
|
-
deletionTime?: (string) | null;
|
|
4656
|
-
vatRate: number;
|
|
4657
|
-
minValue: number;
|
|
4658
|
-
maxValue: number;
|
|
4659
|
-
refundAmount: number;
|
|
4660
|
-
refundPercent: number;
|
|
4661
|
-
isLoyalty?: boolean;
|
|
4662
|
-
}> | null;
|
|
4663
|
-
});
|
|
1666
|
+
requestBody?: UniRefund_ContractService_Refunds_RefundTableHeaders_RefundTableHeaderUpdateDto;
|
|
1667
|
+
};
|
|
1668
|
+
|
|
1669
|
+
export type PutApiContractServiceRefundTableHeadersByIdResponse = (UniRefund_ContractService_Refunds_RefundTableHeaders_RefundTableHeaderDto);
|
|
4664
1670
|
|
|
4665
1671
|
export type GetApiContractServiceRefundTableHeadersData = {
|
|
4666
1672
|
isTemplate?: boolean;
|
|
@@ -4668,124 +1674,25 @@ export type GetApiContractServiceRefundTableHeadersData = {
|
|
|
4668
1674
|
skipCount?: number;
|
|
4669
1675
|
};
|
|
4670
1676
|
|
|
4671
|
-
export type GetApiContractServiceRefundTableHeadersResponse = (
|
|
4672
|
-
items?: Array<{
|
|
4673
|
-
id: string;
|
|
4674
|
-
creationTime?: string;
|
|
4675
|
-
creatorId?: (string) | null;
|
|
4676
|
-
lastModificationTime?: (string) | null;
|
|
4677
|
-
lastModifierId?: (string) | null;
|
|
4678
|
-
isDeleted?: boolean;
|
|
4679
|
-
deleterId?: (string) | null;
|
|
4680
|
-
deletionTime?: (string) | null;
|
|
4681
|
-
name: string;
|
|
4682
|
-
isDefault?: boolean;
|
|
4683
|
-
isBundling?: boolean;
|
|
4684
|
-
isTemplate: boolean;
|
|
4685
|
-
isAssigned: boolean;
|
|
4686
|
-
isCustomizedOverTemplate?: (boolean) | null;
|
|
4687
|
-
merchantId?: (string) | null;
|
|
4688
|
-
sourceTemplateId?: (string) | null;
|
|
4689
|
-
}> | null;
|
|
4690
|
-
totalCount?: number;
|
|
4691
|
-
});
|
|
1677
|
+
export type GetApiContractServiceRefundTableHeadersResponse = (PagedResultDto_RefundTableHeaderListDto);
|
|
4692
1678
|
|
|
4693
1679
|
export type PostApiContractServiceRefundTableHeadersData = {
|
|
4694
|
-
requestBody?:
|
|
4695
|
-
|
|
4696
|
-
|
|
4697
|
-
|
|
4698
|
-
|
|
4699
|
-
|
|
4700
|
-
isBundling?: boolean;
|
|
4701
|
-
isTemplate?: boolean;
|
|
4702
|
-
merchantId?: (string) | null;
|
|
4703
|
-
refundTableDetails?: Array<{
|
|
4704
|
-
readonly extraProperties?: {
|
|
4705
|
-
[key: string]: unknown;
|
|
4706
|
-
} | null;
|
|
4707
|
-
vatRate: number;
|
|
4708
|
-
minValue: number;
|
|
4709
|
-
maxValue: number;
|
|
4710
|
-
refundAmount: number;
|
|
4711
|
-
refundPercent: number;
|
|
4712
|
-
isLoyalty?: boolean;
|
|
4713
|
-
}> | null;
|
|
4714
|
-
};
|
|
4715
|
-
};
|
|
4716
|
-
|
|
4717
|
-
export type PostApiContractServiceRefundTableHeadersResponse = ({
|
|
1680
|
+
requestBody?: UniRefund_ContractService_Refunds_RefundTableHeaders_RefundTableHeaderCreateDto;
|
|
1681
|
+
};
|
|
1682
|
+
|
|
1683
|
+
export type PostApiContractServiceRefundTableHeadersResponse = (UniRefund_ContractService_Refunds_RefundTableHeaders_RefundTableHeaderDto);
|
|
1684
|
+
|
|
1685
|
+
export type PostApiContractServiceRefundTableHeadersCloneByIdData = {
|
|
4718
1686
|
id: string;
|
|
4719
|
-
creationTime?: string;
|
|
4720
|
-
creatorId?: (string) | null;
|
|
4721
|
-
lastModificationTime?: (string) | null;
|
|
4722
|
-
lastModifierId?: (string) | null;
|
|
4723
|
-
isDeleted?: boolean;
|
|
4724
|
-
deleterId?: (string) | null;
|
|
4725
|
-
deletionTime?: (string) | null;
|
|
4726
|
-
name: string;
|
|
4727
|
-
isDefault?: boolean;
|
|
4728
|
-
isBundling?: boolean;
|
|
4729
1687
|
isTemplate: boolean;
|
|
4730
|
-
|
|
4731
|
-
|
|
4732
|
-
|
|
4733
|
-
|
|
4734
|
-
refundTableDetails?: Array<{
|
|
4735
|
-
id: string;
|
|
4736
|
-
creationTime?: string;
|
|
4737
|
-
creatorId?: (string) | null;
|
|
4738
|
-
lastModificationTime?: (string) | null;
|
|
4739
|
-
lastModifierId?: (string) | null;
|
|
4740
|
-
isDeleted?: boolean;
|
|
4741
|
-
deleterId?: (string) | null;
|
|
4742
|
-
deletionTime?: (string) | null;
|
|
4743
|
-
vatRate: number;
|
|
4744
|
-
minValue: number;
|
|
4745
|
-
maxValue: number;
|
|
4746
|
-
refundAmount: number;
|
|
4747
|
-
refundPercent: number;
|
|
4748
|
-
isLoyalty?: boolean;
|
|
4749
|
-
}> | null;
|
|
4750
|
-
});
|
|
1688
|
+
merchantId?: string;
|
|
1689
|
+
};
|
|
1690
|
+
|
|
1691
|
+
export type PostApiContractServiceRefundTableHeadersCloneByIdResponse = (UniRefund_ContractService_Refunds_RefundTableHeaders_RefundTableHeaderDto);
|
|
4751
1692
|
|
|
4752
1693
|
export type GetIntegrationApiRefundTableHeadersMerchantsByIdData = {
|
|
4753
1694
|
id: string;
|
|
4754
1695
|
refundTableHeaderId?: string;
|
|
4755
1696
|
};
|
|
4756
1697
|
|
|
4757
|
-
export type GetIntegrationApiRefundTableHeadersMerchantsByIdResponse = (
|
|
4758
|
-
id: string;
|
|
4759
|
-
creationTime?: string;
|
|
4760
|
-
creatorId?: (string) | null;
|
|
4761
|
-
lastModificationTime?: (string) | null;
|
|
4762
|
-
lastModifierId?: (string) | null;
|
|
4763
|
-
isDeleted?: boolean;
|
|
4764
|
-
deleterId?: (string) | null;
|
|
4765
|
-
deletionTime?: (string) | null;
|
|
4766
|
-
name: string;
|
|
4767
|
-
isDefault?: boolean;
|
|
4768
|
-
isBundling?: boolean;
|
|
4769
|
-
isTemplate: boolean;
|
|
4770
|
-
isAssigned: boolean;
|
|
4771
|
-
isCustomizedOverTemplate?: (boolean) | null;
|
|
4772
|
-
merchantId?: (string) | null;
|
|
4773
|
-
sourceTemplateId?: (string) | null;
|
|
4774
|
-
refundTableDetails?: Array<{
|
|
4775
|
-
id: string;
|
|
4776
|
-
creationTime?: string;
|
|
4777
|
-
creatorId?: (string) | null;
|
|
4778
|
-
lastModificationTime?: (string) | null;
|
|
4779
|
-
lastModifierId?: (string) | null;
|
|
4780
|
-
isDeleted?: boolean;
|
|
4781
|
-
deleterId?: (string) | null;
|
|
4782
|
-
deletionTime?: (string) | null;
|
|
4783
|
-
vatRate: number;
|
|
4784
|
-
minValue: number;
|
|
4785
|
-
maxValue: number;
|
|
4786
|
-
refundAmount: number;
|
|
4787
|
-
refundPercent: number;
|
|
4788
|
-
isLoyalty?: boolean;
|
|
4789
|
-
}> | null;
|
|
4790
|
-
contractHeaderId?: string;
|
|
4791
|
-
});
|
|
1698
|
+
export type GetIntegrationApiRefundTableHeadersMerchantsByIdResponse = (UniRefund_ContractService_Refunds_RefundTableHeaders_RefundTableHeaderForTagDto);
|