feeef 0.12.3 → 0.12.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.
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { EmbaddedCategory } from '../embadded/category.js';
|
|
2
2
|
import { ShippingMethodEntity } from './shipping_method.js';
|
|
3
|
-
import { GoogleSheetsColumn, StoreEntity } from './store.js';
|
|
3
|
+
import { GoogleSheetsColumn, PixelStatusRule, StoreEntity } from './store.js';
|
|
4
4
|
import { CategoryEntity } from './category.js';
|
|
5
5
|
export interface ProductEntity {
|
|
6
6
|
id: string;
|
|
@@ -65,9 +65,17 @@ export declare enum MetaPixelEvent {
|
|
|
65
65
|
initiateCheckout = "InitiateCheckout"
|
|
66
66
|
}
|
|
67
67
|
export interface MetaPixelData {
|
|
68
|
+
/** When false, ignore product override and use store defaults. */
|
|
69
|
+
enabled?: boolean | null;
|
|
68
70
|
ids: string[] | null;
|
|
69
71
|
objective: MetaPixelEvent | null;
|
|
70
72
|
draftObjective: MetaPixelEvent | null;
|
|
73
|
+
/**
|
|
74
|
+
* Optional product-level status transition rules (server CAPI).
|
|
75
|
+
* When non-empty on a single-product order, overrides store `statusRules`.
|
|
76
|
+
* Never exposed on public product JSON.
|
|
77
|
+
*/
|
|
78
|
+
statusRules?: PixelStatusRule[] | null;
|
|
71
79
|
}
|
|
72
80
|
export declare enum TiktokPixelEvent {
|
|
73
81
|
none = "none",
|
|
@@ -82,9 +90,17 @@ export declare enum TiktokPixelEvent {
|
|
|
82
90
|
purchase = "Purchase"
|
|
83
91
|
}
|
|
84
92
|
export interface TiktokPixelData {
|
|
93
|
+
/** When false, ignore product override and use store defaults. */
|
|
94
|
+
enabled?: boolean | null;
|
|
85
95
|
ids: string[] | null;
|
|
86
96
|
objective: TiktokPixelEvent | null;
|
|
87
97
|
draftObjective: TiktokPixelEvent | null;
|
|
98
|
+
/**
|
|
99
|
+
* Optional product-level status transition rules (server Events API).
|
|
100
|
+
* When non-empty on a single-product order, overrides store `statusRules`.
|
|
101
|
+
* Never exposed on public product JSON.
|
|
102
|
+
*/
|
|
103
|
+
statusRules?: PixelStatusRule[] | null;
|
|
88
104
|
}
|
|
89
105
|
export interface GoogleAnalyticsData {
|
|
90
106
|
}
|