@salesforce/lds-adapters-sales-pathassistant 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.
|
@@ -3,4 +3,4 @@ declare let getPathAssistantDaysInStage: any;
|
|
|
3
3
|
declare let updateCollapsibleDrawerUserPref: any;
|
|
4
4
|
declare let getPathAssistant_imperative: any;
|
|
5
5
|
declare let getPathAssistantDaysInStage_imperative: any;
|
|
6
|
-
export { getPathAssistant, getPathAssistantDaysInStage, updateCollapsibleDrawerUserPref, getPathAssistant_imperative, getPathAssistantDaysInStage_imperative };
|
|
6
|
+
export { getPathAssistant, getPathAssistantDaysInStage, updateCollapsibleDrawerUserPref, getPathAssistant_imperative, getPathAssistantDaysInStage_imperative, };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/lds-adapters-sales-pathassistant",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.262.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.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
|
@@ -704,15 +704,24 @@ let updateCollapsibleDrawerUserPref;
|
|
|
704
704
|
let getPathAssistant_imperative;
|
|
705
705
|
let getPathAssistantDaysInStage_imperative;
|
|
706
706
|
// Adapter Metadata
|
|
707
|
-
const getPathAssistantMetadata = {
|
|
708
|
-
|
|
707
|
+
const getPathAssistantMetadata = {
|
|
708
|
+
apiFamily: 'pathassistant',
|
|
709
|
+
name: 'getPathAssistant',
|
|
710
|
+
ttl: 30000,
|
|
711
|
+
};
|
|
712
|
+
const getPathAssistantDaysInStageMetadata = {
|
|
713
|
+
apiFamily: 'pathassistant',
|
|
714
|
+
name: 'getPathAssistantDaysInStage',
|
|
715
|
+
ttl: 30000,
|
|
716
|
+
};
|
|
717
|
+
// Notify Update Available
|
|
709
718
|
function bindExportsTo(luvio) {
|
|
710
719
|
// LDS Adapters
|
|
711
720
|
const getPathAssistant_ldsAdapter = createInstrumentedAdapter(createLDSAdapter(luvio, 'getPathAssistant', getPathAssistantAdapterFactory), getPathAssistantMetadata);
|
|
712
721
|
const getPathAssistantDaysInStage_ldsAdapter = createInstrumentedAdapter(createLDSAdapter(luvio, 'getPathAssistantDaysInStage', getPathAssistantDaysInStageAdapterFactory), getPathAssistantDaysInStageMetadata);
|
|
713
722
|
function unwrapSnapshotData(factory) {
|
|
714
723
|
const adapter = factory(luvio);
|
|
715
|
-
return (config) => adapter(config).then(snapshot => snapshot.data);
|
|
724
|
+
return (config) => adapter(config).then((snapshot) => snapshot.data);
|
|
716
725
|
}
|
|
717
726
|
return {
|
|
718
727
|
getPathAssistant: createWireAdapterConstructor(luvio, getPathAssistant_ldsAdapter, getPathAssistantMetadata),
|
|
@@ -720,7 +729,8 @@ function bindExportsTo(luvio) {
|
|
|
720
729
|
updateCollapsibleDrawerUserPref: unwrapSnapshotData(updateCollapsibleDrawerUserPrefAdapterFactory),
|
|
721
730
|
// Imperative GET Adapters
|
|
722
731
|
getPathAssistant_imperative: createImperativeAdapter(luvio, getPathAssistant_ldsAdapter, getPathAssistantMetadata),
|
|
723
|
-
getPathAssistantDaysInStage_imperative: createImperativeAdapter(luvio, getPathAssistantDaysInStage_ldsAdapter, getPathAssistantDaysInStageMetadata)
|
|
732
|
+
getPathAssistantDaysInStage_imperative: createImperativeAdapter(luvio, getPathAssistantDaysInStage_ldsAdapter, getPathAssistantDaysInStageMetadata),
|
|
733
|
+
// Notify Update Availables
|
|
724
734
|
};
|
|
725
735
|
}
|
|
726
736
|
withDefaultLuvio((luvio) => {
|
|
@@ -729,9 +739,9 @@ withDefaultLuvio((luvio) => {
|
|
|
729
739
|
getPathAssistantDaysInStage,
|
|
730
740
|
updateCollapsibleDrawerUserPref,
|
|
731
741
|
getPathAssistant_imperative,
|
|
732
|
-
getPathAssistantDaysInStage_imperative
|
|
742
|
+
getPathAssistantDaysInStage_imperative,
|
|
733
743
|
} = bindExportsTo(luvio));
|
|
734
744
|
});
|
|
735
745
|
|
|
736
746
|
export { getPathAssistant, getPathAssistantDaysInStage, getPathAssistantDaysInStage_imperative, getPathAssistant_imperative, updateCollapsibleDrawerUserPref };
|
|
737
|
-
// version: 1.
|
|
747
|
+
// version: 1.262.0-d3c071fdc
|