@loczer/storefront-sdk 0.186.0 → 0.188.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/dist/StorefrontProvider.d.ts +3 -0
- package/dist/StorefrontProvider.d.ts.map +1 -1
- package/dist/chunks/booking-engine/dist/models/{Product.shared-CTuk4fiR.js → Product.shared-IYOeC3N7.js} +12 -10
- package/dist/chunks/booking-engine/dist/schemas/{base-asset-B_Dm8_Vk.js → base-asset-zsUj5_3O.js} +1 -1
- package/dist/chunks/booking-engine/dist/schemas/{base-booking-DW8AEPKo.js → base-booking-TzCge_mR.js} +2 -2
- package/dist/chunks/booking-engine/dist/schemas/{base-product-1H8l2aUv.js → base-product-DvFFzAcg.js} +1 -1
- package/dist/chunks/booking-engine/dist/schemas/{booking-engine-configuration-D02MRF9U.js → booking-engine-configuration-LnrhShqm.js} +4 -1
- package/dist/chunks/booking-engine/dist/schemas/{cart-inputs-j1yWfJxO.js → cart-inputs-B0HpcFe5.js} +1 -1
- package/dist/chunks/booking-engine/dist/schemas/{public-booking-engine-configuration-BnJ_H-p1.js → public-booking-engine-configuration-CEM9mexX.js} +1 -1
- package/dist/chunks/booking-engine/dist/schemas-BNUzqsci.js +13 -0
- package/dist/components/Header/index.js +30 -29
- package/dist/components/PlaygroundDevFloatingButton/index.d.ts.map +1 -1
- package/dist/components/PlaygroundDevFloatingButton/index.js +109 -102
- package/dist/components/StorefrontCancellationPolicyNotice/index.d.ts.map +1 -1
- package/dist/components/StorefrontCancellationPolicyNotice/index.js +51 -48
- package/dist/components/StorefrontInsuranceNotice/index.d.ts +9 -0
- package/dist/components/StorefrontInsuranceNotice/index.d.ts.map +1 -0
- package/dist/components/StorefrontInsuranceNotice/index.js +191 -0
- package/dist/i18n/en.d.ts +19 -0
- package/dist/i18n/en.d.ts.map +1 -1
- package/dist/i18n/en.js +21 -2
- package/dist/i18n/fr.d.ts +20 -0
- package/dist/i18n/fr.d.ts.map +1 -1
- package/dist/i18n/fr.js +24 -4
- package/dist/index.d.ts +86 -0
- package/dist/index.js +68 -68
- package/dist/lib/booking.js +2 -2
- package/dist/lib/checkoutSubmit.js +3 -3
- package/dist/lib/playgroundDevSettings.d.ts +3 -2
- package/dist/lib/playgroundDevSettings.d.ts.map +1 -1
- package/dist/lib/playgroundDevSettings.js +28 -27
- package/dist/lib/storefrontProducts.d.ts +16 -0
- package/dist/lib/storefrontProducts.d.ts.map +1 -1
- package/dist/lib/storefrontProducts.js +27 -22
- package/dist/pages/HomePage.d.ts.map +1 -1
- package/dist/pages/HomePage.js +264 -266
- package/dist/storefront.css +1 -1
- package/dist/storefrontSchemas.d.ts +17 -0
- package/dist/storefrontSchemas.d.ts.map +1 -1
- package/dist/storefrontSchemas.js +28 -23
- package/package.json +1 -1
- package/dist/chunks/booking-engine/dist/schemas-DftrSnTE.js +0 -13
|
@@ -26,6 +26,13 @@ export declare const storefrontFulfillmentModeSchema: z.ZodEnum<{
|
|
|
26
26
|
delivery: "delivery";
|
|
27
27
|
}>;
|
|
28
28
|
export type StorefrontFulfillmentMode = z.infer<typeof storefrontFulfillmentModeSchema>;
|
|
29
|
+
export declare const STOREFRONT_HERO_MODES: readonly ["current_booking_hero", "booking_bar_overlay_hero", "vertical_marquee_hero"];
|
|
30
|
+
export declare const storefrontHeroModeSchema: z.ZodEnum<{
|
|
31
|
+
current_booking_hero: "current_booking_hero";
|
|
32
|
+
booking_bar_overlay_hero: "booking_bar_overlay_hero";
|
|
33
|
+
vertical_marquee_hero: "vertical_marquee_hero";
|
|
34
|
+
}>;
|
|
35
|
+
export type StorefrontHeroMode = z.infer<typeof storefrontHeroModeSchema>;
|
|
29
36
|
export declare const storefrontSettingsSchema: z.ZodObject<{
|
|
30
37
|
status: z.ZodEnum<{
|
|
31
38
|
unpublished: "unpublished";
|
|
@@ -163,6 +170,11 @@ export declare const storefrontFaqSchema: z.ZodObject<{
|
|
|
163
170
|
}, z.core.$strip>;
|
|
164
171
|
export type StorefrontFaq = z.infer<typeof storefrontFaqSchema>;
|
|
165
172
|
export declare const storefrontContentSchema: z.ZodObject<{
|
|
173
|
+
heroMode: z.ZodDefault<z.ZodEnum<{
|
|
174
|
+
current_booking_hero: "current_booking_hero";
|
|
175
|
+
booking_bar_overlay_hero: "booking_bar_overlay_hero";
|
|
176
|
+
vertical_marquee_hero: "vertical_marquee_hero";
|
|
177
|
+
}>>;
|
|
166
178
|
tagline: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
167
179
|
value: z.ZodString;
|
|
168
180
|
updatedAt: z.ZodCoercedDate<unknown>;
|
|
@@ -475,6 +487,11 @@ export declare const storefrontConfigurationSchema: z.ZodObject<{
|
|
|
475
487
|
};
|
|
476
488
|
}, unknown>>;
|
|
477
489
|
content: z.ZodOptional<z.ZodObject<{
|
|
490
|
+
heroMode: z.ZodDefault<z.ZodEnum<{
|
|
491
|
+
current_booking_hero: "current_booking_hero";
|
|
492
|
+
booking_bar_overlay_hero: "booking_bar_overlay_hero";
|
|
493
|
+
vertical_marquee_hero: "vertical_marquee_hero";
|
|
494
|
+
}>>;
|
|
478
495
|
tagline: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
479
496
|
value: z.ZodString;
|
|
480
497
|
updatedAt: z.ZodCoercedDate<unknown>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"storefrontSchemas.d.ts","sourceRoot":"","sources":["../src/storefrontSchemas.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAwBvB,eAAO,MAAM,wBAAwB;;;;;kBAO1B,CAAA;AACX,eAAO,MAAM,iCAAiC;;;;;mBAE5C,CAAA;AA0CF,eAAO,MAAM,sBAAsB;;;EAAuC,CAAA;AAC1E,MAAM,MAAM,gBAAgB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,sBAAsB,CAAC,CAAA;AAErE,eAAO,MAAM,4BAA4B;;;EAAqE,CAAA;AAC9G,MAAM,MAAM,sBAAsB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,4BAA4B,CAAC,CAAA;AAEjF,eAAO,MAAM,+BAA+B;;;EAAiC,CAAA;AAC7E,MAAM,MAAM,yBAAyB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,+BAA+B,CAAC,CAAA;
|
|
1
|
+
{"version":3,"file":"storefrontSchemas.d.ts","sourceRoot":"","sources":["../src/storefrontSchemas.ts"],"names":[],"mappings":"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"}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { timeOfDaySchema as e } from "./chunks/booking-engine/dist/schemas/shop-opening-hours-BlLD1gfz.js";
|
|
2
|
-
import { publicBookingEngineConfigurationSchema as t } from "./chunks/booking-engine/dist/schemas/public-booking-engine-configuration-
|
|
3
|
-
import "./chunks/booking-engine/dist/schemas-
|
|
2
|
+
import { publicBookingEngineConfigurationSchema as t } from "./chunks/booking-engine/dist/schemas/public-booking-engine-configuration-CEM9mexX.js";
|
|
3
|
+
import "./chunks/booking-engine/dist/schemas-BNUzqsci.js";
|
|
4
4
|
import { z as n } from "zod";
|
|
5
5
|
//#region src/storefrontSchemas.ts
|
|
6
6
|
var r = n.string().trim().regex(/^\+[1-9]\d{1,14}$/, { message: "Invalid phone number format (expected E.164, e.g. +14155552671)." }), i = n.object({
|
|
@@ -32,15 +32,19 @@ var r = n.string().trim().regex(/^\+[1-9]\d{1,14}$/, { message: "Invalid phone n
|
|
|
32
32
|
}, d = n.preprocess((e) => {
|
|
33
33
|
let t = a.safeParse(e);
|
|
34
34
|
return t.success ? Object.fromEntries(Object.entries(t.data).map(([e, t]) => [e, u(t.value)])) : e;
|
|
35
|
-
}, c), f = n.string().regex(/^[0-9]{4}-[0-9]{2}-[0-9]{2}$/), p = t, m = n.enum(["unpublished", "published"]), h = n.enum(["auto_approve_when_possible", "manual_approval_required"]), g = n.enum(["pickup", "delivery"]), _ =
|
|
35
|
+
}, c), f = n.string().regex(/^[0-9]{4}-[0-9]{2}-[0-9]{2}$/), p = t, m = n.enum(["unpublished", "published"]), h = n.enum(["auto_approve_when_possible", "manual_approval_required"]), g = n.enum(["pickup", "delivery"]), _ = [
|
|
36
|
+
"current_booking_hero",
|
|
37
|
+
"booking_bar_overlay_hero",
|
|
38
|
+
"vertical_marquee_hero"
|
|
39
|
+
], v = n.enum(_), y = t.shape.availabilityDisplay, b = n.object({
|
|
36
40
|
status: m,
|
|
37
41
|
checkoutMode: h,
|
|
38
|
-
availabilityDisplay:
|
|
42
|
+
availabilityDisplay: y,
|
|
39
43
|
enabled: n.boolean(),
|
|
40
44
|
fulfillmentModes: n.array(g).min(1),
|
|
41
45
|
deliveryDisabledReason: n.string().trim().default(""),
|
|
42
46
|
sameDayCutoff: e
|
|
43
|
-
}),
|
|
47
|
+
}), x = n.object({
|
|
44
48
|
id: n.string().min(1),
|
|
45
49
|
slug: n.string().min(1).optional(),
|
|
46
50
|
name: n.string().min(1),
|
|
@@ -56,15 +60,15 @@ var r = n.string().trim().regex(/^\+[1-9]\d{1,14}$/, { message: "Invalid phone n
|
|
|
56
60
|
city: n.string().min(1).optional(),
|
|
57
61
|
country: n.string().min(1).optional(),
|
|
58
62
|
gpsCoordinates: n.tuple([n.number(), n.number()]).optional()
|
|
59
|
-
}),
|
|
63
|
+
}), S = n.object({
|
|
60
64
|
name: n.string().min(1).optional(),
|
|
61
65
|
workspaceLanguage: n.enum(["fr", "en"]).optional(),
|
|
62
66
|
languages: n.array(n.string().min(1)).optional()
|
|
63
|
-
}),
|
|
67
|
+
}), C = n.object({
|
|
64
68
|
id: n.string().min(1),
|
|
65
69
|
question: o,
|
|
66
70
|
answer: o
|
|
67
|
-
}),
|
|
71
|
+
}), w = n.object({
|
|
68
72
|
id: n.string().min(1),
|
|
69
73
|
enabled: n.boolean().default(!0),
|
|
70
74
|
showOnEachVisit: n.boolean().default(!1),
|
|
@@ -74,11 +78,12 @@ var r = n.string().trim().regex(/^\+[1-9]\d{1,14}$/, { message: "Invalid phone n
|
|
|
74
78
|
subtitle: a.optional(),
|
|
75
79
|
message: d.optional(),
|
|
76
80
|
imageIds: n.array(n.string().min(1)).default([])
|
|
77
|
-
}),
|
|
78
|
-
general: n.array(
|
|
79
|
-
deliveries: n.array(
|
|
80
|
-
booking: n.array(
|
|
81
|
-
}),
|
|
81
|
+
}), T = n.object({
|
|
82
|
+
general: n.array(C).default([]),
|
|
83
|
+
deliveries: n.array(C).default([]),
|
|
84
|
+
booking: n.array(C).default([])
|
|
85
|
+
}), E = n.object({
|
|
86
|
+
heroMode: v.default("current_booking_hero"),
|
|
82
87
|
tagline: a.optional(),
|
|
83
88
|
logoSquareImageId: n.string().min(1).optional(),
|
|
84
89
|
logoWideImageId: n.string().min(1).optional(),
|
|
@@ -89,23 +94,23 @@ var r = n.string().trim().regex(/^\+[1-9]\d{1,14}$/, { message: "Invalid phone n
|
|
|
89
94
|
whatsappPhone2Enabled: n.boolean().default(!1),
|
|
90
95
|
whatsappMessage: a.optional(),
|
|
91
96
|
showWhatsappFloatingButton: n.boolean().default(!0),
|
|
92
|
-
modalMessages: n.array(
|
|
93
|
-
faq:
|
|
97
|
+
modalMessages: n.array(w).default([]),
|
|
98
|
+
faq: T.default({
|
|
94
99
|
general: [],
|
|
95
100
|
deliveries: [],
|
|
96
101
|
booking: []
|
|
97
102
|
})
|
|
98
|
-
}),
|
|
103
|
+
}), D = n.object({
|
|
99
104
|
enabled: n.boolean(),
|
|
100
105
|
showRecentReviewsOnStorefront: n.boolean()
|
|
101
|
-
}),
|
|
106
|
+
}), O = n.object({ reviews: D.optional() }), k = n.object({
|
|
102
107
|
storeSlug: n.string().min(1),
|
|
103
|
-
workspace:
|
|
104
|
-
shop:
|
|
105
|
-
settings:
|
|
108
|
+
workspace: S.optional(),
|
|
109
|
+
shop: x,
|
|
110
|
+
settings: b,
|
|
106
111
|
bookingEngine: p,
|
|
107
|
-
content:
|
|
108
|
-
modules:
|
|
112
|
+
content: E.optional(),
|
|
113
|
+
modules: O.optional()
|
|
109
114
|
});
|
|
110
115
|
//#endregion
|
|
111
|
-
export { h as storefrontCheckoutModeSchema,
|
|
116
|
+
export { _ as STOREFRONT_HERO_MODES, h as storefrontCheckoutModeSchema, k as storefrontConfigurationSchema, E as storefrontContentSchema, C as storefrontFaqItemSchema, T as storefrontFaqSchema, g as storefrontFulfillmentModeSchema, v as storefrontHeroModeSchema, c as storefrontLocalizedRichTextSchema, w as storefrontModalMessageSchema, O as storefrontModulesSchema, D as storefrontReviewsModuleSchema, s as storefrontRichTextSchema, b as storefrontSettingsSchema, x as storefrontShopSchema, m as storefrontStatusSchema, S as storefrontWorkspaceSchema };
|
package/package.json
CHANGED
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
import { createLocalizedStringEntry as e, getLocalizedStringValue as t, localizedStringArraySchema as n, localizedStringEntrySchema as r, localizedStringSchema as i } from "./models/LocalizedString-D_TRgAdr.js";
|
|
2
|
-
import { currencyCodeSchema as a, currencyMinorUnitDigits as o, majorToMinor as s, minorToMajor as c, moneyMinorSchema as l, signedMoneyMinorSchema as u } from "./schemas/money-CVoCY4of.js";
|
|
3
|
-
import { priceSchema as d, priceUnitSchema as f } from "./models/Price-DCAgqkKh.js";
|
|
4
|
-
import { PRODUCT_VARIANT_CODE_IDENTIFIER_KIND as p, PRODUCT_VARIANT_CODE_MAX_LENGTH as m, accessoryProductSchema as h, bikeProductSchema as g, eBikeProductSchema as _, isProductVariantCodeIdentifierKind as v, productKindSchema as y, productSchema as b, productStorefrontDisplayModeSchema as x, productVariantAttributeSchema as S, productVariantCodeSchema as C, productVariantIdentifierSchema as w, productVariantSchema as T } from "./models/Product.shared-CTuk4fiR.js";
|
|
5
|
-
import { richTextJsonDocSchema as E, richTextSchema as D, richTextVersionSchema as O } from "./schemas/rich-text-DTRh7U3z.js";
|
|
6
|
-
import { isoDateSchema as k, shopConfigurationSchema as A, shopExtraTimeSlotRuleSchema as j, shopOpeningDayIndexSchema as M, shopOpeningDaySchema as N, shopOpeningHoursOverrideSchema as P, shopOpeningHoursPeriodSchema as F, shopOpeningSlotSchema as I, timeOfDaySchema as L } from "./schemas/shop-opening-hours-BlLD1gfz.js";
|
|
7
|
-
import { DEFAULT_CANCELLATION_POLICY as R, DEFAULT_PAYMENT_POLICIES as z, cancellationPolicySchema as B, cancellationPolicyTierSchema as V, paymentPoliciesSchema as H } from "./schemas/booking-engine-configuration-D02MRF9U.js";
|
|
8
|
-
import { fulfillmentModeSchema as U, publicBookingEngineConfigurationSchema as W, publicCheckoutConfigurationSchema as G, publicCheckoutDynamicOptionsSchema as K } from "./schemas/public-booking-engine-configuration-BnJ_H-p1.js";
|
|
9
|
-
import { DEFAULT_BOOKING_DELIVERY_OPTION as q, bookingCustomerInputSchema as J, bookingDeliveryOptionSchema as Y, bookingScheduleInputSchema as X, cartItemInputSchema as Z, createBookingInputBaseSchema as Q, createBookingInputSchema as $, resolveBookingDeliveryOption as ee, validateBookingDeliveryAddress as te } from "./schemas/cart-inputs-j1yWfJxO.js";
|
|
10
|
-
import "./schemas/base-product-1H8l2aUv.js";
|
|
11
|
-
import { baseAssetSchema as ne, baseAssetStatusSchema as re } from "./schemas/base-asset-B_Dm8_Vk.js";
|
|
12
|
-
import { baseBookingItemSchema as ie, baseBookingSchema as ae, baseBookingStateSchema as oe } from "./schemas/base-booking-DW8AEPKo.js";
|
|
13
|
-
export { q as DEFAULT_BOOKING_DELIVERY_OPTION, R as DEFAULT_CANCELLATION_POLICY, z as DEFAULT_PAYMENT_POLICIES, p as PRODUCT_VARIANT_CODE_IDENTIFIER_KIND, m as PRODUCT_VARIANT_CODE_MAX_LENGTH, h as accessoryProductSchema, ne as baseAssetSchema, re as baseAssetStatusSchema, ie as baseBookingItemSchema, ae as baseBookingSchema, oe as baseBookingStateSchema, g as bikeProductSchema, J as bookingCustomerInputSchema, Y as bookingDeliveryOptionSchema, X as bookingScheduleInputSchema, B as cancellationPolicySchema, V as cancellationPolicyTierSchema, Z as cartItemInputSchema, Q as createBookingInputBaseSchema, $ as createBookingInputSchema, e as createLocalizedStringEntry, a as currencyCodeSchema, o as currencyMinorUnitDigits, _ as eBikeProductSchema, U as fulfillmentModeSchema, t as getLocalizedStringValue, v as isProductVariantCodeIdentifierKind, k as isoDateSchema, n as localizedStringArraySchema, r as localizedStringEntrySchema, i as localizedStringSchema, s as majorToMinor, c as minorToMajor, l as moneyMinorSchema, H as paymentPoliciesSchema, d as priceSchema, f as priceUnitSchema, y as productKindSchema, b as productSchema, x as productStorefrontDisplayModeSchema, S as productVariantAttributeSchema, C as productVariantCodeSchema, w as productVariantIdentifierSchema, T as productVariantSchema, W as publicBookingEngineConfigurationSchema, G as publicCheckoutConfigurationSchema, K as publicCheckoutDynamicOptionsSchema, ee as resolveBookingDeliveryOption, E as richTextJsonDocSchema, D as richTextSchema, O as richTextVersionSchema, A as shopConfigurationSchema, j as shopExtraTimeSlotRuleSchema, M as shopOpeningDayIndexSchema, N as shopOpeningDaySchema, P as shopOpeningHoursOverrideSchema, F as shopOpeningHoursPeriodSchema, I as shopOpeningSlotSchema, u as signedMoneyMinorSchema, L as timeOfDaySchema, te as validateBookingDeliveryAddress };
|