ugcinc 3.22.0 → 3.23.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 +7 -0
  2. package/package.json +1 -1
package/dist/types.d.ts CHANGED
@@ -1148,6 +1148,13 @@ export interface AutoPostNodeConfig {
1148
1148
  inputs?: AutoPostInput[];
1149
1149
  /** Scheduling configuration */
1150
1150
  scheduling?: PostSchedulingConfig;
1151
+ /** Social audio configuration */
1152
+ socialAudio?: {
1153
+ /** If true, read from input port; if false, use selectedId */
1154
+ isVariable: boolean;
1155
+ /** Selected social audio ID (when isVariable is false) */
1156
+ selectedId?: string;
1157
+ };
1151
1158
  }
1152
1159
  /**
1153
1160
  * Save To Media node input definition
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ugcinc",
3
- "version": "3.22.0",
3
+ "version": "3.23.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",