@salesforce/lds-adapters-sales-enablementmeasureconnectfamily 1.259.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 +4 -4
- package/sfdc/index.js +5 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/lds-adapters-sales-enablementmeasureconnectfamily",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.261.0",
|
|
4
4
|
"description": "Enablement Measure related Connect APIs",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
6
6
|
"main": "dist/es/es2018/sales-enablementmeasureconnectfamily.js",
|
|
@@ -40,11 +40,11 @@
|
|
|
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.
|
|
47
|
-
"@salesforce/lds-karma": "^1.
|
|
46
|
+
"@salesforce/lds-compiler-plugins": "^1.261.0",
|
|
47
|
+
"@salesforce/lds-karma": "^1.261.0"
|
|
48
48
|
},
|
|
49
49
|
"nx": {
|
|
50
50
|
"targets": {
|
package/sfdc/index.js
CHANGED
|
@@ -886,6 +886,7 @@ let triggerOnDemandComputation;
|
|
|
886
886
|
let getContributingRecordsInfoForMilestone_imperative;
|
|
887
887
|
// Adapter Metadata
|
|
888
888
|
const getContributingRecordsInfoForMilestoneMetadata = { apiFamily: 'EnablementMeasureConnectFamily', name: 'getContributingRecordsInfoForMilestone', ttl: 5000 };
|
|
889
|
+
// Notify Update Available
|
|
889
890
|
function bindExportsTo(luvio) {
|
|
890
891
|
// LDS Adapters
|
|
891
892
|
const getContributingRecordsInfoForMilestone_ldsAdapter = createInstrumentedAdapter(createLDSAdapter(luvio, 'getContributingRecordsInfoForMilestone', getContributingRecordsInfoForMilestoneAdapterFactory), getContributingRecordsInfoForMilestoneMetadata);
|
|
@@ -897,16 +898,17 @@ function bindExportsTo(luvio) {
|
|
|
897
898
|
getContributingRecordsInfoForMilestone: createWireAdapterConstructor(luvio, getContributingRecordsInfoForMilestone_ldsAdapter, getContributingRecordsInfoForMilestoneMetadata),
|
|
898
899
|
triggerOnDemandComputation: unwrapSnapshotData(triggerOnDemandComputationAdapterFactory),
|
|
899
900
|
// Imperative GET Adapters
|
|
900
|
-
getContributingRecordsInfoForMilestone_imperative: createImperativeAdapter(luvio, getContributingRecordsInfoForMilestone_ldsAdapter, getContributingRecordsInfoForMilestoneMetadata)
|
|
901
|
+
getContributingRecordsInfoForMilestone_imperative: createImperativeAdapter(luvio, getContributingRecordsInfoForMilestone_ldsAdapter, getContributingRecordsInfoForMilestoneMetadata),
|
|
902
|
+
// Notify Update Availables
|
|
901
903
|
};
|
|
902
904
|
}
|
|
903
905
|
withDefaultLuvio((luvio) => {
|
|
904
906
|
({
|
|
905
907
|
getContributingRecordsInfoForMilestone,
|
|
906
908
|
triggerOnDemandComputation,
|
|
907
|
-
getContributingRecordsInfoForMilestone_imperative
|
|
909
|
+
getContributingRecordsInfoForMilestone_imperative,
|
|
908
910
|
} = bindExportsTo(luvio));
|
|
909
911
|
});
|
|
910
912
|
|
|
911
913
|
export { getContributingRecordsInfoForMilestone, getContributingRecordsInfoForMilestone_imperative, triggerOnDemandComputation };
|
|
912
|
-
// version: 1.
|
|
914
|
+
// version: 1.261.0-10ee630e7
|