@openloaf-saas/sdk 0.1.21 → 0.1.22
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 +2 -456
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -2523,457 +2523,6 @@ declare const MODEL_PROVIDERS: {
|
|
|
2523
2523
|
/** Model provider identifier type. */
|
|
2524
2524
|
type ModelProviderId = keyof typeof MODEL_PROVIDERS;
|
|
2525
2525
|
|
|
2526
|
-
/**
|
|
2527
|
-
* Per-handler input schemas for v3 media API.
|
|
2528
|
-
* Key = handlerKey, value = Zod schema for { inputs, params }.
|
|
2529
|
-
* SDK consumers can use these for type-safe parameter construction.
|
|
2530
|
-
*/
|
|
2531
|
-
declare const V3_HANDLER_SCHEMAS: {
|
|
2532
|
-
/** Qwen Wan2.6 text-to-image. */
|
|
2533
|
-
readonly "qwen-wan26-t2i": z.ZodObject<{
|
|
2534
|
-
inputs: z.ZodObject<{
|
|
2535
|
-
prompt: z.ZodString;
|
|
2536
|
-
}, z.core.$strip>;
|
|
2537
|
-
params: z.ZodObject<{
|
|
2538
|
-
aspectRatio: z.ZodDefault<z.ZodEnum<{
|
|
2539
|
-
"1:1": "1:1";
|
|
2540
|
-
"16:9": "16:9";
|
|
2541
|
-
"9:16": "9:16";
|
|
2542
|
-
"4:3": "4:3";
|
|
2543
|
-
}>>;
|
|
2544
|
-
quality: z.ZodDefault<z.ZodEnum<{
|
|
2545
|
-
standard: "standard";
|
|
2546
|
-
hd: "hd";
|
|
2547
|
-
}>>;
|
|
2548
|
-
negativePrompt: z.ZodOptional<z.ZodString>;
|
|
2549
|
-
promptExtend: z.ZodOptional<z.ZodBoolean>;
|
|
2550
|
-
watermark: z.ZodOptional<z.ZodBoolean>;
|
|
2551
|
-
count: z.ZodOptional<z.ZodNumber>;
|
|
2552
|
-
}, z.core.$strip>;
|
|
2553
|
-
}, z.core.$strip>;
|
|
2554
|
-
/** Qwen z-image-turbo lightweight text-to-image. */
|
|
2555
|
-
readonly "qwen-z-image-turbo": z.ZodObject<{
|
|
2556
|
-
inputs: z.ZodObject<{
|
|
2557
|
-
prompt: z.ZodString;
|
|
2558
|
-
}, z.core.$strip>;
|
|
2559
|
-
params: z.ZodObject<{
|
|
2560
|
-
aspectRatio: z.ZodDefault<z.ZodEnum<{
|
|
2561
|
-
"1:1": "1:1";
|
|
2562
|
-
"16:9": "16:9";
|
|
2563
|
-
"9:16": "9:16";
|
|
2564
|
-
"4:3": "4:3";
|
|
2565
|
-
}>>;
|
|
2566
|
-
quality: z.ZodDefault<z.ZodEnum<{
|
|
2567
|
-
standard: "standard";
|
|
2568
|
-
hd: "hd";
|
|
2569
|
-
}>>;
|
|
2570
|
-
promptExtend: z.ZodOptional<z.ZodBoolean>;
|
|
2571
|
-
}, z.core.$strip>;
|
|
2572
|
-
}, z.core.$strip>;
|
|
2573
|
-
/** Qwen basic text-to-image. */
|
|
2574
|
-
readonly "qwen-image": z.ZodObject<{
|
|
2575
|
-
inputs: z.ZodObject<{
|
|
2576
|
-
prompt: z.ZodString;
|
|
2577
|
-
}, z.core.$strip>;
|
|
2578
|
-
params: z.ZodObject<{
|
|
2579
|
-
aspectRatio: z.ZodDefault<z.ZodEnum<{
|
|
2580
|
-
"1:1": "1:1";
|
|
2581
|
-
"16:9": "16:9";
|
|
2582
|
-
"9:16": "9:16";
|
|
2583
|
-
"4:3": "4:3";
|
|
2584
|
-
}>>;
|
|
2585
|
-
quality: z.ZodDefault<z.ZodEnum<{
|
|
2586
|
-
standard: "standard";
|
|
2587
|
-
hd: "hd";
|
|
2588
|
-
}>>;
|
|
2589
|
-
negativePrompt: z.ZodOptional<z.ZodString>;
|
|
2590
|
-
promptExtend: z.ZodOptional<z.ZodBoolean>;
|
|
2591
|
-
watermark: z.ZodOptional<z.ZodBoolean>;
|
|
2592
|
-
count: z.ZodOptional<z.ZodNumber>;
|
|
2593
|
-
}, z.core.$strip>;
|
|
2594
|
-
}, z.core.$strip>;
|
|
2595
|
-
/** Qwen Plus text-to-image (HD). */
|
|
2596
|
-
readonly "qwen-image-plus": z.ZodObject<{
|
|
2597
|
-
inputs: z.ZodObject<{
|
|
2598
|
-
prompt: z.ZodString;
|
|
2599
|
-
}, z.core.$strip>;
|
|
2600
|
-
params: z.ZodObject<{
|
|
2601
|
-
aspectRatio: z.ZodDefault<z.ZodEnum<{
|
|
2602
|
-
"1:1": "1:1";
|
|
2603
|
-
"16:9": "16:9";
|
|
2604
|
-
"9:16": "9:16";
|
|
2605
|
-
"4:3": "4:3";
|
|
2606
|
-
}>>;
|
|
2607
|
-
quality: z.ZodDefault<z.ZodEnum<{
|
|
2608
|
-
standard: "standard";
|
|
2609
|
-
hd: "hd";
|
|
2610
|
-
}>>;
|
|
2611
|
-
negativePrompt: z.ZodOptional<z.ZodString>;
|
|
2612
|
-
promptExtend: z.ZodOptional<z.ZodBoolean>;
|
|
2613
|
-
watermark: z.ZodOptional<z.ZodBoolean>;
|
|
2614
|
-
count: z.ZodOptional<z.ZodNumber>;
|
|
2615
|
-
}, z.core.$strip>;
|
|
2616
|
-
}, z.core.$strip>;
|
|
2617
|
-
/** Volcengine Jimeng T2I v4.0. */
|
|
2618
|
-
readonly "volc-jimeng-t2i-v40": z.ZodObject<{
|
|
2619
|
-
inputs: z.ZodObject<{
|
|
2620
|
-
images: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2621
|
-
url: z.ZodOptional<z.ZodString>;
|
|
2622
|
-
base64: z.ZodOptional<z.ZodString>;
|
|
2623
|
-
mediaType: z.ZodOptional<z.ZodString>;
|
|
2624
|
-
}, z.core.$strip>>>;
|
|
2625
|
-
}, z.core.$strip>;
|
|
2626
|
-
params: z.ZodObject<{
|
|
2627
|
-
prompt: z.ZodString;
|
|
2628
|
-
style: z.ZodOptional<z.ZodString>;
|
|
2629
|
-
aspectRatio: z.ZodDefault<z.ZodEnum<{
|
|
2630
|
-
"1:1": "1:1";
|
|
2631
|
-
"16:9": "16:9";
|
|
2632
|
-
"9:16": "9:16";
|
|
2633
|
-
"4:3": "4:3";
|
|
2634
|
-
}>>;
|
|
2635
|
-
quality: z.ZodDefault<z.ZodEnum<{
|
|
2636
|
-
standard: "standard";
|
|
2637
|
-
hd: "hd";
|
|
2638
|
-
}>>;
|
|
2639
|
-
}, z.core.$strip>;
|
|
2640
|
-
}, z.core.$strip>;
|
|
2641
|
-
/** Volcengine Jimeng T2I v3.1. */
|
|
2642
|
-
readonly "volc-jimeng-t2i-v31": z.ZodObject<{
|
|
2643
|
-
inputs: z.ZodObject<{
|
|
2644
|
-
images: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2645
|
-
url: z.ZodOptional<z.ZodString>;
|
|
2646
|
-
base64: z.ZodOptional<z.ZodString>;
|
|
2647
|
-
mediaType: z.ZodOptional<z.ZodString>;
|
|
2648
|
-
}, z.core.$strip>>>;
|
|
2649
|
-
}, z.core.$strip>;
|
|
2650
|
-
params: z.ZodObject<{
|
|
2651
|
-
prompt: z.ZodString;
|
|
2652
|
-
style: z.ZodOptional<z.ZodString>;
|
|
2653
|
-
aspectRatio: z.ZodDefault<z.ZodEnum<{
|
|
2654
|
-
"1:1": "1:1";
|
|
2655
|
-
"16:9": "16:9";
|
|
2656
|
-
"9:16": "9:16";
|
|
2657
|
-
"4:3": "4:3";
|
|
2658
|
-
}>>;
|
|
2659
|
-
quality: z.ZodDefault<z.ZodEnum<{
|
|
2660
|
-
standard: "standard";
|
|
2661
|
-
hd: "hd";
|
|
2662
|
-
}>>;
|
|
2663
|
-
}, z.core.$strip>;
|
|
2664
|
-
}, z.core.$strip>;
|
|
2665
|
-
/** Qwen image edit plus. */
|
|
2666
|
-
readonly "qwen-image-edit-plus": z.ZodObject<{
|
|
2667
|
-
inputs: z.ZodObject<{
|
|
2668
|
-
prompt: z.ZodString;
|
|
2669
|
-
image: 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
|
-
images: z.ZodOptional<z.ZodArray<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
|
-
mask: z.ZodOptional<z.ZodObject<{
|
|
2680
|
-
url: z.ZodOptional<z.ZodString>;
|
|
2681
|
-
base64: z.ZodOptional<z.ZodString>;
|
|
2682
|
-
mediaType: z.ZodOptional<z.ZodString>;
|
|
2683
|
-
}, z.core.$strip>>;
|
|
2684
|
-
}, z.core.$strip>;
|
|
2685
|
-
params: z.ZodObject<{
|
|
2686
|
-
negativePrompt: z.ZodOptional<z.ZodString>;
|
|
2687
|
-
count: z.ZodOptional<z.ZodNumber>;
|
|
2688
|
-
}, z.core.$strip>;
|
|
2689
|
-
}, z.core.$strip>;
|
|
2690
|
-
/** Qwen Wan2.6 interleaved image edit. */
|
|
2691
|
-
readonly "qwen-wan26-image": z.ZodObject<{
|
|
2692
|
-
inputs: z.ZodObject<{
|
|
2693
|
-
prompt: z.ZodString;
|
|
2694
|
-
image: z.ZodOptional<z.ZodObject<{
|
|
2695
|
-
url: z.ZodOptional<z.ZodString>;
|
|
2696
|
-
base64: z.ZodOptional<z.ZodString>;
|
|
2697
|
-
mediaType: z.ZodOptional<z.ZodString>;
|
|
2698
|
-
}, z.core.$strip>>;
|
|
2699
|
-
}, z.core.$strip>;
|
|
2700
|
-
params: z.ZodObject<{
|
|
2701
|
-
negativePrompt: z.ZodOptional<z.ZodString>;
|
|
2702
|
-
promptExtend: z.ZodOptional<z.ZodBoolean>;
|
|
2703
|
-
watermark: z.ZodOptional<z.ZodBoolean>;
|
|
2704
|
-
count: z.ZodOptional<z.ZodNumber>;
|
|
2705
|
-
}, z.core.$strip>;
|
|
2706
|
-
}, z.core.$strip>;
|
|
2707
|
-
/** Volcengine Jimeng inpaint. */
|
|
2708
|
-
readonly "volc-jimeng-inpaint": z.ZodObject<{
|
|
2709
|
-
inputs: z.ZodObject<{
|
|
2710
|
-
image: z.ZodObject<{
|
|
2711
|
-
url: z.ZodOptional<z.ZodString>;
|
|
2712
|
-
base64: z.ZodOptional<z.ZodString>;
|
|
2713
|
-
mediaType: z.ZodOptional<z.ZodString>;
|
|
2714
|
-
}, z.core.$strip>;
|
|
2715
|
-
mask: z.ZodObject<{
|
|
2716
|
-
url: z.ZodOptional<z.ZodString>;
|
|
2717
|
-
base64: z.ZodOptional<z.ZodString>;
|
|
2718
|
-
mediaType: z.ZodOptional<z.ZodString>;
|
|
2719
|
-
}, z.core.$strip>;
|
|
2720
|
-
}, z.core.$strip>;
|
|
2721
|
-
params: z.ZodObject<{
|
|
2722
|
-
prompt: z.ZodString;
|
|
2723
|
-
}, z.core.$strip>;
|
|
2724
|
-
}, z.core.$strip>;
|
|
2725
|
-
/** Volcengine material extraction / style transfer. */
|
|
2726
|
-
readonly "volc-material-extraction": z.ZodObject<{
|
|
2727
|
-
inputs: z.ZodObject<{
|
|
2728
|
-
image: z.ZodObject<{
|
|
2729
|
-
url: z.ZodOptional<z.ZodString>;
|
|
2730
|
-
base64: z.ZodOptional<z.ZodString>;
|
|
2731
|
-
mediaType: z.ZodOptional<z.ZodString>;
|
|
2732
|
-
}, z.core.$strip>;
|
|
2733
|
-
}, z.core.$strip>;
|
|
2734
|
-
params: z.ZodObject<{
|
|
2735
|
-
prompt: z.ZodString;
|
|
2736
|
-
aspectRatio: z.ZodDefault<z.ZodEnum<{
|
|
2737
|
-
"1:1": "1:1";
|
|
2738
|
-
"16:9": "16:9";
|
|
2739
|
-
"9:16": "9:16";
|
|
2740
|
-
"4:3": "4:3";
|
|
2741
|
-
}>>;
|
|
2742
|
-
quality: z.ZodDefault<z.ZodEnum<{
|
|
2743
|
-
standard: "standard";
|
|
2744
|
-
hd: "hd";
|
|
2745
|
-
}>>;
|
|
2746
|
-
}, z.core.$strip>;
|
|
2747
|
-
}, z.core.$strip>;
|
|
2748
|
-
/** Volcengine material extract. */
|
|
2749
|
-
readonly "volc-material-extract": z.ZodObject<{
|
|
2750
|
-
inputs: z.ZodObject<{
|
|
2751
|
-
image: z.ZodObject<{
|
|
2752
|
-
url: z.ZodOptional<z.ZodString>;
|
|
2753
|
-
base64: z.ZodOptional<z.ZodString>;
|
|
2754
|
-
mediaType: z.ZodOptional<z.ZodString>;
|
|
2755
|
-
}, z.core.$strip>;
|
|
2756
|
-
}, z.core.$strip>;
|
|
2757
|
-
params: z.ZodObject<{}, z.core.$strip>;
|
|
2758
|
-
}, z.core.$strip>;
|
|
2759
|
-
/** Qwen wanx2.1 super-resolution. */
|
|
2760
|
-
readonly "qwen-wanx21-upscale": z.ZodObject<{
|
|
2761
|
-
inputs: z.ZodObject<{
|
|
2762
|
-
image: z.ZodObject<{
|
|
2763
|
-
url: z.ZodOptional<z.ZodString>;
|
|
2764
|
-
base64: z.ZodOptional<z.ZodString>;
|
|
2765
|
-
mediaType: z.ZodOptional<z.ZodString>;
|
|
2766
|
-
}, z.core.$strip>;
|
|
2767
|
-
}, z.core.$strip>;
|
|
2768
|
-
params: z.ZodObject<{
|
|
2769
|
-
scale: z.ZodDefault<z.ZodNumber>;
|
|
2770
|
-
}, z.core.$strip>;
|
|
2771
|
-
}, z.core.$strip>;
|
|
2772
|
-
/** Volcengine smart super resolution. */
|
|
2773
|
-
readonly "volc-image-upscale": z.ZodObject<{
|
|
2774
|
-
inputs: z.ZodObject<{
|
|
2775
|
-
image: z.ZodObject<{
|
|
2776
|
-
url: z.ZodOptional<z.ZodString>;
|
|
2777
|
-
base64: z.ZodOptional<z.ZodString>;
|
|
2778
|
-
mediaType: z.ZodOptional<z.ZodString>;
|
|
2779
|
-
}, z.core.$strip>;
|
|
2780
|
-
}, z.core.$strip>;
|
|
2781
|
-
params: z.ZodObject<{
|
|
2782
|
-
scale: z.ZodDefault<z.ZodEnum<{
|
|
2783
|
-
"4K": "4K";
|
|
2784
|
-
"8K": "8K";
|
|
2785
|
-
}>>;
|
|
2786
|
-
}, z.core.$strip>;
|
|
2787
|
-
}, z.core.$strip>;
|
|
2788
|
-
/** Qwen image out-painting. */
|
|
2789
|
-
readonly "qwen-wanx21-outpaint": z.ZodObject<{
|
|
2790
|
-
inputs: z.ZodObject<{
|
|
2791
|
-
image: z.ZodObject<{
|
|
2792
|
-
url: z.ZodOptional<z.ZodString>;
|
|
2793
|
-
base64: z.ZodOptional<z.ZodString>;
|
|
2794
|
-
mediaType: z.ZodOptional<z.ZodString>;
|
|
2795
|
-
}, z.core.$strip>;
|
|
2796
|
-
}, z.core.$strip>;
|
|
2797
|
-
params: z.ZodObject<{
|
|
2798
|
-
xScale: z.ZodDefault<z.ZodNumber>;
|
|
2799
|
-
yScale: z.ZodDefault<z.ZodNumber>;
|
|
2800
|
-
}, z.core.$strip>;
|
|
2801
|
-
}, z.core.$strip>;
|
|
2802
|
-
/** Qwen Wan2.6 i2v flash (fast video). */
|
|
2803
|
-
readonly "qwen-wan26-i2v-flash": z.ZodObject<{
|
|
2804
|
-
inputs: z.ZodObject<{
|
|
2805
|
-
prompt: z.ZodOptional<z.ZodString>;
|
|
2806
|
-
startImage: z.ZodObject<{
|
|
2807
|
-
url: z.ZodOptional<z.ZodString>;
|
|
2808
|
-
base64: z.ZodOptional<z.ZodString>;
|
|
2809
|
-
mediaType: z.ZodOptional<z.ZodString>;
|
|
2810
|
-
}, z.core.$strip>;
|
|
2811
|
-
}, z.core.$strip>;
|
|
2812
|
-
params: z.ZodObject<{
|
|
2813
|
-
duration: z.ZodDefault<z.ZodNumber>;
|
|
2814
|
-
withAudio: z.ZodOptional<z.ZodBoolean>;
|
|
2815
|
-
resolution: z.ZodOptional<z.ZodEnum<{
|
|
2816
|
-
"720p": "720p";
|
|
2817
|
-
"1080p": "1080p";
|
|
2818
|
-
}>>;
|
|
2819
|
-
}, z.core.$strip>;
|
|
2820
|
-
}, z.core.$strip>;
|
|
2821
|
-
/** Qwen Wan2.6 i2v (high-quality video). */
|
|
2822
|
-
readonly "qwen-wan26-i2v": z.ZodObject<{
|
|
2823
|
-
inputs: z.ZodObject<{
|
|
2824
|
-
prompt: z.ZodOptional<z.ZodString>;
|
|
2825
|
-
startImage: z.ZodObject<{
|
|
2826
|
-
url: z.ZodOptional<z.ZodString>;
|
|
2827
|
-
base64: z.ZodOptional<z.ZodString>;
|
|
2828
|
-
mediaType: z.ZodOptional<z.ZodString>;
|
|
2829
|
-
}, z.core.$strip>;
|
|
2830
|
-
}, z.core.$strip>;
|
|
2831
|
-
params: z.ZodObject<{
|
|
2832
|
-
duration: z.ZodDefault<z.ZodNumber>;
|
|
2833
|
-
withAudio: z.ZodOptional<z.ZodBoolean>;
|
|
2834
|
-
resolution: z.ZodOptional<z.ZodEnum<{
|
|
2835
|
-
"720p": "720p";
|
|
2836
|
-
"1080p": "1080p";
|
|
2837
|
-
}>>;
|
|
2838
|
-
}, z.core.$strip>;
|
|
2839
|
-
}, z.core.$strip>;
|
|
2840
|
-
/** Volcengine Jimeng video generation 3.0. */
|
|
2841
|
-
readonly "volc-jimeng-t2v": z.ZodObject<{
|
|
2842
|
-
inputs: z.ZodObject<{
|
|
2843
|
-
startImage: z.ZodOptional<z.ZodObject<{
|
|
2844
|
-
url: z.ZodOptional<z.ZodString>;
|
|
2845
|
-
base64: z.ZodOptional<z.ZodString>;
|
|
2846
|
-
mediaType: z.ZodOptional<z.ZodString>;
|
|
2847
|
-
}, z.core.$strip>>;
|
|
2848
|
-
images: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2849
|
-
url: z.ZodOptional<z.ZodString>;
|
|
2850
|
-
base64: z.ZodOptional<z.ZodString>;
|
|
2851
|
-
mediaType: z.ZodOptional<z.ZodString>;
|
|
2852
|
-
}, z.core.$strip>>>;
|
|
2853
|
-
}, z.core.$strip>;
|
|
2854
|
-
params: z.ZodObject<{
|
|
2855
|
-
prompt: z.ZodString;
|
|
2856
|
-
style: z.ZodOptional<z.ZodString>;
|
|
2857
|
-
aspectRatio: z.ZodOptional<z.ZodString>;
|
|
2858
|
-
duration: z.ZodDefault<z.ZodNumber>;
|
|
2859
|
-
}, z.core.$strip>;
|
|
2860
|
-
}, z.core.$strip>;
|
|
2861
|
-
/** Qwen Wan2.2 digital human. */
|
|
2862
|
-
readonly "qwen-wan22-s2v": z.ZodObject<{
|
|
2863
|
-
inputs: z.ZodObject<{
|
|
2864
|
-
image: z.ZodObject<{
|
|
2865
|
-
url: z.ZodOptional<z.ZodString>;
|
|
2866
|
-
base64: z.ZodOptional<z.ZodString>;
|
|
2867
|
-
mediaType: z.ZodOptional<z.ZodString>;
|
|
2868
|
-
}, z.core.$strip>;
|
|
2869
|
-
audio: z.ZodObject<{
|
|
2870
|
-
url: z.ZodString;
|
|
2871
|
-
}, z.core.$strip>;
|
|
2872
|
-
}, z.core.$strip>;
|
|
2873
|
-
params: z.ZodObject<{
|
|
2874
|
-
resolution: z.ZodDefault<z.ZodEnum<{
|
|
2875
|
-
"480P": "480P";
|
|
2876
|
-
"720P": "720P";
|
|
2877
|
-
}>>;
|
|
2878
|
-
}, z.core.$strip>;
|
|
2879
|
-
}, z.core.$strip>;
|
|
2880
|
-
/** Qwen Wan2.2 animate-mix video face swap. */
|
|
2881
|
-
readonly "qwen-wan22-animate-mix": z.ZodObject<{
|
|
2882
|
-
inputs: z.ZodObject<{
|
|
2883
|
-
image: z.ZodObject<{
|
|
2884
|
-
url: z.ZodOptional<z.ZodString>;
|
|
2885
|
-
base64: z.ZodOptional<z.ZodString>;
|
|
2886
|
-
mediaType: z.ZodOptional<z.ZodString>;
|
|
2887
|
-
}, z.core.$strip>;
|
|
2888
|
-
video: z.ZodObject<{
|
|
2889
|
-
url: z.ZodString;
|
|
2890
|
-
}, z.core.$strip>;
|
|
2891
|
-
}, z.core.$strip>;
|
|
2892
|
-
params: z.ZodObject<{
|
|
2893
|
-
mode: z.ZodDefault<z.ZodEnum<{
|
|
2894
|
-
"wan-std": "wan-std";
|
|
2895
|
-
"wan-pro": "wan-pro";
|
|
2896
|
-
}>>;
|
|
2897
|
-
}, z.core.$strip>;
|
|
2898
|
-
}, z.core.$strip>;
|
|
2899
|
-
/** Volcengine video translate. */
|
|
2900
|
-
readonly "volc-video-translate": z.ZodObject<{
|
|
2901
|
-
inputs: z.ZodObject<{
|
|
2902
|
-
video: z.ZodObject<{
|
|
2903
|
-
url: z.ZodOptional<z.ZodString>;
|
|
2904
|
-
base64: z.ZodOptional<z.ZodString>;
|
|
2905
|
-
mediaType: z.ZodOptional<z.ZodString>;
|
|
2906
|
-
}, z.core.$strip>;
|
|
2907
|
-
}, z.core.$strip>;
|
|
2908
|
-
params: z.ZodObject<{
|
|
2909
|
-
sourceLanguage: z.ZodDefault<z.ZodString>;
|
|
2910
|
-
targetLanguage: z.ZodDefault<z.ZodString>;
|
|
2911
|
-
}, z.core.$strip>;
|
|
2912
|
-
}, z.core.$strip>;
|
|
2913
|
-
/** Qwen CosyVoice v3 TTS. */
|
|
2914
|
-
readonly "qwen-cosyvoice-v3": z.ZodObject<{
|
|
2915
|
-
inputs: z.ZodObject<{
|
|
2916
|
-
text: z.ZodString;
|
|
2917
|
-
}, z.core.$strip>;
|
|
2918
|
-
params: z.ZodObject<{
|
|
2919
|
-
voice: z.ZodDefault<z.ZodString>;
|
|
2920
|
-
format: z.ZodDefault<z.ZodEnum<{
|
|
2921
|
-
mp3: "mp3";
|
|
2922
|
-
wav: "wav";
|
|
2923
|
-
pcm: "pcm";
|
|
2924
|
-
}>>;
|
|
2925
|
-
sampleRate: z.ZodOptional<z.ZodNumber>;
|
|
2926
|
-
speechRate: z.ZodOptional<z.ZodNumber>;
|
|
2927
|
-
}, z.core.$strip>;
|
|
2928
|
-
}, z.core.$strip>;
|
|
2929
|
-
/** Qwen3 TTS. */
|
|
2930
|
-
readonly "qwen-tts": z.ZodObject<{
|
|
2931
|
-
inputs: z.ZodObject<{
|
|
2932
|
-
text: z.ZodString;
|
|
2933
|
-
}, z.core.$strip>;
|
|
2934
|
-
params: z.ZodObject<{
|
|
2935
|
-
voice: z.ZodDefault<z.ZodString>;
|
|
2936
|
-
instruction: z.ZodOptional<z.ZodString>;
|
|
2937
|
-
languageType: z.ZodOptional<z.ZodString>;
|
|
2938
|
-
}, z.core.$strip>;
|
|
2939
|
-
}, z.core.$strip>;
|
|
2940
|
-
/** Qwen3 ASR. */
|
|
2941
|
-
readonly "qwen-asr": z.ZodObject<{
|
|
2942
|
-
inputs: z.ZodObject<{
|
|
2943
|
-
audio: z.ZodUnion<readonly [z.ZodObject<{
|
|
2944
|
-
url: z.ZodString;
|
|
2945
|
-
}, z.core.$strip>, z.ZodObject<{
|
|
2946
|
-
base64: z.ZodString;
|
|
2947
|
-
mediaType: z.ZodOptional<z.ZodString>;
|
|
2948
|
-
}, z.core.$strip>]>;
|
|
2949
|
-
}, z.core.$strip>;
|
|
2950
|
-
params: z.ZodObject<{
|
|
2951
|
-
duration: z.ZodOptional<z.ZodNumber>;
|
|
2952
|
-
}, z.core.$strip>;
|
|
2953
|
-
}, z.core.$strip>;
|
|
2954
|
-
/** Qwen VideoRetalk lip sync. */
|
|
2955
|
-
readonly "qwen-videoretalk": z.ZodObject<{
|
|
2956
|
-
inputs: z.ZodObject<{
|
|
2957
|
-
video: z.ZodObject<{
|
|
2958
|
-
url: z.ZodString;
|
|
2959
|
-
}, z.core.$strip>;
|
|
2960
|
-
audio: z.ZodObject<{
|
|
2961
|
-
url: z.ZodString;
|
|
2962
|
-
}, z.core.$strip>;
|
|
2963
|
-
image: z.ZodOptional<z.ZodObject<{
|
|
2964
|
-
url: z.ZodOptional<z.ZodString>;
|
|
2965
|
-
base64: z.ZodOptional<z.ZodString>;
|
|
2966
|
-
mediaType: z.ZodOptional<z.ZodString>;
|
|
2967
|
-
}, z.core.$strip>>;
|
|
2968
|
-
}, z.core.$strip>;
|
|
2969
|
-
params: z.ZodObject<{}, z.core.$strip>;
|
|
2970
|
-
}, z.core.$strip>;
|
|
2971
|
-
};
|
|
2972
|
-
/** Handler key type. */
|
|
2973
|
-
type V3HandlerKey = keyof typeof V3_HANDLER_SCHEMAS;
|
|
2974
|
-
/** Infer input type for a specific handler. */
|
|
2975
|
-
type V3HandlerInput<K extends V3HandlerKey> = z.infer<(typeof V3_HANDLER_SCHEMAS)[K]>;
|
|
2976
|
-
|
|
2977
2526
|
declare const index$7_AI_MODEL_CAPABILITY_INPUT_KEYS: typeof AI_MODEL_CAPABILITY_INPUT_KEYS;
|
|
2978
2527
|
declare const index$7_AI_MODEL_CAPABILITY_OUTPUT_KEYS: typeof AI_MODEL_CAPABILITY_OUTPUT_KEYS;
|
|
2979
2528
|
declare const index$7_AI_MODEL_TAGS: typeof AI_MODEL_TAGS;
|
|
@@ -3012,14 +2561,11 @@ type index$7_V3EstimatePriceRequest = V3EstimatePriceRequest;
|
|
|
3012
2561
|
type index$7_V3EstimatePriceResponse = V3EstimatePriceResponse;
|
|
3013
2562
|
type index$7_V3Feature = V3Feature;
|
|
3014
2563
|
type index$7_V3GenerateRequest = V3GenerateRequest;
|
|
3015
|
-
type index$7_V3HandlerInput<K extends V3HandlerKey> = V3HandlerInput<K>;
|
|
3016
|
-
type index$7_V3HandlerKey = V3HandlerKey;
|
|
3017
2564
|
type index$7_V3TaskCreated = V3TaskCreated;
|
|
3018
2565
|
type index$7_V3TaskGroupResponse = V3TaskGroupResponse;
|
|
3019
2566
|
type index$7_V3TaskItem = V3TaskItem;
|
|
3020
2567
|
type index$7_V3TaskResponse = V3TaskResponse;
|
|
3021
2568
|
type index$7_V3Variant = V3Variant;
|
|
3022
|
-
declare const index$7_V3_HANDLER_SCHEMAS: typeof V3_HANDLER_SCHEMAS;
|
|
3023
2569
|
declare const index$7_aiChatCompletionsRequestSchema: typeof aiChatCompletionsRequestSchema;
|
|
3024
2570
|
declare const index$7_aiChatModelSchema: typeof aiChatModelSchema;
|
|
3025
2571
|
declare const index$7_aiChatModelsPayloadSchema: typeof aiChatModelsPayloadSchema;
|
|
@@ -3061,7 +2607,7 @@ declare const index$7_v3TaskItemSchema: typeof v3TaskItemSchema;
|
|
|
3061
2607
|
declare const index$7_v3TaskResponseSchema: typeof v3TaskResponseSchema;
|
|
3062
2608
|
declare const index$7_v3VariantSchema: typeof v3VariantSchema;
|
|
3063
2609
|
declare namespace index$7 {
|
|
3064
|
-
export { index$7_AI_MODEL_CAPABILITY_INPUT_KEYS as AI_MODEL_CAPABILITY_INPUT_KEYS, index$7_AI_MODEL_CAPABILITY_OUTPUT_KEYS as AI_MODEL_CAPABILITY_OUTPUT_KEYS, index$7_AI_MODEL_TAGS as AI_MODEL_TAGS, index$7_AI_MODEL_TAG_LABELS as AI_MODEL_TAG_LABELS, type index$7_AiChatCompletionsRequest as AiChatCompletionsRequest, type index$7_AiChatModel as AiChatModel, type index$7_AiChatModelsResponse as AiChatModelsResponse, type index$7_AiChatSessionMetadata as AiChatSessionMetadata, index$7_AiClient as AiClient, type index$7_AiClientMetadata as AiClientMetadata, type index$7_AiFileUploadOptions as AiFileUploadOptions, type index$7_AiFileUploadResponse as AiFileUploadResponse, type index$7_AiModel as AiModel, type index$7_AiModelCapabilities as AiModelCapabilities, type index$7_AiModelCapabilitiesInput as AiModelCapabilitiesInput, type index$7_AiModelCapabilitiesOutput as AiModelCapabilitiesOutput, type index$7_AiModelCapabilityInputKey as AiModelCapabilityInputKey, type index$7_AiModelCapabilityOutputKey as AiModelCapabilityOutputKey, type index$7_AiModelTag as AiModelTag, type index$7_AiModelsUpdatedAtData as AiModelsUpdatedAtData, type index$7_AiModelsUpdatedAtResponse as AiModelsUpdatedAtResponse, type index$7_AiProviderTemplate as AiProviderTemplate, type index$7_AiProviderTemplateModel as AiProviderTemplateModel, type index$7_AiProviderTemplatesResponse as AiProviderTemplatesResponse, type index$7_AiResponsesRequest as AiResponsesRequest, index$7_MEDIA_FEATURES as MEDIA_FEATURES, index$7_MODEL_PROVIDERS as MODEL_PROVIDERS, type index$7_MediaFeatureId as MediaFeatureId, type index$7_ModelProviderId as ModelProviderId, type index$7_V3BasicSuccess as V3BasicSuccess, type index$7_V3CapabilitiesData as V3CapabilitiesData, type index$7_V3CapabilitiesResponse as V3CapabilitiesResponse, type index$7_V3CreditEstimate as V3CreditEstimate, type index$7_V3EstimatePriceRequest as V3EstimatePriceRequest, type index$7_V3EstimatePriceResponse as V3EstimatePriceResponse, type index$7_V3Feature as V3Feature, type index$7_V3GenerateRequest as V3GenerateRequest, type index$
|
|
2610
|
+
export { index$7_AI_MODEL_CAPABILITY_INPUT_KEYS as AI_MODEL_CAPABILITY_INPUT_KEYS, index$7_AI_MODEL_CAPABILITY_OUTPUT_KEYS as AI_MODEL_CAPABILITY_OUTPUT_KEYS, index$7_AI_MODEL_TAGS as AI_MODEL_TAGS, index$7_AI_MODEL_TAG_LABELS as AI_MODEL_TAG_LABELS, type index$7_AiChatCompletionsRequest as AiChatCompletionsRequest, type index$7_AiChatModel as AiChatModel, type index$7_AiChatModelsResponse as AiChatModelsResponse, type index$7_AiChatSessionMetadata as AiChatSessionMetadata, index$7_AiClient as AiClient, type index$7_AiClientMetadata as AiClientMetadata, type index$7_AiFileUploadOptions as AiFileUploadOptions, type index$7_AiFileUploadResponse as AiFileUploadResponse, type index$7_AiModel as AiModel, type index$7_AiModelCapabilities as AiModelCapabilities, type index$7_AiModelCapabilitiesInput as AiModelCapabilitiesInput, type index$7_AiModelCapabilitiesOutput as AiModelCapabilitiesOutput, type index$7_AiModelCapabilityInputKey as AiModelCapabilityInputKey, type index$7_AiModelCapabilityOutputKey as AiModelCapabilityOutputKey, type index$7_AiModelTag as AiModelTag, type index$7_AiModelsUpdatedAtData as AiModelsUpdatedAtData, type index$7_AiModelsUpdatedAtResponse as AiModelsUpdatedAtResponse, type index$7_AiProviderTemplate as AiProviderTemplate, type index$7_AiProviderTemplateModel as AiProviderTemplateModel, type index$7_AiProviderTemplatesResponse as AiProviderTemplatesResponse, type index$7_AiResponsesRequest as AiResponsesRequest, index$7_MEDIA_FEATURES as MEDIA_FEATURES, index$7_MODEL_PROVIDERS as MODEL_PROVIDERS, type index$7_MediaFeatureId as MediaFeatureId, type index$7_ModelProviderId as ModelProviderId, type index$7_V3BasicSuccess as V3BasicSuccess, type index$7_V3CapabilitiesData as V3CapabilitiesData, type index$7_V3CapabilitiesResponse as V3CapabilitiesResponse, type index$7_V3CreditEstimate as V3CreditEstimate, type index$7_V3EstimatePriceRequest as V3EstimatePriceRequest, type index$7_V3EstimatePriceResponse as V3EstimatePriceResponse, type index$7_V3Feature as V3Feature, type index$7_V3GenerateRequest as V3GenerateRequest, type index$7_V3TaskCreated as V3TaskCreated, type index$7_V3TaskGroupResponse as V3TaskGroupResponse, type index$7_V3TaskItem as V3TaskItem, type index$7_V3TaskResponse as V3TaskResponse, type index$7_V3Variant as V3Variant, index$7_aiChatCompletionsRequestSchema as aiChatCompletionsRequestSchema, index$7_aiChatModelSchema as aiChatModelSchema, index$7_aiChatModelsPayloadSchema as aiChatModelsPayloadSchema, index$7_aiChatModelsResponseSchema as aiChatModelsResponseSchema, index$7_aiChatModelsSuccessSchema as aiChatModelsSuccessSchema, index$7_aiChatSessionMetadataSchema as aiChatSessionMetadataSchema, index$7_aiClientMetadataSchema as aiClientMetadataSchema, index$7_aiEndpoints as aiEndpoints, index$7_aiErrorResponseSchema as aiErrorResponseSchema, index$7_aiModelCapabilitiesInputSchema as aiModelCapabilitiesInputSchema, index$7_aiModelCapabilitiesOutputSchema as aiModelCapabilitiesOutputSchema, index$7_aiModelCapabilitiesSchema as aiModelCapabilitiesSchema, index$7_aiModelCapabilityCommonSchema as aiModelCapabilityCommonSchema, index$7_aiModelParameterFieldSchema as aiModelParameterFieldSchema, index$7_aiModelParamsSchema as aiModelParamsSchema, index$7_aiModelSchema as aiModelSchema, index$7_aiModelsRequestSchema as aiModelsRequestSchema, index$7_aiModelsUpdatedAtDataSchema as aiModelsUpdatedAtDataSchema, index$7_aiModelsUpdatedAtResponseSchema as aiModelsUpdatedAtResponseSchema, index$7_aiModelsUpdatedAtSuccessSchema as aiModelsUpdatedAtSuccessSchema, index$7_aiProviderTemplateModelSchema as aiProviderTemplateModelSchema, index$7_aiProviderTemplateSchema as aiProviderTemplateSchema, index$7_aiProviderTemplatesPayloadSchema as aiProviderTemplatesPayloadSchema, index$7_aiProviderTemplatesRequestSchema as aiProviderTemplatesRequestSchema, index$7_aiProviderTemplatesResponseSchema as aiProviderTemplatesResponseSchema, index$7_aiProviderTemplatesSuccessSchema as aiProviderTemplatesSuccessSchema, index$7_aiResponsesRequestSchema as aiResponsesRequestSchema, index$7_v3BasicSuccessSchema as v3BasicSuccessSchema, index$7_v3CapabilitiesDataSchema as v3CapabilitiesDataSchema, index$7_v3CapabilitiesResponseSchema as v3CapabilitiesResponseSchema, index$7_v3CreditEstimateSchema as v3CreditEstimateSchema, index$7_v3EstimatePriceRequestSchema as v3EstimatePriceRequestSchema, index$7_v3EstimatePriceResponseSchema as v3EstimatePriceResponseSchema, index$7_v3FeatureSchema as v3FeatureSchema, index$7_v3GenerateRequestSchema as v3GenerateRequestSchema, index$7_v3TaskCreatedSchema as v3TaskCreatedSchema, index$7_v3TaskGroupResponseSchema as v3TaskGroupResponseSchema, index$7_v3TaskItemSchema as v3TaskItemSchema, index$7_v3TaskResponseSchema as v3TaskResponseSchema, index$7_v3VariantSchema as v3VariantSchema };
|
|
3065
2611
|
}
|
|
3066
2612
|
|
|
3067
2613
|
declare const aiToolsEndpoints: {
|
|
@@ -4787,4 +4333,4 @@ declare function createTrpcClient(options: TrpcClientOptions): _trpc_client.TRPC
|
|
|
4787
4333
|
transformer: false;
|
|
4788
4334
|
}, _trpc_server.TRPCDecorateCreateRouterOptions<_trpc_server.TRPCCreateRouterOptions>>>;
|
|
4789
4335
|
|
|
4790
|
-
export { AI_MODEL_CAPABILITY_INPUT_KEYS, AI_MODEL_CAPABILITY_OUTPUT_KEYS, AI_MODEL_TAGS, AI_MODEL_TAG_LABELS, type AiChatCompletionsRequest, type AiChatModel, type AiChatModelsResponse, type AiChatSessionMetadata, AiClient, type AiClientMetadata, type AiFileUploadOptions, type AiFileUploadResponse, type AiModel, type AiModelCapabilities, type AiModelCapabilitiesInput, type AiModelCapabilitiesOutput, type AiModelCapabilityInputKey, type AiModelCapabilityOutputKey, type AiModelTag, type AiModelsUpdatedAtData, type AiModelsUpdatedAtResponse, type AiProviderTemplate, type AiProviderTemplateModel, type AiProviderTemplatesResponse, type AiResponsesRequest, AiToolsClient, 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 CreateEmbedOptions, type EmbedEventMap, type EmbedInstance, 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, MEDIA_FEATURES, MODEL_PROVIDERS, type MediaFeatureId, type ModelProviderId, type OrderStatusRequest, type OrderStatusResponse, PaymentClient, type RechargeRequest, type RechargeResponse, type RecommendActionsRequest, type RecommendActionsResponse, type RefundRequest, type RefundResponse, 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 SubscribeRequest, type SubscribeResponse, type SummarizeRequest, type SummarizeResponse, type TrpcClientOptions, type UpgradeRequest, type UpgradeResponse, UserClient, type UserMembershipLevel, type UserSelf, type UserSelfRequest, type UserSelfResponse, type V3BasicSuccess, type V3CapabilitiesData, type V3CapabilitiesResponse, type V3CreditEstimate, type V3EstimatePriceRequest, type V3EstimatePriceResponse, type V3Feature, type V3GenerateRequest, type
|
|
4336
|
+
export { AI_MODEL_CAPABILITY_INPUT_KEYS, AI_MODEL_CAPABILITY_OUTPUT_KEYS, AI_MODEL_TAGS, AI_MODEL_TAG_LABELS, type AiChatCompletionsRequest, type AiChatModel, type AiChatModelsResponse, type AiChatSessionMetadata, AiClient, type AiClientMetadata, type AiFileUploadOptions, type AiFileUploadResponse, type AiModel, type AiModelCapabilities, type AiModelCapabilitiesInput, type AiModelCapabilitiesOutput, type AiModelCapabilityInputKey, type AiModelCapabilityOutputKey, type AiModelTag, type AiModelsUpdatedAtData, type AiModelsUpdatedAtResponse, type AiProviderTemplate, type AiProviderTemplateModel, type AiProviderTemplatesResponse, type AiResponsesRequest, AiToolsClient, 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 CreateEmbedOptions, type EmbedEventMap, type EmbedInstance, 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, MEDIA_FEATURES, MODEL_PROVIDERS, type MediaFeatureId, type ModelProviderId, type OrderStatusRequest, type OrderStatusResponse, PaymentClient, type RechargeRequest, type RechargeResponse, type RecommendActionsRequest, type RecommendActionsResponse, type RefundRequest, type RefundResponse, 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 SubscribeRequest, type SubscribeResponse, type SummarizeRequest, type SummarizeResponse, type TrpcClientOptions, type UpgradeRequest, type UpgradeResponse, UserClient, type UserMembershipLevel, type UserSelf, type UserSelfRequest, type UserSelfResponse, type V3BasicSuccess, type V3CapabilitiesData, type V3CapabilitiesResponse, type V3CreditEstimate, type V3EstimatePriceRequest, type V3EstimatePriceResponse, type V3Feature, type V3GenerateRequest, type V3TaskCreated, type V3TaskGroupResponse, type V3TaskItem, type V3TaskResponse, type V3Variant, aiChatCompletionsRequestSchema, aiChatModelSchema, aiChatModelsPayloadSchema, aiChatModelsResponseSchema, aiChatModelsSuccessSchema, aiChatSessionMetadataSchema, aiClientMetadataSchema, aiEndpoints, aiErrorResponseSchema, aiModelCapabilitiesInputSchema, aiModelCapabilitiesOutputSchema, aiModelCapabilitiesSchema, aiModelCapabilityCommonSchema, aiModelParameterFieldSchema, aiModelParamsSchema, aiModelSchema, aiModelsRequestSchema, aiModelsUpdatedAtDataSchema, aiModelsUpdatedAtResponseSchema, aiModelsUpdatedAtSuccessSchema, index$7 as aiModule, aiProviderTemplateModelSchema, aiProviderTemplateSchema, aiProviderTemplatesPayloadSchema, aiProviderTemplatesRequestSchema, aiProviderTemplatesResponseSchema, aiProviderTemplatesSuccessSchema, aiResponsesRequestSchema, aiToolsEndpoints, index$6 as aiToolsModule, analyzeSkillsRequestSchema, analyzeSkillsResponseSchema, authEndpoints, authExchangeRequestSchema, authExchangeResponseSchema, authLogoutRequestSchema, authLogoutResponseSchema, index$5 as authModule, authRefreshErrorSchema, authRefreshRequestSchema, authRefreshResponseSchema, authRefreshSuccessSchema, authRefreshUserSchema, auxiliaryEndpoints, auxiliaryInferRequestSchema, auxiliaryInferResponseSchema, index$4 as auxiliaryModule, auxiliaryQuotaResponseSchema, contract, createEmbed, createPricingEmbed, createRechargeEmbed, createTrpcClient, feedbackDetailPayloadSchema, feedbackDetailRequestSchema, feedbackDetailResponseSchema, feedbackEndpoints, feedbackItemSchema, feedbackListPayloadSchema, feedbackListRequestSchema, feedbackListResponseSchema, index$3 as feedbackModule, feedbackSaasStatusSchema, feedbackSourceSchema, feedbackSubmitErrorSchema, feedbackSubmitRequestSchema, feedbackSubmitResponseSchema, feedbackTypeSchema, mergeHeaders, normalizeHeaders, orderStatusRequestSchema, orderStatusResponseSchema, paymentEndpoints, index$2 as paymentModule, rechargeRequestSchema, rechargeResponseSchema, recommendActionsRequestSchema, recommendActionsResponseSchema, refundRequestSchema, refundResponseSchema, request, skillArchiveFormatSchema, skillListItemSchema, skillOwnerSummarySchema, skillSourceSchema, skillStatusSchema, skillTypeSchema, skillVersionSummarySchema, skillVisibilitySchema, skillsDetailRequestSchema, skillsDetailResponseSchema, skillsDownloadResponseSchema, skillsEndpoints, skillsListRequestSchema, skillsListResponseSchema, index$1 as skillsModule, subscribeRequestSchema, subscribeResponseSchema, summarizeRequestSchema, summarizeResponseSchema, upgradeRequestSchema, upgradeResponseSchema, userEndpoints, userMembershipLevelSchema, index as userModule, userSelfRequestSchema, userSelfResponseSchema, userSelfSchema, v3BasicSuccessSchema, v3CapabilitiesDataSchema, v3CapabilitiesResponseSchema, v3CreditEstimateSchema, v3EstimatePriceRequestSchema, v3EstimatePriceResponseSchema, v3FeatureSchema, v3GenerateRequestSchema, v3TaskCreatedSchema, v3TaskGroupResponseSchema, v3TaskItemSchema, v3TaskResponseSchema, v3VariantSchema };
|