@salesforce/lwc-adapters-uiapi 1.299.0 → 1.301.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 +14 -2
  2. package/package.json +4 -4
package/dist/main.js CHANGED
@@ -572,7 +572,7 @@ function createResourceParamsImpl(config, configMetadata) {
572
572
  }
573
573
  return resourceParams;
574
574
  }
575
- // engine version: 0.154.20-1c52d927
575
+ // engine version: 0.155.1-284dbf66
576
576
 
577
577
  /**
578
578
  * Returns true if the value acts like a Promise, i.e. has a "then" function,
@@ -8792,7 +8792,7 @@ const keyBuilderFromType$F = function ListInfoRepresentationKeyBuilderFromType(l
8792
8792
  };
8793
8793
 
8794
8794
  const TTL$H = 900000;
8795
- const VERSION$2A = "c658fe1591386d570e214eaed0daadd1";
8795
+ const VERSION$2A = "5adf17d38be03c0f71b1c52485b377a6";
8796
8796
  function validate$1$(obj, path = 'ListInfoRepresentation') {
8797
8797
  const v_error = (() => {
8798
8798
  if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
@@ -8871,6 +8871,13 @@ function validate$1$(obj, path = 'ListInfoRepresentation') {
8871
8871
  return new TypeError(message);
8872
8872
  }
8873
8873
  }
8874
+ if (obj.hasMassActions !== undefined) {
8875
+ const obj_hasMassActions = obj.hasMassActions;
8876
+ const path_hasMassActions = path + '.hasMassActions';
8877
+ if (typeof obj_hasMassActions !== 'boolean') {
8878
+ return new TypeError('Expected "boolean" but received "' + typeof obj_hasMassActions + '" (at "' + path_hasMassActions + '")');
8879
+ }
8880
+ }
8874
8881
  const obj_inlineEditDetails = obj.inlineEditDetails;
8875
8882
  const path_inlineEditDetails = path + '.inlineEditDetails';
8876
8883
  const referencepath_inlineEditDetailsValidationError = validate$2b(obj_inlineEditDetails, path_inlineEditDetails);
@@ -9081,6 +9088,11 @@ const select$3f = function ListInfoRepresentationSelect() {
9081
9088
  plural: true,
9082
9089
  selections: ListFilterByInfoRepresentation__selections
9083
9090
  },
9091
+ {
9092
+ name: 'hasMassActions',
9093
+ kind: 'Scalar',
9094
+ required: false
9095
+ },
9084
9096
  {
9085
9097
  name: 'inlineEditDetails',
9086
9098
  kind: 'Object',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@salesforce/lwc-adapters-uiapi",
3
- "version": "1.299.0",
3
+ "version": "1.301.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.299.0"
34
+ "@salesforce/lds-adapters-uiapi": "^1.301.0"
35
35
  },
36
36
  "dependencies": {
37
- "@luvio/lwc-luvio": "0.154.20",
38
- "@salesforce/lds-default-luvio": "^1.299.0"
37
+ "@luvio/lwc-luvio": "0.155.1",
38
+ "@salesforce/lds-default-luvio": "^1.301.0"
39
39
  }
40
40
  }