@salesforce/lds-adapters-industries-actionplan 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.
|
@@ -4,4 +4,4 @@ declare let getActionPlans: any;
|
|
|
4
4
|
declare let getActionPlanItems_imperative: any;
|
|
5
5
|
declare let getActionPlanStatusInfo_imperative: any;
|
|
6
6
|
declare let getActionPlans_imperative: any;
|
|
7
|
-
export { getActionPlanItems, getActionPlanStatusInfo, getActionPlans, getActionPlanItems_imperative, getActionPlanStatusInfo_imperative, getActionPlans_imperative };
|
|
7
|
+
export { getActionPlanItems, getActionPlanStatusInfo, getActionPlans, getActionPlanItems_imperative, getActionPlanStatusInfo_imperative, getActionPlans_imperative, };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/lds-adapters-industries-actionplan",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.262.0",
|
|
4
4
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
5
5
|
"description": "",
|
|
6
6
|
"main": "dist/es/es2018/industries-actionplan.js",
|
|
@@ -40,15 +40,14 @@
|
|
|
40
40
|
"release:corejar": "yarn build && packages/core-build/scripts/core.js --adapter=lds-adapters-industries-actionplan",
|
|
41
41
|
"start": "nx build:karma && karma start",
|
|
42
42
|
"test": "nx build:karma && karma start --single-run",
|
|
43
|
-
"test:compat": "nx build:karma && karma start --single-run --compat",
|
|
44
43
|
"test:unit": "jest"
|
|
45
44
|
},
|
|
46
45
|
"dependencies": {
|
|
47
|
-
"@salesforce/lds-bindings": "^1.
|
|
46
|
+
"@salesforce/lds-bindings": "^1.262.0"
|
|
48
47
|
},
|
|
49
48
|
"devDependencies": {
|
|
50
|
-
"@salesforce/lds-compiler-plugins": "^1.
|
|
51
|
-
"@salesforce/lds-karma": "^1.
|
|
49
|
+
"@salesforce/lds-compiler-plugins": "^1.262.0",
|
|
50
|
+
"@salesforce/lds-karma": "^1.262.0"
|
|
52
51
|
},
|
|
53
52
|
"nx": {
|
|
54
53
|
"targets": {
|
package/sfdc/index.js
CHANGED
|
@@ -985,9 +985,18 @@ let getActionPlanItems_imperative;
|
|
|
985
985
|
let getActionPlanStatusInfo_imperative;
|
|
986
986
|
let getActionPlans_imperative;
|
|
987
987
|
// Adapter Metadata
|
|
988
|
-
const getActionPlanItemsMetadata = {
|
|
989
|
-
|
|
988
|
+
const getActionPlanItemsMetadata = {
|
|
989
|
+
apiFamily: 'ActionPlan',
|
|
990
|
+
name: 'getActionPlanItems',
|
|
991
|
+
ttl: 1000,
|
|
992
|
+
};
|
|
993
|
+
const getActionPlanStatusInfoMetadata = {
|
|
994
|
+
apiFamily: 'ActionPlan',
|
|
995
|
+
name: 'getActionPlanStatusInfo',
|
|
996
|
+
ttl: 1000,
|
|
997
|
+
};
|
|
990
998
|
const getActionPlansMetadata = { apiFamily: 'ActionPlan', name: 'getActionPlans', ttl: 1000 };
|
|
999
|
+
// Notify Update Available
|
|
991
1000
|
function bindExportsTo(luvio) {
|
|
992
1001
|
// LDS Adapters
|
|
993
1002
|
const getActionPlanItems_ldsAdapter = createInstrumentedAdapter(createLDSAdapter(luvio, 'getActionPlanItems', getActionPlanItemsAdapterFactory), getActionPlanItemsMetadata);
|
|
@@ -1000,7 +1009,8 @@ function bindExportsTo(luvio) {
|
|
|
1000
1009
|
// Imperative GET Adapters
|
|
1001
1010
|
getActionPlanItems_imperative: createImperativeAdapter(luvio, getActionPlanItems_ldsAdapter, getActionPlanItemsMetadata),
|
|
1002
1011
|
getActionPlanStatusInfo_imperative: createImperativeAdapter(luvio, getActionPlanStatusInfo_ldsAdapter, getActionPlanStatusInfoMetadata),
|
|
1003
|
-
getActionPlans_imperative: createImperativeAdapter(luvio, getActionPlans_ldsAdapter, getActionPlansMetadata)
|
|
1012
|
+
getActionPlans_imperative: createImperativeAdapter(luvio, getActionPlans_ldsAdapter, getActionPlansMetadata),
|
|
1013
|
+
// Notify Update Availables
|
|
1004
1014
|
};
|
|
1005
1015
|
}
|
|
1006
1016
|
withDefaultLuvio((luvio) => {
|
|
@@ -1010,9 +1020,9 @@ withDefaultLuvio((luvio) => {
|
|
|
1010
1020
|
getActionPlans,
|
|
1011
1021
|
getActionPlanItems_imperative,
|
|
1012
1022
|
getActionPlanStatusInfo_imperative,
|
|
1013
|
-
getActionPlans_imperative
|
|
1023
|
+
getActionPlans_imperative,
|
|
1014
1024
|
} = bindExportsTo(luvio));
|
|
1015
1025
|
});
|
|
1016
1026
|
|
|
1017
1027
|
export { getActionPlanItems, getActionPlanItems_imperative, getActionPlanStatusInfo, getActionPlanStatusInfo_imperative, getActionPlans, getActionPlans_imperative };
|
|
1018
|
-
// version: 1.
|
|
1028
|
+
// version: 1.262.0-d3c071fdc
|