@cimplify/sdk 0.45.1 → 0.45.3
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/{chunk-GCSZYC5C.js → chunk-B2MJQ7SU.js} +45 -137
- package/dist/{chunk-D3TVW7JP.mjs → chunk-J7BUGTAG.mjs} +1 -1
- package/dist/{chunk-T4E4R4YG.js → chunk-KD2HHETX.js} +2 -2
- package/dist/{chunk-W72W6M6M.mjs → chunk-ZTPP7PDU.mjs} +45 -137
- package/dist/mock/cli.mjs +45 -137
- package/dist/mock/library.js +45 -137
- package/dist/mock/library.mjs +45 -137
- package/dist/mock/msw.js +45 -137
- package/dist/mock/msw.mjs +45 -137
- package/dist/styles.css +1 -1
- package/dist/testing/msw.js +2 -2
- package/dist/testing/msw.mjs +1 -1
- package/dist/testing/suite.js +21 -21
- package/dist/testing/suite.mjs +2 -2
- package/dist/testing.js +77 -77
- package/dist/testing.mjs +3 -3
- package/package.json +1 -1
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, slug
|
|
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, slug) {
|
|
5749
|
+
return `${CDN_BASE_URL}/seed/${industry}/${slug}.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 {
|
|
@@ -5811,7 +5809,7 @@ function seedDefault(registry) {
|
|
|
5811
5809
|
default_address: "12 Independence Ave, Accra",
|
|
5812
5810
|
default_offers_table_service: true,
|
|
5813
5811
|
default_accepts_online_orders: true,
|
|
5814
|
-
image: img("
|
|
5812
|
+
image: img("business-hero"),
|
|
5815
5813
|
status: "active",
|
|
5816
5814
|
created_at: ISO,
|
|
5817
5815
|
updated_at: ISO,
|
|
@@ -5866,8 +5864,8 @@ function seedDefault(registry) {
|
|
|
5866
5864
|
price: "25.00",
|
|
5867
5865
|
description: "24-hour fermented country loaf with our heritage starter \u2014 open crumb, blistered crust, naturally tangy. Baked fresh every morning.",
|
|
5868
5866
|
category: "breads",
|
|
5869
|
-
imageUrl: img("
|
|
5870
|
-
images: [img("
|
|
5867
|
+
imageUrl: img("sourdough-loaf"),
|
|
5868
|
+
images: [img("sourdough-loaf"), img("whole-wheat")],
|
|
5871
5869
|
tags: ["bread", "vegan", "signature"],
|
|
5872
5870
|
isSignature: true,
|
|
5873
5871
|
ingredients: ["Wheat flour", "Sourdough starter", "Sea salt", "Filtered water"],
|
|
@@ -5882,7 +5880,7 @@ function seedDefault(registry) {
|
|
|
5882
5880
|
price: "20.00",
|
|
5883
5881
|
description: "Hearty 100% whole wheat with sunflower, sesame, and pumpkin seeds. Slow-fermented for a soft crumb and nutty depth.",
|
|
5884
5882
|
category: "breads",
|
|
5885
|
-
imageUrl: img("
|
|
5883
|
+
imageUrl: img("whole-wheat"),
|
|
5886
5884
|
tags: ["bread", "vegan", "high-fibre"],
|
|
5887
5885
|
ingredients: ["Whole wheat flour", "Sunflower seeds", "Sesame", "Pumpkin seeds"],
|
|
5888
5886
|
allergies: ["wheat", "gluten", "sesame"],
|
|
@@ -5895,7 +5893,7 @@ function seedDefault(registry) {
|
|
|
5895
5893
|
price: "15.00",
|
|
5896
5894
|
description: "Crackling crust, airy crumb. Best eaten warm, within an hour of baking.",
|
|
5897
5895
|
category: "breads",
|
|
5898
|
-
imageUrl: img("
|
|
5896
|
+
imageUrl: img("baguette"),
|
|
5899
5897
|
tags: ["bread", "vegan"],
|
|
5900
5898
|
ingredients: ["Wheat flour", "Yeast", "Sea salt", "Water"],
|
|
5901
5899
|
allergies: ["wheat", "gluten"],
|
|
@@ -5908,7 +5906,7 @@ function seedDefault(registry) {
|
|
|
5908
5906
|
price: "30.00",
|
|
5909
5907
|
description: "High-hydration focaccia drenched in olive oil, scattered with sea salt and fresh rosemary. Sold whole or by the slab.",
|
|
5910
5908
|
category: "breads",
|
|
5911
|
-
imageUrl: img("
|
|
5909
|
+
imageUrl: img("focaccia"),
|
|
5912
5910
|
tags: ["bread", "vegetarian"],
|
|
5913
5911
|
ingredients: ["00 flour", "Olive oil", "Rosemary", "Maldon salt"],
|
|
5914
5912
|
pairings: ["Burrata", "Prosciutto", "Caponata"],
|
|
@@ -5922,7 +5920,7 @@ function seedDefault(registry) {
|
|
|
5922
5920
|
price: "18.00",
|
|
5923
5921
|
description: "Caramelised brown butter, three over-ripe bananas, walnuts, finished with a salted maple glaze.",
|
|
5924
5922
|
category: "breads",
|
|
5925
|
-
imageUrl: img("
|
|
5923
|
+
imageUrl: img("banana-bread"),
|
|
5926
5924
|
tags: ["sweet", "comfort"],
|
|
5927
5925
|
ingredients: ["Bananas", "Brown butter", "Walnuts", "Maple syrup"],
|
|
5928
5926
|
allergies: ["wheat", "gluten", "dairy", "nuts", "eggs"],
|
|
@@ -5937,8 +5935,8 @@ function seedDefault(registry) {
|
|
|
5937
5935
|
price: "12.00",
|
|
5938
5936
|
description: "27 layers of laminated dough wrapped around French butter. Crisp, shattering crust and a tender honeycomb interior.",
|
|
5939
5937
|
category: "pastries",
|
|
5940
|
-
imageUrl: img("
|
|
5941
|
-
images: [img("
|
|
5938
|
+
imageUrl: img("croissant"),
|
|
5939
|
+
images: [img("croissant"), img("pain-au-chocolat")],
|
|
5942
5940
|
tags: ["pastry", "vegetarian", "signature"],
|
|
5943
5941
|
isSignature: true,
|
|
5944
5942
|
ingredients: ["French butter", "Wheat flour", "Milk", "Eggs"],
|
|
@@ -5952,7 +5950,7 @@ function seedDefault(registry) {
|
|
|
5952
5950
|
price: "14.00",
|
|
5953
5951
|
description: "Our croissant dough wrapped around two batons of 70% Valrhona dark chocolate.",
|
|
5954
5952
|
category: "pastries",
|
|
5955
|
-
imageUrl: img("
|
|
5953
|
+
imageUrl: img("pain-au-chocolat"),
|
|
5956
5954
|
tags: ["pastry", "chocolate"],
|
|
5957
5955
|
ingredients: ["Croissant dough", "Valrhona chocolate"],
|
|
5958
5956
|
allergies: ["wheat", "gluten", "dairy", "eggs"],
|
|
@@ -5965,7 +5963,7 @@ function seedDefault(registry) {
|
|
|
5965
5963
|
price: "16.00",
|
|
5966
5964
|
description: "Flaky pastry filled with almond cream, dusted with toasted slivers and powdered sugar.",
|
|
5967
5965
|
category: "pastries",
|
|
5968
|
-
imageUrl: img("
|
|
5966
|
+
imageUrl: img("almond-danish"),
|
|
5969
5967
|
tags: ["pastry", "nuts"],
|
|
5970
5968
|
ingredients: ["Pastry dough", "Almond cream", "Toasted almonds"],
|
|
5971
5969
|
allergies: ["wheat", "gluten", "dairy", "eggs", "nuts"],
|
|
@@ -5978,7 +5976,7 @@ function seedDefault(registry) {
|
|
|
5978
5976
|
price: "13.00",
|
|
5979
5977
|
description: "Soft enriched dough swirled with butter and Ceylon cinnamon, finished with cream-cheese glaze.",
|
|
5980
5978
|
category: "pastries",
|
|
5981
|
-
imageUrl: img("
|
|
5979
|
+
imageUrl: img("cinnamon-roll"),
|
|
5982
5980
|
tags: ["pastry", "comfort"],
|
|
5983
5981
|
ingredients: ["Enriched dough", "Cinnamon", "Brown sugar", "Cream cheese"],
|
|
5984
5982
|
allergies: ["wheat", "gluten", "dairy", "eggs"],
|
|
@@ -5991,7 +5989,7 @@ function seedDefault(registry) {
|
|
|
5991
5989
|
price: "12.00",
|
|
5992
5990
|
description: "Dark, dense, fudgy brownie with a glossy shell. Chocolate four ways. Best slightly warm.",
|
|
5993
5991
|
category: "pastries",
|
|
5994
|
-
imageUrl: img("
|
|
5992
|
+
imageUrl: img("brownie"),
|
|
5995
5993
|
tags: ["chocolate", "vegetarian"],
|
|
5996
5994
|
ingredients: ["Dark chocolate", "Cocoa", "Brown butter", "Eggs"],
|
|
5997
5995
|
allergies: ["wheat", "gluten", "dairy", "eggs"],
|
|
@@ -6004,7 +6002,7 @@ function seedDefault(registry) {
|
|
|
6004
6002
|
price: "60.00",
|
|
6005
6003
|
description: "Six French macarons \u2014 pistachio, raspberry, salted caramel, espresso, vanilla bean, and dark chocolate ganache.",
|
|
6006
6004
|
category: "pastries",
|
|
6007
|
-
imageUrl: img("
|
|
6005
|
+
imageUrl: img("macaron-box"),
|
|
6008
6006
|
tags: ["pastry", "gift", "premium"],
|
|
6009
6007
|
ingredients: ["Almond flour", "Egg whites", "Sugar", "Various fillings"],
|
|
6010
6008
|
allergies: ["nuts", "eggs", "dairy"],
|
|
@@ -6018,7 +6016,7 @@ function seedDefault(registry) {
|
|
|
6018
6016
|
price: "22.00",
|
|
6019
6017
|
description: "Three layers of dark chocolate sponge with chocolate ganache and cr\xE8me p\xE2tissi\xE8re, finished with a mirror glaze. (Slice)",
|
|
6020
6018
|
category: "cakes",
|
|
6021
|
-
imageUrl: img("
|
|
6019
|
+
imageUrl: img("chocolate-cake"),
|
|
6022
6020
|
tags: ["cake", "chocolate", "signature"],
|
|
6023
6021
|
isSignature: true,
|
|
6024
6022
|
ingredients: ["Dark chocolate", "Cr\xE8me p\xE2tissi\xE8re", "Cocoa", "Eggs"],
|
|
@@ -6033,7 +6031,7 @@ function seedDefault(registry) {
|
|
|
6033
6031
|
price: "22.00",
|
|
6034
6032
|
description: "Classic red velvet with cream cheese frosting and white chocolate shavings.",
|
|
6035
6033
|
category: "cakes",
|
|
6036
|
-
imageUrl: img("
|
|
6034
|
+
imageUrl: img("red-velvet"),
|
|
6037
6035
|
tags: ["cake"],
|
|
6038
6036
|
ingredients: ["Buttermilk", "Cocoa", "Cream cheese", "Beetroot"],
|
|
6039
6037
|
allergies: ["wheat", "gluten", "dairy", "eggs"],
|
|
@@ -6046,7 +6044,7 @@ function seedDefault(registry) {
|
|
|
6046
6044
|
price: "20.00",
|
|
6047
6045
|
description: "Spiced carrot cake with toasted walnuts, golden raisins, and cream-cheese frosting.",
|
|
6048
6046
|
category: "cakes",
|
|
6049
|
-
imageUrl: img("
|
|
6047
|
+
imageUrl: img("carrot-cake"),
|
|
6050
6048
|
tags: ["cake", "spiced"],
|
|
6051
6049
|
ingredients: ["Carrot", "Walnuts", "Cinnamon", "Cream cheese"],
|
|
6052
6050
|
allergies: ["wheat", "gluten", "dairy", "eggs", "nuts"],
|
|
@@ -6059,7 +6057,7 @@ function seedDefault(registry) {
|
|
|
6059
6057
|
price: "24.00",
|
|
6060
6058
|
description: "Dense, creamy New York cheesecake on a butter graham crust. Topped with seasonal berry compote.",
|
|
6061
6059
|
category: "cakes",
|
|
6062
|
-
imageUrl: img("
|
|
6060
|
+
imageUrl: img("cheesecake"),
|
|
6063
6061
|
tags: ["cake", "premium"],
|
|
6064
6062
|
ingredients: ["Cream cheese", "Sour cream", "Graham crust", "Vanilla"],
|
|
6065
6063
|
allergies: ["wheat", "gluten", "dairy", "eggs"],
|
|
@@ -6072,8 +6070,8 @@ function seedDefault(registry) {
|
|
|
6072
6070
|
price: "250.00",
|
|
6073
6071
|
description: "Made-to-order three-tier cake. Choose size, flavour, and frosting. 48-hour notice required for personalisation.",
|
|
6074
6072
|
category: "cakes",
|
|
6075
|
-
imageUrl: img("
|
|
6076
|
-
images: [img("
|
|
6073
|
+
imageUrl: img("birthday-cake"),
|
|
6074
|
+
images: [img("birthday-cake"), img("chocolate-cake")],
|
|
6077
6075
|
tags: ["cake", "made-to-order", "premium"],
|
|
6078
6076
|
ingredients: ["Sponge cake", "Buttercream", "Custom decoration"],
|
|
6079
6077
|
allergies: ["wheat", "gluten", "dairy", "eggs"],
|
|
@@ -6087,7 +6085,7 @@ function seedDefault(registry) {
|
|
|
6087
6085
|
price: "10.00",
|
|
6088
6086
|
description: "Locally roasted Arabica from Volta Region. Notes of cocoa, dark fruit, and brown sugar.",
|
|
6089
6087
|
category: "drinks",
|
|
6090
|
-
imageUrl: img("
|
|
6088
|
+
imageUrl: img("coffee"),
|
|
6091
6089
|
tags: ["drink", "coffee", "vegan"],
|
|
6092
6090
|
ingredients: ["Single-origin Arabica beans"],
|
|
6093
6091
|
pairings: ["Croissant", "Brownie"],
|
|
@@ -6100,7 +6098,7 @@ function seedDefault(registry) {
|
|
|
6100
6098
|
price: "8.00",
|
|
6101
6099
|
description: "Choice of English breakfast, Earl Grey, green sencha, or chamomile.",
|
|
6102
6100
|
category: "drinks",
|
|
6103
|
-
imageUrl: img("
|
|
6101
|
+
imageUrl: img("tea"),
|
|
6104
6102
|
tags: ["drink", "tea", "vegan"],
|
|
6105
6103
|
calories: 0
|
|
6106
6104
|
},
|
|
@@ -6111,7 +6109,7 @@ function seedDefault(registry) {
|
|
|
6111
6109
|
price: "12.00",
|
|
6112
6110
|
description: "Iced hibiscus tea with ginger, pineapple peel, and a hint of clove. Tart, refreshing, lightly sweet.",
|
|
6113
6111
|
category: "drinks",
|
|
6114
|
-
imageUrl: img("
|
|
6112
|
+
imageUrl: img("sobolo"),
|
|
6115
6113
|
tags: ["drink", "vegan", "ghana"],
|
|
6116
6114
|
isSignature: true,
|
|
6117
6115
|
ingredients: ["Hibiscus", "Ginger", "Pineapple", "Clove"],
|
|
@@ -6124,7 +6122,7 @@ function seedDefault(registry) {
|
|
|
6124
6122
|
price: "15.00",
|
|
6125
6123
|
description: "Hand-pressed at sunrise from Ghanaian Valencia oranges. No sugar, no concentrate.",
|
|
6126
6124
|
category: "drinks",
|
|
6127
|
-
imageUrl: img("
|
|
6125
|
+
imageUrl: img("orange-juice"),
|
|
6128
6126
|
tags: ["drink", "vegan"],
|
|
6129
6127
|
calories: 110
|
|
6130
6128
|
},
|
|
@@ -6136,8 +6134,8 @@ function seedDefault(registry) {
|
|
|
6136
6134
|
price: "30.00",
|
|
6137
6135
|
description: "A buttery croissant, a single-origin coffee, and a fresh-pressed orange juice. Everything you need to start the day. Save GH\u20B57 vs buying separately.",
|
|
6138
6136
|
category: "boxes",
|
|
6139
|
-
imageUrl: img("
|
|
6140
|
-
images: [img("
|
|
6137
|
+
imageUrl: img("breakfast-box"),
|
|
6138
|
+
images: [img("breakfast-box"), img("coffee")],
|
|
6141
6139
|
tags: ["bundle", "breakfast"],
|
|
6142
6140
|
productType: "bundle"
|
|
6143
6141
|
},
|
|
@@ -6148,7 +6146,7 @@ function seedDefault(registry) {
|
|
|
6148
6146
|
price: "60.00",
|
|
6149
6147
|
description: "Pick 6 to 12 of our pastries \u2014 mix and match. Freshly boxed for sharing.",
|
|
6150
6148
|
category: "boxes",
|
|
6151
|
-
imageUrl: img("
|
|
6149
|
+
imageUrl: img("pastry-box"),
|
|
6152
6150
|
tags: ["composite", "build-your-own", "gift"],
|
|
6153
6151
|
productType: "composite"
|
|
6154
6152
|
},
|
|
@@ -6160,7 +6158,7 @@ function seedDefault(registry) {
|
|
|
6160
6158
|
price: "85.00",
|
|
6161
6159
|
description: "Heavy-weight cotton-canvas apron with leather neck strap, embroidered logo, and two front pockets. Made in Accra.",
|
|
6162
6160
|
category: "merch",
|
|
6163
|
-
imageUrl: img("
|
|
6161
|
+
imageUrl: img("apron"),
|
|
6164
6162
|
tags: ["merch", "physical"],
|
|
6165
6163
|
renderHint: "physical"
|
|
6166
6164
|
},
|
|
@@ -6171,7 +6169,7 @@ function seedDefault(registry) {
|
|
|
6171
6169
|
price: "35.00",
|
|
6172
6170
|
description: "12oz natural canvas tote, screen-printed with our wheat-stalk crest. Roomy enough for two loaves.",
|
|
6173
6171
|
category: "merch",
|
|
6174
|
-
imageUrl: img("
|
|
6172
|
+
imageUrl: img("tote-bag"),
|
|
6175
6173
|
tags: ["merch", "physical", "gift"],
|
|
6176
6174
|
renderHint: "physical",
|
|
6177
6175
|
isNew: true
|
|
@@ -6184,7 +6182,7 @@ function seedDefault(registry) {
|
|
|
6184
6182
|
price: "320.00",
|
|
6185
6183
|
description: "Stone-milled heritage wheat flour, the same we use in our country sourdough. Tiered pricing for caf\xE9s, restaurants, and home-baking co-ops.",
|
|
6186
6184
|
category: "merch",
|
|
6187
|
-
imageUrl: img("
|
|
6185
|
+
imageUrl: img("flour-25kg"),
|
|
6188
6186
|
tags: ["wholesale", "physical", "trade"],
|
|
6189
6187
|
renderHint: "physical",
|
|
6190
6188
|
quantityPricing: [
|
|
@@ -6202,7 +6200,7 @@ function seedDefault(registry) {
|
|
|
6202
6200
|
price: "45.00",
|
|
6203
6201
|
description: "PDF + EPUB walkthrough of our sourdough programme \u2014 starter, levain, autolyse, bulk fermentation, shaping, scoring. Lifetime updates.",
|
|
6204
6202
|
category: "merch",
|
|
6205
|
-
imageUrl: img("
|
|
6203
|
+
imageUrl: img("sourdough-ebook"),
|
|
6206
6204
|
tags: ["digital", "download"],
|
|
6207
6205
|
productType: "digital",
|
|
6208
6206
|
digitalProductType: "download"
|
|
@@ -6214,7 +6212,7 @@ function seedDefault(registry) {
|
|
|
6214
6212
|
price: "100.00",
|
|
6215
6213
|
description: "Send instantly. Redeemable in-store and online toward any product. Choose any amount from GH\u20B550 upward.",
|
|
6216
6214
|
category: "merch",
|
|
6217
|
-
imageUrl: img("
|
|
6215
|
+
imageUrl: img("gift-card"),
|
|
6218
6216
|
tags: ["digital", "gift"],
|
|
6219
6217
|
productType: "digital",
|
|
6220
6218
|
digitalProductType: "gift_code",
|
|
@@ -6228,7 +6226,7 @@ function seedDefault(registry) {
|
|
|
6228
6226
|
price: "320.00",
|
|
6229
6227
|
description: "Two-hour hands-on class: shape your own boule, score it, and take home a baked loaf and a starter jar. Held Saturdays, 10am\u201312pm.",
|
|
6230
6228
|
category: "classes",
|
|
6231
|
-
imageUrl: img("
|
|
6229
|
+
imageUrl: img("baking-class"),
|
|
6232
6230
|
tags: ["class", "service", "hands-on"],
|
|
6233
6231
|
productType: "service",
|
|
6234
6232
|
durationMinutes: 120
|
|
@@ -6240,7 +6238,7 @@ function seedDefault(registry) {
|
|
|
6240
6238
|
price: "480.00",
|
|
6241
6239
|
description: "Three-hour deep-dive on laminated dough. We cover croissants, danishes, kouign-amann. Aprons supplied; pastries to take home.",
|
|
6242
6240
|
category: "classes",
|
|
6243
|
-
imageUrl: img("
|
|
6241
|
+
imageUrl: img("pastry-workshop"),
|
|
6244
6242
|
tags: ["class", "service", "advanced"],
|
|
6245
6243
|
productType: "service",
|
|
6246
6244
|
durationMinutes: 180,
|
|
@@ -6254,7 +6252,7 @@ function seedDefault(registry) {
|
|
|
6254
6252
|
price: "180.00",
|
|
6255
6253
|
description: "Rent our commercial bakery after hours. Deck oven, retarder-proofer, mixers, scales \u2014 bring your team or shoot your content. Hourly.",
|
|
6256
6254
|
category: "classes",
|
|
6257
|
-
imageUrl: img("
|
|
6255
|
+
imageUrl: img("kitchen-rental"),
|
|
6258
6256
|
tags: ["rental", "service", "commercial"],
|
|
6259
6257
|
productType: "service",
|
|
6260
6258
|
durationUnit: "hours"
|
|
@@ -6267,7 +6265,7 @@ function seedDefault(registry) {
|
|
|
6267
6265
|
price: "650.00",
|
|
6268
6266
|
description: "One-bedroom loft above the bakery. Wakes up to fresh croissants, ends with a private dinner. Ghana Tourism-licensed. Per night.",
|
|
6269
6267
|
category: "classes",
|
|
6270
|
-
imageUrl: img("
|
|
6268
|
+
imageUrl: img("loft-stay"),
|
|
6271
6269
|
tags: ["stay", "service", "premium"],
|
|
6272
6270
|
productType: "service",
|
|
6273
6271
|
durationUnit: "nights"
|
|
@@ -6280,7 +6278,7 @@ function seedDefault(registry) {
|
|
|
6280
6278
|
price: "0.00",
|
|
6281
6279
|
description: "A fresh loaf delivered to your door every week. Pause or skip any time. Choose monthly or quarterly billing for a discount.",
|
|
6282
6280
|
category: "classes",
|
|
6283
|
-
imageUrl: img("
|
|
6281
|
+
imageUrl: img("loaf-subscription"),
|
|
6284
6282
|
tags: ["subscription", "service", "delivery"],
|
|
6285
6283
|
productType: "service",
|
|
6286
6284
|
billingPlans: [
|
|
@@ -7108,31 +7106,7 @@ function seedReesa(registry) {
|
|
|
7108
7106
|
|
|
7109
7107
|
// src/mock/seeds/restaurant.ts
|
|
7110
7108
|
var ISO4 = "2026-01-01T00:00:00.000Z";
|
|
7111
|
-
var
|
|
7112
|
-
"business-hero": "1414235077428-338989a2e8c0",
|
|
7113
|
-
kelewele: "1599487488170-d11ec9c172f0",
|
|
7114
|
-
"spring-rolls": "1559339352-11d035aa65de",
|
|
7115
|
-
"soup-of-the-day": "1547592180-85f173990554",
|
|
7116
|
-
"jollof-rice": "1546069901-d5bfd2cbfb1f",
|
|
7117
|
-
"banku-tilapia": "1485921325833-c519f76c4927",
|
|
7118
|
-
"fufu-light-soup": "1602253057119-44d745d9b860",
|
|
7119
|
-
waakye: "1565299624946-b28f40a0ae38",
|
|
7120
|
-
"grilled-chicken": "1598103442097-8b74394b95c6",
|
|
7121
|
-
burger: "1568901346375-23c9450c58cd",
|
|
7122
|
-
"yam-fries": "1576107232684-1279f390859f",
|
|
7123
|
-
"fried-plantain": "1493770348161-369560ae357d",
|
|
7124
|
-
salad: "1512621776951-a57141f2eefd",
|
|
7125
|
-
"ice-cream": "1488900128323-21503983a07e",
|
|
7126
|
-
"cake-slice": "1565958011703-44f9829ba187",
|
|
7127
|
-
"fruit-bowl": "1490474418585-ba9bad8fd0ea",
|
|
7128
|
-
"soft-drink": "1581636625402-29b2a704ef13",
|
|
7129
|
-
sobolo: "1556679343-c7306c1976bc",
|
|
7130
|
-
"fresh-juice": "1610970881699-44a5587cabec",
|
|
7131
|
-
water: "1564325724739-bae0bd08762c",
|
|
7132
|
-
feast: "1559847844-5315695dadae",
|
|
7133
|
-
byo: "1551782450-a2132b4ba21d"
|
|
7134
|
-
};
|
|
7135
|
-
var photoFor = (slug) => seedImage("restaurant", slug, PHOTO[slug] ?? "1414235077428-338989a2e8c0");
|
|
7109
|
+
var photoFor = (slug) => seedImage("restaurant", slug);
|
|
7136
7110
|
function seedRestaurant(registry) {
|
|
7137
7111
|
const businessId = "bus_mamas_kitchen";
|
|
7138
7112
|
const business = {
|
|
@@ -8065,29 +8039,7 @@ function seedRetail(registry) {
|
|
|
8065
8039
|
|
|
8066
8040
|
// src/mock/seeds/services.ts
|
|
8067
8041
|
var ISO6 = "2026-01-01T00:00:00.000Z";
|
|
8068
|
-
var
|
|
8069
|
-
"business-hero": "1540555700478-4be289fbecef",
|
|
8070
|
-
"swedish-massage-60": "1544161515-4ab6ce6db874",
|
|
8071
|
-
"swedish-massage-90": "1519823551278-64ac92734fb1",
|
|
8072
|
-
"deep-tissue-60": "1571019613454-1cb2f99b2d8b",
|
|
8073
|
-
"couples-massage": "1591343395082-e120087004b4",
|
|
8074
|
-
"hot-stone-90": "1620733723572-11c53f73a416",
|
|
8075
|
-
"facial-classic": "1487412947147-5cebf100ffc2",
|
|
8076
|
-
"facial-anti-aging": "1487412947147-5cebf100ffc2",
|
|
8077
|
-
"facial-acne": "1556228720-195a672e8a03",
|
|
8078
|
-
manicure: "1604654894610-df63bc536371",
|
|
8079
|
-
pedicure: "1519415943484-9fa1873496d4",
|
|
8080
|
-
"gel-manicure": "1607779097040-26e80aa78e66",
|
|
8081
|
-
haircut: "1622286342621-4bd786c2447c",
|
|
8082
|
-
"hair-treatment": "1633681926022-84c23e8cb2d6",
|
|
8083
|
-
color: "1560066984-138dadb4c035",
|
|
8084
|
-
"yoga-session": "1545205597-3d9d02c29597",
|
|
8085
|
-
meditation: "1506126613408-eca07ce68773",
|
|
8086
|
-
"spa-day": "1571019613454-1cb2f99b2d8b",
|
|
8087
|
-
couples: "1591343395082-e120087004b4",
|
|
8088
|
-
custom: "1540555700478-4be289fbecef"
|
|
8089
|
-
};
|
|
8090
|
-
var photoFor3 = (slug) => seedImage("services", slug, PHOTO3[slug] ?? "1540555700478-4be289fbecef");
|
|
8042
|
+
var photoFor3 = (slug) => seedImage("services", slug);
|
|
8091
8043
|
function seedServices(registry) {
|
|
8092
8044
|
const businessId = "bus_serene_spa";
|
|
8093
8045
|
const business = {
|
|
@@ -8467,35 +8419,7 @@ function seedServices(registry) {
|
|
|
8467
8419
|
|
|
8468
8420
|
// src/mock/seeds/grocery.ts
|
|
8469
8421
|
var ISO7 = "2026-01-01T00:00:00.000Z";
|
|
8470
|
-
var
|
|
8471
|
-
"business-hero": "1542838132-92c53300491e",
|
|
8472
|
-
"tomatoes-1kg": "1592924357228-91a4daadcfea",
|
|
8473
|
-
"onions-1kg": "1620574387735-3624d75b2dbc",
|
|
8474
|
-
"ginger-200g": "1594631252845-29fc4cc8cde9",
|
|
8475
|
-
"bananas-bunch": "1571771019784-3ff35f4f4277",
|
|
8476
|
-
pineapple: "1550258987-190a2d41a8ba",
|
|
8477
|
-
"spinach-bunch": "1576045057995-568f588f82fb",
|
|
8478
|
-
"milk-1l": "1563636619-e9143da7973b",
|
|
8479
|
-
"yogurt-500g": "1488477181946-6428a0291777",
|
|
8480
|
-
"eggs-12": "1582722872445-44dc5f7e3c8f",
|
|
8481
|
-
"cheese-200g": "1486297678162-eb2a19b0a32d",
|
|
8482
|
-
"chicken-1kg": "1604503468506-a8da13d82791",
|
|
8483
|
-
"beef-mince-500g": "1607623814075-e51df1bdc82f",
|
|
8484
|
-
"tilapia-each": "1535473895227-bdecb20fb157",
|
|
8485
|
-
"rice-5kg": "1586201375761-83865001e31c",
|
|
8486
|
-
"garri-2kg": "1582284540020-8acbe03f4924",
|
|
8487
|
-
"palm-oil-1l": "1611078489935-0cb964de46d6",
|
|
8488
|
-
"vegetable-oil-1l": "1474979266404-7eaacbcd87c5",
|
|
8489
|
-
"salt-1kg": "1607301406259-dfb186e15de8",
|
|
8490
|
-
"sugar-1kg": "1610725664285-7c57e6eeac3f",
|
|
8491
|
-
"tomato-paste": "1561136594-7f68413baa99",
|
|
8492
|
-
"soap-bar": "1600857062241-98e5dba7f214",
|
|
8493
|
-
"detergent-1kg": "1582735689369-4fe89db7114c",
|
|
8494
|
-
"tissue-pack": "1583947215259-38e31be8751f",
|
|
8495
|
-
"trash-bags": "1605600659908-0ef719419d41",
|
|
8496
|
-
essentials: "1542838132-92c53300491e"
|
|
8497
|
-
};
|
|
8498
|
-
var photoFor4 = (slug) => seedImage("grocery", slug, PHOTO4[slug] ?? "1542838132-92c53300491e");
|
|
8422
|
+
var photoFor4 = (slug) => seedImage("grocery", slug);
|
|
8499
8423
|
function seedGrocery(registry) {
|
|
8500
8424
|
const businessId = "bus_freshmart";
|
|
8501
8425
|
const business = {
|
|
@@ -8758,23 +8682,7 @@ function seedGrocery(registry) {
|
|
|
8758
8682
|
|
|
8759
8683
|
// src/mock/seeds/fashion.ts
|
|
8760
8684
|
var ISO8 = "2026-01-01T00:00:00.000Z";
|
|
8761
|
-
var
|
|
8762
|
-
"heavyweight-hoodie-charcoal": "1556905055-8f358a7a47b2",
|
|
8763
|
-
"heavyweight-hoodie-cream": "1576566588028-4147f3842f27",
|
|
8764
|
-
"heavyweight-hoodie-cobalt": "1542838686-37da4a9fd1b3",
|
|
8765
|
-
"studio-tee-black": "1521572163474-6864f9cf17ab",
|
|
8766
|
-
"studio-tee-natural": "1485518882345-15568b007407",
|
|
8767
|
-
"graphic-tee-frx-mark": "1521223890158-f9f7c3d5d504",
|
|
8768
|
-
"carbon-bomber": "1591047139829-d91aecb6caea",
|
|
8769
|
-
"field-jacket-olive": "1564859228273-274232fdb516",
|
|
8770
|
-
"wide-leg-trouser": "1542272604-787c3835535d",
|
|
8771
|
-
"track-pant-charcoal": "1604176354204-9268737828e4",
|
|
8772
|
-
"studio-cap": "1620799140408-edc6dcb6d633",
|
|
8773
|
-
"tote-natural": "1591195853828-11db59a44f6b",
|
|
8774
|
-
"knit-beanie": "1542838132-92c53300491e",
|
|
8775
|
-
"studio-sock-3pack": "1602810318383-e386cc2a3ccf"
|
|
8776
|
-
};
|
|
8777
|
-
var photoFor5 = (slug) => seedImage("fashion", slug, PHOTO5[slug] ?? "1556905055-8f358a7a47b2", 900);
|
|
8685
|
+
var photoFor5 = (slug) => seedImage("fashion", slug);
|
|
8778
8686
|
var SIZES = ["XS", "S", "M", "L", "XL", "2XL"];
|
|
8779
8687
|
function seedFashion(registry) {
|
|
8780
8688
|
const businessId = "bus_studio_frx";
|