@mui/internal-benchmark 0.0.3-canary.0 → 0.0.3-canary.1

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mui/internal-benchmark",
3
- "version": "0.0.3-canary.0",
3
+ "version": "0.0.3-canary.1",
4
4
  "author": "MUI Team",
5
5
  "description": "Benchmark utilities for MUI projects. Internal package.",
6
6
  "repository": {
@@ -68,5 +68,5 @@
68
68
  }
69
69
  }
70
70
  },
71
- "gitSha": "a979a4f067e608130789df8bf32aaf3e9708b7ae"
71
+ "gitSha": "a24bc8adf051b6b19ebdae8a80aaa2650d9b2ae7"
72
72
  }
package/syncPrComment.mjs CHANGED
@@ -1,4 +1,4 @@
1
- const DEFAULT_API_URL = 'https://code-infra-dashboard.onrender.com';
1
+ const DEFAULT_API_URL = 'https://frontend-public.mui.com';
2
2
  /**
3
3
  * Syncs a PR comment via the dashboard API.
4
4
  */
package/upload.mjs CHANGED
@@ -1,7 +1,7 @@
1
1
  import { benchmarkUploadSchema } from "./ciReport.mjs";
2
2
  async function uploadCiReport(report, options) {
3
3
  benchmarkUploadSchema.parse(report);
4
- const apiUrl = options?.apiUrl ?? process.env.CI_REPORT_API_URL ?? 'https://code-infra-dashboard.onrender.com';
4
+ const apiUrl = options?.apiUrl ?? process.env.CI_REPORT_API_URL ?? 'https://frontend-public.mui.com';
5
5
  const url = new URL('/api/ci-reports/upload', apiUrl);
6
6
  const oidcToken = process.env.CIRCLE_OIDC_TOKEN_V2;
7
7
  if (!oidcToken) {