@salesforce/lds-adapters-platform-data-provider 1.207.0 → 1.208.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.
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* For full license text, see the LICENSE.txt file
|
|
5
5
|
*/
|
|
6
6
|
|
|
7
|
-
import { serializeStructuredKey, deepFreeze, StoreKeyMap } from '@luvio/engine';
|
|
7
|
+
import { serializeStructuredKey, deepFreeze, typeCheckScalars, StoreKeyMap } from '@luvio/engine';
|
|
8
8
|
|
|
9
9
|
const { hasOwnProperty: ObjectPrototypeHasOwnProperty } = Object.prototype;
|
|
10
10
|
const { keys: ObjectKeys$1, create: ObjectCreate$1 } = Object;
|
|
@@ -217,10 +217,9 @@ function keyBuilder(luvio, config) {
|
|
|
217
217
|
}
|
|
218
218
|
function typeCheckConfig(untrustedConfig) {
|
|
219
219
|
const config = {};
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
}
|
|
220
|
+
typeCheckScalars(untrustedConfig, config, {
|
|
221
|
+
dataProviderFullyQualifiedName: 0 /* String */,
|
|
222
|
+
});
|
|
224
223
|
const untrustedConfig_schema = untrustedConfig.schema;
|
|
225
224
|
config.schema = untrustedConfig_schema;
|
|
226
225
|
return config;
|
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.208.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",
|
package/sfdc/index.js
CHANGED
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
/* proxy-compat-disable */
|
|
15
15
|
import { createInstrumentedAdapter, createLDSAdapter, createWireAdapterConstructor, createImperativeAdapter } from 'force/ldsBindings';
|
|
16
16
|
import { withDefaultLuvio } from 'force/ldsEngine';
|
|
17
|
-
import { serializeStructuredKey, deepFreeze, StoreKeyMap } from 'force/luvioEngine';
|
|
17
|
+
import { serializeStructuredKey, deepFreeze, typeCheckScalars, StoreKeyMap } from 'force/luvioEngine';
|
|
18
18
|
|
|
19
19
|
const { hasOwnProperty: ObjectPrototypeHasOwnProperty } = Object.prototype;
|
|
20
20
|
const { keys: ObjectKeys$1, create: ObjectCreate$1 } = Object;
|
|
@@ -227,10 +227,9 @@ function keyBuilder(luvio, config) {
|
|
|
227
227
|
}
|
|
228
228
|
function typeCheckConfig(untrustedConfig) {
|
|
229
229
|
const config = {};
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
}
|
|
230
|
+
typeCheckScalars(untrustedConfig, config, {
|
|
231
|
+
dataProviderFullyQualifiedName: 0 /* String */,
|
|
232
|
+
});
|
|
234
233
|
const untrustedConfig_schema = untrustedConfig.schema;
|
|
235
234
|
config.schema = untrustedConfig_schema;
|
|
236
235
|
return config;
|
|
@@ -342,4 +341,4 @@ withDefaultLuvio((luvio) => {
|
|
|
342
341
|
});
|
|
343
342
|
|
|
344
343
|
export { getSchema, getSchema_imperative };
|
|
345
|
-
// version: 1.
|
|
344
|
+
// version: 1.208.1-9aaa359ad
|