@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,660 @@
|
|
|
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 SimulationRunPlan extends APIResource {
|
|
5
|
+
/**
|
|
6
|
+
* Creates a new simulation run plan. Optionally triggers a job immediately if
|
|
7
|
+
* autoRun is true.
|
|
8
|
+
*
|
|
9
|
+
* @example
|
|
10
|
+
* ```ts
|
|
11
|
+
* const simulationRunPlan =
|
|
12
|
+
* await client.simulationRunPlan.create({
|
|
13
|
+
* agentEndpoints: [
|
|
14
|
+
* { id: '182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e' },
|
|
15
|
+
* ],
|
|
16
|
+
* direction: 'INBOUND',
|
|
17
|
+
* evaluators: [
|
|
18
|
+
* { id: '182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e' },
|
|
19
|
+
* ],
|
|
20
|
+
* maxSimulationDurationSeconds: 300,
|
|
21
|
+
* name: 'My Run Plan',
|
|
22
|
+
* personas: [
|
|
23
|
+
* { id: '182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e' },
|
|
24
|
+
* ],
|
|
25
|
+
* scenarios: [
|
|
26
|
+
* { id: '182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e' },
|
|
27
|
+
* ],
|
|
28
|
+
* });
|
|
29
|
+
* ```
|
|
30
|
+
*/
|
|
31
|
+
create(body: SimulationRunPlanCreateParams, options?: RequestOptions): APIPromise<SimulationRunPlanCreateResponse>;
|
|
32
|
+
/**
|
|
33
|
+
* Updates an existing simulation run plan by its ID.
|
|
34
|
+
*
|
|
35
|
+
* @example
|
|
36
|
+
* ```ts
|
|
37
|
+
* const simulationRunPlan =
|
|
38
|
+
* await client.simulationRunPlan.update(
|
|
39
|
+
* '182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e',
|
|
40
|
+
* );
|
|
41
|
+
* ```
|
|
42
|
+
*/
|
|
43
|
+
update(planID: string, body?: SimulationRunPlanUpdateParams | null | undefined, options?: RequestOptions): APIPromise<SimulationRunPlanUpdateResponse>;
|
|
44
|
+
/**
|
|
45
|
+
* Returns a paginated list of simulation run plans. Optionally filter by search
|
|
46
|
+
* text or agent ID.
|
|
47
|
+
*
|
|
48
|
+
* @example
|
|
49
|
+
* ```ts
|
|
50
|
+
* const simulationRunPlans =
|
|
51
|
+
* await client.simulationRunPlan.list();
|
|
52
|
+
* ```
|
|
53
|
+
*/
|
|
54
|
+
list(query?: SimulationRunPlanListParams | null | undefined, options?: RequestOptions): APIPromise<SimulationRunPlanListResponse>;
|
|
55
|
+
/**
|
|
56
|
+
* Soft-deletes a simulation run plan by its ID.
|
|
57
|
+
*
|
|
58
|
+
* @example
|
|
59
|
+
* ```ts
|
|
60
|
+
* const simulationRunPlan =
|
|
61
|
+
* await client.simulationRunPlan.delete(
|
|
62
|
+
* '182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e',
|
|
63
|
+
* );
|
|
64
|
+
* ```
|
|
65
|
+
*/
|
|
66
|
+
delete(planID: string, options?: RequestOptions): APIPromise<SimulationRunPlanDeleteResponse>;
|
|
67
|
+
/**
|
|
68
|
+
* Returns a specific simulation run plan by its ID.
|
|
69
|
+
*
|
|
70
|
+
* @example
|
|
71
|
+
* ```ts
|
|
72
|
+
* const response = await client.simulationRunPlan.getByID(
|
|
73
|
+
* '182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e',
|
|
74
|
+
* );
|
|
75
|
+
* ```
|
|
76
|
+
*/
|
|
77
|
+
getByID(planID: string, options?: RequestOptions): APIPromise<SimulationRunPlanGetByIDResponse>;
|
|
78
|
+
}
|
|
79
|
+
export interface SimulationRunPlanCreateResponse {
|
|
80
|
+
/**
|
|
81
|
+
* Response when creating a run plan, optionally including a triggered job
|
|
82
|
+
*/
|
|
83
|
+
data: SimulationRunPlanCreateResponse.Data;
|
|
84
|
+
}
|
|
85
|
+
export declare namespace SimulationRunPlanCreateResponse {
|
|
86
|
+
/**
|
|
87
|
+
* Response when creating a run plan, optionally including a triggered job
|
|
88
|
+
*/
|
|
89
|
+
interface Data {
|
|
90
|
+
/**
|
|
91
|
+
* A simulation run plan defining the test matrix
|
|
92
|
+
*/
|
|
93
|
+
runPlan: Data.RunPlan;
|
|
94
|
+
/**
|
|
95
|
+
* Response when triggering a simulation run plan
|
|
96
|
+
*/
|
|
97
|
+
runPlanJob?: Data.RunPlanJob | null;
|
|
98
|
+
}
|
|
99
|
+
namespace Data {
|
|
100
|
+
/**
|
|
101
|
+
* A simulation run plan defining the test matrix
|
|
102
|
+
*/
|
|
103
|
+
interface RunPlan {
|
|
104
|
+
/**
|
|
105
|
+
* Unique identifier of the run plan
|
|
106
|
+
*/
|
|
107
|
+
id: string;
|
|
108
|
+
/**
|
|
109
|
+
* Agent endpoints included in this run plan
|
|
110
|
+
*/
|
|
111
|
+
agentEndpoints: Array<RunPlan.AgentEndpoint>;
|
|
112
|
+
/**
|
|
113
|
+
* When the run plan was created
|
|
114
|
+
*/
|
|
115
|
+
createdAt: string;
|
|
116
|
+
/**
|
|
117
|
+
* Direction of the simulation (INBOUND or OUTBOUND)
|
|
118
|
+
*/
|
|
119
|
+
direction: 'INBOUND' | 'OUTBOUND';
|
|
120
|
+
/**
|
|
121
|
+
* Evaluators included in this run plan
|
|
122
|
+
*/
|
|
123
|
+
evaluators: Array<RunPlan.Evaluator>;
|
|
124
|
+
/**
|
|
125
|
+
* Execution mode (PARALLEL or SEQUENTIAL)
|
|
126
|
+
*/
|
|
127
|
+
executionMode: 'PARALLEL' | 'SEQUENTIAL_SAME_RUN_PLAN' | 'SEQUENTIAL_PROJECT';
|
|
128
|
+
/**
|
|
129
|
+
* Number of iterations to run for each test case
|
|
130
|
+
*/
|
|
131
|
+
iterationCount: number;
|
|
132
|
+
/**
|
|
133
|
+
* Maximum number of concurrent simulation jobs
|
|
134
|
+
*/
|
|
135
|
+
maxConcurrentJobs: number;
|
|
136
|
+
/**
|
|
137
|
+
* Maximum duration in seconds for each simulation
|
|
138
|
+
*/
|
|
139
|
+
maxSimulationDurationSeconds: number;
|
|
140
|
+
/**
|
|
141
|
+
* Name of the run plan
|
|
142
|
+
*/
|
|
143
|
+
name: string;
|
|
144
|
+
/**
|
|
145
|
+
* Personas included in this run plan
|
|
146
|
+
*/
|
|
147
|
+
personas: Array<RunPlan.Persona>;
|
|
148
|
+
/**
|
|
149
|
+
* Scenarios included in this run plan
|
|
150
|
+
*/
|
|
151
|
+
scenarios: Array<RunPlan.Scenario>;
|
|
152
|
+
/**
|
|
153
|
+
* Timeout in seconds for silence detection
|
|
154
|
+
*/
|
|
155
|
+
silenceTimeoutSeconds: number;
|
|
156
|
+
/**
|
|
157
|
+
* Total number of test cases generated from the plan configuration
|
|
158
|
+
*/
|
|
159
|
+
testCaseCount: number;
|
|
160
|
+
/**
|
|
161
|
+
* When the run plan was last updated
|
|
162
|
+
*/
|
|
163
|
+
updatedAt: string;
|
|
164
|
+
/**
|
|
165
|
+
* Description of the run plan
|
|
166
|
+
*/
|
|
167
|
+
description?: string | null;
|
|
168
|
+
}
|
|
169
|
+
namespace RunPlan {
|
|
170
|
+
interface AgentEndpoint {
|
|
171
|
+
id: string;
|
|
172
|
+
}
|
|
173
|
+
interface Evaluator {
|
|
174
|
+
id: string;
|
|
175
|
+
}
|
|
176
|
+
interface Persona {
|
|
177
|
+
id: string;
|
|
178
|
+
}
|
|
179
|
+
interface Scenario {
|
|
180
|
+
id: string;
|
|
181
|
+
}
|
|
182
|
+
}
|
|
183
|
+
/**
|
|
184
|
+
* Response when triggering a simulation run plan
|
|
185
|
+
*/
|
|
186
|
+
interface RunPlanJob {
|
|
187
|
+
/**
|
|
188
|
+
* When the job was created
|
|
189
|
+
*/
|
|
190
|
+
createdAt: string;
|
|
191
|
+
/**
|
|
192
|
+
* ID of the simulation run plan that was executed
|
|
193
|
+
*/
|
|
194
|
+
simulationRunPlanId: string;
|
|
195
|
+
/**
|
|
196
|
+
* ID of the simulation run plan job that was created
|
|
197
|
+
*/
|
|
198
|
+
simulationRunPlanJobId: string;
|
|
199
|
+
/**
|
|
200
|
+
* Initial status of the job
|
|
201
|
+
*/
|
|
202
|
+
status: 'PENDING' | 'QUEUED' | 'CREATING_SNAPSHOTS' | 'CREATING_SIMULATIONS' | 'RUNNING_SIMULATIONS' | 'COMPLETED' | 'FAILED' | 'TIMED_OUT' | 'CANCELLED' | 'CANCELLING';
|
|
203
|
+
}
|
|
204
|
+
}
|
|
205
|
+
}
|
|
206
|
+
export interface SimulationRunPlanUpdateResponse {
|
|
207
|
+
/**
|
|
208
|
+
* A simulation run plan defining the test matrix
|
|
209
|
+
*/
|
|
210
|
+
data: SimulationRunPlanUpdateResponse.Data;
|
|
211
|
+
}
|
|
212
|
+
export declare namespace SimulationRunPlanUpdateResponse {
|
|
213
|
+
/**
|
|
214
|
+
* A simulation run plan defining the test matrix
|
|
215
|
+
*/
|
|
216
|
+
interface Data {
|
|
217
|
+
/**
|
|
218
|
+
* Unique identifier of the run plan
|
|
219
|
+
*/
|
|
220
|
+
id: string;
|
|
221
|
+
/**
|
|
222
|
+
* Agent endpoints included in this run plan
|
|
223
|
+
*/
|
|
224
|
+
agentEndpoints: Array<Data.AgentEndpoint>;
|
|
225
|
+
/**
|
|
226
|
+
* When the run plan was created
|
|
227
|
+
*/
|
|
228
|
+
createdAt: string;
|
|
229
|
+
/**
|
|
230
|
+
* Direction of the simulation (INBOUND or OUTBOUND)
|
|
231
|
+
*/
|
|
232
|
+
direction: 'INBOUND' | 'OUTBOUND';
|
|
233
|
+
/**
|
|
234
|
+
* Evaluators included in this run plan
|
|
235
|
+
*/
|
|
236
|
+
evaluators: Array<Data.Evaluator>;
|
|
237
|
+
/**
|
|
238
|
+
* Execution mode (PARALLEL or SEQUENTIAL)
|
|
239
|
+
*/
|
|
240
|
+
executionMode: 'PARALLEL' | 'SEQUENTIAL_SAME_RUN_PLAN' | 'SEQUENTIAL_PROJECT';
|
|
241
|
+
/**
|
|
242
|
+
* Number of iterations to run for each test case
|
|
243
|
+
*/
|
|
244
|
+
iterationCount: number;
|
|
245
|
+
/**
|
|
246
|
+
* Maximum number of concurrent simulation jobs
|
|
247
|
+
*/
|
|
248
|
+
maxConcurrentJobs: number;
|
|
249
|
+
/**
|
|
250
|
+
* Maximum duration in seconds for each simulation
|
|
251
|
+
*/
|
|
252
|
+
maxSimulationDurationSeconds: number;
|
|
253
|
+
/**
|
|
254
|
+
* Name of the run plan
|
|
255
|
+
*/
|
|
256
|
+
name: string;
|
|
257
|
+
/**
|
|
258
|
+
* Personas included in this run plan
|
|
259
|
+
*/
|
|
260
|
+
personas: Array<Data.Persona>;
|
|
261
|
+
/**
|
|
262
|
+
* Scenarios included in this run plan
|
|
263
|
+
*/
|
|
264
|
+
scenarios: Array<Data.Scenario>;
|
|
265
|
+
/**
|
|
266
|
+
* Timeout in seconds for silence detection
|
|
267
|
+
*/
|
|
268
|
+
silenceTimeoutSeconds: number;
|
|
269
|
+
/**
|
|
270
|
+
* Total number of test cases generated from the plan configuration
|
|
271
|
+
*/
|
|
272
|
+
testCaseCount: number;
|
|
273
|
+
/**
|
|
274
|
+
* When the run plan was last updated
|
|
275
|
+
*/
|
|
276
|
+
updatedAt: string;
|
|
277
|
+
/**
|
|
278
|
+
* Description of the run plan
|
|
279
|
+
*/
|
|
280
|
+
description?: string | null;
|
|
281
|
+
}
|
|
282
|
+
namespace Data {
|
|
283
|
+
interface AgentEndpoint {
|
|
284
|
+
id: string;
|
|
285
|
+
}
|
|
286
|
+
interface Evaluator {
|
|
287
|
+
id: string;
|
|
288
|
+
}
|
|
289
|
+
interface Persona {
|
|
290
|
+
id: string;
|
|
291
|
+
}
|
|
292
|
+
interface Scenario {
|
|
293
|
+
id: string;
|
|
294
|
+
}
|
|
295
|
+
}
|
|
296
|
+
}
|
|
297
|
+
/**
|
|
298
|
+
* Paginated list of simulation run plans
|
|
299
|
+
*/
|
|
300
|
+
export interface SimulationRunPlanListResponse {
|
|
301
|
+
data: Array<SimulationRunPlanListResponse.Data>;
|
|
302
|
+
pagination: SimulationRunPlanListResponse.Pagination;
|
|
303
|
+
}
|
|
304
|
+
export declare namespace SimulationRunPlanListResponse {
|
|
305
|
+
/**
|
|
306
|
+
* A simulation run plan defining the test matrix
|
|
307
|
+
*/
|
|
308
|
+
interface Data {
|
|
309
|
+
/**
|
|
310
|
+
* Unique identifier of the run plan
|
|
311
|
+
*/
|
|
312
|
+
id: string;
|
|
313
|
+
/**
|
|
314
|
+
* Agent endpoints included in this run plan
|
|
315
|
+
*/
|
|
316
|
+
agentEndpoints: Array<Data.AgentEndpoint>;
|
|
317
|
+
/**
|
|
318
|
+
* When the run plan was created
|
|
319
|
+
*/
|
|
320
|
+
createdAt: string;
|
|
321
|
+
/**
|
|
322
|
+
* Direction of the simulation (INBOUND or OUTBOUND)
|
|
323
|
+
*/
|
|
324
|
+
direction: 'INBOUND' | 'OUTBOUND';
|
|
325
|
+
/**
|
|
326
|
+
* Evaluators included in this run plan
|
|
327
|
+
*/
|
|
328
|
+
evaluators: Array<Data.Evaluator>;
|
|
329
|
+
/**
|
|
330
|
+
* Execution mode (PARALLEL or SEQUENTIAL)
|
|
331
|
+
*/
|
|
332
|
+
executionMode: 'PARALLEL' | 'SEQUENTIAL_SAME_RUN_PLAN' | 'SEQUENTIAL_PROJECT';
|
|
333
|
+
/**
|
|
334
|
+
* Number of iterations to run for each test case
|
|
335
|
+
*/
|
|
336
|
+
iterationCount: number;
|
|
337
|
+
/**
|
|
338
|
+
* Maximum number of concurrent simulation jobs
|
|
339
|
+
*/
|
|
340
|
+
maxConcurrentJobs: number;
|
|
341
|
+
/**
|
|
342
|
+
* Maximum duration in seconds for each simulation
|
|
343
|
+
*/
|
|
344
|
+
maxSimulationDurationSeconds: number;
|
|
345
|
+
/**
|
|
346
|
+
* Name of the run plan
|
|
347
|
+
*/
|
|
348
|
+
name: string;
|
|
349
|
+
/**
|
|
350
|
+
* Personas included in this run plan
|
|
351
|
+
*/
|
|
352
|
+
personas: Array<Data.Persona>;
|
|
353
|
+
/**
|
|
354
|
+
* Scenarios included in this run plan
|
|
355
|
+
*/
|
|
356
|
+
scenarios: Array<Data.Scenario>;
|
|
357
|
+
/**
|
|
358
|
+
* Timeout in seconds for silence detection
|
|
359
|
+
*/
|
|
360
|
+
silenceTimeoutSeconds: number;
|
|
361
|
+
/**
|
|
362
|
+
* Total number of test cases generated from the plan configuration
|
|
363
|
+
*/
|
|
364
|
+
testCaseCount: number;
|
|
365
|
+
/**
|
|
366
|
+
* When the run plan was last updated
|
|
367
|
+
*/
|
|
368
|
+
updatedAt: string;
|
|
369
|
+
/**
|
|
370
|
+
* Description of the run plan
|
|
371
|
+
*/
|
|
372
|
+
description?: string | null;
|
|
373
|
+
}
|
|
374
|
+
namespace Data {
|
|
375
|
+
interface AgentEndpoint {
|
|
376
|
+
id: string;
|
|
377
|
+
}
|
|
378
|
+
interface Evaluator {
|
|
379
|
+
id: string;
|
|
380
|
+
}
|
|
381
|
+
interface Persona {
|
|
382
|
+
id: string;
|
|
383
|
+
}
|
|
384
|
+
interface Scenario {
|
|
385
|
+
id: string;
|
|
386
|
+
}
|
|
387
|
+
}
|
|
388
|
+
interface Pagination {
|
|
389
|
+
/**
|
|
390
|
+
* Whether there are more items to fetch
|
|
391
|
+
*/
|
|
392
|
+
hasMore: boolean;
|
|
393
|
+
/**
|
|
394
|
+
* Cursor for the next page of items
|
|
395
|
+
*/
|
|
396
|
+
nextCursor: string | null;
|
|
397
|
+
/**
|
|
398
|
+
* Total number of items
|
|
399
|
+
*/
|
|
400
|
+
total: number;
|
|
401
|
+
}
|
|
402
|
+
}
|
|
403
|
+
export interface SimulationRunPlanDeleteResponse {
|
|
404
|
+
data: SimulationRunPlanDeleteResponse.Data;
|
|
405
|
+
}
|
|
406
|
+
export declare namespace SimulationRunPlanDeleteResponse {
|
|
407
|
+
interface Data {
|
|
408
|
+
/**
|
|
409
|
+
* Whether the run plan was deleted
|
|
410
|
+
*/
|
|
411
|
+
deleted: boolean;
|
|
412
|
+
}
|
|
413
|
+
}
|
|
414
|
+
export interface SimulationRunPlanGetByIDResponse {
|
|
415
|
+
/**
|
|
416
|
+
* A simulation run plan defining the test matrix
|
|
417
|
+
*/
|
|
418
|
+
data: SimulationRunPlanGetByIDResponse.Data;
|
|
419
|
+
}
|
|
420
|
+
export declare namespace SimulationRunPlanGetByIDResponse {
|
|
421
|
+
/**
|
|
422
|
+
* A simulation run plan defining the test matrix
|
|
423
|
+
*/
|
|
424
|
+
interface Data {
|
|
425
|
+
/**
|
|
426
|
+
* Unique identifier of the run plan
|
|
427
|
+
*/
|
|
428
|
+
id: string;
|
|
429
|
+
/**
|
|
430
|
+
* Agent endpoints included in this run plan
|
|
431
|
+
*/
|
|
432
|
+
agentEndpoints: Array<Data.AgentEndpoint>;
|
|
433
|
+
/**
|
|
434
|
+
* When the run plan was created
|
|
435
|
+
*/
|
|
436
|
+
createdAt: string;
|
|
437
|
+
/**
|
|
438
|
+
* Direction of the simulation (INBOUND or OUTBOUND)
|
|
439
|
+
*/
|
|
440
|
+
direction: 'INBOUND' | 'OUTBOUND';
|
|
441
|
+
/**
|
|
442
|
+
* Evaluators included in this run plan
|
|
443
|
+
*/
|
|
444
|
+
evaluators: Array<Data.Evaluator>;
|
|
445
|
+
/**
|
|
446
|
+
* Execution mode (PARALLEL or SEQUENTIAL)
|
|
447
|
+
*/
|
|
448
|
+
executionMode: 'PARALLEL' | 'SEQUENTIAL_SAME_RUN_PLAN' | 'SEQUENTIAL_PROJECT';
|
|
449
|
+
/**
|
|
450
|
+
* Number of iterations to run for each test case
|
|
451
|
+
*/
|
|
452
|
+
iterationCount: number;
|
|
453
|
+
/**
|
|
454
|
+
* Maximum number of concurrent simulation jobs
|
|
455
|
+
*/
|
|
456
|
+
maxConcurrentJobs: number;
|
|
457
|
+
/**
|
|
458
|
+
* Maximum duration in seconds for each simulation
|
|
459
|
+
*/
|
|
460
|
+
maxSimulationDurationSeconds: number;
|
|
461
|
+
/**
|
|
462
|
+
* Name of the run plan
|
|
463
|
+
*/
|
|
464
|
+
name: string;
|
|
465
|
+
/**
|
|
466
|
+
* Personas included in this run plan
|
|
467
|
+
*/
|
|
468
|
+
personas: Array<Data.Persona>;
|
|
469
|
+
/**
|
|
470
|
+
* Scenarios included in this run plan
|
|
471
|
+
*/
|
|
472
|
+
scenarios: Array<Data.Scenario>;
|
|
473
|
+
/**
|
|
474
|
+
* Timeout in seconds for silence detection
|
|
475
|
+
*/
|
|
476
|
+
silenceTimeoutSeconds: number;
|
|
477
|
+
/**
|
|
478
|
+
* Total number of test cases generated from the plan configuration
|
|
479
|
+
*/
|
|
480
|
+
testCaseCount: number;
|
|
481
|
+
/**
|
|
482
|
+
* When the run plan was last updated
|
|
483
|
+
*/
|
|
484
|
+
updatedAt: string;
|
|
485
|
+
/**
|
|
486
|
+
* Description of the run plan
|
|
487
|
+
*/
|
|
488
|
+
description?: string | null;
|
|
489
|
+
}
|
|
490
|
+
namespace Data {
|
|
491
|
+
interface AgentEndpoint {
|
|
492
|
+
id: string;
|
|
493
|
+
}
|
|
494
|
+
interface Evaluator {
|
|
495
|
+
id: string;
|
|
496
|
+
}
|
|
497
|
+
interface Persona {
|
|
498
|
+
id: string;
|
|
499
|
+
}
|
|
500
|
+
interface Scenario {
|
|
501
|
+
id: string;
|
|
502
|
+
}
|
|
503
|
+
}
|
|
504
|
+
}
|
|
505
|
+
export interface SimulationRunPlanCreateParams {
|
|
506
|
+
/**
|
|
507
|
+
* Agent endpoints to include in this run plan
|
|
508
|
+
*/
|
|
509
|
+
agentEndpoints: Array<SimulationRunPlanCreateParams.AgentEndpoint>;
|
|
510
|
+
/**
|
|
511
|
+
* Direction of the simulation (INBOUND or OUTBOUND)
|
|
512
|
+
*/
|
|
513
|
+
direction: 'INBOUND' | 'OUTBOUND';
|
|
514
|
+
/**
|
|
515
|
+
* Evaluators to include in this run plan
|
|
516
|
+
*/
|
|
517
|
+
evaluators: Array<SimulationRunPlanCreateParams.Evaluator>;
|
|
518
|
+
/**
|
|
519
|
+
* Maximum duration in seconds for each simulation
|
|
520
|
+
*/
|
|
521
|
+
maxSimulationDurationSeconds: number;
|
|
522
|
+
/**
|
|
523
|
+
* Name of the run plan
|
|
524
|
+
*/
|
|
525
|
+
name: string;
|
|
526
|
+
/**
|
|
527
|
+
* Personas to include in this run plan
|
|
528
|
+
*/
|
|
529
|
+
personas: Array<SimulationRunPlanCreateParams.Persona>;
|
|
530
|
+
/**
|
|
531
|
+
* Scenarios to include in this run plan
|
|
532
|
+
*/
|
|
533
|
+
scenarios: Array<SimulationRunPlanCreateParams.Scenario>;
|
|
534
|
+
/**
|
|
535
|
+
* Whether to automatically trigger a job after creating the run plan
|
|
536
|
+
*/
|
|
537
|
+
autoRun?: boolean;
|
|
538
|
+
/**
|
|
539
|
+
* Description of the run plan
|
|
540
|
+
*/
|
|
541
|
+
description?: string;
|
|
542
|
+
/**
|
|
543
|
+
* Execution mode (PARALLEL or SEQUENTIAL)
|
|
544
|
+
*/
|
|
545
|
+
executionMode?: 'PARALLEL' | 'SEQUENTIAL_SAME_RUN_PLAN' | 'SEQUENTIAL_PROJECT';
|
|
546
|
+
/**
|
|
547
|
+
* Number of iterations to run for each test case. Must be 1 for OUTBOUND
|
|
548
|
+
* direction.
|
|
549
|
+
*/
|
|
550
|
+
iterationCount?: number;
|
|
551
|
+
/**
|
|
552
|
+
* Maximum number of concurrent simulation jobs
|
|
553
|
+
*/
|
|
554
|
+
maxConcurrentJobs?: number;
|
|
555
|
+
/**
|
|
556
|
+
* Timeout in seconds for silence detection
|
|
557
|
+
*/
|
|
558
|
+
silenceTimeoutSeconds?: number;
|
|
559
|
+
}
|
|
560
|
+
export declare namespace SimulationRunPlanCreateParams {
|
|
561
|
+
interface AgentEndpoint {
|
|
562
|
+
id: string;
|
|
563
|
+
}
|
|
564
|
+
interface Evaluator {
|
|
565
|
+
id: string;
|
|
566
|
+
}
|
|
567
|
+
interface Persona {
|
|
568
|
+
id: string;
|
|
569
|
+
}
|
|
570
|
+
interface Scenario {
|
|
571
|
+
id: string;
|
|
572
|
+
}
|
|
573
|
+
}
|
|
574
|
+
export interface SimulationRunPlanUpdateParams {
|
|
575
|
+
/**
|
|
576
|
+
* Agent endpoints to include in this run plan
|
|
577
|
+
*/
|
|
578
|
+
agentEndpoints?: Array<SimulationRunPlanUpdateParams.AgentEndpoint>;
|
|
579
|
+
/**
|
|
580
|
+
* Description of the run plan
|
|
581
|
+
*/
|
|
582
|
+
description?: string;
|
|
583
|
+
/**
|
|
584
|
+
* Direction of the simulation (INBOUND or OUTBOUND)
|
|
585
|
+
*/
|
|
586
|
+
direction?: 'INBOUND' | 'OUTBOUND';
|
|
587
|
+
/**
|
|
588
|
+
* Evaluators to include in this run plan
|
|
589
|
+
*/
|
|
590
|
+
evaluators?: Array<SimulationRunPlanUpdateParams.Evaluator>;
|
|
591
|
+
/**
|
|
592
|
+
* Execution mode (PARALLEL or SEQUENTIAL)
|
|
593
|
+
*/
|
|
594
|
+
executionMode?: 'PARALLEL' | 'SEQUENTIAL_SAME_RUN_PLAN' | 'SEQUENTIAL_PROJECT';
|
|
595
|
+
/**
|
|
596
|
+
* Number of iterations to run for each test case. Must be 1 for OUTBOUND
|
|
597
|
+
* direction.
|
|
598
|
+
*/
|
|
599
|
+
iterationCount?: number;
|
|
600
|
+
/**
|
|
601
|
+
* Maximum number of concurrent simulation jobs
|
|
602
|
+
*/
|
|
603
|
+
maxConcurrentJobs?: number;
|
|
604
|
+
/**
|
|
605
|
+
* Maximum duration in seconds for each simulation
|
|
606
|
+
*/
|
|
607
|
+
maxSimulationDurationSeconds?: number;
|
|
608
|
+
/**
|
|
609
|
+
* Name of the run plan
|
|
610
|
+
*/
|
|
611
|
+
name?: string;
|
|
612
|
+
/**
|
|
613
|
+
* Personas to include in this run plan
|
|
614
|
+
*/
|
|
615
|
+
personas?: Array<SimulationRunPlanUpdateParams.Persona>;
|
|
616
|
+
/**
|
|
617
|
+
* Scenarios to include in this run plan
|
|
618
|
+
*/
|
|
619
|
+
scenarios?: Array<SimulationRunPlanUpdateParams.Scenario>;
|
|
620
|
+
/**
|
|
621
|
+
* Timeout in seconds for silence detection
|
|
622
|
+
*/
|
|
623
|
+
silenceTimeoutSeconds?: number;
|
|
624
|
+
}
|
|
625
|
+
export declare namespace SimulationRunPlanUpdateParams {
|
|
626
|
+
interface AgentEndpoint {
|
|
627
|
+
id: string;
|
|
628
|
+
}
|
|
629
|
+
interface Evaluator {
|
|
630
|
+
id: string;
|
|
631
|
+
}
|
|
632
|
+
interface Persona {
|
|
633
|
+
id: string;
|
|
634
|
+
}
|
|
635
|
+
interface Scenario {
|
|
636
|
+
id: string;
|
|
637
|
+
}
|
|
638
|
+
}
|
|
639
|
+
export interface SimulationRunPlanListParams {
|
|
640
|
+
/**
|
|
641
|
+
* Cursor for pagination - use the nextCursor value from a previous response
|
|
642
|
+
*/
|
|
643
|
+
after?: string;
|
|
644
|
+
/**
|
|
645
|
+
* Filter run plans by agent ID
|
|
646
|
+
*/
|
|
647
|
+
agentId?: string;
|
|
648
|
+
/**
|
|
649
|
+
* Maximum number of run plans to return (default: 20, max: 50)
|
|
650
|
+
*/
|
|
651
|
+
limit?: number;
|
|
652
|
+
/**
|
|
653
|
+
* Search text to filter run plans by name
|
|
654
|
+
*/
|
|
655
|
+
searchText?: string;
|
|
656
|
+
}
|
|
657
|
+
export declare namespace SimulationRunPlan {
|
|
658
|
+
export { type SimulationRunPlanCreateResponse as SimulationRunPlanCreateResponse, type SimulationRunPlanUpdateResponse as SimulationRunPlanUpdateResponse, type SimulationRunPlanListResponse as SimulationRunPlanListResponse, type SimulationRunPlanDeleteResponse as SimulationRunPlanDeleteResponse, type SimulationRunPlanGetByIDResponse as SimulationRunPlanGetByIDResponse, type SimulationRunPlanCreateParams as SimulationRunPlanCreateParams, type SimulationRunPlanUpdateParams as SimulationRunPlanUpdateParams, type SimulationRunPlanListParams as SimulationRunPlanListParams, };
|
|
659
|
+
}
|
|
660
|
+
//# sourceMappingURL=simulation-run-plan.d.mts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"simulation-run-plan.d.mts","sourceRoot":"","sources":["../src/resources/simulation-run-plan.ts"],"names":[],"mappings":"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"}
|