@stdiobus/workers-registry 1.5.0-beta.2 → 1.5.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/out/dist/workers-registry/acp-registry/index.js +1 -1
- package/out/dist/workers-registry/acp-registry/index.js.map +2 -2
- package/out/dist/workers-registry/registry-launcher/index.js +1 -1
- package/out/dist/workers-registry/registry-launcher/index.js.map +2 -2
- package/out/tsc/workers-registry/registry-launcher/src/auth/types.d.ts +11 -1
- package/package.json +1 -1
|
@@ -241,11 +241,21 @@ export interface AuthConfig {
|
|
|
241
241
|
}
|
|
242
242
|
/**
|
|
243
243
|
* ACP protocol auth method advertisement.
|
|
244
|
+
*
|
|
245
|
+
* Supports all ACP Registry auth types:
|
|
246
|
+
* - 'oauth2': Browser-based OAuth 2.1 flow
|
|
247
|
+
* - 'api-key': Legacy API key authentication
|
|
248
|
+
* - 'agent': Agent handles OAuth internally (ACP default)
|
|
249
|
+
* - 'terminal': Interactive terminal setup (AUTHENTICATION.md)
|
|
244
250
|
*/
|
|
245
251
|
export interface AcpAuthMethod {
|
|
246
252
|
id: string;
|
|
247
|
-
type: 'oauth2' | 'api-key';
|
|
253
|
+
type: 'oauth2' | 'api-key' | 'agent' | 'terminal';
|
|
248
254
|
providerId?: AuthProviderId;
|
|
255
|
+
/** CLI args for terminal auth (e.g. ['--setup']) */
|
|
256
|
+
args?: string[];
|
|
257
|
+
/** Environment variables for terminal auth */
|
|
258
|
+
env?: Record<string, string>;
|
|
249
259
|
}
|
|
250
260
|
/**
|
|
251
261
|
* Valid provider IDs for runtime validation.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@stdiobus/workers-registry",
|
|
3
|
-
"version": "1.5.
|
|
3
|
+
"version": "1.5.1",
|
|
4
4
|
"description": "Worker implementations for stdio Bus kernel - ACP, MCP, and protocol bridges",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./out/dist/workers-registry/acp-registry/index.js",
|