@cimplify/sdk 0.45.0 → 0.45.2
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/advanced.d.mts +1 -1
- package/dist/advanced.d.ts +1 -1
- package/dist/{chunk-W72W6M6M.mjs → chunk-EMEUSFSR.mjs} +32 -12
- package/dist/{chunk-GCSZYC5C.js → chunk-F4CGIOIJ.js} +32 -12
- package/dist/{chunk-T4E4R4YG.js → chunk-JNXCY43J.js} +2 -2
- package/dist/{chunk-D3TVW7JP.mjs → chunk-YVIIBCJR.mjs} +1 -1
- package/dist/{client-5B9IPDmf.d.ts → client-Bsd4Vi_y.d.ts} +1 -0
- package/dist/{client-CpVMRI8V.d.mts → client-C5LcbNxL.d.mts} +1 -0
- package/dist/{client-DMhRxuzm.d.ts → client-DjzIoewX.d.ts} +1 -1
- package/dist/{client-Cwb1sMr3.d.mts → client-EM8xKCPO.d.mts} +1 -1
- package/dist/index.d.mts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/mock/cli.mjs +32 -12
- package/dist/mock/library.js +32 -12
- package/dist/mock/library.mjs +32 -12
- package/dist/mock/msw.js +32 -12
- package/dist/mock/msw.mjs +32 -12
- package/dist/react.d.mts +120 -45
- package/dist/react.d.ts +120 -45
- package/dist/react.js +453 -97
- package/dist/react.mjs +452 -98
- package/dist/server.d.mts +2 -2
- package/dist/server.d.ts +2 -2
- package/dist/styles.css +2 -2
- package/dist/testing/msw.js +2 -2
- package/dist/testing/msw.mjs +1 -1
- package/dist/testing/suite.d.mts +2 -2
- package/dist/testing/suite.d.ts +2 -2
- package/dist/testing/suite.js +21 -21
- package/dist/testing/suite.mjs +2 -2
- package/dist/testing.d.mts +2 -2
- package/dist/testing.d.ts +2 -2
- package/dist/testing.js +77 -77
- package/dist/testing.mjs +3 -3
- package/package.json +1 -1
- package/registry/booking-page.json +19 -0
- package/registry/bookings-page.json +17 -0
- package/registry/index.json +24 -0
package/dist/mock/library.mjs
CHANGED
|
@@ -5744,17 +5744,15 @@ function createLinkService({ clock, ids }) {
|
|
|
5744
5744
|
}
|
|
5745
5745
|
|
|
5746
5746
|
// src/mock/seeds/image.ts
|
|
5747
|
-
var
|
|
5748
|
-
function seedImage(industry,
|
|
5749
|
-
{
|
|
5750
|
-
return `${CIMPLIFY_CDN_BASE_URL}/seed/${industry}/${slug}.jpg`;
|
|
5751
|
-
}
|
|
5747
|
+
var CDN_BASE_URL = "https://static-tmp.cimplify.io";
|
|
5748
|
+
function seedImage(industry, photoId) {
|
|
5749
|
+
return `${CDN_BASE_URL}/seed/${industry}/${photoId}.jpg`;
|
|
5752
5750
|
}
|
|
5753
5751
|
|
|
5754
5752
|
// src/mock/seeds/default.ts
|
|
5755
5753
|
var ISO = "2026-01-01T00:00:00.000Z";
|
|
5756
5754
|
var BUSINESS_ID = "bus_default_akua_bakery";
|
|
5757
|
-
var img = (
|
|
5755
|
+
var img = (photoId) => seedImage("bakery", photoId);
|
|
5758
5756
|
function makeProduct(input, categoryIds) {
|
|
5759
5757
|
const catId = categoryIds.get(input.category);
|
|
5760
5758
|
return {
|
|
@@ -7132,7 +7130,7 @@ var PHOTO = {
|
|
|
7132
7130
|
feast: "1559847844-5315695dadae",
|
|
7133
7131
|
byo: "1551782450-a2132b4ba21d"
|
|
7134
7132
|
};
|
|
7135
|
-
var photoFor = (slug) => seedImage("restaurant",
|
|
7133
|
+
var photoFor = (slug) => seedImage("restaurant", PHOTO[slug] ?? "1414235077428-338989a2e8c0");
|
|
7136
7134
|
function seedRestaurant(registry) {
|
|
7137
7135
|
const businessId = "bus_mamas_kitchen";
|
|
7138
7136
|
const business = {
|
|
@@ -7592,7 +7590,29 @@ function seedRestaurant(registry) {
|
|
|
7592
7590
|
|
|
7593
7591
|
// src/mock/seeds/retail.ts
|
|
7594
7592
|
var ISO5 = "2026-01-01T00:00:00.000Z";
|
|
7595
|
-
var
|
|
7593
|
+
var PHOTO2 = {
|
|
7594
|
+
"android-flagship": "1592750475338-74b7b21085ab",
|
|
7595
|
+
"android-mid": "1511707171634-5f897ff02aa9",
|
|
7596
|
+
"phone-budget": "1574944985070-8f3ebc6b79d2",
|
|
7597
|
+
"laptop-pro": "1517336714731-489689fd1ca8",
|
|
7598
|
+
"laptop-air": "1496181133206-80ce9b88a853",
|
|
7599
|
+
"laptop-budget": "1601784551446-20c9e07cdbdb",
|
|
7600
|
+
"headphones-anc": "1505740420928-5e560c06d30e",
|
|
7601
|
+
"earbuds-pro": "1572569511254-d8f925fe2cbb",
|
|
7602
|
+
"speaker-bt": "1612287230202-1ff1d85d1bdf",
|
|
7603
|
+
"phone-case": "1611532736597-de2d4265fba3",
|
|
7604
|
+
"screen-protector": "1568952433726-3896e3881c65",
|
|
7605
|
+
"fast-charger": "1620794108219-aedbaded4eea",
|
|
7606
|
+
"laptop-sleeve": "1604671801908-6f0c6a092c05",
|
|
7607
|
+
"wireless-mouse": "1594732832278-abd644401426",
|
|
7608
|
+
"mech-keyboard": "1583394838336-acd977736f90",
|
|
7609
|
+
"gaming-controller": "1542751371-adc38448a05e",
|
|
7610
|
+
"gaming-headset": "1606220945770-b5b6c2c55bf1",
|
|
7611
|
+
"console-handheld": "1593642634524-b40b5baae6bb",
|
|
7612
|
+
wfh: "1605236453806-6ff36851218e",
|
|
7613
|
+
"game-pack": "1606144042614-b2417e99c4e3"
|
|
7614
|
+
};
|
|
7615
|
+
var photoFor2 = (slug) => seedImage("retail", PHOTO2[slug] ?? "1517336714731-489689fd1ca8");
|
|
7596
7616
|
function seedRetail(registry) {
|
|
7597
7617
|
const businessId = "bus_currents_electronics";
|
|
7598
7618
|
const business = {
|
|
@@ -8087,7 +8107,7 @@ var PHOTO3 = {
|
|
|
8087
8107
|
couples: "1591343395082-e120087004b4",
|
|
8088
8108
|
custom: "1540555700478-4be289fbecef"
|
|
8089
8109
|
};
|
|
8090
|
-
var photoFor3 = (slug) => seedImage("services",
|
|
8110
|
+
var photoFor3 = (slug) => seedImage("services", PHOTO3[slug] ?? "1540555700478-4be289fbecef");
|
|
8091
8111
|
function seedServices(registry) {
|
|
8092
8112
|
const businessId = "bus_serene_spa";
|
|
8093
8113
|
const business = {
|
|
@@ -8495,7 +8515,7 @@ var PHOTO4 = {
|
|
|
8495
8515
|
"trash-bags": "1605600659908-0ef719419d41",
|
|
8496
8516
|
essentials: "1542838132-92c53300491e"
|
|
8497
8517
|
};
|
|
8498
|
-
var photoFor4 = (slug) => seedImage("grocery",
|
|
8518
|
+
var photoFor4 = (slug) => seedImage("grocery", PHOTO4[slug] ?? "1542838132-92c53300491e");
|
|
8499
8519
|
function seedGrocery(registry) {
|
|
8500
8520
|
const businessId = "bus_freshmart";
|
|
8501
8521
|
const business = {
|
|
@@ -8774,7 +8794,7 @@ var PHOTO5 = {
|
|
|
8774
8794
|
"knit-beanie": "1542838132-92c53300491e",
|
|
8775
8795
|
"studio-sock-3pack": "1602810318383-e386cc2a3ccf"
|
|
8776
8796
|
};
|
|
8777
|
-
var photoFor5 = (slug) => seedImage("fashion",
|
|
8797
|
+
var photoFor5 = (slug) => seedImage("fashion", PHOTO5[slug] ?? "1556905055-8f358a7a47b2");
|
|
8778
8798
|
var SIZES = ["XS", "S", "M", "L", "XL", "2XL"];
|
|
8779
8799
|
function seedFashion(registry) {
|
|
8780
8800
|
const businessId = "bus_studio_frx";
|
|
@@ -8789,7 +8809,7 @@ function seedFashion(registry) {
|
|
|
8789
8809
|
default_address: "Osu Oxford Street, Accra",
|
|
8790
8810
|
default_offers_table_service: false,
|
|
8791
8811
|
default_accepts_online_orders: true,
|
|
8792
|
-
image: seedImage("fashion", "
|
|
8812
|
+
image: seedImage("fashion", "1490481651871-ab68de25d43d"),
|
|
8793
8813
|
status: "active",
|
|
8794
8814
|
created_at: ISO8,
|
|
8795
8815
|
updated_at: ISO8,
|
package/dist/mock/msw.js
CHANGED
|
@@ -5744,17 +5744,15 @@ function createLinkService({ clock, ids }) {
|
|
|
5744
5744
|
}
|
|
5745
5745
|
|
|
5746
5746
|
// src/mock/seeds/image.ts
|
|
5747
|
-
var
|
|
5748
|
-
function seedImage(industry,
|
|
5749
|
-
{
|
|
5750
|
-
return `${CIMPLIFY_CDN_BASE_URL}/seed/${industry}/${slug}.jpg`;
|
|
5751
|
-
}
|
|
5747
|
+
var CDN_BASE_URL = "https://static-tmp.cimplify.io";
|
|
5748
|
+
function seedImage(industry, photoId) {
|
|
5749
|
+
return `${CDN_BASE_URL}/seed/${industry}/${photoId}.jpg`;
|
|
5752
5750
|
}
|
|
5753
5751
|
|
|
5754
5752
|
// src/mock/seeds/default.ts
|
|
5755
5753
|
var ISO = "2026-01-01T00:00:00.000Z";
|
|
5756
5754
|
var BUSINESS_ID = "bus_default_akua_bakery";
|
|
5757
|
-
var img = (
|
|
5755
|
+
var img = (photoId) => seedImage("bakery", photoId);
|
|
5758
5756
|
function makeProduct(input, categoryIds) {
|
|
5759
5757
|
const catId = categoryIds.get(input.category);
|
|
5760
5758
|
return {
|
|
@@ -7132,7 +7130,7 @@ var PHOTO = {
|
|
|
7132
7130
|
feast: "1559847844-5315695dadae",
|
|
7133
7131
|
byo: "1551782450-a2132b4ba21d"
|
|
7134
7132
|
};
|
|
7135
|
-
var photoFor = (slug) => seedImage("restaurant",
|
|
7133
|
+
var photoFor = (slug) => seedImage("restaurant", PHOTO[slug] ?? "1414235077428-338989a2e8c0");
|
|
7136
7134
|
function seedRestaurant(registry) {
|
|
7137
7135
|
const businessId = "bus_mamas_kitchen";
|
|
7138
7136
|
const business = {
|
|
@@ -7592,7 +7590,29 @@ function seedRestaurant(registry) {
|
|
|
7592
7590
|
|
|
7593
7591
|
// src/mock/seeds/retail.ts
|
|
7594
7592
|
var ISO5 = "2026-01-01T00:00:00.000Z";
|
|
7595
|
-
var
|
|
7593
|
+
var PHOTO2 = {
|
|
7594
|
+
"android-flagship": "1592750475338-74b7b21085ab",
|
|
7595
|
+
"android-mid": "1511707171634-5f897ff02aa9",
|
|
7596
|
+
"phone-budget": "1574944985070-8f3ebc6b79d2",
|
|
7597
|
+
"laptop-pro": "1517336714731-489689fd1ca8",
|
|
7598
|
+
"laptop-air": "1496181133206-80ce9b88a853",
|
|
7599
|
+
"laptop-budget": "1601784551446-20c9e07cdbdb",
|
|
7600
|
+
"headphones-anc": "1505740420928-5e560c06d30e",
|
|
7601
|
+
"earbuds-pro": "1572569511254-d8f925fe2cbb",
|
|
7602
|
+
"speaker-bt": "1612287230202-1ff1d85d1bdf",
|
|
7603
|
+
"phone-case": "1611532736597-de2d4265fba3",
|
|
7604
|
+
"screen-protector": "1568952433726-3896e3881c65",
|
|
7605
|
+
"fast-charger": "1620794108219-aedbaded4eea",
|
|
7606
|
+
"laptop-sleeve": "1604671801908-6f0c6a092c05",
|
|
7607
|
+
"wireless-mouse": "1594732832278-abd644401426",
|
|
7608
|
+
"mech-keyboard": "1583394838336-acd977736f90",
|
|
7609
|
+
"gaming-controller": "1542751371-adc38448a05e",
|
|
7610
|
+
"gaming-headset": "1606220945770-b5b6c2c55bf1",
|
|
7611
|
+
"console-handheld": "1593642634524-b40b5baae6bb",
|
|
7612
|
+
wfh: "1605236453806-6ff36851218e",
|
|
7613
|
+
"game-pack": "1606144042614-b2417e99c4e3"
|
|
7614
|
+
};
|
|
7615
|
+
var photoFor2 = (slug) => seedImage("retail", PHOTO2[slug] ?? "1517336714731-489689fd1ca8");
|
|
7596
7616
|
function seedRetail(registry) {
|
|
7597
7617
|
const businessId = "bus_currents_electronics";
|
|
7598
7618
|
const business = {
|
|
@@ -8087,7 +8107,7 @@ var PHOTO3 = {
|
|
|
8087
8107
|
couples: "1591343395082-e120087004b4",
|
|
8088
8108
|
custom: "1540555700478-4be289fbecef"
|
|
8089
8109
|
};
|
|
8090
|
-
var photoFor3 = (slug) => seedImage("services",
|
|
8110
|
+
var photoFor3 = (slug) => seedImage("services", PHOTO3[slug] ?? "1540555700478-4be289fbecef");
|
|
8091
8111
|
function seedServices(registry) {
|
|
8092
8112
|
const businessId = "bus_serene_spa";
|
|
8093
8113
|
const business = {
|
|
@@ -8495,7 +8515,7 @@ var PHOTO4 = {
|
|
|
8495
8515
|
"trash-bags": "1605600659908-0ef719419d41",
|
|
8496
8516
|
essentials: "1542838132-92c53300491e"
|
|
8497
8517
|
};
|
|
8498
|
-
var photoFor4 = (slug) => seedImage("grocery",
|
|
8518
|
+
var photoFor4 = (slug) => seedImage("grocery", PHOTO4[slug] ?? "1542838132-92c53300491e");
|
|
8499
8519
|
function seedGrocery(registry) {
|
|
8500
8520
|
const businessId = "bus_freshmart";
|
|
8501
8521
|
const business = {
|
|
@@ -8774,7 +8794,7 @@ var PHOTO5 = {
|
|
|
8774
8794
|
"knit-beanie": "1542838132-92c53300491e",
|
|
8775
8795
|
"studio-sock-3pack": "1602810318383-e386cc2a3ccf"
|
|
8776
8796
|
};
|
|
8777
|
-
var photoFor5 = (slug) => seedImage("fashion",
|
|
8797
|
+
var photoFor5 = (slug) => seedImage("fashion", PHOTO5[slug] ?? "1556905055-8f358a7a47b2");
|
|
8778
8798
|
var SIZES = ["XS", "S", "M", "L", "XL", "2XL"];
|
|
8779
8799
|
function seedFashion(registry) {
|
|
8780
8800
|
const businessId = "bus_studio_frx";
|
|
@@ -8789,7 +8809,7 @@ function seedFashion(registry) {
|
|
|
8789
8809
|
default_address: "Osu Oxford Street, Accra",
|
|
8790
8810
|
default_offers_table_service: false,
|
|
8791
8811
|
default_accepts_online_orders: true,
|
|
8792
|
-
image: seedImage("fashion", "
|
|
8812
|
+
image: seedImage("fashion", "1490481651871-ab68de25d43d"),
|
|
8793
8813
|
status: "active",
|
|
8794
8814
|
created_at: ISO8,
|
|
8795
8815
|
updated_at: ISO8,
|
package/dist/mock/msw.mjs
CHANGED
|
@@ -5742,17 +5742,15 @@ function createLinkService({ clock, ids }) {
|
|
|
5742
5742
|
}
|
|
5743
5743
|
|
|
5744
5744
|
// src/mock/seeds/image.ts
|
|
5745
|
-
var
|
|
5746
|
-
function seedImage(industry,
|
|
5747
|
-
{
|
|
5748
|
-
return `${CIMPLIFY_CDN_BASE_URL}/seed/${industry}/${slug}.jpg`;
|
|
5749
|
-
}
|
|
5745
|
+
var CDN_BASE_URL = "https://static-tmp.cimplify.io";
|
|
5746
|
+
function seedImage(industry, photoId) {
|
|
5747
|
+
return `${CDN_BASE_URL}/seed/${industry}/${photoId}.jpg`;
|
|
5750
5748
|
}
|
|
5751
5749
|
|
|
5752
5750
|
// src/mock/seeds/default.ts
|
|
5753
5751
|
var ISO = "2026-01-01T00:00:00.000Z";
|
|
5754
5752
|
var BUSINESS_ID = "bus_default_akua_bakery";
|
|
5755
|
-
var img = (
|
|
5753
|
+
var img = (photoId) => seedImage("bakery", photoId);
|
|
5756
5754
|
function makeProduct(input, categoryIds) {
|
|
5757
5755
|
const catId = categoryIds.get(input.category);
|
|
5758
5756
|
return {
|
|
@@ -7130,7 +7128,7 @@ var PHOTO = {
|
|
|
7130
7128
|
feast: "1559847844-5315695dadae",
|
|
7131
7129
|
byo: "1551782450-a2132b4ba21d"
|
|
7132
7130
|
};
|
|
7133
|
-
var photoFor = (slug) => seedImage("restaurant",
|
|
7131
|
+
var photoFor = (slug) => seedImage("restaurant", PHOTO[slug] ?? "1414235077428-338989a2e8c0");
|
|
7134
7132
|
function seedRestaurant(registry) {
|
|
7135
7133
|
const businessId = "bus_mamas_kitchen";
|
|
7136
7134
|
const business = {
|
|
@@ -7590,7 +7588,29 @@ function seedRestaurant(registry) {
|
|
|
7590
7588
|
|
|
7591
7589
|
// src/mock/seeds/retail.ts
|
|
7592
7590
|
var ISO5 = "2026-01-01T00:00:00.000Z";
|
|
7593
|
-
var
|
|
7591
|
+
var PHOTO2 = {
|
|
7592
|
+
"android-flagship": "1592750475338-74b7b21085ab",
|
|
7593
|
+
"android-mid": "1511707171634-5f897ff02aa9",
|
|
7594
|
+
"phone-budget": "1574944985070-8f3ebc6b79d2",
|
|
7595
|
+
"laptop-pro": "1517336714731-489689fd1ca8",
|
|
7596
|
+
"laptop-air": "1496181133206-80ce9b88a853",
|
|
7597
|
+
"laptop-budget": "1601784551446-20c9e07cdbdb",
|
|
7598
|
+
"headphones-anc": "1505740420928-5e560c06d30e",
|
|
7599
|
+
"earbuds-pro": "1572569511254-d8f925fe2cbb",
|
|
7600
|
+
"speaker-bt": "1612287230202-1ff1d85d1bdf",
|
|
7601
|
+
"phone-case": "1611532736597-de2d4265fba3",
|
|
7602
|
+
"screen-protector": "1568952433726-3896e3881c65",
|
|
7603
|
+
"fast-charger": "1620794108219-aedbaded4eea",
|
|
7604
|
+
"laptop-sleeve": "1604671801908-6f0c6a092c05",
|
|
7605
|
+
"wireless-mouse": "1594732832278-abd644401426",
|
|
7606
|
+
"mech-keyboard": "1583394838336-acd977736f90",
|
|
7607
|
+
"gaming-controller": "1542751371-adc38448a05e",
|
|
7608
|
+
"gaming-headset": "1606220945770-b5b6c2c55bf1",
|
|
7609
|
+
"console-handheld": "1593642634524-b40b5baae6bb",
|
|
7610
|
+
wfh: "1605236453806-6ff36851218e",
|
|
7611
|
+
"game-pack": "1606144042614-b2417e99c4e3"
|
|
7612
|
+
};
|
|
7613
|
+
var photoFor2 = (slug) => seedImage("retail", PHOTO2[slug] ?? "1517336714731-489689fd1ca8");
|
|
7594
7614
|
function seedRetail(registry) {
|
|
7595
7615
|
const businessId = "bus_currents_electronics";
|
|
7596
7616
|
const business = {
|
|
@@ -8085,7 +8105,7 @@ var PHOTO3 = {
|
|
|
8085
8105
|
couples: "1591343395082-e120087004b4",
|
|
8086
8106
|
custom: "1540555700478-4be289fbecef"
|
|
8087
8107
|
};
|
|
8088
|
-
var photoFor3 = (slug) => seedImage("services",
|
|
8108
|
+
var photoFor3 = (slug) => seedImage("services", PHOTO3[slug] ?? "1540555700478-4be289fbecef");
|
|
8089
8109
|
function seedServices(registry) {
|
|
8090
8110
|
const businessId = "bus_serene_spa";
|
|
8091
8111
|
const business = {
|
|
@@ -8493,7 +8513,7 @@ var PHOTO4 = {
|
|
|
8493
8513
|
"trash-bags": "1605600659908-0ef719419d41",
|
|
8494
8514
|
essentials: "1542838132-92c53300491e"
|
|
8495
8515
|
};
|
|
8496
|
-
var photoFor4 = (slug) => seedImage("grocery",
|
|
8516
|
+
var photoFor4 = (slug) => seedImage("grocery", PHOTO4[slug] ?? "1542838132-92c53300491e");
|
|
8497
8517
|
function seedGrocery(registry) {
|
|
8498
8518
|
const businessId = "bus_freshmart";
|
|
8499
8519
|
const business = {
|
|
@@ -8772,7 +8792,7 @@ var PHOTO5 = {
|
|
|
8772
8792
|
"knit-beanie": "1542838132-92c53300491e",
|
|
8773
8793
|
"studio-sock-3pack": "1602810318383-e386cc2a3ccf"
|
|
8774
8794
|
};
|
|
8775
|
-
var photoFor5 = (slug) => seedImage("fashion",
|
|
8795
|
+
var photoFor5 = (slug) => seedImage("fashion", PHOTO5[slug] ?? "1556905055-8f358a7a47b2");
|
|
8776
8796
|
var SIZES = ["XS", "S", "M", "L", "XL", "2XL"];
|
|
8777
8797
|
function seedFashion(registry) {
|
|
8778
8798
|
const businessId = "bus_studio_frx";
|
|
@@ -8787,7 +8807,7 @@ function seedFashion(registry) {
|
|
|
8787
8807
|
default_address: "Osu Oxford Street, Accra",
|
|
8788
8808
|
default_offers_table_service: false,
|
|
8789
8809
|
default_accepts_online_orders: true,
|
|
8790
|
-
image: seedImage("fashion", "
|
|
8810
|
+
image: seedImage("fashion", "1490481651871-ab68de25d43d"),
|
|
8791
8811
|
status: "active",
|
|
8792
8812
|
created_at: ISO8,
|
|
8793
8813
|
updated_at: ISO8,
|
package/dist/react.d.mts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import React$1, { ReactNode } from 'react';
|
|
2
2
|
import { A as AdSlot, a as AdPosition, e as AdContextValue } from './ads-BxbWrwqp.mjs';
|
|
3
3
|
export { c as AdConfig, g as getVariantDisplayName } from './ads-BxbWrwqp.mjs';
|
|
4
|
-
import { C as CimplifyClient, an as ProcessCheckoutResult, ap as CheckoutStatus, aq as CheckoutStatusContext, bZ as Location, bW as Business, k as ReorderResult, b4 as OrderStatus, bh as Order, d as QuoteBundleSelectionInput, Q as QuoteCompositeSelectionInput, P as PriceQuote, g as QuoteUiMessage, ca as Service, cf as AvailableSlot, cg as DayAvailability, cl as CustomerBooking, cr as CancelBookingResult, J as ActivityStateResponse, E as SessionMessage, K as ActivityRecommendation, W as DeliveryFeeResponse, d0 as FxRateResponse, c4 as StorefrontBootstrap, a0 as ChatWidgetStarter, Y as ChatMessage, ab as ElementsOptions, de as AuthenticatedData, da as AddressInfo, db as PaymentMethodInfo, a5 as CimplifyElements, dg as ElementsCheckoutResult, am as ProcessCheckoutOptions, bg as LineItem, cb as Staff, c2 as Room } from './client-
|
|
4
|
+
import { C as CimplifyClient, an as ProcessCheckoutResult, ap as CheckoutStatus, aq as CheckoutStatusContext, bZ as Location, bW as Business, k as ReorderResult, b4 as OrderStatus, bh as Order, d as QuoteBundleSelectionInput, Q as QuoteCompositeSelectionInput, P as PriceQuote, g as QuoteUiMessage, ca as Service, cf as AvailableSlot, cg as DayAvailability, cl as CustomerBooking, cr as CancelBookingResult, J as ActivityStateResponse, E as SessionMessage, K as ActivityRecommendation, W as DeliveryFeeResponse, d0 as FxRateResponse, c4 as StorefrontBootstrap, a0 as ChatWidgetStarter, Y as ChatMessage, ab as ElementsOptions, de as AuthenticatedData, da as AddressInfo, db as PaymentMethodInfo, a5 as CimplifyElements, dg as ElementsCheckoutResult, am as ProcessCheckoutOptions, bg as LineItem, cb as Staff, c2 as Room } from './client-C5LcbNxL.mjs';
|
|
5
5
|
import { a as CurrencyCode, U as Product, d as Pagination, h as CimplifyError, a8 as ProductWithDetails, an as Category, M as Money, bi as BundleSelectionInput, aN as ComponentSelectionInput, bl as BundleSelectionData, bo as CompositeSelectionData, ap as Collection, aV as ProductTaxonomy, aW as TaxonomyWithChildren, aU as ProductTimeProfile, aZ as Deal, a_ as ProductDealInfo, a$ as DiscountValidation, au as BundleSummary, aO as CompositePriceResult, c2 as SubscriptionStatus, c3 as Subscription, c6 as SubscriptionWithDetails, H as CustomAttributeDefinition, N as PropertyFacet, b$ as ProductBillingPlan, a9 as VariantView, ad as VariantAxisWithValues, aj as AddOnWithOptions, az as BundleComponentView, as as BundlePriceType, aK as CompositeGroupView, bt as DisplayCart, a4 as ProductInputField, J as CustomAttributeValue, L as ProductProperty, a6 as QuantityPricingTier } from './payment-4JSLNTVM.mjs';
|
|
6
6
|
import { P as ProductWithPrice } from './price-DMijJ6_3.mjs';
|
|
7
7
|
import { ClassValue } from 'clsx';
|
|
@@ -1766,6 +1766,124 @@ interface BookingListProps {
|
|
|
1766
1766
|
}
|
|
1767
1767
|
declare function BookingList({ bookings: bookingsProp, filter, onCancel, onReschedule, onBookingClick, renderBooking, emptyMessage, className, classNames, }: BookingListProps): React$1.ReactElement;
|
|
1768
1768
|
|
|
1769
|
+
interface Resource {
|
|
1770
|
+
id: string;
|
|
1771
|
+
name: string;
|
|
1772
|
+
description?: string;
|
|
1773
|
+
capacity?: number;
|
|
1774
|
+
floor?: string;
|
|
1775
|
+
image_url?: string;
|
|
1776
|
+
is_available?: boolean;
|
|
1777
|
+
}
|
|
1778
|
+
interface ResourcePickerClassNames {
|
|
1779
|
+
root?: string;
|
|
1780
|
+
option?: string;
|
|
1781
|
+
image?: string;
|
|
1782
|
+
name?: string;
|
|
1783
|
+
description?: string;
|
|
1784
|
+
meta?: string;
|
|
1785
|
+
capacity?: string;
|
|
1786
|
+
floor?: string;
|
|
1787
|
+
unavailable?: string;
|
|
1788
|
+
}
|
|
1789
|
+
interface ResourcePickerProps {
|
|
1790
|
+
/** List of available resources (rooms, equipment, etc.). */
|
|
1791
|
+
resources: Resource[];
|
|
1792
|
+
/** Currently selected resource ID, or null for "Any available". */
|
|
1793
|
+
selectedResourceId?: string | null;
|
|
1794
|
+
/** Called when a resource is selected. Passes null for "Any available". */
|
|
1795
|
+
onResourceSelect?: (resourceId: string | null) => void;
|
|
1796
|
+
/** Show "Any available" option. Default: true. */
|
|
1797
|
+
showAnyOption?: boolean;
|
|
1798
|
+
/** Label for the "Any available" option. */
|
|
1799
|
+
anyLabel?: string;
|
|
1800
|
+
/** Custom image renderer (e.g. Next.js Image). */
|
|
1801
|
+
renderImage?: (props: {
|
|
1802
|
+
src: string;
|
|
1803
|
+
alt: string;
|
|
1804
|
+
className?: string;
|
|
1805
|
+
}) => React$1.ReactNode;
|
|
1806
|
+
className?: string;
|
|
1807
|
+
classNames?: ResourcePickerClassNames;
|
|
1808
|
+
}
|
|
1809
|
+
declare function roomToResource(room: Room): Resource;
|
|
1810
|
+
declare function ResourcePicker({ resources, selectedResourceId, onResourceSelect, showAnyOption, anyLabel, renderImage, className, classNames, }: ResourcePickerProps): React$1.ReactElement;
|
|
1811
|
+
|
|
1812
|
+
interface BookingPageClassNames {
|
|
1813
|
+
root?: string;
|
|
1814
|
+
header?: string;
|
|
1815
|
+
title?: string;
|
|
1816
|
+
serviceInfo?: string;
|
|
1817
|
+
step?: string;
|
|
1818
|
+
stepTitle?: string;
|
|
1819
|
+
summary?: string;
|
|
1820
|
+
summaryRow?: string;
|
|
1821
|
+
confirmButton?: string;
|
|
1822
|
+
backButton?: string;
|
|
1823
|
+
error?: string;
|
|
1824
|
+
rescheduleInfo?: string;
|
|
1825
|
+
depositInfo?: string;
|
|
1826
|
+
cancellationPolicy?: string;
|
|
1827
|
+
resourceStep?: string;
|
|
1828
|
+
}
|
|
1829
|
+
interface BookingPageProps {
|
|
1830
|
+
/** The service being booked. */
|
|
1831
|
+
service: Service;
|
|
1832
|
+
/** The underlying product (for deposit/cancellation fields). Falls back to service fields. */
|
|
1833
|
+
product?: Product;
|
|
1834
|
+
/** Optional staff list for staff selection step. */
|
|
1835
|
+
staff?: Staff[];
|
|
1836
|
+
/** Optional resources for resource selection step (rooms, equipment, etc.). */
|
|
1837
|
+
resources?: Resource[];
|
|
1838
|
+
/** Number of participants. */
|
|
1839
|
+
participantCount?: number;
|
|
1840
|
+
/** Page title. */
|
|
1841
|
+
title?: string;
|
|
1842
|
+
/** Called after successfully adding to cart. */
|
|
1843
|
+
onBooked?: (slot: AvailableSlot, staffId: string | null) => void;
|
|
1844
|
+
/** Called when user wants to go back. */
|
|
1845
|
+
onBack?: () => void;
|
|
1846
|
+
/** Existing booking for reschedule mode. */
|
|
1847
|
+
existingBooking?: CustomerBooking;
|
|
1848
|
+
/** Called after a successful reschedule. */
|
|
1849
|
+
onRescheduled?: (booking: CustomerBooking, newSlot: AvailableSlot) => void;
|
|
1850
|
+
/** Show price on slots. Default: true. */
|
|
1851
|
+
showPrice?: boolean;
|
|
1852
|
+
className?: string;
|
|
1853
|
+
classNames?: BookingPageClassNames;
|
|
1854
|
+
}
|
|
1855
|
+
declare function BookingPage({ service, product, staff, resources, participantCount, title, onBooked, onBack, existingBooking, onRescheduled, showPrice, className, classNames, }: BookingPageProps): React$1.ReactElement;
|
|
1856
|
+
|
|
1857
|
+
interface BookingsPageClassNames {
|
|
1858
|
+
root?: string;
|
|
1859
|
+
header?: string;
|
|
1860
|
+
title?: string;
|
|
1861
|
+
filters?: string;
|
|
1862
|
+
filterButton?: string;
|
|
1863
|
+
list?: string;
|
|
1864
|
+
detail?: string;
|
|
1865
|
+
backButton?: string;
|
|
1866
|
+
}
|
|
1867
|
+
interface BookingsPageProps {
|
|
1868
|
+
/** Page title. */
|
|
1869
|
+
title?: string;
|
|
1870
|
+
/** Pre-fetched bookings for SSR. */
|
|
1871
|
+
bookings?: CustomerBooking[];
|
|
1872
|
+
/** Called when navigating to a booking detail (e.g. for routing). */
|
|
1873
|
+
onBookingNavigate?: (booking: CustomerBooking) => void;
|
|
1874
|
+
/** Called when cancel is clicked. */
|
|
1875
|
+
onCancel?: (booking: CustomerBooking) => void;
|
|
1876
|
+
/** Called when reschedule is clicked. */
|
|
1877
|
+
onReschedule?: (booking: CustomerBooking) => void;
|
|
1878
|
+
/** Show filter tabs. Default: true. */
|
|
1879
|
+
showFilters?: boolean;
|
|
1880
|
+
/** Custom booking renderer. */
|
|
1881
|
+
renderBooking?: (booking: CustomerBooking) => React$1.ReactNode;
|
|
1882
|
+
className?: string;
|
|
1883
|
+
classNames?: BookingsPageClassNames;
|
|
1884
|
+
}
|
|
1885
|
+
declare function BookingsPage({ title, bookings: bookingsProp, onBookingNavigate, onCancel, onReschedule, showFilters, renderBooking, className, classNames, }: BookingsPageProps): React$1.ReactElement;
|
|
1886
|
+
|
|
1769
1887
|
interface CatalogueLayoutProps {
|
|
1770
1888
|
products: Product[];
|
|
1771
1889
|
categories: Category[];
|
|
@@ -2592,49 +2710,6 @@ interface CurrencySelectorProps {
|
|
|
2592
2710
|
*/
|
|
2593
2711
|
declare function CurrencySelector({ currencies, currentCurrency, onCurrencyChange, showRate, baseCurrency, renderCurrency, className, classNames, }: CurrencySelectorProps): React$1.ReactElement | null;
|
|
2594
2712
|
|
|
2595
|
-
interface Resource {
|
|
2596
|
-
id: string;
|
|
2597
|
-
name: string;
|
|
2598
|
-
description?: string;
|
|
2599
|
-
capacity?: number;
|
|
2600
|
-
floor?: string;
|
|
2601
|
-
image_url?: string;
|
|
2602
|
-
is_available?: boolean;
|
|
2603
|
-
}
|
|
2604
|
-
interface ResourcePickerClassNames {
|
|
2605
|
-
root?: string;
|
|
2606
|
-
option?: string;
|
|
2607
|
-
image?: string;
|
|
2608
|
-
name?: string;
|
|
2609
|
-
description?: string;
|
|
2610
|
-
meta?: string;
|
|
2611
|
-
capacity?: string;
|
|
2612
|
-
floor?: string;
|
|
2613
|
-
unavailable?: string;
|
|
2614
|
-
}
|
|
2615
|
-
interface ResourcePickerProps {
|
|
2616
|
-
/** List of available resources (rooms, equipment, etc.). */
|
|
2617
|
-
resources: Resource[];
|
|
2618
|
-
/** Currently selected resource ID, or null for "Any available". */
|
|
2619
|
-
selectedResourceId?: string | null;
|
|
2620
|
-
/** Called when a resource is selected. Passes null for "Any available". */
|
|
2621
|
-
onResourceSelect?: (resourceId: string | null) => void;
|
|
2622
|
-
/** Show "Any available" option. Default: true. */
|
|
2623
|
-
showAnyOption?: boolean;
|
|
2624
|
-
/** Label for the "Any available" option. */
|
|
2625
|
-
anyLabel?: string;
|
|
2626
|
-
/** Custom image renderer (e.g. Next.js Image). */
|
|
2627
|
-
renderImage?: (props: {
|
|
2628
|
-
src: string;
|
|
2629
|
-
alt: string;
|
|
2630
|
-
className?: string;
|
|
2631
|
-
}) => React$1.ReactNode;
|
|
2632
|
-
className?: string;
|
|
2633
|
-
classNames?: ResourcePickerClassNames;
|
|
2634
|
-
}
|
|
2635
|
-
declare function roomToResource(room: Room): Resource;
|
|
2636
|
-
declare function ResourcePicker({ resources, selectedResourceId, onResourceSelect, showAnyOption, anyLabel, renderImage, className, classNames, }: ResourcePickerProps): React$1.ReactElement;
|
|
2637
|
-
|
|
2638
2713
|
interface ChatWidgetClassNames {
|
|
2639
2714
|
root?: string;
|
|
2640
2715
|
bubble?: string;
|
|
@@ -2667,4 +2742,4 @@ interface ChatWidgetProps {
|
|
|
2667
2742
|
}
|
|
2668
2743
|
declare function ChatWidget({ client: clientProp, businessName, greeting, subtitle, starters, placeholder, position, defaultOpen, pollInterval, className, classNames, }: ChatWidgetProps): react_jsx_runtime.JSX.Element;
|
|
2669
2744
|
|
|
2670
|
-
export { AccommodationCard, Ad, AdPosition, type AdProps, AdProvider, AdSlot, AddOnSelector, type AddOnSelectorClassNames, type AddOnSelectorProps, type AddToCartOptions, AddressElement, AuthElement, AvailabilityBadge, type AvailabilityBadgeClassNames, type AvailabilityBadgeProps, BillingPlanSelector, type BillingPlanSelectorClassNames, type BillingPlanSelectorProps, BookingCard, type BookingCardClassNames, type BookingCardProps, BookingList, type BookingListClassNames, type BookingListProps, BundleProductCard, BundleProductLayout, BundleSelector, type BundleSelectorClassNames, type BundleSelectorProps, CardImage, type CardLayoutProps, CardShell, CardVariant, type CartAddOnOptionSelection, CartDrawer, type CartDrawerProps, CartDrawerProvider, type CartLayoutProps, CartPage, type CartPageClassNames, type CartPageProps, CartSummary, type CartSummaryClassNames, type CartSummaryProps, CartTemplate, type CartVariantSelection, CatalogueCollectionLayout, type CatalogueLayoutProps, CataloguePage, type CataloguePageClassNames, type CataloguePageProps, CatalogueTemplate, CategoryFilter, type CategoryFilterClassNames, type CategoryFilterProps, CategoryGrid, type CategoryGridClassNames, type CategoryGridProps, ChatWidget, type ChatWidgetClassNames, type ChatWidgetProps, CheckoutPage, type CheckoutPageClassNames, type CheckoutPageProps, CimplifyAccount, type CimplifyAccountProps, CimplifyCheckout, type CimplifyCheckoutProps, type CimplifyClientContextValue, type CimplifyContextValue, CimplifyProvider, type CimplifyProviderProps, type CollectionLayoutProps, CollectionPage, type CollectionPageClassNames, type CollectionPageProps, CollectionTemplate, CompactCartLayout, CompactCatalogueLayout, CompactSearchLayout, CompactServiceCard, CompositeProductCard, CompositeProductLayout, CompositeSelector, type CompositeSelectorClassNames, type CompositeSelectorProps, CurrencySelector, type CurrencySelectorClassNames, type CurrencySelectorProps, CustomAttributesTable, CustomerInputFields, type CustomerInputFieldsClassNames, type CustomerInputFieldsProps, DateSlotPicker, type DateSlotPickerClassNames, type DateSlotPickerProps, DealBanner, type DealBannerClassNames, type DealBannerProps, DealsPage, type DealsPageClassNames, type DealsPageProps, DefaultCartLayout, DefaultCatalogueLayout, DefaultCollectionLayout, DefaultProductLayout, DefaultSearchLayout, DeliveryEstimate, type DeliveryEstimateClassNames, type DeliveryEstimateProps, DigitalProductCard, DigitalProductLayout, DiscountInput, type DiscountInputClassNames, type DiscountInputProps, ElementsProvider, FeaturedCollectionLayout, FoodProductCard, FoodProductLayout, InventoryBadge, LeaseServiceCard, LocationPicker, type LocationPickerClassNames, type LocationPickerProps, MetadataStringList, OrderDetailPage, type OrderDetailPageClassNames, type OrderDetailPageProps, OrderHistory, type OrderHistoryClassNames, OrderHistoryPage, type OrderHistoryPageClassNames, type OrderHistoryPageProps, type OrderHistoryProps, OrderSummary, type OrderSummaryClassNames, type OrderSummaryProps, PaymentElement, Price, type PriceProps, PriceRange, type PriceRangeProps, ProductCard, type ProductCardClassNames, type ProductCardProps, ProductCustomizer, type ProductCustomizerClassNames, type ProductCustomizerProps, ProductGrid, type ProductGridClassNames, type ProductGridProps, ProductImageGallery, type ProductImageGalleryProps, type ProductLayoutProps, ProductPage, type ProductPageClassNames, type ProductPageProps, ProductSheet, type ProductSheetClassNames, type ProductSheetProps, ProductTemplate, PropertiesTable, QuantitySelector, type QuantitySelectorClassNames, type QuantitySelectorProps, QuickAddButton, RecentlyViewed, type RecentlyViewedClassNames, type RecentlyViewedProps, RecommendationCarousel, type RecommendationCarouselClassNames, type RecommendationCarouselProps, RelatedProductsSection, RentalServiceCard, type Resource, ResourcePicker, type ResourcePickerClassNames, type ResourcePickerProps, RetailProductCard, SaleBadge, type SaleBadgeClassNames, type SaleBadgeProps, ScheduleServiceCard, SearchInput, type SearchInputClassNames, type SearchInputProps, type SearchLayoutProps, SearchPage, type SearchPageClassNames, type SearchPageProps, SearchTemplate, type ServiceCardLayoutProps, ServiceProductLayout, SessionMessageBanner, type SessionMessageBannerClassNames, type SessionMessageBannerProps, SlotPicker, type SlotPickerClassNames, type SlotPickerProps, SoldOutOverlay, StaffPicker, type StaffPickerClassNames, type StaffPickerProps, StandardServiceCard, StoreNav, type StoreNavClassNames, type StoreNavProps, SubscriptionCard, TagPills, TwoColumnGrid, type UseActivityStateOptions, type UseActivityStateResult, type UseAttributeDefinitionsOptions, type UseAttributeDefinitionsResult, type UseAvailableSlotsOptions, type UseAvailableSlotsResult, type UseBillingPlansOptions, type UseBillingPlansResult, type UseBookingsOptions, type UseBookingsResult, type UseBootstrapOptions, type UseBootstrapResult, type UseBundlesOptions, type UseBundlesResult, type UseCartItem, type UseCartOptions, type UseCartResult, type UseCategoriesOptions, type UseCategoriesResult, type UseChatOptions, type UseChatResult, type UseCollectionOptions, type UseCollectionResult, type UseCollectionsOptions, type UseCollectionsResult, type UseDealsOptions, type UseDealsResult, type UseDeliveryFeeOptions, type UseDeliveryFeeResult, type UseFxRateOptions, type UseFxRateResult, type UseLocationsOptions, type UseLocationsResult, type UseOrderOptions, type UseOrderResult, type UseOrdersOptions, type UseOrdersResult, type UseProductAvailabilityOptions, type UseProductAvailabilityResult, type UseProductDealsOptions, type UseProductDealsResult, type UseProductOptions, type UseProductPriceInput, type UseProductPriceResult, type UseProductResult, type UseProductSchedulesOptions, type UseProductSchedulesResult, type UseProductsOnSaleOptions, type UseProductsOnSaleResult, type UseProductsOptions, type UseProductsResult, type UsePropertyFacetsOptions, type UsePropertyFacetsResult, type UseQuoteInput, type UseQuoteOptions, type UseQuoteResult, type UseRecommendationsOptions, type UseRecommendationsResult, type UseSearchOptions, type UseSearchResult, type UseServiceAvailabilityOptions, type UseServiceAvailabilityResult, type UseServicesOptions, type UseServicesResult, type UseTaxonomiesOptions, type UseTaxonomiesResult, type UseTaxonomyOptions, type UseTaxonomyPathOptions, type UseTaxonomyPathResult, type UseTaxonomyResult, type UseValidateDiscountOptions, type UseValidateDiscountResult, type UseVariantSelectorOptions, type UseVariantSelectorResult, VariantSelector, type VariantSelectorClassNames, type VariantSelectorProps, VolumePricing, type VolumePricingClassNames, type VolumePricingProps, WholesaleProductCard, WholesaleProductLayout, WishlistButton, cn, roomToResource, useActivityState, useAds, useAttributeDefinitions, useAvailableSlots, useBillingPlans, useBookings, useBootstrap, useBundles, useCart, useCartDrawer, useCategories, useChat, useCheckout, useCimplify, useCimplifyClient, useCollection, useCollections, useDeals, useDeliveryFee, useElements, useElementsReady, useFxRate, useLocations, useOptionalCimplify, useOrder, useOrders, useProduct, useProductAvailability, useProductDeals, useProductPrice, useProductSchedules, useProducts, useProductsOnSale, usePropertyFacets, useQuote, useRecommendations, useSearch, useServiceAvailability, useServices, useSubscription, useSubscriptions, useTaxonomies, useTaxonomy, useTaxonomyPath, useValidateDiscount, useVariantSelector };
|
|
2745
|
+
export { AccommodationCard, Ad, AdPosition, type AdProps, AdProvider, AdSlot, AddOnSelector, type AddOnSelectorClassNames, type AddOnSelectorProps, type AddToCartOptions, AddressElement, AuthElement, AvailabilityBadge, type AvailabilityBadgeClassNames, type AvailabilityBadgeProps, BillingPlanSelector, type BillingPlanSelectorClassNames, type BillingPlanSelectorProps, BookingCard, type BookingCardClassNames, type BookingCardProps, BookingList, type BookingListClassNames, type BookingListProps, BookingPage, type BookingPageClassNames, type BookingPageProps, BookingsPage, type BookingsPageClassNames, type BookingsPageProps, BundleProductCard, BundleProductLayout, BundleSelector, type BundleSelectorClassNames, type BundleSelectorProps, CardImage, type CardLayoutProps, CardShell, CardVariant, type CartAddOnOptionSelection, CartDrawer, type CartDrawerProps, CartDrawerProvider, type CartLayoutProps, CartPage, type CartPageClassNames, type CartPageProps, CartSummary, type CartSummaryClassNames, type CartSummaryProps, CartTemplate, type CartVariantSelection, CatalogueCollectionLayout, type CatalogueLayoutProps, CataloguePage, type CataloguePageClassNames, type CataloguePageProps, CatalogueTemplate, CategoryFilter, type CategoryFilterClassNames, type CategoryFilterProps, CategoryGrid, type CategoryGridClassNames, type CategoryGridProps, ChatWidget, type ChatWidgetClassNames, type ChatWidgetProps, CheckoutPage, type CheckoutPageClassNames, type CheckoutPageProps, CimplifyAccount, type CimplifyAccountProps, CimplifyCheckout, type CimplifyCheckoutProps, type CimplifyClientContextValue, type CimplifyContextValue, CimplifyProvider, type CimplifyProviderProps, type CollectionLayoutProps, CollectionPage, type CollectionPageClassNames, type CollectionPageProps, CollectionTemplate, CompactCartLayout, CompactCatalogueLayout, CompactSearchLayout, CompactServiceCard, CompositeProductCard, CompositeProductLayout, CompositeSelector, type CompositeSelectorClassNames, type CompositeSelectorProps, CurrencySelector, type CurrencySelectorClassNames, type CurrencySelectorProps, CustomAttributesTable, CustomerInputFields, type CustomerInputFieldsClassNames, type CustomerInputFieldsProps, DateSlotPicker, type DateSlotPickerClassNames, type DateSlotPickerProps, DealBanner, type DealBannerClassNames, type DealBannerProps, DealsPage, type DealsPageClassNames, type DealsPageProps, DefaultCartLayout, DefaultCatalogueLayout, DefaultCollectionLayout, DefaultProductLayout, DefaultSearchLayout, DeliveryEstimate, type DeliveryEstimateClassNames, type DeliveryEstimateProps, DigitalProductCard, DigitalProductLayout, DiscountInput, type DiscountInputClassNames, type DiscountInputProps, ElementsProvider, FeaturedCollectionLayout, FoodProductCard, FoodProductLayout, InventoryBadge, LeaseServiceCard, LocationPicker, type LocationPickerClassNames, type LocationPickerProps, MetadataStringList, OrderDetailPage, type OrderDetailPageClassNames, type OrderDetailPageProps, OrderHistory, type OrderHistoryClassNames, OrderHistoryPage, type OrderHistoryPageClassNames, type OrderHistoryPageProps, type OrderHistoryProps, OrderSummary, type OrderSummaryClassNames, type OrderSummaryProps, PaymentElement, Price, type PriceProps, PriceRange, type PriceRangeProps, ProductCard, type ProductCardClassNames, type ProductCardProps, ProductCustomizer, type ProductCustomizerClassNames, type ProductCustomizerProps, ProductGrid, type ProductGridClassNames, type ProductGridProps, ProductImageGallery, type ProductImageGalleryProps, type ProductLayoutProps, ProductPage, type ProductPageClassNames, type ProductPageProps, ProductSheet, type ProductSheetClassNames, type ProductSheetProps, ProductTemplate, PropertiesTable, QuantitySelector, type QuantitySelectorClassNames, type QuantitySelectorProps, QuickAddButton, RecentlyViewed, type RecentlyViewedClassNames, type RecentlyViewedProps, RecommendationCarousel, type RecommendationCarouselClassNames, type RecommendationCarouselProps, RelatedProductsSection, RentalServiceCard, type Resource, ResourcePicker, type ResourcePickerClassNames, type ResourcePickerProps, RetailProductCard, SaleBadge, type SaleBadgeClassNames, type SaleBadgeProps, ScheduleServiceCard, SearchInput, type SearchInputClassNames, type SearchInputProps, type SearchLayoutProps, SearchPage, type SearchPageClassNames, type SearchPageProps, SearchTemplate, type ServiceCardLayoutProps, ServiceProductLayout, SessionMessageBanner, type SessionMessageBannerClassNames, type SessionMessageBannerProps, SlotPicker, type SlotPickerClassNames, type SlotPickerProps, SoldOutOverlay, StaffPicker, type StaffPickerClassNames, type StaffPickerProps, StandardServiceCard, StoreNav, type StoreNavClassNames, type StoreNavProps, SubscriptionCard, TagPills, TwoColumnGrid, type UseActivityStateOptions, type UseActivityStateResult, type UseAttributeDefinitionsOptions, type UseAttributeDefinitionsResult, type UseAvailableSlotsOptions, type UseAvailableSlotsResult, type UseBillingPlansOptions, type UseBillingPlansResult, type UseBookingsOptions, type UseBookingsResult, type UseBootstrapOptions, type UseBootstrapResult, type UseBundlesOptions, type UseBundlesResult, type UseCartItem, type UseCartOptions, type UseCartResult, type UseCategoriesOptions, type UseCategoriesResult, type UseChatOptions, type UseChatResult, type UseCollectionOptions, type UseCollectionResult, type UseCollectionsOptions, type UseCollectionsResult, type UseDealsOptions, type UseDealsResult, type UseDeliveryFeeOptions, type UseDeliveryFeeResult, type UseFxRateOptions, type UseFxRateResult, type UseLocationsOptions, type UseLocationsResult, type UseOrderOptions, type UseOrderResult, type UseOrdersOptions, type UseOrdersResult, type UseProductAvailabilityOptions, type UseProductAvailabilityResult, type UseProductDealsOptions, type UseProductDealsResult, type UseProductOptions, type UseProductPriceInput, type UseProductPriceResult, type UseProductResult, type UseProductSchedulesOptions, type UseProductSchedulesResult, type UseProductsOnSaleOptions, type UseProductsOnSaleResult, type UseProductsOptions, type UseProductsResult, type UsePropertyFacetsOptions, type UsePropertyFacetsResult, type UseQuoteInput, type UseQuoteOptions, type UseQuoteResult, type UseRecommendationsOptions, type UseRecommendationsResult, type UseSearchOptions, type UseSearchResult, type UseServiceAvailabilityOptions, type UseServiceAvailabilityResult, type UseServicesOptions, type UseServicesResult, type UseTaxonomiesOptions, type UseTaxonomiesResult, type UseTaxonomyOptions, type UseTaxonomyPathOptions, type UseTaxonomyPathResult, type UseTaxonomyResult, type UseValidateDiscountOptions, type UseValidateDiscountResult, type UseVariantSelectorOptions, type UseVariantSelectorResult, VariantSelector, type VariantSelectorClassNames, type VariantSelectorProps, VolumePricing, type VolumePricingClassNames, type VolumePricingProps, WholesaleProductCard, WholesaleProductLayout, WishlistButton, cn, roomToResource, useActivityState, useAds, useAttributeDefinitions, useAvailableSlots, useBillingPlans, useBookings, useBootstrap, useBundles, useCart, useCartDrawer, useCategories, useChat, useCheckout, useCimplify, useCimplifyClient, useCollection, useCollections, useDeals, useDeliveryFee, useElements, useElementsReady, useFxRate, useLocations, useOptionalCimplify, useOrder, useOrders, useProduct, useProductAvailability, useProductDeals, useProductPrice, useProductSchedules, useProducts, useProductsOnSale, usePropertyFacets, useQuote, useRecommendations, useSearch, useServiceAvailability, useServices, useSubscription, useSubscriptions, useTaxonomies, useTaxonomy, useTaxonomyPath, useValidateDiscount, useVariantSelector };
|