@timardex/cluemart-server-shared 1.0.18 → 1.0.19

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.
@@ -7124,25 +7124,222 @@ var profileFields = [
7124
7124
  secureTextEntry: true
7125
7125
  }
7126
7126
  ];
7127
- var categoryColors = {
7128
- "antiques-collectibles": "#8D6748",
7129
- "clothing-fashion": "#9D4EDD",
7130
- "electronics-technology": "#3AF3FF",
7131
- "food-beverages": "#FF0D1F",
7132
- "handmade-local-products": "#EE7E54",
7133
- "health-wellness": "#E23794",
7134
- "home-garden-household-goods": "#067325",
7135
- "pet-products-animal-goods": "#68E788",
7136
- "services-experiences": "#2E16A5",
7137
- "toys-childrens-items": "#FFF966"
7138
- };
7139
- var assignColorToCategories = (categories) => {
7140
- const result = categories.map((category) => ({
7141
- ...category,
7142
- color: categoryColors[category.id]
7143
- }));
7144
- return result;
7145
- };
7127
+ var antiquesAndCollectibles = [
7128
+ {
7129
+ id: "antiques-collectibles",
7130
+ name: "Antiques & Collectibles",
7131
+ description: "Vintage and collectible goods with historic, nostalgic, or decorative value.",
7132
+ subcategories: [
7133
+ {
7134
+ id: "vintage-fashion-personal-items",
7135
+ name: "Vintage Fashion & Personal Items",
7136
+ items: [
7137
+ {
7138
+ id: "vintage-clothing-accessories",
7139
+ name: "Vintage Clothing & Accessories",
7140
+ description: "Retro jackets, dresses, hats, gloves, belts, era-specific fashion."
7141
+ },
7142
+ {
7143
+ id: "collectibles-memorabilia",
7144
+ name: "Collectibles & Memorabilia",
7145
+ description: "Coins, stamps, toys, postcards, comics, sports cards, vintage packaging."
7146
+ },
7147
+ {
7148
+ id: "other-fashion-collectibles",
7149
+ name: "Other fashion-related collectibles",
7150
+ description: "Items with both fashion and collector value."
7151
+ }
7152
+ ]
7153
+ },
7154
+ {
7155
+ id: "antique-home-curiosities",
7156
+ name: "Antique Home & Curiosities",
7157
+ items: [
7158
+ {
7159
+ id: "antique-homewares-decor",
7160
+ name: "Antique Homewares & Decor",
7161
+ description: "Teacups, plates, vases, mirrors, clocks, furniture accents."
7162
+ },
7163
+ {
7164
+ id: "other-unique-finds",
7165
+ name: "Other Unique Finds",
7166
+ description: "Old tools, lanterns, typewriters, binoculars, relics, curios."
7167
+ },
7168
+ {
7169
+ id: "other-antique-items",
7170
+ name: "Other antique items",
7171
+ description: "Vintage or handmade pieces not listed above."
7172
+ }
7173
+ ]
7174
+ },
7175
+ {
7176
+ id: "media-printed-nostalgia",
7177
+ name: "Media & Printed Nostalgia",
7178
+ items: [
7179
+ {
7180
+ id: "records-books-media",
7181
+ name: "Records, Books & Media",
7182
+ description: "Vinyls, cassette tapes, old books, magazines, board games, DVDs, CDs."
7183
+ },
7184
+ {
7185
+ id: "other-printed-recorded-media",
7186
+ name: "Other printed or recorded media",
7187
+ description: "Posters, manuals, out-of-print publications."
7188
+ }
7189
+ ]
7190
+ }
7191
+ ]
7192
+ }
7193
+ ];
7194
+ var clothingAndFashion = [
7195
+ {
7196
+ id: "clothing-fashion",
7197
+ name: "Clothing & Fashion",
7198
+ description: "New, handmade, or upcycled clothing and accessories with a creative twist.",
7199
+ subcategories: [
7200
+ {
7201
+ id: "apparel-babywear",
7202
+ name: "Apparel & Babywear",
7203
+ items: [
7204
+ {
7205
+ id: "apparel",
7206
+ name: "Apparel",
7207
+ description: "Dresses, t-shirts, jumpers, rompers, sets, kidswear."
7208
+ },
7209
+ {
7210
+ id: "baby-toddler-apparel",
7211
+ name: "Baby & Toddler Apparel",
7212
+ description: "Handmade baby clothes, soft shoes, bibs, hats, knitted sets."
7213
+ },
7214
+ {
7215
+ id: "upcycled-fashion",
7216
+ name: "Upcycled Fashion",
7217
+ description: "Reworked garments, patchwork pieces, restyled vintage."
7218
+ },
7219
+ {
7220
+ id: "other-wearable-items",
7221
+ name: "Other wearable items",
7222
+ description: "Unique clothing not listed above."
7223
+ }
7224
+ ]
7225
+ },
7226
+ {
7227
+ id: "fashion-accessories",
7228
+ name: "Fashion Accessories",
7229
+ items: [
7230
+ {
7231
+ id: "accessories",
7232
+ name: "Accessories",
7233
+ description: "Scarves, belts, gloves, hats, headbands, caps."
7234
+ },
7235
+ {
7236
+ id: "shoes",
7237
+ name: "Shoes",
7238
+ description: "Handmade shoes, baby booties, sandals, slippers."
7239
+ },
7240
+ {
7241
+ id: "bags-wallets",
7242
+ name: "Bags & Wallets",
7243
+ description: "Leather bags, fabric purses, wallets, backpacks, totes."
7244
+ },
7245
+ {
7246
+ id: "other-accessories",
7247
+ name: "Other accessories",
7248
+ description: "Brooches, pins, or hybrid functional items."
7249
+ }
7250
+ ]
7251
+ },
7252
+ {
7253
+ id: "jewelry-creative-wearables",
7254
+ name: "Jewelry & Creative Wearables",
7255
+ items: [
7256
+ {
7257
+ id: "jewelry",
7258
+ name: "Jewelry",
7259
+ description: "Necklaces, earrings, bracelets, rings, anklets."
7260
+ },
7261
+ {
7262
+ id: "other-creative-wearables",
7263
+ name: "Other creative wearables",
7264
+ description: "Wearable art, statement pieces, bold handmade designs."
7265
+ }
7266
+ ]
7267
+ }
7268
+ ]
7269
+ }
7270
+ ];
7271
+ var electronicsAndTechnology = [
7272
+ {
7273
+ id: "electronics-technology",
7274
+ name: "Electronics & Technology",
7275
+ description: "New, second-hand, or handmade tech and digital items commonly found at markets.",
7276
+ subcategories: [
7277
+ {
7278
+ id: "mobile-everyday-tech",
7279
+ name: "Mobile & Everyday Tech",
7280
+ items: [
7281
+ {
7282
+ id: "mobile-phone-accessories",
7283
+ name: "Mobile & Phone Accessories",
7284
+ description: "Phone cases, holders, screen protectors, charging cables, power banks, grips."
7285
+ },
7286
+ {
7287
+ id: "other-mobile-gadgets",
7288
+ name: "Other mobile gadgets",
7289
+ description: "Stands, styluses, SIM tools, cleaning kits, wallet accessories."
7290
+ }
7291
+ ]
7292
+ },
7293
+ {
7294
+ id: "audio-music-creative-tech",
7295
+ name: "Audio, Music & Creative Tech",
7296
+ items: [
7297
+ {
7298
+ id: "audio-music-tech",
7299
+ name: "Audio & Music Tech",
7300
+ description: "Portable speakers, headphones, mini radios, Bluetooth adapters, sound accessories."
7301
+ },
7302
+ {
7303
+ id: "instruments-music-gear",
7304
+ name: "Instruments & Music Gear",
7305
+ description: "Small electronic instruments, DIY synth kits, drum pads, loop machines."
7306
+ },
7307
+ {
7308
+ id: "recording-creative-devices",
7309
+ name: "Recording & Creative Devices",
7310
+ description: "USB microphones, podcast tools, voice recorders, mobile lighting, content tools."
7311
+ },
7312
+ {
7313
+ id: "other-audio-music-items",
7314
+ name: "Other audio or music-related items",
7315
+ description: "Musical gadgets or creative gear not listed above."
7316
+ }
7317
+ ]
7318
+ },
7319
+ {
7320
+ id: "diy-gadgets-secondhand-finds",
7321
+ name: "DIY, Gadgets & Second-Hand Finds",
7322
+ items: [
7323
+ {
7324
+ id: "diy-electronics-tools",
7325
+ name: "DIY Electronics & Tools",
7326
+ description: "LED lights, USB gadgets, circuit boards, repair kits, tech-themed toys, novelty items."
7327
+ },
7328
+ {
7329
+ id: "other-tech-finds",
7330
+ name: "Other Tech Finds",
7331
+ description: "Used electronics, smart gadgets, wearable tech, calculators, tablet stands, e-waste upcycles."
7332
+ },
7333
+ {
7334
+ id: "other-technology-innovation-items",
7335
+ name: "Other technology or innovation-related items",
7336
+ description: "Anything not covered but clearly tech-driven."
7337
+ }
7338
+ ]
7339
+ }
7340
+ ]
7341
+ }
7342
+ ];
7146
7343
  var foodAndBeverages = [
7147
7344
  {
7148
7345
  id: "food-beverages",
@@ -7371,240 +7568,29 @@ var handmadeAndLocalProducts = [
7371
7568
  },
7372
7569
  {
7373
7570
  id: "gift-ideas-accessories",
7374
- name: "Gift Ideas & Accessories",
7375
- items: [
7376
- {
7377
- id: "handmade-pens-keychains-fridge-magnets",
7378
- name: "Handmade Pens, Keychains and Fridge Magnets",
7379
- description: ""
7380
- },
7381
- {
7382
- id: "gift-packaging-wrapping-accessories",
7383
- name: "Gift Packaging & Wrapping Accessories",
7384
- description: ""
7385
- },
7386
- {
7387
- id: "other-small-handmade-gifts-accessories",
7388
- name: "Other small handmade gifts or accessories",
7389
- description: "Compact creative items made to surprise or delight."
7390
- }
7391
- ]
7392
- }
7393
- ]
7394
- }
7395
- ];
7396
- var clothingAndFashion = [
7397
- {
7398
- id: "clothing-fashion",
7399
- name: "Clothing & Fashion",
7400
- description: "New, handmade, or upcycled clothing and accessories with a creative twist.",
7401
- subcategories: [
7402
- {
7403
- id: "apparel-babywear",
7404
- name: "Apparel & Babywear",
7405
- items: [
7406
- {
7407
- id: "apparel",
7408
- name: "Apparel",
7409
- description: "Dresses, t-shirts, jumpers, rompers, sets, kidswear."
7410
- },
7411
- {
7412
- id: "baby-toddler-apparel",
7413
- name: "Baby & Toddler Apparel",
7414
- description: "Handmade baby clothes, soft shoes, bibs, hats, knitted sets."
7415
- },
7416
- {
7417
- id: "upcycled-fashion",
7418
- name: "Upcycled Fashion",
7419
- description: "Reworked garments, patchwork pieces, restyled vintage."
7420
- },
7421
- {
7422
- id: "other-wearable-items",
7423
- name: "Other wearable items",
7424
- description: "Unique clothing not listed above."
7425
- }
7426
- ]
7427
- },
7428
- {
7429
- id: "fashion-accessories",
7430
- name: "Fashion Accessories",
7431
- items: [
7432
- {
7433
- id: "accessories",
7434
- name: "Accessories",
7435
- description: "Scarves, belts, gloves, hats, headbands, caps."
7436
- },
7437
- {
7438
- id: "shoes",
7439
- name: "Shoes",
7440
- description: "Handmade shoes, baby booties, sandals, slippers."
7441
- },
7442
- {
7443
- id: "bags-wallets",
7444
- name: "Bags & Wallets",
7445
- description: "Leather bags, fabric purses, wallets, backpacks, totes."
7446
- },
7447
- {
7448
- id: "other-accessories",
7449
- name: "Other accessories",
7450
- description: "Brooches, pins, or hybrid functional items."
7451
- }
7452
- ]
7453
- },
7454
- {
7455
- id: "jewelry-creative-wearables",
7456
- name: "Jewelry & Creative Wearables",
7457
- items: [
7458
- {
7459
- id: "jewelry",
7460
- name: "Jewelry",
7461
- description: "Necklaces, earrings, bracelets, rings, anklets."
7462
- },
7463
- {
7464
- id: "other-creative-wearables",
7465
- name: "Other creative wearables",
7466
- description: "Wearable art, statement pieces, bold handmade designs."
7467
- }
7468
- ]
7469
- }
7470
- ]
7471
- }
7472
- ];
7473
- var homeGardenHousehold = [
7474
- {
7475
- id: "home-garden-household-goods",
7476
- name: "Home, Garden & Household Goods",
7477
- description: "Functional, decorative, and eco-conscious products designed for everyday use indoors and outdoors.",
7478
- subcategories: [
7479
- {
7480
- id: "home-decor-living",
7481
- name: "Home Decor & Living",
7482
- items: [
7483
- {
7484
- id: "home-decor",
7485
- name: "Home Decor",
7486
- description: "Cushions, wall art, table runners, vases, trays, mirrors, handmade centerpieces."
7487
- },
7488
- {
7489
- id: "kitchenware-dining",
7490
- name: "Kitchenware & Dining",
7491
- description: "Mugs, bowls, cutting boards, utensils, jars, coasters, kitchen textiles."
7492
- },
7493
- {
7494
- id: "other-indoor-home-items",
7495
- name: "Other indoor home items",
7496
- description: "Any decorative or practical household items not listed above."
7497
- }
7498
- ]
7499
- },
7500
- {
7501
- id: "cleaning-eco-essentials",
7502
- name: "Cleaning & Eco Essentials",
7503
- items: [
7504
- {
7505
- id: "cleaning-eco-supplies",
7506
- name: "Cleaning & Eco Supplies",
7507
- description: "Beeswax wraps, reusable cloths, brushes, natural soaps, detergent bars, eco sponges."
7508
- },
7509
- {
7510
- id: "other-eco-cleaning-items",
7511
- name: "Other eco or cleaning items",
7512
- description: "Environmentally friendly goods not listed above."
7513
- }
7514
- ]
7515
- },
7516
- {
7517
- id: "garden-outdoor-living",
7518
- name: "Garden & Outdoor Living",
7519
- items: [
7520
- {
7521
- id: "plants-botanical-decor",
7522
- name: "Plants & Botanical Decor",
7523
- description: "Potted herbs, succulents, dried flowers, terrariums, plant-based ornaments."
7524
- },
7525
- {
7526
- id: "garden-tools-outdoor-items",
7527
- name: "Garden Tools & Outdoor Items",
7528
- description: "Plant markers, garden signs, stakes, small tools, wind chimes, gifts."
7529
- },
7530
- {
7531
- id: "other-outdoor-garden-products",
7532
- name: "Other outdoor or garden products",
7533
- description: "Functional or decorative items for outside use."
7534
- }
7535
- ]
7536
- }
7537
- ]
7538
- }
7539
- ];
7540
- var toysChildren = [
7541
- {
7542
- id: "toys-childrens-items",
7543
- name: "Toys & Children\u2019s Items",
7544
- description: "Products and services made for or inspired by children.",
7545
- subcategories: [
7546
- {
7547
- id: "toys-playthings",
7548
- name: "Toys & Playthings",
7549
- items: [
7550
- {
7551
- id: "toys-classic-electric-character",
7552
- name: "Toys \u2013 Classic, Electric & Character-Based",
7553
- description: "Building blocks, dolls, puzzles, plush animals, toy vehicles, remote-control toys, light-up gadgets, character figurines, themed playsets."
7554
- },
7555
- {
7556
- id: "handmade-toys-crafty-playthings",
7557
- name: "Handmade Toys & Crafty Playthings",
7558
- description: "Wooden puzzles, crocheted animals, felt toys, fabric dolls, DIY kits, nature-inspired games, sensory toys."
7559
- },
7560
- {
7561
- id: "other-play-items",
7562
- name: "Other play items",
7563
- description: "Toys not listed above, including limited-edition or hybrid items."
7564
- }
7565
- ]
7566
- },
7567
- {
7568
- id: "educational-developmental",
7569
- name: "Educational & Developmental",
7570
- items: [
7571
- {
7572
- id: "educational-developmental-tools",
7573
- name: "Educational & Developmental Tools",
7574
- description: "STEM kits, Montessori toys, storybooks, picture books, flashcards, early learning games, language tools."
7575
- },
7576
- {
7577
- id: "kids-experiences-extras",
7578
- name: "Kids\u2019 Experiences & Extras",
7579
- description: "Face painting, balloon animals, hair braiding, glitter tattoos, storytime, puppet shows, interactive zones, party gear."
7580
- },
7581
- {
7582
- id: "other-educational-experience-based-items",
7583
- name: "Other educational or experience-based items",
7584
- description: "Creative experiences or learning aids not listed above."
7585
- }
7586
- ]
7587
- },
7588
- {
7589
- id: "baby-kidswear-accessories",
7590
- name: "Baby & Kidswear + Accessories",
7571
+ name: "Gift Ideas & Accessories",
7591
7572
  items: [
7592
7573
  {
7593
- id: "baby-kidswear-accessories",
7594
- name: "Baby & Kidswear + Accessories",
7595
- description: "Handmade baby clothes, toddler outfits, bibs, hats, headbands, bags, pacifier clips, soft shoes."
7574
+ id: "handmade-pens-keychains-fridge-magnets",
7575
+ name: "Handmade Pens, Keychains and Fridge Magnets",
7576
+ description: ""
7596
7577
  },
7597
7578
  {
7598
- id: "other-childrens-clothing-accessories",
7599
- name: "Other children\u2019s clothing or accessories",
7600
- description: "Unique fashion or functional pieces for kids."
7579
+ id: "gift-packaging-wrapping-accessories",
7580
+ name: "Gift Packaging & Wrapping Accessories",
7581
+ description: ""
7582
+ },
7583
+ {
7584
+ id: "other-small-handmade-gifts-accessories",
7585
+ name: "Other small handmade gifts or accessories",
7586
+ description: "Compact creative items made to surprise or delight."
7601
7587
  }
7602
7588
  ]
7603
7589
  }
7604
7590
  ]
7605
7591
  }
7606
7592
  ];
