@kiriminaja/types 0.1.27 → 0.1.28
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/dist/oms.d.ts +7 -8
- package/package.json +1 -1
package/dist/oms.d.ts
CHANGED
|
@@ -135,15 +135,14 @@ export declare const OMS_PRODUCT_TRACKING_EVENTS: readonly ["ViewContent", "Lead
|
|
|
135
135
|
export declare const OMS_PRODUCT_CONVERSION_TRIGGERS: readonly ["Page Load", "Purchased"];
|
|
136
136
|
export type OmsProductTrackingEventNameT = typeof OMS_PRODUCT_TRACKING_EVENTS[number];
|
|
137
137
|
export type OmsProductConversionTriggerT = typeof OMS_PRODUCT_CONVERSION_TRIGGERS[number];
|
|
138
|
+
export type OmsProductEventTrackingPixelT = {
|
|
139
|
+
id?: string;
|
|
140
|
+
name?: string;
|
|
141
|
+
events?: OmsProductTrackingEventNameT[];
|
|
142
|
+
};
|
|
138
143
|
export type OmsProductEventTrackingT = {
|
|
139
|
-
facebook_pixels?:
|
|
140
|
-
|
|
141
|
-
events?: OmsProductTrackingEventNameT[];
|
|
142
|
-
}[];
|
|
143
|
-
tiktok_pixels?: {
|
|
144
|
-
id?: string;
|
|
145
|
-
events?: OmsProductTrackingEventNameT[];
|
|
146
|
-
}[];
|
|
144
|
+
facebook_pixels?: OmsProductEventTrackingPixelT[];
|
|
145
|
+
tiktok_pixels?: OmsProductEventTrackingPixelT[];
|
|
147
146
|
google_ads?: {
|
|
148
147
|
conversion_id?: string;
|
|
149
148
|
conversion_label?: string;
|