@amigo-ai/platform-sdk 0.5.5 → 0.5.7
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/dist/types/generated/api.d.ts +182 -0
- package/dist/types/generated/api.d.ts.map +1 -1
- package/dist/types/resources/actions.d.ts +22 -126
- package/dist/types/resources/actions.d.ts.map +1 -1
- package/dist/types/resources/agents.d.ts +16 -102
- package/dist/types/resources/agents.d.ts.map +1 -1
- package/dist/types/resources/analytics.d.ts +22 -74
- package/dist/types/resources/analytics.d.ts.map +1 -1
- package/dist/types/resources/api-keys.d.ts +3 -16
- package/dist/types/resources/api-keys.d.ts.map +1 -1
- package/dist/types/resources/audit.d.ts +31 -87
- package/dist/types/resources/audit.d.ts.map +1 -1
- package/dist/types/resources/billing.d.ts +9 -42
- package/dist/types/resources/billing.d.ts.map +1 -1
- package/dist/types/resources/calls.d.ts +65 -169
- package/dist/types/resources/calls.d.ts.map +1 -1
- package/dist/types/resources/compliance.d.ts +6 -6
- package/dist/types/resources/context-graphs.d.ts +17 -958
- package/dist/types/resources/context-graphs.d.ts.map +1 -1
- package/dist/types/resources/data-sources.d.ts +13 -50
- package/dist/types/resources/data-sources.d.ts.map +1 -1
- package/dist/types/resources/functions.d.ts +22 -49
- package/dist/types/resources/functions.d.ts.map +1 -1
- package/dist/types/resources/integrations.d.ts +49 -379
- package/dist/types/resources/integrations.d.ts.map +1 -1
- package/dist/types/resources/memory.d.ts +4 -48
- package/dist/types/resources/memory.d.ts.map +1 -1
- package/dist/types/resources/operators.d.ts +64 -189
- package/dist/types/resources/operators.d.ts.map +1 -1
- package/dist/types/resources/personas.d.ts +7 -20
- package/dist/types/resources/personas.d.ts.map +1 -1
- package/dist/types/resources/phone-numbers.d.ts +8 -46
- package/dist/types/resources/phone-numbers.d.ts.map +1 -1
- package/dist/types/resources/recordings.d.ts +4 -4
- package/dist/types/resources/review-queue.d.ts +49 -350
- package/dist/types/resources/review-queue.d.ts.map +1 -1
- package/dist/types/resources/safety.d.ts +6 -32
- package/dist/types/resources/safety.d.ts.map +1 -1
- package/dist/types/resources/services.d.ts +47 -242
- package/dist/types/resources/services.d.ts.map +1 -1
- package/dist/types/resources/settings.d.ts +36 -404
- package/dist/types/resources/settings.d.ts.map +1 -1
- package/dist/types/resources/simulations.d.ts +20 -148
- package/dist/types/resources/simulations.d.ts.map +1 -1
- package/dist/types/resources/skills.d.ts +21 -117
- package/dist/types/resources/skills.d.ts.map +1 -1
- package/dist/types/resources/triggers.d.ts +64 -92
- package/dist/types/resources/triggers.d.ts.map +1 -1
- package/dist/types/resources/webhook-destinations.d.ts +20 -44
- package/dist/types/resources/webhook-destinations.d.ts.map +1 -1
- package/dist/types/resources/workspaces.d.ts +4 -26
- package/dist/types/resources/workspaces.d.ts.map +1 -1
- package/dist/types/resources/world.d.ts +121 -322
- package/dist/types/resources/world.d.ts.map +1 -1
- package/package.json +1 -1
|
@@ -30,12 +30,9 @@ export declare class ActionsResource extends WorkspaceScopedResource {
|
|
|
30
30
|
execution_tier: "direct" | "orchestrated" | "autonomous" | "browser" | "computer_use";
|
|
31
31
|
id: string;
|
|
32
32
|
input_schema: {
|
|
33
|
-
[
|
|
33
|
+
[key: string]: unknown;
|
|
34
34
|
};
|
|
35
|
-
integration_tools:
|
|
36
|
-
endpoint: string;
|
|
37
|
-
integration: string;
|
|
38
|
-
}[];
|
|
35
|
+
integration_tools: components["schemas"]["src__models__IntegrationToolRef"][];
|
|
39
36
|
max_agent_turns: number;
|
|
40
37
|
max_input_tokens: number | null;
|
|
41
38
|
max_result_chars: number;
|
|
@@ -43,17 +40,10 @@ export declare class ActionsResource extends WorkspaceScopedResource {
|
|
|
43
40
|
model: string;
|
|
44
41
|
name: string;
|
|
45
42
|
result_schema: {
|
|
46
|
-
[
|
|
43
|
+
[key: string]: unknown;
|
|
47
44
|
} | null;
|
|
48
45
|
slug: string;
|
|
49
|
-
static_tools:
|
|
50
|
-
description: string;
|
|
51
|
-
handler: string;
|
|
52
|
-
input_schema: {
|
|
53
|
-
[x: string]: unknown;
|
|
54
|
-
};
|
|
55
|
-
name: string;
|
|
56
|
-
}[];
|
|
46
|
+
static_tools: components["schemas"]["src__models__StaticToolDef"][];
|
|
57
47
|
system_prompt: string;
|
|
58
48
|
thinking_effort: ("low" | "medium" | "high") | null;
|
|
59
49
|
timeout_s: number;
|
|
@@ -65,57 +55,10 @@ export declare class ActionsResource extends WorkspaceScopedResource {
|
|
|
65
55
|
} & import("../index.js").ResponseMetadata>;
|
|
66
56
|
/** List actions in the workspace */
|
|
67
57
|
list(params?: ListActionsParams): Promise<{
|
|
68
|
-
continuation_token?: number | null
|
|
58
|
+
continuation_token?: number | null;
|
|
69
59
|
has_more: boolean;
|
|
70
|
-
items:
|
|
71
|
-
|
|
72
|
-
browser_allowed_domains: string[];
|
|
73
|
-
browser_auth_integration: string | null;
|
|
74
|
-
browser_start_url: string | null;
|
|
75
|
-
checkpoint_enabled: boolean;
|
|
76
|
-
created_at: string;
|
|
77
|
-
delivery: "interrupt" | "queue";
|
|
78
|
-
description: string;
|
|
79
|
-
enable_caching: boolean;
|
|
80
|
-
enable_citations: boolean;
|
|
81
|
-
enabled: boolean;
|
|
82
|
-
execution_tier: "direct" | "orchestrated" | "autonomous" | "browser" | "computer_use";
|
|
83
|
-
id: string;
|
|
84
|
-
input_schema: {
|
|
85
|
-
[x: string]: unknown;
|
|
86
|
-
};
|
|
87
|
-
integration_tools: {
|
|
88
|
-
endpoint: string;
|
|
89
|
-
integration: string;
|
|
90
|
-
}[];
|
|
91
|
-
max_agent_turns: number;
|
|
92
|
-
max_input_tokens: number | null;
|
|
93
|
-
max_result_chars: number;
|
|
94
|
-
max_tokens: number;
|
|
95
|
-
model: string;
|
|
96
|
-
name: string;
|
|
97
|
-
result_schema: {
|
|
98
|
-
[x: string]: unknown;
|
|
99
|
-
} | null;
|
|
100
|
-
slug: string;
|
|
101
|
-
static_tools: {
|
|
102
|
-
description: string;
|
|
103
|
-
handler: string;
|
|
104
|
-
input_schema: {
|
|
105
|
-
[x: string]: unknown;
|
|
106
|
-
};
|
|
107
|
-
name: string;
|
|
108
|
-
}[];
|
|
109
|
-
system_prompt: string;
|
|
110
|
-
thinking_effort: ("low" | "medium" | "high") | null;
|
|
111
|
-
timeout_s: number;
|
|
112
|
-
updated_at: string;
|
|
113
|
-
urgency_keywords: string[];
|
|
114
|
-
use_structured_output: boolean;
|
|
115
|
-
version: number;
|
|
116
|
-
workspace_id: string;
|
|
117
|
-
}[];
|
|
118
|
-
total?: number | null | undefined;
|
|
60
|
+
items: components["schemas"]["SkillResponse"][];
|
|
61
|
+
total?: number | null;
|
|
119
62
|
} & import("../index.js").ResponseMetadata>;
|
|
120
63
|
listAutoPaging(params?: ListActionsParams): AsyncGenerator<{
|
|
121
64
|
approval_required: boolean;
|
|
@@ -132,12 +75,9 @@ export declare class ActionsResource extends WorkspaceScopedResource {
|
|
|
132
75
|
execution_tier: "direct" | "orchestrated" | "autonomous" | "browser" | "computer_use";
|
|
133
76
|
id: string;
|
|
134
77
|
input_schema: {
|
|
135
|
-
[
|
|
78
|
+
[key: string]: unknown;
|
|
136
79
|
};
|
|
137
|
-
integration_tools:
|
|
138
|
-
endpoint: string;
|
|
139
|
-
integration: string;
|
|
140
|
-
}[];
|
|
80
|
+
integration_tools: components["schemas"]["src__models__IntegrationToolRef"][];
|
|
141
81
|
max_agent_turns: number;
|
|
142
82
|
max_input_tokens: number | null;
|
|
143
83
|
max_result_chars: number;
|
|
@@ -145,17 +85,10 @@ export declare class ActionsResource extends WorkspaceScopedResource {
|
|
|
145
85
|
model: string;
|
|
146
86
|
name: string;
|
|
147
87
|
result_schema: {
|
|
148
|
-
[
|
|
88
|
+
[key: string]: unknown;
|
|
149
89
|
} | null;
|
|
150
90
|
slug: string;
|
|
151
|
-
static_tools:
|
|
152
|
-
description: string;
|
|
153
|
-
handler: string;
|
|
154
|
-
input_schema: {
|
|
155
|
-
[x: string]: unknown;
|
|
156
|
-
};
|
|
157
|
-
name: string;
|
|
158
|
-
}[];
|
|
91
|
+
static_tools: components["schemas"]["src__models__StaticToolDef"][];
|
|
159
92
|
system_prompt: string;
|
|
160
93
|
thinking_effort: ("low" | "medium" | "high") | null;
|
|
161
94
|
timeout_s: number;
|
|
@@ -181,12 +114,9 @@ export declare class ActionsResource extends WorkspaceScopedResource {
|
|
|
181
114
|
execution_tier: "direct" | "orchestrated" | "autonomous" | "browser" | "computer_use";
|
|
182
115
|
id: string;
|
|
183
116
|
input_schema: {
|
|
184
|
-
[
|
|
117
|
+
[key: string]: unknown;
|
|
185
118
|
};
|
|
186
|
-
integration_tools:
|
|
187
|
-
endpoint: string;
|
|
188
|
-
integration: string;
|
|
189
|
-
}[];
|
|
119
|
+
integration_tools: components["schemas"]["src__models__IntegrationToolRef"][];
|
|
190
120
|
max_agent_turns: number;
|
|
191
121
|
max_input_tokens: number | null;
|
|
192
122
|
max_result_chars: number;
|
|
@@ -194,17 +124,10 @@ export declare class ActionsResource extends WorkspaceScopedResource {
|
|
|
194
124
|
model: string;
|
|
195
125
|
name: string;
|
|
196
126
|
result_schema: {
|
|
197
|
-
[
|
|
127
|
+
[key: string]: unknown;
|
|
198
128
|
} | null;
|
|
199
129
|
slug: string;
|
|
200
|
-
static_tools:
|
|
201
|
-
description: string;
|
|
202
|
-
handler: string;
|
|
203
|
-
input_schema: {
|
|
204
|
-
[x: string]: unknown;
|
|
205
|
-
};
|
|
206
|
-
name: string;
|
|
207
|
-
}[];
|
|
130
|
+
static_tools: components["schemas"]["src__models__StaticToolDef"][];
|
|
208
131
|
system_prompt: string;
|
|
209
132
|
thinking_effort: ("low" | "medium" | "high") | null;
|
|
210
133
|
timeout_s: number;
|
|
@@ -230,12 +153,9 @@ export declare class ActionsResource extends WorkspaceScopedResource {
|
|
|
230
153
|
execution_tier: "direct" | "orchestrated" | "autonomous" | "browser" | "computer_use";
|
|
231
154
|
id: string;
|
|
232
155
|
input_schema: {
|
|
233
|
-
[
|
|
156
|
+
[key: string]: unknown;
|
|
234
157
|
};
|
|
235
|
-
integration_tools:
|
|
236
|
-
endpoint: string;
|
|
237
|
-
integration: string;
|
|
238
|
-
}[];
|
|
158
|
+
integration_tools: components["schemas"]["src__models__IntegrationToolRef"][];
|
|
239
159
|
max_agent_turns: number;
|
|
240
160
|
max_input_tokens: number | null;
|
|
241
161
|
max_result_chars: number;
|
|
@@ -243,17 +163,10 @@ export declare class ActionsResource extends WorkspaceScopedResource {
|
|
|
243
163
|
model: string;
|
|
244
164
|
name: string;
|
|
245
165
|
result_schema: {
|
|
246
|
-
[
|
|
166
|
+
[key: string]: unknown;
|
|
247
167
|
} | null;
|
|
248
168
|
slug: string;
|
|
249
|
-
static_tools:
|
|
250
|
-
description: string;
|
|
251
|
-
handler: string;
|
|
252
|
-
input_schema: {
|
|
253
|
-
[x: string]: unknown;
|
|
254
|
-
};
|
|
255
|
-
name: string;
|
|
256
|
-
}[];
|
|
169
|
+
static_tools: components["schemas"]["src__models__StaticToolDef"][];
|
|
257
170
|
system_prompt: string;
|
|
258
171
|
thinking_effort: ("low" | "medium" | "high") | null;
|
|
259
172
|
timeout_s: number;
|
|
@@ -267,15 +180,7 @@ export declare class ActionsResource extends WorkspaceScopedResource {
|
|
|
267
180
|
delete(actionId: ActionId | string): Promise<void>;
|
|
268
181
|
/** Get all context graphs and services that reference this action */
|
|
269
182
|
getReferences(actionId: ActionId | string): Promise<{
|
|
270
|
-
context_graph_references:
|
|
271
|
-
context_graph_id: string;
|
|
272
|
-
context_graph_name: string;
|
|
273
|
-
states: {
|
|
274
|
-
state_name: string;
|
|
275
|
-
tool_spec_category: string;
|
|
276
|
-
}[];
|
|
277
|
-
version: number;
|
|
278
|
-
}[];
|
|
183
|
+
context_graph_references: components["schemas"]["SkillContextGraphReference"][];
|
|
279
184
|
service_references: string[];
|
|
280
185
|
skill_id: string;
|
|
281
186
|
skill_slug: string;
|
|
@@ -287,21 +192,12 @@ export declare class ActionsResource extends WorkspaceScopedResource {
|
|
|
287
192
|
test(actionId: ActionId | string, body: components['schemas']['TestSkillRequest']): Promise<{
|
|
288
193
|
cached_tokens: number;
|
|
289
194
|
duration_ms: number;
|
|
290
|
-
error?: string | null
|
|
195
|
+
error?: string | null;
|
|
291
196
|
input_tokens: number;
|
|
292
197
|
output_tokens: number;
|
|
293
198
|
result: string;
|
|
294
199
|
rounds: number;
|
|
295
|
-
sub_tool_logs:
|
|
296
|
-
duration_ms: number;
|
|
297
|
-
input: {
|
|
298
|
-
[x: string]: unknown;
|
|
299
|
-
};
|
|
300
|
-
output: string;
|
|
301
|
-
round: number;
|
|
302
|
-
succeeded: boolean;
|
|
303
|
-
tool_name: string;
|
|
304
|
-
}[];
|
|
200
|
+
sub_tool_logs: components["schemas"]["SubToolLog"][];
|
|
305
201
|
} & import("../index.js").ResponseMetadata>;
|
|
306
202
|
}
|
|
307
203
|
//# sourceMappingURL=actions.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"actions.d.ts","sourceRoot":"","sources":["../../../src/resources/actions.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,qBAAqB,CAAA;AACrD,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,0BAA0B,CAAA;AACxD,OAAO,EAAE,uBAAuB,EAAe,MAAM,WAAW,CAAA;AAChE,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,kBAAkB,CAAA;AAElD,MAAM,WAAW,iBAAkB,SAAQ,UAAU;IACnD,MAAM,CAAC,EAAE,MAAM,CAAA;IACf,OAAO,CAAC,EAAE,OAAO,CAAA;IACjB,cAAc,CAAC,EAAE,MAAM,CAAA;CACxB;AAED;;;;;GAKG;AACH,qBAAa,eAAgB,SAAQ,uBAAuB;IAC1D,0BAA0B;IACpB,MAAM,CAAC,IAAI,EAAE,UAAU,CAAC,SAAS,CAAC,CAAC,oBAAoB,CAAC
|
|
1
|
+
{"version":3,"file":"actions.d.ts","sourceRoot":"","sources":["../../../src/resources/actions.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,qBAAqB,CAAA;AACrD,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,0BAA0B,CAAA;AACxD,OAAO,EAAE,uBAAuB,EAAe,MAAM,WAAW,CAAA;AAChE,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,kBAAkB,CAAA;AAElD,MAAM,WAAW,iBAAkB,SAAQ,UAAU;IACnD,MAAM,CAAC,EAAE,MAAM,CAAA;IACf,OAAO,CAAC,EAAE,OAAO,CAAA;IACjB,cAAc,CAAC,EAAE,MAAM,CAAA;CACxB;AAED;;;;;GAKG;AACH,qBAAa,eAAgB,SAAQ,uBAAuB;IAC1D,0BAA0B;IACpB,MAAM,CAAC,IAAI,EAAE,UAAU,CAAC,SAAS,CAAC,CAAC,oBAAoB,CAAC;;;;;;;;;;;;;;;;;2BAsEg8mmB,qBAAsB;;;;;;;;;;;sBAAqpB,qBAAsB;;;;;;;;;;IA7D/romB,oCAAoC;IAC9B,IAAI,CAAC,MAAM,CAAC,EAAE,iBAAiB;;;eA4D+g4gB,qBAAsB;;;IApD1k4gB,cAAc,CAAC,MAAM,CAAC,EAAE,iBAAiB;;;;;;;;;;;;;;;;;2BAoDq9mmB,qBAAsB;;;;;;;;;;;sBAAqpB,qBAAsB;;;;;;;;;;IAhD/romB,0BAA0B;IACpB,GAAG,CAAC,QAAQ,EAAE,QAAQ,GAAG,MAAM;;;;;;;;;;;;;;;;;2BA+Cy9mmB,qBAAsB;;;;;;;;;;;sBAAqpB,qBAAsB;;;;;;;;;;IAvC/romB,uBAAuB;IACjB,MAAM,CAAC,QAAQ,EAAE,QAAQ,GAAG,MAAM,EAAE,IAAI,EAAE,UAAU,CAAC,SAAS,CAAC,CAAC,oBAAoB,CAAC;;;;;;;;;;;;;;;;;2BAsCm6mmB,qBAAsB;;;;;;;;;;;sBAAqpB,qBAAsB;;;;;;;;;;IA7B/romB,uBAAuB;IACjB,MAAM,CAAC,QAAQ,EAAE,QAAQ,GAAG,MAAM,GAAG,OAAO,CAAC,IAAI,CAAC;IAMxD,qEAAqE;IAC/D,aAAa,CAAC,QAAQ,EAAE,QAAQ,GAAG,MAAM;kCAqBwzjmB,qBAAsB;;;;;IAb73jmB;;;OAGG;IACG,IAAI,CAAC,QAAQ,EAAE,QAAQ,GAAG,MAAM,EAAE,IAAI,EAAE,UAAU,CAAC,SAAS,CAAC,CAAC,kBAAkB,CAAC;;;;;;;;uBAS6rwoB,qBAAsB;;CAD3ywoB"}
|
|
@@ -10,30 +10,22 @@ export declare class AgentsResource extends WorkspaceScopedResource {
|
|
|
10
10
|
created_at: string;
|
|
11
11
|
description: string;
|
|
12
12
|
id: string;
|
|
13
|
-
latest_version?: number
|
|
13
|
+
latest_version?: number;
|
|
14
14
|
name: string;
|
|
15
15
|
updated_at: string;
|
|
16
16
|
workspace_id: string;
|
|
17
17
|
} & import("../index.js").ResponseMetadata>;
|
|
18
18
|
list(params?: ListAgentsParams): Promise<{
|
|
19
|
-
continuation_token?: number | null
|
|
19
|
+
continuation_token?: number | null;
|
|
20
20
|
has_more: boolean;
|
|
21
|
-
items:
|
|
22
|
-
|
|
23
|
-
description: string;
|
|
24
|
-
id: string;
|
|
25
|
-
latest_version?: number | undefined;
|
|
26
|
-
name: string;
|
|
27
|
-
updated_at: string;
|
|
28
|
-
workspace_id: string;
|
|
29
|
-
}[];
|
|
30
|
-
total?: number | null | undefined;
|
|
21
|
+
items: components["schemas"]["AgentResponse"][];
|
|
22
|
+
total?: number | null;
|
|
31
23
|
} & import("../index.js").ResponseMetadata>;
|
|
32
24
|
listAutoPaging(params?: ListAgentsParams): AsyncGenerator<{
|
|
33
25
|
created_at: string;
|
|
34
26
|
description: string;
|
|
35
27
|
id: string;
|
|
36
|
-
latest_version?: number
|
|
28
|
+
latest_version?: number;
|
|
37
29
|
name: string;
|
|
38
30
|
updated_at: string;
|
|
39
31
|
workspace_id: string;
|
|
@@ -42,7 +34,7 @@ export declare class AgentsResource extends WorkspaceScopedResource {
|
|
|
42
34
|
created_at: string;
|
|
43
35
|
description: string;
|
|
44
36
|
id: string;
|
|
45
|
-
latest_version?: number
|
|
37
|
+
latest_version?: number;
|
|
46
38
|
name: string;
|
|
47
39
|
updated_at: string;
|
|
48
40
|
workspace_id: string;
|
|
@@ -51,47 +43,17 @@ export declare class AgentsResource extends WorkspaceScopedResource {
|
|
|
51
43
|
created_at: string;
|
|
52
44
|
description: string;
|
|
53
45
|
id: string;
|
|
54
|
-
latest_version?: number
|
|
46
|
+
latest_version?: number;
|
|
55
47
|
name: string;
|
|
56
48
|
updated_at: string;
|
|
57
49
|
workspace_id: string;
|
|
58
50
|
} & import("../index.js").ResponseMetadata>;
|
|
59
51
|
delete(agentId: AgentId | string): Promise<void>;
|
|
60
52
|
listVersions(agentId: AgentId | string, params?: ListParams): Promise<{
|
|
61
|
-
continuation_token?: number | null
|
|
53
|
+
continuation_token?: number | null;
|
|
62
54
|
has_more: boolean;
|
|
63
|
-
items:
|
|
64
|
-
|
|
65
|
-
background: string;
|
|
66
|
-
behaviors: string[];
|
|
67
|
-
communication_patterns: string[];
|
|
68
|
-
created_at: string;
|
|
69
|
-
id: string;
|
|
70
|
-
identity: {
|
|
71
|
-
default_spoken_language: string;
|
|
72
|
-
developed_by: string;
|
|
73
|
-
name: string;
|
|
74
|
-
relationship_to_developer?: {
|
|
75
|
-
conversation_visibility: string;
|
|
76
|
-
ownership: string;
|
|
77
|
-
thought_visibility: string;
|
|
78
|
-
type: string;
|
|
79
|
-
} | undefined;
|
|
80
|
-
role: string;
|
|
81
|
-
};
|
|
82
|
-
initials: string;
|
|
83
|
-
name: string;
|
|
84
|
-
updated_at: string;
|
|
85
|
-
version: number;
|
|
86
|
-
voice_config: {
|
|
87
|
-
similarity_boost?: number | undefined;
|
|
88
|
-
stability?: number | undefined;
|
|
89
|
-
style?: number | undefined;
|
|
90
|
-
voice_id: string;
|
|
91
|
-
} | null;
|
|
92
|
-
workspace_id: string;
|
|
93
|
-
}[];
|
|
94
|
-
total?: number | null | undefined;
|
|
55
|
+
items: components["schemas"]["AgentVersionResponse"][];
|
|
56
|
+
total?: number | null;
|
|
95
57
|
} & import("../index.js").ResponseMetadata>;
|
|
96
58
|
listVersionsAutoPaging(agentId: AgentId | string, params?: ListParams): AsyncGenerator<{
|
|
97
59
|
agent_id: string;
|
|
@@ -100,28 +62,12 @@ export declare class AgentsResource extends WorkspaceScopedResource {
|
|
|
100
62
|
communication_patterns: string[];
|
|
101
63
|
created_at: string;
|
|
102
64
|
id: string;
|
|
103
|
-
identity:
|
|
104
|
-
default_spoken_language: string;
|
|
105
|
-
developed_by: string;
|
|
106
|
-
name: string;
|
|
107
|
-
relationship_to_developer?: {
|
|
108
|
-
conversation_visibility: string;
|
|
109
|
-
ownership: string;
|
|
110
|
-
thought_visibility: string;
|
|
111
|
-
type: string;
|
|
112
|
-
} | undefined;
|
|
113
|
-
role: string;
|
|
114
|
-
};
|
|
65
|
+
identity: components["schemas"]["Identity"];
|
|
115
66
|
initials: string;
|
|
116
67
|
name: string;
|
|
117
68
|
updated_at: string;
|
|
118
69
|
version: number;
|
|
119
|
-
voice_config:
|
|
120
|
-
similarity_boost?: number | undefined;
|
|
121
|
-
stability?: number | undefined;
|
|
122
|
-
style?: number | undefined;
|
|
123
|
-
voice_id: string;
|
|
124
|
-
} | null;
|
|
70
|
+
voice_config: components["schemas"]["VoiceConfig"] | null;
|
|
125
71
|
workspace_id: string;
|
|
126
72
|
}, any, any>;
|
|
127
73
|
getVersion(agentId: AgentId | string, version: number | 'latest'): Promise<{
|
|
@@ -131,28 +77,12 @@ export declare class AgentsResource extends WorkspaceScopedResource {
|
|
|
131
77
|
communication_patterns: string[];
|
|
132
78
|
created_at: string;
|
|
133
79
|
id: string;
|
|
134
|
-
identity:
|
|
135
|
-
default_spoken_language: string;
|
|
136
|
-
developed_by: string;
|
|
137
|
-
name: string;
|
|
138
|
-
relationship_to_developer?: {
|
|
139
|
-
conversation_visibility: string;
|
|
140
|
-
ownership: string;
|
|
141
|
-
thought_visibility: string;
|
|
142
|
-
type: string;
|
|
143
|
-
} | undefined;
|
|
144
|
-
role: string;
|
|
145
|
-
};
|
|
80
|
+
identity: components["schemas"]["Identity"];
|
|
146
81
|
initials: string;
|
|
147
82
|
name: string;
|
|
148
83
|
updated_at: string;
|
|
149
84
|
version: number;
|
|
150
|
-
voice_config:
|
|
151
|
-
similarity_boost?: number | undefined;
|
|
152
|
-
stability?: number | undefined;
|
|
153
|
-
style?: number | undefined;
|
|
154
|
-
voice_id: string;
|
|
155
|
-
} | null;
|
|
85
|
+
voice_config: components["schemas"]["VoiceConfig"] | null;
|
|
156
86
|
workspace_id: string;
|
|
157
87
|
} & import("../index.js").ResponseMetadata>;
|
|
158
88
|
createVersion(agentId: AgentId | string, body: components['schemas']['CreateAgentVersionRequest']): Promise<{
|
|
@@ -162,28 +92,12 @@ export declare class AgentsResource extends WorkspaceScopedResource {
|
|
|
162
92
|
communication_patterns: string[];
|
|
163
93
|
created_at: string;
|
|
164
94
|
id: string;
|
|
165
|
-
identity:
|
|
166
|
-
default_spoken_language: string;
|
|
167
|
-
developed_by: string;
|
|
168
|
-
name: string;
|
|
169
|
-
relationship_to_developer?: {
|
|
170
|
-
conversation_visibility: string;
|
|
171
|
-
ownership: string;
|
|
172
|
-
thought_visibility: string;
|
|
173
|
-
type: string;
|
|
174
|
-
} | undefined;
|
|
175
|
-
role: string;
|
|
176
|
-
};
|
|
95
|
+
identity: components["schemas"]["Identity"];
|
|
177
96
|
initials: string;
|
|
178
97
|
name: string;
|
|
179
98
|
updated_at: string;
|
|
180
99
|
version: number;
|
|
181
|
-
voice_config:
|
|
182
|
-
similarity_boost?: number | undefined;
|
|
183
|
-
stability?: number | undefined;
|
|
184
|
-
style?: number | undefined;
|
|
185
|
-
voice_id: string;
|
|
186
|
-
} | null;
|
|
100
|
+
voice_config: components["schemas"]["VoiceConfig"] | null;
|
|
187
101
|
workspace_id: string;
|
|
188
102
|
} & import("../index.js").ResponseMetadata>;
|
|
189
103
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"agents.d.ts","sourceRoot":"","sources":["../../../src/resources/agents.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,qBAAqB,CAAA;AACrD,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,0BAA0B,CAAA;AACvD,OAAO,EAAE,uBAAuB,EAAe,MAAM,WAAW,CAAA;AAChE,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,kBAAkB,CAAA;AAElD,MAAM,WAAW,gBAAiB,SAAQ,UAAU;IAClD,MAAM,CAAC,EAAE,MAAM,CAAA;CAChB;AAED,qBAAa,cAAe,SAAQ,uBAAuB;IACnD,MAAM,CAAC,IAAI,EAAE,UAAU,CAAC,SAAS,CAAC,CAAC,oBAAoB,CAAC;;;;;;;;;IASxD,IAAI,CAAC,MAAM,CAAC,EAAE,gBAAgB
|
|
1
|
+
{"version":3,"file":"agents.d.ts","sourceRoot":"","sources":["../../../src/resources/agents.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,qBAAqB,CAAA;AACrD,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,0BAA0B,CAAA;AACvD,OAAO,EAAE,uBAAuB,EAAe,MAAM,WAAW,CAAA;AAChE,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,kBAAkB,CAAA;AAElD,MAAM,WAAW,gBAAiB,SAAQ,UAAU;IAClD,MAAM,CAAC,EAAE,MAAM,CAAA;CAChB;AAED,qBAAa,cAAe,SAAQ,uBAAuB;IACnD,MAAM,CAAC,IAAI,EAAE,UAAU,CAAC,SAAS,CAAC,CAAC,oBAAoB,CAAC;;;;;;;;;IASxD,IAAI,CAAC,MAAM,CAAC,EAAE,gBAAgB;;;eAqEoqngB,qBAAsB;;;IA7D9tngB,cAAc,CAAC,MAAM,CAAC,EAAE,gBAAgB;;;;;;;;;IAIlC,GAAG,CAAC,OAAO,EAAE,OAAO,GAAG,MAAM;;;;;;;;;IAQ7B,MAAM,CAAC,OAAO,EAAE,OAAO,GAAG,MAAM,EAAE,IAAI,EAAE,UAAU,CAAC,SAAS,CAAC,CAAC,oBAAoB,CAAC;;;;;;;;;IASnF,MAAM,CAAC,OAAO,EAAE,OAAO,GAAG,MAAM,GAAG,OAAO,CAAC,IAAI,CAAC;IAMhD,YAAY,CAAC,OAAO,EAAE,OAAO,GAAG,MAAM,EAAE,MAAM,CAAC,EAAE,UAAU;;;eAkC+hogB,qBAAsB;;;IA1BtnogB,sBAAsB,CAAC,OAAO,EAAE,OAAO,GAAG,MAAM,EAAE,MAAM,CAAC,EAAE,UAAU;;;;;;;kBA0BqiuP,qBAAsB;;;;;sBAAsU,qBAAsB;;;IAtBt9uP,UAAU,CAAC,OAAO,EAAE,OAAO,GAAG,MAAM,EAAE,OAAO,EAAE,MAAM,GAAG,QAAQ;;;;;;;kBAsBoiuP,qBAAsB;;;;;sBAAsU,qBAAsB;;;IAZt9uP,aAAa,CACjB,OAAO,EAAE,OAAO,GAAG,MAAM,EACzB,IAAI,EAAE,UAAU,CAAC,SAAS,CAAC,CAAC,2BAA2B,CAAC;;;;;;;kBAUgjuP,qBAAsB;;;;;sBAAsU,qBAAsB;;;CAD79uP"}
|
|
@@ -7,7 +7,7 @@ export declare class AnalyticsResource extends WorkspaceScopedResource {
|
|
|
7
7
|
getDashboard(params?: {
|
|
8
8
|
days?: number;
|
|
9
9
|
}): Promise<{
|
|
10
|
-
[
|
|
10
|
+
[key: string]: unknown;
|
|
11
11
|
} & import("../index.js").ResponseMetadata>;
|
|
12
12
|
/** Call volume and duration metrics */
|
|
13
13
|
getCalls(params?: {
|
|
@@ -18,11 +18,7 @@ export declare class AnalyticsResource extends WorkspaceScopedResource {
|
|
|
18
18
|
service_id?: string | null;
|
|
19
19
|
}): Promise<{
|
|
20
20
|
avg_duration_seconds: number;
|
|
21
|
-
calls_by_date:
|
|
22
|
-
avg_duration_seconds?: number | null | undefined;
|
|
23
|
-
count: number;
|
|
24
|
-
date: string;
|
|
25
|
-
}[];
|
|
21
|
+
calls_by_date: import("../index.js").components["schemas"]["DailyCallStat"][];
|
|
26
22
|
period_end: string;
|
|
27
23
|
period_start: string;
|
|
28
24
|
total_calls: number;
|
|
@@ -33,15 +29,8 @@ export declare class AnalyticsResource extends WorkspaceScopedResource {
|
|
|
33
29
|
getAgents(params?: {
|
|
34
30
|
period?: string;
|
|
35
31
|
}): Promise<{
|
|
36
|
-
agents:
|
|
37
|
-
|
|
38
|
-
agent_name: string;
|
|
39
|
-
avg_duration_seconds: number;
|
|
40
|
-
completed_calls: number;
|
|
41
|
-
completion_rate: number;
|
|
42
|
-
total_calls: number;
|
|
43
|
-
}[];
|
|
44
|
-
period?: string | null | undefined;
|
|
32
|
+
agents: import("../index.js").components["schemas"]["AgentAnalyticsEntry"][];
|
|
33
|
+
period?: string | null;
|
|
45
34
|
} & import("../index.js").ResponseMetadata>;
|
|
46
35
|
/** Call quality — sentiment, transcription confidence, flagged calls */
|
|
47
36
|
getCallQuality(params?: {
|
|
@@ -51,7 +40,7 @@ export declare class AnalyticsResource extends WorkspaceScopedResource {
|
|
|
51
40
|
interval?: '1h' | '1d' | '1w';
|
|
52
41
|
service_id?: string | null;
|
|
53
42
|
}): Promise<{
|
|
54
|
-
[
|
|
43
|
+
[key: string]: unknown;
|
|
55
44
|
} & import("../index.js").ResponseMetadata>;
|
|
56
45
|
/** Emotion trend data over time */
|
|
57
46
|
getEmotionTrends(params?: {
|
|
@@ -61,7 +50,7 @@ export declare class AnalyticsResource extends WorkspaceScopedResource {
|
|
|
61
50
|
interval?: '1h' | '1d' | '1w';
|
|
62
51
|
service_id?: string | null;
|
|
63
52
|
}): Promise<{
|
|
64
|
-
[
|
|
53
|
+
[key: string]: unknown;
|
|
65
54
|
} & import("../index.js").ResponseMetadata>;
|
|
66
55
|
/** Voice pipeline latency metrics (TTFB, response time) */
|
|
67
56
|
getLatency(params?: {
|
|
@@ -71,35 +60,29 @@ export declare class AnalyticsResource extends WorkspaceScopedResource {
|
|
|
71
60
|
interval?: '1h' | '1d' | '1w';
|
|
72
61
|
service_id?: string | null;
|
|
73
62
|
}): Promise<{
|
|
74
|
-
[
|
|
63
|
+
[key: string]: unknown;
|
|
75
64
|
} & import("../index.js").ResponseMetadata>;
|
|
76
65
|
/** Tool call performance — success rates and latency per tool */
|
|
77
66
|
getToolPerformance(params?: {
|
|
78
67
|
days?: number;
|
|
79
68
|
}): Promise<{
|
|
80
|
-
[
|
|
69
|
+
[key: string]: unknown;
|
|
81
70
|
} & import("../index.js").ResponseMetadata>;
|
|
82
71
|
/** Data quality metrics for the workspace world model */
|
|
83
72
|
getDataQuality(params?: {
|
|
84
73
|
days?: number;
|
|
85
74
|
}): Promise<{
|
|
86
75
|
confidence_by_source: {
|
|
87
|
-
[
|
|
88
|
-
confidence_range: string;
|
|
89
|
-
count: number;
|
|
90
|
-
}[];
|
|
76
|
+
[key: string]: import("../index.js").components["schemas"]["ConfidenceBucket"][];
|
|
91
77
|
};
|
|
92
|
-
confidence_distribution:
|
|
93
|
-
confidence_range: string;
|
|
94
|
-
count: number;
|
|
95
|
-
}[];
|
|
78
|
+
confidence_distribution: import("../index.js").components["schemas"]["ConfidenceBucket"][];
|
|
96
79
|
period_end: string;
|
|
97
80
|
period_start: string;
|
|
98
81
|
review_pipeline: {
|
|
99
|
-
[
|
|
82
|
+
[key: string]: unknown;
|
|
100
83
|
};
|
|
101
84
|
timeseries: {
|
|
102
|
-
[
|
|
85
|
+
[key: string]: unknown;
|
|
103
86
|
}[];
|
|
104
87
|
total_events: number;
|
|
105
88
|
workspace_id: string;
|
|
@@ -113,13 +96,7 @@ export declare class AnalyticsResource extends WorkspaceScopedResource {
|
|
|
113
96
|
service_id?: string | null;
|
|
114
97
|
direction?: string | null;
|
|
115
98
|
}): Promise<{
|
|
116
|
-
buckets:
|
|
117
|
-
avg_duration_seconds?: number | null | undefined;
|
|
118
|
-
count: number;
|
|
119
|
-
event_date: string;
|
|
120
|
-
event_type: string;
|
|
121
|
-
total_duration_seconds?: number | null | undefined;
|
|
122
|
-
}[];
|
|
99
|
+
buckets: import("../index.js").components["schemas"]["UsageBucket"][];
|
|
123
100
|
period_end: string;
|
|
124
101
|
period_start: string;
|
|
125
102
|
total_events: number;
|
|
@@ -129,14 +106,8 @@ export declare class AnalyticsResource extends WorkspaceScopedResource {
|
|
|
129
106
|
getEventBreakdown(params?: {
|
|
130
107
|
days?: number;
|
|
131
108
|
}): Promise<{
|
|
132
|
-
by_source:
|
|
133
|
-
|
|
134
|
-
key: string;
|
|
135
|
-
}[];
|
|
136
|
-
by_type: {
|
|
137
|
-
count: number;
|
|
138
|
-
key: string;
|
|
139
|
-
}[];
|
|
109
|
+
by_source: import("../index.js").components["schemas"]["EventBreakdownItem"][];
|
|
110
|
+
by_type: import("../index.js").components["schemas"]["EventBreakdownItem"][];
|
|
140
111
|
period_end: string;
|
|
141
112
|
period_start: string;
|
|
142
113
|
total_events: number;
|
|
@@ -151,21 +122,10 @@ export declare class AnalyticsResource extends WorkspaceScopedResource {
|
|
|
151
122
|
service_id?: string | null;
|
|
152
123
|
}): Promise<{
|
|
153
124
|
risk_distribution: {
|
|
154
|
-
[
|
|
155
|
-
};
|
|
156
|
-
summary: {
|
|
157
|
-
escalation_rate: number;
|
|
158
|
-
total_calls: number;
|
|
159
|
-
total_escalations: number;
|
|
160
|
-
total_safety_flagged: number;
|
|
161
|
-
total_safety_matches: number;
|
|
125
|
+
[key: string]: number;
|
|
162
126
|
};
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
escalated_count: number;
|
|
166
|
-
safety_flagged: number;
|
|
167
|
-
total_calls: number;
|
|
168
|
-
}[];
|
|
127
|
+
summary: import("../index.js").components["schemas"]["SafetyTrendsSummary"];
|
|
128
|
+
trend: import("../index.js").components["schemas"]["SafetyTrendPoint"][];
|
|
169
129
|
} & import("../index.js").ResponseMetadata>;
|
|
170
130
|
/** Operator escalation performance and quality comparison */
|
|
171
131
|
getOperatorPerformance(params?: {
|
|
@@ -175,20 +135,8 @@ export declare class AnalyticsResource extends WorkspaceScopedResource {
|
|
|
175
135
|
interval?: '1h' | '1d' | '1w';
|
|
176
136
|
service_id?: string | null;
|
|
177
137
|
}): Promise<{
|
|
178
|
-
summary:
|
|
179
|
-
|
|
180
|
-
avg_escalated_quality_score?: number | null | undefined;
|
|
181
|
-
avg_non_escalated_quality_score?: number | null | undefined;
|
|
182
|
-
escalated_count: number;
|
|
183
|
-
escalation_rate: number;
|
|
184
|
-
operator_handled_count: number;
|
|
185
|
-
total_calls: number;
|
|
186
|
-
};
|
|
187
|
-
trend: {
|
|
188
|
-
date: string;
|
|
189
|
-
escalated_count: number;
|
|
190
|
-
total_calls: number;
|
|
191
|
-
}[];
|
|
138
|
+
summary: import("../index.js").components["schemas"]["OperatorPerformanceSummary"];
|
|
139
|
+
trend: import("../index.js").components["schemas"]["OperatorPerformanceTrendPoint"][];
|
|
192
140
|
} & import("../index.js").ResponseMetadata>;
|
|
193
141
|
/** Advanced call statistics (abandonment, transfers, silence, hour-of-day) */
|
|
194
142
|
getAdvancedCallStats(params?: {
|
|
@@ -198,7 +146,7 @@ export declare class AnalyticsResource extends WorkspaceScopedResource {
|
|
|
198
146
|
interval?: '1h' | '1d' | '1w';
|
|
199
147
|
service_id?: string | null;
|
|
200
148
|
}): Promise<{
|
|
201
|
-
[
|
|
149
|
+
[key: string]: unknown;
|
|
202
150
|
} & import("../index.js").ResponseMetadata>;
|
|
203
151
|
/** Compare two time periods side by side */
|
|
204
152
|
compareCallPeriods(params: {
|
|
@@ -208,7 +156,7 @@ export declare class AnalyticsResource extends WorkspaceScopedResource {
|
|
|
208
156
|
previous_to: string;
|
|
209
157
|
service_id?: string;
|
|
210
158
|
}): Promise<{
|
|
211
|
-
[
|
|
159
|
+
[key: string]: unknown;
|
|
212
160
|
} & import("../index.js").ResponseMetadata>;
|
|
213
161
|
}
|
|
214
162
|
//# sourceMappingURL=analytics.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"analytics.d.ts","sourceRoot":"","sources":["../../../src/resources/analytics.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,uBAAuB,EAAe,MAAM,WAAW,CAAA;AAEhE;;GAEG;AACH,qBAAa,iBAAkB,SAAQ,uBAAuB;IAC5D,sFAAsF;IAChF,YAAY,CAAC,MAAM,CAAC,EAAE;QAAE,IAAI,CAAC,EAAE,MAAM,CAAA;KAAE;;;IAQ7C,uCAAuC;IACjC,QAAQ,CAAC,MAAM,CAAC,EAAE;QACtB,IAAI,CAAC,EAAE,MAAM,CAAA;QACb,SAAS,CAAC,EAAE,MAAM,GAAG,IAAI,CAAA;QACzB,OAAO,CAAC,EAAE,MAAM,GAAG,IAAI,CAAA;QACvB,QAAQ,CAAC,EAAE,IAAI,GAAG,IAAI,GAAG,IAAI,CAAA;QAC7B,UAAU,CAAC,EAAE,MAAM,GAAG,IAAI,CAAA;KAC3B
|
|
1
|
+
{"version":3,"file":"analytics.d.ts","sourceRoot":"","sources":["../../../src/resources/analytics.ts"],"names":[],"mappings":"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"}
|