@salesforce/lds-adapters-industries-decisiontable 1.303.0 → 1.305.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.
|
@@ -1173,8 +1173,8 @@ function validate$4(obj, path = 'DecisionTableRowInputRepresentation') {
|
|
|
1173
1173
|
const key = obj_rowData_keys[i];
|
|
1174
1174
|
const obj_rowData_prop = obj_rowData[key];
|
|
1175
1175
|
const path_rowData_prop = path_rowData + '["' + key + '"]';
|
|
1176
|
-
if (
|
|
1177
|
-
return new TypeError('Expected "
|
|
1176
|
+
if (obj_rowData_prop === undefined) {
|
|
1177
|
+
return new TypeError('Expected "defined" but received "' + typeof obj_rowData_prop + '" (at "' + path_rowData_prop + '")');
|
|
1178
1178
|
}
|
|
1179
1179
|
}
|
|
1180
1180
|
})();
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { IngestPath as $64$luvio_engine_IngestPath, Luvio as $64$luvio_engine_Luvio, Store as $64$luvio_engine_Store, FragmentSelection as $64$luvio_engine_FragmentSelection, ResourceIngest as $64$luvio_engine_ResourceIngest, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata } from '@luvio/engine';
|
|
2
|
-
export declare const VERSION = "
|
|
2
|
+
export declare const VERSION = "1ea1802d3f2e4fa95ebca2f27dfb167f";
|
|
3
3
|
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
4
4
|
export declare const RepresentationType: string;
|
|
5
5
|
export declare function normalize(input: DecisionTableRowInputRepresentation, existing: DecisionTableRowInputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): DecisionTableRowInputRepresentationNormalized;
|
|
@@ -20,7 +20,7 @@ export interface DecisionTableRowInputRepresentationNormalized {
|
|
|
20
20
|
id: string;
|
|
21
21
|
/** Represents the key value pair of the Decision Table Row. */
|
|
22
22
|
rowData: {
|
|
23
|
-
[key: string]:
|
|
23
|
+
[key: string]: unknown;
|
|
24
24
|
};
|
|
25
25
|
}
|
|
26
26
|
/**
|
|
@@ -33,6 +33,6 @@ export interface DecisionTableRowInputRepresentation {
|
|
|
33
33
|
action: string;
|
|
34
34
|
id: string;
|
|
35
35
|
rowData: {
|
|
36
|
-
[key: string]:
|
|
36
|
+
[key: string]: unknown;
|
|
37
37
|
};
|
|
38
38
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/lds-adapters-industries-decisiontable",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.305.0",
|
|
4
4
|
"description": "Industries BRE DecisionTable",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
6
6
|
"main": "dist/es/es2018/industries-decisiontable.js",
|
|
@@ -40,10 +40,10 @@
|
|
|
40
40
|
"test:unit": "jest --config=./jest.config.js"
|
|
41
41
|
},
|
|
42
42
|
"dependencies": {
|
|
43
|
-
"@salesforce/lds-bindings": "^1.
|
|
43
|
+
"@salesforce/lds-bindings": "^1.305.0"
|
|
44
44
|
},
|
|
45
45
|
"devDependencies": {
|
|
46
|
-
"@salesforce/lds-compiler-plugins": "^1.
|
|
46
|
+
"@salesforce/lds-compiler-plugins": "^1.305.0"
|
|
47
47
|
},
|
|
48
48
|
"nx": {
|
|
49
49
|
"targets": {
|
package/sfdc/index.js
CHANGED
|
@@ -1738,8 +1738,8 @@ function validate$1(obj, path = 'DecisionTableRowInputRepresentation') {
|
|
|
1738
1738
|
const key = obj_rowData_keys[i];
|
|
1739
1739
|
const obj_rowData_prop = obj_rowData[key];
|
|
1740
1740
|
const path_rowData_prop = path_rowData + '["' + key + '"]';
|
|
1741
|
-
if (
|
|
1742
|
-
return new TypeError('Expected "
|
|
1741
|
+
if (obj_rowData_prop === undefined) {
|
|
1742
|
+
return new TypeError('Expected "defined" but received "' + typeof obj_rowData_prop + '" (at "' + path_rowData_prop + '")');
|
|
1743
1743
|
}
|
|
1744
1744
|
}
|
|
1745
1745
|
})();
|
|
@@ -2013,4 +2013,4 @@ withDefaultLuvio((luvio) => {
|
|
|
2013
2013
|
});
|
|
2014
2014
|
|
|
2015
2015
|
export { getDecisionTable, getDecisionTableFile, getDecisionTableFile_imperative, getDecisionTableRows, getDecisionTableRows_imperative, getDecisionTableTemplate, getDecisionTableTemplateList, getDecisionTableTemplateList_imperative, getDecisionTableTemplate_imperative, getDecisionTable_imperative, postDecisionTableFile, postDecisionTableRows };
|
|
2016
|
-
// version: 1.
|
|
2016
|
+
// version: 1.305.0-ec92f7304c
|
package/src/raml/api.raml
CHANGED