@salesforce/lds-adapters-commerce-configuration 1.260.0 → 1.261.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/package.json +3 -3
- package/sfdc/index.js +5 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/lds-adapters-commerce-configuration",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.261.0",
|
|
4
4
|
"description": "Allows reading and changing the values of commerce configuration attributes. These configurations can impact one or multiple areas of Salesforce Commerce.",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
6
6
|
"main": "dist/es/es2018/commerce-configuration.js",
|
|
@@ -40,10 +40,10 @@
|
|
|
40
40
|
"test:unit": "jest"
|
|
41
41
|
},
|
|
42
42
|
"dependencies": {
|
|
43
|
-
"@salesforce/lds-bindings": "^1.
|
|
43
|
+
"@salesforce/lds-bindings": "^1.261.0"
|
|
44
44
|
},
|
|
45
45
|
"devDependencies": {
|
|
46
|
-
"@salesforce/lds-compiler-plugins": "^1.
|
|
46
|
+
"@salesforce/lds-compiler-plugins": "^1.261.0"
|
|
47
47
|
},
|
|
48
48
|
"nx": {
|
|
49
49
|
"targets": {
|
package/sfdc/index.js
CHANGED
|
@@ -805,6 +805,7 @@ let putCommerceConfigurationAttribute;
|
|
|
805
805
|
// Imperative GET Adapters
|
|
806
806
|
let getCommerceConfigurationAttribute_imperative;
|
|
807
807
|
const getCommerceConfigurationAttributeMetadata = { apiFamily: 'commerceconfiguration', name: 'getCommerceConfigurationAttribute', ttl: 1000 };
|
|
808
|
+
// Notify Update Available
|
|
808
809
|
function bindExportsTo(luvio) {
|
|
809
810
|
// LDS Adapters
|
|
810
811
|
const getCommerceConfigurationAttribute_ldsAdapter = createInstrumentedAdapter(createLDSAdapter(luvio, 'getCommerceConfigurationAttribute', getCommerceConfigurationAttributeAdapterFactory), getCommerceConfigurationAttributeMetadata);
|
|
@@ -818,7 +819,8 @@ function bindExportsTo(luvio) {
|
|
|
818
819
|
getCommerceConfigurationAttributeNotifyChange: createLDSAdapter(luvio, 'getCommerceConfigurationAttributeNotifyChange', notifyChangeFactory),
|
|
819
820
|
putCommerceConfigurationAttribute: unwrapSnapshotData(putCommerceConfigurationAttributeAdapterFactory),
|
|
820
821
|
// Imperative GET Adapters
|
|
821
|
-
getCommerceConfigurationAttribute_imperative: createImperativeAdapter(luvio, getCommerceConfigurationAttribute_ldsAdapter, getCommerceConfigurationAttributeMetadata)
|
|
822
|
+
getCommerceConfigurationAttribute_imperative: createImperativeAdapter(luvio, getCommerceConfigurationAttribute_ldsAdapter, getCommerceConfigurationAttributeMetadata),
|
|
823
|
+
// Notify Update Availables
|
|
822
824
|
};
|
|
823
825
|
}
|
|
824
826
|
withDefaultLuvio((luvio) => {
|
|
@@ -827,9 +829,9 @@ withDefaultLuvio((luvio) => {
|
|
|
827
829
|
getCommerceConfigurationAttribute,
|
|
828
830
|
getCommerceConfigurationAttributeNotifyChange,
|
|
829
831
|
putCommerceConfigurationAttribute,
|
|
830
|
-
getCommerceConfigurationAttribute_imperative
|
|
832
|
+
getCommerceConfigurationAttribute_imperative,
|
|
831
833
|
} = bindExportsTo(luvio));
|
|
832
834
|
});
|
|
833
835
|
|
|
834
836
|
export { deleteCommerceConfigurationAttribute, getCommerceConfigurationAttribute, getCommerceConfigurationAttributeNotifyChange, getCommerceConfigurationAttribute_imperative, putCommerceConfigurationAttribute };
|
|
835
|
-
// version: 1.
|
|
837
|
+
// version: 1.261.0-10ee630e7
|