@salesforce/lds-adapters-platform-scale-center 1.206.0 → 1.208.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.
|
@@ -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, create: ObjectCreate } = Object;
|
|
@@ -210,10 +210,9 @@ function keyBuilder(luvio, config) {
|
|
|
210
210
|
}
|
|
211
211
|
function typeCheckConfig(untrustedConfig) {
|
|
212
212
|
const config = {};
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
}
|
|
213
|
+
typeCheckScalars(untrustedConfig, config, {
|
|
214
|
+
request: 0 /* String */,
|
|
215
|
+
});
|
|
217
216
|
return config;
|
|
218
217
|
}
|
|
219
218
|
function validateAdapterConfig(untrustedConfig, configPropertyNames) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/lds-adapters-platform-scale-center",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.208.0",
|
|
4
4
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
5
5
|
"description": "LDS Adapter for Scale Center observability metrics and insights",
|
|
6
6
|
"main": "dist/es/es2018/platform-scale-center.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, create: ObjectCreate } = Object;
|
|
@@ -220,10 +220,9 @@ function keyBuilder(luvio, config) {
|
|
|
220
220
|
}
|
|
221
221
|
function typeCheckConfig(untrustedConfig) {
|
|
222
222
|
const config = {};
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
}
|
|
223
|
+
typeCheckScalars(untrustedConfig, config, {
|
|
224
|
+
request: 0 /* String */,
|
|
225
|
+
});
|
|
227
226
|
return config;
|
|
228
227
|
}
|
|
229
228
|
function validateAdapterConfig(untrustedConfig, configPropertyNames) {
|
|
@@ -333,4 +332,4 @@ withDefaultLuvio((luvio) => {
|
|
|
333
332
|
});
|
|
334
333
|
|
|
335
334
|
export { queryMetrics, queryMetrics_imperative };
|
|
336
|
-
// version: 1.
|
|
335
|
+
// version: 1.208.0-027673bd6
|