@salesforce/lds-adapters-platform-data-provider 1.261.0 → 1.262.1
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 +2 -5
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/lds-adapters-platform-data-provider",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.262.1",
|
|
4
4
|
"description": "Data Provider connect api resource family",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
6
6
|
"main": "dist/es/es2018/platform-data-provider.js",
|
|
@@ -37,15 +37,14 @@
|
|
|
37
37
|
"release:corejar": "yarn build && ../core-build/scripts/core.js --adapter=lds-adapters-platform-data-provider",
|
|
38
38
|
"start": "nx build:karma && karma start",
|
|
39
39
|
"test": "nx build:karma && karma start --single-run",
|
|
40
|
-
"test:compat": "nx build:karma && karma start --single-run --compat",
|
|
41
40
|
"test:unit": "jest"
|
|
42
41
|
},
|
|
43
42
|
"dependencies": {
|
|
44
|
-
"@salesforce/lds-bindings": "^1.
|
|
43
|
+
"@salesforce/lds-bindings": "^1.262.1"
|
|
45
44
|
},
|
|
46
45
|
"devDependencies": {
|
|
47
|
-
"@salesforce/lds-compiler-plugins": "^1.
|
|
48
|
-
"@salesforce/lds-karma": "^1.
|
|
46
|
+
"@salesforce/lds-compiler-plugins": "^1.262.1",
|
|
47
|
+
"@salesforce/lds-karma": "^1.262.1"
|
|
49
48
|
},
|
|
50
49
|
"nx": {
|
|
51
50
|
"targets": {
|
package/sfdc/index.js
CHANGED
|
@@ -341,11 +341,8 @@ function bindExportsTo(luvio) {
|
|
|
341
341
|
};
|
|
342
342
|
}
|
|
343
343
|
withDefaultLuvio((luvio) => {
|
|
344
|
-
({
|
|
345
|
-
getSchema,
|
|
346
|
-
getSchema_imperative,
|
|
347
|
-
} = bindExportsTo(luvio));
|
|
344
|
+
({ getSchema, getSchema_imperative } = bindExportsTo(luvio));
|
|
348
345
|
});
|
|
349
346
|
|
|
350
347
|
export { getSchema, getSchema_imperative };
|
|
351
|
-
// version: 1.
|
|
348
|
+
// version: 1.262.1-9a1924e93
|