@salesforce/lwc-adapters-uiapi 1.263.0 → 1.264.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.
Files changed (2) hide show
  1. package/dist/main.js +5 -0
  2. package/package.json +3 -3
package/dist/main.js CHANGED
@@ -36998,6 +36998,11 @@ function validate$g(obj, path = 'SearchFilterOutputRepresentation') {
36998
36998
  if (typeof obj_fieldPath !== 'string') {
36999
36999
  return new TypeError('Expected "string" but received "' + typeof obj_fieldPath + '" (at "' + path_fieldPath + '")');
37000
37000
  }
37001
+ const obj_label = obj.label;
37002
+ const path_label = path + '.label';
37003
+ if (typeof obj_label !== 'string') {
37004
+ return new TypeError('Expected "string" but received "' + typeof obj_label + '" (at "' + path_label + '")');
37005
+ }
37001
37006
  const obj_operator = obj.operator;
37002
37007
  const path_operator = path + '.operator';
37003
37008
  if (typeof obj_operator !== 'string') {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@salesforce/lwc-adapters-uiapi",
3
- "version": "1.263.0",
3
+ "version": "1.264.0",
4
4
  "license": "SEE LICENSE IN LICENSE.txt",
5
5
  "description": "UIAPI adapters with LWC bindings",
6
6
  "module": "dist/main.js",
@@ -31,10 +31,10 @@
31
31
  "clean": "rm -rf dist src/generated"
32
32
  },
33
33
  "devDependencies": {
34
- "@salesforce/lds-adapters-uiapi": "^1.263.0"
34
+ "@salesforce/lds-adapters-uiapi": "^1.264.0"
35
35
  },
36
36
  "dependencies": {
37
37
  "@luvio/lwc-luvio": "0.154.4",
38
- "@salesforce/lds-default-luvio": "^1.263.0"
38
+ "@salesforce/lds-default-luvio": "^1.264.0"
39
39
  }
40
40
  }