@salesforce/lwc-adapters-uiapi 1.119.3 → 1.120.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 +10 -10
  2. package/package.json +1 -1
package/dist/main.js CHANGED
@@ -32298,7 +32298,7 @@ function deepFreeze$l(input) {
32298
32298
  }
32299
32299
 
32300
32300
  const TTL$h = 900000;
32301
- const VERSION$15 = "d7f25ef61c7467805940f28371ac1f20";
32301
+ const VERSION$15 = "c977d65d153a2b4e888ddd45fb083248";
32302
32302
  function validate$A(obj, path = 'RelatedListInfoRepresentation') {
32303
32303
  const v_error = (() => {
32304
32304
  if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
@@ -32361,6 +32361,11 @@ function validate$A(obj, path = 'RelatedListInfoRepresentation') {
32361
32361
  if (typeof obj_filterLogicString !== 'string') {
32362
32362
  return new TypeError('Expected "string" but received "' + typeof obj_filterLogicString + '" (at "' + path_filterLogicString + '")');
32363
32363
  }
32364
+ const obj_filterable = obj.filterable;
32365
+ const path_filterable = path + '.filterable';
32366
+ if (typeof obj_filterable !== 'boolean') {
32367
+ return new TypeError('Expected "boolean" but received "' + typeof obj_filterable + '" (at "' + path_filterable + '")');
32368
+ }
32364
32369
  const obj_filteredByInfo = obj.filteredByInfo;
32365
32370
  const path_filteredByInfo = path + '.filteredByInfo';
32366
32371
  if (!ArrayIsArray(obj_filteredByInfo)) {
@@ -32376,11 +32381,6 @@ function validate$A(obj, path = 'RelatedListInfoRepresentation') {
32376
32381
  return new TypeError(message);
32377
32382
  }
32378
32383
  }
32379
- const obj_isTransientFilterable = obj.isTransientFilterable;
32380
- const path_isTransientFilterable = path + '.isTransientFilterable';
32381
- if (typeof obj_isTransientFilterable !== 'boolean') {
32382
- return new TypeError('Expected "boolean" but received "' + typeof obj_isTransientFilterable + '" (at "' + path_isTransientFilterable + '")');
32383
- }
32384
32384
  const obj_label = obj.label;
32385
32385
  const path_label = path + '.label';
32386
32386
  if (typeof obj_label !== 'string') {
@@ -32520,15 +32520,15 @@ const select$1f = function RelatedListInfoRepresentationSelect() {
32520
32520
  name: 'filterLogicString',
32521
32521
  kind: 'Scalar'
32522
32522
  },
32523
+ {
32524
+ name: 'filterable',
32525
+ kind: 'Scalar'
32526
+ },
32523
32527
  {
32524
32528
  name: 'filteredByInfo',
32525
32529
  kind: 'Object',
32526
32530
  opaque: true
32527
32531
  },
32528
- {
32529
- name: 'isTransientFilterable',
32530
- kind: 'Scalar'
32531
- },
32532
32532
  {
32533
32533
  name: 'label',
32534
32534
  kind: 'Scalar'
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@salesforce/lwc-adapters-uiapi",
3
- "version": "1.119.3",
3
+ "version": "1.120.0",
4
4
  "license": "SEE LICENSE IN LICENSE.txt",
5
5
  "description": "UIAPI adapters with LWC bindings",
6
6
  "module": "dist/main.js",