@amigo-ai/platform-sdk 0.7.0 → 0.8.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.
@@ -6964,7 +6964,7 @@ export interface paths {
6964
6964
  };
6965
6965
  /**
6966
6966
  * List Trigger Runs
6967
- * @description Execution history query Delta world_events for this trigger's lifecycle events.
6967
+ * @description Execution history from the Lakebase entity-event timeline read model.
6968
6968
  */
6969
6969
  get: operations["list_trigger_runs_v1__workspace_id__triggers__trigger_id__runs_get"];
6970
6970
  put?: never;
@@ -7303,7 +7303,7 @@ export interface paths {
7303
7303
  };
7304
7304
  /**
7305
7305
  * List Deliveries
7306
- * @description Delivery history query Delta world_events for this destination's webhook receives.
7306
+ * @description Delivery history from the Lakebase entity-event timeline read model.
7307
7307
  */
7308
7308
  get: operations["list_deliveries_v1__workspace_id__webhook_destinations__destination_id__deliveries_get"];
7309
7309
  put?: never;
@@ -21909,8 +21909,27 @@ export interface components {
21909
21909
  /** Source System */
21910
21910
  source_system?: string | null;
21911
21911
  };
21912
+ /** TimelineActor */
21913
+ TimelineActor: {
21914
+ /**
21915
+ * Kind
21916
+ * @enum {string}
21917
+ */
21918
+ kind: "agent" | "human" | "operator" | "system" | "tool";
21919
+ /** Label */
21920
+ label: string;
21921
+ /** Participant Id */
21922
+ participant_id?: string | null;
21923
+ /**
21924
+ * Role
21925
+ * @enum {string}
21926
+ */
21927
+ role: "agent" | "caller" | "operator" | "runtime" | "state" | "tool";
21928
+ };
21912
21929
  /** TimelineSegment */
21913
21930
  TimelineSegment: {
21931
+ /** @description Actor responsible for the segment. Inferred for legacy producers. */
21932
+ actor?: components["schemas"]["TimelineActor"] | null;
21914
21933
  /** Audio Ttfb Ms */
21915
21934
  audio_ttfb_ms?: number | null;
21916
21935
  /** Audio Window End */
@@ -21933,8 +21952,11 @@ export interface components {
21933
21952
  from_state?: string | null;
21934
21953
  /** Label */
21935
21954
  label: string;
21936
- /** Lane */
21937
- lane: string;
21955
+ /**
21956
+ * Lane
21957
+ * @enum {string}
21958
+ */
21959
+ lane: "agent" | "caller" | "events" | "operator" | "system" | "tool";
21938
21960
  /** Nav Ms */
21939
21961
  nav_ms?: number | null;
21940
21962
  /** Render Ms */
@@ -21951,10 +21973,18 @@ export interface components {
21951
21973
  to_state?: string | null;
21952
21974
  /** Tool Name */
21953
21975
  tool_name?: string | null;
21976
+ /**
21977
+ * Track
21978
+ * @description Actor-semantic display track for the segment. Inferred for legacy producers.
21979
+ */
21980
+ track?: ("agent" | "caller" | "operator" | "system" | "tool") | null;
21954
21981
  /** Turn Index */
21955
21982
  turn_index: number;
21956
- /** Type */
21957
- type: string;
21983
+ /**
21984
+ * Type
21985
+ * @enum {string}
21986
+ */
21987
+ type: "agent_speech" | "barge_in" | "caller_speech" | "filler_hesitation" | "filler_nav" | "greeting" | "interrupted_speech" | "processing_gap" | "silence" | "silence_check" | "state_transition" | "tool_call";
21958
21988
  /** Valence */
21959
21989
  valence?: number | null;
21960
21990
  };