@onkernel/sdk 0.61.0 → 0.62.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 +11 -0
- package/client.d.mts +8 -8
- package/client.d.mts.map +1 -1
- package/client.d.ts +8 -8
- package/client.d.ts.map +1 -1
- package/client.js.map +1 -1
- package/client.mjs.map +1 -1
- package/package.json +1 -1
- package/resources/browser-pools.d.mts +10 -4
- package/resources/browser-pools.d.mts.map +1 -1
- package/resources/browser-pools.d.ts +10 -4
- package/resources/browser-pools.d.ts.map +1 -1
- package/resources/browser-pools.js +7 -3
- package/resources/browser-pools.js.map +1 -1
- package/resources/browser-pools.mjs +7 -3
- package/resources/browser-pools.mjs.map +1 -1
- package/resources/credential-providers.d.mts +10 -5
- package/resources/credential-providers.d.mts.map +1 -1
- package/resources/credential-providers.d.ts +10 -5
- package/resources/credential-providers.d.ts.map +1 -1
- package/resources/credential-providers.js +10 -4
- package/resources/credential-providers.js.map +1 -1
- package/resources/credential-providers.mjs +10 -4
- package/resources/credential-providers.mjs.map +1 -1
- package/resources/extensions.d.mts +35 -31
- package/resources/extensions.d.mts.map +1 -1
- package/resources/extensions.d.ts +35 -31
- package/resources/extensions.d.ts.map +1 -1
- package/resources/extensions.js +10 -3
- package/resources/extensions.js.map +1 -1
- package/resources/extensions.mjs +10 -3
- package/resources/extensions.mjs.map +1 -1
- package/resources/index.d.mts +4 -4
- package/resources/index.d.mts.map +1 -1
- package/resources/index.d.ts +4 -4
- package/resources/index.d.ts.map +1 -1
- package/resources/index.js.map +1 -1
- package/resources/index.mjs.map +1 -1
- package/resources/proxies.d.mts +111 -110
- package/resources/proxies.d.mts.map +1 -1
- package/resources/proxies.d.ts +111 -110
- package/resources/proxies.d.ts.map +1 -1
- package/resources/proxies.js +3 -2
- package/resources/proxies.js.map +1 -1
- package/resources/proxies.mjs +3 -2
- package/resources/proxies.mjs.map +1 -1
- package/src/client.ts +16 -4
- package/src/resources/browser-pools.ts +16 -6
- package/src/resources/credential-providers.ts +19 -7
- package/src/resources/extensions.ts +41 -29
- package/src/resources/index.ts +8 -2
- package/src/resources/proxies.ts +120 -114
- 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
|
@@ -2,6 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
import { APIResource } from '../core/resource';
|
|
4
4
|
import { APIPromise } from '../core/api-promise';
|
|
5
|
+
import { OffsetPagination, type OffsetPaginationParams, PagePromise } from '../core/pagination';
|
|
5
6
|
import { type Uploadable } from '../core/uploads';
|
|
6
7
|
import { buildHeaders } from '../internal/headers';
|
|
7
8
|
import { RequestOptions } from '../internal/request-options';
|
|
@@ -17,11 +18,20 @@ export class Extensions extends APIResource {
|
|
|
17
18
|
*
|
|
18
19
|
* @example
|
|
19
20
|
* ```ts
|
|
20
|
-
*
|
|
21
|
+
* // Automatically fetches more pages as needed.
|
|
22
|
+
* for await (const extensionListResponse of client.extensions.list()) {
|
|
23
|
+
* // ...
|
|
24
|
+
* }
|
|
21
25
|
* ```
|
|
22
26
|
*/
|
|
23
|
-
list(
|
|
24
|
-
|
|
27
|
+
list(
|
|
28
|
+
query: ExtensionListParams | null | undefined = {},
|
|
29
|
+
options?: RequestOptions,
|
|
30
|
+
): PagePromise<ExtensionListResponsesOffsetPagination, ExtensionListResponse> {
|
|
31
|
+
return this._client.getAPIList('/extensions', OffsetPagination<ExtensionListResponse>, {
|
|
32
|
+
query,
|
|
33
|
+
...options,
|
|
34
|
+
});
|
|
25
35
|
}
|
|
26
36
|
|
|
27
37
|
/**
|
|
@@ -103,39 +113,37 @@ export class Extensions extends APIResource {
|
|
|
103
113
|
}
|
|
104
114
|
}
|
|
105
115
|
|
|
106
|
-
export type
|
|
116
|
+
export type ExtensionListResponsesOffsetPagination = OffsetPagination<ExtensionListResponse>;
|
|
107
117
|
|
|
108
|
-
|
|
118
|
+
/**
|
|
119
|
+
* A browser extension uploaded to Kernel.
|
|
120
|
+
*/
|
|
121
|
+
export interface ExtensionListResponse {
|
|
109
122
|
/**
|
|
110
|
-
*
|
|
123
|
+
* Unique identifier for the extension
|
|
111
124
|
*/
|
|
112
|
-
|
|
113
|
-
/**
|
|
114
|
-
* Unique identifier for the extension
|
|
115
|
-
*/
|
|
116
|
-
id: string;
|
|
125
|
+
id: string;
|
|
117
126
|
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
127
|
+
/**
|
|
128
|
+
* Timestamp when the extension was created
|
|
129
|
+
*/
|
|
130
|
+
created_at: string;
|
|
122
131
|
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
132
|
+
/**
|
|
133
|
+
* Size of the extension archive in bytes
|
|
134
|
+
*/
|
|
135
|
+
size_bytes: number;
|
|
127
136
|
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
137
|
+
/**
|
|
138
|
+
* Timestamp when the extension was last used
|
|
139
|
+
*/
|
|
140
|
+
last_used_at?: string | null;
|
|
132
141
|
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
}
|
|
142
|
+
/**
|
|
143
|
+
* Optional, easier-to-reference name for the extension. Must be unique within the
|
|
144
|
+
* project.
|
|
145
|
+
*/
|
|
146
|
+
name?: string | null;
|
|
139
147
|
}
|
|
140
148
|
|
|
141
149
|
/**
|
|
@@ -169,6 +177,8 @@ export interface ExtensionUploadResponse {
|
|
|
169
177
|
name?: string | null;
|
|
170
178
|
}
|
|
171
179
|
|
|
180
|
+
export interface ExtensionListParams extends OffsetPaginationParams {}
|
|
181
|
+
|
|
172
182
|
export interface ExtensionDownloadFromChromeStoreParams {
|
|
173
183
|
/**
|
|
174
184
|
* Chrome Web Store URL for the extension.
|
|
@@ -197,6 +207,8 @@ export declare namespace Extensions {
|
|
|
197
207
|
export {
|
|
198
208
|
type ExtensionListResponse as ExtensionListResponse,
|
|
199
209
|
type ExtensionUploadResponse as ExtensionUploadResponse,
|
|
210
|
+
type ExtensionListResponsesOffsetPagination as ExtensionListResponsesOffsetPagination,
|
|
211
|
+
type ExtensionListParams as ExtensionListParams,
|
|
200
212
|
type ExtensionDownloadFromChromeStoreParams as ExtensionDownloadFromChromeStoreParams,
|
|
201
213
|
type ExtensionUploadParams as ExtensionUploadParams,
|
|
202
214
|
};
|
package/src/resources/index.ts
CHANGED
|
@@ -20,13 +20,14 @@ export { Auth } from './auth/auth';
|
|
|
20
20
|
export {
|
|
21
21
|
BrowserPools,
|
|
22
22
|
type BrowserPool,
|
|
23
|
-
type BrowserPoolListResponse,
|
|
24
23
|
type BrowserPoolAcquireResponse,
|
|
25
24
|
type BrowserPoolCreateParams,
|
|
26
25
|
type BrowserPoolUpdateParams,
|
|
26
|
+
type BrowserPoolListParams,
|
|
27
27
|
type BrowserPoolDeleteParams,
|
|
28
28
|
type BrowserPoolAcquireParams,
|
|
29
29
|
type BrowserPoolReleaseParams,
|
|
30
|
+
type BrowserPoolsOffsetPagination,
|
|
30
31
|
} from './browser-pools';
|
|
31
32
|
export {
|
|
32
33
|
Browsers,
|
|
@@ -54,10 +55,11 @@ export {
|
|
|
54
55
|
type CredentialProviderItem,
|
|
55
56
|
type CredentialProviderTestResult,
|
|
56
57
|
type UpdateCredentialProviderRequest,
|
|
57
|
-
type CredentialProviderListResponse,
|
|
58
58
|
type CredentialProviderListItemsResponse,
|
|
59
59
|
type CredentialProviderCreateParams,
|
|
60
60
|
type CredentialProviderUpdateParams,
|
|
61
|
+
type CredentialProviderListParams,
|
|
62
|
+
type CredentialProvidersOffsetPagination,
|
|
61
63
|
} from './credential-providers';
|
|
62
64
|
export {
|
|
63
65
|
Credentials,
|
|
@@ -86,8 +88,10 @@ export {
|
|
|
86
88
|
Extensions,
|
|
87
89
|
type ExtensionListResponse,
|
|
88
90
|
type ExtensionUploadResponse,
|
|
91
|
+
type ExtensionListParams,
|
|
89
92
|
type ExtensionDownloadFromChromeStoreParams,
|
|
90
93
|
type ExtensionUploadParams,
|
|
94
|
+
type ExtensionListResponsesOffsetPagination,
|
|
91
95
|
} from './extensions';
|
|
92
96
|
export {
|
|
93
97
|
Invocations,
|
|
@@ -122,5 +126,7 @@ export {
|
|
|
122
126
|
type ProxyListResponse,
|
|
123
127
|
type ProxyCheckResponse,
|
|
124
128
|
type ProxyCreateParams,
|
|
129
|
+
type ProxyListParams,
|
|
125
130
|
type ProxyCheckParams,
|
|
131
|
+
type ProxyListResponsesOffsetPagination,
|
|
126
132
|
} from './proxies';
|
package/src/resources/proxies.ts
CHANGED
|
@@ -2,6 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
import { APIResource } from '../core/resource';
|
|
4
4
|
import { APIPromise } from '../core/api-promise';
|
|
5
|
+
import { OffsetPagination, type OffsetPaginationParams, PagePromise } from '../core/pagination';
|
|
5
6
|
import { buildHeaders } from '../internal/headers';
|
|
6
7
|
import { RequestOptions } from '../internal/request-options';
|
|
7
8
|
import { path } from '../internal/utils/path';
|
|
@@ -27,8 +28,11 @@ export class Proxies extends APIResource {
|
|
|
27
28
|
/**
|
|
28
29
|
* List proxies owned by the caller's organization.
|
|
29
30
|
*/
|
|
30
|
-
list(
|
|
31
|
-
|
|
31
|
+
list(
|
|
32
|
+
query: ProxyListParams | null | undefined = {},
|
|
33
|
+
options?: RequestOptions,
|
|
34
|
+
): PagePromise<ProxyListResponsesOffsetPagination, ProxyListResponse> {
|
|
35
|
+
return this._client.getAPIList('/proxies', OffsetPagination<ProxyListResponse>, { query, ...options });
|
|
32
36
|
}
|
|
33
37
|
|
|
34
38
|
/**
|
|
@@ -58,6 +62,8 @@ export class Proxies extends APIResource {
|
|
|
58
62
|
}
|
|
59
63
|
}
|
|
60
64
|
|
|
65
|
+
export type ProxyListResponsesOffsetPagination = OffsetPagination<ProxyListResponse>;
|
|
66
|
+
|
|
61
67
|
/**
|
|
62
68
|
* Configuration for routing traffic through a proxy.
|
|
63
69
|
*/
|
|
@@ -370,163 +376,159 @@ export namespace ProxyRetrieveResponse {
|
|
|
370
376
|
}
|
|
371
377
|
}
|
|
372
378
|
|
|
373
|
-
|
|
379
|
+
/**
|
|
380
|
+
* Configuration for routing traffic through a proxy.
|
|
381
|
+
*/
|
|
382
|
+
export interface ProxyListResponse {
|
|
383
|
+
/**
|
|
384
|
+
* Proxy type to use. In terms of quality for avoiding bot-detection, from best to
|
|
385
|
+
* worst: `mobile` > `residential` > `isp` > `datacenter`.
|
|
386
|
+
*/
|
|
387
|
+
type: 'datacenter' | 'isp' | 'residential' | 'mobile' | 'custom';
|
|
388
|
+
|
|
389
|
+
id?: string;
|
|
390
|
+
|
|
391
|
+
/**
|
|
392
|
+
* Hostnames that should bypass the parent proxy and connect directly.
|
|
393
|
+
*/
|
|
394
|
+
bypass_hosts?: Array<string>;
|
|
395
|
+
|
|
396
|
+
/**
|
|
397
|
+
* Configuration specific to the selected proxy `type`.
|
|
398
|
+
*/
|
|
399
|
+
config?:
|
|
400
|
+
| ProxyListResponse.DatacenterProxyConfig
|
|
401
|
+
| ProxyListResponse.IspProxyConfig
|
|
402
|
+
| ProxyListResponse.ResidentialProxyConfig
|
|
403
|
+
| ProxyListResponse.MobileProxyConfig
|
|
404
|
+
| ProxyListResponse.CustomProxyConfig;
|
|
405
|
+
|
|
406
|
+
/**
|
|
407
|
+
* IP address that the proxy uses when making requests.
|
|
408
|
+
*/
|
|
409
|
+
ip_address?: string;
|
|
410
|
+
|
|
411
|
+
/**
|
|
412
|
+
* Timestamp of the last health check performed on this proxy.
|
|
413
|
+
*/
|
|
414
|
+
last_checked?: string;
|
|
415
|
+
|
|
416
|
+
/**
|
|
417
|
+
* Readable name of the proxy.
|
|
418
|
+
*/
|
|
419
|
+
name?: string;
|
|
420
|
+
|
|
421
|
+
/**
|
|
422
|
+
* Protocol to use for the proxy connection.
|
|
423
|
+
*/
|
|
424
|
+
protocol?: 'http' | 'https';
|
|
425
|
+
|
|
426
|
+
/**
|
|
427
|
+
* Current health status of the proxy.
|
|
428
|
+
*/
|
|
429
|
+
status?: 'available' | 'unavailable';
|
|
430
|
+
}
|
|
374
431
|
|
|
375
432
|
export namespace ProxyListResponse {
|
|
376
433
|
/**
|
|
377
|
-
* Configuration for
|
|
434
|
+
* Configuration for a datacenter proxy.
|
|
378
435
|
*/
|
|
379
|
-
export interface
|
|
436
|
+
export interface DatacenterProxyConfig {
|
|
380
437
|
/**
|
|
381
|
-
*
|
|
382
|
-
* worst: `mobile` > `residential` > `isp` > `datacenter`.
|
|
438
|
+
* ISO 3166 country code. Defaults to US if not provided.
|
|
383
439
|
*/
|
|
384
|
-
|
|
385
|
-
|
|
386
|
-
id?: string;
|
|
440
|
+
country?: string;
|
|
441
|
+
}
|
|
387
442
|
|
|
443
|
+
/**
|
|
444
|
+
* Configuration for an ISP proxy.
|
|
445
|
+
*/
|
|
446
|
+
export interface IspProxyConfig {
|
|
388
447
|
/**
|
|
389
|
-
*
|
|
448
|
+
* ISO 3166 country code. Defaults to US if not provided.
|
|
390
449
|
*/
|
|
391
|
-
|
|
450
|
+
country?: string;
|
|
451
|
+
}
|
|
392
452
|
|
|
453
|
+
/**
|
|
454
|
+
* Configuration for residential proxies.
|
|
455
|
+
*/
|
|
456
|
+
export interface ResidentialProxyConfig {
|
|
393
457
|
/**
|
|
394
|
-
*
|
|
458
|
+
* Autonomous system number. See https://bgp.potaroo.net/cidr/autnums.html
|
|
395
459
|
*/
|
|
396
|
-
|
|
397
|
-
| ProxyListResponseItem.DatacenterProxyConfig
|
|
398
|
-
| ProxyListResponseItem.IspProxyConfig
|
|
399
|
-
| ProxyListResponseItem.ResidentialProxyConfig
|
|
400
|
-
| ProxyListResponseItem.MobileProxyConfig
|
|
401
|
-
| ProxyListResponseItem.CustomProxyConfig;
|
|
460
|
+
asn?: string;
|
|
402
461
|
|
|
403
462
|
/**
|
|
404
|
-
*
|
|
463
|
+
* City name (no spaces, e.g. `sanfrancisco`). If provided, `country` must also be
|
|
464
|
+
* provided.
|
|
405
465
|
*/
|
|
406
|
-
|
|
466
|
+
city?: string;
|
|
407
467
|
|
|
408
468
|
/**
|
|
409
|
-
*
|
|
469
|
+
* ISO 3166 country code.
|
|
410
470
|
*/
|
|
411
|
-
|
|
471
|
+
country?: string;
|
|
412
472
|
|
|
413
473
|
/**
|
|
414
|
-
*
|
|
474
|
+
* @deprecated Operating system of the residential device.
|
|
415
475
|
*/
|
|
416
|
-
|
|
476
|
+
os?: 'windows' | 'macos' | 'android';
|
|
417
477
|
|
|
418
478
|
/**
|
|
419
|
-
*
|
|
479
|
+
* Two-letter state code.
|
|
420
480
|
*/
|
|
421
|
-
|
|
481
|
+
state?: string;
|
|
422
482
|
|
|
423
483
|
/**
|
|
424
|
-
*
|
|
484
|
+
* US ZIP code.
|
|
425
485
|
*/
|
|
426
|
-
|
|
486
|
+
zip?: string;
|
|
427
487
|
}
|
|
428
488
|
|
|
429
|
-
|
|
489
|
+
/**
|
|
490
|
+
* Configuration for mobile proxies.
|
|
491
|
+
*/
|
|
492
|
+
export interface MobileProxyConfig {
|
|
430
493
|
/**
|
|
431
|
-
*
|
|
494
|
+
* Provider city alias. Mobile carrier routing can make observed geo vary.
|
|
432
495
|
*/
|
|
433
|
-
|
|
434
|
-
/**
|
|
435
|
-
* ISO 3166 country code. Defaults to US if not provided.
|
|
436
|
-
*/
|
|
437
|
-
country?: string;
|
|
438
|
-
}
|
|
496
|
+
city?: string;
|
|
439
497
|
|
|
440
498
|
/**
|
|
441
|
-
*
|
|
499
|
+
* ISO 3166 country code
|
|
442
500
|
*/
|
|
443
|
-
|
|
444
|
-
/**
|
|
445
|
-
* ISO 3166 country code. Defaults to US if not provided.
|
|
446
|
-
*/
|
|
447
|
-
country?: string;
|
|
448
|
-
}
|
|
501
|
+
country?: string;
|
|
449
502
|
|
|
450
503
|
/**
|
|
451
|
-
*
|
|
504
|
+
* US-only state code. Mobile carrier routing can make observed geo vary.
|
|
452
505
|
*/
|
|
453
|
-
|
|
454
|
-
|
|
455
|
-
* Autonomous system number. See https://bgp.potaroo.net/cidr/autnums.html
|
|
456
|
-
*/
|
|
457
|
-
asn?: string;
|
|
458
|
-
|
|
459
|
-
/**
|
|
460
|
-
* City name (no spaces, e.g. `sanfrancisco`). If provided, `country` must also be
|
|
461
|
-
* provided.
|
|
462
|
-
*/
|
|
463
|
-
city?: string;
|
|
464
|
-
|
|
465
|
-
/**
|
|
466
|
-
* ISO 3166 country code.
|
|
467
|
-
*/
|
|
468
|
-
country?: string;
|
|
469
|
-
|
|
470
|
-
/**
|
|
471
|
-
* @deprecated Operating system of the residential device.
|
|
472
|
-
*/
|
|
473
|
-
os?: 'windows' | 'macos' | 'android';
|
|
474
|
-
|
|
475
|
-
/**
|
|
476
|
-
* Two-letter state code.
|
|
477
|
-
*/
|
|
478
|
-
state?: string;
|
|
479
|
-
|
|
480
|
-
/**
|
|
481
|
-
* US ZIP code.
|
|
482
|
-
*/
|
|
483
|
-
zip?: string;
|
|
484
|
-
}
|
|
506
|
+
state?: string;
|
|
507
|
+
}
|
|
485
508
|
|
|
509
|
+
/**
|
|
510
|
+
* Configuration for a custom proxy (e.g., private proxy server).
|
|
511
|
+
*/
|
|
512
|
+
export interface CustomProxyConfig {
|
|
486
513
|
/**
|
|
487
|
-
*
|
|
514
|
+
* Proxy host address or IP.
|
|
488
515
|
*/
|
|
489
|
-
|
|
490
|
-
/**
|
|
491
|
-
* Provider city alias. Mobile carrier routing can make observed geo vary.
|
|
492
|
-
*/
|
|
493
|
-
city?: string;
|
|
494
|
-
|
|
495
|
-
/**
|
|
496
|
-
* ISO 3166 country code
|
|
497
|
-
*/
|
|
498
|
-
country?: string;
|
|
499
|
-
|
|
500
|
-
/**
|
|
501
|
-
* US-only state code. Mobile carrier routing can make observed geo vary.
|
|
502
|
-
*/
|
|
503
|
-
state?: string;
|
|
504
|
-
}
|
|
516
|
+
host: string;
|
|
505
517
|
|
|
506
518
|
/**
|
|
507
|
-
*
|
|
519
|
+
* Proxy port.
|
|
508
520
|
*/
|
|
509
|
-
|
|
510
|
-
/**
|
|
511
|
-
* Proxy host address or IP.
|
|
512
|
-
*/
|
|
513
|
-
host: string;
|
|
514
|
-
|
|
515
|
-
/**
|
|
516
|
-
* Proxy port.
|
|
517
|
-
*/
|
|
518
|
-
port: number;
|
|
521
|
+
port: number;
|
|
519
522
|
|
|
520
|
-
|
|
521
|
-
|
|
522
|
-
|
|
523
|
-
|
|
523
|
+
/**
|
|
524
|
+
* Whether the proxy has a password.
|
|
525
|
+
*/
|
|
526
|
+
has_password?: boolean;
|
|
524
527
|
|
|
525
|
-
|
|
526
|
-
|
|
527
|
-
|
|
528
|
-
|
|
529
|
-
}
|
|
528
|
+
/**
|
|
529
|
+
* Username for proxy authentication.
|
|
530
|
+
*/
|
|
531
|
+
username?: string;
|
|
530
532
|
}
|
|
531
533
|
}
|
|
532
534
|
|
|
@@ -822,6 +824,8 @@ export namespace ProxyCreateParams {
|
|
|
822
824
|
}
|
|
823
825
|
}
|
|
824
826
|
|
|
827
|
+
export interface ProxyListParams extends OffsetPaginationParams {}
|
|
828
|
+
|
|
825
829
|
export interface ProxyCheckParams {
|
|
826
830
|
/**
|
|
827
831
|
* An optional URL to test reachability against. If provided, the proxy check will
|
|
@@ -846,7 +850,9 @@ export declare namespace Proxies {
|
|
|
846
850
|
type ProxyRetrieveResponse as ProxyRetrieveResponse,
|
|
847
851
|
type ProxyListResponse as ProxyListResponse,
|
|
848
852
|
type ProxyCheckResponse as ProxyCheckResponse,
|
|
853
|
+
type ProxyListResponsesOffsetPagination as ProxyListResponsesOffsetPagination,
|
|
849
854
|
type ProxyCreateParams as ProxyCreateParams,
|
|
855
|
+
type ProxyListParams as ProxyListParams,
|
|
850
856
|
type ProxyCheckParams as ProxyCheckParams,
|
|
851
857
|
};
|
|
852
858
|
}
|
package/src/version.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const VERSION = '0.
|
|
1
|
+
export const VERSION = '0.62.0'; // x-release-please-version
|
package/version.d.mts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const VERSION = "0.
|
|
1
|
+
export declare const VERSION = "0.62.0";
|
|
2
2
|
//# sourceMappingURL=version.d.mts.map
|
package/version.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const VERSION = "0.
|
|
1
|
+
export declare const VERSION = "0.62.0";
|
|
2
2
|
//# sourceMappingURL=version.d.ts.map
|
package/version.js
CHANGED
package/version.mjs
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export const VERSION = '0.
|
|
1
|
+
export const VERSION = '0.62.0'; // x-release-please-version
|
|
2
2
|
//# sourceMappingURL=version.mjs.map
|