@onkernel/sdk 0.14.0 → 0.14.2
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 +17 -0
- package/client.d.mts +2 -2
- package/client.d.mts.map +1 -1
- package/client.d.ts +2 -2
- package/client.d.ts.map +1 -1
- package/package.json +1 -1
- package/resources/browsers/browsers.d.mts +173 -6
- package/resources/browsers/browsers.d.mts.map +1 -1
- package/resources/browsers/browsers.d.ts +173 -6
- package/resources/browsers/browsers.d.ts.map +1 -1
- package/resources/browsers/browsers.js +2 -2
- 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/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/index.d.mts +1 -1
- package/resources/index.d.mts.map +1 -1
- package/resources/index.d.ts +1 -1
- package/resources/index.d.ts.map +1 -1
- package/resources/proxies.d.mts +20 -28
- package/resources/proxies.d.mts.map +1 -1
- package/resources/proxies.d.ts +20 -28
- package/resources/proxies.d.ts.map +1 -1
- package/src/client.ts +2 -2
- package/src/resources/browsers/browsers.ts +193 -10
- package/src/resources/browsers/index.ts +1 -1
- package/src/resources/index.ts +1 -1
- package/src/resources/proxies.ts +20 -28
- 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
package/src/resources/proxies.ts
CHANGED
|
@@ -88,7 +88,7 @@ export namespace ProxyCreateResponse {
|
|
|
88
88
|
*/
|
|
89
89
|
export interface DatacenterProxyConfig {
|
|
90
90
|
/**
|
|
91
|
-
* ISO 3166 country code
|
|
91
|
+
* ISO 3166 country code.
|
|
92
92
|
*/
|
|
93
93
|
country: string;
|
|
94
94
|
}
|
|
@@ -98,7 +98,7 @@ export namespace ProxyCreateResponse {
|
|
|
98
98
|
*/
|
|
99
99
|
export interface IspProxyConfig {
|
|
100
100
|
/**
|
|
101
|
-
* ISO 3166 country code
|
|
101
|
+
* ISO 3166 country code.
|
|
102
102
|
*/
|
|
103
103
|
country: string;
|
|
104
104
|
}
|
|
@@ -119,13 +119,12 @@ export namespace ProxyCreateResponse {
|
|
|
119
119
|
city?: string;
|
|
120
120
|
|
|
121
121
|
/**
|
|
122
|
-
* ISO 3166 country code
|
|
123
|
-
* provided.
|
|
122
|
+
* ISO 3166 country code.
|
|
124
123
|
*/
|
|
125
124
|
country?: string;
|
|
126
125
|
|
|
127
126
|
/**
|
|
128
|
-
* Operating system of the residential device.
|
|
127
|
+
* @deprecated Operating system of the residential device.
|
|
129
128
|
*/
|
|
130
129
|
os?: 'windows' | 'macos' | 'android';
|
|
131
130
|
|
|
@@ -219,8 +218,7 @@ export namespace ProxyCreateResponse {
|
|
|
219
218
|
city?: string;
|
|
220
219
|
|
|
221
220
|
/**
|
|
222
|
-
* ISO 3166 country code
|
|
223
|
-
* provided.
|
|
221
|
+
* ISO 3166 country code
|
|
224
222
|
*/
|
|
225
223
|
country?: string;
|
|
226
224
|
|
|
@@ -310,7 +308,7 @@ export namespace ProxyRetrieveResponse {
|
|
|
310
308
|
*/
|
|
311
309
|
export interface DatacenterProxyConfig {
|
|
312
310
|
/**
|
|
313
|
-
* ISO 3166 country code
|
|
311
|
+
* ISO 3166 country code.
|
|
314
312
|
*/
|
|
315
313
|
country: string;
|
|
316
314
|
}
|
|
@@ -320,7 +318,7 @@ export namespace ProxyRetrieveResponse {
|
|
|
320
318
|
*/
|
|
321
319
|
export interface IspProxyConfig {
|
|
322
320
|
/**
|
|
323
|
-
* ISO 3166 country code
|
|
321
|
+
* ISO 3166 country code.
|
|
324
322
|
*/
|
|
325
323
|
country: string;
|
|
326
324
|
}
|
|
@@ -341,13 +339,12 @@ export namespace ProxyRetrieveResponse {
|
|
|
341
339
|
city?: string;
|
|
342
340
|
|
|
343
341
|
/**
|
|
344
|
-
* ISO 3166 country code
|
|
345
|
-
* provided.
|
|
342
|
+
* ISO 3166 country code.
|
|
346
343
|
*/
|
|
347
344
|
country?: string;
|
|
348
345
|
|
|
349
346
|
/**
|
|
350
|
-
* Operating system of the residential device.
|
|
347
|
+
* @deprecated Operating system of the residential device.
|
|
351
348
|
*/
|
|
352
349
|
os?: 'windows' | 'macos' | 'android';
|
|
353
350
|
|
|
@@ -441,8 +438,7 @@ export namespace ProxyRetrieveResponse {
|
|
|
441
438
|
city?: string;
|
|
442
439
|
|
|
443
440
|
/**
|
|
444
|
-
* ISO 3166 country code
|
|
445
|
-
* provided.
|
|
441
|
+
* ISO 3166 country code
|
|
446
442
|
*/
|
|
447
443
|
country?: string;
|
|
448
444
|
|
|
@@ -535,7 +531,7 @@ export namespace ProxyListResponse {
|
|
|
535
531
|
*/
|
|
536
532
|
export interface DatacenterProxyConfig {
|
|
537
533
|
/**
|
|
538
|
-
* ISO 3166 country code
|
|
534
|
+
* ISO 3166 country code.
|
|
539
535
|
*/
|
|
540
536
|
country: string;
|
|
541
537
|
}
|
|
@@ -545,7 +541,7 @@ export namespace ProxyListResponse {
|
|
|
545
541
|
*/
|
|
546
542
|
export interface IspProxyConfig {
|
|
547
543
|
/**
|
|
548
|
-
* ISO 3166 country code
|
|
544
|
+
* ISO 3166 country code.
|
|
549
545
|
*/
|
|
550
546
|
country: string;
|
|
551
547
|
}
|
|
@@ -566,13 +562,12 @@ export namespace ProxyListResponse {
|
|
|
566
562
|
city?: string;
|
|
567
563
|
|
|
568
564
|
/**
|
|
569
|
-
* ISO 3166 country code
|
|
570
|
-
* provided.
|
|
565
|
+
* ISO 3166 country code.
|
|
571
566
|
*/
|
|
572
567
|
country?: string;
|
|
573
568
|
|
|
574
569
|
/**
|
|
575
|
-
* Operating system of the residential device.
|
|
570
|
+
* @deprecated Operating system of the residential device.
|
|
576
571
|
*/
|
|
577
572
|
os?: 'windows' | 'macos' | 'android';
|
|
578
573
|
|
|
@@ -666,8 +661,7 @@ export namespace ProxyListResponse {
|
|
|
666
661
|
city?: string;
|
|
667
662
|
|
|
668
663
|
/**
|
|
669
|
-
* ISO 3166 country code
|
|
670
|
-
* provided.
|
|
664
|
+
* ISO 3166 country code
|
|
671
665
|
*/
|
|
672
666
|
country?: string;
|
|
673
667
|
|
|
@@ -743,7 +737,7 @@ export namespace ProxyCreateParams {
|
|
|
743
737
|
*/
|
|
744
738
|
export interface DatacenterProxyConfig {
|
|
745
739
|
/**
|
|
746
|
-
* ISO 3166 country code
|
|
740
|
+
* ISO 3166 country code.
|
|
747
741
|
*/
|
|
748
742
|
country: string;
|
|
749
743
|
}
|
|
@@ -753,7 +747,7 @@ export namespace ProxyCreateParams {
|
|
|
753
747
|
*/
|
|
754
748
|
export interface IspProxyConfig {
|
|
755
749
|
/**
|
|
756
|
-
* ISO 3166 country code
|
|
750
|
+
* ISO 3166 country code.
|
|
757
751
|
*/
|
|
758
752
|
country: string;
|
|
759
753
|
}
|
|
@@ -774,13 +768,12 @@ export namespace ProxyCreateParams {
|
|
|
774
768
|
city?: string;
|
|
775
769
|
|
|
776
770
|
/**
|
|
777
|
-
* ISO 3166 country code
|
|
778
|
-
* provided.
|
|
771
|
+
* ISO 3166 country code.
|
|
779
772
|
*/
|
|
780
773
|
country?: string;
|
|
781
774
|
|
|
782
775
|
/**
|
|
783
|
-
* Operating system of the residential device.
|
|
776
|
+
* @deprecated Operating system of the residential device.
|
|
784
777
|
*/
|
|
785
778
|
os?: 'windows' | 'macos' | 'android';
|
|
786
779
|
|
|
@@ -874,8 +867,7 @@ export namespace ProxyCreateParams {
|
|
|
874
867
|
city?: string;
|
|
875
868
|
|
|
876
869
|
/**
|
|
877
|
-
* ISO 3166 country code
|
|
878
|
-
* provided.
|
|
870
|
+
* ISO 3166 country code
|
|
879
871
|
*/
|
|
880
872
|
country?: string;
|
|
881
873
|
|
package/src/version.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const VERSION = '0.14.
|
|
1
|
+
export const VERSION = '0.14.2'; // x-release-please-version
|
package/version.d.mts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const VERSION = "0.14.
|
|
1
|
+
export declare const VERSION = "0.14.2";
|
|
2
2
|
//# sourceMappingURL=version.d.mts.map
|
package/version.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const VERSION = "0.14.
|
|
1
|
+
export declare const VERSION = "0.14.2";
|
|
2
2
|
//# sourceMappingURL=version.d.ts.map
|
package/version.js
CHANGED
package/version.mjs
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export const VERSION = '0.14.
|
|
1
|
+
export const VERSION = '0.14.2'; // x-release-please-version
|
|
2
2
|
//# sourceMappingURL=version.mjs.map
|