asteroid-odyssey 1.6.333 → 1.6.336

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/dist/index.d.mts CHANGED
@@ -1525,33 +1525,9 @@ type AgentsProfileAgentProfile = {
1525
1525
  */
1526
1526
  customProxy?: AgentsProfileCustomProxyConfigOutput;
1527
1527
  /**
1528
- * OpenConnect VPN server hostname (for openconnect proxy mode)
1528
+ * Proxy gateway preset ID (for gateway proxy mode)
1529
1529
  */
1530
- openconnectHost?: string;
1531
- /**
1532
- * OpenConnect VPN username (for openconnect proxy mode)
1533
- */
1534
- openconnectUsername?: string;
1535
- /**
1536
- * Whether an OpenConnect VPN password is configured (for openconnect proxy mode)
1537
- */
1538
- openconnectPasswordSet?: boolean;
1539
- /**
1540
- * Whether an OpenConnect TOTP secret is configured (for openconnect proxy mode)
1541
- */
1542
- openconnectTotpSecretSet?: boolean;
1543
- /**
1544
- * OpenConnect protocol (for openconnect proxy mode)
1545
- */
1546
- openconnectProtocol?: string;
1547
- /**
1548
- * OpenConnect auth group/realm (for openconnect proxy mode)
1549
- */
1550
- openconnectAuthGroup?: string;
1551
- /**
1552
- * Pre-configured TLS certificate pin for the OpenConnect VPN server (pin-sha256:...). When set, this pin is used instead of fetching it from the live server, preventing MITM attacks during VPN establishment.
1553
- */
1554
- openconnectServerCertPin?: string;
1530
+ proxyGatewayPresetId?: CommonUuid;
1555
1531
  /**
1556
1532
  * Whether the captcha solver is active for this profile (managed proxy only)
1557
1533
  */
@@ -1786,33 +1762,9 @@ type AgentsProfileCreateAgentProfileRequest = {
1786
1762
  */
1787
1763
  tailscaleAuthKey?: string;
1788
1764
  /**
1789
- * OpenConnect VPN server hostname (required for openconnect proxy mode)
1790
- */
1791
- openconnectHost?: string;
1792
- /**
1793
- * OpenConnect VPN username (required for openconnect proxy mode)
1794
- */
1795
- openconnectUsername?: string;
1796
- /**
1797
- * OpenConnect VPN password (encrypted, optional if TOTP secret is provided)
1798
- */
1799
- openconnectPassword?: string;
1800
- /**
1801
- * TOTP seed for generating one-time passwords (encrypted, optional if static password is provided)
1765
+ * Proxy gateway preset ID (required for gateway proxy mode)
1802
1766
  */
1803
- openconnectTotpSecret?: string;
1804
- /**
1805
- * OpenConnect protocol override (e.g. 'anyconnect', 'gp', 'nc'); defaults to 'anyconnect'
1806
- */
1807
- openconnectProtocol?: string;
1808
- /**
1809
- * OpenConnect auth group/realm (optional)
1810
- */
1811
- openconnectAuthGroup?: string;
1812
- /**
1813
- * Pre-configured TLS certificate pin for the VPN server (pin-sha256:...). Prevents MITM during VPN connection.
1814
- */
1815
- openconnectServerCertPin?: string;
1767
+ proxyGatewayPresetId?: CommonUuid;
1816
1768
  /**
1817
1769
  * Whether the captcha solver should be active (managed proxy only)
1818
1770
  */
@@ -1954,7 +1906,7 @@ type AgentsProfilePoolSortField = 'name' | 'created_at' | 'updated_at';
1954
1906
  /**
1955
1907
  * Proxy configuration mode
1956
1908
  */
1957
- type AgentsProfileProxyMode = 'none' | 'managed' | 'custom' | 'tailscale' | 'openconnect';
1909
+ type AgentsProfileProxyMode = 'none' | 'managed' | 'custom' | 'tailscale' | 'gateway';
1958
1910
  /**
1959
1911
  * Type of managed proxy to use for browser sessions
1960
1912
  */
@@ -2030,33 +1982,9 @@ type AgentsProfileUpdateAgentProfileRequest = {
2030
1982
  */
2031
1983
  tailscaleAuthKey?: string;
2032
1984
  /**
2033
- * OpenConnect VPN server hostname (for openconnect proxy mode)
2034
- */
2035
- openconnectHost?: string;
2036
- /**
2037
- * OpenConnect VPN username (for openconnect proxy mode)
2038
- */
2039
- openconnectUsername?: string;
2040
- /**
2041
- * OpenConnect VPN password (for openconnect proxy mode)
2042
- */
2043
- openconnectPassword?: string;
2044
- /**
2045
- * TOTP seed for generating one-time passwords (for openconnect proxy mode)
2046
- */
2047
- openconnectTotpSecret?: string;
2048
- /**
2049
- * OpenConnect protocol override (for openconnect proxy mode)
2050
- */
2051
- openconnectProtocol?: string;
2052
- /**
2053
- * OpenConnect auth group/realm (for openconnect proxy mode)
2054
- */
2055
- openconnectAuthGroup?: string;
2056
- /**
2057
- * Pre-configured TLS certificate pin for the VPN server (pin-sha256:...). Prevents MITM during VPN connection.
1985
+ * Proxy gateway preset ID (for gateway proxy mode)
2058
1986
  */
2059
- openconnectServerCertPin?: string;
1987
+ proxyGatewayPresetId?: CommonUuid;
2060
1988
  /**
2061
1989
  * Whether the captcha solver should be active (managed proxy only)
2062
1990
  */
package/dist/index.d.ts CHANGED
@@ -1525,33 +1525,9 @@ type AgentsProfileAgentProfile = {
1525
1525
  */
1526
1526
  customProxy?: AgentsProfileCustomProxyConfigOutput;
1527
1527
  /**
1528
- * OpenConnect VPN server hostname (for openconnect proxy mode)
1528
+ * Proxy gateway preset ID (for gateway proxy mode)
1529
1529
  */
1530
- openconnectHost?: string;
1531
- /**
1532
- * OpenConnect VPN username (for openconnect proxy mode)
1533
- */
1534
- openconnectUsername?: string;
1535
- /**
1536
- * Whether an OpenConnect VPN password is configured (for openconnect proxy mode)
1537
- */
1538
- openconnectPasswordSet?: boolean;
1539
- /**
1540
- * Whether an OpenConnect TOTP secret is configured (for openconnect proxy mode)
1541
- */
1542
- openconnectTotpSecretSet?: boolean;
1543
- /**
1544
- * OpenConnect protocol (for openconnect proxy mode)
1545
- */
1546
- openconnectProtocol?: string;
1547
- /**
1548
- * OpenConnect auth group/realm (for openconnect proxy mode)
1549
- */
1550
- openconnectAuthGroup?: string;
1551
- /**
1552
- * Pre-configured TLS certificate pin for the OpenConnect VPN server (pin-sha256:...). When set, this pin is used instead of fetching it from the live server, preventing MITM attacks during VPN establishment.
1553
- */
1554
- openconnectServerCertPin?: string;
1530
+ proxyGatewayPresetId?: CommonUuid;
1555
1531
  /**
1556
1532
  * Whether the captcha solver is active for this profile (managed proxy only)
1557
1533
  */
@@ -1786,33 +1762,9 @@ type AgentsProfileCreateAgentProfileRequest = {
1786
1762
  */
1787
1763
  tailscaleAuthKey?: string;
1788
1764
  /**
1789
- * OpenConnect VPN server hostname (required for openconnect proxy mode)
1790
- */
1791
- openconnectHost?: string;
1792
- /**
1793
- * OpenConnect VPN username (required for openconnect proxy mode)
1794
- */
1795
- openconnectUsername?: string;
1796
- /**
1797
- * OpenConnect VPN password (encrypted, optional if TOTP secret is provided)
1798
- */
1799
- openconnectPassword?: string;
1800
- /**
1801
- * TOTP seed for generating one-time passwords (encrypted, optional if static password is provided)
1765
+ * Proxy gateway preset ID (required for gateway proxy mode)
1802
1766
  */
1803
- openconnectTotpSecret?: string;
1804
- /**
1805
- * OpenConnect protocol override (e.g. 'anyconnect', 'gp', 'nc'); defaults to 'anyconnect'
1806
- */
1807
- openconnectProtocol?: string;
1808
- /**
1809
- * OpenConnect auth group/realm (optional)
1810
- */
1811
- openconnectAuthGroup?: string;
1812
- /**
1813
- * Pre-configured TLS certificate pin for the VPN server (pin-sha256:...). Prevents MITM during VPN connection.
1814
- */
1815
- openconnectServerCertPin?: string;
1767
+ proxyGatewayPresetId?: CommonUuid;
1816
1768
  /**
1817
1769
  * Whether the captcha solver should be active (managed proxy only)
1818
1770
  */
@@ -1954,7 +1906,7 @@ type AgentsProfilePoolSortField = 'name' | 'created_at' | 'updated_at';
1954
1906
  /**
1955
1907
  * Proxy configuration mode
1956
1908
  */
1957
- type AgentsProfileProxyMode = 'none' | 'managed' | 'custom' | 'tailscale' | 'openconnect';
1909
+ type AgentsProfileProxyMode = 'none' | 'managed' | 'custom' | 'tailscale' | 'gateway';
1958
1910
  /**
1959
1911
  * Type of managed proxy to use for browser sessions
1960
1912
  */
@@ -2030,33 +1982,9 @@ type AgentsProfileUpdateAgentProfileRequest = {
2030
1982
  */
2031
1983
  tailscaleAuthKey?: string;
2032
1984
  /**
2033
- * OpenConnect VPN server hostname (for openconnect proxy mode)
2034
- */
2035
- openconnectHost?: string;
2036
- /**
2037
- * OpenConnect VPN username (for openconnect proxy mode)
2038
- */
2039
- openconnectUsername?: string;
2040
- /**
2041
- * OpenConnect VPN password (for openconnect proxy mode)
2042
- */
2043
- openconnectPassword?: string;
2044
- /**
2045
- * TOTP seed for generating one-time passwords (for openconnect proxy mode)
2046
- */
2047
- openconnectTotpSecret?: string;
2048
- /**
2049
- * OpenConnect protocol override (for openconnect proxy mode)
2050
- */
2051
- openconnectProtocol?: string;
2052
- /**
2053
- * OpenConnect auth group/realm (for openconnect proxy mode)
2054
- */
2055
- openconnectAuthGroup?: string;
2056
- /**
2057
- * Pre-configured TLS certificate pin for the VPN server (pin-sha256:...). Prevents MITM during VPN connection.
1985
+ * Proxy gateway preset ID (for gateway proxy mode)
2058
1986
  */
2059
- openconnectServerCertPin?: string;
1987
+ proxyGatewayPresetId?: CommonUuid;
2060
1988
  /**
2061
1989
  * Whether the captcha solver should be active (managed proxy only)
2062
1990
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "asteroid-odyssey",
3
- "version": "1.6.333",
3
+ "version": "1.6.336",
4
4
  "description": "SDK for interacting with Asteroid Agents API",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",