ugcinc 3.23.0 → 3.24.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 +1 -1
package/dist/types.d.ts CHANGED
@@ -1150,10 +1150,10 @@ export interface AutoPostNodeConfig {
1150
1150
  scheduling?: PostSchedulingConfig;
1151
1151
  /** Social audio configuration */
1152
1152
  socialAudio?: {
1153
- /** If true, read from input port; if false, use selectedId */
1153
+ /** If true, read from input port; if false, use selectedIds */
1154
1154
  isVariable: boolean;
1155
- /** Selected social audio ID (when isVariable is false) */
1156
- selectedId?: string;
1155
+ /** Selected social audio IDs (when isVariable is false) - one is randomly chosen when posting */
1156
+ selectedIds?: string[];
1157
1157
  };
1158
1158
  }
1159
1159
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ugcinc",
3
- "version": "3.23.0",
3
+ "version": "3.24.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",