@onkernel/sdk 0.62.0 → 0.63.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 (103) hide show
  1. package/CHANGELOG.md +14 -0
  2. package/client.d.mts +2 -5
  3. package/client.d.mts.map +1 -1
  4. package/client.d.ts +2 -5
  5. package/client.d.ts.map +1 -1
  6. package/client.js +0 -3
  7. package/client.js.map +1 -1
  8. package/client.mjs +0 -3
  9. package/client.mjs.map +1 -1
  10. package/internal/qs/formats.d.mts +7 -0
  11. package/internal/qs/formats.d.mts.map +1 -0
  12. package/internal/qs/formats.d.ts +7 -0
  13. package/internal/qs/formats.d.ts.map +1 -0
  14. package/internal/qs/formats.js +13 -0
  15. package/internal/qs/formats.js.map +1 -0
  16. package/internal/qs/formats.mjs +9 -0
  17. package/internal/qs/formats.mjs.map +1 -0
  18. package/internal/qs/index.d.mts +10 -0
  19. package/internal/qs/index.d.mts.map +1 -0
  20. package/internal/qs/index.d.ts +10 -0
  21. package/internal/qs/index.d.ts.map +1 -0
  22. package/internal/qs/index.js +14 -0
  23. package/internal/qs/index.js.map +1 -0
  24. package/internal/qs/index.mjs +10 -0
  25. package/internal/qs/index.mjs.map +1 -0
  26. package/internal/qs/stringify.d.mts +3 -0
  27. package/internal/qs/stringify.d.mts.map +1 -0
  28. package/internal/qs/stringify.d.ts +3 -0
  29. package/internal/qs/stringify.d.ts.map +1 -0
  30. package/internal/qs/stringify.js +277 -0
  31. package/internal/qs/stringify.js.map +1 -0
  32. package/internal/qs/stringify.mjs +274 -0
  33. package/internal/qs/stringify.mjs.map +1 -0
  34. package/internal/qs/types.d.mts +57 -0
  35. package/internal/qs/types.d.mts.map +1 -0
  36. package/internal/qs/types.d.ts +57 -0
  37. package/internal/qs/types.d.ts.map +1 -0
  38. package/internal/qs/types.js +3 -0
  39. package/internal/qs/types.js.map +1 -0
  40. package/internal/qs/types.mjs +2 -0
  41. package/internal/qs/types.mjs.map +1 -0
  42. package/internal/qs/utils.d.mts +15 -0
  43. package/internal/qs/utils.d.mts.map +1 -0
  44. package/internal/qs/utils.d.ts +15 -0
  45. package/internal/qs/utils.d.ts.map +1 -0
  46. package/internal/qs/utils.js +230 -0
  47. package/internal/qs/utils.js.map +1 -0
  48. package/internal/qs/utils.mjs +217 -0
  49. package/internal/qs/utils.mjs.map +1 -0
  50. package/internal/utils/query.d.mts +0 -3
  51. package/internal/utils/query.d.mts.map +1 -1
  52. package/internal/utils/query.d.ts +0 -3
  53. package/internal/utils/query.d.ts.map +1 -1
  54. package/internal/utils/query.js +3 -16
  55. package/internal/utils/query.js.map +1 -1
  56. package/internal/utils/query.mjs +2 -16
  57. package/internal/utils/query.mjs.map +1 -1
  58. package/package.json +1 -1
  59. package/resources/browser-pools.d.mts +9 -0
  60. package/resources/browser-pools.d.mts.map +1 -1
  61. package/resources/browser-pools.d.ts +9 -0
  62. package/resources/browser-pools.d.ts.map +1 -1
  63. package/resources/browsers/browsers.d.mts +63 -2
  64. package/resources/browsers/browsers.d.mts.map +1 -1
  65. package/resources/browsers/browsers.d.ts +63 -2
  66. package/resources/browsers/browsers.d.ts.map +1 -1
  67. package/resources/browsers/browsers.js.map +1 -1
  68. package/resources/browsers/browsers.mjs.map +1 -1
  69. package/resources/browsers/index.d.mts +1 -1
  70. package/resources/browsers/index.d.mts.map +1 -1
  71. package/resources/browsers/index.d.ts +1 -1
  72. package/resources/browsers/index.d.ts.map +1 -1
  73. package/resources/browsers/index.js.map +1 -1
  74. package/resources/browsers/index.mjs.map +1 -1
  75. package/resources/index.d.mts +1 -1
  76. package/resources/index.d.mts.map +1 -1
  77. package/resources/index.d.ts +1 -1
  78. package/resources/index.d.ts.map +1 -1
  79. package/resources/index.js.map +1 -1
  80. package/resources/index.mjs.map +1 -1
  81. package/resources/invocations.d.mts +9 -0
  82. package/resources/invocations.d.mts.map +1 -1
  83. package/resources/invocations.d.ts +9 -0
  84. package/resources/invocations.d.ts.map +1 -1
  85. package/src/client.ts +2 -3
  86. package/src/internal/qs/LICENSE.md +13 -0
  87. package/src/internal/qs/README.md +3 -0
  88. package/src/internal/qs/formats.ts +10 -0
  89. package/src/internal/qs/index.ts +13 -0
  90. package/src/internal/qs/stringify.ts +385 -0
  91. package/src/internal/qs/types.ts +71 -0
  92. package/src/internal/qs/utils.ts +265 -0
  93. package/src/internal/utils/query.ts +2 -18
  94. package/src/resources/browser-pools.ts +11 -0
  95. package/src/resources/browsers/browsers.ts +71 -1
  96. package/src/resources/browsers/index.ts +1 -0
  97. package/src/resources/index.ts +1 -0
  98. package/src/resources/invocations.ts +11 -0
  99. package/src/version.ts +1 -1
  100. package/version.d.mts +1 -1
  101. package/version.d.ts +1 -1
  102. package/version.js +1 -1
  103. package/version.mjs +1 -1
