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.
Files changed (2) hide show
  1. package/dist/types.d.ts +5 -1
  2. 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>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ugcinc",
3
- "version": "2.48.0",
3
+ "version": "2.49.0",
4
4
  "description": "TypeScript/JavaScript client for the UGC Inc API",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",