parallel-web 0.2.2 → 0.2.4
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/CHANGELOG.md +26 -0
- package/package.json +1 -1
- package/resources/beta/beta.d.mts +80 -33
- package/resources/beta/beta.d.mts.map +1 -1
- package/resources/beta/beta.d.ts +80 -33
- package/resources/beta/beta.d.ts.map +1 -1
- package/resources/beta/beta.js +7 -0
- package/resources/beta/beta.js.map +1 -1
- package/resources/beta/beta.mjs +7 -0
- package/resources/beta/beta.mjs.map +1 -1
- package/resources/beta/findall.d.mts +979 -0
- package/resources/beta/findall.d.mts.map +1 -0
- package/resources/beta/findall.d.ts +979 -0
- package/resources/beta/findall.d.ts.map +1 -0
- package/resources/beta/findall.js +155 -0
- package/resources/beta/findall.js.map +1 -0
- package/resources/beta/findall.mjs +151 -0
- package/resources/beta/findall.mjs.map +1 -0
- package/resources/beta/index.d.mts +1 -0
- package/resources/beta/index.d.mts.map +1 -1
- package/resources/beta/index.d.ts +1 -0
- package/resources/beta/index.d.ts.map +1 -1
- package/resources/beta/index.js +3 -1
- package/resources/beta/index.js.map +1 -1
- package/resources/beta/index.mjs +1 -0
- package/resources/beta/index.mjs.map +1 -1
- package/resources/beta/task-run.d.mts +1 -1
- package/resources/beta/task-run.d.mts.map +1 -1
- package/resources/beta/task-run.d.ts +1 -1
- package/resources/beta/task-run.d.ts.map +1 -1
- package/resources/shared.d.mts +6 -2
- package/resources/shared.d.mts.map +1 -1
- package/resources/shared.d.ts +6 -2
- package/resources/shared.d.ts.map +1 -1
- package/src/resources/beta/beta.ts +141 -33
- package/src/resources/beta/findall.ts +1295 -0
- package/src/resources/beta/index.ts +25 -0
- package/src/resources/beta/task-run.ts +2 -0
- package/src/resources/shared.ts +6 -2
- package/src/version.ts +1 -1
- package/version.d.mts +1 -1
- package/version.d.ts +1 -1
- package/version.js +1 -1
- package/version.mjs +1 -1
|
@@ -1,6 +1,31 @@
|
|
|
1
1
|
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
|
|
2
2
|
|
|
3
3
|
export { Beta } from './beta';
|
|
4
|
+
export {
|
|
5
|
+
Findall,
|
|
6
|
+
type FindallCandidateMatchStatusEvent,
|
|
7
|
+
type FindallEnrichInput,
|
|
8
|
+
type FindallExtendInput,
|
|
9
|
+
type FindallRun,
|
|
10
|
+
type FindallRunInput,
|
|
11
|
+
type FindallRunResult,
|
|
12
|
+
type FindallRunStatusEvent,
|
|
13
|
+
type FindallSchema,
|
|
14
|
+
type FindallSchemaUpdatedEvent,
|
|
15
|
+
type IngestInput,
|
|
16
|
+
type FindallRetrieveResponse,
|
|
17
|
+
type FindallCancelResponse,
|
|
18
|
+
type FindallEventsResponse,
|
|
19
|
+
type FindallCreateParams,
|
|
20
|
+
type FindallRetrieveParams,
|
|
21
|
+
type FindallCancelParams,
|
|
22
|
+
type FindallEnrichParams,
|
|
23
|
+
type FindallEventsParams,
|
|
24
|
+
type FindallExtendParams,
|
|
25
|
+
type FindallIngestParams,
|
|
26
|
+
type FindallResultParams,
|
|
27
|
+
type FindallSchemaParams,
|
|
28
|
+
} from './findall';
|
|
4
29
|
export {
|
|
5
30
|
TaskGroup,
|
|
6
31
|
type TaskGroupRunResponse,
|
package/src/resources/shared.ts
CHANGED
|
@@ -43,13 +43,17 @@ export interface ErrorResponse {
|
|
|
43
43
|
export interface SourcePolicy {
|
|
44
44
|
/**
|
|
45
45
|
* List of domains to exclude from results. If specified, sources from these
|
|
46
|
-
* domains will be excluded.
|
|
46
|
+
* domains will be excluded. Accepts plain domains (e.g., example.com,
|
|
47
|
+
* subdomain.example.gov) or bare domain extension starting with a period (e.g.,
|
|
48
|
+
* .gov, .edu, .co.uk).
|
|
47
49
|
*/
|
|
48
50
|
exclude_domains?: Array<string>;
|
|
49
51
|
|
|
50
52
|
/**
|
|
51
53
|
* List of domains to restrict the results to. If specified, only sources from
|
|
52
|
-
* these domains will be included.
|
|
54
|
+
* these domains will be included. Accepts plain domains (e.g., example.com,
|
|
55
|
+
* subdomain.example.gov) or bare domain extension starting with a period (e.g.,
|
|
56
|
+
* .gov, .edu, .co.uk).
|
|
53
57
|
*/
|
|
54
58
|
include_domains?: Array<string>;
|
|
55
59
|
}
|
package/src/version.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const VERSION = '0.2.
|
|
1
|
+
export const VERSION = '0.2.4'; // x-release-please-version
|
package/version.d.mts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const VERSION = "0.2.
|
|
1
|
+
export declare const VERSION = "0.2.4";
|
|
2
2
|
//# sourceMappingURL=version.d.mts.map
|
package/version.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const VERSION = "0.2.
|
|
1
|
+
export declare const VERSION = "0.2.4";
|
|
2
2
|
//# sourceMappingURL=version.d.ts.map
|
package/version.js
CHANGED
package/version.mjs
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export const VERSION = '0.2.
|
|
1
|
+
export const VERSION = '0.2.4'; // x-release-please-version
|
|
2
2
|
//# sourceMappingURL=version.mjs.map
|