parallel-web 0.2.3 → 0.3.0
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 +38 -0
- package/LICENSE +1 -1
- package/client.d.mts +1 -1
- package/client.d.mts.map +1 -1
- package/client.d.ts +1 -1
- package/client.d.ts.map +1 -1
- package/package.json +1 -1
- package/resources/beta/beta.d.mts +17 -6
- package/resources/beta/beta.d.mts.map +1 -1
- package/resources/beta/beta.d.ts +17 -6
- package/resources/beta/beta.d.ts.map +1 -1
- package/resources/beta/beta.js +4 -0
- package/resources/beta/beta.js.map +1 -1
- package/resources/beta/beta.mjs +4 -0
- package/resources/beta/beta.mjs.map +1 -1
- package/resources/beta/findall.d.mts +669 -0
- package/resources/beta/findall.d.mts.map +1 -0
- package/resources/beta/findall.d.ts +669 -0
- package/resources/beta/findall.d.ts.map +1 -0
- package/resources/beta/findall.js +164 -0
- package/resources/beta/findall.js.map +1 -0
- package/resources/beta/findall.mjs +159 -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 +4 -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-group.d.mts +3 -3
- package/resources/beta/task-group.d.ts +3 -3
- package/resources/beta/task-run.d.mts +12 -8
- package/resources/beta/task-run.d.mts.map +1 -1
- package/resources/beta/task-run.d.ts +12 -8
- package/resources/beta/task-run.d.ts.map +1 -1
- package/resources/shared.d.mts +7 -1
- package/resources/shared.d.mts.map +1 -1
- package/resources/shared.d.ts +7 -1
- package/resources/shared.d.ts.map +1 -1
- package/resources/task-run.d.mts +4 -2
- package/resources/task-run.d.mts.map +1 -1
- package/resources/task-run.d.ts +4 -2
- package/resources/task-run.d.ts.map +1 -1
- package/src/client.ts +1 -1
- package/src/resources/beta/beta.ts +67 -7
- package/src/resources/beta/findall.ts +945 -0
- package/src/resources/beta/index.ts +46 -0
- package/src/resources/beta/task-group.ts +3 -3
- package/src/resources/beta/task-run.ts +14 -7
- package/src/resources/shared.ts +8 -1
- package/src/resources/task-run.ts +4 -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
|
@@ -0,0 +1,669 @@
|
|
|
1
|
+
import { APIResource } from "../../core/resource.js";
|
|
2
|
+
import * as TaskRunAPI from "../task-run.js";
|
|
3
|
+
import * as BetaTaskRunAPI from "./task-run.js";
|
|
4
|
+
import { APIPromise } from "../../core/api-promise.js";
|
|
5
|
+
import { Stream } from "../../core/streaming.js";
|
|
6
|
+
import { RequestOptions } from "../../internal/request-options.js";
|
|
7
|
+
export declare class FindAll extends APIResource {
|
|
8
|
+
/**
|
|
9
|
+
* Starts a FindAll run.
|
|
10
|
+
*
|
|
11
|
+
* This endpoint immediately returns a FindAll run object with status set to
|
|
12
|
+
* 'queued'. You can get the run result snapshot using the GET
|
|
13
|
+
* /v1beta/findall/runs/{findall_id}/result endpoint. You can track the progress of
|
|
14
|
+
* the run by:
|
|
15
|
+
*
|
|
16
|
+
* - Polling the status using the GET /v1beta/findall/runs/{findall_id} endpoint,
|
|
17
|
+
* - Subscribing to real-time updates via the
|
|
18
|
+
* /v1beta/findall/runs/{findall_id}/events endpoint,
|
|
19
|
+
* - Or specifying a webhook with relevant event types during run creation to
|
|
20
|
+
* receive notifications.
|
|
21
|
+
*/
|
|
22
|
+
create(params: FindAllCreateParams, options?: RequestOptions): APIPromise<FindAllRun>;
|
|
23
|
+
/**
|
|
24
|
+
* Retrieve a FindAll run.
|
|
25
|
+
*/
|
|
26
|
+
retrieve(findallID: string, params?: FindAllRetrieveParams | null | undefined, options?: RequestOptions): APIPromise<FindAllRun>;
|
|
27
|
+
/**
|
|
28
|
+
* Cancel a FindAll run.
|
|
29
|
+
*/
|
|
30
|
+
cancel(findallID: string, params?: FindAllCancelParams | null | undefined, options?: RequestOptions): APIPromise<unknown>;
|
|
31
|
+
/**
|
|
32
|
+
* Add an enrichment to a FindAll run.
|
|
33
|
+
*/
|
|
34
|
+
enrich(findallID: string, params: FindAllEnrichParams, options?: RequestOptions): APIPromise<FindAllSchema>;
|
|
35
|
+
/**
|
|
36
|
+
* Stream events from a FindAll run.
|
|
37
|
+
*
|
|
38
|
+
* Args: request: The Shapi request findall_id: The FindAll run ID last_event_id:
|
|
39
|
+
* Optional event ID to resume from. timeout: Optional timeout in seconds. If None,
|
|
40
|
+
* keep connection alive as long as the run is going. If set, stop after specified
|
|
41
|
+
* duration.
|
|
42
|
+
*/
|
|
43
|
+
events(findallID: string, params?: FindAllEventsParams | undefined, options?: RequestOptions): APIPromise<Stream<FindAllEventsResponse>>;
|
|
44
|
+
/**
|
|
45
|
+
* Extend a FindAll run by adding additional matches to the current match limit.
|
|
46
|
+
*/
|
|
47
|
+
extend(findallID: string, params: FindAllExtendParams, options?: RequestOptions): APIPromise<FindAllSchema>;
|
|
48
|
+
/**
|
|
49
|
+
* Transforms a natural language search objective into a structured FindAll spec.
|
|
50
|
+
*
|
|
51
|
+
* Note: Access to this endpoint requires the parallel-beta header.
|
|
52
|
+
*
|
|
53
|
+
* The generated specification serves as a suggested starting point and can be
|
|
54
|
+
* further customized by the user.
|
|
55
|
+
*/
|
|
56
|
+
ingest(params: FindAllIngestParams, options?: RequestOptions): APIPromise<FindAllSchema>;
|
|
57
|
+
/**
|
|
58
|
+
* Retrieve the FindAll run result at the time of the request.
|
|
59
|
+
*/
|
|
60
|
+
result(findallID: string, params?: FindAllResultParams | null | undefined, options?: RequestOptions): APIPromise<FindAllRunResult>;
|
|
61
|
+
/**
|
|
62
|
+
* Get FindAll Run Schema
|
|
63
|
+
*/
|
|
64
|
+
schema(findallID: string, params?: FindAllSchemaParams | null | undefined, options?: RequestOptions): APIPromise<FindAllSchema>;
|
|
65
|
+
}
|
|
66
|
+
/**
|
|
67
|
+
* Event containing a candidate whose match status has changed.
|
|
68
|
+
*/
|
|
69
|
+
export interface FindAllCandidateMatchStatusEvent {
|
|
70
|
+
/**
|
|
71
|
+
* The candidate whose match status has been updated.
|
|
72
|
+
*/
|
|
73
|
+
data: FindAllCandidateMatchStatusEvent.Data;
|
|
74
|
+
/**
|
|
75
|
+
* Unique event identifier for the event.
|
|
76
|
+
*/
|
|
77
|
+
event_id: string;
|
|
78
|
+
/**
|
|
79
|
+
* Timestamp of the event.
|
|
80
|
+
*/
|
|
81
|
+
timestamp: string;
|
|
82
|
+
/**
|
|
83
|
+
* Event type; one of findall.candidate.generated, findall.candidate.matched,
|
|
84
|
+
* findall.candidate.unmatched, findall.candidate.discarded,
|
|
85
|
+
* findall.candidate.enriched.
|
|
86
|
+
*/
|
|
87
|
+
type: 'findall.candidate.generated' | 'findall.candidate.matched' | 'findall.candidate.unmatched' | 'findall.candidate.discarded' | 'findall.candidate.enriched';
|
|
88
|
+
}
|
|
89
|
+
export declare namespace FindAllCandidateMatchStatusEvent {
|
|
90
|
+
/**
|
|
91
|
+
* The candidate whose match status has been updated.
|
|
92
|
+
*/
|
|
93
|
+
interface Data {
|
|
94
|
+
/**
|
|
95
|
+
* ID of the candidate.
|
|
96
|
+
*/
|
|
97
|
+
candidate_id: string;
|
|
98
|
+
/**
|
|
99
|
+
* Status of the candidate. One of generated, matched, unmatched, discarded.
|
|
100
|
+
*/
|
|
101
|
+
match_status: 'generated' | 'matched' | 'unmatched' | 'discarded';
|
|
102
|
+
/**
|
|
103
|
+
* Name of the candidate.
|
|
104
|
+
*/
|
|
105
|
+
name: string;
|
|
106
|
+
/**
|
|
107
|
+
* URL that provides context or details of the entity for disambiguation.
|
|
108
|
+
*/
|
|
109
|
+
url: string;
|
|
110
|
+
/**
|
|
111
|
+
* List of FieldBasis objects supporting the output.
|
|
112
|
+
*/
|
|
113
|
+
basis?: Array<TaskRunAPI.FieldBasis> | null;
|
|
114
|
+
/**
|
|
115
|
+
* Brief description of the entity that can help answer whether entity satisfies
|
|
116
|
+
* the query.
|
|
117
|
+
*/
|
|
118
|
+
description?: string | null;
|
|
119
|
+
/**
|
|
120
|
+
* Results of the match condition evaluations for this candidate. This object
|
|
121
|
+
* contains the structured output that determines whether the candidate matches the
|
|
122
|
+
* overall FindAll objective.
|
|
123
|
+
*/
|
|
124
|
+
output?: {
|
|
125
|
+
[key: string]: unknown;
|
|
126
|
+
} | null;
|
|
127
|
+
}
|
|
128
|
+
}
|
|
129
|
+
/**
|
|
130
|
+
* Input model for FindAll enrich.
|
|
131
|
+
*/
|
|
132
|
+
export interface FindAllEnrichInput {
|
|
133
|
+
/**
|
|
134
|
+
* JSON schema for the enrichment output schema for the FindAll run.
|
|
135
|
+
*/
|
|
136
|
+
output_schema: TaskRunAPI.JsonSchema;
|
|
137
|
+
/**
|
|
138
|
+
* List of MCP servers to use for the task.
|
|
139
|
+
*/
|
|
140
|
+
mcp_servers?: Array<BetaTaskRunAPI.McpServer> | null;
|
|
141
|
+
/**
|
|
142
|
+
* Processor to use for the task.
|
|
143
|
+
*/
|
|
144
|
+
processor?: string;
|
|
145
|
+
}
|
|
146
|
+
/**
|
|
147
|
+
* Input model for FindAll extend.
|
|
148
|
+
*/
|
|
149
|
+
export interface FindAllExtendInput {
|
|
150
|
+
/**
|
|
151
|
+
* Additional number of matches to find for this FindAll run. This value will be
|
|
152
|
+
* added to the current match limit to determine the new total match limit. Must be
|
|
153
|
+
* greater than 0.
|
|
154
|
+
*/
|
|
155
|
+
additional_match_limit: number;
|
|
156
|
+
}
|
|
157
|
+
/**
|
|
158
|
+
* FindAll run object with status and metadata.
|
|
159
|
+
*/
|
|
160
|
+
export interface FindAllRun {
|
|
161
|
+
/**
|
|
162
|
+
* ID of the FindAll run.
|
|
163
|
+
*/
|
|
164
|
+
findall_id: string;
|
|
165
|
+
/**
|
|
166
|
+
* Generator for the FindAll run.
|
|
167
|
+
*/
|
|
168
|
+
generator: 'base' | 'core' | 'pro' | 'preview';
|
|
169
|
+
/**
|
|
170
|
+
* Status object for the FindAll run.
|
|
171
|
+
*/
|
|
172
|
+
status: FindAllRun.Status;
|
|
173
|
+
/**
|
|
174
|
+
* Timestamp of the creation of the run, in RFC 3339 format.
|
|
175
|
+
*/
|
|
176
|
+
created_at?: string | null;
|
|
177
|
+
/**
|
|
178
|
+
* Metadata for the FindAll run.
|
|
179
|
+
*/
|
|
180
|
+
metadata?: {
|
|
181
|
+
[key: string]: string | number | boolean;
|
|
182
|
+
} | null;
|
|
183
|
+
/**
|
|
184
|
+
* Timestamp of the latest modification to the FindAll run result, in RFC 3339
|
|
185
|
+
* format.
|
|
186
|
+
*/
|
|
187
|
+
modified_at?: string | null;
|
|
188
|
+
}
|
|
189
|
+
export declare namespace FindAllRun {
|
|
190
|
+
/**
|
|
191
|
+
* Status object for the FindAll run.
|
|
192
|
+
*/
|
|
193
|
+
interface Status {
|
|
194
|
+
/**
|
|
195
|
+
* Whether the FindAll run is active
|
|
196
|
+
*/
|
|
197
|
+
is_active: boolean;
|
|
198
|
+
/**
|
|
199
|
+
* Candidate metrics for the FindAll run.
|
|
200
|
+
*/
|
|
201
|
+
metrics: Status.Metrics;
|
|
202
|
+
/**
|
|
203
|
+
* Status of the FindAll run.
|
|
204
|
+
*/
|
|
205
|
+
status: 'queued' | 'action_required' | 'running' | 'completed' | 'failed' | 'cancelling' | 'cancelled';
|
|
206
|
+
/**
|
|
207
|
+
* Reason for termination when FindAll run is in terminal status.
|
|
208
|
+
*/
|
|
209
|
+
termination_reason?: 'low_match_rate' | 'match_limit_met' | 'candidates_exhausted' | 'user_cancelled' | 'error_occurred' | 'timeout' | null;
|
|
210
|
+
}
|
|
211
|
+
namespace Status {
|
|
212
|
+
/**
|
|
213
|
+
* Candidate metrics for the FindAll run.
|
|
214
|
+
*/
|
|
215
|
+
interface Metrics {
|
|
216
|
+
/**
|
|
217
|
+
* Number of candidates that were selected.
|
|
218
|
+
*/
|
|
219
|
+
generated_candidates_count?: number;
|
|
220
|
+
/**
|
|
221
|
+
* Number of candidates that evaluated to matched.
|
|
222
|
+
*/
|
|
223
|
+
matched_candidates_count?: number;
|
|
224
|
+
}
|
|
225
|
+
}
|
|
226
|
+
}
|
|
227
|
+
/**
|
|
228
|
+
* Input model for FindAll run.
|
|
229
|
+
*/
|
|
230
|
+
export interface FindAllRunInput {
|
|
231
|
+
/**
|
|
232
|
+
* Type of the entity for the FindAll run.
|
|
233
|
+
*/
|
|
234
|
+
entity_type: string;
|
|
235
|
+
/**
|
|
236
|
+
* Generator for the FindAll run. One of base, core, pro, preview.
|
|
237
|
+
*/
|
|
238
|
+
generator: 'base' | 'core' | 'pro' | 'preview';
|
|
239
|
+
/**
|
|
240
|
+
* List of match conditions for the FindAll run.
|
|
241
|
+
*/
|
|
242
|
+
match_conditions: Array<FindAllRunInput.MatchCondition>;
|
|
243
|
+
/**
|
|
244
|
+
* Maximum number of matches to find for this FindAll run. Must be between 5 and
|
|
245
|
+
* 1000 (inclusive).
|
|
246
|
+
*/
|
|
247
|
+
match_limit: number;
|
|
248
|
+
/**
|
|
249
|
+
* Natural language objective of the FindAll run.
|
|
250
|
+
*/
|
|
251
|
+
objective: string;
|
|
252
|
+
/**
|
|
253
|
+
* List of entity names/IDs to exclude from results.
|
|
254
|
+
*/
|
|
255
|
+
exclude_list?: Array<FindAllRunInput.ExcludeList> | null;
|
|
256
|
+
/**
|
|
257
|
+
* Metadata for the FindAll run.
|
|
258
|
+
*/
|
|
259
|
+
metadata?: {
|
|
260
|
+
[key: string]: string | number | boolean;
|
|
261
|
+
} | null;
|
|
262
|
+
/**
|
|
263
|
+
* Webhooks for Task Runs.
|
|
264
|
+
*/
|
|
265
|
+
webhook?: BetaTaskRunAPI.Webhook | null;
|
|
266
|
+
}
|
|
267
|
+
export declare namespace FindAllRunInput {
|
|
268
|
+
/**
|
|
269
|
+
* Match condition model for FindAll ingest.
|
|
270
|
+
*/
|
|
271
|
+
interface MatchCondition {
|
|
272
|
+
/**
|
|
273
|
+
* Detailed description of the match condition. Include as much specific
|
|
274
|
+
* information as possible to help improve the quality and accuracy of Find All run
|
|
275
|
+
* results.
|
|
276
|
+
*/
|
|
277
|
+
description: string;
|
|
278
|
+
/**
|
|
279
|
+
* Name of the match condition.
|
|
280
|
+
*/
|
|
281
|
+
name: string;
|
|
282
|
+
}
|
|
283
|
+
/**
|
|
284
|
+
* Exclude candidate input model for FindAll run.
|
|
285
|
+
*/
|
|
286
|
+
interface ExcludeList {
|
|
287
|
+
/**
|
|
288
|
+
* Name of the entity to exclude from results.
|
|
289
|
+
*/
|
|
290
|
+
name: string;
|
|
291
|
+
/**
|
|
292
|
+
* URL of the entity to exclude from results.
|
|
293
|
+
*/
|
|
294
|
+
url: string;
|
|
295
|
+
}
|
|
296
|
+
}
|
|
297
|
+
/**
|
|
298
|
+
* Complete FindAll search results.
|
|
299
|
+
*
|
|
300
|
+
* Represents a snapshot of a FindAll run, including run metadata and a list of
|
|
301
|
+
* candidate entities with their match status and details at the time the snapshot
|
|
302
|
+
* was taken.
|
|
303
|
+
*/
|
|
304
|
+
export interface FindAllRunResult {
|
|
305
|
+
/**
|
|
306
|
+
* All evaluated candidates at the time of the snapshot.
|
|
307
|
+
*/
|
|
308
|
+
candidates: Array<FindAllRunResult.Candidate>;
|
|
309
|
+
/**
|
|
310
|
+
* FindAll run object.
|
|
311
|
+
*/
|
|
312
|
+
run: FindAllRun;
|
|
313
|
+
/**
|
|
314
|
+
* ID of the last event of the run at the time of the request. This can be used to
|
|
315
|
+
* resume streaming from the last event.
|
|
316
|
+
*/
|
|
317
|
+
last_event_id?: string | null;
|
|
318
|
+
}
|
|
319
|
+
export declare namespace FindAllRunResult {
|
|
320
|
+
/**
|
|
321
|
+
* Candidate for a find all run that may end up as a match.
|
|
322
|
+
*
|
|
323
|
+
* Contains all the candidate's metadata and the output of the match conditions. A
|
|
324
|
+
* candidate is a match if all match conditions are satisfied.
|
|
325
|
+
*/
|
|
326
|
+
interface Candidate {
|
|
327
|
+
/**
|
|
328
|
+
* ID of the candidate.
|
|
329
|
+
*/
|
|
330
|
+
candidate_id: string;
|
|
331
|
+
/**
|
|
332
|
+
* Status of the candidate. One of generated, matched, unmatched, discarded.
|
|
333
|
+
*/
|
|
334
|
+
match_status: 'generated' | 'matched' | 'unmatched' | 'discarded';
|
|
335
|
+
/**
|
|
336
|
+
* Name of the candidate.
|
|
337
|
+
*/
|
|
338
|
+
name: string;
|
|
339
|
+
/**
|
|
340
|
+
* URL that provides context or details of the entity for disambiguation.
|
|
341
|
+
*/
|
|
342
|
+
url: string;
|
|
343
|
+
/**
|
|
344
|
+
* List of FieldBasis objects supporting the output.
|
|
345
|
+
*/
|
|
346
|
+
basis?: Array<TaskRunAPI.FieldBasis> | null;
|
|
347
|
+
/**
|
|
348
|
+
* Brief description of the entity that can help answer whether entity satisfies
|
|
349
|
+
* the query.
|
|
350
|
+
*/
|
|
351
|
+
description?: string | null;
|
|
352
|
+
/**
|
|
353
|
+
* Results of the match condition evaluations for this candidate. This object
|
|
354
|
+
* contains the structured output that determines whether the candidate matches the
|
|
355
|
+
* overall FindAll objective.
|
|
356
|
+
*/
|
|
357
|
+
output?: {
|
|
358
|
+
[key: string]: unknown;
|
|
359
|
+
} | null;
|
|
360
|
+
}
|
|
361
|
+
}
|
|
362
|
+
/**
|
|
363
|
+
* Event containing status update for FindAll run.
|
|
364
|
+
*/
|
|
365
|
+
export interface FindAllRunStatusEvent {
|
|
366
|
+
/**
|
|
367
|
+
* Updated FindAll run information.
|
|
368
|
+
*/
|
|
369
|
+
data: FindAllRun;
|
|
370
|
+
/**
|
|
371
|
+
* Unique event identifier for the event.
|
|
372
|
+
*/
|
|
373
|
+
event_id: string;
|
|
374
|
+
/**
|
|
375
|
+
* Timestamp of the event.
|
|
376
|
+
*/
|
|
377
|
+
timestamp: string;
|
|
378
|
+
/**
|
|
379
|
+
* Event type; always 'findall.status'.
|
|
380
|
+
*/
|
|
381
|
+
type: 'findall.status';
|
|
382
|
+
}
|
|
383
|
+
/**
|
|
384
|
+
* Response model for FindAll ingest.
|
|
385
|
+
*/
|
|
386
|
+
export interface FindAllSchema {
|
|
387
|
+
/**
|
|
388
|
+
* Type of the entity for the FindAll run.
|
|
389
|
+
*/
|
|
390
|
+
entity_type: string;
|
|
391
|
+
/**
|
|
392
|
+
* List of match conditions for the FindAll run.
|
|
393
|
+
*/
|
|
394
|
+
match_conditions: Array<FindAllSchema.MatchCondition>;
|
|
395
|
+
/**
|
|
396
|
+
* Natural language objective of the FindAll run.
|
|
397
|
+
*/
|
|
398
|
+
objective: string;
|
|
399
|
+
/**
|
|
400
|
+
* List of enrichment inputs for the FindAll run.
|
|
401
|
+
*/
|
|
402
|
+
enrichments?: Array<FindAllEnrichInput> | null;
|
|
403
|
+
/**
|
|
404
|
+
* The generator of the FindAll run.
|
|
405
|
+
*/
|
|
406
|
+
generator?: 'base' | 'core' | 'pro' | 'preview';
|
|
407
|
+
/**
|
|
408
|
+
* Max number of candidates to evaluate
|
|
409
|
+
*/
|
|
410
|
+
match_limit?: number | null;
|
|
411
|
+
}
|
|
412
|
+
export declare namespace FindAllSchema {
|
|
413
|
+
/**
|
|
414
|
+
* Match condition model for FindAll ingest.
|
|
415
|
+
*/
|
|
416
|
+
interface MatchCondition {
|
|
417
|
+
/**
|
|
418
|
+
* Detailed description of the match condition. Include as much specific
|
|
419
|
+
* information as possible to help improve the quality and accuracy of Find All run
|
|
420
|
+
* results.
|
|
421
|
+
*/
|
|
422
|
+
description: string;
|
|
423
|
+
/**
|
|
424
|
+
* Name of the match condition.
|
|
425
|
+
*/
|
|
426
|
+
name: string;
|
|
427
|
+
}
|
|
428
|
+
}
|
|
429
|
+
/**
|
|
430
|
+
* Event containing full snapshot of FindAll run state.
|
|
431
|
+
*/
|
|
432
|
+
export interface FindAllSchemaUpdatedEvent {
|
|
433
|
+
/**
|
|
434
|
+
* Updated FindAll schema.
|
|
435
|
+
*/
|
|
436
|
+
data: FindAllSchema;
|
|
437
|
+
/**
|
|
438
|
+
* Unique event identifier for the event.
|
|
439
|
+
*/
|
|
440
|
+
event_id: string;
|
|
441
|
+
/**
|
|
442
|
+
* Timestamp of the event.
|
|
443
|
+
*/
|
|
444
|
+
timestamp: string;
|
|
445
|
+
/**
|
|
446
|
+
* Event type; always 'findall.schema.updated'.
|
|
447
|
+
*/
|
|
448
|
+
type: 'findall.schema.updated';
|
|
449
|
+
}
|
|
450
|
+
/**
|
|
451
|
+
* Input model for FindAll ingest.
|
|
452
|
+
*/
|
|
453
|
+
export interface IngestInput {
|
|
454
|
+
/**
|
|
455
|
+
* Natural language objective to create a FindAll run spec.
|
|
456
|
+
*/
|
|
457
|
+
objective: string;
|
|
458
|
+
}
|
|
459
|
+
export type FindAllCancelResponse = unknown;
|
|
460
|
+
/**
|
|
461
|
+
* Event containing full snapshot of FindAll run state.
|
|
462
|
+
*/
|
|
463
|
+
export type FindAllEventsResponse = FindAllSchemaUpdatedEvent | FindAllRunStatusEvent | FindAllCandidateMatchStatusEvent | BetaTaskRunAPI.ErrorEvent;
|
|
464
|
+
export interface FindAllCreateParams {
|
|
465
|
+
/**
|
|
466
|
+
* Body param: Type of the entity for the FindAll run.
|
|
467
|
+
*/
|
|
468
|
+
entity_type: string;
|
|
469
|
+
/**
|
|
470
|
+
* Body param: Generator for the FindAll run. One of base, core, pro, preview.
|
|
471
|
+
*/
|
|
472
|
+
generator: 'base' | 'core' | 'pro' | 'preview';
|
|
473
|
+
/**
|
|
474
|
+
* Body param: List of match conditions for the FindAll run.
|
|
475
|
+
*/
|
|
476
|
+
match_conditions: Array<FindAllCreateParams.MatchCondition>;
|
|
477
|
+
/**
|
|
478
|
+
* Body param: Maximum number of matches to find for this FindAll run. Must be
|
|
479
|
+
* between 5 and 1000 (inclusive).
|
|
480
|
+
*/
|
|
481
|
+
match_limit: number;
|
|
482
|
+
/**
|
|
483
|
+
* Body param: Natural language objective of the FindAll run.
|
|
484
|
+
*/
|
|
485
|
+
objective: string;
|
|
486
|
+
/**
|
|
487
|
+
* Body param: List of entity names/IDs to exclude from results.
|
|
488
|
+
*/
|
|
489
|
+
exclude_list?: Array<FindAllCreateParams.ExcludeList> | null;
|
|
490
|
+
/**
|
|
491
|
+
* Body param: Metadata for the FindAll run.
|
|
492
|
+
*/
|
|
493
|
+
metadata?: {
|
|
494
|
+
[key: string]: string | number | boolean;
|
|
495
|
+
} | null;
|
|
496
|
+
/**
|
|
497
|
+
* Body param: Webhooks for Task Runs.
|
|
498
|
+
*/
|
|
499
|
+
webhook?: BetaTaskRunAPI.Webhook | null;
|
|
500
|
+
/**
|
|
501
|
+
* Header param: Optional header to specify the beta version(s) to enable.
|
|
502
|
+
*/
|
|
503
|
+
betas?: Array<BetaTaskRunAPI.ParallelBeta>;
|
|
504
|
+
}
|
|
505
|
+
export declare namespace FindAllCreateParams {
|
|
506
|
+
/**
|
|
507
|
+
* Match condition model for FindAll ingest.
|
|
508
|
+
*/
|
|
509
|
+
interface MatchCondition {
|
|
510
|
+
/**
|
|
511
|
+
* Detailed description of the match condition. Include as much specific
|
|
512
|
+
* information as possible to help improve the quality and accuracy of Find All run
|
|
513
|
+
* results.
|
|
514
|
+
*/
|
|
515
|
+
description: string;
|
|
516
|
+
/**
|
|
517
|
+
* Name of the match condition.
|
|
518
|
+
*/
|
|
519
|
+
name: string;
|
|
520
|
+
}
|
|
521
|
+
/**
|
|
522
|
+
* Exclude candidate input model for FindAll run.
|
|
523
|
+
*/
|
|
524
|
+
interface ExcludeList {
|
|
525
|
+
/**
|
|
526
|
+
* Name of the entity to exclude from results.
|
|
527
|
+
*/
|
|
528
|
+
name: string;
|
|
529
|
+
/**
|
|
530
|
+
* URL of the entity to exclude from results.
|
|
531
|
+
*/
|
|
532
|
+
url: string;
|
|
533
|
+
}
|
|
534
|
+
}
|
|
535
|
+
export interface FindAllRetrieveParams {
|
|
536
|
+
/**
|
|
537
|
+
* Optional header to specify the beta version(s) to enable.
|
|
538
|
+
*/
|
|
539
|
+
betas?: Array<BetaTaskRunAPI.ParallelBeta>;
|
|
540
|
+
}
|
|
541
|
+
export interface FindAllCancelParams {
|
|
542
|
+
/**
|
|
543
|
+
* Optional header to specify the beta version(s) to enable.
|
|
544
|
+
*/
|
|
545
|
+
betas?: Array<BetaTaskRunAPI.ParallelBeta>;
|
|
546
|
+
}
|
|
547
|
+
export interface FindAllEnrichParams {
|
|
548
|
+
/**
|
|
549
|
+
* Body param: JSON schema for the enrichment output schema for the FindAll run.
|
|
550
|
+
*/
|
|
551
|
+
output_schema: TaskRunAPI.JsonSchema;
|
|
552
|
+
/**
|
|
553
|
+
* Body param: List of MCP servers to use for the task.
|
|
554
|
+
*/
|
|
555
|
+
mcp_servers?: Array<BetaTaskRunAPI.McpServer> | null;
|
|
556
|
+
/**
|
|
557
|
+
* Body param: Processor to use for the task.
|
|
558
|
+
*/
|
|
559
|
+
processor?: string;
|
|
560
|
+
/**
|
|
561
|
+
* Header param: Optional header to specify the beta version(s) to enable.
|
|
562
|
+
*/
|
|
563
|
+
betas?: Array<BetaTaskRunAPI.ParallelBeta>;
|
|
564
|
+
}
|
|
565
|
+
export interface FindAllEventsParams {
|
|
566
|
+
/**
|
|
567
|
+
* Query param:
|
|
568
|
+
*/
|
|
569
|
+
last_event_id?: string | null;
|
|
570
|
+
/**
|
|
571
|
+
* Query param:
|
|
572
|
+
*/
|
|
573
|
+
timeout?: number | null;
|
|
574
|
+
/**
|
|
575
|
+
* Header param: Optional header to specify the beta version(s) to enable.
|
|
576
|
+
*/
|
|
577
|
+
betas?: Array<BetaTaskRunAPI.ParallelBeta>;
|
|
578
|
+
}
|
|
579
|
+
export interface FindAllExtendParams {
|
|
580
|
+
/**
|
|
581
|
+
* Body param: Additional number of matches to find for this FindAll run. This
|
|
582
|
+
* value will be added to the current match limit to determine the new total match
|
|
583
|
+
* limit. Must be greater than 0.
|
|
584
|
+
*/
|
|
585
|
+
additional_match_limit: number;
|
|
586
|
+
/**
|
|
587
|
+
* Header param: Optional header to specify the beta version(s) to enable.
|
|
588
|
+
*/
|
|
589
|
+
betas?: Array<BetaTaskRunAPI.ParallelBeta>;
|
|
590
|
+
}
|
|
591
|
+
export interface FindAllIngestParams {
|
|
592
|
+
/**
|
|
593
|
+
* Body param: Natural language objective to create a FindAll run spec.
|
|
594
|
+
*/
|
|
595
|
+
objective: string;
|
|
596
|
+
/**
|
|
597
|
+
* Header param: Optional header to specify the beta version(s) to enable.
|
|
598
|
+
*/
|
|
599
|
+
betas?: Array<BetaTaskRunAPI.ParallelBeta>;
|
|
600
|
+
}
|
|
601
|
+
export interface FindAllResultParams {
|
|
602
|
+
/**
|
|
603
|
+
* Optional header to specify the beta version(s) to enable.
|
|
604
|
+
*/
|
|
605
|
+
betas?: Array<BetaTaskRunAPI.ParallelBeta>;
|
|
606
|
+
}
|
|
607
|
+
export interface FindAllSchemaParams {
|
|
608
|
+
/**
|
|
609
|
+
* Optional header to specify the beta version(s) to enable.
|
|
610
|
+
*/
|
|
611
|
+
betas?: Array<BetaTaskRunAPI.ParallelBeta>;
|
|
612
|
+
}
|
|
613
|
+
export declare namespace FindAll {
|
|
614
|
+
export { type FindAllCandidateMatchStatusEvent as FindAllCandidateMatchStatusEvent, type FindAllEnrichInput as FindAllEnrichInput, type FindAllExtendInput as FindAllExtendInput, type FindAllRun as FindAllRun, type FindAllRunInput as FindAllRunInput, type FindAllRunResult as FindAllRunResult, type FindAllRunStatusEvent as FindAllRunStatusEvent, type FindAllSchema as FindAllSchema, type FindAllSchemaUpdatedEvent as FindAllSchemaUpdatedEvent, type IngestInput as IngestInput, type FindAllCancelResponse as FindAllCancelResponse, type FindAllEventsResponse as FindAllEventsResponse, type FindAllCreateParams as FindAllCreateParams, type FindAllRetrieveParams as FindAllRetrieveParams, type FindAllCancelParams as FindAllCancelParams, type FindAllEnrichParams as FindAllEnrichParams, type FindAllEventsParams as FindAllEventsParams, type FindAllExtendParams as FindAllExtendParams, type FindAllIngestParams as FindAllIngestParams, type FindAllResultParams as FindAllResultParams, type FindAllSchemaParams as FindAllSchemaParams, };
|
|
615
|
+
}
|
|
616
|
+
/**
|
|
617
|
+
* Backwards-compatible aliases (deprecated).
|
|
618
|
+
*
|
|
619
|
+
* Historically these types/resources were exported as `Findall*` (lowercase "a").
|
|
620
|
+
* The canonical names are now `FindAll*`.
|
|
621
|
+
*/
|
|
622
|
+
export declare class Findall extends FindAll {
|
|
623
|
+
}
|
|
624
|
+
/** @deprecated Use `FindAllCandidateMatchStatusEvent` instead. */
|
|
625
|
+
export type FindallCandidateMatchStatusEvent = FindAllCandidateMatchStatusEvent;
|
|
626
|
+
/** @deprecated Use `FindAllEnrichInput` instead. */
|
|
627
|
+
export type FindallEnrichInput = FindAllEnrichInput;
|
|
628
|
+
/** @deprecated Use `FindAllExtendInput` instead. */
|
|
629
|
+
export type FindallExtendInput = FindAllExtendInput;
|
|
630
|
+
/** @deprecated Use `FindAllRun` instead. */
|
|
631
|
+
export type FindallRun = FindAllRun;
|
|
632
|
+
/** @deprecated Use `FindAllRunInput` instead. */
|
|
633
|
+
export type FindallRunInput = FindAllRunInput;
|
|
634
|
+
/** @deprecated Use `FindAllRunResult` instead. */
|
|
635
|
+
export type FindallRunResult = FindAllRunResult;
|
|
636
|
+
/** @deprecated Use `FindAllRunStatusEvent` instead. */
|
|
637
|
+
export type FindallRunStatusEvent = FindAllRunStatusEvent;
|
|
638
|
+
/** @deprecated Use `FindAllSchema` instead. */
|
|
639
|
+
export type FindallSchema = FindAllSchema;
|
|
640
|
+
/** @deprecated Use `FindAllSchemaUpdatedEvent` instead. */
|
|
641
|
+
export type FindallSchemaUpdatedEvent = FindAllSchemaUpdatedEvent;
|
|
642
|
+
/** @deprecated Use `IngestInput` instead. */
|
|
643
|
+
export type FindallIngestInput = IngestInput;
|
|
644
|
+
/** @deprecated Use `FindAllCancelResponse` instead. */
|
|
645
|
+
export type FindallCancelResponse = FindAllCancelResponse;
|
|
646
|
+
/** @deprecated Use `FindAllEventsResponse` instead. */
|
|
647
|
+
export type FindallEventsResponse = FindAllEventsResponse;
|
|
648
|
+
/** @deprecated Use `FindAllCreateParams` instead. */
|
|
649
|
+
export type FindallCreateParams = FindAllCreateParams;
|
|
650
|
+
/** @deprecated Use `FindAllRetrieveParams` instead. */
|
|
651
|
+
export type FindallRetrieveParams = FindAllRetrieveParams;
|
|
652
|
+
/** @deprecated Use `FindAllCancelParams` instead. */
|
|
653
|
+
export type FindallCancelParams = FindAllCancelParams;
|
|
654
|
+
/** @deprecated Use `FindAllEnrichParams` instead. */
|
|
655
|
+
export type FindallEnrichParams = FindAllEnrichParams;
|
|
656
|
+
/** @deprecated Use `FindAllEventsParams` instead. */
|
|
657
|
+
export type FindallEventsParams = FindAllEventsParams;
|
|
658
|
+
/** @deprecated Use `FindAllExtendParams` instead. */
|
|
659
|
+
export type FindallExtendParams = FindAllExtendParams;
|
|
660
|
+
/** @deprecated Use `FindAllIngestParams` instead. */
|
|
661
|
+
export type FindallIngestParams = FindAllIngestParams;
|
|
662
|
+
/** @deprecated Use `FindAllResultParams` instead. */
|
|
663
|
+
export type FindallResultParams = FindAllResultParams;
|
|
664
|
+
/** @deprecated Use `FindAllSchemaParams` instead. */
|
|
665
|
+
export type FindallSchemaParams = FindAllSchemaParams;
|
|
666
|
+
export declare namespace Findall {
|
|
667
|
+
export { type FindallCandidateMatchStatusEvent as FindallCandidateMatchStatusEvent, type FindallEnrichInput as FindallEnrichInput, type FindallExtendInput as FindallExtendInput, type FindallRun as FindallRun, type FindallRunInput as FindallRunInput, type FindallRunResult as FindallRunResult, type FindallRunStatusEvent as FindallRunStatusEvent, type FindallSchema as FindallSchema, type FindallSchemaUpdatedEvent as FindallSchemaUpdatedEvent, type FindallIngestInput as FindallIngestInput, type FindallCancelResponse as FindallCancelResponse, type FindallEventsResponse as FindallEventsResponse, type FindallCreateParams as FindallCreateParams, type FindallRetrieveParams as FindallRetrieveParams, type FindallCancelParams as FindallCancelParams, type FindallEnrichParams as FindallEnrichParams, type FindallEventsParams as FindallEventsParams, type FindallExtendParams as FindallExtendParams, type FindallIngestParams as FindallIngestParams, type FindallResultParams as FindallResultParams, type FindallSchemaParams as FindallSchemaParams, };
|
|
668
|
+
}
|
|
669
|
+
//# sourceMappingURL=findall.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"findall.d.ts","sourceRoot":"","sources":["../../src/resources/beta/findall.ts"],"names":[],"mappings":"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"}
|