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.
- package/dist/types.d.ts +3 -3
- 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
|
|
1153
|
+
/** If true, read from input port; if false, use selectedIds */
|
|
1154
1154
|
isVariable: boolean;
|
|
1155
|
-
/** Selected social audio
|
|
1156
|
-
|
|
1155
|
+
/** Selected social audio IDs (when isVariable is false) - one is randomly chosen when posting */
|
|
1156
|
+
selectedIds?: string[];
|
|
1157
1157
|
};
|
|
1158
1158
|
}
|
|
1159
1159
|
/**
|