@wix/evalforge-evaluator 0.7.0 → 0.8.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.
|
@@ -24,6 +24,11 @@ export interface ApiClientOptions {
|
|
|
24
24
|
* When set, this header is included in all requests.
|
|
25
25
|
*/
|
|
26
26
|
routeHeader?: string;
|
|
27
|
+
/**
|
|
28
|
+
* Optional Bearer token for authenticating with public endpoints.
|
|
29
|
+
* When set, this token is included as Authorization header in all requests.
|
|
30
|
+
*/
|
|
31
|
+
authToken?: string;
|
|
27
32
|
}
|
|
28
33
|
/**
|
|
29
34
|
* Create an API client for the eval server.
|
package/build/types/config.d.ts
CHANGED
|
@@ -23,6 +23,11 @@ export interface EvaluatorConfig {
|
|
|
23
23
|
* them to the correct deploy preview instance.
|
|
24
24
|
*/
|
|
25
25
|
routeHeader?: string;
|
|
26
|
+
/**
|
|
27
|
+
* Optional Bearer token for authenticating with public endpoints.
|
|
28
|
+
* When set, this token is included as Authorization header in API requests.
|
|
29
|
+
*/
|
|
30
|
+
authToken?: string;
|
|
26
31
|
}
|
|
27
32
|
/**
|
|
28
33
|
* Load evaluator configuration from environment variables.
|
|
@@ -25,6 +25,8 @@ export interface TraceContext {
|
|
|
25
25
|
tracePushUrl?: string;
|
|
26
26
|
/** Optional x-wix-route header for deploy preview routing */
|
|
27
27
|
routeHeader?: string;
|
|
28
|
+
/** Optional Bearer token for authenticating with public endpoints */
|
|
29
|
+
authToken?: string;
|
|
28
30
|
}
|
|
29
31
|
/**
|
|
30
32
|
* Options for Claude Agent SDK execution.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wix/evalforge-evaluator",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.8.0",
|
|
4
4
|
"description": "EvalForge Evaluator",
|
|
5
5
|
"bin": "./build/index.js",
|
|
6
6
|
"files": [
|
|
@@ -62,5 +62,5 @@
|
|
|
62
62
|
"artifactId": "evalforge-evaluator"
|
|
63
63
|
}
|
|
64
64
|
},
|
|
65
|
-
"falconPackageHash": "
|
|
65
|
+
"falconPackageHash": "735722bbddaace0cacc744097d82598cda8f2190d1bb21d908530b68"
|
|
66
66
|
}
|