@agentconnect.md/cli 1.15.0-rc.11 → 1.15.0-rc.16
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/dist/index.js +14 -4
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -8243,6 +8243,8 @@ const AgentSpec = object({
|
|
|
8243
8243
|
mcpServers: array(string()).default([]),
|
|
8244
8244
|
callPolicy: _enum(["all", "selected"]).optional(),
|
|
8245
8245
|
allowedCallerAgentIds: array(string()).default([]),
|
|
8246
|
+
outboundPolicy: _enum(["all", "selected"]).optional(),
|
|
8247
|
+
allowedTargetAgentIds: array(string()).optional(),
|
|
8246
8248
|
introduceOnJoin: boolean().optional(),
|
|
8247
8249
|
restrictFileAccess: boolean().optional()
|
|
8248
8250
|
});
|
|
@@ -8422,6 +8424,10 @@ const CollabAgentPlacement = object({
|
|
|
8422
8424
|
botAppId: string().optional(),
|
|
8423
8425
|
callPolicy: _enum(["all", "selected"]).default("all"),
|
|
8424
8426
|
allowedCallerAgentIds: array(string()).default([]),
|
|
8427
|
+
/** Caller-side authorization. Effective A→B access requires A's outbound
|
|
8428
|
+
* policy to admit B and B's inbound call policy to admit A. */
|
|
8429
|
+
outboundPolicy: _enum(["all", "selected"]).default("all"),
|
|
8430
|
+
allowedTargetAgentIds: array(string()).default([]),
|
|
8425
8431
|
name: string().optional(),
|
|
8426
8432
|
displayName: string().optional()
|
|
8427
8433
|
});
|
|
@@ -9345,6 +9351,13 @@ const EffortOption = object({
|
|
|
9345
9351
|
name: string().optional(),
|
|
9346
9352
|
description: string().optional()
|
|
9347
9353
|
});
|
|
9354
|
+
/** One runtime permission-mode choice. The display metadata is forwarded
|
|
9355
|
+
* verbatim from the runtime's ACP `category: "mode"` select option. */
|
|
9356
|
+
const PermissionModeOption = object({
|
|
9357
|
+
value: string(),
|
|
9358
|
+
name: string().optional(),
|
|
9359
|
+
description: string().optional()
|
|
9360
|
+
});
|
|
9348
9361
|
/**
|
|
9349
9362
|
* A runtime's discovered model × config capability matrix. One shape shared by
|
|
9350
9363
|
* the wire, the CP's `runtime_profile.modelCatalog` JSONB column, and the DTO —
|
|
@@ -9359,10 +9372,7 @@ const RuntimeModelCatalog = object({
|
|
|
9359
9372
|
fastMode: boolean().optional()
|
|
9360
9373
|
})).max(128),
|
|
9361
9374
|
defaultModel: string().optional(),
|
|
9362
|
-
permissionModes: array(
|
|
9363
|
-
value: string(),
|
|
9364
|
-
name: string().optional()
|
|
9365
|
-
})).optional(),
|
|
9375
|
+
permissionModes: array(PermissionModeOption).optional(),
|
|
9366
9376
|
defaultPermissionMode: string().optional(),
|
|
9367
9377
|
source: _enum(["native", "acp"]),
|
|
9368
9378
|
observedAt: string().datetime()
|