@crawlee/stagehand 3.16.1-beta.5 → 3.16.1-beta.50

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.
Files changed (2) hide show
  1. package/index.mjs +6 -0
  2. package/package.json +8 -8
package/index.mjs CHANGED
@@ -30,6 +30,7 @@ export const LoggerJson = mod.LoggerJson;
30
30
  export const LoggerText = mod.LoggerText;
31
31
  export const MAX_POOL_SIZE = mod.MAX_POOL_SIZE;
32
32
  export const MAX_QUERIES_FOR_CONSISTENCY = mod.MAX_QUERIES_FOR_CONSISTENCY;
33
+ export const MemoryLoadSignal = mod.MemoryLoadSignal;
33
34
  export const MissingRouteError = mod.MissingRouteError;
34
35
  export const NonRetryableError = mod.NonRetryableError;
35
36
  export const PERSIST_STATE_KEY = mod.PERSIST_STATE_KEY;
@@ -57,6 +58,7 @@ export const Session = mod.Session;
57
58
  export const SessionError = mod.SessionError;
58
59
  export const SessionPool = mod.SessionPool;
59
60
  export const SitemapRequestList = mod.SitemapRequestList;
61
+ export const SnapshotStore = mod.SnapshotStore;
60
62
  export const Snapshotter = mod.Snapshotter;
61
63
  export const StagehandCrawler = mod.StagehandCrawler;
62
64
  export const Statistics = mod.Statistics;
@@ -72,12 +74,16 @@ export const constructRegExpObjectsFromPseudoUrls = mod.constructRegExpObjectsFr
72
74
  export const constructRegExpObjectsFromRegExps = mod.constructRegExpObjectsFromRegExps;
73
75
  export const cookieStringToToughCookie = mod.cookieStringToToughCookie;
74
76
  export const createBasicRouter = mod.createBasicRouter;
77
+ export const createClientLoadSignal = mod.createClientLoadSignal;
78
+ export const createCpuLoadSignal = mod.createCpuLoadSignal;
75
79
  export const createDeserialize = mod.createDeserialize;
80
+ export const createEventLoopLoadSignal = mod.createEventLoopLoadSignal;
76
81
  export const createRequestOptions = mod.createRequestOptions;
77
82
  export const createRequests = mod.createRequests;
78
83
  export const createStagehandRouter = mod.createStagehandRouter;
79
84
  export const deserializeArray = mod.deserializeArray;
80
85
  export const enqueueLinks = mod.enqueueLinks;
86
+ export const evaluateLoadSignalSample = mod.evaluateLoadSignalSample;
81
87
  export const extractUrlsFromPage = mod.extractUrlsFromPage;
82
88
  export const filterRequestsByPatterns = mod.filterRequestsByPatterns;
83
89
  export const getCookiesFromResponse = mod.getCookiesFromResponse;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@crawlee/stagehand",
3
- "version": "3.16.1-beta.5",
3
+ "version": "3.16.1-beta.50",
4
4
  "description": "AI-powered web crawling with Stagehand integration for Crawlee - enables natural language browser automation with act(), extract(), and observe() methods.",
5
5
  "engines": {
6
6
  "node": ">=16.0.0"
@@ -58,11 +58,11 @@
58
58
  "dependencies": {
59
59
  "@apify/log": "^2.4.0",
60
60
  "@apify/timeout": "^0.3.1",
61
- "@crawlee/browser": "3.16.1-beta.5",
62
- "@crawlee/browser-pool": "3.16.1-beta.5",
63
- "@crawlee/core": "3.16.1-beta.5",
64
- "@crawlee/types": "3.16.1-beta.5",
65
- "@crawlee/utils": "3.16.1-beta.5",
61
+ "@crawlee/browser": "3.16.1-beta.50",
62
+ "@crawlee/browser-pool": "3.16.1-beta.50",
63
+ "@crawlee/core": "3.16.1-beta.50",
64
+ "@crawlee/types": "3.16.1-beta.50",
65
+ "@crawlee/utils": "3.16.1-beta.50",
66
66
  "ow": "^0.28.1",
67
67
  "tslib": "^2.4.0"
68
68
  },
@@ -84,7 +84,7 @@
84
84
  },
85
85
  "devDependencies": {
86
86
  "@browserbasehq/stagehand": "^3.0.7",
87
- "playwright": "^1.58.0",
87
+ "playwright": "^1.58.2",
88
88
  "zod": "^4.3.5"
89
89
  },
90
90
  "lerna": {
@@ -94,5 +94,5 @@
94
94
  }
95
95
  }
96
96
  },
97
- "gitHead": "6892537a0ee2ba318ba4877876112f11a89b2a1c"
97
+ "gitHead": "6d241a21c39b0415f276ec10b1d9e207580faebb"
98
98
  }