@primestyleai/tryon 5.10.173 → 5.10.176
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/api-client.d.ts +8 -3
- package/dist/image-utils.d.ts +1 -0
- package/dist/{index-B1_VQgps.js → index-D4yjnBvO.js} +147 -82
- package/dist/index-D4yjnBvO.js.map +1 -0
- package/dist/primestyle-tryon.js +6 -5
- package/dist/primestyle-tryon.js.map +1 -1
- package/dist/react/PrimeStyleTryonInner.d.ts +7 -2
- package/dist/react/components/LangSwitcher.d.ts +2 -1
- package/dist/react/components/ProfileDetailModal.d.ts +2 -1
- package/dist/react/icons.d.ts +3 -0
- package/dist/react/index.js +9341 -6325
- package/dist/react/index.js.map +1 -1
- package/dist/react/recommendForProduct.d.ts +6 -0
- package/dist/react/styles.d.ts +1 -1
- package/dist/react/types.d.ts +56 -0
- package/dist/react/utils/locale.d.ts +3 -1
- package/dist/react/utils/product-fit.d.ts +19 -0
- package/dist/react/utils/profile-auth.d.ts +10 -0
- package/dist/react/utils/profile-image.d.ts +3 -0
- package/dist/react/utils/remote-profiles.d.ts +7 -0
- package/dist/react/utils/shoe-reference.d.ts +39 -0
- package/dist/react/views/AccessorySizeView.d.ts +1 -0
- package/dist/react/views/BasicsStepMobile.d.ts +3 -1
- package/dist/react/views/BodyProfileView.d.ts +11 -3
- package/dist/react/views/CreateProfileWizard.d.ts +4 -2
- package/dist/react/views/ErrorView.d.ts +4 -3
- package/dist/react/views/FootSizeView.d.ts +1 -0
- package/dist/react/views/MobileScanningView.d.ts +5 -1
- package/dist/react/views/MultiSectionMobile.d.ts +7 -2
- package/dist/react/views/MySizingProfilesView.d.ts +5 -2
- package/dist/react/views/PhotoGuideView.d.ts +1 -1
- package/dist/react/views/PhotoStepMobile.d.ts +3 -1
- package/dist/react/views/ProductPhotoCarouselCard.d.ts +8 -2
- package/dist/react/views/SizeResultView.d.ts +8 -2
- package/dist/react/views/SocialProfileAuthView.d.ts +10 -0
- package/dist/react/views/WristSizeView.d.ts +28 -0
- package/dist/sizing/fit-compute.d.ts +8 -0
- package/dist/storefront/cart-hook.d.ts +4 -4
- package/dist/storefront/events.d.ts +6 -0
- package/dist/storefront/primestyle-tryon.js +4739 -1104
- package/dist/types.d.ts +5 -0
- package/package.json +2 -3
- package/dist/index-B1_VQgps.js.map +0 -1
|
@@ -4,6 +4,12 @@ export interface RecommendForProductInput {
|
|
|
4
4
|
productId: string;
|
|
5
5
|
productTitle: string;
|
|
6
6
|
productImage?: string;
|
|
7
|
+
productCategory?: string;
|
|
8
|
+
productSubcategory?: string;
|
|
9
|
+
productFitType?: string;
|
|
10
|
+
productType?: string;
|
|
11
|
+
productTags?: string[] | string;
|
|
12
|
+
productDescription?: string;
|
|
7
13
|
/** Raw size guide data — pass the same value you'd pass to <PrimeStyleTryon sizeGuideData={...}/> */
|
|
8
14
|
sizeGuideData?: unknown;
|
|
9
15
|
/** Optional explicit profile (otherwise uses the active profile from localStorage) */
|