ugcinc 3.88.2 → 3.88.3

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 +2 -2
  2. package/package.json +1 -1
package/dist/types.d.ts CHANGED
@@ -760,7 +760,7 @@ export type MediaType = 'video' | 'image' | 'audio' | 'text';
760
760
  /**
761
761
  * Array types for collections
762
762
  */
763
- export type ArrayType = 'image[]' | 'video[]' | 'audio[]' | 'text[]' | 'object[]';
763
+ export type ArrayType = 'image[]' | 'video[]' | 'audio[]' | 'text[]' | 'object[]' | 'account[]' | 'social_audio[]' | 'boolean[]';
764
764
  /**
765
765
  * Extended port types (includes non-media types for special nodes)
766
766
  */
@@ -1000,7 +1000,7 @@ export interface WorkflowNodeDefinition {
1000
1000
  }
1001
1001
  export interface OutputInput {
1002
1002
  id: string;
1003
- title: string;
1003
+ title?: string;
1004
1004
  type: 'image' | 'video' | 'audio' | 'text' | 'social_audio' | 'account' | 'boolean' | 'object';
1005
1005
  /** Individual tag for this input (overrides global tag) */
1006
1006
  tag?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ugcinc",
3
- "version": "3.88.2",
3
+ "version": "3.88.3",
4
4
  "description": "TypeScript/JavaScript client for the UGC Inc API",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",