@amigo-ai/platform-sdk 0.100.0 → 0.102.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.
- package/README.md +0 -14
- package/api.md +13 -3
- package/dist/index.cjs +105 -15
- package/dist/index.cjs.map +3 -3
- package/dist/index.js +3 -0
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +105 -15
- package/dist/index.mjs.map +3 -3
- package/dist/resources/calls.js +0 -6
- package/dist/resources/calls.js.map +1 -1
- package/dist/resources/conversations.js +0 -5
- package/dist/resources/conversations.js.map +1 -1
- package/dist/resources/runs.js +100 -0
- package/dist/resources/runs.js.map +1 -0
- package/dist/types/generated/api.d.ts +60 -327
- package/dist/types/generated/api.d.ts.map +1 -1
- package/dist/types/index.d.cts +3 -1
- package/dist/types/index.d.cts.map +1 -1
- package/dist/types/index.d.ts +3 -1
- package/dist/types/index.d.ts.map +1 -1
- package/dist/types/resources/calls.d.ts +0 -4
- package/dist/types/resources/calls.d.ts.map +1 -1
- package/dist/types/resources/conversations.d.ts +1 -5
- package/dist/types/resources/conversations.d.ts.map +1 -1
- package/dist/types/resources/external-integrations.d.ts.map +1 -1
- package/dist/types/resources/intake.d.ts.map +1 -1
- package/dist/types/resources/integrations.d.ts.map +1 -1
- package/dist/types/resources/metrics.d.ts.map +1 -1
- package/dist/types/resources/operators.d.ts.map +1 -1
- package/dist/types/resources/runs.d.ts +163 -0
- package/dist/types/resources/runs.d.ts.map +1 -0
- package/dist/types/resources/services.d.ts.map +1 -1
- package/dist/types/resources/settings.d.ts.map +1 -1
- package/dist/types/resources/surfaces.d.ts.map +1 -1
- package/dist/types/resources/world.d.ts.map +1 -1
- package/package.json +1 -1
|
@@ -794,11 +794,7 @@ export interface paths {
|
|
|
794
794
|
path?: never;
|
|
795
795
|
cookie?: never;
|
|
796
796
|
};
|
|
797
|
-
|
|
798
|
-
* List framework agent runs
|
|
799
|
-
* @description Paginated list of framework agent runs for the workspace, newest first, read from the durable ``world.agent_runs`` read model. Filter by ``framework`` / ``status``. ``continuation_token`` is an opaque page cursor.
|
|
800
|
-
*/
|
|
801
|
-
get: operations["list_agent_runs_v1__workspace_id__agent_runs_get"];
|
|
797
|
+
get?: never;
|
|
802
798
|
put?: never;
|
|
803
799
|
/**
|
|
804
800
|
* Dispatch a framework agent run
|
|
@@ -1709,26 +1705,6 @@ export interface paths {
|
|
|
1709
1705
|
patch?: never;
|
|
1710
1706
|
trace?: never;
|
|
1711
1707
|
};
|
|
1712
|
-
"/v1/{workspace_id}/calls/active/intelligence": {
|
|
1713
|
-
parameters: {
|
|
1714
|
-
query?: never;
|
|
1715
|
-
header?: never;
|
|
1716
|
-
path?: never;
|
|
1717
|
-
cookie?: never;
|
|
1718
|
-
};
|
|
1719
|
-
/**
|
|
1720
|
-
* Active calls with live intelligence
|
|
1721
|
-
* @description Real-time active call list enriched with per-turn emotion, risk, and quality data from Valkey. Proxied from voice-agent.
|
|
1722
|
-
*/
|
|
1723
|
-
get: operations["list-active-calls-intelligence"];
|
|
1724
|
-
put?: never;
|
|
1725
|
-
post?: never;
|
|
1726
|
-
delete?: never;
|
|
1727
|
-
options?: never;
|
|
1728
|
-
head?: never;
|
|
1729
|
-
patch?: never;
|
|
1730
|
-
trace?: never;
|
|
1731
|
-
};
|
|
1732
1708
|
"/v1/{workspace_id}/calls/benchmarks": {
|
|
1733
1709
|
parameters: {
|
|
1734
1710
|
query?: never;
|
|
@@ -2170,8 +2146,7 @@ export interface paths {
|
|
|
2170
2146
|
path?: never;
|
|
2171
2147
|
cookie?: never;
|
|
2172
2148
|
};
|
|
2173
|
-
|
|
2174
|
-
get: operations["list_conversations_v1__workspace_id__conversations_get"];
|
|
2149
|
+
get?: never;
|
|
2175
2150
|
put?: never;
|
|
2176
2151
|
/** Create or start a conversation (web inbound, or outbound on a channel) */
|
|
2177
2152
|
post: operations["create_conversation_v1__workspace_id__conversations_post"];
|
|
@@ -8536,59 +8511,6 @@ export interface components {
|
|
|
8536
8511
|
}[];
|
|
8537
8512
|
usage?: components["schemas"]["Usage"];
|
|
8538
8513
|
};
|
|
8539
|
-
/** AgentRunListResponse */
|
|
8540
|
-
AgentRunListResponse: {
|
|
8541
|
-
/** Continuation Token */
|
|
8542
|
-
continuation_token?: unknown;
|
|
8543
|
-
/** Has More */
|
|
8544
|
-
has_more: boolean;
|
|
8545
|
-
/** Items */
|
|
8546
|
-
items: components["schemas"]["AgentRunSummary"][];
|
|
8547
|
-
};
|
|
8548
|
-
/**
|
|
8549
|
-
* AgentRunSummary
|
|
8550
|
-
* @description One row of the framework-runs LIST, projected from ``world.agent_runs``.
|
|
8551
|
-
*
|
|
8552
|
-
* ``run_id`` is the framework run's external call_sid (a string identifier
|
|
8553
|
-
* stamped by agent-runner), NOT a Lakebase row UUID — kept ``str``. ``entity_id``
|
|
8554
|
-
* IS a world-model row reference, so it stays ``uuid.UUID`` per repo type rigor.
|
|
8555
|
-
*/
|
|
8556
|
-
AgentRunSummary: {
|
|
8557
|
-
/** Created At */
|
|
8558
|
-
created_at: string;
|
|
8559
|
-
/** Duration Ms */
|
|
8560
|
-
duration_ms?: number | null;
|
|
8561
|
-
/** Entity Id */
|
|
8562
|
-
entity_id?: string | null;
|
|
8563
|
-
/**
|
|
8564
|
-
* Framework
|
|
8565
|
-
* @enum {string}
|
|
8566
|
-
*/
|
|
8567
|
-
framework: "claude-agent-sdk" | "openai-agents";
|
|
8568
|
-
/**
|
|
8569
|
-
* Input Tokens
|
|
8570
|
-
* @default 0
|
|
8571
|
-
*/
|
|
8572
|
-
input_tokens?: number;
|
|
8573
|
-
/** Origin Source */
|
|
8574
|
-
origin_source?: string | null;
|
|
8575
|
-
/**
|
|
8576
|
-
* Output Tokens
|
|
8577
|
-
* @default 0
|
|
8578
|
-
*/
|
|
8579
|
-
output_tokens?: number;
|
|
8580
|
-
/** Run Id */
|
|
8581
|
-
run_id: string;
|
|
8582
|
-
/** Started At */
|
|
8583
|
-
started_at: string;
|
|
8584
|
-
/** Status */
|
|
8585
|
-
status?: string | null;
|
|
8586
|
-
/**
|
|
8587
|
-
* Step Count
|
|
8588
|
-
* @default 0
|
|
8589
|
-
*/
|
|
8590
|
-
step_count?: number;
|
|
8591
|
-
};
|
|
8592
8514
|
/** AgentTranscriptDeltaEvent */
|
|
8593
8515
|
AgentTranscriptDeltaEvent: {
|
|
8594
8516
|
/** Delta */
|
|
@@ -8769,11 +8691,8 @@ export interface components {
|
|
|
8769
8691
|
slice_label: string;
|
|
8770
8692
|
/** Stats Json */
|
|
8771
8693
|
stats_json?: string | null;
|
|
8772
|
-
/**
|
|
8773
|
-
|
|
8774
|
-
* Format: uuid
|
|
8775
|
-
*/
|
|
8776
|
-
workspace_id: string;
|
|
8694
|
+
/** Workspace Id */
|
|
8695
|
+
workspace_id: string | "labs";
|
|
8777
8696
|
};
|
|
8778
8697
|
AnyValue: {
|
|
8779
8698
|
[key: string]: unknown;
|
|
@@ -9702,7 +9621,7 @@ export interface components {
|
|
|
9702
9621
|
*/
|
|
9703
9622
|
completion_reason?: ("completed" | "abandoned" | "escalated" | "transferred" | "timeout" | "error" | "voicemail" | "no_answer" | "caller_hangup" | "forwarded" | "terminal_state" | "warm_transfer_completed" | "no_inbound_audio" | "cancelled") | null;
|
|
9704
9623
|
/** @description Conversation flow metrics */
|
|
9705
|
-
conversation_summary?: components["schemas"]["
|
|
9624
|
+
conversation_summary?: components["schemas"]["ConversationSummary"] | null;
|
|
9706
9625
|
/**
|
|
9707
9626
|
* Created At
|
|
9708
9627
|
* @description When intelligence was computed
|
|
@@ -10545,11 +10464,8 @@ export interface components {
|
|
|
10545
10464
|
t: number;
|
|
10546
10465
|
/** Upper 95 */
|
|
10547
10466
|
upper_95?: number | null;
|
|
10548
|
-
/**
|
|
10549
|
-
|
|
10550
|
-
* Format: uuid
|
|
10551
|
-
*/
|
|
10552
|
-
workspace_id: string;
|
|
10467
|
+
/** Workspace Id */
|
|
10468
|
+
workspace_id: string | "labs";
|
|
10553
10469
|
/** Ym */
|
|
10554
10470
|
ym?: string | null;
|
|
10555
10471
|
};
|
|
@@ -11267,15 +11183,6 @@ export interface components {
|
|
|
11267
11183
|
updated_at: string;
|
|
11268
11184
|
voice?: components["schemas"]["VoiceDetail"] | null;
|
|
11269
11185
|
};
|
|
11270
|
-
/** ConversationListResponse */
|
|
11271
|
-
ConversationListResponse: {
|
|
11272
|
-
/** Has More */
|
|
11273
|
-
has_more: boolean;
|
|
11274
|
-
/** Items */
|
|
11275
|
-
items: components["schemas"]["src__routes__conversations__ConversationSummary"][];
|
|
11276
|
-
/** Total */
|
|
11277
|
-
total: number;
|
|
11278
|
-
};
|
|
11279
11186
|
/** ConversationStatusTransitionRequest */
|
|
11280
11187
|
ConversationStatusTransitionRequest: {
|
|
11281
11188
|
/**
|
|
@@ -11302,6 +11209,49 @@ export interface components {
|
|
|
11302
11209
|
*/
|
|
11303
11210
|
status: "completed" | "closed";
|
|
11304
11211
|
};
|
|
11212
|
+
/**
|
|
11213
|
+
* ConversationSummary
|
|
11214
|
+
* @description Conversation flow metrics.
|
|
11215
|
+
*
|
|
11216
|
+
* Free-form residual on the raw ``conversation_summary`` JSONB:
|
|
11217
|
+
* ``text_intelligence: dict`` (text-channel intelligence
|
|
11218
|
+
* sub-payload), and on the simulation path ``transcript_text:
|
|
11219
|
+
* str`` (PHI), ``tool_calls: list``, ``score``,
|
|
11220
|
+
* ``score_rationale``, ``terminal_reached``, ``states_visited``.
|
|
11221
|
+
* Not exposed via this typed shape.
|
|
11222
|
+
*/
|
|
11223
|
+
ConversationSummary: {
|
|
11224
|
+
/**
|
|
11225
|
+
* Barge In Count
|
|
11226
|
+
* @description Number of caller interruptions
|
|
11227
|
+
* @default 0
|
|
11228
|
+
*/
|
|
11229
|
+
barge_in_count?: number;
|
|
11230
|
+
/**
|
|
11231
|
+
* Loop Count
|
|
11232
|
+
* @description Number of detected state loops
|
|
11233
|
+
* @default 0
|
|
11234
|
+
*/
|
|
11235
|
+
loop_count?: number;
|
|
11236
|
+
/**
|
|
11237
|
+
* States Visited Count
|
|
11238
|
+
* @description Number of states visited (including repeats)
|
|
11239
|
+
* @default 0
|
|
11240
|
+
*/
|
|
11241
|
+
states_visited_count?: number;
|
|
11242
|
+
/**
|
|
11243
|
+
* Turn Count
|
|
11244
|
+
* @description Total turn count for the call
|
|
11245
|
+
* @default 0
|
|
11246
|
+
*/
|
|
11247
|
+
turn_count?: number;
|
|
11248
|
+
/**
|
|
11249
|
+
* Unique States
|
|
11250
|
+
* @description Number of distinct states visited
|
|
11251
|
+
* @default 0
|
|
11252
|
+
*/
|
|
11253
|
+
unique_states?: number;
|
|
11254
|
+
};
|
|
11305
11255
|
/** ConversationThreadRequest */
|
|
11306
11256
|
ConversationThreadRequest: {
|
|
11307
11257
|
channel_kind: components["schemas"]["ChannelKind"];
|
|
@@ -13290,11 +13240,8 @@ export interface components {
|
|
|
13290
13240
|
unmet_demand_score?: number | null;
|
|
13291
13241
|
/** Updated At */
|
|
13292
13242
|
updated_at?: string | null;
|
|
13293
|
-
/**
|
|
13294
|
-
|
|
13295
|
-
* Format: uuid
|
|
13296
|
-
*/
|
|
13297
|
-
workspace_id: string;
|
|
13243
|
+
/** Workspace Id */
|
|
13244
|
+
workspace_id: string | "labs";
|
|
13298
13245
|
};
|
|
13299
13246
|
/**
|
|
13300
13247
|
* DocumentProcessingSpec
|
|
@@ -15802,11 +15749,8 @@ export interface components {
|
|
|
15802
15749
|
t: number;
|
|
15803
15750
|
/** Upper 95 */
|
|
15804
15751
|
upper_95?: number | null;
|
|
15805
|
-
/**
|
|
15806
|
-
|
|
15807
|
-
* Format: uuid
|
|
15808
|
-
*/
|
|
15809
|
-
workspace_id: string;
|
|
15752
|
+
/** Workspace Id */
|
|
15753
|
+
workspace_id: string | "labs";
|
|
15810
15754
|
/** Ym */
|
|
15811
15755
|
ym?: string | null;
|
|
15812
15756
|
};
|
|
@@ -17978,11 +17922,8 @@ export interface components {
|
|
|
17978
17922
|
training_set_size?: number | null;
|
|
17979
17923
|
/** Version */
|
|
17980
17924
|
version?: string | null;
|
|
17981
|
-
/**
|
|
17982
|
-
|
|
17983
|
-
* Format: uuid
|
|
17984
|
-
*/
|
|
17985
|
-
workspace_id: string;
|
|
17925
|
+
/** Workspace Id */
|
|
17926
|
+
workspace_id: string | "labs";
|
|
17986
17927
|
};
|
|
17987
17928
|
NameString: string;
|
|
17988
17929
|
/** NarrativeUpdatedEvent */
|
|
@@ -19728,11 +19669,8 @@ export interface components {
|
|
|
19728
19669
|
umap_x: number;
|
|
19729
19670
|
/** Umap Y */
|
|
19730
19671
|
umap_y: number;
|
|
19731
|
-
/**
|
|
19732
|
-
|
|
19733
|
-
* Format: uuid
|
|
19734
|
-
*/
|
|
19735
|
-
workspace_id: string;
|
|
19672
|
+
/** Workspace Id */
|
|
19673
|
+
workspace_id: string | "labs";
|
|
19736
19674
|
/** Y Hat Asthma 12Mo */
|
|
19737
19675
|
y_hat_asthma_12mo?: number | null;
|
|
19738
19676
|
/** Y Hat Chf 90D */
|
|
@@ -20035,11 +19973,8 @@ export interface components {
|
|
|
20035
19973
|
signal_id: string;
|
|
20036
19974
|
/** Updated At */
|
|
20037
19975
|
updated_at?: string | null;
|
|
20038
|
-
/**
|
|
20039
|
-
|
|
20040
|
-
* Format: uuid
|
|
20041
|
-
*/
|
|
20042
|
-
workspace_id: string;
|
|
19976
|
+
/** Workspace Id */
|
|
19977
|
+
workspace_id: string | "labs";
|
|
20043
19978
|
};
|
|
20044
19979
|
/**
|
|
20045
19980
|
* PreloadSpec
|
|
@@ -28137,103 +28072,6 @@ export interface components {
|
|
|
28137
28072
|
*/
|
|
28138
28073
|
workspace_id: string;
|
|
28139
28074
|
};
|
|
28140
|
-
/**
|
|
28141
|
-
* ConversationSummary
|
|
28142
|
-
* @description Conversation flow metrics.
|
|
28143
|
-
*
|
|
28144
|
-
* Free-form residual on the raw ``conversation_summary`` JSONB:
|
|
28145
|
-
* ``text_intelligence: dict`` (text-channel intelligence
|
|
28146
|
-
* sub-payload), and on the simulation path ``transcript_text:
|
|
28147
|
-
* str`` (PHI), ``tool_calls: list``, ``score``,
|
|
28148
|
-
* ``score_rationale``, ``terminal_reached``, ``states_visited``.
|
|
28149
|
-
* Not exposed via this typed shape.
|
|
28150
|
-
*/
|
|
28151
|
-
src__routes__calls__ConversationSummary: {
|
|
28152
|
-
/**
|
|
28153
|
-
* Barge In Count
|
|
28154
|
-
* @description Number of caller interruptions
|
|
28155
|
-
* @default 0
|
|
28156
|
-
*/
|
|
28157
|
-
barge_in_count?: number;
|
|
28158
|
-
/**
|
|
28159
|
-
* Loop Count
|
|
28160
|
-
* @description Number of detected state loops
|
|
28161
|
-
* @default 0
|
|
28162
|
-
*/
|
|
28163
|
-
loop_count?: number;
|
|
28164
|
-
/**
|
|
28165
|
-
* States Visited Count
|
|
28166
|
-
* @description Number of states visited (including repeats)
|
|
28167
|
-
* @default 0
|
|
28168
|
-
*/
|
|
28169
|
-
states_visited_count?: number;
|
|
28170
|
-
/**
|
|
28171
|
-
* Turn Count
|
|
28172
|
-
* @description Total turn count for the call
|
|
28173
|
-
* @default 0
|
|
28174
|
-
*/
|
|
28175
|
-
turn_count?: number;
|
|
28176
|
-
/**
|
|
28177
|
-
* Unique States
|
|
28178
|
-
* @description Number of distinct states visited
|
|
28179
|
-
* @default 0
|
|
28180
|
-
*/
|
|
28181
|
-
unique_states?: number;
|
|
28182
|
-
};
|
|
28183
|
-
/** ConversationSummary */
|
|
28184
|
-
src__routes__conversations__ConversationSummary: {
|
|
28185
|
-
/** Call Sid */
|
|
28186
|
-
call_sid?: string | null;
|
|
28187
|
-
/** Caller Id */
|
|
28188
|
-
caller_id?: string | null;
|
|
28189
|
-
channel_kind: components["schemas"]["ChannelKind"];
|
|
28190
|
-
/** Completion Reason */
|
|
28191
|
-
completion_reason?: string | null;
|
|
28192
|
-
/** Created At */
|
|
28193
|
-
created_at: string;
|
|
28194
|
-
/** Direction */
|
|
28195
|
-
direction?: string | null;
|
|
28196
|
-
/** Duration Seconds */
|
|
28197
|
-
duration_seconds?: number | null;
|
|
28198
|
-
/** Entity Id */
|
|
28199
|
-
entity_id?: string | null;
|
|
28200
|
-
/** Escalation Status */
|
|
28201
|
-
escalation_status?: string | null;
|
|
28202
|
-
/** Final State */
|
|
28203
|
-
final_state?: string | null;
|
|
28204
|
-
/** Has Recording */
|
|
28205
|
-
has_recording?: boolean | null;
|
|
28206
|
-
/**
|
|
28207
|
-
* Id
|
|
28208
|
-
* Format: uuid
|
|
28209
|
-
*/
|
|
28210
|
-
id: string;
|
|
28211
|
-
/**
|
|
28212
|
-
* Lifecycle
|
|
28213
|
-
* @enum {string}
|
|
28214
|
-
*/
|
|
28215
|
-
lifecycle: "active" | "dormant" | "closed";
|
|
28216
|
-
/** Phone Number */
|
|
28217
|
-
phone_number?: string | null;
|
|
28218
|
-
/** Quality Score */
|
|
28219
|
-
quality_score?: number | null;
|
|
28220
|
-
/** Service Id */
|
|
28221
|
-
service_id?: string | null;
|
|
28222
|
-
/** Source */
|
|
28223
|
-
source?: string | null;
|
|
28224
|
-
/**
|
|
28225
|
-
* Status
|
|
28226
|
-
* @enum {string}
|
|
28227
|
-
*/
|
|
28228
|
-
status: "active" | "closed" | "completed" | "in-progress" | "failed" | "paused";
|
|
28229
|
-
/**
|
|
28230
|
-
* Turn Count
|
|
28231
|
-
* @default 0
|
|
28232
|
-
*/
|
|
28233
|
-
turn_count?: number;
|
|
28234
|
-
/** Updated At */
|
|
28235
|
-
updated_at: string;
|
|
28236
|
-
};
|
|
28237
28075
|
/** ListResponse */
|
|
28238
28076
|
src__routes__external_role_assignments__ListResponse: {
|
|
28239
28077
|
/** Continuation Token */
|
|
@@ -30928,42 +30766,6 @@ export interface operations {
|
|
|
30928
30766
|
};
|
|
30929
30767
|
};
|
|
30930
30768
|
};
|
|
30931
|
-
list_agent_runs_v1__workspace_id__agent_runs_get: {
|
|
30932
|
-
parameters: {
|
|
30933
|
-
query?: {
|
|
30934
|
-
limit?: number;
|
|
30935
|
-
continuation_token?: unknown;
|
|
30936
|
-
framework?: ("claude-agent-sdk" | "openai-agents") | null;
|
|
30937
|
-
status?: ("running" | "succeeded" | "failed" | "timed_out") | null;
|
|
30938
|
-
};
|
|
30939
|
-
header?: never;
|
|
30940
|
-
path: {
|
|
30941
|
-
workspace_id: string;
|
|
30942
|
-
};
|
|
30943
|
-
cookie?: never;
|
|
30944
|
-
};
|
|
30945
|
-
requestBody?: never;
|
|
30946
|
-
responses: {
|
|
30947
|
-
/** @description Successful Response */
|
|
30948
|
-
200: {
|
|
30949
|
-
headers: {
|
|
30950
|
-
[name: string]: unknown;
|
|
30951
|
-
};
|
|
30952
|
-
content: {
|
|
30953
|
-
"application/json": components["schemas"]["AgentRunListResponse"];
|
|
30954
|
-
};
|
|
30955
|
-
};
|
|
30956
|
-
/** @description Validation Error */
|
|
30957
|
-
422: {
|
|
30958
|
-
headers: {
|
|
30959
|
-
[name: string]: unknown;
|
|
30960
|
-
};
|
|
30961
|
-
content: {
|
|
30962
|
-
"application/json": components["schemas"]["HTTPValidationError"];
|
|
30963
|
-
};
|
|
30964
|
-
};
|
|
30965
|
-
};
|
|
30966
|
-
};
|
|
30967
30769
|
create_agent_run_v1__workspace_id__agent_runs_post: {
|
|
30968
30770
|
parameters: {
|
|
30969
30771
|
query?: never;
|
|
@@ -33101,37 +32903,6 @@ export interface operations {
|
|
|
33101
32903
|
};
|
|
33102
32904
|
};
|
|
33103
32905
|
};
|
|
33104
|
-
"list-active-calls-intelligence": {
|
|
33105
|
-
parameters: {
|
|
33106
|
-
query?: never;
|
|
33107
|
-
header?: never;
|
|
33108
|
-
path: {
|
|
33109
|
-
workspace_id: string;
|
|
33110
|
-
};
|
|
33111
|
-
cookie?: never;
|
|
33112
|
-
};
|
|
33113
|
-
requestBody?: never;
|
|
33114
|
-
responses: {
|
|
33115
|
-
/** @description Successful Response */
|
|
33116
|
-
200: {
|
|
33117
|
-
headers: {
|
|
33118
|
-
[name: string]: unknown;
|
|
33119
|
-
};
|
|
33120
|
-
content: {
|
|
33121
|
-
"application/json": {
|
|
33122
|
-
[key: string]: unknown;
|
|
33123
|
-
}[];
|
|
33124
|
-
};
|
|
33125
|
-
};
|
|
33126
|
-
/** @description Voice agent not configured */
|
|
33127
|
-
503: {
|
|
33128
|
-
headers: {
|
|
33129
|
-
[name: string]: unknown;
|
|
33130
|
-
};
|
|
33131
|
-
content?: never;
|
|
33132
|
-
};
|
|
33133
|
-
};
|
|
33134
|
-
};
|
|
33135
32906
|
"get-call-benchmarks": {
|
|
33136
32907
|
parameters: {
|
|
33137
32908
|
query?: {
|
|
@@ -34199,44 +33970,6 @@ export interface operations {
|
|
|
34199
33970
|
};
|
|
34200
33971
|
};
|
|
34201
33972
|
};
|
|
34202
|
-
list_conversations_v1__workspace_id__conversations_get: {
|
|
34203
|
-
parameters: {
|
|
34204
|
-
query?: {
|
|
34205
|
-
/** @description Filter by channel */
|
|
34206
|
-
channel_kind?: components["schemas"]["ChannelKind"] | null;
|
|
34207
|
-
/** @description Filter by status */
|
|
34208
|
-
status?: ("active" | "closed" | "completed" | "in-progress" | "failed" | "paused") | null;
|
|
34209
|
-
limit?: number;
|
|
34210
|
-
offset?: number;
|
|
34211
|
-
};
|
|
34212
|
-
header?: never;
|
|
34213
|
-
path: {
|
|
34214
|
-
workspace_id: string;
|
|
34215
|
-
};
|
|
34216
|
-
cookie?: never;
|
|
34217
|
-
};
|
|
34218
|
-
requestBody?: never;
|
|
34219
|
-
responses: {
|
|
34220
|
-
/** @description Successful Response */
|
|
34221
|
-
200: {
|
|
34222
|
-
headers: {
|
|
34223
|
-
[name: string]: unknown;
|
|
34224
|
-
};
|
|
34225
|
-
content: {
|
|
34226
|
-
"application/json": components["schemas"]["ConversationListResponse"];
|
|
34227
|
-
};
|
|
34228
|
-
};
|
|
34229
|
-
/** @description Validation Error */
|
|
34230
|
-
422: {
|
|
34231
|
-
headers: {
|
|
34232
|
-
[name: string]: unknown;
|
|
34233
|
-
};
|
|
34234
|
-
content: {
|
|
34235
|
-
"application/json": components["schemas"]["HTTPValidationError"];
|
|
34236
|
-
};
|
|
34237
|
-
};
|
|
34238
|
-
};
|
|
34239
|
-
};
|
|
34240
33973
|
create_conversation_v1__workspace_id__conversations_post: {
|
|
34241
33974
|
parameters: {
|
|
34242
33975
|
query?: never;
|