@salesforce/lds-adapters-experience-marketing-integration 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.
- package/package.json +4 -5
- package/sfdc/index.js +4 -9
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/lds-adapters-experience-marketing-integration",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.262.0",
|
|
4
4
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
5
5
|
"description": "With this API, you can CRUD data in Marketing Cloud's storage, Data Extensions.",
|
|
6
6
|
"main": "dist/es/es2018/experience-marketing-integration.js",
|
|
@@ -24,16 +24,15 @@
|
|
|
24
24
|
"clean": "rm -rf dist sfdc src/generated karma/dist",
|
|
25
25
|
"start": "nx build:karma && karma start",
|
|
26
26
|
"test": "nx build:karma && karma start --single-run",
|
|
27
|
-
"test:compat": "nx build:karma && karma start --single-run --compat",
|
|
28
27
|
"release:corejar": "yarn build && ../core-build/scripts/core.js --adapter=lds-adapters-experience-marketing-integration",
|
|
29
28
|
"release:core": "../../scripts/release/core.js --adapter=lds-adapters-experience-marketing-integration"
|
|
30
29
|
},
|
|
31
30
|
"dependencies": {
|
|
32
|
-
"@salesforce/lds-bindings": "^1.
|
|
31
|
+
"@salesforce/lds-bindings": "^1.262.0"
|
|
33
32
|
},
|
|
34
33
|
"devDependencies": {
|
|
35
|
-
"@salesforce/lds-compiler-plugins": "^1.
|
|
36
|
-
"@salesforce/lds-karma": "^1.
|
|
34
|
+
"@salesforce/lds-compiler-plugins": "^1.262.0",
|
|
35
|
+
"@salesforce/lds-karma": "^1.262.0"
|
|
37
36
|
},
|
|
38
37
|
"nx": {
|
|
39
38
|
"targets": {
|
package/sfdc/index.js
CHANGED
|
@@ -913,7 +913,7 @@ function bindExportsTo(luvio) {
|
|
|
913
913
|
const getForm_ldsAdapter = createInstrumentedAdapter(createLDSAdapter(luvio, 'getForm', getFormAdapterFactory), getFormMetadata);
|
|
914
914
|
function unwrapSnapshotData(factory) {
|
|
915
915
|
const adapter = factory(luvio);
|
|
916
|
-
return (config) => adapter(config).then(snapshot => snapshot.data);
|
|
916
|
+
return (config) => adapter(config).then((snapshot) => snapshot.data);
|
|
917
917
|
}
|
|
918
918
|
return {
|
|
919
919
|
getForm: createWireAdapterConstructor(luvio, getForm_ldsAdapter, getFormMetadata),
|
|
@@ -926,14 +926,9 @@ function bindExportsTo(luvio) {
|
|
|
926
926
|
};
|
|
927
927
|
}
|
|
928
928
|
withDefaultLuvio((luvio) => {
|
|
929
|
-
({
|
|
930
|
-
|
|
931
|
-
getFormNotifyChange,
|
|
932
|
-
saveForm,
|
|
933
|
-
submitForm,
|
|
934
|
-
getForm_imperative,
|
|
935
|
-
} = bindExportsTo(luvio));
|
|
929
|
+
({ getForm, getFormNotifyChange, saveForm, submitForm, getForm_imperative } =
|
|
930
|
+
bindExportsTo(luvio));
|
|
936
931
|
});
|
|
937
932
|
|
|
938
933
|
export { getForm, getFormNotifyChange, getForm_imperative, saveForm, submitForm };
|
|
939
|
-
// version: 1.
|
|
934
|
+
// version: 1.262.0-d3c071fdc
|