@@ -0,0 +1,265 @@
1
+ import { RFC1738 } from './formats';
2
+ import type { DefaultEncoder, Format } from './types';
3
+ import { isArray } from '../utils/values';
4
+
5
+ export let has = (obj: object, key: PropertyKey): boolean => (
6
+ (has = (Object as any).hasOwn ?? Function.prototype.call.bind(Object.prototype.hasOwnProperty)),
7
+ has(obj, key)
8
+ );
9
+
10
+ const hex_table = /* @__PURE__ */ (() => {
11
+ const array = [];
12
+ for (let i = 0; i < 256; ++i) {
13
+ array.push('%' + ((i < 16 ? '0' : '') + i.toString(16)).toUpperCase());
14
+ }
15
+
16
+ return array;
17
+ })();
18
+
19
+ function compact_queue<T extends Record<string, any>>(queue: Array<{ obj: T; prop: string }>) {
20
+ while (queue.length > 1) {
21
+ const item = queue.pop();
22
+ if (!item) continue;
23
+
24
+ const obj = item.obj[item.prop];
25
+
26
+ if (isArray(obj)) {
27
+ const compacted: unknown[] = [];
28
+
29
+ for (let j = 0; j < obj.length; ++j) {
30
+ if (typeof obj[j] !== 'undefined') {
31
+ compacted.push(obj[j]);
32
+ }
33
+ }
34
+
35
+ // @ts-ignore
36
+ item.obj[item.prop] = compacted;
37
+ }
38
+ }
39
+ }
40
+
41
+ function array_to_object(source: any[], options: { plainObjects: boolean }) {
42
+ const obj = options && options.plainObjects ? Object.create(null) : {};
43
+ for (let i = 0; i < source.length; ++i) {
44
+ if (typeof source[i] !== 'undefined') {
45
+ obj[i] = source[i];
46
+ }
47
+ }
48
+
49
+ return obj;
50
+ }
51
+
52
+ export function merge(
53
+ target: any,
54
+ source: any,
55
+ options: { plainObjects?: boolean; allowPrototypes?: boolean } = {},
56
+ ) {
57
+ if (!source) {
58
+ return target;
59
+ }
60
+
61
+ if (typeof source !== 'object') {
62
+ if (isArray(target)) {
63
+ target.push(source);
64
+ } else if (target && typeof target === 'object') {
65
+ if ((options && (options.plainObjects || options.allowPrototypes)) || !has(Object.prototype, source)) {
66
+ target[source] = true;
67
+ }
68
+ } else {
69
+ return [target, source];
70
+ }
71
+
72
+ return target;
73
+ }
74
+
75
+ if (!target || typeof target !== 'object') {
76
+ return [target].concat(source);
77
+ }
78
+
79
+ let mergeTarget = target;
80
+ if (isArray(target) && !isArray(source)) {
81
+ // @ts-ignore
82
+ mergeTarget = array_to_object(target, options);
83
+ }
84
+
85
+ if (isArray(target) && isArray(source)) {
86
+ source.forEach(function (item, i) {
87
+ if (has(target, i)) {
88
+ const targetItem = target[i];
89
+ if (targetItem && typeof targetItem === 'object' && item && typeof item === 'object') {
90
+ target[i] = merge(targetItem, item, options);
91
+ } else {
92
+ target.push(item);
93
+ }
94
+ } else {
95
+ target[i] = item;
96
+ }
97
+ });
98
+ return target;
99
+ }
100
+
101
+ return Object.keys(source).reduce(function (acc, key) {
102
+ const value = source[key];
103
+
104
+ if (has(acc, key)) {
105
+ acc[key] = merge(acc[key], value, options);
106
+ } else {
107
+ acc[key] = value;
108
+ }
109
+ return acc;
110
+ }, mergeTarget);
111
+ }
112
+
113
+ export function assign_single_source(target: any, source: any) {
114
+ return Object.keys(source).reduce(function (acc, key) {
115
+ acc[key] = source[key];
116
+ return acc;
117
+ }, target);
118
+ }
119
+
120
+ export function decode(str: string, _: any, charset: string) {
121
+ const strWithoutPlus = str.replace(/\+/g, ' ');
122
+ if (charset === 'iso-8859-1') {
123
+ // unescape never throws, no try...catch needed:
124
+ return strWithoutPlus.replace(/%[0-9a-f]{2}/gi, unescape);
125
+ }
126
+ // utf-8
127
+ try {
128
+ return decodeURIComponent(strWithoutPlus);
129
+ } catch (e) {
130
+ return strWithoutPlus;
131
+ }
132
+ }
133
+
134
+ const limit = 1024;
135
+
136
+ export const encode: (
137
+ str: any,
138
+ defaultEncoder: DefaultEncoder,
139
+ charset: string,
140
+ type: 'key' | 'value',
141
+ format: Format,
142
+ ) => string = (str, _defaultEncoder, charset, _kind, format: Format) => {
143
+ // This code was originally written by Brian White for the io.js core querystring library.
144
+ // It has been adapted here for stricter adherence to RFC 3986
145
+ if (str.length === 0) {
146
+ return str;
147
+ }
148
+
149
+ let string = str;
150
+ if (typeof str === 'symbol') {
151
+ string = Symbol.prototype.toString.call(str);
152
+ } else if (typeof str !== 'string') {
153
+ string = String(str);
154
+ }
155
+
156
+ if (charset === 'iso-8859-1') {
157
+ return escape(string).replace(/%u[0-9a-f]{4}/gi, function ($0) {
158
+ return '%26%23' + parseInt($0.slice(2), 16) + '%3B';
159
+ });
160
+ }
161
+
162
+ let out = '';
163
+ for (let j = 0; j < string.length; j += limit) {
164
+ const segment = string.length >= limit ? string.slice(j, j + limit) : string;
165
+ const arr = [];
166
+
167
+ for (let i = 0; i < segment.length; ++i) {
168
+ let c = segment.charCodeAt(i);
169
+ if (
170
+ c === 0x2d || // -
171
+ c === 0x2e || // .
172
+ c === 0x5f || // _
173
+ c === 0x7e || // ~
174
+ (c >= 0x30 && c <= 0x39) || // 0-9
175
+ (c >= 0x41 && c <= 0x5a) || // a-z
176
+ (c >= 0x61 && c <= 0x7a) || // A-Z
177
+ (format === RFC1738 && (c === 0x28 || c === 0x29)) // ( )
178
+ ) {
179
+ arr[arr.length] = segment.charAt(i);
180
+ continue;
181
+ }
182
+
183
+ if (c < 0x80) {
184
+ arr[arr.length] = hex_table[c];
185
+ continue;
186
+ }
187
+
188
+ if (c < 0x800) {
189
+ arr[arr.length] = hex_table[0xc0 | (c >> 6)]! + hex_table[0x80 | (c & 0x3f)];
190
+ continue;
191
+ }
192
+
193
+ if (c < 0xd800 || c >= 0xe000) {
194
+ arr[arr.length] =
195
+ hex_table[0xe0 | (c >> 12)]! + hex_table[0x80 | ((c >> 6) & 0x3f)] + hex_table[0x80 | (c & 0x3f)];
196
+ continue;
197
+ }
198
+
199
+ i += 1;
200
+ c = 0x10000 + (((c & 0x3ff) << 10) | (segment.charCodeAt(i) & 0x3ff));
201
+
202
+ arr[arr.length] =
203
+ hex_table[0xf0 | (c >> 18)]! +
204
+ hex_table[0x80 | ((c >> 12) & 0x3f)] +
205
+ hex_table[0x80 | ((c >> 6) & 0x3f)] +
206
+ hex_table[0x80 | (c & 0x3f)];
207
+ }
208
+
209
+ out += arr.join('');
210
+ }
211
+
212
+ return out;
213
+ };
214
+
215
+ export function compact(value: any) {
216
+ const queue = [{ obj: { o: value }, prop: 'o' }];
217
+ const refs = [];
218
+
219
+ for (let i = 0; i < queue.length; ++i) {
220
+ const item = queue[i];
221
+ // @ts-ignore
222
+ const obj = item.obj[item.prop];
223
+
224
+ const keys = Object.keys(obj);
225
+ for (let j = 0; j < keys.length; ++j) {
226
+ const key = keys[j]!;
227
+ const val = obj[key];
228
+ if (typeof val === 'object' && val !== null && refs.indexOf(val) === -1) {
229
+ queue.push({ obj: obj, prop: key });
230
+ refs.push(val);
231
+ }
232
+ }
233
+ }
234
+
235
+ compact_queue(queue);
236
+
237
+ return value;
238
+ }
239
+
240
+ export function is_regexp(obj: any) {
241
+ return Object.prototype.toString.call(obj) === '[object RegExp]';
242
+ }
243
+
244
+ export function is_buffer(obj: any) {
245
+ if (!obj || typeof obj !== 'object') {
246
+ return false;
247
+ }
248
+
249
+ return !!(obj.constructor && obj.constructor.isBuffer && obj.constructor.isBuffer(obj));
250
+ }
251
+
252
+ export function combine(a: any, b: any) {
253
+ return [].concat(a, b);
254
+ }
255
+
256
+ export function maybe_map<T>(val: T[], fn: (v: T) => T) {
257
+ if (isArray(val)) {
258
+ const mapped = [];
259
+ for (let i = 0; i < val.length; i += 1) {
260
+ mapped.push(fn(val[i]!));
261
+ }
262
+ return mapped;
263
+ }
264
+ return fn(val);
265
+ }
@@ -1,23 +1,7 @@
1
1
  // File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2
