@amigo-ai/platform-sdk 0.75.0 → 0.77.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.
@@ -3229,6 +3229,31 @@ export interface paths {
3229
3229
  patch?: never;
3230
3230
  trace?: never;
3231
3231
  };
3232
+ "/v1/{workspace_id}/intake/files/{file_id}/status": {
3233
+ parameters: {
3234
+ query?: never;
3235
+ header?: never;
3236
+ path?: never;
3237
+ cookie?: never;
3238
+ };
3239
+ get?: never;
3240
+ put?: never;
3241
+ /**
3242
+ * Write Back Intake File Status
3243
+ * @description Advance a file's status from the async CDC job (P4).
3244
+ *
3245
+ * The job authenticates with the workspace's API key (Bearer) — the same
3246
+ * Databricks→platform-api path launch_dpc uses — so RLS scopes the update to
3247
+ * that workspace. Moves the row to its terminal verdict and records the
3248
+ * curated/cdc paths.
3249
+ */
3250
+ post: operations["write_back_intake_file_status_v1__workspace_id__intake_files__file_id__status_post"];
3251
+ delete?: never;
3252
+ options?: never;
3253
+ head?: never;
3254
+ patch?: never;
3255
+ trace?: never;
3256
+ };
3232
3257
  "/v1/{workspace_id}/intake/links": {
3233
3258
  parameters: {
3234
3259
  query?: never;
@@ -6730,6 +6755,26 @@ export interface paths {
6730
6755
  patch?: never;
6731
6756
  trace?: never;
6732
6757
  };
6758
+ "/v1/{workspace_id}/traces:export": {
6759
+ parameters: {
6760
+ query?: never;
6761
+ header?: never;
6762
+ path?: never;
6763
+ cookie?: never;
6764
+ };
6765
+ get?: never;
6766
+ put?: never;
6767
+ /**
6768
+ * Export gen_ai.* + voice.* traces as OTLP/JSON
6769
+ * @description Export the workspace's durable trace spans over a time window as OpenTelemetry Protocol (OTLP/HTTP JSON) spans: ``gen_ai.*`` tool-call spans and the per-call voice-isolation ``voice.*`` infra spans (allocate / media-attach / reap). Read-only; admin/owner role required; dark behind ``OTEL_TRACE_EXPORT_ENABLED`` (404 when off). Paginated PULL API — extract ``.resourceSpans`` before forwarding to an OTLP collector. Attributes are an allowlist of tool-call + infra metadata; the raw tool-result ``error`` text is NOT exported (PHI-safe by construction).
6770
+ */
6771
+ post: operations["export_traces_v1__workspace_id__traces_export_post"];
6772
+ delete?: never;
6773
+ options?: never;
6774
+ head?: never;
6775
+ patch?: never;
6776
+ trace?: never;
6777
+ };
6733
6778
  "/v1/{workspace_id}/triggers": {
6734
6779
  parameters: {
6735
6780
  query?: never;
@@ -7708,6 +7753,61 @@ export interface components {
7708
7753
  /** Workspace Id */
7709
7754
  workspace_id?: string | null;
7710
7755
  };
7756
+ /**
7757
+ * ActorAllocatedEvent
7758
+ * @description The call was bound to its isolated runtime — one call = one Agones GameServer.
7759
+ *
7760
+ * Emitted by the dispatcher the moment it allocates a warm GameServer for the call,
7761
+ * so an observer can see WHICH pod/node powers this call and how long allocation took.
7762
+ */
7763
+ ActorAllocatedEvent: {
7764
+ /**
7765
+ * Alloc Latency Ms
7766
+ * @default null
7767
+ */
7768
+ alloc_latency_ms?: number | null;
7769
+ /** Gameserver */
7770
+ gameserver: string;
7771
+ /**
7772
+ * Node
7773
+ * @default null
7774
+ */
7775
+ node?: string | null;
7776
+ /**
7777
+ * @description discriminator enum property added by openapi-typescript
7778
+ * @enum {string}
7779
+ */
7780
+ type: "actor_allocated";
7781
+ };
7782
+ /**
7783
+ * ActorShutdownEvent
7784
+ * @description The call's GameServer was reaped (Allocated GameServers are deploy-immune).
7785
+ *
7786
+ * Today only ``reason=call_ended`` is produced (normal call-end teardown).
7787
+ * ``orphan_no_media`` is reserved in the contract for the orphan reaper — a pod that
7788
+ * went Allocated but never received media — but that emit is not yet wired: at reap
7789
+ * time the reaper pod has no call identity (allocation is cross-pod), so plumbing the
7790
+ * call_sid to it is a follow-up. The value is pre-declared so adding it later is a
7791
+ * non-breaking widening for SDK consumers, not a breaking enum change.
7792
+ */
7793
+ ActorShutdownEvent: {
7794
+ /**
7795
+ * Lifetime S
7796
+ * @default null
7797
+ */
7798
+ lifetime_s?: number | null;
7799
+ /**
7800
+ * Reason
7801
+ * @default call_ended
7802
+ * @enum {string}
7803
+ */
7804
+ reason?: "call_ended" | "orphan_no_media";
7805
+ /**
7806
+ * @description discriminator enum property added by openapi-typescript
7807
+ * @enum {string}
7808
+ */
7809
+ type: "actor_shutdown";
7810
+ };
7711
7811
  /** AddColumnAction */
7712
7812
  AddColumnAction: {
7713
7813
  column: components["schemas"]["Column-Input"];
@@ -7982,6 +8082,9 @@ export interface components {
7982
8082
  */
7983
8083
  workspace_id: string;
7984
8084
  };
8085
+ AnyValue: {
8086
+ [key: string]: unknown;
8087
+ };
7985
8088
  /** ApiKeyResponse */
7986
8089
  ApiKeyResponse: {
7987
8090
  /**
@@ -11974,6 +12077,11 @@ export interface components {
11974
12077
  field_count: number;
11975
12078
  /** File Type */
11976
12079
  file_type: string;
12080
+ /**
12081
+ * Ingestion Mode
12082
+ * @description `snapshot` (CSV/Excel → CDC) or `document` (PDF/docx → extraction).
12083
+ */
12084
+ ingestion_mode: string;
11977
12085
  limits: components["schemas"]["Limits"];
11978
12086
  /**
11979
12087
  * Name
@@ -12231,6 +12339,28 @@ export interface components {
12231
12339
  */
12232
12340
  verified: boolean;
12233
12341
  };
12342
+ /**
12343
+ * DocumentProcessingSpec
12344
+ * @description Processing config for a document dataset (``ingestion_mode=document``).
12345
+ *
12346
+ * Documents have no schema/primary-key/CDC; this is what the contract carries
12347
+ * instead (docs/plans/intake_file_processing_pipeline.md §5.9). Page-split /
12348
+ * output-metadata rules are stored in the same jsonb and may be added later
12349
+ * without a migration.
12350
+ */
12351
+ DocumentProcessingSpec: {
12352
+ /**
12353
+ * Extraction Mode
12354
+ * @default text_extract
12355
+ * @enum {string}
12356
+ */
12357
+ extraction_mode?: "text_extract" | "OCR" | "hybrid";
12358
+ /**
12359
+ * Retain Source
12360
+ * @default true
12361
+ */
12362
+ retain_source?: boolean;
12363
+ };
12234
12364
  /** DropColumnAction */
12235
12365
  DropColumnAction: {
12236
12366
  name: components["schemas"]["IdentifierString"];
@@ -15316,6 +15446,13 @@ export interface components {
15316
15446
  */
15317
15447
  status: "delivered" | "queued_no_subscriber";
15318
15448
  };
15449
+ /** InstrumentationScope */
15450
+ InstrumentationScope: {
15451
+ /** Name */
15452
+ name: string;
15453
+ /** Version */
15454
+ version: string;
15455
+ };
15319
15456
  /**
15320
15457
  * IntakeFieldType
15321
15458
  * @description Allowed ``schema[].type`` values for a registered contract.
@@ -15886,6 +16023,15 @@ export interface components {
15886
16023
  */
15887
16024
  type: "latency_spike" | "silence" | "barge_in" | "loop" | "tool_failure" | "escalation" | "safety_flag" | "high_risk" | "elevated_risk";
15888
16025
  };
16026
+ /**
16027
+ * KeyValue
16028
+ * @description OTLP ``KeyValue`` attribute pair.
16029
+ */
16030
+ KeyValue: {
16031
+ /** Key */
16032
+ key: string;
16033
+ value: components["schemas"]["AnyValue"];
16034
+ };
15889
16035
  /** LLMConfig */
15890
16036
  LLMConfig: {
15891
16037
  experience_controls?: components["schemas"]["LLMExperienceControls"] | null;
@@ -16211,6 +16357,29 @@ export interface components {
16211
16357
  */
16212
16358
  workspace_id: string;
16213
16359
  };
16360
+ /**
16361
+ * MediaAttachedEvent
16362
+ * @description A media WebSocket actually reached the call's GameServer — the audio-path signal.
16363
+ *
16364
+ * Fires once per leg (caller / agent). Its ABSENCE for a leg is the no-audio failure
16365
+ * mode (media never landed on the pod). The per-call cold-start / time-to-first-speech
16366
+ * metric is deliberately NOT carried here yet: TTFS is measured against the first
16367
+ * synthesized-audio frame, a signal not available at attach time, so it is wired in a
16368
+ * focused follow-up (Front 3) rather than shipped as a permanently-null field that would
16369
+ * lock a misleading shape into the SDK contract.
16370
+ */
16371
+ MediaAttachedEvent: {
16372
+ /**
16373
+ * Leg
16374
+ * @enum {string}
16375
+ */
16376
+ leg: "caller" | "agent" | "operator";
16377
+ /**
16378
+ * @description discriminator enum property added by openapi-typescript
16379
+ * @enum {string}
16380
+ */
16381
+ type: "media_attached";
16382
+ };
16214
16383
  /** MergedEntitiesResponse */
16215
16384
  MergedEntitiesResponse: {
16216
16385
  /**
@@ -17056,7 +17225,7 @@ export interface components {
17056
17225
  */
17057
17226
  type: "oauth2_jwt_bearer";
17058
17227
  };
17059
- ObserverSSEEvent: components["schemas"]["AgentTranscriptDeltaEvent"] | components["schemas"]["AgentTranscriptEvent"] | components["schemas"]["BargeInEvent"] | components["schemas"]["CompoundEmotionEvent"] | components["schemas"]["EmotionEvent"] | components["schemas"]["EmpathyClassifiedEvent"] | components["schemas"]["ForwardCallResolvedEvent"] | components["schemas"]["LatencyEvent"] | components["schemas"]["NavTimingEvent"] | components["schemas"]["ParticipantJoinedEvent"] | components["schemas"]["ParticipantLeftEvent"] | components["schemas"]["SessionEndEvent"] | components["schemas"]["SessionInfoEvent"] | components["schemas"]["SessionStartEvent"] | components["schemas"]["SpeakerMutedEvent"] | components["schemas"]["StateTransitionEvent"] | components["schemas"]["ToolCallCompletedEvent"] | components["schemas"]["ToolCallStartedEvent"] | components["schemas"]["UserTranscriptEvent"] | components["schemas"]["VoiceContextAppliedEvent"];
17228
+ ObserverSSEEvent: components["schemas"]["ActorAllocatedEvent"] | components["schemas"]["ActorShutdownEvent"] | components["schemas"]["AgentTranscriptDeltaEvent"] | components["schemas"]["AgentTranscriptEvent"] | components["schemas"]["BargeInEvent"] | components["schemas"]["CompoundEmotionEvent"] | components["schemas"]["EmotionEvent"] | components["schemas"]["EmpathyClassifiedEvent"] | components["schemas"]["ForwardCallResolvedEvent"] | components["schemas"]["LatencyEvent"] | components["schemas"]["MediaAttachedEvent"] | components["schemas"]["NavTimingEvent"] | components["schemas"]["ParticipantJoinedEvent"] | components["schemas"]["ParticipantLeftEvent"] | components["schemas"]["SessionEndEvent"] | components["schemas"]["SessionInfoEvent"] | components["schemas"]["SessionStartEvent"] | components["schemas"]["SpeakerMutedEvent"] | components["schemas"]["StateTransitionEvent"] | components["schemas"]["ToolCallCompletedEvent"] | components["schemas"]["ToolCallStartedEvent"] | components["schemas"]["UserTranscriptEvent"] | components["schemas"]["VoiceContextAppliedEvent"];
17060
17229
  /** OcrRequest */
17061
17230
  OcrRequest: {
17062
17231
  /**
@@ -18898,7 +19067,7 @@ export interface components {
18898
19067
  * Multiple providers may serve the same ChannelKind.
18899
19068
  * @enum {string}
18900
19069
  */
18901
- ProviderType: "twilio" | "websocket" | "ses" | "sendblue";
19070
+ ProviderType: "twilio" | "websocket" | "ses" | "sendblue" | "infobip";
18902
19071
  /** ProvisionResponse */
18903
19072
  ProvisionResponse: {
18904
19073
  workspace: components["schemas"]["WorkspaceResponse"];
@@ -19203,28 +19372,34 @@ export interface components {
19203
19372
  };
19204
19373
  /**
19205
19374
  * RegisterSchemaRequest
19206
- * @description Create Schema payload (intake-ui-mvp-design.md §5.4).
19375
+ * @description Create Schema payload (intake-ui-mvp-design.md §5.4, §5.9).
19207
19376
  *
19208
- * The backend applies the hidden defaults (``ingestion_mode=snapshot``,
19209
- * ``on_schema_change=additive``, ``schema_version`` auto) — they are not part
19210
- * of the wire contract.
19377
+ * ``ingestion_mode`` is inferred from ``file_type`` (csv/xls/xlsx snapshot;
19378
+ * else document) — not part of the wire contract. Snapshot datasets require
19379
+ * ``primary_key`` + ``schema``; document datasets take an optional
19380
+ * ``document_processing`` config and ignore primary_key/schema. The backend
19381
+ * applies the other hidden defaults (``on_schema_change=additive``,
19382
+ * ``schema_version`` auto).
19211
19383
  */
19212
19384
  RegisterSchemaRequest: {
19213
- /**
19214
- * File Type
19215
- * @constant
19216
- */
19217
- file_type: "csv";
19385
+ /** @description Document only — extraction config; defaulted server-side when omitted. */
19386
+ document_processing?: components["schemas"]["DocumentProcessingSpec"] | null;
19387
+ file_type: components["schemas"]["_FileType"];
19218
19388
  /** Max Size Mb */
19219
19389
  max_size_mb?: number | null;
19220
19390
  name: components["schemas"]["_DatasetSlug"];
19221
- /** Primary Key */
19222
- primary_key: components["schemas"]["_FieldName"][];
19391
+ /**
19392
+ * Primary Key
19393
+ * @description Snapshot only — the canonical PK column(s). Empty/ignored for documents.
19394
+ * @default []
19395
+ */
19396
+ primary_key?: components["schemas"]["_FieldName"][];
19223
19397
  /**
19224
19398
  * Schema
19225
- * @description Canonical field list ``[{name, type}]`` (wire key ``schema``).
19399
+ * @description Snapshot only — canonical field list ``[{name, type}]`` (wire key ``schema``).
19400
+ * @default []
19226
19401
  */
19227
- schema: components["schemas"]["SchemaFieldSpec"][];
19402
+ schema?: components["schemas"]["SchemaFieldSpec"][];
19228
19403
  };
19229
19404
  /**
19230
19405
  * RegisteredFunction
@@ -19429,6 +19604,17 @@ export interface components {
19429
19604
  /** Tool Type */
19430
19605
  tool_type: string;
19431
19606
  };
19607
+ /** Resource */
19608
+ Resource: {
19609
+ /** Attributes */
19610
+ attributes: components["schemas"]["KeyValue"][];
19611
+ };
19612
+ /** ResourceSpans */
19613
+ ResourceSpans: {
19614
+ resource: components["schemas"]["Resource"];
19615
+ /** Scopespans */
19616
+ scopeSpans: components["schemas"]["ScopeSpans"][];
19617
+ };
19432
19618
  /**
19433
19619
  * RestIntegrationResponse
19434
19620
  * @description REST variant — base URL, auth config, endpoint count.
@@ -20049,6 +20235,12 @@ export interface components {
20049
20235
  [key: string]: string;
20050
20236
  }[];
20051
20237
  };
20238
+ /** ScopeSpans */
20239
+ ScopeSpans: {
20240
+ scope: components["schemas"]["InstrumentationScope"];
20241
+ /** Spans */
20242
+ spans: components["schemas"]["Span"][];
20243
+ };
20052
20244
  /** ScoreSessionRequest */
20053
20245
  ScoreSessionRequest: {
20054
20246
  /** Score */
@@ -20358,7 +20550,7 @@ export interface components {
20358
20550
  /** Progress Vocabulary */
20359
20551
  progress_vocabulary?: string[] | null;
20360
20552
  /** Session Provider */
20361
- session_provider?: ("inhouse" | "openai_realtime") | null;
20553
+ session_provider?: ("inhouse" | "openai_realtime" | "atlas") | null;
20362
20554
  /** Transition Deadline Ms */
20363
20555
  transition_deadline_ms?: number | null;
20364
20556
  /** Tts Config */
@@ -20428,7 +20620,7 @@ export interface components {
20428
20620
  /** Progress Vocabulary */
20429
20621
  progress_vocabulary?: string[] | null;
20430
20622
  /** Session Provider */
20431
- session_provider?: ("inhouse" | "openai_realtime") | null;
20623
+ session_provider?: ("inhouse" | "openai_realtime" | "atlas") | null;
20432
20624
  /** Transition Deadline Ms */
20433
20625
  transition_deadline_ms?: number | null;
20434
20626
  /** Tts Config */
@@ -21913,6 +22105,27 @@ export interface components {
21913
22105
  */
21914
22106
  workspace_id: string;
21915
22107
  };
22108
+ /**
22109
+ * Span
22110
+ * @description OTLP ``Span`` in OTLP/JSON encoding (ids hex, timestamps decimal-string).
22111
+ */
22112
+ Span: {
22113
+ /** Attributes */
22114
+ attributes: components["schemas"]["KeyValue"][];
22115
+ /** Endtimeunixnano */
22116
+ endTimeUnixNano: string;
22117
+ /** Kind */
22118
+ kind: number;
22119
+ /** Name */
22120
+ name: string;
22121
+ /** Spanid */
22122
+ spanId: string;
22123
+ /** Starttimeunixnano */
22124
+ startTimeUnixNano: string;
22125
+ status: components["schemas"]["Status"];
22126
+ /** Traceid */
22127
+ traceId: string;
22128
+ };
21916
22129
  /** SpeakerAcoustics */
21917
22130
  SpeakerAcoustics: {
21918
22131
  /**
@@ -22136,6 +22349,29 @@ export interface components {
22136
22349
  /** Name */
22137
22350
  name: string;
22138
22351
  };
22352
+ /**
22353
+ * Status
22354
+ * @description OTLP ``Status`` — 0=UNSET, 1=OK, 2=ERROR.
22355
+ */
22356
+ Status: {
22357
+ /** Code */
22358
+ code: number;
22359
+ };
22360
+ /**
22361
+ * StatusWriteBackRequest
22362
+ * @description Status advance written by the async CDC job (P4).
22363
+ *
22364
+ * The job posts the terminal verdict after conform/validate/diff. ``error_reason``
22365
+ * must be PHI-safe (the engine reports column + type + counts only — never cell
22366
+ * values). ``curated_path``/``cdc_path`` are set only on a clean verdict.
22367
+ */
22368
+ StatusWriteBackRequest: {
22369
+ cdc_path?: components["schemas"]["_VolumePath"] | null;
22370
+ curated_path?: components["schemas"]["_VolumePath"] | null;
22371
+ /** Error Reason */
22372
+ error_reason?: string | null;
22373
+ status: components["schemas"]["_FileStatus"];
22374
+ };
22139
22375
  /** StepRequest */
22140
22376
  StepRequest: {
22141
22377
  /** Caller Text */
@@ -23097,6 +23333,8 @@ export interface components {
23097
23333
  * @description Request body for ``POST /v1/{ws}/services/{service_id}/text-turn``.
23098
23334
  */
23099
23335
  TextTurnRequest: {
23336
+ /** Agent Phone */
23337
+ agent_phone: string;
23100
23338
  /** Phone Number */
23101
23339
  phone_number: string;
23102
23340
  /** Text */
@@ -23826,6 +24064,52 @@ export interface components {
23826
24064
  */
23827
24065
  what_happened: string;
23828
24066
  };
24067
+ /** TracesExportRequest */
24068
+ TracesExportRequest: {
24069
+ /**
24070
+ * Continuation Token
24071
+ * @description Opaque page cursor — round-trip the value from the previous response.
24072
+ */
24073
+ continuation_token?: unknown;
24074
+ /**
24075
+ * End Time
24076
+ * Format: date-time
24077
+ * @description Exclusive upper bound on span ``effective_at`` (ISO-8601).
24078
+ */
24079
+ end_time: string;
24080
+ /**
24081
+ * Limit
24082
+ * @description Max spans per page (1-1000).
24083
+ * @default 500
24084
+ */
24085
+ limit?: number;
24086
+ /**
24087
+ * Start Time
24088
+ * Format: date-time
24089
+ * @description Inclusive lower bound on span ``effective_at`` (ISO-8601).
24090
+ */
24091
+ start_time: string;
24092
+ };
24093
+ /**
24094
+ * TracesExportResponse
24095
+ * @description Paginated PULL response — NOT a bare OTLP ``ExportTraceServiceRequest``.
24096
+ *
24097
+ * ``resourceSpans`` is OTLP/JSON-conformant; to forward to an OTLP collector,
24098
+ * extract ``.resourceSpans`` and re-wrap as ``{"resourceSpans": [...]}`` (a
24099
+ * strict protojson push receiver rejects the ``has_more``/``continuation_token``
24100
+ * siblings). Round-trip ``continuation_token`` to page.
24101
+ */
24102
+ TracesExportResponse: {
24103
+ /** Continuation Token */
24104
+ continuation_token?: unknown;
24105
+ /** Has More */
24106
+ has_more: boolean;
24107
+ /**
24108
+ * Resourcespans
24109
+ * @description OTLP/JSON ``ResourceSpans`` envelope (empty list when no spans match).
24110
+ */
24111
+ resourceSpans: components["schemas"]["ResourceSpans"][];
24112
+ };
23829
24113
  /** TranscriptSegment */
23830
24114
  TranscriptSegment: {
23831
24115
  /** Confidence */
@@ -25054,7 +25338,7 @@ export interface components {
25054
25338
  [key: string]: components["schemas"]["LanguageProviderEntry"];
25055
25339
  } | null;
25056
25340
  /** Session Provider */
25057
- session_provider?: ("inhouse" | "openai_realtime") | null;
25341
+ session_provider?: ("inhouse" | "openai_realtime" | "atlas") | null;
25058
25342
  /**
25059
25343
  * Similarity Boost
25060
25344
  * @default 0
@@ -25653,10 +25937,12 @@ export interface components {
25653
25937
  _FieldName: string;
25654
25938
  /** @enum {string} */
25655
25939
  _FileStatus: "received" | "scanned" | "processing" | "curated" | "rejected" | "failed" | "held";
25940
+ _FileType: string;
25656
25941
  /** @enum {string} */
25657
25942
  _ResourceType: "integration_endpoint" | "skill" | "kb_scope";
25658
25943
  _ToolMockKey: string;
25659
25944
  _ToolMockValue: string;
25945
+ _VolumePath: string;
25660
25946
  /**
25661
25947
  * Parameter
25662
25948
  * @description Typed declaration of one input parameter.
@@ -35158,6 +35444,42 @@ export interface operations {
35158
35444
  };
35159
35445
  };
35160
35446
  };
35447
+ write_back_intake_file_status_v1__workspace_id__intake_files__file_id__status_post: {
35448
+ parameters: {
35449
+ query?: never;
35450
+ header?: never;
35451
+ path: {
35452
+ workspace_id: string;
35453
+ file_id: string;
35454
+ };
35455
+ cookie?: never;
35456
+ };
35457
+ requestBody: {
35458
+ content: {
35459
+ "application/json": components["schemas"]["StatusWriteBackRequest"];
35460
+ };
35461
+ };
35462
+ responses: {
35463
+ /** @description Successful Response */
35464
+ 200: {
35465
+ headers: {
35466
+ [name: string]: unknown;
35467
+ };
35468
+ content: {
35469
+ "application/json": components["schemas"]["IntakeFileRow"];
35470
+ };
35471
+ };
35472
+ /** @description Validation Error */
35473
+ 422: {
35474
+ headers: {
35475
+ [name: string]: unknown;
35476
+ };
35477
+ content: {
35478
+ "application/json": components["schemas"]["HTTPValidationError"];
35479
+ };
35480
+ };
35481
+ };
35482
+ };
35161
35483
  "list-intake-links": {
35162
35484
  parameters: {
35163
35485
  query?: {
@@ -43502,6 +43824,41 @@ export interface operations {
43502
43824
  };
43503
43825
  };
43504
43826
  };
43827
+ export_traces_v1__workspace_id__traces_export_post: {
43828
+ parameters: {
43829
+ query?: never;
43830
+ header?: never;
43831
+ path: {
43832
+ workspace_id: string;
43833
+ };
43834
+ cookie?: never;
43835
+ };
43836
+ requestBody: {
43837
+ content: {
43838
+ "application/json": components["schemas"]["TracesExportRequest"];
43839
+ };
43840
+ };
43841
+ responses: {
43842
+ /** @description Successful Response */
43843
+ 200: {
43844
+ headers: {
43845
+ [name: string]: unknown;
43846
+ };
43847
+ content: {
43848
+ "application/json": components["schemas"]["TracesExportResponse"];
43849
+ };
43850
+ };
43851
+ /** @description Validation Error */
43852
+ 422: {
43853
+ headers: {
43854
+ [name: string]: unknown;
43855
+ };
43856
+ content: {
43857
+ "application/json": components["schemas"]["HTTPValidationError"];
43858
+ };
43859
+ };
43860
+ };
43861
+ };
43505
43862
  "list-triggers": {
43506
43863
  parameters: {
43507
43864
  query?: {