@crawlee/http 4.0.0-beta.97 → 4.0.0-beta.99

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.
@@ -108,9 +108,6 @@ export interface HttpCrawlerOptions<Context extends InternalHttpCrawlingContext
108
108
  */
109
109
  saveResponseCookies?: boolean;
110
110
  }
111
- /**
112
- * @internal
113
- */
114
111
  export type InternalHttpHook<Context, ContextExtension = {}> = (crawlingContext: Context & ContextExtension) => Awaitable<void | Partial<Context>>;
115
112
  export type HttpHook<UserData extends Dictionary = any, // with default to Dictionary we cant use a typed router in untyped crawler
116
113
  JSONData extends JsonValue = any> = InternalHttpHook<HttpCrawlingContext<UserData, JSONData>>;
@@ -124,9 +121,6 @@ interface CrawlingContextWithResponse<UserData extends Dictionary = any> extends
124
121
  */
125
122
  response: Response;
126
123
  }
127
- /**
128
- * @internal
129
- */
130
124
  export interface InternalHttpCrawlingContext<UserData extends Dictionary = any, // with default to Dictionary we cant use a typed router in untyped crawler
131
125
  JSONData extends JsonValue = any> extends CrawlingContextWithResponse<UserData> {
132
126
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@crawlee/http",
3
- "version": "4.0.0-beta.97",
3
+ "version": "4.0.0-beta.99",
4
4
  "description": "The scalable web crawling and scraping library for JavaScript/Node.js. Enables development of data extraction and web automation jobs (not only) with headless Chrome and Puppeteer.",
5
5
  "engines": {
6
6
  "node": ">=22.0.0"
@@ -49,11 +49,11 @@
49
49
  "dependencies": {
50
50
  "@apify/timeout": "^0.4.4",
51
51
  "@apify/utilities": "^2.15.5",
52
- "@crawlee/basic": "4.0.0-beta.97",
53
- "@crawlee/core": "4.0.0-beta.97",
54
- "@crawlee/http-client": "4.0.0-beta.97",
55
- "@crawlee/types": "4.0.0-beta.97",
56
- "@crawlee/utils": "4.0.0-beta.97",
52
+ "@crawlee/basic": "4.0.0-beta.99",
53
+ "@crawlee/core": "4.0.0-beta.99",
54
+ "@crawlee/http-client": "4.0.0-beta.99",
55
+ "@crawlee/types": "4.0.0-beta.99",
56
+ "@crawlee/utils": "4.0.0-beta.99",
57
57
  "@types/content-type": "^1.1.8",
58
58
  "cheerio": "^1.0.0",
59
59
  "content-type": "^1.0.5",
@@ -70,5 +70,5 @@
70
70
  }
71
71
  }
72
72
  },
73
- "gitHead": "43008dd43f4832d083353ba1b731c0b4607c9cfa"
73
+ "gitHead": "ad2748380941842bb10cff100f4b4caad92049e3"
74
74
  }