@xylabs/sdk-react 2.10.3 → 2.10.4

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.
@@ -19,6 +19,9 @@ export interface FacebookCartProperties extends FacebookValueProperties, Faceboo
19
19
  contents?: FacebookContentsItem[];
20
20
  num_items?: number;
21
21
  }
22
+ export interface FacebookExternalId extends Record<string, string[] | undefined> {
23
+ external_id?: string[];
24
+ }
22
25
  export declare type FacebookAddPaymentInfo = FacebookCartProperties;
23
26
  export declare type FacebookAddToCart = FacebookCartProperties;
24
27
  export declare type FacebookAddToWishList = FacebookCartProperties;
@@ -37,6 +40,7 @@ export interface FacebookStartTrial extends FacebookValueProperties {
37
40
  }
38
41
  export interface FacebookSubscribe extends FacebookValueProperties {
39
42
  predicted_ltv?: string;
43
+ subscription_id?: string;
40
44
  }
41
45
  export declare type FacebookViewContent = FacebookCartProperties;
42
46
  export declare class FacebookStandardEvents<T extends Record<string, unknown>> {