@bash-app/bash-common 30.102.0 → 30.105.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +1 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +2 -0
- package/dist/index.js.map +1 -1
- package/dist/templates/eventTemplates.d.ts +45 -0
- package/dist/templates/eventTemplates.d.ts.map +1 -0
- package/dist/templates/eventTemplates.js +1191 -0
- package/dist/templates/eventTemplates.js.map +1 -0
- package/dist/utils/service/serviceUtils.d.ts.map +1 -1
- package/dist/utils/service/serviceUtils.js +15 -9
- package/dist/utils/service/serviceUtils.js.map +1 -1
- package/package.json +1 -1
- package/prisma/schema.prisma +169 -24
- package/src/index.ts +3 -0
- package/src/templates/eventTemplates.ts +1253 -0
- package/src/utils/service/serviceUtils.ts +15 -9
|
@@ -436,24 +436,30 @@ export const serviceSpecificInfoAI = {
|
|
|
436
436
|
type: "string",
|
|
437
437
|
isArray: false,
|
|
438
438
|
},
|
|
439
|
+
vendorType: {
|
|
440
|
+
description: `vendorType (set to "products" if selling physical goods, or "services" if providing vendor services like face painting)`,
|
|
441
|
+
example: `"products"`,
|
|
442
|
+
type: "string",
|
|
443
|
+
isArray: false,
|
|
444
|
+
},
|
|
445
|
+
vendorProductTypes: {
|
|
446
|
+
description: `vendorProductTypes (array of VendedProductType enum values for PRODUCT vendors: Art, HandcraftedItems, Pottery, Woodwork, LeatherGoods, Textiles, BakedGoods, Beverages, FoodItems, HoneyAndJams, PopcornAndSnacks, SweetTreats, Spices, Sauces, MakeupCosmetics, SkincareProducts, BodyCareProducts, Soaps, Perfumes, HairCareProducts, Clothing, TShirtsAndApparel, Jewelry, Accessories, Hats, Bags, Shoes, HomeDecor, Candles, Plants, Succulents, Furniture, Kitchenware, Books, Crystals, SpiritualItems, HerbalRemedies, VintageAntiques, Collectibles, PhotographyPrints, StickersAndStationery, Prints, Zines, Toys, BabyItems, PetProducts, TechAccessories, Other). Only use for vendors with vendorType="products".`,
|
|
447
|
+
example: `["Jewelry", "HandcraftedItems"]`,
|
|
448
|
+
type: "string",
|
|
449
|
+
isArray: true,
|
|
450
|
+
},
|
|
439
451
|
vendorServiceTypes: {
|
|
440
|
-
description: `vendorServiceTypes (array of VendorServiceType enum values)
|
|
441
|
-
example: `["
|
|
452
|
+
description: `vendorServiceTypes (array of VendorServiceType enum values for SERVICE vendors: BalloonArt, CaricatureDrawings, LivePainting, SilhouetteCutting, CustomCalligraphy, PortraitSketching, SprayPaintArt, FacePainting, HairBraiding, HennaArt, TemporaryTattoos, GlitterBodyArt, AirbrushMakeup, NailArt, HairStyling, ChairMassages, WellnessDemos, YogaOrMovementClasses, Reiki, Aromatherapy, Magician, ClownServices, StiltWalking, BubblePerformances, JugglingActs, MimeArtist, KidsCraftBooths, PettingZoos, PonyRides, BounceHouseOperator, GameBoothOperator, PhotoBooths, InstantPhotography, VideoMessages, GreenScreenPhotos, PsychicOrTarotReadings, PalmReading, AuraPhotography, Astrology, Other). Only use for vendors with vendorType="services".`,
|
|
453
|
+
example: `["FacePainting", "BalloonArt"]`,
|
|
442
454
|
type: "string",
|
|
443
455
|
isArray: true,
|
|
444
456
|
},
|
|
445
457
|
goodsOrServices: {
|
|
446
|
-
description: `goodsOrServices (array of specific products/services offered)`,
|
|
458
|
+
description: `goodsOrServices (array of specific products/services offered - the actual items, not categories)`,
|
|
447
459
|
example: `["bracelets", "jewelry", "ponchos", "blankets"]`,
|
|
448
460
|
type: "string",
|
|
449
461
|
isArray: true,
|
|
450
462
|
},
|
|
451
|
-
vendorType: {
|
|
452
|
-
description: `vendorType (main category)`,
|
|
453
|
-
example: `"Handicrafts"`,
|
|
454
|
-
type: "string",
|
|
455
|
-
isArray: false,
|
|
456
|
-
},
|
|
457
463
|
detailsText: {
|
|
458
464
|
description: `detailsText (additional vendor details)`,
|
|
459
465
|
example: `"Specializing in handmade Ecuadorian crafts"`,
|