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.
- package/dist/types.d.ts +7 -0
- 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
|