@agentconnect.md/cli 1.15.0-rc.11 → 1.15.0-rc.15
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 +8 -4
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -9345,6 +9345,13 @@ const EffortOption = object({
|
|
|
9345
9345
|
name: string().optional(),
|
|
9346
9346
|
description: string().optional()
|
|
9347
9347
|
});
|
|
9348
|
+
/** One runtime permission-mode choice. The display metadata is forwarded
|
|
9349
|
+
* verbatim from the runtime's ACP `category: "mode"` select option. */
|
|
9350
|
+
const PermissionModeOption = object({
|
|
9351
|
+
value: string(),
|
|
9352
|
+
name: string().optional(),
|
|
9353
|
+
description: string().optional()
|
|
9354
|
+
});
|
|
9348
9355
|
/**
|
|
9349
9356
|
* A runtime's discovered model × config capability matrix. One shape shared by
|
|
9350
9357
|
* the wire, the CP's `runtime_profile.modelCatalog` JSONB column, and the DTO —
|
|
@@ -9359,10 +9366,7 @@ const RuntimeModelCatalog = object({
|
|
|
9359
9366
|
fastMode: boolean().optional()
|
|
9360
9367
|
})).max(128),
|
|
9361
9368
|
defaultModel: string().optional(),
|
|
9362
|
-
permissionModes: array(
|
|
9363
|
-
value: string(),
|
|
9364
|
-
name: string().optional()
|
|
9365
|
-
})).optional(),
|
|
9369
|
+
permissionModes: array(PermissionModeOption).optional(),
|
|
9366
9370
|
defaultPermissionMode: string().optional(),
|
|
9367
9371
|
source: _enum(["native", "acp"]),
|
|
9368
9372
|
observedAt: string().datetime()
|