@salesforce/lds-adapters-commerce-catalog 1.260.0 → 1.262.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.
|
@@ -2,4 +2,4 @@ declare let getProduct: any;
|
|
|
2
2
|
declare let getProductCategoryPath: any;
|
|
3
3
|
declare let getProduct_imperative: any;
|
|
4
4
|
declare let getProductCategoryPath_imperative: any;
|
|
5
|
-
export { getProduct, getProductCategoryPath, getProduct_imperative, getProductCategoryPath_imperative };
|
|
5
|
+
export { getProduct, getProductCategoryPath, getProduct_imperative, getProductCategoryPath_imperative, };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/lds-adapters-commerce-catalog",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.262.0",
|
|
4
4
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
5
5
|
"description": "Wire adapters Commerce Catalog",
|
|
6
6
|
"main": "dist/es/es2018/commerce-catalog.js",
|
|
@@ -24,16 +24,15 @@
|
|
|
24
24
|
"build:services": "rollup --bundleConfigAsCjs --config rollup.config.js",
|
|
25
25
|
"start": "nx build:karma && karma start",
|
|
26
26
|
"test": "nx build:karma && karma start --single-run",
|
|
27
|
-
"test:compat": "nx build:karma && karma start --single-run --compat",
|
|
28
27
|
"release:corejar": "yarn build && ../core-build/scripts/core.js --adapter=lds-adapters-commerce-catalog",
|
|
29
28
|
"release:core": "../../scripts/release/core.js --adapter=lds-adapters-commerce-catalog"
|
|
30
29
|
},
|
|
31
30
|
"dependencies": {
|
|
32
|
-
"@salesforce/lds-bindings": "^1.
|
|
31
|
+
"@salesforce/lds-bindings": "^1.262.0"
|
|
33
32
|
},
|
|
34
33
|
"devDependencies": {
|
|
35
|
-
"@salesforce/lds-compiler-plugins": "^1.
|
|
36
|
-
"@salesforce/lds-karma": "^1.
|
|
34
|
+
"@salesforce/lds-compiler-plugins": "^1.262.0",
|
|
35
|
+
"@salesforce/lds-karma": "^1.262.0"
|
|
37
36
|
},
|
|
38
37
|
"nx": {
|
|
39
38
|
"targets": {
|
package/sfdc/index.js
CHANGED
|
@@ -815,6 +815,7 @@ let getProductCategoryPath_imperative;
|
|
|
815
815
|
// Adapter Metadata
|
|
816
816
|
const getProductMetadata = { apiFamily: 'Commerce', name: 'getProduct' };
|
|
817
817
|
const getProductCategoryPathMetadata = { apiFamily: 'Commerce', name: 'getProductCategoryPath' };
|
|
818
|
+
// Notify Update Available
|
|
818
819
|
function bindExportsTo(luvio) {
|
|
819
820
|
// LDS Adapters
|
|
820
821
|
const getProduct_ldsAdapter = createInstrumentedAdapter(createLDSAdapter(luvio, 'getProduct', getProductAdapterFactory), getProductMetadata);
|
|
@@ -824,7 +825,8 @@ function bindExportsTo(luvio) {
|
|
|
824
825
|
getProductCategoryPath: createWireAdapterConstructor(luvio, getProductCategoryPath_ldsAdapter, getProductCategoryPathMetadata),
|
|
825
826
|
// Imperative GET Adapters
|
|
826
827
|
getProduct_imperative: createImperativeAdapter(luvio, getProduct_ldsAdapter, getProductMetadata),
|
|
827
|
-
getProductCategoryPath_imperative: createImperativeAdapter(luvio, getProductCategoryPath_ldsAdapter, getProductCategoryPathMetadata)
|
|
828
|
+
getProductCategoryPath_imperative: createImperativeAdapter(luvio, getProductCategoryPath_ldsAdapter, getProductCategoryPathMetadata),
|
|
829
|
+
// Notify Update Availables
|
|
828
830
|
};
|
|
829
831
|
}
|
|
830
832
|
withDefaultLuvio((luvio) => {
|
|
@@ -832,9 +834,9 @@ withDefaultLuvio((luvio) => {
|
|
|
832
834
|
getProduct,
|
|
833
835
|
getProductCategoryPath,
|
|
834
836
|
getProduct_imperative,
|
|
835
|
-
getProductCategoryPath_imperative
|
|
837
|
+
getProductCategoryPath_imperative,
|
|
836
838
|
} = bindExportsTo(luvio));
|
|
837
839
|
});
|
|
838
840
|
|
|
839
841
|
export { getProduct, getProductCategoryPath, getProductCategoryPath_imperative, getProduct_imperative };
|
|
840
|
-
// version: 1.
|
|
842
|
+
// version: 1.262.0-d3c071fdc
|