@coveo/headless 3.36.0 → 3.37.0
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/README.md +4 -0
- package/dist/cjs/case-assist/headless.cjs +1 -1
- package/dist/cjs/commerce/headless.cjs +413 -229
- package/dist/cjs/commerce/node.cjs.stats.json +1 -1
- package/dist/cjs/headless.cjs +1 -1
- package/dist/cjs/insight/headless.cjs +1 -1
- package/dist/cjs/insight/node.cjs.stats.json +1 -1
- package/dist/cjs/node.cjs.stats.json +1 -1
- package/dist/cjs/recommendation/headless.cjs +1 -1
- package/dist/cjs/ssr/headless.cjs +1 -1
- package/dist/cjs/ssr/node.cjs.stats.json +1 -1
- package/dist/cjs/ssr-commerce/headless.cjs +39 -3
- package/dist/cjs/ssr-commerce/node.cjs.stats.json +1 -1
- package/dist/cjs/ssr-commerce-next/headless.cjs +39 -3
- package/dist/cjs/ssr-commerce-next/node.cjs.stats.json +1 -1
- package/dist/cjs/ssr-next/headless.cjs +1 -1
- package/dist/cjs/ssr-next/node.cjs.stats.json +1 -1
- package/dist/definitions/api/commerce/commerce-api-client.d.ts +3 -0
- package/dist/definitions/api/commerce/commerce-api-params.d.ts +3 -0
- package/dist/definitions/api/commerce/commerce-metadata.d.ts +7 -1
- package/dist/definitions/api/commerce/common/request.d.ts +2 -2
- package/dist/definitions/api/commerce/product-enrichment/product-enrichment-request.d.ts +29 -0
- package/dist/definitions/api/commerce/product-enrichment/product-enrichment-response.d.ts +17 -0
- package/dist/definitions/commerce.index.d.ts +4 -0
- package/dist/definitions/controllers/commerce/product-enrichment/headless-product-enrichment.d.ts +56 -0
- package/dist/definitions/features/commerce/product-enrichment/product-enrichment-actions-loader.d.ts +28 -0
- package/dist/definitions/features/commerce/product-enrichment/product-enrichment-actions.d.ts +27 -0
- package/dist/definitions/features/commerce/product-enrichment/product-enrichment-slice.d.ts +4 -0
- package/dist/definitions/features/commerce/product-enrichment/product-enrichment-state.d.ts +17 -0
- package/dist/definitions/features/commerce/product-enrichment/product-enrichment.d.ts +7 -0
- package/dist/definitions/state/commerce-app-state.d.ts +2 -2
- package/dist/definitions/state/state-sections.d.ts +7 -0
- package/dist/definitions/test/mock-product-enrichment.d.ts +6 -0
- package/dist/esm/api/commerce/commerce-api-client.js +7 -0
- package/dist/esm/api/commerce/commerce-metadata.js +8 -1
- package/dist/esm/api/commerce/common/request.js +13 -2
- package/dist/esm/api/commerce/product-enrichment/product-enrichment-request.js +18 -0
- package/dist/esm/api/commerce/product-enrichment/product-enrichment-response.js +1 -0
- package/dist/esm/commerce.index.js +2 -0
- package/dist/esm/controllers/commerce/product-enrichment/headless-product-enrichment.js +61 -0
- package/dist/esm/features/commerce/product-enrichment/product-enrichment-actions-loader.js +17 -0
- package/dist/esm/features/commerce/product-enrichment/product-enrichment-actions.js +26 -0
- package/dist/esm/features/commerce/product-enrichment/product-enrichment-slice.js +26 -0
- package/dist/esm/features/commerce/product-enrichment/product-enrichment-state.js +7 -0
- package/dist/esm/features/commerce/product-enrichment/product-enrichment.js +11 -0
- package/dist/esm/test/mock-commerce-state.js +2 -0
- package/dist/esm/test/mock-product-enrichment.js +30 -0
- package/dist/esm/utils/version.js +1 -1
- package/dist/quantic/browser.cjs.stats.json +1 -1
- package/dist/quantic/case-assist/headless.js +1 -1
- package/dist/quantic/commerce/browser.cjs.stats.json +1 -1
- package/dist/quantic/commerce/headless.js +8 -8
- package/dist/quantic/commerce/headless.js.map +4 -4
- package/dist/quantic/headless.js +9 -9
- package/dist/quantic/headless.js.map +4 -4
- package/dist/quantic/insight/browser.cjs.stats.json +1 -1
- package/dist/quantic/insight/headless.js +8 -8
- package/dist/quantic/insight/headless.js.map +4 -4
- package/dist/quantic/recommendation/headless.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -824,7 +824,7 @@ var import_bueno5 = require("@coveo/bueno");
|
|
|
824
824
|
var import_toolkit7 = require("@reduxjs/toolkit");
|
|
825
825
|
|
|
826
826
|
// src/utils/version.ts
|
|
827
|
-
var VERSION = "3.
|
|
827
|
+
var VERSION = "3.37.0";
|
|
828
828
|
var COVEO_FRAMEWORK = ["@coveo/atomic", "@coveo/quantic"];
|
|
829
829
|
|
|
830
830
|
// src/features/configuration/configuration-actions.ts
|