@byok-sdk/protocol 0.6.0 → 0.7.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.
- package/dist/agent-egress.d.ts +144 -0
- package/dist/codec.d.ts +24 -0
- package/dist/envelope.d.ts +369 -0
- package/dist/http-api.d.ts +750 -0
- package/dist/index.d.ts +5 -3
- package/dist/index.js +256 -9
- package/dist/index.js.map +1 -1
- package/dist/messages.d.ts +677 -5
- package/dist/version.d.ts +1 -1
- package/package.json +1 -1
package/dist/version.d.ts
CHANGED
|
@@ -101,5 +101,5 @@ export declare const PROTOCOL_VERSION = 1;
|
|
|
101
101
|
* boundary for long-poll: an older daemon skips it as unknown and therefore
|
|
102
102
|
* cannot accidentally execute the instruction without the required tools.
|
|
103
103
|
*/
|
|
104
|
-
export declare const CAPABILITY_FLAGS: readonly ['steer', 'blob-upload', 'interactive-approval', 'approval_resolved', 'approval-targeting', 'result-document', 'dispatch-selection', 'toolset-selection'];
|
|
104
|
+
export declare const CAPABILITY_FLAGS: readonly ['steer', 'blob-upload', 'interactive-approval', 'approval_resolved', 'approval-targeting', 'result-document', 'dispatch-selection', 'toolset-selection', 'agent-home-contract', "agent-egress-policy", "agent-egress-reliable-ack", "agent-content-workspace-read", "agent-content-transcript-read", "agent-content-artifact-read"];
|
|
105
105
|
export type CapabilityFlag = (typeof CAPABILITY_FLAGS)[number];
|