MCPcopy Create free account
hub / github.com/MoonshotAI/kimi-code / emitMetaUpdated

Method emitMetaUpdated

packages/node-sdk/src/session.ts:527–535  ·  view source on GitHub ↗

@internal

(patch: { readonly title?: string | undefined })

Source from the content-addressed store, hash-verified

525
526 /** @internal */
527 emitMetaUpdated(patch: { readonly title?: string | undefined }): void {
528 this.emit({
529 type: 'session.meta.updated',
530 sessionId: this.id,
531 agentId: MAIN_AGENT_ID,
532 title: patch.title,
533 patch,
534 });
535 }
536
537 private emit(event: Event): void {
538 this.rpc.receiveEvent(event);

Callers 1

renameSessionMethod · 0.80

Calls 1

emitMethod · 0.95

Tested by

no test coverage detected