@roarkanalytics/sdk 2.22.0 → 2.23.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/CHANGELOG.md +19 -0
- package/client.d.mts +31 -10
- package/client.d.mts.map +1 -1
- package/client.d.ts +31 -10
- package/client.d.ts.map +1 -1
- package/client.js +34 -6
- package/client.js.map +1 -1
- package/client.mjs +34 -6
- package/client.mjs.map +1 -1
- package/package.json +1 -1
- package/resources/agent-endpoint.d.mts +309 -0
- package/resources/agent-endpoint.d.mts.map +1 -0
- package/resources/agent-endpoint.d.ts +309 -0
- package/resources/agent-endpoint.d.ts.map +1 -0
- package/resources/agent-endpoint.js +35 -0
- package/resources/agent-endpoint.js.map +1 -0
- package/resources/agent-endpoint.mjs +31 -0
- package/resources/agent-endpoint.mjs.map +1 -0
- package/resources/agent.d.mts +193 -0
- package/resources/agent.d.mts.map +1 -0
- package/resources/agent.d.ts +193 -0
- package/resources/agent.d.ts.map +1 -0
- package/resources/agent.js +34 -0
- package/resources/agent.js.map +1 -0
- package/resources/agent.mjs +30 -0
- package/resources/agent.mjs.map +1 -0
- package/resources/call.d.mts +120 -1
- package/resources/call.d.mts.map +1 -1
- package/resources/call.d.ts +120 -1
- package/resources/call.d.ts.map +1 -1
- package/resources/call.js +7 -0
- package/resources/call.js.map +1 -1
- package/resources/call.mjs +7 -0
- package/resources/call.mjs.map +1 -1
- package/resources/evaluation.d.mts +2097 -617
- package/resources/evaluation.d.mts.map +1 -1
- package/resources/evaluation.d.ts +2097 -617
- package/resources/evaluation.d.ts.map +1 -1
- package/resources/evaluation.js +14 -0
- package/resources/evaluation.js.map +1 -1
- package/resources/evaluation.mjs +14 -0
- package/resources/evaluation.mjs.map +1 -1
- package/resources/http-request-definition.d.mts +339 -0
- package/resources/http-request-definition.d.mts.map +1 -0
- package/resources/http-request-definition.d.ts +339 -0
- package/resources/http-request-definition.d.ts.map +1 -0
- package/resources/http-request-definition.js +36 -0
- package/resources/http-request-definition.js.map +1 -0
- package/resources/http-request-definition.mjs +32 -0
- package/resources/http-request-definition.mjs.map +1 -0
- package/resources/index.d.mts +11 -4
- package/resources/index.d.mts.map +1 -1
- package/resources/index.d.ts +11 -4
- package/resources/index.d.ts.map +1 -1
- package/resources/index.js +19 -5
- package/resources/index.js.map +1 -1
- package/resources/index.mjs +9 -2
- package/resources/index.mjs.map +1 -1
- package/resources/simulation-job.d.mts +393 -0
- package/resources/simulation-job.d.mts.map +1 -0
- package/resources/simulation-job.d.ts +393 -0
- package/resources/simulation-job.d.ts.map +1 -0
- package/resources/simulation-job.js +38 -0
- package/resources/simulation-job.js.map +1 -0
- package/resources/simulation-job.mjs +34 -0
- package/resources/simulation-job.mjs.map +1 -0
- package/resources/{persona.d.mts → simulation-persona.d.mts} +62 -33
- package/resources/simulation-persona.d.mts.map +1 -0
- package/resources/{persona.d.ts → simulation-persona.d.ts} +62 -33
- package/resources/simulation-persona.d.ts.map +1 -0
- package/resources/{persona.js → simulation-persona.js} +18 -13
- package/resources/simulation-persona.js.map +1 -0
- package/resources/{persona.mjs → simulation-persona.mjs} +16 -11
- package/resources/simulation-persona.mjs.map +1 -0
- package/resources/simulation-run-plan-job.d.mts +359 -0
- package/resources/simulation-run-plan-job.d.mts.map +1 -0
- package/resources/simulation-run-plan-job.d.ts +359 -0
- package/resources/simulation-run-plan-job.d.ts.map +1 -0
- package/resources/simulation-run-plan-job.js +50 -0
- package/resources/simulation-run-plan-job.js.map +1 -0
- package/resources/simulation-run-plan-job.mjs +46 -0
- package/resources/simulation-run-plan-job.mjs.map +1 -0
- package/resources/simulation-run-plan.d.mts +660 -0
- package/resources/simulation-run-plan.d.mts.map +1 -0
- package/resources/simulation-run-plan.d.ts +660 -0
- package/resources/simulation-run-plan.d.ts.map +1 -0
- package/resources/simulation-run-plan.js +93 -0
- package/resources/simulation-run-plan.js.map +1 -0
- package/resources/simulation-run-plan.mjs +89 -0
- package/resources/simulation-run-plan.mjs.map +1 -0
- package/resources/simulation-scenario.d.mts +335 -0
- package/resources/simulation-scenario.d.mts.map +1 -0
- package/resources/simulation-scenario.d.ts +335 -0
- package/resources/simulation-scenario.d.ts.map +1 -0
- package/resources/simulation-scenario.js +40 -0
- package/resources/simulation-scenario.js.map +1 -0
- package/resources/simulation-scenario.mjs +36 -0
- package/resources/simulation-scenario.mjs.map +1 -0
- package/resources/webhook.d.mts +212 -0
- package/resources/webhook.d.mts.map +1 -0
- package/resources/webhook.d.ts +212 -0
- package/resources/webhook.d.ts.map +1 -0
- package/resources/webhook.js +35 -0
- package/resources/webhook.js.map +1 -0
- package/resources/webhook.mjs +31 -0
- package/resources/webhook.mjs.map +1 -0
- package/src/client.ts +208 -43
- package/src/resources/agent-endpoint.ts +400 -0
- package/src/resources/agent.ts +263 -0
- package/src/resources/call.ts +149 -0
- package/src/resources/evaluation.ts +3044 -1154
- package/src/resources/http-request-definition.ts +410 -0
- package/src/resources/index.ts +89 -21
- package/src/resources/simulation-job.ts +527 -0
- package/src/resources/{persona.ts → simulation-persona.ts} +78 -40
- package/src/resources/simulation-run-plan-job.ts +521 -0
- package/src/resources/simulation-run-plan.ts +840 -0
- package/src/resources/simulation-scenario.ts +463 -0
- package/src/resources/webhook.ts +318 -0
- package/src/version.ts +1 -1
- package/version.d.mts +1 -1
- package/version.d.ts +1 -1
- package/version.js +1 -1
- package/version.mjs +1 -1
- package/resources/persona.d.mts.map +0 -1
- package/resources/persona.d.ts.map +0 -1
- package/resources/persona.js.map +0 -1
- package/resources/persona.mjs.map +0 -1
- package/resources/simulation.d.mts +0 -802
- package/resources/simulation.d.mts.map +0 -1
- package/resources/simulation.d.ts +0 -802
- package/resources/simulation.d.ts.map +0 -1
- package/resources/simulation.js +0 -90
- package/resources/simulation.js.map +0 -1
- package/resources/simulation.mjs +0 -86
- package/resources/simulation.mjs.map +0 -1
- package/src/resources/simulation.ts +0 -1069
|
@@ -0,0 +1,335 @@
|
|
|
1
|
+
import { APIResource } from "../core/resource.js";
|
|
2
|
+
import { APIPromise } from "../core/api-promise.js";
|
|
3
|
+
import { RequestOptions } from "../internal/request-options.js";
|
|
4
|
+
export declare class SimulationScenario extends APIResource {
|
|
5
|
+
/**
|
|
6
|
+
* Creates a new simulation scenario for the authenticated project.
|
|
7
|
+
*/
|
|
8
|
+
create(body: SimulationScenarioCreateParams, options?: RequestOptions): APIPromise<SimulationScenarioCreateResponse>;
|
|
9
|
+
/**
|
|
10
|
+
* Updates an existing simulation scenario by its ID.
|
|
11
|
+
*/
|
|
12
|
+
update(scenarioID: string, body: SimulationScenarioUpdateParams, options?: RequestOptions): APIPromise<SimulationScenarioUpdateResponse>;
|
|
13
|
+
/**
|
|
14
|
+
* Returns a paginated list of simulation scenarios for the authenticated project.
|
|
15
|
+
*/
|
|
16
|
+
list(query?: SimulationScenarioListParams | null | undefined, options?: RequestOptions): APIPromise<SimulationScenarioListResponse>;
|
|
17
|
+
/**
|
|
18
|
+
* Deletes a simulation scenario by its ID.
|
|
19
|
+
*/
|
|
20
|
+
delete(scenarioID: string, options?: RequestOptions): APIPromise<SimulationScenarioDeleteResponse>;
|
|
21
|
+
/**
|
|
22
|
+
* Returns a specific simulation scenario by its ID.
|
|
23
|
+
*/
|
|
24
|
+
getByID(scenarioID: string, options?: RequestOptions): APIPromise<SimulationScenarioGetByIDResponse>;
|
|
25
|
+
}
|
|
26
|
+
export interface SimulationScenarioCreateResponse {
|
|
27
|
+
data: SimulationScenarioCreateResponse.Data;
|
|
28
|
+
}
|
|
29
|
+
export declare namespace SimulationScenarioCreateResponse {
|
|
30
|
+
interface Data {
|
|
31
|
+
/**
|
|
32
|
+
* Unique identifier of the scenario
|
|
33
|
+
*/
|
|
34
|
+
id: string;
|
|
35
|
+
/**
|
|
36
|
+
* Creation timestamp in ISO 8601 format
|
|
37
|
+
*/
|
|
38
|
+
createdAt: string;
|
|
39
|
+
/**
|
|
40
|
+
* Description of the scenario
|
|
41
|
+
*/
|
|
42
|
+
description: string | null;
|
|
43
|
+
/**
|
|
44
|
+
* Name of the scenario (from the start node content)
|
|
45
|
+
*/
|
|
46
|
+
name: string | null;
|
|
47
|
+
/**
|
|
48
|
+
* Ordered list of steps in the scenario (excludes the START node)
|
|
49
|
+
*/
|
|
50
|
+
steps: Array<Data.Step>;
|
|
51
|
+
/**
|
|
52
|
+
* Last update timestamp in ISO 8601 format
|
|
53
|
+
*/
|
|
54
|
+
updatedAt: string;
|
|
55
|
+
}
|
|
56
|
+
namespace Data {
|
|
57
|
+
interface Step {
|
|
58
|
+
/**
|
|
59
|
+
* Content/text of the step
|
|
60
|
+
*/
|
|
61
|
+
content: string | null;
|
|
62
|
+
/**
|
|
63
|
+
* Unique identifier of the step node (use this for update/delete operations)
|
|
64
|
+
*/
|
|
65
|
+
nodeId: string;
|
|
66
|
+
/**
|
|
67
|
+
* Type of step in the scenario
|
|
68
|
+
*/
|
|
69
|
+
type: 'START' | 'AGENT_TURN' | 'CUSTOMER_TURN' | 'CUSTOMER_FIRST_MESSAGE' | 'CUSTOMER_SILENCE' | 'VOICEMAIL';
|
|
70
|
+
}
|
|
71
|
+
}
|
|
72
|
+
}
|
|
73
|
+
export interface SimulationScenarioUpdateResponse {
|
|
74
|
+
data: SimulationScenarioUpdateResponse.Data;
|
|
75
|
+
}
|
|
76
|
+
export declare namespace SimulationScenarioUpdateResponse {
|
|
77
|
+
interface Data {
|
|
78
|
+
/**
|
|
79
|
+
* Unique identifier of the scenario
|
|
80
|
+
*/
|
|
81
|
+
id: string;
|
|
82
|
+
/**
|
|
83
|
+
* Creation timestamp in ISO 8601 format
|
|
84
|
+
*/
|
|
85
|
+
createdAt: string;
|
|
86
|
+
/**
|
|
87
|
+
* Description of the scenario
|
|
88
|
+
*/
|
|
89
|
+
description: string | null;
|
|
90
|
+
/**
|
|
91
|
+
* Name of the scenario (from the start node content)
|
|
92
|
+
*/
|
|
93
|
+
name: string | null;
|
|
94
|
+
/**
|
|
95
|
+
* Ordered list of steps in the scenario (excludes the START node)
|
|
96
|
+
*/
|
|
97
|
+
steps: Array<Data.Step>;
|
|
98
|
+
/**
|
|
99
|
+
* Last update timestamp in ISO 8601 format
|
|
100
|
+
*/
|
|
101
|
+
updatedAt: string;
|
|
102
|
+
}
|
|
103
|
+
namespace Data {
|
|
104
|
+
interface Step {
|
|
105
|
+
/**
|
|
106
|
+
* Content/text of the step
|
|
107
|
+
*/
|
|
108
|
+
content: string | null;
|
|
109
|
+
/**
|
|
110
|
+
* Unique identifier of the step node (use this for update/delete operations)
|
|
111
|
+
*/
|
|
112
|
+
nodeId: string;
|
|
113
|
+
/**
|
|
114
|
+
* Type of step in the scenario
|
|
115
|
+
*/
|
|
116
|
+
type: 'START' | 'AGENT_TURN' | 'CUSTOMER_TURN' | 'CUSTOMER_FIRST_MESSAGE' | 'CUSTOMER_SILENCE' | 'VOICEMAIL';
|
|
117
|
+
}
|
|
118
|
+
}
|
|
119
|
+
}
|
|
120
|
+
export interface SimulationScenarioListResponse {
|
|
121
|
+
data: Array<SimulationScenarioListResponse.Data>;
|
|
122
|
+
pagination: SimulationScenarioListResponse.Pagination;
|
|
123
|
+
}
|
|
124
|
+
export declare namespace SimulationScenarioListResponse {
|
|
125
|
+
interface Data {
|
|
126
|
+
/**
|
|
127
|
+
* Unique identifier of the scenario
|
|
128
|
+
*/
|
|
129
|
+
id: string;
|
|
130
|
+
/**
|
|
131
|
+
* Creation timestamp in ISO 8601 format
|
|
132
|
+
*/
|
|
133
|
+
createdAt: string;
|
|
134
|
+
/**
|
|
135
|
+
* Description of the scenario
|
|
136
|
+
*/
|
|
137
|
+
description: string | null;
|
|
138
|
+
/**
|
|
139
|
+
* Name of the scenario (from the start node content)
|
|
140
|
+
*/
|
|
141
|
+
name: string | null;
|
|
142
|
+
/**
|
|
143
|
+
* Ordered list of steps in the scenario (excludes the START node)
|
|
144
|
+
*/
|
|
145
|
+
steps: Array<Data.Step>;
|
|
146
|
+
/**
|
|
147
|
+
* Last update timestamp in ISO 8601 format
|
|
148
|
+
*/
|
|
149
|
+
updatedAt: string;
|
|
150
|
+
}
|
|
151
|
+
namespace Data {
|
|
152
|
+
interface Step {
|
|
153
|
+
/**
|
|
154
|
+
* Content/text of the step
|
|
155
|
+
*/
|
|
156
|
+
content: string | null;
|
|
157
|
+
/**
|
|
158
|
+
* Unique identifier of the step node (use this for update/delete operations)
|
|
159
|
+
*/
|
|
160
|
+
nodeId: string;
|
|
161
|
+
/**
|
|
162
|
+
* Type of step in the scenario
|
|
163
|
+
*/
|
|
164
|
+
type: 'START' | 'AGENT_TURN' | 'CUSTOMER_TURN' | 'CUSTOMER_FIRST_MESSAGE' | 'CUSTOMER_SILENCE' | 'VOICEMAIL';
|
|
165
|
+
}
|
|
166
|
+
}
|
|
167
|
+
interface Pagination {
|
|
168
|
+
/**
|
|
169
|
+
* Whether there are more items to fetch
|
|
170
|
+
*/
|
|
171
|
+
hasMore: boolean;
|
|
172
|
+
/**
|
|
173
|
+
* Cursor for the next page of items
|
|
174
|
+
*/
|
|
175
|
+
nextCursor: string | null;
|
|
176
|
+
/**
|
|
177
|
+
* Total number of items
|
|
178
|
+
*/
|
|
179
|
+
total: number;
|
|
180
|
+
}
|
|
181
|
+
}
|
|
182
|
+
export interface SimulationScenarioDeleteResponse {
|
|
183
|
+
data: SimulationScenarioDeleteResponse.Data;
|
|
184
|
+
}
|
|
185
|
+
export declare namespace SimulationScenarioDeleteResponse {
|
|
186
|
+
interface Data {
|
|
187
|
+
/**
|
|
188
|
+
* Whether the scenario was deleted
|
|
189
|
+
*/
|
|
190
|
+
deleted: boolean;
|
|
191
|
+
}
|
|
192
|
+
}
|
|
193
|
+
export interface SimulationScenarioGetByIDResponse {
|
|
194
|
+
data: SimulationScenarioGetByIDResponse.Data;
|
|
195
|
+
}
|
|
196
|
+
export declare namespace SimulationScenarioGetByIDResponse {
|
|
197
|
+
interface Data {
|
|
198
|
+
/**
|
|
199
|
+
* Unique identifier of the scenario
|
|
200
|
+
*/
|
|
201
|
+
id: string;
|
|
202
|
+
/**
|
|
203
|
+
* Creation timestamp in ISO 8601 format
|
|
204
|
+
*/
|
|
205
|
+
createdAt: string;
|
|
206
|
+
/**
|
|
207
|
+
* Description of the scenario
|
|
208
|
+
*/
|
|
209
|
+
description: string | null;
|
|
210
|
+
/**
|
|
211
|
+
* Name of the scenario (from the start node content)
|
|
212
|
+
*/
|
|
213
|
+
name: string | null;
|
|
214
|
+
/**
|
|
215
|
+
* Ordered list of steps in the scenario (excludes the START node)
|
|
216
|
+
*/
|
|
217
|
+
steps: Array<Data.Step>;
|
|
218
|
+
/**
|
|
219
|
+
* Last update timestamp in ISO 8601 format
|
|
220
|
+
*/
|
|
221
|
+
updatedAt: string;
|
|
222
|
+
}
|
|
223
|
+
namespace Data {
|
|
224
|
+
interface Step {
|
|
225
|
+
/**
|
|
226
|
+
* Content/text of the step
|
|
227
|
+
*/
|
|
228
|
+
content: string | null;
|
|
229
|
+
/**
|
|
230
|
+
* Unique identifier of the step node (use this for update/delete operations)
|
|
231
|
+
*/
|
|
232
|
+
nodeId: string;
|
|
233
|
+
/**
|
|
234
|
+
* Type of step in the scenario
|
|
235
|
+
*/
|
|
236
|
+
type: 'START' | 'AGENT_TURN' | 'CUSTOMER_TURN' | 'CUSTOMER_FIRST_MESSAGE' | 'CUSTOMER_SILENCE' | 'VOICEMAIL';
|
|
237
|
+
}
|
|
238
|
+
}
|
|
239
|
+
}
|
|
240
|
+
export interface SimulationScenarioCreateParams {
|
|
241
|
+
/**
|
|
242
|
+
* Name of the scenario (used as the START node content)
|
|
243
|
+
*/
|
|
244
|
+
name: string;
|
|
245
|
+
/**
|
|
246
|
+
* Ordered list of steps for the scenario (at least one step is required)
|
|
247
|
+
*/
|
|
248
|
+
steps: Array<SimulationScenarioCreateParams.Step>;
|
|
249
|
+
}
|
|
250
|
+
export declare namespace SimulationScenarioCreateParams {
|
|
251
|
+
/**
|
|
252
|
+
* A step to include when creating a scenario
|
|
253
|
+
*/
|
|
254
|
+
interface Step {
|
|
255
|
+
/**
|
|
256
|
+
* The content/text of the step
|
|
257
|
+
*/
|
|
258
|
+
content: string;
|
|
259
|
+
/**
|
|
260
|
+
* The type of this step
|
|
261
|
+
*/
|
|
262
|
+
type: 'AGENT_TURN' | 'CUSTOMER_TURN' | 'CUSTOMER_FIRST_MESSAGE' | 'CUSTOMER_SILENCE' | 'VOICEMAIL';
|
|
263
|
+
}
|
|
264
|
+
}
|
|
265
|
+
export interface SimulationScenarioUpdateParams {
|
|
266
|
+
/**
|
|
267
|
+
* List of step changes to apply to the scenario
|
|
268
|
+
*/
|
|
269
|
+
stepChanges: Array<SimulationScenarioUpdateParams.CreateStepChange | SimulationScenarioUpdateParams.UpdateStepChange | SimulationScenarioUpdateParams.DeleteStepChange>;
|
|
270
|
+
/**
|
|
271
|
+
* New name for the scenario (updates the START node content)
|
|
272
|
+
*/
|
|
273
|
+
name?: string;
|
|
274
|
+
}
|
|
275
|
+
export declare namespace SimulationScenarioUpdateParams {
|
|
276
|
+
/**
|
|
277
|
+
* Create a new step in the scenario
|
|
278
|
+
*/
|
|
279
|
+
interface CreateStepChange {
|
|
280
|
+
/**
|
|
281
|
+
* Create a new step
|
|
282
|
+
*/
|
|
283
|
+
action: 'create';
|
|
284
|
+
/**
|
|
285
|
+
* The content/text of the new step
|
|
286
|
+
*/
|
|
287
|
+
content: string;
|
|
288
|
+
/**
|
|
289
|
+
* The type of the new step
|
|
290
|
+
*/
|
|
291
|
+
type: 'AGENT_TURN' | 'CUSTOMER_TURN' | 'CUSTOMER_FIRST_MESSAGE' | 'CUSTOMER_SILENCE' | 'VOICEMAIL';
|
|
292
|
+
}
|
|
293
|
+
/**
|
|
294
|
+
* Update an existing step in the scenario
|
|
295
|
+
*/
|
|
296
|
+
interface UpdateStepChange {
|
|
297
|
+
/**
|
|
298
|
+
* Update an existing step
|
|
299
|
+
*/
|
|
300
|
+
action: 'update';
|
|
301
|
+
/**
|
|
302
|
+
* The ID of the step node to update
|
|
303
|
+
*/
|
|
304
|
+
nodeId: string;
|
|
305
|
+
/**
|
|
306
|
+
* The new content/text of the step (optional)
|
|
307
|
+
*/
|
|
308
|
+
content?: string;
|
|
309
|
+
/**
|
|
310
|
+
* The new type of the step (optional)
|
|
311
|
+
*/
|
|
312
|
+
type?: 'AGENT_TURN' | 'CUSTOMER_TURN' | 'CUSTOMER_FIRST_MESSAGE' | 'CUSTOMER_SILENCE' | 'VOICEMAIL';
|
|
313
|
+
}
|
|
314
|
+
/**
|
|
315
|
+
* Delete a step from the scenario
|
|
316
|
+
*/
|
|
317
|
+
interface DeleteStepChange {
|
|
318
|
+
/**
|
|
319
|
+
* Delete an existing step
|
|
320
|
+
*/
|
|
321
|
+
action: 'delete';
|
|
322
|
+
/**
|
|
323
|
+
* The ID of the step node to delete
|
|
324
|
+
*/
|
|
325
|
+
nodeId: string;
|
|
326
|
+
}
|
|
327
|
+
}
|
|
328
|
+
export interface SimulationScenarioListParams {
|
|
329
|
+
after?: string;
|
|
330
|
+
limit?: number;
|
|
331
|
+
}
|
|
332
|
+
export declare namespace SimulationScenario {
|
|
333
|
+
export { type SimulationScenarioCreateResponse as SimulationScenarioCreateResponse, type SimulationScenarioUpdateResponse as SimulationScenarioUpdateResponse, type SimulationScenarioListResponse as SimulationScenarioListResponse, type SimulationScenarioDeleteResponse as SimulationScenarioDeleteResponse, type SimulationScenarioGetByIDResponse as SimulationScenarioGetByIDResponse, type SimulationScenarioCreateParams as SimulationScenarioCreateParams, type SimulationScenarioUpdateParams as SimulationScenarioUpdateParams, type SimulationScenarioListParams as SimulationScenarioListParams, };
|
|
334
|
+
}
|
|
335
|
+
//# sourceMappingURL=simulation-scenario.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"simulation-scenario.d.ts","sourceRoot":"","sources":["../src/resources/simulation-scenario.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
|
|
3
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
4
|
+
exports.SimulationScenario = void 0;
|
|
5
|
+
const resource_1 = require("../core/resource.js");
|
|
6
|
+
const path_1 = require("../internal/utils/path.js");
|
|
7
|
+
class SimulationScenario extends resource_1.APIResource {
|
|
8
|
+
/**
|
|
9
|
+
* Creates a new simulation scenario for the authenticated project.
|
|
10
|
+
*/
|
|
11
|
+
create(body, options) {
|
|
12
|
+
return this._client.post('/v1/simulation/scenario', { body, ...options });
|
|
13
|
+
}
|
|
14
|
+
/**
|
|
15
|
+
* Updates an existing simulation scenario by its ID.
|
|
16
|
+
*/
|
|
17
|
+
update(scenarioID, body, options) {
|
|
18
|
+
return this._client.put((0, path_1.path) `/v1/simulation/scenario/${scenarioID}`, { body, ...options });
|
|
19
|
+
}
|
|
20
|
+
/**
|
|
21
|
+
* Returns a paginated list of simulation scenarios for the authenticated project.
|
|
22
|
+
*/
|
|
23
|
+
list(query = {}, options) {
|
|
24
|
+
return this._client.get('/v1/simulation/scenario', { query, ...options });
|
|
25
|
+
}
|
|
26
|
+
/**
|
|
27
|
+
* Deletes a simulation scenario by its ID.
|
|
28
|
+
*/
|
|
29
|
+
delete(scenarioID, options) {
|
|
30
|
+
return this._client.delete((0, path_1.path) `/v1/simulation/scenario/${scenarioID}`, options);
|
|
31
|
+
}
|
|
32
|
+
/**
|
|
33
|
+
* Returns a specific simulation scenario by its ID.
|
|
34
|
+
*/
|
|
35
|
+
getByID(scenarioID, options) {
|
|
36
|
+
return this._client.get((0, path_1.path) `/v1/simulation/scenario/${scenarioID}`, options);
|
|
37
|
+
}
|
|
38
|
+
}
|
|
39
|
+
exports.SimulationScenario = SimulationScenario;
|
|
40
|
+
//# sourceMappingURL=simulation-scenario.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"simulation-scenario.js","sourceRoot":"","sources":["../src/resources/simulation-scenario.ts"],"names":[],"mappings":";AAAA,sFAAsF;;;AAEtF,kDAA+C;AAG/C,oDAA8C;AAE9C,MAAa,kBAAmB,SAAQ,sBAAW;IACjD;;OAEG;IACH,MAAM,CACJ,IAAoC,EACpC,OAAwB;QAExB,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,yBAAyB,EAAE,EAAE,IAAI,EAAE,GAAG,OAAO,EAAE,CAAC,CAAC;IAC5E,CAAC;IAED;;OAEG;IACH,MAAM,CACJ,UAAkB,EAClB,IAAoC,EACpC,OAAwB;QAExB,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,IAAA,WAAI,EAAA,2BAA2B,UAAU,EAAE,EAAE,EAAE,IAAI,EAAE,GAAG,OAAO,EAAE,CAAC,CAAC;IAC7F,CAAC;IAED;;OAEG;IACH,IAAI,CACF,QAAyD,EAAE,EAC3D,OAAwB;QAExB,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,yBAAyB,EAAE,EAAE,KAAK,EAAE,GAAG,OAAO,EAAE,CAAC,CAAC;IAC5E,CAAC;IAED;;OAEG;IACH,MAAM,CAAC,UAAkB,EAAE,OAAwB;QACjD,OAAO,IAAI,CAAC,OAAO,CAAC,MAAM,CAAC,IAAA,WAAI,EAAA,2BAA2B,UAAU,EAAE,EAAE,OAAO,CAAC,CAAC;IACnF,CAAC;IAED;;OAEG;IACH,OAAO,CAAC,UAAkB,EAAE,OAAwB;QAClD,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,IAAA,WAAI,EAAA,2BAA2B,UAAU,EAAE,EAAE,OAAO,CAAC,CAAC;IAChF,CAAC;CACF;AA7CD,gDA6CC"}
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
|
|
2
|
+
import { APIResource } from "../core/resource.mjs";
|
|
3
|
+
import { path } from "../internal/utils/path.mjs";
|
|
4
|
+
export class SimulationScenario extends APIResource {
|
|
5
|
+
/**
|
|
6
|
+
* Creates a new simulation scenario for the authenticated project.
|
|
7
|
+
*/
|
|
8
|
+
create(body, options) {
|
|
9
|
+
return this._client.post('/v1/simulation/scenario', { body, ...options });
|
|
10
|
+
}
|
|
11
|
+
/**
|
|
12
|
+
* Updates an existing simulation scenario by its ID.
|
|
13
|
+
*/
|
|
14
|
+
update(scenarioID, body, options) {
|
|
15
|
+
return this._client.put(path `/v1/simulation/scenario/${scenarioID}`, { body, ...options });
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* Returns a paginated list of simulation scenarios for the authenticated project.
|
|
19
|
+
*/
|
|
20
|
+
list(query = {}, options) {
|
|
21
|
+
return this._client.get('/v1/simulation/scenario', { query, ...options });
|
|
22
|
+
}
|
|
23
|
+
/**
|
|
24
|
+
* Deletes a simulation scenario by its ID.
|
|
25
|
+
*/
|
|
26
|
+
delete(scenarioID, options) {
|
|
27
|
+
return this._client.delete(path `/v1/simulation/scenario/${scenarioID}`, options);
|
|
28
|
+
}
|
|
29
|
+
/**
|
|
30
|
+
* Returns a specific simulation scenario by its ID.
|
|
31
|
+
*/
|
|
32
|
+
getByID(scenarioID, options) {
|
|
33
|
+
return this._client.get(path `/v1/simulation/scenario/${scenarioID}`, options);
|
|
34
|
+
}
|
|
35
|
+
}
|
|
36
|
+
//# sourceMappingURL=simulation-scenario.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"simulation-scenario.mjs","sourceRoot":"","sources":["../src/resources/simulation-scenario.ts"],"names":[],"mappings":"AAAA,sFAAsF;OAE/E,EAAE,WAAW,EAAE;OAGf,EAAE,IAAI,EAAE;AAEf,MAAM,OAAO,kBAAmB,SAAQ,WAAW;IACjD;;OAEG;IACH,MAAM,CACJ,IAAoC,EACpC,OAAwB;QAExB,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,yBAAyB,EAAE,EAAE,IAAI,EAAE,GAAG,OAAO,EAAE,CAAC,CAAC;IAC5E,CAAC;IAED;;OAEG;IACH,MAAM,CACJ,UAAkB,EAClB,IAAoC,EACpC,OAAwB;QAExB,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,IAAI,CAAA,2BAA2B,UAAU,EAAE,EAAE,EAAE,IAAI,EAAE,GAAG,OAAO,EAAE,CAAC,CAAC;IAC7F,CAAC;IAED;;OAEG;IACH,IAAI,CACF,QAAyD,EAAE,EAC3D,OAAwB;QAExB,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,yBAAyB,EAAE,EAAE,KAAK,EAAE,GAAG,OAAO,EAAE,CAAC,CAAC;IAC5E,CAAC;IAED;;OAEG;IACH,MAAM,CAAC,UAAkB,EAAE,OAAwB;QACjD,OAAO,IAAI,CAAC,OAAO,CAAC,MAAM,CAAC,IAAI,CAAA,2BAA2B,UAAU,EAAE,EAAE,OAAO,CAAC,CAAC;IACnF,CAAC;IAED;;OAEG;IACH,OAAO,CAAC,UAAkB,EAAE,OAAwB;QAClD,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,IAAI,CAAA,2BAA2B,UAAU,EAAE,EAAE,OAAO,CAAC,CAAC;IAChF,CAAC;CACF"}
|
|
@@ -0,0 +1,212 @@
|
|
|
1
|
+
import { APIResource } from "../core/resource.mjs";
|
|
2
|
+
import { APIPromise } from "../core/api-promise.mjs";
|
|
3
|
+
import { RequestOptions } from "../internal/request-options.mjs";
|
|
4
|
+
export declare class Webhook extends APIResource {
|
|
5
|
+
/**
|
|
6
|
+
* Creates a new webhook with event subscriptions. The signing secret is only
|
|
7
|
+
* returned in this response.
|
|
8
|
+
*/
|
|
9
|
+
create(body: WebhookCreateParams, options?: RequestOptions): APIPromise<WebhookCreateResponse>;
|
|
10
|
+
/**
|
|
11
|
+
* Returns a paginated list of webhooks with their event subscriptions.
|
|
12
|
+
*/
|
|
13
|
+
list(query?: WebhookListParams | null | undefined, options?: RequestOptions): APIPromise<WebhookListResponse>;
|
|
14
|
+
/**
|
|
15
|
+
* Deletes a webhook and all its event subscriptions.
|
|
16
|
+
*/
|
|
17
|
+
delete(webhookID: string, options?: RequestOptions): APIPromise<WebhookDeleteResponse>;
|
|
18
|
+
/**
|
|
19
|
+
* Returns a specific webhook with its event subscriptions.
|
|
20
|
+
*/
|
|
21
|
+
getByID(webhookID: string, options?: RequestOptions): APIPromise<WebhookGetByIDResponse>;
|
|
22
|
+
}
|
|
23
|
+
export interface WebhookCreateResponse {
|
|
24
|
+
/**
|
|
25
|
+
* Webhook response with signing secret (returned on creation)
|
|
26
|
+
*/
|
|
27
|
+
data: WebhookCreateResponse.Data;
|
|
28
|
+
}
|
|
29
|
+
export declare namespace WebhookCreateResponse {
|
|
30
|
+
/**
|
|
31
|
+
* Webhook response with signing secret (returned on creation)
|
|
32
|
+
*/
|
|
33
|
+
interface Data {
|
|
34
|
+
/**
|
|
35
|
+
* Webhook ID
|
|
36
|
+
*/
|
|
37
|
+
id: string;
|
|
38
|
+
/**
|
|
39
|
+
* Creation timestamp
|
|
40
|
+
*/
|
|
41
|
+
createdAt: string;
|
|
42
|
+
/**
|
|
43
|
+
* Webhook description
|
|
44
|
+
*/
|
|
45
|
+
description: string | null;
|
|
46
|
+
/**
|
|
47
|
+
* Event types this webhook is subscribed to
|
|
48
|
+
*/
|
|
49
|
+
events: Array<'CALL_ANALYSIS_COMPLETED' | 'CALL_ANALYSIS_FAILED' | 'CALL_EVALUATION_COMPLETED' | 'CALL_EVALUATION_FAILED' | 'SIMULATION_RUN_PLAN_JOB_STARTED' | 'SIMULATION_RUN_PLAN_JOB_COMPLETED' | 'SIMULATION_RUN_PLAN_JOB_FAILED' | 'SIMULATION_RUN_PLAN_JOB_CANCELLED' | 'SIMULATION_JOB_STARTED' | 'SIMULATION_JOB_COMPLETED' | 'SIMULATION_JOB_FAILED' | 'SIMULATION_JOB_CANCELLED'>;
|
|
50
|
+
/**
|
|
51
|
+
* Request headers
|
|
52
|
+
*/
|
|
53
|
+
headers: {
|
|
54
|
+
[key: string]: string;
|
|
55
|
+
};
|
|
56
|
+
/**
|
|
57
|
+
* Signing secret (only returned on creation)
|
|
58
|
+
*/
|
|
59
|
+
signingSecret: string;
|
|
60
|
+
/**
|
|
61
|
+
* Last update timestamp
|
|
62
|
+
*/
|
|
63
|
+
updatedAt: string;
|
|
64
|
+
/**
|
|
65
|
+
* Webhook URL
|
|
66
|
+
*/
|
|
67
|
+
url: string;
|
|
68
|
+
}
|
|
69
|
+
}
|
|
70
|
+
export interface WebhookListResponse {
|
|
71
|
+
data: Array<WebhookListResponse.Data>;
|
|
72
|
+
pagination: WebhookListResponse.Pagination;
|
|
73
|
+
}
|
|
74
|
+
export declare namespace WebhookListResponse {
|
|
75
|
+
/**
|
|
76
|
+
* Webhook with its subscribed event types
|
|
77
|
+
*/
|
|
78
|
+
interface Data {
|
|
79
|
+
/**
|
|
80
|
+
* Webhook ID
|
|
81
|
+
*/
|
|
82
|
+
id: string;
|
|
83
|
+
/**
|
|
84
|
+
* Creation timestamp
|
|
85
|
+
*/
|
|
86
|
+
createdAt: string;
|
|
87
|
+
/**
|
|
88
|
+
* Webhook description
|
|
89
|
+
*/
|
|
90
|
+
description: string | null;
|
|
91
|
+
/**
|
|
92
|
+
* Event types this webhook is subscribed to
|
|
93
|
+
*/
|
|
94
|
+
events: Array<'CALL_ANALYSIS_COMPLETED' | 'CALL_ANALYSIS_FAILED' | 'CALL_EVALUATION_COMPLETED' | 'CALL_EVALUATION_FAILED' | 'SIMULATION_RUN_PLAN_JOB_STARTED' | 'SIMULATION_RUN_PLAN_JOB_COMPLETED' | 'SIMULATION_RUN_PLAN_JOB_FAILED' | 'SIMULATION_RUN_PLAN_JOB_CANCELLED' | 'SIMULATION_JOB_STARTED' | 'SIMULATION_JOB_COMPLETED' | 'SIMULATION_JOB_FAILED' | 'SIMULATION_JOB_CANCELLED'>;
|
|
95
|
+
/**
|
|
96
|
+
* Request headers
|
|
97
|
+
*/
|
|
98
|
+
headers: {
|
|
99
|
+
[key: string]: string;
|
|
100
|
+
};
|
|
101
|
+
/**
|
|
102
|
+
* Last update timestamp
|
|
103
|
+
*/
|
|
104
|
+
updatedAt: string;
|
|
105
|
+
/**
|
|
106
|
+
* Webhook URL
|
|
107
|
+
*/
|
|
108
|
+
url: string;
|
|
109
|
+
}
|
|
110
|
+
interface Pagination {
|
|
111
|
+
/**
|
|
112
|
+
* Whether there are more items to fetch
|
|
113
|
+
*/
|
|
114
|
+
hasMore: boolean;
|
|
115
|
+
/**
|
|
116
|
+
* Cursor for the next page of items
|
|
117
|
+
*/
|
|
118
|
+
nextCursor: string | null;
|
|
119
|
+
/**
|
|
120
|
+
* Total number of items
|
|
121
|
+
*/
|
|
122
|
+
total: number;
|
|
123
|
+
}
|
|
124
|
+
}
|
|
125
|
+
export interface WebhookDeleteResponse {
|
|
126
|
+
data: WebhookDeleteResponse.Data;
|
|
127
|
+
}
|
|
128
|
+
export declare namespace WebhookDeleteResponse {
|
|
129
|
+
interface Data {
|
|
130
|
+
/**
|
|
131
|
+
* Whether the deletion was successful
|
|
132
|
+
*/
|
|
133
|
+
success: boolean;
|
|
134
|
+
}
|
|
135
|
+
}
|
|
136
|
+
export interface WebhookGetByIDResponse {
|
|
137
|
+
/**
|
|
138
|
+
* Webhook with its subscribed event types
|
|
139
|
+
*/
|
|
140
|
+
data: WebhookGetByIDResponse.Data;
|
|
141
|
+
}
|
|
142
|
+
export declare namespace WebhookGetByIDResponse {
|
|
143
|
+
/**
|
|
144
|
+
* Webhook with its subscribed event types
|
|
145
|
+
*/
|
|
146
|
+
interface Data {
|
|
147
|
+
/**
|
|
148
|
+
* Webhook ID
|
|
149
|
+
*/
|
|
150
|
+
id: string;
|
|
151
|
+
/**
|
|
152
|
+
* Creation timestamp
|
|
153
|
+
*/
|
|
154
|
+
createdAt: string;
|
|
155
|
+
/**
|
|
156
|
+
* Webhook description
|
|
157
|
+
*/
|
|
158
|
+
description: string | null;
|
|
159
|
+
/**
|
|
160
|
+
* Event types this webhook is subscribed to
|
|
161
|
+
*/
|
|
162
|
+
events: Array<'CALL_ANALYSIS_COMPLETED' | 'CALL_ANALYSIS_FAILED' | 'CALL_EVALUATION_COMPLETED' | 'CALL_EVALUATION_FAILED' | 'SIMULATION_RUN_PLAN_JOB_STARTED' | 'SIMULATION_RUN_PLAN_JOB_COMPLETED' | 'SIMULATION_RUN_PLAN_JOB_FAILED' | 'SIMULATION_RUN_PLAN_JOB_CANCELLED' | 'SIMULATION_JOB_STARTED' | 'SIMULATION_JOB_COMPLETED' | 'SIMULATION_JOB_FAILED' | 'SIMULATION_JOB_CANCELLED'>;
|
|
163
|
+
/**
|
|
164
|
+
* Request headers
|
|
165
|
+
*/
|
|
166
|
+
headers: {
|
|
167
|
+
[key: string]: string;
|
|
168
|
+
};
|
|
169
|
+
/**
|
|
170
|
+
* Last update timestamp
|
|
171
|
+
*/
|
|
172
|
+
updatedAt: string;
|
|
173
|
+
/**
|
|
174
|
+
* Webhook URL
|
|
175
|
+
*/
|
|
176
|
+
url: string;
|
|
177
|
+
}
|
|
178
|
+
}
|
|
179
|
+
export interface WebhookCreateParams {
|
|
180
|
+
/**
|
|
181
|
+
* Event types to subscribe to (at least one required)
|
|
182
|
+
*/
|
|
183
|
+
events: Array<'CALL_ANALYSIS_COMPLETED' | 'CALL_ANALYSIS_FAILED' | 'CALL_EVALUATION_COMPLETED' | 'CALL_EVALUATION_FAILED' | 'SIMULATION_RUN_PLAN_JOB_STARTED' | 'SIMULATION_RUN_PLAN_JOB_COMPLETED' | 'SIMULATION_RUN_PLAN_JOB_FAILED' | 'SIMULATION_RUN_PLAN_JOB_CANCELLED' | 'SIMULATION_JOB_STARTED' | 'SIMULATION_JOB_COMPLETED' | 'SIMULATION_JOB_FAILED' | 'SIMULATION_JOB_CANCELLED'>;
|
|
184
|
+
/**
|
|
185
|
+
* Webhook URL
|
|
186
|
+
*/
|
|
187
|
+
url: string;
|
|
188
|
+
/**
|
|
189
|
+
* Webhook description
|
|
190
|
+
*/
|
|
191
|
+
description?: string | null;
|
|
192
|
+
/**
|
|
193
|
+
* Request headers (e.g. authorization tokens)
|
|
194
|
+
*/
|
|
195
|
+
headers?: {
|
|
196
|
+
[key: string]: string;
|
|
197
|
+
};
|
|
198
|
+
}
|
|
199
|
+
export interface WebhookListParams {
|
|
200
|
+
/**
|
|
201
|
+
* Cursor for pagination - webhook ID to start after
|
|
202
|
+
*/
|
|
203
|
+
after?: string;
|
|
204
|
+
/**
|
|
205
|
+
* Maximum number of webhooks to return (default: 20, max: 50)
|
|
206
|
+
*/
|
|
207
|
+
limit?: number;
|
|
208
|
+
}
|
|
209
|
+
export declare namespace Webhook {
|
|
210
|
+
export { type WebhookCreateResponse as WebhookCreateResponse, type WebhookListResponse as WebhookListResponse, type WebhookDeleteResponse as WebhookDeleteResponse, type WebhookGetByIDResponse as WebhookGetByIDResponse, type WebhookCreateParams as WebhookCreateParams, type WebhookListParams as WebhookListParams, };
|
|
211
|
+
}
|
|
212
|
+
//# sourceMappingURL=webhook.d.mts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"webhook.d.mts","sourceRoot":"","sources":["../src/resources/webhook.ts"],"names":[],"mappings":"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"}
|