ugcinc 3.66.0 → 3.68.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 +3 -3
  2. package/package.json +2 -2
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[]' | 'account[]' | 'social_audio[]';
758
+ export type ArrayType = 'image[]' | 'video[]' | 'audio[]' | 'text[]' | 'object[]' | 'account[]' | 'social_audio[]' | 'boolean[]';
759
759
  /**
760
760
  * Extended port types (includes non-media types for special nodes)
761
761
  */
@@ -1223,7 +1223,7 @@ export interface ForEachOutputProperty {
1223
1223
  /** The property path to extract from each item (e.g., "startMs", "data.value"). Empty string means the whole element. */
1224
1224
  propertyPath: string;
1225
1225
  /** The output type for the port */
1226
- type: 'text' | 'object' | 'image' | 'video' | 'audio' | 'account' | 'social_audio';
1226
+ type: 'text' | 'object' | 'image' | 'video' | 'audio' | 'account' | 'social_audio' | 'boolean';
1227
1227
  }
1228
1228
  /**
1229
1229
  * For-each input port configuration
@@ -1236,7 +1236,7 @@ export interface ForEachInputPort {
1236
1236
  /** Display title for the port */
1237
1237
  title: string;
1238
1238
  /** The port type */
1239
- type: 'image' | 'video' | 'audio' | 'text' | 'object' | 'account' | 'social_audio';
1239
+ type: 'image' | 'video' | 'audio' | 'text' | 'object' | 'account' | 'social_audio' | 'boolean';
1240
1240
  }
1241
1241
  /**
1242
1242
  * For-each node configuration
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ugcinc",
3
- "version": "3.66.0",
3
+ "version": "3.68.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",
@@ -21,7 +21,7 @@
21
21
  "author": "UGC Inc",
22
22
  "license": "MIT",
23
23
  "dependencies": {
24
- "ugcinc": "^3.66.0",
24
+ "ugcinc": "^3.68.0",
25
25
  "zod": "^3.23.0"
26
26
  },
27
27
  "peerDependencies": {