@xcrap/got-scraping-client 0.1.0 → 0.1.1
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.ts +3 -2
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -3,10 +3,11 @@ import { ExtendedExtendOptions, GotScraping } from "got-scraping";
|
|
|
3
3
|
export type GotScrapingProxy = string;
|
|
4
4
|
export type GotScrapingRequestOptions = ClientRequestOptions & ExtendedExtendOptions;
|
|
5
5
|
export type GotScrapingFetchManyOptions = ClientFetchManyOptions<GotScrapingRequestOptions>;
|
|
6
|
-
export
|
|
6
|
+
export interface GotScrapingClientOptions extends BaseClientOptions<GotScrapingProxy>, Omit<ExtendedExtendOptions, "proxyUrl"> {
|
|
7
|
+
}
|
|
7
8
|
export declare class GotScrapingClient extends BaseClient<GotScrapingProxy> implements ClientInterface {
|
|
8
|
-
readonly options: GotScrapingClientOptions;
|
|
9
9
|
protected gotScrapingInstance: GotScraping | undefined;
|
|
10
|
+
protected readonly options: GotScrapingClientOptions;
|
|
10
11
|
constructor(options?: GotScrapingClientOptions);
|
|
11
12
|
protected initGotScraping(): Promise<void>;
|
|
12
13
|
protected ensureGotScraping(): Promise<void>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@xcrap/got-scraping-client",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"description": "Xcrap Got Scraping Client is a package of the Xcrap framework that implements an HTTP client using the Got Scraping library.",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"module": "./dist/index.js",
|