@roarkanalytics/sdk 3.21.0 → 4.1.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.
Files changed (71) hide show
  1. package/CHANGELOG.md +28 -0
  2. package/client.d.mts +6 -3
  3. package/client.d.mts.map +1 -1
  4. package/client.d.ts +6 -3
  5. package/client.d.ts.map +1 -1
  6. package/client.js +6 -3
  7. package/client.js.map +1 -1
  8. package/client.mjs +6 -3
  9. package/client.mjs.map +1 -1
  10. package/package.json +1 -1
  11. package/resources/agent-config.d.mts +394 -0
  12. package/resources/agent-config.d.mts.map +1 -0
  13. package/resources/agent-config.d.ts +394 -0
  14. package/resources/agent-config.d.ts.map +1 -0
  15. package/resources/agent-config.js +98 -0
  16. package/resources/agent-config.js.map +1 -0
  17. package/resources/agent-config.mjs +94 -0
  18. package/resources/agent-config.mjs.map +1 -0
  19. package/resources/{autoimprove-fix.d.mts → autoimprove-job.d.mts} +117 -116
  20. package/resources/autoimprove-job.d.mts.map +1 -0
  21. package/resources/{autoimprove-fix.d.ts → autoimprove-job.d.ts} +117 -116
  22. package/resources/autoimprove-job.d.ts.map +1 -0
  23. package/resources/{autoimprove-fix.js → autoimprove-job.js} +42 -41
  24. package/resources/autoimprove-job.js.map +1 -0
  25. package/resources/{autoimprove-fix.mjs → autoimprove-job.mjs} +40 -39
  26. package/resources/autoimprove-job.mjs.map +1 -0
  27. package/resources/config.d.mts +9 -0
  28. package/resources/config.d.mts.map +1 -1
  29. package/resources/config.d.ts +9 -0
  30. package/resources/config.d.ts.map +1 -1
  31. package/resources/customer-flow.d.mts +104 -19
  32. package/resources/customer-flow.d.mts.map +1 -1
  33. package/resources/customer-flow.d.ts +104 -19
  34. package/resources/customer-flow.d.ts.map +1 -1
  35. package/resources/index.d.mts +2 -1
  36. package/resources/index.d.mts.map +1 -1
  37. package/resources/index.d.ts +2 -1
  38. package/resources/index.d.ts.map +1 -1
  39. package/resources/index.js +5 -3
  40. package/resources/index.js.map +1 -1
  41. package/resources/index.mjs +2 -1
  42. package/resources/index.mjs.map +1 -1
  43. package/resources/simulation-job.d.mts +2 -2
  44. package/resources/simulation-job.d.mts.map +1 -1
  45. package/resources/simulation-job.d.ts +2 -2
  46. package/resources/simulation-job.d.ts.map +1 -1
  47. package/resources/simulation-run-plan-job.d.mts +1 -1
  48. package/resources/simulation-run-plan-job.d.mts.map +1 -1
  49. package/resources/simulation-run-plan-job.d.ts +1 -1
  50. package/resources/simulation-run-plan-job.d.ts.map +1 -1
  51. package/src/client.ts +54 -27
  52. package/src/resources/agent-config.ts +487 -0
  53. package/src/resources/{autoimprove-fix.ts → autoimprove-job.ts} +139 -138
  54. package/src/resources/config.ts +13 -0
  55. package/src/resources/customer-flow.ts +135 -20
  56. package/src/resources/index.ts +25 -13
  57. package/src/resources/simulation-job.ts +2 -2
  58. package/src/resources/simulation-run-plan-job.ts +1 -1
  59. package/src/version.ts +1 -1
  60. package/version.d.mts +1 -1
  61. package/version.d.mts.map +1 -1
  62. package/version.d.ts +1 -1
  63. package/version.d.ts.map +1 -1
  64. package/version.js +1 -1
  65. package/version.js.map +1 -1
  66. package/version.mjs +1 -1
  67. package/version.mjs.map +1 -1
  68. package/resources/autoimprove-fix.d.mts.map +0 -1
  69. package/resources/autoimprove-fix.d.ts.map +0 -1
  70. package/resources/autoimprove-fix.js.map +0 -1
  71. package/resources/autoimprove-fix.mjs.map +0 -1
