@salesforce/lds-adapters-industries-actionplan 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-industries-actionplan",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.261.0",
|
|
4
4
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
5
5
|
"description": "",
|
|
6
6
|
"main": "dist/es/es2018/industries-actionplan.js",
|
|
@@ -44,11 +44,11 @@
|
|
|
44
44
|
"test:unit": "jest"
|
|
45
45
|
},
|
|
46
46
|
"dependencies": {
|
|
47
|
-
"@salesforce/lds-bindings": "^1.
|
|
47
|
+
"@salesforce/lds-bindings": "^1.261.0"
|
|
48
48
|
},
|
|
49
49
|
"devDependencies": {
|
|
50
|
-
"@salesforce/lds-compiler-plugins": "^1.
|
|
51
|
-
"@salesforce/lds-karma": "^1.
|
|
50
|
+
"@salesforce/lds-compiler-plugins": "^1.261.0",
|
|
51
|
+
"@salesforce/lds-karma": "^1.261.0"
|
|
52
52
|
},
|
|
53
53
|
"nx": {
|
|
54
54
|
"targets": {
|
package/sfdc/index.js
CHANGED
|
@@ -988,6 +988,7 @@ let getActionPlans_imperative;
|
|
|
988
988
|
const getActionPlanItemsMetadata = { apiFamily: 'ActionPlan', name: 'getActionPlanItems', ttl: 1000 };
|
|
989
989
|
const getActionPlanStatusInfoMetadata = { apiFamily: 'ActionPlan', name: 'getActionPlanStatusInfo', ttl: 1000 };
|
|
990
990
|
const getActionPlansMetadata = { apiFamily: 'ActionPlan', name: 'getActionPlans', ttl: 1000 };
|
|
991
|
+
// Notify Update Available
|
|
991
992
|
function bindExportsTo(luvio) {
|
|
992
993
|
// LDS Adapters
|
|
993
994
|
const getActionPlanItems_ldsAdapter = createInstrumentedAdapter(createLDSAdapter(luvio, 'getActionPlanItems', getActionPlanItemsAdapterFactory), getActionPlanItemsMetadata);
|
|
@@ -1000,7 +1001,8 @@ function bindExportsTo(luvio) {
|
|
|
1000
1001
|
// Imperative GET Adapters
|
|
1001
1002
|
getActionPlanItems_imperative: createImperativeAdapter(luvio, getActionPlanItems_ldsAdapter, getActionPlanItemsMetadata),
|
|
1002
1003
|
getActionPlanStatusInfo_imperative: createImperativeAdapter(luvio, getActionPlanStatusInfo_ldsAdapter, getActionPlanStatusInfoMetadata),
|
|
1003
|
-
getActionPlans_imperative: createImperativeAdapter(luvio, getActionPlans_ldsAdapter, getActionPlansMetadata)
|
|
1004
|
+
getActionPlans_imperative: createImperativeAdapter(luvio, getActionPlans_ldsAdapter, getActionPlansMetadata),
|
|
1005
|
+
// Notify Update Availables
|
|
1004
1006
|
};
|
|
1005
1007
|
}
|
|
1006
1008
|
withDefaultLuvio((luvio) => {
|
|
@@ -1010,9 +1012,9 @@ withDefaultLuvio((luvio) => {
|
|
|
1010
1012
|
getActionPlans,
|
|
1011
1013
|
getActionPlanItems_imperative,
|
|
1012
1014
|
getActionPlanStatusInfo_imperative,
|
|
1013
|
-
getActionPlans_imperative
|
|
1015
|
+
getActionPlans_imperative,
|
|
1014
1016
|
} = bindExportsTo(luvio));
|
|
1015
1017
|
});
|
|
1016
1018
|
|
|
1017
1019
|
export { getActionPlanItems, getActionPlanItems_imperative, getActionPlanStatusInfo, getActionPlanStatusInfo_imperative, getActionPlans, getActionPlans_imperative };
|
|
1018
|
-
// version: 1.
|
|
1020
|
+
// version: 1.261.0-10ee630e7
|