@amigo-ai/platform-sdk 0.48.3 → 0.48.4

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.
@@ -8791,6 +8791,8 @@ export interface components {
8791
8791
  name: string;
8792
8792
  /** Objective */
8793
8793
  objective: string;
8794
+ /** Preload */
8795
+ preload?: components["schemas"]["PreloadSpec"][];
8794
8796
  /** Surface Spec Template */
8795
8797
  surface_spec_template?: {
8796
8798
  [key: string]: unknown;
@@ -8843,6 +8845,8 @@ export interface components {
8843
8845
  name: string;
8844
8846
  /** Objective */
8845
8847
  objective: string;
8848
+ /** Preload */
8849
+ preload?: components["schemas"]["PreloadSpec"][];
8846
8850
  /** Surface Spec Template */
8847
8851
  surface_spec_template?: {
8848
8852
  [key: string]: unknown;
@@ -21077,6 +21081,24 @@ export interface components {
21077
21081
  */
21078
21082
  workspace_id: string;
21079
21083
  };
21084
+ /**
21085
+ * PreloadSpec
21086
+ * @description A tool call executed deterministically by the engine on state entry.
21087
+ *
21088
+ * Unlike LLM-driven tool calls, preloads run before any LLM turn —
21089
+ * the results appear in the interaction log so the engage LLM sees
21090
+ * them as pre-loaded context. All preloads in a state execute in
21091
+ * parallel. Param values support ``{caller_mrn}`` and ``{entity_id}``
21092
+ * template variables resolved from the session's caller context.
21093
+ */
21094
+ PreloadSpec: {
21095
+ /** Params */
21096
+ params?: {
21097
+ [key: string]: unknown;
21098
+ };
21099
+ /** Tool Id */
21100
+ tool_id: string;
21101
+ };
21080
21102
  /** PrevalenceResponse */
21081
21103
  PrevalenceResponse: {
21082
21104
  /** Count */
@@ -49296,6 +49318,8 @@ export interface operations {
49296
49318
  q?: string | null;
49297
49319
  limit?: number;
49298
49320
  offset?: number;
49321
+ /** @description Sort order (PostgREST-style, e.g. last_event_at.desc, display_name.asc) */
49322
+ order?: string | null;
49299
49323
  /** @description Filter by has_projection flag */
49300
49324
  has_projection?: boolean | null;
49301
49325
  /** @description Filter by event source (e.g. voice_agent, connector_runner) */