@bid-scents/shared-sdk 1.2.5 → 1.2.6

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.
@@ -28,7 +28,7 @@ export const createListingSchema = z
28
28
  // Required enum
29
29
  box_condition: z.nativeEnum(ListingBoxCondition),
30
30
  // Required array (but can be empty initially, populated after upload)
31
- image_urls: z.array(z.string().min(0)),
31
+ image_urls: z.array(z.string()).min(0).max(10),
32
32
  // Conditionally required fields
33
33
  price: z.number().positive().max(10000).optional(),
34
34
  starting_price: z.number().positive().optional(),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bid-scents/shared-sdk",
3
- "version": "1.2.5",
3
+ "version": "1.2.6",
4
4
  "description": "Shared SDK for marketplace applications",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",