asteroid-odyssey 1.6.809 → 1.6.851

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
@@ -879,7 +879,7 @@ type AgentsExecutionBrowserRunCodeStartedDetails = {
879
879
  actionName: 'browser_run_code';
880
880
  code: string;
881
881
  };
882
- type AgentsExecutionCancelReason = 'timeout' | 'max_steps' | 'user_requested' | 'script_failed';
882
+ type AgentsExecutionCancelReason = 'timeout' | 'max_steps' | 'user_requested' | 'script_failed' | 'no_activity' | 'budget_exceeded';
883
883
  type AgentsExecutionCancelledPayload = {
884
884
  reason: AgentsExecutionCancelReason;
885
885
  };
@@ -1958,6 +1958,10 @@ type AgentsProfileAgentProfile = {
1958
1958
  * Whether extra stealth mode is enabled
1959
1959
  */
1960
1960
  extraStealth: boolean;
1961
+ /**
1962
+ * Whether to allow third-party cookies
1963
+ */
1964
+ allow3rdCookies: boolean;
1961
1965
  /**
1962
1966
  * Whether to persist browser cache between sessions
1963
1967
  */
@@ -2208,6 +2212,10 @@ type AgentsProfileCreateAgentProfileRequest = {
2208
2212
  * Whether to enable extra stealth mode
2209
2213
  */
2210
2214
  extraStealth?: boolean;
2215
+ /**
2216
+ * Whether to allow third-party cookies
2217
+ */
2218
+ allow3rdCookies?: boolean;
2211
2219
  /**
2212
2220
  * Whether to persist browser cache between sessions
2213
2221
  */
@@ -2490,6 +2498,10 @@ type AgentsProfileUpdateAgentProfileRequest = {
2490
2498
  * Whether to enable extra stealth mode
2491
2499
  */
2492
2500
  extraStealth?: boolean;
2501
+ /**
2502
+ * Whether to allow third-party cookies
2503
+ */
2504
+ allow3rdCookies?: boolean;
2493
2505
  /**
2494
2506
  * Whether to persist browser cache between sessions
2495
2507
  */
package/dist/index.d.ts CHANGED
@@ -879,7 +879,7 @@ type AgentsExecutionBrowserRunCodeStartedDetails = {
879
879
  actionName: 'browser_run_code';
880
880
  code: string;
881
881
  };
882
- type AgentsExecutionCancelReason = 'timeout' | 'max_steps' | 'user_requested' | 'script_failed';
882
+ type AgentsExecutionCancelReason = 'timeout' | 'max_steps' | 'user_requested' | 'script_failed' | 'no_activity' | 'budget_exceeded';
883
883
  type AgentsExecutionCancelledPayload = {
884
884
  reason: AgentsExecutionCancelReason;
885
885
  };
@@ -1958,6 +1958,10 @@ type AgentsProfileAgentProfile = {
1958
1958
  * Whether extra stealth mode is enabled
1959
1959
  */
1960
1960
  extraStealth: boolean;
1961
+ /**
1962
+ * Whether to allow third-party cookies
1963
+ */
1964
+ allow3rdCookies: boolean;
1961
1965
  /**
1962
1966
  * Whether to persist browser cache between sessions
1963
1967
  */
@@ -2208,6 +2212,10 @@ type AgentsProfileCreateAgentProfileRequest = {
2208
2212
  * Whether to enable extra stealth mode
2209
2213
  */
2210
2214
  extraStealth?: boolean;
2215
+ /**
2216
+ * Whether to allow third-party cookies
2217
+ */
2218
+ allow3rdCookies?: boolean;
2211
2219
  /**
2212
2220
  * Whether to persist browser cache between sessions
2213
2221
  */
@@ -2490,6 +2498,10 @@ type AgentsProfileUpdateAgentProfileRequest = {
2490
2498
  * Whether to enable extra stealth mode
2491
2499
  */
2492
2500
  extraStealth?: boolean;
2501
+ /**
2502
+ * Whether to allow third-party cookies
2503
+ */
2504
+ allow3rdCookies?: boolean;
2493
2505
  /**
2494
2506
  * Whether to persist browser cache between sessions
2495
2507
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "asteroid-odyssey",
3
- "version": "1.6.809",
3
+ "version": "1.6.851",
4
4
  "description": "SDK for interacting with Asteroid Agents API",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",