ugcinc 2.48.0 → 2.49.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/types.d.ts +5 -1
- package/package.json +1 -1
package/dist/types.d.ts
CHANGED
|
@@ -779,8 +779,12 @@ export interface WorkflowNodeDefinition {
|
|
|
779
779
|
selectionConfig?: SelectionConfig;
|
|
780
780
|
selectionState?: SelectionState;
|
|
781
781
|
outputMode?: OutputMode;
|
|
782
|
-
variableType?: 'image' | 'video' | 'audio' | 'text';
|
|
782
|
+
variableType?: 'image' | 'video' | 'audio' | 'text' | 'dropdown';
|
|
783
783
|
defaultValue?: string;
|
|
784
|
+
dropdownOptions?: Array<{
|
|
785
|
+
label: string;
|
|
786
|
+
value: string;
|
|
787
|
+
}>;
|
|
784
788
|
workflowTemplateId?: string;
|
|
785
789
|
workflowVariableNameToIdMap?: Record<string, string>;
|
|
786
790
|
workflowPassThrough?: Record<string, boolean>;
|