@salesforce/lds-adapters-sales-pathassistant 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.
|
@@ -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.1",
|
|
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.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
|
@@ -704,8 +704,16 @@ 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
|
+
};
|
|
709
717
|
// Notify Update Available
|
|
710
718
|
function bindExportsTo(luvio) {
|
|
711
719
|
// LDS Adapters
|
|
@@ -713,7 +721,7 @@ function bindExportsTo(luvio) {
|
|
|
713
721
|
const getPathAssistantDaysInStage_ldsAdapter = createInstrumentedAdapter(createLDSAdapter(luvio, 'getPathAssistantDaysInStage', getPathAssistantDaysInStageAdapterFactory), getPathAssistantDaysInStageMetadata);
|
|
714
722
|
function unwrapSnapshotData(factory) {
|
|
715
723
|
const adapter = factory(luvio);
|
|
716
|
-
return (config) => adapter(config).then(snapshot => snapshot.data);
|
|
724
|
+
return (config) => adapter(config).then((snapshot) => snapshot.data);
|
|
717
725
|
}
|
|
718
726
|
return {
|
|
719
727
|
getPathAssistant: createWireAdapterConstructor(luvio, getPathAssistant_ldsAdapter, getPathAssistantMetadata),
|
|
@@ -736,4 +744,4 @@ withDefaultLuvio((luvio) => {
|
|
|
736
744
|
});
|
|
737
745
|
|
|
738
746
|
export { getPathAssistant, getPathAssistantDaysInStage, getPathAssistantDaysInStage_imperative, getPathAssistant_imperative, updateCollapsibleDrawerUserPref };
|
|
739
|
-
// version: 1.
|
|
747
|
+
// version: 1.262.1-9a1924e93
|