@primestyleai/tryon 5.10.102 → 5.10.103

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/types.d.ts CHANGED
@@ -239,6 +239,11 @@ export interface SizingResult {
239
239
  export interface FitAreaInfo {
240
240
  /** Body area name (e.g. "Chest", "Waist", "Hips") */
241
241
  area: string;
242
+ /** Section name from the size guide (e.g. "Jacket Size", "Suit Pants",
243
+ * "Vest Size — Big"). Backend uses this to disambiguate which garment
244
+ * piece the area refers to (jacket chest vs vest chest, pants waistband
245
+ * vs dress waist, etc.). Empty/unknown when the chart is single-section. */
246
+ section?: string;
242
247
  /** Fit classification */
243
248
  fit: "good" | "tight" | "loose" | "a-bit-tight" | "a-bit-loose" | "too-tight" | "too-loose";
244
249
  /** User's measurement value in cm */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@primestyleai/tryon",
3
- "version": "5.10.102",
3
+ "version": "5.10.103",
4
4
  "description": "PrimeStyle Virtual Try-On SDK — React component & Web Component",
5
5
  "type": "module",
6
6
  "main": "dist/primestyle-tryon.js",