@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/react/PrimeStyleTryonInner.d.ts +1 -1
- package/dist/react/index.js +4903 -4964
- package/dist/react/index.js.map +1 -1
- package/dist/react/styles.d.ts +1 -1
- package/dist/react/types.d.ts +4 -0
- package/dist/react/views/ProductPhotoCarouselCard.d.ts +12 -0
- package/dist/react/views/SizeResultView.d.ts +5 -19
- package/dist/react/views/TryOnGenerationBadge.d.ts +5 -0
- package/dist/sizing/fit-compute.d.ts +8 -3
- package/dist/storefront/primestyle-tryon.js +600 -751
- package/dist/types.d.ts +5 -0
- package/package.json +1 -1
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 */
|