@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
|
@@ -5667,6 +5667,124 @@ export declare const robotsSchema: z.ZodDiscriminatedUnion<"robot", [z.ZodObject
|
|
|
5667
5667
|
force_accept?: string | boolean | undefined;
|
|
5668
5668
|
ignore_errors?: string | boolean | ("meta" | "execute")[] | undefined;
|
|
5669
5669
|
granularity?: string | undefined;
|
|
5670
|
+
}>, z.ZodObject<{
|
|
5671
|
+
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">]>]>>;
|
|
5672
|
+
result: z.ZodDefault<z.ZodUnion<[z.ZodString, z.ZodBoolean]>>;
|
|
5673
|
+
queue: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodEnum<["batch"]>]>>;
|
|
5674
|
+
force_accept: z.ZodDefault<z.ZodUnion<[z.ZodString, z.ZodBoolean]>>;
|
|
5675
|
+
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")[]>]>>;
|
|
5676
|
+
use: z.ZodOptional<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">, z.ZodArray<z.ZodObject<{
|
|
5677
|
+
name: z.ZodString;
|
|
5678
|
+
fields: z.ZodOptional<z.ZodString>;
|
|
5679
|
+
as: z.ZodOptional<z.ZodString>;
|
|
5680
|
+
}, "strict", z.ZodTypeAny, {
|
|
5681
|
+
name: string;
|
|
5682
|
+
fields?: string | undefined;
|
|
5683
|
+
as?: string | undefined;
|
|
5684
|
+
}, {
|
|
5685
|
+
name: string;
|
|
5686
|
+
fields?: string | undefined;
|
|
5687
|
+
as?: string | undefined;
|
|
5688
|
+
}>, "many">]>, z.ZodObject<{
|
|
5689
|
+
steps: z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">, z.ZodArray<z.ZodObject<{
|
|
5690
|
+
name: z.ZodString;
|
|
5691
|
+
fields: z.ZodOptional<z.ZodString>;
|
|
5692
|
+
as: z.ZodOptional<z.ZodString>;
|
|
5693
|
+
}, "strict", z.ZodTypeAny, {
|
|
5694
|
+
name: string;
|
|
5695
|
+
fields?: string | undefined;
|
|
5696
|
+
as?: string | undefined;
|
|
5697
|
+
}, {
|
|
5698
|
+
name: string;
|
|
5699
|
+
fields?: string | undefined;
|
|
5700
|
+
as?: string | undefined;
|
|
5701
|
+
}>, "many">]>;
|
|
5702
|
+
bundle_steps: z.ZodOptional<z.ZodBoolean>;
|
|
5703
|
+
group_by_original: z.ZodOptional<z.ZodBoolean>;
|
|
5704
|
+
fields: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
5705
|
+
}, "strict", z.ZodTypeAny, {
|
|
5706
|
+
steps: string | string[] | {
|
|
5707
|
+
name: string;
|
|
5708
|
+
fields?: string | undefined;
|
|
5709
|
+
as?: string | undefined;
|
|
5710
|
+
}[];
|
|
5711
|
+
fields?: string[] | undefined;
|
|
5712
|
+
bundle_steps?: boolean | undefined;
|
|
5713
|
+
group_by_original?: boolean | undefined;
|
|
5714
|
+
}, {
|
|
5715
|
+
steps: string | string[] | {
|
|
5716
|
+
name: string;
|
|
5717
|
+
fields?: string | undefined;
|
|
5718
|
+
as?: string | undefined;
|
|
5719
|
+
}[];
|
|
5720
|
+
fields?: string[] | undefined;
|
|
5721
|
+
bundle_steps?: boolean | undefined;
|
|
5722
|
+
group_by_original?: boolean | undefined;
|
|
5723
|
+
}>]>>;
|
|
5724
|
+
robot: z.ZodLiteral<"/document/optimize">;
|
|
5725
|
+
preset: z.ZodDefault<z.ZodUnion<[z.ZodString, z.ZodEnum<["screen", "ebook", "printer", "prepress"]>]>>;
|
|
5726
|
+
image_dpi: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
5727
|
+
compress_fonts: z.ZodDefault<z.ZodUnion<[z.ZodString, z.ZodBoolean]>>;
|
|
5728
|
+
subset_fonts: z.ZodDefault<z.ZodUnion<[z.ZodString, z.ZodBoolean]>>;
|
|
5729
|
+
remove_metadata: z.ZodDefault<z.ZodUnion<[z.ZodString, z.ZodBoolean]>>;
|
|
5730
|
+
linearize: z.ZodDefault<z.ZodUnion<[z.ZodString, z.ZodBoolean]>>;
|
|
5731
|
+
compatibility: z.ZodDefault<z.ZodUnion<[z.ZodString, z.ZodEnum<["1.4", "1.5", "1.6", "1.7", "2.0"]>]>>;
|
|
5732
|
+
}, "strict", z.ZodTypeAny, {
|
|
5733
|
+
result: string | boolean;
|
|
5734
|
+
robot: "/document/optimize";
|
|
5735
|
+
force_accept: string | boolean;
|
|
5736
|
+
ignore_errors: string | string[];
|
|
5737
|
+
preset: string;
|
|
5738
|
+
compress_fonts: string | boolean;
|
|
5739
|
+
subset_fonts: string | boolean;
|
|
5740
|
+
remove_metadata: string | boolean;
|
|
5741
|
+
linearize: string | boolean;
|
|
5742
|
+
compatibility: string;
|
|
5743
|
+
use?: string | string[] | {
|
|
5744
|
+
name: string;
|
|
5745
|
+
fields?: string | undefined;
|
|
5746
|
+
as?: string | undefined;
|
|
5747
|
+
}[] | {
|
|
5748
|
+
steps: string | string[] | {
|
|
5749
|
+
name: string;
|
|
5750
|
+
fields?: string | undefined;
|
|
5751
|
+
as?: string | undefined;
|
|
5752
|
+
}[];
|
|
5753
|
+
fields?: string[] | undefined;
|
|
5754
|
+
bundle_steps?: boolean | undefined;
|
|
5755
|
+
group_by_original?: boolean | undefined;
|
|
5756
|
+
} | undefined;
|
|
5757
|
+
output_meta?: string | boolean | string[] | Record<string, string | boolean> | undefined;
|
|
5758
|
+
queue?: string | undefined;
|
|
5759
|
+
image_dpi?: string | number | undefined;
|
|
5760
|
+
}, {
|
|
5761
|
+
robot: "/document/optimize";
|
|
5762
|
+
result?: string | boolean | undefined;
|
|
5763
|
+
use?: string | string[] | {
|
|
5764
|
+
name: string;
|
|
5765
|
+
fields?: string | undefined;
|
|
5766
|
+
as?: string | undefined;
|
|
5767
|
+
}[] | {
|
|
5768
|
+
steps: string | string[] | {
|
|
5769
|
+
name: string;
|
|
5770
|
+
fields?: string | undefined;
|
|
5771
|
+
as?: string | undefined;
|
|
5772
|
+
}[];
|
|
5773
|
+
fields?: string[] | undefined;
|
|
5774
|
+
bundle_steps?: boolean | undefined;
|
|
5775
|
+
group_by_original?: boolean | undefined;
|
|
5776
|
+
} | undefined;
|
|
5777
|
+
output_meta?: string | boolean | string[] | Record<string, string | boolean> | undefined;
|
|
5778
|
+
queue?: string | undefined;
|
|
5779
|
+
force_accept?: string | boolean | undefined;
|
|
5780
|
+
ignore_errors?: string | boolean | ("meta" | "execute")[] | undefined;
|
|
5781
|
+
preset?: string | undefined;
|
|
5782
|
+
image_dpi?: string | number | undefined;
|
|
5783
|
+
compress_fonts?: string | boolean | undefined;
|
|
5784
|
+
subset_fonts?: string | boolean | undefined;
|
|
5785
|
+
remove_metadata?: string | boolean | undefined;
|
|
5786
|
+
linearize?: string | boolean | undefined;
|
|
5787
|
+
compatibility?: string | undefined;
|
|
5670
5788
|
}>, z.ZodObject<{
|
|
5671
5789
|
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">]>]>>;
|
|
5672
5790
|
result: z.ZodDefault<z.ZodUnion<[z.ZodString, z.ZodBoolean]>>;
|
|
@@ -23448,6 +23566,124 @@ export declare const robotsWithHiddenFieldsSchema: z.ZodDiscriminatedUnion<"robo
|
|
|
23448
23566
|
force_accept?: string | boolean | undefined;
|
|
23449
23567
|
ignore_errors?: string | boolean | ("meta" | "execute")[] | undefined;
|
|
23450
23568
|
granularity?: string | undefined;
|
|
23569
|
+
}>, z.ZodObject<{
|
|
23570
|
+
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">]>]>>;
|
|
23571
|
+
queue: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodEnum<["batch"]>]>>;
|
|
23572
|
+
force_accept: z.ZodDefault<z.ZodUnion<[z.ZodString, z.ZodBoolean]>>;
|
|
23573
|
+
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")[]>]>>;
|
|
23574
|
+
use: z.ZodOptional<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">, z.ZodArray<z.ZodObject<{
|
|
23575
|
+
name: z.ZodString;
|
|
23576
|
+
fields: z.ZodOptional<z.ZodString>;
|
|
23577
|
+
as: z.ZodOptional<z.ZodString>;
|
|
23578
|
+
}, "strict", z.ZodTypeAny, {
|
|
23579
|
+
name: string;
|
|
23580
|
+
fields?: string | undefined;
|
|
23581
|
+
as?: string | undefined;
|
|
23582
|
+
}, {
|
|
23583
|
+
name: string;
|
|
23584
|
+
fields?: string | undefined;
|
|
23585
|
+
as?: string | undefined;
|
|
23586
|
+
}>, "many">]>, z.ZodObject<{
|
|
23587
|
+
steps: z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">, z.ZodArray<z.ZodObject<{
|
|
23588
|
+
name: z.ZodString;
|
|
23589
|
+
fields: z.ZodOptional<z.ZodString>;
|
|
23590
|
+
as: z.ZodOptional<z.ZodString>;
|
|
23591
|
+
}, "strict", z.ZodTypeAny, {
|
|
23592
|
+
name: string;
|
|
23593
|
+
fields?: string | undefined;
|
|
23594
|
+
as?: string | undefined;
|
|
23595
|
+
}, {
|
|
23596
|
+
name: string;
|
|
23597
|
+
fields?: string | undefined;
|
|
23598
|
+
as?: string | undefined;
|
|
23599
|
+
}>, "many">]>;
|
|
23600
|
+
bundle_steps: z.ZodOptional<z.ZodBoolean>;
|
|
23601
|
+
group_by_original: z.ZodOptional<z.ZodBoolean>;
|
|
23602
|
+
fields: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
23603
|
+
}, "strict", z.ZodTypeAny, {
|
|
23604
|
+
steps: string | string[] | {
|
|
23605
|
+
name: string;
|
|
23606
|
+
fields?: string | undefined;
|
|
23607
|
+
as?: string | undefined;
|
|
23608
|
+
}[];
|
|
23609
|
+
fields?: string[] | undefined;
|
|
23610
|
+
bundle_steps?: boolean | undefined;
|
|
23611
|
+
group_by_original?: boolean | undefined;
|
|
23612
|
+
}, {
|
|
23613
|
+
steps: string | string[] | {
|
|
23614
|
+
name: string;
|
|
23615
|
+
fields?: string | undefined;
|
|
23616
|
+
as?: string | undefined;
|
|
23617
|
+
}[];
|
|
23618
|
+
fields?: string[] | undefined;
|
|
23619
|
+
bundle_steps?: boolean | undefined;
|
|
23620
|
+
group_by_original?: boolean | undefined;
|
|
23621
|
+
}>]>>;
|
|
23622
|
+
robot: z.ZodLiteral<"/document/optimize">;
|
|
23623
|
+
preset: z.ZodDefault<z.ZodUnion<[z.ZodString, z.ZodEnum<["screen", "ebook", "printer", "prepress"]>]>>;
|
|
23624
|
+
image_dpi: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
23625
|
+
compress_fonts: z.ZodDefault<z.ZodUnion<[z.ZodString, z.ZodBoolean]>>;
|
|
23626
|
+
subset_fonts: z.ZodDefault<z.ZodUnion<[z.ZodString, z.ZodBoolean]>>;
|
|
23627
|
+
remove_metadata: z.ZodDefault<z.ZodUnion<[z.ZodString, z.ZodBoolean]>>;
|
|
23628
|
+
linearize: z.ZodDefault<z.ZodUnion<[z.ZodString, z.ZodBoolean]>>;
|
|
23629
|
+
compatibility: z.ZodDefault<z.ZodUnion<[z.ZodString, z.ZodEnum<["1.4", "1.5", "1.6", "1.7", "2.0"]>]>>;
|
|
23630
|
+
result: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodUnion<[z.ZodString, z.ZodLiteral<"debug">]>, z.ZodDefault<z.ZodUnion<[z.ZodString, z.ZodBoolean]>>]>>;
|
|
23631
|
+
}, "strict", z.ZodTypeAny, {
|
|
23632
|
+
robot: "/document/optimize";
|
|
23633
|
+
force_accept: string | boolean;
|
|
23634
|
+
ignore_errors: string | string[];
|
|
23635
|
+
preset: string;
|
|
23636
|
+
compress_fonts: string | boolean;
|
|
23637
|
+
subset_fonts: string | boolean;
|
|
23638
|
+
remove_metadata: string | boolean;
|
|
23639
|
+
linearize: string | boolean;
|
|
23640
|
+
compatibility: string;
|
|
23641
|
+
result?: string | boolean | undefined;
|
|
23642
|
+
use?: string | string[] | {
|
|
23643
|
+
name: string;
|
|
23644
|
+
fields?: string | undefined;
|
|
23645
|
+
as?: string | undefined;
|
|
23646
|
+
}[] | {
|
|
23647
|
+
steps: string | string[] | {
|
|
23648
|
+
name: string;
|
|
23649
|
+
fields?: string | undefined;
|
|
23650
|
+
as?: string | undefined;
|
|
23651
|
+
}[];
|
|
23652
|
+
fields?: string[] | undefined;
|
|
23653
|
+
bundle_steps?: boolean | undefined;
|
|
23654
|
+
group_by_original?: boolean | undefined;
|
|
23655
|
+
} | undefined;
|
|
23656
|
+
output_meta?: string | boolean | string[] | Record<string, string | boolean> | undefined;
|
|
23657
|
+
queue?: string | undefined;
|
|
23658
|
+
image_dpi?: string | number | undefined;
|
|
23659
|
+
}, {
|
|
23660
|
+
robot: "/document/optimize";
|
|
23661
|
+
result?: string | boolean | undefined;
|
|
23662
|
+
use?: string | string[] | {
|
|
23663
|
+
name: string;
|
|
23664
|
+
fields?: string | undefined;
|
|
23665
|
+
as?: string | undefined;
|
|
23666
|
+
}[] | {
|
|
23667
|
+
steps: string | string[] | {
|
|
23668
|
+
name: string;
|
|
23669
|
+
fields?: string | undefined;
|
|
23670
|
+
as?: string | undefined;
|
|
23671
|
+
}[];
|
|
23672
|
+
fields?: string[] | undefined;
|
|
23673
|
+
bundle_steps?: boolean | undefined;
|
|
23674
|
+
group_by_original?: boolean | undefined;
|
|
23675
|
+
} | undefined;
|
|
23676
|
+
output_meta?: string | boolean | string[] | Record<string, string | boolean> | undefined;
|
|
23677
|
+
queue?: string | undefined;
|
|
23678
|
+
force_accept?: string | boolean | undefined;
|
|
23679
|
+
ignore_errors?: string | boolean | ("meta" | "execute")[] | undefined;
|
|
23680
|
+
preset?: string | undefined;
|
|
23681
|
+
image_dpi?: string | number | undefined;
|
|
23682
|
+
compress_fonts?: string | boolean | undefined;
|
|
23683
|
+
subset_fonts?: string | boolean | undefined;
|
|
23684
|
+
remove_metadata?: string | boolean | undefined;
|
|
23685
|
+
linearize?: string | boolean | undefined;
|
|
23686
|
+
compatibility?: string | undefined;
|
|
23451
23687
|
}>, z.ZodObject<{
|
|
23452
23688
|
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">]>]>>;
|
|
23453
23689
|
queue: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodEnum<["batch"]>]>>;
|
|
@@ -41413,6 +41649,124 @@ export declare const robotsWithHiddenBotsSchema: z.ZodDiscriminatedUnion<"robot"
|
|
|
41413
41649
|
force_accept?: string | boolean | undefined;
|
|
41414
41650
|
ignore_errors?: string | boolean | ("meta" | "execute")[] | undefined;
|
|
41415
41651
|
granularity?: string | undefined;
|
|
41652
|
+
}>, z.ZodObject<{
|
|
41653
|
+
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">]>]>>;
|
|
41654
|
+
result: z.ZodDefault<z.ZodUnion<[z.ZodString, z.ZodBoolean]>>;
|
|
41655
|
+
queue: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodEnum<["batch"]>]>>;
|
|
41656
|
+
force_accept: z.ZodDefault<z.ZodUnion<[z.ZodString, z.ZodBoolean]>>;
|
|
41657
|
+
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")[]>]>>;
|
|
41658
|
+
use: z.ZodOptional<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">, z.ZodArray<z.ZodObject<{
|
|
41659
|
+
name: z.ZodString;
|
|
41660
|
+
fields: z.ZodOptional<z.ZodString>;
|
|
41661
|
+
as: z.ZodOptional<z.ZodString>;
|
|
41662
|
+
}, "strict", z.ZodTypeAny, {
|
|
41663
|
+
name: string;
|
|
41664
|
+
fields?: string | undefined;
|
|
41665
|
+
as?: string | undefined;
|
|
41666
|
+
}, {
|
|
41667
|
+
name: string;
|
|
41668
|
+
fields?: string | undefined;
|
|
41669
|
+
as?: string | undefined;
|
|
41670
|
+
}>, "many">]>, z.ZodObject<{
|
|
41671
|
+
steps: z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">, z.ZodArray<z.ZodObject<{
|
|
41672
|
+
name: z.ZodString;
|
|
41673
|
+
fields: z.ZodOptional<z.ZodString>;
|
|
41674
|
+
as: z.ZodOptional<z.ZodString>;
|
|
41675
|
+
}, "strict", z.ZodTypeAny, {
|
|
41676
|
+
name: string;
|
|
41677
|
+
fields?: string | undefined;
|
|
41678
|
+
as?: string | undefined;
|
|
41679
|
+
}, {
|
|
41680
|
+
name: string;
|
|
41681
|
+
fields?: string | undefined;
|
|
41682
|
+
as?: string | undefined;
|
|
41683
|
+
}>, "many">]>;
|
|
41684
|
+
bundle_steps: z.ZodOptional<z.ZodBoolean>;
|
|
41685
|
+
group_by_original: z.ZodOptional<z.ZodBoolean>;
|
|
41686
|
+
fields: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
41687
|
+
}, "strict", z.ZodTypeAny, {
|
|
41688
|
+
steps: string | string[] | {
|
|
41689
|
+
name: string;
|
|
41690
|
+
fields?: string | undefined;
|
|
41691
|
+
as?: string | undefined;
|
|
41692
|
+
}[];
|
|
41693
|
+
fields?: string[] | undefined;
|
|
41694
|
+
bundle_steps?: boolean | undefined;
|
|
41695
|
+
group_by_original?: boolean | undefined;
|
|
41696
|
+
}, {
|
|
41697
|
+
steps: string | string[] | {
|
|
41698
|
+
name: string;
|
|
41699
|
+
fields?: string | undefined;
|
|
41700
|
+
as?: string | undefined;
|
|
41701
|
+
}[];
|
|
41702
|
+
fields?: string[] | undefined;
|
|
41703
|
+
bundle_steps?: boolean | undefined;
|
|
41704
|
+
group_by_original?: boolean | undefined;
|
|
41705
|
+
}>]>>;
|
|
41706
|
+
robot: z.ZodLiteral<"/document/optimize">;
|
|
41707
|
+
preset: z.ZodDefault<z.ZodUnion<[z.ZodString, z.ZodEnum<["screen", "ebook", "printer", "prepress"]>]>>;
|
|
41708
|
+
image_dpi: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
41709
|
+
compress_fonts: z.ZodDefault<z.ZodUnion<[z.ZodString, z.ZodBoolean]>>;
|
|
41710
|
+
subset_fonts: z.ZodDefault<z.ZodUnion<[z.ZodString, z.ZodBoolean]>>;
|
|
41711
|
+
remove_metadata: z.ZodDefault<z.ZodUnion<[z.ZodString, z.ZodBoolean]>>;
|
|
41712
|
+
linearize: z.ZodDefault<z.ZodUnion<[z.ZodString, z.ZodBoolean]>>;
|
|
41713
|
+
compatibility: z.ZodDefault<z.ZodUnion<[z.ZodString, z.ZodEnum<["1.4", "1.5", "1.6", "1.7", "2.0"]>]>>;
|
|
41714
|
+
}, "strict", z.ZodTypeAny, {
|
|
41715
|
+
result: string | boolean;
|
|
41716
|
+
robot: "/document/optimize";
|
|
41717
|
+
force_accept: string | boolean;
|
|
41718
|
+
ignore_errors: string | string[];
|
|
41719
|
+
preset: string;
|
|
41720
|
+
compress_fonts: string | boolean;
|
|
41721
|
+
subset_fonts: string | boolean;
|
|
41722
|
+
remove_metadata: string | boolean;
|
|
41723
|
+
linearize: string | boolean;
|
|
41724
|
+
compatibility: string;
|
|
41725
|
+
use?: string | string[] | {
|
|
41726
|
+
name: string;
|
|
41727
|
+
fields?: string | undefined;
|
|
41728
|
+
as?: string | undefined;
|
|
41729
|
+
}[] | {
|
|
41730
|
+
steps: string | string[] | {
|
|
41731
|
+
name: string;
|
|
41732
|
+
fields?: string | undefined;
|
|
41733
|
+
as?: string | undefined;
|
|
41734
|
+
}[];
|
|
41735
|
+
fields?: string[] | undefined;
|
|
41736
|
+
bundle_steps?: boolean | undefined;
|
|
41737
|
+
group_by_original?: boolean | undefined;
|
|
41738
|
+
} | undefined;
|
|
41739
|
+
output_meta?: string | boolean | string[] | Record<string, string | boolean> | undefined;
|
|
41740
|
+
queue?: string | undefined;
|
|
41741
|
+
image_dpi?: string | number | undefined;
|
|
41742
|
+
}, {
|
|
41743
|
+
robot: "/document/optimize";
|
|
41744
|
+
result?: string | boolean | undefined;
|
|
41745
|
+
use?: string | string[] | {
|
|
41746
|
+
name: string;
|
|
41747
|
+
fields?: string | undefined;
|
|
41748
|
+
as?: string | undefined;
|
|
41749
|
+
}[] | {
|
|
41750
|
+
steps: string | string[] | {
|
|
41751
|
+
name: string;
|
|
41752
|
+
fields?: string | undefined;
|
|
41753
|
+
as?: string | undefined;
|
|
41754
|
+
}[];
|
|
41755
|
+
fields?: string[] | undefined;
|
|
41756
|
+
bundle_steps?: boolean | undefined;
|
|
41757
|
+
group_by_original?: boolean | undefined;
|
|
41758
|
+
} | undefined;
|
|
41759
|
+
output_meta?: string | boolean | string[] | Record<string, string | boolean> | undefined;
|
|
41760
|
+
queue?: string | undefined;
|
|
41761
|
+
force_accept?: string | boolean | undefined;
|
|
41762
|
+
ignore_errors?: string | boolean | ("meta" | "execute")[] | undefined;
|
|
41763
|
+
preset?: string | undefined;
|
|
41764
|
+
image_dpi?: string | number | undefined;
|
|
41765
|
+
compress_fonts?: string | boolean | undefined;
|
|
41766
|
+
subset_fonts?: string | boolean | undefined;
|
|
41767
|
+
remove_metadata?: string | boolean | undefined;
|
|
41768
|
+
linearize?: string | boolean | undefined;
|
|
41769
|
+
compatibility?: string | undefined;
|
|
41416
41770
|
}>, z.ZodObject<{
|
|
41417
41771
|
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">]>]>>;
|
|
41418
41772
|
result: z.ZodDefault<z.ZodUnion<[z.ZodString, z.ZodBoolean]>>;
|
|
@@ -59424,6 +59778,124 @@ export declare const robotsWithHiddenBotsAndFieldsSchema: z.ZodDiscriminatedUnio
|
|
|
59424
59778
|
force_accept?: string | boolean | undefined;
|
|
59425
59779
|
ignore_errors?: string | boolean | ("meta" | "execute")[] | undefined;
|
|
59426
59780
|
granularity?: string | undefined;
|
|
59781
|
+
}>, z.ZodObject<{
|
|
59782
|
+
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">]>]>>;
|
|
59783
|
+
queue: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodEnum<["batch"]>]>>;
|
|
59784
|
+
force_accept: z.ZodDefault<z.ZodUnion<[z.ZodString, z.ZodBoolean]>>;
|
|
59785
|
+
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")[]>]>>;
|
|
59786
|
+
use: z.ZodOptional<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">, z.ZodArray<z.ZodObject<{
|
|
59787
|
+
name: z.ZodString;
|
|
59788
|
+
fields: z.ZodOptional<z.ZodString>;
|
|
59789
|
+
as: z.ZodOptional<z.ZodString>;
|
|
59790
|
+
}, "strict", z.ZodTypeAny, {
|
|
59791
|
+
name: string;
|
|
59792
|
+
fields?: string | undefined;
|
|
59793
|
+
as?: string | undefined;
|
|
59794
|
+
}, {
|
|
59795
|
+
name: string;
|
|
59796
|
+
fields?: string | undefined;
|
|
59797
|
+
as?: string | undefined;
|
|
59798
|
+
}>, "many">]>, z.ZodObject<{
|
|
59799
|
+
steps: z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">, z.ZodArray<z.ZodObject<{
|
|
59800
|
+
name: z.ZodString;
|
|
59801
|
+
fields: z.ZodOptional<z.ZodString>;
|
|
59802
|
+
as: z.ZodOptional<z.ZodString>;
|
|
59803
|
+
}, "strict", z.ZodTypeAny, {
|
|
59804
|
+
name: string;
|
|
59805
|
+
fields?: string | undefined;
|
|
59806
|
+
as?: string | undefined;
|
|
59807
|
+
}, {
|
|
59808
|
+
name: string;
|
|
59809
|
+
fields?: string | undefined;
|
|
59810
|
+
as?: string | undefined;
|
|
59811
|
+
}>, "many">]>;
|
|
59812
|
+
bundle_steps: z.ZodOptional<z.ZodBoolean>;
|
|
59813
|
+
group_by_original: z.ZodOptional<z.ZodBoolean>;
|
|
59814
|
+
fields: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
59815
|
+
}, "strict", z.ZodTypeAny, {
|
|
59816
|
+
steps: string | string[] | {
|
|
59817
|
+
name: string;
|
|
59818
|
+
fields?: string | undefined;
|
|
59819
|
+
as?: string | undefined;
|
|
59820
|
+
}[];
|
|
59821
|
+
fields?: string[] | undefined;
|
|
59822
|
+
bundle_steps?: boolean | undefined;
|
|
59823
|
+
group_by_original?: boolean | undefined;
|
|
59824
|
+
}, {
|
|
59825
|
+
steps: string | string[] | {
|
|
59826
|
+
name: string;
|
|
59827
|
+
fields?: string | undefined;
|
|
59828
|
+
as?: string | undefined;
|
|
59829
|
+
}[];
|
|
59830
|
+
fields?: string[] | undefined;
|
|
59831
|
+
bundle_steps?: boolean | undefined;
|
|
59832
|
+
group_by_original?: boolean | undefined;
|
|
59833
|
+
}>]>>;
|
|
59834
|
+
robot: z.ZodLiteral<"/document/optimize">;
|
|
59835
|
+
preset: z.ZodDefault<z.ZodUnion<[z.ZodString, z.ZodEnum<["screen", "ebook", "printer", "prepress"]>]>>;
|
|
59836
|
+
image_dpi: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
59837
|
+
compress_fonts: z.ZodDefault<z.ZodUnion<[z.ZodString, z.ZodBoolean]>>;
|
|
59838
|
+
subset_fonts: z.ZodDefault<z.ZodUnion<[z.ZodString, z.ZodBoolean]>>;
|
|
59839
|
+
remove_metadata: z.ZodDefault<z.ZodUnion<[z.ZodString, z.ZodBoolean]>>;
|
|
59840
|
+
linearize: z.ZodDefault<z.ZodUnion<[z.ZodString, z.ZodBoolean]>>;
|
|
59841
|
+
compatibility: z.ZodDefault<z.ZodUnion<[z.ZodString, z.ZodEnum<["1.4", "1.5", "1.6", "1.7", "2.0"]>]>>;
|
|
59842
|
+
result: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodUnion<[z.ZodString, z.ZodLiteral<"debug">]>, z.ZodDefault<z.ZodUnion<[z.ZodString, z.ZodBoolean]>>]>>;
|
|
59843
|
+
}, "strict", z.ZodTypeAny, {
|
|
59844
|
+
robot: "/document/optimize";
|
|
59845
|
+
force_accept: string | boolean;
|
|
59846
|
+
ignore_errors: string | string[];
|
|
59847
|
+
preset: string;
|
|
59848
|
+
compress_fonts: string | boolean;
|
|
59849
|
+
subset_fonts: string | boolean;
|
|
59850
|
+
remove_metadata: string | boolean;
|
|
59851
|
+
linearize: string | boolean;
|
|
59852
|
+
compatibility: string;
|
|
59853
|
+
result?: string | boolean | undefined;
|
|
59854
|
+
use?: string | string[] | {
|
|
59855
|
+
name: string;
|
|
59856
|
+
fields?: string | undefined;
|
|
59857
|
+
as?: string | undefined;
|
|
59858
|
+
}[] | {
|
|
59859
|
+
steps: string | string[] | {
|
|
59860
|
+
name: string;
|
|
59861
|
+
fields?: string | undefined;
|
|
59862
|
+
as?: string | undefined;
|
|
59863
|
+
}[];
|
|
59864
|
+
fields?: string[] | undefined;
|
|
59865
|
+
bundle_steps?: boolean | undefined;
|
|
59866
|
+
group_by_original?: boolean | undefined;
|
|
59867
|
+
} | undefined;
|
|
59868
|
+
output_meta?: string | boolean | string[] | Record<string, string | boolean> | undefined;
|
|
59869
|
+
queue?: string | undefined;
|
|
59870
|
+
image_dpi?: string | number | undefined;
|
|
59871
|
+
}, {
|
|
59872
|
+
robot: "/document/optimize";
|
|
59873
|
+
result?: string | boolean | undefined;
|
|
59874
|
+
use?: string | string[] | {
|
|
59875
|
+
name: string;
|
|
59876
|
+
fields?: string | undefined;
|
|
59877
|
+
as?: string | undefined;
|
|
59878
|
+
}[] | {
|
|
59879
|
+
steps: string | string[] | {
|
|
59880
|
+
name: string;
|
|
59881
|
+
fields?: string | undefined;
|
|
59882
|
+
as?: string | undefined;
|
|
59883
|
+
}[];
|
|
59884
|
+
fields?: string[] | undefined;
|
|
59885
|
+
bundle_steps?: boolean | undefined;
|
|
59886
|
+
group_by_original?: boolean | undefined;
|
|
59887
|
+
} | undefined;
|
|
59888
|
+
output_meta?: string | boolean | string[] | Record<string, string | boolean> | undefined;
|
|
59889
|
+
queue?: string | undefined;
|
|
59890
|
+
force_accept?: string | boolean | undefined;
|
|
59891
|
+
ignore_errors?: string | boolean | ("meta" | "execute")[] | undefined;
|
|
59892
|
+
preset?: string | undefined;
|
|
59893
|
+
image_dpi?: string | number | undefined;
|
|
59894
|
+
compress_fonts?: string | boolean | undefined;
|
|
59895
|
+
subset_fonts?: string | boolean | undefined;
|
|
59896
|
+
remove_metadata?: string | boolean | undefined;
|
|
59897
|
+
linearize?: string | boolean | undefined;
|
|
59898
|
+
compatibility?: string | undefined;
|
|
59427
59899
|
}>, z.ZodObject<{
|
|
59428
59900
|
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">]>]>>;
|
|
59429
59901
|
queue: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodEnum<["batch"]>]>>;
|
|
@@ -71856,7 +72328,7 @@ export type RobotsWithHiddenBots = z.infer<typeof robotsWithHiddenBotsSchema>;
|
|
|
71856
72328
|
export type RobotsWithHiddenBotsAndFields = z.infer<typeof robotsWithHiddenBotsAndFieldsSchema>;
|
|
71857
72329
|
export declare const robotsMeta: {
|
|
71858
72330
|
aiChatMeta: {
|
|
71859
|
-
name: "AiChatRobot" | "UploadHandleRobot" | "FileServeRobot" | "FileWatermarkRobot" | "FileVerifyRobot" | "EdglyDeliverRobot" | "TlcdnDeliverRobot" | "VideoSubtitleRobot" | "VideoEncodeRobot" | "VideoAdaptiveRobot" | "VideoMergeRobot" | "VideoConcatRobot" | "AudioWaveformRobot" | "AudioEncodeRobot" | "AudioLoopRobot" | "AudioConcatRobot" | "AudioMergeRobot" | "AudioArtworkRobot" | "ImageFacedetectRobot" | "ImageDescribeRobot" | "ImageOcrRobot" | "ImageBgremoveRobot" | "ImageGenerateRobot" | "DocumentOcrRobot" | "SpeechTranscribeRobot" | "VideoThumbsRobot" | "FileVirusscanRobot" | "ImageOptimizeRobot" | "FileCompressRobot" | "MetaReadRobot" | "FileDecompressRobot" | "MetaWriteRobot" | "DocumentThumbsRobot" | "DocumentConvertRobot" | "DocumentMergeRobot" | "DocumentSplitRobot" | "DocumentAutorotateRobot" | "HtmlConvertRobot" | "ImageResizeRobot" | "ImageMergeRobot" | "S3ImportRobot" | "S3StoreRobot" | "DigitalOceanImportRobot" | "DigitalOceanStoreRobot" | "BackblazeImportRobot" | "BackblazeStoreRobot" | "MinioImportRobot" | "TigrisImportRobot" | "CloudflareImportRobot" | "SupabaseImportRobot" | "MinioStoreRobot" | "TigrisStoreRobot" | "CloudflareStoreRobot" | "SupabaseStoreRobot" | "WasabiImportRobot" | "WasabiStoreRobot" | "SwiftImportRobot" | "SwiftStoreRobot" | "GoogleImportRobot" | "GoogleStoreRobot" | "DropboxImportRobot" | "DropboxStoreRobot" | "HttpImportRobot" | "SftpImportRobot" | "SftpStoreRobot" | "FtpImportRobot" | "FtpStoreRobot" | "CloudfilesImportRobot" | "CloudfilesStoreRobot" | "AzureImportRobot" | "AzureStoreRobot" | "YoutubeStoreRobot" | "VimeoImportRobot" | "VimeoStoreRobot" | "AssemblySavejsonRobot" | "ScriptRunRobot" | "FileHashRobot" | "FileReadRobot" | "VideoOndemandRobot" | "FileFilterRobot" | "TextSpeakRobot" | "TextTranslateRobot" | "FilePreviewRobot" | "TusStoreRobot" | "ProgressSimulateRobot";
|
|
72331
|
+
name: "AiChatRobot" | "UploadHandleRobot" | "FileServeRobot" | "FileWatermarkRobot" | "FileVerifyRobot" | "EdglyDeliverRobot" | "TlcdnDeliverRobot" | "VideoSubtitleRobot" | "VideoEncodeRobot" | "VideoAdaptiveRobot" | "VideoMergeRobot" | "VideoConcatRobot" | "AudioWaveformRobot" | "AudioEncodeRobot" | "AudioLoopRobot" | "AudioConcatRobot" | "AudioMergeRobot" | "AudioArtworkRobot" | "ImageFacedetectRobot" | "ImageDescribeRobot" | "ImageOcrRobot" | "ImageBgremoveRobot" | "ImageGenerateRobot" | "DocumentOcrRobot" | "SpeechTranscribeRobot" | "VideoThumbsRobot" | "FileVirusscanRobot" | "ImageOptimizeRobot" | "FileCompressRobot" | "MetaReadRobot" | "FileDecompressRobot" | "MetaWriteRobot" | "DocumentThumbsRobot" | "DocumentConvertRobot" | "DocumentMergeRobot" | "DocumentSplitRobot" | "DocumentOptimizeRobot" | "DocumentAutorotateRobot" | "HtmlConvertRobot" | "ImageResizeRobot" | "ImageMergeRobot" | "S3ImportRobot" | "S3StoreRobot" | "DigitalOceanImportRobot" | "DigitalOceanStoreRobot" | "BackblazeImportRobot" | "BackblazeStoreRobot" | "MinioImportRobot" | "TigrisImportRobot" | "CloudflareImportRobot" | "SupabaseImportRobot" | "MinioStoreRobot" | "TigrisStoreRobot" | "CloudflareStoreRobot" | "SupabaseStoreRobot" | "WasabiImportRobot" | "WasabiStoreRobot" | "SwiftImportRobot" | "SwiftStoreRobot" | "GoogleImportRobot" | "GoogleStoreRobot" | "DropboxImportRobot" | "DropboxStoreRobot" | "HttpImportRobot" | "SftpImportRobot" | "SftpStoreRobot" | "FtpImportRobot" | "FtpStoreRobot" | "CloudfilesImportRobot" | "CloudfilesStoreRobot" | "AzureImportRobot" | "AzureStoreRobot" | "YoutubeStoreRobot" | "VimeoImportRobot" | "VimeoStoreRobot" | "AssemblySavejsonRobot" | "ScriptRunRobot" | "FileHashRobot" | "FileReadRobot" | "VideoOndemandRobot" | "FileFilterRobot" | "TextSpeakRobot" | "TextTranslateRobot" | "FilePreviewRobot" | "TusStoreRobot" | "ProgressSimulateRobot";
|
|
71860
72332
|
priceFactor: number;
|
|
71861
72333
|
queueSlotCount: number;
|
|
71862
72334
|
isAllowedForUrlTransform: boolean;
|
|
@@ -71910,7 +72382,7 @@ export declare const robotsMeta: {
|
|
|
71910
72382
|
uses_tools?: ("ffmpeg" | "imagemagick")[] | undefined;
|
|
71911
72383
|
};
|
|
71912
72384
|
audioArtworkMeta: {
|
|
71913
|
-
name: "AiChatRobot" | "UploadHandleRobot" | "FileServeRobot" | "FileWatermarkRobot" | "FileVerifyRobot" | "EdglyDeliverRobot" | "TlcdnDeliverRobot" | "VideoSubtitleRobot" | "VideoEncodeRobot" | "VideoAdaptiveRobot" | "VideoMergeRobot" | "VideoConcatRobot" | "AudioWaveformRobot" | "AudioEncodeRobot" | "AudioLoopRobot" | "AudioConcatRobot" | "AudioMergeRobot" | "AudioArtworkRobot" | "ImageFacedetectRobot" | "ImageDescribeRobot" | "ImageOcrRobot" | "ImageBgremoveRobot" | "ImageGenerateRobot" | "DocumentOcrRobot" | "SpeechTranscribeRobot" | "VideoThumbsRobot" | "FileVirusscanRobot" | "ImageOptimizeRobot" | "FileCompressRobot" | "MetaReadRobot" | "FileDecompressRobot" | "MetaWriteRobot" | "DocumentThumbsRobot" | "DocumentConvertRobot" | "DocumentMergeRobot" | "DocumentSplitRobot" | "DocumentAutorotateRobot" | "HtmlConvertRobot" | "ImageResizeRobot" | "ImageMergeRobot" | "S3ImportRobot" | "S3StoreRobot" | "DigitalOceanImportRobot" | "DigitalOceanStoreRobot" | "BackblazeImportRobot" | "BackblazeStoreRobot" | "MinioImportRobot" | "TigrisImportRobot" | "CloudflareImportRobot" | "SupabaseImportRobot" | "MinioStoreRobot" | "TigrisStoreRobot" | "CloudflareStoreRobot" | "SupabaseStoreRobot" | "WasabiImportRobot" | "WasabiStoreRobot" | "SwiftImportRobot" | "SwiftStoreRobot" | "GoogleImportRobot" | "GoogleStoreRobot" | "DropboxImportRobot" | "DropboxStoreRobot" | "HttpImportRobot" | "SftpImportRobot" | "SftpStoreRobot" | "FtpImportRobot" | "FtpStoreRobot" | "CloudfilesImportRobot" | "CloudfilesStoreRobot" | "AzureImportRobot" | "AzureStoreRobot" | "YoutubeStoreRobot" | "VimeoImportRobot" | "VimeoStoreRobot" | "AssemblySavejsonRobot" | "ScriptRunRobot" | "FileHashRobot" | "FileReadRobot" | "VideoOndemandRobot" | "FileFilterRobot" | "TextSpeakRobot" | "TextTranslateRobot" | "FilePreviewRobot" | "TusStoreRobot" | "ProgressSimulateRobot";
|
|
72385
|
+
name: "AiChatRobot" | "UploadHandleRobot" | "FileServeRobot" | "FileWatermarkRobot" | "FileVerifyRobot" | "EdglyDeliverRobot" | "TlcdnDeliverRobot" | "VideoSubtitleRobot" | "VideoEncodeRobot" | "VideoAdaptiveRobot" | "VideoMergeRobot" | "VideoConcatRobot" | "AudioWaveformRobot" | "AudioEncodeRobot" | "AudioLoopRobot" | "AudioConcatRobot" | "AudioMergeRobot" | "AudioArtworkRobot" | "ImageFacedetectRobot" | "ImageDescribeRobot" | "ImageOcrRobot" | "ImageBgremoveRobot" | "ImageGenerateRobot" | "DocumentOcrRobot" | "SpeechTranscribeRobot" | "VideoThumbsRobot" | "FileVirusscanRobot" | "ImageOptimizeRobot" | "FileCompressRobot" | "MetaReadRobot" | "FileDecompressRobot" | "MetaWriteRobot" | "DocumentThumbsRobot" | "DocumentConvertRobot" | "DocumentMergeRobot" | "DocumentSplitRobot" | "DocumentOptimizeRobot" | "DocumentAutorotateRobot" | "HtmlConvertRobot" | "ImageResizeRobot" | "ImageMergeRobot" | "S3ImportRobot" | "S3StoreRobot" | "DigitalOceanImportRobot" | "DigitalOceanStoreRobot" | "BackblazeImportRobot" | "BackblazeStoreRobot" | "MinioImportRobot" | "TigrisImportRobot" | "CloudflareImportRobot" | "SupabaseImportRobot" | "MinioStoreRobot" | "TigrisStoreRobot" | "CloudflareStoreRobot" | "SupabaseStoreRobot" | "WasabiImportRobot" | "WasabiStoreRobot" | "SwiftImportRobot" | "SwiftStoreRobot" | "GoogleImportRobot" | "GoogleStoreRobot" | "DropboxImportRobot" | "DropboxStoreRobot" | "HttpImportRobot" | "SftpImportRobot" | "SftpStoreRobot" | "FtpImportRobot" | "FtpStoreRobot" | "CloudfilesImportRobot" | "CloudfilesStoreRobot" | "AzureImportRobot" | "AzureStoreRobot" | "YoutubeStoreRobot" | "VimeoImportRobot" | "VimeoStoreRobot" | "AssemblySavejsonRobot" | "ScriptRunRobot" | "FileHashRobot" | "FileReadRobot" | "VideoOndemandRobot" | "FileFilterRobot" | "TextSpeakRobot" | "TextTranslateRobot" | "FilePreviewRobot" | "TusStoreRobot" | "ProgressSimulateRobot";
|
|
71914
72386
|
priceFactor: number;
|
|
71915
72387
|
queueSlotCount: number;
|
|
71916
72388
|
isAllowedForUrlTransform: boolean;
|
|
@@ -71964,7 +72436,7 @@ export declare const robotsMeta: {
|
|
|
71964
72436
|
uses_tools?: ("ffmpeg" | "imagemagick")[] | undefined;
|
|
71965
72437
|
};
|
|
71966
72438
|
audioConcatMeta: {
|
|
71967
|
-
name: "AiChatRobot" | "UploadHandleRobot" | "FileServeRobot" | "FileWatermarkRobot" | "FileVerifyRobot" | "EdglyDeliverRobot" | "TlcdnDeliverRobot" | "VideoSubtitleRobot" | "VideoEncodeRobot" | "VideoAdaptiveRobot" | "VideoMergeRobot" | "VideoConcatRobot" | "AudioWaveformRobot" | "AudioEncodeRobot" | "AudioLoopRobot" | "AudioConcatRobot" | "AudioMergeRobot" | "AudioArtworkRobot" | "ImageFacedetectRobot" | "ImageDescribeRobot" | "ImageOcrRobot" | "ImageBgremoveRobot" | "ImageGenerateRobot" | "DocumentOcrRobot" | "SpeechTranscribeRobot" | "VideoThumbsRobot" | "FileVirusscanRobot" | "ImageOptimizeRobot" | "FileCompressRobot" | "MetaReadRobot" | "FileDecompressRobot" | "MetaWriteRobot" | "DocumentThumbsRobot" | "DocumentConvertRobot" | "DocumentMergeRobot" | "DocumentSplitRobot" | "DocumentAutorotateRobot" | "HtmlConvertRobot" | "ImageResizeRobot" | "ImageMergeRobot" | "S3ImportRobot" | "S3StoreRobot" | "DigitalOceanImportRobot" | "DigitalOceanStoreRobot" | "BackblazeImportRobot" | "BackblazeStoreRobot" | "MinioImportRobot" | "TigrisImportRobot" | "CloudflareImportRobot" | "SupabaseImportRobot" | "MinioStoreRobot" | "TigrisStoreRobot" | "CloudflareStoreRobot" | "SupabaseStoreRobot" | "WasabiImportRobot" | "WasabiStoreRobot" | "SwiftImportRobot" | "SwiftStoreRobot" | "GoogleImportRobot" | "GoogleStoreRobot" | "DropboxImportRobot" | "DropboxStoreRobot" | "HttpImportRobot" | "SftpImportRobot" | "SftpStoreRobot" | "FtpImportRobot" | "FtpStoreRobot" | "CloudfilesImportRobot" | "CloudfilesStoreRobot" | "AzureImportRobot" | "AzureStoreRobot" | "YoutubeStoreRobot" | "VimeoImportRobot" | "VimeoStoreRobot" | "AssemblySavejsonRobot" | "ScriptRunRobot" | "FileHashRobot" | "FileReadRobot" | "VideoOndemandRobot" | "FileFilterRobot" | "TextSpeakRobot" | "TextTranslateRobot" | "FilePreviewRobot" | "TusStoreRobot" | "ProgressSimulateRobot";
|
|
72439
|
+
name: "AiChatRobot" | "UploadHandleRobot" | "FileServeRobot" | "FileWatermarkRobot" | "FileVerifyRobot" | "EdglyDeliverRobot" | "TlcdnDeliverRobot" | "VideoSubtitleRobot" | "VideoEncodeRobot" | "VideoAdaptiveRobot" | "VideoMergeRobot" | "VideoConcatRobot" | "AudioWaveformRobot" | "AudioEncodeRobot" | "AudioLoopRobot" | "AudioConcatRobot" | "AudioMergeRobot" | "AudioArtworkRobot" | "ImageFacedetectRobot" | "ImageDescribeRobot" | "ImageOcrRobot" | "ImageBgremoveRobot" | "ImageGenerateRobot" | "DocumentOcrRobot" | "SpeechTranscribeRobot" | "VideoThumbsRobot" | "FileVirusscanRobot" | "ImageOptimizeRobot" | "FileCompressRobot" | "MetaReadRobot" | "FileDecompressRobot" | "MetaWriteRobot" | "DocumentThumbsRobot" | "DocumentConvertRobot" | "DocumentMergeRobot" | "DocumentSplitRobot" | "DocumentOptimizeRobot" | "DocumentAutorotateRobot" | "HtmlConvertRobot" | "ImageResizeRobot" | "ImageMergeRobot" | "S3ImportRobot" | "S3StoreRobot" | "DigitalOceanImportRobot" | "DigitalOceanStoreRobot" | "BackblazeImportRobot" | "BackblazeStoreRobot" | "MinioImportRobot" | "TigrisImportRobot" | "CloudflareImportRobot" | "SupabaseImportRobot" | "MinioStoreRobot" | "TigrisStoreRobot" | "CloudflareStoreRobot" | "SupabaseStoreRobot" | "WasabiImportRobot" | "WasabiStoreRobot" | "SwiftImportRobot" | "SwiftStoreRobot" | "GoogleImportRobot" | "GoogleStoreRobot" | "DropboxImportRobot" | "DropboxStoreRobot" | "HttpImportRobot" | "SftpImportRobot" | "SftpStoreRobot" | "FtpImportRobot" | "FtpStoreRobot" | "CloudfilesImportRobot" | "CloudfilesStoreRobot" | "AzureImportRobot" | "AzureStoreRobot" | "YoutubeStoreRobot" | "VimeoImportRobot" | "VimeoStoreRobot" | "AssemblySavejsonRobot" | "ScriptRunRobot" | "FileHashRobot" | "FileReadRobot" | "VideoOndemandRobot" | "FileFilterRobot" | "TextSpeakRobot" | "TextTranslateRobot" | "FilePreviewRobot" | "TusStoreRobot" | "ProgressSimulateRobot";
|
|
71968
72440
|
priceFactor: number;
|
|
71969
72441
|
queueSlotCount: number;
|
|
71970
72442
|
isAllowedForUrlTransform: boolean;
|
|
@@ -72018,7 +72490,7 @@ export declare const robotsMeta: {
|
|
|
72018
72490
|
uses_tools?: ("ffmpeg" | "imagemagick")[] | undefined;
|
|
72019
72491
|
};
|
|
72020
72492
|
audioEncodeMeta: {
|
|
72021
|
-
name: "AiChatRobot" | "UploadHandleRobot" | "FileServeRobot" | "FileWatermarkRobot" | "FileVerifyRobot" | "EdglyDeliverRobot" | "TlcdnDeliverRobot" | "VideoSubtitleRobot" | "VideoEncodeRobot" | "VideoAdaptiveRobot" | "VideoMergeRobot" | "VideoConcatRobot" | "AudioWaveformRobot" | "AudioEncodeRobot" | "AudioLoopRobot" | "AudioConcatRobot" | "AudioMergeRobot" | "AudioArtworkRobot" | "ImageFacedetectRobot" | "ImageDescribeRobot" | "ImageOcrRobot" | "ImageBgremoveRobot" | "ImageGenerateRobot" | "DocumentOcrRobot" | "SpeechTranscribeRobot" | "VideoThumbsRobot" | "FileVirusscanRobot" | "ImageOptimizeRobot" | "FileCompressRobot" | "MetaReadRobot" | "FileDecompressRobot" | "MetaWriteRobot" | "DocumentThumbsRobot" | "DocumentConvertRobot" | "DocumentMergeRobot" | "DocumentSplitRobot" | "DocumentAutorotateRobot" | "HtmlConvertRobot" | "ImageResizeRobot" | "ImageMergeRobot" | "S3ImportRobot" | "S3StoreRobot" | "DigitalOceanImportRobot" | "DigitalOceanStoreRobot" | "BackblazeImportRobot" | "BackblazeStoreRobot" | "MinioImportRobot" | "TigrisImportRobot" | "CloudflareImportRobot" | "SupabaseImportRobot" | "MinioStoreRobot" | "TigrisStoreRobot" | "CloudflareStoreRobot" | "SupabaseStoreRobot" | "WasabiImportRobot" | "WasabiStoreRobot" | "SwiftImportRobot" | "SwiftStoreRobot" | "GoogleImportRobot" | "GoogleStoreRobot" | "DropboxImportRobot" | "DropboxStoreRobot" | "HttpImportRobot" | "SftpImportRobot" | "SftpStoreRobot" | "FtpImportRobot" | "FtpStoreRobot" | "CloudfilesImportRobot" | "CloudfilesStoreRobot" | "AzureImportRobot" | "AzureStoreRobot" | "YoutubeStoreRobot" | "VimeoImportRobot" | "VimeoStoreRobot" | "AssemblySavejsonRobot" | "ScriptRunRobot" | "FileHashRobot" | "FileReadRobot" | "VideoOndemandRobot" | "FileFilterRobot" | "TextSpeakRobot" | "TextTranslateRobot" | "FilePreviewRobot" | "TusStoreRobot" | "ProgressSimulateRobot";
|
|
72493
|
+
name: "AiChatRobot" | "UploadHandleRobot" | "FileServeRobot" | "FileWatermarkRobot" | "FileVerifyRobot" | "EdglyDeliverRobot" | "TlcdnDeliverRobot" | "VideoSubtitleRobot" | "VideoEncodeRobot" | "VideoAdaptiveRobot" | "VideoMergeRobot" | "VideoConcatRobot" | "AudioWaveformRobot" | "AudioEncodeRobot" | "AudioLoopRobot" | "AudioConcatRobot" | "AudioMergeRobot" | "AudioArtworkRobot" | "ImageFacedetectRobot" | "ImageDescribeRobot" | "ImageOcrRobot" | "ImageBgremoveRobot" | "ImageGenerateRobot" | "DocumentOcrRobot" | "SpeechTranscribeRobot" | "VideoThumbsRobot" | "FileVirusscanRobot" | "ImageOptimizeRobot" | "FileCompressRobot" | "MetaReadRobot" | "FileDecompressRobot" | "MetaWriteRobot" | "DocumentThumbsRobot" | "DocumentConvertRobot" | "DocumentMergeRobot" | "DocumentSplitRobot" | "DocumentOptimizeRobot" | "DocumentAutorotateRobot" | "HtmlConvertRobot" | "ImageResizeRobot" | "ImageMergeRobot" | "S3ImportRobot" | "S3StoreRobot" | "DigitalOceanImportRobot" | "DigitalOceanStoreRobot" | "BackblazeImportRobot" | "BackblazeStoreRobot" | "MinioImportRobot" | "TigrisImportRobot" | "CloudflareImportRobot" | "SupabaseImportRobot" | "MinioStoreRobot" | "TigrisStoreRobot" | "CloudflareStoreRobot" | "SupabaseStoreRobot" | "WasabiImportRobot" | "WasabiStoreRobot" | "SwiftImportRobot" | "SwiftStoreRobot" | "GoogleImportRobot" | "GoogleStoreRobot" | "DropboxImportRobot" | "DropboxStoreRobot" | "HttpImportRobot" | "SftpImportRobot" | "SftpStoreRobot" | "FtpImportRobot" | "FtpStoreRobot" | "CloudfilesImportRobot" | "CloudfilesStoreRobot" | "AzureImportRobot" | "AzureStoreRobot" | "YoutubeStoreRobot" | "VimeoImportRobot" | "VimeoStoreRobot" | "AssemblySavejsonRobot" | "ScriptRunRobot" | "FileHashRobot" | "FileReadRobot" | "VideoOndemandRobot" | "FileFilterRobot" | "TextSpeakRobot" | "TextTranslateRobot" | "FilePreviewRobot" | "TusStoreRobot" | "ProgressSimulateRobot";
|
|
72022
72494
|
priceFactor: number;
|
|
72023
72495
|
queueSlotCount: number;
|
|
72024
72496
|
isAllowedForUrlTransform: boolean;
|
|
@@ -72072,7 +72544,7 @@ export declare const robotsMeta: {
|
|
|
72072
72544
|
uses_tools?: ("ffmpeg" | "imagemagick")[] | undefined;
|
|
72073
72545
|
};
|
|
72074
72546
|
audioLoopMeta: {
|
|
72075
|
-
name: "AiChatRobot" | "UploadHandleRobot" | "FileServeRobot" | "FileWatermarkRobot" | "FileVerifyRobot" | "EdglyDeliverRobot" | "TlcdnDeliverRobot" | "VideoSubtitleRobot" | "VideoEncodeRobot" | "VideoAdaptiveRobot" | "VideoMergeRobot" | "VideoConcatRobot" | "AudioWaveformRobot" | "AudioEncodeRobot" | "AudioLoopRobot" | "AudioConcatRobot" | "AudioMergeRobot" | "AudioArtworkRobot" | "ImageFacedetectRobot" | "ImageDescribeRobot" | "ImageOcrRobot" | "ImageBgremoveRobot" | "ImageGenerateRobot" | "DocumentOcrRobot" | "SpeechTranscribeRobot" | "VideoThumbsRobot" | "FileVirusscanRobot" | "ImageOptimizeRobot" | "FileCompressRobot" | "MetaReadRobot" | "FileDecompressRobot" | "MetaWriteRobot" | "DocumentThumbsRobot" | "DocumentConvertRobot" | "DocumentMergeRobot" | "DocumentSplitRobot" | "DocumentAutorotateRobot" | "HtmlConvertRobot" | "ImageResizeRobot" | "ImageMergeRobot" | "S3ImportRobot" | "S3StoreRobot" | "DigitalOceanImportRobot" | "DigitalOceanStoreRobot" | "BackblazeImportRobot" | "BackblazeStoreRobot" | "MinioImportRobot" | "TigrisImportRobot" | "CloudflareImportRobot" | "SupabaseImportRobot" | "MinioStoreRobot" | "TigrisStoreRobot" | "CloudflareStoreRobot" | "SupabaseStoreRobot" | "WasabiImportRobot" | "WasabiStoreRobot" | "SwiftImportRobot" | "SwiftStoreRobot" | "GoogleImportRobot" | "GoogleStoreRobot" | "DropboxImportRobot" | "DropboxStoreRobot" | "HttpImportRobot" | "SftpImportRobot" | "SftpStoreRobot" | "FtpImportRobot" | "FtpStoreRobot" | "CloudfilesImportRobot" | "CloudfilesStoreRobot" | "AzureImportRobot" | "AzureStoreRobot" | "YoutubeStoreRobot" | "VimeoImportRobot" | "VimeoStoreRobot" | "AssemblySavejsonRobot" | "ScriptRunRobot" | "FileHashRobot" | "FileReadRobot" | "VideoOndemandRobot" | "FileFilterRobot" | "TextSpeakRobot" | "TextTranslateRobot" | "FilePreviewRobot" | "TusStoreRobot" | "ProgressSimulateRobot";
|
|
72547
|
+
name: "AiChatRobot" | "UploadHandleRobot" | "FileServeRobot" | "FileWatermarkRobot" | "FileVerifyRobot" | "EdglyDeliverRobot" | "TlcdnDeliverRobot" | "VideoSubtitleRobot" | "VideoEncodeRobot" | "VideoAdaptiveRobot" | "VideoMergeRobot" | "VideoConcatRobot" | "AudioWaveformRobot" | "AudioEncodeRobot" | "AudioLoopRobot" | "AudioConcatRobot" | "AudioMergeRobot" | "AudioArtworkRobot" | "ImageFacedetectRobot" | "ImageDescribeRobot" | "ImageOcrRobot" | "ImageBgremoveRobot" | "ImageGenerateRobot" | "DocumentOcrRobot" | "SpeechTranscribeRobot" | "VideoThumbsRobot" | "FileVirusscanRobot" | "ImageOptimizeRobot" | "FileCompressRobot" | "MetaReadRobot" | "FileDecompressRobot" | "MetaWriteRobot" | "DocumentThumbsRobot" | "DocumentConvertRobot" | "DocumentMergeRobot" | "DocumentSplitRobot" | "DocumentOptimizeRobot" | "DocumentAutorotateRobot" | "HtmlConvertRobot" | "ImageResizeRobot" | "ImageMergeRobot" | "S3ImportRobot" | "S3StoreRobot" | "DigitalOceanImportRobot" | "DigitalOceanStoreRobot" | "BackblazeImportRobot" | "BackblazeStoreRobot" | "MinioImportRobot" | "TigrisImportRobot" | "CloudflareImportRobot" | "SupabaseImportRobot" | "MinioStoreRobot" | "TigrisStoreRobot" | "CloudflareStoreRobot" | "SupabaseStoreRobot" | "WasabiImportRobot" | "WasabiStoreRobot" | "SwiftImportRobot" | "SwiftStoreRobot" | "GoogleImportRobot" | "GoogleStoreRobot" | "DropboxImportRobot" | "DropboxStoreRobot" | "HttpImportRobot" | "SftpImportRobot" | "SftpStoreRobot" | "FtpImportRobot" | "FtpStoreRobot" | "CloudfilesImportRobot" | "CloudfilesStoreRobot" | "AzureImportRobot" | "AzureStoreRobot" | "YoutubeStoreRobot" | "VimeoImportRobot" | "VimeoStoreRobot" | "AssemblySavejsonRobot" | "ScriptRunRobot" | "FileHashRobot" | "FileReadRobot" | "VideoOndemandRobot" | "FileFilterRobot" | "TextSpeakRobot" | "TextTranslateRobot" | "FilePreviewRobot" | "TusStoreRobot" | "ProgressSimulateRobot";
|
|
72076
72548
|
priceFactor: number;
|
|
72077
72549
|
queueSlotCount: number;
|
|
72078
72550
|
isAllowedForUrlTransform: boolean;
|
|
@@ -72126,7 +72598,7 @@ export declare const robotsMeta: {
|
|
|
72126
72598
|
uses_tools?: ("ffmpeg" | "imagemagick")[] | undefined;
|
|
72127
72599
|
};
|
|
72128
72600
|
audioMergeMeta: {
|
|
72129
|
-
name: "AiChatRobot" | "UploadHandleRobot" | "FileServeRobot" | "FileWatermarkRobot" | "FileVerifyRobot" | "EdglyDeliverRobot" | "TlcdnDeliverRobot" | "VideoSubtitleRobot" | "VideoEncodeRobot" | "VideoAdaptiveRobot" | "VideoMergeRobot" | "VideoConcatRobot" | "AudioWaveformRobot" | "AudioEncodeRobot" | "AudioLoopRobot" | "AudioConcatRobot" | "AudioMergeRobot" | "AudioArtworkRobot" | "ImageFacedetectRobot" | "ImageDescribeRobot" | "ImageOcrRobot" | "ImageBgremoveRobot" | "ImageGenerateRobot" | "DocumentOcrRobot" | "SpeechTranscribeRobot" | "VideoThumbsRobot" | "FileVirusscanRobot" | "ImageOptimizeRobot" | "FileCompressRobot" | "MetaReadRobot" | "FileDecompressRobot" | "MetaWriteRobot" | "DocumentThumbsRobot" | "DocumentConvertRobot" | "DocumentMergeRobot" | "DocumentSplitRobot" | "DocumentAutorotateRobot" | "HtmlConvertRobot" | "ImageResizeRobot" | "ImageMergeRobot" | "S3ImportRobot" | "S3StoreRobot" | "DigitalOceanImportRobot" | "DigitalOceanStoreRobot" | "BackblazeImportRobot" | "BackblazeStoreRobot" | "MinioImportRobot" | "TigrisImportRobot" | "CloudflareImportRobot" | "SupabaseImportRobot" | "MinioStoreRobot" | "TigrisStoreRobot" | "CloudflareStoreRobot" | "SupabaseStoreRobot" | "WasabiImportRobot" | "WasabiStoreRobot" | "SwiftImportRobot" | "SwiftStoreRobot" | "GoogleImportRobot" | "GoogleStoreRobot" | "DropboxImportRobot" | "DropboxStoreRobot" | "HttpImportRobot" | "SftpImportRobot" | "SftpStoreRobot" | "FtpImportRobot" | "FtpStoreRobot" | "CloudfilesImportRobot" | "CloudfilesStoreRobot" | "AzureImportRobot" | "AzureStoreRobot" | "YoutubeStoreRobot" | "VimeoImportRobot" | "VimeoStoreRobot" | "AssemblySavejsonRobot" | "ScriptRunRobot" | "FileHashRobot" | "FileReadRobot" | "VideoOndemandRobot" | "FileFilterRobot" | "TextSpeakRobot" | "TextTranslateRobot" | "FilePreviewRobot" | "TusStoreRobot" | "ProgressSimulateRobot";
|
|
72601
|
+
name: "AiChatRobot" | "UploadHandleRobot" | "FileServeRobot" | "FileWatermarkRobot" | "FileVerifyRobot" | "EdglyDeliverRobot" | "TlcdnDeliverRobot" | "VideoSubtitleRobot" | "VideoEncodeRobot" | "VideoAdaptiveRobot" | "VideoMergeRobot" | "VideoConcatRobot" | "AudioWaveformRobot" | "AudioEncodeRobot" | "AudioLoopRobot" | "AudioConcatRobot" | "AudioMergeRobot" | "AudioArtworkRobot" | "ImageFacedetectRobot" | "ImageDescribeRobot" | "ImageOcrRobot" | "ImageBgremoveRobot" | "ImageGenerateRobot" | "DocumentOcrRobot" | "SpeechTranscribeRobot" | "VideoThumbsRobot" | "FileVirusscanRobot" | "ImageOptimizeRobot" | "FileCompressRobot" | "MetaReadRobot" | "FileDecompressRobot" | "MetaWriteRobot" | "DocumentThumbsRobot" | "DocumentConvertRobot" | "DocumentMergeRobot" | "DocumentSplitRobot" | "DocumentOptimizeRobot" | "DocumentAutorotateRobot" | "HtmlConvertRobot" | "ImageResizeRobot" | "ImageMergeRobot" | "S3ImportRobot" | "S3StoreRobot" | "DigitalOceanImportRobot" | "DigitalOceanStoreRobot" | "BackblazeImportRobot" | "BackblazeStoreRobot" | "MinioImportRobot" | "TigrisImportRobot" | "CloudflareImportRobot" | "SupabaseImportRobot" | "MinioStoreRobot" | "TigrisStoreRobot" | "CloudflareStoreRobot" | "SupabaseStoreRobot" | "WasabiImportRobot" | "WasabiStoreRobot" | "SwiftImportRobot" | "SwiftStoreRobot" | "GoogleImportRobot" | "GoogleStoreRobot" | "DropboxImportRobot" | "DropboxStoreRobot" | "HttpImportRobot" | "SftpImportRobot" | "SftpStoreRobot" | "FtpImportRobot" | "FtpStoreRobot" | "CloudfilesImportRobot" | "CloudfilesStoreRobot" | "AzureImportRobot" | "AzureStoreRobot" | "YoutubeStoreRobot" | "VimeoImportRobot" | "VimeoStoreRobot" | "AssemblySavejsonRobot" | "ScriptRunRobot" | "FileHashRobot" | "FileReadRobot" | "VideoOndemandRobot" | "FileFilterRobot" | "TextSpeakRobot" | "TextTranslateRobot" | "FilePreviewRobot" | "TusStoreRobot" | "ProgressSimulateRobot";
|
|
72130
72602
|
priceFactor: number;
|
|
72131
72603
|
queueSlotCount: number;
|
|
72132
72604
|
isAllowedForUrlTransform: boolean;
|
|
@@ -72180,7 +72652,7 @@ export declare const robotsMeta: {
|
|
|
72180
72652
|
uses_tools?: ("ffmpeg" | "imagemagick")[] | undefined;
|
|
72181
72653
|
};
|
|
72182
72654
|
audioWaveformMeta: {
|
|
72183
|
-
name: "AiChatRobot" | "UploadHandleRobot" | "FileServeRobot" | "FileWatermarkRobot" | "FileVerifyRobot" | "EdglyDeliverRobot" | "TlcdnDeliverRobot" | "VideoSubtitleRobot" | "VideoEncodeRobot" | "VideoAdaptiveRobot" | "VideoMergeRobot" | "VideoConcatRobot" | "AudioWaveformRobot" | "AudioEncodeRobot" | "AudioLoopRobot" | "AudioConcatRobot" | "AudioMergeRobot" | "AudioArtworkRobot" | "ImageFacedetectRobot" | "ImageDescribeRobot" | "ImageOcrRobot" | "ImageBgremoveRobot" | "ImageGenerateRobot" | "DocumentOcrRobot" | "SpeechTranscribeRobot" | "VideoThumbsRobot" | "FileVirusscanRobot" | "ImageOptimizeRobot" | "FileCompressRobot" | "MetaReadRobot" | "FileDecompressRobot" | "MetaWriteRobot" | "DocumentThumbsRobot" | "DocumentConvertRobot" | "DocumentMergeRobot" | "DocumentSplitRobot" | "DocumentAutorotateRobot" | "HtmlConvertRobot" | "ImageResizeRobot" | "ImageMergeRobot" | "S3ImportRobot" | "S3StoreRobot" | "DigitalOceanImportRobot" | "DigitalOceanStoreRobot" | "BackblazeImportRobot" | "BackblazeStoreRobot" | "MinioImportRobot" | "TigrisImportRobot" | "CloudflareImportRobot" | "SupabaseImportRobot" | "MinioStoreRobot" | "TigrisStoreRobot" | "CloudflareStoreRobot" | "SupabaseStoreRobot" | "WasabiImportRobot" | "WasabiStoreRobot" | "SwiftImportRobot" | "SwiftStoreRobot" | "GoogleImportRobot" | "GoogleStoreRobot" | "DropboxImportRobot" | "DropboxStoreRobot" | "HttpImportRobot" | "SftpImportRobot" | "SftpStoreRobot" | "FtpImportRobot" | "FtpStoreRobot" | "CloudfilesImportRobot" | "CloudfilesStoreRobot" | "AzureImportRobot" | "AzureStoreRobot" | "YoutubeStoreRobot" | "VimeoImportRobot" | "VimeoStoreRobot" | "AssemblySavejsonRobot" | "ScriptRunRobot" | "FileHashRobot" | "FileReadRobot" | "VideoOndemandRobot" | "FileFilterRobot" | "TextSpeakRobot" | "TextTranslateRobot" | "FilePreviewRobot" | "TusStoreRobot" | "ProgressSimulateRobot";
|
|
72655
|
+
name: "AiChatRobot" | "UploadHandleRobot" | "FileServeRobot" | "FileWatermarkRobot" | "FileVerifyRobot" | "EdglyDeliverRobot" | "TlcdnDeliverRobot" | "VideoSubtitleRobot" | "VideoEncodeRobot" | "VideoAdaptiveRobot" | "VideoMergeRobot" | "VideoConcatRobot" | "AudioWaveformRobot" | "AudioEncodeRobot" | "AudioLoopRobot" | "AudioConcatRobot" | "AudioMergeRobot" | "AudioArtworkRobot" | "ImageFacedetectRobot" | "ImageDescribeRobot" | "ImageOcrRobot" | "ImageBgremoveRobot" | "ImageGenerateRobot" | "DocumentOcrRobot" | "SpeechTranscribeRobot" | "VideoThumbsRobot" | "FileVirusscanRobot" | "ImageOptimizeRobot" | "FileCompressRobot" | "MetaReadRobot" | "FileDecompressRobot" | "MetaWriteRobot" | "DocumentThumbsRobot" | "DocumentConvertRobot" | "DocumentMergeRobot" | "DocumentSplitRobot" | "DocumentOptimizeRobot" | "DocumentAutorotateRobot" | "HtmlConvertRobot" | "ImageResizeRobot" | "ImageMergeRobot" | "S3ImportRobot" | "S3StoreRobot" | "DigitalOceanImportRobot" | "DigitalOceanStoreRobot" | "BackblazeImportRobot" | "BackblazeStoreRobot" | "MinioImportRobot" | "TigrisImportRobot" | "CloudflareImportRobot" | "SupabaseImportRobot" | "MinioStoreRobot" | "TigrisStoreRobot" | "CloudflareStoreRobot" | "SupabaseStoreRobot" | "WasabiImportRobot" | "WasabiStoreRobot" | "SwiftImportRobot" | "SwiftStoreRobot" | "GoogleImportRobot" | "GoogleStoreRobot" | "DropboxImportRobot" | "DropboxStoreRobot" | "HttpImportRobot" | "SftpImportRobot" | "SftpStoreRobot" | "FtpImportRobot" | "FtpStoreRobot" | "CloudfilesImportRobot" | "CloudfilesStoreRobot" | "AzureImportRobot" | "AzureStoreRobot" | "YoutubeStoreRobot" | "VimeoImportRobot" | "VimeoStoreRobot" | "AssemblySavejsonRobot" | "ScriptRunRobot" | "FileHashRobot" | "FileReadRobot" | "VideoOndemandRobot" | "FileFilterRobot" | "TextSpeakRobot" | "TextTranslateRobot" | "FilePreviewRobot" | "TusStoreRobot" | "ProgressSimulateRobot";
|
|
72184
72656
|
priceFactor: number;
|
|
72185
72657
|
queueSlotCount: number;
|
|
72186
72658
|
isAllowedForUrlTransform: boolean;
|
|
@@ -72234,7 +72706,7 @@ export declare const robotsMeta: {
|
|
|
72234
72706
|
uses_tools?: ("ffmpeg" | "imagemagick")[] | undefined;
|
|
72235
72707
|
};
|
|
72236
72708
|
azureImportMeta: {
|
|
72237
|
-
name: "AiChatRobot" | "UploadHandleRobot" | "FileServeRobot" | "FileWatermarkRobot" | "FileVerifyRobot" | "EdglyDeliverRobot" | "TlcdnDeliverRobot" | "VideoSubtitleRobot" | "VideoEncodeRobot" | "VideoAdaptiveRobot" | "VideoMergeRobot" | "VideoConcatRobot" | "AudioWaveformRobot" | "AudioEncodeRobot" | "AudioLoopRobot" | "AudioConcatRobot" | "AudioMergeRobot" | "AudioArtworkRobot" | "ImageFacedetectRobot" | "ImageDescribeRobot" | "ImageOcrRobot" | "ImageBgremoveRobot" | "ImageGenerateRobot" | "DocumentOcrRobot" | "SpeechTranscribeRobot" | "VideoThumbsRobot" | "FileVirusscanRobot" | "ImageOptimizeRobot" | "FileCompressRobot" | "MetaReadRobot" | "FileDecompressRobot" | "MetaWriteRobot" | "DocumentThumbsRobot" | "DocumentConvertRobot" | "DocumentMergeRobot" | "DocumentSplitRobot" | "DocumentAutorotateRobot" | "HtmlConvertRobot" | "ImageResizeRobot" | "ImageMergeRobot" | "S3ImportRobot" | "S3StoreRobot" | "DigitalOceanImportRobot" | "DigitalOceanStoreRobot" | "BackblazeImportRobot" | "BackblazeStoreRobot" | "MinioImportRobot" | "TigrisImportRobot" | "CloudflareImportRobot" | "SupabaseImportRobot" | "MinioStoreRobot" | "TigrisStoreRobot" | "CloudflareStoreRobot" | "SupabaseStoreRobot" | "WasabiImportRobot" | "WasabiStoreRobot" | "SwiftImportRobot" | "SwiftStoreRobot" | "GoogleImportRobot" | "GoogleStoreRobot" | "DropboxImportRobot" | "DropboxStoreRobot" | "HttpImportRobot" | "SftpImportRobot" | "SftpStoreRobot" | "FtpImportRobot" | "FtpStoreRobot" | "CloudfilesImportRobot" | "CloudfilesStoreRobot" | "AzureImportRobot" | "AzureStoreRobot" | "YoutubeStoreRobot" | "VimeoImportRobot" | "VimeoStoreRobot" | "AssemblySavejsonRobot" | "ScriptRunRobot" | "FileHashRobot" | "FileReadRobot" | "VideoOndemandRobot" | "FileFilterRobot" | "TextSpeakRobot" | "TextTranslateRobot" | "FilePreviewRobot" | "TusStoreRobot" | "ProgressSimulateRobot";
|
|
72709
|
+
name: "AiChatRobot" | "UploadHandleRobot" | "FileServeRobot" | "FileWatermarkRobot" | "FileVerifyRobot" | "EdglyDeliverRobot" | "TlcdnDeliverRobot" | "VideoSubtitleRobot" | "VideoEncodeRobot" | "VideoAdaptiveRobot" | "VideoMergeRobot" | "VideoConcatRobot" | "AudioWaveformRobot" | "AudioEncodeRobot" | "AudioLoopRobot" | "AudioConcatRobot" | "AudioMergeRobot" | "AudioArtworkRobot" | "ImageFacedetectRobot" | "ImageDescribeRobot" | "ImageOcrRobot" | "ImageBgremoveRobot" | "ImageGenerateRobot" | "DocumentOcrRobot" | "SpeechTranscribeRobot" | "VideoThumbsRobot" | "FileVirusscanRobot" | "ImageOptimizeRobot" | "FileCompressRobot" | "MetaReadRobot" | "FileDecompressRobot" | "MetaWriteRobot" | "DocumentThumbsRobot" | "DocumentConvertRobot" | "DocumentMergeRobot" | "DocumentSplitRobot" | "DocumentOptimizeRobot" | "DocumentAutorotateRobot" | "HtmlConvertRobot" | "ImageResizeRobot" | "ImageMergeRobot" | "S3ImportRobot" | "S3StoreRobot" | "DigitalOceanImportRobot" | "DigitalOceanStoreRobot" | "BackblazeImportRobot" | "BackblazeStoreRobot" | "MinioImportRobot" | "TigrisImportRobot" | "CloudflareImportRobot" | "SupabaseImportRobot" | "MinioStoreRobot" | "TigrisStoreRobot" | "CloudflareStoreRobot" | "SupabaseStoreRobot" | "WasabiImportRobot" | "WasabiStoreRobot" | "SwiftImportRobot" | "SwiftStoreRobot" | "GoogleImportRobot" | "GoogleStoreRobot" | "DropboxImportRobot" | "DropboxStoreRobot" | "HttpImportRobot" | "SftpImportRobot" | "SftpStoreRobot" | "FtpImportRobot" | "FtpStoreRobot" | "CloudfilesImportRobot" | "CloudfilesStoreRobot" | "AzureImportRobot" | "AzureStoreRobot" | "YoutubeStoreRobot" | "VimeoImportRobot" | "VimeoStoreRobot" | "AssemblySavejsonRobot" | "ScriptRunRobot" | "FileHashRobot" | "FileReadRobot" | "VideoOndemandRobot" | "FileFilterRobot" | "TextSpeakRobot" | "TextTranslateRobot" | "FilePreviewRobot" | "TusStoreRobot" | "ProgressSimulateRobot";
|
|
72238
72710
|
priceFactor: number;
|
|
72239
72711
|
queueSlotCount: number;
|
|
72240
72712
|
isAllowedForUrlTransform: boolean;
|
|
@@ -72288,7 +72760,7 @@ export declare const robotsMeta: {
|
|
|
72288
72760
|
uses_tools?: ("ffmpeg" | "imagemagick")[] | undefined;
|
|
72289
72761
|
};
|
|
72290
72762
|
azureStoreMeta: {
|
|
72291
|
-
name: "AiChatRobot" | "UploadHandleRobot" | "FileServeRobot" | "FileWatermarkRobot" | "FileVerifyRobot" | "EdglyDeliverRobot" | "TlcdnDeliverRobot" | "VideoSubtitleRobot" | "VideoEncodeRobot" | "VideoAdaptiveRobot" | "VideoMergeRobot" | "VideoConcatRobot" | "AudioWaveformRobot" | "AudioEncodeRobot" | "AudioLoopRobot" | "AudioConcatRobot" | "AudioMergeRobot" | "AudioArtworkRobot" | "ImageFacedetectRobot" | "ImageDescribeRobot" | "ImageOcrRobot" | "ImageBgremoveRobot" | "ImageGenerateRobot" | "DocumentOcrRobot" | "SpeechTranscribeRobot" | "VideoThumbsRobot" | "FileVirusscanRobot" | "ImageOptimizeRobot" | "FileCompressRobot" | "MetaReadRobot" | "FileDecompressRobot" | "MetaWriteRobot" | "DocumentThumbsRobot" | "DocumentConvertRobot" | "DocumentMergeRobot" | "DocumentSplitRobot" | "DocumentAutorotateRobot" | "HtmlConvertRobot" | "ImageResizeRobot" | "ImageMergeRobot" | "S3ImportRobot" | "S3StoreRobot" | "DigitalOceanImportRobot" | "DigitalOceanStoreRobot" | "BackblazeImportRobot" | "BackblazeStoreRobot" | "MinioImportRobot" | "TigrisImportRobot" | "CloudflareImportRobot" | "SupabaseImportRobot" | "MinioStoreRobot" | "TigrisStoreRobot" | "CloudflareStoreRobot" | "SupabaseStoreRobot" | "WasabiImportRobot" | "WasabiStoreRobot" | "SwiftImportRobot" | "SwiftStoreRobot" | "GoogleImportRobot" | "GoogleStoreRobot" | "DropboxImportRobot" | "DropboxStoreRobot" | "HttpImportRobot" | "SftpImportRobot" | "SftpStoreRobot" | "FtpImportRobot" | "FtpStoreRobot" | "CloudfilesImportRobot" | "CloudfilesStoreRobot" | "AzureImportRobot" | "AzureStoreRobot" | "YoutubeStoreRobot" | "VimeoImportRobot" | "VimeoStoreRobot" | "AssemblySavejsonRobot" | "ScriptRunRobot" | "FileHashRobot" | "FileReadRobot" | "VideoOndemandRobot" | "FileFilterRobot" | "TextSpeakRobot" | "TextTranslateRobot" | "FilePreviewRobot" | "TusStoreRobot" | "ProgressSimulateRobot";
|
|
72763
|
+
name: "AiChatRobot" | "UploadHandleRobot" | "FileServeRobot" | "FileWatermarkRobot" | "FileVerifyRobot" | "EdglyDeliverRobot" | "TlcdnDeliverRobot" | "VideoSubtitleRobot" | "VideoEncodeRobot" | "VideoAdaptiveRobot" | "VideoMergeRobot" | "VideoConcatRobot" | "AudioWaveformRobot" | "AudioEncodeRobot" | "AudioLoopRobot" | "AudioConcatRobot" | "AudioMergeRobot" | "AudioArtworkRobot" | "ImageFacedetectRobot" | "ImageDescribeRobot" | "ImageOcrRobot" | "ImageBgremoveRobot" | "ImageGenerateRobot" | "DocumentOcrRobot" | "SpeechTranscribeRobot" | "VideoThumbsRobot" | "FileVirusscanRobot" | "ImageOptimizeRobot" | "FileCompressRobot" | "MetaReadRobot" | "FileDecompressRobot" | "MetaWriteRobot" | "DocumentThumbsRobot" | "DocumentConvertRobot" | "DocumentMergeRobot" | "DocumentSplitRobot" | "DocumentOptimizeRobot" | "DocumentAutorotateRobot" | "HtmlConvertRobot" | "ImageResizeRobot" | "ImageMergeRobot" | "S3ImportRobot" | "S3StoreRobot" | "DigitalOceanImportRobot" | "DigitalOceanStoreRobot" | "BackblazeImportRobot" | "BackblazeStoreRobot" | "MinioImportRobot" | "TigrisImportRobot" | "CloudflareImportRobot" | "SupabaseImportRobot" | "MinioStoreRobot" | "TigrisStoreRobot" | "CloudflareStoreRobot" | "SupabaseStoreRobot" | "WasabiImportRobot" | "WasabiStoreRobot" | "SwiftImportRobot" | "SwiftStoreRobot" | "GoogleImportRobot" | "GoogleStoreRobot" | "DropboxImportRobot" | "DropboxStoreRobot" | "HttpImportRobot" | "SftpImportRobot" | "SftpStoreRobot" | "FtpImportRobot" | "FtpStoreRobot" | "CloudfilesImportRobot" | "CloudfilesStoreRobot" | "AzureImportRobot" | "AzureStoreRobot" | "YoutubeStoreRobot" | "VimeoImportRobot" | "VimeoStoreRobot" | "AssemblySavejsonRobot" | "ScriptRunRobot" | "FileHashRobot" | "FileReadRobot" | "VideoOndemandRobot" | "FileFilterRobot" | "TextSpeakRobot" | "TextTranslateRobot" | "FilePreviewRobot" | "TusStoreRobot" | "ProgressSimulateRobot";
|
|
72292
72764
|
priceFactor: number;
|
|
72293
72765
|
queueSlotCount: number;
|
|
72294
72766
|
isAllowedForUrlTransform: boolean;
|
|
@@ -72342,7 +72814,7 @@ export declare const robotsMeta: {
|
|
|
72342
72814
|
uses_tools?: ("ffmpeg" | "imagemagick")[] | undefined;
|
|
72343
72815
|
};
|
|
72344
72816
|
backblazeImportMeta: {
|
|
72345
|
-
name: "AiChatRobot" | "UploadHandleRobot" | "FileServeRobot" | "FileWatermarkRobot" | "FileVerifyRobot" | "EdglyDeliverRobot" | "TlcdnDeliverRobot" | "VideoSubtitleRobot" | "VideoEncodeRobot" | "VideoAdaptiveRobot" | "VideoMergeRobot" | "VideoConcatRobot" | "AudioWaveformRobot" | "AudioEncodeRobot" | "AudioLoopRobot" | "AudioConcatRobot" | "AudioMergeRobot" | "AudioArtworkRobot" | "ImageFacedetectRobot" | "ImageDescribeRobot" | "ImageOcrRobot" | "ImageBgremoveRobot" | "ImageGenerateRobot" | "DocumentOcrRobot" | "SpeechTranscribeRobot" | "VideoThumbsRobot" | "FileVirusscanRobot" | "ImageOptimizeRobot" | "FileCompressRobot" | "MetaReadRobot" | "FileDecompressRobot" | "MetaWriteRobot" | "DocumentThumbsRobot" | "DocumentConvertRobot" | "DocumentMergeRobot" | "DocumentSplitRobot" | "DocumentAutorotateRobot" | "HtmlConvertRobot" | "ImageResizeRobot" | "ImageMergeRobot" | "S3ImportRobot" | "S3StoreRobot" | "DigitalOceanImportRobot" | "DigitalOceanStoreRobot" | "BackblazeImportRobot" | "BackblazeStoreRobot" | "MinioImportRobot" | "TigrisImportRobot" | "CloudflareImportRobot" | "SupabaseImportRobot" | "MinioStoreRobot" | "TigrisStoreRobot" | "CloudflareStoreRobot" | "SupabaseStoreRobot" | "WasabiImportRobot" | "WasabiStoreRobot" | "SwiftImportRobot" | "SwiftStoreRobot" | "GoogleImportRobot" | "GoogleStoreRobot" | "DropboxImportRobot" | "DropboxStoreRobot" | "HttpImportRobot" | "SftpImportRobot" | "SftpStoreRobot" | "FtpImportRobot" | "FtpStoreRobot" | "CloudfilesImportRobot" | "CloudfilesStoreRobot" | "AzureImportRobot" | "AzureStoreRobot" | "YoutubeStoreRobot" | "VimeoImportRobot" | "VimeoStoreRobot" | "AssemblySavejsonRobot" | "ScriptRunRobot" | "FileHashRobot" | "FileReadRobot" | "VideoOndemandRobot" | "FileFilterRobot" | "TextSpeakRobot" | "TextTranslateRobot" | "FilePreviewRobot" | "TusStoreRobot" | "ProgressSimulateRobot";
|
|
72817
|
+
name: "AiChatRobot" | "UploadHandleRobot" | "FileServeRobot" | "FileWatermarkRobot" | "FileVerifyRobot" | "EdglyDeliverRobot" | "TlcdnDeliverRobot" | "VideoSubtitleRobot" | "VideoEncodeRobot" | "VideoAdaptiveRobot" | "VideoMergeRobot" | "VideoConcatRobot" | "AudioWaveformRobot" | "AudioEncodeRobot" | "AudioLoopRobot" | "AudioConcatRobot" | "AudioMergeRobot" | "AudioArtworkRobot" | "ImageFacedetectRobot" | "ImageDescribeRobot" | "ImageOcrRobot" | "ImageBgremoveRobot" | "ImageGenerateRobot" | "DocumentOcrRobot" | "SpeechTranscribeRobot" | "VideoThumbsRobot" | "FileVirusscanRobot" | "ImageOptimizeRobot" | "FileCompressRobot" | "MetaReadRobot" | "FileDecompressRobot" | "MetaWriteRobot" | "DocumentThumbsRobot" | "DocumentConvertRobot" | "DocumentMergeRobot" | "DocumentSplitRobot" | "DocumentOptimizeRobot" | "DocumentAutorotateRobot" | "HtmlConvertRobot" | "ImageResizeRobot" | "ImageMergeRobot" | "S3ImportRobot" | "S3StoreRobot" | "DigitalOceanImportRobot" | "DigitalOceanStoreRobot" | "BackblazeImportRobot" | "BackblazeStoreRobot" | "MinioImportRobot" | "TigrisImportRobot" | "CloudflareImportRobot" | "SupabaseImportRobot" | "MinioStoreRobot" | "TigrisStoreRobot" | "CloudflareStoreRobot" | "SupabaseStoreRobot" | "WasabiImportRobot" | "WasabiStoreRobot" | "SwiftImportRobot" | "SwiftStoreRobot" | "GoogleImportRobot" | "GoogleStoreRobot" | "DropboxImportRobot" | "DropboxStoreRobot" | "HttpImportRobot" | "SftpImportRobot" | "SftpStoreRobot" | "FtpImportRobot" | "FtpStoreRobot" | "CloudfilesImportRobot" | "CloudfilesStoreRobot" | "AzureImportRobot" | "AzureStoreRobot" | "YoutubeStoreRobot" | "VimeoImportRobot" | "VimeoStoreRobot" | "AssemblySavejsonRobot" | "ScriptRunRobot" | "FileHashRobot" | "FileReadRobot" | "VideoOndemandRobot" | "FileFilterRobot" | "TextSpeakRobot" | "TextTranslateRobot" | "FilePreviewRobot" | "TusStoreRobot" | "ProgressSimulateRobot";
|
|
72346
72818
|
priceFactor: number;
|
|
72347
72819
|
queueSlotCount: number;
|
|
72348
72820
|
isAllowedForUrlTransform: boolean;
|
|
@@ -72396,7 +72868,7 @@ export declare const robotsMeta: {
|
|
|
72396
72868
|
uses_tools?: ("ffmpeg" | "imagemagick")[] | undefined;
|
|
72397
72869
|
};
|
|
72398
72870
|
backblazeStoreMeta: {
|
|
72399
|
-
name: "AiChatRobot" | "UploadHandleRobot" | "FileServeRobot" | "FileWatermarkRobot" | "FileVerifyRobot" | "EdglyDeliverRobot" | "TlcdnDeliverRobot" | "VideoSubtitleRobot" | "VideoEncodeRobot" | "VideoAdaptiveRobot" | "VideoMergeRobot" | "VideoConcatRobot" | "AudioWaveformRobot" | "AudioEncodeRobot" | "AudioLoopRobot" | "AudioConcatRobot" | "AudioMergeRobot" | "AudioArtworkRobot" | "ImageFacedetectRobot" | "ImageDescribeRobot" | "ImageOcrRobot" | "ImageBgremoveRobot" | "ImageGenerateRobot" | "DocumentOcrRobot" | "SpeechTranscribeRobot" | "VideoThumbsRobot" | "FileVirusscanRobot" | "ImageOptimizeRobot" | "FileCompressRobot" | "MetaReadRobot" | "FileDecompressRobot" | "MetaWriteRobot" | "DocumentThumbsRobot" | "DocumentConvertRobot" | "DocumentMergeRobot" | "DocumentSplitRobot" | "DocumentAutorotateRobot" | "HtmlConvertRobot" | "ImageResizeRobot" | "ImageMergeRobot" | "S3ImportRobot" | "S3StoreRobot" | "DigitalOceanImportRobot" | "DigitalOceanStoreRobot" | "BackblazeImportRobot" | "BackblazeStoreRobot" | "MinioImportRobot" | "TigrisImportRobot" | "CloudflareImportRobot" | "SupabaseImportRobot" | "MinioStoreRobot" | "TigrisStoreRobot" | "CloudflareStoreRobot" | "SupabaseStoreRobot" | "WasabiImportRobot" | "WasabiStoreRobot" | "SwiftImportRobot" | "SwiftStoreRobot" | "GoogleImportRobot" | "GoogleStoreRobot" | "DropboxImportRobot" | "DropboxStoreRobot" | "HttpImportRobot" | "SftpImportRobot" | "SftpStoreRobot" | "FtpImportRobot" | "FtpStoreRobot" | "CloudfilesImportRobot" | "CloudfilesStoreRobot" | "AzureImportRobot" | "AzureStoreRobot" | "YoutubeStoreRobot" | "VimeoImportRobot" | "VimeoStoreRobot" | "AssemblySavejsonRobot" | "ScriptRunRobot" | "FileHashRobot" | "FileReadRobot" | "VideoOndemandRobot" | "FileFilterRobot" | "TextSpeakRobot" | "TextTranslateRobot" | "FilePreviewRobot" | "TusStoreRobot" | "ProgressSimulateRobot";
|
|
72871
|
+
name: "AiChatRobot" | "UploadHandleRobot" | "FileServeRobot" | "FileWatermarkRobot" | "FileVerifyRobot" | "EdglyDeliverRobot" | "TlcdnDeliverRobot" | "VideoSubtitleRobot" | "VideoEncodeRobot" | "VideoAdaptiveRobot" | "VideoMergeRobot" | "VideoConcatRobot" | "AudioWaveformRobot" | "AudioEncodeRobot" | "AudioLoopRobot" | "AudioConcatRobot" | "AudioMergeRobot" | "AudioArtworkRobot" | "ImageFacedetectRobot" | "ImageDescribeRobot" | "ImageOcrRobot" | "ImageBgremoveRobot" | "ImageGenerateRobot" | "DocumentOcrRobot" | "SpeechTranscribeRobot" | "VideoThumbsRobot" | "FileVirusscanRobot" | "ImageOptimizeRobot" | "FileCompressRobot" | "MetaReadRobot" | "FileDecompressRobot" | "MetaWriteRobot" | "DocumentThumbsRobot" | "DocumentConvertRobot" | "DocumentMergeRobot" | "DocumentSplitRobot" | "DocumentOptimizeRobot" | "DocumentAutorotateRobot" | "HtmlConvertRobot" | "ImageResizeRobot" | "ImageMergeRobot" | "S3ImportRobot" | "S3StoreRobot" | "DigitalOceanImportRobot" | "DigitalOceanStoreRobot" | "BackblazeImportRobot" | "BackblazeStoreRobot" | "MinioImportRobot" | "TigrisImportRobot" | "CloudflareImportRobot" | "SupabaseImportRobot" | "MinioStoreRobot" | "TigrisStoreRobot" | "CloudflareStoreRobot" | "SupabaseStoreRobot" | "WasabiImportRobot" | "WasabiStoreRobot" | "SwiftImportRobot" | "SwiftStoreRobot" | "GoogleImportRobot" | "GoogleStoreRobot" | "DropboxImportRobot" | "DropboxStoreRobot" | "HttpImportRobot" | "SftpImportRobot" | "SftpStoreRobot" | "FtpImportRobot" | "FtpStoreRobot" | "CloudfilesImportRobot" | "CloudfilesStoreRobot" | "AzureImportRobot" | "AzureStoreRobot" | "YoutubeStoreRobot" | "VimeoImportRobot" | "VimeoStoreRobot" | "AssemblySavejsonRobot" | "ScriptRunRobot" | "FileHashRobot" | "FileReadRobot" | "VideoOndemandRobot" | "FileFilterRobot" | "TextSpeakRobot" | "TextTranslateRobot" | "FilePreviewRobot" | "TusStoreRobot" | "ProgressSimulateRobot";
|
|
72400
72872
|
priceFactor: number;
|
|
72401
72873
|
queueSlotCount: number;
|
|
72402
72874
|
isAllowedForUrlTransform: boolean;
|
|
@@ -72450,7 +72922,7 @@ export declare const robotsMeta: {
|
|
|
72450
72922
|
uses_tools?: ("ffmpeg" | "imagemagick")[] | undefined;
|
|
72451
72923
|
};
|
|
72452
72924
|
cloudfilesImportMeta: {
|
|
72453
|
-
name: "AiChatRobot" | "UploadHandleRobot" | "FileServeRobot" | "FileWatermarkRobot" | "FileVerifyRobot" | "EdglyDeliverRobot" | "TlcdnDeliverRobot" | "VideoSubtitleRobot" | "VideoEncodeRobot" | "VideoAdaptiveRobot" | "VideoMergeRobot" | "VideoConcatRobot" | "AudioWaveformRobot" | "AudioEncodeRobot" | "AudioLoopRobot" | "AudioConcatRobot" | "AudioMergeRobot" | "AudioArtworkRobot" | "ImageFacedetectRobot" | "ImageDescribeRobot" | "ImageOcrRobot" | "ImageBgremoveRobot" | "ImageGenerateRobot" | "DocumentOcrRobot" | "SpeechTranscribeRobot" | "VideoThumbsRobot" | "FileVirusscanRobot" | "ImageOptimizeRobot" | "FileCompressRobot" | "MetaReadRobot" | "FileDecompressRobot" | "MetaWriteRobot" | "DocumentThumbsRobot" | "DocumentConvertRobot" | "DocumentMergeRobot" | "DocumentSplitRobot" | "DocumentAutorotateRobot" | "HtmlConvertRobot" | "ImageResizeRobot" | "ImageMergeRobot" | "S3ImportRobot" | "S3StoreRobot" | "DigitalOceanImportRobot" | "DigitalOceanStoreRobot" | "BackblazeImportRobot" | "BackblazeStoreRobot" | "MinioImportRobot" | "TigrisImportRobot" | "CloudflareImportRobot" | "SupabaseImportRobot" | "MinioStoreRobot" | "TigrisStoreRobot" | "CloudflareStoreRobot" | "SupabaseStoreRobot" | "WasabiImportRobot" | "WasabiStoreRobot" | "SwiftImportRobot" | "SwiftStoreRobot" | "GoogleImportRobot" | "GoogleStoreRobot" | "DropboxImportRobot" | "DropboxStoreRobot" | "HttpImportRobot" | "SftpImportRobot" | "SftpStoreRobot" | "FtpImportRobot" | "FtpStoreRobot" | "CloudfilesImportRobot" | "CloudfilesStoreRobot" | "AzureImportRobot" | "AzureStoreRobot" | "YoutubeStoreRobot" | "VimeoImportRobot" | "VimeoStoreRobot" | "AssemblySavejsonRobot" | "ScriptRunRobot" | "FileHashRobot" | "FileReadRobot" | "VideoOndemandRobot" | "FileFilterRobot" | "TextSpeakRobot" | "TextTranslateRobot" | "FilePreviewRobot" | "TusStoreRobot" | "ProgressSimulateRobot";
|
|
72925
|
+
name: "AiChatRobot" | "UploadHandleRobot" | "FileServeRobot" | "FileWatermarkRobot" | "FileVerifyRobot" | "EdglyDeliverRobot" | "TlcdnDeliverRobot" | "VideoSubtitleRobot" | "VideoEncodeRobot" | "VideoAdaptiveRobot" | "VideoMergeRobot" | "VideoConcatRobot" | "AudioWaveformRobot" | "AudioEncodeRobot" | "AudioLoopRobot" | "AudioConcatRobot" | "AudioMergeRobot" | "AudioArtworkRobot" | "ImageFacedetectRobot" | "ImageDescribeRobot" | "ImageOcrRobot" | "ImageBgremoveRobot" | "ImageGenerateRobot" | "DocumentOcrRobot" | "SpeechTranscribeRobot" | "VideoThumbsRobot" | "FileVirusscanRobot" | "ImageOptimizeRobot" | "FileCompressRobot" | "MetaReadRobot" | "FileDecompressRobot" | "MetaWriteRobot" | "DocumentThumbsRobot" | "DocumentConvertRobot" | "DocumentMergeRobot" | "DocumentSplitRobot" | "DocumentOptimizeRobot" | "DocumentAutorotateRobot" | "HtmlConvertRobot" | "ImageResizeRobot" | "ImageMergeRobot" | "S3ImportRobot" | "S3StoreRobot" | "DigitalOceanImportRobot" | "DigitalOceanStoreRobot" | "BackblazeImportRobot" | "BackblazeStoreRobot" | "MinioImportRobot" | "TigrisImportRobot" | "CloudflareImportRobot" | "SupabaseImportRobot" | "MinioStoreRobot" | "TigrisStoreRobot" | "CloudflareStoreRobot" | "SupabaseStoreRobot" | "WasabiImportRobot" | "WasabiStoreRobot" | "SwiftImportRobot" | "SwiftStoreRobot" | "GoogleImportRobot" | "GoogleStoreRobot" | "DropboxImportRobot" | "DropboxStoreRobot" | "HttpImportRobot" | "SftpImportRobot" | "SftpStoreRobot" | "FtpImportRobot" | "FtpStoreRobot" | "CloudfilesImportRobot" | "CloudfilesStoreRobot" | "AzureImportRobot" | "AzureStoreRobot" | "YoutubeStoreRobot" | "VimeoImportRobot" | "VimeoStoreRobot" | "AssemblySavejsonRobot" | "ScriptRunRobot" | "FileHashRobot" | "FileReadRobot" | "VideoOndemandRobot" | "FileFilterRobot" | "TextSpeakRobot" | "TextTranslateRobot" | "FilePreviewRobot" | "TusStoreRobot" | "ProgressSimulateRobot";
|
|
72454
72926
|
priceFactor: number;
|
|
72455
72927
|
queueSlotCount: number;
|
|
72456
72928
|
isAllowedForUrlTransform: boolean;
|
|
@@ -72504,7 +72976,7 @@ export declare const robotsMeta: {
|
|
|
72504
72976
|
uses_tools?: ("ffmpeg" | "imagemagick")[] | undefined;
|
|
72505
72977
|
};
|
|
72506
72978
|
cloudfilesStoreMeta: {
|
|
72507
|
-
name: "AiChatRobot" | "UploadHandleRobot" | "FileServeRobot" | "FileWatermarkRobot" | "FileVerifyRobot" | "EdglyDeliverRobot" | "TlcdnDeliverRobot" | "VideoSubtitleRobot" | "VideoEncodeRobot" | "VideoAdaptiveRobot" | "VideoMergeRobot" | "VideoConcatRobot" | "AudioWaveformRobot" | "AudioEncodeRobot" | "AudioLoopRobot" | "AudioConcatRobot" | "AudioMergeRobot" | "AudioArtworkRobot" | "ImageFacedetectRobot" | "ImageDescribeRobot" | "ImageOcrRobot" | "ImageBgremoveRobot" | "ImageGenerateRobot" | "DocumentOcrRobot" | "SpeechTranscribeRobot" | "VideoThumbsRobot" | "FileVirusscanRobot" | "ImageOptimizeRobot" | "FileCompressRobot" | "MetaReadRobot" | "FileDecompressRobot" | "MetaWriteRobot" | "DocumentThumbsRobot" | "DocumentConvertRobot" | "DocumentMergeRobot" | "DocumentSplitRobot" | "DocumentAutorotateRobot" | "HtmlConvertRobot" | "ImageResizeRobot" | "ImageMergeRobot" | "S3ImportRobot" | "S3StoreRobot" | "DigitalOceanImportRobot" | "DigitalOceanStoreRobot" | "BackblazeImportRobot" | "BackblazeStoreRobot" | "MinioImportRobot" | "TigrisImportRobot" | "CloudflareImportRobot" | "SupabaseImportRobot" | "MinioStoreRobot" | "TigrisStoreRobot" | "CloudflareStoreRobot" | "SupabaseStoreRobot" | "WasabiImportRobot" | "WasabiStoreRobot" | "SwiftImportRobot" | "SwiftStoreRobot" | "GoogleImportRobot" | "GoogleStoreRobot" | "DropboxImportRobot" | "DropboxStoreRobot" | "HttpImportRobot" | "SftpImportRobot" | "SftpStoreRobot" | "FtpImportRobot" | "FtpStoreRobot" | "CloudfilesImportRobot" | "CloudfilesStoreRobot" | "AzureImportRobot" | "AzureStoreRobot" | "YoutubeStoreRobot" | "VimeoImportRobot" | "VimeoStoreRobot" | "AssemblySavejsonRobot" | "ScriptRunRobot" | "FileHashRobot" | "FileReadRobot" | "VideoOndemandRobot" | "FileFilterRobot" | "TextSpeakRobot" | "TextTranslateRobot" | "FilePreviewRobot" | "TusStoreRobot" | "ProgressSimulateRobot";
|
|
72979
|
+
name: "AiChatRobot" | "UploadHandleRobot" | "FileServeRobot" | "FileWatermarkRobot" | "FileVerifyRobot" | "EdglyDeliverRobot" | "TlcdnDeliverRobot" | "VideoSubtitleRobot" | "VideoEncodeRobot" | "VideoAdaptiveRobot" | "VideoMergeRobot" | "VideoConcatRobot" | "AudioWaveformRobot" | "AudioEncodeRobot" | "AudioLoopRobot" | "AudioConcatRobot" | "AudioMergeRobot" | "AudioArtworkRobot" | "ImageFacedetectRobot" | "ImageDescribeRobot" | "ImageOcrRobot" | "ImageBgremoveRobot" | "ImageGenerateRobot" | "DocumentOcrRobot" | "SpeechTranscribeRobot" | "VideoThumbsRobot" | "FileVirusscanRobot" | "ImageOptimizeRobot" | "FileCompressRobot" | "MetaReadRobot" | "FileDecompressRobot" | "MetaWriteRobot" | "DocumentThumbsRobot" | "DocumentConvertRobot" | "DocumentMergeRobot" | "DocumentSplitRobot" | "DocumentOptimizeRobot" | "DocumentAutorotateRobot" | "HtmlConvertRobot" | "ImageResizeRobot" | "ImageMergeRobot" | "S3ImportRobot" | "S3StoreRobot" | "DigitalOceanImportRobot" | "DigitalOceanStoreRobot" | "BackblazeImportRobot" | "BackblazeStoreRobot" | "MinioImportRobot" | "TigrisImportRobot" | "CloudflareImportRobot" | "SupabaseImportRobot" | "MinioStoreRobot" | "TigrisStoreRobot" | "CloudflareStoreRobot" | "SupabaseStoreRobot" | "WasabiImportRobot" | "WasabiStoreRobot" | "SwiftImportRobot" | "SwiftStoreRobot" | "GoogleImportRobot" | "GoogleStoreRobot" | "DropboxImportRobot" | "DropboxStoreRobot" | "HttpImportRobot" | "SftpImportRobot" | "SftpStoreRobot" | "FtpImportRobot" | "FtpStoreRobot" | "CloudfilesImportRobot" | "CloudfilesStoreRobot" | "AzureImportRobot" | "AzureStoreRobot" | "YoutubeStoreRobot" | "VimeoImportRobot" | "VimeoStoreRobot" | "AssemblySavejsonRobot" | "ScriptRunRobot" | "FileHashRobot" | "FileReadRobot" | "VideoOndemandRobot" | "FileFilterRobot" | "TextSpeakRobot" | "TextTranslateRobot" | "FilePreviewRobot" | "TusStoreRobot" | "ProgressSimulateRobot";
|
|
72508
72980
|
priceFactor: number;
|
|
72509
72981
|
queueSlotCount: number;
|
|
72510
72982
|
isAllowedForUrlTransform: boolean;
|
|
@@ -72558,7 +73030,7 @@ export declare const robotsMeta: {
|
|
|
72558
73030
|
uses_tools?: ("ffmpeg" | "imagemagick")[] | undefined;
|
|
72559
73031
|
};
|
|
72560
73032
|
cloudflareImportMeta: {
|
|
72561
|
-
name: "AiChatRobot" | "UploadHandleRobot" | "FileServeRobot" | "FileWatermarkRobot" | "FileVerifyRobot" | "EdglyDeliverRobot" | "TlcdnDeliverRobot" | "VideoSubtitleRobot" | "VideoEncodeRobot" | "VideoAdaptiveRobot" | "VideoMergeRobot" | "VideoConcatRobot" | "AudioWaveformRobot" | "AudioEncodeRobot" | "AudioLoopRobot" | "AudioConcatRobot" | "AudioMergeRobot" | "AudioArtworkRobot" | "ImageFacedetectRobot" | "ImageDescribeRobot" | "ImageOcrRobot" | "ImageBgremoveRobot" | "ImageGenerateRobot" | "DocumentOcrRobot" | "SpeechTranscribeRobot" | "VideoThumbsRobot" | "FileVirusscanRobot" | "ImageOptimizeRobot" | "FileCompressRobot" | "MetaReadRobot" | "FileDecompressRobot" | "MetaWriteRobot" | "DocumentThumbsRobot" | "DocumentConvertRobot" | "DocumentMergeRobot" | "DocumentSplitRobot" | "DocumentAutorotateRobot" | "HtmlConvertRobot" | "ImageResizeRobot" | "ImageMergeRobot" | "S3ImportRobot" | "S3StoreRobot" | "DigitalOceanImportRobot" | "DigitalOceanStoreRobot" | "BackblazeImportRobot" | "BackblazeStoreRobot" | "MinioImportRobot" | "TigrisImportRobot" | "CloudflareImportRobot" | "SupabaseImportRobot" | "MinioStoreRobot" | "TigrisStoreRobot" | "CloudflareStoreRobot" | "SupabaseStoreRobot" | "WasabiImportRobot" | "WasabiStoreRobot" | "SwiftImportRobot" | "SwiftStoreRobot" | "GoogleImportRobot" | "GoogleStoreRobot" | "DropboxImportRobot" | "DropboxStoreRobot" | "HttpImportRobot" | "SftpImportRobot" | "SftpStoreRobot" | "FtpImportRobot" | "FtpStoreRobot" | "CloudfilesImportRobot" | "CloudfilesStoreRobot" | "AzureImportRobot" | "AzureStoreRobot" | "YoutubeStoreRobot" | "VimeoImportRobot" | "VimeoStoreRobot" | "AssemblySavejsonRobot" | "ScriptRunRobot" | "FileHashRobot" | "FileReadRobot" | "VideoOndemandRobot" | "FileFilterRobot" | "TextSpeakRobot" | "TextTranslateRobot" | "FilePreviewRobot" | "TusStoreRobot" | "ProgressSimulateRobot";
|
|
73033
|
+
name: "AiChatRobot" | "UploadHandleRobot" | "FileServeRobot" | "FileWatermarkRobot" | "FileVerifyRobot" | "EdglyDeliverRobot" | "TlcdnDeliverRobot" | "VideoSubtitleRobot" | "VideoEncodeRobot" | "VideoAdaptiveRobot" | "VideoMergeRobot" | "VideoConcatRobot" | "AudioWaveformRobot" | "AudioEncodeRobot" | "AudioLoopRobot" | "AudioConcatRobot" | "AudioMergeRobot" | "AudioArtworkRobot" | "ImageFacedetectRobot" | "ImageDescribeRobot" | "ImageOcrRobot" | "ImageBgremoveRobot" | "ImageGenerateRobot" | "DocumentOcrRobot" | "SpeechTranscribeRobot" | "VideoThumbsRobot" | "FileVirusscanRobot" | "ImageOptimizeRobot" | "FileCompressRobot" | "MetaReadRobot" | "FileDecompressRobot" | "MetaWriteRobot" | "DocumentThumbsRobot" | "DocumentConvertRobot" | "DocumentMergeRobot" | "DocumentSplitRobot" | "DocumentOptimizeRobot" | "DocumentAutorotateRobot" | "HtmlConvertRobot" | "ImageResizeRobot" | "ImageMergeRobot" | "S3ImportRobot" | "S3StoreRobot" | "DigitalOceanImportRobot" | "DigitalOceanStoreRobot" | "BackblazeImportRobot" | "BackblazeStoreRobot" | "MinioImportRobot" | "TigrisImportRobot" | "CloudflareImportRobot" | "SupabaseImportRobot" | "MinioStoreRobot" | "TigrisStoreRobot" | "CloudflareStoreRobot" | "SupabaseStoreRobot" | "WasabiImportRobot" | "WasabiStoreRobot" | "SwiftImportRobot" | "SwiftStoreRobot" | "GoogleImportRobot" | "GoogleStoreRobot" | "DropboxImportRobot" | "DropboxStoreRobot" | "HttpImportRobot" | "SftpImportRobot" | "SftpStoreRobot" | "FtpImportRobot" | "FtpStoreRobot" | "CloudfilesImportRobot" | "CloudfilesStoreRobot" | "AzureImportRobot" | "AzureStoreRobot" | "YoutubeStoreRobot" | "VimeoImportRobot" | "VimeoStoreRobot" | "AssemblySavejsonRobot" | "ScriptRunRobot" | "FileHashRobot" | "FileReadRobot" | "VideoOndemandRobot" | "FileFilterRobot" | "TextSpeakRobot" | "TextTranslateRobot" | "FilePreviewRobot" | "TusStoreRobot" | "ProgressSimulateRobot";
|
|
72562
73034
|
priceFactor: number;
|
|
72563
73035
|
queueSlotCount: number;
|
|
72564
73036
|
isAllowedForUrlTransform: boolean;
|
|
@@ -72612,7 +73084,7 @@ export declare const robotsMeta: {
|
|
|
72612
73084
|
uses_tools?: ("ffmpeg" | "imagemagick")[] | undefined;
|
|
72613
73085
|
};
|
|
72614
73086
|
cloudflareStoreMeta: {
|
|
72615
|
-
name: "AiChatRobot" | "UploadHandleRobot" | "FileServeRobot" | "FileWatermarkRobot" | "FileVerifyRobot" | "EdglyDeliverRobot" | "TlcdnDeliverRobot" | "VideoSubtitleRobot" | "VideoEncodeRobot" | "VideoAdaptiveRobot" | "VideoMergeRobot" | "VideoConcatRobot" | "AudioWaveformRobot" | "AudioEncodeRobot" | "AudioLoopRobot" | "AudioConcatRobot" | "AudioMergeRobot" | "AudioArtworkRobot" | "ImageFacedetectRobot" | "ImageDescribeRobot" | "ImageOcrRobot" | "ImageBgremoveRobot" | "ImageGenerateRobot" | "DocumentOcrRobot" | "SpeechTranscribeRobot" | "VideoThumbsRobot" | "FileVirusscanRobot" | "ImageOptimizeRobot" | "FileCompressRobot" | "MetaReadRobot" | "FileDecompressRobot" | "MetaWriteRobot" | "DocumentThumbsRobot" | "DocumentConvertRobot" | "DocumentMergeRobot" | "DocumentSplitRobot" | "DocumentAutorotateRobot" | "HtmlConvertRobot" | "ImageResizeRobot" | "ImageMergeRobot" | "S3ImportRobot" | "S3StoreRobot" | "DigitalOceanImportRobot" | "DigitalOceanStoreRobot" | "BackblazeImportRobot" | "BackblazeStoreRobot" | "MinioImportRobot" | "TigrisImportRobot" | "CloudflareImportRobot" | "SupabaseImportRobot" | "MinioStoreRobot" | "TigrisStoreRobot" | "CloudflareStoreRobot" | "SupabaseStoreRobot" | "WasabiImportRobot" | "WasabiStoreRobot" | "SwiftImportRobot" | "SwiftStoreRobot" | "GoogleImportRobot" | "GoogleStoreRobot" | "DropboxImportRobot" | "DropboxStoreRobot" | "HttpImportRobot" | "SftpImportRobot" | "SftpStoreRobot" | "FtpImportRobot" | "FtpStoreRobot" | "CloudfilesImportRobot" | "CloudfilesStoreRobot" | "AzureImportRobot" | "AzureStoreRobot" | "YoutubeStoreRobot" | "VimeoImportRobot" | "VimeoStoreRobot" | "AssemblySavejsonRobot" | "ScriptRunRobot" | "FileHashRobot" | "FileReadRobot" | "VideoOndemandRobot" | "FileFilterRobot" | "TextSpeakRobot" | "TextTranslateRobot" | "FilePreviewRobot" | "TusStoreRobot" | "ProgressSimulateRobot";
|
|
73087
|
+
name: "AiChatRobot" | "UploadHandleRobot" | "FileServeRobot" | "FileWatermarkRobot" | "FileVerifyRobot" | "EdglyDeliverRobot" | "TlcdnDeliverRobot" | "VideoSubtitleRobot" | "VideoEncodeRobot" | "VideoAdaptiveRobot" | "VideoMergeRobot" | "VideoConcatRobot" | "AudioWaveformRobot" | "AudioEncodeRobot" | "AudioLoopRobot" | "AudioConcatRobot" | "AudioMergeRobot" | "AudioArtworkRobot" | "ImageFacedetectRobot" | "ImageDescribeRobot" | "ImageOcrRobot" | "ImageBgremoveRobot" | "ImageGenerateRobot" | "DocumentOcrRobot" | "SpeechTranscribeRobot" | "VideoThumbsRobot" | "FileVirusscanRobot" | "ImageOptimizeRobot" | "FileCompressRobot" | "MetaReadRobot" | "FileDecompressRobot" | "MetaWriteRobot" | "DocumentThumbsRobot" | "DocumentConvertRobot" | "DocumentMergeRobot" | "DocumentSplitRobot" | "DocumentOptimizeRobot" | "DocumentAutorotateRobot" | "HtmlConvertRobot" | "ImageResizeRobot" | "ImageMergeRobot" | "S3ImportRobot" | "S3StoreRobot" | "DigitalOceanImportRobot" | "DigitalOceanStoreRobot" | "BackblazeImportRobot" | "BackblazeStoreRobot" | "MinioImportRobot" | "TigrisImportRobot" | "CloudflareImportRobot" | "SupabaseImportRobot" | "MinioStoreRobot" | "TigrisStoreRobot" | "CloudflareStoreRobot" | "SupabaseStoreRobot" | "WasabiImportRobot" | "WasabiStoreRobot" | "SwiftImportRobot" | "SwiftStoreRobot" | "GoogleImportRobot" | "GoogleStoreRobot" | "DropboxImportRobot" | "DropboxStoreRobot" | "HttpImportRobot" | "SftpImportRobot" | "SftpStoreRobot" | "FtpImportRobot" | "FtpStoreRobot" | "CloudfilesImportRobot" | "CloudfilesStoreRobot" | "AzureImportRobot" | "AzureStoreRobot" | "YoutubeStoreRobot" | "VimeoImportRobot" | "VimeoStoreRobot" | "AssemblySavejsonRobot" | "ScriptRunRobot" | "FileHashRobot" | "FileReadRobot" | "VideoOndemandRobot" | "FileFilterRobot" | "TextSpeakRobot" | "TextTranslateRobot" | "FilePreviewRobot" | "TusStoreRobot" | "ProgressSimulateRobot";
|
|
72616
73088
|
priceFactor: number;
|
|
72617
73089
|
queueSlotCount: number;
|
|
72618
73090
|
isAllowedForUrlTransform: boolean;
|
|
@@ -72666,7 +73138,7 @@ export declare const robotsMeta: {
|
|
|
72666
73138
|
uses_tools?: ("ffmpeg" | "imagemagick")[] | undefined;
|
|
72667
73139
|
};
|
|
72668
73140
|
digitaloceanImportMeta: {
|
|
72669
|
-
name: "AiChatRobot" | "UploadHandleRobot" | "FileServeRobot" | "FileWatermarkRobot" | "FileVerifyRobot" | "EdglyDeliverRobot" | "TlcdnDeliverRobot" | "VideoSubtitleRobot" | "VideoEncodeRobot" | "VideoAdaptiveRobot" | "VideoMergeRobot" | "VideoConcatRobot" | "AudioWaveformRobot" | "AudioEncodeRobot" | "AudioLoopRobot" | "AudioConcatRobot" | "AudioMergeRobot" | "AudioArtworkRobot" | "ImageFacedetectRobot" | "ImageDescribeRobot" | "ImageOcrRobot" | "ImageBgremoveRobot" | "ImageGenerateRobot" | "DocumentOcrRobot" | "SpeechTranscribeRobot" | "VideoThumbsRobot" | "FileVirusscanRobot" | "ImageOptimizeRobot" | "FileCompressRobot" | "MetaReadRobot" | "FileDecompressRobot" | "MetaWriteRobot" | "DocumentThumbsRobot" | "DocumentConvertRobot" | "DocumentMergeRobot" | "DocumentSplitRobot" | "DocumentAutorotateRobot" | "HtmlConvertRobot" | "ImageResizeRobot" | "ImageMergeRobot" | "S3ImportRobot" | "S3StoreRobot" | "DigitalOceanImportRobot" | "DigitalOceanStoreRobot" | "BackblazeImportRobot" | "BackblazeStoreRobot" | "MinioImportRobot" | "TigrisImportRobot" | "CloudflareImportRobot" | "SupabaseImportRobot" | "MinioStoreRobot" | "TigrisStoreRobot" | "CloudflareStoreRobot" | "SupabaseStoreRobot" | "WasabiImportRobot" | "WasabiStoreRobot" | "SwiftImportRobot" | "SwiftStoreRobot" | "GoogleImportRobot" | "GoogleStoreRobot" | "DropboxImportRobot" | "DropboxStoreRobot" | "HttpImportRobot" | "SftpImportRobot" | "SftpStoreRobot" | "FtpImportRobot" | "FtpStoreRobot" | "CloudfilesImportRobot" | "CloudfilesStoreRobot" | "AzureImportRobot" | "AzureStoreRobot" | "YoutubeStoreRobot" | "VimeoImportRobot" | "VimeoStoreRobot" | "AssemblySavejsonRobot" | "ScriptRunRobot" | "FileHashRobot" | "FileReadRobot" | "VideoOndemandRobot" | "FileFilterRobot" | "TextSpeakRobot" | "TextTranslateRobot" | "FilePreviewRobot" | "TusStoreRobot" | "ProgressSimulateRobot";
|
|
73141
|
+
name: "AiChatRobot" | "UploadHandleRobot" | "FileServeRobot" | "FileWatermarkRobot" | "FileVerifyRobot" | "EdglyDeliverRobot" | "TlcdnDeliverRobot" | "VideoSubtitleRobot" | "VideoEncodeRobot" | "VideoAdaptiveRobot" | "VideoMergeRobot" | "VideoConcatRobot" | "AudioWaveformRobot" | "AudioEncodeRobot" | "AudioLoopRobot" | "AudioConcatRobot" | "AudioMergeRobot" | "AudioArtworkRobot" | "ImageFacedetectRobot" | "ImageDescribeRobot" | "ImageOcrRobot" | "ImageBgremoveRobot" | "ImageGenerateRobot" | "DocumentOcrRobot" | "SpeechTranscribeRobot" | "VideoThumbsRobot" | "FileVirusscanRobot" | "ImageOptimizeRobot" | "FileCompressRobot" | "MetaReadRobot" | "FileDecompressRobot" | "MetaWriteRobot" | "DocumentThumbsRobot" | "DocumentConvertRobot" | "DocumentMergeRobot" | "DocumentSplitRobot" | "DocumentOptimizeRobot" | "DocumentAutorotateRobot" | "HtmlConvertRobot" | "ImageResizeRobot" | "ImageMergeRobot" | "S3ImportRobot" | "S3StoreRobot" | "DigitalOceanImportRobot" | "DigitalOceanStoreRobot" | "BackblazeImportRobot" | "BackblazeStoreRobot" | "MinioImportRobot" | "TigrisImportRobot" | "CloudflareImportRobot" | "SupabaseImportRobot" | "MinioStoreRobot" | "TigrisStoreRobot" | "CloudflareStoreRobot" | "SupabaseStoreRobot" | "WasabiImportRobot" | "WasabiStoreRobot" | "SwiftImportRobot" | "SwiftStoreRobot" | "GoogleImportRobot" | "GoogleStoreRobot" | "DropboxImportRobot" | "DropboxStoreRobot" | "HttpImportRobot" | "SftpImportRobot" | "SftpStoreRobot" | "FtpImportRobot" | "FtpStoreRobot" | "CloudfilesImportRobot" | "CloudfilesStoreRobot" | "AzureImportRobot" | "AzureStoreRobot" | "YoutubeStoreRobot" | "VimeoImportRobot" | "VimeoStoreRobot" | "AssemblySavejsonRobot" | "ScriptRunRobot" | "FileHashRobot" | "FileReadRobot" | "VideoOndemandRobot" | "FileFilterRobot" | "TextSpeakRobot" | "TextTranslateRobot" | "FilePreviewRobot" | "TusStoreRobot" | "ProgressSimulateRobot";
|
|
72670
73142
|
priceFactor: number;
|
|
72671
73143
|
queueSlotCount: number;
|
|
72672
73144
|
isAllowedForUrlTransform: boolean;
|
|
@@ -72720,7 +73192,7 @@ export declare const robotsMeta: {
|
|
|
72720
73192
|
uses_tools?: ("ffmpeg" | "imagemagick")[] | undefined;
|
|
72721
73193
|
};
|
|
72722
73194
|
digitaloceanStoreMeta: {
|
|
72723
|
-
name: "AiChatRobot" | "UploadHandleRobot" | "FileServeRobot" | "FileWatermarkRobot" | "FileVerifyRobot" | "EdglyDeliverRobot" | "TlcdnDeliverRobot" | "VideoSubtitleRobot" | "VideoEncodeRobot" | "VideoAdaptiveRobot" | "VideoMergeRobot" | "VideoConcatRobot" | "AudioWaveformRobot" | "AudioEncodeRobot" | "AudioLoopRobot" | "AudioConcatRobot" | "AudioMergeRobot" | "AudioArtworkRobot" | "ImageFacedetectRobot" | "ImageDescribeRobot" | "ImageOcrRobot" | "ImageBgremoveRobot" | "ImageGenerateRobot" | "DocumentOcrRobot" | "SpeechTranscribeRobot" | "VideoThumbsRobot" | "FileVirusscanRobot" | "ImageOptimizeRobot" | "FileCompressRobot" | "MetaReadRobot" | "FileDecompressRobot" | "MetaWriteRobot" | "DocumentThumbsRobot" | "DocumentConvertRobot" | "DocumentMergeRobot" | "DocumentSplitRobot" | "DocumentAutorotateRobot" | "HtmlConvertRobot" | "ImageResizeRobot" | "ImageMergeRobot" | "S3ImportRobot" | "S3StoreRobot" | "DigitalOceanImportRobot" | "DigitalOceanStoreRobot" | "BackblazeImportRobot" | "BackblazeStoreRobot" | "MinioImportRobot" | "TigrisImportRobot" | "CloudflareImportRobot" | "SupabaseImportRobot" | "MinioStoreRobot" | "TigrisStoreRobot" | "CloudflareStoreRobot" | "SupabaseStoreRobot" | "WasabiImportRobot" | "WasabiStoreRobot" | "SwiftImportRobot" | "SwiftStoreRobot" | "GoogleImportRobot" | "GoogleStoreRobot" | "DropboxImportRobot" | "DropboxStoreRobot" | "HttpImportRobot" | "SftpImportRobot" | "SftpStoreRobot" | "FtpImportRobot" | "FtpStoreRobot" | "CloudfilesImportRobot" | "CloudfilesStoreRobot" | "AzureImportRobot" | "AzureStoreRobot" | "YoutubeStoreRobot" | "VimeoImportRobot" | "VimeoStoreRobot" | "AssemblySavejsonRobot" | "ScriptRunRobot" | "FileHashRobot" | "FileReadRobot" | "VideoOndemandRobot" | "FileFilterRobot" | "TextSpeakRobot" | "TextTranslateRobot" | "FilePreviewRobot" | "TusStoreRobot" | "ProgressSimulateRobot";
|
|
73195
|
+
name: "AiChatRobot" | "UploadHandleRobot" | "FileServeRobot" | "FileWatermarkRobot" | "FileVerifyRobot" | "EdglyDeliverRobot" | "TlcdnDeliverRobot" | "VideoSubtitleRobot" | "VideoEncodeRobot" | "VideoAdaptiveRobot" | "VideoMergeRobot" | "VideoConcatRobot" | "AudioWaveformRobot" | "AudioEncodeRobot" | "AudioLoopRobot" | "AudioConcatRobot" | "AudioMergeRobot" | "AudioArtworkRobot" | "ImageFacedetectRobot" | "ImageDescribeRobot" | "ImageOcrRobot" | "ImageBgremoveRobot" | "ImageGenerateRobot" | "DocumentOcrRobot" | "SpeechTranscribeRobot" | "VideoThumbsRobot" | "FileVirusscanRobot" | "ImageOptimizeRobot" | "FileCompressRobot" | "MetaReadRobot" | "FileDecompressRobot" | "MetaWriteRobot" | "DocumentThumbsRobot" | "DocumentConvertRobot" | "DocumentMergeRobot" | "DocumentSplitRobot" | "DocumentOptimizeRobot" | "DocumentAutorotateRobot" | "HtmlConvertRobot" | "ImageResizeRobot" | "ImageMergeRobot" | "S3ImportRobot" | "S3StoreRobot" | "DigitalOceanImportRobot" | "DigitalOceanStoreRobot" | "BackblazeImportRobot" | "BackblazeStoreRobot" | "MinioImportRobot" | "TigrisImportRobot" | "CloudflareImportRobot" | "SupabaseImportRobot" | "MinioStoreRobot" | "TigrisStoreRobot" | "CloudflareStoreRobot" | "SupabaseStoreRobot" | "WasabiImportRobot" | "WasabiStoreRobot" | "SwiftImportRobot" | "SwiftStoreRobot" | "GoogleImportRobot" | "GoogleStoreRobot" | "DropboxImportRobot" | "DropboxStoreRobot" | "HttpImportRobot" | "SftpImportRobot" | "SftpStoreRobot" | "FtpImportRobot" | "FtpStoreRobot" | "CloudfilesImportRobot" | "CloudfilesStoreRobot" | "AzureImportRobot" | "AzureStoreRobot" | "YoutubeStoreRobot" | "VimeoImportRobot" | "VimeoStoreRobot" | "AssemblySavejsonRobot" | "ScriptRunRobot" | "FileHashRobot" | "FileReadRobot" | "VideoOndemandRobot" | "FileFilterRobot" | "TextSpeakRobot" | "TextTranslateRobot" | "FilePreviewRobot" | "TusStoreRobot" | "ProgressSimulateRobot";
|
|
72724
73196
|
priceFactor: number;
|
|
72725
73197
|
queueSlotCount: number;
|
|
72726
73198
|
isAllowedForUrlTransform: boolean;
|
|
@@ -72774,7 +73246,7 @@ export declare const robotsMeta: {
|
|
|
72774
73246
|
uses_tools?: ("ffmpeg" | "imagemagick")[] | undefined;
|
|
72775
73247
|
};
|
|
72776
73248
|
documentAutorotateMeta: {
|
|
72777
|
-
name: "AiChatRobot" | "UploadHandleRobot" | "FileServeRobot" | "FileWatermarkRobot" | "FileVerifyRobot" | "EdglyDeliverRobot" | "TlcdnDeliverRobot" | "VideoSubtitleRobot" | "VideoEncodeRobot" | "VideoAdaptiveRobot" | "VideoMergeRobot" | "VideoConcatRobot" | "AudioWaveformRobot" | "AudioEncodeRobot" | "AudioLoopRobot" | "AudioConcatRobot" | "AudioMergeRobot" | "AudioArtworkRobot" | "ImageFacedetectRobot" | "ImageDescribeRobot" | "ImageOcrRobot" | "ImageBgremoveRobot" | "ImageGenerateRobot" | "DocumentOcrRobot" | "SpeechTranscribeRobot" | "VideoThumbsRobot" | "FileVirusscanRobot" | "ImageOptimizeRobot" | "FileCompressRobot" | "MetaReadRobot" | "FileDecompressRobot" | "MetaWriteRobot" | "DocumentThumbsRobot" | "DocumentConvertRobot" | "DocumentMergeRobot" | "DocumentSplitRobot" | "DocumentAutorotateRobot" | "HtmlConvertRobot" | "ImageResizeRobot" | "ImageMergeRobot" | "S3ImportRobot" | "S3StoreRobot" | "DigitalOceanImportRobot" | "DigitalOceanStoreRobot" | "BackblazeImportRobot" | "BackblazeStoreRobot" | "MinioImportRobot" | "TigrisImportRobot" | "CloudflareImportRobot" | "SupabaseImportRobot" | "MinioStoreRobot" | "TigrisStoreRobot" | "CloudflareStoreRobot" | "SupabaseStoreRobot" | "WasabiImportRobot" | "WasabiStoreRobot" | "SwiftImportRobot" | "SwiftStoreRobot" | "GoogleImportRobot" | "GoogleStoreRobot" | "DropboxImportRobot" | "DropboxStoreRobot" | "HttpImportRobot" | "SftpImportRobot" | "SftpStoreRobot" | "FtpImportRobot" | "FtpStoreRobot" | "CloudfilesImportRobot" | "CloudfilesStoreRobot" | "AzureImportRobot" | "AzureStoreRobot" | "YoutubeStoreRobot" | "VimeoImportRobot" | "VimeoStoreRobot" | "AssemblySavejsonRobot" | "ScriptRunRobot" | "FileHashRobot" | "FileReadRobot" | "VideoOndemandRobot" | "FileFilterRobot" | "TextSpeakRobot" | "TextTranslateRobot" | "FilePreviewRobot" | "TusStoreRobot" | "ProgressSimulateRobot";
|
|
73249
|
+
name: "AiChatRobot" | "UploadHandleRobot" | "FileServeRobot" | "FileWatermarkRobot" | "FileVerifyRobot" | "EdglyDeliverRobot" | "TlcdnDeliverRobot" | "VideoSubtitleRobot" | "VideoEncodeRobot" | "VideoAdaptiveRobot" | "VideoMergeRobot" | "VideoConcatRobot" | "AudioWaveformRobot" | "AudioEncodeRobot" | "AudioLoopRobot" | "AudioConcatRobot" | "AudioMergeRobot" | "AudioArtworkRobot" | "ImageFacedetectRobot" | "ImageDescribeRobot" | "ImageOcrRobot" | "ImageBgremoveRobot" | "ImageGenerateRobot" | "DocumentOcrRobot" | "SpeechTranscribeRobot" | "VideoThumbsRobot" | "FileVirusscanRobot" | "ImageOptimizeRobot" | "FileCompressRobot" | "MetaReadRobot" | "FileDecompressRobot" | "MetaWriteRobot" | "DocumentThumbsRobot" | "DocumentConvertRobot" | "DocumentMergeRobot" | "DocumentSplitRobot" | "DocumentOptimizeRobot" | "DocumentAutorotateRobot" | "HtmlConvertRobot" | "ImageResizeRobot" | "ImageMergeRobot" | "S3ImportRobot" | "S3StoreRobot" | "DigitalOceanImportRobot" | "DigitalOceanStoreRobot" | "BackblazeImportRobot" | "BackblazeStoreRobot" | "MinioImportRobot" | "TigrisImportRobot" | "CloudflareImportRobot" | "SupabaseImportRobot" | "MinioStoreRobot" | "TigrisStoreRobot" | "CloudflareStoreRobot" | "SupabaseStoreRobot" | "WasabiImportRobot" | "WasabiStoreRobot" | "SwiftImportRobot" | "SwiftStoreRobot" | "GoogleImportRobot" | "GoogleStoreRobot" | "DropboxImportRobot" | "DropboxStoreRobot" | "HttpImportRobot" | "SftpImportRobot" | "SftpStoreRobot" | "FtpImportRobot" | "FtpStoreRobot" | "CloudfilesImportRobot" | "CloudfilesStoreRobot" | "AzureImportRobot" | "AzureStoreRobot" | "YoutubeStoreRobot" | "VimeoImportRobot" | "VimeoStoreRobot" | "AssemblySavejsonRobot" | "ScriptRunRobot" | "FileHashRobot" | "FileReadRobot" | "VideoOndemandRobot" | "FileFilterRobot" | "TextSpeakRobot" | "TextTranslateRobot" | "FilePreviewRobot" | "TusStoreRobot" | "ProgressSimulateRobot";
|
|
72778
73250
|
priceFactor: number;
|
|
72779
73251
|
queueSlotCount: number;
|
|
72780
73252
|
isAllowedForUrlTransform: boolean;
|
|
@@ -72828,7 +73300,7 @@ export declare const robotsMeta: {
|
|
|
72828
73300
|
uses_tools?: ("ffmpeg" | "imagemagick")[] | undefined;
|
|
72829
73301
|
};
|
|
72830
73302
|
documentConvertMeta: {
|
|
72831
|
-
name: "AiChatRobot" | "UploadHandleRobot" | "FileServeRobot" | "FileWatermarkRobot" | "FileVerifyRobot" | "EdglyDeliverRobot" | "TlcdnDeliverRobot" | "VideoSubtitleRobot" | "VideoEncodeRobot" | "VideoAdaptiveRobot" | "VideoMergeRobot" | "VideoConcatRobot" | "AudioWaveformRobot" | "AudioEncodeRobot" | "AudioLoopRobot" | "AudioConcatRobot" | "AudioMergeRobot" | "AudioArtworkRobot" | "ImageFacedetectRobot" | "ImageDescribeRobot" | "ImageOcrRobot" | "ImageBgremoveRobot" | "ImageGenerateRobot" | "DocumentOcrRobot" | "SpeechTranscribeRobot" | "VideoThumbsRobot" | "FileVirusscanRobot" | "ImageOptimizeRobot" | "FileCompressRobot" | "MetaReadRobot" | "FileDecompressRobot" | "MetaWriteRobot" | "DocumentThumbsRobot" | "DocumentConvertRobot" | "DocumentMergeRobot" | "DocumentSplitRobot" | "DocumentAutorotateRobot" | "HtmlConvertRobot" | "ImageResizeRobot" | "ImageMergeRobot" | "S3ImportRobot" | "S3StoreRobot" | "DigitalOceanImportRobot" | "DigitalOceanStoreRobot" | "BackblazeImportRobot" | "BackblazeStoreRobot" | "MinioImportRobot" | "TigrisImportRobot" | "CloudflareImportRobot" | "SupabaseImportRobot" | "MinioStoreRobot" | "TigrisStoreRobot" | "CloudflareStoreRobot" | "SupabaseStoreRobot" | "WasabiImportRobot" | "WasabiStoreRobot" | "SwiftImportRobot" | "SwiftStoreRobot" | "GoogleImportRobot" | "GoogleStoreRobot" | "DropboxImportRobot" | "DropboxStoreRobot" | "HttpImportRobot" | "SftpImportRobot" | "SftpStoreRobot" | "FtpImportRobot" | "FtpStoreRobot" | "CloudfilesImportRobot" | "CloudfilesStoreRobot" | "AzureImportRobot" | "AzureStoreRobot" | "YoutubeStoreRobot" | "VimeoImportRobot" | "VimeoStoreRobot" | "AssemblySavejsonRobot" | "ScriptRunRobot" | "FileHashRobot" | "FileReadRobot" | "VideoOndemandRobot" | "FileFilterRobot" | "TextSpeakRobot" | "TextTranslateRobot" | "FilePreviewRobot" | "TusStoreRobot" | "ProgressSimulateRobot";
|
|
73303
|
+
name: "AiChatRobot" | "UploadHandleRobot" | "FileServeRobot" | "FileWatermarkRobot" | "FileVerifyRobot" | "EdglyDeliverRobot" | "TlcdnDeliverRobot" | "VideoSubtitleRobot" | "VideoEncodeRobot" | "VideoAdaptiveRobot" | "VideoMergeRobot" | "VideoConcatRobot" | "AudioWaveformRobot" | "AudioEncodeRobot" | "AudioLoopRobot" | "AudioConcatRobot" | "AudioMergeRobot" | "AudioArtworkRobot" | "ImageFacedetectRobot" | "ImageDescribeRobot" | "ImageOcrRobot" | "ImageBgremoveRobot" | "ImageGenerateRobot" | "DocumentOcrRobot" | "SpeechTranscribeRobot" | "VideoThumbsRobot" | "FileVirusscanRobot" | "ImageOptimizeRobot" | "FileCompressRobot" | "MetaReadRobot" | "FileDecompressRobot" | "MetaWriteRobot" | "DocumentThumbsRobot" | "DocumentConvertRobot" | "DocumentMergeRobot" | "DocumentSplitRobot" | "DocumentOptimizeRobot" | "DocumentAutorotateRobot" | "HtmlConvertRobot" | "ImageResizeRobot" | "ImageMergeRobot" | "S3ImportRobot" | "S3StoreRobot" | "DigitalOceanImportRobot" | "DigitalOceanStoreRobot" | "BackblazeImportRobot" | "BackblazeStoreRobot" | "MinioImportRobot" | "TigrisImportRobot" | "CloudflareImportRobot" | "SupabaseImportRobot" | "MinioStoreRobot" | "TigrisStoreRobot" | "CloudflareStoreRobot" | "SupabaseStoreRobot" | "WasabiImportRobot" | "WasabiStoreRobot" | "SwiftImportRobot" | "SwiftStoreRobot" | "GoogleImportRobot" | "GoogleStoreRobot" | "DropboxImportRobot" | "DropboxStoreRobot" | "HttpImportRobot" | "SftpImportRobot" | "SftpStoreRobot" | "FtpImportRobot" | "FtpStoreRobot" | "CloudfilesImportRobot" | "CloudfilesStoreRobot" | "AzureImportRobot" | "AzureStoreRobot" | "YoutubeStoreRobot" | "VimeoImportRobot" | "VimeoStoreRobot" | "AssemblySavejsonRobot" | "ScriptRunRobot" | "FileHashRobot" | "FileReadRobot" | "VideoOndemandRobot" | "FileFilterRobot" | "TextSpeakRobot" | "TextTranslateRobot" | "FilePreviewRobot" | "TusStoreRobot" | "ProgressSimulateRobot";
|
|
72832
73304
|
priceFactor: number;
|
|
72833
73305
|
queueSlotCount: number;
|
|
72834
73306
|
isAllowedForUrlTransform: boolean;
|
|
@@ -72882,7 +73354,7 @@ export declare const robotsMeta: {
|
|
|
72882
73354
|
uses_tools?: ("ffmpeg" | "imagemagick")[] | undefined;
|
|
72883
73355
|
};
|
|
72884
73356
|
documentMergeMeta: {
|
|
72885
|
-
name: "AiChatRobot" | "UploadHandleRobot" | "FileServeRobot" | "FileWatermarkRobot" | "FileVerifyRobot" | "EdglyDeliverRobot" | "TlcdnDeliverRobot" | "VideoSubtitleRobot" | "VideoEncodeRobot" | "VideoAdaptiveRobot" | "VideoMergeRobot" | "VideoConcatRobot" | "AudioWaveformRobot" | "AudioEncodeRobot" | "AudioLoopRobot" | "AudioConcatRobot" | "AudioMergeRobot" | "AudioArtworkRobot" | "ImageFacedetectRobot" | "ImageDescribeRobot" | "ImageOcrRobot" | "ImageBgremoveRobot" | "ImageGenerateRobot" | "DocumentOcrRobot" | "SpeechTranscribeRobot" | "VideoThumbsRobot" | "FileVirusscanRobot" | "ImageOptimizeRobot" | "FileCompressRobot" | "MetaReadRobot" | "FileDecompressRobot" | "MetaWriteRobot" | "DocumentThumbsRobot" | "DocumentConvertRobot" | "DocumentMergeRobot" | "DocumentSplitRobot" | "DocumentAutorotateRobot" | "HtmlConvertRobot" | "ImageResizeRobot" | "ImageMergeRobot" | "S3ImportRobot" | "S3StoreRobot" | "DigitalOceanImportRobot" | "DigitalOceanStoreRobot" | "BackblazeImportRobot" | "BackblazeStoreRobot" | "MinioImportRobot" | "TigrisImportRobot" | "CloudflareImportRobot" | "SupabaseImportRobot" | "MinioStoreRobot" | "TigrisStoreRobot" | "CloudflareStoreRobot" | "SupabaseStoreRobot" | "WasabiImportRobot" | "WasabiStoreRobot" | "SwiftImportRobot" | "SwiftStoreRobot" | "GoogleImportRobot" | "GoogleStoreRobot" | "DropboxImportRobot" | "DropboxStoreRobot" | "HttpImportRobot" | "SftpImportRobot" | "SftpStoreRobot" | "FtpImportRobot" | "FtpStoreRobot" | "CloudfilesImportRobot" | "CloudfilesStoreRobot" | "AzureImportRobot" | "AzureStoreRobot" | "YoutubeStoreRobot" | "VimeoImportRobot" | "VimeoStoreRobot" | "AssemblySavejsonRobot" | "ScriptRunRobot" | "FileHashRobot" | "FileReadRobot" | "VideoOndemandRobot" | "FileFilterRobot" | "TextSpeakRobot" | "TextTranslateRobot" | "FilePreviewRobot" | "TusStoreRobot" | "ProgressSimulateRobot";
|
|
73357
|
+
name: "AiChatRobot" | "UploadHandleRobot" | "FileServeRobot" | "FileWatermarkRobot" | "FileVerifyRobot" | "EdglyDeliverRobot" | "TlcdnDeliverRobot" | "VideoSubtitleRobot" | "VideoEncodeRobot" | "VideoAdaptiveRobot" | "VideoMergeRobot" | "VideoConcatRobot" | "AudioWaveformRobot" | "AudioEncodeRobot" | "AudioLoopRobot" | "AudioConcatRobot" | "AudioMergeRobot" | "AudioArtworkRobot" | "ImageFacedetectRobot" | "ImageDescribeRobot" | "ImageOcrRobot" | "ImageBgremoveRobot" | "ImageGenerateRobot" | "DocumentOcrRobot" | "SpeechTranscribeRobot" | "VideoThumbsRobot" | "FileVirusscanRobot" | "ImageOptimizeRobot" | "FileCompressRobot" | "MetaReadRobot" | "FileDecompressRobot" | "MetaWriteRobot" | "DocumentThumbsRobot" | "DocumentConvertRobot" | "DocumentMergeRobot" | "DocumentSplitRobot" | "DocumentOptimizeRobot" | "DocumentAutorotateRobot" | "HtmlConvertRobot" | "ImageResizeRobot" | "ImageMergeRobot" | "S3ImportRobot" | "S3StoreRobot" | "DigitalOceanImportRobot" | "DigitalOceanStoreRobot" | "BackblazeImportRobot" | "BackblazeStoreRobot" | "MinioImportRobot" | "TigrisImportRobot" | "CloudflareImportRobot" | "SupabaseImportRobot" | "MinioStoreRobot" | "TigrisStoreRobot" | "CloudflareStoreRobot" | "SupabaseStoreRobot" | "WasabiImportRobot" | "WasabiStoreRobot" | "SwiftImportRobot" | "SwiftStoreRobot" | "GoogleImportRobot" | "GoogleStoreRobot" | "DropboxImportRobot" | "DropboxStoreRobot" | "HttpImportRobot" | "SftpImportRobot" | "SftpStoreRobot" | "FtpImportRobot" | "FtpStoreRobot" | "CloudfilesImportRobot" | "CloudfilesStoreRobot" | "AzureImportRobot" | "AzureStoreRobot" | "YoutubeStoreRobot" | "VimeoImportRobot" | "VimeoStoreRobot" | "AssemblySavejsonRobot" | "ScriptRunRobot" | "FileHashRobot" | "FileReadRobot" | "VideoOndemandRobot" | "FileFilterRobot" | "TextSpeakRobot" | "TextTranslateRobot" | "FilePreviewRobot" | "TusStoreRobot" | "ProgressSimulateRobot";
|
|
72886
73358
|
priceFactor: number;
|
|
72887
73359
|
queueSlotCount: number;
|
|
72888
73360
|
isAllowedForUrlTransform: boolean;
|
|
@@ -72936,7 +73408,61 @@ export declare const robotsMeta: {
|
|
|
72936
73408
|
uses_tools?: ("ffmpeg" | "imagemagick")[] | undefined;
|
|
72937
73409
|
};
|
|
72938
73410
|
documentOcrMeta: {
|
|
72939
|
-
name: "AiChatRobot" | "UploadHandleRobot" | "FileServeRobot" | "FileWatermarkRobot" | "FileVerifyRobot" | "EdglyDeliverRobot" | "TlcdnDeliverRobot" | "VideoSubtitleRobot" | "VideoEncodeRobot" | "VideoAdaptiveRobot" | "VideoMergeRobot" | "VideoConcatRobot" | "AudioWaveformRobot" | "AudioEncodeRobot" | "AudioLoopRobot" | "AudioConcatRobot" | "AudioMergeRobot" | "AudioArtworkRobot" | "ImageFacedetectRobot" | "ImageDescribeRobot" | "ImageOcrRobot" | "ImageBgremoveRobot" | "ImageGenerateRobot" | "DocumentOcrRobot" | "SpeechTranscribeRobot" | "VideoThumbsRobot" | "FileVirusscanRobot" | "ImageOptimizeRobot" | "FileCompressRobot" | "MetaReadRobot" | "FileDecompressRobot" | "MetaWriteRobot" | "DocumentThumbsRobot" | "DocumentConvertRobot" | "DocumentMergeRobot" | "DocumentSplitRobot" | "DocumentAutorotateRobot" | "HtmlConvertRobot" | "ImageResizeRobot" | "ImageMergeRobot" | "S3ImportRobot" | "S3StoreRobot" | "DigitalOceanImportRobot" | "DigitalOceanStoreRobot" | "BackblazeImportRobot" | "BackblazeStoreRobot" | "MinioImportRobot" | "TigrisImportRobot" | "CloudflareImportRobot" | "SupabaseImportRobot" | "MinioStoreRobot" | "TigrisStoreRobot" | "CloudflareStoreRobot" | "SupabaseStoreRobot" | "WasabiImportRobot" | "WasabiStoreRobot" | "SwiftImportRobot" | "SwiftStoreRobot" | "GoogleImportRobot" | "GoogleStoreRobot" | "DropboxImportRobot" | "DropboxStoreRobot" | "HttpImportRobot" | "SftpImportRobot" | "SftpStoreRobot" | "FtpImportRobot" | "FtpStoreRobot" | "CloudfilesImportRobot" | "CloudfilesStoreRobot" | "AzureImportRobot" | "AzureStoreRobot" | "YoutubeStoreRobot" | "VimeoImportRobot" | "VimeoStoreRobot" | "AssemblySavejsonRobot" | "ScriptRunRobot" | "FileHashRobot" | "FileReadRobot" | "VideoOndemandRobot" | "FileFilterRobot" | "TextSpeakRobot" | "TextTranslateRobot" | "FilePreviewRobot" | "TusStoreRobot" | "ProgressSimulateRobot";
|
|
73411
|
+
name: "AiChatRobot" | "UploadHandleRobot" | "FileServeRobot" | "FileWatermarkRobot" | "FileVerifyRobot" | "EdglyDeliverRobot" | "TlcdnDeliverRobot" | "VideoSubtitleRobot" | "VideoEncodeRobot" | "VideoAdaptiveRobot" | "VideoMergeRobot" | "VideoConcatRobot" | "AudioWaveformRobot" | "AudioEncodeRobot" | "AudioLoopRobot" | "AudioConcatRobot" | "AudioMergeRobot" | "AudioArtworkRobot" | "ImageFacedetectRobot" | "ImageDescribeRobot" | "ImageOcrRobot" | "ImageBgremoveRobot" | "ImageGenerateRobot" | "DocumentOcrRobot" | "SpeechTranscribeRobot" | "VideoThumbsRobot" | "FileVirusscanRobot" | "ImageOptimizeRobot" | "FileCompressRobot" | "MetaReadRobot" | "FileDecompressRobot" | "MetaWriteRobot" | "DocumentThumbsRobot" | "DocumentConvertRobot" | "DocumentMergeRobot" | "DocumentSplitRobot" | "DocumentOptimizeRobot" | "DocumentAutorotateRobot" | "HtmlConvertRobot" | "ImageResizeRobot" | "ImageMergeRobot" | "S3ImportRobot" | "S3StoreRobot" | "DigitalOceanImportRobot" | "DigitalOceanStoreRobot" | "BackblazeImportRobot" | "BackblazeStoreRobot" | "MinioImportRobot" | "TigrisImportRobot" | "CloudflareImportRobot" | "SupabaseImportRobot" | "MinioStoreRobot" | "TigrisStoreRobot" | "CloudflareStoreRobot" | "SupabaseStoreRobot" | "WasabiImportRobot" | "WasabiStoreRobot" | "SwiftImportRobot" | "SwiftStoreRobot" | "GoogleImportRobot" | "GoogleStoreRobot" | "DropboxImportRobot" | "DropboxStoreRobot" | "HttpImportRobot" | "SftpImportRobot" | "SftpStoreRobot" | "FtpImportRobot" | "FtpStoreRobot" | "CloudfilesImportRobot" | "CloudfilesStoreRobot" | "AzureImportRobot" | "AzureStoreRobot" | "YoutubeStoreRobot" | "VimeoImportRobot" | "VimeoStoreRobot" | "AssemblySavejsonRobot" | "ScriptRunRobot" | "FileHashRobot" | "FileReadRobot" | "VideoOndemandRobot" | "FileFilterRobot" | "TextSpeakRobot" | "TextTranslateRobot" | "FilePreviewRobot" | "TusStoreRobot" | "ProgressSimulateRobot";
|
|
73412
|
+
priceFactor: number;
|
|
73413
|
+
queueSlotCount: number;
|
|
73414
|
+
isAllowedForUrlTransform: boolean;
|
|
73415
|
+
removeJobResultFilesFromDiskRightAfterStoringOnS3: boolean;
|
|
73416
|
+
isInternal: boolean;
|
|
73417
|
+
stage: "alpha" | "beta" | "ga" | "deprecated" | "removed";
|
|
73418
|
+
allowed_for_url_transform: boolean;
|
|
73419
|
+
bytescount: number;
|
|
73420
|
+
discount_factor: number;
|
|
73421
|
+
discount_pct: number;
|
|
73422
|
+
minimum_charge: number;
|
|
73423
|
+
output_factor: number;
|
|
73424
|
+
purpose_sentence: string;
|
|
73425
|
+
purpose_verb: "write" | "filter" | "hash" | "read" | "take" | "verify" | "stream" | "merge" | "decompress" | "remove" | "extract" | "auto-rotate" | "cache & deliver" | "compress" | "concatenate" | "convert" | "detect" | "encode" | "export" | "generate" | "handle" | "import" | "loop" | "optimize" | "recognize" | "run" | "scan" | "serve" | "speak" | "subtitle" | "transcode" | "transcribe" | "translate";
|
|
73426
|
+
purpose_word: string;
|
|
73427
|
+
purpose_words: string;
|
|
73428
|
+
service_slug: "artificial-intelligence" | "audio-encoding" | "code-evaluation" | "content-delivery" | "document-processing" | "file-compressing" | "file-exporting" | "file-filtering" | "file-importing" | "handling-uploads" | "image-manipulation" | "media-cataloging" | "video-encoding";
|
|
73429
|
+
slot_count: number;
|
|
73430
|
+
title: string;
|
|
73431
|
+
typical_file_size_mb: number;
|
|
73432
|
+
typical_file_type: "document" | "image" | "video" | "file" | "audio file" | "audio or video file" | "webpage";
|
|
73433
|
+
description?: string | undefined;
|
|
73434
|
+
downloadInputFiles?: boolean | undefined;
|
|
73435
|
+
preserveInputFileUrls?: boolean | undefined;
|
|
73436
|
+
minimumCharge?: number | undefined;
|
|
73437
|
+
minimumChargeUsd?: number | undefined;
|
|
73438
|
+
minimumChargeUsdPerSpeechTranscribeMinute?: {
|
|
73439
|
+
aws: number;
|
|
73440
|
+
gcp: number;
|
|
73441
|
+
} | undefined;
|
|
73442
|
+
minimumChargeUsdPerDocumentOcrPage?: {
|
|
73443
|
+
aws: number;
|
|
73444
|
+
gcp: number;
|
|
73445
|
+
} | undefined;
|
|
73446
|
+
lazyLoad?: boolean | undefined;
|
|
73447
|
+
installVersionFile?: string | undefined;
|
|
73448
|
+
trackOutputFileSize?: boolean | undefined;
|
|
73449
|
+
numDaemons?: number | undefined;
|
|
73450
|
+
importRanges?: string[] | undefined;
|
|
73451
|
+
extraChargeForImageResize?: number | undefined;
|
|
73452
|
+
example_code?: any;
|
|
73453
|
+
example_code_description?: string | undefined;
|
|
73454
|
+
extended_description?: string | undefined;
|
|
73455
|
+
has_small_icon?: true | undefined;
|
|
73456
|
+
minimum_charge_usd?: number | Record<string, number> | undefined;
|
|
73457
|
+
minimum_charge_usd_note?: string | undefined;
|
|
73458
|
+
ogimage?: string | undefined;
|
|
73459
|
+
marketing_intro?: string | undefined;
|
|
73460
|
+
override_lvl1?: string | undefined;
|
|
73461
|
+
requires_credentials?: true | undefined;
|
|
73462
|
+
uses_tools?: ("ffmpeg" | "imagemagick")[] | undefined;
|
|
73463
|
+
};
|
|
73464
|
+
documentOptimizeMeta: {
|
|
73465
|
+
name: "AiChatRobot" | "UploadHandleRobot" | "FileServeRobot" | "FileWatermarkRobot" | "FileVerifyRobot" | "EdglyDeliverRobot" | "TlcdnDeliverRobot" | "VideoSubtitleRobot" | "VideoEncodeRobot" | "VideoAdaptiveRobot" | "VideoMergeRobot" | "VideoConcatRobot" | "AudioWaveformRobot" | "AudioEncodeRobot" | "AudioLoopRobot" | "AudioConcatRobot" | "AudioMergeRobot" | "AudioArtworkRobot" | "ImageFacedetectRobot" | "ImageDescribeRobot" | "ImageOcrRobot" | "ImageBgremoveRobot" | "ImageGenerateRobot" | "DocumentOcrRobot" | "SpeechTranscribeRobot" | "VideoThumbsRobot" | "FileVirusscanRobot" | "ImageOptimizeRobot" | "FileCompressRobot" | "MetaReadRobot" | "FileDecompressRobot" | "MetaWriteRobot" | "DocumentThumbsRobot" | "DocumentConvertRobot" | "DocumentMergeRobot" | "DocumentSplitRobot" | "DocumentOptimizeRobot" | "DocumentAutorotateRobot" | "HtmlConvertRobot" | "ImageResizeRobot" | "ImageMergeRobot" | "S3ImportRobot" | "S3StoreRobot" | "DigitalOceanImportRobot" | "DigitalOceanStoreRobot" | "BackblazeImportRobot" | "BackblazeStoreRobot" | "MinioImportRobot" | "TigrisImportRobot" | "CloudflareImportRobot" | "SupabaseImportRobot" | "MinioStoreRobot" | "TigrisStoreRobot" | "CloudflareStoreRobot" | "SupabaseStoreRobot" | "WasabiImportRobot" | "WasabiStoreRobot" | "SwiftImportRobot" | "SwiftStoreRobot" | "GoogleImportRobot" | "GoogleStoreRobot" | "DropboxImportRobot" | "DropboxStoreRobot" | "HttpImportRobot" | "SftpImportRobot" | "SftpStoreRobot" | "FtpImportRobot" | "FtpStoreRobot" | "CloudfilesImportRobot" | "CloudfilesStoreRobot" | "AzureImportRobot" | "AzureStoreRobot" | "YoutubeStoreRobot" | "VimeoImportRobot" | "VimeoStoreRobot" | "AssemblySavejsonRobot" | "ScriptRunRobot" | "FileHashRobot" | "FileReadRobot" | "VideoOndemandRobot" | "FileFilterRobot" | "TextSpeakRobot" | "TextTranslateRobot" | "FilePreviewRobot" | "TusStoreRobot" | "ProgressSimulateRobot";
|
|
72940
73466
|
priceFactor: number;
|
|
72941
73467
|
queueSlotCount: number;
|
|
72942
73468
|
isAllowedForUrlTransform: boolean;
|
|
@@ -72990,7 +73516,7 @@ export declare const robotsMeta: {
|
|
|
72990
73516
|
uses_tools?: ("ffmpeg" | "imagemagick")[] | undefined;
|
|
72991
73517
|
};
|
|
72992
73518
|
documentSplitMeta: {
|
|
72993
|
-
name: "AiChatRobot" | "UploadHandleRobot" | "FileServeRobot" | "FileWatermarkRobot" | "FileVerifyRobot" | "EdglyDeliverRobot" | "TlcdnDeliverRobot" | "VideoSubtitleRobot" | "VideoEncodeRobot" | "VideoAdaptiveRobot" | "VideoMergeRobot" | "VideoConcatRobot" | "AudioWaveformRobot" | "AudioEncodeRobot" | "AudioLoopRobot" | "AudioConcatRobot" | "AudioMergeRobot" | "AudioArtworkRobot" | "ImageFacedetectRobot" | "ImageDescribeRobot" | "ImageOcrRobot" | "ImageBgremoveRobot" | "ImageGenerateRobot" | "DocumentOcrRobot" | "SpeechTranscribeRobot" | "VideoThumbsRobot" | "FileVirusscanRobot" | "ImageOptimizeRobot" | "FileCompressRobot" | "MetaReadRobot" | "FileDecompressRobot" | "MetaWriteRobot" | "DocumentThumbsRobot" | "DocumentConvertRobot" | "DocumentMergeRobot" | "DocumentSplitRobot" | "DocumentAutorotateRobot" | "HtmlConvertRobot" | "ImageResizeRobot" | "ImageMergeRobot" | "S3ImportRobot" | "S3StoreRobot" | "DigitalOceanImportRobot" | "DigitalOceanStoreRobot" | "BackblazeImportRobot" | "BackblazeStoreRobot" | "MinioImportRobot" | "TigrisImportRobot" | "CloudflareImportRobot" | "SupabaseImportRobot" | "MinioStoreRobot" | "TigrisStoreRobot" | "CloudflareStoreRobot" | "SupabaseStoreRobot" | "WasabiImportRobot" | "WasabiStoreRobot" | "SwiftImportRobot" | "SwiftStoreRobot" | "GoogleImportRobot" | "GoogleStoreRobot" | "DropboxImportRobot" | "DropboxStoreRobot" | "HttpImportRobot" | "SftpImportRobot" | "SftpStoreRobot" | "FtpImportRobot" | "FtpStoreRobot" | "CloudfilesImportRobot" | "CloudfilesStoreRobot" | "AzureImportRobot" | "AzureStoreRobot" | "YoutubeStoreRobot" | "VimeoImportRobot" | "VimeoStoreRobot" | "AssemblySavejsonRobot" | "ScriptRunRobot" | "FileHashRobot" | "FileReadRobot" | "VideoOndemandRobot" | "FileFilterRobot" | "TextSpeakRobot" | "TextTranslateRobot" | "FilePreviewRobot" | "TusStoreRobot" | "ProgressSimulateRobot";
|
|
73519
|
+
name: "AiChatRobot" | "UploadHandleRobot" | "FileServeRobot" | "FileWatermarkRobot" | "FileVerifyRobot" | "EdglyDeliverRobot" | "TlcdnDeliverRobot" | "VideoSubtitleRobot" | "VideoEncodeRobot" | "VideoAdaptiveRobot" | "VideoMergeRobot" | "VideoConcatRobot" | "AudioWaveformRobot" | "AudioEncodeRobot" | "AudioLoopRobot" | "AudioConcatRobot" | "AudioMergeRobot" | "AudioArtworkRobot" | "ImageFacedetectRobot" | "ImageDescribeRobot" | "ImageOcrRobot" | "ImageBgremoveRobot" | "ImageGenerateRobot" | "DocumentOcrRobot" | "SpeechTranscribeRobot" | "VideoThumbsRobot" | "FileVirusscanRobot" | "ImageOptimizeRobot" | "FileCompressRobot" | "MetaReadRobot" | "FileDecompressRobot" | "MetaWriteRobot" | "DocumentThumbsRobot" | "DocumentConvertRobot" | "DocumentMergeRobot" | "DocumentSplitRobot" | "DocumentOptimizeRobot" | "DocumentAutorotateRobot" | "HtmlConvertRobot" | "ImageResizeRobot" | "ImageMergeRobot" | "S3ImportRobot" | "S3StoreRobot" | "DigitalOceanImportRobot" | "DigitalOceanStoreRobot" | "BackblazeImportRobot" | "BackblazeStoreRobot" | "MinioImportRobot" | "TigrisImportRobot" | "CloudflareImportRobot" | "SupabaseImportRobot" | "MinioStoreRobot" | "TigrisStoreRobot" | "CloudflareStoreRobot" | "SupabaseStoreRobot" | "WasabiImportRobot" | "WasabiStoreRobot" | "SwiftImportRobot" | "SwiftStoreRobot" | "GoogleImportRobot" | "GoogleStoreRobot" | "DropboxImportRobot" | "DropboxStoreRobot" | "HttpImportRobot" | "SftpImportRobot" | "SftpStoreRobot" | "FtpImportRobot" | "FtpStoreRobot" | "CloudfilesImportRobot" | "CloudfilesStoreRobot" | "AzureImportRobot" | "AzureStoreRobot" | "YoutubeStoreRobot" | "VimeoImportRobot" | "VimeoStoreRobot" | "AssemblySavejsonRobot" | "ScriptRunRobot" | "FileHashRobot" | "FileReadRobot" | "VideoOndemandRobot" | "FileFilterRobot" | "TextSpeakRobot" | "TextTranslateRobot" | "FilePreviewRobot" | "TusStoreRobot" | "ProgressSimulateRobot";
|
|
72994
73520
|
priceFactor: number;
|
|
72995
73521
|
queueSlotCount: number;
|
|
72996
73522
|
isAllowedForUrlTransform: boolean;
|
|
@@ -73044,7 +73570,7 @@ export declare const robotsMeta: {
|
|
|
73044
73570
|
uses_tools?: ("ffmpeg" | "imagemagick")[] | undefined;
|
|
73045
73571
|
};
|
|
73046
73572
|
documentThumbsMeta: {
|
|
73047
|
-
name: "AiChatRobot" | "UploadHandleRobot" | "FileServeRobot" | "FileWatermarkRobot" | "FileVerifyRobot" | "EdglyDeliverRobot" | "TlcdnDeliverRobot" | "VideoSubtitleRobot" | "VideoEncodeRobot" | "VideoAdaptiveRobot" | "VideoMergeRobot" | "VideoConcatRobot" | "AudioWaveformRobot" | "AudioEncodeRobot" | "AudioLoopRobot" | "AudioConcatRobot" | "AudioMergeRobot" | "AudioArtworkRobot" | "ImageFacedetectRobot" | "ImageDescribeRobot" | "ImageOcrRobot" | "ImageBgremoveRobot" | "ImageGenerateRobot" | "DocumentOcrRobot" | "SpeechTranscribeRobot" | "VideoThumbsRobot" | "FileVirusscanRobot" | "ImageOptimizeRobot" | "FileCompressRobot" | "MetaReadRobot" | "FileDecompressRobot" | "MetaWriteRobot" | "DocumentThumbsRobot" | "DocumentConvertRobot" | "DocumentMergeRobot" | "DocumentSplitRobot" | "DocumentAutorotateRobot" | "HtmlConvertRobot" | "ImageResizeRobot" | "ImageMergeRobot" | "S3ImportRobot" | "S3StoreRobot" | "DigitalOceanImportRobot" | "DigitalOceanStoreRobot" | "BackblazeImportRobot" | "BackblazeStoreRobot" | "MinioImportRobot" | "TigrisImportRobot" | "CloudflareImportRobot" | "SupabaseImportRobot" | "MinioStoreRobot" | "TigrisStoreRobot" | "CloudflareStoreRobot" | "SupabaseStoreRobot" | "WasabiImportRobot" | "WasabiStoreRobot" | "SwiftImportRobot" | "SwiftStoreRobot" | "GoogleImportRobot" | "GoogleStoreRobot" | "DropboxImportRobot" | "DropboxStoreRobot" | "HttpImportRobot" | "SftpImportRobot" | "SftpStoreRobot" | "FtpImportRobot" | "FtpStoreRobot" | "CloudfilesImportRobot" | "CloudfilesStoreRobot" | "AzureImportRobot" | "AzureStoreRobot" | "YoutubeStoreRobot" | "VimeoImportRobot" | "VimeoStoreRobot" | "AssemblySavejsonRobot" | "ScriptRunRobot" | "FileHashRobot" | "FileReadRobot" | "VideoOndemandRobot" | "FileFilterRobot" | "TextSpeakRobot" | "TextTranslateRobot" | "FilePreviewRobot" | "TusStoreRobot" | "ProgressSimulateRobot";
|
|
73573
|
+
name: "AiChatRobot" | "UploadHandleRobot" | "FileServeRobot" | "FileWatermarkRobot" | "FileVerifyRobot" | "EdglyDeliverRobot" | "TlcdnDeliverRobot" | "VideoSubtitleRobot" | "VideoEncodeRobot" | "VideoAdaptiveRobot" | "VideoMergeRobot" | "VideoConcatRobot" | "AudioWaveformRobot" | "AudioEncodeRobot" | "AudioLoopRobot" | "AudioConcatRobot" | "AudioMergeRobot" | "AudioArtworkRobot" | "ImageFacedetectRobot" | "ImageDescribeRobot" | "ImageOcrRobot" | "ImageBgremoveRobot" | "ImageGenerateRobot" | "DocumentOcrRobot" | "SpeechTranscribeRobot" | "VideoThumbsRobot" | "FileVirusscanRobot" | "ImageOptimizeRobot" | "FileCompressRobot" | "MetaReadRobot" | "FileDecompressRobot" | "MetaWriteRobot" | "DocumentThumbsRobot" | "DocumentConvertRobot" | "DocumentMergeRobot" | "DocumentSplitRobot" | "DocumentOptimizeRobot" | "DocumentAutorotateRobot" | "HtmlConvertRobot" | "ImageResizeRobot" | "ImageMergeRobot" | "S3ImportRobot" | "S3StoreRobot" | "DigitalOceanImportRobot" | "DigitalOceanStoreRobot" | "BackblazeImportRobot" | "BackblazeStoreRobot" | "MinioImportRobot" | "TigrisImportRobot" | "CloudflareImportRobot" | "SupabaseImportRobot" | "MinioStoreRobot" | "TigrisStoreRobot" | "CloudflareStoreRobot" | "SupabaseStoreRobot" | "WasabiImportRobot" | "WasabiStoreRobot" | "SwiftImportRobot" | "SwiftStoreRobot" | "GoogleImportRobot" | "GoogleStoreRobot" | "DropboxImportRobot" | "DropboxStoreRobot" | "HttpImportRobot" | "SftpImportRobot" | "SftpStoreRobot" | "FtpImportRobot" | "FtpStoreRobot" | "CloudfilesImportRobot" | "CloudfilesStoreRobot" | "AzureImportRobot" | "AzureStoreRobot" | "YoutubeStoreRobot" | "VimeoImportRobot" | "VimeoStoreRobot" | "AssemblySavejsonRobot" | "ScriptRunRobot" | "FileHashRobot" | "FileReadRobot" | "VideoOndemandRobot" | "FileFilterRobot" | "TextSpeakRobot" | "TextTranslateRobot" | "FilePreviewRobot" | "TusStoreRobot" | "ProgressSimulateRobot";
|
|
73048
73574
|
priceFactor: number;
|
|
73049
73575
|
queueSlotCount: number;
|
|
73050
73576
|
isAllowedForUrlTransform: boolean;
|
|
@@ -73098,7 +73624,7 @@ export declare const robotsMeta: {
|
|
|
73098
73624
|
uses_tools?: ("ffmpeg" | "imagemagick")[] | undefined;
|
|
73099
73625
|
};
|
|
73100
73626
|
dropboxImportMeta: {
|
|
73101
|
-
name: "AiChatRobot" | "UploadHandleRobot" | "FileServeRobot" | "FileWatermarkRobot" | "FileVerifyRobot" | "EdglyDeliverRobot" | "TlcdnDeliverRobot" | "VideoSubtitleRobot" | "VideoEncodeRobot" | "VideoAdaptiveRobot" | "VideoMergeRobot" | "VideoConcatRobot" | "AudioWaveformRobot" | "AudioEncodeRobot" | "AudioLoopRobot" | "AudioConcatRobot" | "AudioMergeRobot" | "AudioArtworkRobot" | "ImageFacedetectRobot" | "ImageDescribeRobot" | "ImageOcrRobot" | "ImageBgremoveRobot" | "ImageGenerateRobot" | "DocumentOcrRobot" | "SpeechTranscribeRobot" | "VideoThumbsRobot" | "FileVirusscanRobot" | "ImageOptimizeRobot" | "FileCompressRobot" | "MetaReadRobot" | "FileDecompressRobot" | "MetaWriteRobot" | "DocumentThumbsRobot" | "DocumentConvertRobot" | "DocumentMergeRobot" | "DocumentSplitRobot" | "DocumentAutorotateRobot" | "HtmlConvertRobot" | "ImageResizeRobot" | "ImageMergeRobot" | "S3ImportRobot" | "S3StoreRobot" | "DigitalOceanImportRobot" | "DigitalOceanStoreRobot" | "BackblazeImportRobot" | "BackblazeStoreRobot" | "MinioImportRobot" | "TigrisImportRobot" | "CloudflareImportRobot" | "SupabaseImportRobot" | "MinioStoreRobot" | "TigrisStoreRobot" | "CloudflareStoreRobot" | "SupabaseStoreRobot" | "WasabiImportRobot" | "WasabiStoreRobot" | "SwiftImportRobot" | "SwiftStoreRobot" | "GoogleImportRobot" | "GoogleStoreRobot" | "DropboxImportRobot" | "DropboxStoreRobot" | "HttpImportRobot" | "SftpImportRobot" | "SftpStoreRobot" | "FtpImportRobot" | "FtpStoreRobot" | "CloudfilesImportRobot" | "CloudfilesStoreRobot" | "AzureImportRobot" | "AzureStoreRobot" | "YoutubeStoreRobot" | "VimeoImportRobot" | "VimeoStoreRobot" | "AssemblySavejsonRobot" | "ScriptRunRobot" | "FileHashRobot" | "FileReadRobot" | "VideoOndemandRobot" | "FileFilterRobot" | "TextSpeakRobot" | "TextTranslateRobot" | "FilePreviewRobot" | "TusStoreRobot" | "ProgressSimulateRobot";
|
|
73627
|
+
name: "AiChatRobot" | "UploadHandleRobot" | "FileServeRobot" | "FileWatermarkRobot" | "FileVerifyRobot" | "EdglyDeliverRobot" | "TlcdnDeliverRobot" | "VideoSubtitleRobot" | "VideoEncodeRobot" | "VideoAdaptiveRobot" | "VideoMergeRobot" | "VideoConcatRobot" | "AudioWaveformRobot" | "AudioEncodeRobot" | "AudioLoopRobot" | "AudioConcatRobot" | "AudioMergeRobot" | "AudioArtworkRobot" | "ImageFacedetectRobot" | "ImageDescribeRobot" | "ImageOcrRobot" | "ImageBgremoveRobot" | "ImageGenerateRobot" | "DocumentOcrRobot" | "SpeechTranscribeRobot" | "VideoThumbsRobot" | "FileVirusscanRobot" | "ImageOptimizeRobot" | "FileCompressRobot" | "MetaReadRobot" | "FileDecompressRobot" | "MetaWriteRobot" | "DocumentThumbsRobot" | "DocumentConvertRobot" | "DocumentMergeRobot" | "DocumentSplitRobot" | "DocumentOptimizeRobot" | "DocumentAutorotateRobot" | "HtmlConvertRobot" | "ImageResizeRobot" | "ImageMergeRobot" | "S3ImportRobot" | "S3StoreRobot" | "DigitalOceanImportRobot" | "DigitalOceanStoreRobot" | "BackblazeImportRobot" | "BackblazeStoreRobot" | "MinioImportRobot" | "TigrisImportRobot" | "CloudflareImportRobot" | "SupabaseImportRobot" | "MinioStoreRobot" | "TigrisStoreRobot" | "CloudflareStoreRobot" | "SupabaseStoreRobot" | "WasabiImportRobot" | "WasabiStoreRobot" | "SwiftImportRobot" | "SwiftStoreRobot" | "GoogleImportRobot" | "GoogleStoreRobot" | "DropboxImportRobot" | "DropboxStoreRobot" | "HttpImportRobot" | "SftpImportRobot" | "SftpStoreRobot" | "FtpImportRobot" | "FtpStoreRobot" | "CloudfilesImportRobot" | "CloudfilesStoreRobot" | "AzureImportRobot" | "AzureStoreRobot" | "YoutubeStoreRobot" | "VimeoImportRobot" | "VimeoStoreRobot" | "AssemblySavejsonRobot" | "ScriptRunRobot" | "FileHashRobot" | "FileReadRobot" | "VideoOndemandRobot" | "FileFilterRobot" | "TextSpeakRobot" | "TextTranslateRobot" | "FilePreviewRobot" | "TusStoreRobot" | "ProgressSimulateRobot";
|
|
73102
73628
|
priceFactor: number;
|
|
73103
73629
|
queueSlotCount: number;
|
|
73104
73630
|
isAllowedForUrlTransform: boolean;
|
|
@@ -73152,7 +73678,7 @@ export declare const robotsMeta: {
|
|
|
73152
73678
|
uses_tools?: ("ffmpeg" | "imagemagick")[] | undefined;
|
|
73153
73679
|
};
|
|
73154
73680
|
dropboxStoreMeta: {
|
|
73155
|
-
name: "AiChatRobot" | "UploadHandleRobot" | "FileServeRobot" | "FileWatermarkRobot" | "FileVerifyRobot" | "EdglyDeliverRobot" | "TlcdnDeliverRobot" | "VideoSubtitleRobot" | "VideoEncodeRobot" | "VideoAdaptiveRobot" | "VideoMergeRobot" | "VideoConcatRobot" | "AudioWaveformRobot" | "AudioEncodeRobot" | "AudioLoopRobot" | "AudioConcatRobot" | "AudioMergeRobot" | "AudioArtworkRobot" | "ImageFacedetectRobot" | "ImageDescribeRobot" | "ImageOcrRobot" | "ImageBgremoveRobot" | "ImageGenerateRobot" | "DocumentOcrRobot" | "SpeechTranscribeRobot" | "VideoThumbsRobot" | "FileVirusscanRobot" | "ImageOptimizeRobot" | "FileCompressRobot" | "MetaReadRobot" | "FileDecompressRobot" | "MetaWriteRobot" | "DocumentThumbsRobot" | "DocumentConvertRobot" | "DocumentMergeRobot" | "DocumentSplitRobot" | "DocumentAutorotateRobot" | "HtmlConvertRobot" | "ImageResizeRobot" | "ImageMergeRobot" | "S3ImportRobot" | "S3StoreRobot" | "DigitalOceanImportRobot" | "DigitalOceanStoreRobot" | "BackblazeImportRobot" | "BackblazeStoreRobot" | "MinioImportRobot" | "TigrisImportRobot" | "CloudflareImportRobot" | "SupabaseImportRobot" | "MinioStoreRobot" | "TigrisStoreRobot" | "CloudflareStoreRobot" | "SupabaseStoreRobot" | "WasabiImportRobot" | "WasabiStoreRobot" | "SwiftImportRobot" | "SwiftStoreRobot" | "GoogleImportRobot" | "GoogleStoreRobot" | "DropboxImportRobot" | "DropboxStoreRobot" | "HttpImportRobot" | "SftpImportRobot" | "SftpStoreRobot" | "FtpImportRobot" | "FtpStoreRobot" | "CloudfilesImportRobot" | "CloudfilesStoreRobot" | "AzureImportRobot" | "AzureStoreRobot" | "YoutubeStoreRobot" | "VimeoImportRobot" | "VimeoStoreRobot" | "AssemblySavejsonRobot" | "ScriptRunRobot" | "FileHashRobot" | "FileReadRobot" | "VideoOndemandRobot" | "FileFilterRobot" | "TextSpeakRobot" | "TextTranslateRobot" | "FilePreviewRobot" | "TusStoreRobot" | "ProgressSimulateRobot";
|
|
73681
|
+
name: "AiChatRobot" | "UploadHandleRobot" | "FileServeRobot" | "FileWatermarkRobot" | "FileVerifyRobot" | "EdglyDeliverRobot" | "TlcdnDeliverRobot" | "VideoSubtitleRobot" | "VideoEncodeRobot" | "VideoAdaptiveRobot" | "VideoMergeRobot" | "VideoConcatRobot" | "AudioWaveformRobot" | "AudioEncodeRobot" | "AudioLoopRobot" | "AudioConcatRobot" | "AudioMergeRobot" | "AudioArtworkRobot" | "ImageFacedetectRobot" | "ImageDescribeRobot" | "ImageOcrRobot" | "ImageBgremoveRobot" | "ImageGenerateRobot" | "DocumentOcrRobot" | "SpeechTranscribeRobot" | "VideoThumbsRobot" | "FileVirusscanRobot" | "ImageOptimizeRobot" | "FileCompressRobot" | "MetaReadRobot" | "FileDecompressRobot" | "MetaWriteRobot" | "DocumentThumbsRobot" | "DocumentConvertRobot" | "DocumentMergeRobot" | "DocumentSplitRobot" | "DocumentOptimizeRobot" | "DocumentAutorotateRobot" | "HtmlConvertRobot" | "ImageResizeRobot" | "ImageMergeRobot" | "S3ImportRobot" | "S3StoreRobot" | "DigitalOceanImportRobot" | "DigitalOceanStoreRobot" | "BackblazeImportRobot" | "BackblazeStoreRobot" | "MinioImportRobot" | "TigrisImportRobot" | "CloudflareImportRobot" | "SupabaseImportRobot" | "MinioStoreRobot" | "TigrisStoreRobot" | "CloudflareStoreRobot" | "SupabaseStoreRobot" | "WasabiImportRobot" | "WasabiStoreRobot" | "SwiftImportRobot" | "SwiftStoreRobot" | "GoogleImportRobot" | "GoogleStoreRobot" | "DropboxImportRobot" | "DropboxStoreRobot" | "HttpImportRobot" | "SftpImportRobot" | "SftpStoreRobot" | "FtpImportRobot" | "FtpStoreRobot" | "CloudfilesImportRobot" | "CloudfilesStoreRobot" | "AzureImportRobot" | "AzureStoreRobot" | "YoutubeStoreRobot" | "VimeoImportRobot" | "VimeoStoreRobot" | "AssemblySavejsonRobot" | "ScriptRunRobot" | "FileHashRobot" | "FileReadRobot" | "VideoOndemandRobot" | "FileFilterRobot" | "TextSpeakRobot" | "TextTranslateRobot" | "FilePreviewRobot" | "TusStoreRobot" | "ProgressSimulateRobot";
|
|
73156
73682
|
priceFactor: number;
|
|
73157
73683
|
queueSlotCount: number;
|
|
73158
73684
|
isAllowedForUrlTransform: boolean;
|
|
@@ -73206,7 +73732,7 @@ export declare const robotsMeta: {
|
|
|
73206
73732
|
uses_tools?: ("ffmpeg" | "imagemagick")[] | undefined;
|
|
73207
73733
|
};
|
|
73208
73734
|
edglyDeliverMeta: {
|
|
73209
|
-
name: "AiChatRobot" | "UploadHandleRobot" | "FileServeRobot" | "FileWatermarkRobot" | "FileVerifyRobot" | "EdglyDeliverRobot" | "TlcdnDeliverRobot" | "VideoSubtitleRobot" | "VideoEncodeRobot" | "VideoAdaptiveRobot" | "VideoMergeRobot" | "VideoConcatRobot" | "AudioWaveformRobot" | "AudioEncodeRobot" | "AudioLoopRobot" | "AudioConcatRobot" | "AudioMergeRobot" | "AudioArtworkRobot" | "ImageFacedetectRobot" | "ImageDescribeRobot" | "ImageOcrRobot" | "ImageBgremoveRobot" | "ImageGenerateRobot" | "DocumentOcrRobot" | "SpeechTranscribeRobot" | "VideoThumbsRobot" | "FileVirusscanRobot" | "ImageOptimizeRobot" | "FileCompressRobot" | "MetaReadRobot" | "FileDecompressRobot" | "MetaWriteRobot" | "DocumentThumbsRobot" | "DocumentConvertRobot" | "DocumentMergeRobot" | "DocumentSplitRobot" | "DocumentAutorotateRobot" | "HtmlConvertRobot" | "ImageResizeRobot" | "ImageMergeRobot" | "S3ImportRobot" | "S3StoreRobot" | "DigitalOceanImportRobot" | "DigitalOceanStoreRobot" | "BackblazeImportRobot" | "BackblazeStoreRobot" | "MinioImportRobot" | "TigrisImportRobot" | "CloudflareImportRobot" | "SupabaseImportRobot" | "MinioStoreRobot" | "TigrisStoreRobot" | "CloudflareStoreRobot" | "SupabaseStoreRobot" | "WasabiImportRobot" | "WasabiStoreRobot" | "SwiftImportRobot" | "SwiftStoreRobot" | "GoogleImportRobot" | "GoogleStoreRobot" | "DropboxImportRobot" | "DropboxStoreRobot" | "HttpImportRobot" | "SftpImportRobot" | "SftpStoreRobot" | "FtpImportRobot" | "FtpStoreRobot" | "CloudfilesImportRobot" | "CloudfilesStoreRobot" | "AzureImportRobot" | "AzureStoreRobot" | "YoutubeStoreRobot" | "VimeoImportRobot" | "VimeoStoreRobot" | "AssemblySavejsonRobot" | "ScriptRunRobot" | "FileHashRobot" | "FileReadRobot" | "VideoOndemandRobot" | "FileFilterRobot" | "TextSpeakRobot" | "TextTranslateRobot" | "FilePreviewRobot" | "TusStoreRobot" | "ProgressSimulateRobot";
|
|
73735
|
+
name: "AiChatRobot" | "UploadHandleRobot" | "FileServeRobot" | "FileWatermarkRobot" | "FileVerifyRobot" | "EdglyDeliverRobot" | "TlcdnDeliverRobot" | "VideoSubtitleRobot" | "VideoEncodeRobot" | "VideoAdaptiveRobot" | "VideoMergeRobot" | "VideoConcatRobot" | "AudioWaveformRobot" | "AudioEncodeRobot" | "AudioLoopRobot" | "AudioConcatRobot" | "AudioMergeRobot" | "AudioArtworkRobot" | "ImageFacedetectRobot" | "ImageDescribeRobot" | "ImageOcrRobot" | "ImageBgremoveRobot" | "ImageGenerateRobot" | "DocumentOcrRobot" | "SpeechTranscribeRobot" | "VideoThumbsRobot" | "FileVirusscanRobot" | "ImageOptimizeRobot" | "FileCompressRobot" | "MetaReadRobot" | "FileDecompressRobot" | "MetaWriteRobot" | "DocumentThumbsRobot" | "DocumentConvertRobot" | "DocumentMergeRobot" | "DocumentSplitRobot" | "DocumentOptimizeRobot" | "DocumentAutorotateRobot" | "HtmlConvertRobot" | "ImageResizeRobot" | "ImageMergeRobot" | "S3ImportRobot" | "S3StoreRobot" | "DigitalOceanImportRobot" | "DigitalOceanStoreRobot" | "BackblazeImportRobot" | "BackblazeStoreRobot" | "MinioImportRobot" | "TigrisImportRobot" | "CloudflareImportRobot" | "SupabaseImportRobot" | "MinioStoreRobot" | "TigrisStoreRobot" | "CloudflareStoreRobot" | "SupabaseStoreRobot" | "WasabiImportRobot" | "WasabiStoreRobot" | "SwiftImportRobot" | "SwiftStoreRobot" | "GoogleImportRobot" | "GoogleStoreRobot" | "DropboxImportRobot" | "DropboxStoreRobot" | "HttpImportRobot" | "SftpImportRobot" | "SftpStoreRobot" | "FtpImportRobot" | "FtpStoreRobot" | "CloudfilesImportRobot" | "CloudfilesStoreRobot" | "AzureImportRobot" | "AzureStoreRobot" | "YoutubeStoreRobot" | "VimeoImportRobot" | "VimeoStoreRobot" | "AssemblySavejsonRobot" | "ScriptRunRobot" | "FileHashRobot" | "FileReadRobot" | "VideoOndemandRobot" | "FileFilterRobot" | "TextSpeakRobot" | "TextTranslateRobot" | "FilePreviewRobot" | "TusStoreRobot" | "ProgressSimulateRobot";
|
|
73210
73736
|
priceFactor: number;
|
|
73211
73737
|
queueSlotCount: number;
|
|
73212
73738
|
isAllowedForUrlTransform: boolean;
|
|
@@ -73260,7 +73786,7 @@ export declare const robotsMeta: {
|
|
|
73260
73786
|
uses_tools?: ("ffmpeg" | "imagemagick")[] | undefined;
|
|
73261
73787
|
};
|
|
73262
73788
|
fileCompressMeta: {
|
|
73263
|
-
name: "AiChatRobot" | "UploadHandleRobot" | "FileServeRobot" | "FileWatermarkRobot" | "FileVerifyRobot" | "EdglyDeliverRobot" | "TlcdnDeliverRobot" | "VideoSubtitleRobot" | "VideoEncodeRobot" | "VideoAdaptiveRobot" | "VideoMergeRobot" | "VideoConcatRobot" | "AudioWaveformRobot" | "AudioEncodeRobot" | "AudioLoopRobot" | "AudioConcatRobot" | "AudioMergeRobot" | "AudioArtworkRobot" | "ImageFacedetectRobot" | "ImageDescribeRobot" | "ImageOcrRobot" | "ImageBgremoveRobot" | "ImageGenerateRobot" | "DocumentOcrRobot" | "SpeechTranscribeRobot" | "VideoThumbsRobot" | "FileVirusscanRobot" | "ImageOptimizeRobot" | "FileCompressRobot" | "MetaReadRobot" | "FileDecompressRobot" | "MetaWriteRobot" | "DocumentThumbsRobot" | "DocumentConvertRobot" | "DocumentMergeRobot" | "DocumentSplitRobot" | "DocumentAutorotateRobot" | "HtmlConvertRobot" | "ImageResizeRobot" | "ImageMergeRobot" | "S3ImportRobot" | "S3StoreRobot" | "DigitalOceanImportRobot" | "DigitalOceanStoreRobot" | "BackblazeImportRobot" | "BackblazeStoreRobot" | "MinioImportRobot" | "TigrisImportRobot" | "CloudflareImportRobot" | "SupabaseImportRobot" | "MinioStoreRobot" | "TigrisStoreRobot" | "CloudflareStoreRobot" | "SupabaseStoreRobot" | "WasabiImportRobot" | "WasabiStoreRobot" | "SwiftImportRobot" | "SwiftStoreRobot" | "GoogleImportRobot" | "GoogleStoreRobot" | "DropboxImportRobot" | "DropboxStoreRobot" | "HttpImportRobot" | "SftpImportRobot" | "SftpStoreRobot" | "FtpImportRobot" | "FtpStoreRobot" | "CloudfilesImportRobot" | "CloudfilesStoreRobot" | "AzureImportRobot" | "AzureStoreRobot" | "YoutubeStoreRobot" | "VimeoImportRobot" | "VimeoStoreRobot" | "AssemblySavejsonRobot" | "ScriptRunRobot" | "FileHashRobot" | "FileReadRobot" | "VideoOndemandRobot" | "FileFilterRobot" | "TextSpeakRobot" | "TextTranslateRobot" | "FilePreviewRobot" | "TusStoreRobot" | "ProgressSimulateRobot";
|
|
73789
|
+
name: "AiChatRobot" | "UploadHandleRobot" | "FileServeRobot" | "FileWatermarkRobot" | "FileVerifyRobot" | "EdglyDeliverRobot" | "TlcdnDeliverRobot" | "VideoSubtitleRobot" | "VideoEncodeRobot" | "VideoAdaptiveRobot" | "VideoMergeRobot" | "VideoConcatRobot" | "AudioWaveformRobot" | "AudioEncodeRobot" | "AudioLoopRobot" | "AudioConcatRobot" | "AudioMergeRobot" | "AudioArtworkRobot" | "ImageFacedetectRobot" | "ImageDescribeRobot" | "ImageOcrRobot" | "ImageBgremoveRobot" | "ImageGenerateRobot" | "DocumentOcrRobot" | "SpeechTranscribeRobot" | "VideoThumbsRobot" | "FileVirusscanRobot" | "ImageOptimizeRobot" | "FileCompressRobot" | "MetaReadRobot" | "FileDecompressRobot" | "MetaWriteRobot" | "DocumentThumbsRobot" | "DocumentConvertRobot" | "DocumentMergeRobot" | "DocumentSplitRobot" | "DocumentOptimizeRobot" | "DocumentAutorotateRobot" | "HtmlConvertRobot" | "ImageResizeRobot" | "ImageMergeRobot" | "S3ImportRobot" | "S3StoreRobot" | "DigitalOceanImportRobot" | "DigitalOceanStoreRobot" | "BackblazeImportRobot" | "BackblazeStoreRobot" | "MinioImportRobot" | "TigrisImportRobot" | "CloudflareImportRobot" | "SupabaseImportRobot" | "MinioStoreRobot" | "TigrisStoreRobot" | "CloudflareStoreRobot" | "SupabaseStoreRobot" | "WasabiImportRobot" | "WasabiStoreRobot" | "SwiftImportRobot" | "SwiftStoreRobot" | "GoogleImportRobot" | "GoogleStoreRobot" | "DropboxImportRobot" | "DropboxStoreRobot" | "HttpImportRobot" | "SftpImportRobot" | "SftpStoreRobot" | "FtpImportRobot" | "FtpStoreRobot" | "CloudfilesImportRobot" | "CloudfilesStoreRobot" | "AzureImportRobot" | "AzureStoreRobot" | "YoutubeStoreRobot" | "VimeoImportRobot" | "VimeoStoreRobot" | "AssemblySavejsonRobot" | "ScriptRunRobot" | "FileHashRobot" | "FileReadRobot" | "VideoOndemandRobot" | "FileFilterRobot" | "TextSpeakRobot" | "TextTranslateRobot" | "FilePreviewRobot" | "TusStoreRobot" | "ProgressSimulateRobot";
|
|
73264
73790
|
priceFactor: number;
|
|
73265
73791
|
queueSlotCount: number;
|
|
73266
73792
|
isAllowedForUrlTransform: boolean;
|
|
@@ -73314,7 +73840,7 @@ export declare const robotsMeta: {
|
|
|
73314
73840
|
uses_tools?: ("ffmpeg" | "imagemagick")[] | undefined;
|
|
73315
73841
|
};
|
|
73316
73842
|
fileDecompressMeta: {
|
|
73317
|
-
name: "AiChatRobot" | "UploadHandleRobot" | "FileServeRobot" | "FileWatermarkRobot" | "FileVerifyRobot" | "EdglyDeliverRobot" | "TlcdnDeliverRobot" | "VideoSubtitleRobot" | "VideoEncodeRobot" | "VideoAdaptiveRobot" | "VideoMergeRobot" | "VideoConcatRobot" | "AudioWaveformRobot" | "AudioEncodeRobot" | "AudioLoopRobot" | "AudioConcatRobot" | "AudioMergeRobot" | "AudioArtworkRobot" | "ImageFacedetectRobot" | "ImageDescribeRobot" | "ImageOcrRobot" | "ImageBgremoveRobot" | "ImageGenerateRobot" | "DocumentOcrRobot" | "SpeechTranscribeRobot" | "VideoThumbsRobot" | "FileVirusscanRobot" | "ImageOptimizeRobot" | "FileCompressRobot" | "MetaReadRobot" | "FileDecompressRobot" | "MetaWriteRobot" | "DocumentThumbsRobot" | "DocumentConvertRobot" | "DocumentMergeRobot" | "DocumentSplitRobot" | "DocumentAutorotateRobot" | "HtmlConvertRobot" | "ImageResizeRobot" | "ImageMergeRobot" | "S3ImportRobot" | "S3StoreRobot" | "DigitalOceanImportRobot" | "DigitalOceanStoreRobot" | "BackblazeImportRobot" | "BackblazeStoreRobot" | "MinioImportRobot" | "TigrisImportRobot" | "CloudflareImportRobot" | "SupabaseImportRobot" | "MinioStoreRobot" | "TigrisStoreRobot" | "CloudflareStoreRobot" | "SupabaseStoreRobot" | "WasabiImportRobot" | "WasabiStoreRobot" | "SwiftImportRobot" | "SwiftStoreRobot" | "GoogleImportRobot" | "GoogleStoreRobot" | "DropboxImportRobot" | "DropboxStoreRobot" | "HttpImportRobot" | "SftpImportRobot" | "SftpStoreRobot" | "FtpImportRobot" | "FtpStoreRobot" | "CloudfilesImportRobot" | "CloudfilesStoreRobot" | "AzureImportRobot" | "AzureStoreRobot" | "YoutubeStoreRobot" | "VimeoImportRobot" | "VimeoStoreRobot" | "AssemblySavejsonRobot" | "ScriptRunRobot" | "FileHashRobot" | "FileReadRobot" | "VideoOndemandRobot" | "FileFilterRobot" | "TextSpeakRobot" | "TextTranslateRobot" | "FilePreviewRobot" | "TusStoreRobot" | "ProgressSimulateRobot";
|
|
73843
|
+
name: "AiChatRobot" | "UploadHandleRobot" | "FileServeRobot" | "FileWatermarkRobot" | "FileVerifyRobot" | "EdglyDeliverRobot" | "TlcdnDeliverRobot" | "VideoSubtitleRobot" | "VideoEncodeRobot" | "VideoAdaptiveRobot" | "VideoMergeRobot" | "VideoConcatRobot" | "AudioWaveformRobot" | "AudioEncodeRobot" | "AudioLoopRobot" | "AudioConcatRobot" | "AudioMergeRobot" | "AudioArtworkRobot" | "ImageFacedetectRobot" | "ImageDescribeRobot" | "ImageOcrRobot" | "ImageBgremoveRobot" | "ImageGenerateRobot" | "DocumentOcrRobot" | "SpeechTranscribeRobot" | "VideoThumbsRobot" | "FileVirusscanRobot" | "ImageOptimizeRobot" | "FileCompressRobot" | "MetaReadRobot" | "FileDecompressRobot" | "MetaWriteRobot" | "DocumentThumbsRobot" | "DocumentConvertRobot" | "DocumentMergeRobot" | "DocumentSplitRobot" | "DocumentOptimizeRobot" | "DocumentAutorotateRobot" | "HtmlConvertRobot" | "ImageResizeRobot" | "ImageMergeRobot" | "S3ImportRobot" | "S3StoreRobot" | "DigitalOceanImportRobot" | "DigitalOceanStoreRobot" | "BackblazeImportRobot" | "BackblazeStoreRobot" | "MinioImportRobot" | "TigrisImportRobot" | "CloudflareImportRobot" | "SupabaseImportRobot" | "MinioStoreRobot" | "TigrisStoreRobot" | "CloudflareStoreRobot" | "SupabaseStoreRobot" | "WasabiImportRobot" | "WasabiStoreRobot" | "SwiftImportRobot" | "SwiftStoreRobot" | "GoogleImportRobot" | "GoogleStoreRobot" | "DropboxImportRobot" | "DropboxStoreRobot" | "HttpImportRobot" | "SftpImportRobot" | "SftpStoreRobot" | "FtpImportRobot" | "FtpStoreRobot" | "CloudfilesImportRobot" | "CloudfilesStoreRobot" | "AzureImportRobot" | "AzureStoreRobot" | "YoutubeStoreRobot" | "VimeoImportRobot" | "VimeoStoreRobot" | "AssemblySavejsonRobot" | "ScriptRunRobot" | "FileHashRobot" | "FileReadRobot" | "VideoOndemandRobot" | "FileFilterRobot" | "TextSpeakRobot" | "TextTranslateRobot" | "FilePreviewRobot" | "TusStoreRobot" | "ProgressSimulateRobot";
|
|
73318
73844
|
priceFactor: number;
|
|
73319
73845
|
queueSlotCount: number;
|
|
73320
73846
|
isAllowedForUrlTransform: boolean;
|
|
@@ -73368,7 +73894,7 @@ export declare const robotsMeta: {
|
|
|
73368
73894
|
uses_tools?: ("ffmpeg" | "imagemagick")[] | undefined;
|
|
73369
73895
|
};
|
|
73370
73896
|
fileFilterMeta: {
|
|
73371
|
-
name: "AiChatRobot" | "UploadHandleRobot" | "FileServeRobot" | "FileWatermarkRobot" | "FileVerifyRobot" | "EdglyDeliverRobot" | "TlcdnDeliverRobot" | "VideoSubtitleRobot" | "VideoEncodeRobot" | "VideoAdaptiveRobot" | "VideoMergeRobot" | "VideoConcatRobot" | "AudioWaveformRobot" | "AudioEncodeRobot" | "AudioLoopRobot" | "AudioConcatRobot" | "AudioMergeRobot" | "AudioArtworkRobot" | "ImageFacedetectRobot" | "ImageDescribeRobot" | "ImageOcrRobot" | "ImageBgremoveRobot" | "ImageGenerateRobot" | "DocumentOcrRobot" | "SpeechTranscribeRobot" | "VideoThumbsRobot" | "FileVirusscanRobot" | "ImageOptimizeRobot" | "FileCompressRobot" | "MetaReadRobot" | "FileDecompressRobot" | "MetaWriteRobot" | "DocumentThumbsRobot" | "DocumentConvertRobot" | "DocumentMergeRobot" | "DocumentSplitRobot" | "DocumentAutorotateRobot" | "HtmlConvertRobot" | "ImageResizeRobot" | "ImageMergeRobot" | "S3ImportRobot" | "S3StoreRobot" | "DigitalOceanImportRobot" | "DigitalOceanStoreRobot" | "BackblazeImportRobot" | "BackblazeStoreRobot" | "MinioImportRobot" | "TigrisImportRobot" | "CloudflareImportRobot" | "SupabaseImportRobot" | "MinioStoreRobot" | "TigrisStoreRobot" | "CloudflareStoreRobot" | "SupabaseStoreRobot" | "WasabiImportRobot" | "WasabiStoreRobot" | "SwiftImportRobot" | "SwiftStoreRobot" | "GoogleImportRobot" | "GoogleStoreRobot" | "DropboxImportRobot" | "DropboxStoreRobot" | "HttpImportRobot" | "SftpImportRobot" | "SftpStoreRobot" | "FtpImportRobot" | "FtpStoreRobot" | "CloudfilesImportRobot" | "CloudfilesStoreRobot" | "AzureImportRobot" | "AzureStoreRobot" | "YoutubeStoreRobot" | "VimeoImportRobot" | "VimeoStoreRobot" | "AssemblySavejsonRobot" | "ScriptRunRobot" | "FileHashRobot" | "FileReadRobot" | "VideoOndemandRobot" | "FileFilterRobot" | "TextSpeakRobot" | "TextTranslateRobot" | "FilePreviewRobot" | "TusStoreRobot" | "ProgressSimulateRobot";
|
|
73897
|
+
name: "AiChatRobot" | "UploadHandleRobot" | "FileServeRobot" | "FileWatermarkRobot" | "FileVerifyRobot" | "EdglyDeliverRobot" | "TlcdnDeliverRobot" | "VideoSubtitleRobot" | "VideoEncodeRobot" | "VideoAdaptiveRobot" | "VideoMergeRobot" | "VideoConcatRobot" | "AudioWaveformRobot" | "AudioEncodeRobot" | "AudioLoopRobot" | "AudioConcatRobot" | "AudioMergeRobot" | "AudioArtworkRobot" | "ImageFacedetectRobot" | "ImageDescribeRobot" | "ImageOcrRobot" | "ImageBgremoveRobot" | "ImageGenerateRobot" | "DocumentOcrRobot" | "SpeechTranscribeRobot" | "VideoThumbsRobot" | "FileVirusscanRobot" | "ImageOptimizeRobot" | "FileCompressRobot" | "MetaReadRobot" | "FileDecompressRobot" | "MetaWriteRobot" | "DocumentThumbsRobot" | "DocumentConvertRobot" | "DocumentMergeRobot" | "DocumentSplitRobot" | "DocumentOptimizeRobot" | "DocumentAutorotateRobot" | "HtmlConvertRobot" | "ImageResizeRobot" | "ImageMergeRobot" | "S3ImportRobot" | "S3StoreRobot" | "DigitalOceanImportRobot" | "DigitalOceanStoreRobot" | "BackblazeImportRobot" | "BackblazeStoreRobot" | "MinioImportRobot" | "TigrisImportRobot" | "CloudflareImportRobot" | "SupabaseImportRobot" | "MinioStoreRobot" | "TigrisStoreRobot" | "CloudflareStoreRobot" | "SupabaseStoreRobot" | "WasabiImportRobot" | "WasabiStoreRobot" | "SwiftImportRobot" | "SwiftStoreRobot" | "GoogleImportRobot" | "GoogleStoreRobot" | "DropboxImportRobot" | "DropboxStoreRobot" | "HttpImportRobot" | "SftpImportRobot" | "SftpStoreRobot" | "FtpImportRobot" | "FtpStoreRobot" | "CloudfilesImportRobot" | "CloudfilesStoreRobot" | "AzureImportRobot" | "AzureStoreRobot" | "YoutubeStoreRobot" | "VimeoImportRobot" | "VimeoStoreRobot" | "AssemblySavejsonRobot" | "ScriptRunRobot" | "FileHashRobot" | "FileReadRobot" | "VideoOndemandRobot" | "FileFilterRobot" | "TextSpeakRobot" | "TextTranslateRobot" | "FilePreviewRobot" | "TusStoreRobot" | "ProgressSimulateRobot";
|
|
73372
73898
|
priceFactor: number;
|
|
73373
73899
|
queueSlotCount: number;
|
|
73374
73900
|
isAllowedForUrlTransform: boolean;
|
|
@@ -73422,7 +73948,7 @@ export declare const robotsMeta: {
|
|
|
73422
73948
|
uses_tools?: ("ffmpeg" | "imagemagick")[] | undefined;
|
|
73423
73949
|
};
|
|
73424
73950
|
fileHashMeta: {
|
|
73425
|
-
name: "AiChatRobot" | "UploadHandleRobot" | "FileServeRobot" | "FileWatermarkRobot" | "FileVerifyRobot" | "EdglyDeliverRobot" | "TlcdnDeliverRobot" | "VideoSubtitleRobot" | "VideoEncodeRobot" | "VideoAdaptiveRobot" | "VideoMergeRobot" | "VideoConcatRobot" | "AudioWaveformRobot" | "AudioEncodeRobot" | "AudioLoopRobot" | "AudioConcatRobot" | "AudioMergeRobot" | "AudioArtworkRobot" | "ImageFacedetectRobot" | "ImageDescribeRobot" | "ImageOcrRobot" | "ImageBgremoveRobot" | "ImageGenerateRobot" | "DocumentOcrRobot" | "SpeechTranscribeRobot" | "VideoThumbsRobot" | "FileVirusscanRobot" | "ImageOptimizeRobot" | "FileCompressRobot" | "MetaReadRobot" | "FileDecompressRobot" | "MetaWriteRobot" | "DocumentThumbsRobot" | "DocumentConvertRobot" | "DocumentMergeRobot" | "DocumentSplitRobot" | "DocumentAutorotateRobot" | "HtmlConvertRobot" | "ImageResizeRobot" | "ImageMergeRobot" | "S3ImportRobot" | "S3StoreRobot" | "DigitalOceanImportRobot" | "DigitalOceanStoreRobot" | "BackblazeImportRobot" | "BackblazeStoreRobot" | "MinioImportRobot" | "TigrisImportRobot" | "CloudflareImportRobot" | "SupabaseImportRobot" | "MinioStoreRobot" | "TigrisStoreRobot" | "CloudflareStoreRobot" | "SupabaseStoreRobot" | "WasabiImportRobot" | "WasabiStoreRobot" | "SwiftImportRobot" | "SwiftStoreRobot" | "GoogleImportRobot" | "GoogleStoreRobot" | "DropboxImportRobot" | "DropboxStoreRobot" | "HttpImportRobot" | "SftpImportRobot" | "SftpStoreRobot" | "FtpImportRobot" | "FtpStoreRobot" | "CloudfilesImportRobot" | "CloudfilesStoreRobot" | "AzureImportRobot" | "AzureStoreRobot" | "YoutubeStoreRobot" | "VimeoImportRobot" | "VimeoStoreRobot" | "AssemblySavejsonRobot" | "ScriptRunRobot" | "FileHashRobot" | "FileReadRobot" | "VideoOndemandRobot" | "FileFilterRobot" | "TextSpeakRobot" | "TextTranslateRobot" | "FilePreviewRobot" | "TusStoreRobot" | "ProgressSimulateRobot";
|
|
73951
|
+
name: "AiChatRobot" | "UploadHandleRobot" | "FileServeRobot" | "FileWatermarkRobot" | "FileVerifyRobot" | "EdglyDeliverRobot" | "TlcdnDeliverRobot" | "VideoSubtitleRobot" | "VideoEncodeRobot" | "VideoAdaptiveRobot" | "VideoMergeRobot" | "VideoConcatRobot" | "AudioWaveformRobot" | "AudioEncodeRobot" | "AudioLoopRobot" | "AudioConcatRobot" | "AudioMergeRobot" | "AudioArtworkRobot" | "ImageFacedetectRobot" | "ImageDescribeRobot" | "ImageOcrRobot" | "ImageBgremoveRobot" | "ImageGenerateRobot" | "DocumentOcrRobot" | "SpeechTranscribeRobot" | "VideoThumbsRobot" | "FileVirusscanRobot" | "ImageOptimizeRobot" | "FileCompressRobot" | "MetaReadRobot" | "FileDecompressRobot" | "MetaWriteRobot" | "DocumentThumbsRobot" | "DocumentConvertRobot" | "DocumentMergeRobot" | "DocumentSplitRobot" | "DocumentOptimizeRobot" | "DocumentAutorotateRobot" | "HtmlConvertRobot" | "ImageResizeRobot" | "ImageMergeRobot" | "S3ImportRobot" | "S3StoreRobot" | "DigitalOceanImportRobot" | "DigitalOceanStoreRobot" | "BackblazeImportRobot" | "BackblazeStoreRobot" | "MinioImportRobot" | "TigrisImportRobot" | "CloudflareImportRobot" | "SupabaseImportRobot" | "MinioStoreRobot" | "TigrisStoreRobot" | "CloudflareStoreRobot" | "SupabaseStoreRobot" | "WasabiImportRobot" | "WasabiStoreRobot" | "SwiftImportRobot" | "SwiftStoreRobot" | "GoogleImportRobot" | "GoogleStoreRobot" | "DropboxImportRobot" | "DropboxStoreRobot" | "HttpImportRobot" | "SftpImportRobot" | "SftpStoreRobot" | "FtpImportRobot" | "FtpStoreRobot" | "CloudfilesImportRobot" | "CloudfilesStoreRobot" | "AzureImportRobot" | "AzureStoreRobot" | "YoutubeStoreRobot" | "VimeoImportRobot" | "VimeoStoreRobot" | "AssemblySavejsonRobot" | "ScriptRunRobot" | "FileHashRobot" | "FileReadRobot" | "VideoOndemandRobot" | "FileFilterRobot" | "TextSpeakRobot" | "TextTranslateRobot" | "FilePreviewRobot" | "TusStoreRobot" | "ProgressSimulateRobot";
|
|
73426
73952
|
priceFactor: number;
|
|
73427
73953
|
queueSlotCount: number;
|
|
73428
73954
|
isAllowedForUrlTransform: boolean;
|
|
@@ -73476,7 +74002,7 @@ export declare const robotsMeta: {
|
|
|
73476
74002
|
uses_tools?: ("ffmpeg" | "imagemagick")[] | undefined;
|
|
73477
74003
|
};
|
|
73478
74004
|
filePreviewMeta: {
|
|
73479
|
-
name: "AiChatRobot" | "UploadHandleRobot" | "FileServeRobot" | "FileWatermarkRobot" | "FileVerifyRobot" | "EdglyDeliverRobot" | "TlcdnDeliverRobot" | "VideoSubtitleRobot" | "VideoEncodeRobot" | "VideoAdaptiveRobot" | "VideoMergeRobot" | "VideoConcatRobot" | "AudioWaveformRobot" | "AudioEncodeRobot" | "AudioLoopRobot" | "AudioConcatRobot" | "AudioMergeRobot" | "AudioArtworkRobot" | "ImageFacedetectRobot" | "ImageDescribeRobot" | "ImageOcrRobot" | "ImageBgremoveRobot" | "ImageGenerateRobot" | "DocumentOcrRobot" | "SpeechTranscribeRobot" | "VideoThumbsRobot" | "FileVirusscanRobot" | "ImageOptimizeRobot" | "FileCompressRobot" | "MetaReadRobot" | "FileDecompressRobot" | "MetaWriteRobot" | "DocumentThumbsRobot" | "DocumentConvertRobot" | "DocumentMergeRobot" | "DocumentSplitRobot" | "DocumentAutorotateRobot" | "HtmlConvertRobot" | "ImageResizeRobot" | "ImageMergeRobot" | "S3ImportRobot" | "S3StoreRobot" | "DigitalOceanImportRobot" | "DigitalOceanStoreRobot" | "BackblazeImportRobot" | "BackblazeStoreRobot" | "MinioImportRobot" | "TigrisImportRobot" | "CloudflareImportRobot" | "SupabaseImportRobot" | "MinioStoreRobot" | "TigrisStoreRobot" | "CloudflareStoreRobot" | "SupabaseStoreRobot" | "WasabiImportRobot" | "WasabiStoreRobot" | "SwiftImportRobot" | "SwiftStoreRobot" | "GoogleImportRobot" | "GoogleStoreRobot" | "DropboxImportRobot" | "DropboxStoreRobot" | "HttpImportRobot" | "SftpImportRobot" | "SftpStoreRobot" | "FtpImportRobot" | "FtpStoreRobot" | "CloudfilesImportRobot" | "CloudfilesStoreRobot" | "AzureImportRobot" | "AzureStoreRobot" | "YoutubeStoreRobot" | "VimeoImportRobot" | "VimeoStoreRobot" | "AssemblySavejsonRobot" | "ScriptRunRobot" | "FileHashRobot" | "FileReadRobot" | "VideoOndemandRobot" | "FileFilterRobot" | "TextSpeakRobot" | "TextTranslateRobot" | "FilePreviewRobot" | "TusStoreRobot" | "ProgressSimulateRobot";
|
|
74005
|
+
name: "AiChatRobot" | "UploadHandleRobot" | "FileServeRobot" | "FileWatermarkRobot" | "FileVerifyRobot" | "EdglyDeliverRobot" | "TlcdnDeliverRobot" | "VideoSubtitleRobot" | "VideoEncodeRobot" | "VideoAdaptiveRobot" | "VideoMergeRobot" | "VideoConcatRobot" | "AudioWaveformRobot" | "AudioEncodeRobot" | "AudioLoopRobot" | "AudioConcatRobot" | "AudioMergeRobot" | "AudioArtworkRobot" | "ImageFacedetectRobot" | "ImageDescribeRobot" | "ImageOcrRobot" | "ImageBgremoveRobot" | "ImageGenerateRobot" | "DocumentOcrRobot" | "SpeechTranscribeRobot" | "VideoThumbsRobot" | "FileVirusscanRobot" | "ImageOptimizeRobot" | "FileCompressRobot" | "MetaReadRobot" | "FileDecompressRobot" | "MetaWriteRobot" | "DocumentThumbsRobot" | "DocumentConvertRobot" | "DocumentMergeRobot" | "DocumentSplitRobot" | "DocumentOptimizeRobot" | "DocumentAutorotateRobot" | "HtmlConvertRobot" | "ImageResizeRobot" | "ImageMergeRobot" | "S3ImportRobot" | "S3StoreRobot" | "DigitalOceanImportRobot" | "DigitalOceanStoreRobot" | "BackblazeImportRobot" | "BackblazeStoreRobot" | "MinioImportRobot" | "TigrisImportRobot" | "CloudflareImportRobot" | "SupabaseImportRobot" | "MinioStoreRobot" | "TigrisStoreRobot" | "CloudflareStoreRobot" | "SupabaseStoreRobot" | "WasabiImportRobot" | "WasabiStoreRobot" | "SwiftImportRobot" | "SwiftStoreRobot" | "GoogleImportRobot" | "GoogleStoreRobot" | "DropboxImportRobot" | "DropboxStoreRobot" | "HttpImportRobot" | "SftpImportRobot" | "SftpStoreRobot" | "FtpImportRobot" | "FtpStoreRobot" | "CloudfilesImportRobot" | "CloudfilesStoreRobot" | "AzureImportRobot" | "AzureStoreRobot" | "YoutubeStoreRobot" | "VimeoImportRobot" | "VimeoStoreRobot" | "AssemblySavejsonRobot" | "ScriptRunRobot" | "FileHashRobot" | "FileReadRobot" | "VideoOndemandRobot" | "FileFilterRobot" | "TextSpeakRobot" | "TextTranslateRobot" | "FilePreviewRobot" | "TusStoreRobot" | "ProgressSimulateRobot";
|
|
73480
74006
|
priceFactor: number;
|
|
73481
74007
|
queueSlotCount: number;
|
|
73482
74008
|
isAllowedForUrlTransform: boolean;
|
|
@@ -73530,7 +74056,7 @@ export declare const robotsMeta: {
|
|
|
73530
74056
|
uses_tools?: ("ffmpeg" | "imagemagick")[] | undefined;
|
|
73531
74057
|
};
|
|
73532
74058
|
fileReadMeta: {
|
|
73533
|
-
name: "AiChatRobot" | "UploadHandleRobot" | "FileServeRobot" | "FileWatermarkRobot" | "FileVerifyRobot" | "EdglyDeliverRobot" | "TlcdnDeliverRobot" | "VideoSubtitleRobot" | "VideoEncodeRobot" | "VideoAdaptiveRobot" | "VideoMergeRobot" | "VideoConcatRobot" | "AudioWaveformRobot" | "AudioEncodeRobot" | "AudioLoopRobot" | "AudioConcatRobot" | "AudioMergeRobot" | "AudioArtworkRobot" | "ImageFacedetectRobot" | "ImageDescribeRobot" | "ImageOcrRobot" | "ImageBgremoveRobot" | "ImageGenerateRobot" | "DocumentOcrRobot" | "SpeechTranscribeRobot" | "VideoThumbsRobot" | "FileVirusscanRobot" | "ImageOptimizeRobot" | "FileCompressRobot" | "MetaReadRobot" | "FileDecompressRobot" | "MetaWriteRobot" | "DocumentThumbsRobot" | "DocumentConvertRobot" | "DocumentMergeRobot" | "DocumentSplitRobot" | "DocumentAutorotateRobot" | "HtmlConvertRobot" | "ImageResizeRobot" | "ImageMergeRobot" | "S3ImportRobot" | "S3StoreRobot" | "DigitalOceanImportRobot" | "DigitalOceanStoreRobot" | "BackblazeImportRobot" | "BackblazeStoreRobot" | "MinioImportRobot" | "TigrisImportRobot" | "CloudflareImportRobot" | "SupabaseImportRobot" | "MinioStoreRobot" | "TigrisStoreRobot" | "CloudflareStoreRobot" | "SupabaseStoreRobot" | "WasabiImportRobot" | "WasabiStoreRobot" | "SwiftImportRobot" | "SwiftStoreRobot" | "GoogleImportRobot" | "GoogleStoreRobot" | "DropboxImportRobot" | "DropboxStoreRobot" | "HttpImportRobot" | "SftpImportRobot" | "SftpStoreRobot" | "FtpImportRobot" | "FtpStoreRobot" | "CloudfilesImportRobot" | "CloudfilesStoreRobot" | "AzureImportRobot" | "AzureStoreRobot" | "YoutubeStoreRobot" | "VimeoImportRobot" | "VimeoStoreRobot" | "AssemblySavejsonRobot" | "ScriptRunRobot" | "FileHashRobot" | "FileReadRobot" | "VideoOndemandRobot" | "FileFilterRobot" | "TextSpeakRobot" | "TextTranslateRobot" | "FilePreviewRobot" | "TusStoreRobot" | "ProgressSimulateRobot";
|
|
74059
|
+
name: "AiChatRobot" | "UploadHandleRobot" | "FileServeRobot" | "FileWatermarkRobot" | "FileVerifyRobot" | "EdglyDeliverRobot" | "TlcdnDeliverRobot" | "VideoSubtitleRobot" | "VideoEncodeRobot" | "VideoAdaptiveRobot" | "VideoMergeRobot" | "VideoConcatRobot" | "AudioWaveformRobot" | "AudioEncodeRobot" | "AudioLoopRobot" | "AudioConcatRobot" | "AudioMergeRobot" | "AudioArtworkRobot" | "ImageFacedetectRobot" | "ImageDescribeRobot" | "ImageOcrRobot" | "ImageBgremoveRobot" | "ImageGenerateRobot" | "DocumentOcrRobot" | "SpeechTranscribeRobot" | "VideoThumbsRobot" | "FileVirusscanRobot" | "ImageOptimizeRobot" | "FileCompressRobot" | "MetaReadRobot" | "FileDecompressRobot" | "MetaWriteRobot" | "DocumentThumbsRobot" | "DocumentConvertRobot" | "DocumentMergeRobot" | "DocumentSplitRobot" | "DocumentOptimizeRobot" | "DocumentAutorotateRobot" | "HtmlConvertRobot" | "ImageResizeRobot" | "ImageMergeRobot" | "S3ImportRobot" | "S3StoreRobot" | "DigitalOceanImportRobot" | "DigitalOceanStoreRobot" | "BackblazeImportRobot" | "BackblazeStoreRobot" | "MinioImportRobot" | "TigrisImportRobot" | "CloudflareImportRobot" | "SupabaseImportRobot" | "MinioStoreRobot" | "TigrisStoreRobot" | "CloudflareStoreRobot" | "SupabaseStoreRobot" | "WasabiImportRobot" | "WasabiStoreRobot" | "SwiftImportRobot" | "SwiftStoreRobot" | "GoogleImportRobot" | "GoogleStoreRobot" | "DropboxImportRobot" | "DropboxStoreRobot" | "HttpImportRobot" | "SftpImportRobot" | "SftpStoreRobot" | "FtpImportRobot" | "FtpStoreRobot" | "CloudfilesImportRobot" | "CloudfilesStoreRobot" | "AzureImportRobot" | "AzureStoreRobot" | "YoutubeStoreRobot" | "VimeoImportRobot" | "VimeoStoreRobot" | "AssemblySavejsonRobot" | "ScriptRunRobot" | "FileHashRobot" | "FileReadRobot" | "VideoOndemandRobot" | "FileFilterRobot" | "TextSpeakRobot" | "TextTranslateRobot" | "FilePreviewRobot" | "TusStoreRobot" | "ProgressSimulateRobot";
|
|
73534
74060
|
priceFactor: number;
|
|
73535
74061
|
queueSlotCount: number;
|
|
73536
74062
|
isAllowedForUrlTransform: boolean;
|
|
@@ -73584,7 +74110,7 @@ export declare const robotsMeta: {
|
|
|
73584
74110
|
uses_tools?: ("ffmpeg" | "imagemagick")[] | undefined;
|
|
73585
74111
|
};
|
|
73586
74112
|
fileServeMeta: {
|
|
73587
|
-
name: "AiChatRobot" | "UploadHandleRobot" | "FileServeRobot" | "FileWatermarkRobot" | "FileVerifyRobot" | "EdglyDeliverRobot" | "TlcdnDeliverRobot" | "VideoSubtitleRobot" | "VideoEncodeRobot" | "VideoAdaptiveRobot" | "VideoMergeRobot" | "VideoConcatRobot" | "AudioWaveformRobot" | "AudioEncodeRobot" | "AudioLoopRobot" | "AudioConcatRobot" | "AudioMergeRobot" | "AudioArtworkRobot" | "ImageFacedetectRobot" | "ImageDescribeRobot" | "ImageOcrRobot" | "ImageBgremoveRobot" | "ImageGenerateRobot" | "DocumentOcrRobot" | "SpeechTranscribeRobot" | "VideoThumbsRobot" | "FileVirusscanRobot" | "ImageOptimizeRobot" | "FileCompressRobot" | "MetaReadRobot" | "FileDecompressRobot" | "MetaWriteRobot" | "DocumentThumbsRobot" | "DocumentConvertRobot" | "DocumentMergeRobot" | "DocumentSplitRobot" | "DocumentAutorotateRobot" | "HtmlConvertRobot" | "ImageResizeRobot" | "ImageMergeRobot" | "S3ImportRobot" | "S3StoreRobot" | "DigitalOceanImportRobot" | "DigitalOceanStoreRobot" | "BackblazeImportRobot" | "BackblazeStoreRobot" | "MinioImportRobot" | "TigrisImportRobot" | "CloudflareImportRobot" | "SupabaseImportRobot" | "MinioStoreRobot" | "TigrisStoreRobot" | "CloudflareStoreRobot" | "SupabaseStoreRobot" | "WasabiImportRobot" | "WasabiStoreRobot" | "SwiftImportRobot" | "SwiftStoreRobot" | "GoogleImportRobot" | "GoogleStoreRobot" | "DropboxImportRobot" | "DropboxStoreRobot" | "HttpImportRobot" | "SftpImportRobot" | "SftpStoreRobot" | "FtpImportRobot" | "FtpStoreRobot" | "CloudfilesImportRobot" | "CloudfilesStoreRobot" | "AzureImportRobot" | "AzureStoreRobot" | "YoutubeStoreRobot" | "VimeoImportRobot" | "VimeoStoreRobot" | "AssemblySavejsonRobot" | "ScriptRunRobot" | "FileHashRobot" | "FileReadRobot" | "VideoOndemandRobot" | "FileFilterRobot" | "TextSpeakRobot" | "TextTranslateRobot" | "FilePreviewRobot" | "TusStoreRobot" | "ProgressSimulateRobot";
|
|
74113
|
+
name: "AiChatRobot" | "UploadHandleRobot" | "FileServeRobot" | "FileWatermarkRobot" | "FileVerifyRobot" | "EdglyDeliverRobot" | "TlcdnDeliverRobot" | "VideoSubtitleRobot" | "VideoEncodeRobot" | "VideoAdaptiveRobot" | "VideoMergeRobot" | "VideoConcatRobot" | "AudioWaveformRobot" | "AudioEncodeRobot" | "AudioLoopRobot" | "AudioConcatRobot" | "AudioMergeRobot" | "AudioArtworkRobot" | "ImageFacedetectRobot" | "ImageDescribeRobot" | "ImageOcrRobot" | "ImageBgremoveRobot" | "ImageGenerateRobot" | "DocumentOcrRobot" | "SpeechTranscribeRobot" | "VideoThumbsRobot" | "FileVirusscanRobot" | "ImageOptimizeRobot" | "FileCompressRobot" | "MetaReadRobot" | "FileDecompressRobot" | "MetaWriteRobot" | "DocumentThumbsRobot" | "DocumentConvertRobot" | "DocumentMergeRobot" | "DocumentSplitRobot" | "DocumentOptimizeRobot" | "DocumentAutorotateRobot" | "HtmlConvertRobot" | "ImageResizeRobot" | "ImageMergeRobot" | "S3ImportRobot" | "S3StoreRobot" | "DigitalOceanImportRobot" | "DigitalOceanStoreRobot" | "BackblazeImportRobot" | "BackblazeStoreRobot" | "MinioImportRobot" | "TigrisImportRobot" | "CloudflareImportRobot" | "SupabaseImportRobot" | "MinioStoreRobot" | "TigrisStoreRobot" | "CloudflareStoreRobot" | "SupabaseStoreRobot" | "WasabiImportRobot" | "WasabiStoreRobot" | "SwiftImportRobot" | "SwiftStoreRobot" | "GoogleImportRobot" | "GoogleStoreRobot" | "DropboxImportRobot" | "DropboxStoreRobot" | "HttpImportRobot" | "SftpImportRobot" | "SftpStoreRobot" | "FtpImportRobot" | "FtpStoreRobot" | "CloudfilesImportRobot" | "CloudfilesStoreRobot" | "AzureImportRobot" | "AzureStoreRobot" | "YoutubeStoreRobot" | "VimeoImportRobot" | "VimeoStoreRobot" | "AssemblySavejsonRobot" | "ScriptRunRobot" | "FileHashRobot" | "FileReadRobot" | "VideoOndemandRobot" | "FileFilterRobot" | "TextSpeakRobot" | "TextTranslateRobot" | "FilePreviewRobot" | "TusStoreRobot" | "ProgressSimulateRobot";
|
|
73588
74114
|
priceFactor: number;
|
|
73589
74115
|
queueSlotCount: number;
|
|
73590
74116
|
isAllowedForUrlTransform: boolean;
|
|
@@ -73638,7 +74164,7 @@ export declare const robotsMeta: {
|
|
|
73638
74164
|
uses_tools?: ("ffmpeg" | "imagemagick")[] | undefined;
|
|
73639
74165
|
};
|
|
73640
74166
|
fileVerifyMeta: {
|
|
73641
|
-
name: "AiChatRobot" | "UploadHandleRobot" | "FileServeRobot" | "FileWatermarkRobot" | "FileVerifyRobot" | "EdglyDeliverRobot" | "TlcdnDeliverRobot" | "VideoSubtitleRobot" | "VideoEncodeRobot" | "VideoAdaptiveRobot" | "VideoMergeRobot" | "VideoConcatRobot" | "AudioWaveformRobot" | "AudioEncodeRobot" | "AudioLoopRobot" | "AudioConcatRobot" | "AudioMergeRobot" | "AudioArtworkRobot" | "ImageFacedetectRobot" | "ImageDescribeRobot" | "ImageOcrRobot" | "ImageBgremoveRobot" | "ImageGenerateRobot" | "DocumentOcrRobot" | "SpeechTranscribeRobot" | "VideoThumbsRobot" | "FileVirusscanRobot" | "ImageOptimizeRobot" | "FileCompressRobot" | "MetaReadRobot" | "FileDecompressRobot" | "MetaWriteRobot" | "DocumentThumbsRobot" | "DocumentConvertRobot" | "DocumentMergeRobot" | "DocumentSplitRobot" | "DocumentAutorotateRobot" | "HtmlConvertRobot" | "ImageResizeRobot" | "ImageMergeRobot" | "S3ImportRobot" | "S3StoreRobot" | "DigitalOceanImportRobot" | "DigitalOceanStoreRobot" | "BackblazeImportRobot" | "BackblazeStoreRobot" | "MinioImportRobot" | "TigrisImportRobot" | "CloudflareImportRobot" | "SupabaseImportRobot" | "MinioStoreRobot" | "TigrisStoreRobot" | "CloudflareStoreRobot" | "SupabaseStoreRobot" | "WasabiImportRobot" | "WasabiStoreRobot" | "SwiftImportRobot" | "SwiftStoreRobot" | "GoogleImportRobot" | "GoogleStoreRobot" | "DropboxImportRobot" | "DropboxStoreRobot" | "HttpImportRobot" | "SftpImportRobot" | "SftpStoreRobot" | "FtpImportRobot" | "FtpStoreRobot" | "CloudfilesImportRobot" | "CloudfilesStoreRobot" | "AzureImportRobot" | "AzureStoreRobot" | "YoutubeStoreRobot" | "VimeoImportRobot" | "VimeoStoreRobot" | "AssemblySavejsonRobot" | "ScriptRunRobot" | "FileHashRobot" | "FileReadRobot" | "VideoOndemandRobot" | "FileFilterRobot" | "TextSpeakRobot" | "TextTranslateRobot" | "FilePreviewRobot" | "TusStoreRobot" | "ProgressSimulateRobot";
|
|
74167
|
+
name: "AiChatRobot" | "UploadHandleRobot" | "FileServeRobot" | "FileWatermarkRobot" | "FileVerifyRobot" | "EdglyDeliverRobot" | "TlcdnDeliverRobot" | "VideoSubtitleRobot" | "VideoEncodeRobot" | "VideoAdaptiveRobot" | "VideoMergeRobot" | "VideoConcatRobot" | "AudioWaveformRobot" | "AudioEncodeRobot" | "AudioLoopRobot" | "AudioConcatRobot" | "AudioMergeRobot" | "AudioArtworkRobot" | "ImageFacedetectRobot" | "ImageDescribeRobot" | "ImageOcrRobot" | "ImageBgremoveRobot" | "ImageGenerateRobot" | "DocumentOcrRobot" | "SpeechTranscribeRobot" | "VideoThumbsRobot" | "FileVirusscanRobot" | "ImageOptimizeRobot" | "FileCompressRobot" | "MetaReadRobot" | "FileDecompressRobot" | "MetaWriteRobot" | "DocumentThumbsRobot" | "DocumentConvertRobot" | "DocumentMergeRobot" | "DocumentSplitRobot" | "DocumentOptimizeRobot" | "DocumentAutorotateRobot" | "HtmlConvertRobot" | "ImageResizeRobot" | "ImageMergeRobot" | "S3ImportRobot" | "S3StoreRobot" | "DigitalOceanImportRobot" | "DigitalOceanStoreRobot" | "BackblazeImportRobot" | "BackblazeStoreRobot" | "MinioImportRobot" | "TigrisImportRobot" | "CloudflareImportRobot" | "SupabaseImportRobot" | "MinioStoreRobot" | "TigrisStoreRobot" | "CloudflareStoreRobot" | "SupabaseStoreRobot" | "WasabiImportRobot" | "WasabiStoreRobot" | "SwiftImportRobot" | "SwiftStoreRobot" | "GoogleImportRobot" | "GoogleStoreRobot" | "DropboxImportRobot" | "DropboxStoreRobot" | "HttpImportRobot" | "SftpImportRobot" | "SftpStoreRobot" | "FtpImportRobot" | "FtpStoreRobot" | "CloudfilesImportRobot" | "CloudfilesStoreRobot" | "AzureImportRobot" | "AzureStoreRobot" | "YoutubeStoreRobot" | "VimeoImportRobot" | "VimeoStoreRobot" | "AssemblySavejsonRobot" | "ScriptRunRobot" | "FileHashRobot" | "FileReadRobot" | "VideoOndemandRobot" | "FileFilterRobot" | "TextSpeakRobot" | "TextTranslateRobot" | "FilePreviewRobot" | "TusStoreRobot" | "ProgressSimulateRobot";
|
|
73642
74168
|
priceFactor: number;
|
|
73643
74169
|
queueSlotCount: number;
|
|
73644
74170
|
isAllowedForUrlTransform: boolean;
|
|
@@ -73692,7 +74218,7 @@ export declare const robotsMeta: {
|
|
|
73692
74218
|
uses_tools?: ("ffmpeg" | "imagemagick")[] | undefined;
|
|
73693
74219
|
};
|
|
73694
74220
|
fileVirusscanMeta: {
|
|
73695
|
-
name: "AiChatRobot" | "UploadHandleRobot" | "FileServeRobot" | "FileWatermarkRobot" | "FileVerifyRobot" | "EdglyDeliverRobot" | "TlcdnDeliverRobot" | "VideoSubtitleRobot" | "VideoEncodeRobot" | "VideoAdaptiveRobot" | "VideoMergeRobot" | "VideoConcatRobot" | "AudioWaveformRobot" | "AudioEncodeRobot" | "AudioLoopRobot" | "AudioConcatRobot" | "AudioMergeRobot" | "AudioArtworkRobot" | "ImageFacedetectRobot" | "ImageDescribeRobot" | "ImageOcrRobot" | "ImageBgremoveRobot" | "ImageGenerateRobot" | "DocumentOcrRobot" | "SpeechTranscribeRobot" | "VideoThumbsRobot" | "FileVirusscanRobot" | "ImageOptimizeRobot" | "FileCompressRobot" | "MetaReadRobot" | "FileDecompressRobot" | "MetaWriteRobot" | "DocumentThumbsRobot" | "DocumentConvertRobot" | "DocumentMergeRobot" | "DocumentSplitRobot" | "DocumentAutorotateRobot" | "HtmlConvertRobot" | "ImageResizeRobot" | "ImageMergeRobot" | "S3ImportRobot" | "S3StoreRobot" | "DigitalOceanImportRobot" | "DigitalOceanStoreRobot" | "BackblazeImportRobot" | "BackblazeStoreRobot" | "MinioImportRobot" | "TigrisImportRobot" | "CloudflareImportRobot" | "SupabaseImportRobot" | "MinioStoreRobot" | "TigrisStoreRobot" | "CloudflareStoreRobot" | "SupabaseStoreRobot" | "WasabiImportRobot" | "WasabiStoreRobot" | "SwiftImportRobot" | "SwiftStoreRobot" | "GoogleImportRobot" | "GoogleStoreRobot" | "DropboxImportRobot" | "DropboxStoreRobot" | "HttpImportRobot" | "SftpImportRobot" | "SftpStoreRobot" | "FtpImportRobot" | "FtpStoreRobot" | "CloudfilesImportRobot" | "CloudfilesStoreRobot" | "AzureImportRobot" | "AzureStoreRobot" | "YoutubeStoreRobot" | "VimeoImportRobot" | "VimeoStoreRobot" | "AssemblySavejsonRobot" | "ScriptRunRobot" | "FileHashRobot" | "FileReadRobot" | "VideoOndemandRobot" | "FileFilterRobot" | "TextSpeakRobot" | "TextTranslateRobot" | "FilePreviewRobot" | "TusStoreRobot" | "ProgressSimulateRobot";
|
|
74221
|
+
name: "AiChatRobot" | "UploadHandleRobot" | "FileServeRobot" | "FileWatermarkRobot" | "FileVerifyRobot" | "EdglyDeliverRobot" | "TlcdnDeliverRobot" | "VideoSubtitleRobot" | "VideoEncodeRobot" | "VideoAdaptiveRobot" | "VideoMergeRobot" | "VideoConcatRobot" | "AudioWaveformRobot" | "AudioEncodeRobot" | "AudioLoopRobot" | "AudioConcatRobot" | "AudioMergeRobot" | "AudioArtworkRobot" | "ImageFacedetectRobot" | "ImageDescribeRobot" | "ImageOcrRobot" | "ImageBgremoveRobot" | "ImageGenerateRobot" | "DocumentOcrRobot" | "SpeechTranscribeRobot" | "VideoThumbsRobot" | "FileVirusscanRobot" | "ImageOptimizeRobot" | "FileCompressRobot" | "MetaReadRobot" | "FileDecompressRobot" | "MetaWriteRobot" | "DocumentThumbsRobot" | "DocumentConvertRobot" | "DocumentMergeRobot" | "DocumentSplitRobot" | "DocumentOptimizeRobot" | "DocumentAutorotateRobot" | "HtmlConvertRobot" | "ImageResizeRobot" | "ImageMergeRobot" | "S3ImportRobot" | "S3StoreRobot" | "DigitalOceanImportRobot" | "DigitalOceanStoreRobot" | "BackblazeImportRobot" | "BackblazeStoreRobot" | "MinioImportRobot" | "TigrisImportRobot" | "CloudflareImportRobot" | "SupabaseImportRobot" | "MinioStoreRobot" | "TigrisStoreRobot" | "CloudflareStoreRobot" | "SupabaseStoreRobot" | "WasabiImportRobot" | "WasabiStoreRobot" | "SwiftImportRobot" | "SwiftStoreRobot" | "GoogleImportRobot" | "GoogleStoreRobot" | "DropboxImportRobot" | "DropboxStoreRobot" | "HttpImportRobot" | "SftpImportRobot" | "SftpStoreRobot" | "FtpImportRobot" | "FtpStoreRobot" | "CloudfilesImportRobot" | "CloudfilesStoreRobot" | "AzureImportRobot" | "AzureStoreRobot" | "YoutubeStoreRobot" | "VimeoImportRobot" | "VimeoStoreRobot" | "AssemblySavejsonRobot" | "ScriptRunRobot" | "FileHashRobot" | "FileReadRobot" | "VideoOndemandRobot" | "FileFilterRobot" | "TextSpeakRobot" | "TextTranslateRobot" | "FilePreviewRobot" | "TusStoreRobot" | "ProgressSimulateRobot";
|
|
73696
74222
|
priceFactor: number;
|
|
73697
74223
|
queueSlotCount: number;
|
|
73698
74224
|
isAllowedForUrlTransform: boolean;
|
|
@@ -73746,7 +74272,7 @@ export declare const robotsMeta: {
|
|
|
73746
74272
|
uses_tools?: ("ffmpeg" | "imagemagick")[] | undefined;
|
|
73747
74273
|
};
|
|
73748
74274
|
ftpImportMeta: {
|
|
73749
|
-
name: "AiChatRobot" | "UploadHandleRobot" | "FileServeRobot" | "FileWatermarkRobot" | "FileVerifyRobot" | "EdglyDeliverRobot" | "TlcdnDeliverRobot" | "VideoSubtitleRobot" | "VideoEncodeRobot" | "VideoAdaptiveRobot" | "VideoMergeRobot" | "VideoConcatRobot" | "AudioWaveformRobot" | "AudioEncodeRobot" | "AudioLoopRobot" | "AudioConcatRobot" | "AudioMergeRobot" | "AudioArtworkRobot" | "ImageFacedetectRobot" | "ImageDescribeRobot" | "ImageOcrRobot" | "ImageBgremoveRobot" | "ImageGenerateRobot" | "DocumentOcrRobot" | "SpeechTranscribeRobot" | "VideoThumbsRobot" | "FileVirusscanRobot" | "ImageOptimizeRobot" | "FileCompressRobot" | "MetaReadRobot" | "FileDecompressRobot" | "MetaWriteRobot" | "DocumentThumbsRobot" | "DocumentConvertRobot" | "DocumentMergeRobot" | "DocumentSplitRobot" | "DocumentAutorotateRobot" | "HtmlConvertRobot" | "ImageResizeRobot" | "ImageMergeRobot" | "S3ImportRobot" | "S3StoreRobot" | "DigitalOceanImportRobot" | "DigitalOceanStoreRobot" | "BackblazeImportRobot" | "BackblazeStoreRobot" | "MinioImportRobot" | "TigrisImportRobot" | "CloudflareImportRobot" | "SupabaseImportRobot" | "MinioStoreRobot" | "TigrisStoreRobot" | "CloudflareStoreRobot" | "SupabaseStoreRobot" | "WasabiImportRobot" | "WasabiStoreRobot" | "SwiftImportRobot" | "SwiftStoreRobot" | "GoogleImportRobot" | "GoogleStoreRobot" | "DropboxImportRobot" | "DropboxStoreRobot" | "HttpImportRobot" | "SftpImportRobot" | "SftpStoreRobot" | "FtpImportRobot" | "FtpStoreRobot" | "CloudfilesImportRobot" | "CloudfilesStoreRobot" | "AzureImportRobot" | "AzureStoreRobot" | "YoutubeStoreRobot" | "VimeoImportRobot" | "VimeoStoreRobot" | "AssemblySavejsonRobot" | "ScriptRunRobot" | "FileHashRobot" | "FileReadRobot" | "VideoOndemandRobot" | "FileFilterRobot" | "TextSpeakRobot" | "TextTranslateRobot" | "FilePreviewRobot" | "TusStoreRobot" | "ProgressSimulateRobot";
|
|
74275
|
+
name: "AiChatRobot" | "UploadHandleRobot" | "FileServeRobot" | "FileWatermarkRobot" | "FileVerifyRobot" | "EdglyDeliverRobot" | "TlcdnDeliverRobot" | "VideoSubtitleRobot" | "VideoEncodeRobot" | "VideoAdaptiveRobot" | "VideoMergeRobot" | "VideoConcatRobot" | "AudioWaveformRobot" | "AudioEncodeRobot" | "AudioLoopRobot" | "AudioConcatRobot" | "AudioMergeRobot" | "AudioArtworkRobot" | "ImageFacedetectRobot" | "ImageDescribeRobot" | "ImageOcrRobot" | "ImageBgremoveRobot" | "ImageGenerateRobot" | "DocumentOcrRobot" | "SpeechTranscribeRobot" | "VideoThumbsRobot" | "FileVirusscanRobot" | "ImageOptimizeRobot" | "FileCompressRobot" | "MetaReadRobot" | "FileDecompressRobot" | "MetaWriteRobot" | "DocumentThumbsRobot" | "DocumentConvertRobot" | "DocumentMergeRobot" | "DocumentSplitRobot" | "DocumentOptimizeRobot" | "DocumentAutorotateRobot" | "HtmlConvertRobot" | "ImageResizeRobot" | "ImageMergeRobot" | "S3ImportRobot" | "S3StoreRobot" | "DigitalOceanImportRobot" | "DigitalOceanStoreRobot" | "BackblazeImportRobot" | "BackblazeStoreRobot" | "MinioImportRobot" | "TigrisImportRobot" | "CloudflareImportRobot" | "SupabaseImportRobot" | "MinioStoreRobot" | "TigrisStoreRobot" | "CloudflareStoreRobot" | "SupabaseStoreRobot" | "WasabiImportRobot" | "WasabiStoreRobot" | "SwiftImportRobot" | "SwiftStoreRobot" | "GoogleImportRobot" | "GoogleStoreRobot" | "DropboxImportRobot" | "DropboxStoreRobot" | "HttpImportRobot" | "SftpImportRobot" | "SftpStoreRobot" | "FtpImportRobot" | "FtpStoreRobot" | "CloudfilesImportRobot" | "CloudfilesStoreRobot" | "AzureImportRobot" | "AzureStoreRobot" | "YoutubeStoreRobot" | "VimeoImportRobot" | "VimeoStoreRobot" | "AssemblySavejsonRobot" | "ScriptRunRobot" | "FileHashRobot" | "FileReadRobot" | "VideoOndemandRobot" | "FileFilterRobot" | "TextSpeakRobot" | "TextTranslateRobot" | "FilePreviewRobot" | "TusStoreRobot" | "ProgressSimulateRobot";
|
|
73750
74276
|
priceFactor: number;
|
|
73751
74277
|
queueSlotCount: number;
|
|
73752
74278
|
isAllowedForUrlTransform: boolean;
|
|
@@ -73800,7 +74326,7 @@ export declare const robotsMeta: {
|
|
|
73800
74326
|
uses_tools?: ("ffmpeg" | "imagemagick")[] | undefined;
|
|
73801
74327
|
};
|
|
73802
74328
|
ftpStoreMeta: {
|
|
73803
|
-
name: "AiChatRobot" | "UploadHandleRobot" | "FileServeRobot" | "FileWatermarkRobot" | "FileVerifyRobot" | "EdglyDeliverRobot" | "TlcdnDeliverRobot" | "VideoSubtitleRobot" | "VideoEncodeRobot" | "VideoAdaptiveRobot" | "VideoMergeRobot" | "VideoConcatRobot" | "AudioWaveformRobot" | "AudioEncodeRobot" | "AudioLoopRobot" | "AudioConcatRobot" | "AudioMergeRobot" | "AudioArtworkRobot" | "ImageFacedetectRobot" | "ImageDescribeRobot" | "ImageOcrRobot" | "ImageBgremoveRobot" | "ImageGenerateRobot" | "DocumentOcrRobot" | "SpeechTranscribeRobot" | "VideoThumbsRobot" | "FileVirusscanRobot" | "ImageOptimizeRobot" | "FileCompressRobot" | "MetaReadRobot" | "FileDecompressRobot" | "MetaWriteRobot" | "DocumentThumbsRobot" | "DocumentConvertRobot" | "DocumentMergeRobot" | "DocumentSplitRobot" | "DocumentAutorotateRobot" | "HtmlConvertRobot" | "ImageResizeRobot" | "ImageMergeRobot" | "S3ImportRobot" | "S3StoreRobot" | "DigitalOceanImportRobot" | "DigitalOceanStoreRobot" | "BackblazeImportRobot" | "BackblazeStoreRobot" | "MinioImportRobot" | "TigrisImportRobot" | "CloudflareImportRobot" | "SupabaseImportRobot" | "MinioStoreRobot" | "TigrisStoreRobot" | "CloudflareStoreRobot" | "SupabaseStoreRobot" | "WasabiImportRobot" | "WasabiStoreRobot" | "SwiftImportRobot" | "SwiftStoreRobot" | "GoogleImportRobot" | "GoogleStoreRobot" | "DropboxImportRobot" | "DropboxStoreRobot" | "HttpImportRobot" | "SftpImportRobot" | "SftpStoreRobot" | "FtpImportRobot" | "FtpStoreRobot" | "CloudfilesImportRobot" | "CloudfilesStoreRobot" | "AzureImportRobot" | "AzureStoreRobot" | "YoutubeStoreRobot" | "VimeoImportRobot" | "VimeoStoreRobot" | "AssemblySavejsonRobot" | "ScriptRunRobot" | "FileHashRobot" | "FileReadRobot" | "VideoOndemandRobot" | "FileFilterRobot" | "TextSpeakRobot" | "TextTranslateRobot" | "FilePreviewRobot" | "TusStoreRobot" | "ProgressSimulateRobot";
|
|
74329
|
+
name: "AiChatRobot" | "UploadHandleRobot" | "FileServeRobot" | "FileWatermarkRobot" | "FileVerifyRobot" | "EdglyDeliverRobot" | "TlcdnDeliverRobot" | "VideoSubtitleRobot" | "VideoEncodeRobot" | "VideoAdaptiveRobot" | "VideoMergeRobot" | "VideoConcatRobot" | "AudioWaveformRobot" | "AudioEncodeRobot" | "AudioLoopRobot" | "AudioConcatRobot" | "AudioMergeRobot" | "AudioArtworkRobot" | "ImageFacedetectRobot" | "ImageDescribeRobot" | "ImageOcrRobot" | "ImageBgremoveRobot" | "ImageGenerateRobot" | "DocumentOcrRobot" | "SpeechTranscribeRobot" | "VideoThumbsRobot" | "FileVirusscanRobot" | "ImageOptimizeRobot" | "FileCompressRobot" | "MetaReadRobot" | "FileDecompressRobot" | "MetaWriteRobot" | "DocumentThumbsRobot" | "DocumentConvertRobot" | "DocumentMergeRobot" | "DocumentSplitRobot" | "DocumentOptimizeRobot" | "DocumentAutorotateRobot" | "HtmlConvertRobot" | "ImageResizeRobot" | "ImageMergeRobot" | "S3ImportRobot" | "S3StoreRobot" | "DigitalOceanImportRobot" | "DigitalOceanStoreRobot" | "BackblazeImportRobot" | "BackblazeStoreRobot" | "MinioImportRobot" | "TigrisImportRobot" | "CloudflareImportRobot" | "SupabaseImportRobot" | "MinioStoreRobot" | "TigrisStoreRobot" | "CloudflareStoreRobot" | "SupabaseStoreRobot" | "WasabiImportRobot" | "WasabiStoreRobot" | "SwiftImportRobot" | "SwiftStoreRobot" | "GoogleImportRobot" | "GoogleStoreRobot" | "DropboxImportRobot" | "DropboxStoreRobot" | "HttpImportRobot" | "SftpImportRobot" | "SftpStoreRobot" | "FtpImportRobot" | "FtpStoreRobot" | "CloudfilesImportRobot" | "CloudfilesStoreRobot" | "AzureImportRobot" | "AzureStoreRobot" | "YoutubeStoreRobot" | "VimeoImportRobot" | "VimeoStoreRobot" | "AssemblySavejsonRobot" | "ScriptRunRobot" | "FileHashRobot" | "FileReadRobot" | "VideoOndemandRobot" | "FileFilterRobot" | "TextSpeakRobot" | "TextTranslateRobot" | "FilePreviewRobot" | "TusStoreRobot" | "ProgressSimulateRobot";
|
|
73804
74330
|
priceFactor: number;
|
|
73805
74331
|
queueSlotCount: number;
|
|
73806
74332
|
isAllowedForUrlTransform: boolean;
|
|
@@ -73854,7 +74380,7 @@ export declare const robotsMeta: {
|
|
|
73854
74380
|
uses_tools?: ("ffmpeg" | "imagemagick")[] | undefined;
|
|
73855
74381
|
};
|
|
73856
74382
|
googleImportMeta: {
|
|
73857
|
-
name: "AiChatRobot" | "UploadHandleRobot" | "FileServeRobot" | "FileWatermarkRobot" | "FileVerifyRobot" | "EdglyDeliverRobot" | "TlcdnDeliverRobot" | "VideoSubtitleRobot" | "VideoEncodeRobot" | "VideoAdaptiveRobot" | "VideoMergeRobot" | "VideoConcatRobot" | "AudioWaveformRobot" | "AudioEncodeRobot" | "AudioLoopRobot" | "AudioConcatRobot" | "AudioMergeRobot" | "AudioArtworkRobot" | "ImageFacedetectRobot" | "ImageDescribeRobot" | "ImageOcrRobot" | "ImageBgremoveRobot" | "ImageGenerateRobot" | "DocumentOcrRobot" | "SpeechTranscribeRobot" | "VideoThumbsRobot" | "FileVirusscanRobot" | "ImageOptimizeRobot" | "FileCompressRobot" | "MetaReadRobot" | "FileDecompressRobot" | "MetaWriteRobot" | "DocumentThumbsRobot" | "DocumentConvertRobot" | "DocumentMergeRobot" | "DocumentSplitRobot" | "DocumentAutorotateRobot" | "HtmlConvertRobot" | "ImageResizeRobot" | "ImageMergeRobot" | "S3ImportRobot" | "S3StoreRobot" | "DigitalOceanImportRobot" | "DigitalOceanStoreRobot" | "BackblazeImportRobot" | "BackblazeStoreRobot" | "MinioImportRobot" | "TigrisImportRobot" | "CloudflareImportRobot" | "SupabaseImportRobot" | "MinioStoreRobot" | "TigrisStoreRobot" | "CloudflareStoreRobot" | "SupabaseStoreRobot" | "WasabiImportRobot" | "WasabiStoreRobot" | "SwiftImportRobot" | "SwiftStoreRobot" | "GoogleImportRobot" | "GoogleStoreRobot" | "DropboxImportRobot" | "DropboxStoreRobot" | "HttpImportRobot" | "SftpImportRobot" | "SftpStoreRobot" | "FtpImportRobot" | "FtpStoreRobot" | "CloudfilesImportRobot" | "CloudfilesStoreRobot" | "AzureImportRobot" | "AzureStoreRobot" | "YoutubeStoreRobot" | "VimeoImportRobot" | "VimeoStoreRobot" | "AssemblySavejsonRobot" | "ScriptRunRobot" | "FileHashRobot" | "FileReadRobot" | "VideoOndemandRobot" | "FileFilterRobot" | "TextSpeakRobot" | "TextTranslateRobot" | "FilePreviewRobot" | "TusStoreRobot" | "ProgressSimulateRobot";
|
|
74383
|
+
name: "AiChatRobot" | "UploadHandleRobot" | "FileServeRobot" | "FileWatermarkRobot" | "FileVerifyRobot" | "EdglyDeliverRobot" | "TlcdnDeliverRobot" | "VideoSubtitleRobot" | "VideoEncodeRobot" | "VideoAdaptiveRobot" | "VideoMergeRobot" | "VideoConcatRobot" | "AudioWaveformRobot" | "AudioEncodeRobot" | "AudioLoopRobot" | "AudioConcatRobot" | "AudioMergeRobot" | "AudioArtworkRobot" | "ImageFacedetectRobot" | "ImageDescribeRobot" | "ImageOcrRobot" | "ImageBgremoveRobot" | "ImageGenerateRobot" | "DocumentOcrRobot" | "SpeechTranscribeRobot" | "VideoThumbsRobot" | "FileVirusscanRobot" | "ImageOptimizeRobot" | "FileCompressRobot" | "MetaReadRobot" | "FileDecompressRobot" | "MetaWriteRobot" | "DocumentThumbsRobot" | "DocumentConvertRobot" | "DocumentMergeRobot" | "DocumentSplitRobot" | "DocumentOptimizeRobot" | "DocumentAutorotateRobot" | "HtmlConvertRobot" | "ImageResizeRobot" | "ImageMergeRobot" | "S3ImportRobot" | "S3StoreRobot" | "DigitalOceanImportRobot" | "DigitalOceanStoreRobot" | "BackblazeImportRobot" | "BackblazeStoreRobot" | "MinioImportRobot" | "TigrisImportRobot" | "CloudflareImportRobot" | "SupabaseImportRobot" | "MinioStoreRobot" | "TigrisStoreRobot" | "CloudflareStoreRobot" | "SupabaseStoreRobot" | "WasabiImportRobot" | "WasabiStoreRobot" | "SwiftImportRobot" | "SwiftStoreRobot" | "GoogleImportRobot" | "GoogleStoreRobot" | "DropboxImportRobot" | "DropboxStoreRobot" | "HttpImportRobot" | "SftpImportRobot" | "SftpStoreRobot" | "FtpImportRobot" | "FtpStoreRobot" | "CloudfilesImportRobot" | "CloudfilesStoreRobot" | "AzureImportRobot" | "AzureStoreRobot" | "YoutubeStoreRobot" | "VimeoImportRobot" | "VimeoStoreRobot" | "AssemblySavejsonRobot" | "ScriptRunRobot" | "FileHashRobot" | "FileReadRobot" | "VideoOndemandRobot" | "FileFilterRobot" | "TextSpeakRobot" | "TextTranslateRobot" | "FilePreviewRobot" | "TusStoreRobot" | "ProgressSimulateRobot";
|
|
73858
74384
|
priceFactor: number;
|
|
73859
74385
|
queueSlotCount: number;
|
|
73860
74386
|
isAllowedForUrlTransform: boolean;
|
|
@@ -73908,7 +74434,7 @@ export declare const robotsMeta: {
|
|
|
73908
74434
|
uses_tools?: ("ffmpeg" | "imagemagick")[] | undefined;
|
|
73909
74435
|
};
|
|
73910
74436
|
googleStoreMeta: {
|
|
73911
|
-
name: "AiChatRobot" | "UploadHandleRobot" | "FileServeRobot" | "FileWatermarkRobot" | "FileVerifyRobot" | "EdglyDeliverRobot" | "TlcdnDeliverRobot" | "VideoSubtitleRobot" | "VideoEncodeRobot" | "VideoAdaptiveRobot" | "VideoMergeRobot" | "VideoConcatRobot" | "AudioWaveformRobot" | "AudioEncodeRobot" | "AudioLoopRobot" | "AudioConcatRobot" | "AudioMergeRobot" | "AudioArtworkRobot" | "ImageFacedetectRobot" | "ImageDescribeRobot" | "ImageOcrRobot" | "ImageBgremoveRobot" | "ImageGenerateRobot" | "DocumentOcrRobot" | "SpeechTranscribeRobot" | "VideoThumbsRobot" | "FileVirusscanRobot" | "ImageOptimizeRobot" | "FileCompressRobot" | "MetaReadRobot" | "FileDecompressRobot" | "MetaWriteRobot" | "DocumentThumbsRobot" | "DocumentConvertRobot" | "DocumentMergeRobot" | "DocumentSplitRobot" | "DocumentAutorotateRobot" | "HtmlConvertRobot" | "ImageResizeRobot" | "ImageMergeRobot" | "S3ImportRobot" | "S3StoreRobot" | "DigitalOceanImportRobot" | "DigitalOceanStoreRobot" | "BackblazeImportRobot" | "BackblazeStoreRobot" | "MinioImportRobot" | "TigrisImportRobot" | "CloudflareImportRobot" | "SupabaseImportRobot" | "MinioStoreRobot" | "TigrisStoreRobot" | "CloudflareStoreRobot" | "SupabaseStoreRobot" | "WasabiImportRobot" | "WasabiStoreRobot" | "SwiftImportRobot" | "SwiftStoreRobot" | "GoogleImportRobot" | "GoogleStoreRobot" | "DropboxImportRobot" | "DropboxStoreRobot" | "HttpImportRobot" | "SftpImportRobot" | "SftpStoreRobot" | "FtpImportRobot" | "FtpStoreRobot" | "CloudfilesImportRobot" | "CloudfilesStoreRobot" | "AzureImportRobot" | "AzureStoreRobot" | "YoutubeStoreRobot" | "VimeoImportRobot" | "VimeoStoreRobot" | "AssemblySavejsonRobot" | "ScriptRunRobot" | "FileHashRobot" | "FileReadRobot" | "VideoOndemandRobot" | "FileFilterRobot" | "TextSpeakRobot" | "TextTranslateRobot" | "FilePreviewRobot" | "TusStoreRobot" | "ProgressSimulateRobot";
|
|
74437
|
+
name: "AiChatRobot" | "UploadHandleRobot" | "FileServeRobot" | "FileWatermarkRobot" | "FileVerifyRobot" | "EdglyDeliverRobot" | "TlcdnDeliverRobot" | "VideoSubtitleRobot" | "VideoEncodeRobot" | "VideoAdaptiveRobot" | "VideoMergeRobot" | "VideoConcatRobot" | "AudioWaveformRobot" | "AudioEncodeRobot" | "AudioLoopRobot" | "AudioConcatRobot" | "AudioMergeRobot" | "AudioArtworkRobot" | "ImageFacedetectRobot" | "ImageDescribeRobot" | "ImageOcrRobot" | "ImageBgremoveRobot" | "ImageGenerateRobot" | "DocumentOcrRobot" | "SpeechTranscribeRobot" | "VideoThumbsRobot" | "FileVirusscanRobot" | "ImageOptimizeRobot" | "FileCompressRobot" | "MetaReadRobot" | "FileDecompressRobot" | "MetaWriteRobot" | "DocumentThumbsRobot" | "DocumentConvertRobot" | "DocumentMergeRobot" | "DocumentSplitRobot" | "DocumentOptimizeRobot" | "DocumentAutorotateRobot" | "HtmlConvertRobot" | "ImageResizeRobot" | "ImageMergeRobot" | "S3ImportRobot" | "S3StoreRobot" | "DigitalOceanImportRobot" | "DigitalOceanStoreRobot" | "BackblazeImportRobot" | "BackblazeStoreRobot" | "MinioImportRobot" | "TigrisImportRobot" | "CloudflareImportRobot" | "SupabaseImportRobot" | "MinioStoreRobot" | "TigrisStoreRobot" | "CloudflareStoreRobot" | "SupabaseStoreRobot" | "WasabiImportRobot" | "WasabiStoreRobot" | "SwiftImportRobot" | "SwiftStoreRobot" | "GoogleImportRobot" | "GoogleStoreRobot" | "DropboxImportRobot" | "DropboxStoreRobot" | "HttpImportRobot" | "SftpImportRobot" | "SftpStoreRobot" | "FtpImportRobot" | "FtpStoreRobot" | "CloudfilesImportRobot" | "CloudfilesStoreRobot" | "AzureImportRobot" | "AzureStoreRobot" | "YoutubeStoreRobot" | "VimeoImportRobot" | "VimeoStoreRobot" | "AssemblySavejsonRobot" | "ScriptRunRobot" | "FileHashRobot" | "FileReadRobot" | "VideoOndemandRobot" | "FileFilterRobot" | "TextSpeakRobot" | "TextTranslateRobot" | "FilePreviewRobot" | "TusStoreRobot" | "ProgressSimulateRobot";
|
|
73912
74438
|
priceFactor: number;
|
|
73913
74439
|
queueSlotCount: number;
|
|
73914
74440
|
isAllowedForUrlTransform: boolean;
|
|
@@ -73962,7 +74488,7 @@ export declare const robotsMeta: {
|
|
|
73962
74488
|
uses_tools?: ("ffmpeg" | "imagemagick")[] | undefined;
|
|
73963
74489
|
};
|
|
73964
74490
|
htmlConvertMeta: {
|
|
73965
|
-
name: "AiChatRobot" | "UploadHandleRobot" | "FileServeRobot" | "FileWatermarkRobot" | "FileVerifyRobot" | "EdglyDeliverRobot" | "TlcdnDeliverRobot" | "VideoSubtitleRobot" | "VideoEncodeRobot" | "VideoAdaptiveRobot" | "VideoMergeRobot" | "VideoConcatRobot" | "AudioWaveformRobot" | "AudioEncodeRobot" | "AudioLoopRobot" | "AudioConcatRobot" | "AudioMergeRobot" | "AudioArtworkRobot" | "ImageFacedetectRobot" | "ImageDescribeRobot" | "ImageOcrRobot" | "ImageBgremoveRobot" | "ImageGenerateRobot" | "DocumentOcrRobot" | "SpeechTranscribeRobot" | "VideoThumbsRobot" | "FileVirusscanRobot" | "ImageOptimizeRobot" | "FileCompressRobot" | "MetaReadRobot" | "FileDecompressRobot" | "MetaWriteRobot" | "DocumentThumbsRobot" | "DocumentConvertRobot" | "DocumentMergeRobot" | "DocumentSplitRobot" | "DocumentAutorotateRobot" | "HtmlConvertRobot" | "ImageResizeRobot" | "ImageMergeRobot" | "S3ImportRobot" | "S3StoreRobot" | "DigitalOceanImportRobot" | "DigitalOceanStoreRobot" | "BackblazeImportRobot" | "BackblazeStoreRobot" | "MinioImportRobot" | "TigrisImportRobot" | "CloudflareImportRobot" | "SupabaseImportRobot" | "MinioStoreRobot" | "TigrisStoreRobot" | "CloudflareStoreRobot" | "SupabaseStoreRobot" | "WasabiImportRobot" | "WasabiStoreRobot" | "SwiftImportRobot" | "SwiftStoreRobot" | "GoogleImportRobot" | "GoogleStoreRobot" | "DropboxImportRobot" | "DropboxStoreRobot" | "HttpImportRobot" | "SftpImportRobot" | "SftpStoreRobot" | "FtpImportRobot" | "FtpStoreRobot" | "CloudfilesImportRobot" | "CloudfilesStoreRobot" | "AzureImportRobot" | "AzureStoreRobot" | "YoutubeStoreRobot" | "VimeoImportRobot" | "VimeoStoreRobot" | "AssemblySavejsonRobot" | "ScriptRunRobot" | "FileHashRobot" | "FileReadRobot" | "VideoOndemandRobot" | "FileFilterRobot" | "TextSpeakRobot" | "TextTranslateRobot" | "FilePreviewRobot" | "TusStoreRobot" | "ProgressSimulateRobot";
|
|
74491
|
+
name: "AiChatRobot" | "UploadHandleRobot" | "FileServeRobot" | "FileWatermarkRobot" | "FileVerifyRobot" | "EdglyDeliverRobot" | "TlcdnDeliverRobot" | "VideoSubtitleRobot" | "VideoEncodeRobot" | "VideoAdaptiveRobot" | "VideoMergeRobot" | "VideoConcatRobot" | "AudioWaveformRobot" | "AudioEncodeRobot" | "AudioLoopRobot" | "AudioConcatRobot" | "AudioMergeRobot" | "AudioArtworkRobot" | "ImageFacedetectRobot" | "ImageDescribeRobot" | "ImageOcrRobot" | "ImageBgremoveRobot" | "ImageGenerateRobot" | "DocumentOcrRobot" | "SpeechTranscribeRobot" | "VideoThumbsRobot" | "FileVirusscanRobot" | "ImageOptimizeRobot" | "FileCompressRobot" | "MetaReadRobot" | "FileDecompressRobot" | "MetaWriteRobot" | "DocumentThumbsRobot" | "DocumentConvertRobot" | "DocumentMergeRobot" | "DocumentSplitRobot" | "DocumentOptimizeRobot" | "DocumentAutorotateRobot" | "HtmlConvertRobot" | "ImageResizeRobot" | "ImageMergeRobot" | "S3ImportRobot" | "S3StoreRobot" | "DigitalOceanImportRobot" | "DigitalOceanStoreRobot" | "BackblazeImportRobot" | "BackblazeStoreRobot" | "MinioImportRobot" | "TigrisImportRobot" | "CloudflareImportRobot" | "SupabaseImportRobot" | "MinioStoreRobot" | "TigrisStoreRobot" | "CloudflareStoreRobot" | "SupabaseStoreRobot" | "WasabiImportRobot" | "WasabiStoreRobot" | "SwiftImportRobot" | "SwiftStoreRobot" | "GoogleImportRobot" | "GoogleStoreRobot" | "DropboxImportRobot" | "DropboxStoreRobot" | "HttpImportRobot" | "SftpImportRobot" | "SftpStoreRobot" | "FtpImportRobot" | "FtpStoreRobot" | "CloudfilesImportRobot" | "CloudfilesStoreRobot" | "AzureImportRobot" | "AzureStoreRobot" | "YoutubeStoreRobot" | "VimeoImportRobot" | "VimeoStoreRobot" | "AssemblySavejsonRobot" | "ScriptRunRobot" | "FileHashRobot" | "FileReadRobot" | "VideoOndemandRobot" | "FileFilterRobot" | "TextSpeakRobot" | "TextTranslateRobot" | "FilePreviewRobot" | "TusStoreRobot" | "ProgressSimulateRobot";
|
|
73966
74492
|
priceFactor: number;
|
|
73967
74493
|
queueSlotCount: number;
|
|
73968
74494
|
isAllowedForUrlTransform: boolean;
|
|
@@ -74016,7 +74542,7 @@ export declare const robotsMeta: {
|
|
|
74016
74542
|
uses_tools?: ("ffmpeg" | "imagemagick")[] | undefined;
|
|
74017
74543
|
};
|
|
74018
74544
|
httpImportMeta: {
|
|
74019
|
-
name: "AiChatRobot" | "UploadHandleRobot" | "FileServeRobot" | "FileWatermarkRobot" | "FileVerifyRobot" | "EdglyDeliverRobot" | "TlcdnDeliverRobot" | "VideoSubtitleRobot" | "VideoEncodeRobot" | "VideoAdaptiveRobot" | "VideoMergeRobot" | "VideoConcatRobot" | "AudioWaveformRobot" | "AudioEncodeRobot" | "AudioLoopRobot" | "AudioConcatRobot" | "AudioMergeRobot" | "AudioArtworkRobot" | "ImageFacedetectRobot" | "ImageDescribeRobot" | "ImageOcrRobot" | "ImageBgremoveRobot" | "ImageGenerateRobot" | "DocumentOcrRobot" | "SpeechTranscribeRobot" | "VideoThumbsRobot" | "FileVirusscanRobot" | "ImageOptimizeRobot" | "FileCompressRobot" | "MetaReadRobot" | "FileDecompressRobot" | "MetaWriteRobot" | "DocumentThumbsRobot" | "DocumentConvertRobot" | "DocumentMergeRobot" | "DocumentSplitRobot" | "DocumentAutorotateRobot" | "HtmlConvertRobot" | "ImageResizeRobot" | "ImageMergeRobot" | "S3ImportRobot" | "S3StoreRobot" | "DigitalOceanImportRobot" | "DigitalOceanStoreRobot" | "BackblazeImportRobot" | "BackblazeStoreRobot" | "MinioImportRobot" | "TigrisImportRobot" | "CloudflareImportRobot" | "SupabaseImportRobot" | "MinioStoreRobot" | "TigrisStoreRobot" | "CloudflareStoreRobot" | "SupabaseStoreRobot" | "WasabiImportRobot" | "WasabiStoreRobot" | "SwiftImportRobot" | "SwiftStoreRobot" | "GoogleImportRobot" | "GoogleStoreRobot" | "DropboxImportRobot" | "DropboxStoreRobot" | "HttpImportRobot" | "SftpImportRobot" | "SftpStoreRobot" | "FtpImportRobot" | "FtpStoreRobot" | "CloudfilesImportRobot" | "CloudfilesStoreRobot" | "AzureImportRobot" | "AzureStoreRobot" | "YoutubeStoreRobot" | "VimeoImportRobot" | "VimeoStoreRobot" | "AssemblySavejsonRobot" | "ScriptRunRobot" | "FileHashRobot" | "FileReadRobot" | "VideoOndemandRobot" | "FileFilterRobot" | "TextSpeakRobot" | "TextTranslateRobot" | "FilePreviewRobot" | "TusStoreRobot" | "ProgressSimulateRobot";
|
|
74545
|
+
name: "AiChatRobot" | "UploadHandleRobot" | "FileServeRobot" | "FileWatermarkRobot" | "FileVerifyRobot" | "EdglyDeliverRobot" | "TlcdnDeliverRobot" | "VideoSubtitleRobot" | "VideoEncodeRobot" | "VideoAdaptiveRobot" | "VideoMergeRobot" | "VideoConcatRobot" | "AudioWaveformRobot" | "AudioEncodeRobot" | "AudioLoopRobot" | "AudioConcatRobot" | "AudioMergeRobot" | "AudioArtworkRobot" | "ImageFacedetectRobot" | "ImageDescribeRobot" | "ImageOcrRobot" | "ImageBgremoveRobot" | "ImageGenerateRobot" | "DocumentOcrRobot" | "SpeechTranscribeRobot" | "VideoThumbsRobot" | "FileVirusscanRobot" | "ImageOptimizeRobot" | "FileCompressRobot" | "MetaReadRobot" | "FileDecompressRobot" | "MetaWriteRobot" | "DocumentThumbsRobot" | "DocumentConvertRobot" | "DocumentMergeRobot" | "DocumentSplitRobot" | "DocumentOptimizeRobot" | "DocumentAutorotateRobot" | "HtmlConvertRobot" | "ImageResizeRobot" | "ImageMergeRobot" | "S3ImportRobot" | "S3StoreRobot" | "DigitalOceanImportRobot" | "DigitalOceanStoreRobot" | "BackblazeImportRobot" | "BackblazeStoreRobot" | "MinioImportRobot" | "TigrisImportRobot" | "CloudflareImportRobot" | "SupabaseImportRobot" | "MinioStoreRobot" | "TigrisStoreRobot" | "CloudflareStoreRobot" | "SupabaseStoreRobot" | "WasabiImportRobot" | "WasabiStoreRobot" | "SwiftImportRobot" | "SwiftStoreRobot" | "GoogleImportRobot" | "GoogleStoreRobot" | "DropboxImportRobot" | "DropboxStoreRobot" | "HttpImportRobot" | "SftpImportRobot" | "SftpStoreRobot" | "FtpImportRobot" | "FtpStoreRobot" | "CloudfilesImportRobot" | "CloudfilesStoreRobot" | "AzureImportRobot" | "AzureStoreRobot" | "YoutubeStoreRobot" | "VimeoImportRobot" | "VimeoStoreRobot" | "AssemblySavejsonRobot" | "ScriptRunRobot" | "FileHashRobot" | "FileReadRobot" | "VideoOndemandRobot" | "FileFilterRobot" | "TextSpeakRobot" | "TextTranslateRobot" | "FilePreviewRobot" | "TusStoreRobot" | "ProgressSimulateRobot";
|
|
74020
74546
|
priceFactor: number;
|
|
74021
74547
|
queueSlotCount: number;
|
|
74022
74548
|
isAllowedForUrlTransform: boolean;
|
|
@@ -74070,7 +74596,7 @@ export declare const robotsMeta: {
|
|
|
74070
74596
|
uses_tools?: ("ffmpeg" | "imagemagick")[] | undefined;
|
|
74071
74597
|
};
|
|
74072
74598
|
imageDescribeMeta: {
|
|
74073
|
-
name: "AiChatRobot" | "UploadHandleRobot" | "FileServeRobot" | "FileWatermarkRobot" | "FileVerifyRobot" | "EdglyDeliverRobot" | "TlcdnDeliverRobot" | "VideoSubtitleRobot" | "VideoEncodeRobot" | "VideoAdaptiveRobot" | "VideoMergeRobot" | "VideoConcatRobot" | "AudioWaveformRobot" | "AudioEncodeRobot" | "AudioLoopRobot" | "AudioConcatRobot" | "AudioMergeRobot" | "AudioArtworkRobot" | "ImageFacedetectRobot" | "ImageDescribeRobot" | "ImageOcrRobot" | "ImageBgremoveRobot" | "ImageGenerateRobot" | "DocumentOcrRobot" | "SpeechTranscribeRobot" | "VideoThumbsRobot" | "FileVirusscanRobot" | "ImageOptimizeRobot" | "FileCompressRobot" | "MetaReadRobot" | "FileDecompressRobot" | "MetaWriteRobot" | "DocumentThumbsRobot" | "DocumentConvertRobot" | "DocumentMergeRobot" | "DocumentSplitRobot" | "DocumentAutorotateRobot" | "HtmlConvertRobot" | "ImageResizeRobot" | "ImageMergeRobot" | "S3ImportRobot" | "S3StoreRobot" | "DigitalOceanImportRobot" | "DigitalOceanStoreRobot" | "BackblazeImportRobot" | "BackblazeStoreRobot" | "MinioImportRobot" | "TigrisImportRobot" | "CloudflareImportRobot" | "SupabaseImportRobot" | "MinioStoreRobot" | "TigrisStoreRobot" | "CloudflareStoreRobot" | "SupabaseStoreRobot" | "WasabiImportRobot" | "WasabiStoreRobot" | "SwiftImportRobot" | "SwiftStoreRobot" | "GoogleImportRobot" | "GoogleStoreRobot" | "DropboxImportRobot" | "DropboxStoreRobot" | "HttpImportRobot" | "SftpImportRobot" | "SftpStoreRobot" | "FtpImportRobot" | "FtpStoreRobot" | "CloudfilesImportRobot" | "CloudfilesStoreRobot" | "AzureImportRobot" | "AzureStoreRobot" | "YoutubeStoreRobot" | "VimeoImportRobot" | "VimeoStoreRobot" | "AssemblySavejsonRobot" | "ScriptRunRobot" | "FileHashRobot" | "FileReadRobot" | "VideoOndemandRobot" | "FileFilterRobot" | "TextSpeakRobot" | "TextTranslateRobot" | "FilePreviewRobot" | "TusStoreRobot" | "ProgressSimulateRobot";
|
|
74599
|
+
name: "AiChatRobot" | "UploadHandleRobot" | "FileServeRobot" | "FileWatermarkRobot" | "FileVerifyRobot" | "EdglyDeliverRobot" | "TlcdnDeliverRobot" | "VideoSubtitleRobot" | "VideoEncodeRobot" | "VideoAdaptiveRobot" | "VideoMergeRobot" | "VideoConcatRobot" | "AudioWaveformRobot" | "AudioEncodeRobot" | "AudioLoopRobot" | "AudioConcatRobot" | "AudioMergeRobot" | "AudioArtworkRobot" | "ImageFacedetectRobot" | "ImageDescribeRobot" | "ImageOcrRobot" | "ImageBgremoveRobot" | "ImageGenerateRobot" | "DocumentOcrRobot" | "SpeechTranscribeRobot" | "VideoThumbsRobot" | "FileVirusscanRobot" | "ImageOptimizeRobot" | "FileCompressRobot" | "MetaReadRobot" | "FileDecompressRobot" | "MetaWriteRobot" | "DocumentThumbsRobot" | "DocumentConvertRobot" | "DocumentMergeRobot" | "DocumentSplitRobot" | "DocumentOptimizeRobot" | "DocumentAutorotateRobot" | "HtmlConvertRobot" | "ImageResizeRobot" | "ImageMergeRobot" | "S3ImportRobot" | "S3StoreRobot" | "DigitalOceanImportRobot" | "DigitalOceanStoreRobot" | "BackblazeImportRobot" | "BackblazeStoreRobot" | "MinioImportRobot" | "TigrisImportRobot" | "CloudflareImportRobot" | "SupabaseImportRobot" | "MinioStoreRobot" | "TigrisStoreRobot" | "CloudflareStoreRobot" | "SupabaseStoreRobot" | "WasabiImportRobot" | "WasabiStoreRobot" | "SwiftImportRobot" | "SwiftStoreRobot" | "GoogleImportRobot" | "GoogleStoreRobot" | "DropboxImportRobot" | "DropboxStoreRobot" | "HttpImportRobot" | "SftpImportRobot" | "SftpStoreRobot" | "FtpImportRobot" | "FtpStoreRobot" | "CloudfilesImportRobot" | "CloudfilesStoreRobot" | "AzureImportRobot" | "AzureStoreRobot" | "YoutubeStoreRobot" | "VimeoImportRobot" | "VimeoStoreRobot" | "AssemblySavejsonRobot" | "ScriptRunRobot" | "FileHashRobot" | "FileReadRobot" | "VideoOndemandRobot" | "FileFilterRobot" | "TextSpeakRobot" | "TextTranslateRobot" | "FilePreviewRobot" | "TusStoreRobot" | "ProgressSimulateRobot";
|
|
74074
74600
|
priceFactor: number;
|
|
74075
74601
|
queueSlotCount: number;
|
|
74076
74602
|
isAllowedForUrlTransform: boolean;
|
|
@@ -74124,7 +74650,7 @@ export declare const robotsMeta: {
|
|
|
74124
74650
|
uses_tools?: ("ffmpeg" | "imagemagick")[] | undefined;
|
|
74125
74651
|
};
|
|
74126
74652
|
imageFacedetectMeta: {
|
|
74127
|
-
name: "AiChatRobot" | "UploadHandleRobot" | "FileServeRobot" | "FileWatermarkRobot" | "FileVerifyRobot" | "EdglyDeliverRobot" | "TlcdnDeliverRobot" | "VideoSubtitleRobot" | "VideoEncodeRobot" | "VideoAdaptiveRobot" | "VideoMergeRobot" | "VideoConcatRobot" | "AudioWaveformRobot" | "AudioEncodeRobot" | "AudioLoopRobot" | "AudioConcatRobot" | "AudioMergeRobot" | "AudioArtworkRobot" | "ImageFacedetectRobot" | "ImageDescribeRobot" | "ImageOcrRobot" | "ImageBgremoveRobot" | "ImageGenerateRobot" | "DocumentOcrRobot" | "SpeechTranscribeRobot" | "VideoThumbsRobot" | "FileVirusscanRobot" | "ImageOptimizeRobot" | "FileCompressRobot" | "MetaReadRobot" | "FileDecompressRobot" | "MetaWriteRobot" | "DocumentThumbsRobot" | "DocumentConvertRobot" | "DocumentMergeRobot" | "DocumentSplitRobot" | "DocumentAutorotateRobot" | "HtmlConvertRobot" | "ImageResizeRobot" | "ImageMergeRobot" | "S3ImportRobot" | "S3StoreRobot" | "DigitalOceanImportRobot" | "DigitalOceanStoreRobot" | "BackblazeImportRobot" | "BackblazeStoreRobot" | "MinioImportRobot" | "TigrisImportRobot" | "CloudflareImportRobot" | "SupabaseImportRobot" | "MinioStoreRobot" | "TigrisStoreRobot" | "CloudflareStoreRobot" | "SupabaseStoreRobot" | "WasabiImportRobot" | "WasabiStoreRobot" | "SwiftImportRobot" | "SwiftStoreRobot" | "GoogleImportRobot" | "GoogleStoreRobot" | "DropboxImportRobot" | "DropboxStoreRobot" | "HttpImportRobot" | "SftpImportRobot" | "SftpStoreRobot" | "FtpImportRobot" | "FtpStoreRobot" | "CloudfilesImportRobot" | "CloudfilesStoreRobot" | "AzureImportRobot" | "AzureStoreRobot" | "YoutubeStoreRobot" | "VimeoImportRobot" | "VimeoStoreRobot" | "AssemblySavejsonRobot" | "ScriptRunRobot" | "FileHashRobot" | "FileReadRobot" | "VideoOndemandRobot" | "FileFilterRobot" | "TextSpeakRobot" | "TextTranslateRobot" | "FilePreviewRobot" | "TusStoreRobot" | "ProgressSimulateRobot";
|
|
74653
|
+
name: "AiChatRobot" | "UploadHandleRobot" | "FileServeRobot" | "FileWatermarkRobot" | "FileVerifyRobot" | "EdglyDeliverRobot" | "TlcdnDeliverRobot" | "VideoSubtitleRobot" | "VideoEncodeRobot" | "VideoAdaptiveRobot" | "VideoMergeRobot" | "VideoConcatRobot" | "AudioWaveformRobot" | "AudioEncodeRobot" | "AudioLoopRobot" | "AudioConcatRobot" | "AudioMergeRobot" | "AudioArtworkRobot" | "ImageFacedetectRobot" | "ImageDescribeRobot" | "ImageOcrRobot" | "ImageBgremoveRobot" | "ImageGenerateRobot" | "DocumentOcrRobot" | "SpeechTranscribeRobot" | "VideoThumbsRobot" | "FileVirusscanRobot" | "ImageOptimizeRobot" | "FileCompressRobot" | "MetaReadRobot" | "FileDecompressRobot" | "MetaWriteRobot" | "DocumentThumbsRobot" | "DocumentConvertRobot" | "DocumentMergeRobot" | "DocumentSplitRobot" | "DocumentOptimizeRobot" | "DocumentAutorotateRobot" | "HtmlConvertRobot" | "ImageResizeRobot" | "ImageMergeRobot" | "S3ImportRobot" | "S3StoreRobot" | "DigitalOceanImportRobot" | "DigitalOceanStoreRobot" | "BackblazeImportRobot" | "BackblazeStoreRobot" | "MinioImportRobot" | "TigrisImportRobot" | "CloudflareImportRobot" | "SupabaseImportRobot" | "MinioStoreRobot" | "TigrisStoreRobot" | "CloudflareStoreRobot" | "SupabaseStoreRobot" | "WasabiImportRobot" | "WasabiStoreRobot" | "SwiftImportRobot" | "SwiftStoreRobot" | "GoogleImportRobot" | "GoogleStoreRobot" | "DropboxImportRobot" | "DropboxStoreRobot" | "HttpImportRobot" | "SftpImportRobot" | "SftpStoreRobot" | "FtpImportRobot" | "FtpStoreRobot" | "CloudfilesImportRobot" | "CloudfilesStoreRobot" | "AzureImportRobot" | "AzureStoreRobot" | "YoutubeStoreRobot" | "VimeoImportRobot" | "VimeoStoreRobot" | "AssemblySavejsonRobot" | "ScriptRunRobot" | "FileHashRobot" | "FileReadRobot" | "VideoOndemandRobot" | "FileFilterRobot" | "TextSpeakRobot" | "TextTranslateRobot" | "FilePreviewRobot" | "TusStoreRobot" | "ProgressSimulateRobot";
|
|
74128
74654
|
priceFactor: number;
|
|
74129
74655
|
queueSlotCount: number;
|
|
74130
74656
|
isAllowedForUrlTransform: boolean;
|
|
@@ -74178,7 +74704,7 @@ export declare const robotsMeta: {
|
|
|
74178
74704
|
uses_tools?: ("ffmpeg" | "imagemagick")[] | undefined;
|
|
74179
74705
|
};
|
|
74180
74706
|
imageBgremoveMeta: {
|
|
74181
|
-
name: "AiChatRobot" | "UploadHandleRobot" | "FileServeRobot" | "FileWatermarkRobot" | "FileVerifyRobot" | "EdglyDeliverRobot" | "TlcdnDeliverRobot" | "VideoSubtitleRobot" | "VideoEncodeRobot" | "VideoAdaptiveRobot" | "VideoMergeRobot" | "VideoConcatRobot" | "AudioWaveformRobot" | "AudioEncodeRobot" | "AudioLoopRobot" | "AudioConcatRobot" | "AudioMergeRobot" | "AudioArtworkRobot" | "ImageFacedetectRobot" | "ImageDescribeRobot" | "ImageOcrRobot" | "ImageBgremoveRobot" | "ImageGenerateRobot" | "DocumentOcrRobot" | "SpeechTranscribeRobot" | "VideoThumbsRobot" | "FileVirusscanRobot" | "ImageOptimizeRobot" | "FileCompressRobot" | "MetaReadRobot" | "FileDecompressRobot" | "MetaWriteRobot" | "DocumentThumbsRobot" | "DocumentConvertRobot" | "DocumentMergeRobot" | "DocumentSplitRobot" | "DocumentAutorotateRobot" | "HtmlConvertRobot" | "ImageResizeRobot" | "ImageMergeRobot" | "S3ImportRobot" | "S3StoreRobot" | "DigitalOceanImportRobot" | "DigitalOceanStoreRobot" | "BackblazeImportRobot" | "BackblazeStoreRobot" | "MinioImportRobot" | "TigrisImportRobot" | "CloudflareImportRobot" | "SupabaseImportRobot" | "MinioStoreRobot" | "TigrisStoreRobot" | "CloudflareStoreRobot" | "SupabaseStoreRobot" | "WasabiImportRobot" | "WasabiStoreRobot" | "SwiftImportRobot" | "SwiftStoreRobot" | "GoogleImportRobot" | "GoogleStoreRobot" | "DropboxImportRobot" | "DropboxStoreRobot" | "HttpImportRobot" | "SftpImportRobot" | "SftpStoreRobot" | "FtpImportRobot" | "FtpStoreRobot" | "CloudfilesImportRobot" | "CloudfilesStoreRobot" | "AzureImportRobot" | "AzureStoreRobot" | "YoutubeStoreRobot" | "VimeoImportRobot" | "VimeoStoreRobot" | "AssemblySavejsonRobot" | "ScriptRunRobot" | "FileHashRobot" | "FileReadRobot" | "VideoOndemandRobot" | "FileFilterRobot" | "TextSpeakRobot" | "TextTranslateRobot" | "FilePreviewRobot" | "TusStoreRobot" | "ProgressSimulateRobot";
|
|
74707
|
+
name: "AiChatRobot" | "UploadHandleRobot" | "FileServeRobot" | "FileWatermarkRobot" | "FileVerifyRobot" | "EdglyDeliverRobot" | "TlcdnDeliverRobot" | "VideoSubtitleRobot" | "VideoEncodeRobot" | "VideoAdaptiveRobot" | "VideoMergeRobot" | "VideoConcatRobot" | "AudioWaveformRobot" | "AudioEncodeRobot" | "AudioLoopRobot" | "AudioConcatRobot" | "AudioMergeRobot" | "AudioArtworkRobot" | "ImageFacedetectRobot" | "ImageDescribeRobot" | "ImageOcrRobot" | "ImageBgremoveRobot" | "ImageGenerateRobot" | "DocumentOcrRobot" | "SpeechTranscribeRobot" | "VideoThumbsRobot" | "FileVirusscanRobot" | "ImageOptimizeRobot" | "FileCompressRobot" | "MetaReadRobot" | "FileDecompressRobot" | "MetaWriteRobot" | "DocumentThumbsRobot" | "DocumentConvertRobot" | "DocumentMergeRobot" | "DocumentSplitRobot" | "DocumentOptimizeRobot" | "DocumentAutorotateRobot" | "HtmlConvertRobot" | "ImageResizeRobot" | "ImageMergeRobot" | "S3ImportRobot" | "S3StoreRobot" | "DigitalOceanImportRobot" | "DigitalOceanStoreRobot" | "BackblazeImportRobot" | "BackblazeStoreRobot" | "MinioImportRobot" | "TigrisImportRobot" | "CloudflareImportRobot" | "SupabaseImportRobot" | "MinioStoreRobot" | "TigrisStoreRobot" | "CloudflareStoreRobot" | "SupabaseStoreRobot" | "WasabiImportRobot" | "WasabiStoreRobot" | "SwiftImportRobot" | "SwiftStoreRobot" | "GoogleImportRobot" | "GoogleStoreRobot" | "DropboxImportRobot" | "DropboxStoreRobot" | "HttpImportRobot" | "SftpImportRobot" | "SftpStoreRobot" | "FtpImportRobot" | "FtpStoreRobot" | "CloudfilesImportRobot" | "CloudfilesStoreRobot" | "AzureImportRobot" | "AzureStoreRobot" | "YoutubeStoreRobot" | "VimeoImportRobot" | "VimeoStoreRobot" | "AssemblySavejsonRobot" | "ScriptRunRobot" | "FileHashRobot" | "FileReadRobot" | "VideoOndemandRobot" | "FileFilterRobot" | "TextSpeakRobot" | "TextTranslateRobot" | "FilePreviewRobot" | "TusStoreRobot" | "ProgressSimulateRobot";
|
|
74182
74708
|
priceFactor: number;
|
|
74183
74709
|
queueSlotCount: number;
|
|
74184
74710
|
isAllowedForUrlTransform: boolean;
|
|
@@ -74232,7 +74758,7 @@ export declare const robotsMeta: {
|
|
|
74232
74758
|
uses_tools?: ("ffmpeg" | "imagemagick")[] | undefined;
|
|
74233
74759
|
};
|
|
74234
74760
|
imageGenerateMeta: {
|
|
74235
|
-
name: "AiChatRobot" | "UploadHandleRobot" | "FileServeRobot" | "FileWatermarkRobot" | "FileVerifyRobot" | "EdglyDeliverRobot" | "TlcdnDeliverRobot" | "VideoSubtitleRobot" | "VideoEncodeRobot" | "VideoAdaptiveRobot" | "VideoMergeRobot" | "VideoConcatRobot" | "AudioWaveformRobot" | "AudioEncodeRobot" | "AudioLoopRobot" | "AudioConcatRobot" | "AudioMergeRobot" | "AudioArtworkRobot" | "ImageFacedetectRobot" | "ImageDescribeRobot" | "ImageOcrRobot" | "ImageBgremoveRobot" | "ImageGenerateRobot" | "DocumentOcrRobot" | "SpeechTranscribeRobot" | "VideoThumbsRobot" | "FileVirusscanRobot" | "ImageOptimizeRobot" | "FileCompressRobot" | "MetaReadRobot" | "FileDecompressRobot" | "MetaWriteRobot" | "DocumentThumbsRobot" | "DocumentConvertRobot" | "DocumentMergeRobot" | "DocumentSplitRobot" | "DocumentAutorotateRobot" | "HtmlConvertRobot" | "ImageResizeRobot" | "ImageMergeRobot" | "S3ImportRobot" | "S3StoreRobot" | "DigitalOceanImportRobot" | "DigitalOceanStoreRobot" | "BackblazeImportRobot" | "BackblazeStoreRobot" | "MinioImportRobot" | "TigrisImportRobot" | "CloudflareImportRobot" | "SupabaseImportRobot" | "MinioStoreRobot" | "TigrisStoreRobot" | "CloudflareStoreRobot" | "SupabaseStoreRobot" | "WasabiImportRobot" | "WasabiStoreRobot" | "SwiftImportRobot" | "SwiftStoreRobot" | "GoogleImportRobot" | "GoogleStoreRobot" | "DropboxImportRobot" | "DropboxStoreRobot" | "HttpImportRobot" | "SftpImportRobot" | "SftpStoreRobot" | "FtpImportRobot" | "FtpStoreRobot" | "CloudfilesImportRobot" | "CloudfilesStoreRobot" | "AzureImportRobot" | "AzureStoreRobot" | "YoutubeStoreRobot" | "VimeoImportRobot" | "VimeoStoreRobot" | "AssemblySavejsonRobot" | "ScriptRunRobot" | "FileHashRobot" | "FileReadRobot" | "VideoOndemandRobot" | "FileFilterRobot" | "TextSpeakRobot" | "TextTranslateRobot" | "FilePreviewRobot" | "TusStoreRobot" | "ProgressSimulateRobot";
|
|
74761
|
+
name: "AiChatRobot" | "UploadHandleRobot" | "FileServeRobot" | "FileWatermarkRobot" | "FileVerifyRobot" | "EdglyDeliverRobot" | "TlcdnDeliverRobot" | "VideoSubtitleRobot" | "VideoEncodeRobot" | "VideoAdaptiveRobot" | "VideoMergeRobot" | "VideoConcatRobot" | "AudioWaveformRobot" | "AudioEncodeRobot" | "AudioLoopRobot" | "AudioConcatRobot" | "AudioMergeRobot" | "AudioArtworkRobot" | "ImageFacedetectRobot" | "ImageDescribeRobot" | "ImageOcrRobot" | "ImageBgremoveRobot" | "ImageGenerateRobot" | "DocumentOcrRobot" | "SpeechTranscribeRobot" | "VideoThumbsRobot" | "FileVirusscanRobot" | "ImageOptimizeRobot" | "FileCompressRobot" | "MetaReadRobot" | "FileDecompressRobot" | "MetaWriteRobot" | "DocumentThumbsRobot" | "DocumentConvertRobot" | "DocumentMergeRobot" | "DocumentSplitRobot" | "DocumentOptimizeRobot" | "DocumentAutorotateRobot" | "HtmlConvertRobot" | "ImageResizeRobot" | "ImageMergeRobot" | "S3ImportRobot" | "S3StoreRobot" | "DigitalOceanImportRobot" | "DigitalOceanStoreRobot" | "BackblazeImportRobot" | "BackblazeStoreRobot" | "MinioImportRobot" | "TigrisImportRobot" | "CloudflareImportRobot" | "SupabaseImportRobot" | "MinioStoreRobot" | "TigrisStoreRobot" | "CloudflareStoreRobot" | "SupabaseStoreRobot" | "WasabiImportRobot" | "WasabiStoreRobot" | "SwiftImportRobot" | "SwiftStoreRobot" | "GoogleImportRobot" | "GoogleStoreRobot" | "DropboxImportRobot" | "DropboxStoreRobot" | "HttpImportRobot" | "SftpImportRobot" | "SftpStoreRobot" | "FtpImportRobot" | "FtpStoreRobot" | "CloudfilesImportRobot" | "CloudfilesStoreRobot" | "AzureImportRobot" | "AzureStoreRobot" | "YoutubeStoreRobot" | "VimeoImportRobot" | "VimeoStoreRobot" | "AssemblySavejsonRobot" | "ScriptRunRobot" | "FileHashRobot" | "FileReadRobot" | "VideoOndemandRobot" | "FileFilterRobot" | "TextSpeakRobot" | "TextTranslateRobot" | "FilePreviewRobot" | "TusStoreRobot" | "ProgressSimulateRobot";
|
|
74236
74762
|
priceFactor: number;
|
|
74237
74763
|
queueSlotCount: number;
|
|
74238
74764
|
isAllowedForUrlTransform: boolean;
|
|
@@ -74286,7 +74812,7 @@ export declare const robotsMeta: {
|
|
|
74286
74812
|
uses_tools?: ("ffmpeg" | "imagemagick")[] | undefined;
|
|
74287
74813
|
};
|
|
74288
74814
|
imageMergeMeta: {
|
|
74289
|
-
name: "AiChatRobot" | "UploadHandleRobot" | "FileServeRobot" | "FileWatermarkRobot" | "FileVerifyRobot" | "EdglyDeliverRobot" | "TlcdnDeliverRobot" | "VideoSubtitleRobot" | "VideoEncodeRobot" | "VideoAdaptiveRobot" | "VideoMergeRobot" | "VideoConcatRobot" | "AudioWaveformRobot" | "AudioEncodeRobot" | "AudioLoopRobot" | "AudioConcatRobot" | "AudioMergeRobot" | "AudioArtworkRobot" | "ImageFacedetectRobot" | "ImageDescribeRobot" | "ImageOcrRobot" | "ImageBgremoveRobot" | "ImageGenerateRobot" | "DocumentOcrRobot" | "SpeechTranscribeRobot" | "VideoThumbsRobot" | "FileVirusscanRobot" | "ImageOptimizeRobot" | "FileCompressRobot" | "MetaReadRobot" | "FileDecompressRobot" | "MetaWriteRobot" | "DocumentThumbsRobot" | "DocumentConvertRobot" | "DocumentMergeRobot" | "DocumentSplitRobot" | "DocumentAutorotateRobot" | "HtmlConvertRobot" | "ImageResizeRobot" | "ImageMergeRobot" | "S3ImportRobot" | "S3StoreRobot" | "DigitalOceanImportRobot" | "DigitalOceanStoreRobot" | "BackblazeImportRobot" | "BackblazeStoreRobot" | "MinioImportRobot" | "TigrisImportRobot" | "CloudflareImportRobot" | "SupabaseImportRobot" | "MinioStoreRobot" | "TigrisStoreRobot" | "CloudflareStoreRobot" | "SupabaseStoreRobot" | "WasabiImportRobot" | "WasabiStoreRobot" | "SwiftImportRobot" | "SwiftStoreRobot" | "GoogleImportRobot" | "GoogleStoreRobot" | "DropboxImportRobot" | "DropboxStoreRobot" | "HttpImportRobot" | "SftpImportRobot" | "SftpStoreRobot" | "FtpImportRobot" | "FtpStoreRobot" | "CloudfilesImportRobot" | "CloudfilesStoreRobot" | "AzureImportRobot" | "AzureStoreRobot" | "YoutubeStoreRobot" | "VimeoImportRobot" | "VimeoStoreRobot" | "AssemblySavejsonRobot" | "ScriptRunRobot" | "FileHashRobot" | "FileReadRobot" | "VideoOndemandRobot" | "FileFilterRobot" | "TextSpeakRobot" | "TextTranslateRobot" | "FilePreviewRobot" | "TusStoreRobot" | "ProgressSimulateRobot";
|
|
74815
|
+
name: "AiChatRobot" | "UploadHandleRobot" | "FileServeRobot" | "FileWatermarkRobot" | "FileVerifyRobot" | "EdglyDeliverRobot" | "TlcdnDeliverRobot" | "VideoSubtitleRobot" | "VideoEncodeRobot" | "VideoAdaptiveRobot" | "VideoMergeRobot" | "VideoConcatRobot" | "AudioWaveformRobot" | "AudioEncodeRobot" | "AudioLoopRobot" | "AudioConcatRobot" | "AudioMergeRobot" | "AudioArtworkRobot" | "ImageFacedetectRobot" | "ImageDescribeRobot" | "ImageOcrRobot" | "ImageBgremoveRobot" | "ImageGenerateRobot" | "DocumentOcrRobot" | "SpeechTranscribeRobot" | "VideoThumbsRobot" | "FileVirusscanRobot" | "ImageOptimizeRobot" | "FileCompressRobot" | "MetaReadRobot" | "FileDecompressRobot" | "MetaWriteRobot" | "DocumentThumbsRobot" | "DocumentConvertRobot" | "DocumentMergeRobot" | "DocumentSplitRobot" | "DocumentOptimizeRobot" | "DocumentAutorotateRobot" | "HtmlConvertRobot" | "ImageResizeRobot" | "ImageMergeRobot" | "S3ImportRobot" | "S3StoreRobot" | "DigitalOceanImportRobot" | "DigitalOceanStoreRobot" | "BackblazeImportRobot" | "BackblazeStoreRobot" | "MinioImportRobot" | "TigrisImportRobot" | "CloudflareImportRobot" | "SupabaseImportRobot" | "MinioStoreRobot" | "TigrisStoreRobot" | "CloudflareStoreRobot" | "SupabaseStoreRobot" | "WasabiImportRobot" | "WasabiStoreRobot" | "SwiftImportRobot" | "SwiftStoreRobot" | "GoogleImportRobot" | "GoogleStoreRobot" | "DropboxImportRobot" | "DropboxStoreRobot" | "HttpImportRobot" | "SftpImportRobot" | "SftpStoreRobot" | "FtpImportRobot" | "FtpStoreRobot" | "CloudfilesImportRobot" | "CloudfilesStoreRobot" | "AzureImportRobot" | "AzureStoreRobot" | "YoutubeStoreRobot" | "VimeoImportRobot" | "VimeoStoreRobot" | "AssemblySavejsonRobot" | "ScriptRunRobot" | "FileHashRobot" | "FileReadRobot" | "VideoOndemandRobot" | "FileFilterRobot" | "TextSpeakRobot" | "TextTranslateRobot" | "FilePreviewRobot" | "TusStoreRobot" | "ProgressSimulateRobot";
|
|
74290
74816
|
priceFactor: number;
|
|
74291
74817
|
queueSlotCount: number;
|
|
74292
74818
|
isAllowedForUrlTransform: boolean;
|
|
@@ -74340,7 +74866,7 @@ export declare const robotsMeta: {
|
|
|
74340
74866
|
uses_tools?: ("ffmpeg" | "imagemagick")[] | undefined;
|
|
74341
74867
|
};
|
|
74342
74868
|
imageOcrMeta: {
|
|
74343
|
-
name: "AiChatRobot" | "UploadHandleRobot" | "FileServeRobot" | "FileWatermarkRobot" | "FileVerifyRobot" | "EdglyDeliverRobot" | "TlcdnDeliverRobot" | "VideoSubtitleRobot" | "VideoEncodeRobot" | "VideoAdaptiveRobot" | "VideoMergeRobot" | "VideoConcatRobot" | "AudioWaveformRobot" | "AudioEncodeRobot" | "AudioLoopRobot" | "AudioConcatRobot" | "AudioMergeRobot" | "AudioArtworkRobot" | "ImageFacedetectRobot" | "ImageDescribeRobot" | "ImageOcrRobot" | "ImageBgremoveRobot" | "ImageGenerateRobot" | "DocumentOcrRobot" | "SpeechTranscribeRobot" | "VideoThumbsRobot" | "FileVirusscanRobot" | "ImageOptimizeRobot" | "FileCompressRobot" | "MetaReadRobot" | "FileDecompressRobot" | "MetaWriteRobot" | "DocumentThumbsRobot" | "DocumentConvertRobot" | "DocumentMergeRobot" | "DocumentSplitRobot" | "DocumentAutorotateRobot" | "HtmlConvertRobot" | "ImageResizeRobot" | "ImageMergeRobot" | "S3ImportRobot" | "S3StoreRobot" | "DigitalOceanImportRobot" | "DigitalOceanStoreRobot" | "BackblazeImportRobot" | "BackblazeStoreRobot" | "MinioImportRobot" | "TigrisImportRobot" | "CloudflareImportRobot" | "SupabaseImportRobot" | "MinioStoreRobot" | "TigrisStoreRobot" | "CloudflareStoreRobot" | "SupabaseStoreRobot" | "WasabiImportRobot" | "WasabiStoreRobot" | "SwiftImportRobot" | "SwiftStoreRobot" | "GoogleImportRobot" | "GoogleStoreRobot" | "DropboxImportRobot" | "DropboxStoreRobot" | "HttpImportRobot" | "SftpImportRobot" | "SftpStoreRobot" | "FtpImportRobot" | "FtpStoreRobot" | "CloudfilesImportRobot" | "CloudfilesStoreRobot" | "AzureImportRobot" | "AzureStoreRobot" | "YoutubeStoreRobot" | "VimeoImportRobot" | "VimeoStoreRobot" | "AssemblySavejsonRobot" | "ScriptRunRobot" | "FileHashRobot" | "FileReadRobot" | "VideoOndemandRobot" | "FileFilterRobot" | "TextSpeakRobot" | "TextTranslateRobot" | "FilePreviewRobot" | "TusStoreRobot" | "ProgressSimulateRobot";
|
|
74869
|
+
name: "AiChatRobot" | "UploadHandleRobot" | "FileServeRobot" | "FileWatermarkRobot" | "FileVerifyRobot" | "EdglyDeliverRobot" | "TlcdnDeliverRobot" | "VideoSubtitleRobot" | "VideoEncodeRobot" | "VideoAdaptiveRobot" | "VideoMergeRobot" | "VideoConcatRobot" | "AudioWaveformRobot" | "AudioEncodeRobot" | "AudioLoopRobot" | "AudioConcatRobot" | "AudioMergeRobot" | "AudioArtworkRobot" | "ImageFacedetectRobot" | "ImageDescribeRobot" | "ImageOcrRobot" | "ImageBgremoveRobot" | "ImageGenerateRobot" | "DocumentOcrRobot" | "SpeechTranscribeRobot" | "VideoThumbsRobot" | "FileVirusscanRobot" | "ImageOptimizeRobot" | "FileCompressRobot" | "MetaReadRobot" | "FileDecompressRobot" | "MetaWriteRobot" | "DocumentThumbsRobot" | "DocumentConvertRobot" | "DocumentMergeRobot" | "DocumentSplitRobot" | "DocumentOptimizeRobot" | "DocumentAutorotateRobot" | "HtmlConvertRobot" | "ImageResizeRobot" | "ImageMergeRobot" | "S3ImportRobot" | "S3StoreRobot" | "DigitalOceanImportRobot" | "DigitalOceanStoreRobot" | "BackblazeImportRobot" | "BackblazeStoreRobot" | "MinioImportRobot" | "TigrisImportRobot" | "CloudflareImportRobot" | "SupabaseImportRobot" | "MinioStoreRobot" | "TigrisStoreRobot" | "CloudflareStoreRobot" | "SupabaseStoreRobot" | "WasabiImportRobot" | "WasabiStoreRobot" | "SwiftImportRobot" | "SwiftStoreRobot" | "GoogleImportRobot" | "GoogleStoreRobot" | "DropboxImportRobot" | "DropboxStoreRobot" | "HttpImportRobot" | "SftpImportRobot" | "SftpStoreRobot" | "FtpImportRobot" | "FtpStoreRobot" | "CloudfilesImportRobot" | "CloudfilesStoreRobot" | "AzureImportRobot" | "AzureStoreRobot" | "YoutubeStoreRobot" | "VimeoImportRobot" | "VimeoStoreRobot" | "AssemblySavejsonRobot" | "ScriptRunRobot" | "FileHashRobot" | "FileReadRobot" | "VideoOndemandRobot" | "FileFilterRobot" | "TextSpeakRobot" | "TextTranslateRobot" | "FilePreviewRobot" | "TusStoreRobot" | "ProgressSimulateRobot";
|
|
74344
74870
|
priceFactor: number;
|
|
74345
74871
|
queueSlotCount: number;
|
|
74346
74872
|
isAllowedForUrlTransform: boolean;
|
|
@@ -74394,7 +74920,7 @@ export declare const robotsMeta: {
|
|
|
74394
74920
|
uses_tools?: ("ffmpeg" | "imagemagick")[] | undefined;
|
|
74395
74921
|
};
|
|
74396
74922
|
imageOptimizeMeta: {
|
|
74397
|
-
name: "AiChatRobot" | "UploadHandleRobot" | "FileServeRobot" | "FileWatermarkRobot" | "FileVerifyRobot" | "EdglyDeliverRobot" | "TlcdnDeliverRobot" | "VideoSubtitleRobot" | "VideoEncodeRobot" | "VideoAdaptiveRobot" | "VideoMergeRobot" | "VideoConcatRobot" | "AudioWaveformRobot" | "AudioEncodeRobot" | "AudioLoopRobot" | "AudioConcatRobot" | "AudioMergeRobot" | "AudioArtworkRobot" | "ImageFacedetectRobot" | "ImageDescribeRobot" | "ImageOcrRobot" | "ImageBgremoveRobot" | "ImageGenerateRobot" | "DocumentOcrRobot" | "SpeechTranscribeRobot" | "VideoThumbsRobot" | "FileVirusscanRobot" | "ImageOptimizeRobot" | "FileCompressRobot" | "MetaReadRobot" | "FileDecompressRobot" | "MetaWriteRobot" | "DocumentThumbsRobot" | "DocumentConvertRobot" | "DocumentMergeRobot" | "DocumentSplitRobot" | "DocumentAutorotateRobot" | "HtmlConvertRobot" | "ImageResizeRobot" | "ImageMergeRobot" | "S3ImportRobot" | "S3StoreRobot" | "DigitalOceanImportRobot" | "DigitalOceanStoreRobot" | "BackblazeImportRobot" | "BackblazeStoreRobot" | "MinioImportRobot" | "TigrisImportRobot" | "CloudflareImportRobot" | "SupabaseImportRobot" | "MinioStoreRobot" | "TigrisStoreRobot" | "CloudflareStoreRobot" | "SupabaseStoreRobot" | "WasabiImportRobot" | "WasabiStoreRobot" | "SwiftImportRobot" | "SwiftStoreRobot" | "GoogleImportRobot" | "GoogleStoreRobot" | "DropboxImportRobot" | "DropboxStoreRobot" | "HttpImportRobot" | "SftpImportRobot" | "SftpStoreRobot" | "FtpImportRobot" | "FtpStoreRobot" | "CloudfilesImportRobot" | "CloudfilesStoreRobot" | "AzureImportRobot" | "AzureStoreRobot" | "YoutubeStoreRobot" | "VimeoImportRobot" | "VimeoStoreRobot" | "AssemblySavejsonRobot" | "ScriptRunRobot" | "FileHashRobot" | "FileReadRobot" | "VideoOndemandRobot" | "FileFilterRobot" | "TextSpeakRobot" | "TextTranslateRobot" | "FilePreviewRobot" | "TusStoreRobot" | "ProgressSimulateRobot";
|
|
74923
|
+
name: "AiChatRobot" | "UploadHandleRobot" | "FileServeRobot" | "FileWatermarkRobot" | "FileVerifyRobot" | "EdglyDeliverRobot" | "TlcdnDeliverRobot" | "VideoSubtitleRobot" | "VideoEncodeRobot" | "VideoAdaptiveRobot" | "VideoMergeRobot" | "VideoConcatRobot" | "AudioWaveformRobot" | "AudioEncodeRobot" | "AudioLoopRobot" | "AudioConcatRobot" | "AudioMergeRobot" | "AudioArtworkRobot" | "ImageFacedetectRobot" | "ImageDescribeRobot" | "ImageOcrRobot" | "ImageBgremoveRobot" | "ImageGenerateRobot" | "DocumentOcrRobot" | "SpeechTranscribeRobot" | "VideoThumbsRobot" | "FileVirusscanRobot" | "ImageOptimizeRobot" | "FileCompressRobot" | "MetaReadRobot" | "FileDecompressRobot" | "MetaWriteRobot" | "DocumentThumbsRobot" | "DocumentConvertRobot" | "DocumentMergeRobot" | "DocumentSplitRobot" | "DocumentOptimizeRobot" | "DocumentAutorotateRobot" | "HtmlConvertRobot" | "ImageResizeRobot" | "ImageMergeRobot" | "S3ImportRobot" | "S3StoreRobot" | "DigitalOceanImportRobot" | "DigitalOceanStoreRobot" | "BackblazeImportRobot" | "BackblazeStoreRobot" | "MinioImportRobot" | "TigrisImportRobot" | "CloudflareImportRobot" | "SupabaseImportRobot" | "MinioStoreRobot" | "TigrisStoreRobot" | "CloudflareStoreRobot" | "SupabaseStoreRobot" | "WasabiImportRobot" | "WasabiStoreRobot" | "SwiftImportRobot" | "SwiftStoreRobot" | "GoogleImportRobot" | "GoogleStoreRobot" | "DropboxImportRobot" | "DropboxStoreRobot" | "HttpImportRobot" | "SftpImportRobot" | "SftpStoreRobot" | "FtpImportRobot" | "FtpStoreRobot" | "CloudfilesImportRobot" | "CloudfilesStoreRobot" | "AzureImportRobot" | "AzureStoreRobot" | "YoutubeStoreRobot" | "VimeoImportRobot" | "VimeoStoreRobot" | "AssemblySavejsonRobot" | "ScriptRunRobot" | "FileHashRobot" | "FileReadRobot" | "VideoOndemandRobot" | "FileFilterRobot" | "TextSpeakRobot" | "TextTranslateRobot" | "FilePreviewRobot" | "TusStoreRobot" | "ProgressSimulateRobot";
|
|
74398
74924
|
priceFactor: number;
|
|
74399
74925
|
queueSlotCount: number;
|
|
74400
74926
|
isAllowedForUrlTransform: boolean;
|
|
@@ -74448,7 +74974,7 @@ export declare const robotsMeta: {
|
|
|
74448
74974
|
uses_tools?: ("ffmpeg" | "imagemagick")[] | undefined;
|
|
74449
74975
|
};
|
|
74450
74976
|
imageResizeMeta: {
|
|
74451
|
-
name: "AiChatRobot" | "UploadHandleRobot" | "FileServeRobot" | "FileWatermarkRobot" | "FileVerifyRobot" | "EdglyDeliverRobot" | "TlcdnDeliverRobot" | "VideoSubtitleRobot" | "VideoEncodeRobot" | "VideoAdaptiveRobot" | "VideoMergeRobot" | "VideoConcatRobot" | "AudioWaveformRobot" | "AudioEncodeRobot" | "AudioLoopRobot" | "AudioConcatRobot" | "AudioMergeRobot" | "AudioArtworkRobot" | "ImageFacedetectRobot" | "ImageDescribeRobot" | "ImageOcrRobot" | "ImageBgremoveRobot" | "ImageGenerateRobot" | "DocumentOcrRobot" | "SpeechTranscribeRobot" | "VideoThumbsRobot" | "FileVirusscanRobot" | "ImageOptimizeRobot" | "FileCompressRobot" | "MetaReadRobot" | "FileDecompressRobot" | "MetaWriteRobot" | "DocumentThumbsRobot" | "DocumentConvertRobot" | "DocumentMergeRobot" | "DocumentSplitRobot" | "DocumentAutorotateRobot" | "HtmlConvertRobot" | "ImageResizeRobot" | "ImageMergeRobot" | "S3ImportRobot" | "S3StoreRobot" | "DigitalOceanImportRobot" | "DigitalOceanStoreRobot" | "BackblazeImportRobot" | "BackblazeStoreRobot" | "MinioImportRobot" | "TigrisImportRobot" | "CloudflareImportRobot" | "SupabaseImportRobot" | "MinioStoreRobot" | "TigrisStoreRobot" | "CloudflareStoreRobot" | "SupabaseStoreRobot" | "WasabiImportRobot" | "WasabiStoreRobot" | "SwiftImportRobot" | "SwiftStoreRobot" | "GoogleImportRobot" | "GoogleStoreRobot" | "DropboxImportRobot" | "DropboxStoreRobot" | "HttpImportRobot" | "SftpImportRobot" | "SftpStoreRobot" | "FtpImportRobot" | "FtpStoreRobot" | "CloudfilesImportRobot" | "CloudfilesStoreRobot" | "AzureImportRobot" | "AzureStoreRobot" | "YoutubeStoreRobot" | "VimeoImportRobot" | "VimeoStoreRobot" | "AssemblySavejsonRobot" | "ScriptRunRobot" | "FileHashRobot" | "FileReadRobot" | "VideoOndemandRobot" | "FileFilterRobot" | "TextSpeakRobot" | "TextTranslateRobot" | "FilePreviewRobot" | "TusStoreRobot" | "ProgressSimulateRobot";
|
|
74977
|
+
name: "AiChatRobot" | "UploadHandleRobot" | "FileServeRobot" | "FileWatermarkRobot" | "FileVerifyRobot" | "EdglyDeliverRobot" | "TlcdnDeliverRobot" | "VideoSubtitleRobot" | "VideoEncodeRobot" | "VideoAdaptiveRobot" | "VideoMergeRobot" | "VideoConcatRobot" | "AudioWaveformRobot" | "AudioEncodeRobot" | "AudioLoopRobot" | "AudioConcatRobot" | "AudioMergeRobot" | "AudioArtworkRobot" | "ImageFacedetectRobot" | "ImageDescribeRobot" | "ImageOcrRobot" | "ImageBgremoveRobot" | "ImageGenerateRobot" | "DocumentOcrRobot" | "SpeechTranscribeRobot" | "VideoThumbsRobot" | "FileVirusscanRobot" | "ImageOptimizeRobot" | "FileCompressRobot" | "MetaReadRobot" | "FileDecompressRobot" | "MetaWriteRobot" | "DocumentThumbsRobot" | "DocumentConvertRobot" | "DocumentMergeRobot" | "DocumentSplitRobot" | "DocumentOptimizeRobot" | "DocumentAutorotateRobot" | "HtmlConvertRobot" | "ImageResizeRobot" | "ImageMergeRobot" | "S3ImportRobot" | "S3StoreRobot" | "DigitalOceanImportRobot" | "DigitalOceanStoreRobot" | "BackblazeImportRobot" | "BackblazeStoreRobot" | "MinioImportRobot" | "TigrisImportRobot" | "CloudflareImportRobot" | "SupabaseImportRobot" | "MinioStoreRobot" | "TigrisStoreRobot" | "CloudflareStoreRobot" | "SupabaseStoreRobot" | "WasabiImportRobot" | "WasabiStoreRobot" | "SwiftImportRobot" | "SwiftStoreRobot" | "GoogleImportRobot" | "GoogleStoreRobot" | "DropboxImportRobot" | "DropboxStoreRobot" | "HttpImportRobot" | "SftpImportRobot" | "SftpStoreRobot" | "FtpImportRobot" | "FtpStoreRobot" | "CloudfilesImportRobot" | "CloudfilesStoreRobot" | "AzureImportRobot" | "AzureStoreRobot" | "YoutubeStoreRobot" | "VimeoImportRobot" | "VimeoStoreRobot" | "AssemblySavejsonRobot" | "ScriptRunRobot" | "FileHashRobot" | "FileReadRobot" | "VideoOndemandRobot" | "FileFilterRobot" | "TextSpeakRobot" | "TextTranslateRobot" | "FilePreviewRobot" | "TusStoreRobot" | "ProgressSimulateRobot";
|
|
74452
74978
|
priceFactor: number;
|
|
74453
74979
|
queueSlotCount: number;
|
|
74454
74980
|
isAllowedForUrlTransform: boolean;
|
|
@@ -74502,7 +75028,7 @@ export declare const robotsMeta: {
|
|
|
74502
75028
|
uses_tools?: ("ffmpeg" | "imagemagick")[] | undefined;
|
|
74503
75029
|
};
|
|
74504
75030
|
metaWriteMeta: {
|
|
74505
|
-
name: "AiChatRobot" | "UploadHandleRobot" | "FileServeRobot" | "FileWatermarkRobot" | "FileVerifyRobot" | "EdglyDeliverRobot" | "TlcdnDeliverRobot" | "VideoSubtitleRobot" | "VideoEncodeRobot" | "VideoAdaptiveRobot" | "VideoMergeRobot" | "VideoConcatRobot" | "AudioWaveformRobot" | "AudioEncodeRobot" | "AudioLoopRobot" | "AudioConcatRobot" | "AudioMergeRobot" | "AudioArtworkRobot" | "ImageFacedetectRobot" | "ImageDescribeRobot" | "ImageOcrRobot" | "ImageBgremoveRobot" | "ImageGenerateRobot" | "DocumentOcrRobot" | "SpeechTranscribeRobot" | "VideoThumbsRobot" | "FileVirusscanRobot" | "ImageOptimizeRobot" | "FileCompressRobot" | "MetaReadRobot" | "FileDecompressRobot" | "MetaWriteRobot" | "DocumentThumbsRobot" | "DocumentConvertRobot" | "DocumentMergeRobot" | "DocumentSplitRobot" | "DocumentAutorotateRobot" | "HtmlConvertRobot" | "ImageResizeRobot" | "ImageMergeRobot" | "S3ImportRobot" | "S3StoreRobot" | "DigitalOceanImportRobot" | "DigitalOceanStoreRobot" | "BackblazeImportRobot" | "BackblazeStoreRobot" | "MinioImportRobot" | "TigrisImportRobot" | "CloudflareImportRobot" | "SupabaseImportRobot" | "MinioStoreRobot" | "TigrisStoreRobot" | "CloudflareStoreRobot" | "SupabaseStoreRobot" | "WasabiImportRobot" | "WasabiStoreRobot" | "SwiftImportRobot" | "SwiftStoreRobot" | "GoogleImportRobot" | "GoogleStoreRobot" | "DropboxImportRobot" | "DropboxStoreRobot" | "HttpImportRobot" | "SftpImportRobot" | "SftpStoreRobot" | "FtpImportRobot" | "FtpStoreRobot" | "CloudfilesImportRobot" | "CloudfilesStoreRobot" | "AzureImportRobot" | "AzureStoreRobot" | "YoutubeStoreRobot" | "VimeoImportRobot" | "VimeoStoreRobot" | "AssemblySavejsonRobot" | "ScriptRunRobot" | "FileHashRobot" | "FileReadRobot" | "VideoOndemandRobot" | "FileFilterRobot" | "TextSpeakRobot" | "TextTranslateRobot" | "FilePreviewRobot" | "TusStoreRobot" | "ProgressSimulateRobot";
|
|
75031
|
+
name: "AiChatRobot" | "UploadHandleRobot" | "FileServeRobot" | "FileWatermarkRobot" | "FileVerifyRobot" | "EdglyDeliverRobot" | "TlcdnDeliverRobot" | "VideoSubtitleRobot" | "VideoEncodeRobot" | "VideoAdaptiveRobot" | "VideoMergeRobot" | "VideoConcatRobot" | "AudioWaveformRobot" | "AudioEncodeRobot" | "AudioLoopRobot" | "AudioConcatRobot" | "AudioMergeRobot" | "AudioArtworkRobot" | "ImageFacedetectRobot" | "ImageDescribeRobot" | "ImageOcrRobot" | "ImageBgremoveRobot" | "ImageGenerateRobot" | "DocumentOcrRobot" | "SpeechTranscribeRobot" | "VideoThumbsRobot" | "FileVirusscanRobot" | "ImageOptimizeRobot" | "FileCompressRobot" | "MetaReadRobot" | "FileDecompressRobot" | "MetaWriteRobot" | "DocumentThumbsRobot" | "DocumentConvertRobot" | "DocumentMergeRobot" | "DocumentSplitRobot" | "DocumentOptimizeRobot" | "DocumentAutorotateRobot" | "HtmlConvertRobot" | "ImageResizeRobot" | "ImageMergeRobot" | "S3ImportRobot" | "S3StoreRobot" | "DigitalOceanImportRobot" | "DigitalOceanStoreRobot" | "BackblazeImportRobot" | "BackblazeStoreRobot" | "MinioImportRobot" | "TigrisImportRobot" | "CloudflareImportRobot" | "SupabaseImportRobot" | "MinioStoreRobot" | "TigrisStoreRobot" | "CloudflareStoreRobot" | "SupabaseStoreRobot" | "WasabiImportRobot" | "WasabiStoreRobot" | "SwiftImportRobot" | "SwiftStoreRobot" | "GoogleImportRobot" | "GoogleStoreRobot" | "DropboxImportRobot" | "DropboxStoreRobot" | "HttpImportRobot" | "SftpImportRobot" | "SftpStoreRobot" | "FtpImportRobot" | "FtpStoreRobot" | "CloudfilesImportRobot" | "CloudfilesStoreRobot" | "AzureImportRobot" | "AzureStoreRobot" | "YoutubeStoreRobot" | "VimeoImportRobot" | "VimeoStoreRobot" | "AssemblySavejsonRobot" | "ScriptRunRobot" | "FileHashRobot" | "FileReadRobot" | "VideoOndemandRobot" | "FileFilterRobot" | "TextSpeakRobot" | "TextTranslateRobot" | "FilePreviewRobot" | "TusStoreRobot" | "ProgressSimulateRobot";
|
|
74506
75032
|
priceFactor: number;
|
|
74507
75033
|
queueSlotCount: number;
|
|
74508
75034
|
isAllowedForUrlTransform: boolean;
|
|
@@ -74556,7 +75082,7 @@ export declare const robotsMeta: {
|
|
|
74556
75082
|
uses_tools?: ("ffmpeg" | "imagemagick")[] | undefined;
|
|
74557
75083
|
};
|
|
74558
75084
|
minioImportMeta: {
|
|
74559
|
-
name: "AiChatRobot" | "UploadHandleRobot" | "FileServeRobot" | "FileWatermarkRobot" | "FileVerifyRobot" | "EdglyDeliverRobot" | "TlcdnDeliverRobot" | "VideoSubtitleRobot" | "VideoEncodeRobot" | "VideoAdaptiveRobot" | "VideoMergeRobot" | "VideoConcatRobot" | "AudioWaveformRobot" | "AudioEncodeRobot" | "AudioLoopRobot" | "AudioConcatRobot" | "AudioMergeRobot" | "AudioArtworkRobot" | "ImageFacedetectRobot" | "ImageDescribeRobot" | "ImageOcrRobot" | "ImageBgremoveRobot" | "ImageGenerateRobot" | "DocumentOcrRobot" | "SpeechTranscribeRobot" | "VideoThumbsRobot" | "FileVirusscanRobot" | "ImageOptimizeRobot" | "FileCompressRobot" | "MetaReadRobot" | "FileDecompressRobot" | "MetaWriteRobot" | "DocumentThumbsRobot" | "DocumentConvertRobot" | "DocumentMergeRobot" | "DocumentSplitRobot" | "DocumentAutorotateRobot" | "HtmlConvertRobot" | "ImageResizeRobot" | "ImageMergeRobot" | "S3ImportRobot" | "S3StoreRobot" | "DigitalOceanImportRobot" | "DigitalOceanStoreRobot" | "BackblazeImportRobot" | "BackblazeStoreRobot" | "MinioImportRobot" | "TigrisImportRobot" | "CloudflareImportRobot" | "SupabaseImportRobot" | "MinioStoreRobot" | "TigrisStoreRobot" | "CloudflareStoreRobot" | "SupabaseStoreRobot" | "WasabiImportRobot" | "WasabiStoreRobot" | "SwiftImportRobot" | "SwiftStoreRobot" | "GoogleImportRobot" | "GoogleStoreRobot" | "DropboxImportRobot" | "DropboxStoreRobot" | "HttpImportRobot" | "SftpImportRobot" | "SftpStoreRobot" | "FtpImportRobot" | "FtpStoreRobot" | "CloudfilesImportRobot" | "CloudfilesStoreRobot" | "AzureImportRobot" | "AzureStoreRobot" | "YoutubeStoreRobot" | "VimeoImportRobot" | "VimeoStoreRobot" | "AssemblySavejsonRobot" | "ScriptRunRobot" | "FileHashRobot" | "FileReadRobot" | "VideoOndemandRobot" | "FileFilterRobot" | "TextSpeakRobot" | "TextTranslateRobot" | "FilePreviewRobot" | "TusStoreRobot" | "ProgressSimulateRobot";
|
|
75085
|
+
name: "AiChatRobot" | "UploadHandleRobot" | "FileServeRobot" | "FileWatermarkRobot" | "FileVerifyRobot" | "EdglyDeliverRobot" | "TlcdnDeliverRobot" | "VideoSubtitleRobot" | "VideoEncodeRobot" | "VideoAdaptiveRobot" | "VideoMergeRobot" | "VideoConcatRobot" | "AudioWaveformRobot" | "AudioEncodeRobot" | "AudioLoopRobot" | "AudioConcatRobot" | "AudioMergeRobot" | "AudioArtworkRobot" | "ImageFacedetectRobot" | "ImageDescribeRobot" | "ImageOcrRobot" | "ImageBgremoveRobot" | "ImageGenerateRobot" | "DocumentOcrRobot" | "SpeechTranscribeRobot" | "VideoThumbsRobot" | "FileVirusscanRobot" | "ImageOptimizeRobot" | "FileCompressRobot" | "MetaReadRobot" | "FileDecompressRobot" | "MetaWriteRobot" | "DocumentThumbsRobot" | "DocumentConvertRobot" | "DocumentMergeRobot" | "DocumentSplitRobot" | "DocumentOptimizeRobot" | "DocumentAutorotateRobot" | "HtmlConvertRobot" | "ImageResizeRobot" | "ImageMergeRobot" | "S3ImportRobot" | "S3StoreRobot" | "DigitalOceanImportRobot" | "DigitalOceanStoreRobot" | "BackblazeImportRobot" | "BackblazeStoreRobot" | "MinioImportRobot" | "TigrisImportRobot" | "CloudflareImportRobot" | "SupabaseImportRobot" | "MinioStoreRobot" | "TigrisStoreRobot" | "CloudflareStoreRobot" | "SupabaseStoreRobot" | "WasabiImportRobot" | "WasabiStoreRobot" | "SwiftImportRobot" | "SwiftStoreRobot" | "GoogleImportRobot" | "GoogleStoreRobot" | "DropboxImportRobot" | "DropboxStoreRobot" | "HttpImportRobot" | "SftpImportRobot" | "SftpStoreRobot" | "FtpImportRobot" | "FtpStoreRobot" | "CloudfilesImportRobot" | "CloudfilesStoreRobot" | "AzureImportRobot" | "AzureStoreRobot" | "YoutubeStoreRobot" | "VimeoImportRobot" | "VimeoStoreRobot" | "AssemblySavejsonRobot" | "ScriptRunRobot" | "FileHashRobot" | "FileReadRobot" | "VideoOndemandRobot" | "FileFilterRobot" | "TextSpeakRobot" | "TextTranslateRobot" | "FilePreviewRobot" | "TusStoreRobot" | "ProgressSimulateRobot";
|
|
74560
75086
|
priceFactor: number;
|
|
74561
75087
|
queueSlotCount: number;
|
|
74562
75088
|
isAllowedForUrlTransform: boolean;
|
|
@@ -74610,7 +75136,7 @@ export declare const robotsMeta: {
|
|
|
74610
75136
|
uses_tools?: ("ffmpeg" | "imagemagick")[] | undefined;
|
|
74611
75137
|
};
|
|
74612
75138
|
minioStoreMeta: {
|
|
74613
|
-
name: "AiChatRobot" | "UploadHandleRobot" | "FileServeRobot" | "FileWatermarkRobot" | "FileVerifyRobot" | "EdglyDeliverRobot" | "TlcdnDeliverRobot" | "VideoSubtitleRobot" | "VideoEncodeRobot" | "VideoAdaptiveRobot" | "VideoMergeRobot" | "VideoConcatRobot" | "AudioWaveformRobot" | "AudioEncodeRobot" | "AudioLoopRobot" | "AudioConcatRobot" | "AudioMergeRobot" | "AudioArtworkRobot" | "ImageFacedetectRobot" | "ImageDescribeRobot" | "ImageOcrRobot" | "ImageBgremoveRobot" | "ImageGenerateRobot" | "DocumentOcrRobot" | "SpeechTranscribeRobot" | "VideoThumbsRobot" | "FileVirusscanRobot" | "ImageOptimizeRobot" | "FileCompressRobot" | "MetaReadRobot" | "FileDecompressRobot" | "MetaWriteRobot" | "DocumentThumbsRobot" | "DocumentConvertRobot" | "DocumentMergeRobot" | "DocumentSplitRobot" | "DocumentAutorotateRobot" | "HtmlConvertRobot" | "ImageResizeRobot" | "ImageMergeRobot" | "S3ImportRobot" | "S3StoreRobot" | "DigitalOceanImportRobot" | "DigitalOceanStoreRobot" | "BackblazeImportRobot" | "BackblazeStoreRobot" | "MinioImportRobot" | "TigrisImportRobot" | "CloudflareImportRobot" | "SupabaseImportRobot" | "MinioStoreRobot" | "TigrisStoreRobot" | "CloudflareStoreRobot" | "SupabaseStoreRobot" | "WasabiImportRobot" | "WasabiStoreRobot" | "SwiftImportRobot" | "SwiftStoreRobot" | "GoogleImportRobot" | "GoogleStoreRobot" | "DropboxImportRobot" | "DropboxStoreRobot" | "HttpImportRobot" | "SftpImportRobot" | "SftpStoreRobot" | "FtpImportRobot" | "FtpStoreRobot" | "CloudfilesImportRobot" | "CloudfilesStoreRobot" | "AzureImportRobot" | "AzureStoreRobot" | "YoutubeStoreRobot" | "VimeoImportRobot" | "VimeoStoreRobot" | "AssemblySavejsonRobot" | "ScriptRunRobot" | "FileHashRobot" | "FileReadRobot" | "VideoOndemandRobot" | "FileFilterRobot" | "TextSpeakRobot" | "TextTranslateRobot" | "FilePreviewRobot" | "TusStoreRobot" | "ProgressSimulateRobot";
|
|
75139
|
+
name: "AiChatRobot" | "UploadHandleRobot" | "FileServeRobot" | "FileWatermarkRobot" | "FileVerifyRobot" | "EdglyDeliverRobot" | "TlcdnDeliverRobot" | "VideoSubtitleRobot" | "VideoEncodeRobot" | "VideoAdaptiveRobot" | "VideoMergeRobot" | "VideoConcatRobot" | "AudioWaveformRobot" | "AudioEncodeRobot" | "AudioLoopRobot" | "AudioConcatRobot" | "AudioMergeRobot" | "AudioArtworkRobot" | "ImageFacedetectRobot" | "ImageDescribeRobot" | "ImageOcrRobot" | "ImageBgremoveRobot" | "ImageGenerateRobot" | "DocumentOcrRobot" | "SpeechTranscribeRobot" | "VideoThumbsRobot" | "FileVirusscanRobot" | "ImageOptimizeRobot" | "FileCompressRobot" | "MetaReadRobot" | "FileDecompressRobot" | "MetaWriteRobot" | "DocumentThumbsRobot" | "DocumentConvertRobot" | "DocumentMergeRobot" | "DocumentSplitRobot" | "DocumentOptimizeRobot" | "DocumentAutorotateRobot" | "HtmlConvertRobot" | "ImageResizeRobot" | "ImageMergeRobot" | "S3ImportRobot" | "S3StoreRobot" | "DigitalOceanImportRobot" | "DigitalOceanStoreRobot" | "BackblazeImportRobot" | "BackblazeStoreRobot" | "MinioImportRobot" | "TigrisImportRobot" | "CloudflareImportRobot" | "SupabaseImportRobot" | "MinioStoreRobot" | "TigrisStoreRobot" | "CloudflareStoreRobot" | "SupabaseStoreRobot" | "WasabiImportRobot" | "WasabiStoreRobot" | "SwiftImportRobot" | "SwiftStoreRobot" | "GoogleImportRobot" | "GoogleStoreRobot" | "DropboxImportRobot" | "DropboxStoreRobot" | "HttpImportRobot" | "SftpImportRobot" | "SftpStoreRobot" | "FtpImportRobot" | "FtpStoreRobot" | "CloudfilesImportRobot" | "CloudfilesStoreRobot" | "AzureImportRobot" | "AzureStoreRobot" | "YoutubeStoreRobot" | "VimeoImportRobot" | "VimeoStoreRobot" | "AssemblySavejsonRobot" | "ScriptRunRobot" | "FileHashRobot" | "FileReadRobot" | "VideoOndemandRobot" | "FileFilterRobot" | "TextSpeakRobot" | "TextTranslateRobot" | "FilePreviewRobot" | "TusStoreRobot" | "ProgressSimulateRobot";
|
|
74614
75140
|
priceFactor: number;
|
|
74615
75141
|
queueSlotCount: number;
|
|
74616
75142
|
isAllowedForUrlTransform: boolean;
|
|
@@ -74664,7 +75190,7 @@ export declare const robotsMeta: {
|
|
|
74664
75190
|
uses_tools?: ("ffmpeg" | "imagemagick")[] | undefined;
|
|
74665
75191
|
};
|
|
74666
75192
|
s3ImportMeta: {
|
|
74667
|
-
name: "AiChatRobot" | "UploadHandleRobot" | "FileServeRobot" | "FileWatermarkRobot" | "FileVerifyRobot" | "EdglyDeliverRobot" | "TlcdnDeliverRobot" | "VideoSubtitleRobot" | "VideoEncodeRobot" | "VideoAdaptiveRobot" | "VideoMergeRobot" | "VideoConcatRobot" | "AudioWaveformRobot" | "AudioEncodeRobot" | "AudioLoopRobot" | "AudioConcatRobot" | "AudioMergeRobot" | "AudioArtworkRobot" | "ImageFacedetectRobot" | "ImageDescribeRobot" | "ImageOcrRobot" | "ImageBgremoveRobot" | "ImageGenerateRobot" | "DocumentOcrRobot" | "SpeechTranscribeRobot" | "VideoThumbsRobot" | "FileVirusscanRobot" | "ImageOptimizeRobot" | "FileCompressRobot" | "MetaReadRobot" | "FileDecompressRobot" | "MetaWriteRobot" | "DocumentThumbsRobot" | "DocumentConvertRobot" | "DocumentMergeRobot" | "DocumentSplitRobot" | "DocumentAutorotateRobot" | "HtmlConvertRobot" | "ImageResizeRobot" | "ImageMergeRobot" | "S3ImportRobot" | "S3StoreRobot" | "DigitalOceanImportRobot" | "DigitalOceanStoreRobot" | "BackblazeImportRobot" | "BackblazeStoreRobot" | "MinioImportRobot" | "TigrisImportRobot" | "CloudflareImportRobot" | "SupabaseImportRobot" | "MinioStoreRobot" | "TigrisStoreRobot" | "CloudflareStoreRobot" | "SupabaseStoreRobot" | "WasabiImportRobot" | "WasabiStoreRobot" | "SwiftImportRobot" | "SwiftStoreRobot" | "GoogleImportRobot" | "GoogleStoreRobot" | "DropboxImportRobot" | "DropboxStoreRobot" | "HttpImportRobot" | "SftpImportRobot" | "SftpStoreRobot" | "FtpImportRobot" | "FtpStoreRobot" | "CloudfilesImportRobot" | "CloudfilesStoreRobot" | "AzureImportRobot" | "AzureStoreRobot" | "YoutubeStoreRobot" | "VimeoImportRobot" | "VimeoStoreRobot" | "AssemblySavejsonRobot" | "ScriptRunRobot" | "FileHashRobot" | "FileReadRobot" | "VideoOndemandRobot" | "FileFilterRobot" | "TextSpeakRobot" | "TextTranslateRobot" | "FilePreviewRobot" | "TusStoreRobot" | "ProgressSimulateRobot";
|
|
75193
|
+
name: "AiChatRobot" | "UploadHandleRobot" | "FileServeRobot" | "FileWatermarkRobot" | "FileVerifyRobot" | "EdglyDeliverRobot" | "TlcdnDeliverRobot" | "VideoSubtitleRobot" | "VideoEncodeRobot" | "VideoAdaptiveRobot" | "VideoMergeRobot" | "VideoConcatRobot" | "AudioWaveformRobot" | "AudioEncodeRobot" | "AudioLoopRobot" | "AudioConcatRobot" | "AudioMergeRobot" | "AudioArtworkRobot" | "ImageFacedetectRobot" | "ImageDescribeRobot" | "ImageOcrRobot" | "ImageBgremoveRobot" | "ImageGenerateRobot" | "DocumentOcrRobot" | "SpeechTranscribeRobot" | "VideoThumbsRobot" | "FileVirusscanRobot" | "ImageOptimizeRobot" | "FileCompressRobot" | "MetaReadRobot" | "FileDecompressRobot" | "MetaWriteRobot" | "DocumentThumbsRobot" | "DocumentConvertRobot" | "DocumentMergeRobot" | "DocumentSplitRobot" | "DocumentOptimizeRobot" | "DocumentAutorotateRobot" | "HtmlConvertRobot" | "ImageResizeRobot" | "ImageMergeRobot" | "S3ImportRobot" | "S3StoreRobot" | "DigitalOceanImportRobot" | "DigitalOceanStoreRobot" | "BackblazeImportRobot" | "BackblazeStoreRobot" | "MinioImportRobot" | "TigrisImportRobot" | "CloudflareImportRobot" | "SupabaseImportRobot" | "MinioStoreRobot" | "TigrisStoreRobot" | "CloudflareStoreRobot" | "SupabaseStoreRobot" | "WasabiImportRobot" | "WasabiStoreRobot" | "SwiftImportRobot" | "SwiftStoreRobot" | "GoogleImportRobot" | "GoogleStoreRobot" | "DropboxImportRobot" | "DropboxStoreRobot" | "HttpImportRobot" | "SftpImportRobot" | "SftpStoreRobot" | "FtpImportRobot" | "FtpStoreRobot" | "CloudfilesImportRobot" | "CloudfilesStoreRobot" | "AzureImportRobot" | "AzureStoreRobot" | "YoutubeStoreRobot" | "VimeoImportRobot" | "VimeoStoreRobot" | "AssemblySavejsonRobot" | "ScriptRunRobot" | "FileHashRobot" | "FileReadRobot" | "VideoOndemandRobot" | "FileFilterRobot" | "TextSpeakRobot" | "TextTranslateRobot" | "FilePreviewRobot" | "TusStoreRobot" | "ProgressSimulateRobot";
|
|
74668
75194
|
priceFactor: number;
|
|
74669
75195
|
queueSlotCount: number;
|
|
74670
75196
|
isAllowedForUrlTransform: boolean;
|
|
@@ -74718,7 +75244,7 @@ export declare const robotsMeta: {
|
|
|
74718
75244
|
uses_tools?: ("ffmpeg" | "imagemagick")[] | undefined;
|
|
74719
75245
|
};
|
|
74720
75246
|
s3StoreMeta: {
|
|
74721
|
-
name: "AiChatRobot" | "UploadHandleRobot" | "FileServeRobot" | "FileWatermarkRobot" | "FileVerifyRobot" | "EdglyDeliverRobot" | "TlcdnDeliverRobot" | "VideoSubtitleRobot" | "VideoEncodeRobot" | "VideoAdaptiveRobot" | "VideoMergeRobot" | "VideoConcatRobot" | "AudioWaveformRobot" | "AudioEncodeRobot" | "AudioLoopRobot" | "AudioConcatRobot" | "AudioMergeRobot" | "AudioArtworkRobot" | "ImageFacedetectRobot" | "ImageDescribeRobot" | "ImageOcrRobot" | "ImageBgremoveRobot" | "ImageGenerateRobot" | "DocumentOcrRobot" | "SpeechTranscribeRobot" | "VideoThumbsRobot" | "FileVirusscanRobot" | "ImageOptimizeRobot" | "FileCompressRobot" | "MetaReadRobot" | "FileDecompressRobot" | "MetaWriteRobot" | "DocumentThumbsRobot" | "DocumentConvertRobot" | "DocumentMergeRobot" | "DocumentSplitRobot" | "DocumentAutorotateRobot" | "HtmlConvertRobot" | "ImageResizeRobot" | "ImageMergeRobot" | "S3ImportRobot" | "S3StoreRobot" | "DigitalOceanImportRobot" | "DigitalOceanStoreRobot" | "BackblazeImportRobot" | "BackblazeStoreRobot" | "MinioImportRobot" | "TigrisImportRobot" | "CloudflareImportRobot" | "SupabaseImportRobot" | "MinioStoreRobot" | "TigrisStoreRobot" | "CloudflareStoreRobot" | "SupabaseStoreRobot" | "WasabiImportRobot" | "WasabiStoreRobot" | "SwiftImportRobot" | "SwiftStoreRobot" | "GoogleImportRobot" | "GoogleStoreRobot" | "DropboxImportRobot" | "DropboxStoreRobot" | "HttpImportRobot" | "SftpImportRobot" | "SftpStoreRobot" | "FtpImportRobot" | "FtpStoreRobot" | "CloudfilesImportRobot" | "CloudfilesStoreRobot" | "AzureImportRobot" | "AzureStoreRobot" | "YoutubeStoreRobot" | "VimeoImportRobot" | "VimeoStoreRobot" | "AssemblySavejsonRobot" | "ScriptRunRobot" | "FileHashRobot" | "FileReadRobot" | "VideoOndemandRobot" | "FileFilterRobot" | "TextSpeakRobot" | "TextTranslateRobot" | "FilePreviewRobot" | "TusStoreRobot" | "ProgressSimulateRobot";
|
|
75247
|
+
name: "AiChatRobot" | "UploadHandleRobot" | "FileServeRobot" | "FileWatermarkRobot" | "FileVerifyRobot" | "EdglyDeliverRobot" | "TlcdnDeliverRobot" | "VideoSubtitleRobot" | "VideoEncodeRobot" | "VideoAdaptiveRobot" | "VideoMergeRobot" | "VideoConcatRobot" | "AudioWaveformRobot" | "AudioEncodeRobot" | "AudioLoopRobot" | "AudioConcatRobot" | "AudioMergeRobot" | "AudioArtworkRobot" | "ImageFacedetectRobot" | "ImageDescribeRobot" | "ImageOcrRobot" | "ImageBgremoveRobot" | "ImageGenerateRobot" | "DocumentOcrRobot" | "SpeechTranscribeRobot" | "VideoThumbsRobot" | "FileVirusscanRobot" | "ImageOptimizeRobot" | "FileCompressRobot" | "MetaReadRobot" | "FileDecompressRobot" | "MetaWriteRobot" | "DocumentThumbsRobot" | "DocumentConvertRobot" | "DocumentMergeRobot" | "DocumentSplitRobot" | "DocumentOptimizeRobot" | "DocumentAutorotateRobot" | "HtmlConvertRobot" | "ImageResizeRobot" | "ImageMergeRobot" | "S3ImportRobot" | "S3StoreRobot" | "DigitalOceanImportRobot" | "DigitalOceanStoreRobot" | "BackblazeImportRobot" | "BackblazeStoreRobot" | "MinioImportRobot" | "TigrisImportRobot" | "CloudflareImportRobot" | "SupabaseImportRobot" | "MinioStoreRobot" | "TigrisStoreRobot" | "CloudflareStoreRobot" | "SupabaseStoreRobot" | "WasabiImportRobot" | "WasabiStoreRobot" | "SwiftImportRobot" | "SwiftStoreRobot" | "GoogleImportRobot" | "GoogleStoreRobot" | "DropboxImportRobot" | "DropboxStoreRobot" | "HttpImportRobot" | "SftpImportRobot" | "SftpStoreRobot" | "FtpImportRobot" | "FtpStoreRobot" | "CloudfilesImportRobot" | "CloudfilesStoreRobot" | "AzureImportRobot" | "AzureStoreRobot" | "YoutubeStoreRobot" | "VimeoImportRobot" | "VimeoStoreRobot" | "AssemblySavejsonRobot" | "ScriptRunRobot" | "FileHashRobot" | "FileReadRobot" | "VideoOndemandRobot" | "FileFilterRobot" | "TextSpeakRobot" | "TextTranslateRobot" | "FilePreviewRobot" | "TusStoreRobot" | "ProgressSimulateRobot";
|
|
74722
75248
|
priceFactor: number;
|
|
74723
75249
|
queueSlotCount: number;
|
|
74724
75250
|
isAllowedForUrlTransform: boolean;
|
|
@@ -74772,7 +75298,7 @@ export declare const robotsMeta: {
|
|
|
74772
75298
|
uses_tools?: ("ffmpeg" | "imagemagick")[] | undefined;
|
|
74773
75299
|
};
|
|
74774
75300
|
scriptRunMeta: {
|
|
74775
|
-
name: "AiChatRobot" | "UploadHandleRobot" | "FileServeRobot" | "FileWatermarkRobot" | "FileVerifyRobot" | "EdglyDeliverRobot" | "TlcdnDeliverRobot" | "VideoSubtitleRobot" | "VideoEncodeRobot" | "VideoAdaptiveRobot" | "VideoMergeRobot" | "VideoConcatRobot" | "AudioWaveformRobot" | "AudioEncodeRobot" | "AudioLoopRobot" | "AudioConcatRobot" | "AudioMergeRobot" | "AudioArtworkRobot" | "ImageFacedetectRobot" | "ImageDescribeRobot" | "ImageOcrRobot" | "ImageBgremoveRobot" | "ImageGenerateRobot" | "DocumentOcrRobot" | "SpeechTranscribeRobot" | "VideoThumbsRobot" | "FileVirusscanRobot" | "ImageOptimizeRobot" | "FileCompressRobot" | "MetaReadRobot" | "FileDecompressRobot" | "MetaWriteRobot" | "DocumentThumbsRobot" | "DocumentConvertRobot" | "DocumentMergeRobot" | "DocumentSplitRobot" | "DocumentAutorotateRobot" | "HtmlConvertRobot" | "ImageResizeRobot" | "ImageMergeRobot" | "S3ImportRobot" | "S3StoreRobot" | "DigitalOceanImportRobot" | "DigitalOceanStoreRobot" | "BackblazeImportRobot" | "BackblazeStoreRobot" | "MinioImportRobot" | "TigrisImportRobot" | "CloudflareImportRobot" | "SupabaseImportRobot" | "MinioStoreRobot" | "TigrisStoreRobot" | "CloudflareStoreRobot" | "SupabaseStoreRobot" | "WasabiImportRobot" | "WasabiStoreRobot" | "SwiftImportRobot" | "SwiftStoreRobot" | "GoogleImportRobot" | "GoogleStoreRobot" | "DropboxImportRobot" | "DropboxStoreRobot" | "HttpImportRobot" | "SftpImportRobot" | "SftpStoreRobot" | "FtpImportRobot" | "FtpStoreRobot" | "CloudfilesImportRobot" | "CloudfilesStoreRobot" | "AzureImportRobot" | "AzureStoreRobot" | "YoutubeStoreRobot" | "VimeoImportRobot" | "VimeoStoreRobot" | "AssemblySavejsonRobot" | "ScriptRunRobot" | "FileHashRobot" | "FileReadRobot" | "VideoOndemandRobot" | "FileFilterRobot" | "TextSpeakRobot" | "TextTranslateRobot" | "FilePreviewRobot" | "TusStoreRobot" | "ProgressSimulateRobot";
|
|
75301
|
+
name: "AiChatRobot" | "UploadHandleRobot" | "FileServeRobot" | "FileWatermarkRobot" | "FileVerifyRobot" | "EdglyDeliverRobot" | "TlcdnDeliverRobot" | "VideoSubtitleRobot" | "VideoEncodeRobot" | "VideoAdaptiveRobot" | "VideoMergeRobot" | "VideoConcatRobot" | "AudioWaveformRobot" | "AudioEncodeRobot" | "AudioLoopRobot" | "AudioConcatRobot" | "AudioMergeRobot" | "AudioArtworkRobot" | "ImageFacedetectRobot" | "ImageDescribeRobot" | "ImageOcrRobot" | "ImageBgremoveRobot" | "ImageGenerateRobot" | "DocumentOcrRobot" | "SpeechTranscribeRobot" | "VideoThumbsRobot" | "FileVirusscanRobot" | "ImageOptimizeRobot" | "FileCompressRobot" | "MetaReadRobot" | "FileDecompressRobot" | "MetaWriteRobot" | "DocumentThumbsRobot" | "DocumentConvertRobot" | "DocumentMergeRobot" | "DocumentSplitRobot" | "DocumentOptimizeRobot" | "DocumentAutorotateRobot" | "HtmlConvertRobot" | "ImageResizeRobot" | "ImageMergeRobot" | "S3ImportRobot" | "S3StoreRobot" | "DigitalOceanImportRobot" | "DigitalOceanStoreRobot" | "BackblazeImportRobot" | "BackblazeStoreRobot" | "MinioImportRobot" | "TigrisImportRobot" | "CloudflareImportRobot" | "SupabaseImportRobot" | "MinioStoreRobot" | "TigrisStoreRobot" | "CloudflareStoreRobot" | "SupabaseStoreRobot" | "WasabiImportRobot" | "WasabiStoreRobot" | "SwiftImportRobot" | "SwiftStoreRobot" | "GoogleImportRobot" | "GoogleStoreRobot" | "DropboxImportRobot" | "DropboxStoreRobot" | "HttpImportRobot" | "SftpImportRobot" | "SftpStoreRobot" | "FtpImportRobot" | "FtpStoreRobot" | "CloudfilesImportRobot" | "CloudfilesStoreRobot" | "AzureImportRobot" | "AzureStoreRobot" | "YoutubeStoreRobot" | "VimeoImportRobot" | "VimeoStoreRobot" | "AssemblySavejsonRobot" | "ScriptRunRobot" | "FileHashRobot" | "FileReadRobot" | "VideoOndemandRobot" | "FileFilterRobot" | "TextSpeakRobot" | "TextTranslateRobot" | "FilePreviewRobot" | "TusStoreRobot" | "ProgressSimulateRobot";
|
|
74776
75302
|
priceFactor: number;
|
|
74777
75303
|
queueSlotCount: number;
|
|
74778
75304
|
isAllowedForUrlTransform: boolean;
|
|
@@ -74826,7 +75352,7 @@ export declare const robotsMeta: {
|
|
|
74826
75352
|
uses_tools?: ("ffmpeg" | "imagemagick")[] | undefined;
|
|
74827
75353
|
};
|
|
74828
75354
|
sftpImportMeta: {
|
|
74829
|
-
name: "AiChatRobot" | "UploadHandleRobot" | "FileServeRobot" | "FileWatermarkRobot" | "FileVerifyRobot" | "EdglyDeliverRobot" | "TlcdnDeliverRobot" | "VideoSubtitleRobot" | "VideoEncodeRobot" | "VideoAdaptiveRobot" | "VideoMergeRobot" | "VideoConcatRobot" | "AudioWaveformRobot" | "AudioEncodeRobot" | "AudioLoopRobot" | "AudioConcatRobot" | "AudioMergeRobot" | "AudioArtworkRobot" | "ImageFacedetectRobot" | "ImageDescribeRobot" | "ImageOcrRobot" | "ImageBgremoveRobot" | "ImageGenerateRobot" | "DocumentOcrRobot" | "SpeechTranscribeRobot" | "VideoThumbsRobot" | "FileVirusscanRobot" | "ImageOptimizeRobot" | "FileCompressRobot" | "MetaReadRobot" | "FileDecompressRobot" | "MetaWriteRobot" | "DocumentThumbsRobot" | "DocumentConvertRobot" | "DocumentMergeRobot" | "DocumentSplitRobot" | "DocumentAutorotateRobot" | "HtmlConvertRobot" | "ImageResizeRobot" | "ImageMergeRobot" | "S3ImportRobot" | "S3StoreRobot" | "DigitalOceanImportRobot" | "DigitalOceanStoreRobot" | "BackblazeImportRobot" | "BackblazeStoreRobot" | "MinioImportRobot" | "TigrisImportRobot" | "CloudflareImportRobot" | "SupabaseImportRobot" | "MinioStoreRobot" | "TigrisStoreRobot" | "CloudflareStoreRobot" | "SupabaseStoreRobot" | "WasabiImportRobot" | "WasabiStoreRobot" | "SwiftImportRobot" | "SwiftStoreRobot" | "GoogleImportRobot" | "GoogleStoreRobot" | "DropboxImportRobot" | "DropboxStoreRobot" | "HttpImportRobot" | "SftpImportRobot" | "SftpStoreRobot" | "FtpImportRobot" | "FtpStoreRobot" | "CloudfilesImportRobot" | "CloudfilesStoreRobot" | "AzureImportRobot" | "AzureStoreRobot" | "YoutubeStoreRobot" | "VimeoImportRobot" | "VimeoStoreRobot" | "AssemblySavejsonRobot" | "ScriptRunRobot" | "FileHashRobot" | "FileReadRobot" | "VideoOndemandRobot" | "FileFilterRobot" | "TextSpeakRobot" | "TextTranslateRobot" | "FilePreviewRobot" | "TusStoreRobot" | "ProgressSimulateRobot";
|
|
75355
|
+
name: "AiChatRobot" | "UploadHandleRobot" | "FileServeRobot" | "FileWatermarkRobot" | "FileVerifyRobot" | "EdglyDeliverRobot" | "TlcdnDeliverRobot" | "VideoSubtitleRobot" | "VideoEncodeRobot" | "VideoAdaptiveRobot" | "VideoMergeRobot" | "VideoConcatRobot" | "AudioWaveformRobot" | "AudioEncodeRobot" | "AudioLoopRobot" | "AudioConcatRobot" | "AudioMergeRobot" | "AudioArtworkRobot" | "ImageFacedetectRobot" | "ImageDescribeRobot" | "ImageOcrRobot" | "ImageBgremoveRobot" | "ImageGenerateRobot" | "DocumentOcrRobot" | "SpeechTranscribeRobot" | "VideoThumbsRobot" | "FileVirusscanRobot" | "ImageOptimizeRobot" | "FileCompressRobot" | "MetaReadRobot" | "FileDecompressRobot" | "MetaWriteRobot" | "DocumentThumbsRobot" | "DocumentConvertRobot" | "DocumentMergeRobot" | "DocumentSplitRobot" | "DocumentOptimizeRobot" | "DocumentAutorotateRobot" | "HtmlConvertRobot" | "ImageResizeRobot" | "ImageMergeRobot" | "S3ImportRobot" | "S3StoreRobot" | "DigitalOceanImportRobot" | "DigitalOceanStoreRobot" | "BackblazeImportRobot" | "BackblazeStoreRobot" | "MinioImportRobot" | "TigrisImportRobot" | "CloudflareImportRobot" | "SupabaseImportRobot" | "MinioStoreRobot" | "TigrisStoreRobot" | "CloudflareStoreRobot" | "SupabaseStoreRobot" | "WasabiImportRobot" | "WasabiStoreRobot" | "SwiftImportRobot" | "SwiftStoreRobot" | "GoogleImportRobot" | "GoogleStoreRobot" | "DropboxImportRobot" | "DropboxStoreRobot" | "HttpImportRobot" | "SftpImportRobot" | "SftpStoreRobot" | "FtpImportRobot" | "FtpStoreRobot" | "CloudfilesImportRobot" | "CloudfilesStoreRobot" | "AzureImportRobot" | "AzureStoreRobot" | "YoutubeStoreRobot" | "VimeoImportRobot" | "VimeoStoreRobot" | "AssemblySavejsonRobot" | "ScriptRunRobot" | "FileHashRobot" | "FileReadRobot" | "VideoOndemandRobot" | "FileFilterRobot" | "TextSpeakRobot" | "TextTranslateRobot" | "FilePreviewRobot" | "TusStoreRobot" | "ProgressSimulateRobot";
|
|
74830
75356
|
priceFactor: number;
|
|
74831
75357
|
queueSlotCount: number;
|
|
74832
75358
|
isAllowedForUrlTransform: boolean;
|
|
@@ -74880,7 +75406,7 @@ export declare const robotsMeta: {
|
|
|
74880
75406
|
uses_tools?: ("ffmpeg" | "imagemagick")[] | undefined;
|
|
74881
75407
|
};
|
|
74882
75408
|
sftpStoreMeta: {
|
|
74883
|
-
name: "AiChatRobot" | "UploadHandleRobot" | "FileServeRobot" | "FileWatermarkRobot" | "FileVerifyRobot" | "EdglyDeliverRobot" | "TlcdnDeliverRobot" | "VideoSubtitleRobot" | "VideoEncodeRobot" | "VideoAdaptiveRobot" | "VideoMergeRobot" | "VideoConcatRobot" | "AudioWaveformRobot" | "AudioEncodeRobot" | "AudioLoopRobot" | "AudioConcatRobot" | "AudioMergeRobot" | "AudioArtworkRobot" | "ImageFacedetectRobot" | "ImageDescribeRobot" | "ImageOcrRobot" | "ImageBgremoveRobot" | "ImageGenerateRobot" | "DocumentOcrRobot" | "SpeechTranscribeRobot" | "VideoThumbsRobot" | "FileVirusscanRobot" | "ImageOptimizeRobot" | "FileCompressRobot" | "MetaReadRobot" | "FileDecompressRobot" | "MetaWriteRobot" | "DocumentThumbsRobot" | "DocumentConvertRobot" | "DocumentMergeRobot" | "DocumentSplitRobot" | "DocumentAutorotateRobot" | "HtmlConvertRobot" | "ImageResizeRobot" | "ImageMergeRobot" | "S3ImportRobot" | "S3StoreRobot" | "DigitalOceanImportRobot" | "DigitalOceanStoreRobot" | "BackblazeImportRobot" | "BackblazeStoreRobot" | "MinioImportRobot" | "TigrisImportRobot" | "CloudflareImportRobot" | "SupabaseImportRobot" | "MinioStoreRobot" | "TigrisStoreRobot" | "CloudflareStoreRobot" | "SupabaseStoreRobot" | "WasabiImportRobot" | "WasabiStoreRobot" | "SwiftImportRobot" | "SwiftStoreRobot" | "GoogleImportRobot" | "GoogleStoreRobot" | "DropboxImportRobot" | "DropboxStoreRobot" | "HttpImportRobot" | "SftpImportRobot" | "SftpStoreRobot" | "FtpImportRobot" | "FtpStoreRobot" | "CloudfilesImportRobot" | "CloudfilesStoreRobot" | "AzureImportRobot" | "AzureStoreRobot" | "YoutubeStoreRobot" | "VimeoImportRobot" | "VimeoStoreRobot" | "AssemblySavejsonRobot" | "ScriptRunRobot" | "FileHashRobot" | "FileReadRobot" | "VideoOndemandRobot" | "FileFilterRobot" | "TextSpeakRobot" | "TextTranslateRobot" | "FilePreviewRobot" | "TusStoreRobot" | "ProgressSimulateRobot";
|
|
75409
|
+
name: "AiChatRobot" | "UploadHandleRobot" | "FileServeRobot" | "FileWatermarkRobot" | "FileVerifyRobot" | "EdglyDeliverRobot" | "TlcdnDeliverRobot" | "VideoSubtitleRobot" | "VideoEncodeRobot" | "VideoAdaptiveRobot" | "VideoMergeRobot" | "VideoConcatRobot" | "AudioWaveformRobot" | "AudioEncodeRobot" | "AudioLoopRobot" | "AudioConcatRobot" | "AudioMergeRobot" | "AudioArtworkRobot" | "ImageFacedetectRobot" | "ImageDescribeRobot" | "ImageOcrRobot" | "ImageBgremoveRobot" | "ImageGenerateRobot" | "DocumentOcrRobot" | "SpeechTranscribeRobot" | "VideoThumbsRobot" | "FileVirusscanRobot" | "ImageOptimizeRobot" | "FileCompressRobot" | "MetaReadRobot" | "FileDecompressRobot" | "MetaWriteRobot" | "DocumentThumbsRobot" | "DocumentConvertRobot" | "DocumentMergeRobot" | "DocumentSplitRobot" | "DocumentOptimizeRobot" | "DocumentAutorotateRobot" | "HtmlConvertRobot" | "ImageResizeRobot" | "ImageMergeRobot" | "S3ImportRobot" | "S3StoreRobot" | "DigitalOceanImportRobot" | "DigitalOceanStoreRobot" | "BackblazeImportRobot" | "BackblazeStoreRobot" | "MinioImportRobot" | "TigrisImportRobot" | "CloudflareImportRobot" | "SupabaseImportRobot" | "MinioStoreRobot" | "TigrisStoreRobot" | "CloudflareStoreRobot" | "SupabaseStoreRobot" | "WasabiImportRobot" | "WasabiStoreRobot" | "SwiftImportRobot" | "SwiftStoreRobot" | "GoogleImportRobot" | "GoogleStoreRobot" | "DropboxImportRobot" | "DropboxStoreRobot" | "HttpImportRobot" | "SftpImportRobot" | "SftpStoreRobot" | "FtpImportRobot" | "FtpStoreRobot" | "CloudfilesImportRobot" | "CloudfilesStoreRobot" | "AzureImportRobot" | "AzureStoreRobot" | "YoutubeStoreRobot" | "VimeoImportRobot" | "VimeoStoreRobot" | "AssemblySavejsonRobot" | "ScriptRunRobot" | "FileHashRobot" | "FileReadRobot" | "VideoOndemandRobot" | "FileFilterRobot" | "TextSpeakRobot" | "TextTranslateRobot" | "FilePreviewRobot" | "TusStoreRobot" | "ProgressSimulateRobot";
|
|
74884
75410
|
priceFactor: number;
|
|
74885
75411
|
queueSlotCount: number;
|
|
74886
75412
|
isAllowedForUrlTransform: boolean;
|
|
@@ -74934,7 +75460,7 @@ export declare const robotsMeta: {
|
|
|
74934
75460
|
uses_tools?: ("ffmpeg" | "imagemagick")[] | undefined;
|
|
74935
75461
|
};
|
|
74936
75462
|
speechTranscribeMeta: {
|
|
74937
|
-
name: "AiChatRobot" | "UploadHandleRobot" | "FileServeRobot" | "FileWatermarkRobot" | "FileVerifyRobot" | "EdglyDeliverRobot" | "TlcdnDeliverRobot" | "VideoSubtitleRobot" | "VideoEncodeRobot" | "VideoAdaptiveRobot" | "VideoMergeRobot" | "VideoConcatRobot" | "AudioWaveformRobot" | "AudioEncodeRobot" | "AudioLoopRobot" | "AudioConcatRobot" | "AudioMergeRobot" | "AudioArtworkRobot" | "ImageFacedetectRobot" | "ImageDescribeRobot" | "ImageOcrRobot" | "ImageBgremoveRobot" | "ImageGenerateRobot" | "DocumentOcrRobot" | "SpeechTranscribeRobot" | "VideoThumbsRobot" | "FileVirusscanRobot" | "ImageOptimizeRobot" | "FileCompressRobot" | "MetaReadRobot" | "FileDecompressRobot" | "MetaWriteRobot" | "DocumentThumbsRobot" | "DocumentConvertRobot" | "DocumentMergeRobot" | "DocumentSplitRobot" | "DocumentAutorotateRobot" | "HtmlConvertRobot" | "ImageResizeRobot" | "ImageMergeRobot" | "S3ImportRobot" | "S3StoreRobot" | "DigitalOceanImportRobot" | "DigitalOceanStoreRobot" | "BackblazeImportRobot" | "BackblazeStoreRobot" | "MinioImportRobot" | "TigrisImportRobot" | "CloudflareImportRobot" | "SupabaseImportRobot" | "MinioStoreRobot" | "TigrisStoreRobot" | "CloudflareStoreRobot" | "SupabaseStoreRobot" | "WasabiImportRobot" | "WasabiStoreRobot" | "SwiftImportRobot" | "SwiftStoreRobot" | "GoogleImportRobot" | "GoogleStoreRobot" | "DropboxImportRobot" | "DropboxStoreRobot" | "HttpImportRobot" | "SftpImportRobot" | "SftpStoreRobot" | "FtpImportRobot" | "FtpStoreRobot" | "CloudfilesImportRobot" | "CloudfilesStoreRobot" | "AzureImportRobot" | "AzureStoreRobot" | "YoutubeStoreRobot" | "VimeoImportRobot" | "VimeoStoreRobot" | "AssemblySavejsonRobot" | "ScriptRunRobot" | "FileHashRobot" | "FileReadRobot" | "VideoOndemandRobot" | "FileFilterRobot" | "TextSpeakRobot" | "TextTranslateRobot" | "FilePreviewRobot" | "TusStoreRobot" | "ProgressSimulateRobot";
|
|
75463
|
+
name: "AiChatRobot" | "UploadHandleRobot" | "FileServeRobot" | "FileWatermarkRobot" | "FileVerifyRobot" | "EdglyDeliverRobot" | "TlcdnDeliverRobot" | "VideoSubtitleRobot" | "VideoEncodeRobot" | "VideoAdaptiveRobot" | "VideoMergeRobot" | "VideoConcatRobot" | "AudioWaveformRobot" | "AudioEncodeRobot" | "AudioLoopRobot" | "AudioConcatRobot" | "AudioMergeRobot" | "AudioArtworkRobot" | "ImageFacedetectRobot" | "ImageDescribeRobot" | "ImageOcrRobot" | "ImageBgremoveRobot" | "ImageGenerateRobot" | "DocumentOcrRobot" | "SpeechTranscribeRobot" | "VideoThumbsRobot" | "FileVirusscanRobot" | "ImageOptimizeRobot" | "FileCompressRobot" | "MetaReadRobot" | "FileDecompressRobot" | "MetaWriteRobot" | "DocumentThumbsRobot" | "DocumentConvertRobot" | "DocumentMergeRobot" | "DocumentSplitRobot" | "DocumentOptimizeRobot" | "DocumentAutorotateRobot" | "HtmlConvertRobot" | "ImageResizeRobot" | "ImageMergeRobot" | "S3ImportRobot" | "S3StoreRobot" | "DigitalOceanImportRobot" | "DigitalOceanStoreRobot" | "BackblazeImportRobot" | "BackblazeStoreRobot" | "MinioImportRobot" | "TigrisImportRobot" | "CloudflareImportRobot" | "SupabaseImportRobot" | "MinioStoreRobot" | "TigrisStoreRobot" | "CloudflareStoreRobot" | "SupabaseStoreRobot" | "WasabiImportRobot" | "WasabiStoreRobot" | "SwiftImportRobot" | "SwiftStoreRobot" | "GoogleImportRobot" | "GoogleStoreRobot" | "DropboxImportRobot" | "DropboxStoreRobot" | "HttpImportRobot" | "SftpImportRobot" | "SftpStoreRobot" | "FtpImportRobot" | "FtpStoreRobot" | "CloudfilesImportRobot" | "CloudfilesStoreRobot" | "AzureImportRobot" | "AzureStoreRobot" | "YoutubeStoreRobot" | "VimeoImportRobot" | "VimeoStoreRobot" | "AssemblySavejsonRobot" | "ScriptRunRobot" | "FileHashRobot" | "FileReadRobot" | "VideoOndemandRobot" | "FileFilterRobot" | "TextSpeakRobot" | "TextTranslateRobot" | "FilePreviewRobot" | "TusStoreRobot" | "ProgressSimulateRobot";
|
|
74938
75464
|
priceFactor: number;
|
|
74939
75465
|
queueSlotCount: number;
|
|
74940
75466
|
isAllowedForUrlTransform: boolean;
|
|
@@ -74988,7 +75514,7 @@ export declare const robotsMeta: {
|
|
|
74988
75514
|
uses_tools?: ("ffmpeg" | "imagemagick")[] | undefined;
|
|
74989
75515
|
};
|
|
74990
75516
|
supabaseImportMeta: {
|
|
74991
|
-
name: "AiChatRobot" | "UploadHandleRobot" | "FileServeRobot" | "FileWatermarkRobot" | "FileVerifyRobot" | "EdglyDeliverRobot" | "TlcdnDeliverRobot" | "VideoSubtitleRobot" | "VideoEncodeRobot" | "VideoAdaptiveRobot" | "VideoMergeRobot" | "VideoConcatRobot" | "AudioWaveformRobot" | "AudioEncodeRobot" | "AudioLoopRobot" | "AudioConcatRobot" | "AudioMergeRobot" | "AudioArtworkRobot" | "ImageFacedetectRobot" | "ImageDescribeRobot" | "ImageOcrRobot" | "ImageBgremoveRobot" | "ImageGenerateRobot" | "DocumentOcrRobot" | "SpeechTranscribeRobot" | "VideoThumbsRobot" | "FileVirusscanRobot" | "ImageOptimizeRobot" | "FileCompressRobot" | "MetaReadRobot" | "FileDecompressRobot" | "MetaWriteRobot" | "DocumentThumbsRobot" | "DocumentConvertRobot" | "DocumentMergeRobot" | "DocumentSplitRobot" | "DocumentAutorotateRobot" | "HtmlConvertRobot" | "ImageResizeRobot" | "ImageMergeRobot" | "S3ImportRobot" | "S3StoreRobot" | "DigitalOceanImportRobot" | "DigitalOceanStoreRobot" | "BackblazeImportRobot" | "BackblazeStoreRobot" | "MinioImportRobot" | "TigrisImportRobot" | "CloudflareImportRobot" | "SupabaseImportRobot" | "MinioStoreRobot" | "TigrisStoreRobot" | "CloudflareStoreRobot" | "SupabaseStoreRobot" | "WasabiImportRobot" | "WasabiStoreRobot" | "SwiftImportRobot" | "SwiftStoreRobot" | "GoogleImportRobot" | "GoogleStoreRobot" | "DropboxImportRobot" | "DropboxStoreRobot" | "HttpImportRobot" | "SftpImportRobot" | "SftpStoreRobot" | "FtpImportRobot" | "FtpStoreRobot" | "CloudfilesImportRobot" | "CloudfilesStoreRobot" | "AzureImportRobot" | "AzureStoreRobot" | "YoutubeStoreRobot" | "VimeoImportRobot" | "VimeoStoreRobot" | "AssemblySavejsonRobot" | "ScriptRunRobot" | "FileHashRobot" | "FileReadRobot" | "VideoOndemandRobot" | "FileFilterRobot" | "TextSpeakRobot" | "TextTranslateRobot" | "FilePreviewRobot" | "TusStoreRobot" | "ProgressSimulateRobot";
|
|
75517
|
+
name: "AiChatRobot" | "UploadHandleRobot" | "FileServeRobot" | "FileWatermarkRobot" | "FileVerifyRobot" | "EdglyDeliverRobot" | "TlcdnDeliverRobot" | "VideoSubtitleRobot" | "VideoEncodeRobot" | "VideoAdaptiveRobot" | "VideoMergeRobot" | "VideoConcatRobot" | "AudioWaveformRobot" | "AudioEncodeRobot" | "AudioLoopRobot" | "AudioConcatRobot" | "AudioMergeRobot" | "AudioArtworkRobot" | "ImageFacedetectRobot" | "ImageDescribeRobot" | "ImageOcrRobot" | "ImageBgremoveRobot" | "ImageGenerateRobot" | "DocumentOcrRobot" | "SpeechTranscribeRobot" | "VideoThumbsRobot" | "FileVirusscanRobot" | "ImageOptimizeRobot" | "FileCompressRobot" | "MetaReadRobot" | "FileDecompressRobot" | "MetaWriteRobot" | "DocumentThumbsRobot" | "DocumentConvertRobot" | "DocumentMergeRobot" | "DocumentSplitRobot" | "DocumentOptimizeRobot" | "DocumentAutorotateRobot" | "HtmlConvertRobot" | "ImageResizeRobot" | "ImageMergeRobot" | "S3ImportRobot" | "S3StoreRobot" | "DigitalOceanImportRobot" | "DigitalOceanStoreRobot" | "BackblazeImportRobot" | "BackblazeStoreRobot" | "MinioImportRobot" | "TigrisImportRobot" | "CloudflareImportRobot" | "SupabaseImportRobot" | "MinioStoreRobot" | "TigrisStoreRobot" | "CloudflareStoreRobot" | "SupabaseStoreRobot" | "WasabiImportRobot" | "WasabiStoreRobot" | "SwiftImportRobot" | "SwiftStoreRobot" | "GoogleImportRobot" | "GoogleStoreRobot" | "DropboxImportRobot" | "DropboxStoreRobot" | "HttpImportRobot" | "SftpImportRobot" | "SftpStoreRobot" | "FtpImportRobot" | "FtpStoreRobot" | "CloudfilesImportRobot" | "CloudfilesStoreRobot" | "AzureImportRobot" | "AzureStoreRobot" | "YoutubeStoreRobot" | "VimeoImportRobot" | "VimeoStoreRobot" | "AssemblySavejsonRobot" | "ScriptRunRobot" | "FileHashRobot" | "FileReadRobot" | "VideoOndemandRobot" | "FileFilterRobot" | "TextSpeakRobot" | "TextTranslateRobot" | "FilePreviewRobot" | "TusStoreRobot" | "ProgressSimulateRobot";
|
|
74992
75518
|
priceFactor: number;
|
|
74993
75519
|
queueSlotCount: number;
|
|
74994
75520
|
isAllowedForUrlTransform: boolean;
|
|
@@ -75042,7 +75568,7 @@ export declare const robotsMeta: {
|
|
|
75042
75568
|
uses_tools?: ("ffmpeg" | "imagemagick")[] | undefined;
|
|
75043
75569
|
};
|
|
75044
75570
|
supabaseStoreMeta: {
|
|
75045
|
-
name: "AiChatRobot" | "UploadHandleRobot" | "FileServeRobot" | "FileWatermarkRobot" | "FileVerifyRobot" | "EdglyDeliverRobot" | "TlcdnDeliverRobot" | "VideoSubtitleRobot" | "VideoEncodeRobot" | "VideoAdaptiveRobot" | "VideoMergeRobot" | "VideoConcatRobot" | "AudioWaveformRobot" | "AudioEncodeRobot" | "AudioLoopRobot" | "AudioConcatRobot" | "AudioMergeRobot" | "AudioArtworkRobot" | "ImageFacedetectRobot" | "ImageDescribeRobot" | "ImageOcrRobot" | "ImageBgremoveRobot" | "ImageGenerateRobot" | "DocumentOcrRobot" | "SpeechTranscribeRobot" | "VideoThumbsRobot" | "FileVirusscanRobot" | "ImageOptimizeRobot" | "FileCompressRobot" | "MetaReadRobot" | "FileDecompressRobot" | "MetaWriteRobot" | "DocumentThumbsRobot" | "DocumentConvertRobot" | "DocumentMergeRobot" | "DocumentSplitRobot" | "DocumentAutorotateRobot" | "HtmlConvertRobot" | "ImageResizeRobot" | "ImageMergeRobot" | "S3ImportRobot" | "S3StoreRobot" | "DigitalOceanImportRobot" | "DigitalOceanStoreRobot" | "BackblazeImportRobot" | "BackblazeStoreRobot" | "MinioImportRobot" | "TigrisImportRobot" | "CloudflareImportRobot" | "SupabaseImportRobot" | "MinioStoreRobot" | "TigrisStoreRobot" | "CloudflareStoreRobot" | "SupabaseStoreRobot" | "WasabiImportRobot" | "WasabiStoreRobot" | "SwiftImportRobot" | "SwiftStoreRobot" | "GoogleImportRobot" | "GoogleStoreRobot" | "DropboxImportRobot" | "DropboxStoreRobot" | "HttpImportRobot" | "SftpImportRobot" | "SftpStoreRobot" | "FtpImportRobot" | "FtpStoreRobot" | "CloudfilesImportRobot" | "CloudfilesStoreRobot" | "AzureImportRobot" | "AzureStoreRobot" | "YoutubeStoreRobot" | "VimeoImportRobot" | "VimeoStoreRobot" | "AssemblySavejsonRobot" | "ScriptRunRobot" | "FileHashRobot" | "FileReadRobot" | "VideoOndemandRobot" | "FileFilterRobot" | "TextSpeakRobot" | "TextTranslateRobot" | "FilePreviewRobot" | "TusStoreRobot" | "ProgressSimulateRobot";
|
|
75571
|
+
name: "AiChatRobot" | "UploadHandleRobot" | "FileServeRobot" | "FileWatermarkRobot" | "FileVerifyRobot" | "EdglyDeliverRobot" | "TlcdnDeliverRobot" | "VideoSubtitleRobot" | "VideoEncodeRobot" | "VideoAdaptiveRobot" | "VideoMergeRobot" | "VideoConcatRobot" | "AudioWaveformRobot" | "AudioEncodeRobot" | "AudioLoopRobot" | "AudioConcatRobot" | "AudioMergeRobot" | "AudioArtworkRobot" | "ImageFacedetectRobot" | "ImageDescribeRobot" | "ImageOcrRobot" | "ImageBgremoveRobot" | "ImageGenerateRobot" | "DocumentOcrRobot" | "SpeechTranscribeRobot" | "VideoThumbsRobot" | "FileVirusscanRobot" | "ImageOptimizeRobot" | "FileCompressRobot" | "MetaReadRobot" | "FileDecompressRobot" | "MetaWriteRobot" | "DocumentThumbsRobot" | "DocumentConvertRobot" | "DocumentMergeRobot" | "DocumentSplitRobot" | "DocumentOptimizeRobot" | "DocumentAutorotateRobot" | "HtmlConvertRobot" | "ImageResizeRobot" | "ImageMergeRobot" | "S3ImportRobot" | "S3StoreRobot" | "DigitalOceanImportRobot" | "DigitalOceanStoreRobot" | "BackblazeImportRobot" | "BackblazeStoreRobot" | "MinioImportRobot" | "TigrisImportRobot" | "CloudflareImportRobot" | "SupabaseImportRobot" | "MinioStoreRobot" | "TigrisStoreRobot" | "CloudflareStoreRobot" | "SupabaseStoreRobot" | "WasabiImportRobot" | "WasabiStoreRobot" | "SwiftImportRobot" | "SwiftStoreRobot" | "GoogleImportRobot" | "GoogleStoreRobot" | "DropboxImportRobot" | "DropboxStoreRobot" | "HttpImportRobot" | "SftpImportRobot" | "SftpStoreRobot" | "FtpImportRobot" | "FtpStoreRobot" | "CloudfilesImportRobot" | "CloudfilesStoreRobot" | "AzureImportRobot" | "AzureStoreRobot" | "YoutubeStoreRobot" | "VimeoImportRobot" | "VimeoStoreRobot" | "AssemblySavejsonRobot" | "ScriptRunRobot" | "FileHashRobot" | "FileReadRobot" | "VideoOndemandRobot" | "FileFilterRobot" | "TextSpeakRobot" | "TextTranslateRobot" | "FilePreviewRobot" | "TusStoreRobot" | "ProgressSimulateRobot";
|
|
75046
75572
|
priceFactor: number;
|
|
75047
75573
|
queueSlotCount: number;
|
|
75048
75574
|
isAllowedForUrlTransform: boolean;
|
|
@@ -75096,7 +75622,7 @@ export declare const robotsMeta: {
|
|
|
75096
75622
|
uses_tools?: ("ffmpeg" | "imagemagick")[] | undefined;
|
|
75097
75623
|
};
|
|
75098
75624
|
swiftImportMeta: {
|
|
75099
|
-
name: "AiChatRobot" | "UploadHandleRobot" | "FileServeRobot" | "FileWatermarkRobot" | "FileVerifyRobot" | "EdglyDeliverRobot" | "TlcdnDeliverRobot" | "VideoSubtitleRobot" | "VideoEncodeRobot" | "VideoAdaptiveRobot" | "VideoMergeRobot" | "VideoConcatRobot" | "AudioWaveformRobot" | "AudioEncodeRobot" | "AudioLoopRobot" | "AudioConcatRobot" | "AudioMergeRobot" | "AudioArtworkRobot" | "ImageFacedetectRobot" | "ImageDescribeRobot" | "ImageOcrRobot" | "ImageBgremoveRobot" | "ImageGenerateRobot" | "DocumentOcrRobot" | "SpeechTranscribeRobot" | "VideoThumbsRobot" | "FileVirusscanRobot" | "ImageOptimizeRobot" | "FileCompressRobot" | "MetaReadRobot" | "FileDecompressRobot" | "MetaWriteRobot" | "DocumentThumbsRobot" | "DocumentConvertRobot" | "DocumentMergeRobot" | "DocumentSplitRobot" | "DocumentAutorotateRobot" | "HtmlConvertRobot" | "ImageResizeRobot" | "ImageMergeRobot" | "S3ImportRobot" | "S3StoreRobot" | "DigitalOceanImportRobot" | "DigitalOceanStoreRobot" | "BackblazeImportRobot" | "BackblazeStoreRobot" | "MinioImportRobot" | "TigrisImportRobot" | "CloudflareImportRobot" | "SupabaseImportRobot" | "MinioStoreRobot" | "TigrisStoreRobot" | "CloudflareStoreRobot" | "SupabaseStoreRobot" | "WasabiImportRobot" | "WasabiStoreRobot" | "SwiftImportRobot" | "SwiftStoreRobot" | "GoogleImportRobot" | "GoogleStoreRobot" | "DropboxImportRobot" | "DropboxStoreRobot" | "HttpImportRobot" | "SftpImportRobot" | "SftpStoreRobot" | "FtpImportRobot" | "FtpStoreRobot" | "CloudfilesImportRobot" | "CloudfilesStoreRobot" | "AzureImportRobot" | "AzureStoreRobot" | "YoutubeStoreRobot" | "VimeoImportRobot" | "VimeoStoreRobot" | "AssemblySavejsonRobot" | "ScriptRunRobot" | "FileHashRobot" | "FileReadRobot" | "VideoOndemandRobot" | "FileFilterRobot" | "TextSpeakRobot" | "TextTranslateRobot" | "FilePreviewRobot" | "TusStoreRobot" | "ProgressSimulateRobot";
|
|
75625
|
+
name: "AiChatRobot" | "UploadHandleRobot" | "FileServeRobot" | "FileWatermarkRobot" | "FileVerifyRobot" | "EdglyDeliverRobot" | "TlcdnDeliverRobot" | "VideoSubtitleRobot" | "VideoEncodeRobot" | "VideoAdaptiveRobot" | "VideoMergeRobot" | "VideoConcatRobot" | "AudioWaveformRobot" | "AudioEncodeRobot" | "AudioLoopRobot" | "AudioConcatRobot" | "AudioMergeRobot" | "AudioArtworkRobot" | "ImageFacedetectRobot" | "ImageDescribeRobot" | "ImageOcrRobot" | "ImageBgremoveRobot" | "ImageGenerateRobot" | "DocumentOcrRobot" | "SpeechTranscribeRobot" | "VideoThumbsRobot" | "FileVirusscanRobot" | "ImageOptimizeRobot" | "FileCompressRobot" | "MetaReadRobot" | "FileDecompressRobot" | "MetaWriteRobot" | "DocumentThumbsRobot" | "DocumentConvertRobot" | "DocumentMergeRobot" | "DocumentSplitRobot" | "DocumentOptimizeRobot" | "DocumentAutorotateRobot" | "HtmlConvertRobot" | "ImageResizeRobot" | "ImageMergeRobot" | "S3ImportRobot" | "S3StoreRobot" | "DigitalOceanImportRobot" | "DigitalOceanStoreRobot" | "BackblazeImportRobot" | "BackblazeStoreRobot" | "MinioImportRobot" | "TigrisImportRobot" | "CloudflareImportRobot" | "SupabaseImportRobot" | "MinioStoreRobot" | "TigrisStoreRobot" | "CloudflareStoreRobot" | "SupabaseStoreRobot" | "WasabiImportRobot" | "WasabiStoreRobot" | "SwiftImportRobot" | "SwiftStoreRobot" | "GoogleImportRobot" | "GoogleStoreRobot" | "DropboxImportRobot" | "DropboxStoreRobot" | "HttpImportRobot" | "SftpImportRobot" | "SftpStoreRobot" | "FtpImportRobot" | "FtpStoreRobot" | "CloudfilesImportRobot" | "CloudfilesStoreRobot" | "AzureImportRobot" | "AzureStoreRobot" | "YoutubeStoreRobot" | "VimeoImportRobot" | "VimeoStoreRobot" | "AssemblySavejsonRobot" | "ScriptRunRobot" | "FileHashRobot" | "FileReadRobot" | "VideoOndemandRobot" | "FileFilterRobot" | "TextSpeakRobot" | "TextTranslateRobot" | "FilePreviewRobot" | "TusStoreRobot" | "ProgressSimulateRobot";
|
|
75100
75626
|
priceFactor: number;
|
|
75101
75627
|
queueSlotCount: number;
|
|
75102
75628
|
isAllowedForUrlTransform: boolean;
|
|
@@ -75150,7 +75676,7 @@ export declare const robotsMeta: {
|
|
|
75150
75676
|
uses_tools?: ("ffmpeg" | "imagemagick")[] | undefined;
|
|
75151
75677
|
};
|
|
75152
75678
|
swiftStoreMeta: {
|
|
75153
|
-
name: "AiChatRobot" | "UploadHandleRobot" | "FileServeRobot" | "FileWatermarkRobot" | "FileVerifyRobot" | "EdglyDeliverRobot" | "TlcdnDeliverRobot" | "VideoSubtitleRobot" | "VideoEncodeRobot" | "VideoAdaptiveRobot" | "VideoMergeRobot" | "VideoConcatRobot" | "AudioWaveformRobot" | "AudioEncodeRobot" | "AudioLoopRobot" | "AudioConcatRobot" | "AudioMergeRobot" | "AudioArtworkRobot" | "ImageFacedetectRobot" | "ImageDescribeRobot" | "ImageOcrRobot" | "ImageBgremoveRobot" | "ImageGenerateRobot" | "DocumentOcrRobot" | "SpeechTranscribeRobot" | "VideoThumbsRobot" | "FileVirusscanRobot" | "ImageOptimizeRobot" | "FileCompressRobot" | "MetaReadRobot" | "FileDecompressRobot" | "MetaWriteRobot" | "DocumentThumbsRobot" | "DocumentConvertRobot" | "DocumentMergeRobot" | "DocumentSplitRobot" | "DocumentAutorotateRobot" | "HtmlConvertRobot" | "ImageResizeRobot" | "ImageMergeRobot" | "S3ImportRobot" | "S3StoreRobot" | "DigitalOceanImportRobot" | "DigitalOceanStoreRobot" | "BackblazeImportRobot" | "BackblazeStoreRobot" | "MinioImportRobot" | "TigrisImportRobot" | "CloudflareImportRobot" | "SupabaseImportRobot" | "MinioStoreRobot" | "TigrisStoreRobot" | "CloudflareStoreRobot" | "SupabaseStoreRobot" | "WasabiImportRobot" | "WasabiStoreRobot" | "SwiftImportRobot" | "SwiftStoreRobot" | "GoogleImportRobot" | "GoogleStoreRobot" | "DropboxImportRobot" | "DropboxStoreRobot" | "HttpImportRobot" | "SftpImportRobot" | "SftpStoreRobot" | "FtpImportRobot" | "FtpStoreRobot" | "CloudfilesImportRobot" | "CloudfilesStoreRobot" | "AzureImportRobot" | "AzureStoreRobot" | "YoutubeStoreRobot" | "VimeoImportRobot" | "VimeoStoreRobot" | "AssemblySavejsonRobot" | "ScriptRunRobot" | "FileHashRobot" | "FileReadRobot" | "VideoOndemandRobot" | "FileFilterRobot" | "TextSpeakRobot" | "TextTranslateRobot" | "FilePreviewRobot" | "TusStoreRobot" | "ProgressSimulateRobot";
|
|
75679
|
+
name: "AiChatRobot" | "UploadHandleRobot" | "FileServeRobot" | "FileWatermarkRobot" | "FileVerifyRobot" | "EdglyDeliverRobot" | "TlcdnDeliverRobot" | "VideoSubtitleRobot" | "VideoEncodeRobot" | "VideoAdaptiveRobot" | "VideoMergeRobot" | "VideoConcatRobot" | "AudioWaveformRobot" | "AudioEncodeRobot" | "AudioLoopRobot" | "AudioConcatRobot" | "AudioMergeRobot" | "AudioArtworkRobot" | "ImageFacedetectRobot" | "ImageDescribeRobot" | "ImageOcrRobot" | "ImageBgremoveRobot" | "ImageGenerateRobot" | "DocumentOcrRobot" | "SpeechTranscribeRobot" | "VideoThumbsRobot" | "FileVirusscanRobot" | "ImageOptimizeRobot" | "FileCompressRobot" | "MetaReadRobot" | "FileDecompressRobot" | "MetaWriteRobot" | "DocumentThumbsRobot" | "DocumentConvertRobot" | "DocumentMergeRobot" | "DocumentSplitRobot" | "DocumentOptimizeRobot" | "DocumentAutorotateRobot" | "HtmlConvertRobot" | "ImageResizeRobot" | "ImageMergeRobot" | "S3ImportRobot" | "S3StoreRobot" | "DigitalOceanImportRobot" | "DigitalOceanStoreRobot" | "BackblazeImportRobot" | "BackblazeStoreRobot" | "MinioImportRobot" | "TigrisImportRobot" | "CloudflareImportRobot" | "SupabaseImportRobot" | "MinioStoreRobot" | "TigrisStoreRobot" | "CloudflareStoreRobot" | "SupabaseStoreRobot" | "WasabiImportRobot" | "WasabiStoreRobot" | "SwiftImportRobot" | "SwiftStoreRobot" | "GoogleImportRobot" | "GoogleStoreRobot" | "DropboxImportRobot" | "DropboxStoreRobot" | "HttpImportRobot" | "SftpImportRobot" | "SftpStoreRobot" | "FtpImportRobot" | "FtpStoreRobot" | "CloudfilesImportRobot" | "CloudfilesStoreRobot" | "AzureImportRobot" | "AzureStoreRobot" | "YoutubeStoreRobot" | "VimeoImportRobot" | "VimeoStoreRobot" | "AssemblySavejsonRobot" | "ScriptRunRobot" | "FileHashRobot" | "FileReadRobot" | "VideoOndemandRobot" | "FileFilterRobot" | "TextSpeakRobot" | "TextTranslateRobot" | "FilePreviewRobot" | "TusStoreRobot" | "ProgressSimulateRobot";
|
|
75154
75680
|
priceFactor: number;
|
|
75155
75681
|
queueSlotCount: number;
|
|
75156
75682
|
isAllowedForUrlTransform: boolean;
|
|
@@ -75204,7 +75730,7 @@ export declare const robotsMeta: {
|
|
|
75204
75730
|
uses_tools?: ("ffmpeg" | "imagemagick")[] | undefined;
|
|
75205
75731
|
};
|
|
75206
75732
|
textSpeakMeta: {
|
|
75207
|
-
name: "AiChatRobot" | "UploadHandleRobot" | "FileServeRobot" | "FileWatermarkRobot" | "FileVerifyRobot" | "EdglyDeliverRobot" | "TlcdnDeliverRobot" | "VideoSubtitleRobot" | "VideoEncodeRobot" | "VideoAdaptiveRobot" | "VideoMergeRobot" | "VideoConcatRobot" | "AudioWaveformRobot" | "AudioEncodeRobot" | "AudioLoopRobot" | "AudioConcatRobot" | "AudioMergeRobot" | "AudioArtworkRobot" | "ImageFacedetectRobot" | "ImageDescribeRobot" | "ImageOcrRobot" | "ImageBgremoveRobot" | "ImageGenerateRobot" | "DocumentOcrRobot" | "SpeechTranscribeRobot" | "VideoThumbsRobot" | "FileVirusscanRobot" | "ImageOptimizeRobot" | "FileCompressRobot" | "MetaReadRobot" | "FileDecompressRobot" | "MetaWriteRobot" | "DocumentThumbsRobot" | "DocumentConvertRobot" | "DocumentMergeRobot" | "DocumentSplitRobot" | "DocumentAutorotateRobot" | "HtmlConvertRobot" | "ImageResizeRobot" | "ImageMergeRobot" | "S3ImportRobot" | "S3StoreRobot" | "DigitalOceanImportRobot" | "DigitalOceanStoreRobot" | "BackblazeImportRobot" | "BackblazeStoreRobot" | "MinioImportRobot" | "TigrisImportRobot" | "CloudflareImportRobot" | "SupabaseImportRobot" | "MinioStoreRobot" | "TigrisStoreRobot" | "CloudflareStoreRobot" | "SupabaseStoreRobot" | "WasabiImportRobot" | "WasabiStoreRobot" | "SwiftImportRobot" | "SwiftStoreRobot" | "GoogleImportRobot" | "GoogleStoreRobot" | "DropboxImportRobot" | "DropboxStoreRobot" | "HttpImportRobot" | "SftpImportRobot" | "SftpStoreRobot" | "FtpImportRobot" | "FtpStoreRobot" | "CloudfilesImportRobot" | "CloudfilesStoreRobot" | "AzureImportRobot" | "AzureStoreRobot" | "YoutubeStoreRobot" | "VimeoImportRobot" | "VimeoStoreRobot" | "AssemblySavejsonRobot" | "ScriptRunRobot" | "FileHashRobot" | "FileReadRobot" | "VideoOndemandRobot" | "FileFilterRobot" | "TextSpeakRobot" | "TextTranslateRobot" | "FilePreviewRobot" | "TusStoreRobot" | "ProgressSimulateRobot";
|
|
75733
|
+
name: "AiChatRobot" | "UploadHandleRobot" | "FileServeRobot" | "FileWatermarkRobot" | "FileVerifyRobot" | "EdglyDeliverRobot" | "TlcdnDeliverRobot" | "VideoSubtitleRobot" | "VideoEncodeRobot" | "VideoAdaptiveRobot" | "VideoMergeRobot" | "VideoConcatRobot" | "AudioWaveformRobot" | "AudioEncodeRobot" | "AudioLoopRobot" | "AudioConcatRobot" | "AudioMergeRobot" | "AudioArtworkRobot" | "ImageFacedetectRobot" | "ImageDescribeRobot" | "ImageOcrRobot" | "ImageBgremoveRobot" | "ImageGenerateRobot" | "DocumentOcrRobot" | "SpeechTranscribeRobot" | "VideoThumbsRobot" | "FileVirusscanRobot" | "ImageOptimizeRobot" | "FileCompressRobot" | "MetaReadRobot" | "FileDecompressRobot" | "MetaWriteRobot" | "DocumentThumbsRobot" | "DocumentConvertRobot" | "DocumentMergeRobot" | "DocumentSplitRobot" | "DocumentOptimizeRobot" | "DocumentAutorotateRobot" | "HtmlConvertRobot" | "ImageResizeRobot" | "ImageMergeRobot" | "S3ImportRobot" | "S3StoreRobot" | "DigitalOceanImportRobot" | "DigitalOceanStoreRobot" | "BackblazeImportRobot" | "BackblazeStoreRobot" | "MinioImportRobot" | "TigrisImportRobot" | "CloudflareImportRobot" | "SupabaseImportRobot" | "MinioStoreRobot" | "TigrisStoreRobot" | "CloudflareStoreRobot" | "SupabaseStoreRobot" | "WasabiImportRobot" | "WasabiStoreRobot" | "SwiftImportRobot" | "SwiftStoreRobot" | "GoogleImportRobot" | "GoogleStoreRobot" | "DropboxImportRobot" | "DropboxStoreRobot" | "HttpImportRobot" | "SftpImportRobot" | "SftpStoreRobot" | "FtpImportRobot" | "FtpStoreRobot" | "CloudfilesImportRobot" | "CloudfilesStoreRobot" | "AzureImportRobot" | "AzureStoreRobot" | "YoutubeStoreRobot" | "VimeoImportRobot" | "VimeoStoreRobot" | "AssemblySavejsonRobot" | "ScriptRunRobot" | "FileHashRobot" | "FileReadRobot" | "VideoOndemandRobot" | "FileFilterRobot" | "TextSpeakRobot" | "TextTranslateRobot" | "FilePreviewRobot" | "TusStoreRobot" | "ProgressSimulateRobot";
|
|
75208
75734
|
priceFactor: number;
|
|
75209
75735
|
queueSlotCount: number;
|
|
75210
75736
|
isAllowedForUrlTransform: boolean;
|
|
@@ -75258,7 +75784,7 @@ export declare const robotsMeta: {
|
|
|
75258
75784
|
uses_tools?: ("ffmpeg" | "imagemagick")[] | undefined;
|
|
75259
75785
|
};
|
|
75260
75786
|
textTranslateMeta: {
|
|
75261
|
-
name: "AiChatRobot" | "UploadHandleRobot" | "FileServeRobot" | "FileWatermarkRobot" | "FileVerifyRobot" | "EdglyDeliverRobot" | "TlcdnDeliverRobot" | "VideoSubtitleRobot" | "VideoEncodeRobot" | "VideoAdaptiveRobot" | "VideoMergeRobot" | "VideoConcatRobot" | "AudioWaveformRobot" | "AudioEncodeRobot" | "AudioLoopRobot" | "AudioConcatRobot" | "AudioMergeRobot" | "AudioArtworkRobot" | "ImageFacedetectRobot" | "ImageDescribeRobot" | "ImageOcrRobot" | "ImageBgremoveRobot" | "ImageGenerateRobot" | "DocumentOcrRobot" | "SpeechTranscribeRobot" | "VideoThumbsRobot" | "FileVirusscanRobot" | "ImageOptimizeRobot" | "FileCompressRobot" | "MetaReadRobot" | "FileDecompressRobot" | "MetaWriteRobot" | "DocumentThumbsRobot" | "DocumentConvertRobot" | "DocumentMergeRobot" | "DocumentSplitRobot" | "DocumentAutorotateRobot" | "HtmlConvertRobot" | "ImageResizeRobot" | "ImageMergeRobot" | "S3ImportRobot" | "S3StoreRobot" | "DigitalOceanImportRobot" | "DigitalOceanStoreRobot" | "BackblazeImportRobot" | "BackblazeStoreRobot" | "MinioImportRobot" | "TigrisImportRobot" | "CloudflareImportRobot" | "SupabaseImportRobot" | "MinioStoreRobot" | "TigrisStoreRobot" | "CloudflareStoreRobot" | "SupabaseStoreRobot" | "WasabiImportRobot" | "WasabiStoreRobot" | "SwiftImportRobot" | "SwiftStoreRobot" | "GoogleImportRobot" | "GoogleStoreRobot" | "DropboxImportRobot" | "DropboxStoreRobot" | "HttpImportRobot" | "SftpImportRobot" | "SftpStoreRobot" | "FtpImportRobot" | "FtpStoreRobot" | "CloudfilesImportRobot" | "CloudfilesStoreRobot" | "AzureImportRobot" | "AzureStoreRobot" | "YoutubeStoreRobot" | "VimeoImportRobot" | "VimeoStoreRobot" | "AssemblySavejsonRobot" | "ScriptRunRobot" | "FileHashRobot" | "FileReadRobot" | "VideoOndemandRobot" | "FileFilterRobot" | "TextSpeakRobot" | "TextTranslateRobot" | "FilePreviewRobot" | "TusStoreRobot" | "ProgressSimulateRobot";
|
|
75787
|
+
name: "AiChatRobot" | "UploadHandleRobot" | "FileServeRobot" | "FileWatermarkRobot" | "FileVerifyRobot" | "EdglyDeliverRobot" | "TlcdnDeliverRobot" | "VideoSubtitleRobot" | "VideoEncodeRobot" | "VideoAdaptiveRobot" | "VideoMergeRobot" | "VideoConcatRobot" | "AudioWaveformRobot" | "AudioEncodeRobot" | "AudioLoopRobot" | "AudioConcatRobot" | "AudioMergeRobot" | "AudioArtworkRobot" | "ImageFacedetectRobot" | "ImageDescribeRobot" | "ImageOcrRobot" | "ImageBgremoveRobot" | "ImageGenerateRobot" | "DocumentOcrRobot" | "SpeechTranscribeRobot" | "VideoThumbsRobot" | "FileVirusscanRobot" | "ImageOptimizeRobot" | "FileCompressRobot" | "MetaReadRobot" | "FileDecompressRobot" | "MetaWriteRobot" | "DocumentThumbsRobot" | "DocumentConvertRobot" | "DocumentMergeRobot" | "DocumentSplitRobot" | "DocumentOptimizeRobot" | "DocumentAutorotateRobot" | "HtmlConvertRobot" | "ImageResizeRobot" | "ImageMergeRobot" | "S3ImportRobot" | "S3StoreRobot" | "DigitalOceanImportRobot" | "DigitalOceanStoreRobot" | "BackblazeImportRobot" | "BackblazeStoreRobot" | "MinioImportRobot" | "TigrisImportRobot" | "CloudflareImportRobot" | "SupabaseImportRobot" | "MinioStoreRobot" | "TigrisStoreRobot" | "CloudflareStoreRobot" | "SupabaseStoreRobot" | "WasabiImportRobot" | "WasabiStoreRobot" | "SwiftImportRobot" | "SwiftStoreRobot" | "GoogleImportRobot" | "GoogleStoreRobot" | "DropboxImportRobot" | "DropboxStoreRobot" | "HttpImportRobot" | "SftpImportRobot" | "SftpStoreRobot" | "FtpImportRobot" | "FtpStoreRobot" | "CloudfilesImportRobot" | "CloudfilesStoreRobot" | "AzureImportRobot" | "AzureStoreRobot" | "YoutubeStoreRobot" | "VimeoImportRobot" | "VimeoStoreRobot" | "AssemblySavejsonRobot" | "ScriptRunRobot" | "FileHashRobot" | "FileReadRobot" | "VideoOndemandRobot" | "FileFilterRobot" | "TextSpeakRobot" | "TextTranslateRobot" | "FilePreviewRobot" | "TusStoreRobot" | "ProgressSimulateRobot";
|
|
75262
75788
|
priceFactor: number;
|
|
75263
75789
|
queueSlotCount: number;
|
|
75264
75790
|
isAllowedForUrlTransform: boolean;
|
|
@@ -75312,7 +75838,7 @@ export declare const robotsMeta: {
|
|
|
75312
75838
|
uses_tools?: ("ffmpeg" | "imagemagick")[] | undefined;
|
|
75313
75839
|
};
|
|
75314
75840
|
tigrisImport: {
|
|
75315
|
-
name: "AiChatRobot" | "UploadHandleRobot" | "FileServeRobot" | "FileWatermarkRobot" | "FileVerifyRobot" | "EdglyDeliverRobot" | "TlcdnDeliverRobot" | "VideoSubtitleRobot" | "VideoEncodeRobot" | "VideoAdaptiveRobot" | "VideoMergeRobot" | "VideoConcatRobot" | "AudioWaveformRobot" | "AudioEncodeRobot" | "AudioLoopRobot" | "AudioConcatRobot" | "AudioMergeRobot" | "AudioArtworkRobot" | "ImageFacedetectRobot" | "ImageDescribeRobot" | "ImageOcrRobot" | "ImageBgremoveRobot" | "ImageGenerateRobot" | "DocumentOcrRobot" | "SpeechTranscribeRobot" | "VideoThumbsRobot" | "FileVirusscanRobot" | "ImageOptimizeRobot" | "FileCompressRobot" | "MetaReadRobot" | "FileDecompressRobot" | "MetaWriteRobot" | "DocumentThumbsRobot" | "DocumentConvertRobot" | "DocumentMergeRobot" | "DocumentSplitRobot" | "DocumentAutorotateRobot" | "HtmlConvertRobot" | "ImageResizeRobot" | "ImageMergeRobot" | "S3ImportRobot" | "S3StoreRobot" | "DigitalOceanImportRobot" | "DigitalOceanStoreRobot" | "BackblazeImportRobot" | "BackblazeStoreRobot" | "MinioImportRobot" | "TigrisImportRobot" | "CloudflareImportRobot" | "SupabaseImportRobot" | "MinioStoreRobot" | "TigrisStoreRobot" | "CloudflareStoreRobot" | "SupabaseStoreRobot" | "WasabiImportRobot" | "WasabiStoreRobot" | "SwiftImportRobot" | "SwiftStoreRobot" | "GoogleImportRobot" | "GoogleStoreRobot" | "DropboxImportRobot" | "DropboxStoreRobot" | "HttpImportRobot" | "SftpImportRobot" | "SftpStoreRobot" | "FtpImportRobot" | "FtpStoreRobot" | "CloudfilesImportRobot" | "CloudfilesStoreRobot" | "AzureImportRobot" | "AzureStoreRobot" | "YoutubeStoreRobot" | "VimeoImportRobot" | "VimeoStoreRobot" | "AssemblySavejsonRobot" | "ScriptRunRobot" | "FileHashRobot" | "FileReadRobot" | "VideoOndemandRobot" | "FileFilterRobot" | "TextSpeakRobot" | "TextTranslateRobot" | "FilePreviewRobot" | "TusStoreRobot" | "ProgressSimulateRobot";
|
|
75841
|
+
name: "AiChatRobot" | "UploadHandleRobot" | "FileServeRobot" | "FileWatermarkRobot" | "FileVerifyRobot" | "EdglyDeliverRobot" | "TlcdnDeliverRobot" | "VideoSubtitleRobot" | "VideoEncodeRobot" | "VideoAdaptiveRobot" | "VideoMergeRobot" | "VideoConcatRobot" | "AudioWaveformRobot" | "AudioEncodeRobot" | "AudioLoopRobot" | "AudioConcatRobot" | "AudioMergeRobot" | "AudioArtworkRobot" | "ImageFacedetectRobot" | "ImageDescribeRobot" | "ImageOcrRobot" | "ImageBgremoveRobot" | "ImageGenerateRobot" | "DocumentOcrRobot" | "SpeechTranscribeRobot" | "VideoThumbsRobot" | "FileVirusscanRobot" | "ImageOptimizeRobot" | "FileCompressRobot" | "MetaReadRobot" | "FileDecompressRobot" | "MetaWriteRobot" | "DocumentThumbsRobot" | "DocumentConvertRobot" | "DocumentMergeRobot" | "DocumentSplitRobot" | "DocumentOptimizeRobot" | "DocumentAutorotateRobot" | "HtmlConvertRobot" | "ImageResizeRobot" | "ImageMergeRobot" | "S3ImportRobot" | "S3StoreRobot" | "DigitalOceanImportRobot" | "DigitalOceanStoreRobot" | "BackblazeImportRobot" | "BackblazeStoreRobot" | "MinioImportRobot" | "TigrisImportRobot" | "CloudflareImportRobot" | "SupabaseImportRobot" | "MinioStoreRobot" | "TigrisStoreRobot" | "CloudflareStoreRobot" | "SupabaseStoreRobot" | "WasabiImportRobot" | "WasabiStoreRobot" | "SwiftImportRobot" | "SwiftStoreRobot" | "GoogleImportRobot" | "GoogleStoreRobot" | "DropboxImportRobot" | "DropboxStoreRobot" | "HttpImportRobot" | "SftpImportRobot" | "SftpStoreRobot" | "FtpImportRobot" | "FtpStoreRobot" | "CloudfilesImportRobot" | "CloudfilesStoreRobot" | "AzureImportRobot" | "AzureStoreRobot" | "YoutubeStoreRobot" | "VimeoImportRobot" | "VimeoStoreRobot" | "AssemblySavejsonRobot" | "ScriptRunRobot" | "FileHashRobot" | "FileReadRobot" | "VideoOndemandRobot" | "FileFilterRobot" | "TextSpeakRobot" | "TextTranslateRobot" | "FilePreviewRobot" | "TusStoreRobot" | "ProgressSimulateRobot";
|
|
75316
75842
|
priceFactor: number;
|
|
75317
75843
|
queueSlotCount: number;
|
|
75318
75844
|
isAllowedForUrlTransform: boolean;
|
|
@@ -75366,7 +75892,7 @@ export declare const robotsMeta: {
|
|
|
75366
75892
|
uses_tools?: ("ffmpeg" | "imagemagick")[] | undefined;
|
|
75367
75893
|
};
|
|
75368
75894
|
tigrisStore: {
|
|
75369
|
-
name: "AiChatRobot" | "UploadHandleRobot" | "FileServeRobot" | "FileWatermarkRobot" | "FileVerifyRobot" | "EdglyDeliverRobot" | "TlcdnDeliverRobot" | "VideoSubtitleRobot" | "VideoEncodeRobot" | "VideoAdaptiveRobot" | "VideoMergeRobot" | "VideoConcatRobot" | "AudioWaveformRobot" | "AudioEncodeRobot" | "AudioLoopRobot" | "AudioConcatRobot" | "AudioMergeRobot" | "AudioArtworkRobot" | "ImageFacedetectRobot" | "ImageDescribeRobot" | "ImageOcrRobot" | "ImageBgremoveRobot" | "ImageGenerateRobot" | "DocumentOcrRobot" | "SpeechTranscribeRobot" | "VideoThumbsRobot" | "FileVirusscanRobot" | "ImageOptimizeRobot" | "FileCompressRobot" | "MetaReadRobot" | "FileDecompressRobot" | "MetaWriteRobot" | "DocumentThumbsRobot" | "DocumentConvertRobot" | "DocumentMergeRobot" | "DocumentSplitRobot" | "DocumentAutorotateRobot" | "HtmlConvertRobot" | "ImageResizeRobot" | "ImageMergeRobot" | "S3ImportRobot" | "S3StoreRobot" | "DigitalOceanImportRobot" | "DigitalOceanStoreRobot" | "BackblazeImportRobot" | "BackblazeStoreRobot" | "MinioImportRobot" | "TigrisImportRobot" | "CloudflareImportRobot" | "SupabaseImportRobot" | "MinioStoreRobot" | "TigrisStoreRobot" | "CloudflareStoreRobot" | "SupabaseStoreRobot" | "WasabiImportRobot" | "WasabiStoreRobot" | "SwiftImportRobot" | "SwiftStoreRobot" | "GoogleImportRobot" | "GoogleStoreRobot" | "DropboxImportRobot" | "DropboxStoreRobot" | "HttpImportRobot" | "SftpImportRobot" | "SftpStoreRobot" | "FtpImportRobot" | "FtpStoreRobot" | "CloudfilesImportRobot" | "CloudfilesStoreRobot" | "AzureImportRobot" | "AzureStoreRobot" | "YoutubeStoreRobot" | "VimeoImportRobot" | "VimeoStoreRobot" | "AssemblySavejsonRobot" | "ScriptRunRobot" | "FileHashRobot" | "FileReadRobot" | "VideoOndemandRobot" | "FileFilterRobot" | "TextSpeakRobot" | "TextTranslateRobot" | "FilePreviewRobot" | "TusStoreRobot" | "ProgressSimulateRobot";
|
|
75895
|
+
name: "AiChatRobot" | "UploadHandleRobot" | "FileServeRobot" | "FileWatermarkRobot" | "FileVerifyRobot" | "EdglyDeliverRobot" | "TlcdnDeliverRobot" | "VideoSubtitleRobot" | "VideoEncodeRobot" | "VideoAdaptiveRobot" | "VideoMergeRobot" | "VideoConcatRobot" | "AudioWaveformRobot" | "AudioEncodeRobot" | "AudioLoopRobot" | "AudioConcatRobot" | "AudioMergeRobot" | "AudioArtworkRobot" | "ImageFacedetectRobot" | "ImageDescribeRobot" | "ImageOcrRobot" | "ImageBgremoveRobot" | "ImageGenerateRobot" | "DocumentOcrRobot" | "SpeechTranscribeRobot" | "VideoThumbsRobot" | "FileVirusscanRobot" | "ImageOptimizeRobot" | "FileCompressRobot" | "MetaReadRobot" | "FileDecompressRobot" | "MetaWriteRobot" | "DocumentThumbsRobot" | "DocumentConvertRobot" | "DocumentMergeRobot" | "DocumentSplitRobot" | "DocumentOptimizeRobot" | "DocumentAutorotateRobot" | "HtmlConvertRobot" | "ImageResizeRobot" | "ImageMergeRobot" | "S3ImportRobot" | "S3StoreRobot" | "DigitalOceanImportRobot" | "DigitalOceanStoreRobot" | "BackblazeImportRobot" | "BackblazeStoreRobot" | "MinioImportRobot" | "TigrisImportRobot" | "CloudflareImportRobot" | "SupabaseImportRobot" | "MinioStoreRobot" | "TigrisStoreRobot" | "CloudflareStoreRobot" | "SupabaseStoreRobot" | "WasabiImportRobot" | "WasabiStoreRobot" | "SwiftImportRobot" | "SwiftStoreRobot" | "GoogleImportRobot" | "GoogleStoreRobot" | "DropboxImportRobot" | "DropboxStoreRobot" | "HttpImportRobot" | "SftpImportRobot" | "SftpStoreRobot" | "FtpImportRobot" | "FtpStoreRobot" | "CloudfilesImportRobot" | "CloudfilesStoreRobot" | "AzureImportRobot" | "AzureStoreRobot" | "YoutubeStoreRobot" | "VimeoImportRobot" | "VimeoStoreRobot" | "AssemblySavejsonRobot" | "ScriptRunRobot" | "FileHashRobot" | "FileReadRobot" | "VideoOndemandRobot" | "FileFilterRobot" | "TextSpeakRobot" | "TextTranslateRobot" | "FilePreviewRobot" | "TusStoreRobot" | "ProgressSimulateRobot";
|
|
75370
75896
|
priceFactor: number;
|
|
75371
75897
|
queueSlotCount: number;
|
|
75372
75898
|
isAllowedForUrlTransform: boolean;
|
|
@@ -75420,7 +75946,7 @@ export declare const robotsMeta: {
|
|
|
75420
75946
|
uses_tools?: ("ffmpeg" | "imagemagick")[] | undefined;
|
|
75421
75947
|
};
|
|
75422
75948
|
tlcdnDeliverMeta: {
|
|
75423
|
-
name: "AiChatRobot" | "UploadHandleRobot" | "FileServeRobot" | "FileWatermarkRobot" | "FileVerifyRobot" | "EdglyDeliverRobot" | "TlcdnDeliverRobot" | "VideoSubtitleRobot" | "VideoEncodeRobot" | "VideoAdaptiveRobot" | "VideoMergeRobot" | "VideoConcatRobot" | "AudioWaveformRobot" | "AudioEncodeRobot" | "AudioLoopRobot" | "AudioConcatRobot" | "AudioMergeRobot" | "AudioArtworkRobot" | "ImageFacedetectRobot" | "ImageDescribeRobot" | "ImageOcrRobot" | "ImageBgremoveRobot" | "ImageGenerateRobot" | "DocumentOcrRobot" | "SpeechTranscribeRobot" | "VideoThumbsRobot" | "FileVirusscanRobot" | "ImageOptimizeRobot" | "FileCompressRobot" | "MetaReadRobot" | "FileDecompressRobot" | "MetaWriteRobot" | "DocumentThumbsRobot" | "DocumentConvertRobot" | "DocumentMergeRobot" | "DocumentSplitRobot" | "DocumentAutorotateRobot" | "HtmlConvertRobot" | "ImageResizeRobot" | "ImageMergeRobot" | "S3ImportRobot" | "S3StoreRobot" | "DigitalOceanImportRobot" | "DigitalOceanStoreRobot" | "BackblazeImportRobot" | "BackblazeStoreRobot" | "MinioImportRobot" | "TigrisImportRobot" | "CloudflareImportRobot" | "SupabaseImportRobot" | "MinioStoreRobot" | "TigrisStoreRobot" | "CloudflareStoreRobot" | "SupabaseStoreRobot" | "WasabiImportRobot" | "WasabiStoreRobot" | "SwiftImportRobot" | "SwiftStoreRobot" | "GoogleImportRobot" | "GoogleStoreRobot" | "DropboxImportRobot" | "DropboxStoreRobot" | "HttpImportRobot" | "SftpImportRobot" | "SftpStoreRobot" | "FtpImportRobot" | "FtpStoreRobot" | "CloudfilesImportRobot" | "CloudfilesStoreRobot" | "AzureImportRobot" | "AzureStoreRobot" | "YoutubeStoreRobot" | "VimeoImportRobot" | "VimeoStoreRobot" | "AssemblySavejsonRobot" | "ScriptRunRobot" | "FileHashRobot" | "FileReadRobot" | "VideoOndemandRobot" | "FileFilterRobot" | "TextSpeakRobot" | "TextTranslateRobot" | "FilePreviewRobot" | "TusStoreRobot" | "ProgressSimulateRobot";
|
|
75949
|
+
name: "AiChatRobot" | "UploadHandleRobot" | "FileServeRobot" | "FileWatermarkRobot" | "FileVerifyRobot" | "EdglyDeliverRobot" | "TlcdnDeliverRobot" | "VideoSubtitleRobot" | "VideoEncodeRobot" | "VideoAdaptiveRobot" | "VideoMergeRobot" | "VideoConcatRobot" | "AudioWaveformRobot" | "AudioEncodeRobot" | "AudioLoopRobot" | "AudioConcatRobot" | "AudioMergeRobot" | "AudioArtworkRobot" | "ImageFacedetectRobot" | "ImageDescribeRobot" | "ImageOcrRobot" | "ImageBgremoveRobot" | "ImageGenerateRobot" | "DocumentOcrRobot" | "SpeechTranscribeRobot" | "VideoThumbsRobot" | "FileVirusscanRobot" | "ImageOptimizeRobot" | "FileCompressRobot" | "MetaReadRobot" | "FileDecompressRobot" | "MetaWriteRobot" | "DocumentThumbsRobot" | "DocumentConvertRobot" | "DocumentMergeRobot" | "DocumentSplitRobot" | "DocumentOptimizeRobot" | "DocumentAutorotateRobot" | "HtmlConvertRobot" | "ImageResizeRobot" | "ImageMergeRobot" | "S3ImportRobot" | "S3StoreRobot" | "DigitalOceanImportRobot" | "DigitalOceanStoreRobot" | "BackblazeImportRobot" | "BackblazeStoreRobot" | "MinioImportRobot" | "TigrisImportRobot" | "CloudflareImportRobot" | "SupabaseImportRobot" | "MinioStoreRobot" | "TigrisStoreRobot" | "CloudflareStoreRobot" | "SupabaseStoreRobot" | "WasabiImportRobot" | "WasabiStoreRobot" | "SwiftImportRobot" | "SwiftStoreRobot" | "GoogleImportRobot" | "GoogleStoreRobot" | "DropboxImportRobot" | "DropboxStoreRobot" | "HttpImportRobot" | "SftpImportRobot" | "SftpStoreRobot" | "FtpImportRobot" | "FtpStoreRobot" | "CloudfilesImportRobot" | "CloudfilesStoreRobot" | "AzureImportRobot" | "AzureStoreRobot" | "YoutubeStoreRobot" | "VimeoImportRobot" | "VimeoStoreRobot" | "AssemblySavejsonRobot" | "ScriptRunRobot" | "FileHashRobot" | "FileReadRobot" | "VideoOndemandRobot" | "FileFilterRobot" | "TextSpeakRobot" | "TextTranslateRobot" | "FilePreviewRobot" | "TusStoreRobot" | "ProgressSimulateRobot";
|
|
75424
75950
|
priceFactor: number;
|
|
75425
75951
|
queueSlotCount: number;
|
|
75426
75952
|
isAllowedForUrlTransform: boolean;
|
|
@@ -75474,7 +76000,7 @@ export declare const robotsMeta: {
|
|
|
75474
76000
|
uses_tools?: ("ffmpeg" | "imagemagick")[] | undefined;
|
|
75475
76001
|
};
|
|
75476
76002
|
tusStoreMeta: {
|
|
75477
|
-
name: "AiChatRobot" | "UploadHandleRobot" | "FileServeRobot" | "FileWatermarkRobot" | "FileVerifyRobot" | "EdglyDeliverRobot" | "TlcdnDeliverRobot" | "VideoSubtitleRobot" | "VideoEncodeRobot" | "VideoAdaptiveRobot" | "VideoMergeRobot" | "VideoConcatRobot" | "AudioWaveformRobot" | "AudioEncodeRobot" | "AudioLoopRobot" | "AudioConcatRobot" | "AudioMergeRobot" | "AudioArtworkRobot" | "ImageFacedetectRobot" | "ImageDescribeRobot" | "ImageOcrRobot" | "ImageBgremoveRobot" | "ImageGenerateRobot" | "DocumentOcrRobot" | "SpeechTranscribeRobot" | "VideoThumbsRobot" | "FileVirusscanRobot" | "ImageOptimizeRobot" | "FileCompressRobot" | "MetaReadRobot" | "FileDecompressRobot" | "MetaWriteRobot" | "DocumentThumbsRobot" | "DocumentConvertRobot" | "DocumentMergeRobot" | "DocumentSplitRobot" | "DocumentAutorotateRobot" | "HtmlConvertRobot" | "ImageResizeRobot" | "ImageMergeRobot" | "S3ImportRobot" | "S3StoreRobot" | "DigitalOceanImportRobot" | "DigitalOceanStoreRobot" | "BackblazeImportRobot" | "BackblazeStoreRobot" | "MinioImportRobot" | "TigrisImportRobot" | "CloudflareImportRobot" | "SupabaseImportRobot" | "MinioStoreRobot" | "TigrisStoreRobot" | "CloudflareStoreRobot" | "SupabaseStoreRobot" | "WasabiImportRobot" | "WasabiStoreRobot" | "SwiftImportRobot" | "SwiftStoreRobot" | "GoogleImportRobot" | "GoogleStoreRobot" | "DropboxImportRobot" | "DropboxStoreRobot" | "HttpImportRobot" | "SftpImportRobot" | "SftpStoreRobot" | "FtpImportRobot" | "FtpStoreRobot" | "CloudfilesImportRobot" | "CloudfilesStoreRobot" | "AzureImportRobot" | "AzureStoreRobot" | "YoutubeStoreRobot" | "VimeoImportRobot" | "VimeoStoreRobot" | "AssemblySavejsonRobot" | "ScriptRunRobot" | "FileHashRobot" | "FileReadRobot" | "VideoOndemandRobot" | "FileFilterRobot" | "TextSpeakRobot" | "TextTranslateRobot" | "FilePreviewRobot" | "TusStoreRobot" | "ProgressSimulateRobot";
|
|
76003
|
+
name: "AiChatRobot" | "UploadHandleRobot" | "FileServeRobot" | "FileWatermarkRobot" | "FileVerifyRobot" | "EdglyDeliverRobot" | "TlcdnDeliverRobot" | "VideoSubtitleRobot" | "VideoEncodeRobot" | "VideoAdaptiveRobot" | "VideoMergeRobot" | "VideoConcatRobot" | "AudioWaveformRobot" | "AudioEncodeRobot" | "AudioLoopRobot" | "AudioConcatRobot" | "AudioMergeRobot" | "AudioArtworkRobot" | "ImageFacedetectRobot" | "ImageDescribeRobot" | "ImageOcrRobot" | "ImageBgremoveRobot" | "ImageGenerateRobot" | "DocumentOcrRobot" | "SpeechTranscribeRobot" | "VideoThumbsRobot" | "FileVirusscanRobot" | "ImageOptimizeRobot" | "FileCompressRobot" | "MetaReadRobot" | "FileDecompressRobot" | "MetaWriteRobot" | "DocumentThumbsRobot" | "DocumentConvertRobot" | "DocumentMergeRobot" | "DocumentSplitRobot" | "DocumentOptimizeRobot" | "DocumentAutorotateRobot" | "HtmlConvertRobot" | "ImageResizeRobot" | "ImageMergeRobot" | "S3ImportRobot" | "S3StoreRobot" | "DigitalOceanImportRobot" | "DigitalOceanStoreRobot" | "BackblazeImportRobot" | "BackblazeStoreRobot" | "MinioImportRobot" | "TigrisImportRobot" | "CloudflareImportRobot" | "SupabaseImportRobot" | "MinioStoreRobot" | "TigrisStoreRobot" | "CloudflareStoreRobot" | "SupabaseStoreRobot" | "WasabiImportRobot" | "WasabiStoreRobot" | "SwiftImportRobot" | "SwiftStoreRobot" | "GoogleImportRobot" | "GoogleStoreRobot" | "DropboxImportRobot" | "DropboxStoreRobot" | "HttpImportRobot" | "SftpImportRobot" | "SftpStoreRobot" | "FtpImportRobot" | "FtpStoreRobot" | "CloudfilesImportRobot" | "CloudfilesStoreRobot" | "AzureImportRobot" | "AzureStoreRobot" | "YoutubeStoreRobot" | "VimeoImportRobot" | "VimeoStoreRobot" | "AssemblySavejsonRobot" | "ScriptRunRobot" | "FileHashRobot" | "FileReadRobot" | "VideoOndemandRobot" | "FileFilterRobot" | "TextSpeakRobot" | "TextTranslateRobot" | "FilePreviewRobot" | "TusStoreRobot" | "ProgressSimulateRobot";
|
|
75478
76004
|
priceFactor: number;
|
|
75479
76005
|
queueSlotCount: number;
|
|
75480
76006
|
isAllowedForUrlTransform: boolean;
|
|
@@ -75528,7 +76054,7 @@ export declare const robotsMeta: {
|
|
|
75528
76054
|
uses_tools?: ("ffmpeg" | "imagemagick")[] | undefined;
|
|
75529
76055
|
};
|
|
75530
76056
|
uploadHandleMeta: {
|
|
75531
|
-
name: "AiChatRobot" | "UploadHandleRobot" | "FileServeRobot" | "FileWatermarkRobot" | "FileVerifyRobot" | "EdglyDeliverRobot" | "TlcdnDeliverRobot" | "VideoSubtitleRobot" | "VideoEncodeRobot" | "VideoAdaptiveRobot" | "VideoMergeRobot" | "VideoConcatRobot" | "AudioWaveformRobot" | "AudioEncodeRobot" | "AudioLoopRobot" | "AudioConcatRobot" | "AudioMergeRobot" | "AudioArtworkRobot" | "ImageFacedetectRobot" | "ImageDescribeRobot" | "ImageOcrRobot" | "ImageBgremoveRobot" | "ImageGenerateRobot" | "DocumentOcrRobot" | "SpeechTranscribeRobot" | "VideoThumbsRobot" | "FileVirusscanRobot" | "ImageOptimizeRobot" | "FileCompressRobot" | "MetaReadRobot" | "FileDecompressRobot" | "MetaWriteRobot" | "DocumentThumbsRobot" | "DocumentConvertRobot" | "DocumentMergeRobot" | "DocumentSplitRobot" | "DocumentAutorotateRobot" | "HtmlConvertRobot" | "ImageResizeRobot" | "ImageMergeRobot" | "S3ImportRobot" | "S3StoreRobot" | "DigitalOceanImportRobot" | "DigitalOceanStoreRobot" | "BackblazeImportRobot" | "BackblazeStoreRobot" | "MinioImportRobot" | "TigrisImportRobot" | "CloudflareImportRobot" | "SupabaseImportRobot" | "MinioStoreRobot" | "TigrisStoreRobot" | "CloudflareStoreRobot" | "SupabaseStoreRobot" | "WasabiImportRobot" | "WasabiStoreRobot" | "SwiftImportRobot" | "SwiftStoreRobot" | "GoogleImportRobot" | "GoogleStoreRobot" | "DropboxImportRobot" | "DropboxStoreRobot" | "HttpImportRobot" | "SftpImportRobot" | "SftpStoreRobot" | "FtpImportRobot" | "FtpStoreRobot" | "CloudfilesImportRobot" | "CloudfilesStoreRobot" | "AzureImportRobot" | "AzureStoreRobot" | "YoutubeStoreRobot" | "VimeoImportRobot" | "VimeoStoreRobot" | "AssemblySavejsonRobot" | "ScriptRunRobot" | "FileHashRobot" | "FileReadRobot" | "VideoOndemandRobot" | "FileFilterRobot" | "TextSpeakRobot" | "TextTranslateRobot" | "FilePreviewRobot" | "TusStoreRobot" | "ProgressSimulateRobot";
|
|
76057
|
+
name: "AiChatRobot" | "UploadHandleRobot" | "FileServeRobot" | "FileWatermarkRobot" | "FileVerifyRobot" | "EdglyDeliverRobot" | "TlcdnDeliverRobot" | "VideoSubtitleRobot" | "VideoEncodeRobot" | "VideoAdaptiveRobot" | "VideoMergeRobot" | "VideoConcatRobot" | "AudioWaveformRobot" | "AudioEncodeRobot" | "AudioLoopRobot" | "AudioConcatRobot" | "AudioMergeRobot" | "AudioArtworkRobot" | "ImageFacedetectRobot" | "ImageDescribeRobot" | "ImageOcrRobot" | "ImageBgremoveRobot" | "ImageGenerateRobot" | "DocumentOcrRobot" | "SpeechTranscribeRobot" | "VideoThumbsRobot" | "FileVirusscanRobot" | "ImageOptimizeRobot" | "FileCompressRobot" | "MetaReadRobot" | "FileDecompressRobot" | "MetaWriteRobot" | "DocumentThumbsRobot" | "DocumentConvertRobot" | "DocumentMergeRobot" | "DocumentSplitRobot" | "DocumentOptimizeRobot" | "DocumentAutorotateRobot" | "HtmlConvertRobot" | "ImageResizeRobot" | "ImageMergeRobot" | "S3ImportRobot" | "S3StoreRobot" | "DigitalOceanImportRobot" | "DigitalOceanStoreRobot" | "BackblazeImportRobot" | "BackblazeStoreRobot" | "MinioImportRobot" | "TigrisImportRobot" | "CloudflareImportRobot" | "SupabaseImportRobot" | "MinioStoreRobot" | "TigrisStoreRobot" | "CloudflareStoreRobot" | "SupabaseStoreRobot" | "WasabiImportRobot" | "WasabiStoreRobot" | "SwiftImportRobot" | "SwiftStoreRobot" | "GoogleImportRobot" | "GoogleStoreRobot" | "DropboxImportRobot" | "DropboxStoreRobot" | "HttpImportRobot" | "SftpImportRobot" | "SftpStoreRobot" | "FtpImportRobot" | "FtpStoreRobot" | "CloudfilesImportRobot" | "CloudfilesStoreRobot" | "AzureImportRobot" | "AzureStoreRobot" | "YoutubeStoreRobot" | "VimeoImportRobot" | "VimeoStoreRobot" | "AssemblySavejsonRobot" | "ScriptRunRobot" | "FileHashRobot" | "FileReadRobot" | "VideoOndemandRobot" | "FileFilterRobot" | "TextSpeakRobot" | "TextTranslateRobot" | "FilePreviewRobot" | "TusStoreRobot" | "ProgressSimulateRobot";
|
|
75532
76058
|
priceFactor: number;
|
|
75533
76059
|
queueSlotCount: number;
|
|
75534
76060
|
isAllowedForUrlTransform: boolean;
|
|
@@ -75582,7 +76108,7 @@ export declare const robotsMeta: {
|
|
|
75582
76108
|
uses_tools?: ("ffmpeg" | "imagemagick")[] | undefined;
|
|
75583
76109
|
};
|
|
75584
76110
|
videoAdaptiveMeta: {
|
|
75585
|
-
name: "AiChatRobot" | "UploadHandleRobot" | "FileServeRobot" | "FileWatermarkRobot" | "FileVerifyRobot" | "EdglyDeliverRobot" | "TlcdnDeliverRobot" | "VideoSubtitleRobot" | "VideoEncodeRobot" | "VideoAdaptiveRobot" | "VideoMergeRobot" | "VideoConcatRobot" | "AudioWaveformRobot" | "AudioEncodeRobot" | "AudioLoopRobot" | "AudioConcatRobot" | "AudioMergeRobot" | "AudioArtworkRobot" | "ImageFacedetectRobot" | "ImageDescribeRobot" | "ImageOcrRobot" | "ImageBgremoveRobot" | "ImageGenerateRobot" | "DocumentOcrRobot" | "SpeechTranscribeRobot" | "VideoThumbsRobot" | "FileVirusscanRobot" | "ImageOptimizeRobot" | "FileCompressRobot" | "MetaReadRobot" | "FileDecompressRobot" | "MetaWriteRobot" | "DocumentThumbsRobot" | "DocumentConvertRobot" | "DocumentMergeRobot" | "DocumentSplitRobot" | "DocumentAutorotateRobot" | "HtmlConvertRobot" | "ImageResizeRobot" | "ImageMergeRobot" | "S3ImportRobot" | "S3StoreRobot" | "DigitalOceanImportRobot" | "DigitalOceanStoreRobot" | "BackblazeImportRobot" | "BackblazeStoreRobot" | "MinioImportRobot" | "TigrisImportRobot" | "CloudflareImportRobot" | "SupabaseImportRobot" | "MinioStoreRobot" | "TigrisStoreRobot" | "CloudflareStoreRobot" | "SupabaseStoreRobot" | "WasabiImportRobot" | "WasabiStoreRobot" | "SwiftImportRobot" | "SwiftStoreRobot" | "GoogleImportRobot" | "GoogleStoreRobot" | "DropboxImportRobot" | "DropboxStoreRobot" | "HttpImportRobot" | "SftpImportRobot" | "SftpStoreRobot" | "FtpImportRobot" | "FtpStoreRobot" | "CloudfilesImportRobot" | "CloudfilesStoreRobot" | "AzureImportRobot" | "AzureStoreRobot" | "YoutubeStoreRobot" | "VimeoImportRobot" | "VimeoStoreRobot" | "AssemblySavejsonRobot" | "ScriptRunRobot" | "FileHashRobot" | "FileReadRobot" | "VideoOndemandRobot" | "FileFilterRobot" | "TextSpeakRobot" | "TextTranslateRobot" | "FilePreviewRobot" | "TusStoreRobot" | "ProgressSimulateRobot";
|
|
76111
|
+
name: "AiChatRobot" | "UploadHandleRobot" | "FileServeRobot" | "FileWatermarkRobot" | "FileVerifyRobot" | "EdglyDeliverRobot" | "TlcdnDeliverRobot" | "VideoSubtitleRobot" | "VideoEncodeRobot" | "VideoAdaptiveRobot" | "VideoMergeRobot" | "VideoConcatRobot" | "AudioWaveformRobot" | "AudioEncodeRobot" | "AudioLoopRobot" | "AudioConcatRobot" | "AudioMergeRobot" | "AudioArtworkRobot" | "ImageFacedetectRobot" | "ImageDescribeRobot" | "ImageOcrRobot" | "ImageBgremoveRobot" | "ImageGenerateRobot" | "DocumentOcrRobot" | "SpeechTranscribeRobot" | "VideoThumbsRobot" | "FileVirusscanRobot" | "ImageOptimizeRobot" | "FileCompressRobot" | "MetaReadRobot" | "FileDecompressRobot" | "MetaWriteRobot" | "DocumentThumbsRobot" | "DocumentConvertRobot" | "DocumentMergeRobot" | "DocumentSplitRobot" | "DocumentOptimizeRobot" | "DocumentAutorotateRobot" | "HtmlConvertRobot" | "ImageResizeRobot" | "ImageMergeRobot" | "S3ImportRobot" | "S3StoreRobot" | "DigitalOceanImportRobot" | "DigitalOceanStoreRobot" | "BackblazeImportRobot" | "BackblazeStoreRobot" | "MinioImportRobot" | "TigrisImportRobot" | "CloudflareImportRobot" | "SupabaseImportRobot" | "MinioStoreRobot" | "TigrisStoreRobot" | "CloudflareStoreRobot" | "SupabaseStoreRobot" | "WasabiImportRobot" | "WasabiStoreRobot" | "SwiftImportRobot" | "SwiftStoreRobot" | "GoogleImportRobot" | "GoogleStoreRobot" | "DropboxImportRobot" | "DropboxStoreRobot" | "HttpImportRobot" | "SftpImportRobot" | "SftpStoreRobot" | "FtpImportRobot" | "FtpStoreRobot" | "CloudfilesImportRobot" | "CloudfilesStoreRobot" | "AzureImportRobot" | "AzureStoreRobot" | "YoutubeStoreRobot" | "VimeoImportRobot" | "VimeoStoreRobot" | "AssemblySavejsonRobot" | "ScriptRunRobot" | "FileHashRobot" | "FileReadRobot" | "VideoOndemandRobot" | "FileFilterRobot" | "TextSpeakRobot" | "TextTranslateRobot" | "FilePreviewRobot" | "TusStoreRobot" | "ProgressSimulateRobot";
|
|
75586
76112
|
priceFactor: number;
|
|
75587
76113
|
queueSlotCount: number;
|
|
75588
76114
|
isAllowedForUrlTransform: boolean;
|
|
@@ -75636,7 +76162,7 @@ export declare const robotsMeta: {
|
|
|
75636
76162
|
uses_tools?: ("ffmpeg" | "imagemagick")[] | undefined;
|
|
75637
76163
|
};
|
|
75638
76164
|
videoConcatMeta: {
|
|
75639
|
-
name: "AiChatRobot" | "UploadHandleRobot" | "FileServeRobot" | "FileWatermarkRobot" | "FileVerifyRobot" | "EdglyDeliverRobot" | "TlcdnDeliverRobot" | "VideoSubtitleRobot" | "VideoEncodeRobot" | "VideoAdaptiveRobot" | "VideoMergeRobot" | "VideoConcatRobot" | "AudioWaveformRobot" | "AudioEncodeRobot" | "AudioLoopRobot" | "AudioConcatRobot" | "AudioMergeRobot" | "AudioArtworkRobot" | "ImageFacedetectRobot" | "ImageDescribeRobot" | "ImageOcrRobot" | "ImageBgremoveRobot" | "ImageGenerateRobot" | "DocumentOcrRobot" | "SpeechTranscribeRobot" | "VideoThumbsRobot" | "FileVirusscanRobot" | "ImageOptimizeRobot" | "FileCompressRobot" | "MetaReadRobot" | "FileDecompressRobot" | "MetaWriteRobot" | "DocumentThumbsRobot" | "DocumentConvertRobot" | "DocumentMergeRobot" | "DocumentSplitRobot" | "DocumentAutorotateRobot" | "HtmlConvertRobot" | "ImageResizeRobot" | "ImageMergeRobot" | "S3ImportRobot" | "S3StoreRobot" | "DigitalOceanImportRobot" | "DigitalOceanStoreRobot" | "BackblazeImportRobot" | "BackblazeStoreRobot" | "MinioImportRobot" | "TigrisImportRobot" | "CloudflareImportRobot" | "SupabaseImportRobot" | "MinioStoreRobot" | "TigrisStoreRobot" | "CloudflareStoreRobot" | "SupabaseStoreRobot" | "WasabiImportRobot" | "WasabiStoreRobot" | "SwiftImportRobot" | "SwiftStoreRobot" | "GoogleImportRobot" | "GoogleStoreRobot" | "DropboxImportRobot" | "DropboxStoreRobot" | "HttpImportRobot" | "SftpImportRobot" | "SftpStoreRobot" | "FtpImportRobot" | "FtpStoreRobot" | "CloudfilesImportRobot" | "CloudfilesStoreRobot" | "AzureImportRobot" | "AzureStoreRobot" | "YoutubeStoreRobot" | "VimeoImportRobot" | "VimeoStoreRobot" | "AssemblySavejsonRobot" | "ScriptRunRobot" | "FileHashRobot" | "FileReadRobot" | "VideoOndemandRobot" | "FileFilterRobot" | "TextSpeakRobot" | "TextTranslateRobot" | "FilePreviewRobot" | "TusStoreRobot" | "ProgressSimulateRobot";
|
|
76165
|
+
name: "AiChatRobot" | "UploadHandleRobot" | "FileServeRobot" | "FileWatermarkRobot" | "FileVerifyRobot" | "EdglyDeliverRobot" | "TlcdnDeliverRobot" | "VideoSubtitleRobot" | "VideoEncodeRobot" | "VideoAdaptiveRobot" | "VideoMergeRobot" | "VideoConcatRobot" | "AudioWaveformRobot" | "AudioEncodeRobot" | "AudioLoopRobot" | "AudioConcatRobot" | "AudioMergeRobot" | "AudioArtworkRobot" | "ImageFacedetectRobot" | "ImageDescribeRobot" | "ImageOcrRobot" | "ImageBgremoveRobot" | "ImageGenerateRobot" | "DocumentOcrRobot" | "SpeechTranscribeRobot" | "VideoThumbsRobot" | "FileVirusscanRobot" | "ImageOptimizeRobot" | "FileCompressRobot" | "MetaReadRobot" | "FileDecompressRobot" | "MetaWriteRobot" | "DocumentThumbsRobot" | "DocumentConvertRobot" | "DocumentMergeRobot" | "DocumentSplitRobot" | "DocumentOptimizeRobot" | "DocumentAutorotateRobot" | "HtmlConvertRobot" | "ImageResizeRobot" | "ImageMergeRobot" | "S3ImportRobot" | "S3StoreRobot" | "DigitalOceanImportRobot" | "DigitalOceanStoreRobot" | "BackblazeImportRobot" | "BackblazeStoreRobot" | "MinioImportRobot" | "TigrisImportRobot" | "CloudflareImportRobot" | "SupabaseImportRobot" | "MinioStoreRobot" | "TigrisStoreRobot" | "CloudflareStoreRobot" | "SupabaseStoreRobot" | "WasabiImportRobot" | "WasabiStoreRobot" | "SwiftImportRobot" | "SwiftStoreRobot" | "GoogleImportRobot" | "GoogleStoreRobot" | "DropboxImportRobot" | "DropboxStoreRobot" | "HttpImportRobot" | "SftpImportRobot" | "SftpStoreRobot" | "FtpImportRobot" | "FtpStoreRobot" | "CloudfilesImportRobot" | "CloudfilesStoreRobot" | "AzureImportRobot" | "AzureStoreRobot" | "YoutubeStoreRobot" | "VimeoImportRobot" | "VimeoStoreRobot" | "AssemblySavejsonRobot" | "ScriptRunRobot" | "FileHashRobot" | "FileReadRobot" | "VideoOndemandRobot" | "FileFilterRobot" | "TextSpeakRobot" | "TextTranslateRobot" | "FilePreviewRobot" | "TusStoreRobot" | "ProgressSimulateRobot";
|
|
75640
76166
|
priceFactor: number;
|
|
75641
76167
|
queueSlotCount: number;
|
|
75642
76168
|
isAllowedForUrlTransform: boolean;
|
|
@@ -75690,7 +76216,7 @@ export declare const robotsMeta: {
|
|
|
75690
76216
|
uses_tools?: ("ffmpeg" | "imagemagick")[] | undefined;
|
|
75691
76217
|
};
|
|
75692
76218
|
videoEncodeMeta: {
|
|
75693
|
-
name: "AiChatRobot" | "UploadHandleRobot" | "FileServeRobot" | "FileWatermarkRobot" | "FileVerifyRobot" | "EdglyDeliverRobot" | "TlcdnDeliverRobot" | "VideoSubtitleRobot" | "VideoEncodeRobot" | "VideoAdaptiveRobot" | "VideoMergeRobot" | "VideoConcatRobot" | "AudioWaveformRobot" | "AudioEncodeRobot" | "AudioLoopRobot" | "AudioConcatRobot" | "AudioMergeRobot" | "AudioArtworkRobot" | "ImageFacedetectRobot" | "ImageDescribeRobot" | "ImageOcrRobot" | "ImageBgremoveRobot" | "ImageGenerateRobot" | "DocumentOcrRobot" | "SpeechTranscribeRobot" | "VideoThumbsRobot" | "FileVirusscanRobot" | "ImageOptimizeRobot" | "FileCompressRobot" | "MetaReadRobot" | "FileDecompressRobot" | "MetaWriteRobot" | "DocumentThumbsRobot" | "DocumentConvertRobot" | "DocumentMergeRobot" | "DocumentSplitRobot" | "DocumentAutorotateRobot" | "HtmlConvertRobot" | "ImageResizeRobot" | "ImageMergeRobot" | "S3ImportRobot" | "S3StoreRobot" | "DigitalOceanImportRobot" | "DigitalOceanStoreRobot" | "BackblazeImportRobot" | "BackblazeStoreRobot" | "MinioImportRobot" | "TigrisImportRobot" | "CloudflareImportRobot" | "SupabaseImportRobot" | "MinioStoreRobot" | "TigrisStoreRobot" | "CloudflareStoreRobot" | "SupabaseStoreRobot" | "WasabiImportRobot" | "WasabiStoreRobot" | "SwiftImportRobot" | "SwiftStoreRobot" | "GoogleImportRobot" | "GoogleStoreRobot" | "DropboxImportRobot" | "DropboxStoreRobot" | "HttpImportRobot" | "SftpImportRobot" | "SftpStoreRobot" | "FtpImportRobot" | "FtpStoreRobot" | "CloudfilesImportRobot" | "CloudfilesStoreRobot" | "AzureImportRobot" | "AzureStoreRobot" | "YoutubeStoreRobot" | "VimeoImportRobot" | "VimeoStoreRobot" | "AssemblySavejsonRobot" | "ScriptRunRobot" | "FileHashRobot" | "FileReadRobot" | "VideoOndemandRobot" | "FileFilterRobot" | "TextSpeakRobot" | "TextTranslateRobot" | "FilePreviewRobot" | "TusStoreRobot" | "ProgressSimulateRobot";
|
|
76219
|
+
name: "AiChatRobot" | "UploadHandleRobot" | "FileServeRobot" | "FileWatermarkRobot" | "FileVerifyRobot" | "EdglyDeliverRobot" | "TlcdnDeliverRobot" | "VideoSubtitleRobot" | "VideoEncodeRobot" | "VideoAdaptiveRobot" | "VideoMergeRobot" | "VideoConcatRobot" | "AudioWaveformRobot" | "AudioEncodeRobot" | "AudioLoopRobot" | "AudioConcatRobot" | "AudioMergeRobot" | "AudioArtworkRobot" | "ImageFacedetectRobot" | "ImageDescribeRobot" | "ImageOcrRobot" | "ImageBgremoveRobot" | "ImageGenerateRobot" | "DocumentOcrRobot" | "SpeechTranscribeRobot" | "VideoThumbsRobot" | "FileVirusscanRobot" | "ImageOptimizeRobot" | "FileCompressRobot" | "MetaReadRobot" | "FileDecompressRobot" | "MetaWriteRobot" | "DocumentThumbsRobot" | "DocumentConvertRobot" | "DocumentMergeRobot" | "DocumentSplitRobot" | "DocumentOptimizeRobot" | "DocumentAutorotateRobot" | "HtmlConvertRobot" | "ImageResizeRobot" | "ImageMergeRobot" | "S3ImportRobot" | "S3StoreRobot" | "DigitalOceanImportRobot" | "DigitalOceanStoreRobot" | "BackblazeImportRobot" | "BackblazeStoreRobot" | "MinioImportRobot" | "TigrisImportRobot" | "CloudflareImportRobot" | "SupabaseImportRobot" | "MinioStoreRobot" | "TigrisStoreRobot" | "CloudflareStoreRobot" | "SupabaseStoreRobot" | "WasabiImportRobot" | "WasabiStoreRobot" | "SwiftImportRobot" | "SwiftStoreRobot" | "GoogleImportRobot" | "GoogleStoreRobot" | "DropboxImportRobot" | "DropboxStoreRobot" | "HttpImportRobot" | "SftpImportRobot" | "SftpStoreRobot" | "FtpImportRobot" | "FtpStoreRobot" | "CloudfilesImportRobot" | "CloudfilesStoreRobot" | "AzureImportRobot" | "AzureStoreRobot" | "YoutubeStoreRobot" | "VimeoImportRobot" | "VimeoStoreRobot" | "AssemblySavejsonRobot" | "ScriptRunRobot" | "FileHashRobot" | "FileReadRobot" | "VideoOndemandRobot" | "FileFilterRobot" | "TextSpeakRobot" | "TextTranslateRobot" | "FilePreviewRobot" | "TusStoreRobot" | "ProgressSimulateRobot";
|
|
75694
76220
|
priceFactor: number;
|
|
75695
76221
|
queueSlotCount: number;
|
|
75696
76222
|
isAllowedForUrlTransform: boolean;
|
|
@@ -75744,7 +76270,7 @@ export declare const robotsMeta: {
|
|
|
75744
76270
|
uses_tools?: ("ffmpeg" | "imagemagick")[] | undefined;
|
|
75745
76271
|
};
|
|
75746
76272
|
videoMergeMeta: {
|
|
75747
|
-
name: "AiChatRobot" | "UploadHandleRobot" | "FileServeRobot" | "FileWatermarkRobot" | "FileVerifyRobot" | "EdglyDeliverRobot" | "TlcdnDeliverRobot" | "VideoSubtitleRobot" | "VideoEncodeRobot" | "VideoAdaptiveRobot" | "VideoMergeRobot" | "VideoConcatRobot" | "AudioWaveformRobot" | "AudioEncodeRobot" | "AudioLoopRobot" | "AudioConcatRobot" | "AudioMergeRobot" | "AudioArtworkRobot" | "ImageFacedetectRobot" | "ImageDescribeRobot" | "ImageOcrRobot" | "ImageBgremoveRobot" | "ImageGenerateRobot" | "DocumentOcrRobot" | "SpeechTranscribeRobot" | "VideoThumbsRobot" | "FileVirusscanRobot" | "ImageOptimizeRobot" | "FileCompressRobot" | "MetaReadRobot" | "FileDecompressRobot" | "MetaWriteRobot" | "DocumentThumbsRobot" | "DocumentConvertRobot" | "DocumentMergeRobot" | "DocumentSplitRobot" | "DocumentAutorotateRobot" | "HtmlConvertRobot" | "ImageResizeRobot" | "ImageMergeRobot" | "S3ImportRobot" | "S3StoreRobot" | "DigitalOceanImportRobot" | "DigitalOceanStoreRobot" | "BackblazeImportRobot" | "BackblazeStoreRobot" | "MinioImportRobot" | "TigrisImportRobot" | "CloudflareImportRobot" | "SupabaseImportRobot" | "MinioStoreRobot" | "TigrisStoreRobot" | "CloudflareStoreRobot" | "SupabaseStoreRobot" | "WasabiImportRobot" | "WasabiStoreRobot" | "SwiftImportRobot" | "SwiftStoreRobot" | "GoogleImportRobot" | "GoogleStoreRobot" | "DropboxImportRobot" | "DropboxStoreRobot" | "HttpImportRobot" | "SftpImportRobot" | "SftpStoreRobot" | "FtpImportRobot" | "FtpStoreRobot" | "CloudfilesImportRobot" | "CloudfilesStoreRobot" | "AzureImportRobot" | "AzureStoreRobot" | "YoutubeStoreRobot" | "VimeoImportRobot" | "VimeoStoreRobot" | "AssemblySavejsonRobot" | "ScriptRunRobot" | "FileHashRobot" | "FileReadRobot" | "VideoOndemandRobot" | "FileFilterRobot" | "TextSpeakRobot" | "TextTranslateRobot" | "FilePreviewRobot" | "TusStoreRobot" | "ProgressSimulateRobot";
|
|
76273
|
+
name: "AiChatRobot" | "UploadHandleRobot" | "FileServeRobot" | "FileWatermarkRobot" | "FileVerifyRobot" | "EdglyDeliverRobot" | "TlcdnDeliverRobot" | "VideoSubtitleRobot" | "VideoEncodeRobot" | "VideoAdaptiveRobot" | "VideoMergeRobot" | "VideoConcatRobot" | "AudioWaveformRobot" | "AudioEncodeRobot" | "AudioLoopRobot" | "AudioConcatRobot" | "AudioMergeRobot" | "AudioArtworkRobot" | "ImageFacedetectRobot" | "ImageDescribeRobot" | "ImageOcrRobot" | "ImageBgremoveRobot" | "ImageGenerateRobot" | "DocumentOcrRobot" | "SpeechTranscribeRobot" | "VideoThumbsRobot" | "FileVirusscanRobot" | "ImageOptimizeRobot" | "FileCompressRobot" | "MetaReadRobot" | "FileDecompressRobot" | "MetaWriteRobot" | "DocumentThumbsRobot" | "DocumentConvertRobot" | "DocumentMergeRobot" | "DocumentSplitRobot" | "DocumentOptimizeRobot" | "DocumentAutorotateRobot" | "HtmlConvertRobot" | "ImageResizeRobot" | "ImageMergeRobot" | "S3ImportRobot" | "S3StoreRobot" | "DigitalOceanImportRobot" | "DigitalOceanStoreRobot" | "BackblazeImportRobot" | "BackblazeStoreRobot" | "MinioImportRobot" | "TigrisImportRobot" | "CloudflareImportRobot" | "SupabaseImportRobot" | "MinioStoreRobot" | "TigrisStoreRobot" | "CloudflareStoreRobot" | "SupabaseStoreRobot" | "WasabiImportRobot" | "WasabiStoreRobot" | "SwiftImportRobot" | "SwiftStoreRobot" | "GoogleImportRobot" | "GoogleStoreRobot" | "DropboxImportRobot" | "DropboxStoreRobot" | "HttpImportRobot" | "SftpImportRobot" | "SftpStoreRobot" | "FtpImportRobot" | "FtpStoreRobot" | "CloudfilesImportRobot" | "CloudfilesStoreRobot" | "AzureImportRobot" | "AzureStoreRobot" | "YoutubeStoreRobot" | "VimeoImportRobot" | "VimeoStoreRobot" | "AssemblySavejsonRobot" | "ScriptRunRobot" | "FileHashRobot" | "FileReadRobot" | "VideoOndemandRobot" | "FileFilterRobot" | "TextSpeakRobot" | "TextTranslateRobot" | "FilePreviewRobot" | "TusStoreRobot" | "ProgressSimulateRobot";
|
|
75748
76274
|
priceFactor: number;
|
|
75749
76275
|
queueSlotCount: number;
|
|
75750
76276
|
isAllowedForUrlTransform: boolean;
|
|
@@ -75798,7 +76324,7 @@ export declare const robotsMeta: {
|
|
|
75798
76324
|
uses_tools?: ("ffmpeg" | "imagemagick")[] | undefined;
|
|
75799
76325
|
};
|
|
75800
76326
|
videoOndemandMeta: {
|
|
75801
|
-
name: "AiChatRobot" | "UploadHandleRobot" | "FileServeRobot" | "FileWatermarkRobot" | "FileVerifyRobot" | "EdglyDeliverRobot" | "TlcdnDeliverRobot" | "VideoSubtitleRobot" | "VideoEncodeRobot" | "VideoAdaptiveRobot" | "VideoMergeRobot" | "VideoConcatRobot" | "AudioWaveformRobot" | "AudioEncodeRobot" | "AudioLoopRobot" | "AudioConcatRobot" | "AudioMergeRobot" | "AudioArtworkRobot" | "ImageFacedetectRobot" | "ImageDescribeRobot" | "ImageOcrRobot" | "ImageBgremoveRobot" | "ImageGenerateRobot" | "DocumentOcrRobot" | "SpeechTranscribeRobot" | "VideoThumbsRobot" | "FileVirusscanRobot" | "ImageOptimizeRobot" | "FileCompressRobot" | "MetaReadRobot" | "FileDecompressRobot" | "MetaWriteRobot" | "DocumentThumbsRobot" | "DocumentConvertRobot" | "DocumentMergeRobot" | "DocumentSplitRobot" | "DocumentAutorotateRobot" | "HtmlConvertRobot" | "ImageResizeRobot" | "ImageMergeRobot" | "S3ImportRobot" | "S3StoreRobot" | "DigitalOceanImportRobot" | "DigitalOceanStoreRobot" | "BackblazeImportRobot" | "BackblazeStoreRobot" | "MinioImportRobot" | "TigrisImportRobot" | "CloudflareImportRobot" | "SupabaseImportRobot" | "MinioStoreRobot" | "TigrisStoreRobot" | "CloudflareStoreRobot" | "SupabaseStoreRobot" | "WasabiImportRobot" | "WasabiStoreRobot" | "SwiftImportRobot" | "SwiftStoreRobot" | "GoogleImportRobot" | "GoogleStoreRobot" | "DropboxImportRobot" | "DropboxStoreRobot" | "HttpImportRobot" | "SftpImportRobot" | "SftpStoreRobot" | "FtpImportRobot" | "FtpStoreRobot" | "CloudfilesImportRobot" | "CloudfilesStoreRobot" | "AzureImportRobot" | "AzureStoreRobot" | "YoutubeStoreRobot" | "VimeoImportRobot" | "VimeoStoreRobot" | "AssemblySavejsonRobot" | "ScriptRunRobot" | "FileHashRobot" | "FileReadRobot" | "VideoOndemandRobot" | "FileFilterRobot" | "TextSpeakRobot" | "TextTranslateRobot" | "FilePreviewRobot" | "TusStoreRobot" | "ProgressSimulateRobot";
|
|
76327
|
+
name: "AiChatRobot" | "UploadHandleRobot" | "FileServeRobot" | "FileWatermarkRobot" | "FileVerifyRobot" | "EdglyDeliverRobot" | "TlcdnDeliverRobot" | "VideoSubtitleRobot" | "VideoEncodeRobot" | "VideoAdaptiveRobot" | "VideoMergeRobot" | "VideoConcatRobot" | "AudioWaveformRobot" | "AudioEncodeRobot" | "AudioLoopRobot" | "AudioConcatRobot" | "AudioMergeRobot" | "AudioArtworkRobot" | "ImageFacedetectRobot" | "ImageDescribeRobot" | "ImageOcrRobot" | "ImageBgremoveRobot" | "ImageGenerateRobot" | "DocumentOcrRobot" | "SpeechTranscribeRobot" | "VideoThumbsRobot" | "FileVirusscanRobot" | "ImageOptimizeRobot" | "FileCompressRobot" | "MetaReadRobot" | "FileDecompressRobot" | "MetaWriteRobot" | "DocumentThumbsRobot" | "DocumentConvertRobot" | "DocumentMergeRobot" | "DocumentSplitRobot" | "DocumentOptimizeRobot" | "DocumentAutorotateRobot" | "HtmlConvertRobot" | "ImageResizeRobot" | "ImageMergeRobot" | "S3ImportRobot" | "S3StoreRobot" | "DigitalOceanImportRobot" | "DigitalOceanStoreRobot" | "BackblazeImportRobot" | "BackblazeStoreRobot" | "MinioImportRobot" | "TigrisImportRobot" | "CloudflareImportRobot" | "SupabaseImportRobot" | "MinioStoreRobot" | "TigrisStoreRobot" | "CloudflareStoreRobot" | "SupabaseStoreRobot" | "WasabiImportRobot" | "WasabiStoreRobot" | "SwiftImportRobot" | "SwiftStoreRobot" | "GoogleImportRobot" | "GoogleStoreRobot" | "DropboxImportRobot" | "DropboxStoreRobot" | "HttpImportRobot" | "SftpImportRobot" | "SftpStoreRobot" | "FtpImportRobot" | "FtpStoreRobot" | "CloudfilesImportRobot" | "CloudfilesStoreRobot" | "AzureImportRobot" | "AzureStoreRobot" | "YoutubeStoreRobot" | "VimeoImportRobot" | "VimeoStoreRobot" | "AssemblySavejsonRobot" | "ScriptRunRobot" | "FileHashRobot" | "FileReadRobot" | "VideoOndemandRobot" | "FileFilterRobot" | "TextSpeakRobot" | "TextTranslateRobot" | "FilePreviewRobot" | "TusStoreRobot" | "ProgressSimulateRobot";
|
|
75802
76328
|
priceFactor: number;
|
|
75803
76329
|
queueSlotCount: number;
|
|
75804
76330
|
isAllowedForUrlTransform: boolean;
|
|
@@ -75852,7 +76378,7 @@ export declare const robotsMeta: {
|
|
|
75852
76378
|
uses_tools?: ("ffmpeg" | "imagemagick")[] | undefined;
|
|
75853
76379
|
};
|
|
75854
76380
|
videoSubtitleMeta: {
|
|
75855
|
-
name: "AiChatRobot" | "UploadHandleRobot" | "FileServeRobot" | "FileWatermarkRobot" | "FileVerifyRobot" | "EdglyDeliverRobot" | "TlcdnDeliverRobot" | "VideoSubtitleRobot" | "VideoEncodeRobot" | "VideoAdaptiveRobot" | "VideoMergeRobot" | "VideoConcatRobot" | "AudioWaveformRobot" | "AudioEncodeRobot" | "AudioLoopRobot" | "AudioConcatRobot" | "AudioMergeRobot" | "AudioArtworkRobot" | "ImageFacedetectRobot" | "ImageDescribeRobot" | "ImageOcrRobot" | "ImageBgremoveRobot" | "ImageGenerateRobot" | "DocumentOcrRobot" | "SpeechTranscribeRobot" | "VideoThumbsRobot" | "FileVirusscanRobot" | "ImageOptimizeRobot" | "FileCompressRobot" | "MetaReadRobot" | "FileDecompressRobot" | "MetaWriteRobot" | "DocumentThumbsRobot" | "DocumentConvertRobot" | "DocumentMergeRobot" | "DocumentSplitRobot" | "DocumentAutorotateRobot" | "HtmlConvertRobot" | "ImageResizeRobot" | "ImageMergeRobot" | "S3ImportRobot" | "S3StoreRobot" | "DigitalOceanImportRobot" | "DigitalOceanStoreRobot" | "BackblazeImportRobot" | "BackblazeStoreRobot" | "MinioImportRobot" | "TigrisImportRobot" | "CloudflareImportRobot" | "SupabaseImportRobot" | "MinioStoreRobot" | "TigrisStoreRobot" | "CloudflareStoreRobot" | "SupabaseStoreRobot" | "WasabiImportRobot" | "WasabiStoreRobot" | "SwiftImportRobot" | "SwiftStoreRobot" | "GoogleImportRobot" | "GoogleStoreRobot" | "DropboxImportRobot" | "DropboxStoreRobot" | "HttpImportRobot" | "SftpImportRobot" | "SftpStoreRobot" | "FtpImportRobot" | "FtpStoreRobot" | "CloudfilesImportRobot" | "CloudfilesStoreRobot" | "AzureImportRobot" | "AzureStoreRobot" | "YoutubeStoreRobot" | "VimeoImportRobot" | "VimeoStoreRobot" | "AssemblySavejsonRobot" | "ScriptRunRobot" | "FileHashRobot" | "FileReadRobot" | "VideoOndemandRobot" | "FileFilterRobot" | "TextSpeakRobot" | "TextTranslateRobot" | "FilePreviewRobot" | "TusStoreRobot" | "ProgressSimulateRobot";
|
|
76381
|
+
name: "AiChatRobot" | "UploadHandleRobot" | "FileServeRobot" | "FileWatermarkRobot" | "FileVerifyRobot" | "EdglyDeliverRobot" | "TlcdnDeliverRobot" | "VideoSubtitleRobot" | "VideoEncodeRobot" | "VideoAdaptiveRobot" | "VideoMergeRobot" | "VideoConcatRobot" | "AudioWaveformRobot" | "AudioEncodeRobot" | "AudioLoopRobot" | "AudioConcatRobot" | "AudioMergeRobot" | "AudioArtworkRobot" | "ImageFacedetectRobot" | "ImageDescribeRobot" | "ImageOcrRobot" | "ImageBgremoveRobot" | "ImageGenerateRobot" | "DocumentOcrRobot" | "SpeechTranscribeRobot" | "VideoThumbsRobot" | "FileVirusscanRobot" | "ImageOptimizeRobot" | "FileCompressRobot" | "MetaReadRobot" | "FileDecompressRobot" | "MetaWriteRobot" | "DocumentThumbsRobot" | "DocumentConvertRobot" | "DocumentMergeRobot" | "DocumentSplitRobot" | "DocumentOptimizeRobot" | "DocumentAutorotateRobot" | "HtmlConvertRobot" | "ImageResizeRobot" | "ImageMergeRobot" | "S3ImportRobot" | "S3StoreRobot" | "DigitalOceanImportRobot" | "DigitalOceanStoreRobot" | "BackblazeImportRobot" | "BackblazeStoreRobot" | "MinioImportRobot" | "TigrisImportRobot" | "CloudflareImportRobot" | "SupabaseImportRobot" | "MinioStoreRobot" | "TigrisStoreRobot" | "CloudflareStoreRobot" | "SupabaseStoreRobot" | "WasabiImportRobot" | "WasabiStoreRobot" | "SwiftImportRobot" | "SwiftStoreRobot" | "GoogleImportRobot" | "GoogleStoreRobot" | "DropboxImportRobot" | "DropboxStoreRobot" | "HttpImportRobot" | "SftpImportRobot" | "SftpStoreRobot" | "FtpImportRobot" | "FtpStoreRobot" | "CloudfilesImportRobot" | "CloudfilesStoreRobot" | "AzureImportRobot" | "AzureStoreRobot" | "YoutubeStoreRobot" | "VimeoImportRobot" | "VimeoStoreRobot" | "AssemblySavejsonRobot" | "ScriptRunRobot" | "FileHashRobot" | "FileReadRobot" | "VideoOndemandRobot" | "FileFilterRobot" | "TextSpeakRobot" | "TextTranslateRobot" | "FilePreviewRobot" | "TusStoreRobot" | "ProgressSimulateRobot";
|
|
75856
76382
|
priceFactor: number;
|
|
75857
76383
|
queueSlotCount: number;
|
|
75858
76384
|
isAllowedForUrlTransform: boolean;
|
|
@@ -75906,7 +76432,7 @@ export declare const robotsMeta: {
|
|
|
75906
76432
|
uses_tools?: ("ffmpeg" | "imagemagick")[] | undefined;
|
|
75907
76433
|
};
|
|
75908
76434
|
videoThumbsMeta: {
|
|
75909
|
-
name: "AiChatRobot" | "UploadHandleRobot" | "FileServeRobot" | "FileWatermarkRobot" | "FileVerifyRobot" | "EdglyDeliverRobot" | "TlcdnDeliverRobot" | "VideoSubtitleRobot" | "VideoEncodeRobot" | "VideoAdaptiveRobot" | "VideoMergeRobot" | "VideoConcatRobot" | "AudioWaveformRobot" | "AudioEncodeRobot" | "AudioLoopRobot" | "AudioConcatRobot" | "AudioMergeRobot" | "AudioArtworkRobot" | "ImageFacedetectRobot" | "ImageDescribeRobot" | "ImageOcrRobot" | "ImageBgremoveRobot" | "ImageGenerateRobot" | "DocumentOcrRobot" | "SpeechTranscribeRobot" | "VideoThumbsRobot" | "FileVirusscanRobot" | "ImageOptimizeRobot" | "FileCompressRobot" | "MetaReadRobot" | "FileDecompressRobot" | "MetaWriteRobot" | "DocumentThumbsRobot" | "DocumentConvertRobot" | "DocumentMergeRobot" | "DocumentSplitRobot" | "DocumentAutorotateRobot" | "HtmlConvertRobot" | "ImageResizeRobot" | "ImageMergeRobot" | "S3ImportRobot" | "S3StoreRobot" | "DigitalOceanImportRobot" | "DigitalOceanStoreRobot" | "BackblazeImportRobot" | "BackblazeStoreRobot" | "MinioImportRobot" | "TigrisImportRobot" | "CloudflareImportRobot" | "SupabaseImportRobot" | "MinioStoreRobot" | "TigrisStoreRobot" | "CloudflareStoreRobot" | "SupabaseStoreRobot" | "WasabiImportRobot" | "WasabiStoreRobot" | "SwiftImportRobot" | "SwiftStoreRobot" | "GoogleImportRobot" | "GoogleStoreRobot" | "DropboxImportRobot" | "DropboxStoreRobot" | "HttpImportRobot" | "SftpImportRobot" | "SftpStoreRobot" | "FtpImportRobot" | "FtpStoreRobot" | "CloudfilesImportRobot" | "CloudfilesStoreRobot" | "AzureImportRobot" | "AzureStoreRobot" | "YoutubeStoreRobot" | "VimeoImportRobot" | "VimeoStoreRobot" | "AssemblySavejsonRobot" | "ScriptRunRobot" | "FileHashRobot" | "FileReadRobot" | "VideoOndemandRobot" | "FileFilterRobot" | "TextSpeakRobot" | "TextTranslateRobot" | "FilePreviewRobot" | "TusStoreRobot" | "ProgressSimulateRobot";
|
|
76435
|
+
name: "AiChatRobot" | "UploadHandleRobot" | "FileServeRobot" | "FileWatermarkRobot" | "FileVerifyRobot" | "EdglyDeliverRobot" | "TlcdnDeliverRobot" | "VideoSubtitleRobot" | "VideoEncodeRobot" | "VideoAdaptiveRobot" | "VideoMergeRobot" | "VideoConcatRobot" | "AudioWaveformRobot" | "AudioEncodeRobot" | "AudioLoopRobot" | "AudioConcatRobot" | "AudioMergeRobot" | "AudioArtworkRobot" | "ImageFacedetectRobot" | "ImageDescribeRobot" | "ImageOcrRobot" | "ImageBgremoveRobot" | "ImageGenerateRobot" | "DocumentOcrRobot" | "SpeechTranscribeRobot" | "VideoThumbsRobot" | "FileVirusscanRobot" | "ImageOptimizeRobot" | "FileCompressRobot" | "MetaReadRobot" | "FileDecompressRobot" | "MetaWriteRobot" | "DocumentThumbsRobot" | "DocumentConvertRobot" | "DocumentMergeRobot" | "DocumentSplitRobot" | "DocumentOptimizeRobot" | "DocumentAutorotateRobot" | "HtmlConvertRobot" | "ImageResizeRobot" | "ImageMergeRobot" | "S3ImportRobot" | "S3StoreRobot" | "DigitalOceanImportRobot" | "DigitalOceanStoreRobot" | "BackblazeImportRobot" | "BackblazeStoreRobot" | "MinioImportRobot" | "TigrisImportRobot" | "CloudflareImportRobot" | "SupabaseImportRobot" | "MinioStoreRobot" | "TigrisStoreRobot" | "CloudflareStoreRobot" | "SupabaseStoreRobot" | "WasabiImportRobot" | "WasabiStoreRobot" | "SwiftImportRobot" | "SwiftStoreRobot" | "GoogleImportRobot" | "GoogleStoreRobot" | "DropboxImportRobot" | "DropboxStoreRobot" | "HttpImportRobot" | "SftpImportRobot" | "SftpStoreRobot" | "FtpImportRobot" | "FtpStoreRobot" | "CloudfilesImportRobot" | "CloudfilesStoreRobot" | "AzureImportRobot" | "AzureStoreRobot" | "YoutubeStoreRobot" | "VimeoImportRobot" | "VimeoStoreRobot" | "AssemblySavejsonRobot" | "ScriptRunRobot" | "FileHashRobot" | "FileReadRobot" | "VideoOndemandRobot" | "FileFilterRobot" | "TextSpeakRobot" | "TextTranslateRobot" | "FilePreviewRobot" | "TusStoreRobot" | "ProgressSimulateRobot";
|
|
75910
76436
|
priceFactor: number;
|
|
75911
76437
|
queueSlotCount: number;
|
|
75912
76438
|
isAllowedForUrlTransform: boolean;
|
|
@@ -75960,7 +76486,7 @@ export declare const robotsMeta: {
|
|
|
75960
76486
|
uses_tools?: ("ffmpeg" | "imagemagick")[] | undefined;
|
|
75961
76487
|
};
|
|
75962
76488
|
vimeoImportMeta: {
|
|
75963
|
-
name: "AiChatRobot" | "UploadHandleRobot" | "FileServeRobot" | "FileWatermarkRobot" | "FileVerifyRobot" | "EdglyDeliverRobot" | "TlcdnDeliverRobot" | "VideoSubtitleRobot" | "VideoEncodeRobot" | "VideoAdaptiveRobot" | "VideoMergeRobot" | "VideoConcatRobot" | "AudioWaveformRobot" | "AudioEncodeRobot" | "AudioLoopRobot" | "AudioConcatRobot" | "AudioMergeRobot" | "AudioArtworkRobot" | "ImageFacedetectRobot" | "ImageDescribeRobot" | "ImageOcrRobot" | "ImageBgremoveRobot" | "ImageGenerateRobot" | "DocumentOcrRobot" | "SpeechTranscribeRobot" | "VideoThumbsRobot" | "FileVirusscanRobot" | "ImageOptimizeRobot" | "FileCompressRobot" | "MetaReadRobot" | "FileDecompressRobot" | "MetaWriteRobot" | "DocumentThumbsRobot" | "DocumentConvertRobot" | "DocumentMergeRobot" | "DocumentSplitRobot" | "DocumentAutorotateRobot" | "HtmlConvertRobot" | "ImageResizeRobot" | "ImageMergeRobot" | "S3ImportRobot" | "S3StoreRobot" | "DigitalOceanImportRobot" | "DigitalOceanStoreRobot" | "BackblazeImportRobot" | "BackblazeStoreRobot" | "MinioImportRobot" | "TigrisImportRobot" | "CloudflareImportRobot" | "SupabaseImportRobot" | "MinioStoreRobot" | "TigrisStoreRobot" | "CloudflareStoreRobot" | "SupabaseStoreRobot" | "WasabiImportRobot" | "WasabiStoreRobot" | "SwiftImportRobot" | "SwiftStoreRobot" | "GoogleImportRobot" | "GoogleStoreRobot" | "DropboxImportRobot" | "DropboxStoreRobot" | "HttpImportRobot" | "SftpImportRobot" | "SftpStoreRobot" | "FtpImportRobot" | "FtpStoreRobot" | "CloudfilesImportRobot" | "CloudfilesStoreRobot" | "AzureImportRobot" | "AzureStoreRobot" | "YoutubeStoreRobot" | "VimeoImportRobot" | "VimeoStoreRobot" | "AssemblySavejsonRobot" | "ScriptRunRobot" | "FileHashRobot" | "FileReadRobot" | "VideoOndemandRobot" | "FileFilterRobot" | "TextSpeakRobot" | "TextTranslateRobot" | "FilePreviewRobot" | "TusStoreRobot" | "ProgressSimulateRobot";
|
|
76489
|
+
name: "AiChatRobot" | "UploadHandleRobot" | "FileServeRobot" | "FileWatermarkRobot" | "FileVerifyRobot" | "EdglyDeliverRobot" | "TlcdnDeliverRobot" | "VideoSubtitleRobot" | "VideoEncodeRobot" | "VideoAdaptiveRobot" | "VideoMergeRobot" | "VideoConcatRobot" | "AudioWaveformRobot" | "AudioEncodeRobot" | "AudioLoopRobot" | "AudioConcatRobot" | "AudioMergeRobot" | "AudioArtworkRobot" | "ImageFacedetectRobot" | "ImageDescribeRobot" | "ImageOcrRobot" | "ImageBgremoveRobot" | "ImageGenerateRobot" | "DocumentOcrRobot" | "SpeechTranscribeRobot" | "VideoThumbsRobot" | "FileVirusscanRobot" | "ImageOptimizeRobot" | "FileCompressRobot" | "MetaReadRobot" | "FileDecompressRobot" | "MetaWriteRobot" | "DocumentThumbsRobot" | "DocumentConvertRobot" | "DocumentMergeRobot" | "DocumentSplitRobot" | "DocumentOptimizeRobot" | "DocumentAutorotateRobot" | "HtmlConvertRobot" | "ImageResizeRobot" | "ImageMergeRobot" | "S3ImportRobot" | "S3StoreRobot" | "DigitalOceanImportRobot" | "DigitalOceanStoreRobot" | "BackblazeImportRobot" | "BackblazeStoreRobot" | "MinioImportRobot" | "TigrisImportRobot" | "CloudflareImportRobot" | "SupabaseImportRobot" | "MinioStoreRobot" | "TigrisStoreRobot" | "CloudflareStoreRobot" | "SupabaseStoreRobot" | "WasabiImportRobot" | "WasabiStoreRobot" | "SwiftImportRobot" | "SwiftStoreRobot" | "GoogleImportRobot" | "GoogleStoreRobot" | "DropboxImportRobot" | "DropboxStoreRobot" | "HttpImportRobot" | "SftpImportRobot" | "SftpStoreRobot" | "FtpImportRobot" | "FtpStoreRobot" | "CloudfilesImportRobot" | "CloudfilesStoreRobot" | "AzureImportRobot" | "AzureStoreRobot" | "YoutubeStoreRobot" | "VimeoImportRobot" | "VimeoStoreRobot" | "AssemblySavejsonRobot" | "ScriptRunRobot" | "FileHashRobot" | "FileReadRobot" | "VideoOndemandRobot" | "FileFilterRobot" | "TextSpeakRobot" | "TextTranslateRobot" | "FilePreviewRobot" | "TusStoreRobot" | "ProgressSimulateRobot";
|
|
75964
76490
|
priceFactor: number;
|
|
75965
76491
|
queueSlotCount: number;
|
|
75966
76492
|
isAllowedForUrlTransform: boolean;
|
|
@@ -76014,7 +76540,7 @@ export declare const robotsMeta: {
|
|
|
76014
76540
|
uses_tools?: ("ffmpeg" | "imagemagick")[] | undefined;
|
|
76015
76541
|
};
|
|
76016
76542
|
vimeoStoreMeta: {
|
|
76017
|
-
name: "AiChatRobot" | "UploadHandleRobot" | "FileServeRobot" | "FileWatermarkRobot" | "FileVerifyRobot" | "EdglyDeliverRobot" | "TlcdnDeliverRobot" | "VideoSubtitleRobot" | "VideoEncodeRobot" | "VideoAdaptiveRobot" | "VideoMergeRobot" | "VideoConcatRobot" | "AudioWaveformRobot" | "AudioEncodeRobot" | "AudioLoopRobot" | "AudioConcatRobot" | "AudioMergeRobot" | "AudioArtworkRobot" | "ImageFacedetectRobot" | "ImageDescribeRobot" | "ImageOcrRobot" | "ImageBgremoveRobot" | "ImageGenerateRobot" | "DocumentOcrRobot" | "SpeechTranscribeRobot" | "VideoThumbsRobot" | "FileVirusscanRobot" | "ImageOptimizeRobot" | "FileCompressRobot" | "MetaReadRobot" | "FileDecompressRobot" | "MetaWriteRobot" | "DocumentThumbsRobot" | "DocumentConvertRobot" | "DocumentMergeRobot" | "DocumentSplitRobot" | "DocumentAutorotateRobot" | "HtmlConvertRobot" | "ImageResizeRobot" | "ImageMergeRobot" | "S3ImportRobot" | "S3StoreRobot" | "DigitalOceanImportRobot" | "DigitalOceanStoreRobot" | "BackblazeImportRobot" | "BackblazeStoreRobot" | "MinioImportRobot" | "TigrisImportRobot" | "CloudflareImportRobot" | "SupabaseImportRobot" | "MinioStoreRobot" | "TigrisStoreRobot" | "CloudflareStoreRobot" | "SupabaseStoreRobot" | "WasabiImportRobot" | "WasabiStoreRobot" | "SwiftImportRobot" | "SwiftStoreRobot" | "GoogleImportRobot" | "GoogleStoreRobot" | "DropboxImportRobot" | "DropboxStoreRobot" | "HttpImportRobot" | "SftpImportRobot" | "SftpStoreRobot" | "FtpImportRobot" | "FtpStoreRobot" | "CloudfilesImportRobot" | "CloudfilesStoreRobot" | "AzureImportRobot" | "AzureStoreRobot" | "YoutubeStoreRobot" | "VimeoImportRobot" | "VimeoStoreRobot" | "AssemblySavejsonRobot" | "ScriptRunRobot" | "FileHashRobot" | "FileReadRobot" | "VideoOndemandRobot" | "FileFilterRobot" | "TextSpeakRobot" | "TextTranslateRobot" | "FilePreviewRobot" | "TusStoreRobot" | "ProgressSimulateRobot";
|
|
76543
|
+
name: "AiChatRobot" | "UploadHandleRobot" | "FileServeRobot" | "FileWatermarkRobot" | "FileVerifyRobot" | "EdglyDeliverRobot" | "TlcdnDeliverRobot" | "VideoSubtitleRobot" | "VideoEncodeRobot" | "VideoAdaptiveRobot" | "VideoMergeRobot" | "VideoConcatRobot" | "AudioWaveformRobot" | "AudioEncodeRobot" | "AudioLoopRobot" | "AudioConcatRobot" | "AudioMergeRobot" | "AudioArtworkRobot" | "ImageFacedetectRobot" | "ImageDescribeRobot" | "ImageOcrRobot" | "ImageBgremoveRobot" | "ImageGenerateRobot" | "DocumentOcrRobot" | "SpeechTranscribeRobot" | "VideoThumbsRobot" | "FileVirusscanRobot" | "ImageOptimizeRobot" | "FileCompressRobot" | "MetaReadRobot" | "FileDecompressRobot" | "MetaWriteRobot" | "DocumentThumbsRobot" | "DocumentConvertRobot" | "DocumentMergeRobot" | "DocumentSplitRobot" | "DocumentOptimizeRobot" | "DocumentAutorotateRobot" | "HtmlConvertRobot" | "ImageResizeRobot" | "ImageMergeRobot" | "S3ImportRobot" | "S3StoreRobot" | "DigitalOceanImportRobot" | "DigitalOceanStoreRobot" | "BackblazeImportRobot" | "BackblazeStoreRobot" | "MinioImportRobot" | "TigrisImportRobot" | "CloudflareImportRobot" | "SupabaseImportRobot" | "MinioStoreRobot" | "TigrisStoreRobot" | "CloudflareStoreRobot" | "SupabaseStoreRobot" | "WasabiImportRobot" | "WasabiStoreRobot" | "SwiftImportRobot" | "SwiftStoreRobot" | "GoogleImportRobot" | "GoogleStoreRobot" | "DropboxImportRobot" | "DropboxStoreRobot" | "HttpImportRobot" | "SftpImportRobot" | "SftpStoreRobot" | "FtpImportRobot" | "FtpStoreRobot" | "CloudfilesImportRobot" | "CloudfilesStoreRobot" | "AzureImportRobot" | "AzureStoreRobot" | "YoutubeStoreRobot" | "VimeoImportRobot" | "VimeoStoreRobot" | "AssemblySavejsonRobot" | "ScriptRunRobot" | "FileHashRobot" | "FileReadRobot" | "VideoOndemandRobot" | "FileFilterRobot" | "TextSpeakRobot" | "TextTranslateRobot" | "FilePreviewRobot" | "TusStoreRobot" | "ProgressSimulateRobot";
|
|
76018
76544
|
priceFactor: number;
|
|
76019
76545
|
queueSlotCount: number;
|
|
76020
76546
|
isAllowedForUrlTransform: boolean;
|
|
@@ -76068,7 +76594,7 @@ export declare const robotsMeta: {
|
|
|
76068
76594
|
uses_tools?: ("ffmpeg" | "imagemagick")[] | undefined;
|
|
76069
76595
|
};
|
|
76070
76596
|
wasabiImportMeta: {
|
|
76071
|
-
name: "AiChatRobot" | "UploadHandleRobot" | "FileServeRobot" | "FileWatermarkRobot" | "FileVerifyRobot" | "EdglyDeliverRobot" | "TlcdnDeliverRobot" | "VideoSubtitleRobot" | "VideoEncodeRobot" | "VideoAdaptiveRobot" | "VideoMergeRobot" | "VideoConcatRobot" | "AudioWaveformRobot" | "AudioEncodeRobot" | "AudioLoopRobot" | "AudioConcatRobot" | "AudioMergeRobot" | "AudioArtworkRobot" | "ImageFacedetectRobot" | "ImageDescribeRobot" | "ImageOcrRobot" | "ImageBgremoveRobot" | "ImageGenerateRobot" | "DocumentOcrRobot" | "SpeechTranscribeRobot" | "VideoThumbsRobot" | "FileVirusscanRobot" | "ImageOptimizeRobot" | "FileCompressRobot" | "MetaReadRobot" | "FileDecompressRobot" | "MetaWriteRobot" | "DocumentThumbsRobot" | "DocumentConvertRobot" | "DocumentMergeRobot" | "DocumentSplitRobot" | "DocumentAutorotateRobot" | "HtmlConvertRobot" | "ImageResizeRobot" | "ImageMergeRobot" | "S3ImportRobot" | "S3StoreRobot" | "DigitalOceanImportRobot" | "DigitalOceanStoreRobot" | "BackblazeImportRobot" | "BackblazeStoreRobot" | "MinioImportRobot" | "TigrisImportRobot" | "CloudflareImportRobot" | "SupabaseImportRobot" | "MinioStoreRobot" | "TigrisStoreRobot" | "CloudflareStoreRobot" | "SupabaseStoreRobot" | "WasabiImportRobot" | "WasabiStoreRobot" | "SwiftImportRobot" | "SwiftStoreRobot" | "GoogleImportRobot" | "GoogleStoreRobot" | "DropboxImportRobot" | "DropboxStoreRobot" | "HttpImportRobot" | "SftpImportRobot" | "SftpStoreRobot" | "FtpImportRobot" | "FtpStoreRobot" | "CloudfilesImportRobot" | "CloudfilesStoreRobot" | "AzureImportRobot" | "AzureStoreRobot" | "YoutubeStoreRobot" | "VimeoImportRobot" | "VimeoStoreRobot" | "AssemblySavejsonRobot" | "ScriptRunRobot" | "FileHashRobot" | "FileReadRobot" | "VideoOndemandRobot" | "FileFilterRobot" | "TextSpeakRobot" | "TextTranslateRobot" | "FilePreviewRobot" | "TusStoreRobot" | "ProgressSimulateRobot";
|
|
76597
|
+
name: "AiChatRobot" | "UploadHandleRobot" | "FileServeRobot" | "FileWatermarkRobot" | "FileVerifyRobot" | "EdglyDeliverRobot" | "TlcdnDeliverRobot" | "VideoSubtitleRobot" | "VideoEncodeRobot" | "VideoAdaptiveRobot" | "VideoMergeRobot" | "VideoConcatRobot" | "AudioWaveformRobot" | "AudioEncodeRobot" | "AudioLoopRobot" | "AudioConcatRobot" | "AudioMergeRobot" | "AudioArtworkRobot" | "ImageFacedetectRobot" | "ImageDescribeRobot" | "ImageOcrRobot" | "ImageBgremoveRobot" | "ImageGenerateRobot" | "DocumentOcrRobot" | "SpeechTranscribeRobot" | "VideoThumbsRobot" | "FileVirusscanRobot" | "ImageOptimizeRobot" | "FileCompressRobot" | "MetaReadRobot" | "FileDecompressRobot" | "MetaWriteRobot" | "DocumentThumbsRobot" | "DocumentConvertRobot" | "DocumentMergeRobot" | "DocumentSplitRobot" | "DocumentOptimizeRobot" | "DocumentAutorotateRobot" | "HtmlConvertRobot" | "ImageResizeRobot" | "ImageMergeRobot" | "S3ImportRobot" | "S3StoreRobot" | "DigitalOceanImportRobot" | "DigitalOceanStoreRobot" | "BackblazeImportRobot" | "BackblazeStoreRobot" | "MinioImportRobot" | "TigrisImportRobot" | "CloudflareImportRobot" | "SupabaseImportRobot" | "MinioStoreRobot" | "TigrisStoreRobot" | "CloudflareStoreRobot" | "SupabaseStoreRobot" | "WasabiImportRobot" | "WasabiStoreRobot" | "SwiftImportRobot" | "SwiftStoreRobot" | "GoogleImportRobot" | "GoogleStoreRobot" | "DropboxImportRobot" | "DropboxStoreRobot" | "HttpImportRobot" | "SftpImportRobot" | "SftpStoreRobot" | "FtpImportRobot" | "FtpStoreRobot" | "CloudfilesImportRobot" | "CloudfilesStoreRobot" | "AzureImportRobot" | "AzureStoreRobot" | "YoutubeStoreRobot" | "VimeoImportRobot" | "VimeoStoreRobot" | "AssemblySavejsonRobot" | "ScriptRunRobot" | "FileHashRobot" | "FileReadRobot" | "VideoOndemandRobot" | "FileFilterRobot" | "TextSpeakRobot" | "TextTranslateRobot" | "FilePreviewRobot" | "TusStoreRobot" | "ProgressSimulateRobot";
|
|
76072
76598
|
priceFactor: number;
|
|
76073
76599
|
queueSlotCount: number;
|
|
76074
76600
|
isAllowedForUrlTransform: boolean;
|
|
@@ -76122,7 +76648,7 @@ export declare const robotsMeta: {
|
|
|
76122
76648
|
uses_tools?: ("ffmpeg" | "imagemagick")[] | undefined;
|
|
76123
76649
|
};
|
|
76124
76650
|
wasabiStoreMeta: {
|
|
76125
|
-
name: "AiChatRobot" | "UploadHandleRobot" | "FileServeRobot" | "FileWatermarkRobot" | "FileVerifyRobot" | "EdglyDeliverRobot" | "TlcdnDeliverRobot" | "VideoSubtitleRobot" | "VideoEncodeRobot" | "VideoAdaptiveRobot" | "VideoMergeRobot" | "VideoConcatRobot" | "AudioWaveformRobot" | "AudioEncodeRobot" | "AudioLoopRobot" | "AudioConcatRobot" | "AudioMergeRobot" | "AudioArtworkRobot" | "ImageFacedetectRobot" | "ImageDescribeRobot" | "ImageOcrRobot" | "ImageBgremoveRobot" | "ImageGenerateRobot" | "DocumentOcrRobot" | "SpeechTranscribeRobot" | "VideoThumbsRobot" | "FileVirusscanRobot" | "ImageOptimizeRobot" | "FileCompressRobot" | "MetaReadRobot" | "FileDecompressRobot" | "MetaWriteRobot" | "DocumentThumbsRobot" | "DocumentConvertRobot" | "DocumentMergeRobot" | "DocumentSplitRobot" | "DocumentAutorotateRobot" | "HtmlConvertRobot" | "ImageResizeRobot" | "ImageMergeRobot" | "S3ImportRobot" | "S3StoreRobot" | "DigitalOceanImportRobot" | "DigitalOceanStoreRobot" | "BackblazeImportRobot" | "BackblazeStoreRobot" | "MinioImportRobot" | "TigrisImportRobot" | "CloudflareImportRobot" | "SupabaseImportRobot" | "MinioStoreRobot" | "TigrisStoreRobot" | "CloudflareStoreRobot" | "SupabaseStoreRobot" | "WasabiImportRobot" | "WasabiStoreRobot" | "SwiftImportRobot" | "SwiftStoreRobot" | "GoogleImportRobot" | "GoogleStoreRobot" | "DropboxImportRobot" | "DropboxStoreRobot" | "HttpImportRobot" | "SftpImportRobot" | "SftpStoreRobot" | "FtpImportRobot" | "FtpStoreRobot" | "CloudfilesImportRobot" | "CloudfilesStoreRobot" | "AzureImportRobot" | "AzureStoreRobot" | "YoutubeStoreRobot" | "VimeoImportRobot" | "VimeoStoreRobot" | "AssemblySavejsonRobot" | "ScriptRunRobot" | "FileHashRobot" | "FileReadRobot" | "VideoOndemandRobot" | "FileFilterRobot" | "TextSpeakRobot" | "TextTranslateRobot" | "FilePreviewRobot" | "TusStoreRobot" | "ProgressSimulateRobot";
|
|
76651
|
+
name: "AiChatRobot" | "UploadHandleRobot" | "FileServeRobot" | "FileWatermarkRobot" | "FileVerifyRobot" | "EdglyDeliverRobot" | "TlcdnDeliverRobot" | "VideoSubtitleRobot" | "VideoEncodeRobot" | "VideoAdaptiveRobot" | "VideoMergeRobot" | "VideoConcatRobot" | "AudioWaveformRobot" | "AudioEncodeRobot" | "AudioLoopRobot" | "AudioConcatRobot" | "AudioMergeRobot" | "AudioArtworkRobot" | "ImageFacedetectRobot" | "ImageDescribeRobot" | "ImageOcrRobot" | "ImageBgremoveRobot" | "ImageGenerateRobot" | "DocumentOcrRobot" | "SpeechTranscribeRobot" | "VideoThumbsRobot" | "FileVirusscanRobot" | "ImageOptimizeRobot" | "FileCompressRobot" | "MetaReadRobot" | "FileDecompressRobot" | "MetaWriteRobot" | "DocumentThumbsRobot" | "DocumentConvertRobot" | "DocumentMergeRobot" | "DocumentSplitRobot" | "DocumentOptimizeRobot" | "DocumentAutorotateRobot" | "HtmlConvertRobot" | "ImageResizeRobot" | "ImageMergeRobot" | "S3ImportRobot" | "S3StoreRobot" | "DigitalOceanImportRobot" | "DigitalOceanStoreRobot" | "BackblazeImportRobot" | "BackblazeStoreRobot" | "MinioImportRobot" | "TigrisImportRobot" | "CloudflareImportRobot" | "SupabaseImportRobot" | "MinioStoreRobot" | "TigrisStoreRobot" | "CloudflareStoreRobot" | "SupabaseStoreRobot" | "WasabiImportRobot" | "WasabiStoreRobot" | "SwiftImportRobot" | "SwiftStoreRobot" | "GoogleImportRobot" | "GoogleStoreRobot" | "DropboxImportRobot" | "DropboxStoreRobot" | "HttpImportRobot" | "SftpImportRobot" | "SftpStoreRobot" | "FtpImportRobot" | "FtpStoreRobot" | "CloudfilesImportRobot" | "CloudfilesStoreRobot" | "AzureImportRobot" | "AzureStoreRobot" | "YoutubeStoreRobot" | "VimeoImportRobot" | "VimeoStoreRobot" | "AssemblySavejsonRobot" | "ScriptRunRobot" | "FileHashRobot" | "FileReadRobot" | "VideoOndemandRobot" | "FileFilterRobot" | "TextSpeakRobot" | "TextTranslateRobot" | "FilePreviewRobot" | "TusStoreRobot" | "ProgressSimulateRobot";
|
|
76126
76652
|
priceFactor: number;
|
|
76127
76653
|
queueSlotCount: number;
|
|
76128
76654
|
isAllowedForUrlTransform: boolean;
|
|
@@ -76176,7 +76702,7 @@ export declare const robotsMeta: {
|
|
|
76176
76702
|
uses_tools?: ("ffmpeg" | "imagemagick")[] | undefined;
|
|
76177
76703
|
};
|
|
76178
76704
|
youtubeStoreMeta: {
|
|
76179
|
-
name: "AiChatRobot" | "UploadHandleRobot" | "FileServeRobot" | "FileWatermarkRobot" | "FileVerifyRobot" | "EdglyDeliverRobot" | "TlcdnDeliverRobot" | "VideoSubtitleRobot" | "VideoEncodeRobot" | "VideoAdaptiveRobot" | "VideoMergeRobot" | "VideoConcatRobot" | "AudioWaveformRobot" | "AudioEncodeRobot" | "AudioLoopRobot" | "AudioConcatRobot" | "AudioMergeRobot" | "AudioArtworkRobot" | "ImageFacedetectRobot" | "ImageDescribeRobot" | "ImageOcrRobot" | "ImageBgremoveRobot" | "ImageGenerateRobot" | "DocumentOcrRobot" | "SpeechTranscribeRobot" | "VideoThumbsRobot" | "FileVirusscanRobot" | "ImageOptimizeRobot" | "FileCompressRobot" | "MetaReadRobot" | "FileDecompressRobot" | "MetaWriteRobot" | "DocumentThumbsRobot" | "DocumentConvertRobot" | "DocumentMergeRobot" | "DocumentSplitRobot" | "DocumentAutorotateRobot" | "HtmlConvertRobot" | "ImageResizeRobot" | "ImageMergeRobot" | "S3ImportRobot" | "S3StoreRobot" | "DigitalOceanImportRobot" | "DigitalOceanStoreRobot" | "BackblazeImportRobot" | "BackblazeStoreRobot" | "MinioImportRobot" | "TigrisImportRobot" | "CloudflareImportRobot" | "SupabaseImportRobot" | "MinioStoreRobot" | "TigrisStoreRobot" | "CloudflareStoreRobot" | "SupabaseStoreRobot" | "WasabiImportRobot" | "WasabiStoreRobot" | "SwiftImportRobot" | "SwiftStoreRobot" | "GoogleImportRobot" | "GoogleStoreRobot" | "DropboxImportRobot" | "DropboxStoreRobot" | "HttpImportRobot" | "SftpImportRobot" | "SftpStoreRobot" | "FtpImportRobot" | "FtpStoreRobot" | "CloudfilesImportRobot" | "CloudfilesStoreRobot" | "AzureImportRobot" | "AzureStoreRobot" | "YoutubeStoreRobot" | "VimeoImportRobot" | "VimeoStoreRobot" | "AssemblySavejsonRobot" | "ScriptRunRobot" | "FileHashRobot" | "FileReadRobot" | "VideoOndemandRobot" | "FileFilterRobot" | "TextSpeakRobot" | "TextTranslateRobot" | "FilePreviewRobot" | "TusStoreRobot" | "ProgressSimulateRobot";
|
|
76705
|
+
name: "AiChatRobot" | "UploadHandleRobot" | "FileServeRobot" | "FileWatermarkRobot" | "FileVerifyRobot" | "EdglyDeliverRobot" | "TlcdnDeliverRobot" | "VideoSubtitleRobot" | "VideoEncodeRobot" | "VideoAdaptiveRobot" | "VideoMergeRobot" | "VideoConcatRobot" | "AudioWaveformRobot" | "AudioEncodeRobot" | "AudioLoopRobot" | "AudioConcatRobot" | "AudioMergeRobot" | "AudioArtworkRobot" | "ImageFacedetectRobot" | "ImageDescribeRobot" | "ImageOcrRobot" | "ImageBgremoveRobot" | "ImageGenerateRobot" | "DocumentOcrRobot" | "SpeechTranscribeRobot" | "VideoThumbsRobot" | "FileVirusscanRobot" | "ImageOptimizeRobot" | "FileCompressRobot" | "MetaReadRobot" | "FileDecompressRobot" | "MetaWriteRobot" | "DocumentThumbsRobot" | "DocumentConvertRobot" | "DocumentMergeRobot" | "DocumentSplitRobot" | "DocumentOptimizeRobot" | "DocumentAutorotateRobot" | "HtmlConvertRobot" | "ImageResizeRobot" | "ImageMergeRobot" | "S3ImportRobot" | "S3StoreRobot" | "DigitalOceanImportRobot" | "DigitalOceanStoreRobot" | "BackblazeImportRobot" | "BackblazeStoreRobot" | "MinioImportRobot" | "TigrisImportRobot" | "CloudflareImportRobot" | "SupabaseImportRobot" | "MinioStoreRobot" | "TigrisStoreRobot" | "CloudflareStoreRobot" | "SupabaseStoreRobot" | "WasabiImportRobot" | "WasabiStoreRobot" | "SwiftImportRobot" | "SwiftStoreRobot" | "GoogleImportRobot" | "GoogleStoreRobot" | "DropboxImportRobot" | "DropboxStoreRobot" | "HttpImportRobot" | "SftpImportRobot" | "SftpStoreRobot" | "FtpImportRobot" | "FtpStoreRobot" | "CloudfilesImportRobot" | "CloudfilesStoreRobot" | "AzureImportRobot" | "AzureStoreRobot" | "YoutubeStoreRobot" | "VimeoImportRobot" | "VimeoStoreRobot" | "AssemblySavejsonRobot" | "ScriptRunRobot" | "FileHashRobot" | "FileReadRobot" | "VideoOndemandRobot" | "FileFilterRobot" | "TextSpeakRobot" | "TextTranslateRobot" | "FilePreviewRobot" | "TusStoreRobot" | "ProgressSimulateRobot";
|
|
76180
76706
|
priceFactor: number;
|
|
76181
76707
|
queueSlotCount: number;
|
|
76182
76708
|
isAllowedForUrlTransform: boolean;
|
|
@@ -76252,6 +76778,7 @@ export type { InterpolatableRobotDocumentAutorotateInstructions, InterpolatableR
|
|
|
76252
76778
|
export type { InterpolatableRobotDocumentConvertInstructions, InterpolatableRobotDocumentConvertInstructionsInput, InterpolatableRobotDocumentConvertInstructionsWithHiddenFields, InterpolatableRobotDocumentConvertInstructionsWithHiddenFieldsInput, } from './document-convert.ts';
|
|
76253
76779
|
export type { InterpolatableRobotDocumentMergeInstructions, InterpolatableRobotDocumentMergeInstructionsInput, InterpolatableRobotDocumentMergeInstructionsWithHiddenFields, InterpolatableRobotDocumentMergeInstructionsWithHiddenFieldsInput, } from './document-merge.ts';
|
|
76254
76780
|
export type { InterpolatableRobotDocumentOcrInstructions, InterpolatableRobotDocumentOcrInstructionsInput, InterpolatableRobotDocumentOcrInstructionsWithHiddenFields, InterpolatableRobotDocumentOcrInstructionsWithHiddenFieldsInput, } from './document-ocr.ts';
|
|
76781
|
+
export type { InterpolatableRobotDocumentOptimizeInstructions, InterpolatableRobotDocumentOptimizeInstructionsInput, InterpolatableRobotDocumentOptimizeInstructionsWithHiddenFields, InterpolatableRobotDocumentOptimizeInstructionsWithHiddenFieldsInput, } from './document-optimize.ts';
|
|
76255
76782
|
export type { InterpolatableRobotDocumentSplitInstructions, InterpolatableRobotDocumentSplitInstructionsInput, InterpolatableRobotDocumentSplitInstructionsWithHiddenFields, InterpolatableRobotDocumentSplitInstructionsWithHiddenFieldsInput, } from './document-split.ts';
|
|
76256
76783
|
export type { InterpolatableRobotDocumentThumbsInstructions, InterpolatableRobotDocumentThumbsInstructionsInput, InterpolatableRobotDocumentThumbsInstructionsWithHiddenFields, InterpolatableRobotDocumentThumbsInstructionsWithHiddenFieldsInput, } from './document-thumbs.ts';
|
|
76257
76784
|
export type { InterpolatableRobotDropboxImportInstructions, InterpolatableRobotDropboxImportInstructionsInput, InterpolatableRobotDropboxImportInstructionsWithHiddenFields, InterpolatableRobotDropboxImportInstructionsWithHiddenFieldsInput, } from './dropbox-import.ts';
|