@kiriminaja/types 0.1.28 → 0.1.29
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/index.js +1 -0
- package/dist/oms.js +10 -0
- package/package.json +9 -3
package/dist/index.js
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './oms';
|
package/dist/oms.js
ADDED
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
export const OMS_PRODUCT_TRACKING_EVENTS = [
|
|
2
|
+
'ViewContent',
|
|
3
|
+
'Lead',
|
|
4
|
+
'AddToCart',
|
|
5
|
+
'ReceiverInfoCompleted',
|
|
6
|
+
'ShippingInfoCompleted',
|
|
7
|
+
'InitiateCheckout',
|
|
8
|
+
'AddPaymentInfo'
|
|
9
|
+
];
|
|
10
|
+
export const OMS_PRODUCT_CONVERSION_TRIGGERS = ['Page Load', 'Purchased'];
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kiriminaja/types",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.29",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"files": [
|
|
6
6
|
"dist"
|
|
@@ -10,13 +10,19 @@
|
|
|
10
10
|
"clean": "rimraf dist",
|
|
11
11
|
"prepublishOnly": "npm run build"
|
|
12
12
|
},
|
|
13
|
+
"main": "./dist/index.js",
|
|
14
|
+
"module": "./dist/index.js",
|
|
13
15
|
"types": "./dist/index.d.ts",
|
|
14
16
|
"exports": {
|
|
15
17
|
".": {
|
|
16
|
-
"types": "./dist/index.d.ts"
|
|
18
|
+
"types": "./dist/index.d.ts",
|
|
19
|
+
"import": "./dist/index.js",
|
|
20
|
+
"default": "./dist/index.js"
|
|
17
21
|
},
|
|
18
22
|
"./checkout": {
|
|
19
|
-
"types": "./dist/checkout.d.ts"
|
|
23
|
+
"types": "./dist/checkout.d.ts",
|
|
24
|
+
"import": "./dist/checkout.js",
|
|
25
|
+
"default": "./dist/checkout.js"
|
|
20
26
|
}
|
|
21
27
|
},
|
|
22
28
|
"sideEffects": false,
|