ugcinc 3.38.0 → 3.40.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 +4 -3
  2. package/package.json +1 -1
package/dist/types.d.ts CHANGED
@@ -755,7 +755,7 @@ export type MediaType = 'video' | 'image' | 'audio' | 'text' | 'account' | 'date
755
755
  /**
756
756
  * Array types for collections
757
757
  */
758
- export type ArrayType = 'image[]' | 'video[]' | 'audio[]' | 'text[]' | 'object[]';
758
+ export type ArrayType = 'image[]' | 'video[]' | 'audio[]' | 'text[]' | 'object[]' | 'account[]' | 'social_audio[]';
759
759
  /**
760
760
  * Extended port types (includes non-media types for special nodes)
761
761
  */
@@ -980,6 +980,7 @@ export interface OutputNodeConfig {
980
980
  export interface ManualTriggerOutput {
981
981
  id: string;
982
982
  type: 'image' | 'video' | 'audio' | 'text' | 'social_audio' | 'account';
983
+ isArray?: boolean;
983
984
  }
984
985
  /**
985
986
  * Iteration mode for trigger nodes with account iteration
@@ -1214,7 +1215,7 @@ export interface ForEachOutputProperty {
1214
1215
  /** The property path to extract from each item (e.g., "startMs", "data.value"). Empty string means the whole element. */
1215
1216
  propertyPath: string;
1216
1217
  /** The output type for the port */
1217
- type: 'text' | 'object' | 'image' | 'video' | 'audio';
1218
+ type: 'text' | 'object' | 'image' | 'video' | 'audio' | 'account' | 'social_audio';
1218
1219
  }
1219
1220
  /**
1220
1221
  * For-each input port configuration
@@ -1227,7 +1228,7 @@ export interface ForEachInputPort {
1227
1228
  /** Display title for the port */
1228
1229
  title: string;
1229
1230
  /** The port type */
1230
- type: 'image' | 'video' | 'audio' | 'text' | 'object' | 'account';
1231
+ type: 'image' | 'video' | 'audio' | 'text' | 'object' | 'account' | 'social_audio';
1231
1232
  }
1232
1233
  /**
1233
1234
  * For-each node configuration
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ugcinc",
3
- "version": "3.38.0",
3
+ "version": "3.40.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",