ugcinc 3.23.0 → 3.25.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 -7
- package/package.json +1 -1
package/dist/types.d.ts
CHANGED
|
@@ -1051,10 +1051,6 @@ export interface RecurrenceNodeConfig {
|
|
|
1051
1051
|
randomWindowStart: string;
|
|
1052
1052
|
randomWindowEnd: string;
|
|
1053
1053
|
timezone: string;
|
|
1054
|
-
/** Maximum number of runs before stopping (null = unlimited) */
|
|
1055
|
-
maxRuns?: number | null;
|
|
1056
|
-
/** End date for the recurrence in ISO format (YYYY-MM-DD) - if set, runs until this date */
|
|
1057
|
-
endDate?: string;
|
|
1058
1054
|
/** Optional collection input for iterating over multiple accounts */
|
|
1059
1055
|
collectionInput?: TriggerCollectionConfig;
|
|
1060
1056
|
/** Optional media input for providing media to downstream nodes */
|
|
@@ -1150,10 +1146,10 @@ export interface AutoPostNodeConfig {
|
|
|
1150
1146
|
scheduling?: PostSchedulingConfig;
|
|
1151
1147
|
/** Social audio configuration */
|
|
1152
1148
|
socialAudio?: {
|
|
1153
|
-
/** If true, read from input port; if false, use
|
|
1149
|
+
/** If true, read from input port; if false, use selectedIds */
|
|
1154
1150
|
isVariable: boolean;
|
|
1155
|
-
/** Selected social audio
|
|
1156
|
-
|
|
1151
|
+
/** Selected social audio IDs (when isVariable is false) - one is randomly chosen when posting */
|
|
1152
|
+
selectedIds?: string[];
|
|
1157
1153
|
};
|
|
1158
1154
|
}
|
|
1159
1155
|
/**
|