@salesforce/ui-bundle 1.130.0 → 1.130.2

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.
@@ -35,7 +35,7 @@ const HIGH_REVENUE_ACCOUNTS_QUERY = (
35
35
  );
36
36
  async function getHighRevenueAccounts(variables) {
37
37
  const data = await createDataSDK();
38
- const response = await data.graphql?.(HIGH_REVENUE_ACCOUNTS_QUERY, variables);
38
+ const response = await data.graphql?.({ query: HIGH_REVENUE_ACCOUNTS_QUERY, variables });
39
39
  if (response?.errors?.length) {
40
40
  const errorMessages = response.errors.map((e) => e.message).join("; ");
41
41
  throw new Error(`GraphQL Error: ${errorMessages}`);
@@ -1,4 +1,4 @@
1
- const version = "1.130.0";
1
+ const version = "1.130.2";
2
2
  export {
3
3
  version
4
4
  };
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@salesforce/ui-bundle",
3
3
  "description": "Core package for Salesforce UI Bundles",
4
- "version": "1.130.0",
4
+ "version": "1.130.2",
5
5
  "license": "SEE LICENSE IN LICENSE.txt",
6
6
  "type": "module",
7
7
  "main": "./dist/index.js",
@@ -44,7 +44,7 @@
44
44
  },
45
45
  "dependencies": {
46
46
  "@salesforce/core": "^8.23.4",
47
- "@salesforce/sdk-data": "^1.130.0",
47
+ "@salesforce/sdk-data": "^1.130.2",
48
48
  "micromatch": "^4.0.8",
49
49
  "path-to-regexp": "^8.3.0"
50
50
  },