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