@salesforce/lds-adapters-sales-enablementmeasureconnectfamily 1.261.0 → 1.262.1
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.1",
|
|
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.1"
|
|
44
44
|
},
|
|
45
45
|
"devDependencies": {
|
|
46
|
-
"@salesforce/lds-compiler-plugins": "^1.
|
|
47
|
-
"@salesforce/lds-karma": "^1.
|
|
46
|
+
"@salesforce/lds-compiler-plugins": "^1.262.1",
|
|
47
|
+
"@salesforce/lds-karma": "^1.262.1"
|
|
48
48
|
},
|
|
49
49
|
"nx": {
|
|
50
50
|
"targets": {
|
package/sfdc/index.js
CHANGED
|
@@ -885,14 +885,18 @@ 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
|
+
};
|
|
889
893
|
// Notify Update Available
|
|
890
894
|
function bindExportsTo(luvio) {
|
|
891
895
|
// LDS Adapters
|
|
892
896
|
const getContributingRecordsInfoForMilestone_ldsAdapter = createInstrumentedAdapter(createLDSAdapter(luvio, 'getContributingRecordsInfoForMilestone', getContributingRecordsInfoForMilestoneAdapterFactory), getContributingRecordsInfoForMilestoneMetadata);
|
|
893
897
|
function unwrapSnapshotData(factory) {
|
|
894
898
|
const adapter = factory(luvio);
|
|
895
|
-
return (config) => adapter(config).then(snapshot => snapshot.data);
|
|
899
|
+
return (config) => adapter(config).then((snapshot) => snapshot.data);
|
|
896
900
|
}
|
|
897
901
|
return {
|
|
898
902
|
getContributingRecordsInfoForMilestone: createWireAdapterConstructor(luvio, getContributingRecordsInfoForMilestone_ldsAdapter, getContributingRecordsInfoForMilestoneMetadata),
|
|
@@ -911,4 +915,4 @@ withDefaultLuvio((luvio) => {
|
|
|
911
915
|
});
|
|
912
916
|
|
|
913
917
|
export { getContributingRecordsInfoForMilestone, getContributingRecordsInfoForMilestone_imperative, triggerOnDemandComputation };
|
|
914
|
-
// version: 1.
|
|
918
|
+
// version: 1.262.1-9a1924e93
|