@salesforce/lds-adapters-sales-enablementmeasureconnectfamily 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.
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
declare let getContributingRecordsInfoForMilestone: any;
|
|
2
2
|
declare let triggerOnDemandComputation: any;
|
|
3
3
|
declare let getContributingRecordsInfoForMilestone_imperative: any;
|
|
4
|
-
export { getContributingRecordsInfoForMilestone, triggerOnDemandComputation, getContributingRecordsInfoForMilestone_imperative };
|
|
4
|
+
export { getContributingRecordsInfoForMilestone, triggerOnDemandComputation, getContributingRecordsInfoForMilestone_imperative, };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/lds-adapters-sales-enablementmeasureconnectfamily",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.262.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.262.0"
|
|
44
44
|
},
|
|
45
45
|
"devDependencies": {
|
|
46
|
-
"@salesforce/lds-compiler-plugins": "^1.
|
|
47
|
-
"@salesforce/lds-karma": "^1.
|
|
46
|
+
"@salesforce/lds-compiler-plugins": "^1.262.0",
|
|
47
|
+
"@salesforce/lds-karma": "^1.262.0"
|
|
48
48
|
},
|
|
49
49
|
"nx": {
|
|
50
50
|
"targets": {
|
package/sfdc/index.js
CHANGED
|
@@ -885,28 +885,34 @@ let triggerOnDemandComputation;
|
|
|
885
885
|
// Imperative GET Adapters
|
|
886
886
|
let getContributingRecordsInfoForMilestone_imperative;
|
|
887
887
|
// Adapter Metadata
|
|
888
|
-
const getContributingRecordsInfoForMilestoneMetadata = {
|
|
888
|
+
const getContributingRecordsInfoForMilestoneMetadata = {
|
|
889
|
+
apiFamily: 'EnablementMeasureConnectFamily',
|
|
890
|
+
name: 'getContributingRecordsInfoForMilestone',
|
|
891
|
+
ttl: 5000,
|
|
892
|
+
};
|
|
893
|
+
// Notify Update Available
|
|
889
894
|
function bindExportsTo(luvio) {
|
|
890
895
|
// LDS Adapters
|
|
891
896
|
const getContributingRecordsInfoForMilestone_ldsAdapter = createInstrumentedAdapter(createLDSAdapter(luvio, 'getContributingRecordsInfoForMilestone', getContributingRecordsInfoForMilestoneAdapterFactory), getContributingRecordsInfoForMilestoneMetadata);
|
|
892
897
|
function unwrapSnapshotData(factory) {
|
|
893
898
|
const adapter = factory(luvio);
|
|
894
|
-
return (config) => adapter(config).then(snapshot => snapshot.data);
|
|
899
|
+
return (config) => adapter(config).then((snapshot) => snapshot.data);
|
|
895
900
|
}
|
|
896
901
|
return {
|
|
897
902
|
getContributingRecordsInfoForMilestone: createWireAdapterConstructor(luvio, getContributingRecordsInfoForMilestone_ldsAdapter, getContributingRecordsInfoForMilestoneMetadata),
|
|
898
903
|
triggerOnDemandComputation: unwrapSnapshotData(triggerOnDemandComputationAdapterFactory),
|
|
899
904
|
// Imperative GET Adapters
|
|
900
|
-
getContributingRecordsInfoForMilestone_imperative: createImperativeAdapter(luvio, getContributingRecordsInfoForMilestone_ldsAdapter, getContributingRecordsInfoForMilestoneMetadata)
|
|
905
|
+
getContributingRecordsInfoForMilestone_imperative: createImperativeAdapter(luvio, getContributingRecordsInfoForMilestone_ldsAdapter, getContributingRecordsInfoForMilestoneMetadata),
|
|
906
|
+
// Notify Update Availables
|
|
901
907
|
};
|
|
902
908
|
}
|
|
903
909
|
withDefaultLuvio((luvio) => {
|
|
904
910
|
({
|
|
905
911
|
getContributingRecordsInfoForMilestone,
|
|
906
912
|
triggerOnDemandComputation,
|
|
907
|
-
getContributingRecordsInfoForMilestone_imperative
|
|
913
|
+
getContributingRecordsInfoForMilestone_imperative,
|
|
908
914
|
} = bindExportsTo(luvio));
|
|
909
915
|
});
|
|
910
916
|
|
|
911
917
|
export { getContributingRecordsInfoForMilestone, getContributingRecordsInfoForMilestone_imperative, triggerOnDemandComputation };
|
|
912
|
-
// version: 1.
|
|
918
|
+
// version: 1.262.0-d3c071fdc
|