@transloadit/node 4.1.9 → 4.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/README.md +81 -1
- package/dist/Transloadit.d.ts +36 -5
- package/dist/Transloadit.d.ts.map +1 -1
- package/dist/Transloadit.js +228 -39
- package/dist/Transloadit.js.map +1 -1
- package/dist/alphalib/assembly-linter.d.ts +123 -0
- package/dist/alphalib/assembly-linter.d.ts.map +1 -0
- package/dist/alphalib/assembly-linter.js +1142 -0
- package/dist/alphalib/assembly-linter.js.map +1 -0
- package/dist/alphalib/assembly-linter.lang.en.d.ts +87 -0
- package/dist/alphalib/assembly-linter.lang.en.d.ts.map +1 -0
- package/dist/alphalib/assembly-linter.lang.en.js +326 -0
- package/dist/alphalib/assembly-linter.lang.en.js.map +1 -0
- package/dist/alphalib/mcache.d.ts.map +1 -1
- package/dist/alphalib/mcache.js +22 -7
- package/dist/alphalib/mcache.js.map +1 -1
- package/dist/alphalib/object.d.ts +20 -0
- package/dist/alphalib/object.d.ts.map +1 -0
- package/dist/alphalib/object.js +23 -0
- package/dist/alphalib/object.js.map +1 -0
- package/dist/alphalib/stepParsing.d.ts +93 -0
- package/dist/alphalib/stepParsing.d.ts.map +1 -0
- package/dist/alphalib/stepParsing.js +1154 -0
- package/dist/alphalib/stepParsing.js.map +1 -0
- package/dist/alphalib/templateMerge.d.ts +4 -0
- package/dist/alphalib/templateMerge.d.ts.map +1 -0
- package/dist/alphalib/templateMerge.js +22 -0
- package/dist/alphalib/templateMerge.js.map +1 -0
- package/dist/alphalib/types/assemblyReplay.d.ts +56 -0
- package/dist/alphalib/types/assemblyReplay.d.ts.map +1 -1
- package/dist/alphalib/types/assemblyReplayNotification.d.ts +56 -0
- package/dist/alphalib/types/assemblyReplayNotification.d.ts.map +1 -1
- package/dist/alphalib/types/assemblyStatus.d.ts +63 -57
- package/dist/alphalib/types/assemblyStatus.d.ts.map +1 -1
- package/dist/alphalib/types/assemblyStatus.js +9 -1
- package/dist/alphalib/types/assemblyStatus.js.map +1 -1
- package/dist/alphalib/types/assemblyUrls.d.ts +1 -1
- package/dist/alphalib/types/assemblyUrls.d.ts.map +1 -1
- package/dist/alphalib/types/assemblyUrls.js.map +1 -1
- package/dist/alphalib/types/robots/_index.d.ts +608 -81
- package/dist/alphalib/types/robots/_index.d.ts.map +1 -1
- package/dist/alphalib/types/robots/_index.js +4 -0
- package/dist/alphalib/types/robots/_index.js.map +1 -1
- package/dist/alphalib/types/robots/_instructions-primitives.d.ts +4 -4
- package/dist/alphalib/types/robots/_instructions-primitives.d.ts.map +1 -1
- package/dist/alphalib/types/robots/_instructions-primitives.js +1 -0
- package/dist/alphalib/types/robots/_instructions-primitives.js.map +1 -1
- package/dist/alphalib/types/robots/document-optimize.d.ts +489 -0
- package/dist/alphalib/types/robots/document-optimize.d.ts.map +1 -0
- package/dist/alphalib/types/robots/document-optimize.js +151 -0
- package/dist/alphalib/types/robots/document-optimize.js.map +1 -0
- package/dist/alphalib/types/template.d.ts +1050 -174
- package/dist/alphalib/types/template.d.ts.map +1 -1
- package/dist/cli/commands/assemblies.d.ts +20 -1
- package/dist/cli/commands/assemblies.d.ts.map +1 -1
- package/dist/cli/commands/assemblies.js +137 -2
- package/dist/cli/commands/assemblies.js.map +1 -1
- package/dist/cli/commands/auth.d.ts.map +1 -1
- package/dist/cli/commands/auth.js +19 -19
- package/dist/cli/commands/auth.js.map +1 -1
- package/dist/cli/commands/index.d.ts.map +1 -1
- package/dist/cli/commands/index.js +2 -1
- package/dist/cli/commands/index.js.map +1 -1
- package/dist/cli/docs/assemblyLintingExamples.d.ts +2 -0
- package/dist/cli/docs/assemblyLintingExamples.d.ts.map +1 -0
- package/dist/cli/docs/assemblyLintingExamples.js +10 -0
- package/dist/cli/docs/assemblyLintingExamples.js.map +1 -0
- package/dist/cli/helpers.d.ts +11 -0
- package/dist/cli/helpers.d.ts.map +1 -1
- package/dist/cli/helpers.js +29 -0
- package/dist/cli/helpers.js.map +1 -1
- package/dist/lintAssemblyInput.d.ts +10 -0
- package/dist/lintAssemblyInput.d.ts.map +1 -0
- package/dist/lintAssemblyInput.js +73 -0
- package/dist/lintAssemblyInput.js.map +1 -0
- package/dist/lintAssemblyInstructions.d.ts +29 -0
- package/dist/lintAssemblyInstructions.d.ts.map +1 -0
- package/dist/lintAssemblyInstructions.js +33 -0
- package/dist/lintAssemblyInstructions.js.map +1 -0
- package/dist/tus.d.ts +2 -1
- package/dist/tus.d.ts.map +1 -1
- package/dist/tus.js +2 -1
- package/dist/tus.js.map +1 -1
- package/package.json +5 -2
- package/src/Transloadit.ts +318 -49
- package/src/alphalib/assembly-linter.lang.en.ts +393 -0
- package/src/alphalib/assembly-linter.ts +1475 -0
- package/src/alphalib/mcache.ts +26 -7
- package/src/alphalib/object.ts +27 -0
- package/src/alphalib/stepParsing.ts +1465 -0
- package/src/alphalib/templateMerge.ts +32 -0
- package/src/alphalib/types/assemblyStatus.ts +9 -1
- package/src/alphalib/types/assemblyUrls.ts +2 -5
- package/src/alphalib/types/robots/_index.ts +14 -0
- package/src/alphalib/types/robots/_instructions-primitives.ts +1 -0
- package/src/alphalib/types/robots/document-optimize.ts +180 -0
- package/src/alphalib/typings/json-to-ast.d.ts +34 -0
- package/src/cli/commands/assemblies.ts +161 -2
- package/src/cli/commands/auth.ts +19 -22
- package/src/cli/commands/index.ts +2 -0
- package/src/cli/docs/assemblyLintingExamples.ts +9 -0
- package/src/cli/helpers.ts +50 -0
- package/src/lintAssemblyInput.ts +89 -0
- package/src/lintAssemblyInstructions.ts +72 -0
- package/src/tus.ts +3 -0
|
@@ -5670,6 +5670,124 @@ export declare const stepSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
5670
5670
|
force_accept?: string | boolean | undefined;
|
|
5671
5671
|
ignore_errors?: string | boolean | ("meta" | "execute")[] | undefined;
|
|
5672
5672
|
granularity?: string | undefined;
|
|
5673
|
+
}>, z.ZodObject<{
|
|
5674
|
+
output_meta: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodBoolean]>>, z.ZodUnion<[z.ZodString, z.ZodBoolean]>, z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>]>>;
|
|
5675
|
+
result: z.ZodDefault<z.ZodUnion<[z.ZodString, z.ZodBoolean]>>;
|
|
5676
|
+
queue: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodEnum<["batch"]>]>>;
|
|
5677
|
+
force_accept: z.ZodDefault<z.ZodUnion<[z.ZodString, z.ZodBoolean]>>;
|
|
5678
|
+
ignore_errors: z.ZodDefault<z.ZodUnion<[z.ZodString, z.ZodEffects<z.ZodUnion<[z.ZodBoolean, z.ZodArray<z.ZodEnum<["meta", "execute"]>, "many">]>, string[], boolean | ("meta" | "execute")[]>]>>;
|
|
5679
|
+
use: z.ZodOptional<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">, z.ZodArray<z.ZodObject<{
|
|
5680
|
+
name: z.ZodString;
|
|
5681
|
+
fields: z.ZodOptional<z.ZodString>;
|
|
5682
|
+
as: z.ZodOptional<z.ZodString>;
|
|
5683
|
+
}, "strict", z.ZodTypeAny, {
|
|
5684
|
+
name: string;
|
|
5685
|
+
fields?: string | undefined;
|
|
5686
|
+
as?: string | undefined;
|
|
5687
|
+
}, {
|
|
5688
|
+
name: string;
|
|
5689
|
+
fields?: string | undefined;
|
|
5690
|
+
as?: string | undefined;
|
|
5691
|
+
}>, "many">]>, z.ZodObject<{
|
|
5692
|
+
steps: z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">, z.ZodArray<z.ZodObject<{
|
|
5693
|
+
name: z.ZodString;
|
|
5694
|
+
fields: z.ZodOptional<z.ZodString>;
|
|
5695
|
+
as: z.ZodOptional<z.ZodString>;
|
|
5696
|
+
}, "strict", z.ZodTypeAny, {
|
|
5697
|
+
name: string;
|
|
5698
|
+
fields?: string | undefined;
|
|
5699
|
+
as?: string | undefined;
|
|
5700
|
+
}, {
|
|
5701
|
+
name: string;
|
|
5702
|
+
fields?: string | undefined;
|
|
5703
|
+
as?: string | undefined;
|
|
5704
|
+
}>, "many">]>;
|
|
5705
|
+
bundle_steps: z.ZodOptional<z.ZodBoolean>;
|
|
5706
|
+
group_by_original: z.ZodOptional<z.ZodBoolean>;
|
|
5707
|
+
fields: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
5708
|
+
}, "strict", z.ZodTypeAny, {
|
|
5709
|
+
steps: string | string[] | {
|
|
5710
|
+
name: string;
|
|
5711
|
+
fields?: string | undefined;
|
|
5712
|
+
as?: string | undefined;
|
|
5713
|
+
}[];
|
|
5714
|
+
fields?: string[] | undefined;
|
|
5715
|
+
bundle_steps?: boolean | undefined;
|
|
5716
|
+
group_by_original?: boolean | undefined;
|
|
5717
|
+
}, {
|
|
5718
|
+
steps: string | string[] | {
|
|
5719
|
+
name: string;
|
|
5720
|
+
fields?: string | undefined;
|
|
5721
|
+
as?: string | undefined;
|
|
5722
|
+
}[];
|
|
5723
|
+
fields?: string[] | undefined;
|
|
5724
|
+
bundle_steps?: boolean | undefined;
|
|
5725
|
+
group_by_original?: boolean | undefined;
|
|
5726
|
+
}>]>>;
|
|
5727
|
+
robot: z.ZodLiteral<"/document/optimize">;
|
|
5728
|
+
preset: z.ZodDefault<z.ZodUnion<[z.ZodString, z.ZodEnum<["screen", "ebook", "printer", "prepress"]>]>>;
|
|
5729
|
+
image_dpi: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
5730
|
+
compress_fonts: z.ZodDefault<z.ZodUnion<[z.ZodString, z.ZodBoolean]>>;
|
|
5731
|
+
subset_fonts: z.ZodDefault<z.ZodUnion<[z.ZodString, z.ZodBoolean]>>;
|
|
5732
|
+
remove_metadata: z.ZodDefault<z.ZodUnion<[z.ZodString, z.ZodBoolean]>>;
|
|
5733
|
+
linearize: z.ZodDefault<z.ZodUnion<[z.ZodString, z.ZodBoolean]>>;
|
|
5734
|
+
compatibility: z.ZodDefault<z.ZodUnion<[z.ZodString, z.ZodEnum<["1.4", "1.5", "1.6", "1.7", "2.0"]>]>>;
|
|
5735
|
+
}, "strict", z.ZodTypeAny, {
|
|
5736
|
+
result: string | boolean;
|
|
5737
|
+
robot: "/document/optimize";
|
|
5738
|
+
force_accept: string | boolean;
|
|
5739
|
+
ignore_errors: string | string[];
|
|
5740
|
+
preset: string;
|
|
5741
|
+
compress_fonts: string | boolean;
|
|
5742
|
+
subset_fonts: string | boolean;
|
|
5743
|
+
remove_metadata: string | boolean;
|
|
5744
|
+
linearize: string | boolean;
|
|
5745
|
+
compatibility: string;
|
|
5746
|
+
use?: string | string[] | {
|
|
5747
|
+
name: string;
|
|
5748
|
+
fields?: string | undefined;
|
|
5749
|
+
as?: string | undefined;
|
|
5750
|
+
}[] | {
|
|
5751
|
+
steps: string | string[] | {
|
|
5752
|
+
name: string;
|
|
5753
|
+
fields?: string | undefined;
|
|
5754
|
+
as?: string | undefined;
|
|
5755
|
+
}[];
|
|
5756
|
+
fields?: string[] | undefined;
|
|
5757
|
+
bundle_steps?: boolean | undefined;
|
|
5758
|
+
group_by_original?: boolean | undefined;
|
|
5759
|
+
} | undefined;
|
|
5760
|
+
output_meta?: string | boolean | string[] | Record<string, string | boolean> | undefined;
|
|
5761
|
+
queue?: string | undefined;
|
|
5762
|
+
image_dpi?: string | number | undefined;
|
|
5763
|
+
}, {
|
|
5764
|
+
robot: "/document/optimize";
|
|
5765
|
+
result?: string | boolean | undefined;
|
|
5766
|
+
use?: string | string[] | {
|
|
5767
|
+
name: string;
|
|
5768
|
+
fields?: string | undefined;
|
|
5769
|
+
as?: string | undefined;
|
|
5770
|
+
}[] | {
|
|
5771
|
+
steps: string | string[] | {
|
|
5772
|
+
name: string;
|
|
5773
|
+
fields?: string | undefined;
|
|
5774
|
+
as?: string | undefined;
|
|
5775
|
+
}[];
|
|
5776
|
+
fields?: string[] | undefined;
|
|
5777
|
+
bundle_steps?: boolean | undefined;
|
|
5778
|
+
group_by_original?: boolean | undefined;
|
|
5779
|
+
} | undefined;
|
|
5780
|
+
output_meta?: string | boolean | string[] | Record<string, string | boolean> | undefined;
|
|
5781
|
+
queue?: string | undefined;
|
|
5782
|
+
force_accept?: string | boolean | undefined;
|
|
5783
|
+
ignore_errors?: string | boolean | ("meta" | "execute")[] | undefined;
|
|
5784
|
+
preset?: string | undefined;
|
|
5785
|
+
image_dpi?: string | number | undefined;
|
|
5786
|
+
compress_fonts?: string | boolean | undefined;
|
|
5787
|
+
subset_fonts?: string | boolean | undefined;
|
|
5788
|
+
remove_metadata?: string | boolean | undefined;
|
|
5789
|
+
linearize?: string | boolean | undefined;
|
|
5790
|
+
compatibility?: string | undefined;
|
|
5673
5791
|
}>, z.ZodObject<{
|
|
5674
5792
|
output_meta: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodBoolean]>>, z.ZodUnion<[z.ZodString, z.ZodBoolean]>, z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>]>>;
|
|
5675
5793
|
result: z.ZodDefault<z.ZodUnion<[z.ZodString, z.ZodBoolean]>>;
|
|
@@ -23429,6 +23547,124 @@ export declare const stepsSchema: z.ZodRecord<z.ZodString, z.ZodIntersection<z.Z
|
|
|
23429
23547
|
force_accept?: string | boolean | undefined;
|
|
23430
23548
|
ignore_errors?: string | boolean | ("meta" | "execute")[] | undefined;
|
|
23431
23549
|
granularity?: string | undefined;
|
|
23550
|
+
}>, z.ZodObject<{
|
|
23551
|
+
output_meta: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodBoolean]>>, z.ZodUnion<[z.ZodString, z.ZodBoolean]>, z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>]>>;
|
|
23552
|
+
result: z.ZodDefault<z.ZodUnion<[z.ZodString, z.ZodBoolean]>>;
|
|
23553
|
+
queue: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodEnum<["batch"]>]>>;
|
|
23554
|
+
force_accept: z.ZodDefault<z.ZodUnion<[z.ZodString, z.ZodBoolean]>>;
|
|
23555
|
+
ignore_errors: z.ZodDefault<z.ZodUnion<[z.ZodString, z.ZodEffects<z.ZodUnion<[z.ZodBoolean, z.ZodArray<z.ZodEnum<["meta", "execute"]>, "many">]>, string[], boolean | ("meta" | "execute")[]>]>>;
|
|
23556
|
+
use: z.ZodOptional<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">, z.ZodArray<z.ZodObject<{
|
|
23557
|
+
name: z.ZodString;
|
|
23558
|
+
fields: z.ZodOptional<z.ZodString>;
|
|
23559
|
+
as: z.ZodOptional<z.ZodString>;
|
|
23560
|
+
}, "strict", z.ZodTypeAny, {
|
|
23561
|
+
name: string;
|
|
23562
|
+
fields?: string | undefined;
|
|
23563
|
+
as?: string | undefined;
|
|
23564
|
+
}, {
|
|
23565
|
+
name: string;
|
|
23566
|
+
fields?: string | undefined;
|
|
23567
|
+
as?: string | undefined;
|
|
23568
|
+
}>, "many">]>, z.ZodObject<{
|
|
23569
|
+
steps: z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">, z.ZodArray<z.ZodObject<{
|
|
23570
|
+
name: z.ZodString;
|
|
23571
|
+
fields: z.ZodOptional<z.ZodString>;
|
|
23572
|
+
as: z.ZodOptional<z.ZodString>;
|
|
23573
|
+
}, "strict", z.ZodTypeAny, {
|
|
23574
|
+
name: string;
|
|
23575
|
+
fields?: string | undefined;
|
|
23576
|
+
as?: string | undefined;
|
|
23577
|
+
}, {
|
|
23578
|
+
name: string;
|
|
23579
|
+
fields?: string | undefined;
|
|
23580
|
+
as?: string | undefined;
|
|
23581
|
+
}>, "many">]>;
|
|
23582
|
+
bundle_steps: z.ZodOptional<z.ZodBoolean>;
|
|
23583
|
+
group_by_original: z.ZodOptional<z.ZodBoolean>;
|
|
23584
|
+
fields: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
23585
|
+
}, "strict", z.ZodTypeAny, {
|
|
23586
|
+
steps: string | string[] | {
|
|
23587
|
+
name: string;
|
|
23588
|
+
fields?: string | undefined;
|
|
23589
|
+
as?: string | undefined;
|
|
23590
|
+
}[];
|
|
23591
|
+
fields?: string[] | undefined;
|
|
23592
|
+
bundle_steps?: boolean | undefined;
|
|
23593
|
+
group_by_original?: boolean | undefined;
|
|
23594
|
+
}, {
|
|
23595
|
+
steps: string | string[] | {
|
|
23596
|
+
name: string;
|
|
23597
|
+
fields?: string | undefined;
|
|
23598
|
+
as?: string | undefined;
|
|
23599
|
+
}[];
|
|
23600
|
+
fields?: string[] | undefined;
|
|
23601
|
+
bundle_steps?: boolean | undefined;
|
|
23602
|
+
group_by_original?: boolean | undefined;
|
|
23603
|
+
}>]>>;
|
|
23604
|
+
robot: z.ZodLiteral<"/document/optimize">;
|
|
23605
|
+
preset: z.ZodDefault<z.ZodUnion<[z.ZodString, z.ZodEnum<["screen", "ebook", "printer", "prepress"]>]>>;
|
|
23606
|
+
image_dpi: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
23607
|
+
compress_fonts: z.ZodDefault<z.ZodUnion<[z.ZodString, z.ZodBoolean]>>;
|
|
23608
|
+
subset_fonts: z.ZodDefault<z.ZodUnion<[z.ZodString, z.ZodBoolean]>>;
|
|
23609
|
+
remove_metadata: z.ZodDefault<z.ZodUnion<[z.ZodString, z.ZodBoolean]>>;
|
|
23610
|
+
linearize: z.ZodDefault<z.ZodUnion<[z.ZodString, z.ZodBoolean]>>;
|
|
23611
|
+
compatibility: z.ZodDefault<z.ZodUnion<[z.ZodString, z.ZodEnum<["1.4", "1.5", "1.6", "1.7", "2.0"]>]>>;
|
|
23612
|
+
}, "strict", z.ZodTypeAny, {
|
|
23613
|
+
result: string | boolean;
|
|
23614
|
+
robot: "/document/optimize";
|
|
23615
|
+
force_accept: string | boolean;
|
|
23616
|
+
ignore_errors: string | string[];
|
|
23617
|
+
preset: string;
|
|
23618
|
+
compress_fonts: string | boolean;
|
|
23619
|
+
subset_fonts: string | boolean;
|
|
23620
|
+
remove_metadata: string | boolean;
|
|
23621
|
+
linearize: string | boolean;
|
|
23622
|
+
compatibility: string;
|
|
23623
|
+
use?: string | string[] | {
|
|
23624
|
+
name: string;
|
|
23625
|
+
fields?: string | undefined;
|
|
23626
|
+
as?: string | undefined;
|
|
23627
|
+
}[] | {
|
|
23628
|
+
steps: string | string[] | {
|
|
23629
|
+
name: string;
|
|
23630
|
+
fields?: string | undefined;
|
|
23631
|
+
as?: string | undefined;
|
|
23632
|
+
}[];
|
|
23633
|
+
fields?: string[] | undefined;
|
|
23634
|
+
bundle_steps?: boolean | undefined;
|
|
23635
|
+
group_by_original?: boolean | undefined;
|
|
23636
|
+
} | undefined;
|
|
23637
|
+
output_meta?: string | boolean | string[] | Record<string, string | boolean> | undefined;
|
|
23638
|
+
queue?: string | undefined;
|
|
23639
|
+
image_dpi?: string | number | undefined;
|
|
23640
|
+
}, {
|
|
23641
|
+
robot: "/document/optimize";
|
|
23642
|
+
result?: string | boolean | undefined;
|
|
23643
|
+
use?: string | string[] | {
|
|
23644
|
+
name: string;
|
|
23645
|
+
fields?: string | undefined;
|
|
23646
|
+
as?: string | undefined;
|
|
23647
|
+
}[] | {
|
|
23648
|
+
steps: string | string[] | {
|
|
23649
|
+
name: string;
|
|
23650
|
+
fields?: string | undefined;
|
|
23651
|
+
as?: string | undefined;
|
|
23652
|
+
}[];
|
|
23653
|
+
fields?: string[] | undefined;
|
|
23654
|
+
bundle_steps?: boolean | undefined;
|
|
23655
|
+
group_by_original?: boolean | undefined;
|
|
23656
|
+
} | undefined;
|
|
23657
|
+
output_meta?: string | boolean | string[] | Record<string, string | boolean> | undefined;
|
|
23658
|
+
queue?: string | undefined;
|
|
23659
|
+
force_accept?: string | boolean | undefined;
|
|
23660
|
+
ignore_errors?: string | boolean | ("meta" | "execute")[] | undefined;
|
|
23661
|
+
preset?: string | undefined;
|
|
23662
|
+
image_dpi?: string | number | undefined;
|
|
23663
|
+
compress_fonts?: string | boolean | undefined;
|
|
23664
|
+
subset_fonts?: string | boolean | undefined;
|
|
23665
|
+
remove_metadata?: string | boolean | undefined;
|
|
23666
|
+
linearize?: string | boolean | undefined;
|
|
23667
|
+
compatibility?: string | undefined;
|
|
23432
23668
|
}>, z.ZodObject<{
|
|
23433
23669
|
output_meta: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodBoolean]>>, z.ZodUnion<[z.ZodString, z.ZodBoolean]>, z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>]>>;
|
|
23434
23670
|
result: z.ZodDefault<z.ZodUnion<[z.ZodString, z.ZodBoolean]>>;
|
|
@@ -41193,6 +41429,124 @@ export declare const optionalStepsSchema: z.ZodOptional<z.ZodRecord<z.ZodString,
|
|
|
41193
41429
|
force_accept?: string | boolean | undefined;
|
|
41194
41430
|
ignore_errors?: string | boolean | ("meta" | "execute")[] | undefined;
|
|
41195
41431
|
granularity?: string | undefined;
|
|
41432
|
+
}>, z.ZodObject<{
|
|
41433
|
+
output_meta: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodBoolean]>>, z.ZodUnion<[z.ZodString, z.ZodBoolean]>, z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>]>>;
|
|
41434
|
+
result: z.ZodDefault<z.ZodUnion<[z.ZodString, z.ZodBoolean]>>;
|
|
41435
|
+
queue: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodEnum<["batch"]>]>>;
|
|
41436
|
+
force_accept: z.ZodDefault<z.ZodUnion<[z.ZodString, z.ZodBoolean]>>;
|
|
41437
|
+
ignore_errors: z.ZodDefault<z.ZodUnion<[z.ZodString, z.ZodEffects<z.ZodUnion<[z.ZodBoolean, z.ZodArray<z.ZodEnum<["meta", "execute"]>, "many">]>, string[], boolean | ("meta" | "execute")[]>]>>;
|
|
41438
|
+
use: z.ZodOptional<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">, z.ZodArray<z.ZodObject<{
|
|
41439
|
+
name: z.ZodString;
|
|
41440
|
+
fields: z.ZodOptional<z.ZodString>;
|
|
41441
|
+
as: z.ZodOptional<z.ZodString>;
|
|
41442
|
+
}, "strict", z.ZodTypeAny, {
|
|
41443
|
+
name: string;
|
|
41444
|
+
fields?: string | undefined;
|
|
41445
|
+
as?: string | undefined;
|
|
41446
|
+
}, {
|
|
41447
|
+
name: string;
|
|
41448
|
+
fields?: string | undefined;
|
|
41449
|
+
as?: string | undefined;
|
|
41450
|
+
}>, "many">]>, z.ZodObject<{
|
|
41451
|
+
steps: z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">, z.ZodArray<z.ZodObject<{
|
|
41452
|
+
name: z.ZodString;
|
|
41453
|
+
fields: z.ZodOptional<z.ZodString>;
|
|
41454
|
+
as: z.ZodOptional<z.ZodString>;
|
|
41455
|
+
}, "strict", z.ZodTypeAny, {
|
|
41456
|
+
name: string;
|
|
41457
|
+
fields?: string | undefined;
|
|
41458
|
+
as?: string | undefined;
|
|
41459
|
+
}, {
|
|
41460
|
+
name: string;
|
|
41461
|
+
fields?: string | undefined;
|
|
41462
|
+
as?: string | undefined;
|
|
41463
|
+
}>, "many">]>;
|
|
41464
|
+
bundle_steps: z.ZodOptional<z.ZodBoolean>;
|
|
41465
|
+
group_by_original: z.ZodOptional<z.ZodBoolean>;
|
|
41466
|
+
fields: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
41467
|
+
}, "strict", z.ZodTypeAny, {
|
|
41468
|
+
steps: string | string[] | {
|
|
41469
|
+
name: string;
|
|
41470
|
+
fields?: string | undefined;
|
|
41471
|
+
as?: string | undefined;
|
|
41472
|
+
}[];
|
|
41473
|
+
fields?: string[] | undefined;
|
|
41474
|
+
bundle_steps?: boolean | undefined;
|
|
41475
|
+
group_by_original?: boolean | undefined;
|
|
41476
|
+
}, {
|
|
41477
|
+
steps: string | string[] | {
|
|
41478
|
+
name: string;
|
|
41479
|
+
fields?: string | undefined;
|
|
41480
|
+
as?: string | undefined;
|
|
41481
|
+
}[];
|
|
41482
|
+
fields?: string[] | undefined;
|
|
41483
|
+
bundle_steps?: boolean | undefined;
|
|
41484
|
+
group_by_original?: boolean | undefined;
|
|
41485
|
+
}>]>>;
|
|
41486
|
+
robot: z.ZodLiteral<"/document/optimize">;
|
|
41487
|
+
preset: z.ZodDefault<z.ZodUnion<[z.ZodString, z.ZodEnum<["screen", "ebook", "printer", "prepress"]>]>>;
|
|
41488
|
+
image_dpi: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
41489
|
+
compress_fonts: z.ZodDefault<z.ZodUnion<[z.ZodString, z.ZodBoolean]>>;
|
|
41490
|
+
subset_fonts: z.ZodDefault<z.ZodUnion<[z.ZodString, z.ZodBoolean]>>;
|
|
41491
|
+
remove_metadata: z.ZodDefault<z.ZodUnion<[z.ZodString, z.ZodBoolean]>>;
|
|
41492
|
+
linearize: z.ZodDefault<z.ZodUnion<[z.ZodString, z.ZodBoolean]>>;
|
|
41493
|
+
compatibility: z.ZodDefault<z.ZodUnion<[z.ZodString, z.ZodEnum<["1.4", "1.5", "1.6", "1.7", "2.0"]>]>>;
|
|
41494
|
+
}, "strict", z.ZodTypeAny, {
|
|
41495
|
+
result: string | boolean;
|
|
41496
|
+
robot: "/document/optimize";
|
|
41497
|
+
force_accept: string | boolean;
|
|
41498
|
+
ignore_errors: string | string[];
|
|
41499
|
+
preset: string;
|
|
41500
|
+
compress_fonts: string | boolean;
|
|
41501
|
+
subset_fonts: string | boolean;
|
|
41502
|
+
remove_metadata: string | boolean;
|
|
41503
|
+
linearize: string | boolean;
|
|
41504
|
+
compatibility: string;
|
|
41505
|
+
use?: string | string[] | {
|
|
41506
|
+
name: string;
|
|
41507
|
+
fields?: string | undefined;
|
|
41508
|
+
as?: string | undefined;
|
|
41509
|
+
}[] | {
|
|
41510
|
+
steps: string | string[] | {
|
|
41511
|
+
name: string;
|
|
41512
|
+
fields?: string | undefined;
|
|
41513
|
+
as?: string | undefined;
|
|
41514
|
+
}[];
|
|
41515
|
+
fields?: string[] | undefined;
|
|
41516
|
+
bundle_steps?: boolean | undefined;
|
|
41517
|
+
group_by_original?: boolean | undefined;
|
|
41518
|
+
} | undefined;
|
|
41519
|
+
output_meta?: string | boolean | string[] | Record<string, string | boolean> | undefined;
|
|
41520
|
+
queue?: string | undefined;
|
|
41521
|
+
image_dpi?: string | number | undefined;
|
|
41522
|
+
}, {
|
|
41523
|
+
robot: "/document/optimize";
|
|
41524
|
+
result?: string | boolean | undefined;
|
|
41525
|
+
use?: string | string[] | {
|
|
41526
|
+
name: string;
|
|
41527
|
+
fields?: string | undefined;
|
|
41528
|
+
as?: string | undefined;
|
|
41529
|
+
}[] | {
|
|
41530
|
+
steps: string | string[] | {
|
|
41531
|
+
name: string;
|
|
41532
|
+
fields?: string | undefined;
|
|
41533
|
+
as?: string | undefined;
|
|
41534
|
+
}[];
|
|
41535
|
+
fields?: string[] | undefined;
|
|
41536
|
+
bundle_steps?: boolean | undefined;
|
|
41537
|
+
group_by_original?: boolean | undefined;
|
|
41538
|
+
} | undefined;
|
|
41539
|
+
output_meta?: string | boolean | string[] | Record<string, string | boolean> | undefined;
|
|
41540
|
+
queue?: string | undefined;
|
|
41541
|
+
force_accept?: string | boolean | undefined;
|
|
41542
|
+
ignore_errors?: string | boolean | ("meta" | "execute")[] | undefined;
|
|
41543
|
+
preset?: string | undefined;
|
|
41544
|
+
image_dpi?: string | number | undefined;
|
|
41545
|
+
compress_fonts?: string | boolean | undefined;
|
|
41546
|
+
subset_fonts?: string | boolean | undefined;
|
|
41547
|
+
remove_metadata?: string | boolean | undefined;
|
|
41548
|
+
linearize?: string | boolean | undefined;
|
|
41549
|
+
compatibility?: string | undefined;
|
|
41196
41550
|
}>, z.ZodObject<{
|
|
41197
41551
|
output_meta: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodBoolean]>>, z.ZodUnion<[z.ZodString, z.ZodBoolean]>, z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>]>>;
|
|
41198
41552
|
result: z.ZodDefault<z.ZodUnion<[z.ZodString, z.ZodBoolean]>>;
|
|
@@ -58980,6 +59334,124 @@ export declare const stepSchemaWithHiddenFields: z.ZodIntersection<z.ZodObject<{
|
|
|
58980
59334
|
force_accept?: string | boolean | undefined;
|
|
58981
59335
|
ignore_errors?: string | boolean | ("meta" | "execute")[] | undefined;
|
|
58982
59336
|
granularity?: string | undefined;
|
|
59337
|
+
}>, z.ZodObject<{
|
|
59338
|
+
output_meta: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodBoolean]>>, z.ZodUnion<[z.ZodString, z.ZodBoolean]>, z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>]>>;
|
|
59339
|
+
queue: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodEnum<["batch"]>]>>;
|
|
59340
|
+
force_accept: z.ZodDefault<z.ZodUnion<[z.ZodString, z.ZodBoolean]>>;
|
|
59341
|
+
ignore_errors: z.ZodDefault<z.ZodUnion<[z.ZodString, z.ZodEffects<z.ZodUnion<[z.ZodBoolean, z.ZodArray<z.ZodEnum<["meta", "execute"]>, "many">]>, string[], boolean | ("meta" | "execute")[]>]>>;
|
|
59342
|
+
use: z.ZodOptional<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">, z.ZodArray<z.ZodObject<{
|
|
59343
|
+
name: z.ZodString;
|
|
59344
|
+
fields: z.ZodOptional<z.ZodString>;
|
|
59345
|
+
as: z.ZodOptional<z.ZodString>;
|
|
59346
|
+
}, "strict", z.ZodTypeAny, {
|
|
59347
|
+
name: string;
|
|
59348
|
+
fields?: string | undefined;
|
|
59349
|
+
as?: string | undefined;
|
|
59350
|
+
}, {
|
|
59351
|
+
name: string;
|
|
59352
|
+
fields?: string | undefined;
|
|
59353
|
+
as?: string | undefined;
|
|
59354
|
+
}>, "many">]>, z.ZodObject<{
|
|
59355
|
+
steps: z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">, z.ZodArray<z.ZodObject<{
|
|
59356
|
+
name: z.ZodString;
|
|
59357
|
+
fields: z.ZodOptional<z.ZodString>;
|
|
59358
|
+
as: z.ZodOptional<z.ZodString>;
|
|
59359
|
+
}, "strict", z.ZodTypeAny, {
|
|
59360
|
+
name: string;
|
|
59361
|
+
fields?: string | undefined;
|
|
59362
|
+
as?: string | undefined;
|
|
59363
|
+
}, {
|
|
59364
|
+
name: string;
|
|
59365
|
+
fields?: string | undefined;
|
|
59366
|
+
as?: string | undefined;
|
|
59367
|
+
}>, "many">]>;
|
|
59368
|
+
bundle_steps: z.ZodOptional<z.ZodBoolean>;
|
|
59369
|
+
group_by_original: z.ZodOptional<z.ZodBoolean>;
|
|
59370
|
+
fields: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
59371
|
+
}, "strict", z.ZodTypeAny, {
|
|
59372
|
+
steps: string | string[] | {
|
|
59373
|
+
name: string;
|
|
59374
|
+
fields?: string | undefined;
|
|
59375
|
+
as?: string | undefined;
|
|
59376
|
+
}[];
|
|
59377
|
+
fields?: string[] | undefined;
|
|
59378
|
+
bundle_steps?: boolean | undefined;
|
|
59379
|
+
group_by_original?: boolean | undefined;
|
|
59380
|
+
}, {
|
|
59381
|
+
steps: string | string[] | {
|
|
59382
|
+
name: string;
|
|
59383
|
+
fields?: string | undefined;
|
|
59384
|
+
as?: string | undefined;
|
|
59385
|
+
}[];
|
|
59386
|
+
fields?: string[] | undefined;
|
|
59387
|
+
bundle_steps?: boolean | undefined;
|
|
59388
|
+
group_by_original?: boolean | undefined;
|
|
59389
|
+
}>]>>;
|
|
59390
|
+
robot: z.ZodLiteral<"/document/optimize">;
|
|
59391
|
+
preset: z.ZodDefault<z.ZodUnion<[z.ZodString, z.ZodEnum<["screen", "ebook", "printer", "prepress"]>]>>;
|
|
59392
|
+
image_dpi: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
59393
|
+
compress_fonts: z.ZodDefault<z.ZodUnion<[z.ZodString, z.ZodBoolean]>>;
|
|
59394
|
+
subset_fonts: z.ZodDefault<z.ZodUnion<[z.ZodString, z.ZodBoolean]>>;
|
|
59395
|
+
remove_metadata: z.ZodDefault<z.ZodUnion<[z.ZodString, z.ZodBoolean]>>;
|
|
59396
|
+
linearize: z.ZodDefault<z.ZodUnion<[z.ZodString, z.ZodBoolean]>>;
|
|
59397
|
+
compatibility: z.ZodDefault<z.ZodUnion<[z.ZodString, z.ZodEnum<["1.4", "1.5", "1.6", "1.7", "2.0"]>]>>;
|
|
59398
|
+
result: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodUnion<[z.ZodString, z.ZodLiteral<"debug">]>, z.ZodDefault<z.ZodUnion<[z.ZodString, z.ZodBoolean]>>]>>;
|
|
59399
|
+
}, "strict", z.ZodTypeAny, {
|
|
59400
|
+
robot: "/document/optimize";
|
|
59401
|
+
force_accept: string | boolean;
|
|
59402
|
+
ignore_errors: string | string[];
|
|
59403
|
+
preset: string;
|
|
59404
|
+
compress_fonts: string | boolean;
|
|
59405
|
+
subset_fonts: string | boolean;
|
|
59406
|
+
remove_metadata: string | boolean;
|
|
59407
|
+
linearize: string | boolean;
|
|
59408
|
+
compatibility: string;
|
|
59409
|
+
result?: string | boolean | undefined;
|
|
59410
|
+
use?: string | string[] | {
|
|
59411
|
+
name: string;
|
|
59412
|
+
fields?: string | undefined;
|
|
59413
|
+
as?: string | undefined;
|
|
59414
|
+
}[] | {
|
|
59415
|
+
steps: string | string[] | {
|
|
59416
|
+
name: string;
|
|
59417
|
+
fields?: string | undefined;
|
|
59418
|
+
as?: string | undefined;
|
|
59419
|
+
}[];
|
|
59420
|
+
fields?: string[] | undefined;
|
|
59421
|
+
bundle_steps?: boolean | undefined;
|
|
59422
|
+
group_by_original?: boolean | undefined;
|
|
59423
|
+
} | undefined;
|
|
59424
|
+
output_meta?: string | boolean | string[] | Record<string, string | boolean> | undefined;
|
|
59425
|
+
queue?: string | undefined;
|
|
59426
|
+
image_dpi?: string | number | undefined;
|
|
59427
|
+
}, {
|
|
59428
|
+
robot: "/document/optimize";
|
|
59429
|
+
result?: string | boolean | undefined;
|
|
59430
|
+
use?: string | string[] | {
|
|
59431
|
+
name: string;
|
|
59432
|
+
fields?: string | undefined;
|
|
59433
|
+
as?: string | undefined;
|
|
59434
|
+
}[] | {
|
|
59435
|
+
steps: string | string[] | {
|
|
59436
|
+
name: string;
|
|
59437
|
+
fields?: string | undefined;
|
|
59438
|
+
as?: string | undefined;
|
|
59439
|
+
}[];
|
|
59440
|
+
fields?: string[] | undefined;
|
|
59441
|
+
bundle_steps?: boolean | undefined;
|
|
59442
|
+
group_by_original?: boolean | undefined;
|
|
59443
|
+
} | undefined;
|
|
59444
|
+
output_meta?: string | boolean | string[] | Record<string, string | boolean> | undefined;
|
|
59445
|
+
queue?: string | undefined;
|
|
59446
|
+
force_accept?: string | boolean | undefined;
|
|
59447
|
+
ignore_errors?: string | boolean | ("meta" | "execute")[] | undefined;
|
|
59448
|
+
preset?: string | undefined;
|
|
59449
|
+
image_dpi?: string | number | undefined;
|
|
59450
|
+
compress_fonts?: string | boolean | undefined;
|
|
59451
|
+
subset_fonts?: string | boolean | undefined;
|
|
59452
|
+
remove_metadata?: string | boolean | undefined;
|
|
59453
|
+
linearize?: string | boolean | undefined;
|
|
59454
|
+
compatibility?: string | undefined;
|
|
58983
59455
|
}>, z.ZodObject<{
|
|
58984
59456
|
output_meta: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodBoolean]>>, z.ZodUnion<[z.ZodString, z.ZodBoolean]>, z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>]>>;
|
|
58985
59457
|
queue: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodEnum<["batch"]>]>>;
|
|
@@ -76602,28 +77074,139 @@ export declare const stepsSchemaWithHiddenFields: z.ZodRecord<z.ZodString, z.Zod
|
|
|
76602
77074
|
bundle_steps?: boolean | undefined;
|
|
76603
77075
|
group_by_original?: boolean | undefined;
|
|
76604
77076
|
}>]>>;
|
|
76605
|
-
credentials: z.ZodOptional<z.ZodString>;
|
|
76606
|
-
space: z.ZodOptional<z.ZodString>;
|
|
76607
|
-
region: z.ZodOptional<z.ZodString>;
|
|
76608
|
-
key: z.ZodOptional<z.ZodString>;
|
|
76609
|
-
secret: z.ZodOptional<z.ZodString>;
|
|
76610
|
-
robot: z.ZodLiteral<"/digitalocean/store">;
|
|
76611
|
-
path: z.ZodDefault<z.ZodString>;
|
|
76612
|
-
url_prefix: z.ZodDefault<z.ZodString>;
|
|
76613
|
-
acl: z.ZodDefault<z.ZodUnion<[z.ZodString, z.ZodEnum<["private", "public-read"]>]>>;
|
|
76614
|
-
headers: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
76615
|
-
sign_urls_for: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
77077
|
+
credentials: z.ZodOptional<z.ZodString>;
|
|
77078
|
+
space: z.ZodOptional<z.ZodString>;
|
|
77079
|
+
region: z.ZodOptional<z.ZodString>;
|
|
77080
|
+
key: z.ZodOptional<z.ZodString>;
|
|
77081
|
+
secret: z.ZodOptional<z.ZodString>;
|
|
77082
|
+
robot: z.ZodLiteral<"/digitalocean/store">;
|
|
77083
|
+
path: z.ZodDefault<z.ZodString>;
|
|
77084
|
+
url_prefix: z.ZodDefault<z.ZodString>;
|
|
77085
|
+
acl: z.ZodDefault<z.ZodUnion<[z.ZodString, z.ZodEnum<["private", "public-read"]>]>>;
|
|
77086
|
+
headers: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
77087
|
+
sign_urls_for: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
77088
|
+
result: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodUnion<[z.ZodString, z.ZodLiteral<"debug">]>, z.ZodDefault<z.ZodUnion<[z.ZodString, z.ZodBoolean]>>]>>;
|
|
77089
|
+
}, "strict", z.ZodTypeAny, {
|
|
77090
|
+
headers: Record<string, string>;
|
|
77091
|
+
path: string;
|
|
77092
|
+
robot: "/digitalocean/store";
|
|
77093
|
+
force_accept: string | boolean;
|
|
77094
|
+
ignore_errors: string | string[];
|
|
77095
|
+
url_prefix: string;
|
|
77096
|
+
acl: string;
|
|
77097
|
+
key?: string | undefined;
|
|
77098
|
+
secret?: string | undefined;
|
|
77099
|
+
result?: string | boolean | undefined;
|
|
77100
|
+
use?: string | string[] | {
|
|
77101
|
+
name: string;
|
|
77102
|
+
fields?: string | undefined;
|
|
77103
|
+
as?: string | undefined;
|
|
77104
|
+
}[] | {
|
|
77105
|
+
steps: string | string[] | {
|
|
77106
|
+
name: string;
|
|
77107
|
+
fields?: string | undefined;
|
|
77108
|
+
as?: string | undefined;
|
|
77109
|
+
}[];
|
|
77110
|
+
fields?: string[] | undefined;
|
|
77111
|
+
bundle_steps?: boolean | undefined;
|
|
77112
|
+
group_by_original?: boolean | undefined;
|
|
77113
|
+
} | undefined;
|
|
77114
|
+
output_meta?: string | boolean | string[] | Record<string, string | boolean> | undefined;
|
|
77115
|
+
queue?: string | undefined;
|
|
77116
|
+
credentials?: string | undefined;
|
|
77117
|
+
space?: string | undefined;
|
|
77118
|
+
region?: string | undefined;
|
|
77119
|
+
sign_urls_for?: string | number | undefined;
|
|
77120
|
+
}, {
|
|
77121
|
+
robot: "/digitalocean/store";
|
|
77122
|
+
headers?: Record<string, string> | undefined;
|
|
77123
|
+
path?: string | undefined;
|
|
77124
|
+
key?: string | undefined;
|
|
77125
|
+
secret?: string | undefined;
|
|
77126
|
+
result?: string | boolean | undefined;
|
|
77127
|
+
use?: string | string[] | {
|
|
77128
|
+
name: string;
|
|
77129
|
+
fields?: string | undefined;
|
|
77130
|
+
as?: string | undefined;
|
|
77131
|
+
}[] | {
|
|
77132
|
+
steps: string | string[] | {
|
|
77133
|
+
name: string;
|
|
77134
|
+
fields?: string | undefined;
|
|
77135
|
+
as?: string | undefined;
|
|
77136
|
+
}[];
|
|
77137
|
+
fields?: string[] | undefined;
|
|
77138
|
+
bundle_steps?: boolean | undefined;
|
|
77139
|
+
group_by_original?: boolean | undefined;
|
|
77140
|
+
} | undefined;
|
|
77141
|
+
output_meta?: string | boolean | string[] | Record<string, string | boolean> | undefined;
|
|
77142
|
+
queue?: string | undefined;
|
|
77143
|
+
force_accept?: string | boolean | undefined;
|
|
77144
|
+
ignore_errors?: string | boolean | ("meta" | "execute")[] | undefined;
|
|
77145
|
+
credentials?: string | undefined;
|
|
77146
|
+
space?: string | undefined;
|
|
77147
|
+
region?: string | undefined;
|
|
77148
|
+
sign_urls_for?: string | number | undefined;
|
|
77149
|
+
url_prefix?: string | undefined;
|
|
77150
|
+
acl?: string | undefined;
|
|
77151
|
+
}>, z.ZodObject<{
|
|
77152
|
+
output_meta: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodBoolean]>>, z.ZodUnion<[z.ZodString, z.ZodBoolean]>, z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>]>>;
|
|
77153
|
+
queue: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodEnum<["batch"]>]>>;
|
|
77154
|
+
force_accept: z.ZodDefault<z.ZodUnion<[z.ZodString, z.ZodBoolean]>>;
|
|
77155
|
+
ignore_errors: z.ZodDefault<z.ZodUnion<[z.ZodString, z.ZodEffects<z.ZodUnion<[z.ZodBoolean, z.ZodArray<z.ZodEnum<["meta", "execute"]>, "many">]>, string[], boolean | ("meta" | "execute")[]>]>>;
|
|
77156
|
+
use: z.ZodOptional<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">, z.ZodArray<z.ZodObject<{
|
|
77157
|
+
name: z.ZodString;
|
|
77158
|
+
fields: z.ZodOptional<z.ZodString>;
|
|
77159
|
+
as: z.ZodOptional<z.ZodString>;
|
|
77160
|
+
}, "strict", z.ZodTypeAny, {
|
|
77161
|
+
name: string;
|
|
77162
|
+
fields?: string | undefined;
|
|
77163
|
+
as?: string | undefined;
|
|
77164
|
+
}, {
|
|
77165
|
+
name: string;
|
|
77166
|
+
fields?: string | undefined;
|
|
77167
|
+
as?: string | undefined;
|
|
77168
|
+
}>, "many">]>, z.ZodObject<{
|
|
77169
|
+
steps: z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">, z.ZodArray<z.ZodObject<{
|
|
77170
|
+
name: z.ZodString;
|
|
77171
|
+
fields: z.ZodOptional<z.ZodString>;
|
|
77172
|
+
as: z.ZodOptional<z.ZodString>;
|
|
77173
|
+
}, "strict", z.ZodTypeAny, {
|
|
77174
|
+
name: string;
|
|
77175
|
+
fields?: string | undefined;
|
|
77176
|
+
as?: string | undefined;
|
|
77177
|
+
}, {
|
|
77178
|
+
name: string;
|
|
77179
|
+
fields?: string | undefined;
|
|
77180
|
+
as?: string | undefined;
|
|
77181
|
+
}>, "many">]>;
|
|
77182
|
+
bundle_steps: z.ZodOptional<z.ZodBoolean>;
|
|
77183
|
+
group_by_original: z.ZodOptional<z.ZodBoolean>;
|
|
77184
|
+
fields: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
77185
|
+
}, "strict", z.ZodTypeAny, {
|
|
77186
|
+
steps: string | string[] | {
|
|
77187
|
+
name: string;
|
|
77188
|
+
fields?: string | undefined;
|
|
77189
|
+
as?: string | undefined;
|
|
77190
|
+
}[];
|
|
77191
|
+
fields?: string[] | undefined;
|
|
77192
|
+
bundle_steps?: boolean | undefined;
|
|
77193
|
+
group_by_original?: boolean | undefined;
|
|
77194
|
+
}, {
|
|
77195
|
+
steps: string | string[] | {
|
|
77196
|
+
name: string;
|
|
77197
|
+
fields?: string | undefined;
|
|
77198
|
+
as?: string | undefined;
|
|
77199
|
+
}[];
|
|
77200
|
+
fields?: string[] | undefined;
|
|
77201
|
+
bundle_steps?: boolean | undefined;
|
|
77202
|
+
group_by_original?: boolean | undefined;
|
|
77203
|
+
}>]>>;
|
|
77204
|
+
robot: z.ZodLiteral<"/document/autorotate">;
|
|
76616
77205
|
result: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodUnion<[z.ZodString, z.ZodLiteral<"debug">]>, z.ZodDefault<z.ZodUnion<[z.ZodString, z.ZodBoolean]>>]>>;
|
|
76617
77206
|
}, "strict", z.ZodTypeAny, {
|
|
76618
|
-
|
|
76619
|
-
path: string;
|
|
76620
|
-
robot: "/digitalocean/store";
|
|
77207
|
+
robot: "/document/autorotate";
|
|
76621
77208
|
force_accept: string | boolean;
|
|
76622
77209
|
ignore_errors: string | string[];
|
|
76623
|
-
url_prefix: string;
|
|
76624
|
-
acl: string;
|
|
76625
|
-
key?: string | undefined;
|
|
76626
|
-
secret?: string | undefined;
|
|
76627
77210
|
result?: string | boolean | undefined;
|
|
76628
77211
|
use?: string | string[] | {
|
|
76629
77212
|
name: string;
|
|
@@ -76641,16 +77224,8 @@ export declare const stepsSchemaWithHiddenFields: z.ZodRecord<z.ZodString, z.Zod
|
|
|
76641
77224
|
} | undefined;
|
|
76642
77225
|
output_meta?: string | boolean | string[] | Record<string, string | boolean> | undefined;
|
|
76643
77226
|
queue?: string | undefined;
|
|
76644
|
-
credentials?: string | undefined;
|
|
76645
|
-
space?: string | undefined;
|
|
76646
|
-
region?: string | undefined;
|
|
76647
|
-
sign_urls_for?: string | number | undefined;
|
|
76648
77227
|
}, {
|
|
76649
|
-
robot: "/
|
|
76650
|
-
headers?: Record<string, string> | undefined;
|
|
76651
|
-
path?: string | undefined;
|
|
76652
|
-
key?: string | undefined;
|
|
76653
|
-
secret?: string | undefined;
|
|
77228
|
+
robot: "/document/autorotate";
|
|
76654
77229
|
result?: string | boolean | undefined;
|
|
76655
77230
|
use?: string | string[] | {
|
|
76656
77231
|
name: string;
|
|
@@ -76670,12 +77245,6 @@ export declare const stepsSchemaWithHiddenFields: z.ZodRecord<z.ZodString, z.Zod
|
|
|
76670
77245
|
queue?: string | undefined;
|
|
76671
77246
|
force_accept?: string | boolean | undefined;
|
|
76672
77247
|
ignore_errors?: string | boolean | ("meta" | "execute")[] | undefined;
|
|
76673
|
-
credentials?: string | undefined;
|
|
76674
|
-
space?: string | undefined;
|
|
76675
|
-
region?: string | undefined;
|
|
76676
|
-
sign_urls_for?: string | number | undefined;
|
|
76677
|
-
url_prefix?: string | undefined;
|
|
76678
|
-
acl?: string | undefined;
|
|
76679
77248
|
}>, z.ZodObject<{
|
|
76680
77249
|
output_meta: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodBoolean]>>, z.ZodUnion<[z.ZodString, z.ZodBoolean]>, z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>]>>;
|
|
76681
77250
|
queue: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodEnum<["batch"]>]>>;
|
|
@@ -76729,12 +77298,28 @@ export declare const stepsSchemaWithHiddenFields: z.ZodRecord<z.ZodString, z.Zod
|
|
|
76729
77298
|
bundle_steps?: boolean | undefined;
|
|
76730
77299
|
group_by_original?: boolean | undefined;
|
|
76731
77300
|
}>]>>;
|
|
76732
|
-
robot: z.ZodLiteral<"/document/
|
|
77301
|
+
robot: z.ZodLiteral<"/document/convert">;
|
|
77302
|
+
format: z.ZodUnion<[z.ZodString, z.ZodEnum<["ai", "csv", "doc", "docx", "eps", "gif", "html", "jpeg", "jpg", "latex", "oda", "odd", "odt", "ott", "pdf", "png", "pot", "pps", "ppt", "pptx", "ppz", "ps", "rtf", "rtx", "srt", "svg", "text", "txt", "vtt", "xhtml", "xla", "xls", "xlsx", "xml"]>]>;
|
|
77303
|
+
markdown_format: z.ZodDefault<z.ZodUnion<[z.ZodString, z.ZodEnum<["commonmark", "gfm"]>]>>;
|
|
77304
|
+
markdown_theme: z.ZodDefault<z.ZodUnion<[z.ZodString, z.ZodEnum<["bare", "github"]>]>>;
|
|
77305
|
+
pdf_margin: z.ZodDefault<z.ZodString>;
|
|
77306
|
+
pdf_print_background: z.ZodDefault<z.ZodUnion<[z.ZodString, z.ZodBoolean]>>;
|
|
77307
|
+
pdf_format: z.ZodDefault<z.ZodUnion<[z.ZodString, z.ZodEnum<["A0", "A1", "A2", "A3", "A4", "A5", "A6", "Ledger", "Legal", "Letter", "Tabloid"]>]>>;
|
|
77308
|
+
pdf_display_header_footer: z.ZodDefault<z.ZodUnion<[z.ZodString, z.ZodBoolean]>>;
|
|
77309
|
+
pdf_header_template: z.ZodOptional<z.ZodString>;
|
|
77310
|
+
pdf_footer_template: z.ZodOptional<z.ZodString>;
|
|
76733
77311
|
result: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodUnion<[z.ZodString, z.ZodLiteral<"debug">]>, z.ZodDefault<z.ZodUnion<[z.ZodString, z.ZodBoolean]>>]>>;
|
|
76734
77312
|
}, "strict", z.ZodTypeAny, {
|
|
76735
|
-
|
|
77313
|
+
format: string;
|
|
77314
|
+
robot: "/document/convert";
|
|
76736
77315
|
force_accept: string | boolean;
|
|
76737
77316
|
ignore_errors: string | string[];
|
|
77317
|
+
markdown_format: string;
|
|
77318
|
+
markdown_theme: string;
|
|
77319
|
+
pdf_margin: string;
|
|
77320
|
+
pdf_print_background: string | boolean;
|
|
77321
|
+
pdf_format: string;
|
|
77322
|
+
pdf_display_header_footer: string | boolean;
|
|
76738
77323
|
result?: string | boolean | undefined;
|
|
76739
77324
|
use?: string | string[] | {
|
|
76740
77325
|
name: string;
|
|
@@ -76752,8 +77337,11 @@ export declare const stepsSchemaWithHiddenFields: z.ZodRecord<z.ZodString, z.Zod
|
|
|
76752
77337
|
} | undefined;
|
|
76753
77338
|
output_meta?: string | boolean | string[] | Record<string, string | boolean> | undefined;
|
|
76754
77339
|
queue?: string | undefined;
|
|
77340
|
+
pdf_header_template?: string | undefined;
|
|
77341
|
+
pdf_footer_template?: string | undefined;
|
|
76755
77342
|
}, {
|
|
76756
|
-
|
|
77343
|
+
format: string;
|
|
77344
|
+
robot: "/document/convert";
|
|
76757
77345
|
result?: string | boolean | undefined;
|
|
76758
77346
|
use?: string | string[] | {
|
|
76759
77347
|
name: string;
|
|
@@ -76773,6 +77361,14 @@ export declare const stepsSchemaWithHiddenFields: z.ZodRecord<z.ZodString, z.Zod
|
|
|
76773
77361
|
queue?: string | undefined;
|
|
76774
77362
|
force_accept?: string | boolean | undefined;
|
|
76775
77363
|
ignore_errors?: string | boolean | ("meta" | "execute")[] | undefined;
|
|
77364
|
+
markdown_format?: string | undefined;
|
|
77365
|
+
markdown_theme?: string | undefined;
|
|
77366
|
+
pdf_margin?: string | undefined;
|
|
77367
|
+
pdf_print_background?: string | boolean | undefined;
|
|
77368
|
+
pdf_format?: string | undefined;
|
|
77369
|
+
pdf_display_header_footer?: string | boolean | undefined;
|
|
77370
|
+
pdf_header_template?: string | undefined;
|
|
77371
|
+
pdf_footer_template?: string | undefined;
|
|
76776
77372
|
}>, z.ZodObject<{
|
|
76777
77373
|
output_meta: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodBoolean]>>, z.ZodUnion<[z.ZodString, z.ZodBoolean]>, z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>]>>;
|
|
76778
77374
|
queue: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodEnum<["batch"]>]>>;
|
|
@@ -76826,28 +77422,15 @@ export declare const stepsSchemaWithHiddenFields: z.ZodRecord<z.ZodString, z.Zod
|
|
|
76826
77422
|
bundle_steps?: boolean | undefined;
|
|
76827
77423
|
group_by_original?: boolean | undefined;
|
|
76828
77424
|
}>]>>;
|
|
76829
|
-
robot: z.ZodLiteral<"/document/
|
|
76830
|
-
|
|
76831
|
-
|
|
76832
|
-
markdown_theme: z.ZodDefault<z.ZodUnion<[z.ZodString, z.ZodEnum<["bare", "github"]>]>>;
|
|
76833
|
-
pdf_margin: z.ZodDefault<z.ZodString>;
|
|
76834
|
-
pdf_print_background: z.ZodDefault<z.ZodUnion<[z.ZodString, z.ZodBoolean]>>;
|
|
76835
|
-
pdf_format: z.ZodDefault<z.ZodUnion<[z.ZodString, z.ZodEnum<["A0", "A1", "A2", "A3", "A4", "A5", "A6", "Ledger", "Legal", "Letter", "Tabloid"]>]>>;
|
|
76836
|
-
pdf_display_header_footer: z.ZodDefault<z.ZodUnion<[z.ZodString, z.ZodBoolean]>>;
|
|
76837
|
-
pdf_header_template: z.ZodOptional<z.ZodString>;
|
|
76838
|
-
pdf_footer_template: z.ZodOptional<z.ZodString>;
|
|
77425
|
+
robot: z.ZodLiteral<"/document/merge">;
|
|
77426
|
+
input_passwords: z.ZodDefault<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
|
|
77427
|
+
output_password: z.ZodOptional<z.ZodString>;
|
|
76839
77428
|
result: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodUnion<[z.ZodString, z.ZodLiteral<"debug">]>, z.ZodDefault<z.ZodUnion<[z.ZodString, z.ZodBoolean]>>]>>;
|
|
76840
77429
|
}, "strict", z.ZodTypeAny, {
|
|
76841
|
-
|
|
76842
|
-
robot: "/document/convert";
|
|
77430
|
+
robot: "/document/merge";
|
|
76843
77431
|
force_accept: string | boolean;
|
|
76844
77432
|
ignore_errors: string | string[];
|
|
76845
|
-
|
|
76846
|
-
markdown_theme: string;
|
|
76847
|
-
pdf_margin: string;
|
|
76848
|
-
pdf_print_background: string | boolean;
|
|
76849
|
-
pdf_format: string;
|
|
76850
|
-
pdf_display_header_footer: string | boolean;
|
|
77433
|
+
input_passwords: string | string[];
|
|
76851
77434
|
result?: string | boolean | undefined;
|
|
76852
77435
|
use?: string | string[] | {
|
|
76853
77436
|
name: string;
|
|
@@ -76865,11 +77448,9 @@ export declare const stepsSchemaWithHiddenFields: z.ZodRecord<z.ZodString, z.Zod
|
|
|
76865
77448
|
} | undefined;
|
|
76866
77449
|
output_meta?: string | boolean | string[] | Record<string, string | boolean> | undefined;
|
|
76867
77450
|
queue?: string | undefined;
|
|
76868
|
-
|
|
76869
|
-
pdf_footer_template?: string | undefined;
|
|
77451
|
+
output_password?: string | undefined;
|
|
76870
77452
|
}, {
|
|
76871
|
-
|
|
76872
|
-
robot: "/document/convert";
|
|
77453
|
+
robot: "/document/merge";
|
|
76873
77454
|
result?: string | boolean | undefined;
|
|
76874
77455
|
use?: string | string[] | {
|
|
76875
77456
|
name: string;
|
|
@@ -76889,14 +77470,8 @@ export declare const stepsSchemaWithHiddenFields: z.ZodRecord<z.ZodString, z.Zod
|
|
|
76889
77470
|
queue?: string | undefined;
|
|
76890
77471
|
force_accept?: string | boolean | undefined;
|
|
76891
77472
|
ignore_errors?: string | boolean | ("meta" | "execute")[] | undefined;
|
|
76892
|
-
|
|
76893
|
-
|
|
76894
|
-
pdf_margin?: string | undefined;
|
|
76895
|
-
pdf_print_background?: string | boolean | undefined;
|
|
76896
|
-
pdf_format?: string | undefined;
|
|
76897
|
-
pdf_display_header_footer?: string | boolean | undefined;
|
|
76898
|
-
pdf_header_template?: string | undefined;
|
|
76899
|
-
pdf_footer_template?: string | undefined;
|
|
77473
|
+
input_passwords?: string | string[] | undefined;
|
|
77474
|
+
output_password?: string | undefined;
|
|
76900
77475
|
}>, z.ZodObject<{
|
|
76901
77476
|
output_meta: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodBoolean]>>, z.ZodUnion<[z.ZodString, z.ZodBoolean]>, z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>]>>;
|
|
76902
77477
|
queue: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodEnum<["batch"]>]>>;
|
|
@@ -76950,15 +77525,18 @@ export declare const stepsSchemaWithHiddenFields: z.ZodRecord<z.ZodString, z.Zod
|
|
|
76950
77525
|
bundle_steps?: boolean | undefined;
|
|
76951
77526
|
group_by_original?: boolean | undefined;
|
|
76952
77527
|
}>]>>;
|
|
76953
|
-
robot: z.ZodLiteral<"/document/
|
|
76954
|
-
|
|
76955
|
-
|
|
77528
|
+
robot: z.ZodLiteral<"/document/ocr">;
|
|
77529
|
+
provider: z.ZodUnion<[z.ZodString, z.ZodEnum<["aws", "gcp", "replicate", "fal", "transloadit"]>]>;
|
|
77530
|
+
granularity: z.ZodDefault<z.ZodUnion<[z.ZodString, z.ZodEnum<["full", "list"]>]>>;
|
|
77531
|
+
format: z.ZodDefault<z.ZodUnion<[z.ZodString, z.ZodEnum<["json", "meta", "text"]>]>>;
|
|
76956
77532
|
result: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodUnion<[z.ZodString, z.ZodLiteral<"debug">]>, z.ZodDefault<z.ZodUnion<[z.ZodString, z.ZodBoolean]>>]>>;
|
|
76957
77533
|
}, "strict", z.ZodTypeAny, {
|
|
76958
|
-
|
|
77534
|
+
format: string;
|
|
77535
|
+
robot: "/document/ocr";
|
|
76959
77536
|
force_accept: string | boolean;
|
|
76960
77537
|
ignore_errors: string | string[];
|
|
76961
|
-
|
|
77538
|
+
provider: string;
|
|
77539
|
+
granularity: string;
|
|
76962
77540
|
result?: string | boolean | undefined;
|
|
76963
77541
|
use?: string | string[] | {
|
|
76964
77542
|
name: string;
|
|
@@ -76976,9 +77554,10 @@ export declare const stepsSchemaWithHiddenFields: z.ZodRecord<z.ZodString, z.Zod
|
|
|
76976
77554
|
} | undefined;
|
|
76977
77555
|
output_meta?: string | boolean | string[] | Record<string, string | boolean> | undefined;
|
|
76978
77556
|
queue?: string | undefined;
|
|
76979
|
-
output_password?: string | undefined;
|
|
76980
77557
|
}, {
|
|
76981
|
-
robot: "/document/
|
|
77558
|
+
robot: "/document/ocr";
|
|
77559
|
+
provider: string;
|
|
77560
|
+
format?: string | undefined;
|
|
76982
77561
|
result?: string | boolean | undefined;
|
|
76983
77562
|
use?: string | string[] | {
|
|
76984
77563
|
name: string;
|
|
@@ -76998,8 +77577,7 @@ export declare const stepsSchemaWithHiddenFields: z.ZodRecord<z.ZodString, z.Zod
|
|
|
76998
77577
|
queue?: string | undefined;
|
|
76999
77578
|
force_accept?: string | boolean | undefined;
|
|
77000
77579
|
ignore_errors?: string | boolean | ("meta" | "execute")[] | undefined;
|
|
77001
|
-
|
|
77002
|
-
output_password?: string | undefined;
|
|
77580
|
+
granularity?: string | undefined;
|
|
77003
77581
|
}>, z.ZodObject<{
|
|
77004
77582
|
output_meta: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodBoolean]>>, z.ZodUnion<[z.ZodString, z.ZodBoolean]>, z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>]>>;
|
|
77005
77583
|
queue: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodEnum<["batch"]>]>>;
|
|
@@ -77053,18 +77631,25 @@ export declare const stepsSchemaWithHiddenFields: z.ZodRecord<z.ZodString, z.Zod
|
|
|
77053
77631
|
bundle_steps?: boolean | undefined;
|
|
77054
77632
|
group_by_original?: boolean | undefined;
|
|
77055
77633
|
}>]>>;
|
|
77056
|
-
robot: z.ZodLiteral<"/document/
|
|
77057
|
-
|
|
77058
|
-
|
|
77059
|
-
|
|
77634
|
+
robot: z.ZodLiteral<"/document/optimize">;
|
|
77635
|
+
preset: z.ZodDefault<z.ZodUnion<[z.ZodString, z.ZodEnum<["screen", "ebook", "printer", "prepress"]>]>>;
|
|
77636
|
+
image_dpi: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
77637
|
+
compress_fonts: z.ZodDefault<z.ZodUnion<[z.ZodString, z.ZodBoolean]>>;
|
|
77638
|
+
subset_fonts: z.ZodDefault<z.ZodUnion<[z.ZodString, z.ZodBoolean]>>;
|
|
77639
|
+
remove_metadata: z.ZodDefault<z.ZodUnion<[z.ZodString, z.ZodBoolean]>>;
|
|
77640
|
+
linearize: z.ZodDefault<z.ZodUnion<[z.ZodString, z.ZodBoolean]>>;
|
|
77641
|
+
compatibility: z.ZodDefault<z.ZodUnion<[z.ZodString, z.ZodEnum<["1.4", "1.5", "1.6", "1.7", "2.0"]>]>>;
|
|
77060
77642
|
result: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodUnion<[z.ZodString, z.ZodLiteral<"debug">]>, z.ZodDefault<z.ZodUnion<[z.ZodString, z.ZodBoolean]>>]>>;
|
|
77061
77643
|
}, "strict", z.ZodTypeAny, {
|
|
77062
|
-
|
|
77063
|
-
robot: "/document/ocr";
|
|
77644
|
+
robot: "/document/optimize";
|
|
77064
77645
|
force_accept: string | boolean;
|
|
77065
77646
|
ignore_errors: string | string[];
|
|
77066
|
-
|
|
77067
|
-
|
|
77647
|
+
preset: string;
|
|
77648
|
+
compress_fonts: string | boolean;
|
|
77649
|
+
subset_fonts: string | boolean;
|
|
77650
|
+
remove_metadata: string | boolean;
|
|
77651
|
+
linearize: string | boolean;
|
|
77652
|
+
compatibility: string;
|
|
77068
77653
|
result?: string | boolean | undefined;
|
|
77069
77654
|
use?: string | string[] | {
|
|
77070
77655
|
name: string;
|
|
@@ -77082,10 +77667,9 @@ export declare const stepsSchemaWithHiddenFields: z.ZodRecord<z.ZodString, z.Zod
|
|
|
77082
77667
|
} | undefined;
|
|
77083
77668
|
output_meta?: string | boolean | string[] | Record<string, string | boolean> | undefined;
|
|
77084
77669
|
queue?: string | undefined;
|
|
77670
|
+
image_dpi?: string | number | undefined;
|
|
77085
77671
|
}, {
|
|
77086
|
-
robot: "/document/
|
|
77087
|
-
provider: string;
|
|
77088
|
-
format?: string | undefined;
|
|
77672
|
+
robot: "/document/optimize";
|
|
77089
77673
|
result?: string | boolean | undefined;
|
|
77090
77674
|
use?: string | string[] | {
|
|
77091
77675
|
name: string;
|
|
@@ -77105,7 +77689,13 @@ export declare const stepsSchemaWithHiddenFields: z.ZodRecord<z.ZodString, z.Zod
|
|
|
77105
77689
|
queue?: string | undefined;
|
|
77106
77690
|
force_accept?: string | boolean | undefined;
|
|
77107
77691
|
ignore_errors?: string | boolean | ("meta" | "execute")[] | undefined;
|
|
77108
|
-
|
|
77692
|
+
preset?: string | undefined;
|
|
77693
|
+
image_dpi?: string | number | undefined;
|
|
77694
|
+
compress_fonts?: string | boolean | undefined;
|
|
77695
|
+
subset_fonts?: string | boolean | undefined;
|
|
77696
|
+
remove_metadata?: string | boolean | undefined;
|
|
77697
|
+
linearize?: string | boolean | undefined;
|
|
77698
|
+
compatibility?: string | undefined;
|
|
77109
77699
|
}>, z.ZodObject<{
|
|
77110
77700
|
output_meta: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodBoolean]>>, z.ZodUnion<[z.ZodString, z.ZodBoolean]>, z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>]>>;
|
|
77111
77701
|
queue: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodEnum<["batch"]>]>>;
|
|
@@ -94732,28 +95322,139 @@ declare const optionalStepsWithHiddenFieldsSchema: z.ZodOptional<z.ZodRecord<z.Z
|
|
|
94732
95322
|
bundle_steps?: boolean | undefined;
|
|
94733
95323
|
group_by_original?: boolean | undefined;
|
|
94734
95324
|
}>]>>;
|
|
94735
|
-
credentials: z.ZodOptional<z.ZodString>;
|
|
94736
|
-
space: z.ZodOptional<z.ZodString>;
|
|
94737
|
-
region: z.ZodOptional<z.ZodString>;
|
|
94738
|
-
key: z.ZodOptional<z.ZodString>;
|
|
94739
|
-
secret: z.ZodOptional<z.ZodString>;
|
|
94740
|
-
robot: z.ZodLiteral<"/digitalocean/store">;
|
|
94741
|
-
path: z.ZodDefault<z.ZodString>;
|
|
94742
|
-
url_prefix: z.ZodDefault<z.ZodString>;
|
|
94743
|
-
acl: z.ZodDefault<z.ZodUnion<[z.ZodString, z.ZodEnum<["private", "public-read"]>]>>;
|
|
94744
|
-
headers: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
94745
|
-
sign_urls_for: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
95325
|
+
credentials: z.ZodOptional<z.ZodString>;
|
|
95326
|
+
space: z.ZodOptional<z.ZodString>;
|
|
95327
|
+
region: z.ZodOptional<z.ZodString>;
|
|
95328
|
+
key: z.ZodOptional<z.ZodString>;
|
|
95329
|
+
secret: z.ZodOptional<z.ZodString>;
|
|
95330
|
+
robot: z.ZodLiteral<"/digitalocean/store">;
|
|
95331
|
+
path: z.ZodDefault<z.ZodString>;
|
|
95332
|
+
url_prefix: z.ZodDefault<z.ZodString>;
|
|
95333
|
+
acl: z.ZodDefault<z.ZodUnion<[z.ZodString, z.ZodEnum<["private", "public-read"]>]>>;
|
|
95334
|
+
headers: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
95335
|
+
sign_urls_for: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
95336
|
+
result: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodUnion<[z.ZodString, z.ZodLiteral<"debug">]>, z.ZodDefault<z.ZodUnion<[z.ZodString, z.ZodBoolean]>>]>>;
|
|
95337
|
+
}, "strict", z.ZodTypeAny, {
|
|
95338
|
+
headers: Record<string, string>;
|
|
95339
|
+
path: string;
|
|
95340
|
+
robot: "/digitalocean/store";
|
|
95341
|
+
force_accept: string | boolean;
|
|
95342
|
+
ignore_errors: string | string[];
|
|
95343
|
+
url_prefix: string;
|
|
95344
|
+
acl: string;
|
|
95345
|
+
key?: string | undefined;
|
|
95346
|
+
secret?: string | undefined;
|
|
95347
|
+
result?: string | boolean | undefined;
|
|
95348
|
+
use?: string | string[] | {
|
|
95349
|
+
name: string;
|
|
95350
|
+
fields?: string | undefined;
|
|
95351
|
+
as?: string | undefined;
|
|
95352
|
+
}[] | {
|
|
95353
|
+
steps: string | string[] | {
|
|
95354
|
+
name: string;
|
|
95355
|
+
fields?: string | undefined;
|
|
95356
|
+
as?: string | undefined;
|
|
95357
|
+
}[];
|
|
95358
|
+
fields?: string[] | undefined;
|
|
95359
|
+
bundle_steps?: boolean | undefined;
|
|
95360
|
+
group_by_original?: boolean | undefined;
|
|
95361
|
+
} | undefined;
|
|
95362
|
+
output_meta?: string | boolean | string[] | Record<string, string | boolean> | undefined;
|
|
95363
|
+
queue?: string | undefined;
|
|
95364
|
+
credentials?: string | undefined;
|
|
95365
|
+
space?: string | undefined;
|
|
95366
|
+
region?: string | undefined;
|
|
95367
|
+
sign_urls_for?: string | number | undefined;
|
|
95368
|
+
}, {
|
|
95369
|
+
robot: "/digitalocean/store";
|
|
95370
|
+
headers?: Record<string, string> | undefined;
|
|
95371
|
+
path?: string | undefined;
|
|
95372
|
+
key?: string | undefined;
|
|
95373
|
+
secret?: string | undefined;
|
|
95374
|
+
result?: string | boolean | undefined;
|
|
95375
|
+
use?: string | string[] | {
|
|
95376
|
+
name: string;
|
|
95377
|
+
fields?: string | undefined;
|
|
95378
|
+
as?: string | undefined;
|
|
95379
|
+
}[] | {
|
|
95380
|
+
steps: string | string[] | {
|
|
95381
|
+
name: string;
|
|
95382
|
+
fields?: string | undefined;
|
|
95383
|
+
as?: string | undefined;
|
|
95384
|
+
}[];
|
|
95385
|
+
fields?: string[] | undefined;
|
|
95386
|
+
bundle_steps?: boolean | undefined;
|
|
95387
|
+
group_by_original?: boolean | undefined;
|
|
95388
|
+
} | undefined;
|
|
95389
|
+
output_meta?: string | boolean | string[] | Record<string, string | boolean> | undefined;
|
|
95390
|
+
queue?: string | undefined;
|
|
95391
|
+
force_accept?: string | boolean | undefined;
|
|
95392
|
+
ignore_errors?: string | boolean | ("meta" | "execute")[] | undefined;
|
|
95393
|
+
credentials?: string | undefined;
|
|
95394
|
+
space?: string | undefined;
|
|
95395
|
+
region?: string | undefined;
|
|
95396
|
+
sign_urls_for?: string | number | undefined;
|
|
95397
|
+
url_prefix?: string | undefined;
|
|
95398
|
+
acl?: string | undefined;
|
|
95399
|
+
}>, z.ZodObject<{
|
|
95400
|
+
output_meta: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodBoolean]>>, z.ZodUnion<[z.ZodString, z.ZodBoolean]>, z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>]>>;
|
|
95401
|
+
queue: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodEnum<["batch"]>]>>;
|
|
95402
|
+
force_accept: z.ZodDefault<z.ZodUnion<[z.ZodString, z.ZodBoolean]>>;
|
|
95403
|
+
ignore_errors: z.ZodDefault<z.ZodUnion<[z.ZodString, z.ZodEffects<z.ZodUnion<[z.ZodBoolean, z.ZodArray<z.ZodEnum<["meta", "execute"]>, "many">]>, string[], boolean | ("meta" | "execute")[]>]>>;
|
|
95404
|
+
use: z.ZodOptional<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">, z.ZodArray<z.ZodObject<{
|
|
95405
|
+
name: z.ZodString;
|
|
95406
|
+
fields: z.ZodOptional<z.ZodString>;
|
|
95407
|
+
as: z.ZodOptional<z.ZodString>;
|
|
95408
|
+
}, "strict", z.ZodTypeAny, {
|
|
95409
|
+
name: string;
|
|
95410
|
+
fields?: string | undefined;
|
|
95411
|
+
as?: string | undefined;
|
|
95412
|
+
}, {
|
|
95413
|
+
name: string;
|
|
95414
|
+
fields?: string | undefined;
|
|
95415
|
+
as?: string | undefined;
|
|
95416
|
+
}>, "many">]>, z.ZodObject<{
|
|
95417
|
+
steps: z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">, z.ZodArray<z.ZodObject<{
|
|
95418
|
+
name: z.ZodString;
|
|
95419
|
+
fields: z.ZodOptional<z.ZodString>;
|
|
95420
|
+
as: z.ZodOptional<z.ZodString>;
|
|
95421
|
+
}, "strict", z.ZodTypeAny, {
|
|
95422
|
+
name: string;
|
|
95423
|
+
fields?: string | undefined;
|
|
95424
|
+
as?: string | undefined;
|
|
95425
|
+
}, {
|
|
95426
|
+
name: string;
|
|
95427
|
+
fields?: string | undefined;
|
|
95428
|
+
as?: string | undefined;
|
|
95429
|
+
}>, "many">]>;
|
|
95430
|
+
bundle_steps: z.ZodOptional<z.ZodBoolean>;
|
|
95431
|
+
group_by_original: z.ZodOptional<z.ZodBoolean>;
|
|
95432
|
+
fields: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
95433
|
+
}, "strict", z.ZodTypeAny, {
|
|
95434
|
+
steps: string | string[] | {
|
|
95435
|
+
name: string;
|
|
95436
|
+
fields?: string | undefined;
|
|
95437
|
+
as?: string | undefined;
|
|
95438
|
+
}[];
|
|
95439
|
+
fields?: string[] | undefined;
|
|
95440
|
+
bundle_steps?: boolean | undefined;
|
|
95441
|
+
group_by_original?: boolean | undefined;
|
|
95442
|
+
}, {
|
|
95443
|
+
steps: string | string[] | {
|
|
95444
|
+
name: string;
|
|
95445
|
+
fields?: string | undefined;
|
|
95446
|
+
as?: string | undefined;
|
|
95447
|
+
}[];
|
|
95448
|
+
fields?: string[] | undefined;
|
|
95449
|
+
bundle_steps?: boolean | undefined;
|
|
95450
|
+
group_by_original?: boolean | undefined;
|
|
95451
|
+
}>]>>;
|
|
95452
|
+
robot: z.ZodLiteral<"/document/autorotate">;
|
|
94746
95453
|
result: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodUnion<[z.ZodString, z.ZodLiteral<"debug">]>, z.ZodDefault<z.ZodUnion<[z.ZodString, z.ZodBoolean]>>]>>;
|
|
94747
95454
|
}, "strict", z.ZodTypeAny, {
|
|
94748
|
-
|
|
94749
|
-
path: string;
|
|
94750
|
-
robot: "/digitalocean/store";
|
|
95455
|
+
robot: "/document/autorotate";
|
|
94751
95456
|
force_accept: string | boolean;
|
|
94752
95457
|
ignore_errors: string | string[];
|
|
94753
|
-
url_prefix: string;
|
|
94754
|
-
acl: string;
|
|
94755
|
-
key?: string | undefined;
|
|
94756
|
-
secret?: string | undefined;
|
|
94757
95458
|
result?: string | boolean | undefined;
|
|
94758
95459
|
use?: string | string[] | {
|
|
94759
95460
|
name: string;
|
|
@@ -94771,16 +95472,8 @@ declare const optionalStepsWithHiddenFieldsSchema: z.ZodOptional<z.ZodRecord<z.Z
|
|
|
94771
95472
|
} | undefined;
|
|
94772
95473
|
output_meta?: string | boolean | string[] | Record<string, string | boolean> | undefined;
|
|
94773
95474
|
queue?: string | undefined;
|
|
94774
|
-
credentials?: string | undefined;
|
|
94775
|
-
space?: string | undefined;
|
|
94776
|
-
region?: string | undefined;
|
|
94777
|
-
sign_urls_for?: string | number | undefined;
|
|
94778
95475
|
}, {
|
|
94779
|
-
robot: "/
|
|
94780
|
-
headers?: Record<string, string> | undefined;
|
|
94781
|
-
path?: string | undefined;
|
|
94782
|
-
key?: string | undefined;
|
|
94783
|
-
secret?: string | undefined;
|
|
95476
|
+
robot: "/document/autorotate";
|
|
94784
95477
|
result?: string | boolean | undefined;
|
|
94785
95478
|
use?: string | string[] | {
|
|
94786
95479
|
name: string;
|
|
@@ -94800,12 +95493,6 @@ declare const optionalStepsWithHiddenFieldsSchema: z.ZodOptional<z.ZodRecord<z.Z
|
|
|
94800
95493
|
queue?: string | undefined;
|
|
94801
95494
|
force_accept?: string | boolean | undefined;
|
|
94802
95495
|
ignore_errors?: string | boolean | ("meta" | "execute")[] | undefined;
|
|
94803
|
-
credentials?: string | undefined;
|
|
94804
|
-
space?: string | undefined;
|
|
94805
|
-
region?: string | undefined;
|
|
94806
|
-
sign_urls_for?: string | number | undefined;
|
|
94807
|
-
url_prefix?: string | undefined;
|
|
94808
|
-
acl?: string | undefined;
|
|
94809
95496
|
}>, z.ZodObject<{
|
|
94810
95497
|
output_meta: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodBoolean]>>, z.ZodUnion<[z.ZodString, z.ZodBoolean]>, z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>]>>;
|
|
94811
95498
|
queue: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodEnum<["batch"]>]>>;
|
|
@@ -94859,12 +95546,28 @@ declare const optionalStepsWithHiddenFieldsSchema: z.ZodOptional<z.ZodRecord<z.Z
|
|
|
94859
95546
|
bundle_steps?: boolean | undefined;
|
|
94860
95547
|
group_by_original?: boolean | undefined;
|
|
94861
95548
|
}>]>>;
|
|
94862
|
-
robot: z.ZodLiteral<"/document/
|
|
95549
|
+
robot: z.ZodLiteral<"/document/convert">;
|
|
95550
|
+
format: z.ZodUnion<[z.ZodString, z.ZodEnum<["ai", "csv", "doc", "docx", "eps", "gif", "html", "jpeg", "jpg", "latex", "oda", "odd", "odt", "ott", "pdf", "png", "pot", "pps", "ppt", "pptx", "ppz", "ps", "rtf", "rtx", "srt", "svg", "text", "txt", "vtt", "xhtml", "xla", "xls", "xlsx", "xml"]>]>;
|
|
95551
|
+
markdown_format: z.ZodDefault<z.ZodUnion<[z.ZodString, z.ZodEnum<["commonmark", "gfm"]>]>>;
|
|
95552
|
+
markdown_theme: z.ZodDefault<z.ZodUnion<[z.ZodString, z.ZodEnum<["bare", "github"]>]>>;
|
|
95553
|
+
pdf_margin: z.ZodDefault<z.ZodString>;
|
|
95554
|
+
pdf_print_background: z.ZodDefault<z.ZodUnion<[z.ZodString, z.ZodBoolean]>>;
|
|
95555
|
+
pdf_format: z.ZodDefault<z.ZodUnion<[z.ZodString, z.ZodEnum<["A0", "A1", "A2", "A3", "A4", "A5", "A6", "Ledger", "Legal", "Letter", "Tabloid"]>]>>;
|
|
95556
|
+
pdf_display_header_footer: z.ZodDefault<z.ZodUnion<[z.ZodString, z.ZodBoolean]>>;
|
|
95557
|
+
pdf_header_template: z.ZodOptional<z.ZodString>;
|
|
95558
|
+
pdf_footer_template: z.ZodOptional<z.ZodString>;
|
|
94863
95559
|
result: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodUnion<[z.ZodString, z.ZodLiteral<"debug">]>, z.ZodDefault<z.ZodUnion<[z.ZodString, z.ZodBoolean]>>]>>;
|
|
94864
95560
|
}, "strict", z.ZodTypeAny, {
|
|
94865
|
-
|
|
95561
|
+
format: string;
|
|
95562
|
+
robot: "/document/convert";
|
|
94866
95563
|
force_accept: string | boolean;
|
|
94867
95564
|
ignore_errors: string | string[];
|
|
95565
|
+
markdown_format: string;
|
|
95566
|
+
markdown_theme: string;
|
|
95567
|
+
pdf_margin: string;
|
|
95568
|
+
pdf_print_background: string | boolean;
|
|
95569
|
+
pdf_format: string;
|
|
95570
|
+
pdf_display_header_footer: string | boolean;
|
|
94868
95571
|
result?: string | boolean | undefined;
|
|
94869
95572
|
use?: string | string[] | {
|
|
94870
95573
|
name: string;
|
|
@@ -94882,8 +95585,11 @@ declare const optionalStepsWithHiddenFieldsSchema: z.ZodOptional<z.ZodRecord<z.Z
|
|
|
94882
95585
|
} | undefined;
|
|
94883
95586
|
output_meta?: string | boolean | string[] | Record<string, string | boolean> | undefined;
|
|
94884
95587
|
queue?: string | undefined;
|
|
95588
|
+
pdf_header_template?: string | undefined;
|
|
95589
|
+
pdf_footer_template?: string | undefined;
|
|
94885
95590
|
}, {
|
|
94886
|
-
|
|
95591
|
+
format: string;
|
|
95592
|
+
robot: "/document/convert";
|
|
94887
95593
|
result?: string | boolean | undefined;
|
|
94888
95594
|
use?: string | string[] | {
|
|
94889
95595
|
name: string;
|
|
@@ -94903,6 +95609,14 @@ declare const optionalStepsWithHiddenFieldsSchema: z.ZodOptional<z.ZodRecord<z.Z
|
|
|
94903
95609
|
queue?: string | undefined;
|
|
94904
95610
|
force_accept?: string | boolean | undefined;
|
|
94905
95611
|
ignore_errors?: string | boolean | ("meta" | "execute")[] | undefined;
|
|
95612
|
+
markdown_format?: string | undefined;
|
|
95613
|
+
markdown_theme?: string | undefined;
|
|
95614
|
+
pdf_margin?: string | undefined;
|
|
95615
|
+
pdf_print_background?: string | boolean | undefined;
|
|
95616
|
+
pdf_format?: string | undefined;
|
|
95617
|
+
pdf_display_header_footer?: string | boolean | undefined;
|
|
95618
|
+
pdf_header_template?: string | undefined;
|
|
95619
|
+
pdf_footer_template?: string | undefined;
|
|
94906
95620
|
}>, z.ZodObject<{
|
|
94907
95621
|
output_meta: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodBoolean]>>, z.ZodUnion<[z.ZodString, z.ZodBoolean]>, z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>]>>;
|
|
94908
95622
|
queue: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodEnum<["batch"]>]>>;
|
|
@@ -94956,28 +95670,15 @@ declare const optionalStepsWithHiddenFieldsSchema: z.ZodOptional<z.ZodRecord<z.Z
|
|
|
94956
95670
|
bundle_steps?: boolean | undefined;
|
|
94957
95671
|
group_by_original?: boolean | undefined;
|
|
94958
95672
|
}>]>>;
|
|
94959
|
-
robot: z.ZodLiteral<"/document/
|
|
94960
|
-
|
|
94961
|
-
|
|
94962
|
-
markdown_theme: z.ZodDefault<z.ZodUnion<[z.ZodString, z.ZodEnum<["bare", "github"]>]>>;
|
|
94963
|
-
pdf_margin: z.ZodDefault<z.ZodString>;
|
|
94964
|
-
pdf_print_background: z.ZodDefault<z.ZodUnion<[z.ZodString, z.ZodBoolean]>>;
|
|
94965
|
-
pdf_format: z.ZodDefault<z.ZodUnion<[z.ZodString, z.ZodEnum<["A0", "A1", "A2", "A3", "A4", "A5", "A6", "Ledger", "Legal", "Letter", "Tabloid"]>]>>;
|
|
94966
|
-
pdf_display_header_footer: z.ZodDefault<z.ZodUnion<[z.ZodString, z.ZodBoolean]>>;
|
|
94967
|
-
pdf_header_template: z.ZodOptional<z.ZodString>;
|
|
94968
|
-
pdf_footer_template: z.ZodOptional<z.ZodString>;
|
|
95673
|
+
robot: z.ZodLiteral<"/document/merge">;
|
|
95674
|
+
input_passwords: z.ZodDefault<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
|
|
95675
|
+
output_password: z.ZodOptional<z.ZodString>;
|
|
94969
95676
|
result: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodUnion<[z.ZodString, z.ZodLiteral<"debug">]>, z.ZodDefault<z.ZodUnion<[z.ZodString, z.ZodBoolean]>>]>>;
|
|
94970
95677
|
}, "strict", z.ZodTypeAny, {
|
|
94971
|
-
|
|
94972
|
-
robot: "/document/convert";
|
|
95678
|
+
robot: "/document/merge";
|
|
94973
95679
|
force_accept: string | boolean;
|
|
94974
95680
|
ignore_errors: string | string[];
|
|
94975
|
-
|
|
94976
|
-
markdown_theme: string;
|
|
94977
|
-
pdf_margin: string;
|
|
94978
|
-
pdf_print_background: string | boolean;
|
|
94979
|
-
pdf_format: string;
|
|
94980
|
-
pdf_display_header_footer: string | boolean;
|
|
95681
|
+
input_passwords: string | string[];
|
|
94981
95682
|
result?: string | boolean | undefined;
|
|
94982
95683
|
use?: string | string[] | {
|
|
94983
95684
|
name: string;
|
|
@@ -94995,11 +95696,9 @@ declare const optionalStepsWithHiddenFieldsSchema: z.ZodOptional<z.ZodRecord<z.Z
|
|
|
94995
95696
|
} | undefined;
|
|
94996
95697
|
output_meta?: string | boolean | string[] | Record<string, string | boolean> | undefined;
|
|
94997
95698
|
queue?: string | undefined;
|
|
94998
|
-
|
|
94999
|
-
pdf_footer_template?: string | undefined;
|
|
95699
|
+
output_password?: string | undefined;
|
|
95000
95700
|
}, {
|
|
95001
|
-
|
|
95002
|
-
robot: "/document/convert";
|
|
95701
|
+
robot: "/document/merge";
|
|
95003
95702
|
result?: string | boolean | undefined;
|
|
95004
95703
|
use?: string | string[] | {
|
|
95005
95704
|
name: string;
|
|
@@ -95019,14 +95718,8 @@ declare const optionalStepsWithHiddenFieldsSchema: z.ZodOptional<z.ZodRecord<z.Z
|
|
|
95019
95718
|
queue?: string | undefined;
|
|
95020
95719
|
force_accept?: string | boolean | undefined;
|
|
95021
95720
|
ignore_errors?: string | boolean | ("meta" | "execute")[] | undefined;
|
|
95022
|
-
|
|
95023
|
-
|
|
95024
|
-
pdf_margin?: string | undefined;
|
|
95025
|
-
pdf_print_background?: string | boolean | undefined;
|
|
95026
|
-
pdf_format?: string | undefined;
|
|
95027
|
-
pdf_display_header_footer?: string | boolean | undefined;
|
|
95028
|
-
pdf_header_template?: string | undefined;
|
|
95029
|
-
pdf_footer_template?: string | undefined;
|
|
95721
|
+
input_passwords?: string | string[] | undefined;
|
|
95722
|
+
output_password?: string | undefined;
|
|
95030
95723
|
}>, z.ZodObject<{
|
|
95031
95724
|
output_meta: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodBoolean]>>, z.ZodUnion<[z.ZodString, z.ZodBoolean]>, z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>]>>;
|
|
95032
95725
|
queue: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodEnum<["batch"]>]>>;
|
|
@@ -95080,15 +95773,18 @@ declare const optionalStepsWithHiddenFieldsSchema: z.ZodOptional<z.ZodRecord<z.Z
|
|
|
95080
95773
|
bundle_steps?: boolean | undefined;
|
|
95081
95774
|
group_by_original?: boolean | undefined;
|
|
95082
95775
|
}>]>>;
|
|
95083
|
-
robot: z.ZodLiteral<"/document/
|
|
95084
|
-
|
|
95085
|
-
|
|
95776
|
+
robot: z.ZodLiteral<"/document/ocr">;
|
|
95777
|
+
provider: z.ZodUnion<[z.ZodString, z.ZodEnum<["aws", "gcp", "replicate", "fal", "transloadit"]>]>;
|
|
95778
|
+
granularity: z.ZodDefault<z.ZodUnion<[z.ZodString, z.ZodEnum<["full", "list"]>]>>;
|
|
95779
|
+
format: z.ZodDefault<z.ZodUnion<[z.ZodString, z.ZodEnum<["json", "meta", "text"]>]>>;
|
|
95086
95780
|
result: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodUnion<[z.ZodString, z.ZodLiteral<"debug">]>, z.ZodDefault<z.ZodUnion<[z.ZodString, z.ZodBoolean]>>]>>;
|
|
95087
95781
|
}, "strict", z.ZodTypeAny, {
|
|
95088
|
-
|
|
95782
|
+
format: string;
|
|
95783
|
+
robot: "/document/ocr";
|
|
95089
95784
|
force_accept: string | boolean;
|
|
95090
95785
|
ignore_errors: string | string[];
|
|
95091
|
-
|
|
95786
|
+
provider: string;
|
|
95787
|
+
granularity: string;
|
|
95092
95788
|
result?: string | boolean | undefined;
|
|
95093
95789
|
use?: string | string[] | {
|
|
95094
95790
|
name: string;
|
|
@@ -95106,9 +95802,10 @@ declare const optionalStepsWithHiddenFieldsSchema: z.ZodOptional<z.ZodRecord<z.Z
|
|
|
95106
95802
|
} | undefined;
|
|
95107
95803
|
output_meta?: string | boolean | string[] | Record<string, string | boolean> | undefined;
|
|
95108
95804
|
queue?: string | undefined;
|
|
95109
|
-
output_password?: string | undefined;
|
|
95110
95805
|
}, {
|
|
95111
|
-
robot: "/document/
|
|
95806
|
+
robot: "/document/ocr";
|
|
95807
|
+
provider: string;
|
|
95808
|
+
format?: string | undefined;
|
|
95112
95809
|
result?: string | boolean | undefined;
|
|
95113
95810
|
use?: string | string[] | {
|
|
95114
95811
|
name: string;
|
|
@@ -95128,8 +95825,7 @@ declare const optionalStepsWithHiddenFieldsSchema: z.ZodOptional<z.ZodRecord<z.Z
|
|
|
95128
95825
|
queue?: string | undefined;
|
|
95129
95826
|
force_accept?: string | boolean | undefined;
|
|
95130
95827
|
ignore_errors?: string | boolean | ("meta" | "execute")[] | undefined;
|
|
95131
|
-
|
|
95132
|
-
output_password?: string | undefined;
|
|
95828
|
+
granularity?: string | undefined;
|
|
95133
95829
|
}>, z.ZodObject<{
|
|
95134
95830
|
output_meta: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodBoolean]>>, z.ZodUnion<[z.ZodString, z.ZodBoolean]>, z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>]>>;
|
|
95135
95831
|
queue: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodEnum<["batch"]>]>>;
|
|
@@ -95183,18 +95879,25 @@ declare const optionalStepsWithHiddenFieldsSchema: z.ZodOptional<z.ZodRecord<z.Z
|
|
|
95183
95879
|
bundle_steps?: boolean | undefined;
|
|
95184
95880
|
group_by_original?: boolean | undefined;
|
|
95185
95881
|
}>]>>;
|
|
95186
|
-
robot: z.ZodLiteral<"/document/
|
|
95187
|
-
|
|
95188
|
-
|
|
95189
|
-
|
|
95882
|
+
robot: z.ZodLiteral<"/document/optimize">;
|
|
95883
|
+
preset: z.ZodDefault<z.ZodUnion<[z.ZodString, z.ZodEnum<["screen", "ebook", "printer", "prepress"]>]>>;
|
|
95884
|
+
image_dpi: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
95885
|
+
compress_fonts: z.ZodDefault<z.ZodUnion<[z.ZodString, z.ZodBoolean]>>;
|
|
95886
|
+
subset_fonts: z.ZodDefault<z.ZodUnion<[z.ZodString, z.ZodBoolean]>>;
|
|
95887
|
+
remove_metadata: z.ZodDefault<z.ZodUnion<[z.ZodString, z.ZodBoolean]>>;
|
|
95888
|
+
linearize: z.ZodDefault<z.ZodUnion<[z.ZodString, z.ZodBoolean]>>;
|
|
95889
|
+
compatibility: z.ZodDefault<z.ZodUnion<[z.ZodString, z.ZodEnum<["1.4", "1.5", "1.6", "1.7", "2.0"]>]>>;
|
|
95190
95890
|
result: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodUnion<[z.ZodString, z.ZodLiteral<"debug">]>, z.ZodDefault<z.ZodUnion<[z.ZodString, z.ZodBoolean]>>]>>;
|
|
95191
95891
|
}, "strict", z.ZodTypeAny, {
|
|
95192
|
-
|
|
95193
|
-
robot: "/document/ocr";
|
|
95892
|
+
robot: "/document/optimize";
|
|
95194
95893
|
force_accept: string | boolean;
|
|
95195
95894
|
ignore_errors: string | string[];
|
|
95196
|
-
|
|
95197
|
-
|
|
95895
|
+
preset: string;
|
|
95896
|
+
compress_fonts: string | boolean;
|
|
95897
|
+
subset_fonts: string | boolean;
|
|
95898
|
+
remove_metadata: string | boolean;
|
|
95899
|
+
linearize: string | boolean;
|
|
95900
|
+
compatibility: string;
|
|
95198
95901
|
result?: string | boolean | undefined;
|
|
95199
95902
|
use?: string | string[] | {
|
|
95200
95903
|
name: string;
|
|
@@ -95212,10 +95915,9 @@ declare const optionalStepsWithHiddenFieldsSchema: z.ZodOptional<z.ZodRecord<z.Z
|
|
|
95212
95915
|
} | undefined;
|
|
95213
95916
|
output_meta?: string | boolean | string[] | Record<string, string | boolean> | undefined;
|
|
95214
95917
|
queue?: string | undefined;
|
|
95918
|
+
image_dpi?: string | number | undefined;
|
|
95215
95919
|
}, {
|
|
95216
|
-
robot: "/document/
|
|
95217
|
-
provider: string;
|
|
95218
|
-
format?: string | undefined;
|
|
95920
|
+
robot: "/document/optimize";
|
|
95219
95921
|
result?: string | boolean | undefined;
|
|
95220
95922
|
use?: string | string[] | {
|
|
95221
95923
|
name: string;
|
|
@@ -95235,7 +95937,13 @@ declare const optionalStepsWithHiddenFieldsSchema: z.ZodOptional<z.ZodRecord<z.Z
|
|
|
95235
95937
|
queue?: string | undefined;
|
|
95236
95938
|
force_accept?: string | boolean | undefined;
|
|
95237
95939
|
ignore_errors?: string | boolean | ("meta" | "execute")[] | undefined;
|
|
95238
|
-
|
|
95940
|
+
preset?: string | undefined;
|
|
95941
|
+
image_dpi?: string | number | undefined;
|
|
95942
|
+
compress_fonts?: string | boolean | undefined;
|
|
95943
|
+
subset_fonts?: string | boolean | undefined;
|
|
95944
|
+
remove_metadata?: string | boolean | undefined;
|
|
95945
|
+
linearize?: string | boolean | undefined;
|
|
95946
|
+
compatibility?: string | undefined;
|
|
95239
95947
|
}>, z.ZodObject<{
|
|
95240
95948
|
output_meta: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodBoolean]>>, z.ZodUnion<[z.ZodString, z.ZodBoolean]>, z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>]>>;
|
|
95241
95949
|
queue: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodEnum<["batch"]>]>>;
|
|
@@ -109057,6 +109765,34 @@ export declare const assemblyInstructionsSchema: z.ZodObject<{
|
|
|
109057
109765
|
} | undefined;
|
|
109058
109766
|
output_meta?: string | boolean | string[] | Record<string, string | boolean> | undefined;
|
|
109059
109767
|
queue?: string | undefined;
|
|
109768
|
+
} | {
|
|
109769
|
+
result: string | boolean;
|
|
109770
|
+
robot: "/document/optimize";
|
|
109771
|
+
force_accept: string | boolean;
|
|
109772
|
+
ignore_errors: string | string[];
|
|
109773
|
+
preset: string;
|
|
109774
|
+
compress_fonts: string | boolean;
|
|
109775
|
+
subset_fonts: string | boolean;
|
|
109776
|
+
remove_metadata: string | boolean;
|
|
109777
|
+
linearize: string | boolean;
|
|
109778
|
+
compatibility: string;
|
|
109779
|
+
use?: string | string[] | {
|
|
109780
|
+
name: string;
|
|
109781
|
+
fields?: string | undefined;
|
|
109782
|
+
as?: string | undefined;
|
|
109783
|
+
}[] | {
|
|
109784
|
+
steps: string | string[] | {
|
|
109785
|
+
name: string;
|
|
109786
|
+
fields?: string | undefined;
|
|
109787
|
+
as?: string | undefined;
|
|
109788
|
+
}[];
|
|
109789
|
+
fields?: string[] | undefined;
|
|
109790
|
+
bundle_steps?: boolean | undefined;
|
|
109791
|
+
group_by_original?: boolean | undefined;
|
|
109792
|
+
} | undefined;
|
|
109793
|
+
output_meta?: string | boolean | string[] | Record<string, string | boolean> | undefined;
|
|
109794
|
+
queue?: string | undefined;
|
|
109795
|
+
image_dpi?: string | number | undefined;
|
|
109060
109796
|
} | {
|
|
109061
109797
|
result: string | boolean;
|
|
109062
109798
|
robot: "/document/split";
|
|
@@ -112972,6 +113708,34 @@ export declare const assemblyInstructionsSchema: z.ZodObject<{
|
|
|
112972
113708
|
force_accept?: string | boolean | undefined;
|
|
112973
113709
|
ignore_errors?: string | boolean | ("meta" | "execute")[] | undefined;
|
|
112974
113710
|
granularity?: string | undefined;
|
|
113711
|
+
} | {
|
|
113712
|
+
robot: "/document/optimize";
|
|
113713
|
+
result?: string | boolean | undefined;
|
|
113714
|
+
use?: string | string[] | {
|
|
113715
|
+
name: string;
|
|
113716
|
+
fields?: string | undefined;
|
|
113717
|
+
as?: string | undefined;
|
|
113718
|
+
}[] | {
|
|
113719
|
+
steps: string | string[] | {
|
|
113720
|
+
name: string;
|
|
113721
|
+
fields?: string | undefined;
|
|
113722
|
+
as?: string | undefined;
|
|
113723
|
+
}[];
|
|
113724
|
+
fields?: string[] | undefined;
|
|
113725
|
+
bundle_steps?: boolean | undefined;
|
|
113726
|
+
group_by_original?: boolean | undefined;
|
|
113727
|
+
} | undefined;
|
|
113728
|
+
output_meta?: string | boolean | string[] | Record<string, string | boolean> | undefined;
|
|
113729
|
+
queue?: string | undefined;
|
|
113730
|
+
force_accept?: string | boolean | undefined;
|
|
113731
|
+
ignore_errors?: string | boolean | ("meta" | "execute")[] | undefined;
|
|
113732
|
+
preset?: string | undefined;
|
|
113733
|
+
image_dpi?: string | number | undefined;
|
|
113734
|
+
compress_fonts?: string | boolean | undefined;
|
|
113735
|
+
subset_fonts?: string | boolean | undefined;
|
|
113736
|
+
remove_metadata?: string | boolean | undefined;
|
|
113737
|
+
linearize?: string | boolean | undefined;
|
|
113738
|
+
compatibility?: string | undefined;
|
|
112975
113739
|
} | {
|
|
112976
113740
|
robot: "/document/split";
|
|
112977
113741
|
result?: string | boolean | undefined;
|
|
@@ -116917,6 +117681,34 @@ export declare const assemblyInstructionsSchemaWithRequiredAuth: z.ZodObject<{
|
|
|
116917
117681
|
} | undefined;
|
|
116918
117682
|
output_meta?: string | boolean | string[] | Record<string, string | boolean> | undefined;
|
|
116919
117683
|
queue?: string | undefined;
|
|
117684
|
+
} | {
|
|
117685
|
+
result: string | boolean;
|
|
117686
|
+
robot: "/document/optimize";
|
|
117687
|
+
force_accept: string | boolean;
|
|
117688
|
+
ignore_errors: string | string[];
|
|
117689
|
+
preset: string;
|
|
117690
|
+
compress_fonts: string | boolean;
|
|
117691
|
+
subset_fonts: string | boolean;
|
|
117692
|
+
remove_metadata: string | boolean;
|
|
117693
|
+
linearize: string | boolean;
|
|
117694
|
+
compatibility: string;
|
|
117695
|
+
use?: string | string[] | {
|
|
117696
|
+
name: string;
|
|
117697
|
+
fields?: string | undefined;
|
|
117698
|
+
as?: string | undefined;
|
|
117699
|
+
}[] | {
|
|
117700
|
+
steps: string | string[] | {
|
|
117701
|
+
name: string;
|
|
117702
|
+
fields?: string | undefined;
|
|
117703
|
+
as?: string | undefined;
|
|
117704
|
+
}[];
|
|
117705
|
+
fields?: string[] | undefined;
|
|
117706
|
+
bundle_steps?: boolean | undefined;
|
|
117707
|
+
group_by_original?: boolean | undefined;
|
|
117708
|
+
} | undefined;
|
|
117709
|
+
output_meta?: string | boolean | string[] | Record<string, string | boolean> | undefined;
|
|
117710
|
+
queue?: string | undefined;
|
|
117711
|
+
image_dpi?: string | number | undefined;
|
|
116920
117712
|
} | {
|
|
116921
117713
|
result: string | boolean;
|
|
116922
117714
|
robot: "/document/split";
|
|
@@ -120832,6 +121624,34 @@ export declare const assemblyInstructionsSchemaWithRequiredAuth: z.ZodObject<{
|
|
|
120832
121624
|
force_accept?: string | boolean | undefined;
|
|
120833
121625
|
ignore_errors?: string | boolean | ("meta" | "execute")[] | undefined;
|
|
120834
121626
|
granularity?: string | undefined;
|
|
121627
|
+
} | {
|
|
121628
|
+
robot: "/document/optimize";
|
|
121629
|
+
result?: string | boolean | undefined;
|
|
121630
|
+
use?: string | string[] | {
|
|
121631
|
+
name: string;
|
|
121632
|
+
fields?: string | undefined;
|
|
121633
|
+
as?: string | undefined;
|
|
121634
|
+
}[] | {
|
|
121635
|
+
steps: string | string[] | {
|
|
121636
|
+
name: string;
|
|
121637
|
+
fields?: string | undefined;
|
|
121638
|
+
as?: string | undefined;
|
|
121639
|
+
}[];
|
|
121640
|
+
fields?: string[] | undefined;
|
|
121641
|
+
bundle_steps?: boolean | undefined;
|
|
121642
|
+
group_by_original?: boolean | undefined;
|
|
121643
|
+
} | undefined;
|
|
121644
|
+
output_meta?: string | boolean | string[] | Record<string, string | boolean> | undefined;
|
|
121645
|
+
queue?: string | undefined;
|
|
121646
|
+
force_accept?: string | boolean | undefined;
|
|
121647
|
+
ignore_errors?: string | boolean | ("meta" | "execute")[] | undefined;
|
|
121648
|
+
preset?: string | undefined;
|
|
121649
|
+
image_dpi?: string | number | undefined;
|
|
121650
|
+
compress_fonts?: string | boolean | undefined;
|
|
121651
|
+
subset_fonts?: string | boolean | undefined;
|
|
121652
|
+
remove_metadata?: string | boolean | undefined;
|
|
121653
|
+
linearize?: string | boolean | undefined;
|
|
121654
|
+
compatibility?: string | undefined;
|
|
120835
121655
|
} | {
|
|
120836
121656
|
robot: "/document/split";
|
|
120837
121657
|
result?: string | boolean | undefined;
|
|
@@ -125013,6 +125833,34 @@ export declare const assemblyInstructionsWithHiddenSchema: z.ZodObject<{
|
|
|
125013
125833
|
} | undefined;
|
|
125014
125834
|
output_meta?: string | boolean | string[] | Record<string, string | boolean> | undefined;
|
|
125015
125835
|
queue?: string | undefined;
|
|
125836
|
+
} | {
|
|
125837
|
+
robot: "/document/optimize";
|
|
125838
|
+
force_accept: string | boolean;
|
|
125839
|
+
ignore_errors: string | string[];
|
|
125840
|
+
preset: string;
|
|
125841
|
+
compress_fonts: string | boolean;
|
|
125842
|
+
subset_fonts: string | boolean;
|
|
125843
|
+
remove_metadata: string | boolean;
|
|
125844
|
+
linearize: string | boolean;
|
|
125845
|
+
compatibility: string;
|
|
125846
|
+
result?: string | boolean | undefined;
|
|
125847
|
+
use?: string | string[] | {
|
|
125848
|
+
name: string;
|
|
125849
|
+
fields?: string | undefined;
|
|
125850
|
+
as?: string | undefined;
|
|
125851
|
+
}[] | {
|
|
125852
|
+
steps: string | string[] | {
|
|
125853
|
+
name: string;
|
|
125854
|
+
fields?: string | undefined;
|
|
125855
|
+
as?: string | undefined;
|
|
125856
|
+
}[];
|
|
125857
|
+
fields?: string[] | undefined;
|
|
125858
|
+
bundle_steps?: boolean | undefined;
|
|
125859
|
+
group_by_original?: boolean | undefined;
|
|
125860
|
+
} | undefined;
|
|
125861
|
+
output_meta?: string | boolean | string[] | Record<string, string | boolean> | undefined;
|
|
125862
|
+
queue?: string | undefined;
|
|
125863
|
+
image_dpi?: string | number | undefined;
|
|
125016
125864
|
} | {
|
|
125017
125865
|
robot: "/document/split";
|
|
125018
125866
|
force_accept: string | boolean;
|
|
@@ -129045,6 +129893,34 @@ export declare const assemblyInstructionsWithHiddenSchema: z.ZodObject<{
|
|
|
129045
129893
|
force_accept?: string | boolean | undefined;
|
|
129046
129894
|
ignore_errors?: string | boolean | ("meta" | "execute")[] | undefined;
|
|
129047
129895
|
granularity?: string | undefined;
|
|
129896
|
+
} | {
|
|
129897
|
+
robot: "/document/optimize";
|
|
129898
|
+
result?: string | boolean | undefined;
|
|
129899
|
+
use?: string | string[] | {
|
|
129900
|
+
name: string;
|
|
129901
|
+
fields?: string | undefined;
|
|
129902
|
+
as?: string | undefined;
|
|
129903
|
+
}[] | {
|
|
129904
|
+
steps: string | string[] | {
|
|
129905
|
+
name: string;
|
|
129906
|
+
fields?: string | undefined;
|
|
129907
|
+
as?: string | undefined;
|
|
129908
|
+
}[];
|
|
129909
|
+
fields?: string[] | undefined;
|
|
129910
|
+
bundle_steps?: boolean | undefined;
|
|
129911
|
+
group_by_original?: boolean | undefined;
|
|
129912
|
+
} | undefined;
|
|
129913
|
+
output_meta?: string | boolean | string[] | Record<string, string | boolean> | undefined;
|
|
129914
|
+
queue?: string | undefined;
|
|
129915
|
+
force_accept?: string | boolean | undefined;
|
|
129916
|
+
ignore_errors?: string | boolean | ("meta" | "execute")[] | undefined;
|
|
129917
|
+
preset?: string | undefined;
|
|
129918
|
+
image_dpi?: string | number | undefined;
|
|
129919
|
+
compress_fonts?: string | boolean | undefined;
|
|
129920
|
+
subset_fonts?: string | boolean | undefined;
|
|
129921
|
+
remove_metadata?: string | boolean | undefined;
|
|
129922
|
+
linearize?: string | boolean | undefined;
|
|
129923
|
+
compatibility?: string | undefined;
|
|
129048
129924
|
} | {
|
|
129049
129925
|
robot: "/document/split";
|
|
129050
129926
|
result?: string | boolean | undefined;
|