@primestyleai/tryon 5.10.194 → 5.10.196

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.
@@ -264,6 +264,8 @@ export interface PrimeStyleTryonProps {
264
264
  style?: CSSProperties;
265
265
  /** Optional portal target for modal/dropdown overlays. */
266
266
  portalContainer?: Element | DocumentFragment | null;
267
+ /** Optional Microsoft Clarity project id. Defaults to PrimeStyleAI's SDK replay project. */
268
+ clarityProjectId?: string;
267
269
  onOpen?: () => void;
268
270
  onClose?: () => void;
269
271
  onUpload?: (file: File) => void;
@@ -0,0 +1,9 @@
1
+ import type { ApiClient } from "./api-client";
2
+ interface StartSdkReplayInput {
3
+ client: ApiClient;
4
+ productId?: string;
5
+ productTitle?: string;
6
+ productUrl?: string;
7
+ }
8
+ export declare function startSdkReplay(input: StartSdkReplayInput): () => void;
9
+ export {};