@transloadit/zod 4.1.8 → 4.2.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/dist/v3/assemblyReplay.d.ts +56 -0
- package/dist/v3/assemblyReplay.d.ts.map +1 -1
- package/dist/v3/assemblyReplayNotification.d.ts +56 -0
- package/dist/v3/assemblyReplayNotification.d.ts.map +1 -1
- package/dist/v3/assemblyStatus.d.ts +63 -57
- package/dist/v3/assemblyStatus.d.ts.map +1 -1
- package/dist/v3/assemblyStatus.js +9 -1
- package/dist/v3/assemblyUrls.d.ts +1 -1
- package/dist/v3/assemblyUrls.d.ts.map +1 -1
- package/dist/v3/robots/_index.d.ts +608 -81
- package/dist/v3/robots/_index.d.ts.map +1 -1
- package/dist/v3/robots/_index.js +4 -0
- package/dist/v3/robots/_instructions-primitives.d.ts +4 -4
- package/dist/v3/robots/_instructions-primitives.d.ts.map +1 -1
- package/dist/v3/robots/_instructions-primitives.js +1 -0
- package/dist/v3/robots/document-optimize.d.ts +489 -0
- package/dist/v3/robots/document-optimize.d.ts.map +1 -0
- package/dist/v3/robots/document-optimize.js +150 -0
- package/dist/v3/template.d.ts +1050 -174
- package/dist/v3/template.d.ts.map +1 -1
- package/dist/v4/assemblyStatus.d.ts +33 -7
- package/dist/v4/assemblyStatus.d.ts.map +1 -1
- package/dist/v4/assemblyStatus.js +9 -1
- package/dist/v4/assemblyUrls.d.ts +1 -1
- package/dist/v4/assemblyUrls.d.ts.map +1 -1
- package/dist/v4/robots/_index.d.ts +312 -81
- package/dist/v4/robots/_index.d.ts.map +1 -1
- package/dist/v4/robots/_index.js +4 -0
- package/dist/v4/robots/_instructions-primitives.d.ts +2 -0
- package/dist/v4/robots/_instructions-primitives.d.ts.map +1 -1
- package/dist/v4/robots/_instructions-primitives.js +1 -0
- package/dist/v4/robots/document-optimize.d.ts +190 -0
- package/dist/v4/robots/document-optimize.d.ts.map +1 -0
- package/dist/v4/robots/document-optimize.js +150 -0
- package/dist/v4/template.d.ts +264 -0
- package/dist/v4/template.d.ts.map +1 -1
- package/package.json +2 -2
|
@@ -1523,6 +1523,50 @@ export declare const robotsSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
1523
1523
|
text: "text";
|
|
1524
1524
|
json: "json";
|
|
1525
1525
|
}>]>>;
|
|
1526
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
1527
|
+
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>]>]>>;
|
|
1528
|
+
result: z.ZodDefault<z.ZodUnion<[z.ZodString, z.ZodBoolean]>>;
|
|
1529
|
+
queue: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodEnum<{
|
|
1530
|
+
batch: "batch";
|
|
1531
|
+
}>]>>;
|
|
1532
|
+
force_accept: z.ZodDefault<z.ZodUnion<[z.ZodString, z.ZodBoolean]>>;
|
|
1533
|
+
ignore_errors: z.ZodDefault<z.ZodUnion<[z.ZodString, z.ZodPipe<z.ZodUnion<readonly [z.ZodBoolean, z.ZodArray<z.ZodEnum<{
|
|
1534
|
+
meta: "meta";
|
|
1535
|
+
execute: "execute";
|
|
1536
|
+
}>>]>, z.ZodTransform<string[], boolean | ("meta" | "execute")[]>>]>>;
|
|
1537
|
+
use: z.ZodOptional<z.ZodUnion<readonly [z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>, z.ZodArray<z.ZodObject<{
|
|
1538
|
+
name: z.ZodString;
|
|
1539
|
+
fields: z.ZodOptional<z.ZodString>;
|
|
1540
|
+
as: z.ZodOptional<z.ZodString>;
|
|
1541
|
+
}, z.core.$strict>>]>, z.ZodObject<{
|
|
1542
|
+
steps: z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>, z.ZodArray<z.ZodObject<{
|
|
1543
|
+
name: z.ZodString;
|
|
1544
|
+
fields: z.ZodOptional<z.ZodString>;
|
|
1545
|
+
as: z.ZodOptional<z.ZodString>;
|
|
1546
|
+
}, z.core.$strict>>]>;
|
|
1547
|
+
bundle_steps: z.ZodOptional<z.ZodBoolean>;
|
|
1548
|
+
group_by_original: z.ZodOptional<z.ZodBoolean>;
|
|
1549
|
+
fields: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1550
|
+
}, z.core.$strict>]>>;
|
|
1551
|
+
robot: z.ZodLiteral<"/document/optimize">;
|
|
1552
|
+
preset: z.ZodDefault<z.ZodUnion<[z.ZodString, z.ZodEnum<{
|
|
1553
|
+
ebook: "ebook";
|
|
1554
|
+
screen: "screen";
|
|
1555
|
+
printer: "printer";
|
|
1556
|
+
prepress: "prepress";
|
|
1557
|
+
}>]>>;
|
|
1558
|
+
image_dpi: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
1559
|
+
compress_fonts: z.ZodDefault<z.ZodUnion<[z.ZodString, z.ZodBoolean]>>;
|
|
1560
|
+
subset_fonts: z.ZodDefault<z.ZodUnion<[z.ZodString, z.ZodBoolean]>>;
|
|
1561
|
+
remove_metadata: z.ZodDefault<z.ZodUnion<[z.ZodString, z.ZodBoolean]>>;
|
|
1562
|
+
linearize: z.ZodDefault<z.ZodUnion<[z.ZodString, z.ZodBoolean]>>;
|
|
1563
|
+
compatibility: z.ZodDefault<z.ZodUnion<[z.ZodString, z.ZodEnum<{
|
|
1564
|
+
1.4: "1.4";
|
|
1565
|
+
1.5: "1.5";
|
|
1566
|
+
1.6: "1.6";
|
|
1567
|
+
1.7: "1.7";
|
|
1568
|
+
"2.0": "2.0";
|
|
1569
|
+
}>]>>;
|
|
1526
1570
|
}, z.core.$strict>, z.ZodObject<{
|
|
1527
1571
|
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>]>]>>;
|
|
1528
1572
|
result: z.ZodDefault<z.ZodUnion<[z.ZodString, z.ZodBoolean]>>;
|
|
@@ -7916,6 +7960,50 @@ export declare const robotsWithHiddenFieldsSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
7916
7960
|
json: "json";
|
|
7917
7961
|
}>]>>;
|
|
7918
7962
|
result: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodUnion<[z.ZodString, z.ZodLiteral<"debug">]>, z.ZodDefault<z.ZodUnion<[z.ZodString, z.ZodBoolean]>>]>>;
|
|
7963
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
7964
|
+
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>]>]>>;
|
|
7965
|
+
queue: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodEnum<{
|
|
7966
|
+
batch: "batch";
|
|
7967
|
+
}>]>>;
|
|
7968
|
+
force_accept: z.ZodDefault<z.ZodUnion<[z.ZodString, z.ZodBoolean]>>;
|
|
7969
|
+
ignore_errors: z.ZodDefault<z.ZodUnion<[z.ZodString, z.ZodPipe<z.ZodUnion<readonly [z.ZodBoolean, z.ZodArray<z.ZodEnum<{
|
|
7970
|
+
meta: "meta";
|
|
7971
|
+
execute: "execute";
|
|
7972
|
+
}>>]>, z.ZodTransform<string[], boolean | ("meta" | "execute")[]>>]>>;
|
|
7973
|
+
use: z.ZodOptional<z.ZodUnion<readonly [z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>, z.ZodArray<z.ZodObject<{
|
|
7974
|
+
name: z.ZodString;
|
|
7975
|
+
fields: z.ZodOptional<z.ZodString>;
|
|
7976
|
+
as: z.ZodOptional<z.ZodString>;
|
|
7977
|
+
}, z.core.$strict>>]>, z.ZodObject<{
|
|
7978
|
+
steps: z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>, z.ZodArray<z.ZodObject<{
|
|
7979
|
+
name: z.ZodString;
|
|
7980
|
+
fields: z.ZodOptional<z.ZodString>;
|
|
7981
|
+
as: z.ZodOptional<z.ZodString>;
|
|
7982
|
+
}, z.core.$strict>>]>;
|
|
7983
|
+
bundle_steps: z.ZodOptional<z.ZodBoolean>;
|
|
7984
|
+
group_by_original: z.ZodOptional<z.ZodBoolean>;
|
|
7985
|
+
fields: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
7986
|
+
}, z.core.$strict>]>>;
|
|
7987
|
+
robot: z.ZodLiteral<"/document/optimize">;
|
|
7988
|
+
preset: z.ZodDefault<z.ZodUnion<[z.ZodString, z.ZodEnum<{
|
|
7989
|
+
ebook: "ebook";
|
|
7990
|
+
screen: "screen";
|
|
7991
|
+
printer: "printer";
|
|
7992
|
+
prepress: "prepress";
|
|
7993
|
+
}>]>>;
|
|
7994
|
+
image_dpi: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
7995
|
+
compress_fonts: z.ZodDefault<z.ZodUnion<[z.ZodString, z.ZodBoolean]>>;
|
|
7996
|
+
subset_fonts: z.ZodDefault<z.ZodUnion<[z.ZodString, z.ZodBoolean]>>;
|
|
7997
|
+
remove_metadata: z.ZodDefault<z.ZodUnion<[z.ZodString, z.ZodBoolean]>>;
|
|
7998
|
+
linearize: z.ZodDefault<z.ZodUnion<[z.ZodString, z.ZodBoolean]>>;
|
|
7999
|
+
compatibility: z.ZodDefault<z.ZodUnion<[z.ZodString, z.ZodEnum<{
|
|
8000
|
+
1.4: "1.4";
|
|
8001
|
+
1.5: "1.5";
|
|
8002
|
+
1.6: "1.6";
|
|
8003
|
+
1.7: "1.7";
|
|
8004
|
+
"2.0": "2.0";
|
|
8005
|
+
}>]>>;
|
|
8006
|
+
result: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodUnion<[z.ZodString, z.ZodLiteral<"debug">]>, z.ZodDefault<z.ZodUnion<[z.ZodString, z.ZodBoolean]>>]>>;
|
|
7919
8007
|
}, z.core.$strict>, z.ZodObject<{
|
|
7920
8008
|
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>]>]>>;
|
|
7921
8009
|
queue: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodEnum<{
|
|
@@ -14393,6 +14481,50 @@ export declare const robotsWithHiddenBotsSchema: z.ZodDiscriminatedUnion<[z.ZodO
|
|
|
14393
14481
|
text: "text";
|
|
14394
14482
|
json: "json";
|
|
14395
14483
|
}>]>>;
|
|
14484
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
14485
|
+
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>]>]>>;
|
|
14486
|
+
result: z.ZodDefault<z.ZodUnion<[z.ZodString, z.ZodBoolean]>>;
|
|
14487
|
+
queue: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodEnum<{
|
|
14488
|
+
batch: "batch";
|
|
14489
|
+
}>]>>;
|
|
14490
|
+
force_accept: z.ZodDefault<z.ZodUnion<[z.ZodString, z.ZodBoolean]>>;
|
|
14491
|
+
ignore_errors: z.ZodDefault<z.ZodUnion<[z.ZodString, z.ZodPipe<z.ZodUnion<readonly [z.ZodBoolean, z.ZodArray<z.ZodEnum<{
|
|
14492
|
+
meta: "meta";
|
|
14493
|
+
execute: "execute";
|
|
14494
|
+
}>>]>, z.ZodTransform<string[], boolean | ("meta" | "execute")[]>>]>>;
|
|
14495
|
+
use: z.ZodOptional<z.ZodUnion<readonly [z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>, z.ZodArray<z.ZodObject<{
|
|
14496
|
+
name: z.ZodString;
|
|
14497
|
+
fields: z.ZodOptional<z.ZodString>;
|
|
14498
|
+
as: z.ZodOptional<z.ZodString>;
|
|
14499
|
+
}, z.core.$strict>>]>, z.ZodObject<{
|
|
14500
|
+
steps: z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>, z.ZodArray<z.ZodObject<{
|
|
14501
|
+
name: z.ZodString;
|
|
14502
|
+
fields: z.ZodOptional<z.ZodString>;
|
|
14503
|
+
as: z.ZodOptional<z.ZodString>;
|
|
14504
|
+
}, z.core.$strict>>]>;
|
|
14505
|
+
bundle_steps: z.ZodOptional<z.ZodBoolean>;
|
|
14506
|
+
group_by_original: z.ZodOptional<z.ZodBoolean>;
|
|
14507
|
+
fields: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
14508
|
+
}, z.core.$strict>]>>;
|
|
14509
|
+
robot: z.ZodLiteral<"/document/optimize">;
|
|
14510
|
+
preset: z.ZodDefault<z.ZodUnion<[z.ZodString, z.ZodEnum<{
|
|
14511
|
+
ebook: "ebook";
|
|
14512
|
+
screen: "screen";
|
|
14513
|
+
printer: "printer";
|
|
14514
|
+
prepress: "prepress";
|
|
14515
|
+
}>]>>;
|
|
14516
|
+
image_dpi: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
14517
|
+
compress_fonts: z.ZodDefault<z.ZodUnion<[z.ZodString, z.ZodBoolean]>>;
|
|
14518
|
+
subset_fonts: z.ZodDefault<z.ZodUnion<[z.ZodString, z.ZodBoolean]>>;
|
|
14519
|
+
remove_metadata: z.ZodDefault<z.ZodUnion<[z.ZodString, z.ZodBoolean]>>;
|
|
14520
|
+
linearize: z.ZodDefault<z.ZodUnion<[z.ZodString, z.ZodBoolean]>>;
|
|
14521
|
+
compatibility: z.ZodDefault<z.ZodUnion<[z.ZodString, z.ZodEnum<{
|
|
14522
|
+
1.4: "1.4";
|
|
14523
|
+
1.5: "1.5";
|
|
14524
|
+
1.6: "1.6";
|
|
14525
|
+
1.7: "1.7";
|
|
14526
|
+
"2.0": "2.0";
|
|
14527
|
+
}>]>>;
|
|
14396
14528
|
}, z.core.$strict>, z.ZodObject<{
|
|
14397
14529
|
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>]>]>>;
|
|
14398
14530
|
result: z.ZodDefault<z.ZodUnion<[z.ZodString, z.ZodBoolean]>>;
|
|
@@ -20855,6 +20987,50 @@ export declare const robotsWithHiddenBotsAndFieldsSchema: z.ZodDiscriminatedUnio
|
|
|
20855
20987
|
json: "json";
|
|
20856
20988
|
}>]>>;
|
|
20857
20989
|
result: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodUnion<[z.ZodString, z.ZodLiteral<"debug">]>, z.ZodDefault<z.ZodUnion<[z.ZodString, z.ZodBoolean]>>]>>;
|
|
20990
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
20991
|
+
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>]>]>>;
|
|
20992
|
+
queue: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodEnum<{
|
|
20993
|
+
batch: "batch";
|
|
20994
|
+
}>]>>;
|
|
20995
|
+
force_accept: z.ZodDefault<z.ZodUnion<[z.ZodString, z.ZodBoolean]>>;
|
|
20996
|
+
ignore_errors: z.ZodDefault<z.ZodUnion<[z.ZodString, z.ZodPipe<z.ZodUnion<readonly [z.ZodBoolean, z.ZodArray<z.ZodEnum<{
|
|
20997
|
+
meta: "meta";
|
|
20998
|
+
execute: "execute";
|
|
20999
|
+
}>>]>, z.ZodTransform<string[], boolean | ("meta" | "execute")[]>>]>>;
|
|
21000
|
+
use: z.ZodOptional<z.ZodUnion<readonly [z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>, z.ZodArray<z.ZodObject<{
|
|
21001
|
+
name: z.ZodString;
|
|
21002
|
+
fields: z.ZodOptional<z.ZodString>;
|
|
21003
|
+
as: z.ZodOptional<z.ZodString>;
|
|
21004
|
+
}, z.core.$strict>>]>, z.ZodObject<{
|
|
21005
|
+
steps: z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>, z.ZodArray<z.ZodObject<{
|
|
21006
|
+
name: z.ZodString;
|
|
21007
|
+
fields: z.ZodOptional<z.ZodString>;
|
|
21008
|
+
as: z.ZodOptional<z.ZodString>;
|
|
21009
|
+
}, z.core.$strict>>]>;
|
|
21010
|
+
bundle_steps: z.ZodOptional<z.ZodBoolean>;
|
|
21011
|
+
group_by_original: z.ZodOptional<z.ZodBoolean>;
|
|
21012
|
+
fields: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
21013
|
+
}, z.core.$strict>]>>;
|
|
21014
|
+
robot: z.ZodLiteral<"/document/optimize">;
|
|
21015
|
+
preset: z.ZodDefault<z.ZodUnion<[z.ZodString, z.ZodEnum<{
|
|
21016
|
+
ebook: "ebook";
|
|
21017
|
+
screen: "screen";
|
|
21018
|
+
printer: "printer";
|
|
21019
|
+
prepress: "prepress";
|
|
21020
|
+
}>]>>;
|
|
21021
|
+
image_dpi: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
21022
|
+
compress_fonts: z.ZodDefault<z.ZodUnion<[z.ZodString, z.ZodBoolean]>>;
|
|
21023
|
+
subset_fonts: z.ZodDefault<z.ZodUnion<[z.ZodString, z.ZodBoolean]>>;
|
|
21024
|
+
remove_metadata: z.ZodDefault<z.ZodUnion<[z.ZodString, z.ZodBoolean]>>;
|
|
21025
|
+
linearize: z.ZodDefault<z.ZodUnion<[z.ZodString, z.ZodBoolean]>>;
|
|
21026
|
+
compatibility: z.ZodDefault<z.ZodUnion<[z.ZodString, z.ZodEnum<{
|
|
21027
|
+
1.4: "1.4";
|
|
21028
|
+
1.5: "1.5";
|
|
21029
|
+
1.6: "1.6";
|
|
21030
|
+
1.7: "1.7";
|
|
21031
|
+
"2.0": "2.0";
|
|
21032
|
+
}>]>>;
|
|
21033
|
+
result: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodUnion<[z.ZodString, z.ZodLiteral<"debug">]>, z.ZodDefault<z.ZodUnion<[z.ZodString, z.ZodBoolean]>>]>>;
|
|
20858
21034
|
}, z.core.$strict>, z.ZodObject<{
|
|
20859
21035
|
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>]>]>>;
|
|
20860
21036
|
queue: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodEnum<{
|
|
@@ -25855,7 +26031,7 @@ export type RobotsWithHiddenBots = z.infer<typeof robotsWithHiddenBotsSchema>;
|
|
|
25855
26031
|
export type RobotsWithHiddenBotsAndFields = z.infer<typeof robotsWithHiddenBotsAndFieldsSchema>;
|
|
25856
26032
|
export declare const robotsMeta: {
|
|
25857
26033
|
aiChatMeta: {
|
|
25858
|
-
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";
|
|
26034
|
+
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";
|
|
25859
26035
|
priceFactor: number;
|
|
25860
26036
|
queueSlotCount: number;
|
|
25861
26037
|
isAllowedForUrlTransform: boolean;
|
|
@@ -25909,7 +26085,7 @@ export declare const robotsMeta: {
|
|
|
25909
26085
|
uses_tools?: ("ffmpeg" | "imagemagick")[] | undefined;
|
|
25910
26086
|
};
|
|
25911
26087
|
audioArtworkMeta: {
|
|
25912
|
-
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";
|
|
26088
|
+
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";
|
|
25913
26089
|
priceFactor: number;
|
|
25914
26090
|
queueSlotCount: number;
|
|
25915
26091
|
isAllowedForUrlTransform: boolean;
|
|
@@ -25963,7 +26139,7 @@ export declare const robotsMeta: {
|
|
|
25963
26139
|
uses_tools?: ("ffmpeg" | "imagemagick")[] | undefined;
|
|
25964
26140
|
};
|
|
25965
26141
|
audioConcatMeta: {
|
|
25966
|
-
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";
|
|
26142
|
+
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";
|
|
25967
26143
|
priceFactor: number;
|
|
25968
26144
|
queueSlotCount: number;
|
|
25969
26145
|
isAllowedForUrlTransform: boolean;
|
|
@@ -26017,7 +26193,7 @@ export declare const robotsMeta: {
|
|
|
26017
26193
|
uses_tools?: ("ffmpeg" | "imagemagick")[] | undefined;
|
|
26018
26194
|
};
|
|
26019
26195
|
audioEncodeMeta: {
|
|
26020
|
-
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";
|
|
26196
|
+
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";
|
|
26021
26197
|
priceFactor: number;
|
|
26022
26198
|
queueSlotCount: number;
|
|
26023
26199
|
isAllowedForUrlTransform: boolean;
|
|
@@ -26071,7 +26247,7 @@ export declare const robotsMeta: {
|
|
|
26071
26247
|
uses_tools?: ("ffmpeg" | "imagemagick")[] | undefined;
|
|
26072
26248
|
};
|
|
26073
26249
|
audioLoopMeta: {
|
|
26074
|
-
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";
|
|
26250
|
+
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";
|
|
26075
26251
|
priceFactor: number;
|
|
26076
26252
|
queueSlotCount: number;
|
|
26077
26253
|
isAllowedForUrlTransform: boolean;
|
|
@@ -26125,7 +26301,7 @@ export declare const robotsMeta: {
|
|
|
26125
26301
|
uses_tools?: ("ffmpeg" | "imagemagick")[] | undefined;
|
|
26126
26302
|
};
|
|
26127
26303
|
audioMergeMeta: {
|
|
26128
|
-
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";
|
|
26304
|
+
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";
|
|
26129
26305
|
priceFactor: number;
|
|
26130
26306
|
queueSlotCount: number;
|
|
26131
26307
|
isAllowedForUrlTransform: boolean;
|
|
@@ -26179,7 +26355,7 @@ export declare const robotsMeta: {
|
|
|
26179
26355
|
uses_tools?: ("ffmpeg" | "imagemagick")[] | undefined;
|
|
26180
26356
|
};
|
|
26181
26357
|
audioWaveformMeta: {
|
|
26182
|
-
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";
|
|
26358
|
+
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";
|
|
26183
26359
|
priceFactor: number;
|
|
26184
26360
|
queueSlotCount: number;
|
|
26185
26361
|
isAllowedForUrlTransform: boolean;
|
|
@@ -26233,7 +26409,7 @@ export declare const robotsMeta: {
|
|
|
26233
26409
|
uses_tools?: ("ffmpeg" | "imagemagick")[] | undefined;
|
|
26234
26410
|
};
|
|
26235
26411
|
azureImportMeta: {
|
|
26236
|
-
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";
|
|
26412
|
+
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";
|
|
26237
26413
|
priceFactor: number;
|
|
26238
26414
|
queueSlotCount: number;
|
|
26239
26415
|
isAllowedForUrlTransform: boolean;
|
|
@@ -26287,7 +26463,7 @@ export declare const robotsMeta: {
|
|
|
26287
26463
|
uses_tools?: ("ffmpeg" | "imagemagick")[] | undefined;
|
|
26288
26464
|
};
|
|
26289
26465
|
azureStoreMeta: {
|
|
26290
|
-
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";
|
|
26466
|
+
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";
|
|
26291
26467
|
priceFactor: number;
|
|
26292
26468
|
queueSlotCount: number;
|
|
26293
26469
|
isAllowedForUrlTransform: boolean;
|
|
@@ -26341,7 +26517,7 @@ export declare const robotsMeta: {
|
|
|
26341
26517
|
uses_tools?: ("ffmpeg" | "imagemagick")[] | undefined;
|
|
26342
26518
|
};
|
|
26343
26519
|
backblazeImportMeta: {
|
|
26344
|
-
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";
|
|
26520
|
+
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";
|
|
26345
26521
|
priceFactor: number;
|
|
26346
26522
|
queueSlotCount: number;
|
|
26347
26523
|
isAllowedForUrlTransform: boolean;
|
|
@@ -26395,7 +26571,7 @@ export declare const robotsMeta: {
|
|
|
26395
26571
|
uses_tools?: ("ffmpeg" | "imagemagick")[] | undefined;
|
|
26396
26572
|
};
|
|
26397
26573
|
backblazeStoreMeta: {
|
|
26398
|
-
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";
|
|
26574
|
+
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";
|
|
26399
26575
|
priceFactor: number;
|
|
26400
26576
|
queueSlotCount: number;
|
|
26401
26577
|
isAllowedForUrlTransform: boolean;
|
|
@@ -26449,7 +26625,7 @@ export declare const robotsMeta: {
|
|
|
26449
26625
|
uses_tools?: ("ffmpeg" | "imagemagick")[] | undefined;
|
|
26450
26626
|
};
|
|
26451
26627
|
cloudfilesImportMeta: {
|
|
26452
|
-
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";
|
|
26628
|
+
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";
|
|
26453
26629
|
priceFactor: number;
|
|
26454
26630
|
queueSlotCount: number;
|
|
26455
26631
|
isAllowedForUrlTransform: boolean;
|
|
@@ -26503,7 +26679,7 @@ export declare const robotsMeta: {
|
|
|
26503
26679
|
uses_tools?: ("ffmpeg" | "imagemagick")[] | undefined;
|
|
26504
26680
|
};
|
|
26505
26681
|
cloudfilesStoreMeta: {
|
|
26506
|
-
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";
|
|
26682
|
+
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";
|
|
26507
26683
|
priceFactor: number;
|
|
26508
26684
|
queueSlotCount: number;
|
|
26509
26685
|
isAllowedForUrlTransform: boolean;
|
|
@@ -26557,7 +26733,7 @@ export declare const robotsMeta: {
|
|
|
26557
26733
|
uses_tools?: ("ffmpeg" | "imagemagick")[] | undefined;
|
|
26558
26734
|
};
|
|
26559
26735
|
cloudflareImportMeta: {
|
|
26560
|
-
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";
|
|
26736
|
+
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";
|
|
26561
26737
|
priceFactor: number;
|
|
26562
26738
|
queueSlotCount: number;
|
|
26563
26739
|
isAllowedForUrlTransform: boolean;
|
|
@@ -26611,7 +26787,7 @@ export declare const robotsMeta: {
|
|
|
26611
26787
|
uses_tools?: ("ffmpeg" | "imagemagick")[] | undefined;
|
|
26612
26788
|
};
|
|
26613
26789
|
cloudflareStoreMeta: {
|
|
26614
|
-
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";
|
|
26790
|
+
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";
|
|
26615
26791
|
priceFactor: number;
|
|
26616
26792
|
queueSlotCount: number;
|
|
26617
26793
|
isAllowedForUrlTransform: boolean;
|
|
@@ -26665,7 +26841,7 @@ export declare const robotsMeta: {
|
|
|
26665
26841
|
uses_tools?: ("ffmpeg" | "imagemagick")[] | undefined;
|
|
26666
26842
|
};
|
|
26667
26843
|
digitaloceanImportMeta: {
|
|
26668
|
-
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";
|
|
26844
|
+
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";
|
|
26669
26845
|
priceFactor: number;
|
|
26670
26846
|
queueSlotCount: number;
|
|
26671
26847
|
isAllowedForUrlTransform: boolean;
|
|
@@ -26719,7 +26895,7 @@ export declare const robotsMeta: {
|
|
|
26719
26895
|
uses_tools?: ("ffmpeg" | "imagemagick")[] | undefined;
|
|
26720
26896
|
};
|
|
26721
26897
|
digitaloceanStoreMeta: {
|
|
26722
|
-
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";
|
|
26898
|
+
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";
|
|
26723
26899
|
priceFactor: number;
|
|
26724
26900
|
queueSlotCount: number;
|
|
26725
26901
|
isAllowedForUrlTransform: boolean;
|
|
@@ -26773,7 +26949,7 @@ export declare const robotsMeta: {
|
|
|
26773
26949
|
uses_tools?: ("ffmpeg" | "imagemagick")[] | undefined;
|
|
26774
26950
|
};
|
|
26775
26951
|
documentAutorotateMeta: {
|
|
26776
|
-
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";
|
|
26952
|
+
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";
|
|
26777
26953
|
priceFactor: number;
|
|
26778
26954
|
queueSlotCount: number;
|
|
26779
26955
|
isAllowedForUrlTransform: boolean;
|
|
@@ -26827,7 +27003,7 @@ export declare const robotsMeta: {
|
|
|
26827
27003
|
uses_tools?: ("ffmpeg" | "imagemagick")[] | undefined;
|
|
26828
27004
|
};
|
|
26829
27005
|
documentConvertMeta: {
|
|
26830
|
-
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";
|
|
27006
|
+
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";
|
|
26831
27007
|
priceFactor: number;
|
|
26832
27008
|
queueSlotCount: number;
|
|
26833
27009
|
isAllowedForUrlTransform: boolean;
|
|
@@ -26881,7 +27057,7 @@ export declare const robotsMeta: {
|
|
|
26881
27057
|
uses_tools?: ("ffmpeg" | "imagemagick")[] | undefined;
|
|
26882
27058
|
};
|
|
26883
27059
|
documentMergeMeta: {
|
|
26884
|
-
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";
|
|
27060
|
+
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";
|
|
26885
27061
|
priceFactor: number;
|
|
26886
27062
|
queueSlotCount: number;
|
|
26887
27063
|
isAllowedForUrlTransform: boolean;
|
|
@@ -26935,7 +27111,61 @@ export declare const robotsMeta: {
|
|
|
26935
27111
|
uses_tools?: ("ffmpeg" | "imagemagick")[] | undefined;
|
|
26936
27112
|
};
|
|
26937
27113
|
documentOcrMeta: {
|
|
26938
|
-
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";
|
|
27114
|
+
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";
|
|
27115
|
+
priceFactor: number;
|
|
27116
|
+
queueSlotCount: number;
|
|
27117
|
+
isAllowedForUrlTransform: boolean;
|
|
27118
|
+
removeJobResultFilesFromDiskRightAfterStoringOnS3: boolean;
|
|
27119
|
+
isInternal: boolean;
|
|
27120
|
+
stage: "alpha" | "beta" | "ga" | "deprecated" | "removed";
|
|
27121
|
+
allowed_for_url_transform: boolean;
|
|
27122
|
+
bytescount: number;
|
|
27123
|
+
discount_factor: number;
|
|
27124
|
+
discount_pct: number;
|
|
27125
|
+
minimum_charge: number;
|
|
27126
|
+
output_factor: number;
|
|
27127
|
+
purpose_sentence: string;
|
|
27128
|
+
purpose_verb: "filter" | "merge" | "extract" | "remove" | "auto-rotate" | "cache & deliver" | "compress" | "concatenate" | "convert" | "decompress" | "detect" | "encode" | "export" | "generate" | "handle" | "hash" | "import" | "loop" | "optimize" | "read" | "recognize" | "run" | "scan" | "serve" | "speak" | "subtitle" | "take" | "transcode" | "transcribe" | "translate" | "verify" | "write" | "stream";
|
|
27129
|
+
purpose_word: string;
|
|
27130
|
+
purpose_words: string;
|
|
27131
|
+
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";
|
|
27132
|
+
slot_count: number;
|
|
27133
|
+
title: string;
|
|
27134
|
+
typical_file_size_mb: number;
|
|
27135
|
+
typical_file_type: "audio file" | "audio or video file" | "document" | "file" | "image" | "video" | "webpage";
|
|
27136
|
+
downloadInputFiles?: boolean | undefined;
|
|
27137
|
+
preserveInputFileUrls?: boolean | undefined;
|
|
27138
|
+
minimumCharge?: number | undefined;
|
|
27139
|
+
minimumChargeUsd?: number | undefined;
|
|
27140
|
+
minimumChargeUsdPerSpeechTranscribeMinute?: {
|
|
27141
|
+
aws: number;
|
|
27142
|
+
gcp: number;
|
|
27143
|
+
} | undefined;
|
|
27144
|
+
minimumChargeUsdPerDocumentOcrPage?: {
|
|
27145
|
+
aws: number;
|
|
27146
|
+
gcp: number;
|
|
27147
|
+
} | undefined;
|
|
27148
|
+
lazyLoad?: boolean | undefined;
|
|
27149
|
+
installVersionFile?: string | undefined;
|
|
27150
|
+
trackOutputFileSize?: boolean | undefined;
|
|
27151
|
+
numDaemons?: number | undefined;
|
|
27152
|
+
importRanges?: string[] | undefined;
|
|
27153
|
+
extraChargeForImageResize?: number | undefined;
|
|
27154
|
+
description?: string | undefined;
|
|
27155
|
+
example_code?: any;
|
|
27156
|
+
example_code_description?: string | undefined;
|
|
27157
|
+
extended_description?: string | undefined;
|
|
27158
|
+
has_small_icon?: true | undefined;
|
|
27159
|
+
minimum_charge_usd?: number | Record<string, number> | undefined;
|
|
27160
|
+
minimum_charge_usd_note?: string | undefined;
|
|
27161
|
+
ogimage?: string | undefined;
|
|
27162
|
+
marketing_intro?: string | undefined;
|
|
27163
|
+
override_lvl1?: string | undefined;
|
|
27164
|
+
requires_credentials?: true | undefined;
|
|
27165
|
+
uses_tools?: ("ffmpeg" | "imagemagick")[] | undefined;
|
|
27166
|
+
};
|
|
27167
|
+
documentOptimizeMeta: {
|
|
27168
|
+
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";
|
|
26939
27169
|
priceFactor: number;
|
|
26940
27170
|
queueSlotCount: number;
|
|
26941
27171
|
isAllowedForUrlTransform: boolean;
|
|
@@ -26989,7 +27219,7 @@ export declare const robotsMeta: {
|
|
|
26989
27219
|
uses_tools?: ("ffmpeg" | "imagemagick")[] | undefined;
|
|
26990
27220
|
};
|
|
26991
27221
|
documentSplitMeta: {
|
|
26992
|
-
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";
|
|
27222
|
+
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";
|
|
26993
27223
|
priceFactor: number;
|
|
26994
27224
|
queueSlotCount: number;
|
|
26995
27225
|
isAllowedForUrlTransform: boolean;
|
|
@@ -27043,7 +27273,7 @@ export declare const robotsMeta: {
|
|
|
27043
27273
|
uses_tools?: ("ffmpeg" | "imagemagick")[] | undefined;
|
|
27044
27274
|
};
|
|
27045
27275
|
documentThumbsMeta: {
|
|
27046
|
-
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";
|
|
27276
|
+
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";
|
|
27047
27277
|
priceFactor: number;
|
|
27048
27278
|
queueSlotCount: number;
|
|
27049
27279
|
isAllowedForUrlTransform: boolean;
|
|
@@ -27097,7 +27327,7 @@ export declare const robotsMeta: {
|
|
|
27097
27327
|
uses_tools?: ("ffmpeg" | "imagemagick")[] | undefined;
|
|
27098
27328
|
};
|
|
27099
27329
|
dropboxImportMeta: {
|
|
27100
|
-
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";
|
|
27330
|
+
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";
|
|
27101
27331
|
priceFactor: number;
|
|
27102
27332
|
queueSlotCount: number;
|
|
27103
27333
|
isAllowedForUrlTransform: boolean;
|
|
@@ -27151,7 +27381,7 @@ export declare const robotsMeta: {
|
|
|
27151
27381
|
uses_tools?: ("ffmpeg" | "imagemagick")[] | undefined;
|
|
27152
27382
|
};
|
|
27153
27383
|
dropboxStoreMeta: {
|
|
27154
|
-
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";
|
|
27384
|
+
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";
|
|
27155
27385
|
priceFactor: number;
|
|
27156
27386
|
queueSlotCount: number;
|
|
27157
27387
|
isAllowedForUrlTransform: boolean;
|
|
@@ -27205,7 +27435,7 @@ export declare const robotsMeta: {
|
|
|
27205
27435
|
uses_tools?: ("ffmpeg" | "imagemagick")[] | undefined;
|
|
27206
27436
|
};
|
|
27207
27437
|
edglyDeliverMeta: {
|
|
27208
|
-
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";
|
|
27438
|
+
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";
|
|
27209
27439
|
priceFactor: number;
|
|
27210
27440
|
queueSlotCount: number;
|
|
27211
27441
|
isAllowedForUrlTransform: boolean;
|
|
@@ -27259,7 +27489,7 @@ export declare const robotsMeta: {
|
|
|
27259
27489
|
uses_tools?: ("ffmpeg" | "imagemagick")[] | undefined;
|
|
27260
27490
|
};
|
|
27261
27491
|
fileCompressMeta: {
|
|
27262
|
-
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";
|
|
27492
|
+
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";
|
|
27263
27493
|
priceFactor: number;
|
|
27264
27494
|
queueSlotCount: number;
|
|
27265
27495
|
isAllowedForUrlTransform: boolean;
|
|
@@ -27313,7 +27543,7 @@ export declare const robotsMeta: {
|
|
|
27313
27543
|
uses_tools?: ("ffmpeg" | "imagemagick")[] | undefined;
|
|
27314
27544
|
};
|
|
27315
27545
|
fileDecompressMeta: {
|
|
27316
|
-
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";
|
|
27546
|
+
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";
|
|
27317
27547
|
priceFactor: number;
|
|
27318
27548
|
queueSlotCount: number;
|
|
27319
27549
|
isAllowedForUrlTransform: boolean;
|
|
@@ -27367,7 +27597,7 @@ export declare const robotsMeta: {
|
|
|
27367
27597
|
uses_tools?: ("ffmpeg" | "imagemagick")[] | undefined;
|
|
27368
27598
|
};
|
|
27369
27599
|
fileFilterMeta: {
|
|
27370
|
-
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";
|
|
27600
|
+
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";
|
|
27371
27601
|
priceFactor: number;
|
|
27372
27602
|
queueSlotCount: number;
|
|
27373
27603
|
isAllowedForUrlTransform: boolean;
|
|
@@ -27421,7 +27651,7 @@ export declare const robotsMeta: {
|
|
|
27421
27651
|
uses_tools?: ("ffmpeg" | "imagemagick")[] | undefined;
|
|
27422
27652
|
};
|
|
27423
27653
|
fileHashMeta: {
|
|
27424
|
-
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";
|
|
27654
|
+
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";
|
|
27425
27655
|
priceFactor: number;
|
|
27426
27656
|
queueSlotCount: number;
|
|
27427
27657
|
isAllowedForUrlTransform: boolean;
|
|
@@ -27475,7 +27705,7 @@ export declare const robotsMeta: {
|
|
|
27475
27705
|
uses_tools?: ("ffmpeg" | "imagemagick")[] | undefined;
|
|
27476
27706
|
};
|
|
27477
27707
|
filePreviewMeta: {
|
|
27478
|
-
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";
|
|
27708
|
+
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";
|
|
27479
27709
|
priceFactor: number;
|
|
27480
27710
|
queueSlotCount: number;
|
|
27481
27711
|
isAllowedForUrlTransform: boolean;
|
|
@@ -27529,7 +27759,7 @@ export declare const robotsMeta: {
|
|
|
27529
27759
|
uses_tools?: ("ffmpeg" | "imagemagick")[] | undefined;
|
|
27530
27760
|
};
|
|
27531
27761
|
fileReadMeta: {
|
|
27532
|
-
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";
|
|
27762
|
+
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";
|
|
27533
27763
|
priceFactor: number;
|
|
27534
27764
|
queueSlotCount: number;
|
|
27535
27765
|
isAllowedForUrlTransform: boolean;
|
|
@@ -27583,7 +27813,7 @@ export declare const robotsMeta: {
|
|
|
27583
27813
|
uses_tools?: ("ffmpeg" | "imagemagick")[] | undefined;
|
|
27584
27814
|
};
|
|
27585
27815
|
fileServeMeta: {
|
|
27586
|
-
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";
|
|
27816
|
+
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";
|
|
27587
27817
|
priceFactor: number;
|
|
27588
27818
|
queueSlotCount: number;
|
|
27589
27819
|
isAllowedForUrlTransform: boolean;
|
|
@@ -27637,7 +27867,7 @@ export declare const robotsMeta: {
|
|
|
27637
27867
|
uses_tools?: ("ffmpeg" | "imagemagick")[] | undefined;
|
|
27638
27868
|
};
|
|
27639
27869
|
fileVerifyMeta: {
|
|
27640
|
-
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";
|
|
27870
|
+
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";
|
|
27641
27871
|
priceFactor: number;
|
|
27642
27872
|
queueSlotCount: number;
|
|
27643
27873
|
isAllowedForUrlTransform: boolean;
|
|
@@ -27691,7 +27921,7 @@ export declare const robotsMeta: {
|
|
|
27691
27921
|
uses_tools?: ("ffmpeg" | "imagemagick")[] | undefined;
|
|
27692
27922
|
};
|
|
27693
27923
|
fileVirusscanMeta: {
|
|
27694
|
-
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";
|
|
27924
|
+
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";
|
|
27695
27925
|
priceFactor: number;
|
|
27696
27926
|
queueSlotCount: number;
|
|
27697
27927
|
isAllowedForUrlTransform: boolean;
|
|
@@ -27745,7 +27975,7 @@ export declare const robotsMeta: {
|
|
|
27745
27975
|
uses_tools?: ("ffmpeg" | "imagemagick")[] | undefined;
|
|
27746
27976
|
};
|
|
27747
27977
|
ftpImportMeta: {
|
|
27748
|
-
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";
|
|
27978
|
+
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";
|
|
27749
27979
|
priceFactor: number;
|
|
27750
27980
|
queueSlotCount: number;
|
|
27751
27981
|
isAllowedForUrlTransform: boolean;
|
|
@@ -27799,7 +28029,7 @@ export declare const robotsMeta: {
|
|
|
27799
28029
|
uses_tools?: ("ffmpeg" | "imagemagick")[] | undefined;
|
|
27800
28030
|
};
|
|
27801
28031
|
ftpStoreMeta: {
|
|
27802
|
-
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";
|
|
28032
|
+
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";
|
|
27803
28033
|
priceFactor: number;
|
|
27804
28034
|
queueSlotCount: number;
|
|
27805
28035
|
isAllowedForUrlTransform: boolean;
|
|
@@ -27853,7 +28083,7 @@ export declare const robotsMeta: {
|
|
|
27853
28083
|
uses_tools?: ("ffmpeg" | "imagemagick")[] | undefined;
|
|
27854
28084
|
};
|
|
27855
28085
|
googleImportMeta: {
|
|
27856
|
-
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";
|
|
28086
|
+
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";
|
|
27857
28087
|
priceFactor: number;
|
|
27858
28088
|
queueSlotCount: number;
|
|
27859
28089
|
isAllowedForUrlTransform: boolean;
|
|
@@ -27907,7 +28137,7 @@ export declare const robotsMeta: {
|
|
|
27907
28137
|
uses_tools?: ("ffmpeg" | "imagemagick")[] | undefined;
|
|
27908
28138
|
};
|
|
27909
28139
|
googleStoreMeta: {
|
|
27910
|
-
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";
|
|
28140
|
+
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";
|
|
27911
28141
|
priceFactor: number;
|
|
27912
28142
|
queueSlotCount: number;
|
|
27913
28143
|
isAllowedForUrlTransform: boolean;
|
|
@@ -27961,7 +28191,7 @@ export declare const robotsMeta: {
|
|
|
27961
28191
|
uses_tools?: ("ffmpeg" | "imagemagick")[] | undefined;
|
|
27962
28192
|
};
|
|
27963
28193
|
htmlConvertMeta: {
|
|
27964
|
-
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";
|
|
28194
|
+
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";
|
|
27965
28195
|
priceFactor: number;
|
|
27966
28196
|
queueSlotCount: number;
|
|
27967
28197
|
isAllowedForUrlTransform: boolean;
|
|
@@ -28015,7 +28245,7 @@ export declare const robotsMeta: {
|
|
|
28015
28245
|
uses_tools?: ("ffmpeg" | "imagemagick")[] | undefined;
|
|
28016
28246
|
};
|
|
28017
28247
|
httpImportMeta: {
|
|
28018
|
-
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";
|
|
28248
|
+
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";
|
|
28019
28249
|
priceFactor: number;
|
|
28020
28250
|
queueSlotCount: number;
|
|
28021
28251
|
isAllowedForUrlTransform: boolean;
|
|
@@ -28069,7 +28299,7 @@ export declare const robotsMeta: {
|
|
|
28069
28299
|
uses_tools?: ("ffmpeg" | "imagemagick")[] | undefined;
|
|
28070
28300
|
};
|
|
28071
28301
|
imageDescribeMeta: {
|
|
28072
|
-
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";
|
|
28302
|
+
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";
|
|
28073
28303
|
priceFactor: number;
|
|
28074
28304
|
queueSlotCount: number;
|
|
28075
28305
|
isAllowedForUrlTransform: boolean;
|
|
@@ -28123,7 +28353,7 @@ export declare const robotsMeta: {
|
|
|
28123
28353
|
uses_tools?: ("ffmpeg" | "imagemagick")[] | undefined;
|
|
28124
28354
|
};
|
|
28125
28355
|
imageFacedetectMeta: {
|
|
28126
|
-
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";
|
|
28356
|
+
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";
|
|
28127
28357
|
priceFactor: number;
|
|
28128
28358
|
queueSlotCount: number;
|
|
28129
28359
|
isAllowedForUrlTransform: boolean;
|
|
@@ -28177,7 +28407,7 @@ export declare const robotsMeta: {
|
|
|
28177
28407
|
uses_tools?: ("ffmpeg" | "imagemagick")[] | undefined;
|
|
28178
28408
|
};
|
|
28179
28409
|
imageBgremoveMeta: {
|
|
28180
|
-
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";
|
|
28410
|
+
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";
|
|
28181
28411
|
priceFactor: number;
|
|
28182
28412
|
queueSlotCount: number;
|
|
28183
28413
|
isAllowedForUrlTransform: boolean;
|
|
@@ -28231,7 +28461,7 @@ export declare const robotsMeta: {
|
|
|
28231
28461
|
uses_tools?: ("ffmpeg" | "imagemagick")[] | undefined;
|
|
28232
28462
|
};
|
|
28233
28463
|
imageGenerateMeta: {
|
|
28234
|
-
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";
|
|
28464
|
+
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";
|
|
28235
28465
|
priceFactor: number;
|
|
28236
28466
|
queueSlotCount: number;
|
|
28237
28467
|
isAllowedForUrlTransform: boolean;
|
|
@@ -28285,7 +28515,7 @@ export declare const robotsMeta: {
|
|
|
28285
28515
|
uses_tools?: ("ffmpeg" | "imagemagick")[] | undefined;
|
|
28286
28516
|
};
|
|
28287
28517
|
imageMergeMeta: {
|
|
28288
|
-
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";
|
|
28518
|
+
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";
|
|
28289
28519
|
priceFactor: number;
|
|
28290
28520
|
queueSlotCount: number;
|
|
28291
28521
|
isAllowedForUrlTransform: boolean;
|
|
@@ -28339,7 +28569,7 @@ export declare const robotsMeta: {
|
|
|
28339
28569
|
uses_tools?: ("ffmpeg" | "imagemagick")[] | undefined;
|
|
28340
28570
|
};
|
|
28341
28571
|
imageOcrMeta: {
|
|
28342
|
-
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";
|
|
28572
|
+
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";
|
|
28343
28573
|
priceFactor: number;
|
|
28344
28574
|
queueSlotCount: number;
|
|
28345
28575
|
isAllowedForUrlTransform: boolean;
|
|
@@ -28393,7 +28623,7 @@ export declare const robotsMeta: {
|
|
|
28393
28623
|
uses_tools?: ("ffmpeg" | "imagemagick")[] | undefined;
|
|
28394
28624
|
};
|
|
28395
28625
|
imageOptimizeMeta: {
|
|
28396
|
-
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";
|
|
28626
|
+
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";
|
|
28397
28627
|
priceFactor: number;
|
|
28398
28628
|
queueSlotCount: number;
|
|
28399
28629
|
isAllowedForUrlTransform: boolean;
|
|
@@ -28447,7 +28677,7 @@ export declare const robotsMeta: {
|
|
|
28447
28677
|
uses_tools?: ("ffmpeg" | "imagemagick")[] | undefined;
|
|
28448
28678
|
};
|
|
28449
28679
|
imageResizeMeta: {
|
|
28450
|
-
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";
|
|
28680
|
+
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";
|
|
28451
28681
|
priceFactor: number;
|
|
28452
28682
|
queueSlotCount: number;
|
|
28453
28683
|
isAllowedForUrlTransform: boolean;
|
|
@@ -28501,7 +28731,7 @@ export declare const robotsMeta: {
|
|
|
28501
28731
|
uses_tools?: ("ffmpeg" | "imagemagick")[] | undefined;
|
|
28502
28732
|
};
|
|
28503
28733
|
metaWriteMeta: {
|
|
28504
|
-
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";
|
|
28734
|
+
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";
|
|
28505
28735
|
priceFactor: number;
|
|
28506
28736
|
queueSlotCount: number;
|
|
28507
28737
|
isAllowedForUrlTransform: boolean;
|
|
@@ -28555,7 +28785,7 @@ export declare const robotsMeta: {
|
|
|
28555
28785
|
uses_tools?: ("ffmpeg" | "imagemagick")[] | undefined;
|
|
28556
28786
|
};
|
|
28557
28787
|
minioImportMeta: {
|
|
28558
|
-
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";
|
|
28788
|
+
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";
|
|
28559
28789
|
priceFactor: number;
|
|
28560
28790
|
queueSlotCount: number;
|
|
28561
28791
|
isAllowedForUrlTransform: boolean;
|
|
@@ -28609,7 +28839,7 @@ export declare const robotsMeta: {
|
|
|
28609
28839
|
uses_tools?: ("ffmpeg" | "imagemagick")[] | undefined;
|
|
28610
28840
|
};
|
|
28611
28841
|
minioStoreMeta: {
|
|
28612
|
-
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";
|
|
28842
|
+
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";
|
|
28613
28843
|
priceFactor: number;
|
|
28614
28844
|
queueSlotCount: number;
|
|
28615
28845
|
isAllowedForUrlTransform: boolean;
|
|
@@ -28663,7 +28893,7 @@ export declare const robotsMeta: {
|
|
|
28663
28893
|
uses_tools?: ("ffmpeg" | "imagemagick")[] | undefined;
|
|
28664
28894
|
};
|
|
28665
28895
|
s3ImportMeta: {
|
|
28666
|
-
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";
|
|
28896
|
+
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";
|
|
28667
28897
|
priceFactor: number;
|
|
28668
28898
|
queueSlotCount: number;
|
|
28669
28899
|
isAllowedForUrlTransform: boolean;
|
|
@@ -28717,7 +28947,7 @@ export declare const robotsMeta: {
|
|
|
28717
28947
|
uses_tools?: ("ffmpeg" | "imagemagick")[] | undefined;
|
|
28718
28948
|
};
|
|
28719
28949
|
s3StoreMeta: {
|
|
28720
|
-
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";
|
|
28950
|
+
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";
|
|
28721
28951
|
priceFactor: number;
|
|
28722
28952
|
queueSlotCount: number;
|
|
28723
28953
|
isAllowedForUrlTransform: boolean;
|
|
@@ -28771,7 +29001,7 @@ export declare const robotsMeta: {
|
|
|
28771
29001
|
uses_tools?: ("ffmpeg" | "imagemagick")[] | undefined;
|
|
28772
29002
|
};
|
|
28773
29003
|
scriptRunMeta: {
|
|
28774
|
-
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";
|
|
29004
|
+
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";
|
|
28775
29005
|
priceFactor: number;
|
|
28776
29006
|
queueSlotCount: number;
|
|
28777
29007
|
isAllowedForUrlTransform: boolean;
|
|
@@ -28825,7 +29055,7 @@ export declare const robotsMeta: {
|
|
|
28825
29055
|
uses_tools?: ("ffmpeg" | "imagemagick")[] | undefined;
|
|
28826
29056
|
};
|
|
28827
29057
|
sftpImportMeta: {
|
|
28828
|
-
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";
|
|
29058
|
+
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";
|
|
28829
29059
|
priceFactor: number;
|
|
28830
29060
|
queueSlotCount: number;
|
|
28831
29061
|
isAllowedForUrlTransform: boolean;
|
|
@@ -28879,7 +29109,7 @@ export declare const robotsMeta: {
|
|
|
28879
29109
|
uses_tools?: ("ffmpeg" | "imagemagick")[] | undefined;
|
|
28880
29110
|
};
|
|
28881
29111
|
sftpStoreMeta: {
|
|
28882
|
-
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";
|
|
29112
|
+
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";
|
|
28883
29113
|
priceFactor: number;
|
|
28884
29114
|
queueSlotCount: number;
|
|
28885
29115
|
isAllowedForUrlTransform: boolean;
|
|
@@ -28933,7 +29163,7 @@ export declare const robotsMeta: {
|
|
|
28933
29163
|
uses_tools?: ("ffmpeg" | "imagemagick")[] | undefined;
|
|
28934
29164
|
};
|
|
28935
29165
|
speechTranscribeMeta: {
|
|
28936
|
-
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";
|
|
29166
|
+
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";
|
|
28937
29167
|
priceFactor: number;
|
|
28938
29168
|
queueSlotCount: number;
|
|
28939
29169
|
isAllowedForUrlTransform: boolean;
|
|
@@ -28987,7 +29217,7 @@ export declare const robotsMeta: {
|
|
|
28987
29217
|
uses_tools?: ("ffmpeg" | "imagemagick")[] | undefined;
|
|
28988
29218
|
};
|
|
28989
29219
|
supabaseImportMeta: {
|
|
28990
|
-
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";
|
|
29220
|
+
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";
|
|
28991
29221
|
priceFactor: number;
|
|
28992
29222
|
queueSlotCount: number;
|
|
28993
29223
|
isAllowedForUrlTransform: boolean;
|
|
@@ -29041,7 +29271,7 @@ export declare const robotsMeta: {
|
|
|
29041
29271
|
uses_tools?: ("ffmpeg" | "imagemagick")[] | undefined;
|
|
29042
29272
|
};
|
|
29043
29273
|
supabaseStoreMeta: {
|
|
29044
|
-
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";
|
|
29274
|
+
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";
|
|
29045
29275
|
priceFactor: number;
|
|
29046
29276
|
queueSlotCount: number;
|
|
29047
29277
|
isAllowedForUrlTransform: boolean;
|
|
@@ -29095,7 +29325,7 @@ export declare const robotsMeta: {
|
|
|
29095
29325
|
uses_tools?: ("ffmpeg" | "imagemagick")[] | undefined;
|
|
29096
29326
|
};
|
|
29097
29327
|
swiftImportMeta: {
|
|
29098
|
-
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";
|
|
29328
|
+
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";
|
|
29099
29329
|
priceFactor: number;
|
|
29100
29330
|
queueSlotCount: number;
|
|
29101
29331
|
isAllowedForUrlTransform: boolean;
|
|
@@ -29149,7 +29379,7 @@ export declare const robotsMeta: {
|
|
|
29149
29379
|
uses_tools?: ("ffmpeg" | "imagemagick")[] | undefined;
|
|
29150
29380
|
};
|
|
29151
29381
|
swiftStoreMeta: {
|
|
29152
|
-
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";
|
|
29382
|
+
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";
|
|
29153
29383
|
priceFactor: number;
|
|
29154
29384
|
queueSlotCount: number;
|
|
29155
29385
|
isAllowedForUrlTransform: boolean;
|
|
@@ -29203,7 +29433,7 @@ export declare const robotsMeta: {
|
|
|
29203
29433
|
uses_tools?: ("ffmpeg" | "imagemagick")[] | undefined;
|
|
29204
29434
|
};
|
|
29205
29435
|
textSpeakMeta: {
|
|
29206
|
-
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";
|
|
29436
|
+
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";
|
|
29207
29437
|
priceFactor: number;
|
|
29208
29438
|
queueSlotCount: number;
|
|
29209
29439
|
isAllowedForUrlTransform: boolean;
|
|
@@ -29257,7 +29487,7 @@ export declare const robotsMeta: {
|
|
|
29257
29487
|
uses_tools?: ("ffmpeg" | "imagemagick")[] | undefined;
|
|
29258
29488
|
};
|
|
29259
29489
|
textTranslateMeta: {
|
|
29260
|
-
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";
|
|
29490
|
+
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";
|
|
29261
29491
|
priceFactor: number;
|
|
29262
29492
|
queueSlotCount: number;
|
|
29263
29493
|
isAllowedForUrlTransform: boolean;
|
|
@@ -29311,7 +29541,7 @@ export declare const robotsMeta: {
|
|
|
29311
29541
|
uses_tools?: ("ffmpeg" | "imagemagick")[] | undefined;
|
|
29312
29542
|
};
|
|
29313
29543
|
tigrisImport: {
|
|
29314
|
-
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";
|
|
29544
|
+
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";
|
|
29315
29545
|
priceFactor: number;
|
|
29316
29546
|
queueSlotCount: number;
|
|
29317
29547
|
isAllowedForUrlTransform: boolean;
|
|
@@ -29365,7 +29595,7 @@ export declare const robotsMeta: {
|
|
|
29365
29595
|
uses_tools?: ("ffmpeg" | "imagemagick")[] | undefined;
|
|
29366
29596
|
};
|
|
29367
29597
|
tigrisStore: {
|
|
29368
|
-
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";
|
|
29598
|
+
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";
|
|
29369
29599
|
priceFactor: number;
|
|
29370
29600
|
queueSlotCount: number;
|
|
29371
29601
|
isAllowedForUrlTransform: boolean;
|
|
@@ -29419,7 +29649,7 @@ export declare const robotsMeta: {
|
|
|
29419
29649
|
uses_tools?: ("ffmpeg" | "imagemagick")[] | undefined;
|
|
29420
29650
|
};
|
|
29421
29651
|
tlcdnDeliverMeta: {
|
|
29422
|
-
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";
|
|
29652
|
+
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";
|
|
29423
29653
|
priceFactor: number;
|
|
29424
29654
|
queueSlotCount: number;
|
|
29425
29655
|
isAllowedForUrlTransform: boolean;
|
|
@@ -29473,7 +29703,7 @@ export declare const robotsMeta: {
|
|
|
29473
29703
|
uses_tools?: ("ffmpeg" | "imagemagick")[] | undefined;
|
|
29474
29704
|
};
|
|
29475
29705
|
tusStoreMeta: {
|
|
29476
|
-
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";
|
|
29706
|
+
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";
|
|
29477
29707
|
priceFactor: number;
|
|
29478
29708
|
queueSlotCount: number;
|
|
29479
29709
|
isAllowedForUrlTransform: boolean;
|
|
@@ -29527,7 +29757,7 @@ export declare const robotsMeta: {
|
|
|
29527
29757
|
uses_tools?: ("ffmpeg" | "imagemagick")[] | undefined;
|
|
29528
29758
|
};
|
|
29529
29759
|
uploadHandleMeta: {
|
|
29530
|
-
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";
|
|
29760
|
+
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";
|
|
29531
29761
|
priceFactor: number;
|
|
29532
29762
|
queueSlotCount: number;
|
|
29533
29763
|
isAllowedForUrlTransform: boolean;
|
|
@@ -29581,7 +29811,7 @@ export declare const robotsMeta: {
|
|
|
29581
29811
|
uses_tools?: ("ffmpeg" | "imagemagick")[] | undefined;
|
|
29582
29812
|
};
|
|
29583
29813
|
videoAdaptiveMeta: {
|
|
29584
|
-
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";
|
|
29814
|
+
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";
|
|
29585
29815
|
priceFactor: number;
|
|
29586
29816
|
queueSlotCount: number;
|
|
29587
29817
|
isAllowedForUrlTransform: boolean;
|
|
@@ -29635,7 +29865,7 @@ export declare const robotsMeta: {
|
|
|
29635
29865
|
uses_tools?: ("ffmpeg" | "imagemagick")[] | undefined;
|
|
29636
29866
|
};
|
|
29637
29867
|
videoConcatMeta: {
|
|
29638
|
-
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";
|
|
29868
|
+
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";
|
|
29639
29869
|
priceFactor: number;
|
|
29640
29870
|
queueSlotCount: number;
|
|
29641
29871
|
isAllowedForUrlTransform: boolean;
|
|
@@ -29689,7 +29919,7 @@ export declare const robotsMeta: {
|
|
|
29689
29919
|
uses_tools?: ("ffmpeg" | "imagemagick")[] | undefined;
|
|
29690
29920
|
};
|
|
29691
29921
|
videoEncodeMeta: {
|
|
29692
|
-
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";
|
|
29922
|
+
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";
|
|
29693
29923
|
priceFactor: number;
|
|
29694
29924
|
queueSlotCount: number;
|
|
29695
29925
|
isAllowedForUrlTransform: boolean;
|
|
@@ -29743,7 +29973,7 @@ export declare const robotsMeta: {
|
|
|
29743
29973
|
uses_tools?: ("ffmpeg" | "imagemagick")[] | undefined;
|
|
29744
29974
|
};
|
|
29745
29975
|
videoMergeMeta: {
|
|
29746
|
-
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";
|
|
29976
|
+
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";
|
|
29747
29977
|
priceFactor: number;
|
|
29748
29978
|
queueSlotCount: number;
|
|
29749
29979
|
isAllowedForUrlTransform: boolean;
|
|
@@ -29797,7 +30027,7 @@ export declare const robotsMeta: {
|
|
|
29797
30027
|
uses_tools?: ("ffmpeg" | "imagemagick")[] | undefined;
|
|
29798
30028
|
};
|
|
29799
30029
|
videoOndemandMeta: {
|
|
29800
|
-
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";
|
|
30030
|
+
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";
|
|
29801
30031
|
priceFactor: number;
|
|
29802
30032
|
queueSlotCount: number;
|
|
29803
30033
|
isAllowedForUrlTransform: boolean;
|
|
@@ -29851,7 +30081,7 @@ export declare const robotsMeta: {
|
|
|
29851
30081
|
uses_tools?: ("ffmpeg" | "imagemagick")[] | undefined;
|
|
29852
30082
|
};
|
|
29853
30083
|
videoSubtitleMeta: {
|
|
29854
|
-
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";
|
|
30084
|
+
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";
|
|
29855
30085
|
priceFactor: number;
|
|
29856
30086
|
queueSlotCount: number;
|
|
29857
30087
|
isAllowedForUrlTransform: boolean;
|
|
@@ -29905,7 +30135,7 @@ export declare const robotsMeta: {
|
|
|
29905
30135
|
uses_tools?: ("ffmpeg" | "imagemagick")[] | undefined;
|
|
29906
30136
|
};
|
|
29907
30137
|
videoThumbsMeta: {
|
|
29908
|
-
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";
|
|
30138
|
+
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";
|
|
29909
30139
|
priceFactor: number;
|
|
29910
30140
|
queueSlotCount: number;
|
|
29911
30141
|
isAllowedForUrlTransform: boolean;
|
|
@@ -29959,7 +30189,7 @@ export declare const robotsMeta: {
|
|
|
29959
30189
|
uses_tools?: ("ffmpeg" | "imagemagick")[] | undefined;
|
|
29960
30190
|
};
|
|
29961
30191
|
vimeoImportMeta: {
|
|
29962
|
-
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";
|
|
30192
|
+
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";
|
|
29963
30193
|
priceFactor: number;
|
|
29964
30194
|
queueSlotCount: number;
|
|
29965
30195
|
isAllowedForUrlTransform: boolean;
|
|
@@ -30013,7 +30243,7 @@ export declare const robotsMeta: {
|
|
|
30013
30243
|
uses_tools?: ("ffmpeg" | "imagemagick")[] | undefined;
|
|
30014
30244
|
};
|
|
30015
30245
|
vimeoStoreMeta: {
|
|
30016
|
-
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";
|
|
30246
|
+
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";
|
|
30017
30247
|
priceFactor: number;
|
|
30018
30248
|
queueSlotCount: number;
|
|
30019
30249
|
isAllowedForUrlTransform: boolean;
|
|
@@ -30067,7 +30297,7 @@ export declare const robotsMeta: {
|
|
|
30067
30297
|
uses_tools?: ("ffmpeg" | "imagemagick")[] | undefined;
|
|
30068
30298
|
};
|
|
30069
30299
|
wasabiImportMeta: {
|
|
30070
|
-
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";
|
|
30300
|
+
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";
|
|
30071
30301
|
priceFactor: number;
|
|
30072
30302
|
queueSlotCount: number;
|
|
30073
30303
|
isAllowedForUrlTransform: boolean;
|
|
@@ -30121,7 +30351,7 @@ export declare const robotsMeta: {
|
|
|
30121
30351
|
uses_tools?: ("ffmpeg" | "imagemagick")[] | undefined;
|
|
30122
30352
|
};
|
|
30123
30353
|
wasabiStoreMeta: {
|
|
30124
|
-
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";
|
|
30354
|
+
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";
|
|
30125
30355
|
priceFactor: number;
|
|
30126
30356
|
queueSlotCount: number;
|
|
30127
30357
|
isAllowedForUrlTransform: boolean;
|
|
@@ -30175,7 +30405,7 @@ export declare const robotsMeta: {
|
|
|
30175
30405
|
uses_tools?: ("ffmpeg" | "imagemagick")[] | undefined;
|
|
30176
30406
|
};
|
|
30177
30407
|
youtubeStoreMeta: {
|
|
30178
|
-
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";
|
|
30408
|
+
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";
|
|
30179
30409
|
priceFactor: number;
|
|
30180
30410
|
queueSlotCount: number;
|
|
30181
30411
|
isAllowedForUrlTransform: boolean;
|
|
@@ -30251,6 +30481,7 @@ export type { InterpolatableRobotDocumentAutorotateInstructions, InterpolatableR
|
|
|
30251
30481
|
export type { InterpolatableRobotDocumentConvertInstructions, InterpolatableRobotDocumentConvertInstructionsInput, InterpolatableRobotDocumentConvertInstructionsWithHiddenFields, InterpolatableRobotDocumentConvertInstructionsWithHiddenFieldsInput, } from './document-convert.ts';
|
|
30252
30482
|
export type { InterpolatableRobotDocumentMergeInstructions, InterpolatableRobotDocumentMergeInstructionsInput, InterpolatableRobotDocumentMergeInstructionsWithHiddenFields, InterpolatableRobotDocumentMergeInstructionsWithHiddenFieldsInput, } from './document-merge.ts';
|
|
30253
30483
|
export type { InterpolatableRobotDocumentOcrInstructions, InterpolatableRobotDocumentOcrInstructionsInput, InterpolatableRobotDocumentOcrInstructionsWithHiddenFields, InterpolatableRobotDocumentOcrInstructionsWithHiddenFieldsInput, } from './document-ocr.ts';
|
|
30484
|
+
export type { InterpolatableRobotDocumentOptimizeInstructions, InterpolatableRobotDocumentOptimizeInstructionsInput, InterpolatableRobotDocumentOptimizeInstructionsWithHiddenFields, InterpolatableRobotDocumentOptimizeInstructionsWithHiddenFieldsInput, } from './document-optimize.ts';
|
|
30254
30485
|
export type { InterpolatableRobotDocumentSplitInstructions, InterpolatableRobotDocumentSplitInstructionsInput, InterpolatableRobotDocumentSplitInstructionsWithHiddenFields, InterpolatableRobotDocumentSplitInstructionsWithHiddenFieldsInput, } from './document-split.ts';
|
|
30255
30486
|
export type { InterpolatableRobotDocumentThumbsInstructions, InterpolatableRobotDocumentThumbsInstructionsInput, InterpolatableRobotDocumentThumbsInstructionsWithHiddenFields, InterpolatableRobotDocumentThumbsInstructionsWithHiddenFieldsInput, } from './document-thumbs.ts';
|
|
30256
30487
|
export type { InterpolatableRobotDropboxImportInstructions, InterpolatableRobotDropboxImportInstructionsInput, InterpolatableRobotDropboxImportInstructionsWithHiddenFields, InterpolatableRobotDropboxImportInstructionsWithHiddenFieldsInput, } from './dropbox-import.ts';
|