@kiriminaja/types 0.1.29 → 0.1.31
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 +2 -1
- package/dist/oms.js +2 -1
- package/package.json +1 -1
package/dist/oms.d.ts
CHANGED
|
@@ -131,13 +131,14 @@ export type OmsProductCatalogSettingResourceT = {
|
|
|
131
131
|
key?: string;
|
|
132
132
|
value?: string;
|
|
133
133
|
};
|
|
134
|
-
export declare const OMS_PRODUCT_TRACKING_EVENTS: readonly ["ViewContent", "Lead", "AddToCart", "ReceiverInfoCompleted", "ShippingInfoCompleted", "InitiateCheckout", "AddPaymentInfo"];
|
|
134
|
+
export declare const OMS_PRODUCT_TRACKING_EVENTS: readonly ["ViewContent", "Lead", "AddToCart", "ReceiverInfoCompleted", "ShippingInfoCompleted", "InitiateCheckout", "AddPaymentInfo", "Purchase"];
|
|
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
138
|
export type OmsProductEventTrackingPixelT = {
|
|
139
139
|
id?: string;
|
|
140
140
|
name?: string;
|
|
141
|
+
access_token?: string;
|
|
141
142
|
events?: OmsProductTrackingEventNameT[];
|
|
142
143
|
};
|
|
143
144
|
export type OmsProductEventTrackingT = {
|
package/dist/oms.js
CHANGED