videodraft 0.16.0 → 0.17.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/README.md CHANGED
@@ -109,7 +109,7 @@ late Byteplus output refusals are refunded but cannot be rerouted.
109
109
  | Group | Commands |
110
110
  | --------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
111
111
  | Auth | `login` `logout` `whoami` |
112
- | Account | `credits` `costs [model]` `models [image\|video\|audio\|voices\|styles]` `workspaces` `sessions list/create/current/reset` `kling-voices list/create/delete` |
112
+ | Account | `credits` `costs [model]` `models [image\|video\|audio\|voices\|styles]` `workspaces` `sessions list/create/current/name/reset` `kling-voices list/create/delete` |
113
113
  | Projects | `projects list/get/delete/favorite/open` `checkpoint create/list/restore` |
114
114
  | Pipeline | `create` `shots` `produce` (`--mode full_video`) `attach` `finalize` `export` `export-status` `video-prompts` |
115
115
  | Generate | `generate image/video/audio/voiceover/music/sound-effect/dialogue/voice-changer/dub` `edit video/motion` `upscale image/video` `avatar script/create/render/get/list/fabric/lipsync` |
package/dist/client.d.ts CHANGED
@@ -3,9 +3,9 @@
3
3
  *
4
4
  * The VideoDraft MCP server hands every connection an `Mcp-Session-Id` on
5
5
  * `initialize` and files that connection's project-less generations into its
6
- * own AI Studio session (named after the client and date). MCP hosts echo the
7
- * header for free; the CLI is stateless per invocation, so it keeps the
8
- * header in a small store and replays it on every request.
6
+ * own AI Studio session (initially labelled after the client and date). MCP
7
+ * hosts echo the header for free; the CLI is stateless per invocation, so it
8
+ * keeps the header in a small store and replays it on every request.
9
9
  *
10
10
  * Scope: one session per (profile, base URL, working directory), expiring
11
11
  * after SESSION_IDLE_MS without use. A working directory is a good proxy for
@@ -114,8 +114,8 @@ interface VideoDraftClientOptions {
114
114
  session?: ConnectionSessionStore;
115
115
  /**
116
116
  * Name reported as MCP clientInfo.name during the session handshake; it
117
- * becomes the label of the auto-created AI Studio session ("Claude Code ·
118
- * Aug 22, 2026"). Defaults to the user-agent's product token.
117
+ * labels the automatic placeholder until the agent gives the session a
118
+ * task-specific name. Defaults to the user-agent's product token.
119
119
  */
120
120
  clientName?: string;
121
121
  }