@@ -0,0 +1,394 @@
1
+ import { APIResource } from "../core/resource.mjs";
2
+ import * as AgentConfigAPI from "./agent-config.mjs";
3
+ import { APIPromise } from "../core/api-promise.mjs";
4
+ import { RequestOptions } from "../internal/request-options.mjs";
5
+ export declare class AgentConfig extends APIResource {
6
+ /**
7
+ * Write a new revision onto a channel. Writing production creates the key when it
8
+ * does not exist; writing staging stages a candidate that only Roark-recognized
9
+ * simulation sessions will read. Every write is a new revision; nothing is
10
+ * overwritten.
11
+ *
12
+ * @example
13
+ * ```ts
14
+ * const agentConfig = await client.agentConfig.update('x', {
15
+ * channel: 'production',
16
+ * document: { foo: 'string' },
17
+ * });
18
+ * ```
19
+ */
20
+ update(key: string, body: AgentConfigUpdateParams, options?: RequestOptions): APIPromise<AgentConfigUpdateResponse>;
21
+ /**
22
+ * List the managed agent configs in this project, most recent first.
23
+ *
24
+ * @example
25
+ * ```ts
26
+ * const agentConfigs = await client.agentConfig.list();
27
+ * ```
28
+ */
29
+ list(options?: RequestOptions): APIPromise<AgentConfigListResponse>;
30
+ /**
31
+ * Clear the staging channel. Production is untouched; recognized simulation
32
+ * sessions go back to reading production.
33
+ *
34
+ * @example
35
+ * ```ts
36
+ * const response =
37
+ * await client.agentConfig.deleteStaging('x');
38
+ * ```
39
+ */
40
+ deleteStaging(key: string, options?: RequestOptions): APIPromise<AgentConfigDeleteStagingResponse>;
41
+ /**
42
+ * Fetch one managed config with its channel pointers and recent revisions, newest
43
+ * first.
44
+ *
45
+ * @example
46
+ * ```ts
47
+ * const response = await client.agentConfig.getByID('x');
48
+ * ```
49
+ */
50
+ getByID(key: string, options?: RequestOptions): APIPromise<AgentConfigGetByIDResponse>;
51
+ /**
52
+ * Point the production channel at the staging revision. Real traffic reads it from
53
+ * the next session onward; roll back by writing the prior revision id to
54
+ * production (the chain preserves every state).
55
+ *
56
+ * @example
57
+ * ```ts
58
+ * const response = await client.agentConfig.promote('x');
59
+ * ```
60
+ */
61
+ promote(key: string, options?: RequestOptions): APIPromise<AgentConfigPromoteResponse>;
62
+ /**
63
+ * The call your agent makes at session start. Returns the config JSON for this
64
+ * session, with per-session simulation recognition built in: when the session was
65
+ * originated by a Roark simulation (matched by caller number against the calls
66
+ * Roark has in flight), the STAGING revision is served for that session only, so
67
+ * Autoimprove candidates are tested on your real deployment. Real traffic always
68
+ * resolves to production; any recognition miss degrades to production too.
69
+ *
70
+ * On the first fetch of an unknown key, pass `defaults` (your baked-in config):
71
+ * the key is registered and the defaults become revision 1. That makes integration
72
+ * a single call.
73
+ *
74
+ * Cache the response per session; do not fetch per turn.
75
+ *
76
+ * @example
77
+ * ```ts
78
+ * const response = await client.agentConfig.resolve('x');
79
+ * ```
80
+ */
81
+ resolve(key: string, body?: AgentConfigResolveParams | null | undefined, options?: RequestOptions): APIPromise<AgentConfigResolveResponse>;
82
+ }
83
+ export interface ManagedAgentConfigRevision {
84
+ id: string;
85
+ /**
86
+ * ISO 8601.
87
+ */
88
+ createdAt: string;
89
+ /**
90
+ * Who wrote it: your own pushes, or the Autoimprove loop staging a candidate.
91
+ */
92
+ createdByType: 'CUSTOMER' | 'AUTOIMPROVE';
93
+ /**
94
+ * The config JSON, verbatim.
95
+ */
96
+ document: {
97
+ [key: string]: unknown;
98
+ };
99
+ parentRevisionId: string | null;
100
+ /**
101
+ * One-line story of the change.
102
+ */
103
+ summary: string | null;
104
+ }
105
+ export interface AgentConfigUpdateResponse {
106
+ /**
107
+ * A managed config for a code-first agent (LiveKit, Pipecat, or any stack using
108
+ * the SDK): your agent fetches its tunable surface from Roark at session start.
109
+ * Two channels: production for real traffic, staging for candidates under test.
110
+ */
111
+ data: AgentConfigUpdateResponse.Data;
112
+ }
113
+ export declare namespace AgentConfigUpdateResponse {
114
+ /**
115
+ * A managed config for a code-first agent (LiveKit, Pipecat, or any stack using
116
+ * the SDK): your agent fetches its tunable surface from Roark at session start.
117
+ * Two channels: production for real traffic, staging for candidates under test.
118
+ */
119
+ interface Data {
120
+ id: string;
121
+ /**
122
+ * The linked Roark agent, when one exists.
123
+ */
124
+ agentId: string | null;
125
+ /**
126
+ * ISO 8601.
127
+ */
128
+ createdAt: string;
129
+ /**
130
+ * The stable handle your code fetches by.
131
+ */
132
+ key: string;
133
+ /**
134
+ * The revision real traffic reads.
135
+ */
136
+ productionRevisionId: string | null;
137
+ /**
138
+ * The candidate revision Roark test calls read. Null when nothing is staged.
139
+ */
140
+ stagingRevisionId: string | null;
141
+ /**
142
+ * ISO 8601.
143
+ */
144
+ updatedAt: string;
145
+ }
146
+ }
147
+ export interface AgentConfigListResponse {
148
+ data: Array<AgentConfigListResponse.Data>;
149
+ }
150
+ export declare namespace AgentConfigListResponse {
151
+ /**
152
+ * A managed config for a code-first agent (LiveKit, Pipecat, or any stack using
153
+ * the SDK): your agent fetches its tunable surface from Roark at session start.
154
+ * Two channels: production for real traffic, staging for candidates under test.
155
+ */
156
+ interface Data {
157
+ id: string;
158
+ /**
159
+ * The linked Roark agent, when one exists.
160
+ */
161
+ agentId: string | null;
162
+ /**
163
+ * ISO 8601.
164
+ */
165
+ createdAt: string;
166
+ /**
167
+ * The stable handle your code fetches by.
168
+ */
169
+ key: string;
170
+ /**
171
+ * The revision real traffic reads.
172
+ */
173
+ productionRevisionId: string | null;
174
+ /**
175
+ * The candidate revision Roark test calls read. Null when nothing is staged.
176
+ */
177
+ stagingRevisionId: string | null;
178
+ /**
179
+ * ISO 8601.
180
+ */
181
+ updatedAt: string;
182
+ }
183
+ }
184
+ export interface AgentConfigDeleteStagingResponse {
185
+ /**
186
+ * A managed config for a code-first agent (LiveKit, Pipecat, or any stack using
187
+ * the SDK): your agent fetches its tunable surface from Roark at session start.
188
+ * Two channels: production for real traffic, staging for candidates under test.
189
+ */
190
+ data: AgentConfigDeleteStagingResponse.Data;
191
+ }
192
+ export declare namespace AgentConfigDeleteStagingResponse {
193
+ /**
194
+ * A managed config for a code-first agent (LiveKit, Pipecat, or any stack using
195
+ * the SDK): your agent fetches its tunable surface from Roark at session start.
196
+ * Two channels: production for real traffic, staging for candidates under test.
197
+ */
198
+ interface Data {
199
+ id: string;
200
+ /**
201
+ * The linked Roark agent, when one exists.
202
+ */
203
+ agentId: string | null;
204
+ /**
205
+ * ISO 8601.
206
+ */
207
+ createdAt: string;
208
+ /**
209
+ * The stable handle your code fetches by.
210
+ */
211
+ key: string;
212
+ /**
213
+ * The revision real traffic reads.
214
+ */
215
+ productionRevisionId: string | null;
216
+ /**
217
+ * The candidate revision Roark test calls read. Null when nothing is staged.
218
+ */
219
+ stagingRevisionId: string | null;
220
+ /**
221
+ * ISO 8601.
222
+ */
223
+ updatedAt: string;
224
+ }
225
+ }
226
+ export interface AgentConfigGetByIDResponse {
227
+ data: AgentConfigGetByIDResponse.Data;
228
+ }
229
+ export declare namespace AgentConfigGetByIDResponse {
230
+ /**
231
+ * A managed config for a code-first agent (LiveKit, Pipecat, or any stack using
232
+ * the SDK): your agent fetches its tunable surface from Roark at session start.
233
+ * Two channels: production for real traffic, staging for candidates under test.
234
+ */
235
+ interface Data {
236
+ id: string;
237
+ /**
238
+ * The linked Roark agent, when one exists.
239
+ */
240
+ agentId: string | null;
241
+ /**
242
+ * ISO 8601.
243
+ */
244
+ createdAt: string;
245
+ /**
246
+ * The stable handle your code fetches by.
247
+ */
248
+ key: string;
249
+ /**
250
+ * The revision real traffic reads.
251
+ */
252
+ productionRevisionId: string | null;
253
+ /**
254
+ * Recent revisions, newest first.
255
+ */
256
+ revisions: Array<AgentConfigAPI.ManagedAgentConfigRevision>;
257
+ /**
258
+ * The candidate revision Roark test calls read. Null when nothing is staged.
259
+ */
260
+ stagingRevisionId: string | null;
261
+ /**
262
+ * ISO 8601.
263
+ */
264
+ updatedAt: string;
265
+ }
266
+ }
267
+ export interface AgentConfigPromoteResponse {
268
+ /**
269
+ * A managed config for a code-first agent (LiveKit, Pipecat, or any stack using
270
+ * the SDK): your agent fetches its tunable surface from Roark at session start.
271
+ * Two channels: production for real traffic, staging for candidates under test.
272
+ */
273
+ data: AgentConfigPromoteResponse.Data;
274
+ }
275
+ export declare namespace AgentConfigPromoteResponse {
276
+ /**
277
+ * A managed config for a code-first agent (LiveKit, Pipecat, or any stack using
278
+ * the SDK): your agent fetches its tunable surface from Roark at session start.
279
+ * Two channels: production for real traffic, staging for candidates under test.
280
+ */
281
+ interface Data {
282
+ id: string;
283
+ /**
284
+ * The linked Roark agent, when one exists.
285
+ */
286
+ agentId: string | null;
287
+ /**
288
+ * ISO 8601.
289
+ */
290
+ createdAt: string;
291
+ /**
292
+ * The stable handle your code fetches by.
293
+ */
294
+ key: string;
295
+ /**
296
+ * The revision real traffic reads.
297
+ */
298
+ productionRevisionId: string | null;
299
+ /**
300
+ * The candidate revision Roark test calls read. Null when nothing is staged.
301
+ */
302
+ stagingRevisionId: string | null;
303
+ /**
304
+ * ISO 8601.
305
+ */
306
+ updatedAt: string;
307
+ }
308
+ }
309
+ export interface AgentConfigResolveResponse {
310
+ data: AgentConfigResolveResponse.Data;
311
+ }
312
+ export declare namespace AgentConfigResolveResponse {
313
+ interface Data {
314
+ /**
315
+ * Which channel this session resolved to.
316
+ */
317
+ channel: 'production' | 'staging';
318
+ /**
319
+ * The config JSON to apply.
320
+ */
321
+ document: {
322
+ [key: string]: unknown;
323
+ };
324
+ key: string;
325
+ revisionId: string;
326
+ /**
327
+ * Set when this session is a Roark simulation call. Stamp it (and the revisionId)
328
+ * into your session metadata so analysis attributes the call correctly.
329
+ */
330
+ simulationJobId: string | null;
331
+ }
332
+ }
333
+ export interface AgentConfigUpdateParams {
334
+ /**
335
+ * Which channel to write.
336
+ */
337
+ channel: 'production' | 'staging';
338
+ /**
339
+ * The full config JSON for the new revision.
340
+ */
341
+ document: {
342
+ [key: string]: unknown;
343
+ };
344
+ /**
345
+ * Link this config to a Roark agent (the one your calls report). Required before
346
+ * Autoimprove can run on it: the link is how a fix finds the config channel.
347
+ */
348
+ agentId?: string;
349
+ /**
350
+ * One-line story of the change.
351
+ */
352
+ summary?: string;
353
+ }
354
+ export interface AgentConfigResolveParams {
355
+ /**
356
+ * Your baked-in config. On the first fetch of an unknown key this registers the
357
+ * config and becomes revision 1, so integration is a single call. Ignored once the
358
+ * key exists.
359
+ */
360
+ defaults?: {
361
+ [key: string]: unknown;
362
+ };
363
+ /**
364
+ * Session context. When the call was originated by a Roark simulation, Roark
365
+ * recognizes it here and serves the staging revision for this session only; real
366
+ * traffic always gets production.
367
+ */
368
+ session?: AgentConfigResolveParams.Session;
369
+ }
370
+ export declare namespace AgentConfigResolveParams {
371
+ /**
372
+ * Session context. When the call was originated by a Roark simulation, Roark
373
+ * recognizes it here and serves the staging revision for this session only; real
374
+ * traffic always gets production.
375
+ */
376
+ interface Session {
377
+ /**
378
+ * The number your agent was reached on (E.164).
379
+ */
380
+ calledNumber?: string;
381
+ /**
382
+ * The number calling your agent (E.164). Required for simulation recognition.
383
+ */
384
+ callerNumber?: string;
385
+ /**
386
+ * Your session or room identifier, for correlation.
387
+ */
388
+ sessionId?: string;
389
+ }
390
+ }
391
+ export declare namespace AgentConfig {
392
+ export { type ManagedAgentConfigRevision as ManagedAgentConfigRevision, type AgentConfigUpdateResponse as AgentConfigUpdateResponse, type AgentConfigListResponse as AgentConfigListResponse, type AgentConfigDeleteStagingResponse as AgentConfigDeleteStagingResponse, type AgentConfigGetByIDResponse as AgentConfigGetByIDResponse, type AgentConfigPromoteResponse as AgentConfigPromoteResponse, type AgentConfigResolveResponse as AgentConfigResolveResponse, type AgentConfigUpdateParams as AgentConfigUpdateParams, type AgentConfigResolveParams as AgentConfigResolveParams, };
393
+ }
394
+ //# sourceMappingURL=agent-config.d.mts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"agent-config.d.mts","sourceRoot":"","sources":["../src/resources/agent-config.ts"],"names":[],"mappings":"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"}