telnyx 6.68.0 → 6.70.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 (59) hide show
  1. package/CHANGELOG.md +21 -0
  2. package/client.d.mts +6 -0
  3. package/client.d.mts.map +1 -1
  4. package/client.d.ts +6 -0
  5. package/client.d.ts.map +1 -1
  6. package/client.js +6 -0
  7. package/client.js.map +1 -1
  8. package/client.mjs +6 -0
  9. package/client.mjs.map +1 -1
  10. package/package.json +1 -1
  11. package/resources/ai/assistants/assistants.d.mts +6 -0
  12. package/resources/ai/assistants/assistants.d.mts.map +1 -1
  13. package/resources/ai/assistants/assistants.d.ts +6 -0
  14. package/resources/ai/assistants/assistants.d.ts.map +1 -1
  15. package/resources/ai/assistants/assistants.js.map +1 -1
  16. package/resources/ai/assistants/assistants.mjs.map +1 -1
  17. package/resources/calls/actions.d.mts +4 -4
  18. package/resources/calls/actions.d.ts +4 -4
  19. package/resources/conferences/actions.d.mts +2 -2
  20. package/resources/conferences/actions.d.ts +2 -2
  21. package/resources/index.d.mts +1 -0
  22. package/resources/index.d.mts.map +1 -1
  23. package/resources/index.d.ts +1 -0
  24. package/resources/index.d.ts.map +1 -1
  25. package/resources/index.js +3 -1
  26. package/resources/index.js.map +1 -1
  27. package/resources/index.mjs +1 -0
  28. package/resources/index.mjs.map +1 -1
  29. package/resources/messages/messages.d.mts +8 -0
  30. package/resources/messages/messages.d.mts.map +1 -1
  31. package/resources/messages/messages.d.ts +8 -0
  32. package/resources/messages/messages.d.ts.map +1 -1
  33. package/resources/messages/messages.js.map +1 -1
  34. package/resources/messages/messages.mjs.map +1 -1
  35. package/resources/shared.d.mts +4 -0
  36. package/resources/shared.d.mts.map +1 -1
  37. package/resources/shared.d.ts +4 -0
  38. package/resources/shared.d.ts.map +1 -1
  39. package/resources/voice-sdk-call-reports.d.mts +438 -0
  40. package/resources/voice-sdk-call-reports.d.mts.map +1 -0
  41. package/resources/voice-sdk-call-reports.d.ts +438 -0
  42. package/resources/voice-sdk-call-reports.d.ts.map +1 -0
  43. package/resources/voice-sdk-call-reports.js +30 -0
  44. package/resources/voice-sdk-call-reports.js.map +1 -0
  45. package/resources/voice-sdk-call-reports.mjs +26 -0
  46. package/resources/voice-sdk-call-reports.mjs.map +1 -0
  47. package/src/client.ts +20 -0
  48. package/src/resources/ai/assistants/assistants.ts +7 -0
  49. package/src/resources/calls/actions.ts +4 -4
  50. package/src/resources/conferences/actions.ts +2 -2
  51. package/src/resources/index.ts +7 -0
  52. package/src/resources/messages/messages.ts +10 -0
  53. package/src/resources/shared.ts +5 -0
  54. package/src/resources/voice-sdk-call-reports.ts +498 -0
  55. package/src/version.ts +1 -1
  56. package/version.d.mts +1 -1
  57. package/version.d.ts +1 -1
  58. package/version.js +1 -1
  59. package/version.mjs +1 -1
