@salesforce/lds-adapters-marketing-cdp 1.261.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.
|
@@ -7,4 +7,4 @@ declare let getDataGraphNotifyChange: any;
|
|
|
7
7
|
declare let retryDataGraph: any;
|
|
8
8
|
declare let getDataGraph_imperative: any;
|
|
9
9
|
declare let getDataGraphDependency_imperative: any;
|
|
10
|
-
export { createDataGraph, deleteDataGraph, getDataGraph, getDataGraphDependency, getDataGraphDependencyNotifyChange, getDataGraphNotifyChange, retryDataGraph, getDataGraph_imperative, getDataGraphDependency_imperative };
|
|
10
|
+
export { createDataGraph, deleteDataGraph, getDataGraph, getDataGraphDependency, getDataGraphDependencyNotifyChange, getDataGraphNotifyChange, retryDataGraph, getDataGraph_imperative, getDataGraphDependency_imperative, };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/lds-adapters-marketing-cdp",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.262.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",
|
|
@@ -40,15 +40,14 @@
|
|
|
40
40
|
"release:corejar": "yarn build && ../core-build/scripts/core.js --adapter=lds-adapters-marketing-cdp",
|
|
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
|
@@ -1417,7 +1417,7 @@ function bindExportsTo(luvio) {
|
|
|
1417
1417
|
const getDataGraphDependency_ldsAdapter = createInstrumentedAdapter(createLDSAdapter(luvio, 'getDataGraphDependency', getDataGraphDependencyAdapterFactory), getDataGraphDependencyMetadata);
|
|
1418
1418
|
function unwrapSnapshotData(factory) {
|
|
1419
1419
|
const adapter = factory(luvio);
|
|
1420
|
-
return (config) => adapter(config).then(snapshot => snapshot.data);
|
|
1420
|
+
return (config) => adapter(config).then((snapshot) => snapshot.data);
|
|
1421
1421
|
}
|
|
1422
1422
|
return {
|
|
1423
1423
|
createDataGraph: unwrapSnapshotData(createDataGraphAdapterFactory),
|
|
@@ -1448,4 +1448,4 @@ withDefaultLuvio((luvio) => {
|
|
|
1448
1448
|
});
|
|
1449
1449
|
|
|
1450
1450
|
export { createDataGraph, deleteDataGraph, getDataGraph, getDataGraphDependency, getDataGraphDependencyNotifyChange, getDataGraphDependency_imperative, getDataGraphNotifyChange, getDataGraph_imperative, retryDataGraph };
|
|
1451
|
-
// version: 1.
|
|
1451
|
+
// version: 1.262.0-d3c071fdc
|