@vellumai/plugin-api 0.10.3-dev.202606301940.da6000c → 0.10.3-dev.202606302138.0f63073
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/index.d.ts +1 -136
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -2373,8 +2373,6 @@ declare const LLMCallSiteEnum: z.ZodEnum<{
|
|
|
2373
2373
|
styleAnalyzer: "styleAnalyzer";
|
|
2374
2374
|
inviteInstructionGenerator: "inviteInstructionGenerator";
|
|
2375
2375
|
skillCategoryInference: "skillCategoryInference";
|
|
2376
|
-
meetConsentMonitor: "meetConsentMonitor";
|
|
2377
|
-
meetChatOpportunity: "meetChatOpportunity";
|
|
2378
2376
|
inference: "inference";
|
|
2379
2377
|
vision: "vision";
|
|
2380
2378
|
trustRuleSuggestion: "trustRuleSuggestion";
|
|
@@ -2383,139 +2381,6 @@ declare const LLMCallSiteEnum: z.ZodEnum<{
|
|
|
2383
2381
|
workflowLeaf: "workflowLeaf";
|
|
2384
2382
|
}>;
|
|
2385
2383
|
|
|
2386
|
-
/**
|
|
2387
|
-
* The assistant successfully posted a chat message into the meeting via
|
|
2388
|
-
* the bot's `/send_chat` endpoint. Emitted once per successful send so
|
|
2389
|
-
* SSE-subscribed clients can render the outbound chat without waiting for
|
|
2390
|
-
* the bot to echo it back through the transcript/chat stream.
|
|
2391
|
-
*/
|
|
2392
|
-
declare interface MeetChatSent {
|
|
2393
|
-
type: "meet.chat_sent";
|
|
2394
|
-
meetingId: string;
|
|
2395
|
-
/** The text that was posted into the meeting's chat. */
|
|
2396
|
-
text: string;
|
|
2397
|
-
}
|
|
2398
|
-
|
|
2399
|
-
/** The bot hit a non-recoverable error (container crash, join failure, etc.). */
|
|
2400
|
-
declare interface MeetError {
|
|
2401
|
-
type: "meet.error";
|
|
2402
|
-
meetingId: string;
|
|
2403
|
-
/** Human-readable error detail. */
|
|
2404
|
-
detail: string;
|
|
2405
|
-
}
|
|
2406
|
-
|
|
2407
|
-
/** The bot has successfully joined and is live in the meeting. */
|
|
2408
|
-
declare interface MeetJoined {
|
|
2409
|
-
type: "meet.joined";
|
|
2410
|
-
meetingId: string;
|
|
2411
|
-
}
|
|
2412
|
-
|
|
2413
|
-
/** The bot has started attempting to join a meeting. */
|
|
2414
|
-
declare interface MeetJoining {
|
|
2415
|
-
type: "meet.joining";
|
|
2416
|
-
meetingId: string;
|
|
2417
|
-
/** The Meet URL the bot was asked to join. */
|
|
2418
|
-
url: string;
|
|
2419
|
-
}
|
|
2420
|
-
|
|
2421
|
-
/** The bot has left the meeting. */
|
|
2422
|
-
declare interface MeetLeft {
|
|
2423
|
-
type: "meet.left";
|
|
2424
|
-
meetingId: string;
|
|
2425
|
-
/** Free-form reason passed to `leave()` (e.g. "user-requested", "timeout"). */
|
|
2426
|
-
reason: string;
|
|
2427
|
-
}
|
|
2428
|
-
|
|
2429
|
-
/**
|
|
2430
|
-
* Meet — server → client push messages for live meeting state.
|
|
2431
|
-
*
|
|
2432
|
-
* Emitted by the assistant daemon as the Meet-bot progresses through its
|
|
2433
|
-
* lifecycle (joining → joined → left) and as in-meeting state changes
|
|
2434
|
-
* (participants, active speaker, transcript chunks).
|
|
2435
|
-
*
|
|
2436
|
-
* Keep payloads small and client-actionable: these events power the
|
|
2437
|
-
* macOS "In meeting" status panel and the conversation bridge's live
|
|
2438
|
-
* transcript feed. A client that missed an event can always refetch
|
|
2439
|
-
* authoritative state from the daemon's HTTP routes.
|
|
2440
|
-
*/
|
|
2441
|
-
/** A single participant in a meeting. Shape mirrors the wire-level type. */
|
|
2442
|
-
declare interface MeetParticipant {
|
|
2443
|
-
/** Stable participant identifier (provider-specific). */
|
|
2444
|
-
id: string;
|
|
2445
|
-
/** Display name of the participant. */
|
|
2446
|
-
name: string;
|
|
2447
|
-
/** Whether the participant is the meeting host. */
|
|
2448
|
-
isHost?: boolean;
|
|
2449
|
-
/** Whether the participant is the bot itself. */
|
|
2450
|
-
isSelf?: boolean;
|
|
2451
|
-
}
|
|
2452
|
-
|
|
2453
|
-
/** Participants joined and/or left the meeting since the last snapshot. */
|
|
2454
|
-
declare interface MeetParticipantChanged {
|
|
2455
|
-
type: "meet.participant_changed";
|
|
2456
|
-
meetingId: string;
|
|
2457
|
-
/** Participants who joined since the last snapshot. */
|
|
2458
|
-
joined: MeetParticipant[];
|
|
2459
|
-
/** Participants who left since the last snapshot. */
|
|
2460
|
-
left: MeetParticipant[];
|
|
2461
|
-
}
|
|
2462
|
-
|
|
2463
|
-
declare type _MeetServerMessages = MeetJoining | MeetJoined | MeetParticipantChanged | MeetSpeakerChanged | MeetTranscriptChunk | MeetLeft | MeetChatSent | MeetError | MeetSpeakingStarted | MeetSpeakingEnded;
|
|
2464
|
-
|
|
2465
|
-
/** The active speaker in the meeting changed. */
|
|
2466
|
-
declare interface MeetSpeakerChanged {
|
|
2467
|
-
type: "meet.speaker_changed";
|
|
2468
|
-
meetingId: string;
|
|
2469
|
-
/** Stable speaker identifier for the new active speaker. */
|
|
2470
|
-
speakerId: string;
|
|
2471
|
-
/** Display name of the new active speaker. */
|
|
2472
|
-
speakerName: string;
|
|
2473
|
-
}
|
|
2474
|
-
|
|
2475
|
-
/**
|
|
2476
|
-
* The assistant has finished (or cancelled) a TTS playback stream. Fired
|
|
2477
|
-
* after the bot-side playback request settles — whether normally, via an
|
|
2478
|
-
* explicit cancel, or due to an upstream error.
|
|
2479
|
-
*/
|
|
2480
|
-
declare interface MeetSpeakingEnded {
|
|
2481
|
-
type: "meet.speaking_ended";
|
|
2482
|
-
meetingId: string;
|
|
2483
|
-
/** Opaque stream identifier — matches `meet.speaking_started.streamId`. */
|
|
2484
|
-
streamId: string;
|
|
2485
|
-
/** Why the stream ended: natural completion, caller-initiated cancel, or an upstream error. */
|
|
2486
|
-
reason: "completed" | "cancelled" | "error";
|
|
2487
|
-
}
|
|
2488
|
-
|
|
2489
|
-
/**
|
|
2490
|
-
* The assistant has begun speaking into the meeting via the TTS bridge. Fired
|
|
2491
|
-
* once per {@link MeetSessionManager.speak} invocation immediately before the
|
|
2492
|
-
* synthesis stream starts flowing to the bot's `/play_audio` endpoint. Useful
|
|
2493
|
-
* for clients that want to render a "speaking …" indicator.
|
|
2494
|
-
*/
|
|
2495
|
-
declare interface MeetSpeakingStarted {
|
|
2496
|
-
type: "meet.speaking_started";
|
|
2497
|
-
meetingId: string;
|
|
2498
|
-
/** Opaque stream identifier — matches `meet.speaking_ended.streamId`. */
|
|
2499
|
-
streamId: string;
|
|
2500
|
-
}
|
|
2501
|
-
|
|
2502
|
-
/**
|
|
2503
|
-
* A finalized chunk of transcribed speech. Interim chunks are filtered
|
|
2504
|
-
* out before publication so clients only render stable text.
|
|
2505
|
-
*/
|
|
2506
|
-
declare interface MeetTranscriptChunk {
|
|
2507
|
-
type: "meet.transcript_chunk";
|
|
2508
|
-
meetingId: string;
|
|
2509
|
-
/** The transcribed text. */
|
|
2510
|
-
text: string;
|
|
2511
|
-
/** Human-readable speaker label, if the ASR provided one. */
|
|
2512
|
-
speakerLabel?: string;
|
|
2513
|
-
/** Stable speaker identifier across the meeting, if available. */
|
|
2514
|
-
speakerId?: string;
|
|
2515
|
-
/** ASR confidence in [0, 1], if available. */
|
|
2516
|
-
confidence?: number;
|
|
2517
|
-
}
|
|
2518
|
-
|
|
2519
2384
|
declare interface MemoryRecalled {
|
|
2520
2385
|
type: "memory_recalled";
|
|
2521
2386
|
provider: string;
|
|
@@ -3590,7 +3455,7 @@ declare interface SensitiveOutputBinding {
|
|
|
3590
3455
|
|
|
3591
3456
|
declare type SensitiveOutputKind = "invite_code";
|
|
3592
3457
|
|
|
3593
|
-
declare type ServerMessage = _ConversationsServerMessages | _MessagesServerMessages | _SurfacesServerMessages | _SkillsServerMessages | _AppsServerMessages | _IntegrationsServerMessages | _ComputerUseServerMessages | _ContactsServerMessages | _WorkItemsServerMessages | _SubagentsServerMessages | _DocumentsServerMessages | _DocumentCommentsServerMessages | _GuardianActionsServerMessages | _SyncInvalidationServerMessages | _HomeServerMessages | _HostAppControlServerMessages | _HostBashServerMessages | _HostBrowserServerMessages | _HostCuServerMessages | _HostFileServerMessages | _HostTransferServerMessages |
|
|
3458
|
+
declare type ServerMessage = _ConversationsServerMessages | _MessagesServerMessages | _SurfacesServerMessages | _SkillsServerMessages | _AppsServerMessages | _IntegrationsServerMessages | _ComputerUseServerMessages | _ContactsServerMessages | _WorkItemsServerMessages | _SubagentsServerMessages | _DocumentsServerMessages | _DocumentCommentsServerMessages | _GuardianActionsServerMessages | _SyncInvalidationServerMessages | _HomeServerMessages | _HostAppControlServerMessages | _HostBashServerMessages | _HostBrowserServerMessages | _HostCuServerMessages | _HostFileServerMessages | _HostTransferServerMessages | _MemoryServerMessages | _WorkspaceServerMessages | _SchedulesServerMessages | _SettingsServerMessages | _DiagnosticsServerMessages | _InboxServerMessages | _NotificationsServerMessages | _UpgradesServerMessages | _AcpServerMessages | _BackgroundToolsServerMessages | _BookmarksServerMessages | _WorkflowsServerMessages | DiskPressureStatusChangedEvent | SubagentEvent;
|
|
3594
3459
|
|
|
3595
3460
|
export declare interface ServerToolUseContent {
|
|
3596
3461
|
type: "server_tool_use";
|
package/package.json
CHANGED