@salesforce/lds-adapters-industries-materialityassessment 1.207.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, StoreKeyMap, typeCheckScalars } from '@luvio/engine';
|
|
8
8
|
|
|
9
9
|
const { hasOwnProperty: ObjectPrototypeHasOwnProperty } = Object.prototype;
|
|
10
10
|
const { keys: ObjectKeys, create: ObjectCreate } = Object;
|
|
@@ -192,10 +192,9 @@ function createResourceParams(config) {
|
|
|
192
192
|
}
|
|
193
193
|
function typeCheckConfig(untrustedConfig) {
|
|
194
194
|
const config = {};
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
}
|
|
195
|
+
typeCheckScalars(untrustedConfig, config, {
|
|
196
|
+
materialityAssessmentId: 0 /* String */,
|
|
197
|
+
});
|
|
199
198
|
return config;
|
|
200
199
|
}
|
|
201
200
|
function validateAdapterConfig(untrustedConfig, configPropertyNames) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/lds-adapters-industries-materialityassessment",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.208.0",
|
|
4
4
|
"description": "connect endpoints for materiality assessment",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
6
6
|
"main": "dist/es/es2018/industries-materialityassessment.js",
|
package/sfdc/index.js
CHANGED
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
*/
|
|
14
14
|
/* proxy-compat-disable */
|
|
15
15
|
import { withDefaultLuvio } from 'force/ldsEngine';
|
|
16
|
-
import { serializeStructuredKey, deepFreeze, StoreKeyMap } from 'force/luvioEngine';
|
|
16
|
+
import { serializeStructuredKey, deepFreeze, StoreKeyMap, typeCheckScalars } from 'force/luvioEngine';
|
|
17
17
|
|
|
18
18
|
const { hasOwnProperty: ObjectPrototypeHasOwnProperty } = Object.prototype;
|
|
19
19
|
const { keys: ObjectKeys, create: ObjectCreate } = Object;
|
|
@@ -201,10 +201,9 @@ function createResourceParams(config) {
|
|
|
201
201
|
}
|
|
202
202
|
function typeCheckConfig(untrustedConfig) {
|
|
203
203
|
const config = {};
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
}
|
|
204
|
+
typeCheckScalars(untrustedConfig, config, {
|
|
205
|
+
materialityAssessmentId: 0 /* String */,
|
|
206
|
+
});
|
|
208
207
|
return config;
|
|
209
208
|
}
|
|
210
209
|
function validateAdapterConfig(untrustedConfig, configPropertyNames) {
|
|
@@ -267,4 +266,4 @@ withDefaultLuvio((luvio) => {
|
|
|
267
266
|
});
|
|
268
267
|
|
|
269
268
|
export { postPerformCalculation };
|
|
270
|
-
// version: 1.
|
|
269
|
+
// version: 1.208.0-027673bd6
|