@aws505/sheetsite 1.0.8 → 1.0.10

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.mjs CHANGED
@@ -385,7 +385,9 @@ var BusinessInfoSchema = z.object({
385
385
  // Business metadata
386
386
  priceRange: z.enum(["$", "$$", "$$$", "$$$$"]).optional(),
387
387
  yearEstablished: z.number().optional(),
388
- licenseNumber: z.string().optional()
388
+ licenseNumber: z.string().optional(),
389
+ // Business type for trust signals and content customization
390
+ type: z.string().optional()
389
391
  });
390
392
  var DayOfWeek = z.enum(["monday", "tuesday", "wednesday", "thursday", "friday", "saturday", "sunday"]);
391
393
  var HoursEntrySchema = z.object({
@@ -4031,6 +4033,7 @@ var defaultTrustSignals = {
4031
4033
  tailor: ["Expert Craftsmanship", "Perfect Fit Guaranteed", "Quick Turnaround"],
4032
4034
  professional: ["Licensed & Insured", "Years of Experience", "Client Focused"],
4033
4035
  retail: ["Quality Products", "Great Selection", "Friendly Service"],
4036
+ boutique: ["Unique Selection", "Personal Service", "Quality Brands"],
4034
4037
  generic: ["Quality Service", "Customer First", "Community Trusted"],
4035
4038
  default: ["Quality Service", "Fair Prices", "Customer First"]
4036
4039
  };