@@ -0,0 +1,438 @@
1
+ import { APIResource } from "../core/resource.mjs";
2
+ import { APIPromise } from "../core/api-promise.mjs";
3
+ import { DefaultFlatPagination, type DefaultFlatPaginationParams, PagePromise } from "../core/pagination.mjs";
4
+ import { RequestOptions } from "../internal/request-options.mjs";
5
+ /**
6
+ * Retrieve raw Voice SDK call report stats payloads for WebRTC call troubleshooting.
7
+ */
8
+ export declare class VoiceSDKCallReports extends APIResource {
9
+ /**
10
+ * Returns raw call report stats JSON payloads stored for the authenticated user
11
+ * and `call_id`. The user is derived from Telnyx authentication, not from request
12
+ * parameters.
13
+ */
14
+ retrieve(callID: string, options?: RequestOptions): APIPromise<VoiceSDKCallReportRetrieveResponse>;
15
+ /**
16
+ * Returns paginated raw call report stats JSON payloads stored for the
17
+ * authenticated user. The user is derived from Telnyx authentication, not from
18
+ * request parameters.
19
+ */
20
+ list(query?: VoiceSDKCallReportListParams | null | undefined, options?: RequestOptions): PagePromise<VoiceSDKCallReportListResponsesDefaultFlatPagination, VoiceSDKCallReportListResponse>;
21
+ }
22
+ export type VoiceSDKCallReportListResponsesDefaultFlatPagination = DefaultFlatPagination<VoiceSDKCallReportListResponse>;
23
+ /**
24
+ * Raw Voice SDK call report stats payloads as stored by voice-sdk-debug.
25
+ */
26
+ export type VoiceSDKCallReportRetrieveResponse = Array<VoiceSDKCallReportRetrieveResponse.VoiceSDKCallReportRetrieveResponseItem>;
27
+ export declare namespace VoiceSDKCallReportRetrieveResponse {
28
+ /**
29
+ * A raw call report stats JSON payload. The schema is intentionally permissive
30
+ * because Voice SDK clients can add fields over time.
31
+ */
32
+ interface VoiceSDKCallReportRetrieveResponseItem {
33
+ /**
34
+ * Unique call identifier.
35
+ */
36
+ call_id?: string;
37
+ /**
38
+ * User-scoped storage grouping identifier derived from the authenticated user.
39
+ * This is not a unique per-call report identifier and may be shared by multiple
40
+ * calls for the same user.
41
+ */
42
+ call_report_id?: string;
43
+ /**
44
+ * Creation timestamp when present.
45
+ */
46
+ created_at?: string;
47
+ /**
48
+ * Reason the SDK flushed this stats report segment, for example an intermediate
49
+ * socket-close flush.
50
+ */
51
+ flushReason?: {
52
+ [key: string]: unknown;
53
+ };
54
+ /**
55
+ * Raw logs payload emitted by the Voice SDK and stored without normalization. Live
56
+ * responses commonly return an array of log entries, but object-shaped log
57
+ * payloads are also allowed for compatibility.
58
+ */
59
+ logs?: Array<VoiceSDKCallReportRetrieveResponseItem.UnionMember0> | VoiceSDKCallReportRetrieveResponseItem.Entries;
60
+ /**
61
+ * Organization associated with the stored call report when provided by the Voice
62
+ * SDK reporting path.
63
+ */
64
+ organization_id?: string;
65
+ /**
66
+ * Zero-based stats segment index when the SDK sends segmented or intermediate
67
+ * reports.
68
+ */
69
+ segment?: number;
70
+ /**
71
+ * Raw stats payload emitted by the Voice SDK and stored without normalization. The
72
+ * exact shape can vary by SDK platform and version. Live responses commonly return
73
+ * an array of interval snapshots, but object-shaped stats payloads are also
74
+ * allowed for compatibility.
75
+ */
76
+ stats?: Array<{
77
+ [key: string]: unknown;
78
+ }> | VoiceSDKCallReportRetrieveResponseItem.UnionMember1;
79
+ /**
80
+ * Time when the call report was stored.
81
+ */
82
+ stored_at?: string;
83
+ /**
84
+ * High-level call metadata.
85
+ */
86
+ summary?: {
87
+ [key: string]: unknown;
88
+ };
89
+ /**
90
+ * Telnyx call leg identifier for correlating the report with call-control, SIP,
91
+ * and media troubleshooting data.
92
+ */
93
+ telnyx_leg_id?: string;
94
+ /**
95
+ * Telnyx RTC session identifier for correlating the report with Voice SDK
96
+ * signaling and media-session logs.
97
+ */
98
+ telnyx_session_id?: string;
99
+ /**
100
+ * Voice SDK user agent string reported by the client. This is the preferred
101
+ * SDK/platform/version dimension when present.
102
+ */
103
+ user_agent?: string;
104
+ /**
105
+ * Authenticated user that owns the call report.
106
+ */
107
+ user_id?: string;
108
+ /**
109
+ * Legacy SDK version value when the client reports one separately from the user
110
+ * agent.
111
+ */
112
+ version?: string;
113
+ /**
114
+ * Voice SDK instance identifier.
115
+ */
116
+ voice_sdk_id?: string;
117
+ /**
118
+ * Decoded Voice SDK identifier metadata emitted by voice-sdk-proxy when available.
119
+ */
120
+ voice_sdk_id_decoded?: {
121
+ [key: string]: unknown;
122
+ };
123
+ /**
124
+ * Voice SDK session correlation identifier used to group stats segments for the
125
+ * same SDK session.
126
+ */
127
+ voice_sdk_session_id?: string;
128
+ [k: string]: unknown;
129
+ }
130
+ namespace VoiceSDKCallReportRetrieveResponseItem {
131
+ /**
132
+ * A raw Voice SDK log entry. Additional SDK-specific fields may be present.
133
+ */
134
+ interface UnionMember0 {
135
+ /**
136
+ * Raw structured context attached to the log entry.
137
+ */
138
+ context?: {
139
+ [key: string]: unknown;
140
+ };
141
+ /**
142
+ * Log level emitted by the SDK.
143
+ */
144
+ level?: 'debug' | 'info' | 'warn' | 'error';
145
+ /**
146
+ * Log message.
147
+ */
148
+ message?: string;
149
+ /**
150
+ * Time when the log entry was emitted.
151
+ */
152
+ timestamp?: string;
153
+ [k: string]: unknown;
154
+ }
155
+ /**
156
+ * Raw logs object emitted by the Voice SDK when logs are grouped under an entries
157
+ * field.
158
+ */
159
+ interface Entries {
160
+ /**
161
+ * Raw log entries when the SDK groups logs under an entries field.
162
+ */
163
+ entries?: Array<Entries.Entry>;
164
+ [k: string]: unknown;
165
+ }
166
+ namespace Entries {
167
+ /**
168
+ * A raw Voice SDK log entry. Additional SDK-specific fields may be present.
169
+ */
170
+ interface Entry {
171
+ /**
172
+ * Raw structured context attached to the log entry.
173
+ */
174
+ context?: {
175
+ [key: string]: unknown;
176
+ };
177
+ /**
178
+ * Log level emitted by the SDK.
179
+ */
180
+ level?: 'debug' | 'info' | 'warn' | 'error';
181
+ /**
182
+ * Log message.
183
+ */
184
+ message?: string;
185
+ /**
186
+ * Time when the log entry was emitted.
187
+ */
188
+ timestamp?: string;
189
+ [k: string]: unknown;
190
+ }
191
+ }
192
+ /**
193
+ * Raw stats object emitted by the Voice SDK.
194
+ */
195
+ interface UnionMember1 {
196
+ /**
197
+ * Raw audio stats such as inbound/outbound packet, byte, jitter, packet-loss,
198
+ * bitrate, and audio-level metrics.
199
+ */
200
+ audio?: {
201
+ [key: string]: unknown;
202
+ };
203
+ /**
204
+ * Raw connection stats such as round-trip time, packets, and bytes sent or
205
+ * received.
206
+ */
207
+ connection?: {
208
+ [key: string]: unknown;
209
+ };
210
+ /**
211
+ * Raw ICE candidate-pair information, including selected pair, local/remote
212
+ * candidates, state, and nomination data when provided by the SDK.
213
+ */
214
+ ice?: {
215
+ [key: string]: unknown;
216
+ };
217
+ /**
218
+ * Raw transport stats such as ICE state, DTLS state, SRTP cipher, TLS version, and
219
+ * selected-candidate-pair changes.
220
+ */
221
+ transport?: {
222
+ [key: string]: unknown;
223
+ };
224
+ [k: string]: unknown;
225
+ }
226
+ }
227
+ }
228
+ /**
229
+ * A raw call report stats JSON payload. The schema is intentionally permissive
230
+ * because Voice SDK clients can add fields over time.
231
+ */
232
+ export interface VoiceSDKCallReportListResponse {
233
+ /**
234
+ * Unique call identifier.
235
+ */
236
+ call_id?: string;
237
+ /**
238
+ * User-scoped storage grouping identifier derived from the authenticated user.
239
+ * This is not a unique per-call report identifier and may be shared by multiple
240
+ * calls for the same user.
241
+ */
242
+ call_report_id?: string;
243
+ /**
244
+ * Creation timestamp when present.
245
+ */
246
+ created_at?: string;
247
+ /**
248
+ * Reason the SDK flushed this stats report segment, for example an intermediate
249
+ * socket-close flush.
250
+ */
251
+ flushReason?: {
252
+ [key: string]: unknown;
253
+ };
254
+ /**
255
+ * Raw logs payload emitted by the Voice SDK and stored without normalization. Live
256
+ * responses commonly return an array of log entries, but object-shaped log
257
+ * payloads are also allowed for compatibility.
258
+ */
259
+ logs?: Array<VoiceSDKCallReportListResponse.UnionMember0> | VoiceSDKCallReportListResponse.Entries;
260
+ /**
261
+ * Organization associated with the stored call report when provided by the Voice
262
+ * SDK reporting path.
263
+ */
264
+ organization_id?: string;
265
+ /**
266
+ * Zero-based stats segment index when the SDK sends segmented or intermediate
267
+ * reports.
268
+ */
269
+ segment?: number;
270
+ /**
271
+ * Raw stats payload emitted by the Voice SDK and stored without normalization. The
272
+ * exact shape can vary by SDK platform and version. Live responses commonly return
273
+ * an array of interval snapshots, but object-shaped stats payloads are also
274
+ * allowed for compatibility.
275
+ */
276
+ stats?: Array<{
277
+ [key: string]: unknown;
278
+ }> | VoiceSDKCallReportListResponse.UnionMember1;
279
+ /**
280
+ * Time when the call report was stored.
281
+ */
282
+ stored_at?: string;
283
+ /**
284
+ * High-level call metadata.
285
+ */
286
+ summary?: {
287
+ [key: string]: unknown;
288
+ };
289
+ /**
290
+ * Telnyx call leg identifier for correlating the report with call-control, SIP,
291
+ * and media troubleshooting data.
292
+ */
293
+ telnyx_leg_id?: string;
294
+ /**
295
+ * Telnyx RTC session identifier for correlating the report with Voice SDK
296
+ * signaling and media-session logs.
297
+ */
298
+ telnyx_session_id?: string;
299
+ /**
300
+ * Voice SDK user agent string reported by the client. This is the preferred
301
+ * SDK/platform/version dimension when present.
302
+ */
303
+ user_agent?: string;
304
+ /**
305
+ * Authenticated user that owns the call report.
306
+ */
307
+ user_id?: string;
308
+ /**
309
+ * Legacy SDK version value when the client reports one separately from the user
310
+ * agent.
311
+ */
312
+ version?: string;
313
+ /**
314
+ * Voice SDK instance identifier.
315
+ */
316
+ voice_sdk_id?: string;
317
+ /**
318
+ * Decoded Voice SDK identifier metadata emitted by voice-sdk-proxy when available.
319
+ */
320
+ voice_sdk_id_decoded?: {
321
+ [key: string]: unknown;
322
+ };
323
+ /**
324
+ * Voice SDK session correlation identifier used to group stats segments for the
325
+ * same SDK session.
326
+ */
327
+ voice_sdk_session_id?: string;
328
+ [k: string]: unknown;
329
+ }
330
+ export declare namespace VoiceSDKCallReportListResponse {
331
+ /**
332
+ * A raw Voice SDK log entry. Additional SDK-specific fields may be present.
333
+ */
334
+ interface UnionMember0 {
335
+ /**
336
+ * Raw structured context attached to the log entry.
337
+ */
338
+ context?: {
339
+ [key: string]: unknown;
340
+ };
341
+ /**
342
+ * Log level emitted by the SDK.
343
+ */
344
+ level?: 'debug' | 'info' | 'warn' | 'error';
345
+ /**
346
+ * Log message.
347
+ */
348
+ message?: string;
349
+ /**
350
+ * Time when the log entry was emitted.
351
+ */
352
+ timestamp?: string;
353
+ [k: string]: unknown;
354
+ }
355
+ /**
356
+ * Raw logs object emitted by the Voice SDK when logs are grouped under an entries
357
+ * field.
358
+ */
359
+ interface Entries {
360
+ /**
361
+ * Raw log entries when the SDK groups logs under an entries field.
362
+ */
363
+ entries?: Array<Entries.Entry>;
364
+ [k: string]: unknown;
365
+ }
366
+ namespace Entries {
367
+ /**
368
+ * A raw Voice SDK log entry. Additional SDK-specific fields may be present.
369
+ */
370
+ interface Entry {
371
+ /**
372
+ * Raw structured context attached to the log entry.
373
+ */
374
+ context?: {
375
+ [key: string]: unknown;
376
+ };
377
+ /**
378
+ * Log level emitted by the SDK.
379
+ */
380
+ level?: 'debug' | 'info' | 'warn' | 'error';
381
+ /**
382
+ * Log message.
383
+ */
384
+ message?: string;
385
+ /**
386
+ * Time when the log entry was emitted.
387
+ */
388
+ timestamp?: string;
389
+ [k: string]: unknown;
390
+ }
391
+ }
392
+ /**
393
+ * Raw stats object emitted by the Voice SDK.
394
+ */
395
+ interface UnionMember1 {
396
+ /**
397
+ * Raw audio stats such as inbound/outbound packet, byte, jitter, packet-loss,
398
+ * bitrate, and audio-level metrics.
399
+ */
400
+ audio?: {
401
+ [key: string]: unknown;
402
+ };
403
+ /**
404
+ * Raw connection stats such as round-trip time, packets, and bytes sent or
405
+ * received.
406
+ */
407
+ connection?: {
408
+ [key: string]: unknown;
409
+ };
410
+ /**
411
+ * Raw ICE candidate-pair information, including selected pair, local/remote
412
+ * candidates, state, and nomination data when provided by the SDK.
413
+ */
414
+ ice?: {
415
+ [key: string]: unknown;
416
+ };
417
+ /**
418
+ * Raw transport stats such as ICE state, DTLS state, SRTP cipher, TLS version, and
419
+ * selected-candidate-pair changes.
420
+ */
421
+ transport?: {
422
+ [key: string]: unknown;
423
+ };
424
+ [k: string]: unknown;
425
+ }
426
+ }
427
+ export interface VoiceSDKCallReportListParams extends DefaultFlatPaginationParams {
428
+ /**
429
+ * Set the order of the results by creation date. `asc` and `created_at` sort
430
+ * oldest reports first; `desc` and `-created_at` sort newest reports first. If not
431
+ * given, results are sorted by creation date in descending order.
432
+ */
433
+ sort?: 'asc' | 'desc' | 'created_at' | '-created_at';
434
+ }
435
+ export declare namespace VoiceSDKCallReports {
436
+ export { type VoiceSDKCallReportRetrieveResponse as VoiceSDKCallReportRetrieveResponse, type VoiceSDKCallReportListResponse as VoiceSDKCallReportListResponse, type VoiceSDKCallReportListResponsesDefaultFlatPagination as VoiceSDKCallReportListResponsesDefaultFlatPagination, type VoiceSDKCallReportListParams as VoiceSDKCallReportListParams, };
437
+ }
438
+ //# sourceMappingURL=voice-sdk-call-reports.d.mts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"voice-sdk-call-reports.d.mts","sourceRoot":"","sources":["../src/resources/voice-sdk-call-reports.ts"],"names":[],"mappings":"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"}