7607
- var helthAndWellness = [
7593
+ var healthAndWellness = [
7608
7594
  {
7609
7595
  id: "health-wellness",
7610
7596
  name: "Health & Wellness",
@@ -7682,139 +7668,67 @@ var helthAndWellness = [
7682
7668
  ]
7683
7669
  }
7684
7670
  ];
7685
- var electronicsAndTechnology = [
7671
+ var homeGardenHousehold = [
7686
7672
  {
7687
- id: "electronics-technology",
7688
- name: "Electronics & Technology",
7689
- description: "New, second-hand, or handmade tech and digital items commonly found at markets.",
7673
+ id: "home-garden-household-goods",
7674
+ name: "Home, Garden & Household Goods",
7675
+ description: "Functional, decorative, and eco-conscious products designed for everyday use indoors and outdoors.",
7690
7676
  subcategories: [
7691
7677
  {
7692
- id: "mobile-everyday-tech",
7693
- name: "Mobile & Everyday Tech",
7694
- items: [
7695
- {
7696
- id: "mobile-phone-accessories",
7697
- name: "Mobile & Phone Accessories",
7698
- description: "Phone cases, holders, screen protectors, charging cables, power banks, grips."
7699
- },
7700
- {
7701
- id: "other-mobile-gadgets",
7702
- name: "Other mobile gadgets",
7703
- description: "Stands, styluses, SIM tools, cleaning kits, wallet accessories."
7704
- }
7705
- ]
7706
- },
7707
- {
7708
- id: "audio-music-creative-tech",
7709
- name: "Audio, Music & Creative Tech",
7678
+ id: "home-decor-living",
7679
+ name: "Home Decor & Living",
7710
7680
  items: [
7711
7681
  {
7712
- id: "audio-music-tech",
7713
- name: "Audio & Music Tech",
7714
- description: "Portable speakers, headphones, mini radios, Bluetooth adapters, sound accessories."
7715
- },
7716
- {
7717
- id: "instruments-music-gear",
7718
- name: "Instruments & Music Gear",
7719
- description: "Small electronic instruments, DIY synth kits, drum pads, loop machines."
7682
+ id: "home-decor",
7683
+ name: "Home Decor",
7684
+ description: "Cushions, wall art, table runners, vases, trays, mirrors, handmade centerpieces."
7720
7685
  },
7721
7686
  {
7722
- id: "recording-creative-devices",
7723
- name: "Recording & Creative Devices",
7724
- description: "USB microphones, podcast tools, voice recorders, mobile lighting, content tools."
7687
+ id: "kitchenware-dining",
7688
+ name: "Kitchenware & Dining",
7689
+ description: "Mugs, bowls, cutting boards, utensils, jars, coasters, kitchen textiles."
7725
7690
  },
7726
7691
  {
7727
- id: "other-audio-music-items",
7728
- name: "Other audio or music-related items",
7729
- description: "Musical gadgets or creative gear not listed above."
7692
+ id: "other-indoor-home-items",
7693
+ name: "Other indoor home items",
7694
+ description: "Any decorative or practical household items not listed above."
7730
7695
  }
7731
7696
  ]
7732
7697
  },
7733
7698
  {
7734
- id: "diy-gadgets-secondhand-finds",
7735
- name: "DIY, Gadgets & Second-Hand Finds",
7736
- items: [
7737
- {
7738
- id: "diy-electronics-tools",
7739
- name: "DIY Electronics & Tools",
7740
- description: "LED lights, USB gadgets, circuit boards, repair kits, tech-themed toys, novelty items."
7741
- },
7742
- {
7743
- id: "other-tech-finds",
7744
- name: "Other Tech Finds",
7745
- description: "Used electronics, smart gadgets, wearable tech, calculators, tablet stands, e-waste upcycles."
7746
- },
7747
- {
7748
- id: "other-technology-innovation-items",
7749
- name: "Other technology or innovation-related items",
7750
- description: "Anything not covered but clearly tech-driven."
7751
- }
7752
- ]
7753
- }
7754
- ]
7755
- }
7756
- ];
7757
- var antiquesAndCollectibles = [
7758
- {
7759
- id: "antiques-collectibles",
7760
- name: "Antiques & Collectibles",
7761
- description: "Vintage and collectible goods with historic, nostalgic, or decorative value.",
7762
- subcategories: [
7763
- {
7764
- id: "vintage-fashion-personal-items",
7765
- name: "Vintage Fashion & Personal Items",
7699
+ id: "cleaning-eco-essentials",
7700
+ name: "Cleaning & Eco Essentials",
7766
7701
  items: [
7767
7702
  {
7768
- id: "vintage-clothing-accessories",
7769
- name: "Vintage Clothing & Accessories",
7770
- description: "Retro jackets, dresses, hats, gloves, belts, era-specific fashion."
7771
- },
7772
- {
7773
- id: "collectibles-memorabilia",
7774
- name: "Collectibles & Memorabilia",
7775
- description: "Coins, stamps, toys, postcards, comics, sports cards, vintage packaging."
7703
+ id: "cleaning-eco-supplies",
7704
+ name: "Cleaning & Eco Supplies",
7705
+ description: "Beeswax wraps, reusable cloths, brushes, natural soaps, detergent bars, eco sponges."
7776
7706
  },
7777
7707
  {
7778
- id: "other-fashion-collectibles",
7779
- name: "Other fashion-related collectibles",
7780
- description: "Items with both fashion and collector value."
7708
+ id: "other-eco-cleaning-items",
7709
+ name: "Other eco or cleaning items",
7710
+ description: "Environmentally friendly goods not listed above."
7781
7711
  }
7782
7712
  ]
7783
7713
  },
7784
7714
  {
7785
- id: "antique-home-curiosities",
7786
- name: "Antique Home & Curiosities",
7715
+ id: "garden-outdoor-living",
7716
+ name: "Garden & Outdoor Living",
7787
7717
  items: [
7788
7718
  {
7789
- id: "antique-homewares-decor",
7790
- name: "Antique Homewares & Decor",
7791
- description: "Teacups, plates, vases, mirrors, clocks, furniture accents."
7792
- },
7793
- {
7794
- id: "other-unique-finds",
7795
- name: "Other Unique Finds",
7796
- description: "Old tools, lanterns, typewriters, binoculars, relics, curios."
7719
+ id: "plants-botanical-decor",
7720
+ name: "Plants & Botanical Decor",
7721
+ description: "Potted herbs, succulents, dried flowers, terrariums, plant-based ornaments."
7797
7722
  },
7798
7723
  {
7799
- id: "other-antique-items",
7800
- name: "Other antique items",
7801
- description: "Vintage or handmade pieces not listed above."
7802
- }
7803
- ]
7804
- },
7805
- {
7806
- id: "media-printed-nostalgia",
7807
- name: "Media & Printed Nostalgia",
7808
- items: [
7809
- {
7810
- id: "records-books-media",
7811
- name: "Records, Books & Media",
7812
- description: "Vinyls, cassette tapes, old books, magazines, board games, DVDs, CDs."
7724
+ id: "garden-tools-outdoor-items",
7725
+ name: "Garden Tools & Outdoor Items",
7726
+ description: "Plant markers, garden signs, stakes, small tools, wind chimes, gifts."
7813
7727
  },
7814
7728
  {
7815
- id: "other-printed-recorded-media",
7816
- name: "Other printed or recorded media",
7817
- description: "Posters, manuals, out-of-print publications."
7729
+ id: "other-outdoor-garden-products",
7730
+ name: "Other outdoor or garden products",
7731
+ description: "Functional or decorative items for outside use."
7818
7732
  }
7819
7733
  ]
7820
7734
  }
@@ -7992,13 +7906,99 @@ var serviceAndExperience = [
7992
7906
  ]
7993
7907
  }
7994
7908
  ];
7909
+ var toysChildren = [
7910
+ {
7911
+ id: "toys-childrens-items",
7912
+ name: "Toys & Children\u2019s Items",
7913
+ description: "Products and services made for or inspired by children.",
7914
+ subcategories: [
7915
+ {
7916
+ id: "toys-playthings",
7917
+ name: "Toys & Playthings",
7918
+ items: [
7919
+ {
7920
+ id: "toys-classic-electric-character",
7921
+ name: "Toys \u2013 Classic, Electric & Character-Based",
7922
+ description: "Building blocks, dolls, puzzles, plush animals, toy vehicles, remote-control toys, light-up gadgets, character figurines, themed playsets."
7923
+ },
7924
+ {
7925
+ id: "handmade-toys-crafty-playthings",
7926
+ name: "Handmade Toys & Crafty Playthings",
7927
+ description: "Wooden puzzles, crocheted animals, felt toys, fabric dolls, DIY kits, nature-inspired games, sensory toys."
7928
+ },
7929
+ {
7930
+ id: "other-play-items",
7931
+ name: "Other play items",
7932
+ description: "Toys not listed above, including limited-edition or hybrid items."
7933
+ }
7934
+ ]
7935
+ },
7936
+ {
7937
+ id: "educational-developmental",
7938
+ name: "Educational & Developmental",
7939
+ items: [
7940
+ {
7941
+ id: "educational-developmental-tools",
7942
+ name: "Educational & Developmental Tools",
7943
+ description: "STEM kits, Montessori toys, storybooks, picture books, flashcards, early learning games, language tools."
7944
+ },
7945
+ {
7946
+ id: "kids-experiences-extras",
7947
+ name: "Kids\u2019 Experiences & Extras",
7948
+ description: "Face painting, balloon animals, hair braiding, glitter tattoos, storytime, puppet shows, interactive zones, party gear."
7949
+ },
7950
+ {
7951
+ id: "other-educational-experience-based-items",
7952
+ name: "Other educational or experience-based items",
7953
+ description: "Creative experiences or learning aids not listed above."
7954
+ }
7955
+ ]
7956
+ },
7957
+ {
7958
+ id: "baby-kidswear-accessories",
7959
+ name: "Baby & Kidswear + Accessories",
7960
+ items: [
7961
+ {
7962
+ id: "baby-kidswear-accessories",
7963
+ name: "Baby & Kidswear + Accessories",
7964
+ description: "Handmade baby clothes, toddler outfits, bibs, hats, headbands, bags, pacifier clips, soft shoes."
7965
+ },
7966
+ {
7967
+ id: "other-childrens-clothing-accessories",
7968
+ name: "Other children\u2019s clothing or accessories",
7969
+ description: "Unique fashion or functional pieces for kids."
7970
+ }
7971
+ ]
7972
+ }
7973
+ ]
7974
+ }
7975
+ ];
7976
+ var categoryColors = {
7977
+ "antiques-collectibles": "#8D6748",
7978
+ "clothing-fashion": "#9D4EDD",
7979
+ "electronics-technology": "#3AF3FF",
7980
+ "food-beverages": "#FF0D1F",
7981
+ "handmade-local-products": "#EE7E54",
7982
+ "health-wellness": "#E23794",
7983
+ "home-garden-household-goods": "#067325",
7984
+ "pet-products-animal-goods": "#68E788",
7985
+ "services-experiences": "#2E16A5",
7986
+ "toys-childrens-items": "#FFF966"
7987
+ };
7988
+ var assignColorToCategories = (categories) => {
7989
+ const result = categories.map((category) => ({
7990
+ ...category,
7991
+ color: categoryColors[category.id]
7992
+ }));
7993
+ return result;
7994
+ };
7995
7995
  var availableCategories = assignColorToCategories([
7996
7996
  ...foodAndBeverages,
7997
7997
  ...handmadeAndLocalProducts,
7998
7998
  ...clothingAndFashion,
7999
7999
  ...homeGardenHousehold,
8000
8000
  ...toysChildren,
8001
- ...helthAndWellness,
8001
+ ...healthAndWellness,
8002
8002
  ...electronicsAndTechnology,
8003
8003
  ...antiquesAndCollectibles,
8004
8004
  ...petProductsAndAnimalGoods,
@@ -8784,11 +8784,8 @@ var ADD_PARTICIPANT_TO_CHAT_MUTATION = gql`
8784
8784
  `;
8785
8785
  var REMOVE_PARTICIPANT_FROM_CHAT_MUTATION = gql`
8786
8786
  mutation removeParticipantFromChat($chatId: ID!, $userId: ID!) {
8787
- removeParticipantFromChat(chatId: $chatId, userId: $userId) {
8788
- ...ChatFields
8789
- }
8787
+ removeParticipantFromChat(chatId: $chatId, userId: $userId)
8790
8788
  }
8791
- ${CHAT_FIELDS_FRAGMENT}
8792
8789
  `;
8793
8790
  var GET_CHAT_MESSAGE = gql`
8794
8791
  subscription {
@@ -10512,6 +10509,11 @@ var ChatSchema = new MongooseSchema5(
10512
10509
  timestamps: true
10513
10510
  }
10514
10511
  );
10512
+ ChatSchema.index({
10513
+ "participants.active": 1,
10514
+ "participants.userId": 1,
10515
+ updatedAt: -1
10516
+ });
10515
10517
  var ChatModel = mongoose5.models.Chat || mongoose5.model("Chat", ChatSchema);
10516
10518
 
10517
10519
  // src/mongoose/Notification.ts
@@ -10729,6 +10731,18 @@ var stripeSchema = new MongooseSchema10(
10729
10731
  },
10730
10732
  { _id: false }
10731
10733
  );
10734
+ var userLicenseSchema = new MongooseSchema10(
10735
+ {
10736
+ expiryDate: { required: true, type: Date },
10737
+ issuedDate: { required: true, type: Date },
10738
+ licenceType: {
10739
+ enum: Object.values(EnumUserLicence),
10740
+ required: true,
10741
+ type: String
10742
+ }
10743
+ },
10744
+ { _id: false, timestamps: false }
10745
+ );
10732
10746
  var schema6 = new MongooseSchema10(
10733
10747
  {
10734
10748
  active: { default: false, required: true, type: Boolean },
@@ -10748,9 +10762,8 @@ var schema6 = new MongooseSchema10(
10748
10762
  isTester: { default: false, required: true, type: Boolean },
10749
10763
  lastName: { required: true, type: String },
10750
10764
  licences: {
10751
- enum: Object.values(EnumUserLicence),
10752
10765
  required: false,
10753
- type: [String]
10766
+ type: [userLicenseSchema]
10754
10767
  },
10755
10768
  partner: {
10756
10769
  ref: "Partner",
@@ -11123,4 +11136,4 @@ react/cjs/react.development.js:
11123
11136
  * LICENSE file in the root directory of this source tree.
11124
11137
  *)
11125
11138
  */
11126
- //# sourceMappingURL=chunk-SHWMY3VG.mjs.map
11139
+ //# sourceMappingURL=chunk-RNQMP3AO.mjs.map