@agentconnect.md/cli 1.15.0-rc.15 → 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 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
  });