@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>> {
package/package.json CHANGED
@@ -111,6 +111,6 @@
111
111
  },
112
112
  "sideEffects": false,
113
113
  "types": "dist/index.d.ts",
114
- "version": "2.10.3",
114
+ "version": "2.10.4",
115
115
  "packageManager": "yarn@3.1.1"
116
116
  }
@@ -24,6 +24,10 @@ export interface FacebookCartProperties extends FacebookValueProperties, Faceboo
24
24
  num_items?: number
25
25
  }
26
26
 
27
+ export interface FacebookExternalId extends Record<string, string[] | undefined> {
28
+ external_id?: string[]
29
+ }
30
+
27
31
  export type FacebookAddPaymentInfo = FacebookCartProperties
28
32
 
29
33
  export type FacebookAddToCart = FacebookCartProperties
@@ -50,6 +54,7 @@ export interface FacebookStartTrial extends FacebookValueProperties {
50
54
 
51
55
  export interface FacebookSubscribe extends FacebookValueProperties {
52
56
  predicted_ltv?: string
57
+ subscription_id?: string
53
58
  }
54
59
 
55
60
  export type FacebookViewContent = FacebookCartProperties