diff --git a/.changeset/happy-fans-clap.md b/.changeset/happy-fans-clap.md new file mode 100644 index 00000000..65330fed --- /dev/null +++ b/.changeset/happy-fans-clap.md @@ -0,0 +1,5 @@ +--- +"livekit-server-sdk": patch +--- + +Add agent field to VideoGrant diff --git a/src/grants.ts b/src/grants.ts index d8f7c43d..05781b3f 100644 --- a/src/grants.ts +++ b/src/grants.ts @@ -59,6 +59,9 @@ export interface VideoGrant { /** participant is recording the room, when set, allows room to indicate it's being recorded */ recorder?: boolean; + + /** participant acts as a server side participant/bot/agent */ + agent?: boolean; } /** @internal */