@openloaf-saas/sdk 0.1.12 → 0.1.13
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/index.d.ts +391 -4
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -536,6 +536,21 @@ declare class SaaSContract {
|
|
|
536
536
|
style?: string | undefined;
|
|
537
537
|
negativePrompt?: string | undefined;
|
|
538
538
|
parameters?: Record<string, unknown> | undefined;
|
|
539
|
+
} | {
|
|
540
|
+
inputs: {
|
|
541
|
+
image: {
|
|
542
|
+
url?: string | undefined;
|
|
543
|
+
base64?: string | undefined;
|
|
544
|
+
mediaType?: string | undefined;
|
|
545
|
+
};
|
|
546
|
+
};
|
|
547
|
+
feature: "matting";
|
|
548
|
+
count?: 2 | 1 | 4 | undefined;
|
|
549
|
+
quality?: "standard" | "hd" | "draft" | undefined;
|
|
550
|
+
seed?: number | undefined;
|
|
551
|
+
style?: string | undefined;
|
|
552
|
+
negativePrompt?: string | undefined;
|
|
553
|
+
parameters?: Record<string, unknown> | undefined;
|
|
539
554
|
} | {
|
|
540
555
|
prompt: string;
|
|
541
556
|
duration: 5 | 10 | 15;
|
|
@@ -586,6 +601,24 @@ declare class SaaSContract {
|
|
|
586
601
|
style?: string | undefined;
|
|
587
602
|
negativePrompt?: string | undefined;
|
|
588
603
|
parameters?: Record<string, unknown> | undefined;
|
|
604
|
+
} | {
|
|
605
|
+
inputs: {
|
|
606
|
+
video: {
|
|
607
|
+
url?: string | undefined;
|
|
608
|
+
base64?: string | undefined;
|
|
609
|
+
mediaType?: string | undefined;
|
|
610
|
+
};
|
|
611
|
+
};
|
|
612
|
+
feature: "videoEdit";
|
|
613
|
+
prompt?: string | undefined;
|
|
614
|
+
mode?: "stylize" | "extend" | "speedUp" | "slowDown" | undefined;
|
|
615
|
+
duration?: number | undefined;
|
|
616
|
+
count?: 2 | 1 | 4 | undefined;
|
|
617
|
+
quality?: "standard" | "hd" | "draft" | undefined;
|
|
618
|
+
seed?: number | undefined;
|
|
619
|
+
style?: string | undefined;
|
|
620
|
+
negativePrompt?: string | undefined;
|
|
621
|
+
parameters?: Record<string, unknown> | undefined;
|
|
589
622
|
} | {
|
|
590
623
|
mode: "photo2video" | "lipSync";
|
|
591
624
|
inputs: {
|
|
@@ -607,6 +640,26 @@ declare class SaaSContract {
|
|
|
607
640
|
style?: string | undefined;
|
|
608
641
|
negativePrompt?: string | undefined;
|
|
609
642
|
parameters?: Record<string, unknown> | undefined;
|
|
643
|
+
} | {
|
|
644
|
+
inputs: {
|
|
645
|
+
person: {
|
|
646
|
+
url?: string | undefined;
|
|
647
|
+
base64?: string | undefined;
|
|
648
|
+
mediaType?: string | undefined;
|
|
649
|
+
};
|
|
650
|
+
referenceVideo: {
|
|
651
|
+
url?: string | undefined;
|
|
652
|
+
base64?: string | undefined;
|
|
653
|
+
mediaType?: string | undefined;
|
|
654
|
+
};
|
|
655
|
+
};
|
|
656
|
+
feature: "motionTransfer";
|
|
657
|
+
count?: 2 | 1 | 4 | undefined;
|
|
658
|
+
quality?: "standard" | "hd" | "draft" | undefined;
|
|
659
|
+
seed?: number | undefined;
|
|
660
|
+
style?: string | undefined;
|
|
661
|
+
negativePrompt?: string | undefined;
|
|
662
|
+
parameters?: Record<string, unknown> | undefined;
|
|
610
663
|
} | {
|
|
611
664
|
text: string;
|
|
612
665
|
feature: "tts";
|
|
@@ -626,6 +679,26 @@ declare class SaaSContract {
|
|
|
626
679
|
style?: string | undefined;
|
|
627
680
|
negativePrompt?: string | undefined;
|
|
628
681
|
parameters?: Record<string, unknown> | undefined;
|
|
682
|
+
} | {
|
|
683
|
+
prompt: string;
|
|
684
|
+
feature: "music";
|
|
685
|
+
duration?: number | undefined;
|
|
686
|
+
count?: 2 | 1 | 4 | undefined;
|
|
687
|
+
quality?: "standard" | "hd" | "draft" | undefined;
|
|
688
|
+
seed?: number | undefined;
|
|
689
|
+
style?: string | undefined;
|
|
690
|
+
negativePrompt?: string | undefined;
|
|
691
|
+
parameters?: Record<string, unknown> | undefined;
|
|
692
|
+
} | {
|
|
693
|
+
prompt: string;
|
|
694
|
+
feature: "sfx";
|
|
695
|
+
duration?: number | undefined;
|
|
696
|
+
count?: 2 | 1 | 4 | undefined;
|
|
697
|
+
quality?: "standard" | "hd" | "draft" | undefined;
|
|
698
|
+
seed?: number | undefined;
|
|
699
|
+
style?: string | undefined;
|
|
700
|
+
negativePrompt?: string | undefined;
|
|
701
|
+
parameters?: Record<string, unknown> | undefined;
|
|
629
702
|
}, {
|
|
630
703
|
success: false;
|
|
631
704
|
message: string;
|
|
@@ -686,7 +759,7 @@ declare class SaaSContract {
|
|
|
686
759
|
};
|
|
687
760
|
}>;
|
|
688
761
|
readonly mediaModels: Endpoint<{
|
|
689
|
-
feature?: "imageGenerate" | "poster" | "imageEdit" | "upscale" | "outpaint" | "videoGenerate" | "digitalHuman" | "tts" | undefined;
|
|
762
|
+
feature?: "imageGenerate" | "poster" | "imageEdit" | "upscale" | "outpaint" | "matting" | "videoGenerate" | "videoEdit" | "digitalHuman" | "motionTransfer" | "tts" | "music" | "sfx" | undefined;
|
|
690
763
|
}, {
|
|
691
764
|
success: false;
|
|
692
765
|
message: string;
|
|
@@ -1560,6 +1633,21 @@ declare const aiEndpoints: {
|
|
|
1560
1633
|
style?: string | undefined;
|
|
1561
1634
|
negativePrompt?: string | undefined;
|
|
1562
1635
|
parameters?: Record<string, unknown> | undefined;
|
|
1636
|
+
} | {
|
|
1637
|
+
inputs: {
|
|
1638
|
+
image: {
|
|
1639
|
+
url?: string | undefined;
|
|
1640
|
+
base64?: string | undefined;
|
|
1641
|
+
mediaType?: string | undefined;
|
|
1642
|
+
};
|
|
1643
|
+
};
|
|
1644
|
+
feature: "matting";
|
|
1645
|
+
count?: 2 | 1 | 4 | undefined;
|
|
1646
|
+
quality?: "standard" | "hd" | "draft" | undefined;
|
|
1647
|
+
seed?: number | undefined;
|
|
1648
|
+
style?: string | undefined;
|
|
1649
|
+
negativePrompt?: string | undefined;
|
|
1650
|
+
parameters?: Record<string, unknown> | undefined;
|
|
1563
1651
|
} | {
|
|
1564
1652
|
prompt: string;
|
|
1565
1653
|
duration: 5 | 10 | 15;
|
|
@@ -1610,6 +1698,24 @@ declare const aiEndpoints: {
|
|
|
1610
1698
|
style?: string | undefined;
|
|
1611
1699
|
negativePrompt?: string | undefined;
|
|
1612
1700
|
parameters?: Record<string, unknown> | undefined;
|
|
1701
|
+
} | {
|
|
1702
|
+
inputs: {
|
|
1703
|
+
video: {
|
|
1704
|
+
url?: string | undefined;
|
|
1705
|
+
base64?: string | undefined;
|
|
1706
|
+
mediaType?: string | undefined;
|
|
1707
|
+
};
|
|
1708
|
+
};
|
|
1709
|
+
feature: "videoEdit";
|
|
1710
|
+
prompt?: string | undefined;
|
|
1711
|
+
mode?: "stylize" | "extend" | "speedUp" | "slowDown" | undefined;
|
|
1712
|
+
duration?: number | undefined;
|
|
1713
|
+
count?: 2 | 1 | 4 | undefined;
|
|
1714
|
+
quality?: "standard" | "hd" | "draft" | undefined;
|
|
1715
|
+
seed?: number | undefined;
|
|
1716
|
+
style?: string | undefined;
|
|
1717
|
+
negativePrompt?: string | undefined;
|
|
1718
|
+
parameters?: Record<string, unknown> | undefined;
|
|
1613
1719
|
} | {
|
|
1614
1720
|
mode: "photo2video" | "lipSync";
|
|
1615
1721
|
inputs: {
|
|
@@ -1631,6 +1737,26 @@ declare const aiEndpoints: {
|
|
|
1631
1737
|
style?: string | undefined;
|
|
1632
1738
|
negativePrompt?: string | undefined;
|
|
1633
1739
|
parameters?: Record<string, unknown> | undefined;
|
|
1740
|
+
} | {
|
|
1741
|
+
inputs: {
|
|
1742
|
+
person: {
|
|
1743
|
+
url?: string | undefined;
|
|
1744
|
+
base64?: string | undefined;
|
|
1745
|
+
mediaType?: string | undefined;
|
|
1746
|
+
};
|
|
1747
|
+
referenceVideo: {
|
|
1748
|
+
url?: string | undefined;
|
|
1749
|
+
base64?: string | undefined;
|
|
1750
|
+
mediaType?: string | undefined;
|
|
1751
|
+
};
|
|
1752
|
+
};
|
|
1753
|
+
feature: "motionTransfer";
|
|
1754
|
+
count?: 2 | 1 | 4 | undefined;
|
|
1755
|
+
quality?: "standard" | "hd" | "draft" | undefined;
|
|
1756
|
+
seed?: number | undefined;
|
|
1757
|
+
style?: string | undefined;
|
|
1758
|
+
negativePrompt?: string | undefined;
|
|
1759
|
+
parameters?: Record<string, unknown> | undefined;
|
|
1634
1760
|
} | {
|
|
1635
1761
|
text: string;
|
|
1636
1762
|
feature: "tts";
|
|
@@ -1650,6 +1776,26 @@ declare const aiEndpoints: {
|
|
|
1650
1776
|
style?: string | undefined;
|
|
1651
1777
|
negativePrompt?: string | undefined;
|
|
1652
1778
|
parameters?: Record<string, unknown> | undefined;
|
|
1779
|
+
} | {
|
|
1780
|
+
prompt: string;
|
|
1781
|
+
feature: "music";
|
|
1782
|
+
duration?: number | undefined;
|
|
1783
|
+
count?: 2 | 1 | 4 | undefined;
|
|
1784
|
+
quality?: "standard" | "hd" | "draft" | undefined;
|
|
1785
|
+
seed?: number | undefined;
|
|
1786
|
+
style?: string | undefined;
|
|
1787
|
+
negativePrompt?: string | undefined;
|
|
1788
|
+
parameters?: Record<string, unknown> | undefined;
|
|
1789
|
+
} | {
|
|
1790
|
+
prompt: string;
|
|
1791
|
+
feature: "sfx";
|
|
1792
|
+
duration?: number | undefined;
|
|
1793
|
+
count?: 2 | 1 | 4 | undefined;
|
|
1794
|
+
quality?: "standard" | "hd" | "draft" | undefined;
|
|
1795
|
+
seed?: number | undefined;
|
|
1796
|
+
style?: string | undefined;
|
|
1797
|
+
negativePrompt?: string | undefined;
|
|
1798
|
+
parameters?: Record<string, unknown> | undefined;
|
|
1653
1799
|
}, {
|
|
1654
1800
|
success: false;
|
|
1655
1801
|
message: string;
|
|
@@ -1710,7 +1856,7 @@ declare const aiEndpoints: {
|
|
|
1710
1856
|
};
|
|
1711
1857
|
}>;
|
|
1712
1858
|
readonly mediaModels: Endpoint<{
|
|
1713
|
-
feature?: "imageGenerate" | "poster" | "imageEdit" | "upscale" | "outpaint" | "videoGenerate" | "digitalHuman" | "tts" | undefined;
|
|
1859
|
+
feature?: "imageGenerate" | "poster" | "imageEdit" | "upscale" | "outpaint" | "matting" | "videoGenerate" | "videoEdit" | "digitalHuman" | "motionTransfer" | "tts" | "music" | "sfx" | undefined;
|
|
1714
1860
|
}, {
|
|
1715
1861
|
success: false;
|
|
1716
1862
|
message: string;
|
|
@@ -1772,9 +1918,14 @@ declare const mediaFeatureSchema: z.ZodEnum<{
|
|
|
1772
1918
|
imageEdit: "imageEdit";
|
|
1773
1919
|
upscale: "upscale";
|
|
1774
1920
|
outpaint: "outpaint";
|
|
1921
|
+
matting: "matting";
|
|
1775
1922
|
videoGenerate: "videoGenerate";
|
|
1923
|
+
videoEdit: "videoEdit";
|
|
1776
1924
|
digitalHuman: "digitalHuman";
|
|
1925
|
+
motionTransfer: "motionTransfer";
|
|
1777
1926
|
tts: "tts";
|
|
1927
|
+
music: "music";
|
|
1928
|
+
sfx: "sfx";
|
|
1778
1929
|
}>;
|
|
1779
1930
|
/** Supported aspect ratios for media output. */
|
|
1780
1931
|
declare const mediaAspectRatioSchema: z.ZodEnum<{
|
|
@@ -1817,9 +1968,14 @@ declare const mediaGenerateBaseSchema: z.ZodObject<{
|
|
|
1817
1968
|
imageEdit: "imageEdit";
|
|
1818
1969
|
upscale: "upscale";
|
|
1819
1970
|
outpaint: "outpaint";
|
|
1971
|
+
matting: "matting";
|
|
1820
1972
|
videoGenerate: "videoGenerate";
|
|
1973
|
+
videoEdit: "videoEdit";
|
|
1821
1974
|
digitalHuman: "digitalHuman";
|
|
1975
|
+
motionTransfer: "motionTransfer";
|
|
1822
1976
|
tts: "tts";
|
|
1977
|
+
music: "music";
|
|
1978
|
+
sfx: "sfx";
|
|
1823
1979
|
}>;
|
|
1824
1980
|
}, z.core.$strip>;
|
|
1825
1981
|
/** F01: Image generation request. */
|
|
@@ -1974,6 +2130,27 @@ declare const outpaintRequestSchema: z.ZodObject<{
|
|
|
1974
2130
|
parameters: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
1975
2131
|
feature: z.ZodLiteral<"outpaint">;
|
|
1976
2132
|
}, z.core.$strip>;
|
|
2133
|
+
/** F06: Image matting (background removal) request. */
|
|
2134
|
+
declare const mattingRequestSchema: z.ZodObject<{
|
|
2135
|
+
inputs: z.ZodObject<{
|
|
2136
|
+
image: z.ZodObject<{
|
|
2137
|
+
url: z.ZodOptional<z.ZodString>;
|
|
2138
|
+
base64: z.ZodOptional<z.ZodString>;
|
|
2139
|
+
mediaType: z.ZodOptional<z.ZodString>;
|
|
2140
|
+
}, z.core.$strip>;
|
|
2141
|
+
}, z.core.$strip>;
|
|
2142
|
+
count: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<1>, z.ZodLiteral<2>, z.ZodLiteral<4>]>>;
|
|
2143
|
+
quality: z.ZodOptional<z.ZodEnum<{
|
|
2144
|
+
standard: "standard";
|
|
2145
|
+
hd: "hd";
|
|
2146
|
+
draft: "draft";
|
|
2147
|
+
}>>;
|
|
2148
|
+
seed: z.ZodOptional<z.ZodNumber>;
|
|
2149
|
+
style: z.ZodOptional<z.ZodString>;
|
|
2150
|
+
negativePrompt: z.ZodOptional<z.ZodString>;
|
|
2151
|
+
parameters: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
2152
|
+
feature: z.ZodLiteral<"matting">;
|
|
2153
|
+
}, z.core.$strip>;
|
|
1977
2154
|
/** F07: Video generation request. */
|
|
1978
2155
|
declare const videoGenerateRequestSchema: z.ZodObject<{
|
|
1979
2156
|
prompt: z.ZodString;
|
|
@@ -2050,6 +2227,35 @@ declare const videoGenerateRequestSchema: z.ZodObject<{
|
|
|
2050
2227
|
parameters: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
2051
2228
|
feature: z.ZodLiteral<"videoGenerate">;
|
|
2052
2229
|
}, z.core.$strip>;
|
|
2230
|
+
/** F08: Video editing request. */
|
|
2231
|
+
declare const videoEditRequestSchema: z.ZodObject<{
|
|
2232
|
+
prompt: z.ZodOptional<z.ZodString>;
|
|
2233
|
+
mode: z.ZodOptional<z.ZodEnum<{
|
|
2234
|
+
stylize: "stylize";
|
|
2235
|
+
extend: "extend";
|
|
2236
|
+
speedUp: "speedUp";
|
|
2237
|
+
slowDown: "slowDown";
|
|
2238
|
+
}>>;
|
|
2239
|
+
inputs: z.ZodObject<{
|
|
2240
|
+
video: z.ZodObject<{
|
|
2241
|
+
url: z.ZodOptional<z.ZodString>;
|
|
2242
|
+
base64: z.ZodOptional<z.ZodString>;
|
|
2243
|
+
mediaType: z.ZodOptional<z.ZodString>;
|
|
2244
|
+
}, z.core.$strip>;
|
|
2245
|
+
}, z.core.$strip>;
|
|
2246
|
+
duration: z.ZodOptional<z.ZodNumber>;
|
|
2247
|
+
count: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<1>, z.ZodLiteral<2>, z.ZodLiteral<4>]>>;
|
|
2248
|
+
quality: z.ZodOptional<z.ZodEnum<{
|
|
2249
|
+
standard: "standard";
|
|
2250
|
+
hd: "hd";
|
|
2251
|
+
draft: "draft";
|
|
2252
|
+
}>>;
|
|
2253
|
+
seed: z.ZodOptional<z.ZodNumber>;
|
|
2254
|
+
style: z.ZodOptional<z.ZodString>;
|
|
2255
|
+
negativePrompt: z.ZodOptional<z.ZodString>;
|
|
2256
|
+
parameters: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
2257
|
+
feature: z.ZodLiteral<"videoEdit">;
|
|
2258
|
+
}, z.core.$strip>;
|
|
2053
2259
|
/** F09: Digital human (talking head / lip sync) request. */
|
|
2054
2260
|
declare const digitalHumanRequestSchema: z.ZodObject<{
|
|
2055
2261
|
mode: z.ZodEnum<{
|
|
@@ -2080,6 +2286,32 @@ declare const digitalHumanRequestSchema: z.ZodObject<{
|
|
|
2080
2286
|
parameters: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
2081
2287
|
feature: z.ZodLiteral<"digitalHuman">;
|
|
2082
2288
|
}, z.core.$strip>;
|
|
2289
|
+
/** F10: Motion transfer request. */
|
|
2290
|
+
declare const motionTransferRequestSchema: z.ZodObject<{
|
|
2291
|
+
inputs: z.ZodObject<{
|
|
2292
|
+
person: z.ZodObject<{
|
|
2293
|
+
url: z.ZodOptional<z.ZodString>;
|
|
2294
|
+
base64: z.ZodOptional<z.ZodString>;
|
|
2295
|
+
mediaType: z.ZodOptional<z.ZodString>;
|
|
2296
|
+
}, z.core.$strip>;
|
|
2297
|
+
referenceVideo: z.ZodObject<{
|
|
2298
|
+
url: z.ZodOptional<z.ZodString>;
|
|
2299
|
+
base64: z.ZodOptional<z.ZodString>;
|
|
2300
|
+
mediaType: z.ZodOptional<z.ZodString>;
|
|
2301
|
+
}, z.core.$strip>;
|
|
2302
|
+
}, z.core.$strip>;
|
|
2303
|
+
count: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<1>, z.ZodLiteral<2>, z.ZodLiteral<4>]>>;
|
|
2304
|
+
quality: z.ZodOptional<z.ZodEnum<{
|
|
2305
|
+
standard: "standard";
|
|
2306
|
+
hd: "hd";
|
|
2307
|
+
draft: "draft";
|
|
2308
|
+
}>>;
|
|
2309
|
+
seed: z.ZodOptional<z.ZodNumber>;
|
|
2310
|
+
style: z.ZodOptional<z.ZodString>;
|
|
2311
|
+
negativePrompt: z.ZodOptional<z.ZodString>;
|
|
2312
|
+
parameters: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
2313
|
+
feature: z.ZodLiteral<"motionTransfer">;
|
|
2314
|
+
}, z.core.$strip>;
|
|
2083
2315
|
/** F11: Text-to-speech request. */
|
|
2084
2316
|
declare const ttsRequestSchema: z.ZodObject<{
|
|
2085
2317
|
text: z.ZodString;
|
|
@@ -2109,6 +2341,38 @@ declare const ttsRequestSchema: z.ZodObject<{
|
|
|
2109
2341
|
parameters: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
2110
2342
|
feature: z.ZodLiteral<"tts">;
|
|
2111
2343
|
}, z.core.$strip>;
|
|
2344
|
+
/** F12: Music generation request. */
|
|
2345
|
+
declare const musicRequestSchema: z.ZodObject<{
|
|
2346
|
+
prompt: z.ZodString;
|
|
2347
|
+
duration: z.ZodOptional<z.ZodNumber>;
|
|
2348
|
+
count: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<1>, z.ZodLiteral<2>, z.ZodLiteral<4>]>>;
|
|
2349
|
+
quality: z.ZodOptional<z.ZodEnum<{
|
|
2350
|
+
standard: "standard";
|
|
2351
|
+
hd: "hd";
|
|
2352
|
+
draft: "draft";
|
|
2353
|
+
}>>;
|
|
2354
|
+
seed: z.ZodOptional<z.ZodNumber>;
|
|
2355
|
+
style: z.ZodOptional<z.ZodString>;
|
|
2356
|
+
negativePrompt: z.ZodOptional<z.ZodString>;
|
|
2357
|
+
parameters: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
2358
|
+
feature: z.ZodLiteral<"music">;
|
|
2359
|
+
}, z.core.$strip>;
|
|
2360
|
+
/** F13: Sound effect generation request. */
|
|
2361
|
+
declare const sfxRequestSchema: z.ZodObject<{
|
|
2362
|
+
prompt: z.ZodString;
|
|
2363
|
+
duration: z.ZodOptional<z.ZodNumber>;
|
|
2364
|
+
count: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<1>, z.ZodLiteral<2>, z.ZodLiteral<4>]>>;
|
|
2365
|
+
quality: z.ZodOptional<z.ZodEnum<{
|
|
2366
|
+
standard: "standard";
|
|
2367
|
+
hd: "hd";
|
|
2368
|
+
draft: "draft";
|
|
2369
|
+
}>>;
|
|
2370
|
+
seed: z.ZodOptional<z.ZodNumber>;
|
|
2371
|
+
style: z.ZodOptional<z.ZodString>;
|
|
2372
|
+
negativePrompt: z.ZodOptional<z.ZodString>;
|
|
2373
|
+
parameters: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
2374
|
+
feature: z.ZodLiteral<"sfx">;
|
|
2375
|
+
}, z.core.$strip>;
|
|
2112
2376
|
/** Discriminated union of all media generation feature requests. */
|
|
2113
2377
|
declare const mediaGenerateRequestSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
2114
2378
|
prompt: z.ZodString;
|
|
@@ -2252,6 +2516,25 @@ declare const mediaGenerateRequestSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
2252
2516
|
negativePrompt: z.ZodOptional<z.ZodString>;
|
|
2253
2517
|
parameters: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
2254
2518
|
feature: z.ZodLiteral<"outpaint">;
|
|
2519
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
2520
|
+
inputs: z.ZodObject<{
|
|
2521
|
+
image: z.ZodObject<{
|
|
2522
|
+
url: z.ZodOptional<z.ZodString>;
|
|
2523
|
+
base64: z.ZodOptional<z.ZodString>;
|
|
2524
|
+
mediaType: z.ZodOptional<z.ZodString>;
|
|
2525
|
+
}, z.core.$strip>;
|
|
2526
|
+
}, z.core.$strip>;
|
|
2527
|
+
count: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<1>, z.ZodLiteral<2>, z.ZodLiteral<4>]>>;
|
|
2528
|
+
quality: z.ZodOptional<z.ZodEnum<{
|
|
2529
|
+
standard: "standard";
|
|
2530
|
+
hd: "hd";
|
|
2531
|
+
draft: "draft";
|
|
2532
|
+
}>>;
|
|
2533
|
+
seed: z.ZodOptional<z.ZodNumber>;
|
|
2534
|
+
style: z.ZodOptional<z.ZodString>;
|
|
2535
|
+
negativePrompt: z.ZodOptional<z.ZodString>;
|
|
2536
|
+
parameters: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
2537
|
+
feature: z.ZodLiteral<"matting">;
|
|
2255
2538
|
}, z.core.$strip>, z.ZodObject<{
|
|
2256
2539
|
prompt: z.ZodString;
|
|
2257
2540
|
aspectRatio: z.ZodOptional<z.ZodEnum<{
|
|
@@ -2326,6 +2609,33 @@ declare const mediaGenerateRequestSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
2326
2609
|
negativePrompt: z.ZodOptional<z.ZodString>;
|
|
2327
2610
|
parameters: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
2328
2611
|
feature: z.ZodLiteral<"videoGenerate">;
|
|
2612
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
2613
|
+
prompt: z.ZodOptional<z.ZodString>;
|
|
2614
|
+
mode: z.ZodOptional<z.ZodEnum<{
|
|
2615
|
+
stylize: "stylize";
|
|
2616
|
+
extend: "extend";
|
|
2617
|
+
speedUp: "speedUp";
|
|
2618
|
+
slowDown: "slowDown";
|
|
2619
|
+
}>>;
|
|
2620
|
+
inputs: z.ZodObject<{
|
|
2621
|
+
video: z.ZodObject<{
|
|
2622
|
+
url: z.ZodOptional<z.ZodString>;
|
|
2623
|
+
base64: z.ZodOptional<z.ZodString>;
|
|
2624
|
+
mediaType: z.ZodOptional<z.ZodString>;
|
|
2625
|
+
}, z.core.$strip>;
|
|
2626
|
+
}, z.core.$strip>;
|
|
2627
|
+
duration: z.ZodOptional<z.ZodNumber>;
|
|
2628
|
+
count: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<1>, z.ZodLiteral<2>, z.ZodLiteral<4>]>>;
|
|
2629
|
+
quality: z.ZodOptional<z.ZodEnum<{
|
|
2630
|
+
standard: "standard";
|
|
2631
|
+
hd: "hd";
|
|
2632
|
+
draft: "draft";
|
|
2633
|
+
}>>;
|
|
2634
|
+
seed: z.ZodOptional<z.ZodNumber>;
|
|
2635
|
+
style: z.ZodOptional<z.ZodString>;
|
|
2636
|
+
negativePrompt: z.ZodOptional<z.ZodString>;
|
|
2637
|
+
parameters: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
2638
|
+
feature: z.ZodLiteral<"videoEdit">;
|
|
2329
2639
|
}, z.core.$strip>, z.ZodObject<{
|
|
2330
2640
|
mode: z.ZodEnum<{
|
|
2331
2641
|
photo2video: "photo2video";
|
|
@@ -2354,6 +2664,30 @@ declare const mediaGenerateRequestSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
2354
2664
|
negativePrompt: z.ZodOptional<z.ZodString>;
|
|
2355
2665
|
parameters: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
2356
2666
|
feature: z.ZodLiteral<"digitalHuman">;
|
|
2667
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
2668
|
+
inputs: z.ZodObject<{
|
|
2669
|
+
person: z.ZodObject<{
|
|
2670
|
+
url: z.ZodOptional<z.ZodString>;
|
|
2671
|
+
base64: z.ZodOptional<z.ZodString>;
|
|
2672
|
+
mediaType: z.ZodOptional<z.ZodString>;
|
|
2673
|
+
}, z.core.$strip>;
|
|
2674
|
+
referenceVideo: z.ZodObject<{
|
|
2675
|
+
url: z.ZodOptional<z.ZodString>;
|
|
2676
|
+
base64: z.ZodOptional<z.ZodString>;
|
|
2677
|
+
mediaType: z.ZodOptional<z.ZodString>;
|
|
2678
|
+
}, z.core.$strip>;
|
|
2679
|
+
}, z.core.$strip>;
|
|
2680
|
+
count: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<1>, z.ZodLiteral<2>, z.ZodLiteral<4>]>>;
|
|
2681
|
+
quality: z.ZodOptional<z.ZodEnum<{
|
|
2682
|
+
standard: "standard";
|
|
2683
|
+
hd: "hd";
|
|
2684
|
+
draft: "draft";
|
|
2685
|
+
}>>;
|
|
2686
|
+
seed: z.ZodOptional<z.ZodNumber>;
|
|
2687
|
+
style: z.ZodOptional<z.ZodString>;
|
|
2688
|
+
negativePrompt: z.ZodOptional<z.ZodString>;
|
|
2689
|
+
parameters: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
2690
|
+
feature: z.ZodLiteral<"motionTransfer">;
|
|
2357
2691
|
}, z.core.$strip>, z.ZodObject<{
|
|
2358
2692
|
text: z.ZodString;
|
|
2359
2693
|
voice: z.ZodOptional<z.ZodString>;
|
|
@@ -2381,6 +2715,34 @@ declare const mediaGenerateRequestSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
2381
2715
|
negativePrompt: z.ZodOptional<z.ZodString>;
|
|
2382
2716
|
parameters: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
2383
2717
|
feature: z.ZodLiteral<"tts">;
|
|
2718
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
2719
|
+
prompt: z.ZodString;
|
|
2720
|
+
duration: z.ZodOptional<z.ZodNumber>;
|
|
2721
|
+
count: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<1>, z.ZodLiteral<2>, z.ZodLiteral<4>]>>;
|
|
2722
|
+
quality: z.ZodOptional<z.ZodEnum<{
|
|
2723
|
+
standard: "standard";
|
|
2724
|
+
hd: "hd";
|
|
2725
|
+
draft: "draft";
|
|
2726
|
+
}>>;
|
|
2727
|
+
seed: z.ZodOptional<z.ZodNumber>;
|
|
2728
|
+
style: z.ZodOptional<z.ZodString>;
|
|
2729
|
+
negativePrompt: z.ZodOptional<z.ZodString>;
|
|
2730
|
+
parameters: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
2731
|
+
feature: z.ZodLiteral<"music">;
|
|
2732
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
2733
|
+
prompt: z.ZodString;
|
|
2734
|
+
duration: z.ZodOptional<z.ZodNumber>;
|
|
2735
|
+
count: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<1>, z.ZodLiteral<2>, z.ZodLiteral<4>]>>;
|
|
2736
|
+
quality: z.ZodOptional<z.ZodEnum<{
|
|
2737
|
+
standard: "standard";
|
|
2738
|
+
hd: "hd";
|
|
2739
|
+
draft: "draft";
|
|
2740
|
+
}>>;
|
|
2741
|
+
seed: z.ZodOptional<z.ZodNumber>;
|
|
2742
|
+
style: z.ZodOptional<z.ZodString>;
|
|
2743
|
+
negativePrompt: z.ZodOptional<z.ZodString>;
|
|
2744
|
+
parameters: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
2745
|
+
feature: z.ZodLiteral<"sfx">;
|
|
2384
2746
|
}, z.core.$strip>], "feature">;
|
|
2385
2747
|
/** Task status within a task group. */
|
|
2386
2748
|
declare const mediaTaskStatusSchema: z.ZodEnum<{
|
|
@@ -2488,9 +2850,14 @@ declare const mediaModelsQuerySchema: z.ZodObject<{
|
|
|
2488
2850
|
imageEdit: "imageEdit";
|
|
2489
2851
|
upscale: "upscale";
|
|
2490
2852
|
outpaint: "outpaint";
|
|
2853
|
+
matting: "matting";
|
|
2491
2854
|
videoGenerate: "videoGenerate";
|
|
2855
|
+
videoEdit: "videoEdit";
|
|
2492
2856
|
digitalHuman: "digitalHuman";
|
|
2857
|
+
motionTransfer: "motionTransfer";
|
|
2493
2858
|
tts: "tts";
|
|
2859
|
+
music: "music";
|
|
2860
|
+
sfx: "sfx";
|
|
2494
2861
|
}>>;
|
|
2495
2862
|
}, z.core.$strip>;
|
|
2496
2863
|
/** All supported media generation features. */
|
|
@@ -2513,12 +2880,22 @@ type ImageEditRequest = z.infer<typeof imageEditRequestSchema>;
|
|
|
2513
2880
|
type UpscaleRequest = z.infer<typeof upscaleRequestSchema>;
|
|
2514
2881
|
/** F05: Image outpaint request. */
|
|
2515
2882
|
type OutpaintRequest = z.infer<typeof outpaintRequestSchema>;
|
|
2883
|
+
/** F06: Image matting request. */
|
|
2884
|
+
type MattingRequest = z.infer<typeof mattingRequestSchema>;
|
|
2516
2885
|
/** F07: Video generation request. */
|
|
2517
2886
|
type VideoGenerateRequest = z.infer<typeof videoGenerateRequestSchema>;
|
|
2887
|
+
/** F08: Video editing request. */
|
|
2888
|
+
type VideoEditRequest = z.infer<typeof videoEditRequestSchema>;
|
|
2518
2889
|
/** F09: Digital human request. */
|
|
2519
2890
|
type DigitalHumanRequest = z.infer<typeof digitalHumanRequestSchema>;
|
|
2891
|
+
/** F10: Motion transfer request. */
|
|
2892
|
+
type MotionTransferRequest = z.infer<typeof motionTransferRequestSchema>;
|
|
2520
2893
|
/** F11: Text-to-speech request. */
|
|
2521
2894
|
type TtsRequest = z.infer<typeof ttsRequestSchema>;
|
|
2895
|
+
/** F12: Music generation request. */
|
|
2896
|
+
type MusicRequest = z.infer<typeof musicRequestSchema>;
|
|
2897
|
+
/** F13: Sound effect generation request. */
|
|
2898
|
+
type SfxRequest = z.infer<typeof sfxRequestSchema>;
|
|
2522
2899
|
/** Discriminated union of all media generation requests. */
|
|
2523
2900
|
type MediaGenerateRequest = z.infer<typeof mediaGenerateRequestSchema>;
|
|
2524
2901
|
/** Individual task within a task group. */
|
|
@@ -4240,6 +4617,7 @@ type index$6_AiVideoRequest = AiVideoRequest;
|
|
|
4240
4617
|
type index$6_DigitalHumanRequest = DigitalHumanRequest;
|
|
4241
4618
|
type index$6_ImageEditRequest = ImageEditRequest;
|
|
4242
4619
|
type index$6_ImageGenerateRequest = ImageGenerateRequest;
|
|
4620
|
+
type index$6_MattingRequest = MattingRequest;
|
|
4243
4621
|
type index$6_MediaAspectRatio = MediaAspectRatio;
|
|
4244
4622
|
type index$6_MediaFeature = MediaFeature;
|
|
4245
4623
|
type index$6_MediaGenerateBase = MediaGenerateBase;
|
|
@@ -4251,10 +4629,14 @@ type index$6_MediaTaskGroupData = MediaTaskGroupData;
|
|
|
4251
4629
|
type index$6_MediaTaskGroupResponse = MediaTaskGroupResponse;
|
|
4252
4630
|
type index$6_MediaTaskGroupSuccess = MediaTaskGroupSuccess;
|
|
4253
4631
|
type index$6_MediaTaskItem = MediaTaskItem;
|
|
4632
|
+
type index$6_MotionTransferRequest = MotionTransferRequest;
|
|
4633
|
+
type index$6_MusicRequest = MusicRequest;
|
|
4254
4634
|
type index$6_OutpaintRequest = OutpaintRequest;
|
|
4255
4635
|
type index$6_PosterRequest = PosterRequest;
|
|
4636
|
+
type index$6_SfxRequest = SfxRequest;
|
|
4256
4637
|
type index$6_TtsRequest = TtsRequest;
|
|
4257
4638
|
type index$6_UpscaleRequest = UpscaleRequest;
|
|
4639
|
+
type index$6_VideoEditRequest = VideoEditRequest;
|
|
4258
4640
|
type index$6_VideoGenerateRequest = VideoGenerateRequest;
|
|
4259
4641
|
declare const index$6_aiAudioOutputSchema: typeof aiAudioOutputSchema;
|
|
4260
4642
|
declare const index$6_aiAudioRequestSchema: typeof aiAudioRequestSchema;
|
|
@@ -4312,6 +4694,7 @@ declare const index$6_aiVideoRequestSchema: typeof aiVideoRequestSchema;
|
|
|
4312
4694
|
declare const index$6_digitalHumanRequestSchema: typeof digitalHumanRequestSchema;
|
|
4313
4695
|
declare const index$6_imageEditRequestSchema: typeof imageEditRequestSchema;
|
|
4314
4696
|
declare const index$6_imageGenerateRequestSchema: typeof imageGenerateRequestSchema;
|
|
4697
|
+
declare const index$6_mattingRequestSchema: typeof mattingRequestSchema;
|
|
4315
4698
|
declare const index$6_mediaAspectRatioSchema: typeof mediaAspectRatioSchema;
|
|
4316
4699
|
declare const index$6_mediaFeatureSchema: typeof mediaFeatureSchema;
|
|
4317
4700
|
declare const index$6_mediaGenerateBaseSchema: typeof mediaGenerateBaseSchema;
|
|
@@ -4324,13 +4707,17 @@ declare const index$6_mediaTaskGroupResponseSchema: typeof mediaTaskGroupRespons
|
|
|
4324
4707
|
declare const index$6_mediaTaskGroupSuccessSchema: typeof mediaTaskGroupSuccessSchema;
|
|
4325
4708
|
declare const index$6_mediaTaskItemSchema: typeof mediaTaskItemSchema;
|
|
4326
4709
|
declare const index$6_mediaTaskStatusSchema: typeof mediaTaskStatusSchema;
|
|
4710
|
+
declare const index$6_motionTransferRequestSchema: typeof motionTransferRequestSchema;
|
|
4711
|
+
declare const index$6_musicRequestSchema: typeof musicRequestSchema;
|
|
4327
4712
|
declare const index$6_outpaintRequestSchema: typeof outpaintRequestSchema;
|
|
4328
4713
|
declare const index$6_posterRequestSchema: typeof posterRequestSchema;
|
|
4714
|
+
declare const index$6_sfxRequestSchema: typeof sfxRequestSchema;
|
|
4329
4715
|
declare const index$6_ttsRequestSchema: typeof ttsRequestSchema;
|
|
4330
4716
|
declare const index$6_upscaleRequestSchema: typeof upscaleRequestSchema;
|
|
4717
|
+
declare const index$6_videoEditRequestSchema: typeof videoEditRequestSchema;
|
|
4331
4718
|
declare const index$6_videoGenerateRequestSchema: typeof videoGenerateRequestSchema;
|
|
4332
4719
|
declare namespace index$6 {
|
|
4333
|
-
export { index$6_AI_MODEL_CAPABILITY_INPUT_KEYS as AI_MODEL_CAPABILITY_INPUT_KEYS, index$6_AI_MODEL_CAPABILITY_OUTPUT_KEYS as AI_MODEL_CAPABILITY_OUTPUT_KEYS, index$6_AI_MODEL_TAGS as AI_MODEL_TAGS, index$6_AI_MODEL_TAG_LABELS as AI_MODEL_TAG_LABELS, type index$6_AiAudioOutput as AiAudioOutput, type index$6_AiAudioRequest as AiAudioRequest, type index$6_AiChatCompletionsRequest as AiChatCompletionsRequest, type index$6_AiChatModel as AiChatModel, type index$6_AiChatModelsResponse as AiChatModelsResponse, type index$6_AiChatSessionMetadata as AiChatSessionMetadata, index$6_AiClient as AiClient, type index$6_AiClientMetadata as AiClientMetadata, type index$6_AiFileUploadResponse as AiFileUploadResponse, type index$6_AiImageInputs as AiImageInputs, type index$6_AiImageOutput as AiImageOutput, type index$6_AiImageRequest as AiImageRequest, type index$6_AiMediaInput as AiMediaInput, type index$6_AiModel as AiModel, type index$6_AiModelCapabilities as AiModelCapabilities, type index$6_AiModelCapabilitiesInput as AiModelCapabilitiesInput, type index$6_AiModelCapabilitiesOutput as AiModelCapabilitiesOutput, type index$6_AiModelCapabilityInputKey as AiModelCapabilityInputKey, type index$6_AiModelCapabilityOutputKey as AiModelCapabilityOutputKey, type index$6_AiModelTag as AiModelTag, type index$6_AiModelsResponse as AiModelsResponse, type index$6_AiModelsUpdatedAtData as AiModelsUpdatedAtData, type index$6_AiModelsUpdatedAtResponse as AiModelsUpdatedAtResponse, type index$6_AiProviderTemplate as AiProviderTemplate, type index$6_AiProviderTemplateModel as AiProviderTemplateModel, type index$6_AiProviderTemplatesResponse as AiProviderTemplatesResponse, type index$6_AiResponsesRequest as AiResponsesRequest, type index$6_AiTaskCancelResponse as AiTaskCancelResponse, type index$6_AiTaskCreatedResponse as AiTaskCreatedResponse, type index$6_AiTaskResponse as AiTaskResponse, type index$6_AiVideoInputs as AiVideoInputs, type index$6_AiVideoOutput as AiVideoOutput, type index$6_AiVideoRequest as AiVideoRequest, type index$6_DigitalHumanRequest as DigitalHumanRequest, type index$6_ImageEditRequest as ImageEditRequest, type index$6_ImageGenerateRequest as ImageGenerateRequest, type index$6_MediaAspectRatio as MediaAspectRatio, type index$6_MediaFeature as MediaFeature, type index$6_MediaGenerateBase as MediaGenerateBase, type index$6_MediaGenerateRequest as MediaGenerateRequest, type index$6_MediaModelsQuery as MediaModelsQuery, type index$6_MediaQuality as MediaQuality, type index$6_MediaResolution as MediaResolution, type index$6_MediaTaskGroupData as MediaTaskGroupData, type index$6_MediaTaskGroupResponse as MediaTaskGroupResponse, type index$6_MediaTaskGroupSuccess as MediaTaskGroupSuccess, type index$6_MediaTaskItem as MediaTaskItem, type index$6_OutpaintRequest as OutpaintRequest, type index$6_PosterRequest as PosterRequest, type index$6_TtsRequest as TtsRequest, type index$6_UpscaleRequest as UpscaleRequest, type index$6_VideoGenerateRequest as VideoGenerateRequest, index$6_aiAudioOutputSchema as aiAudioOutputSchema, index$6_aiAudioRequestSchema as aiAudioRequestSchema, index$6_aiChatCompletionsRequestSchema as aiChatCompletionsRequestSchema, index$6_aiChatModelSchema as aiChatModelSchema, index$6_aiChatModelsPayloadSchema as aiChatModelsPayloadSchema, index$6_aiChatModelsResponseSchema as aiChatModelsResponseSchema, index$6_aiChatModelsSuccessSchema as aiChatModelsSuccessSchema, index$6_aiChatSessionMetadataSchema as aiChatSessionMetadataSchema, index$6_aiClientMetadataSchema as aiClientMetadataSchema, index$6_aiEndpoints as aiEndpoints, index$6_aiErrorResponseSchema as aiErrorResponseSchema, index$6_aiImageInputsSchema as aiImageInputsSchema, index$6_aiImageOutputSchema as aiImageOutputSchema, index$6_aiImageRequestSchema as aiImageRequestSchema, index$6_aiMediaInputSchema as aiMediaInputSchema, index$6_aiModelCapabilitiesInputSchema as aiModelCapabilitiesInputSchema, index$6_aiModelCapabilitiesOutputSchema as aiModelCapabilitiesOutputSchema, index$6_aiModelCapabilitiesSchema as aiModelCapabilitiesSchema, index$6_aiModelCapabilityCommonSchema as aiModelCapabilityCommonSchema, index$6_aiModelParameterFieldSchema as aiModelParameterFieldSchema, index$6_aiModelParamsSchema as aiModelParamsSchema, index$6_aiModelSchema as aiModelSchema, index$6_aiModelsPayloadSchema as aiModelsPayloadSchema, index$6_aiModelsRequestSchema as aiModelsRequestSchema, index$6_aiModelsResponseSchema as aiModelsResponseSchema, index$6_aiModelsSuccessSchema as aiModelsSuccessSchema, index$6_aiModelsUpdatedAtDataSchema as aiModelsUpdatedAtDataSchema, index$6_aiModelsUpdatedAtResponseSchema as aiModelsUpdatedAtResponseSchema, index$6_aiModelsUpdatedAtSuccessSchema as aiModelsUpdatedAtSuccessSchema, index$6_aiProviderTemplateModelSchema as aiProviderTemplateModelSchema, index$6_aiProviderTemplateSchema as aiProviderTemplateSchema, index$6_aiProviderTemplatesPayloadSchema as aiProviderTemplatesPayloadSchema, index$6_aiProviderTemplatesRequestSchema as aiProviderTemplatesRequestSchema, index$6_aiProviderTemplatesResponseSchema as aiProviderTemplatesResponseSchema, index$6_aiProviderTemplatesSuccessSchema as aiProviderTemplatesSuccessSchema, index$6_aiResponsesRequestSchema as aiResponsesRequestSchema, index$6_aiTaskCancelDataSchema as aiTaskCancelDataSchema, index$6_aiTaskCancelRequestSchema as aiTaskCancelRequestSchema, index$6_aiTaskCancelResponseSchema as aiTaskCancelResponseSchema, index$6_aiTaskCancelSuccessSchema as aiTaskCancelSuccessSchema, index$6_aiTaskCreatedDataSchema as aiTaskCreatedDataSchema, index$6_aiTaskCreatedResponseSchema as aiTaskCreatedResponseSchema, index$6_aiTaskCreatedSuccessSchema as aiTaskCreatedSuccessSchema, index$6_aiTaskDataSchema as aiTaskDataSchema, index$6_aiTaskErrorSchema as aiTaskErrorSchema, index$6_aiTaskRequestSchema as aiTaskRequestSchema, index$6_aiTaskResponseSchema as aiTaskResponseSchema, index$6_aiTaskResultTypeSchema as aiTaskResultTypeSchema, index$6_aiTaskStatusSchema as aiTaskStatusSchema, index$6_aiTaskSuccessSchema as aiTaskSuccessSchema, index$6_aiVideoInputsSchema as aiVideoInputsSchema, index$6_aiVideoOutputSchema as aiVideoOutputSchema, index$6_aiVideoRequestSchema as aiVideoRequestSchema, index$6_digitalHumanRequestSchema as digitalHumanRequestSchema, index$6_imageEditRequestSchema as imageEditRequestSchema, index$6_imageGenerateRequestSchema as imageGenerateRequestSchema, index$6_mediaAspectRatioSchema as mediaAspectRatioSchema, index$6_mediaFeatureSchema as mediaFeatureSchema, index$6_mediaGenerateBaseSchema as mediaGenerateBaseSchema, index$6_mediaGenerateRequestSchema as mediaGenerateRequestSchema, index$6_mediaModelsQuerySchema as mediaModelsQuerySchema, index$6_mediaQualitySchema as mediaQualitySchema, index$6_mediaResolutionSchema as mediaResolutionSchema, index$6_mediaTaskGroupDataSchema as mediaTaskGroupDataSchema, index$6_mediaTaskGroupResponseSchema as mediaTaskGroupResponseSchema, index$6_mediaTaskGroupSuccessSchema as mediaTaskGroupSuccessSchema, index$6_mediaTaskItemSchema as mediaTaskItemSchema, index$6_mediaTaskStatusSchema as mediaTaskStatusSchema, index$6_outpaintRequestSchema as outpaintRequestSchema, index$6_posterRequestSchema as posterRequestSchema, index$6_ttsRequestSchema as ttsRequestSchema, index$6_upscaleRequestSchema as upscaleRequestSchema, index$6_videoGenerateRequestSchema as videoGenerateRequestSchema };
|
|
4720
|
+
export { index$6_AI_MODEL_CAPABILITY_INPUT_KEYS as AI_MODEL_CAPABILITY_INPUT_KEYS, index$6_AI_MODEL_CAPABILITY_OUTPUT_KEYS as AI_MODEL_CAPABILITY_OUTPUT_KEYS, index$6_AI_MODEL_TAGS as AI_MODEL_TAGS, index$6_AI_MODEL_TAG_LABELS as AI_MODEL_TAG_LABELS, type index$6_AiAudioOutput as AiAudioOutput, type index$6_AiAudioRequest as AiAudioRequest, type index$6_AiChatCompletionsRequest as AiChatCompletionsRequest, type index$6_AiChatModel as AiChatModel, type index$6_AiChatModelsResponse as AiChatModelsResponse, type index$6_AiChatSessionMetadata as AiChatSessionMetadata, index$6_AiClient as AiClient, type index$6_AiClientMetadata as AiClientMetadata, type index$6_AiFileUploadResponse as AiFileUploadResponse, type index$6_AiImageInputs as AiImageInputs, type index$6_AiImageOutput as AiImageOutput, type index$6_AiImageRequest as AiImageRequest, type index$6_AiMediaInput as AiMediaInput, type index$6_AiModel as AiModel, type index$6_AiModelCapabilities as AiModelCapabilities, type index$6_AiModelCapabilitiesInput as AiModelCapabilitiesInput, type index$6_AiModelCapabilitiesOutput as AiModelCapabilitiesOutput, type index$6_AiModelCapabilityInputKey as AiModelCapabilityInputKey, type index$6_AiModelCapabilityOutputKey as AiModelCapabilityOutputKey, type index$6_AiModelTag as AiModelTag, type index$6_AiModelsResponse as AiModelsResponse, type index$6_AiModelsUpdatedAtData as AiModelsUpdatedAtData, type index$6_AiModelsUpdatedAtResponse as AiModelsUpdatedAtResponse, type index$6_AiProviderTemplate as AiProviderTemplate, type index$6_AiProviderTemplateModel as AiProviderTemplateModel, type index$6_AiProviderTemplatesResponse as AiProviderTemplatesResponse, type index$6_AiResponsesRequest as AiResponsesRequest, type index$6_AiTaskCancelResponse as AiTaskCancelResponse, type index$6_AiTaskCreatedResponse as AiTaskCreatedResponse, type index$6_AiTaskResponse as AiTaskResponse, type index$6_AiVideoInputs as AiVideoInputs, type index$6_AiVideoOutput as AiVideoOutput, type index$6_AiVideoRequest as AiVideoRequest, type index$6_DigitalHumanRequest as DigitalHumanRequest, type index$6_ImageEditRequest as ImageEditRequest, type index$6_ImageGenerateRequest as ImageGenerateRequest, type index$6_MattingRequest as MattingRequest, type index$6_MediaAspectRatio as MediaAspectRatio, type index$6_MediaFeature as MediaFeature, type index$6_MediaGenerateBase as MediaGenerateBase, type index$6_MediaGenerateRequest as MediaGenerateRequest, type index$6_MediaModelsQuery as MediaModelsQuery, type index$6_MediaQuality as MediaQuality, type index$6_MediaResolution as MediaResolution, type index$6_MediaTaskGroupData as MediaTaskGroupData, type index$6_MediaTaskGroupResponse as MediaTaskGroupResponse, type index$6_MediaTaskGroupSuccess as MediaTaskGroupSuccess, type index$6_MediaTaskItem as MediaTaskItem, type index$6_MotionTransferRequest as MotionTransferRequest, type index$6_MusicRequest as MusicRequest, type index$6_OutpaintRequest as OutpaintRequest, type index$6_PosterRequest as PosterRequest, type index$6_SfxRequest as SfxRequest, type index$6_TtsRequest as TtsRequest, type index$6_UpscaleRequest as UpscaleRequest, type index$6_VideoEditRequest as VideoEditRequest, type index$6_VideoGenerateRequest as VideoGenerateRequest, index$6_aiAudioOutputSchema as aiAudioOutputSchema, index$6_aiAudioRequestSchema as aiAudioRequestSchema, index$6_aiChatCompletionsRequestSchema as aiChatCompletionsRequestSchema, index$6_aiChatModelSchema as aiChatModelSchema, index$6_aiChatModelsPayloadSchema as aiChatModelsPayloadSchema, index$6_aiChatModelsResponseSchema as aiChatModelsResponseSchema, index$6_aiChatModelsSuccessSchema as aiChatModelsSuccessSchema, index$6_aiChatSessionMetadataSchema as aiChatSessionMetadataSchema, index$6_aiClientMetadataSchema as aiClientMetadataSchema, index$6_aiEndpoints as aiEndpoints, index$6_aiErrorResponseSchema as aiErrorResponseSchema, index$6_aiImageInputsSchema as aiImageInputsSchema, index$6_aiImageOutputSchema as aiImageOutputSchema, index$6_aiImageRequestSchema as aiImageRequestSchema, index$6_aiMediaInputSchema as aiMediaInputSchema, index$6_aiModelCapabilitiesInputSchema as aiModelCapabilitiesInputSchema, index$6_aiModelCapabilitiesOutputSchema as aiModelCapabilitiesOutputSchema, index$6_aiModelCapabilitiesSchema as aiModelCapabilitiesSchema, index$6_aiModelCapabilityCommonSchema as aiModelCapabilityCommonSchema, index$6_aiModelParameterFieldSchema as aiModelParameterFieldSchema, index$6_aiModelParamsSchema as aiModelParamsSchema, index$6_aiModelSchema as aiModelSchema, index$6_aiModelsPayloadSchema as aiModelsPayloadSchema, index$6_aiModelsRequestSchema as aiModelsRequestSchema, index$6_aiModelsResponseSchema as aiModelsResponseSchema, index$6_aiModelsSuccessSchema as aiModelsSuccessSchema, index$6_aiModelsUpdatedAtDataSchema as aiModelsUpdatedAtDataSchema, index$6_aiModelsUpdatedAtResponseSchema as aiModelsUpdatedAtResponseSchema, index$6_aiModelsUpdatedAtSuccessSchema as aiModelsUpdatedAtSuccessSchema, index$6_aiProviderTemplateModelSchema as aiProviderTemplateModelSchema, index$6_aiProviderTemplateSchema as aiProviderTemplateSchema, index$6_aiProviderTemplatesPayloadSchema as aiProviderTemplatesPayloadSchema, index$6_aiProviderTemplatesRequestSchema as aiProviderTemplatesRequestSchema, index$6_aiProviderTemplatesResponseSchema as aiProviderTemplatesResponseSchema, index$6_aiProviderTemplatesSuccessSchema as aiProviderTemplatesSuccessSchema, index$6_aiResponsesRequestSchema as aiResponsesRequestSchema, index$6_aiTaskCancelDataSchema as aiTaskCancelDataSchema, index$6_aiTaskCancelRequestSchema as aiTaskCancelRequestSchema, index$6_aiTaskCancelResponseSchema as aiTaskCancelResponseSchema, index$6_aiTaskCancelSuccessSchema as aiTaskCancelSuccessSchema, index$6_aiTaskCreatedDataSchema as aiTaskCreatedDataSchema, index$6_aiTaskCreatedResponseSchema as aiTaskCreatedResponseSchema, index$6_aiTaskCreatedSuccessSchema as aiTaskCreatedSuccessSchema, index$6_aiTaskDataSchema as aiTaskDataSchema, index$6_aiTaskErrorSchema as aiTaskErrorSchema, index$6_aiTaskRequestSchema as aiTaskRequestSchema, index$6_aiTaskResponseSchema as aiTaskResponseSchema, index$6_aiTaskResultTypeSchema as aiTaskResultTypeSchema, index$6_aiTaskStatusSchema as aiTaskStatusSchema, index$6_aiTaskSuccessSchema as aiTaskSuccessSchema, index$6_aiVideoInputsSchema as aiVideoInputsSchema, index$6_aiVideoOutputSchema as aiVideoOutputSchema, index$6_aiVideoRequestSchema as aiVideoRequestSchema, index$6_digitalHumanRequestSchema as digitalHumanRequestSchema, index$6_imageEditRequestSchema as imageEditRequestSchema, index$6_imageGenerateRequestSchema as imageGenerateRequestSchema, index$6_mattingRequestSchema as mattingRequestSchema, index$6_mediaAspectRatioSchema as mediaAspectRatioSchema, index$6_mediaFeatureSchema as mediaFeatureSchema, index$6_mediaGenerateBaseSchema as mediaGenerateBaseSchema, index$6_mediaGenerateRequestSchema as mediaGenerateRequestSchema, index$6_mediaModelsQuerySchema as mediaModelsQuerySchema, index$6_mediaQualitySchema as mediaQualitySchema, index$6_mediaResolutionSchema as mediaResolutionSchema, index$6_mediaTaskGroupDataSchema as mediaTaskGroupDataSchema, index$6_mediaTaskGroupResponseSchema as mediaTaskGroupResponseSchema, index$6_mediaTaskGroupSuccessSchema as mediaTaskGroupSuccessSchema, index$6_mediaTaskItemSchema as mediaTaskItemSchema, index$6_mediaTaskStatusSchema as mediaTaskStatusSchema, index$6_motionTransferRequestSchema as motionTransferRequestSchema, index$6_musicRequestSchema as musicRequestSchema, index$6_outpaintRequestSchema as outpaintRequestSchema, index$6_posterRequestSchema as posterRequestSchema, index$6_sfxRequestSchema as sfxRequestSchema, index$6_ttsRequestSchema as ttsRequestSchema, index$6_upscaleRequestSchema as upscaleRequestSchema, index$6_videoEditRequestSchema as videoEditRequestSchema, index$6_videoGenerateRequestSchema as videoGenerateRequestSchema };
|
|
4334
4721
|
}
|
|
4335
4722
|
|
|
4336
4723
|
declare const aiToolsEndpoints: {
|
|
@@ -5761,4 +6148,4 @@ declare function createTrpcClient(options: TrpcClientOptions): _trpc_client.TRPC
|
|
|
5761
6148
|
transformer: false;
|
|
5762
6149
|
}, _trpc_server.TRPCDecorateCreateRouterOptions<_trpc_server.TRPCCreateRouterOptions>>>;
|
|
5763
6150
|
|
|
5764
|
-
export { AI_MODEL_CAPABILITY_INPUT_KEYS, AI_MODEL_CAPABILITY_OUTPUT_KEYS, AI_MODEL_TAGS, AI_MODEL_TAG_LABELS, type AiAudioOutput, type AiAudioRequest, type AiChatCompletionsRequest, type AiChatModel, type AiChatModelsResponse, type AiChatSessionMetadata, AiClient, type AiClientMetadata, type AiFileUploadResponse, type AiImageInputs, type AiImageOutput, type AiImageRequest, type AiMediaInput, type AiModel, type AiModelCapabilities, type AiModelCapabilitiesInput, type AiModelCapabilitiesOutput, type AiModelCapabilityInputKey, type AiModelCapabilityOutputKey, type AiModelTag, type AiModelsResponse, type AiModelsUpdatedAtData, type AiModelsUpdatedAtResponse, type AiProviderTemplate, type AiProviderTemplateModel, type AiProviderTemplatesResponse, type AiResponsesRequest, type AiTaskCancelResponse, type AiTaskCreatedResponse, type AiTaskResponse, AiToolsClient, type AiVideoInputs, type AiVideoOutput, type AiVideoRequest, type AnalyzeSkillsRequest, type AnalyzeSkillsResponse, AuthClient, type AuthExchangeRequest, type AuthExchangeResponse, type AuthLogoutRequest, type AuthLogoutResponse, type AuthRefreshError, type AuthRefreshRequest, type AuthRefreshResponse, type AuthRefreshSuccess, AuxiliaryClient, type AuxiliaryInferRequest, type AuxiliaryInferResponse, type AuxiliaryQuota, type AuxiliaryQuotaResponse, type DigitalHumanRequest, Endpoint, type FeedbackAttachmentResponse, FeedbackClient, type FeedbackDetailPayload, type FeedbackDetailRequest, type FeedbackDetailResponse, type FeedbackListPayload, type FeedbackListRequest, type FeedbackListResponse, type FeedbackSaasStatus, type FeedbackSource, type FeedbackSubmitError, type FeedbackSubmitRequest, type FeedbackSubmitResponse, type FeedbackType, type HeaderInput, type HttpMethod, type ImageEditRequest, type ImageGenerateRequest, type MediaAspectRatio, type MediaFeature, type MediaGenerateBase, type MediaGenerateRequest, type MediaModelsQuery, type MediaQuality, type MediaResolution, type MediaTaskGroupData, type MediaTaskGroupResponse, type MediaTaskGroupSuccess, type MediaTaskItem, type OutpaintRequest, type PosterRequest, type RecommendActionsRequest, type RecommendActionsResponse, type ResponseType, SaaSClient, type SaaSClientOptions, SaaSContract, SaaSHttpError, SaaSNetworkError, SaaSSchemaError, type SkillArchiveFormat, type SkillListItem, type SkillOwnerSummary, type SkillSource, type SkillStatus, type SkillType, type SkillVersionSummary, type SkillVisibility, SkillsClient, type SkillsDetailResponse, type SkillsDownloadResponse, type SkillsListRequest, type SkillsListResponse, type SummarizeRequest, type SummarizeResponse, type TrpcClientOptions, type TtsRequest, type UpscaleRequest, UserClient, type UserMembershipLevel, type UserSelf, type UserSelfRequest, type UserSelfResponse, type VideoGenerateRequest, aiAudioOutputSchema, aiAudioRequestSchema, aiChatCompletionsRequestSchema, aiChatModelSchema, aiChatModelsPayloadSchema, aiChatModelsResponseSchema, aiChatModelsSuccessSchema, aiChatSessionMetadataSchema, aiClientMetadataSchema, aiEndpoints, aiErrorResponseSchema, aiImageInputsSchema, aiImageOutputSchema, aiImageRequestSchema, aiMediaInputSchema, aiModelCapabilitiesInputSchema, aiModelCapabilitiesOutputSchema, aiModelCapabilitiesSchema, aiModelCapabilityCommonSchema, aiModelParameterFieldSchema, aiModelParamsSchema, aiModelSchema, aiModelsPayloadSchema, aiModelsRequestSchema, aiModelsResponseSchema, aiModelsSuccessSchema, aiModelsUpdatedAtDataSchema, aiModelsUpdatedAtResponseSchema, aiModelsUpdatedAtSuccessSchema, index$6 as aiModule, aiProviderTemplateModelSchema, aiProviderTemplateSchema, aiProviderTemplatesPayloadSchema, aiProviderTemplatesRequestSchema, aiProviderTemplatesResponseSchema, aiProviderTemplatesSuccessSchema, aiResponsesRequestSchema, aiTaskCancelDataSchema, aiTaskCancelRequestSchema, aiTaskCancelResponseSchema, aiTaskCancelSuccessSchema, aiTaskCreatedDataSchema, aiTaskCreatedResponseSchema, aiTaskCreatedSuccessSchema, aiTaskDataSchema, aiTaskErrorSchema, aiTaskRequestSchema, aiTaskResponseSchema, aiTaskResultTypeSchema, aiTaskStatusSchema, aiTaskSuccessSchema, aiToolsEndpoints, index$5 as aiToolsModule, aiVideoInputsSchema, aiVideoOutputSchema, aiVideoRequestSchema, analyzeSkillsRequestSchema, analyzeSkillsResponseSchema, authEndpoints, authExchangeRequestSchema, authExchangeResponseSchema, authLogoutRequestSchema, authLogoutResponseSchema, index$4 as authModule, authRefreshErrorSchema, authRefreshRequestSchema, authRefreshResponseSchema, authRefreshSuccessSchema, authRefreshUserSchema, auxiliaryEndpoints, auxiliaryInferRequestSchema, auxiliaryInferResponseSchema, index$3 as auxiliaryModule, auxiliaryQuotaResponseSchema, contract, createTrpcClient, digitalHumanRequestSchema, feedbackDetailPayloadSchema, feedbackDetailRequestSchema, feedbackDetailResponseSchema, feedbackEndpoints, feedbackItemSchema, feedbackListPayloadSchema, feedbackListRequestSchema, feedbackListResponseSchema, index$2 as feedbackModule, feedbackSaasStatusSchema, feedbackSourceSchema, feedbackSubmitErrorSchema, feedbackSubmitRequestSchema, feedbackSubmitResponseSchema, feedbackTypeSchema, imageEditRequestSchema, imageGenerateRequestSchema, mediaAspectRatioSchema, mediaFeatureSchema, mediaGenerateBaseSchema, mediaGenerateRequestSchema, mediaModelsQuerySchema, mediaQualitySchema, mediaResolutionSchema, mediaTaskGroupDataSchema, mediaTaskGroupResponseSchema, mediaTaskGroupSuccessSchema, mediaTaskItemSchema, mediaTaskStatusSchema, mergeHeaders, normalizeHeaders, outpaintRequestSchema, posterRequestSchema, recommendActionsRequestSchema, recommendActionsResponseSchema, request, skillArchiveFormatSchema, skillListItemSchema, skillOwnerSummarySchema, skillSourceSchema, skillStatusSchema, skillTypeSchema, skillVersionSummarySchema, skillVisibilitySchema, skillsDetailRequestSchema, skillsDetailResponseSchema, skillsDownloadResponseSchema, skillsEndpoints, skillsListRequestSchema, skillsListResponseSchema, index$1 as skillsModule, summarizeRequestSchema, summarizeResponseSchema, ttsRequestSchema, upscaleRequestSchema, userEndpoints, userMembershipLevelSchema, index as userModule, userSelfRequestSchema, userSelfResponseSchema, userSelfSchema, videoGenerateRequestSchema };
|
|
6151
|
+
export { AI_MODEL_CAPABILITY_INPUT_KEYS, AI_MODEL_CAPABILITY_OUTPUT_KEYS, AI_MODEL_TAGS, AI_MODEL_TAG_LABELS, type AiAudioOutput, type AiAudioRequest, type AiChatCompletionsRequest, type AiChatModel, type AiChatModelsResponse, type AiChatSessionMetadata, AiClient, type AiClientMetadata, type AiFileUploadResponse, type AiImageInputs, type AiImageOutput, type AiImageRequest, type AiMediaInput, type AiModel, type AiModelCapabilities, type AiModelCapabilitiesInput, type AiModelCapabilitiesOutput, type AiModelCapabilityInputKey, type AiModelCapabilityOutputKey, type AiModelTag, type AiModelsResponse, type AiModelsUpdatedAtData, type AiModelsUpdatedAtResponse, type AiProviderTemplate, type AiProviderTemplateModel, type AiProviderTemplatesResponse, type AiResponsesRequest, type AiTaskCancelResponse, type AiTaskCreatedResponse, type AiTaskResponse, AiToolsClient, type AiVideoInputs, type AiVideoOutput, type AiVideoRequest, type AnalyzeSkillsRequest, type AnalyzeSkillsResponse, AuthClient, type AuthExchangeRequest, type AuthExchangeResponse, type AuthLogoutRequest, type AuthLogoutResponse, type AuthRefreshError, type AuthRefreshRequest, type AuthRefreshResponse, type AuthRefreshSuccess, AuxiliaryClient, type AuxiliaryInferRequest, type AuxiliaryInferResponse, type AuxiliaryQuota, type AuxiliaryQuotaResponse, type DigitalHumanRequest, Endpoint, type FeedbackAttachmentResponse, FeedbackClient, type FeedbackDetailPayload, type FeedbackDetailRequest, type FeedbackDetailResponse, type FeedbackListPayload, type FeedbackListRequest, type FeedbackListResponse, type FeedbackSaasStatus, type FeedbackSource, type FeedbackSubmitError, type FeedbackSubmitRequest, type FeedbackSubmitResponse, type FeedbackType, type HeaderInput, type HttpMethod, type ImageEditRequest, type ImageGenerateRequest, type MattingRequest, type MediaAspectRatio, type MediaFeature, type MediaGenerateBase, type MediaGenerateRequest, type MediaModelsQuery, type MediaQuality, type MediaResolution, type MediaTaskGroupData, type MediaTaskGroupResponse, type MediaTaskGroupSuccess, type MediaTaskItem, type MotionTransferRequest, type MusicRequest, type OutpaintRequest, type PosterRequest, type RecommendActionsRequest, type RecommendActionsResponse, type ResponseType, SaaSClient, type SaaSClientOptions, SaaSContract, SaaSHttpError, SaaSNetworkError, SaaSSchemaError, type SfxRequest, type SkillArchiveFormat, type SkillListItem, type SkillOwnerSummary, type SkillSource, type SkillStatus, type SkillType, type SkillVersionSummary, type SkillVisibility, SkillsClient, type SkillsDetailResponse, type SkillsDownloadResponse, type SkillsListRequest, type SkillsListResponse, type SummarizeRequest, type SummarizeResponse, type TrpcClientOptions, type TtsRequest, type UpscaleRequest, UserClient, type UserMembershipLevel, type UserSelf, type UserSelfRequest, type UserSelfResponse, type VideoEditRequest, type VideoGenerateRequest, aiAudioOutputSchema, aiAudioRequestSchema, aiChatCompletionsRequestSchema, aiChatModelSchema, aiChatModelsPayloadSchema, aiChatModelsResponseSchema, aiChatModelsSuccessSchema, aiChatSessionMetadataSchema, aiClientMetadataSchema, aiEndpoints, aiErrorResponseSchema, aiImageInputsSchema, aiImageOutputSchema, aiImageRequestSchema, aiMediaInputSchema, aiModelCapabilitiesInputSchema, aiModelCapabilitiesOutputSchema, aiModelCapabilitiesSchema, aiModelCapabilityCommonSchema, aiModelParameterFieldSchema, aiModelParamsSchema, aiModelSchema, aiModelsPayloadSchema, aiModelsRequestSchema, aiModelsResponseSchema, aiModelsSuccessSchema, aiModelsUpdatedAtDataSchema, aiModelsUpdatedAtResponseSchema, aiModelsUpdatedAtSuccessSchema, index$6 as aiModule, aiProviderTemplateModelSchema, aiProviderTemplateSchema, aiProviderTemplatesPayloadSchema, aiProviderTemplatesRequestSchema, aiProviderTemplatesResponseSchema, aiProviderTemplatesSuccessSchema, aiResponsesRequestSchema, aiTaskCancelDataSchema, aiTaskCancelRequestSchema, aiTaskCancelResponseSchema, aiTaskCancelSuccessSchema, aiTaskCreatedDataSchema, aiTaskCreatedResponseSchema, aiTaskCreatedSuccessSchema, aiTaskDataSchema, aiTaskErrorSchema, aiTaskRequestSchema, aiTaskResponseSchema, aiTaskResultTypeSchema, aiTaskStatusSchema, aiTaskSuccessSchema, aiToolsEndpoints, index$5 as aiToolsModule, aiVideoInputsSchema, aiVideoOutputSchema, aiVideoRequestSchema, analyzeSkillsRequestSchema, analyzeSkillsResponseSchema, authEndpoints, authExchangeRequestSchema, authExchangeResponseSchema, authLogoutRequestSchema, authLogoutResponseSchema, index$4 as authModule, authRefreshErrorSchema, authRefreshRequestSchema, authRefreshResponseSchema, authRefreshSuccessSchema, authRefreshUserSchema, auxiliaryEndpoints, auxiliaryInferRequestSchema, auxiliaryInferResponseSchema, index$3 as auxiliaryModule, auxiliaryQuotaResponseSchema, contract, createTrpcClient, digitalHumanRequestSchema, feedbackDetailPayloadSchema, feedbackDetailRequestSchema, feedbackDetailResponseSchema, feedbackEndpoints, feedbackItemSchema, feedbackListPayloadSchema, feedbackListRequestSchema, feedbackListResponseSchema, index$2 as feedbackModule, feedbackSaasStatusSchema, feedbackSourceSchema, feedbackSubmitErrorSchema, feedbackSubmitRequestSchema, feedbackSubmitResponseSchema, feedbackTypeSchema, imageEditRequestSchema, imageGenerateRequestSchema, mattingRequestSchema, mediaAspectRatioSchema, mediaFeatureSchema, mediaGenerateBaseSchema, mediaGenerateRequestSchema, mediaModelsQuerySchema, mediaQualitySchema, mediaResolutionSchema, mediaTaskGroupDataSchema, mediaTaskGroupResponseSchema, mediaTaskGroupSuccessSchema, mediaTaskItemSchema, mediaTaskStatusSchema, mergeHeaders, motionTransferRequestSchema, musicRequestSchema, normalizeHeaders, outpaintRequestSchema, posterRequestSchema, recommendActionsRequestSchema, recommendActionsResponseSchema, request, sfxRequestSchema, skillArchiveFormatSchema, skillListItemSchema, skillOwnerSummarySchema, skillSourceSchema, skillStatusSchema, skillTypeSchema, skillVersionSummarySchema, skillVisibilitySchema, skillsDetailRequestSchema, skillsDetailResponseSchema, skillsDownloadResponseSchema, skillsEndpoints, skillsListRequestSchema, skillsListResponseSchema, index$1 as skillsModule, summarizeRequestSchema, summarizeResponseSchema, ttsRequestSchema, upscaleRequestSchema, userEndpoints, userMembershipLevelSchema, index as userModule, userSelfRequestSchema, userSelfResponseSchema, userSelfSchema, videoEditRequestSchema, videoGenerateRequestSchema };
|