@picsart/ai-sdk 5.28.7 → 5.29.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/_vendor/workflows-types/index.d.ts +1433 -1338
- package/index.d.ts +2 -12
- package/index.js +151 -154
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -841,19 +841,10 @@ type ModelInputById = {
|
|
|
841
841
|
prompt: string;
|
|
842
842
|
startFrame?: string;
|
|
843
843
|
endFrame?: string;
|
|
844
|
-
resolution?: "480p" | "768p";
|
|
845
|
-
duration?: number;
|
|
846
|
-
aspectRatio?: "21:9" | "16:9" | "4:3" | "1:1" | "3:4" | "9:16";
|
|
847
|
-
promptExpansionMode?: "disabled" | "balanced" | "quality";
|
|
848
|
-
seed?: number;
|
|
849
|
-
enableSafetyChecker?: boolean;
|
|
850
|
-
};
|
|
851
|
-
"minimax-h3-max-r2v": {
|
|
852
|
-
prompt: string;
|
|
853
844
|
imageUrls?: string[];
|
|
854
845
|
videoUrls?: string[];
|
|
855
846
|
audioUrls?: string[];
|
|
856
|
-
resolution?: "480p" | "768p";
|
|
847
|
+
resolution?: "480p" | "768p" | "1080p";
|
|
857
848
|
duration?: number;
|
|
858
849
|
aspectRatio?: "adaptive" | "21:9" | "16:9" | "4:3" | "1:1" | "3:4" | "9:16";
|
|
859
850
|
promptExpansionMode?: "balanced" | "quality";
|
|
@@ -864,7 +855,7 @@ type ModelInputById = {
|
|
|
864
855
|
prompt: string;
|
|
865
856
|
startFrame?: string;
|
|
866
857
|
endFrame?: string;
|
|
867
|
-
resolution?: "480p" | "768p";
|
|
858
|
+
resolution?: "480p" | "768p" | "1080p";
|
|
868
859
|
duration?: number;
|
|
869
860
|
aspectRatio?: "21:9" | "16:9" | "4:3" | "1:1" | "3:4" | "9:16";
|
|
870
861
|
promptExpansionMode?: "balanced" | "quality";
|
|
@@ -2737,7 +2728,6 @@ declare const Models: {
|
|
|
2737
2728
|
readonly Minimax02Hd: "minimax-02-hd";
|
|
2738
2729
|
readonly MinimaxH3: "minimax-h3";
|
|
2739
2730
|
readonly MinimaxH3Max: "minimax-h3-max";
|
|
2740
|
-
readonly MinimaxH3MaxR2v: "minimax-h3-max-r2v";
|
|
2741
2731
|
readonly MinimaxH3MaxTurbo: "minimax-h3-max-turbo";
|
|
2742
2732
|
readonly MinimaxMusicV2: "minimax-music-v2";
|
|
2743
2733
|
readonly MinimaxMusicV3: "minimax-music-v3";
|