@salesforce/lds-adapters-sales-pathassistant 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-pathassistant",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.261.0",
|
|
4
4
|
"description": "Connect APIs for Path Assistant",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
6
6
|
"main": "dist/es/es2018/sales-pathassistant.js",
|
|
@@ -40,11 +40,11 @@
|
|
|
40
40
|
"test:unit": "jest --config=./jest.config.js"
|
|
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
|
@@ -706,6 +706,7 @@ let getPathAssistantDaysInStage_imperative;
|
|
|
706
706
|
// Adapter Metadata
|
|
707
707
|
const getPathAssistantMetadata = { apiFamily: 'pathassistant', name: 'getPathAssistant', ttl: 30000 };
|
|
708
708
|
const getPathAssistantDaysInStageMetadata = { apiFamily: 'pathassistant', name: 'getPathAssistantDaysInStage', ttl: 30000 };
|
|
709
|
+
// Notify Update Available
|
|
709
710
|
function bindExportsTo(luvio) {
|
|
710
711
|
// LDS Adapters
|
|
711
712
|
const getPathAssistant_ldsAdapter = createInstrumentedAdapter(createLDSAdapter(luvio, 'getPathAssistant', getPathAssistantAdapterFactory), getPathAssistantMetadata);
|
|
@@ -720,7 +721,8 @@ function bindExportsTo(luvio) {
|
|
|
720
721
|
updateCollapsibleDrawerUserPref: unwrapSnapshotData(updateCollapsibleDrawerUserPrefAdapterFactory),
|
|
721
722
|
// Imperative GET Adapters
|
|
722
723
|
getPathAssistant_imperative: createImperativeAdapter(luvio, getPathAssistant_ldsAdapter, getPathAssistantMetadata),
|
|
723
|
-
getPathAssistantDaysInStage_imperative: createImperativeAdapter(luvio, getPathAssistantDaysInStage_ldsAdapter, getPathAssistantDaysInStageMetadata)
|
|
724
|
+
getPathAssistantDaysInStage_imperative: createImperativeAdapter(luvio, getPathAssistantDaysInStage_ldsAdapter, getPathAssistantDaysInStageMetadata),
|
|
725
|
+
// Notify Update Availables
|
|
724
726
|
};
|
|
725
727
|
}
|
|
726
728
|
withDefaultLuvio((luvio) => {
|
|
@@ -729,9 +731,9 @@ withDefaultLuvio((luvio) => {
|
|
|
729
731
|
getPathAssistantDaysInStage,
|
|
730
732
|
updateCollapsibleDrawerUserPref,
|
|
731
733
|
getPathAssistant_imperative,
|
|
732
|
-
getPathAssistantDaysInStage_imperative
|
|
734
|
+
getPathAssistantDaysInStage_imperative,
|
|
733
735
|
} = bindExportsTo(luvio));
|
|
734
736
|
});
|
|
735
737
|
|
|
736
738
|
export { getPathAssistant, getPathAssistantDaysInStage, getPathAssistantDaysInStage_imperative, getPathAssistant_imperative, updateCollapsibleDrawerUserPref };
|
|
737
|
-
// version: 1.
|
|
739
|
+
// version: 1.261.0-10ee630e7
|