@vellumai/plugin-api 0.10.8-dev.202607132323.15268f2 → 0.10.8-dev.202607140042.9a984c7

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.
Files changed (2) hide show
  1. package/index.d.ts +1 -25
  2. package/package.json +1 -1
package/index.d.ts CHANGED
@@ -1520,30 +1520,6 @@ export declare interface AssistantEventSubscription {
1520
1520
  readonly connectionId: string;
1521
1521
  }
1522
1522
 
1523
- declare interface AssistantInboxEscalationResponse {
1524
- type: "assistant_inbox_escalation_response";
1525
- success: boolean;
1526
- error?: string;
1527
- /** List of escalations (returned on list). */
1528
- escalations?: Array<{
1529
- id: string;
1530
- runId: string;
1531
- conversationId: string;
1532
- channel: string;
1533
- requesterExternalUserId: string;
1534
- requesterChatId: string;
1535
- status: string;
1536
- requestSummary?: string;
1537
- createdAt: number;
1538
- }>;
1539
- /** Decision result (returned on decide). */
1540
- decision?: {
1541
- id: string;
1542
- status: string;
1543
- decidedAt: number;
1544
- };
1545
- }
1546
-
1547
1523
  /**
1548
1524
  * Managed skill authored by the assistant's retrospective. Identical shape to a
1549
1525
  * custom skill — it stays managed/deletable — but carries a distinct origin so
@@ -3553,7 +3529,7 @@ declare interface ImageEmbeddingInput {
3553
3529
  mimeType: string;
3554
3530
  }
3555
3531
 
3556
- declare type _InboxServerMessages = ContactsInviteResponse | AssistantInboxEscalationResponse;
3532
+ declare type _InboxServerMessages = ContactsInviteResponse;
3557
3533
 
3558
3534
  declare interface IngressConfigResponse {
3559
3535
  type: "ingress_config_response";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vellumai/plugin-api",
3
- "version": "0.10.8-dev.202607132323.15268f2",
3
+ "version": "0.10.8-dev.202607140042.9a984c7",
4
4
  "description": "Public TypeScript authoring contract for Vellum assistant plugins.",
5
5
  "license": "MIT",
6
6
  "type": "module",