@empiricalrun/test-run 0.10.0 → 0.10.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/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # @empiricalrun/test-run
2
2
 
3
+ ## 0.10.1
4
+
5
+ ### Patch Changes
6
+
7
+ - f05aac2: feat: add environment overrides for projects in tool calls
8
+
3
9
  ## 0.10.0
4
10
 
5
11
  ### Minor Changes
package/dist/dashboard.js CHANGED
@@ -57,7 +57,7 @@ const fetchEnvironmentVariables = async () => {
57
57
  });
58
58
  if (!envVarsResp.ok) {
59
59
  if (envVarsResp.status === 400) {
60
- return { data: { environmentVariables: [] } };
60
+ return { data: { environment_variables: [] } };
61
61
  }
62
62
  throw new Error(`HTTP ${envVarsResp.status}: Failed to fetch environment variables`);
63
63
  }
@@ -68,7 +68,7 @@ const fetchEnvironmentVariables = async () => {
68
68
  maxTimeout: 60_000,
69
69
  factor: 3,
70
70
  });
71
- return data && data.data ? data.data.environmentVariables : [];
71
+ return data && data.data ? data.data.environment_variables : [];
72
72
  }
73
73
  catch (error) {
74
74
  return [];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@empiricalrun/test-run",
3
- "version": "0.10.0",
3
+ "version": "0.10.1",
4
4
  "publishConfig": {
5
5
  "registry": "https://registry.npmjs.org/",
6
6
  "access": "public"