@flaqai/network 0.2.32 → 0.2.34
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.
|
@@ -7,9 +7,9 @@ type JsonValue = JsonPrimitive | {
|
|
|
7
7
|
type CanvasBuiltInNodeType = 'image' | 'text' | 'config' | 'video' | 'audio' | 'group';
|
|
8
8
|
type CanvasNodeTypeId = CanvasBuiltInNodeType | (string & {});
|
|
9
9
|
type CanvasNodeStatus = 'idle' | 'success' | 'loading' | 'error';
|
|
10
|
-
type CanvasGenerationMode = 'text' | 'image' | 'video' | 'audio';
|
|
10
|
+
type CanvasGenerationMode = 'text' | 'image' | 'video' | 'audio' | '3d';
|
|
11
11
|
type CanvasImageGenerationType = 'generation' | 'edit';
|
|
12
|
-
type CanvasProjectTaskType = 'image' | 'video' | 'music';
|
|
12
|
+
type CanvasProjectTaskType = 'image' | 'video' | 'music' | '3d';
|
|
13
13
|
type CanvasProjectTaskStatus = 'pending' | 'processing' | 'completed' | 'fail';
|
|
14
14
|
type CanvasTextReasoningEffort = 'auto' | 'low' | 'medium' | 'high' | 'xhigh';
|
|
15
15
|
type CanvasBackgroundMode = 'dots' | 'lines' | 'blank';
|
|
@@ -54,6 +54,9 @@ interface CanvasNodeMetadata {
|
|
|
54
54
|
readonly vquality?: string;
|
|
55
55
|
readonly generateAudio?: string;
|
|
56
56
|
readonly watermark?: string;
|
|
57
|
+
readonly seed?: number;
|
|
58
|
+
readonly negativePrompt?: string;
|
|
59
|
+
readonly isTranslate?: boolean;
|
|
57
60
|
readonly audioVoice?: string;
|
|
58
61
|
readonly audioFormat?: string;
|
|
59
62
|
readonly audioSpeed?: string;
|