@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/cli.mjs
CHANGED
|
@@ -6378,17 +6378,15 @@ function createLinkService({ clock, ids }) {
|
|
|
6378
6378
|
}
|
|
6379
6379
|
|
|
6380
6380
|
// src/mock/seeds/image.ts
|
|
6381
|
-
var
|
|
6382
|
-
function seedImage(industry, slug
|
|
6383
|
-
{
|
|
6384
|
-
return `${CIMPLIFY_CDN_BASE_URL}/seed/${industry}/${slug}.jpg`;
|
|
6385
|
-
}
|
|
6381
|
+
var CDN_BASE_URL = "https://static-tmp.cimplify.io";
|
|
6382
|
+
function seedImage(industry, slug) {
|
|
6383
|
+
return `${CDN_BASE_URL}/seed/${industry}/${slug}.jpg`;
|
|
6386
6384
|
}
|
|
6387
6385
|
|
|
6388
6386
|
// src/mock/seeds/default.ts
|
|
6389
6387
|
var ISO = "2026-01-01T00:00:00.000Z";
|
|
6390
6388
|
var BUSINESS_ID = "bus_default_akua_bakery";
|
|
6391
|
-
var img = (
|
|
6389
|
+
var img = (photoId) => seedImage("bakery", photoId);
|
|
6392
6390
|
function makeProduct(input, categoryIds) {
|
|
6393
6391
|
const catId = categoryIds.get(input.category);
|
|
6394
6392
|
return {
|
|
@@ -6445,7 +6443,7 @@ function seedDefault(registry) {
|
|
|
6445
6443
|
default_address: "12 Independence Ave, Accra",
|
|
6446
6444
|
default_offers_table_service: true,
|
|
6447
6445
|
default_accepts_online_orders: true,
|
|
6448
|
-
image: img("
|
|
6446
|
+
image: img("business-hero"),
|
|
6449
6447
|
status: "active",
|
|
6450
6448
|
created_at: ISO,
|
|
6451
6449
|
updated_at: ISO,
|
|
@@ -6500,8 +6498,8 @@ function seedDefault(registry) {
|
|
|
6500
6498
|
price: "25.00",
|
|
6501
6499
|
description: "24-hour fermented country loaf with our heritage starter \u2014 open crumb, blistered crust, naturally tangy. Baked fresh every morning.",
|
|
6502
6500
|
category: "breads",
|
|
6503
|
-
imageUrl: img("
|
|
6504
|
-
images: [img("
|
|
6501
|
+
imageUrl: img("sourdough-loaf"),
|
|
6502
|
+
images: [img("sourdough-loaf"), img("whole-wheat")],
|
|
6505
6503
|
tags: ["bread", "vegan", "signature"],
|
|
6506
6504
|
isSignature: true,
|
|
6507
6505
|
ingredients: ["Wheat flour", "Sourdough starter", "Sea salt", "Filtered water"],
|
|
@@ -6516,7 +6514,7 @@ function seedDefault(registry) {
|
|
|
6516
6514
|
price: "20.00",
|
|
6517
6515
|
description: "Hearty 100% whole wheat with sunflower, sesame, and pumpkin seeds. Slow-fermented for a soft crumb and nutty depth.",
|
|
6518
6516
|
category: "breads",
|
|
6519
|
-
imageUrl: img("
|
|
6517
|
+
imageUrl: img("whole-wheat"),
|
|
6520
6518
|
tags: ["bread", "vegan", "high-fibre"],
|
|
6521
6519
|
ingredients: ["Whole wheat flour", "Sunflower seeds", "Sesame", "Pumpkin seeds"],
|
|
6522
6520
|
allergies: ["wheat", "gluten", "sesame"],
|
|
@@ -6529,7 +6527,7 @@ function seedDefault(registry) {
|
|
|
6529
6527
|
price: "15.00",
|
|
6530
6528
|
description: "Crackling crust, airy crumb. Best eaten warm, within an hour of baking.",
|
|
6531
6529
|
category: "breads",
|
|
6532
|
-
imageUrl: img("
|
|
6530
|
+
imageUrl: img("baguette"),
|
|
6533
6531
|
tags: ["bread", "vegan"],
|
|
6534
6532
|
ingredients: ["Wheat flour", "Yeast", "Sea salt", "Water"],
|
|
6535
6533
|
allergies: ["wheat", "gluten"],
|
|
@@ -6542,7 +6540,7 @@ function seedDefault(registry) {
|
|
|
6542
6540
|
price: "30.00",
|
|
6543
6541
|
description: "High-hydration focaccia drenched in olive oil, scattered with sea salt and fresh rosemary. Sold whole or by the slab.",
|
|
6544
6542
|
category: "breads",
|
|
6545
|
-
imageUrl: img("
|
|
6543
|
+
imageUrl: img("focaccia"),
|
|
6546
6544
|
tags: ["bread", "vegetarian"],
|
|
6547
6545
|
ingredients: ["00 flour", "Olive oil", "Rosemary", "Maldon salt"],
|
|
6548
6546
|
pairings: ["Burrata", "Prosciutto", "Caponata"],
|
|
@@ -6556,7 +6554,7 @@ function seedDefault(registry) {
|
|
|
6556
6554
|
price: "18.00",
|
|
6557
6555
|
description: "Caramelised brown butter, three over-ripe bananas, walnuts, finished with a salted maple glaze.",
|
|
6558
6556
|
category: "breads",
|
|
6559
|
-
imageUrl: img("
|
|
6557
|
+
imageUrl: img("banana-bread"),
|
|
6560
6558
|
tags: ["sweet", "comfort"],
|
|
6561
6559
|
ingredients: ["Bananas", "Brown butter", "Walnuts", "Maple syrup"],
|
|
6562
6560
|
allergies: ["wheat", "gluten", "dairy", "nuts", "eggs"],
|
|
@@ -6571,8 +6569,8 @@ function seedDefault(registry) {
|
|
|
6571
6569
|
price: "12.00",
|
|
6572
6570
|
description: "27 layers of laminated dough wrapped around French butter. Crisp, shattering crust and a tender honeycomb interior.",
|
|
6573
6571
|
category: "pastries",
|
|
6574
|
-
imageUrl: img("
|
|
6575
|
-
images: [img("
|
|
6572
|
+
imageUrl: img("croissant"),
|
|
6573
|
+
images: [img("croissant"), img("pain-au-chocolat")],
|
|
6576
6574
|
tags: ["pastry", "vegetarian", "signature"],
|
|
6577
6575
|
isSignature: true,
|
|
6578
6576
|
ingredients: ["French butter", "Wheat flour", "Milk", "Eggs"],
|
|
@@ -6586,7 +6584,7 @@ function seedDefault(registry) {
|
|
|
6586
6584
|
price: "14.00",
|
|
6587
6585
|
description: "Our croissant dough wrapped around two batons of 70% Valrhona dark chocolate.",
|
|
6588
6586
|
category: "pastries",
|
|
6589
|
-
imageUrl: img("
|
|
6587
|
+
imageUrl: img("pain-au-chocolat"),
|
|
6590
6588
|
tags: ["pastry", "chocolate"],
|
|
6591
6589
|
ingredients: ["Croissant dough", "Valrhona chocolate"],
|
|
6592
6590
|
allergies: ["wheat", "gluten", "dairy", "eggs"],
|
|
@@ -6599,7 +6597,7 @@ function seedDefault(registry) {
|
|
|
6599
6597
|
price: "16.00",
|
|
6600
6598
|
description: "Flaky pastry filled with almond cream, dusted with toasted slivers and powdered sugar.",
|
|
6601
6599
|
category: "pastries",
|
|
6602
|
-
imageUrl: img("
|
|
6600
|
+
imageUrl: img("almond-danish"),
|
|
6603
6601
|
tags: ["pastry", "nuts"],
|
|
6604
6602
|
ingredients: ["Pastry dough", "Almond cream", "Toasted almonds"],
|
|
6605
6603
|
allergies: ["wheat", "gluten", "dairy", "eggs", "nuts"],
|
|
@@ -6612,7 +6610,7 @@ function seedDefault(registry) {
|
|
|
6612
6610
|
price: "13.00",
|
|
6613
6611
|
description: "Soft enriched dough swirled with butter and Ceylon cinnamon, finished with cream-cheese glaze.",
|
|
6614
6612
|
category: "pastries",
|
|
6615
|
-
imageUrl: img("
|
|
6613
|
+
imageUrl: img("cinnamon-roll"),
|
|
6616
6614
|
tags: ["pastry", "comfort"],
|
|
6617
6615
|
ingredients: ["Enriched dough", "Cinnamon", "Brown sugar", "Cream cheese"],
|
|
6618
6616
|
allergies: ["wheat", "gluten", "dairy", "eggs"],
|
|
@@ -6625,7 +6623,7 @@ function seedDefault(registry) {
|
|
|
6625
6623
|
price: "12.00",
|
|
6626
6624
|
description: "Dark, dense, fudgy brownie with a glossy shell. Chocolate four ways. Best slightly warm.",
|
|
6627
6625
|
category: "pastries",
|
|
6628
|
-
imageUrl: img("
|
|
6626
|
+
imageUrl: img("brownie"),
|
|
6629
6627
|
tags: ["chocolate", "vegetarian"],
|
|
6630
6628
|
ingredients: ["Dark chocolate", "Cocoa", "Brown butter", "Eggs"],
|
|
6631
6629
|
allergies: ["wheat", "gluten", "dairy", "eggs"],
|
|
@@ -6638,7 +6636,7 @@ function seedDefault(registry) {
|
|
|
6638
6636
|
price: "60.00",
|
|
6639
6637
|
description: "Six French macarons \u2014 pistachio, raspberry, salted caramel, espresso, vanilla bean, and dark chocolate ganache.",
|
|
6640
6638
|
category: "pastries",
|
|
6641
|
-
imageUrl: img("
|
|
6639
|
+
imageUrl: img("macaron-box"),
|
|
6642
6640
|
tags: ["pastry", "gift", "premium"],
|
|
6643
6641
|
ingredients: ["Almond flour", "Egg whites", "Sugar", "Various fillings"],
|
|
6644
6642
|
allergies: ["nuts", "eggs", "dairy"],
|
|
@@ -6652,7 +6650,7 @@ function seedDefault(registry) {
|
|
|
6652
6650
|
price: "22.00",
|
|
6653
6651
|
description: "Three layers of dark chocolate sponge with chocolate ganache and cr\xE8me p\xE2tissi\xE8re, finished with a mirror glaze. (Slice)",
|
|
6654
6652
|
category: "cakes",
|
|
6655
|
-
imageUrl: img("
|
|
6653
|
+
imageUrl: img("chocolate-cake"),
|
|
6656
6654
|
tags: ["cake", "chocolate", "signature"],
|
|
6657
6655
|
isSignature: true,
|
|
6658
6656
|
ingredients: ["Dark chocolate", "Cr\xE8me p\xE2tissi\xE8re", "Cocoa", "Eggs"],
|
|
@@ -6667,7 +6665,7 @@ function seedDefault(registry) {
|
|
|
6667
6665
|
price: "22.00",
|
|
6668
6666
|
description: "Classic red velvet with cream cheese frosting and white chocolate shavings.",
|
|
6669
6667
|
category: "cakes",
|
|
6670
|
-
imageUrl: img("
|
|
6668
|
+
imageUrl: img("red-velvet"),
|
|
6671
6669
|
tags: ["cake"],
|
|
6672
6670
|
ingredients: ["Buttermilk", "Cocoa", "Cream cheese", "Beetroot"],
|
|
6673
6671
|
allergies: ["wheat", "gluten", "dairy", "eggs"],
|
|
@@ -6680,7 +6678,7 @@ function seedDefault(registry) {
|
|
|
6680
6678
|
price: "20.00",
|
|
6681
6679
|
description: "Spiced carrot cake with toasted walnuts, golden raisins, and cream-cheese frosting.",
|
|
6682
6680
|
category: "cakes",
|
|
6683
|
-
imageUrl: img("
|
|
6681
|
+
imageUrl: img("carrot-cake"),
|
|
6684
6682
|
tags: ["cake", "spiced"],
|
|
6685
6683
|
ingredients: ["Carrot", "Walnuts", "Cinnamon", "Cream cheese"],
|
|
6686
6684
|
allergies: ["wheat", "gluten", "dairy", "eggs", "nuts"],
|
|
@@ -6693,7 +6691,7 @@ function seedDefault(registry) {
|
|
|
6693
6691
|
price: "24.00",
|
|
6694
6692
|
description: "Dense, creamy New York cheesecake on a butter graham crust. Topped with seasonal berry compote.",
|
|
6695
6693
|
category: "cakes",
|
|
6696
|
-
imageUrl: img("
|
|
6694
|
+
imageUrl: img("cheesecake"),
|
|
6697
6695
|
tags: ["cake", "premium"],
|
|
6698
6696
|
ingredients: ["Cream cheese", "Sour cream", "Graham crust", "Vanilla"],
|
|
6699
6697
|
allergies: ["wheat", "gluten", "dairy", "eggs"],
|
|
@@ -6706,8 +6704,8 @@ function seedDefault(registry) {
|
|
|
6706
6704
|
price: "250.00",
|
|
6707
6705
|
description: "Made-to-order three-tier cake. Choose size, flavour, and frosting. 48-hour notice required for personalisation.",
|
|
6708
6706
|
category: "cakes",
|
|
6709
|
-
imageUrl: img("
|
|
6710
|
-
images: [img("
|
|
6707
|
+
imageUrl: img("birthday-cake"),
|
|
6708
|
+
images: [img("birthday-cake"), img("chocolate-cake")],
|
|
6711
6709
|
tags: ["cake", "made-to-order", "premium"],
|
|
6712
6710
|
ingredients: ["Sponge cake", "Buttercream", "Custom decoration"],
|
|
6713
6711
|
allergies: ["wheat", "gluten", "dairy", "eggs"],
|
|
@@ -6721,7 +6719,7 @@ function seedDefault(registry) {
|
|
|
6721
6719
|
price: "10.00",
|
|
6722
6720
|
description: "Locally roasted Arabica from Volta Region. Notes of cocoa, dark fruit, and brown sugar.",
|
|
6723
6721
|
category: "drinks",
|
|
6724
|
-
imageUrl: img("
|
|
6722
|
+
imageUrl: img("coffee"),
|
|
6725
6723
|
tags: ["drink", "coffee", "vegan"],
|
|
6726
6724
|
ingredients: ["Single-origin Arabica beans"],
|
|
6727
6725
|
pairings: ["Croissant", "Brownie"],
|
|
@@ -6734,7 +6732,7 @@ function seedDefault(registry) {
|
|
|
6734
6732
|
price: "8.00",
|
|
6735
6733
|
description: "Choice of English breakfast, Earl Grey, green sencha, or chamomile.",
|
|
6736
6734
|
category: "drinks",
|
|
6737
|
-
imageUrl: img("
|
|
6735
|
+
imageUrl: img("tea"),
|
|
6738
6736
|
tags: ["drink", "tea", "vegan"],
|
|
6739
6737
|
calories: 0
|
|
6740
6738
|
},
|
|
@@ -6745,7 +6743,7 @@ function seedDefault(registry) {
|
|
|
6745
6743
|
price: "12.00",
|
|
6746
6744
|
description: "Iced hibiscus tea with ginger, pineapple peel, and a hint of clove. Tart, refreshing, lightly sweet.",
|
|
6747
6745
|
category: "drinks",
|
|
6748
|
-
imageUrl: img("
|
|
6746
|
+
imageUrl: img("sobolo"),
|
|
6749
6747
|
tags: ["drink", "vegan", "ghana"],
|
|
6750
6748
|
isSignature: true,
|
|
6751
6749
|
ingredients: ["Hibiscus", "Ginger", "Pineapple", "Clove"],
|
|
@@ -6758,7 +6756,7 @@ function seedDefault(registry) {
|
|
|
6758
6756
|
price: "15.00",
|
|
6759
6757
|
description: "Hand-pressed at sunrise from Ghanaian Valencia oranges. No sugar, no concentrate.",
|
|
6760
6758
|
category: "drinks",
|
|
6761
|
-
imageUrl: img("
|
|
6759
|
+
imageUrl: img("orange-juice"),
|
|
6762
6760
|
tags: ["drink", "vegan"],
|
|
6763
6761
|
calories: 110
|
|
6764
6762
|
},
|
|
@@ -6770,8 +6768,8 @@ function seedDefault(registry) {
|
|
|
6770
6768
|
price: "30.00",
|
|
6771
6769
|
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.",
|
|
6772
6770
|
category: "boxes",
|
|
6773
|
-
imageUrl: img("
|
|
6774
|
-
images: [img("
|
|
6771
|
+
imageUrl: img("breakfast-box"),
|
|
6772
|
+
images: [img("breakfast-box"), img("coffee")],
|
|
6775
6773
|
tags: ["bundle", "breakfast"],
|
|
6776
6774
|
productType: "bundle"
|
|
6777
6775
|
},
|
|
@@ -6782,7 +6780,7 @@ function seedDefault(registry) {
|
|
|
6782
6780
|
price: "60.00",
|
|
6783
6781
|
description: "Pick 6 to 12 of our pastries \u2014 mix and match. Freshly boxed for sharing.",
|
|
6784
6782
|
category: "boxes",
|
|
6785
|
-
imageUrl: img("
|
|
6783
|
+
imageUrl: img("pastry-box"),
|
|
6786
6784
|
tags: ["composite", "build-your-own", "gift"],
|
|
6787
6785
|
productType: "composite"
|
|
6788
6786
|
},
|
|
@@ -6794,7 +6792,7 @@ function seedDefault(registry) {
|
|
|
6794
6792
|
price: "85.00",
|
|
6795
6793
|
description: "Heavy-weight cotton-canvas apron with leather neck strap, embroidered logo, and two front pockets. Made in Accra.",
|
|
6796
6794
|
category: "merch",
|
|
6797
|
-
imageUrl: img("
|
|
6795
|
+
imageUrl: img("apron"),
|
|
6798
6796
|
tags: ["merch", "physical"],
|
|
6799
6797
|
renderHint: "physical"
|
|
6800
6798
|
},
|
|
@@ -6805,7 +6803,7 @@ function seedDefault(registry) {
|
|
|
6805
6803
|
price: "35.00",
|
|
6806
6804
|
description: "12oz natural canvas tote, screen-printed with our wheat-stalk crest. Roomy enough for two loaves.",
|
|
6807
6805
|
category: "merch",
|
|
6808
|
-
imageUrl: img("
|
|
6806
|
+
imageUrl: img("tote-bag"),
|
|
6809
6807
|
tags: ["merch", "physical", "gift"],
|
|
6810
6808
|
renderHint: "physical",
|
|
6811
6809
|
isNew: true
|
|
@@ -6818,7 +6816,7 @@ function seedDefault(registry) {
|
|
|
6818
6816
|
price: "320.00",
|
|
6819
6817
|
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.",
|
|
6820
6818
|
category: "merch",
|
|
6821
|
-
imageUrl: img("
|
|
6819
|
+
imageUrl: img("flour-25kg"),
|
|
6822
6820
|
tags: ["wholesale", "physical", "trade"],
|
|
6823
6821
|
renderHint: "physical",
|
|
6824
6822
|
quantityPricing: [
|
|
@@ -6836,7 +6834,7 @@ function seedDefault(registry) {
|
|
|
6836
6834
|
price: "45.00",
|
|
6837
6835
|
description: "PDF + EPUB walkthrough of our sourdough programme \u2014 starter, levain, autolyse, bulk fermentation, shaping, scoring. Lifetime updates.",
|
|
6838
6836
|
category: "merch",
|
|
6839
|
-
imageUrl: img("
|
|
6837
|
+
imageUrl: img("sourdough-ebook"),
|
|
6840
6838
|
tags: ["digital", "download"],
|
|
6841
6839
|
productType: "digital",
|
|
6842
6840
|
digitalProductType: "download"
|
|
@@ -6848,7 +6846,7 @@ function seedDefault(registry) {
|
|
|
6848
6846
|
price: "100.00",
|
|
6849
6847
|
description: "Send instantly. Redeemable in-store and online toward any product. Choose any amount from GH\u20B550 upward.",
|
|
6850
6848
|
category: "merch",
|
|
6851
|
-
imageUrl: img("
|
|
6849
|
+
imageUrl: img("gift-card"),
|
|
6852
6850
|
tags: ["digital", "gift"],
|
|
6853
6851
|
productType: "digital",
|
|
6854
6852
|
digitalProductType: "gift_code",
|
|
@@ -6862,7 +6860,7 @@ function seedDefault(registry) {
|
|
|
6862
6860
|
price: "320.00",
|
|
6863
6861
|
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.",
|
|
6864
6862
|
category: "classes",
|
|
6865
|
-
imageUrl: img("
|
|
6863
|
+
imageUrl: img("baking-class"),
|
|
6866
6864
|
tags: ["class", "service", "hands-on"],
|
|
6867
6865
|
productType: "service",
|
|
6868
6866
|
durationMinutes: 120
|
|
@@ -6874,7 +6872,7 @@ function seedDefault(registry) {
|
|
|
6874
6872
|
price: "480.00",
|
|
6875
6873
|
description: "Three-hour deep-dive on laminated dough. We cover croissants, danishes, kouign-amann. Aprons supplied; pastries to take home.",
|
|
6876
6874
|
category: "classes",
|
|
6877
|
-
imageUrl: img("
|
|
6875
|
+
imageUrl: img("pastry-workshop"),
|
|
6878
6876
|
tags: ["class", "service", "advanced"],
|
|
6879
6877
|
productType: "service",
|
|
6880
6878
|
durationMinutes: 180,
|
|
@@ -6888,7 +6886,7 @@ function seedDefault(registry) {
|
|
|
6888
6886
|
price: "180.00",
|
|
6889
6887
|
description: "Rent our commercial bakery after hours. Deck oven, retarder-proofer, mixers, scales \u2014 bring your team or shoot your content. Hourly.",
|
|
6890
6888
|
category: "classes",
|
|
6891
|
-
imageUrl: img("
|
|
6889
|
+
imageUrl: img("kitchen-rental"),
|
|
6892
6890
|
tags: ["rental", "service", "commercial"],
|
|
6893
6891
|
productType: "service",
|
|
6894
6892
|
durationUnit: "hours"
|
|
@@ -6901,7 +6899,7 @@ function seedDefault(registry) {
|
|
|
6901
6899
|
price: "650.00",
|
|
6902
6900
|
description: "One-bedroom loft above the bakery. Wakes up to fresh croissants, ends with a private dinner. Ghana Tourism-licensed. Per night.",
|
|
6903
6901
|
category: "classes",
|
|
6904
|
-
imageUrl: img("
|
|
6902
|
+
imageUrl: img("loft-stay"),
|
|
6905
6903
|
tags: ["stay", "service", "premium"],
|
|
6906
6904
|
productType: "service",
|
|
6907
6905
|
durationUnit: "nights"
|
|
@@ -6914,7 +6912,7 @@ function seedDefault(registry) {
|
|
|
6914
6912
|
price: "0.00",
|
|
6915
6913
|
description: "A fresh loaf delivered to your door every week. Pause or skip any time. Choose monthly or quarterly billing for a discount.",
|
|
6916
6914
|
category: "classes",
|
|
6917
|
-
imageUrl: img("
|
|
6915
|
+
imageUrl: img("loaf-subscription"),
|
|
6918
6916
|
tags: ["subscription", "service", "delivery"],
|
|
6919
6917
|
productType: "service",
|
|
6920
6918
|
billingPlans: [
|
|
@@ -7742,31 +7740,7 @@ function seedReesa(registry) {
|
|
|
7742
7740
|
|
|
7743
7741
|
// src/mock/seeds/restaurant.ts
|
|
7744
7742
|
var ISO4 = "2026-01-01T00:00:00.000Z";
|
|
7745
|
-
var
|
|
7746
|
-
"business-hero": "1414235077428-338989a2e8c0",
|
|
7747
|
-
kelewele: "1599487488170-d11ec9c172f0",
|
|
7748
|
-
"spring-rolls": "1559339352-11d035aa65de",
|
|
7749
|
-
"soup-of-the-day": "1547592180-85f173990554",
|
|
7750
|
-
"jollof-rice": "1546069901-d5bfd2cbfb1f",
|
|
7751
|
-
"banku-tilapia": "1485921325833-c519f76c4927",
|
|
7752
|
-
"fufu-light-soup": "1602253057119-44d745d9b860",
|
|
7753
|
-
waakye: "1565299624946-b28f40a0ae38",
|
|
7754
|
-
"grilled-chicken": "1598103442097-8b74394b95c6",
|
|
7755
|
-
burger: "1568901346375-23c9450c58cd",
|
|
7756
|
-
"yam-fries": "1576107232684-1279f390859f",
|
|
7757
|
-
"fried-plantain": "1493770348161-369560ae357d",
|
|
7758
|
-
salad: "1512621776951-a57141f2eefd",
|
|
7759
|
-
"ice-cream": "1488900128323-21503983a07e",
|
|
7760
|
-
"cake-slice": "1565958011703-44f9829ba187",
|
|
7761
|
-
"fruit-bowl": "1490474418585-ba9bad8fd0ea",
|
|
7762
|
-
"soft-drink": "1581636625402-29b2a704ef13",
|
|
7763
|
-
sobolo: "1556679343-c7306c1976bc",
|
|
7764
|
-
"fresh-juice": "1610970881699-44a5587cabec",
|
|
7765
|
-
water: "1564325724739-bae0bd08762c",
|
|
7766
|
-
feast: "1559847844-5315695dadae",
|
|
7767
|
-
byo: "1551782450-a2132b4ba21d"
|
|
7768
|
-
};
|
|
7769
|
-
var photoFor = (slug) => seedImage("restaurant", slug, PHOTO[slug] ?? "1414235077428-338989a2e8c0");
|
|
7743
|
+
var photoFor = (slug) => seedImage("restaurant", slug);
|
|
7770
7744
|
function seedRestaurant(registry) {
|
|
7771
7745
|
const businessId = "bus_mamas_kitchen";
|
|
7772
7746
|
const business = {
|
|
@@ -8699,29 +8673,7 @@ function seedRetail(registry) {
|
|
|
8699
8673
|
|
|
8700
8674
|
// src/mock/seeds/services.ts
|
|
8701
8675
|
var ISO6 = "2026-01-01T00:00:00.000Z";
|
|
8702
|
-
var
|
|
8703
|
-
"business-hero": "1540555700478-4be289fbecef",
|
|
8704
|
-
"swedish-massage-60": "1544161515-4ab6ce6db874",
|
|
8705
|
-
"swedish-massage-90": "1519823551278-64ac92734fb1",
|
|
8706
|
-
"deep-tissue-60": "1571019613454-1cb2f99b2d8b",
|
|
8707
|
-
"couples-massage": "1591343395082-e120087004b4",
|
|
8708
|
-
"hot-stone-90": "1620733723572-11c53f73a416",
|
|
8709
|
-
"facial-classic": "1487412947147-5cebf100ffc2",
|
|
8710
|
-
"facial-anti-aging": "1487412947147-5cebf100ffc2",
|
|
8711
|
-
"facial-acne": "1556228720-195a672e8a03",
|
|
8712
|
-
manicure: "1604654894610-df63bc536371",
|
|
8713
|
-
pedicure: "1519415943484-9fa1873496d4",
|
|
8714
|
-
"gel-manicure": "1607779097040-26e80aa78e66",
|
|
8715
|
-
haircut: "1622286342621-4bd786c2447c",
|
|
8716
|
-
"hair-treatment": "1633681926022-84c23e8cb2d6",
|
|
8717
|
-
color: "1560066984-138dadb4c035",
|
|
8718
|
-
"yoga-session": "1545205597-3d9d02c29597",
|
|
8719
|
-
meditation: "1506126613408-eca07ce68773",
|
|
8720
|
-
"spa-day": "1571019613454-1cb2f99b2d8b",
|
|
8721
|
-
couples: "1591343395082-e120087004b4",
|
|
8722
|
-
custom: "1540555700478-4be289fbecef"
|
|
8723
|
-
};
|
|
8724
|
-
var photoFor3 = (slug) => seedImage("services", slug, PHOTO3[slug] ?? "1540555700478-4be289fbecef");
|
|
8676
|
+
var photoFor3 = (slug) => seedImage("services", slug);
|
|
8725
8677
|
function seedServices(registry) {
|
|
8726
8678
|
const businessId = "bus_serene_spa";
|
|
8727
8679
|
const business = {
|
|
@@ -9101,35 +9053,7 @@ function seedServices(registry) {
|
|
|
9101
9053
|
|
|
9102
9054
|
// src/mock/seeds/grocery.ts
|
|
9103
9055
|
var ISO7 = "2026-01-01T00:00:00.000Z";
|
|
9104
|
-
var
|
|
9105
|
-
"business-hero": "1542838132-92c53300491e",
|
|
9106
|
-
"tomatoes-1kg": "1592924357228-91a4daadcfea",
|
|
9107
|
-
"onions-1kg": "1620574387735-3624d75b2dbc",
|
|
9108
|
-
"ginger-200g": "1594631252845-29fc4cc8cde9",
|
|
9109
|
-
"bananas-bunch": "1571771019784-3ff35f4f4277",
|
|
9110
|
-
pineapple: "1550258987-190a2d41a8ba",
|
|
9111
|
-
"spinach-bunch": "1576045057995-568f588f82fb",
|
|
9112
|
-
"milk-1l": "1563636619-e9143da7973b",
|
|
9113
|
-
"yogurt-500g": "1488477181946-6428a0291777",
|
|
9114
|
-
"eggs-12": "1582722872445-44dc5f7e3c8f",
|
|
9115
|
-
"cheese-200g": "1486297678162-eb2a19b0a32d",
|
|
9116
|
-
"chicken-1kg": "1604503468506-a8da13d82791",
|
|
9117
|
-
"beef-mince-500g": "1607623814075-e51df1bdc82f",
|
|
9118
|
-
"tilapia-each": "1535473895227-bdecb20fb157",
|
|
9119
|
-
"rice-5kg": "1586201375761-83865001e31c",
|
|
9120
|
-
"garri-2kg": "1582284540020-8acbe03f4924",
|
|
9121
|
-
"palm-oil-1l": "1611078489935-0cb964de46d6",
|
|
9122
|
-
"vegetable-oil-1l": "1474979266404-7eaacbcd87c5",
|
|
9123
|
-
"salt-1kg": "1607301406259-dfb186e15de8",
|
|
9124
|
-
"sugar-1kg": "1610725664285-7c57e6eeac3f",
|
|
9125
|
-
"tomato-paste": "1561136594-7f68413baa99",
|
|
9126
|
-
"soap-bar": "1600857062241-98e5dba7f214",
|
|
9127
|
-
"detergent-1kg": "1582735689369-4fe89db7114c",
|
|
9128
|
-
"tissue-pack": "1583947215259-38e31be8751f",
|
|
9129
|
-
"trash-bags": "1605600659908-0ef719419d41",
|
|
9130
|
-
essentials: "1542838132-92c53300491e"
|
|
9131
|
-
};
|
|
9132
|
-
var photoFor4 = (slug) => seedImage("grocery", slug, PHOTO4[slug] ?? "1542838132-92c53300491e");
|
|
9056
|
+
var photoFor4 = (slug) => seedImage("grocery", slug);
|
|
9133
9057
|
function seedGrocery(registry) {
|
|
9134
9058
|
const businessId = "bus_freshmart";
|
|
9135
9059
|
const business = {
|
|
@@ -9392,23 +9316,7 @@ function seedGrocery(registry) {
|
|
|
9392
9316
|
|
|
9393
9317
|
// src/mock/seeds/fashion.ts
|
|
9394
9318
|
var ISO8 = "2026-01-01T00:00:00.000Z";
|
|
9395
|
-
var
|
|
9396
|
-
"heavyweight-hoodie-charcoal": "1556905055-8f358a7a47b2",
|
|
9397
|
-
"heavyweight-hoodie-cream": "1576566588028-4147f3842f27",
|
|
9398
|
-
"heavyweight-hoodie-cobalt": "1542838686-37da4a9fd1b3",
|
|
9399
|
-
"studio-tee-black": "1521572163474-6864f9cf17ab",
|
|
9400
|
-
"studio-tee-natural": "1485518882345-15568b007407",
|
|
9401
|
-
"graphic-tee-frx-mark": "1521223890158-f9f7c3d5d504",
|
|
9402
|
-
"carbon-bomber": "1591047139829-d91aecb6caea",
|
|
9403
|
-
"field-jacket-olive": "1564859228273-274232fdb516",
|
|
9404
|
-
"wide-leg-trouser": "1542272604-787c3835535d",
|
|
9405
|
-
"track-pant-charcoal": "1604176354204-9268737828e4",
|
|
9406
|
-
"studio-cap": "1620799140408-edc6dcb6d633",
|
|
9407
|
-
"tote-natural": "1591195853828-11db59a44f6b",
|
|
9408
|
-
"knit-beanie": "1542838132-92c53300491e",
|
|
9409
|
-
"studio-sock-3pack": "1602810318383-e386cc2a3ccf"
|
|
9410
|
-
};
|
|
9411
|
-
var photoFor5 = (slug) => seedImage("fashion", slug, PHOTO5[slug] ?? "1556905055-8f358a7a47b2", 900);
|
|
9319
|
+
var photoFor5 = (slug) => seedImage("fashion", slug);
|
|
9412
9320
|
var SIZES = ["XS", "S", "M", "L", "XL", "2XL"];
|
|
9413
9321
|
function seedFashion(registry) {
|
|
9414
9322
|
const businessId = "bus_studio_frx";
|