@amigo-ai/platform-sdk 0.102.0 → 0.103.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.
Files changed (34) hide show
  1. package/dist/index.cjs +11 -2
  2. package/dist/index.cjs.map +2 -2
  3. package/dist/index.js +1 -0
  4. package/dist/index.js.map +1 -1
  5. package/dist/index.mjs +11 -2
  6. package/dist/index.mjs.map +2 -2
  7. package/dist/resources/agent-runs.js +10 -0
  8. package/dist/resources/agent-runs.js.map +1 -1
  9. package/dist/resources/voice.js +5 -6
  10. package/dist/resources/voice.js.map +1 -1
  11. package/dist/types/generated/api.d.ts +911 -65
  12. package/dist/types/generated/api.d.ts.map +1 -1
  13. package/dist/types/index.d.cts +2 -0
  14. package/dist/types/index.d.cts.map +1 -1
  15. package/dist/types/index.d.ts +2 -0
  16. package/dist/types/index.d.ts.map +1 -1
  17. package/dist/types/resources/agent-runs.d.ts +8 -0
  18. package/dist/types/resources/agent-runs.d.ts.map +1 -1
  19. package/dist/types/resources/agents.d.ts +4 -4
  20. package/dist/types/resources/analytics.d.ts +25 -1
  21. package/dist/types/resources/analytics.d.ts.map +1 -1
  22. package/dist/types/resources/external-integrations.d.ts.map +1 -1
  23. package/dist/types/resources/intake.d.ts.map +1 -1
  24. package/dist/types/resources/integrations.d.ts.map +1 -1
  25. package/dist/types/resources/metrics.d.ts.map +1 -1
  26. package/dist/types/resources/operators.d.ts.map +1 -1
  27. package/dist/types/resources/services.d.ts +160 -10
  28. package/dist/types/resources/services.d.ts.map +1 -1
  29. package/dist/types/resources/settings.d.ts.map +1 -1
  30. package/dist/types/resources/surfaces.d.ts.map +1 -1
  31. package/dist/types/resources/voice.d.ts +1 -1
  32. package/dist/types/resources/voice.d.ts.map +1 -1
  33. package/dist/types/resources/world.d.ts.map +1 -1
  34. package/package.json +1 -1