2
 
3
- import { KernelError } from '../../core/error';
3
+ import * as qs from '../qs/stringify';
4
4
 
5
- /**
6
- * Basic re-implementation of `qs.stringify` for primitive types.
7
- */
8
5
  export function stringifyQuery(query: object | Record<string, unknown>) {
9
- return Object.entries(query)
10
- .filter(([_, value]) => typeof value !== 'undefined')
11
- .map(([key, value]) => {
12
- if (typeof value === 'string' || typeof value === 'number' || typeof value === 'boolean') {
13
- return `${encodeURIComponent(key)}=${encodeURIComponent(value)}`;
14
- }
15
- if (value === null) {
16
- return `${encodeURIComponent(key)}=`;
17
- }
18
- throw new KernelError(
19
- `Cannot stringify type ${typeof value}; Expected string, number, boolean, or null. If you need to pass nested query parameters, you can manually encode them, e.g. { query: { 'foo[key1]': value1, 'foo[key2]': value2 } }, and please open a GitHub issue requesting better support for your use case.`,
20
- );
21
- })
22
- .join('&');
6
+ return qs.stringify(query, { arrayFormat: 'comma' });
23
7
  }
@@ -355,6 +355,11 @@ export interface BrowserPoolAcquireResponse {
355
355
  */
356
356
  kiosk_mode?: boolean;
357
357
 
358
+ /**
359
+ * Human-readable name of the browser session, if one was set at creation.
360
+ */
361
+ name?: string;
362
+
358
363
  /**
359
364
  * Browser pool this session was acquired from, if any.
360
365
  */
@@ -379,6 +384,12 @@ export interface BrowserPoolAcquireResponse {
379
384
  */
380
385
  start_url?: string;
381
386
 
387
+ /**
388
+ * User-defined key-value tags that were set on this browser session, if any.
389
+ * Echoed back when present.
390
+ */
391
+ tags?: BrowsersAPI.Tags;
392
+
382
393
  /**
383
394
  * Active telemetry configuration for the session, if any.
384
395
  */
@@ -319,6 +319,11 @@ export interface Profile {
319
319
  updated_at?: string;
320
320
  }
321
321
 
322
+ /**
323
+ * User-defined key-value tags.
324
+ */
325
+ export type Tags = { [key: string]: string };
326
+
322
327
  export interface BrowserCreateResponse {
323
328
  /**
324
329
  * Websocket URL for Chrome DevTools Protocol connections to the browser session
@@ -389,6 +394,11 @@ export interface BrowserCreateResponse {
389
394
  */
390
395
  kiosk_mode?: boolean;
391
396
 
397
+ /**
398
+ * Human-readable name of the browser session, if one was set at creation.
399
+ */
400
+ name?: string;
401
+
392
402
  /**
393
403
  * Browser pool this session was acquired from, if any.
394
404
  */
@@ -413,6 +423,12 @@ export interface BrowserCreateResponse {
413
423
  */
414
424
  start_url?: string;
415
425
 
426
+ /**
427
+ * User-defined key-value tags that were set on this browser session, if any.
428
+ * Echoed back when present.
429
+ */
430
+ tags?: Tags;
431
+
416
432
  /**
417
433
  * Active telemetry configuration for the session, if any.
418
434
  */
@@ -510,6 +526,11 @@ export interface BrowserRetrieveResponse {
510
526
  */
511
527
  kiosk_mode?: boolean;
512
528
 
529
+ /**
530
+ * Human-readable name of the browser session, if one was set at creation.
531
+ */
532
+ name?: string;
533
+
513
534
  /**
514
535
  * Browser pool this session was acquired from, if any.
515
536
  */
@@ -534,6 +555,12 @@ export interface BrowserRetrieveResponse {
534
555
  */
535
556
  start_url?: string;
536
557
 
558
+ /**
559
+ * User-defined key-value tags that were set on this browser session, if any.
560
+ * Echoed back when present.
561
+ */
562
+ tags?: Tags;
563
+
537
564
  /**
538
565
  * Active telemetry configuration for the session, if any.
539
566
  */
@@ -631,6 +658,11 @@ export interface BrowserUpdateResponse {
631
658
  */
632
659
  kiosk_mode?: boolean;
633
660
 
661
+ /**
662
+ * Human-readable name of the browser session, if one was set at creation.
663
+ */
664
+ name?: string;
665
+
634
666
  /**
635
667
  * Browser pool this session was acquired from, if any.
636
668
  */
@@ -655,6 +687,12 @@ export interface BrowserUpdateResponse {
655
687
  */
656
688
  start_url?: string;
657
689
 
690
+ /**
691
+ * User-defined key-value tags that were set on this browser session, if any.
692
+ * Echoed back when present.
693
+ */
694
+ tags?: Tags;
695
+
658
696
  /**
659
697
  * Active telemetry configuration for the session, if any.
660
698
  */
@@ -752,6 +790,11 @@ export interface BrowserListResponse {
752
790
  */
753
791
  kiosk_mode?: boolean;
754
792
 
793
+ /**
794
+ * Human-readable name of the browser session, if one was set at creation.
795
+ */
796
+ name?: string;
797
+
755
798
  /**
756
799
  * Browser pool this session was acquired from, if any.
757
800
  */
@@ -776,6 +819,12 @@ export interface BrowserListResponse {
776
819
  */
777
820
  start_url?: string;
778
821
 
822
+ /**
823
+ * User-defined key-value tags that were set on this browser session, if any.
824
+ * Echoed back when present.
825
+ */
826
+ tags?: Tags;
827
+
779
828
  /**
780
829
  * Active telemetry configuration for the session, if any.
781
830
  */
@@ -865,6 +914,13 @@ export interface BrowserCreateParams {
865
914
  */
866
915
  kiosk_mode?: boolean;
867
916
 
917
+ /**
918
+ * Optional human-readable name for the browser session, used to find it later in
919
+ * the dashboard. Must be unique among active sessions within the project. Set at
920
+ * creation time only.
921
+ */
922
+ name?: string;
923
+
868
924
  /**
869
925
  * Profile selection for the browser session. Provide either id or name. If
870
926
  * specified, the matching profile will be loaded into the browser session.
@@ -891,6 +947,12 @@ export interface BrowserCreateParams {
891
947
  */
892
948
  stealth?: boolean;
893
949
 
950
+ /**
951
+ * Optional user-defined key-value tags for the browser session, used to find and
952
+ * group sessions later. Set at creation time only. Up to 50 pairs.
953
+ */
954
+ tags?: Tags;
955
+
894
956
  /**
895
957
  * Telemetry configuration for the browser session. Set enabled to true to start
896
958
  * capture using VM defaults, or provide browser category settings. If omitted,
@@ -1040,7 +1102,7 @@ export interface BrowserListParams extends OffsetPaginationParams {
1040
1102
  include_deleted?: boolean;
1041
1103
 
1042
1104
  /**
1043
- * Search browsers by session ID, profile ID, proxy ID, or pool name.
1105
+ * Search browsers by name, session ID, profile ID, proxy ID, or pool name.
1044
1106
  */
1045
1107
  query?: string;
1046
1108
 
@@ -1049,6 +1111,13 @@ export interface BrowserListParams extends OffsetPaginationParams {
1049
1111
  * "deleted" returns only soft-deleted sessions, "all" returns both.
1050
1112
  */
1051
1113
  status?: 'active' | 'deleted' | 'all';
1114
+
1115
+ /**
1116
+ * Filter sessions by tag key-value pairs using deepObject style, e.g.
1117
+ * ?tags[team]=backend&tags[env]=staging. Multiple pairs are ANDed: a session must
1118
+ * match every supplied pair exactly.
1119
+ */
1120
+ tags?: { [key: string]: string };
1052
1121
  }
1053
1122
 
1054
1123
  export interface BrowserCurlParams {
@@ -1118,6 +1187,7 @@ export declare namespace Browsers {
1118
1187
  type BrowserPoolRef as BrowserPoolRef,
1119
1188
  type BrowserUsage as BrowserUsage,
1120
1189
  type Profile as Profile,
1190
+ type Tags as Tags,
1121
1191
  type BrowserCreateResponse as BrowserCreateResponse,
1122
1192
  type BrowserRetrieveResponse as BrowserRetrieveResponse,
1123
1193
  type BrowserUpdateResponse as BrowserUpdateResponse,
@@ -5,6 +5,7 @@ export {
5
5
  type BrowserPoolRef,
6
6
  type BrowserUsage,
7
7
  type Profile,
8
+ type Tags,
8
9
  type BrowserCreateResponse,
9
10
  type BrowserRetrieveResponse,
10
11
  type BrowserUpdateResponse,
@@ -34,6 +34,7 @@ export {
34
34
  type BrowserPoolRef,
35
35
  type BrowserUsage,
36
36
  type Profile,
37
+ type Tags,
37
38
  type BrowserCreateResponse,
38
39
  type BrowserRetrieveResponse,
39
40
  type BrowserUpdateResponse,
@@ -488,6 +488,11 @@ export namespace InvocationListBrowsersResponse {
488
488
  */
489
489
  kiosk_mode?: boolean;
490
490
 
491
+ /**
492
+ * Human-readable name of the browser session, if one was set at creation.
493
+ */
494
+ name?: string;
495
+
491
496
  /**
492
497
  * Browser pool this session was acquired from, if any.
493
498
  */
@@ -512,6 +517,12 @@ export namespace InvocationListBrowsersResponse {
512
517
  */
513
518
  start_url?: string;
514
519
 
520
+ /**
521
+ * User-defined key-value tags that were set on this browser session, if any.
522
+ * Echoed back when present.
523
+ */
524
+ tags?: BrowsersAPI.Tags;
525
+
515
526
  /**
516
527
  * Active telemetry configuration for the session, if any.
517
528
  */
package/src/version.ts CHANGED
@@ -1 +1 @@
1
- export const VERSION = '0.62.0'; // x-release-please-version
1
+ export const VERSION = '0.63.0'; // x-release-please-version
package/version.d.mts CHANGED
@@ -1,2 +1,2 @@
1
- export declare const VERSION = "0.62.0";
1
+ export declare const VERSION = "0.63.0";
2
2
  //# sourceMappingURL=version.d.mts.map
package/version.d.ts CHANGED
@@ -1,2 +1,2 @@
1
- export declare const VERSION = "0.62.0";
1
+ export declare const VERSION = "0.63.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 = '0.62.0'; // x-release-please-version
4
+ exports.VERSION = '0.63.0'; // x-release-please-version
5
5
  //# sourceMappingURL=version.js.map
package/version.mjs CHANGED
@@ -1,2 +1,2 @@
1
- export const VERSION = '0.62.0'; // x-release-please-version
1
+ export const VERSION = '0.63.0'; // x-release-please-version
2
2
  //# sourceMappingURL=version.mjs.map