@retab/node 1.0.90 → 1.0.91
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/api/jobs/client.d.ts +39 -3
- package/dist/api/jobs/client.d.ts.map +1 -1
- package/dist/api/jobs/client.js +81 -6
- package/dist/api/projects/client.d.ts +1 -4
- package/dist/api/projects/client.d.ts.map +1 -1
- package/dist/api/projects/client.js +1 -7
- package/dist/api/workflows/runs/client.d.ts +171 -1
- package/dist/api/workflows/runs/client.d.ts.map +1 -1
- package/dist/api/workflows/runs/client.js +233 -6
- package/dist/api/workflows/runs/steps/client.d.ts +46 -0
- package/dist/api/workflows/runs/steps/client.d.ts.map +1 -0
- package/dist/api/workflows/runs/steps/client.js +62 -0
- package/dist/generated_types.d.ts +1168 -415
- package/dist/generated_types.d.ts.map +1 -1
- package/dist/generated_types.js +30 -20
- package/dist/types.d.ts +2 -17
- package/dist/types.d.ts.map +1 -1
- package/package.json +1 -1
package/dist/generated_types.js
CHANGED
|
@@ -167,12 +167,10 @@ export const ZExtractionSettings = z.lazy(() => (ZInferenceSettings.schema).merg
|
|
|
167
167
|
})));
|
|
168
168
|
export const ZInferenceSettings = z.lazy(() => (z.object({
|
|
169
169
|
model: z.string().default("gpt-5-mini"),
|
|
170
|
-
temperature: z.number().default(0.0),
|
|
171
170
|
reasoning_effort: z.union([z.literal("none"), z.literal("minimal"), z.literal("low"), z.literal("medium"), z.literal("high"), z.literal("xhigh")]).nullable().optional().default("minimal"),
|
|
172
171
|
image_resolution_dpi: z.number().default(192),
|
|
173
172
|
n_consensus: z.number().default(1),
|
|
174
173
|
chunking_keys: z.record(z.string(), z.string()).nullable().optional(),
|
|
175
|
-
web_search: z.boolean().default(false),
|
|
176
174
|
})));
|
|
177
175
|
export const ZDistancesResult = z.lazy(() => (z.object({
|
|
178
176
|
distances: z.record(z.string(), z.any()),
|
|
@@ -247,7 +245,7 @@ export const ZComputationSpec = z.lazy(() => (z.object({
|
|
|
247
245
|
computations: z.record(z.string(), ZComputation),
|
|
248
246
|
})));
|
|
249
247
|
export const ZDraftConfig = z.lazy(() => (z.object({
|
|
250
|
-
inference_settings: ZInferenceSettings.default({ "model": "retab-small", "
|
|
248
|
+
inference_settings: ZInferenceSettings.default({ "model": "retab-small", "reasoning_effort": "minimal", "image_resolution_dpi": 192, "n_consensus": 1 }),
|
|
251
249
|
json_schema: z.record(z.string(), z.any()),
|
|
252
250
|
computation_spec: ZComputationSpec,
|
|
253
251
|
})));
|
|
@@ -264,32 +262,48 @@ export const ZStoredBuilderDocument = z.lazy(() => (ZBuilderDocument.schema).mer
|
|
|
264
262
|
export const ZStoredProject = z.lazy(() => (ZProject.schema).merge(z.object({
|
|
265
263
|
organization_id: z.string(),
|
|
266
264
|
})));
|
|
265
|
+
export const ZCancelWorkflowResponse = z.lazy(() => (z.object({
|
|
266
|
+
run: ZWorkflowRun,
|
|
267
|
+
cancellation_status: z.union([z.literal("cancelled"), z.literal("cancellation_requested"), z.literal("cancellation_failed")]).default("cancellation_requested"),
|
|
268
|
+
})));
|
|
267
269
|
export const ZHandlePayload = z.lazy(() => (z.object({
|
|
268
270
|
type: z.union([z.literal("file"), z.literal("json"), z.literal("text")]),
|
|
269
|
-
document:
|
|
271
|
+
document: ZBaseMIMEData.nullable().optional(),
|
|
270
272
|
data: z.record(z.any()).nullable().optional(),
|
|
271
273
|
text: z.string().nullable().optional(),
|
|
272
274
|
})));
|
|
273
|
-
export const
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
275
|
+
export const ZResumeWorkflowResponse = z.lazy(() => (z.object({
|
|
276
|
+
run: ZWorkflowRun,
|
|
277
|
+
resume_status: z.union([z.literal("processing"), z.literal("queued"), z.literal("already_processed")]),
|
|
278
|
+
queue_position: z.number().nullable().optional(),
|
|
279
|
+
queue_item_id: z.string(),
|
|
280
|
+
})));
|
|
281
|
+
export const ZStepOutputResponse = z.lazy(() => (z.object({
|
|
282
|
+
node_id: z.string(),
|
|
283
|
+
node_type: z.string(),
|
|
284
|
+
node_label: z.string(),
|
|
285
|
+
status: z.string(),
|
|
286
|
+
output: z.record(z.any()).nullable().optional(),
|
|
287
|
+
handle_outputs: z.record(z.string(), z.any()).nullable().optional(),
|
|
288
|
+
handle_inputs: z.record(z.string(), z.any()).nullable().optional(),
|
|
289
|
+
})));
|
|
290
|
+
export const ZStepOutputsBatchResponse = z.lazy(() => (z.object({
|
|
291
|
+
outputs: z.record(z.string(), ZStepOutputResponse),
|
|
278
292
|
})));
|
|
279
293
|
export const ZStepStatus = z.lazy(() => (z.object({
|
|
280
294
|
node_id: z.string(),
|
|
281
295
|
node_type: z.union([z.literal("start"), z.literal("extract"), z.literal("split"), z.literal("end"), z.literal("hil")]),
|
|
282
296
|
node_label: z.string(),
|
|
283
|
-
status: z.union([z.literal("pending"), z.literal("running"), z.literal("completed"), z.literal("error"), z.literal("waiting_for_human")]),
|
|
297
|
+
status: z.union([z.literal("pending"), z.literal("running"), z.literal("completed"), z.literal("error"), z.literal("waiting_for_human"), z.literal("cancelled")]),
|
|
284
298
|
started_at: z.string().nullable().optional(),
|
|
285
299
|
completed_at: z.string().nullable().optional(),
|
|
286
300
|
duration_ms: z.number().nullable().optional(),
|
|
287
301
|
error: z.string().nullable().optional(),
|
|
288
302
|
output: z.record(z.any()).nullable().optional(),
|
|
289
303
|
handle_outputs: z.record(z.string(), ZHandlePayload).nullable().optional(),
|
|
290
|
-
input_document:
|
|
291
|
-
output_document:
|
|
292
|
-
split_documents: z.record(z.string(),
|
|
304
|
+
input_document: ZBaseMIMEData.nullable().optional(),
|
|
305
|
+
output_document: ZBaseMIMEData.nullable().optional(),
|
|
306
|
+
split_documents: z.record(z.string(), ZBaseMIMEData).nullable().optional(),
|
|
293
307
|
requires_human_review: z.boolean().nullable().optional(),
|
|
294
308
|
human_reviewed_at: z.string().nullable().optional(),
|
|
295
309
|
human_review_approved: z.boolean().nullable().optional(),
|
|
@@ -299,12 +313,12 @@ export const ZWorkflowRun = z.lazy(() => (z.object({
|
|
|
299
313
|
workflow_id: z.string(),
|
|
300
314
|
workflow_name: z.string(),
|
|
301
315
|
organization_id: z.string(),
|
|
302
|
-
status: z.union([z.literal("pending"), z.literal("running"), z.literal("completed"), z.literal("error"), z.literal("waiting_for_human")]).default("pending"),
|
|
316
|
+
status: z.union([z.literal("pending"), z.literal("running"), z.literal("completed"), z.literal("error"), z.literal("waiting_for_human"), z.literal("cancelled")]).default("pending"),
|
|
303
317
|
started_at: z.string(),
|
|
304
318
|
completed_at: z.string().nullable().optional(),
|
|
305
319
|
duration_ms: z.number().nullable().optional(),
|
|
306
320
|
steps: z.array(ZStepStatus),
|
|
307
|
-
input_documents: z.record(z.string(),
|
|
321
|
+
input_documents: z.record(z.string(), ZBaseMIMEData).nullable().optional(),
|
|
308
322
|
final_outputs: z.record(z.any()).nullable().optional(),
|
|
309
323
|
error: z.string().nullable().optional(),
|
|
310
324
|
created_at: z.string(),
|
|
@@ -315,7 +329,6 @@ export const ZWorkflowRun = z.lazy(() => (z.object({
|
|
|
315
329
|
export const ZGenerateSchemaRequest = z.lazy(() => (z.object({
|
|
316
330
|
documents: z.array(ZMIMEData),
|
|
317
331
|
model: z.string().default("gpt-5-mini"),
|
|
318
|
-
temperature: z.number().default(0.0),
|
|
319
332
|
reasoning_effort: z.union([z.literal("none"), z.literal("minimal"), z.literal("low"), z.literal("medium"), z.literal("high"), z.literal("xhigh")]).nullable().optional().default("minimal"),
|
|
320
333
|
instructions: z.string().nullable().optional(),
|
|
321
334
|
image_resolution_dpi: z.number().default(192),
|
|
@@ -535,6 +548,7 @@ export const ZEditTemplate = z.lazy(() => (z.object({
|
|
|
535
548
|
name: z.string(),
|
|
536
549
|
file: ZBaseMIMEData,
|
|
537
550
|
form_fields: z.array(ZFormField),
|
|
551
|
+
field_count: z.number().default(0),
|
|
538
552
|
organization_id: z.string().nullable().optional(),
|
|
539
553
|
created_at: z.string(),
|
|
540
554
|
updated_at: z.string(),
|
|
@@ -751,13 +765,9 @@ export const ZDocumentExtractRequest = z.lazy(() => (z.object({
|
|
|
751
765
|
image_resolution_dpi: z.number().default(192),
|
|
752
766
|
model: z.string(),
|
|
753
767
|
json_schema: z.record(z.string(), z.any()),
|
|
754
|
-
temperature: z.number().default(0.0),
|
|
755
768
|
n_consensus: z.number().default(1),
|
|
756
769
|
stream: z.boolean().default(false),
|
|
757
|
-
seed: z.number().nullable().optional(),
|
|
758
|
-
store: z.boolean().default(true),
|
|
759
770
|
chunking_keys: z.record(z.string(), z.string()).nullable().optional(),
|
|
760
|
-
web_search: z.boolean().default(false),
|
|
761
771
|
metadata: z.record(z.string(), z.string()),
|
|
762
772
|
extraction_id: z.string().nullable().optional(),
|
|
763
773
|
additional_messages: z.array(ZChatCompletionRetabMessage).nullable().optional(),
|
package/dist/types.d.ts
CHANGED
|
@@ -53,12 +53,8 @@ export declare const ZDocumentExtractRequest: z.ZodObject<{
|
|
|
53
53
|
metadata: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
54
54
|
image_resolution_dpi: z.ZodDefault<z.ZodNumber>;
|
|
55
55
|
model: z.ZodString;
|
|
56
|
-
temperature: z.ZodDefault<z.ZodNumber>;
|
|
57
56
|
n_consensus: z.ZodDefault<z.ZodNumber>;
|
|
58
|
-
seed: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
59
|
-
store: z.ZodDefault<z.ZodBoolean>;
|
|
60
57
|
chunking_keys: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
61
|
-
web_search: z.ZodDefault<z.ZodBoolean>;
|
|
62
58
|
extraction_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
63
59
|
additional_messages: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodLazy<z.ZodObject<{
|
|
64
60
|
role: z.ZodUnion<[z.ZodLiteral<"user">, z.ZodLiteral<"system">, z.ZodLiteral<"assistant">, z.ZodLiteral<"developer">, z.ZodLiteral<"tool">]>;
|
|
@@ -251,15 +247,11 @@ export declare const ZDocumentExtractRequest: z.ZodObject<{
|
|
|
251
247
|
metadata: Record<string, string>;
|
|
252
248
|
json_schema: Record<string, any>;
|
|
253
249
|
model: string;
|
|
254
|
-
temperature: number;
|
|
255
250
|
image_resolution_dpi: number;
|
|
256
251
|
n_consensus: number;
|
|
257
|
-
web_search: boolean;
|
|
258
|
-
store: boolean;
|
|
259
252
|
chunking_keys?: Record<string, string> | null | undefined;
|
|
260
253
|
extraction_id?: string | null | undefined;
|
|
261
254
|
document?: any;
|
|
262
|
-
seed?: number | null | undefined;
|
|
263
255
|
additional_messages?: {
|
|
264
256
|
role: "user" | "system" | "assistant" | "developer" | "tool";
|
|
265
257
|
content?: string | ({
|
|
@@ -303,14 +295,10 @@ export declare const ZDocumentExtractRequest: z.ZodObject<{
|
|
|
303
295
|
url: string;
|
|
304
296
|
};
|
|
305
297
|
metadata?: Record<string, string> | undefined;
|
|
306
|
-
temperature?: number | undefined;
|
|
307
298
|
image_resolution_dpi?: number | undefined;
|
|
308
299
|
n_consensus?: number | undefined;
|
|
309
300
|
chunking_keys?: Record<string, string> | null | undefined;
|
|
310
|
-
web_search?: boolean | undefined;
|
|
311
301
|
extraction_id?: string | null | undefined;
|
|
312
|
-
seed?: number | null | undefined;
|
|
313
|
-
store?: boolean | undefined;
|
|
314
302
|
additional_messages?: {
|
|
315
303
|
role: "user" | "system" | "assistant" | "developer" | "tool";
|
|
316
304
|
content?: string | ({
|
|
@@ -456,7 +444,6 @@ export declare const ZGenerateSchemaRequest: z.ZodObject<{
|
|
|
456
444
|
url: string;
|
|
457
445
|
}>, "many">;
|
|
458
446
|
model: z.ZodDefault<z.ZodString>;
|
|
459
|
-
temperature: z.ZodDefault<z.ZodNumber>;
|
|
460
447
|
reasoning_effort: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodLiteral<"none">, z.ZodLiteral<"minimal">, z.ZodLiteral<"low">, z.ZodLiteral<"medium">, z.ZodLiteral<"high">, z.ZodLiteral<"xhigh">]>>>>;
|
|
461
448
|
instructions: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
462
449
|
image_resolution_dpi: z.ZodDefault<z.ZodNumber>;
|
|
@@ -464,7 +451,6 @@ export declare const ZGenerateSchemaRequest: z.ZodObject<{
|
|
|
464
451
|
}, "strip", z.ZodTypeAny, {
|
|
465
452
|
stream: boolean;
|
|
466
453
|
model: string;
|
|
467
|
-
temperature: number;
|
|
468
454
|
reasoning_effort: "low" | "high" | "none" | "minimal" | "medium" | "xhigh" | null;
|
|
469
455
|
image_resolution_dpi: number;
|
|
470
456
|
documents: any[];
|
|
@@ -476,7 +462,6 @@ export declare const ZGenerateSchemaRequest: z.ZodObject<{
|
|
|
476
462
|
})[];
|
|
477
463
|
stream?: boolean | undefined;
|
|
478
464
|
model?: string | undefined;
|
|
479
|
-
temperature?: number | undefined;
|
|
480
465
|
reasoning_effort?: "low" | "high" | "none" | "minimal" | "medium" | "xhigh" | null | undefined;
|
|
481
466
|
image_resolution_dpi?: number | undefined;
|
|
482
467
|
instructions?: string | null | undefined;
|
|
@@ -861,6 +846,7 @@ export declare const ZInferFormSchemaResponse: z.ZodLazy<z.ZodObject<{
|
|
|
861
846
|
}>>;
|
|
862
847
|
field_count: z.ZodNumber;
|
|
863
848
|
}, "strip", z.ZodTypeAny, {
|
|
849
|
+
field_count: number;
|
|
864
850
|
form_schema: {
|
|
865
851
|
form_fields: {
|
|
866
852
|
description: string;
|
|
@@ -880,8 +866,8 @@ export declare const ZInferFormSchemaResponse: z.ZodLazy<z.ZodObject<{
|
|
|
880
866
|
filename: string;
|
|
881
867
|
url: string;
|
|
882
868
|
};
|
|
883
|
-
field_count: number;
|
|
884
869
|
}, {
|
|
870
|
+
field_count: number;
|
|
885
871
|
form_schema: {
|
|
886
872
|
form_fields: {
|
|
887
873
|
description: string;
|
|
@@ -901,7 +887,6 @@ export declare const ZInferFormSchemaResponse: z.ZodLazy<z.ZodObject<{
|
|
|
901
887
|
filename: string;
|
|
902
888
|
url: string;
|
|
903
889
|
};
|
|
904
|
-
field_count: number;
|
|
905
890
|
}>>;
|
|
906
891
|
export type InferFormSchemaResponse = z.infer<typeof ZInferFormSchemaResponse>;
|
|
907
892
|
export declare const ZModel: z.ZodLazy<z.ZodObject<{
|
package/dist/types.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../src/types.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,QAAQ,EAAE,MAAM,QAAQ,CAAC;AAElC,OAAO,EAAE,UAAU,EAAE,UAAU,EAAE,QAAQ,EAAE,MAAM,mBAAmB,CAAC;AACrE,cAAc,mBAAmB,CAAC;AAClC,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AAMzB,wBAAgB,SAAS,CAAC,MAAM,SAAS,CAAC,CAAC,OAAO,CAAC,GAAG,EAAE,GAAG,EAAE,GAAG,CAAC,EAAE,MAAM,EAAE,MAAM,GAAG,CAAC,CAAC,OAAO,CACzF,CAAC,CAAC,MAAM,CAAC,MAAM,CAAC,EAAE,EAClB,CAAC,CAAC,UAAU,EACZ;IAAE,IAAI,EAAE,CAAC,CAAC,KAAK,CAAC,MAAM,CAAC,EAAE,CAAA;CAAE,CAC9B,CAEA;AAGD,MAAM,MAAM,MAAM,GAAG;IACjB,IAAI,EAAE,QAAQ,CAAC;IACf,IAAI,EAAE,MAAM,CAAC;IACb,KAAK,EAAE,CAAC,GAAG,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,UAAU,CAAC,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,UAAU,CAAC,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,QAAQ,CAAC,CAAC,EAAE,CAAC;IACpG,IAAI,CAAC,EAAE,MAAM,CAAC;CACjB,CAAC;AAEF,MAAM,MAAM,GAAG,GAAG;IACd,IAAI,EAAE,KAAK,CAAC;IACZ,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,KAAK,EAAE,CAAC,MAAM,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,UAAU,CAAC,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,UAAU,CAAC,CAAC,EAAE,CAAC;CAC/E,CAAC;AAEF,eAAO,MAAM,OAAO,EAAE,CAAC,CAAC,OAAO,CAAC,MAAM,CAKnC,CAAC;AAEJ,eAAO,MAAM,IAAI,EAAE,CAAC,CAAC,OAAO,CAAC,GAAG,CAI7B,CAAC;AAEJ,eAAO,MAAM,SAAS;;;;;;;;;;;;EAmBpB,CAAA;AACF,MAAM,MAAM,aAAa,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,SAAS,CAAC,CAAC;AAEtD,eAAO,MAAM,WAAW,2RAqBtB,CAAA;AACF,MAAM,MAAM,eAAe,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,WAAW,CAAC,CAAC;AAC1D,MAAM,MAAM,UAAU,GAAG,CAAC,CAAC,MAAM,CAAC,CAAC,OAAO,WAAW,CAAC,CAAC,CAAC;AAExD,eAAO,MAAM,uBAAuB
|
|
1
|
+
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../src/types.ts"],"names":[],"mappings":"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"}
|