@debales/ai 1.1.18 → 1.1.19
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/browser/ai-browser.js +714 -551
- package/dist/module/adapter/TheCollectiveCartAdapter.d.ts +17 -0
- package/dist/module/ai.js +13995 -13726
- package/dist/module/ai.umd.js +686 -523
- package/dist/module/types/index.d.ts +2 -1
- package/package.json +3 -3
|
@@ -136,7 +136,8 @@ export declare enum EcommercePlatform {
|
|
|
136
136
|
SHOPIFY = "SHOPIFY",
|
|
137
137
|
WOOCOMMERCE = "WOOCOMMERCE",
|
|
138
138
|
MAGENTO = "MAGENTO",
|
|
139
|
-
UNKNOWN = "UNKNOWN"
|
|
139
|
+
UNKNOWN = "UNKNOWN",
|
|
140
|
+
THE_COLLECTIVE = "THE_COLLECTIVE"
|
|
140
141
|
}
|
|
141
142
|
export interface ShadowDOMRef {
|
|
142
143
|
shadowRoot: ShadowRoot;
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@debales/ai",
|
|
3
3
|
"private": false,
|
|
4
4
|
"access": "public",
|
|
5
|
-
"version": "1.1.
|
|
5
|
+
"version": "1.1.19",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"main": "./dist/module/ai.js",
|
|
8
8
|
"types": "./dist/module/index.d.ts",
|
|
@@ -52,8 +52,8 @@
|
|
|
52
52
|
"vite": "^6.2.0",
|
|
53
53
|
"vite-plugin-dts": "^4.5.3",
|
|
54
54
|
"@debales/eslint-config": "0.0.0",
|
|
55
|
-
"@debales/
|
|
56
|
-
"@debales/
|
|
55
|
+
"@debales/shared": "0.0.1",
|
|
56
|
+
"@debales/typescript-config": "0.0.0"
|
|
57
57
|
},
|
|
58
58
|
"peerDependencies": {
|
|
59
59
|
"react": "^18.0.0 || ^19.0.0",
|