@onkernel/sdk 0.57.0 → 0.59.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 +25 -0
- package/client.d.mts +6 -0
- package/client.d.mts.map +1 -1
- package/client.d.ts +6 -0
- package/client.d.ts.map +1 -1
- package/client.js +6 -0
- package/client.js.map +1 -1
- package/client.mjs +6 -0
- package/client.mjs.map +1 -1
- package/package.json +1 -1
- package/resources/api-keys.d.mts +146 -0
- package/resources/api-keys.d.mts.map +1 -0
- package/resources/api-keys.d.ts +146 -0
- package/resources/api-keys.d.ts.map +1 -0
- package/resources/api-keys.js +81 -0
- package/resources/api-keys.js.map +1 -0
- package/resources/api-keys.mjs +77 -0
- package/resources/api-keys.mjs.map +1 -0
- package/resources/browsers/browsers.d.mts +50 -4
- package/resources/browsers/browsers.d.mts.map +1 -1
- package/resources/browsers/browsers.d.ts +50 -4
- package/resources/browsers/browsers.d.ts.map +1 -1
- package/resources/browsers/browsers.js.map +1 -1
- package/resources/browsers/browsers.mjs +2 -2
- package/resources/browsers/browsers.mjs.map +1 -1
- package/resources/browsers/computer.d.mts +3 -0
- package/resources/browsers/computer.d.mts.map +1 -1
- package/resources/browsers/computer.d.ts +3 -0
- package/resources/browsers/computer.d.ts.map +1 -1
- package/resources/browsers/computer.js +3 -0
- package/resources/browsers/computer.js.map +1 -1
- package/resources/browsers/computer.mjs +3 -0
- package/resources/browsers/computer.mjs.map +1 -1
- package/resources/browsers/index.d.mts +1 -1
- package/resources/browsers/index.d.mts.map +1 -1
- package/resources/browsers/index.d.ts +1 -1
- package/resources/browsers/index.d.ts.map +1 -1
- package/resources/browsers/index.js.map +1 -1
- package/resources/browsers/index.mjs.map +1 -1
- package/resources/browsers/telemetry.d.mts +23 -18
- package/resources/browsers/telemetry.d.mts.map +1 -1
- package/resources/browsers/telemetry.d.ts +23 -18
- package/resources/browsers/telemetry.d.ts.map +1 -1
- package/resources/browsers/telemetry.js +1 -1
- package/resources/browsers/telemetry.js.map +1 -1
- package/resources/browsers/telemetry.mjs +1 -1
- package/resources/browsers/telemetry.mjs.map +1 -1
- package/resources/index.d.mts +1 -0
- package/resources/index.d.mts.map +1 -1
- package/resources/index.d.ts +1 -0
- package/resources/index.d.ts.map +1 -1
- package/resources/index.js +3 -1
- package/resources/index.js.map +1 -1
- package/resources/index.mjs +1 -0
- package/resources/index.mjs.map +1 -1
- package/resources/proxies.d.mts +10 -75
- package/resources/proxies.d.mts.map +1 -1
- package/resources/proxies.d.ts +10 -75
- package/resources/proxies.d.ts.map +1 -1
- package/src/client.ts +24 -0
- package/src/resources/api-keys.ts +195 -0
- package/src/resources/browsers/browsers.ts +55 -7
- package/src/resources/browsers/computer.ts +3 -0
- package/src/resources/browsers/index.ts +0 -1
- package/src/resources/browsers/telemetry.ts +45 -21
- package/src/resources/index.ts +9 -0
- package/src/resources/proxies.ts +10 -380
- 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
|
@@ -35,7 +35,7 @@ export class Telemetry extends APIResource {
|
|
|
35
35
|
options?: RequestOptions,
|
|
36
36
|
): APIPromise<Stream<TelemetryStreamResponse>> {
|
|
37
37
|
const { 'Last-Event-ID': lastEventID } = params ?? {};
|
|
38
|
-
return this._client.get(path`/browsers/${id}/telemetry`, {
|
|
38
|
+
return this._client.get(path`/browsers/${id}/telemetry/stream`, {
|
|
39
39
|
...options,
|
|
40
40
|
headers: buildHeaders([
|
|
41
41
|
{
|
|
@@ -108,6 +108,8 @@ export namespace BrowserCallStack {
|
|
|
108
108
|
* source_url, and stack_trace. Fields not applicable to the source are absent.
|
|
109
109
|
*/
|
|
110
110
|
export interface BrowserConsoleErrorEvent {
|
|
111
|
+
category: 'console';
|
|
112
|
+
|
|
111
113
|
/**
|
|
112
114
|
* Provenance metadata identifying which producer emitted the event.
|
|
113
115
|
*/
|
|
@@ -188,6 +190,8 @@ export namespace BrowserConsoleErrorEvent {
|
|
|
188
190
|
* A browser console log event (console.log, console.info, console.warn, etc.).
|
|
189
191
|
*/
|
|
190
192
|
export interface BrowserConsoleLogEvent {
|
|
193
|
+
category: 'console';
|
|
194
|
+
|
|
191
195
|
/**
|
|
192
196
|
* Provenance metadata identifying which producer emitted the event.
|
|
193
197
|
*/
|
|
@@ -323,6 +327,8 @@ export type BrowserHTTPHeaders = { [key: string]: unknown };
|
|
|
323
327
|
* A browser user click event captured via injected page script.
|
|
324
328
|
*/
|
|
325
329
|
export interface BrowserInteractionClickEvent {
|
|
330
|
+
category: 'interaction';
|
|
331
|
+
|
|
326
332
|
/**
|
|
327
333
|
* Provenance metadata identifying which producer emitted the event.
|
|
328
334
|
*/
|
|
@@ -386,6 +392,8 @@ export namespace BrowserInteractionClickEvent {
|
|
|
386
392
|
* A browser keyboard event captured via injected page script.
|
|
387
393
|
*/
|
|
388
394
|
export interface BrowserInteractionKeyEvent {
|
|
395
|
+
category: 'interaction';
|
|
396
|
+
|
|
389
397
|
/**
|
|
390
398
|
* Provenance metadata identifying which producer emitted the event.
|
|
391
399
|
*/
|
|
@@ -440,6 +448,8 @@ export namespace BrowserInteractionKeyEvent {
|
|
|
440
448
|
* captured via injected page script.
|
|
441
449
|
*/
|
|
442
450
|
export interface BrowserInteractionScrollSettledEvent {
|
|
451
|
+
category: 'interaction';
|
|
452
|
+
|
|
443
453
|
/**
|
|
444
454
|
* Provenance metadata identifying which producer emitted the event.
|
|
445
455
|
*/
|
|
@@ -505,6 +515,8 @@ export namespace BrowserInteractionScrollSettledEvent {
|
|
|
505
515
|
* page_layout_settled) as unreliable until then.
|
|
506
516
|
*/
|
|
507
517
|
export interface BrowserMonitorDisconnectedEvent {
|
|
518
|
+
category: 'system';
|
|
519
|
+
|
|
508
520
|
/**
|
|
509
521
|
* Provenance metadata identifying which producer emitted the event.
|
|
510
522
|
*/
|
|
@@ -538,6 +550,8 @@ export namespace BrowserMonitorDisconnectedEvent {
|
|
|
538
550
|
* The CDP session could not be initialized.
|
|
539
551
|
*/
|
|
540
552
|
export interface BrowserMonitorInitFailedEvent {
|
|
553
|
+
category: 'system';
|
|
554
|
+
|
|
541
555
|
/**
|
|
542
556
|
* Provenance metadata identifying which producer emitted the event.
|
|
543
557
|
*/
|
|
@@ -572,6 +586,8 @@ export namespace BrowserMonitorInitFailedEvent {
|
|
|
572
586
|
* reconnection attempts. No further telemetry events will arrive on this session.
|
|
573
587
|
*/
|
|
574
588
|
export interface BrowserMonitorReconnectFailedEvent {
|
|
589
|
+
category: 'system';
|
|
590
|
+
|
|
575
591
|
/**
|
|
576
592
|
* Provenance metadata identifying which producer emitted the event.
|
|
577
593
|
*/
|
|
@@ -608,6 +624,8 @@ export namespace BrowserMonitorReconnectFailedEvent {
|
|
|
608
624
|
* so navigation and network tracking restart fresh from this point.
|
|
609
625
|
*/
|
|
610
626
|
export interface BrowserMonitorReconnectedEvent {
|
|
627
|
+
category: 'system';
|
|
628
|
+
|
|
611
629
|
/**
|
|
612
630
|
* Provenance metadata identifying which producer emitted the event.
|
|
613
631
|
*/
|
|
@@ -641,6 +659,8 @@ export namespace BrowserMonitorReconnectedEvent {
|
|
|
641
659
|
* A periodic screenshot of the browser viewport.
|
|
642
660
|
*/
|
|
643
661
|
export interface BrowserMonitorScreenshotEvent {
|
|
662
|
+
category: 'system';
|
|
663
|
+
|
|
644
664
|
/**
|
|
645
665
|
* Provenance metadata identifying which producer emitted the event.
|
|
646
666
|
*/
|
|
@@ -675,6 +695,8 @@ export namespace BrowserMonitorScreenshotEvent {
|
|
|
675
695
|
* in-flight HTTP requests.
|
|
676
696
|
*/
|
|
677
697
|
export interface BrowserNetworkIdleEvent {
|
|
698
|
+
category: 'network';
|
|
699
|
+
|
|
678
700
|
/**
|
|
679
701
|
* Provenance metadata identifying which producer emitted the event.
|
|
680
702
|
*/
|
|
@@ -707,6 +729,8 @@ export interface BrowserNetworkIdleEvent {
|
|
|
707
729
|
* populated in that case.
|
|
708
730
|
*/
|
|
709
731
|
export interface BrowserNetworkLoadingFailedEvent {
|
|
732
|
+
category: 'network';
|
|
733
|
+
|
|
710
734
|
/**
|
|
711
735
|
* Provenance metadata identifying which producer emitted the event.
|
|
712
736
|
*/
|
|
@@ -767,6 +791,8 @@ export namespace BrowserNetworkLoadingFailedEvent {
|
|
|
767
791
|
* A browser network request sent event.
|
|
768
792
|
*/
|
|
769
793
|
export interface BrowserNetworkRequestEvent {
|
|
794
|
+
category: 'network';
|
|
795
|
+
|
|
770
796
|
/**
|
|
771
797
|
* Provenance metadata identifying which producer emitted the event.
|
|
772
798
|
*/
|
|
@@ -854,6 +880,8 @@ export namespace BrowserNetworkRequestEvent {
|
|
|
854
880
|
* fully received, not when headers arrive.
|
|
855
881
|
*/
|
|
856
882
|
export interface BrowserNetworkResponseEvent {
|
|
883
|
+
category: 'network';
|
|
884
|
+
|
|
857
885
|
/**
|
|
858
886
|
* Provenance metadata identifying which producer emitted the event.
|
|
859
887
|
*/
|
|
@@ -934,6 +962,8 @@ export namespace BrowserNetworkResponseEvent {
|
|
|
934
962
|
* A browser DOMContentLoaded event (CDP Page.domContentEventFired).
|
|
935
963
|
*/
|
|
936
964
|
export interface BrowserPageDomContentLoadedEvent {
|
|
965
|
+
category: 'page';
|
|
966
|
+
|
|
937
967
|
/**
|
|
938
968
|
* Provenance metadata identifying which producer emitted the event.
|
|
939
969
|
*/
|
|
@@ -980,6 +1010,8 @@ export namespace BrowserPageDomContentLoadedEvent {
|
|
|
980
1010
|
* the 1-second timer.
|
|
981
1011
|
*/
|
|
982
1012
|
export interface BrowserPageLayoutSettledEvent {
|
|
1013
|
+
category: 'page';
|
|
1014
|
+
|
|
983
1015
|
/**
|
|
984
1016
|
* Provenance metadata identifying which producer emitted the event.
|
|
985
1017
|
*/
|
|
@@ -1009,6 +1041,8 @@ export interface BrowserPageLayoutSettledEvent {
|
|
|
1009
1041
|
* A browser cumulative layout shift (CLS) event from the Performance Timeline API.
|
|
1010
1042
|
*/
|
|
1011
1043
|
export interface BrowserPageLayoutShiftEvent {
|
|
1044
|
+
category: 'page';
|
|
1045
|
+
|
|
1012
1046
|
/**
|
|
1013
1047
|
* Provenance metadata identifying which producer emitted the event.
|
|
1014
1048
|
*/
|
|
@@ -1087,6 +1121,8 @@ export namespace BrowserPageLayoutShiftEvent {
|
|
|
1087
1121
|
* API.
|
|
1088
1122
|
*/
|
|
1089
1123
|
export interface BrowserPageLcpEvent {
|
|
1124
|
+
category: 'page';
|
|
1125
|
+
|
|
1090
1126
|
/**
|
|
1091
1127
|
* Provenance metadata identifying which producer emitted the event.
|
|
1092
1128
|
*/
|
|
@@ -1178,6 +1214,8 @@ export namespace BrowserPageLcpEvent {
|
|
|
1178
1214
|
* A browser page load event (CDP Page.loadEventFired).
|
|
1179
1215
|
*/
|
|
1180
1216
|
export interface BrowserPageLoadEvent {
|
|
1217
|
+
category: 'page';
|
|
1218
|
+
|
|
1181
1219
|
/**
|
|
1182
1220
|
* Provenance metadata identifying which producer emitted the event.
|
|
1183
1221
|
*/
|
|
@@ -1224,6 +1262,8 @@ export namespace BrowserPageLoadEvent {
|
|
|
1224
1262
|
* epoch.
|
|
1225
1263
|
*/
|
|
1226
1264
|
export interface BrowserPageNavigationEvent {
|
|
1265
|
+
category: 'page';
|
|
1266
|
+
|
|
1227
1267
|
/**
|
|
1228
1268
|
* Provenance metadata identifying which producer emitted the event.
|
|
1229
1269
|
*/
|
|
@@ -1290,6 +1330,8 @@ export namespace BrowserPageNavigationEvent {
|
|
|
1290
1330
|
* Independent of network_idle; a single pending request does not block it.
|
|
1291
1331
|
*/
|
|
1292
1332
|
export interface BrowserPageNavigationSettledEvent {
|
|
1333
|
+
category: 'page';
|
|
1334
|
+
|
|
1293
1335
|
/**
|
|
1294
1336
|
* Provenance metadata identifying which producer emitted the event.
|
|
1295
1337
|
*/
|
|
@@ -1323,6 +1365,8 @@ export interface BrowserPageNavigationSettledEvent {
|
|
|
1323
1365
|
* treat it as a special case.
|
|
1324
1366
|
*/
|
|
1325
1367
|
export interface BrowserPageTabOpenedEvent {
|
|
1368
|
+
category: 'page';
|
|
1369
|
+
|
|
1326
1370
|
/**
|
|
1327
1371
|
* Provenance metadata identifying which producer emitted the event.
|
|
1328
1372
|
*/
|
|
@@ -1452,25 +1496,6 @@ export type BrowserTelemetryEvent =
|
|
|
1452
1496
|
| BrowserMonitorReconnectFailedEvent
|
|
1453
1497
|
| BrowserMonitorInitFailedEvent;
|
|
1454
1498
|
|
|
1455
|
-
/**
|
|
1456
|
-
* Telemetry request configuration for a browser session.
|
|
1457
|
-
*/
|
|
1458
|
-
export interface BrowserTelemetryRequestConfig {
|
|
1459
|
-
/**
|
|
1460
|
-
* Per-category enable/disable flags. If enabled is true and browser is omitted or
|
|
1461
|
-
* empty, the VM default category set is used. Explicitly disabling all four
|
|
1462
|
-
* categories stops capture on update and starts no capture on create.
|
|
1463
|
-
*/
|
|
1464
|
-
browser?: BrowserTelemetryCategoriesConfig;
|
|
1465
|
-
|
|
1466
|
-
/**
|
|
1467
|
-
* Request shortcut for browser telemetry capture. True enables capture using VM
|
|
1468
|
-
* defaults. False stops capture on update and starts no capture on create. Cannot
|
|
1469
|
-
* be combined with browser category settings.
|
|
1470
|
-
*/
|
|
1471
|
-
enabled?: boolean;
|
|
1472
|
-
}
|
|
1473
|
-
|
|
1474
1499
|
/**
|
|
1475
1500
|
* Envelope wrapping a browser telemetry event with its monotonic sequence number.
|
|
1476
1501
|
* Each SSE data: frame carries one envelope as JSON. The seq value is also emitted
|
|
@@ -1534,7 +1559,6 @@ export declare namespace Telemetry {
|
|
|
1534
1559
|
type BrowserTelemetryCategoryConfig as BrowserTelemetryCategoryConfig,
|
|
1535
1560
|
type BrowserTelemetryConfig as BrowserTelemetryConfig,
|
|
1536
1561
|
type BrowserTelemetryEvent as BrowserTelemetryEvent,
|
|
1537
|
-
type BrowserTelemetryRequestConfig as BrowserTelemetryRequestConfig,
|
|
1538
1562
|
type TelemetryStreamResponse as TelemetryStreamResponse,
|
|
1539
1563
|
type TelemetryStreamParams as TelemetryStreamParams,
|
|
1540
1564
|
};
|
package/src/resources/index.ts
CHANGED
|
@@ -1,6 +1,15 @@
|
|
|
1
1
|
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
|
|
2
2
|
|
|
3
3
|
export * from './shared';
|
|
4
|
+
export {
|
|
5
|
+
APIKeys,
|
|
6
|
+
type APIKey,
|
|
7
|
+
type CreatedAPIKey,
|
|
8
|
+
type APIKeyCreateParams,
|
|
9
|
+
type APIKeyUpdateParams,
|
|
10
|
+
type APIKeyListParams,
|
|
11
|
+
type APIKeysOffsetPagination,
|
|
12
|
+
} from './api-keys';
|
|
4
13
|
export {
|
|
5
14
|
Apps,
|
|
6
15
|
type AppListResponse,
|
package/src/resources/proxies.ts
CHANGED
|
@@ -173,76 +173,7 @@ export namespace ProxyCreateResponse {
|
|
|
173
173
|
*/
|
|
174
174
|
export interface MobileProxyConfig {
|
|
175
175
|
/**
|
|
176
|
-
*
|
|
177
|
-
*/
|
|
178
|
-
asn?: string;
|
|
179
|
-
|
|
180
|
-
/**
|
|
181
|
-
* Mobile carrier.
|
|
182
|
-
*/
|
|
183
|
-
carrier?:
|
|
184
|
-
| 'a1'
|
|
185
|
-
| 'aircel'
|
|
186
|
-
| 'airtel'
|
|
187
|
-
| 'att'
|
|
188
|
-
| 'celcom'
|
|
189
|
-
| 'chinamobile'
|
|
190
|
-
| 'claro'
|
|
191
|
-
| 'comcast'
|
|
192
|
-
| 'cox'
|
|
193
|
-
| 'digi'
|
|
194
|
-
| 'dt'
|
|
195
|
-
| 'docomo'
|
|
196
|
-
| 'dtac'
|
|
197
|
-
| 'etisalat'
|
|
198
|
-
| 'idea'
|
|
199
|
-
| 'kyivstar'
|
|
200
|
-
| 'meo'
|
|
201
|
-
| 'megafon'
|
|
202
|
-
| 'mtn'
|
|
203
|
-
| 'mtnza'
|
|
204
|
-
| 'mts'
|
|
205
|
-
| 'optus'
|
|
206
|
-
| 'orange'
|
|
207
|
-
| 'qwest'
|
|
208
|
-
| 'reliance_jio'
|
|
209
|
-
| 'robi'
|
|
210
|
-
| 'sprint'
|
|
211
|
-
| 'telefonica'
|
|
212
|
-
| 'telstra'
|
|
213
|
-
| 'tmobile'
|
|
214
|
-
| 'tigo'
|
|
215
|
-
| 'tim'
|
|
216
|
-
| 'verizon'
|
|
217
|
-
| 'vimpelcom'
|
|
218
|
-
| 'vodacomza'
|
|
219
|
-
| 'vodafone'
|
|
220
|
-
| 'vivo'
|
|
221
|
-
| 'zain'
|
|
222
|
-
| 'vivabo'
|
|
223
|
-
| 'telenormyanmar'
|
|
224
|
-
| 'kcelljsc'
|
|
225
|
-
| 'swisscom'
|
|
226
|
-
| 'singtel'
|
|
227
|
-
| 'asiacell'
|
|
228
|
-
| 'windit'
|
|
229
|
-
| 'cellc'
|
|
230
|
-
| 'ooredoo'
|
|
231
|
-
| 'drei'
|
|
232
|
-
| 'umobile'
|
|
233
|
-
| 'cableone'
|
|
234
|
-
| 'proximus'
|
|
235
|
-
| 'tele2'
|
|
236
|
-
| 'mobitel'
|
|
237
|
-
| 'o2'
|
|
238
|
-
| 'bouygues'
|
|
239
|
-
| 'free'
|
|
240
|
-
| 'sfr'
|
|
241
|
-
| 'digicel';
|
|
242
|
-
|
|
243
|
-
/**
|
|
244
|
-
* City name (no spaces, e.g. `sanfrancisco`). If provided, `country` must also be
|
|
245
|
-
* provided.
|
|
176
|
+
* Provider city alias. Mobile carrier routing can make observed geo vary.
|
|
246
177
|
*/
|
|
247
178
|
city?: string;
|
|
248
179
|
|
|
@@ -252,14 +183,9 @@ export namespace ProxyCreateResponse {
|
|
|
252
183
|
country?: string;
|
|
253
184
|
|
|
254
185
|
/**
|
|
255
|
-
*
|
|
186
|
+
* US-only state code. Mobile carrier routing can make observed geo vary.
|
|
256
187
|
*/
|
|
257
188
|
state?: string;
|
|
258
|
-
|
|
259
|
-
/**
|
|
260
|
-
* US ZIP code.
|
|
261
|
-
*/
|
|
262
|
-
zip?: string;
|
|
263
189
|
}
|
|
264
190
|
|
|
265
191
|
/**
|
|
@@ -403,76 +329,7 @@ export namespace ProxyRetrieveResponse {
|
|
|
403
329
|
*/
|
|
404
330
|
export interface MobileProxyConfig {
|
|
405
331
|
/**
|
|
406
|
-
*
|
|
407
|
-
*/
|
|
408
|
-
asn?: string;
|
|
409
|
-
|
|
410
|
-
/**
|
|
411
|
-
* Mobile carrier.
|
|
412
|
-
*/
|
|
413
|
-
carrier?:
|
|
414
|
-
| 'a1'
|
|
415
|
-
| 'aircel'
|
|
416
|
-
| 'airtel'
|
|
417
|
-
| 'att'
|
|
418
|
-
| 'celcom'
|
|
419
|
-
| 'chinamobile'
|
|
420
|
-
| 'claro'
|
|
421
|
-
| 'comcast'
|
|
422
|
-
| 'cox'
|
|
423
|
-
| 'digi'
|
|
424
|
-
| 'dt'
|
|
425
|
-
| 'docomo'
|
|
426
|
-
| 'dtac'
|
|
427
|
-
| 'etisalat'
|
|
428
|
-
| 'idea'
|
|
429
|
-
| 'kyivstar'
|
|
430
|
-
| 'meo'
|
|
431
|
-
| 'megafon'
|
|
432
|
-
| 'mtn'
|
|
433
|
-
| 'mtnza'
|
|
434
|
-
| 'mts'
|
|
435
|
-
| 'optus'
|
|
436
|
-
| 'orange'
|
|
437
|
-
| 'qwest'
|
|
438
|
-
| 'reliance_jio'
|
|
439
|
-
| 'robi'
|
|
440
|
-
| 'sprint'
|
|
441
|
-
| 'telefonica'
|
|
442
|
-
| 'telstra'
|
|
443
|
-
| 'tmobile'
|
|
444
|
-
| 'tigo'
|
|
445
|
-
| 'tim'
|
|
446
|
-
| 'verizon'
|
|
447
|
-
| 'vimpelcom'
|
|
448
|
-
| 'vodacomza'
|
|
449
|
-
| 'vodafone'
|
|
450
|
-
| 'vivo'
|
|
451
|
-
| 'zain'
|
|
452
|
-
| 'vivabo'
|
|
453
|
-
| 'telenormyanmar'
|
|
454
|
-
| 'kcelljsc'
|
|
455
|
-
| 'swisscom'
|
|
456
|
-
| 'singtel'
|
|
457
|
-
| 'asiacell'
|
|
458
|
-
| 'windit'
|
|
459
|
-
| 'cellc'
|
|
460
|
-
| 'ooredoo'
|
|
461
|
-
| 'drei'
|
|
462
|
-
| 'umobile'
|
|
463
|
-
| 'cableone'
|
|
464
|
-
| 'proximus'
|
|
465
|
-
| 'tele2'
|
|
466
|
-
| 'mobitel'
|
|
467
|
-
| 'o2'
|
|
468
|
-
| 'bouygues'
|
|
469
|
-
| 'free'
|
|
470
|
-
| 'sfr'
|
|
471
|
-
| 'digicel';
|
|
472
|
-
|
|
473
|
-
/**
|
|
474
|
-
* City name (no spaces, e.g. `sanfrancisco`). If provided, `country` must also be
|
|
475
|
-
* provided.
|
|
332
|
+
* Provider city alias. Mobile carrier routing can make observed geo vary.
|
|
476
333
|
*/
|
|
477
334
|
city?: string;
|
|
478
335
|
|
|
@@ -482,14 +339,9 @@ export namespace ProxyRetrieveResponse {
|
|
|
482
339
|
country?: string;
|
|
483
340
|
|
|
484
341
|
/**
|
|
485
|
-
*
|
|
342
|
+
* US-only state code. Mobile carrier routing can make observed geo vary.
|
|
486
343
|
*/
|
|
487
344
|
state?: string;
|
|
488
|
-
|
|
489
|
-
/**
|
|
490
|
-
* US ZIP code.
|
|
491
|
-
*/
|
|
492
|
-
zip?: string;
|
|
493
345
|
}
|
|
494
346
|
|
|
495
347
|
/**
|
|
@@ -636,76 +488,7 @@ export namespace ProxyListResponse {
|
|
|
636
488
|
*/
|
|
637
489
|
export interface MobileProxyConfig {
|
|
638
490
|
/**
|
|
639
|
-
*
|
|
640
|
-
*/
|
|
641
|
-
asn?: string;
|
|
642
|
-
|
|
643
|
-
/**
|
|
644
|
-
* Mobile carrier.
|
|
645
|
-
*/
|
|
646
|
-
carrier?:
|
|
647
|
-
| 'a1'
|
|
648
|
-
| 'aircel'
|
|
649
|
-
| 'airtel'
|
|
650
|
-
| 'att'
|
|
651
|
-
| 'celcom'
|
|
652
|
-
| 'chinamobile'
|
|
653
|
-
| 'claro'
|
|
654
|
-
| 'comcast'
|
|
655
|
-
| 'cox'
|
|
656
|
-
| 'digi'
|
|
657
|
-
| 'dt'
|
|
658
|
-
| 'docomo'
|
|
659
|
-
| 'dtac'
|
|
660
|
-
| 'etisalat'
|
|
661
|
-
| 'idea'
|
|
662
|
-
| 'kyivstar'
|
|
663
|
-
| 'meo'
|
|
664
|
-
| 'megafon'
|
|
665
|
-
| 'mtn'
|
|
666
|
-
| 'mtnza'
|
|
667
|
-
| 'mts'
|
|
668
|
-
| 'optus'
|
|
669
|
-
| 'orange'
|
|
670
|
-
| 'qwest'
|
|
671
|
-
| 'reliance_jio'
|
|
672
|
-
| 'robi'
|
|
673
|
-
| 'sprint'
|
|
674
|
-
| 'telefonica'
|
|
675
|
-
| 'telstra'
|
|
676
|
-
| 'tmobile'
|
|
677
|
-
| 'tigo'
|
|
678
|
-
| 'tim'
|
|
679
|
-
| 'verizon'
|
|
680
|
-
| 'vimpelcom'
|
|
681
|
-
| 'vodacomza'
|
|
682
|
-
| 'vodafone'
|
|
683
|
-
| 'vivo'
|
|
684
|
-
| 'zain'
|
|
685
|
-
| 'vivabo'
|
|
686
|
-
| 'telenormyanmar'
|
|
687
|
-
| 'kcelljsc'
|
|
688
|
-
| 'swisscom'
|
|
689
|
-
| 'singtel'
|
|
690
|
-
| 'asiacell'
|
|
691
|
-
| 'windit'
|
|
692
|
-
| 'cellc'
|
|
693
|
-
| 'ooredoo'
|
|
694
|
-
| 'drei'
|
|
695
|
-
| 'umobile'
|
|
696
|
-
| 'cableone'
|
|
697
|
-
| 'proximus'
|
|
698
|
-
| 'tele2'
|
|
699
|
-
| 'mobitel'
|
|
700
|
-
| 'o2'
|
|
701
|
-
| 'bouygues'
|
|
702
|
-
| 'free'
|
|
703
|
-
| 'sfr'
|
|
704
|
-
| 'digicel';
|
|
705
|
-
|
|
706
|
-
/**
|
|
707
|
-
* City name (no spaces, e.g. `sanfrancisco`). If provided, `country` must also be
|
|
708
|
-
* provided.
|
|
491
|
+
* Provider city alias. Mobile carrier routing can make observed geo vary.
|
|
709
492
|
*/
|
|
710
493
|
city?: string;
|
|
711
494
|
|
|
@@ -715,14 +498,9 @@ export namespace ProxyListResponse {
|
|
|
715
498
|
country?: string;
|
|
716
499
|
|
|
717
500
|
/**
|
|
718
|
-
*
|
|
501
|
+
* US-only state code. Mobile carrier routing can make observed geo vary.
|
|
719
502
|
*/
|
|
720
503
|
state?: string;
|
|
721
|
-
|
|
722
|
-
/**
|
|
723
|
-
* US ZIP code.
|
|
724
|
-
*/
|
|
725
|
-
zip?: string;
|
|
726
504
|
}
|
|
727
505
|
|
|
728
506
|
/**
|
|
@@ -867,76 +645,7 @@ export namespace ProxyCheckResponse {
|
|
|
867
645
|
*/
|
|
868
646
|
export interface MobileProxyConfig {
|
|
869
647
|
/**
|
|
870
|
-
*
|
|
871
|
-
*/
|
|
872
|
-
asn?: string;
|
|
873
|
-
|
|
874
|
-
/**
|
|
875
|
-
* Mobile carrier.
|
|
876
|
-
*/
|
|
877
|
-
carrier?:
|
|
878
|
-
| 'a1'
|
|
879
|
-
| 'aircel'
|
|
880
|
-
| 'airtel'
|
|
881
|
-
| 'att'
|
|
882
|
-
| 'celcom'
|
|
883
|
-
| 'chinamobile'
|
|
884
|
-
| 'claro'
|
|
885
|
-
| 'comcast'
|
|
886
|
-
| 'cox'
|
|
887
|
-
| 'digi'
|
|
888
|
-
| 'dt'
|
|
889
|
-
| 'docomo'
|
|
890
|
-
| 'dtac'
|
|
891
|
-
| 'etisalat'
|
|
892
|
-
| 'idea'
|
|
893
|
-
| 'kyivstar'
|
|
894
|
-
| 'meo'
|
|
895
|
-
| 'megafon'
|
|
896
|
-
| 'mtn'
|
|
897
|
-
| 'mtnza'
|
|
898
|
-
| 'mts'
|
|
899
|
-
| 'optus'
|
|
900
|
-
| 'orange'
|
|
901
|
-
| 'qwest'
|
|
902
|
-
| 'reliance_jio'
|
|
903
|
-
| 'robi'
|
|
904
|
-
| 'sprint'
|
|
905
|
-
| 'telefonica'
|
|
906
|
-
| 'telstra'
|
|
907
|
-
| 'tmobile'
|
|
908
|
-
| 'tigo'
|
|
909
|
-
| 'tim'
|
|
910
|
-
| 'verizon'
|
|
911
|
-
| 'vimpelcom'
|
|
912
|
-
| 'vodacomza'
|
|
913
|
-
| 'vodafone'
|
|
914
|
-
| 'vivo'
|
|
915
|
-
| 'zain'
|
|
916
|
-
| 'vivabo'
|
|
917
|
-
| 'telenormyanmar'
|
|
918
|
-
| 'kcelljsc'
|
|
919
|
-
| 'swisscom'
|
|
920
|
-
| 'singtel'
|
|
921
|
-
| 'asiacell'
|
|
922
|
-
| 'windit'
|
|
923
|
-
| 'cellc'
|
|
924
|
-
| 'ooredoo'
|
|
925
|
-
| 'drei'
|
|
926
|
-
| 'umobile'
|
|
927
|
-
| 'cableone'
|
|
928
|
-
| 'proximus'
|
|
929
|
-
| 'tele2'
|
|
930
|
-
| 'mobitel'
|
|
931
|
-
| 'o2'
|
|
932
|
-
| 'bouygues'
|
|
933
|
-
| 'free'
|
|
934
|
-
| 'sfr'
|
|
935
|
-
| 'digicel';
|
|
936
|
-
|
|
937
|
-
/**
|
|
938
|
-
* City name (no spaces, e.g. `sanfrancisco`). If provided, `country` must also be
|
|
939
|
-
* provided.
|
|
648
|
+
* Provider city alias. Mobile carrier routing can make observed geo vary.
|
|
940
649
|
*/
|
|
941
650
|
city?: string;
|
|
942
651
|
|
|
@@ -946,14 +655,9 @@ export namespace ProxyCheckResponse {
|
|
|
946
655
|
country?: string;
|
|
947
656
|
|
|
948
657
|
/**
|
|
949
|
-
*
|
|
658
|
+
* US-only state code. Mobile carrier routing can make observed geo vary.
|
|
950
659
|
*/
|
|
951
660
|
state?: string;
|
|
952
|
-
|
|
953
|
-
/**
|
|
954
|
-
* US ZIP code.
|
|
955
|
-
*/
|
|
956
|
-
zip?: string;
|
|
957
661
|
}
|
|
958
662
|
|
|
959
663
|
/**
|
|
@@ -1077,76 +781,7 @@ export namespace ProxyCreateParams {
|
|
|
1077
781
|
*/
|
|
1078
782
|
export interface MobileProxyConfig {
|
|
1079
783
|
/**
|
|
1080
|
-
*
|
|
1081
|
-
*/
|
|
1082
|
-
asn?: string;
|
|
1083
|
-
|
|
1084
|
-
/**
|
|
1085
|
-
* Mobile carrier.
|
|
1086
|
-
*/
|
|
1087
|
-
carrier?:
|
|
1088
|
-
| 'a1'
|
|
1089
|
-
| 'aircel'
|
|
1090
|
-
| 'airtel'
|
|
1091
|
-
| 'att'
|
|
1092
|
-
| 'celcom'
|
|
1093
|
-
| 'chinamobile'
|
|
1094
|
-
| 'claro'
|
|
1095
|
-
| 'comcast'
|
|
1096
|
-
| 'cox'
|
|
1097
|
-
| 'digi'
|
|
1098
|
-
| 'dt'
|
|
1099
|
-
| 'docomo'
|
|
1100
|
-
| 'dtac'
|
|
1101
|
-
| 'etisalat'
|
|
1102
|
-
| 'idea'
|
|
1103
|
-
| 'kyivstar'
|
|
1104
|
-
| 'meo'
|
|
1105
|
-
| 'megafon'
|
|
1106
|
-
| 'mtn'
|
|
1107
|
-
| 'mtnza'
|
|
1108
|
-
| 'mts'
|
|
1109
|
-
| 'optus'
|
|
1110
|
-
| 'orange'
|
|
1111
|
-
| 'qwest'
|
|
1112
|
-
| 'reliance_jio'
|
|
1113
|
-
| 'robi'
|
|
1114
|
-
| 'sprint'
|
|
1115
|
-
| 'telefonica'
|
|
1116
|
-
| 'telstra'
|
|
1117
|
-
| 'tmobile'
|
|
1118
|
-
| 'tigo'
|
|
1119
|
-
| 'tim'
|
|
1120
|
-
| 'verizon'
|
|
1121
|
-
| 'vimpelcom'
|
|
1122
|
-
| 'vodacomza'
|
|
1123
|
-
| 'vodafone'
|
|
1124
|
-
| 'vivo'
|
|
1125
|
-
| 'zain'
|
|
1126
|
-
| 'vivabo'
|
|
1127
|
-
| 'telenormyanmar'
|
|
1128
|
-
| 'kcelljsc'
|
|
1129
|
-
| 'swisscom'
|
|
1130
|
-
| 'singtel'
|
|
1131
|
-
| 'asiacell'
|
|
1132
|
-
| 'windit'
|
|
1133
|
-
| 'cellc'
|
|
1134
|
-
| 'ooredoo'
|
|
1135
|
-
| 'drei'
|
|
1136
|
-
| 'umobile'
|
|
1137
|
-
| 'cableone'
|
|
1138
|
-
| 'proximus'
|
|
1139
|
-
| 'tele2'
|
|
1140
|
-
| 'mobitel'
|
|
1141
|
-
| 'o2'
|
|
1142
|
-
| 'bouygues'
|
|
1143
|
-
| 'free'
|
|
1144
|
-
| 'sfr'
|
|
1145
|
-
| 'digicel';
|
|
1146
|
-
|
|
1147
|
-
/**
|
|
1148
|
-
* City name (no spaces, e.g. `sanfrancisco`). If provided, `country` must also be
|
|
1149
|
-
* provided.
|
|
784
|
+
* Provider city alias. Mobile carrier routing can make observed geo vary.
|
|
1150
785
|
*/
|
|
1151
786
|
city?: string;
|
|
1152
787
|
|
|
@@ -1156,14 +791,9 @@ export namespace ProxyCreateParams {
|
|
|
1156
791
|
country?: string;
|
|
1157
792
|
|
|
1158
793
|
/**
|
|
1159
|
-
*
|
|
794
|
+
* US-only state code. Mobile carrier routing can make observed geo vary.
|
|
1160
795
|
*/
|
|
1161
796
|
state?: string;
|
|
1162
|
-
|
|
1163
|
-
/**
|
|
1164
|
-
* US ZIP code.
|
|
1165
|
-
*/
|
|
1166
|
-
zip?: string;
|
|
1167
797
|
}
|
|
1168
798
|
|
|
1169
799
|
/**
|
package/src/version.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const VERSION = '0.
|
|
1
|
+
export const VERSION = '0.59.0'; // x-release-please-version
|