@proteos/sdk 0.20.1 → 0.20.3

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/dist/index.d.cts CHANGED
@@ -2133,6 +2133,13 @@ interface AgentListener {
2133
2133
  /** The user the dispatcher acts as when driving the agent. */
2134
2134
  acting_user: UserRef$1;
2135
2135
  is_enabled: boolean;
2136
+ /**
2137
+ * How the agent's reply reaches the conversation. `true` (default) ⇒ the
2138
+ * platform posts the agent's text reply automatically. `false` ⇒ the platform
2139
+ * forwards nothing; the agent is told (in the session preamble) to reply
2140
+ * itself via the send_message/reply tool.
2141
+ */
2142
+ is_auto_forward_agent_replies_enabled: boolean;
2136
2143
  priority: number;
2137
2144
  created_at: string;
2138
2145
  created_by: UserRef$1;
@@ -2202,6 +2209,12 @@ interface CreateAgentListenerRequest {
2202
2209
  acting_user_id: string;
2203
2210
  /** Omit to default to enabled. */
2204
2211
  is_enabled?: boolean;
2212
+ /**
2213
+ * Whether the platform auto-forwards the agent's text reply. Omit to default
2214
+ * to `true` (historic behavior). `false` ⇒ the agent replies itself via the
2215
+ * send_message/reply tool.
2216
+ */
2217
+ is_auto_forward_agent_replies_enabled?: boolean;
2205
2218
  priority?: number;
2206
2219
  }
2207
2220
  interface UpdateAgentListenerRequest {
@@ -2213,6 +2226,8 @@ interface UpdateAgentListenerRequest {
2213
2226
  wake_phrase?: string;
2214
2227
  acting_user_id?: string;
2215
2228
  is_enabled?: boolean;
2229
+ /** Toggle whether the platform auto-forwards the agent's text reply. */
2230
+ is_auto_forward_agent_replies_enabled?: boolean;
2216
2231
  priority?: number;
2217
2232
  }
2218
2233
  /**
@@ -2413,6 +2428,12 @@ interface DispatchMeetingBotRequest {
2413
2428
  meeting_url: string;
2414
2429
  title?: string;
2415
2430
  join_at?: string;
2431
+ /**
2432
+ * BCP-47 spoken-language hint for transcription (e.g. 'en', 'de'). Omit to
2433
+ * auto-detect (Deepgram multilingual). Only used when the deployment's
2434
+ * transcription provider is deepgram_streaming.
2435
+ */
2436
+ language?: string;
2416
2437
  }
2417
2438
 
2418
2439
  /**
package/dist/index.d.ts CHANGED
@@ -2133,6 +2133,13 @@ interface AgentListener {
2133
2133
  /** The user the dispatcher acts as when driving the agent. */
2134
2134
  acting_user: UserRef$1;
2135
2135
  is_enabled: boolean;
2136
+ /**
2137
+ * How the agent's reply reaches the conversation. `true` (default) ⇒ the
2138
+ * platform posts the agent's text reply automatically. `false` ⇒ the platform
2139
+ * forwards nothing; the agent is told (in the session preamble) to reply
2140
+ * itself via the send_message/reply tool.
2141
+ */
2142
+ is_auto_forward_agent_replies_enabled: boolean;
2136
2143
  priority: number;
2137
2144
  created_at: string;
2138
2145
  created_by: UserRef$1;
@@ -2202,6 +2209,12 @@ interface CreateAgentListenerRequest {
2202
2209
  acting_user_id: string;
2203
2210
  /** Omit to default to enabled. */
2204
2211
  is_enabled?: boolean;
2212
+ /**
2213
+ * Whether the platform auto-forwards the agent's text reply. Omit to default
2214
+ * to `true` (historic behavior). `false` ⇒ the agent replies itself via the
2215
+ * send_message/reply tool.
2216
+ */
2217
+ is_auto_forward_agent_replies_enabled?: boolean;
2205
2218
  priority?: number;
2206
2219
  }
2207
2220
  interface UpdateAgentListenerRequest {
@@ -2213,6 +2226,8 @@ interface UpdateAgentListenerRequest {
2213
2226
  wake_phrase?: string;
2214
2227
  acting_user_id?: string;
2215
2228
  is_enabled?: boolean;
2229
+ /** Toggle whether the platform auto-forwards the agent's text reply. */
2230
+ is_auto_forward_agent_replies_enabled?: boolean;
2216
2231
  priority?: number;
2217
2232
  }
2218
2233
  /**
@@ -2413,6 +2428,12 @@ interface DispatchMeetingBotRequest {
2413
2428
  meeting_url: string;
2414
2429
  title?: string;
2415
2430
  join_at?: string;
2431
+ /**
2432
+ * BCP-47 spoken-language hint for transcription (e.g. 'en', 'de'). Omit to
2433
+ * auto-detect (Deepgram multilingual). Only used when the deployment's
2434
+ * transcription provider is deepgram_streaming.
2435
+ */
2436
+ language?: string;
2416
2437
  }
2417
2438
 
2418
2439
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@proteos/sdk",
3
- "version": "0.20.1",
3
+ "version": "0.20.3",
4
4
  "license": "Apache-2.0",
5
5
  "description": "TypeScript SDK for the Proteos platform",
6
6
  "repository": {
@@ -350,6 +350,13 @@ export interface AgentListener {
350
350
  /** The user the dispatcher acts as when driving the agent. */
351
351
  acting_user: UserRef
352
352
  is_enabled: boolean
353
+ /**
354
+ * How the agent's reply reaches the conversation. `true` (default) ⇒ the
355
+ * platform posts the agent's text reply automatically. `false` ⇒ the platform
356
+ * forwards nothing; the agent is told (in the session preamble) to reply
357
+ * itself via the send_message/reply tool.
358
+ */
359
+ is_auto_forward_agent_replies_enabled: boolean
353
360
  priority: number
354
361
  created_at: string
355
362
  created_by: UserRef
@@ -424,6 +431,12 @@ export interface CreateAgentListenerRequest {
424
431
  acting_user_id: string
425
432
  /** Omit to default to enabled. */
426
433
  is_enabled?: boolean
434
+ /**
435
+ * Whether the platform auto-forwards the agent's text reply. Omit to default
436
+ * to `true` (historic behavior). `false` ⇒ the agent replies itself via the
437
+ * send_message/reply tool.
438
+ */
439
+ is_auto_forward_agent_replies_enabled?: boolean
427
440
  priority?: number
428
441
  }
429
442
 
@@ -436,6 +449,8 @@ export interface UpdateAgentListenerRequest {
436
449
  wake_phrase?: string
437
450
  acting_user_id?: string
438
451
  is_enabled?: boolean
452
+ /** Toggle whether the platform auto-forwards the agent's text reply. */
453
+ is_auto_forward_agent_replies_enabled?: boolean
439
454
  priority?: number
440
455
  }
441
456
 
@@ -669,4 +684,10 @@ export interface DispatchMeetingBotRequest {
669
684
  meeting_url: string
670
685
  title?: string
671
686
  join_at?: string
687
+ /**
688
+ * BCP-47 spoken-language hint for transcription (e.g. 'en', 'de'). Omit to
689
+ * auto-detect (Deepgram multilingual). Only used when the deployment's
690
+ * transcription provider is deepgram_streaming.
691
+ */
692
+ language?: string
672
693
  }