@voyantjs/bookings-ui 0.16.0 → 0.17.0
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/README.md +11 -0
- package/dist/components/booking-activity-timeline.d.ts.map +1 -1
- package/dist/components/booking-activity-timeline.js +34 -14
- package/dist/components/booking-cancellation-dialog.d.ts.map +1 -1
- package/dist/components/booking-cancellation-dialog.js +15 -16
- package/dist/components/booking-create-dialog.d.ts.map +1 -1
- package/dist/components/booking-create-dialog.js +77 -13
- package/dist/components/booking-dialog.d.ts.map +1 -1
- package/dist/components/booking-dialog.js +27 -21
- package/dist/components/booking-document-dialog.d.ts.map +1 -1
- package/dist/components/booking-document-dialog.js +27 -13
- package/dist/components/booking-document-list.d.ts.map +1 -1
- package/dist/components/booking-document-list.js +9 -4
- package/dist/components/booking-group-link-dialog.d.ts.map +1 -1
- package/dist/components/booking-group-link-dialog.js +17 -6
- package/dist/components/booking-group-section.d.ts.map +1 -1
- package/dist/components/booking-group-section.js +8 -2
- package/dist/components/booking-guarantee-dialog.d.ts.map +1 -1
- package/dist/components/booking-guarantee-dialog.js +30 -14
- package/dist/components/booking-guarantee-list.d.ts.map +1 -1
- package/dist/components/booking-guarantee-list.js +11 -8
- package/dist/components/booking-item-dialog.d.ts.map +1 -1
- package/dist/components/booking-item-dialog.js +34 -20
- package/dist/components/booking-item-list.d.ts.map +1 -1
- package/dist/components/booking-item-list.js +10 -9
- package/dist/components/booking-item-travelers.d.ts.map +1 -1
- package/dist/components/booking-item-travelers.js +9 -4
- package/dist/components/booking-list.d.ts.map +1 -1
- package/dist/components/booking-list.js +17 -8
- package/dist/components/booking-notes.d.ts.map +1 -1
- package/dist/components/booking-notes.js +5 -2
- package/dist/components/booking-payment-schedule-dialog.d.ts.map +1 -1
- package/dist/components/booking-payment-schedule-dialog.js +31 -12
- package/dist/components/booking-payment-schedule-list.d.ts.map +1 -1
- package/dist/components/booking-payment-schedule-list.js +7 -6
- package/dist/components/booking-payments-summary.d.ts.map +1 -1
- package/dist/components/booking-payments-summary.js +7 -4
- package/dist/components/file-dropzone.d.ts.map +1 -1
- package/dist/components/file-dropzone.js +25 -15
- package/dist/components/passengers-section.d.ts.map +1 -1
- package/dist/components/passengers-section.js +3 -17
- package/dist/components/payment-schedule-section.d.ts.map +1 -1
- package/dist/components/payment-schedule-section.js +3 -14
- package/dist/components/person-picker-section.d.ts.map +1 -1
- package/dist/components/person-picker-section.js +3 -19
- package/dist/components/price-breakdown-section.d.ts.map +1 -1
- package/dist/components/price-breakdown-section.js +15 -18
- package/dist/components/product-picker-section.d.ts.map +1 -1
- package/dist/components/product-picker-section.js +3 -8
- package/dist/components/rooms-stepper-section.d.ts.map +1 -1
- package/dist/components/rooms-stepper-section.js +4 -9
- package/dist/components/shared-room-section.d.ts.map +1 -1
- package/dist/components/shared-room-section.js +3 -9
- package/dist/components/status-change-dialog.d.ts.map +1 -1
- package/dist/components/status-change-dialog.js +6 -1
- package/dist/components/supplier-status-dialog.d.ts.map +1 -1
- package/dist/components/supplier-status-dialog.js +31 -15
- package/dist/components/supplier-status-list.d.ts.map +1 -1
- package/dist/components/supplier-status-list.js +10 -2
- package/dist/components/traveler-dialog.d.ts.map +1 -1
- package/dist/components/traveler-dialog.js +17 -8
- package/dist/components/traveler-list.d.ts.map +1 -1
- package/dist/components/traveler-list.js +5 -3
- package/dist/components/voucher-picker-section.d.ts.map +1 -1
- package/dist/components/voucher-picker-section.js +11 -26
- package/dist/i18n/en.d.ts +797 -0
- package/dist/i18n/en.d.ts.map +1 -0
- package/dist/i18n/en.js +796 -0
- package/dist/i18n/index.d.ts +5 -0
- package/dist/i18n/index.d.ts.map +1 -0
- package/dist/i18n/index.js +3 -0
- package/dist/i18n/messages.d.ts +684 -0
- package/dist/i18n/messages.d.ts.map +1 -0
- package/dist/i18n/messages.js +1 -0
- package/dist/i18n/provider.d.ts +1617 -0
- package/dist/i18n/provider.d.ts.map +1 -0
- package/dist/i18n/provider.js +45 -0
- package/dist/i18n/ro.d.ts +797 -0
- package/dist/i18n/ro.d.ts.map +1 -0
- package/dist/i18n/ro.js +796 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +1 -0
- package/package.json +32 -17
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
export { bookingsUiEn } from "./en";
|
|
2
|
+
export type { BookingsUiMessages } from "./messages";
|
|
3
|
+
export { type BookingsUiMessageOverrides, BookingsUiMessagesProvider, bookingsUiMessageDefinitions, formatMessage, getBookingsUiI18n, resolveBookingsUiMessages, useBookingsUiI18n, useBookingsUiI18nOrDefault, useBookingsUiMessages, useBookingsUiMessagesOrDefault, } from "./provider";
|
|
4
|
+
export { bookingsUiRo } from "./ro";
|
|
5
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/i18n/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,YAAY,EAAE,MAAM,MAAM,CAAA;AACnC,YAAY,EAAE,kBAAkB,EAAE,MAAM,YAAY,CAAA;AACpD,OAAO,EACL,KAAK,0BAA0B,EAC/B,0BAA0B,EAC1B,4BAA4B,EAC5B,aAAa,EACb,iBAAiB,EACjB,yBAAyB,EACzB,iBAAiB,EACjB,0BAA0B,EAC1B,qBAAqB,EACrB,8BAA8B,GAC/B,MAAM,YAAY,CAAA;AACnB,OAAO,EAAE,YAAY,EAAE,MAAM,MAAM,CAAA"}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
export { bookingsUiEn } from "./en";
|
|
2
|
+
export { BookingsUiMessagesProvider, bookingsUiMessageDefinitions, formatMessage, getBookingsUiI18n, resolveBookingsUiMessages, useBookingsUiI18n, useBookingsUiI18nOrDefault, useBookingsUiMessages, useBookingsUiMessagesOrDefault, } from "./provider";
|
|
3
|
+
export { bookingsUiRo } from "./ro";
|
|
@@ -0,0 +1,684 @@
|
|
|
1
|
+
export type BookingsUiMessages = {
|
|
2
|
+
common: {
|
|
3
|
+
cancel: string;
|
|
4
|
+
saveChanges: string;
|
|
5
|
+
add: string;
|
|
6
|
+
loading: string;
|
|
7
|
+
bookingStatusLabels: Record<"draft" | "on_hold" | "confirmed" | "in_progress" | "completed" | "expired" | "cancelled", string>;
|
|
8
|
+
supplierStatusLabels: Record<"pending" | "confirmed" | "rejected" | "cancelled", string>;
|
|
9
|
+
};
|
|
10
|
+
travelerDialog: {
|
|
11
|
+
titles: {
|
|
12
|
+
create: string;
|
|
13
|
+
edit: string;
|
|
14
|
+
};
|
|
15
|
+
fields: {
|
|
16
|
+
firstName: string;
|
|
17
|
+
lastName: string;
|
|
18
|
+
email: string;
|
|
19
|
+
phone: string;
|
|
20
|
+
specialRequests: string;
|
|
21
|
+
};
|
|
22
|
+
placeholders: {
|
|
23
|
+
firstName: string;
|
|
24
|
+
lastName: string;
|
|
25
|
+
email: string;
|
|
26
|
+
phone: string;
|
|
27
|
+
specialRequests: string;
|
|
28
|
+
};
|
|
29
|
+
validation: {
|
|
30
|
+
firstNameRequired: string;
|
|
31
|
+
lastNameRequired: string;
|
|
32
|
+
};
|
|
33
|
+
actions: {
|
|
34
|
+
addTraveler: string;
|
|
35
|
+
};
|
|
36
|
+
};
|
|
37
|
+
travelerList: {
|
|
38
|
+
title: string;
|
|
39
|
+
addTraveler: string;
|
|
40
|
+
empty: string;
|
|
41
|
+
values: {
|
|
42
|
+
emailUnavailable: string;
|
|
43
|
+
phoneUnavailable: string;
|
|
44
|
+
};
|
|
45
|
+
columns: {
|
|
46
|
+
name: string;
|
|
47
|
+
email: string;
|
|
48
|
+
phone: string;
|
|
49
|
+
};
|
|
50
|
+
actions: {
|
|
51
|
+
deleteConfirm: string;
|
|
52
|
+
};
|
|
53
|
+
};
|
|
54
|
+
bookingItemDialog: {
|
|
55
|
+
titles: {
|
|
56
|
+
create: string;
|
|
57
|
+
edit: string;
|
|
58
|
+
};
|
|
59
|
+
itemTypeLabels: Record<"unit" | "extra" | "service" | "fee" | "tax" | "discount" | "adjustment" | "accommodation" | "transport" | "other", string>;
|
|
60
|
+
itemStatusLabels: Record<"draft" | "on_hold" | "confirmed" | "cancelled" | "expired" | "fulfilled", string>;
|
|
61
|
+
fields: {
|
|
62
|
+
title: string;
|
|
63
|
+
type: string;
|
|
64
|
+
status: string;
|
|
65
|
+
quantity: string;
|
|
66
|
+
sellCurrency: string;
|
|
67
|
+
unitSellAmountCents: string;
|
|
68
|
+
totalSellAmountCents: string;
|
|
69
|
+
costCurrency: string;
|
|
70
|
+
unitCostAmountCents: string;
|
|
71
|
+
totalCostAmountCents: string;
|
|
72
|
+
serviceDate: string;
|
|
73
|
+
description: string;
|
|
74
|
+
notes: string;
|
|
75
|
+
};
|
|
76
|
+
placeholders: {
|
|
77
|
+
title: string;
|
|
78
|
+
unitSellAmountCents: string;
|
|
79
|
+
totalSellAmountCents: string;
|
|
80
|
+
unitCostAmountCents: string;
|
|
81
|
+
totalCostAmountCents: string;
|
|
82
|
+
serviceDate: string;
|
|
83
|
+
description: string;
|
|
84
|
+
notes: string;
|
|
85
|
+
};
|
|
86
|
+
validation: {
|
|
87
|
+
titleRequired: string;
|
|
88
|
+
};
|
|
89
|
+
actions: {
|
|
90
|
+
addItem: string;
|
|
91
|
+
};
|
|
92
|
+
};
|
|
93
|
+
bookingItemTravelers: {
|
|
94
|
+
title: string;
|
|
95
|
+
empty: string;
|
|
96
|
+
selectTravelerPlaceholder: string;
|
|
97
|
+
primaryBadge: string;
|
|
98
|
+
roleLabels: Record<"traveler" | "occupant" | "primary_contact" | "service_assignee" | "beneficiary" | "other", string>;
|
|
99
|
+
actions: {
|
|
100
|
+
assign: string;
|
|
101
|
+
removeConfirm: string;
|
|
102
|
+
};
|
|
103
|
+
};
|
|
104
|
+
paymentScheduleDialog: {
|
|
105
|
+
titles: {
|
|
106
|
+
create: string;
|
|
107
|
+
edit: string;
|
|
108
|
+
};
|
|
109
|
+
scheduleTypeLabels: Record<"deposit" | "installment" | "balance" | "hold" | "other", string>;
|
|
110
|
+
scheduleStatusLabels: Record<"pending" | "due" | "paid" | "waived" | "cancelled" | "expired", string>;
|
|
111
|
+
fields: {
|
|
112
|
+
type: string;
|
|
113
|
+
status: string;
|
|
114
|
+
dueDate: string;
|
|
115
|
+
currency: string;
|
|
116
|
+
amountCents: string;
|
|
117
|
+
notes: string;
|
|
118
|
+
};
|
|
119
|
+
placeholders: {
|
|
120
|
+
dueDate: string;
|
|
121
|
+
notes: string;
|
|
122
|
+
};
|
|
123
|
+
validation: {
|
|
124
|
+
dueDateRequired: string;
|
|
125
|
+
amountRequired: string;
|
|
126
|
+
};
|
|
127
|
+
actions: {
|
|
128
|
+
addSchedule: string;
|
|
129
|
+
};
|
|
130
|
+
};
|
|
131
|
+
fileDropzone: {
|
|
132
|
+
helperText: string;
|
|
133
|
+
uploading: string;
|
|
134
|
+
acceptedPrefix: string;
|
|
135
|
+
removeFileAriaLabel: string;
|
|
136
|
+
validation: {
|
|
137
|
+
fileTooLarge: string;
|
|
138
|
+
uploadFailedWithStatus: string;
|
|
139
|
+
uploadFailed: string;
|
|
140
|
+
};
|
|
141
|
+
};
|
|
142
|
+
voucherPickerSection: {
|
|
143
|
+
labels: {
|
|
144
|
+
heading: string;
|
|
145
|
+
codePlaceholder: string;
|
|
146
|
+
apply: string;
|
|
147
|
+
clear: string;
|
|
148
|
+
remainingLabel: string;
|
|
149
|
+
invalidLabel: string;
|
|
150
|
+
};
|
|
151
|
+
reasonMessages: Record<"not_found" | "inactive" | "not_started" | "expired" | "booking_mismatch" | "currency_mismatch" | "insufficient_balance", string>;
|
|
152
|
+
validation: {
|
|
153
|
+
invalid: string;
|
|
154
|
+
lookupFailed: string;
|
|
155
|
+
amountUnavailable: string;
|
|
156
|
+
};
|
|
157
|
+
};
|
|
158
|
+
productPickerSection: {
|
|
159
|
+
labels: {
|
|
160
|
+
product: string;
|
|
161
|
+
productSearchPlaceholder: string;
|
|
162
|
+
productSelectPlaceholder: string;
|
|
163
|
+
option: string;
|
|
164
|
+
optionNone: string;
|
|
165
|
+
};
|
|
166
|
+
};
|
|
167
|
+
personPickerSection: {
|
|
168
|
+
labels: {
|
|
169
|
+
person: string;
|
|
170
|
+
createNewPerson: string;
|
|
171
|
+
selectExistingPerson: string;
|
|
172
|
+
personSearchPlaceholder: string;
|
|
173
|
+
personSelectPlaceholder: string;
|
|
174
|
+
firstName: string;
|
|
175
|
+
firstNamePlaceholder: string;
|
|
176
|
+
lastName: string;
|
|
177
|
+
lastNamePlaceholder: string;
|
|
178
|
+
email: string;
|
|
179
|
+
emailPlaceholder: string;
|
|
180
|
+
phone: string;
|
|
181
|
+
phonePlaceholder: string;
|
|
182
|
+
organization: string;
|
|
183
|
+
organizationSearchPlaceholder: string;
|
|
184
|
+
organizationNone: string;
|
|
185
|
+
};
|
|
186
|
+
};
|
|
187
|
+
passengersSection: {
|
|
188
|
+
labels: {
|
|
189
|
+
heading: string;
|
|
190
|
+
addPassenger: string;
|
|
191
|
+
firstName: string;
|
|
192
|
+
lastName: string;
|
|
193
|
+
email: string;
|
|
194
|
+
role: string;
|
|
195
|
+
roleLead: string;
|
|
196
|
+
roleAdult: string;
|
|
197
|
+
roleChild: string;
|
|
198
|
+
roleInfant: string;
|
|
199
|
+
room: string;
|
|
200
|
+
noRoom: string;
|
|
201
|
+
remove: string;
|
|
202
|
+
empty: string;
|
|
203
|
+
};
|
|
204
|
+
};
|
|
205
|
+
paymentScheduleSection: {
|
|
206
|
+
labels: {
|
|
207
|
+
heading: string;
|
|
208
|
+
modeUnpaid: string;
|
|
209
|
+
modeFull: string;
|
|
210
|
+
modeAdvance: string;
|
|
211
|
+
modeSplit: string;
|
|
212
|
+
dueDate: string;
|
|
213
|
+
amount: string;
|
|
214
|
+
firstInstallment: string;
|
|
215
|
+
secondInstallment: string;
|
|
216
|
+
preset5050: string;
|
|
217
|
+
unpaidHint: string;
|
|
218
|
+
};
|
|
219
|
+
};
|
|
220
|
+
roomsStepperSection: {
|
|
221
|
+
labels: {
|
|
222
|
+
heading: string;
|
|
223
|
+
noSlot: string;
|
|
224
|
+
noUnits: string;
|
|
225
|
+
remaining: string;
|
|
226
|
+
unlimited: string;
|
|
227
|
+
decreaseUnitPrefix: string;
|
|
228
|
+
increaseUnitPrefix: string;
|
|
229
|
+
};
|
|
230
|
+
};
|
|
231
|
+
sharedRoomSection: {
|
|
232
|
+
labels: {
|
|
233
|
+
toggle: string;
|
|
234
|
+
createMode: string;
|
|
235
|
+
joinMode: string;
|
|
236
|
+
selectPlaceholder: string;
|
|
237
|
+
noGroups: string;
|
|
238
|
+
createHint: string;
|
|
239
|
+
};
|
|
240
|
+
};
|
|
241
|
+
priceBreakdownSection: {
|
|
242
|
+
labels: {
|
|
243
|
+
heading: string;
|
|
244
|
+
total: string;
|
|
245
|
+
onRequest: string;
|
|
246
|
+
groupRate: string;
|
|
247
|
+
empty: string;
|
|
248
|
+
noPricing: string;
|
|
249
|
+
};
|
|
250
|
+
};
|
|
251
|
+
bookingDocumentDialog: {
|
|
252
|
+
title: string;
|
|
253
|
+
documentTypeLabels: Record<"visa" | "insurance" | "health" | "passport_copy" | "other", string>;
|
|
254
|
+
fields: {
|
|
255
|
+
type: string;
|
|
256
|
+
traveler: string;
|
|
257
|
+
file: string;
|
|
258
|
+
expiresAt: string;
|
|
259
|
+
notes: string;
|
|
260
|
+
};
|
|
261
|
+
placeholders: {
|
|
262
|
+
travelerUnassigned: string;
|
|
263
|
+
helperText: string;
|
|
264
|
+
expiresAt: string;
|
|
265
|
+
notes: string;
|
|
266
|
+
};
|
|
267
|
+
validation: {
|
|
268
|
+
fileNameRequired: string;
|
|
269
|
+
fileUrlInvalid: string;
|
|
270
|
+
};
|
|
271
|
+
actions: {
|
|
272
|
+
addDocument: string;
|
|
273
|
+
};
|
|
274
|
+
};
|
|
275
|
+
bookingDocumentList: {
|
|
276
|
+
title: string;
|
|
277
|
+
addDocument: string;
|
|
278
|
+
empty: string;
|
|
279
|
+
values: {
|
|
280
|
+
travelerUnavailable: string;
|
|
281
|
+
expiresUnavailable: string;
|
|
282
|
+
notesUnavailable: string;
|
|
283
|
+
};
|
|
284
|
+
columns: {
|
|
285
|
+
type: string;
|
|
286
|
+
file: string;
|
|
287
|
+
traveler: string;
|
|
288
|
+
expires: string;
|
|
289
|
+
notes: string;
|
|
290
|
+
};
|
|
291
|
+
actions: {
|
|
292
|
+
deleteConfirm: string;
|
|
293
|
+
};
|
|
294
|
+
};
|
|
295
|
+
statusChangeDialog: {
|
|
296
|
+
title: string;
|
|
297
|
+
fields: {
|
|
298
|
+
status: string;
|
|
299
|
+
note: string;
|
|
300
|
+
};
|
|
301
|
+
placeholders: {
|
|
302
|
+
note: string;
|
|
303
|
+
};
|
|
304
|
+
actions: {
|
|
305
|
+
updateStatus: string;
|
|
306
|
+
};
|
|
307
|
+
};
|
|
308
|
+
supplierStatusDialog: {
|
|
309
|
+
titles: {
|
|
310
|
+
create: string;
|
|
311
|
+
edit: string;
|
|
312
|
+
};
|
|
313
|
+
fields: {
|
|
314
|
+
serviceName: string;
|
|
315
|
+
status: string;
|
|
316
|
+
costCurrency: string;
|
|
317
|
+
costAmountCents: string;
|
|
318
|
+
supplierReference: string;
|
|
319
|
+
notes: string;
|
|
320
|
+
};
|
|
321
|
+
placeholders: {
|
|
322
|
+
serviceName: string;
|
|
323
|
+
supplierReference: string;
|
|
324
|
+
notes: string;
|
|
325
|
+
};
|
|
326
|
+
validation: {
|
|
327
|
+
serviceNameRequired: string;
|
|
328
|
+
costCurrencyInvalid: string;
|
|
329
|
+
};
|
|
330
|
+
actions: {
|
|
331
|
+
addSupplierStatus: string;
|
|
332
|
+
};
|
|
333
|
+
};
|
|
334
|
+
bookingItemList: {
|
|
335
|
+
title: string;
|
|
336
|
+
addItem: string;
|
|
337
|
+
empty: string;
|
|
338
|
+
values: {
|
|
339
|
+
totalUnavailable: string;
|
|
340
|
+
serviceDateUnavailable: string;
|
|
341
|
+
};
|
|
342
|
+
columns: {
|
|
343
|
+
title: string;
|
|
344
|
+
type: string;
|
|
345
|
+
status: string;
|
|
346
|
+
quantity: string;
|
|
347
|
+
total: string;
|
|
348
|
+
serviceDate: string;
|
|
349
|
+
};
|
|
350
|
+
actions: {
|
|
351
|
+
deleteConfirm: string;
|
|
352
|
+
};
|
|
353
|
+
};
|
|
354
|
+
bookingPaymentScheduleList: {
|
|
355
|
+
title: string;
|
|
356
|
+
addSchedule: string;
|
|
357
|
+
empty: string;
|
|
358
|
+
values: {
|
|
359
|
+
notesUnavailable: string;
|
|
360
|
+
};
|
|
361
|
+
columns: {
|
|
362
|
+
type: string;
|
|
363
|
+
status: string;
|
|
364
|
+
dueDate: string;
|
|
365
|
+
amount: string;
|
|
366
|
+
notes: string;
|
|
367
|
+
};
|
|
368
|
+
actions: {
|
|
369
|
+
deleteConfirm: string;
|
|
370
|
+
};
|
|
371
|
+
};
|
|
372
|
+
supplierStatusList: {
|
|
373
|
+
title: string;
|
|
374
|
+
addSupplier: string;
|
|
375
|
+
empty: string;
|
|
376
|
+
values: {
|
|
377
|
+
costUnavailable: string;
|
|
378
|
+
referenceUnavailable: string;
|
|
379
|
+
confirmedUnavailable: string;
|
|
380
|
+
};
|
|
381
|
+
columns: {
|
|
382
|
+
service: string;
|
|
383
|
+
status: string;
|
|
384
|
+
cost: string;
|
|
385
|
+
reference: string;
|
|
386
|
+
confirmed: string;
|
|
387
|
+
};
|
|
388
|
+
};
|
|
389
|
+
bookingCancellationDialog: {
|
|
390
|
+
title: string;
|
|
391
|
+
summary: {
|
|
392
|
+
booking: string;
|
|
393
|
+
startDate: string;
|
|
394
|
+
total: string;
|
|
395
|
+
daysBeforeDeparture: string;
|
|
396
|
+
};
|
|
397
|
+
values: {
|
|
398
|
+
startDateTbd: string;
|
|
399
|
+
amountUnavailable: string;
|
|
400
|
+
ruleFallback: string;
|
|
401
|
+
ruleDaysBeforeDeparture: string;
|
|
402
|
+
};
|
|
403
|
+
policy: {
|
|
404
|
+
applicablePolicy: string;
|
|
405
|
+
refund: string;
|
|
406
|
+
penalty: string;
|
|
407
|
+
rule: string;
|
|
408
|
+
resolving: string;
|
|
409
|
+
missing: string;
|
|
410
|
+
missingHint: string;
|
|
411
|
+
calculating: string;
|
|
412
|
+
noTotalAmount: string;
|
|
413
|
+
};
|
|
414
|
+
refundTypeLabels: Record<"cash" | "credit" | "cash_or_credit" | "none", string>;
|
|
415
|
+
fields: {
|
|
416
|
+
reason: string;
|
|
417
|
+
};
|
|
418
|
+
placeholders: {
|
|
419
|
+
reason: string;
|
|
420
|
+
};
|
|
421
|
+
validation: {
|
|
422
|
+
cancellationFailed: string;
|
|
423
|
+
};
|
|
424
|
+
actions: {
|
|
425
|
+
close: string;
|
|
426
|
+
confirm: string;
|
|
427
|
+
};
|
|
428
|
+
};
|
|
429
|
+
bookingGuaranteeDialog: {
|
|
430
|
+
titles: {
|
|
431
|
+
create: string;
|
|
432
|
+
edit: string;
|
|
433
|
+
};
|
|
434
|
+
guaranteeTypeLabels: Record<"deposit" | "credit_card" | "preauth" | "card_on_file" | "bank_transfer" | "voucher" | "agency_letter" | "other", string>;
|
|
435
|
+
guaranteeStatusLabels: Record<"pending" | "active" | "released" | "failed" | "cancelled" | "expired", string>;
|
|
436
|
+
fields: {
|
|
437
|
+
type: string;
|
|
438
|
+
status: string;
|
|
439
|
+
currency: string;
|
|
440
|
+
amountCents: string;
|
|
441
|
+
provider: string;
|
|
442
|
+
referenceNumber: string;
|
|
443
|
+
expiresAt: string;
|
|
444
|
+
notes: string;
|
|
445
|
+
};
|
|
446
|
+
placeholders: {
|
|
447
|
+
provider: string;
|
|
448
|
+
referenceNumber: string;
|
|
449
|
+
expiresAt: string;
|
|
450
|
+
notes: string;
|
|
451
|
+
};
|
|
452
|
+
actions: {
|
|
453
|
+
addGuarantee: string;
|
|
454
|
+
};
|
|
455
|
+
};
|
|
456
|
+
bookingGuaranteeList: {
|
|
457
|
+
title: string;
|
|
458
|
+
addGuarantee: string;
|
|
459
|
+
empty: string;
|
|
460
|
+
values: {
|
|
461
|
+
amountUnavailable: string;
|
|
462
|
+
providerUnavailable: string;
|
|
463
|
+
referenceUnavailable: string;
|
|
464
|
+
expiresUnavailable: string;
|
|
465
|
+
};
|
|
466
|
+
columns: {
|
|
467
|
+
type: string;
|
|
468
|
+
status: string;
|
|
469
|
+
amount: string;
|
|
470
|
+
provider: string;
|
|
471
|
+
reference: string;
|
|
472
|
+
expires: string;
|
|
473
|
+
};
|
|
474
|
+
actions: {
|
|
475
|
+
deleteConfirm: string;
|
|
476
|
+
};
|
|
477
|
+
};
|
|
478
|
+
bookingGroupLinkDialog: {
|
|
479
|
+
title: string;
|
|
480
|
+
modes: {
|
|
481
|
+
join: string;
|
|
482
|
+
create: string;
|
|
483
|
+
};
|
|
484
|
+
fields: {
|
|
485
|
+
existingGroups: string;
|
|
486
|
+
groupLabel: string;
|
|
487
|
+
};
|
|
488
|
+
placeholders: {
|
|
489
|
+
selectGroup: string;
|
|
490
|
+
noExistingGroups: string;
|
|
491
|
+
groupLabel: string;
|
|
492
|
+
};
|
|
493
|
+
hints: {
|
|
494
|
+
productFiltered: string;
|
|
495
|
+
primaryMember: string;
|
|
496
|
+
};
|
|
497
|
+
validation: {
|
|
498
|
+
selectGroup: string;
|
|
499
|
+
linkFailed: string;
|
|
500
|
+
};
|
|
501
|
+
actions: {
|
|
502
|
+
createAndLink: string;
|
|
503
|
+
linkToGroup: string;
|
|
504
|
+
};
|
|
505
|
+
labels: {
|
|
506
|
+
generatedLabelPrefix: string;
|
|
507
|
+
};
|
|
508
|
+
};
|
|
509
|
+
bookingGroupSection: {
|
|
510
|
+
title: string;
|
|
511
|
+
empty: string;
|
|
512
|
+
group: string;
|
|
513
|
+
siblingBookings: string;
|
|
514
|
+
noSiblingBookings: string;
|
|
515
|
+
primaryBadge: string;
|
|
516
|
+
sharedRoomKind: string;
|
|
517
|
+
actions: {
|
|
518
|
+
removeFromGroup: string;
|
|
519
|
+
linkToSharedRoom: string;
|
|
520
|
+
removeConfirm: string;
|
|
521
|
+
};
|
|
522
|
+
};
|
|
523
|
+
bookingDialog: {
|
|
524
|
+
editTitle: string;
|
|
525
|
+
fields: {
|
|
526
|
+
bookingNumber: string;
|
|
527
|
+
status: string;
|
|
528
|
+
sellCurrency: string;
|
|
529
|
+
travelDates: string;
|
|
530
|
+
sellAmountCents: string;
|
|
531
|
+
costAmountCents: string;
|
|
532
|
+
pax: string;
|
|
533
|
+
internalNotes: string;
|
|
534
|
+
};
|
|
535
|
+
placeholders: {
|
|
536
|
+
bookingNumber: string;
|
|
537
|
+
travelDates: string;
|
|
538
|
+
pax: string;
|
|
539
|
+
internalNotes: string;
|
|
540
|
+
};
|
|
541
|
+
validation: {
|
|
542
|
+
bookingNumberRequired: string;
|
|
543
|
+
sellCurrencyInvalid: string;
|
|
544
|
+
};
|
|
545
|
+
};
|
|
546
|
+
bookingCreateDialog: {
|
|
547
|
+
title: string;
|
|
548
|
+
fields: {
|
|
549
|
+
departure: string;
|
|
550
|
+
internalNotes: string;
|
|
551
|
+
confirmAfterCreate: string;
|
|
552
|
+
confirmAfterCreateHint: string;
|
|
553
|
+
};
|
|
554
|
+
placeholders: {
|
|
555
|
+
departure: string;
|
|
556
|
+
departureNone: string;
|
|
557
|
+
departureEmpty: string;
|
|
558
|
+
internalNotes: string;
|
|
559
|
+
};
|
|
560
|
+
validation: {
|
|
561
|
+
selectProduct: string;
|
|
562
|
+
selectPerson: string;
|
|
563
|
+
firstAndLastNameRequired: string;
|
|
564
|
+
selectSharedRoomGroup: string;
|
|
565
|
+
confirmFailedPrefix: string;
|
|
566
|
+
confirmFailed: string;
|
|
567
|
+
createFailed: string;
|
|
568
|
+
};
|
|
569
|
+
actions: {
|
|
570
|
+
createDraftBooking: string;
|
|
571
|
+
};
|
|
572
|
+
labels: {
|
|
573
|
+
currency: string;
|
|
574
|
+
remainingCapacity: string;
|
|
575
|
+
noSpecificOption: string;
|
|
576
|
+
createNewPerson: string;
|
|
577
|
+
selectExistingPerson: string;
|
|
578
|
+
organizationNone: string;
|
|
579
|
+
addPassenger: string;
|
|
580
|
+
passengerHeading: string;
|
|
581
|
+
passengerRole: string;
|
|
582
|
+
passengerLead: string;
|
|
583
|
+
passengerAdult: string;
|
|
584
|
+
passengerChild: string;
|
|
585
|
+
passengerInfant: string;
|
|
586
|
+
passengerRoom: string;
|
|
587
|
+
passengerNoRoom: string;
|
|
588
|
+
passengerRemove: string;
|
|
589
|
+
passengerEmpty: string;
|
|
590
|
+
roomsHeading: string;
|
|
591
|
+
roomsNoSlot: string;
|
|
592
|
+
roomsNoUnits: string;
|
|
593
|
+
roomsRemaining: string;
|
|
594
|
+
roomsUnlimited: string;
|
|
595
|
+
sharedRoomToggle: string;
|
|
596
|
+
sharedRoomCreateMode: string;
|
|
597
|
+
sharedRoomJoinMode: string;
|
|
598
|
+
sharedRoomSelectPlaceholder: string;
|
|
599
|
+
sharedRoomNoGroups: string;
|
|
600
|
+
sharedRoomCreateHint: string;
|
|
601
|
+
sharedRoomGeneratedLabelPrefix: string;
|
|
602
|
+
voucherHeading: string;
|
|
603
|
+
voucherCodePlaceholder: string;
|
|
604
|
+
voucherApply: string;
|
|
605
|
+
voucherClear: string;
|
|
606
|
+
voucherRemainingLabel: string;
|
|
607
|
+
voucherInvalidLabel: string;
|
|
608
|
+
paymentHeading: string;
|
|
609
|
+
paymentModeUnpaid: string;
|
|
610
|
+
paymentModeFull: string;
|
|
611
|
+
paymentModeAdvance: string;
|
|
612
|
+
paymentModeSplit: string;
|
|
613
|
+
paymentDueDate: string;
|
|
614
|
+
paymentAmount: string;
|
|
615
|
+
paymentFirstInstallment: string;
|
|
616
|
+
paymentSecondInstallment: string;
|
|
617
|
+
paymentPreset5050: string;
|
|
618
|
+
paymentUnpaidHint: string;
|
|
619
|
+
breakdownHeading: string;
|
|
620
|
+
breakdownTotal: string;
|
|
621
|
+
breakdownOnRequest: string;
|
|
622
|
+
breakdownGroupRate: string;
|
|
623
|
+
breakdownEmpty: string;
|
|
624
|
+
breakdownNoPricing: string;
|
|
625
|
+
};
|
|
626
|
+
};
|
|
627
|
+
bookingList: {
|
|
628
|
+
searchPlaceholder: string;
|
|
629
|
+
newBooking: string;
|
|
630
|
+
columns: {
|
|
631
|
+
bookingNumber: string;
|
|
632
|
+
status: string;
|
|
633
|
+
sellAmount: string;
|
|
634
|
+
pax: string;
|
|
635
|
+
startDate: string;
|
|
636
|
+
};
|
|
637
|
+
loadingError: string;
|
|
638
|
+
empty: string;
|
|
639
|
+
showingSummary: string;
|
|
640
|
+
pageSummary: string;
|
|
641
|
+
};
|
|
642
|
+
bookingPaymentsSummary: {
|
|
643
|
+
title: string;
|
|
644
|
+
empty: string;
|
|
645
|
+
columns: {
|
|
646
|
+
invoice: string;
|
|
647
|
+
method: string;
|
|
648
|
+
status: string;
|
|
649
|
+
amount: string;
|
|
650
|
+
date: string;
|
|
651
|
+
reference: string;
|
|
652
|
+
};
|
|
653
|
+
paymentMethodLabels: Record<"card" | "bank_transfer" | "cash" | "voucher" | "other", string>;
|
|
654
|
+
paymentStatusLabels: Record<"pending" | "completed" | "failed" | "refunded", string>;
|
|
655
|
+
};
|
|
656
|
+
bookingNotes: {
|
|
657
|
+
title: string;
|
|
658
|
+
placeholder: string;
|
|
659
|
+
add: string;
|
|
660
|
+
empty: string;
|
|
661
|
+
};
|
|
662
|
+
bookingActivityTimeline: {
|
|
663
|
+
title: string;
|
|
664
|
+
filters: {
|
|
665
|
+
all: string;
|
|
666
|
+
activity: string;
|
|
667
|
+
document: string;
|
|
668
|
+
payment: string;
|
|
669
|
+
};
|
|
670
|
+
sourceLabels: {
|
|
671
|
+
activity: string;
|
|
672
|
+
document: string;
|
|
673
|
+
payment: string;
|
|
674
|
+
};
|
|
675
|
+
empty: string;
|
|
676
|
+
activityTitles: Record<string, string>;
|
|
677
|
+
documentUploadedSuffix: string;
|
|
678
|
+
viewFile: string;
|
|
679
|
+
byActor: string;
|
|
680
|
+
paymentTitle: string;
|
|
681
|
+
paymentDescription: string;
|
|
682
|
+
};
|
|
683
|
+
};
|
|
684
|
+
//# sourceMappingURL=messages.d.ts.map
|