@ayasofyazilim/saas 0.0.45 → 0.0.46
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 +17527 -17527
- package/CRMService/services.gen.ts +2166 -2166
- package/CRMService/types.gen.ts +4389 -4389
- package/ContractService/schemas.gen.ts +126 -66
- package/ContractService/services.gen.ts +29 -1
- package/ContractService/types.gen.ts +58 -7
- package/LocationService/LocationServiceClient.ts +3 -39
- package/LocationService/schemas.gen.ts +1436 -4933
- package/LocationService/services.gen.ts +195 -1861
- package/LocationService/types.gen.ts +449 -3341
- package/TagService/schemas.gen.ts +496 -266
- package/TagService/types.gen.ts +74 -43
- package/TravellerService/schemas.gen.ts +164 -26
- package/TravellerService/services.gen.ts +16 -2
- package/TravellerService/types.gen.ts +38 -9
- package/package.json +1 -1
|
@@ -1,5 +1,126 @@
|
|
|
1
1
|
// This file is auto-generated by @hey-api/openapi-ts
|
|
2
2
|
|
|
3
|
+
export const $UniRefund_TagService_Invoices_InvoiceRequestDto = {
|
|
4
|
+
type: 'object',
|
|
5
|
+
properties: {
|
|
6
|
+
id: {
|
|
7
|
+
type: 'string',
|
|
8
|
+
format: 'uuid',
|
|
9
|
+
nullable: true
|
|
10
|
+
},
|
|
11
|
+
uuid: {
|
|
12
|
+
type: 'string',
|
|
13
|
+
format: 'uuid'
|
|
14
|
+
},
|
|
15
|
+
invoiceNumber: {
|
|
16
|
+
type: 'string',
|
|
17
|
+
nullable: true
|
|
18
|
+
},
|
|
19
|
+
issueDate: {
|
|
20
|
+
type: 'string',
|
|
21
|
+
format: 'date-time'
|
|
22
|
+
},
|
|
23
|
+
amountPaid: {
|
|
24
|
+
type: 'number',
|
|
25
|
+
format: 'double'
|
|
26
|
+
},
|
|
27
|
+
vatAmount: {
|
|
28
|
+
type: 'number',
|
|
29
|
+
format: 'double'
|
|
30
|
+
},
|
|
31
|
+
taxTotals: {
|
|
32
|
+
type: 'array',
|
|
33
|
+
items: {
|
|
34
|
+
type: 'object',
|
|
35
|
+
properties: {
|
|
36
|
+
taxRate: {
|
|
37
|
+
type: 'number',
|
|
38
|
+
format: 'double'
|
|
39
|
+
},
|
|
40
|
+
taxTotal: {
|
|
41
|
+
type: 'number',
|
|
42
|
+
format: 'double'
|
|
43
|
+
},
|
|
44
|
+
taxableAmount: {
|
|
45
|
+
type: 'number',
|
|
46
|
+
format: 'double'
|
|
47
|
+
}
|
|
48
|
+
},
|
|
49
|
+
additionalProperties: false
|
|
50
|
+
},
|
|
51
|
+
nullable: true
|
|
52
|
+
}
|
|
53
|
+
},
|
|
54
|
+
additionalProperties: false
|
|
55
|
+
} as const;
|
|
56
|
+
|
|
57
|
+
export const $UniRefund_TagService_Merchants_MerchantDetailDto = {
|
|
58
|
+
type: 'object',
|
|
59
|
+
properties: {
|
|
60
|
+
id: {
|
|
61
|
+
type: 'string',
|
|
62
|
+
format: 'uuid'
|
|
63
|
+
},
|
|
64
|
+
name: {
|
|
65
|
+
type: 'string',
|
|
66
|
+
nullable: true
|
|
67
|
+
},
|
|
68
|
+
address: {
|
|
69
|
+
type: 'object',
|
|
70
|
+
properties: {
|
|
71
|
+
id: {
|
|
72
|
+
type: 'string',
|
|
73
|
+
format: 'uuid'
|
|
74
|
+
},
|
|
75
|
+
fullText: {
|
|
76
|
+
type: 'string',
|
|
77
|
+
nullable: true
|
|
78
|
+
}
|
|
79
|
+
},
|
|
80
|
+
additionalProperties: false
|
|
81
|
+
},
|
|
82
|
+
productGroups: {
|
|
83
|
+
type: 'array',
|
|
84
|
+
items: {
|
|
85
|
+
type: 'object',
|
|
86
|
+
properties: {
|
|
87
|
+
id: {
|
|
88
|
+
type: 'string',
|
|
89
|
+
format: 'uuid'
|
|
90
|
+
},
|
|
91
|
+
description: {
|
|
92
|
+
type: 'string',
|
|
93
|
+
nullable: true
|
|
94
|
+
}
|
|
95
|
+
},
|
|
96
|
+
additionalProperties: false
|
|
97
|
+
},
|
|
98
|
+
nullable: true
|
|
99
|
+
}
|
|
100
|
+
},
|
|
101
|
+
additionalProperties: false
|
|
102
|
+
} as const;
|
|
103
|
+
|
|
104
|
+
export const $UniRefund_TagService_Merchants_MerchantRequestDto = {
|
|
105
|
+
required: ['branchId', 'countryCode', 'vatNumber'],
|
|
106
|
+
type: 'object',
|
|
107
|
+
properties: {
|
|
108
|
+
vatNumber: {
|
|
109
|
+
minLength: 1,
|
|
110
|
+
type: 'string'
|
|
111
|
+
},
|
|
112
|
+
countryCode: {
|
|
113
|
+
minLength: 1,
|
|
114
|
+
type: 'string'
|
|
115
|
+
},
|
|
116
|
+
branchId: {
|
|
117
|
+
minLength: 1,
|
|
118
|
+
type: 'string'
|
|
119
|
+
}
|
|
120
|
+
},
|
|
121
|
+
additionalProperties: false
|
|
122
|
+
} as const;
|
|
123
|
+
|
|
3
124
|
export const $UniRefund_TagService_Tags_AddressDto = {
|
|
4
125
|
type: 'object',
|
|
5
126
|
properties: {
|
|
@@ -38,7 +159,7 @@ export const $UniRefund_TagService_Tags_CreateTagRequestDto = {
|
|
|
38
159
|
additionalProperties: false
|
|
39
160
|
},
|
|
40
161
|
traveller: {
|
|
41
|
-
required: ['countryOfResidenceCode', 'documentCountryCode', 'documentNumber', 'firstName', 'lastName'],
|
|
162
|
+
required: ['countryOfResidenceCode', 'documentCountryCode', 'documentNumber', 'expirationDate', 'firstName', 'lastName'],
|
|
42
163
|
type: 'object',
|
|
43
164
|
properties: {
|
|
44
165
|
id: {
|
|
@@ -66,256 +187,129 @@ export const $UniRefund_TagService_Tags_CreateTagRequestDto = {
|
|
|
66
187
|
minLength: 1,
|
|
67
188
|
type: 'string'
|
|
68
189
|
},
|
|
69
|
-
|
|
70
|
-
type: 'string',
|
|
71
|
-
format: 'date-time',
|
|
72
|
-
nullable: true
|
|
73
|
-
}
|
|
74
|
-
},
|
|
75
|
-
additionalProperties: false
|
|
76
|
-
},
|
|
77
|
-
invoice: {
|
|
78
|
-
type: 'object',
|
|
79
|
-
properties: {
|
|
80
|
-
id: {
|
|
81
|
-
type: 'string',
|
|
82
|
-
format: 'uuid',
|
|
83
|
-
nullable: true
|
|
84
|
-
},
|
|
85
|
-
uuid: {
|
|
190
|
+
expirationDate: {
|
|
86
191
|
type: 'string',
|
|
87
|
-
format: '
|
|
88
|
-
nullable: true
|
|
89
|
-
},
|
|
90
|
-
invoiceNumber: {
|
|
91
|
-
type: 'string',
|
|
92
|
-
nullable: true
|
|
192
|
+
format: 'date-time'
|
|
93
193
|
},
|
|
94
|
-
|
|
95
|
-
type: 'string',
|
|
96
|
-
format: 'date-time',
|
|
97
|
-
nullable: true
|
|
98
|
-
},
|
|
99
|
-
amountPaid: {
|
|
100
|
-
type: 'number',
|
|
101
|
-
format: 'double',
|
|
102
|
-
nullable: true
|
|
103
|
-
},
|
|
104
|
-
vatAmount: {
|
|
105
|
-
type: 'number',
|
|
106
|
-
format: 'double',
|
|
107
|
-
nullable: true
|
|
108
|
-
},
|
|
109
|
-
taxTotals: {
|
|
110
|
-
type: 'array',
|
|
111
|
-
items: {
|
|
112
|
-
type: 'object',
|
|
113
|
-
properties: {
|
|
114
|
-
taxRate: {
|
|
115
|
-
type: 'integer',
|
|
116
|
-
format: 'int32',
|
|
117
|
-
nullable: true
|
|
118
|
-
},
|
|
119
|
-
taxTotal: {
|
|
120
|
-
type: 'number',
|
|
121
|
-
format: 'double',
|
|
122
|
-
nullable: true
|
|
123
|
-
},
|
|
124
|
-
taxableAmount: {
|
|
125
|
-
type: 'number',
|
|
126
|
-
format: 'double',
|
|
127
|
-
nullable: true
|
|
128
|
-
}
|
|
129
|
-
},
|
|
130
|
-
additionalProperties: false
|
|
131
|
-
},
|
|
132
|
-
nullable: true
|
|
133
|
-
}
|
|
134
|
-
},
|
|
135
|
-
additionalProperties: false
|
|
136
|
-
},
|
|
137
|
-
exportValidation: {
|
|
138
|
-
type: 'object',
|
|
139
|
-
properties: {
|
|
140
|
-
dateTime: {
|
|
194
|
+
birthDate: {
|
|
141
195
|
type: 'string',
|
|
142
196
|
format: 'date-time',
|
|
143
197
|
nullable: true
|
|
144
|
-
},
|
|
145
|
-
endpoint: {
|
|
146
|
-
type: 'string',
|
|
147
|
-
nullable: true
|
|
148
|
-
},
|
|
149
|
-
referenceId: {
|
|
150
|
-
type: 'string',
|
|
151
|
-
nullable: true
|
|
152
|
-
},
|
|
153
|
-
responseCode: {
|
|
154
|
-
type: 'string',
|
|
155
|
-
nullable: true
|
|
156
|
-
},
|
|
157
|
-
description: {
|
|
158
|
-
type: 'string',
|
|
159
|
-
nullable: true
|
|
160
198
|
}
|
|
161
199
|
},
|
|
162
200
|
additionalProperties: false
|
|
163
|
-
}
|
|
164
|
-
},
|
|
165
|
-
additionalProperties: false
|
|
166
|
-
} as const;
|
|
167
|
-
|
|
168
|
-
export const $UniRefund_TagService_Tags_ExportValidationRequestDto = {
|
|
169
|
-
type: 'object',
|
|
170
|
-
properties: {
|
|
171
|
-
dateTime: {
|
|
172
|
-
type: 'string',
|
|
173
|
-
format: 'date-time',
|
|
174
|
-
nullable: true
|
|
175
|
-
},
|
|
176
|
-
endpoint: {
|
|
177
|
-
type: 'string',
|
|
178
|
-
nullable: true
|
|
179
201
|
},
|
|
180
|
-
|
|
181
|
-
type: 'string',
|
|
182
|
-
nullable: true
|
|
183
|
-
},
|
|
184
|
-
responseCode: {
|
|
185
|
-
type: 'string',
|
|
186
|
-
nullable: true
|
|
187
|
-
},
|
|
188
|
-
description: {
|
|
189
|
-
type: 'string',
|
|
190
|
-
nullable: true
|
|
191
|
-
}
|
|
192
|
-
},
|
|
193
|
-
additionalProperties: false
|
|
194
|
-
} as const;
|
|
195
|
-
|
|
196
|
-
export const $UniRefund_TagService_Tags_InvoiceRequestDto = {
|
|
197
|
-
type: 'object',
|
|
198
|
-
properties: {
|
|
199
|
-
id: {
|
|
200
|
-
type: 'string',
|
|
201
|
-
format: 'uuid',
|
|
202
|
-
nullable: true
|
|
203
|
-
},
|
|
204
|
-
uuid: {
|
|
205
|
-
type: 'string',
|
|
206
|
-
format: 'uuid',
|
|
207
|
-
nullable: true
|
|
208
|
-
},
|
|
209
|
-
invoiceNumber: {
|
|
210
|
-
type: 'string',
|
|
211
|
-
nullable: true
|
|
212
|
-
},
|
|
213
|
-
issueDate: {
|
|
214
|
-
type: 'string',
|
|
215
|
-
format: 'date-time',
|
|
216
|
-
nullable: true
|
|
217
|
-
},
|
|
218
|
-
amountPaid: {
|
|
219
|
-
type: 'number',
|
|
220
|
-
format: 'double',
|
|
221
|
-
nullable: true
|
|
222
|
-
},
|
|
223
|
-
vatAmount: {
|
|
224
|
-
type: 'number',
|
|
225
|
-
format: 'double',
|
|
226
|
-
nullable: true
|
|
227
|
-
},
|
|
228
|
-
taxTotals: {
|
|
202
|
+
invoices: {
|
|
229
203
|
type: 'array',
|
|
230
204
|
items: {
|
|
231
205
|
type: 'object',
|
|
232
206
|
properties: {
|
|
233
|
-
|
|
234
|
-
type: '
|
|
235
|
-
format: '
|
|
207
|
+
id: {
|
|
208
|
+
type: 'string',
|
|
209
|
+
format: 'uuid',
|
|
236
210
|
nullable: true
|
|
237
211
|
},
|
|
238
|
-
|
|
239
|
-
type: '
|
|
240
|
-
format: '
|
|
212
|
+
uuid: {
|
|
213
|
+
type: 'string',
|
|
214
|
+
format: 'uuid'
|
|
215
|
+
},
|
|
216
|
+
invoiceNumber: {
|
|
217
|
+
type: 'string',
|
|
241
218
|
nullable: true
|
|
242
219
|
},
|
|
243
|
-
|
|
220
|
+
issueDate: {
|
|
221
|
+
type: 'string',
|
|
222
|
+
format: 'date-time'
|
|
223
|
+
},
|
|
224
|
+
amountPaid: {
|
|
225
|
+
type: 'number',
|
|
226
|
+
format: 'double'
|
|
227
|
+
},
|
|
228
|
+
vatAmount: {
|
|
244
229
|
type: 'number',
|
|
245
|
-
format: 'double'
|
|
230
|
+
format: 'double'
|
|
231
|
+
},
|
|
232
|
+
taxTotals: {
|
|
233
|
+
type: 'array',
|
|
234
|
+
items: {
|
|
235
|
+
type: 'object',
|
|
236
|
+
properties: {
|
|
237
|
+
taxRate: {
|
|
238
|
+
type: 'number',
|
|
239
|
+
format: 'double'
|
|
240
|
+
},
|
|
241
|
+
taxTotal: {
|
|
242
|
+
type: 'number',
|
|
243
|
+
format: 'double'
|
|
244
|
+
},
|
|
245
|
+
taxableAmount: {
|
|
246
|
+
type: 'number',
|
|
247
|
+
format: 'double'
|
|
248
|
+
}
|
|
249
|
+
},
|
|
250
|
+
additionalProperties: false
|
|
251
|
+
},
|
|
246
252
|
nullable: true
|
|
247
253
|
}
|
|
248
254
|
},
|
|
249
255
|
additionalProperties: false
|
|
250
256
|
},
|
|
251
257
|
nullable: true
|
|
252
|
-
}
|
|
253
|
-
},
|
|
254
|
-
additionalProperties: false
|
|
255
|
-
} as const;
|
|
256
|
-
|
|
257
|
-
export const $UniRefund_TagService_Tags_MerchantDetailDto = {
|
|
258
|
-
type: 'object',
|
|
259
|
-
properties: {
|
|
260
|
-
id: {
|
|
261
|
-
type: 'string',
|
|
262
|
-
format: 'uuid'
|
|
263
258
|
},
|
|
264
|
-
|
|
265
|
-
type: 'string',
|
|
266
|
-
nullable: true
|
|
267
|
-
},
|
|
268
|
-
address: {
|
|
259
|
+
exportValidation: {
|
|
269
260
|
type: 'object',
|
|
270
261
|
properties: {
|
|
271
|
-
|
|
262
|
+
dateTime: {
|
|
272
263
|
type: 'string',
|
|
273
|
-
format: '
|
|
264
|
+
format: 'date-time',
|
|
265
|
+
nullable: true
|
|
274
266
|
},
|
|
275
|
-
|
|
267
|
+
endpoint: {
|
|
276
268
|
type: 'string',
|
|
277
|
-
nullable: true
|
|
278
|
-
}
|
|
279
|
-
},
|
|
280
|
-
additionalProperties: false
|
|
281
|
-
},
|
|
282
|
-
productGroups: {
|
|
283
|
-
type: 'array',
|
|
284
|
-
items: {
|
|
285
|
-
type: 'object',
|
|
286
|
-
properties: {
|
|
287
|
-
id: {
|
|
288
|
-
type: 'string',
|
|
289
|
-
format: 'uuid'
|
|
290
|
-
},
|
|
291
|
-
description: {
|
|
292
|
-
type: 'string',
|
|
293
|
-
nullable: true
|
|
294
|
-
}
|
|
269
|
+
nullable: true
|
|
295
270
|
},
|
|
296
|
-
|
|
271
|
+
referenceId: {
|
|
272
|
+
type: 'string',
|
|
273
|
+
nullable: true
|
|
274
|
+
},
|
|
275
|
+
responseCode: {
|
|
276
|
+
type: 'string',
|
|
277
|
+
nullable: true
|
|
278
|
+
},
|
|
279
|
+
description: {
|
|
280
|
+
type: 'string',
|
|
281
|
+
nullable: true
|
|
282
|
+
}
|
|
297
283
|
},
|
|
298
|
-
|
|
284
|
+
additionalProperties: false
|
|
299
285
|
}
|
|
300
286
|
},
|
|
301
287
|
additionalProperties: false
|
|
302
288
|
} as const;
|
|
303
289
|
|
|
304
|
-
export const $
|
|
305
|
-
required: ['branchId', 'countryCode', 'vatNumber'],
|
|
290
|
+
export const $UniRefund_TagService_Tags_ExportValidationRequestDto = {
|
|
306
291
|
type: 'object',
|
|
307
292
|
properties: {
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
293
|
+
dateTime: {
|
|
294
|
+
type: 'string',
|
|
295
|
+
format: 'date-time',
|
|
296
|
+
nullable: true
|
|
311
297
|
},
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
298
|
+
endpoint: {
|
|
299
|
+
type: 'string',
|
|
300
|
+
nullable: true
|
|
315
301
|
},
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
302
|
+
referenceId: {
|
|
303
|
+
type: 'string',
|
|
304
|
+
nullable: true
|
|
305
|
+
},
|
|
306
|
+
responseCode: {
|
|
307
|
+
type: 'string',
|
|
308
|
+
nullable: true
|
|
309
|
+
},
|
|
310
|
+
description: {
|
|
311
|
+
type: 'string',
|
|
312
|
+
nullable: true
|
|
319
313
|
}
|
|
320
314
|
},
|
|
321
315
|
additionalProperties: false
|
|
@@ -336,6 +330,11 @@ export const $UniRefund_TagService_Tags_ProductGroupDto = {
|
|
|
336
330
|
additionalProperties: false
|
|
337
331
|
} as const;
|
|
338
332
|
|
|
333
|
+
export const $UniRefund_TagService_Tags_RefundType = {
|
|
334
|
+
enum: ['None', 'Cash', 'CreditorDebitCard'],
|
|
335
|
+
type: 'string'
|
|
336
|
+
} as const;
|
|
337
|
+
|
|
339
338
|
export const $UniRefund_TagService_Tags_TagDetailDto = {
|
|
340
339
|
type: 'object',
|
|
341
340
|
properties: {
|
|
@@ -348,8 +347,12 @@ export const $UniRefund_TagService_Tags_TagDetailDto = {
|
|
|
348
347
|
nullable: true
|
|
349
348
|
},
|
|
350
349
|
status: {
|
|
351
|
-
|
|
352
|
-
|
|
350
|
+
enum: ['None', 'Open', 'PreIssued', 'Issued', 'WaitingGoodsValidation', 'WaitingStampValidation', 'Declined', 'ExportValidated', 'PaymentBlocked', 'PaymentInProgress', 'PaymentProblem', 'Paid', 'Cancelled', 'Expired', 'Correction', 'OptedOut'],
|
|
351
|
+
type: 'string'
|
|
352
|
+
},
|
|
353
|
+
refundType: {
|
|
354
|
+
enum: ['None', 'Cash', 'CreditorDebitCard'],
|
|
355
|
+
type: 'string'
|
|
353
356
|
},
|
|
354
357
|
issueDate: {
|
|
355
358
|
type: 'string',
|
|
@@ -408,39 +411,80 @@ export const $UniRefund_TagService_Tags_TagDetailDto = {
|
|
|
408
411
|
additionalProperties: false
|
|
409
412
|
},
|
|
410
413
|
traveller: {
|
|
414
|
+
required: ['id', 'personalIdentificationProfiles'],
|
|
411
415
|
type: 'object',
|
|
412
416
|
properties: {
|
|
413
417
|
id: {
|
|
414
418
|
type: 'string',
|
|
415
419
|
format: 'uuid'
|
|
416
420
|
},
|
|
417
|
-
|
|
418
|
-
type: 'string',
|
|
419
|
-
nullable: true
|
|
420
|
-
},
|
|
421
|
-
countryOfResidenceCode: {
|
|
422
|
-
type: 'string',
|
|
423
|
-
nullable: true
|
|
424
|
-
},
|
|
425
|
-
countryOfResidence: {
|
|
426
|
-
type: 'string',
|
|
427
|
-
nullable: true
|
|
428
|
-
},
|
|
429
|
-
nationalityCode: {
|
|
421
|
+
language: {
|
|
430
422
|
type: 'string',
|
|
431
423
|
nullable: true
|
|
432
424
|
},
|
|
433
|
-
|
|
425
|
+
userAccountId: {
|
|
434
426
|
type: 'string',
|
|
427
|
+
format: 'uuid',
|
|
435
428
|
nullable: true
|
|
436
429
|
},
|
|
437
|
-
|
|
438
|
-
|
|
439
|
-
|
|
430
|
+
gender: {
|
|
431
|
+
enum: ['MALE', 'FEMALE'],
|
|
432
|
+
type: 'string'
|
|
440
433
|
},
|
|
441
|
-
|
|
442
|
-
type: '
|
|
443
|
-
|
|
434
|
+
personalIdentificationProfiles: {
|
|
435
|
+
type: 'array',
|
|
436
|
+
items: {
|
|
437
|
+
required: ['countryOfResidence', 'countryOfResidenceCode2', 'expirationDate', 'firstName', 'id', 'identificationType', 'lastName', 'nationality', 'nationalityCode2', 'travelDocumentNumber'],
|
|
438
|
+
type: 'object',
|
|
439
|
+
properties: {
|
|
440
|
+
id: {
|
|
441
|
+
type: 'string',
|
|
442
|
+
format: 'uuid'
|
|
443
|
+
},
|
|
444
|
+
travelDocumentNumber: {
|
|
445
|
+
minLength: 1,
|
|
446
|
+
type: 'string'
|
|
447
|
+
},
|
|
448
|
+
countryOfResidenceCode2: {
|
|
449
|
+
minLength: 1,
|
|
450
|
+
type: 'string'
|
|
451
|
+
},
|
|
452
|
+
countryOfResidence: {
|
|
453
|
+
minLength: 1,
|
|
454
|
+
type: 'string'
|
|
455
|
+
},
|
|
456
|
+
nationalityCode2: {
|
|
457
|
+
minLength: 1,
|
|
458
|
+
type: 'string'
|
|
459
|
+
},
|
|
460
|
+
nationality: {
|
|
461
|
+
minLength: 1,
|
|
462
|
+
type: 'string'
|
|
463
|
+
},
|
|
464
|
+
firstName: {
|
|
465
|
+
minLength: 1,
|
|
466
|
+
type: 'string'
|
|
467
|
+
},
|
|
468
|
+
lastName: {
|
|
469
|
+
minLength: 1,
|
|
470
|
+
type: 'string'
|
|
471
|
+
},
|
|
472
|
+
dateOfBirth: {
|
|
473
|
+
type: 'string',
|
|
474
|
+
format: 'date-time',
|
|
475
|
+
nullable: true
|
|
476
|
+
},
|
|
477
|
+
expirationDate: {
|
|
478
|
+
type: 'string',
|
|
479
|
+
format: 'date-time'
|
|
480
|
+
},
|
|
481
|
+
identificationType: {
|
|
482
|
+
enum: ['Passport'],
|
|
483
|
+
type: 'string'
|
|
484
|
+
}
|
|
485
|
+
},
|
|
486
|
+
additionalProperties: false
|
|
487
|
+
}
|
|
444
488
|
}
|
|
445
489
|
},
|
|
446
490
|
additionalProperties: false
|
|
@@ -461,8 +505,12 @@ export const $UniRefund_TagService_Tags_TagDto = {
|
|
|
461
505
|
nullable: true
|
|
462
506
|
},
|
|
463
507
|
status: {
|
|
464
|
-
|
|
465
|
-
|
|
508
|
+
enum: ['None', 'Open', 'PreIssued', 'Issued', 'WaitingGoodsValidation', 'WaitingStampValidation', 'Declined', 'ExportValidated', 'PaymentBlocked', 'PaymentInProgress', 'PaymentProblem', 'Paid', 'Cancelled', 'Expired', 'Correction', 'OptedOut'],
|
|
509
|
+
type: 'string'
|
|
510
|
+
},
|
|
511
|
+
refundType: {
|
|
512
|
+
enum: ['None', 'Cash', 'CreditorDebitCard'],
|
|
513
|
+
type: 'string'
|
|
466
514
|
},
|
|
467
515
|
issueDate: {
|
|
468
516
|
type: 'string',
|
|
@@ -513,6 +561,52 @@ export const $UniRefund_TagService_Tags_TagDto = {
|
|
|
513
561
|
type: 'string',
|
|
514
562
|
format: 'uuid',
|
|
515
563
|
nullable: true
|
|
564
|
+
},
|
|
565
|
+
tagTotals: {
|
|
566
|
+
type: 'array',
|
|
567
|
+
items: {
|
|
568
|
+
type: 'object',
|
|
569
|
+
properties: {
|
|
570
|
+
totalType: {
|
|
571
|
+
enum: ['None', 'SalesAmount', 'VatAmount', 'GrossRefund', 'RefundFee', 'AgentRefundFee', 'Refund'],
|
|
572
|
+
type: 'string'
|
|
573
|
+
},
|
|
574
|
+
amount: {
|
|
575
|
+
type: 'number',
|
|
576
|
+
format: 'double'
|
|
577
|
+
},
|
|
578
|
+
description: {
|
|
579
|
+
type: 'string',
|
|
580
|
+
nullable: true
|
|
581
|
+
}
|
|
582
|
+
},
|
|
583
|
+
additionalProperties: false
|
|
584
|
+
},
|
|
585
|
+
nullable: true
|
|
586
|
+
}
|
|
587
|
+
},
|
|
588
|
+
additionalProperties: false
|
|
589
|
+
} as const;
|
|
590
|
+
|
|
591
|
+
export const $UniRefund_TagService_Tags_TagStatusType = {
|
|
592
|
+
enum: ['None', 'Open', 'PreIssued', 'Issued', 'WaitingGoodsValidation', 'WaitingStampValidation', 'Declined', 'ExportValidated', 'PaymentBlocked', 'PaymentInProgress', 'PaymentProblem', 'Paid', 'Cancelled', 'Expired', 'Correction', 'OptedOut'],
|
|
593
|
+
type: 'string'
|
|
594
|
+
} as const;
|
|
595
|
+
|
|
596
|
+
export const $UniRefund_TagService_Tags_TagTotalDto = {
|
|
597
|
+
type: 'object',
|
|
598
|
+
properties: {
|
|
599
|
+
totalType: {
|
|
600
|
+
enum: ['None', 'SalesAmount', 'VatAmount', 'GrossRefund', 'RefundFee', 'AgentRefundFee', 'Refund'],
|
|
601
|
+
type: 'string'
|
|
602
|
+
},
|
|
603
|
+
amount: {
|
|
604
|
+
type: 'number',
|
|
605
|
+
format: 'double'
|
|
606
|
+
},
|
|
607
|
+
description: {
|
|
608
|
+
type: 'string',
|
|
609
|
+
nullable: true
|
|
516
610
|
}
|
|
517
611
|
},
|
|
518
612
|
additionalProperties: false
|
|
@@ -522,65 +616,108 @@ export const $UniRefund_TagService_Tags_TaxTotalDto = {
|
|
|
522
616
|
type: 'object',
|
|
523
617
|
properties: {
|
|
524
618
|
taxRate: {
|
|
525
|
-
type: '
|
|
526
|
-
format: '
|
|
527
|
-
nullable: true
|
|
619
|
+
type: 'number',
|
|
620
|
+
format: 'double'
|
|
528
621
|
},
|
|
529
622
|
taxTotal: {
|
|
530
623
|
type: 'number',
|
|
531
|
-
format: 'double'
|
|
532
|
-
nullable: true
|
|
624
|
+
format: 'double'
|
|
533
625
|
},
|
|
534
626
|
taxableAmount: {
|
|
535
627
|
type: 'number',
|
|
536
|
-
format: 'double'
|
|
537
|
-
nullable: true
|
|
628
|
+
format: 'double'
|
|
538
629
|
}
|
|
539
630
|
},
|
|
540
631
|
additionalProperties: false
|
|
541
632
|
} as const;
|
|
542
633
|
|
|
543
|
-
export const $
|
|
634
|
+
export const $UniRefund_TagService_Tags_TotalType = {
|
|
635
|
+
enum: ['None', 'SalesAmount', 'VatAmount', 'GrossRefund', 'RefundFee', 'AgentRefundFee', 'Refund'],
|
|
636
|
+
type: 'string'
|
|
637
|
+
} as const;
|
|
638
|
+
|
|
639
|
+
export const $UniRefund_TagService_Travellers_TravellerDetailDto = {
|
|
640
|
+
required: ['id', 'personalIdentificationProfiles'],
|
|
544
641
|
type: 'object',
|
|
545
642
|
properties: {
|
|
546
643
|
id: {
|
|
547
644
|
type: 'string',
|
|
548
645
|
format: 'uuid'
|
|
549
646
|
},
|
|
550
|
-
|
|
551
|
-
type: 'string',
|
|
552
|
-
nullable: true
|
|
553
|
-
},
|
|
554
|
-
countryOfResidenceCode: {
|
|
555
|
-
type: 'string',
|
|
556
|
-
nullable: true
|
|
557
|
-
},
|
|
558
|
-
countryOfResidence: {
|
|
559
|
-
type: 'string',
|
|
560
|
-
nullable: true
|
|
561
|
-
},
|
|
562
|
-
nationalityCode: {
|
|
647
|
+
language: {
|
|
563
648
|
type: 'string',
|
|
564
649
|
nullable: true
|
|
565
650
|
},
|
|
566
|
-
|
|
651
|
+
userAccountId: {
|
|
567
652
|
type: 'string',
|
|
653
|
+
format: 'uuid',
|
|
568
654
|
nullable: true
|
|
569
655
|
},
|
|
570
|
-
|
|
571
|
-
|
|
572
|
-
|
|
656
|
+
gender: {
|
|
657
|
+
enum: ['MALE', 'FEMALE'],
|
|
658
|
+
type: 'string'
|
|
573
659
|
},
|
|
574
|
-
|
|
575
|
-
type: '
|
|
576
|
-
|
|
660
|
+
personalIdentificationProfiles: {
|
|
661
|
+
type: 'array',
|
|
662
|
+
items: {
|
|
663
|
+
required: ['countryOfResidence', 'countryOfResidenceCode2', 'expirationDate', 'firstName', 'id', 'identificationType', 'lastName', 'nationality', 'nationalityCode2', 'travelDocumentNumber'],
|
|
664
|
+
type: 'object',
|
|
665
|
+
properties: {
|
|
666
|
+
id: {
|
|
667
|
+
type: 'string',
|
|
668
|
+
format: 'uuid'
|
|
669
|
+
},
|
|
670
|
+
travelDocumentNumber: {
|
|
671
|
+
minLength: 1,
|
|
672
|
+
type: 'string'
|
|
673
|
+
},
|
|
674
|
+
countryOfResidenceCode2: {
|
|
675
|
+
minLength: 1,
|
|
676
|
+
type: 'string'
|
|
677
|
+
},
|
|
678
|
+
countryOfResidence: {
|
|
679
|
+
minLength: 1,
|
|
680
|
+
type: 'string'
|
|
681
|
+
},
|
|
682
|
+
nationalityCode2: {
|
|
683
|
+
minLength: 1,
|
|
684
|
+
type: 'string'
|
|
685
|
+
},
|
|
686
|
+
nationality: {
|
|
687
|
+
minLength: 1,
|
|
688
|
+
type: 'string'
|
|
689
|
+
},
|
|
690
|
+
firstName: {
|
|
691
|
+
minLength: 1,
|
|
692
|
+
type: 'string'
|
|
693
|
+
},
|
|
694
|
+
lastName: {
|
|
695
|
+
minLength: 1,
|
|
696
|
+
type: 'string'
|
|
697
|
+
},
|
|
698
|
+
dateOfBirth: {
|
|
699
|
+
type: 'string',
|
|
700
|
+
format: 'date-time',
|
|
701
|
+
nullable: true
|
|
702
|
+
},
|
|
703
|
+
expirationDate: {
|
|
704
|
+
type: 'string',
|
|
705
|
+
format: 'date-time'
|
|
706
|
+
},
|
|
707
|
+
identificationType: {
|
|
708
|
+
enum: ['Passport'],
|
|
709
|
+
type: 'string'
|
|
710
|
+
}
|
|
711
|
+
},
|
|
712
|
+
additionalProperties: false
|
|
713
|
+
}
|
|
577
714
|
}
|
|
578
715
|
},
|
|
579
716
|
additionalProperties: false
|
|
580
717
|
} as const;
|
|
581
718
|
|
|
582
|
-
export const $
|
|
583
|
-
required: ['countryOfResidenceCode', 'documentCountryCode', 'documentNumber', 'firstName', 'lastName'],
|
|
719
|
+
export const $UniRefund_TagService_Travellers_TravellerRequestDto = {
|
|
720
|
+
required: ['countryOfResidenceCode', 'documentCountryCode', 'documentNumber', 'expirationDate', 'firstName', 'lastName'],
|
|
584
721
|
type: 'object',
|
|
585
722
|
properties: {
|
|
586
723
|
id: {
|
|
@@ -608,6 +745,10 @@ export const $UniRefund_TagService_Tags_TravellerRequestDto = {
|
|
|
608
745
|
minLength: 1,
|
|
609
746
|
type: 'string'
|
|
610
747
|
},
|
|
748
|
+
expirationDate: {
|
|
749
|
+
type: 'string',
|
|
750
|
+
format: 'date-time'
|
|
751
|
+
},
|
|
611
752
|
birthDate: {
|
|
612
753
|
type: 'string',
|
|
613
754
|
format: 'date-time',
|
|
@@ -617,6 +758,69 @@ export const $UniRefund_TagService_Tags_TravellerRequestDto = {
|
|
|
617
758
|
additionalProperties: false
|
|
618
759
|
} as const;
|
|
619
760
|
|
|
761
|
+
export const $UniRefund_TravellerService_Enums_GenderTypeCode = {
|
|
762
|
+
enum: ['MALE', 'FEMALE'],
|
|
763
|
+
type: 'string'
|
|
764
|
+
} as const;
|
|
765
|
+
|
|
766
|
+
export const $UniRefund_TravellerService_Enums_PersonalIdentificationTypeCode = {
|
|
767
|
+
enum: ['Passport'],
|
|
768
|
+
type: 'string'
|
|
769
|
+
} as const;
|
|
770
|
+
|
|
771
|
+
export const $UniRefund_TravellerService_PersonalIdentificationCommonDatas_PersonalIdentificationProfileDto = {
|
|
772
|
+
required: ['countryOfResidence', 'countryOfResidenceCode2', 'expirationDate', 'firstName', 'id', 'identificationType', 'lastName', 'nationality', 'nationalityCode2', 'travelDocumentNumber'],
|
|
773
|
+
type: 'object',
|
|
774
|
+
properties: {
|
|
775
|
+
id: {
|
|
776
|
+
type: 'string',
|
|
777
|
+
format: 'uuid'
|
|
778
|
+
},
|
|
779
|
+
travelDocumentNumber: {
|
|
780
|
+
minLength: 1,
|
|
781
|
+
type: 'string'
|
|
782
|
+
},
|
|
783
|
+
countryOfResidenceCode2: {
|
|
784
|
+
minLength: 1,
|
|
785
|
+
type: 'string'
|
|
786
|
+
},
|
|
787
|
+
countryOfResidence: {
|
|
788
|
+
minLength: 1,
|
|
789
|
+
type: 'string'
|
|
790
|
+
},
|
|
791
|
+
nationalityCode2: {
|
|
792
|
+
minLength: 1,
|
|
793
|
+
type: 'string'
|
|
794
|
+
},
|
|
795
|
+
nationality: {
|
|
796
|
+
minLength: 1,
|
|
797
|
+
type: 'string'
|
|
798
|
+
},
|
|
799
|
+
firstName: {
|
|
800
|
+
minLength: 1,
|
|
801
|
+
type: 'string'
|
|
802
|
+
},
|
|
803
|
+
lastName: {
|
|
804
|
+
minLength: 1,
|
|
805
|
+
type: 'string'
|
|
806
|
+
},
|
|
807
|
+
dateOfBirth: {
|
|
808
|
+
type: 'string',
|
|
809
|
+
format: 'date-time',
|
|
810
|
+
nullable: true
|
|
811
|
+
},
|
|
812
|
+
expirationDate: {
|
|
813
|
+
type: 'string',
|
|
814
|
+
format: 'date-time'
|
|
815
|
+
},
|
|
816
|
+
identificationType: {
|
|
817
|
+
enum: ['Passport'],
|
|
818
|
+
type: 'string'
|
|
819
|
+
}
|
|
820
|
+
},
|
|
821
|
+
additionalProperties: false
|
|
822
|
+
} as const;
|
|
823
|
+
|
|
620
824
|
export const $Volo_Abp_Application_Dtos_PagedResultDto_1__UniRefund_TagService_Tags_TagDto__UniRefund_TagService_Application_Contracts__Version_1_0_0_0__Culture_neutral__PublicKeyToken_null__ = {
|
|
621
825
|
type: 'object',
|
|
622
826
|
properties: {
|
|
@@ -634,8 +838,12 @@ export const $Volo_Abp_Application_Dtos_PagedResultDto_1__UniRefund_TagService_T
|
|
|
634
838
|
nullable: true
|
|
635
839
|
},
|
|
636
840
|
status: {
|
|
637
|
-
|
|
638
|
-
|
|
841
|
+
enum: ['None', 'Open', 'PreIssued', 'Issued', 'WaitingGoodsValidation', 'WaitingStampValidation', 'Declined', 'ExportValidated', 'PaymentBlocked', 'PaymentInProgress', 'PaymentProblem', 'Paid', 'Cancelled', 'Expired', 'Correction', 'OptedOut'],
|
|
842
|
+
type: 'string'
|
|
843
|
+
},
|
|
844
|
+
refundType: {
|
|
845
|
+
enum: ['None', 'Cash', 'CreditorDebitCard'],
|
|
846
|
+
type: 'string'
|
|
639
847
|
},
|
|
640
848
|
issueDate: {
|
|
641
849
|
type: 'string',
|
|
@@ -686,6 +894,28 @@ export const $Volo_Abp_Application_Dtos_PagedResultDto_1__UniRefund_TagService_T
|
|
|
686
894
|
type: 'string',
|
|
687
895
|
format: 'uuid',
|
|
688
896
|
nullable: true
|
|
897
|
+
},
|
|
898
|
+
tagTotals: {
|
|
899
|
+
type: 'array',
|
|
900
|
+
items: {
|
|
901
|
+
type: 'object',
|
|
902
|
+
properties: {
|
|
903
|
+
totalType: {
|
|
904
|
+
enum: ['None', 'SalesAmount', 'VatAmount', 'GrossRefund', 'RefundFee', 'AgentRefundFee', 'Refund'],
|
|
905
|
+
type: 'string'
|
|
906
|
+
},
|
|
907
|
+
amount: {
|
|
908
|
+
type: 'number',
|
|
909
|
+
format: 'double'
|
|
910
|
+
},
|
|
911
|
+
description: {
|
|
912
|
+
type: 'string',
|
|
913
|
+
nullable: true
|
|
914
|
+
}
|
|
915
|
+
},
|
|
916
|
+
additionalProperties: false
|
|
917
|
+
},
|
|
918
|
+
nullable: true
|
|
689
919
|
}
|
|
690
920
|
},
|
|
691
921
|
additionalProperties: false
|