@salesforce/lds-adapters-marketing-cdp 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-marketing-cdp",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.261.0",
|
|
4
4
|
"description": "LDS adapters for CDP",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
6
6
|
"main": "dist/es/es2018/marketing-cdp.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
|
@@ -1410,6 +1410,7 @@ let getDataGraph_imperative;
|
|
|
1410
1410
|
let getDataGraphDependency_imperative;
|
|
1411
1411
|
const getDataGraphMetadata = { apiFamily: 'CDP', name: 'getDataGraph' };
|
|
1412
1412
|
const getDataGraphDependencyMetadata = { apiFamily: 'CDP', name: 'getDataGraphDependency' };
|
|
1413
|
+
// Notify Update Available
|
|
1413
1414
|
function bindExportsTo(luvio) {
|
|
1414
1415
|
// LDS Adapters
|
|
1415
1416
|
const getDataGraph_ldsAdapter = createInstrumentedAdapter(createLDSAdapter(luvio, 'getDataGraph', getDataGraphAdapterFactory), getDataGraphMetadata);
|
|
@@ -1428,7 +1429,8 @@ function bindExportsTo(luvio) {
|
|
|
1428
1429
|
retryDataGraph: unwrapSnapshotData(retryDataGraphAdapterFactory),
|
|
1429
1430
|
// Imperative GET Adapters
|
|
1430
1431
|
getDataGraph_imperative: createImperativeAdapter(luvio, getDataGraph_ldsAdapter, getDataGraphMetadata),
|
|
1431
|
-
getDataGraphDependency_imperative: createImperativeAdapter(luvio, getDataGraphDependency_ldsAdapter, getDataGraphDependencyMetadata)
|
|
1432
|
+
getDataGraphDependency_imperative: createImperativeAdapter(luvio, getDataGraphDependency_ldsAdapter, getDataGraphDependencyMetadata),
|
|
1433
|
+
// Notify Update Availables
|
|
1432
1434
|
};
|
|
1433
1435
|
}
|
|
1434
1436
|
withDefaultLuvio((luvio) => {
|
|
@@ -1441,9 +1443,9 @@ withDefaultLuvio((luvio) => {
|
|
|
1441
1443
|
getDataGraphNotifyChange,
|
|
1442
1444
|
retryDataGraph,
|
|
1443
1445
|
getDataGraph_imperative,
|
|
1444
|
-
getDataGraphDependency_imperative
|
|
1446
|
+
getDataGraphDependency_imperative,
|
|
1445
1447
|
} = bindExportsTo(luvio));
|
|
1446
1448
|
});
|
|
1447
1449
|
|
|
1448
1450
|
export { createDataGraph, deleteDataGraph, getDataGraph, getDataGraphDependency, getDataGraphDependencyNotifyChange, getDataGraphDependency_imperative, getDataGraphNotifyChange, getDataGraph_imperative, retryDataGraph };
|
|
1449
|
-
// version: 1.
|
|
1451
|
+
// version: 1.261.0-10ee630e7
|