@voyant-travel/bookings-react 0.138.3 → 0.138.5
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/dist/components/booking-detail-page.d.ts.map +1 -1
- package/dist/components/booking-detail-page.js +3 -2
- package/dist/components/booking-dialog.d.ts.map +1 -1
- package/dist/components/booking-dialog.js +2 -19
- package/dist/components/booking-item-dialog.d.ts.map +1 -1
- package/dist/components/booking-item-dialog.js +16 -5
- package/dist/components/booking-item-list.d.ts +2 -1
- package/dist/components/booking-item-list.d.ts.map +1 -1
- package/dist/components/booking-item-list.js +13 -13
- package/dist/components/traveler-dialog.d.ts.map +1 -1
- package/dist/components/traveler-dialog.js +15 -1
- package/dist/components/traveler-list.d.ts.map +1 -1
- package/dist/components/traveler-list.js +30 -12
- package/dist/extras/hooks/use-slot-extra-manifest-mutation.d.ts +3 -3
- package/dist/extras/hooks/use-slot-extra-manifest.d.ts +1 -1
- package/dist/extras/query-options.d.ts +4 -4
- package/dist/extras/schemas.d.ts +3 -3
- package/dist/hooks/use-booking-action-ledger.d.ts +1 -1
- package/dist/hooks/use-supplier-status-mutation.d.ts +2 -2
- package/dist/hooks/use-supplier-statuses.d.ts +1 -1
- package/dist/i18n/en-base.d.ts +9 -0
- package/dist/i18n/en-base.d.ts.map +1 -1
- package/dist/i18n/en-base.js +9 -0
- package/dist/i18n/en-sections.d.ts +1 -0
- package/dist/i18n/en-sections.d.ts.map +1 -1
- package/dist/i18n/en-sections.js +1 -0
- package/dist/i18n/en.d.ts +10 -0
- package/dist/i18n/en.d.ts.map +1 -1
- package/dist/i18n/messages-base.d.ts +3 -0
- package/dist/i18n/messages-base.d.ts.map +1 -1
- package/dist/i18n/messages-sections.d.ts +1 -0
- package/dist/i18n/messages-sections.d.ts.map +1 -1
- package/dist/i18n/provider.d.ts +20 -0
- package/dist/i18n/provider.d.ts.map +1 -1
- package/dist/i18n/ro-base.d.ts +9 -0
- package/dist/i18n/ro-base.d.ts.map +1 -1
- package/dist/i18n/ro-base.js +9 -0
- package/dist/i18n/ro-sections.d.ts +1 -0
- package/dist/i18n/ro-sections.d.ts.map +1 -1
- package/dist/i18n/ro-sections.js +1 -0
- package/dist/i18n/ro.d.ts +10 -0
- package/dist/i18n/ro.d.ts.map +1 -1
- package/dist/journey/components/booking-journey-rules.d.ts.map +1 -1
- package/dist/journey/components/booking-journey-rules.js +2 -2
- package/dist/query-options.d.ts +4 -4
- package/dist/requirements/hooks/use-booking-questions.d.ts +1 -1
- package/dist/requirements/query-options.d.ts +4 -4
- package/dist/requirements/schemas.d.ts +3 -3
- package/dist/schemas.d.ts +6 -6
- package/package.json +19 -19
|
@@ -26,9 +26,9 @@ export declare const questionFieldTypeSchema: z.ZodEnum<{
|
|
|
26
26
|
phone: "phone";
|
|
27
27
|
textarea: "textarea";
|
|
28
28
|
text: "text";
|
|
29
|
-
datetime: "datetime";
|
|
30
29
|
single_select: "single_select";
|
|
31
30
|
multi_select: "multi_select";
|
|
31
|
+
datetime: "datetime";
|
|
32
32
|
country: "country";
|
|
33
33
|
}>;
|
|
34
34
|
export declare const bookingQuestionSchema: z.ZodObject<{
|
|
@@ -55,9 +55,9 @@ export declare const bookingQuestionSchema: z.ZodObject<{
|
|
|
55
55
|
phone: "phone";
|
|
56
56
|
textarea: "textarea";
|
|
57
57
|
text: "text";
|
|
58
|
-
datetime: "datetime";
|
|
59
58
|
single_select: "single_select";
|
|
60
59
|
multi_select: "multi_select";
|
|
60
|
+
datetime: "datetime";
|
|
61
61
|
country: "country";
|
|
62
62
|
}>;
|
|
63
63
|
placeholder: z.ZodNullable<z.ZodString>;
|
|
@@ -166,9 +166,9 @@ export declare const bookingQuestionListResponse: z.ZodObject<{
|
|
|
166
166
|
phone: "phone";
|
|
167
167
|
textarea: "textarea";
|
|
168
168
|
text: "text";
|
|
169
|
-
datetime: "datetime";
|
|
170
169
|
single_select: "single_select";
|
|
171
170
|
multi_select: "multi_select";
|
|
171
|
+
datetime: "datetime";
|
|
172
172
|
country: "country";
|
|
173
173
|
}>;
|
|
174
174
|
placeholder: z.ZodNullable<z.ZodString>;
|
package/dist/schemas.d.ts
CHANGED
|
@@ -22,8 +22,8 @@ export declare const bookingStatusSchema: z.ZodEnum<{
|
|
|
22
22
|
}>;
|
|
23
23
|
export type BookingStatus = z.infer<typeof bookingStatusSchema>;
|
|
24
24
|
export declare const supplierConfirmationStatusSchema: z.ZodEnum<{
|
|
25
|
-
cancelled: "cancelled";
|
|
26
25
|
pending: "pending";
|
|
26
|
+
cancelled: "cancelled";
|
|
27
27
|
confirmed: "confirmed";
|
|
28
28
|
rejected: "rejected";
|
|
29
29
|
}>;
|
|
@@ -277,8 +277,8 @@ export declare const bookingSupplierStatusRecordSchema: z.ZodObject<{
|
|
|
277
277
|
supplierServiceId: z.ZodNullable<z.ZodString>;
|
|
278
278
|
serviceName: z.ZodString;
|
|
279
279
|
status: z.ZodEnum<{
|
|
280
|
-
cancelled: "cancelled";
|
|
281
280
|
pending: "pending";
|
|
281
|
+
cancelled: "cancelled";
|
|
282
282
|
confirmed: "confirmed";
|
|
283
283
|
rejected: "rejected";
|
|
284
284
|
}>;
|
|
@@ -1302,8 +1302,8 @@ export declare const bookingSupplierStatusesResponse: z.ZodObject<{
|
|
|
1302
1302
|
supplierServiceId: z.ZodNullable<z.ZodString>;
|
|
1303
1303
|
serviceName: z.ZodString;
|
|
1304
1304
|
status: z.ZodEnum<{
|
|
1305
|
-
cancelled: "cancelled";
|
|
1306
1305
|
pending: "pending";
|
|
1306
|
+
cancelled: "cancelled";
|
|
1307
1307
|
confirmed: "confirmed";
|
|
1308
1308
|
rejected: "rejected";
|
|
1309
1309
|
}>;
|
|
@@ -1847,9 +1847,9 @@ export declare const bookingActionLedgerStatusSchema: z.ZodEnum<{
|
|
|
1847
1847
|
superseded: "superseded";
|
|
1848
1848
|
}>;
|
|
1849
1849
|
export declare const bookingActionLedgerRiskSchema: z.ZodEnum<{
|
|
1850
|
+
high: "high";
|
|
1850
1851
|
low: "low";
|
|
1851
1852
|
medium: "medium";
|
|
1852
|
-
high: "high";
|
|
1853
1853
|
critical: "critical";
|
|
1854
1854
|
}>;
|
|
1855
1855
|
export declare const bookingActionLedgerPrincipalTypeSchema: z.ZodEnum<{
|
|
@@ -1890,9 +1890,9 @@ export declare const bookingActionLedgerEntrySchema: z.ZodObject<{
|
|
|
1890
1890
|
superseded: "superseded";
|
|
1891
1891
|
}>;
|
|
1892
1892
|
evaluatedRisk: z.ZodEnum<{
|
|
1893
|
+
high: "high";
|
|
1893
1894
|
low: "low";
|
|
1894
1895
|
medium: "medium";
|
|
1895
|
-
high: "high";
|
|
1896
1896
|
critical: "critical";
|
|
1897
1897
|
}>;
|
|
1898
1898
|
actorType: z.ZodNullable<z.ZodString>;
|
|
@@ -1980,9 +1980,9 @@ export declare const bookingActionLedgerListResponse: z.ZodObject<{
|
|
|
1980
1980
|
superseded: "superseded";
|
|
1981
1981
|
}>;
|
|
1982
1982
|
evaluatedRisk: z.ZodEnum<{
|
|
1983
|
+
high: "high";
|
|
1983
1984
|
low: "low";
|
|
1984
1985
|
medium: "medium";
|
|
1985
|
-
high: "high";
|
|
1986
1986
|
critical: "critical";
|
|
1987
1987
|
}>;
|
|
1988
1988
|
actorType: z.ZodNullable<z.ZodString>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@voyant-travel/bookings-react",
|
|
3
|
-
"version": "0.138.
|
|
3
|
+
"version": "0.138.5",
|
|
4
4
|
"license": "Apache-2.0",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -145,17 +145,17 @@
|
|
|
145
145
|
"react-dom": "^19.0.0",
|
|
146
146
|
"react-hook-form": "^7.80.0",
|
|
147
147
|
"zod": "^4.0.0",
|
|
148
|
-
"@voyant-travel/
|
|
149
|
-
"@voyant-travel/bookings": "^0.138.
|
|
150
|
-
"@voyant-travel/
|
|
148
|
+
"@voyant-travel/admin": "^0.115.3",
|
|
149
|
+
"@voyant-travel/bookings": "^0.138.5",
|
|
150
|
+
"@voyant-travel/catalog-react": "^0.136.2",
|
|
151
|
+
"@voyant-travel/distribution-react": "^0.128.3",
|
|
151
152
|
"@voyant-travel/relationships-react": "^0.138.0",
|
|
152
|
-
"@voyant-travel/
|
|
153
|
-
"@voyant-travel/
|
|
154
|
-
"@voyant-travel/legal-react": "^0.138.
|
|
153
|
+
"@voyant-travel/finance-react": "^0.138.7",
|
|
154
|
+
"@voyant-travel/identity-react": "^0.138.1",
|
|
155
|
+
"@voyant-travel/legal-react": "^0.138.1",
|
|
155
156
|
"@voyant-travel/commerce-react": "^0.20.0",
|
|
156
|
-
"@voyant-travel/admin": "^0.115.3",
|
|
157
157
|
"@voyant-travel/inventory-react": "^0.20.0",
|
|
158
|
-
"@voyant-travel/ui": "^0.108.
|
|
158
|
+
"@voyant-travel/ui": "^0.108.10",
|
|
159
159
|
"@voyant-travel/operations-react": "^0.19.0"
|
|
160
160
|
},
|
|
161
161
|
"peerDependenciesMeta": {
|
|
@@ -204,9 +204,9 @@
|
|
|
204
204
|
},
|
|
205
205
|
"dependencies": {
|
|
206
206
|
"sonner": "^2.0.7",
|
|
207
|
-
"@voyant-travel/catalog-contracts": "^0.108.
|
|
208
|
-
"@voyant-travel/react": "^0.104.1",
|
|
207
|
+
"@voyant-travel/catalog-contracts": "^0.108.1",
|
|
209
208
|
"@voyant-travel/i18n": "^0.109.7",
|
|
209
|
+
"@voyant-travel/react": "^0.104.1",
|
|
210
210
|
"@voyant-travel/types": "^0.106.1"
|
|
211
211
|
},
|
|
212
212
|
"devDependencies": {
|
|
@@ -223,17 +223,17 @@
|
|
|
223
223
|
"vitest": "^4.1.9",
|
|
224
224
|
"zod": "^4.4.3",
|
|
225
225
|
"@voyant-travel/admin": "^0.115.3",
|
|
226
|
-
"@voyant-travel/
|
|
227
|
-
"@voyant-travel/
|
|
226
|
+
"@voyant-travel/bookings": "^0.138.5",
|
|
227
|
+
"@voyant-travel/catalog-react": "^0.136.2",
|
|
228
|
+
"@voyant-travel/distribution-react": "^0.128.3",
|
|
228
229
|
"@voyant-travel/relationships-react": "^0.138.0",
|
|
229
|
-
"@voyant-travel/
|
|
230
|
-
"@voyant-travel/
|
|
231
|
-
"@voyant-travel/
|
|
230
|
+
"@voyant-travel/finance-react": "^0.138.7",
|
|
231
|
+
"@voyant-travel/identity-react": "^0.138.1",
|
|
232
|
+
"@voyant-travel/legal-react": "^0.138.1",
|
|
232
233
|
"@voyant-travel/commerce-react": "^0.20.0",
|
|
233
|
-
"@voyant-travel/react": "^0.104.1",
|
|
234
|
-
"@voyant-travel/legal-react": "^0.138.0",
|
|
235
234
|
"@voyant-travel/inventory-react": "^0.20.0",
|
|
236
|
-
"@voyant-travel/
|
|
235
|
+
"@voyant-travel/react": "^0.104.1",
|
|
236
|
+
"@voyant-travel/ui": "^0.108.10",
|
|
237
237
|
"@voyant-travel/voyant-typescript-config": "^0.1.0",
|
|
238
238
|
"@voyant-travel/operations-react": "^0.19.0"
|
|
239
239
|
},
|