fleek-track-analytics 1.1.24 → 1.1.26
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/README.md
CHANGED
|
File without changes
|
package/jest.config.js
CHANGED
|
File without changes
|
|
@@ -1,5 +1,14 @@
|
|
|
1
|
+
interface ICheckoutProducts {
|
|
2
|
+
id: string;
|
|
3
|
+
name: string;
|
|
4
|
+
price: string;
|
|
5
|
+
variant?: string;
|
|
6
|
+
vendorName?: string;
|
|
7
|
+
}
|
|
1
8
|
export interface ICheckoutClicked {
|
|
2
9
|
cart_id: string;
|
|
3
10
|
number_of_items: number;
|
|
4
|
-
total_value:
|
|
11
|
+
total_value: string;
|
|
12
|
+
products: Array<ICheckoutProducts>;
|
|
5
13
|
}
|
|
14
|
+
export {};
|
|
@@ -62,6 +62,5 @@ export interface IFirstOrderDiscountApplyFail {
|
|
|
62
62
|
export interface IFirstOrderDiscountShopify extends IFirstOrderDiscountApplyFail {
|
|
63
63
|
discount_currency: string | number;
|
|
64
64
|
discount_value: string | number;
|
|
65
|
-
order_line_items: Array<IOrderLineDetails>;
|
|
66
65
|
}
|
|
67
66
|
export {};
|
package/package.json
CHANGED
package/tsconfig.json
CHANGED
|
File without changes
|