@@ -798,7 +798,7 @@ export interface paths {
798
798
  put?: never;
799
799
  /**
800
800
  * Dispatch a framework agent run
801
- * @description Proxies to agent-runner, which executes the chosen framework UNMODIFIED (natural setup) against the platform MCP world-tools edge under the caller's own bearer. Non-blocking — poll GET /agent-runs/{run_id} for the result.
801
+ * @description Proxies to agent-runner, where the chosen SDK owns its autonomous loop inside a platform-controlled prompt/model/tool/auth/timeout envelope. Capabilities come from Platform MCP under the caller's bearer. Non-blocking — poll GET /agent-runs/{run_id} for the result.
802
802
  */
803
803
  post: operations["create_agent_run_v1__workspace_id__agent_runs_post"];
804
804
  delete?: never;
@@ -816,7 +816,7 @@ export interface paths {
816
816
  };
817
817
  /**
818
818
  * Fetch the neutral session-bootstrap context for a service
819
- * @description The retrievable CONTEXT edge of the world-model harness: identity + reference instructions, world scope, tool descriptors, guardrails, and the REAL server-enforced write-floor the byte-identical projection the hosted runner renders from, so a customer's own framework can bootstrap a session against the same world model. PHI-free (the API-run projection carries no scoped entities or rendered caller prose).
819
+ * @description The retrievable CONTEXT edge of the world-model harness: identity + reference instructions, world scope, tool descriptors, guardrails, and an MCP write-policy summary. It shares the HarnessContext schema with the hosted harness but is not byte-identical to a hosted render: this REST path does not resolve the runner's engage-model preference. PHI-free (the API-run projection carries no scoped entities or rendered caller prose).
820
820
  */
821
821
  get: operations["get_harness_context_v1__workspace_id__agent_runs_harness_context_get"];
822
822
  put?: never;
@@ -836,7 +836,7 @@ export interface paths {
836
836
  };
837
837
  /**
838
838
  * Get a framework agent run
839
- * @description Run status, final text, token usage, and the adapter-normalized trajectory of the framework's native output.
839
+ * @description Run status, final text, token usage, and the runner-normalized trajectory of framework-native output.
840
840
  */
841
841
  get: operations["get_agent_run_v1__workspace_id__agent_runs__run_id__get"];
842
842
  put?: never;
@@ -1103,6 +1103,26 @@ export interface paths {
1103
1103
  patch?: never;
1104
1104
  trace?: never;
1105
1105
  };
1106
+ "/v1/{workspace_id}/analytics/eval-quality": {
1107
+ parameters: {
1108
+ query?: never;
1109
+ header?: never;
1110
+ path?: never;
1111
+ cookie?: never;
1112
+ };
1113
+ /**
1114
+ * Eval Quality Analytics
1115
+ * @description Production-eval pass-rate and score trends (channel-agnostic — voice, text, SMS, email).
1116
+ */
1117
+ get: operations["get-eval-quality-analytics"];
1118
+ put?: never;
1119
+ post?: never;
1120
+ delete?: never;
1121
+ options?: never;
1122
+ head?: never;
1123
+ patch?: never;
1124
+ trace?: never;
1125
+ };
1106
1126
  "/v1/{workspace_id}/analytics/events": {
1107
1127
  parameters: {
1108
1128
  query?: never;
@@ -2550,6 +2570,42 @@ export interface paths {
2550
2570
  patch?: never;
2551
2571
  trace?: never;
2552
2572
  };
2573
+ "/v1/{workspace_id}/external-identity-bindings": {
2574
+ parameters: {
2575
+ query?: never;
2576
+ header?: never;
2577
+ path?: never;
2578
+ cookie?: never;
2579
+ };
2580
+ /** List External Identity Bindings */
2581
+ get: operations["list-external-identity-bindings"];
2582
+ /** Upsert External Identity Binding */
2583
+ put: operations["upsert-external-identity-binding"];
2584
+ post?: never;
2585
+ delete?: never;
2586
+ options?: never;
2587
+ head?: never;
2588
+ patch?: never;
2589
+ trace?: never;
2590
+ };
2591
+ "/v1/{workspace_id}/external-identity-bindings/{binding_id}": {
2592
+ parameters: {
2593
+ query?: never;
2594
+ header?: never;
2595
+ path?: never;
2596
+ cookie?: never;
2597
+ };
2598
+ /** Get External Identity Binding */
2599
+ get: operations["get-external-identity-binding"];
2600
+ put?: never;
2601
+ post?: never;
2602
+ /** Delete External Identity Binding */
2603
+ delete: operations["delete-external-identity-binding"];
2604
+ options?: never;
2605
+ head?: never;
2606
+ patch?: never;
2607
+ trace?: never;
2608
+ };
2553
2609
  "/v1/{workspace_id}/external-integrations": {
2554
2610
  parameters: {
2555
2611
  query?: never;
@@ -5516,6 +5572,26 @@ export interface paths {
5516
5572
  patch?: never;
5517
5573
  trace?: never;
5518
5574
  };
5575
+ "/v1/{workspace_id}/services/{service_id}/conversation-starters": {
5576
+ parameters: {
5577
+ query?: never;
5578
+ header?: never;
5579
+ path?: never;
5580
+ cookie?: never;
5581
+ };
5582
+ get?: never;
5583
+ put?: never;
5584
+ /**
5585
+ * Get conversation starters
5586
+ * @description Return structured pre-conversation starter chips for a service and optional entity. When service config includes conversation_starter_prompts and an entity_id is supplied, the endpoint reads entity context and generates starters before falling back to configured starters. Selecting a starter should create a conversation and send the starter value as the first user message. Requires `Service.view` permission.
5587
+ */
5588
+ post: operations["list-conversation-starters"];
5589
+ delete?: never;
5590
+ options?: never;
5591
+ head?: never;
5592
+ patch?: never;
5593
+ trace?: never;
5594
+ };
5519
5595
  "/v1/{workspace_id}/services/{service_id}/text-turn": {
5520
5596
  parameters: {
5521
5597
  query?: never;
@@ -7845,6 +7921,26 @@ export interface paths {
7845
7921
  patch?: never;
7846
7922
  trace?: never;
7847
7923
  };
7924
+ "/v1/{workspace_id}/world/migration/conversations": {
7925
+ parameters: {
7926
+ query?: never;
7927
+ header?: never;
7928
+ path?: never;
7929
+ cookie?: never;
7930
+ };
7931
+ get?: never;
7932
+ put?: never;
7933
+ /**
7934
+ * Bulk-import v1 conversation envelopes for migrated patients
7935
+ * @description Writes one terminal world.conversations row per v1 conversation (real dates, provider='v1-migration'), giving the returning-user greeting and the real conversation list. Admin-only, idempotent + correctable per (workspace, v1 conversation id), memory-safe (no world events emitted → the memory extractor never re-derives from these). Transcript content (turns) is a separate follow-up. Batch size <= 500.
7936
+ */
7937
+ post: operations["bulk-import-migration-conversations"];
7938
+ delete?: never;
7939
+ options?: never;
7940
+ head?: never;
7941
+ patch?: never;
7942
+ trace?: never;
7943
+ };
7848
7944
  "/v1/{workspace_id}/world/search": {
7849
7945
  parameters: {
7850
7946
  query?: never;
@@ -8503,7 +8599,7 @@ export interface components {
8503
8599
  text?: string;
8504
8600
  /**
8505
8601
  * Trajectory
8506
- * @description AgentEffect-shaped step dicts (kind, seq, content, tool_name, ...) — the adapter's normalize() over the framework's NATIVE output. Untyped passthrough in v1: the AgentEffect projection is a server-private shape still converging across frameworks; typing it here now would freeze a premature wire contract. A typed discriminated union lands in a follow-up.
8602
+ * @description AgentEffect-shaped step dicts (kind, seq, content, tool_name, ...) — the runner normalizer's projection of framework-native output. Untyped passthrough in v1: the AgentEffect projection is a server-private shape still converging across frameworks; typing it here now would freeze a premature wire contract. A typed discriminated union lands in a follow-up.
8507
8603
  * @default []
8508
8604
  */
8509
8605
  trajectory?: {
@@ -8638,6 +8734,54 @@ export interface components {
8638
8734
  workspace_id: string;
8639
8735
  };
8640
8736
  AlterAction: components["schemas"]["AddColumnAction"] | components["schemas"]["DropColumnAction"] | components["schemas"]["RenameColumnAction"] | components["schemas"]["ChangeColumnTypeAction"] | components["schemas"]["SetColumnNullableAction"] | components["schemas"]["SetColumnDefaultAction"] | components["schemas"]["DropColumnDefaultAction"] | components["schemas"]["AddUniqueAction"] | components["schemas"]["DropConstraintAction"] | components["schemas"]["AddIndexAction"] | components["schemas"]["DropIndexAction"];
8737
+ /**
8738
+ * AnalyticsDashboardResponse
8739
+ * @description Composite dashboard — six headline KPIs, each with a delta, plus the period length.
8740
+ *
8741
+ * Higher-is-better for ``call_volume``, ``avg_quality``, ``tool_success_rate``;
8742
+ * higher-is-worse for ``escalation_rate``, ``avg_ttfb_ms``, ``avg_duration_s``.
8743
+ * Consumers must color deltas by that per-KPI polarity, not by delta sign alone.
8744
+ */
8745
+ AnalyticsDashboardResponse: {
8746
+ /** @description Average call duration in seconds */
8747
+ avg_duration_s: components["schemas"]["AnalyticsKpi"];
8748
+ /** @description Average quality score (0-100); higher is better */
8749
+ avg_quality: components["schemas"]["AnalyticsKpi"];
8750
+ /** @description Average audio time-to-first-byte in ms; lower is better */
8751
+ avg_ttfb_ms: components["schemas"]["AnalyticsKpi"];
8752
+ /** @description Total calls in the period */
8753
+ call_volume: components["schemas"]["AnalyticsKpi"];
8754
+ /** @description Fraction of calls escalated; lower is better */
8755
+ escalation_rate: components["schemas"]["AnalyticsKpi"];
8756
+ /**
8757
+ * Period Days
8758
+ * @description Length of the reporting period in days
8759
+ */
8760
+ period_days: number;
8761
+ /** @description Fraction of tool calls that succeeded; higher is better */
8762
+ tool_success_rate: components["schemas"]["AnalyticsKpi"];
8763
+ };
8764
+ /**
8765
+ * AnalyticsKpi
8766
+ * @description A single headline KPI with its period-over-period change.
8767
+ *
8768
+ * ``value`` is left broad (int for counts, float for rates/scores/durations,
8769
+ * ``None`` when the metric has no data for the period). ``delta_pct`` is the
8770
+ * signed percent change vs the previous equal-length period, or ``None`` when
8771
+ * a prior-period comparison is unavailable.
8772
+ */
8773
+ AnalyticsKpi: {
8774
+ /**
8775
+ * Delta Pct
8776
+ * @description Percent change vs the previous period, or None
8777
+ */
8778
+ delta_pct?: number | null;
8779
+ /**
8780
+ * Value
8781
+ * @description Current-period value (None when no data)
8782
+ */
8783
+ value?: number | null;
8784
+ };
8641
8785
  /**
8642
8786
  * AnnotationState
8643
8787
  * @description Injects a hardcoded inner thought (no LLM call).
@@ -9063,6 +9207,20 @@ export interface components {
9063
9207
  */
9064
9208
  workspace_id: string;
9065
9209
  };
9210
+ /** BindingUpsertRequest */
9211
+ BindingUpsertRequest: {
9212
+ /** Display Name */
9213
+ display_name?: string | null;
9214
+ /**
9215
+ * Entity Id
9216
+ * Format: uuid
9217
+ */
9218
+ entity_id: string;
9219
+ /** External Subject Key */
9220
+ external_subject_key: string;
9221
+ /** Source */
9222
+ source?: string | null;
9223
+ };
9066
9224
  /** Body_upload_intake_file_v1__workspace_id__intake_files_post */
9067
9225
  Body_upload_intake_file_v1__workspace_id__intake_files_post: {
9068
9226
  /** Dataset */
@@ -11183,6 +11341,69 @@ export interface components {
11183
11341
  updated_at: string;
11184
11342
  voice?: components["schemas"]["VoiceDetail"] | null;
11185
11343
  };
11344
+ /** ConversationStarter */
11345
+ ConversationStarter: {
11346
+ /** Label */
11347
+ label: string;
11348
+ /**
11349
+ * Lane
11350
+ * @default general
11351
+ * @enum {string}
11352
+ */
11353
+ lane?: "data" | "goal" | "protocol" | "care" | "general";
11354
+ /** Metadata */
11355
+ metadata?: {
11356
+ [key: string]: unknown;
11357
+ };
11358
+ /** Referenced Objects */
11359
+ referenced_objects?: string[];
11360
+ /**
11361
+ * Source
11362
+ * @default configured
11363
+ * @enum {string}
11364
+ */
11365
+ source?: "recent_data" | "hypothesis" | "goal" | "protocol" | "care" | "generated" | "deterministic" | "configured";
11366
+ /** Value */
11367
+ value: string;
11368
+ };
11369
+ /** ConversationStartersRequest */
11370
+ ConversationStartersRequest: {
11371
+ /** Entity Id */
11372
+ entity_id?: string | null;
11373
+ /**
11374
+ * Generation Mode
11375
+ * @default auto
11376
+ * @enum {string}
11377
+ */
11378
+ generation_mode?: "auto" | "generate" | "configured";
11379
+ /**
11380
+ * Include Deterministic
11381
+ * @default true
11382
+ */
11383
+ include_deterministic?: boolean;
11384
+ /**
11385
+ * Max Count
11386
+ * @default 5
11387
+ */
11388
+ max_count?: number;
11389
+ };
11390
+ /** ConversationStartersResponse */
11391
+ ConversationStartersResponse: {
11392
+ /** Entity Id */
11393
+ entity_id?: string | null;
11394
+ /**
11395
+ * Service Id
11396
+ * Format: uuid
11397
+ */
11398
+ service_id: string;
11399
+ /** Starters */
11400
+ starters: components["schemas"]["ConversationStarter"][];
11401
+ /**
11402
+ * Workspace Id
11403
+ * Format: uuid
11404
+ */
11405
+ workspace_id: string;
11406
+ };
11186
11407
  /** ConversationStatusTransitionRequest */
11187
11408
  ConversationStatusTransitionRequest: {
11188
11409
  /**
@@ -14572,6 +14793,96 @@ export interface components {
14572
14793
  */
14573
14794
  workspace_id: string;
14574
14795
  };
14796
+ /**
14797
+ * EvalQualityResponse
14798
+ * @description Production-eval quality: overall pass-rate/score, per-eval-key breakdown, and a trend.
14799
+ *
14800
+ * The channel-agnostic quality surface. Returns zeroed shapes (empty ``by_eval_key``
14801
+ * and ``trend``, null rates) when no verdicts exist for the workspace/window — the
14802
+ * console renders an empty-state rather than erroring, so this ships safely ahead of
14803
+ * the eager-eval trigger being enabled in production.
14804
+ */
14805
+ EvalQualityResponse: {
14806
+ /**
14807
+ * By Eval Key
14808
+ * @description Per-eval-key aggregates, most-evaluated first
14809
+ */
14810
+ by_eval_key: components["schemas"]["EvalQualitySummary"][];
14811
+ /** @description Workspace-wide aggregate for the period */
14812
+ summary: components["schemas"]["EvalQualitySummary"];
14813
+ /**
14814
+ * Trend
14815
+ * @description Time series of eval pass-rate/score per interval bucket
14816
+ */
14817
+ trend: components["schemas"]["EvalQualityTrendPoint"][];
14818
+ };
14819
+ /**
14820
+ * EvalQualitySummary
14821
+ * @description Aggregate production-eval verdict stats, overall or for one eval_key.
14822
+ *
14823
+ * Sourced from ``call_eval_results`` (LLM-judge + assertion verdicts), which is
14824
+ * keyed by ``conversation_id`` and therefore CHANNEL-AGNOSTIC — voice, text,
14825
+ * SMS, email all contribute equally, unlike the voice-shaped call-quality score.
14826
+ */
14827
+ EvalQualitySummary: {
14828
+ /**
14829
+ * Avg Score
14830
+ * @description Mean numeric judge score across scored verdicts
14831
+ */
14832
+ avg_score?: number | null;
14833
+ /**
14834
+ * Eval Key
14835
+ * @description Eval key for a per-key row; null for the overall summary
14836
+ */
14837
+ eval_key?: string | null;
14838
+ /**
14839
+ * Judged
14840
+ * @description Verdicts with a non-null pass/fail outcome (denominator for pass_rate)
14841
+ */
14842
+ judged: number;
14843
+ /**
14844
+ * Pass Rate
14845
+ * @description Fraction of judged verdicts that passed (0.0-1.0)
14846
+ */
14847
+ pass_rate?: number | null;
14848
+ /**
14849
+ * Total Evals
14850
+ * @description Total verdicts recorded (any status, incl. errored)
14851
+ */
14852
+ total_evals: number;
14853
+ };
14854
+ /**
14855
+ * EvalQualityTrendPoint
14856
+ * @description Single date-bucket data point in the eval-quality trend series.
14857
+ */
14858
+ EvalQualityTrendPoint: {
14859
+ /**
14860
+ * Avg Score
14861
+ * @description Mean numeric judge score in this bucket
14862
+ */
14863
+ avg_score?: number | null;
14864
+ /**
14865
+ * Date
14866
+ * Format: date
14867
+ * @description Date bucket (granularity follows `interval`)
14868
+ */
14869
+ date: string;
14870
+ /**
14871
+ * Judged
14872
+ * @description Verdicts with a non-null pass/fail outcome in this bucket
14873
+ */
14874
+ judged: number;
14875
+ /**
14876
+ * Pass Rate
14877
+ * @description Fraction of judged verdicts that passed in this bucket
14878
+ */
14879
+ pass_rate?: number | null;
14880
+ /**
14881
+ * Total Evals
14882
+ * @description Total verdicts in this bucket
14883
+ */
14884
+ total_evals: number;
14885
+ };
14575
14886
  /**
14576
14887
  * EvaluationResultView
14577
14888
  * @description One check as the console renders it, derived from a single eval result.
@@ -14742,6 +15053,49 @@ export interface components {
14742
15053
  */
14743
15054
  recommend_candidates?: number;
14744
15055
  };
15056
+ /** ExternalIdentityBindingItem */
15057
+ ExternalIdentityBindingItem: {
15058
+ /**
15059
+ * Created At
15060
+ * Format: date-time
15061
+ */
15062
+ created_at: string;
15063
+ /** Display Name */
15064
+ display_name?: string | null;
15065
+ /**
15066
+ * Entity Id
15067
+ * Format: uuid
15068
+ */
15069
+ entity_id: string;
15070
+ /** External Subject Key */
15071
+ external_subject_key: string;
15072
+ /**
15073
+ * Id
15074
+ * Format: uuid
15075
+ */
15076
+ id: string;
15077
+ /** Source */
15078
+ source?: string | null;
15079
+ /**
15080
+ * Status
15081
+ * @enum {string}
15082
+ */
15083
+ status: "active" | "revoked";
15084
+ /**
15085
+ * Updated At
15086
+ * Format: date-time
15087
+ */
15088
+ updated_at: string;
15089
+ };
15090
+ /** ExternalIdentityBindingListResponse */
15091
+ ExternalIdentityBindingListResponse: {
15092
+ /** Continuation Token */
15093
+ continuation_token?: unknown;
15094
+ /** Has More */
15095
+ has_more: boolean;
15096
+ /** Items */
15097
+ items: components["schemas"]["ExternalIdentityBindingItem"][];
15098
+ };
14745
15099
  /** ExternalIntegrationCredentialRequest */
14746
15100
  ExternalIntegrationCredentialRequest: {
14747
15101
  /** Expires At */
@@ -16228,7 +16582,7 @@ export interface components {
16228
16582
  };
16229
16583
  /**
16230
16584
  * HarnessContext
16231
- * @description The neutral, retrievable session-bootstrap context for ANY framework.
16585
+ * @description A framework-neutral, retrievable service bootstrap projection.
16232
16586
  */
16233
16587
  HarnessContext: {
16234
16588
  /**
@@ -16584,6 +16938,11 @@ export interface components {
16584
16938
  * @description source_id.
16585
16939
  */
16586
16940
  id: string;
16941
+ /**
16942
+ * Impersonate Subject
16943
+ * @description DWD impersonation subject, if this source authenticates via domain-wide delegation.
16944
+ */
16945
+ impersonate_subject?: string | null;
16587
16946
  /** Source Type */
16588
16947
  source_type: string;
16589
16948
  /** Status */
@@ -17888,6 +18247,47 @@ export interface components {
17888
18247
  /** Definitions */
17889
18248
  definitions: components["schemas"]["MetricDefinition"][];
17890
18249
  };
18250
+ /** MigrationConversationItem */
18251
+ MigrationConversationItem: {
18252
+ /** @default web */
18253
+ channel_kind?: components["schemas"]["ChannelKind"];
18254
+ /**
18255
+ * Ended At
18256
+ * Format: date-time
18257
+ */
18258
+ ended_at: string;
18259
+ /**
18260
+ * Entity Id
18261
+ * Format: uuid
18262
+ */
18263
+ entity_id: string;
18264
+ /** Source Conversation Id */
18265
+ source_conversation_id: string;
18266
+ /**
18267
+ * Started At
18268
+ * Format: date-time
18269
+ */
18270
+ started_at: string;
18271
+ /**
18272
+ * Turn Count
18273
+ * @default 0
18274
+ */
18275
+ turn_count?: number;
18276
+ };
18277
+ /** MigrationConversationsBody */
18278
+ MigrationConversationsBody: {
18279
+ /** Conversations */
18280
+ conversations: components["schemas"]["MigrationConversationItem"][];
18281
+ };
18282
+ /** MigrationConversationsResponse */
18283
+ MigrationConversationsResponse: {
18284
+ /** Created */
18285
+ created: number;
18286
+ /** Imported */
18287
+ imported: number;
18288
+ /** Updated */
18289
+ updated: number;
18290
+ };
17891
18291
  /** ModelRegistryResponse */
17892
18292
  ModelRegistryResponse: {
17893
18293
  /** Count */
@@ -20468,6 +20868,107 @@ export interface components {
20468
20868
  */
20469
20869
  territory_mean?: number;
20470
20870
  };
20871
+ /**
20872
+ * RealtimeCustomVoice
20873
+ * @description Approved OpenAI custom voice reference.
20874
+ */
20875
+ RealtimeCustomVoice: {
20876
+ /** Id */
20877
+ id: string;
20878
+ };
20879
+ /**
20880
+ * RealtimeSemanticVadConfig
20881
+ * @description Semantic turn detection controls.
20882
+ */
20883
+ RealtimeSemanticVadConfig: {
20884
+ /**
20885
+ * Eagerness
20886
+ * @default auto
20887
+ * @enum {string}
20888
+ */
20889
+ eagerness?: "auto" | "low" | "medium" | "high";
20890
+ /**
20891
+ * @description discriminator enum property added by openapi-typescript
20892
+ * @enum {string}
20893
+ */
20894
+ type: "semantic_vad";
20895
+ };
20896
+ /**
20897
+ * RealtimeServerVadConfig
20898
+ * @description Volume-based turn detection controls.
20899
+ */
20900
+ RealtimeServerVadConfig: {
20901
+ /** Idle Timeout Ms */
20902
+ idle_timeout_ms?: number | null;
20903
+ /** Prefix Padding Ms */
20904
+ prefix_padding_ms?: number | null;
20905
+ /** Silence Duration Ms */
20906
+ silence_duration_ms?: number | null;
20907
+ /** Threshold */
20908
+ threshold?: number | null;
20909
+ /**
20910
+ * @description discriminator enum property added by openapi-typescript
20911
+ * @enum {string}
20912
+ */
20913
+ type: "server_vad";
20914
+ };
20915
+ /**
20916
+ * RealtimeSessionConfig
20917
+ * @description Typed OpenAI Realtime session controls for a service.
20918
+ */
20919
+ RealtimeSessionConfig: {
20920
+ /** Max Output Tokens */
20921
+ max_output_tokens?: number | "inf" | null;
20922
+ /** Model */
20923
+ model?: ("gpt-realtime-1.5" | "gpt-realtime-2" | "gpt-realtime-2.1" | "gpt-realtime-2.1-mini") | null;
20924
+ /**
20925
+ * Noise Reduction
20926
+ * @description Input noise reduction. Omit or set null to use the Platform default; set 'off' to disable it.
20927
+ */
20928
+ noise_reduction?: ("near_field" | "far_field" | "off") | null;
20929
+ /** Reasoning Effort */
20930
+ reasoning_effort?: ("low" | "medium" | "high") | null;
20931
+ /** Speed */
20932
+ speed?: number | null;
20933
+ transcription?: components["schemas"]["RealtimeTranscriptionConfig"] | null;
20934
+ truncation?: components["schemas"]["RealtimeTruncationConfig"] | null;
20935
+ /** Turn Detection */
20936
+ turn_detection?: (components["schemas"]["RealtimeServerVadConfig"] | components["schemas"]["RealtimeSemanticVadConfig"]) | null;
20937
+ /** Voice */
20938
+ voice?: ("alloy" | "ash" | "ballad" | "coral" | "echo" | "sage" | "shimmer" | "verse" | "marin" | "cedar") | components["schemas"]["RealtimeCustomVoice"] | null;
20939
+ };
20940
+ /**
20941
+ * RealtimeTranscriptionConfig
20942
+ * @description Asynchronous caller-audio transcription used for transcripts and observability.
20943
+ */
20944
+ RealtimeTranscriptionConfig: {
20945
+ /** Language */
20946
+ language?: string | null;
20947
+ /**
20948
+ * Model
20949
+ * @default gpt-4o-transcribe
20950
+ * @enum {string}
20951
+ */
20952
+ model?: "whisper-1" | "gpt-4o-mini-transcribe" | "gpt-4o-transcribe";
20953
+ /** Prompt */
20954
+ prompt?: string | null;
20955
+ };
20956
+ /**
20957
+ * RealtimeTruncationConfig
20958
+ * @description Conversation context truncation strategy.
20959
+ */
20960
+ RealtimeTruncationConfig: {
20961
+ /** Post Instructions Tokens */
20962
+ post_instructions_tokens?: number | null;
20963
+ /** Retention Ratio */
20964
+ retention_ratio?: number | null;
20965
+ /**
20966
+ * Type
20967
+ * @default auto
20968
+ * @enum {string}
20969
+ */
20970
+ type?: "auto" | "disabled" | "retention_ratio";
20971
+ };
20471
20972
  /** RecommendRequest */
20472
20973
  RecommendRequest: {
20473
20974
  /**
@@ -20696,6 +21197,8 @@ export interface components {
20696
21197
  drive_id?: string | null;
20697
21198
  /** Folders */
20698
21199
  folders: components["schemas"]["DriveFolderMapping"][];
21200
+ /** Impersonate Subject */
21201
+ impersonate_subject?: string | null;
20699
21202
  };
20700
21203
  /**
20701
21204
  * RegisteredFunction
@@ -21188,7 +21691,7 @@ export interface components {
21188
21691
  };
21189
21692
  /**
21190
21693
  * Run
21191
- * @description The universal agent-run object.
21694
+ * @description One item in the canonical unified Runs read model.
21192
21695
  *
21193
21696
  * ``run_id`` is a dedicated UUID (not an overloaded ``call_sid`` / ``conversation_id``);
21194
21697
  * the originating subsystem's ids are kept as ``source_*`` provenance fields so a
@@ -22010,8 +22513,15 @@ export interface components {
22010
22513
  progress_interval_ms?: number | null;
22011
22514
  /** Progress Vocabulary */
22012
22515
  progress_vocabulary?: string[] | null;
22516
+ realtime?: components["schemas"]["RealtimeSessionConfig"] | null;
22517
+ /**
22518
+ * Realtime Voice
22519
+ * @deprecated
22520
+ * @description Deprecated built-in OpenAI Realtime voice shortcut. Use realtime.voice instead; the two fields are mutually exclusive.
22521
+ */
22522
+ realtime_voice?: ("alloy" | "ash" | "ballad" | "coral" | "echo" | "sage" | "shimmer" | "verse" | "marin" | "cedar") | null;
22013
22523
  /** Session Provider */
22014
- session_provider?: ("amigo" | "gpt_realtime" | "gpt_live") | null;
22524
+ session_provider?: ("amigo" | "gpt_realtime") | null;
22015
22525
  /** Transition Deadline Ms */
22016
22526
  transition_deadline_ms?: number | null;
22017
22527
  /** Tts Config */
@@ -22080,8 +22590,15 @@ export interface components {
22080
22590
  progress_interval_ms?: number | null;
22081
22591
  /** Progress Vocabulary */
22082
22592
  progress_vocabulary?: string[] | null;
22593
+ realtime?: components["schemas"]["RealtimeSessionConfig"] | null;
22594
+ /**
22595
+ * Realtime Voice
22596
+ * @deprecated
22597
+ * @description Deprecated built-in OpenAI Realtime voice shortcut. Use realtime.voice instead; the two fields are mutually exclusive.
22598
+ */
22599
+ realtime_voice?: ("alloy" | "ash" | "ballad" | "coral" | "echo" | "sage" | "shimmer" | "verse" | "marin" | "cedar") | null;
22083
22600
  /** Session Provider */
22084
- session_provider?: ("amigo" | "gpt_realtime" | "gpt_live") | null;
22601
+ session_provider?: ("amigo" | "gpt_realtime") | null;
22085
22602
  /** Transition Deadline Ms */
22086
22603
  transition_deadline_ms?: number | null;
22087
22604
  /** Tts Config */
@@ -22357,12 +22874,20 @@ export interface components {
22357
22874
  };
22358
22875
  /** SimMetricPerfResponse */
22359
22876
  SimMetricPerfResponse: {
22877
+ /**
22878
+ * Checks
22879
+ * @description Normalized per-check view of ``results`` (mirrors SimCaseAssertionResponse)
22880
+ * so the console renders each metric drill-down verdict without parsing raw shapes.
22881
+ */
22882
+ readonly checks: components["schemas"]["EvaluationResultView"][];
22360
22883
  /** Label */
22361
22884
  label: string;
22362
22885
  /** Metric Key */
22363
22886
  metric_key: string;
22364
22887
  /** Per Run */
22365
22888
  per_run?: components["schemas"]["SimMetricRunPointResponse"][];
22889
+ /** Results */
22890
+ results?: components["schemas"]["SimulationEvalResultResponse"][];
22366
22891
  };
22367
22892
  /**
22368
22893
  * SimMetricRunPointResponse
@@ -24750,9 +25275,10 @@ export interface components {
24750
25275
  *
24751
25276
  * ``eligible`` = an operator may take this run over right now. ``mode_options`` = the
24752
25277
  * takeover modes valid for the run's channel (voice exposes ``listen`` + ``takeover``;
24753
- * other channels none yet). ``reason`` = a short, human-facing explanation when NOT
24754
- * eligible (e.g. ``"run is not live"``, ``"channel not yet supported"``), so the
24755
- * console can render an honest disabled-state tooltip rather than a bare greyed button.
25278
+ * enumerated asynchronous channels expose authored-turn ``takeover`` only).
25279
+ * ``reason`` = a short, human-facing explanation when NOT eligible (e.g.
25280
+ * ``"run is not live"``, ``"channel not yet supported"``), so the console can
25281
+ * render an honest disabled-state tooltip rather than a bare greyed button.
24756
25282
  * Server-computed (see ``Run.takeover``) so eligibility rules live in one place and the
24757
25283
  * console never re-derives them.
24758
25284
  */
@@ -24913,6 +25439,11 @@ export interface components {
24913
25439
  * Format: uuid
24914
25440
  */
24915
25441
  conversation_id: string;
25442
+ /**
25443
+ * Delivery Id
25444
+ * @default null
25445
+ */
25446
+ delivery_id?: string | null;
24916
25447
  /**
24917
25448
  * @description discriminator enum property added by openapi-typescript
24918
25449
  * @enum {string}
@@ -26341,11 +26872,23 @@ export interface components {
26341
26872
  };
26342
26873
  /** TurnDoneEvent */
26343
26874
  TurnDoneEvent: {
26875
+ /**
26876
+ * Background Pending
26877
+ * @description True when the streamed response is only an acknowledgement and the final assistant answer must be collected with the durable background-delivery protocol.
26878
+ * @default false
26879
+ */
26880
+ background_pending?: boolean;
26344
26881
  /**
26345
26882
  * Conversation Id
26346
26883
  * Format: uuid
26347
26884
  */
26348
26885
  conversation_id: string;
26886
+ /**
26887
+ * Delivery Protocol Version
26888
+ * @description Version of the durable background-delivery protocol supported by the serving agent. Clients may retry receipt-backed polls only after observing version 2.
26889
+ * @default null
26890
+ */
26891
+ delivery_protocol_version?: 2 | null;
26349
26892
  /**
26350
26893
  * @description discriminator enum property added by openapi-typescript
26351
26894
  * @enum {string}
@@ -27260,12 +27803,6 @@ export interface components {
27260
27803
  llm_model_preferences?: {
27261
27804
  [key: string]: components["schemas"]["LLMConfig"];
27262
27805
  };
27263
- /**
27264
- * Turn Runtime
27265
- * @default native
27266
- * @enum {string}
27267
- */
27268
- turn_runtime?: "native" | "openai-agents";
27269
27806
  };
27270
27807
  /**
27271
27808
  * VersionSet
@@ -27280,12 +27817,6 @@ export interface components {
27280
27817
  llm_model_preferences?: {
27281
27818
  [key: string]: components["schemas"]["LLMConfig"];
27282
27819
  };
27283
- /**
27284
- * Turn Runtime
27285
- * @default native
27286
- * @enum {string}
27287
- */
27288
- turn_runtime?: "native" | "openai-agents";
27289
27820
  };
27290
27821
  /** VoiceConfig */
27291
27822
  VoiceConfig: {
@@ -27294,7 +27825,7 @@ export interface components {
27294
27825
  [key: string]: components["schemas"]["LanguageProviderEntry"];
27295
27826
  } | null;
27296
27827
  /** Session Provider */
27297
- session_provider?: ("amigo" | "gpt_realtime" | "gpt_live") | null;
27828
+ session_provider?: ("amigo" | "gpt_realtime") | null;
27298
27829
  /**
27299
27830
  * Similarity Boost
27300
27831
  * @default 0
@@ -27834,6 +28365,7 @@ export interface components {
27834
28365
  * WorldScope
27835
28366
  * @description The world slice — ids only (the leaf stays I/O-free). This is the
27836
28367
  * read/subject scope, NOT the write bound (see ``write_floor``).
28368
+ * ``allow_create`` records context intent and is not an authorization grant.
27837
28369
  */
27838
28370
  WorldScope: {
27839
28371
  /**
@@ -27877,8 +28409,11 @@ export interface components {
27877
28409
  };
27878
28410
  /**
27879
28411
  * WriteFloor
27880
- * @description The REAL server-enforced write bound (audit G8) advisory to render;
27881
- * the MCP edge enforces it regardless of what a client does.
28412
+ * @description A static summary of MCP write policy, advisory to the renderer.
28413
+ *
28414
+ * The MCP edge resolves the caller's actual principal and enforces the
28415
+ * result. These fields do not grant write access; hosted runner credentials
28416
+ * are currently unanchored and cannot perform provider-only clinical writes.
27882
28417
  */
27883
28418
  WriteFloor: {
27884
28419
  /**
@@ -28072,6 +28607,8 @@ export interface components {
28072
28607
  */
28073
28608
  workspace_id: string;
28074
28609
  };
28610
+ /** @enum {string} */
28611
+ src__routes__external_identity_bindings___SortField: "created_at" | "external_subject_key";
28075
28612
  /** ListResponse */
28076
28613
  src__routes__external_role_assignments__ListResponse: {
28077
28614
  /** Continuation Token */
@@ -31555,6 +32092,83 @@ export interface operations {
31555
32092
  cookie?: never;
31556
32093
  };
31557
32094
  requestBody?: never;
32095
+ responses: {
32096
+ /** @description Successful Response */
32097
+ 200: {
32098
+ headers: {
32099
+ [name: string]: unknown;
32100
+ };
32101
+ content: {
32102
+ "application/json": components["schemas"]["AnalyticsDashboardResponse"];
32103
+ };
32104
+ };
32105
+ /** @description Validation Error */
32106
+ 422: {
32107
+ headers: {
32108
+ [name: string]: unknown;
32109
+ };
32110
+ content: {
32111
+ "application/json": components["schemas"]["HTTPValidationError"];
32112
+ };
32113
+ };
32114
+ /** @description Rate limit exceeded */
32115
+ 429: {
32116
+ headers: {
32117
+ [name: string]: unknown;
32118
+ };
32119
+ content?: never;
32120
+ };
32121
+ };
32122
+ };
32123
+ data_quality_analytics_v1__workspace_id__analytics_data_quality_get: {
32124
+ parameters: {
32125
+ query?: {
32126
+ days?: number;
32127
+ };
32128
+ header?: never;
32129
+ path: {
32130
+ workspace_id: string;
32131
+ };
32132
+ cookie?: never;
32133
+ };
32134
+ requestBody?: never;
32135
+ responses: {
32136
+ /** @description Successful Response */
32137
+ 200: {
32138
+ headers: {
32139
+ [name: string]: unknown;
32140
+ };
32141
+ content: {
32142
+ "application/json": components["schemas"]["DataQualityResponse"];
32143
+ };
32144
+ };
32145
+ /** @description Validation Error */
32146
+ 422: {
32147
+ headers: {
32148
+ [name: string]: unknown;
32149
+ };
32150
+ content: {
32151
+ "application/json": components["schemas"]["HTTPValidationError"];
32152
+ };
32153
+ };
32154
+ };
32155
+ };
32156
+ "get-emotion-trends": {
32157
+ parameters: {
32158
+ query?: {
32159
+ days?: number;
32160
+ date_from?: string | null;
32161
+ date_to?: string | null;
32162
+ interval?: "1h" | "1d" | "1w";
32163
+ service_id?: string | null;
32164
+ };
32165
+ header?: never;
32166
+ path: {
32167
+ workspace_id: string;
32168
+ };
32169
+ cookie?: never;
32170
+ };
32171
+ requestBody?: never;
31558
32172
  responses: {
31559
32173
  /** @description Successful Response */
31560
32174
  200: {
@@ -31585,45 +32199,10 @@ export interface operations {
31585
32199
  };
31586
32200
  };
31587
32201
  };
31588
- data_quality_analytics_v1__workspace_id__analytics_data_quality_get: {
31589
- parameters: {
31590
- query?: {
31591
- days?: number;
31592
- };
31593
- header?: never;
31594
- path: {
31595
- workspace_id: string;
31596
- };
31597
- cookie?: never;
31598
- };
31599
- requestBody?: never;
31600
- responses: {
31601
- /** @description Successful Response */
31602
- 200: {
31603
- headers: {
31604
- [name: string]: unknown;
31605
- };
31606
- content: {
31607
- "application/json": components["schemas"]["DataQualityResponse"];
31608
- };
31609
- };
31610
- /** @description Validation Error */
31611
- 422: {
31612
- headers: {
31613
- [name: string]: unknown;
31614
- };
31615
- content: {
31616
- "application/json": components["schemas"]["HTTPValidationError"];
31617
- };
31618
- };
31619
- };
31620
- };
31621
- "get-emotion-trends": {
32202
+ "get-eval-quality-analytics": {
31622
32203
  parameters: {
31623
32204
  query?: {
31624
32205
  days?: number;
31625
- date_from?: string | null;
31626
- date_to?: string | null;
31627
32206
  interval?: "1h" | "1d" | "1w";
31628
32207
  service_id?: string | null;
31629
32208
  };
@@ -31641,9 +32220,7 @@ export interface operations {
31641
32220
  [name: string]: unknown;
31642
32221
  };
31643
32222
  content: {
31644
- "application/json": {
31645
- [key: string]: unknown;
31646
- };
32223
+ "application/json": components["schemas"]["EvalQualityResponse"];
31647
32224
  };
31648
32225
  };
31649
32226
  /** @description Validation Error */
@@ -35269,6 +35846,166 @@ export interface operations {
35269
35846
  };
35270
35847
  };
35271
35848
  };
35849
+ "list-external-identity-bindings": {
35850
+ parameters: {
35851
+ query?: {
35852
+ sort_by?: string[];
35853
+ limit?: number;
35854
+ continuation_token?: unknown;
35855
+ };
35856
+ header?: never;
35857
+ path: {
35858
+ workspace_id: string;
35859
+ };
35860
+ cookie?: never;
35861
+ };
35862
+ requestBody?: never;
35863
+ responses: {
35864
+ /** @description Successful Response */
35865
+ 200: {
35866
+ headers: {
35867
+ [name: string]: unknown;
35868
+ };
35869
+ content: {
35870
+ "application/json": components["schemas"]["ExternalIdentityBindingListResponse"];
35871
+ };
35872
+ };
35873
+ /** @description Validation Error */
35874
+ 422: {
35875
+ headers: {
35876
+ [name: string]: unknown;
35877
+ };
35878
+ content: {
35879
+ "application/json": components["schemas"]["HTTPValidationError"];
35880
+ };
35881
+ };
35882
+ };
35883
+ };
35884
+ "upsert-external-identity-binding": {
35885
+ parameters: {
35886
+ query?: never;
35887
+ header?: never;
35888
+ path: {
35889
+ workspace_id: string;
35890
+ };
35891
+ cookie?: never;
35892
+ };
35893
+ requestBody: {
35894
+ content: {
35895
+ "application/json": components["schemas"]["BindingUpsertRequest"];
35896
+ };
35897
+ };
35898
+ responses: {
35899
+ /** @description Successful Response */
35900
+ 200: {
35901
+ headers: {
35902
+ [name: string]: unknown;
35903
+ };
35904
+ content: {
35905
+ "application/json": components["schemas"]["ExternalIdentityBindingItem"];
35906
+ };
35907
+ };
35908
+ /** @description entity_id not found in workspace */
35909
+ 404: {
35910
+ headers: {
35911
+ [name: string]: unknown;
35912
+ };
35913
+ content?: never;
35914
+ };
35915
+ /** @description subject_key already bound to a different entity, or entity_id is a role-assigned principal */
35916
+ 409: {
35917
+ headers: {
35918
+ [name: string]: unknown;
35919
+ };
35920
+ content?: never;
35921
+ };
35922
+ /** @description Validation Error */
35923
+ 422: {
35924
+ headers: {
35925
+ [name: string]: unknown;
35926
+ };
35927
+ content: {
35928
+ "application/json": components["schemas"]["HTTPValidationError"];
35929
+ };
35930
+ };
35931
+ };
35932
+ };
35933
+ "get-external-identity-binding": {
35934
+ parameters: {
35935
+ query?: never;
35936
+ header?: never;
35937
+ path: {
35938
+ workspace_id: string;
35939
+ binding_id: string;
35940
+ };
35941
+ cookie?: never;
35942
+ };
35943
+ requestBody?: never;
35944
+ responses: {
35945
+ /** @description Successful Response */
35946
+ 200: {
35947
+ headers: {
35948
+ [name: string]: unknown;
35949
+ };
35950
+ content: {
35951
+ "application/json": components["schemas"]["ExternalIdentityBindingItem"];
35952
+ };
35953
+ };
35954
+ /** @description Binding not found */
35955
+ 404: {
35956
+ headers: {
35957
+ [name: string]: unknown;
35958
+ };
35959
+ content?: never;
35960
+ };
35961
+ /** @description Validation Error */
35962
+ 422: {
35963
+ headers: {
35964
+ [name: string]: unknown;
35965
+ };
35966
+ content: {
35967
+ "application/json": components["schemas"]["HTTPValidationError"];
35968
+ };
35969
+ };
35970
+ };
35971
+ };
35972
+ "delete-external-identity-binding": {
35973
+ parameters: {
35974
+ query?: never;
35975
+ header?: never;
35976
+ path: {
35977
+ workspace_id: string;
35978
+ binding_id: string;
35979
+ };
35980
+ cookie?: never;
35981
+ };
35982
+ requestBody?: never;
35983
+ responses: {
35984
+ /** @description Successful Response */
35985
+ 204: {
35986
+ headers: {
35987
+ [name: string]: unknown;
35988
+ };
35989
+ content?: never;
35990
+ };
35991
+ /** @description Binding not found */
35992
+ 404: {
35993
+ headers: {
35994
+ [name: string]: unknown;
35995
+ };
35996
+ content?: never;
35997
+ };
35998
+ /** @description Validation Error */
35999
+ 422: {
36000
+ headers: {
36001
+ [name: string]: unknown;
36002
+ };
36003
+ content: {
36004
+ "application/json": components["schemas"]["HTTPValidationError"];
36005
+ };
36006
+ };
36007
+ };
36008
+ };
35272
36009
  "list-external-integrations": {
35273
36010
  parameters: {
35274
36011
  query?: {
@@ -39426,6 +40163,9 @@ export interface operations {
39426
40163
  service_id?: string | null;
39427
40164
  run_id?: string | null;
39428
40165
  session_id?: string | null;
40166
+ date_from?: string | null;
40167
+ date_to?: string | null;
40168
+ latest_only?: boolean;
39429
40169
  limit?: number;
39430
40170
  offset?: number;
39431
40171
  };
@@ -42392,6 +43132,63 @@ export interface operations {
42392
43132
  };
42393
43133
  };
42394
43134
  };
43135
+ "list-conversation-starters": {
43136
+ parameters: {
43137
+ query?: never;
43138
+ header?: never;
43139
+ path: {
43140
+ workspace_id: string;
43141
+ service_id: string;
43142
+ };
43143
+ cookie?: never;
43144
+ };
43145
+ requestBody: {
43146
+ content: {
43147
+ "application/json": components["schemas"]["ConversationStartersRequest"];
43148
+ };
43149
+ };
43150
+ responses: {
43151
+ /** @description Successful Response */
43152
+ 200: {
43153
+ headers: {
43154
+ [name: string]: unknown;
43155
+ };
43156
+ content: {
43157
+ "application/json": components["schemas"]["ConversationStartersResponse"];
43158
+ };
43159
+ };
43160
+ /** @description Missing or invalid API key. */
43161
+ 401: {
43162
+ headers: {
43163
+ [name: string]: unknown;
43164
+ };
43165
+ content?: never;
43166
+ };
43167
+ /** @description Insufficient permissions. */
43168
+ 403: {
43169
+ headers: {
43170
+ [name: string]: unknown;
43171
+ };
43172
+ content?: never;
43173
+ };
43174
+ /** @description Not found. */
43175
+ 404: {
43176
+ headers: {
43177
+ [name: string]: unknown;
43178
+ };
43179
+ content?: never;
43180
+ };
43181
+ /** @description Validation Error */
43182
+ 422: {
43183
+ headers: {
43184
+ [name: string]: unknown;
43185
+ };
43186
+ content: {
43187
+ "application/json": components["schemas"]["HTTPValidationError"];
43188
+ };
43189
+ };
43190
+ };
43191
+ };
42395
43192
  "text-turn": {
42396
43193
  parameters: {
42397
43194
  query?: never;
@@ -48151,6 +48948,55 @@ export interface operations {
48151
48948
  };
48152
48949
  };
48153
48950
  };
48951
+ "bulk-import-migration-conversations": {
48952
+ parameters: {
48953
+ query?: never;
48954
+ header?: never;
48955
+ path: {
48956
+ workspace_id: string;
48957
+ };
48958
+ cookie?: never;
48959
+ };
48960
+ requestBody: {
48961
+ content: {
48962
+ "application/json": components["schemas"]["MigrationConversationsBody"];
48963
+ };
48964
+ };
48965
+ responses: {
48966
+ /** @description Successful Response */
48967
+ 200: {
48968
+ headers: {
48969
+ [name: string]: unknown;
48970
+ };
48971
+ content: {
48972
+ "application/json": components["schemas"]["MigrationConversationsResponse"];
48973
+ };
48974
+ };
48975
+ /** @description Naive/future timestamps, bad window, or non-person entity_id. */
48976
+ 400: {
48977
+ headers: {
48978
+ [name: string]: unknown;
48979
+ };
48980
+ content?: never;
48981
+ };
48982
+ /** @description Insufficient permissions. */
48983
+ 403: {
48984
+ headers: {
48985
+ [name: string]: unknown;
48986
+ };
48987
+ content?: never;
48988
+ };
48989
+ /** @description Validation Error */
48990
+ 422: {
48991
+ headers: {
48992
+ [name: string]: unknown;
48993
+ };
48994
+ content: {
48995
+ "application/json": components["schemas"]["HTTPValidationError"];
48996
+ };
48997
+ };
48998
+ };
48999
+ };
48154
49000
  "search-world-entities": {
48155
49001
  parameters: {
48156
49002
  query: {