vidpipe 1.3.18 → 1.3.19
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/README.md +3 -0
- package/dist/cli.js +1694 -343
- package/dist/cli.js.map +1 -1
- package/dist/index.d.ts +4 -0
- package/dist/index.js +864 -221
- package/dist/index.js.map +1 -1
- package/package.json +4 -3
package/dist/index.d.ts
CHANGED
|
@@ -855,6 +855,8 @@ interface TimeSlot {
|
|
|
855
855
|
interface ClipTypeSchedule {
|
|
856
856
|
slots: TimeSlot[];
|
|
857
857
|
avoidDays: DayOfWeek[];
|
|
858
|
+
queueId?: string;
|
|
859
|
+
queueName?: string;
|
|
858
860
|
}
|
|
859
861
|
interface PlatformSchedule {
|
|
860
862
|
slots: TimeSlot[];
|
|
@@ -921,6 +923,8 @@ interface ProcessOptions {
|
|
|
921
923
|
skipVisualEnhancement?: boolean;
|
|
922
924
|
/** Skip publishing generated social content */
|
|
923
925
|
skipSocialPublish?: boolean;
|
|
926
|
+
/** Pipeline spec preset name or path to YAML spec file */
|
|
927
|
+
spec?: string;
|
|
924
928
|
/** ISO 8601 date for the publish-by deadline of auto-created ideas (default: 7 days from now) */
|
|
925
929
|
publishBy?: string;
|
|
926
930
|
/** Callback for real-time pipeline progress events (stage starts, completions, errors) */
|