ugcinc 2.87.2 → 2.87.4
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 +6 -2
- package/package.json +1 -1
package/dist/types.d.ts
CHANGED
|
@@ -904,6 +904,10 @@ export interface WorkflowNodeDefinition {
|
|
|
904
904
|
workflowVariableNameToIdMap?: Record<string, string>;
|
|
905
905
|
workflowPassThrough?: Record<string, boolean>;
|
|
906
906
|
outputConfig?: OutputNodeConfig;
|
|
907
|
+
accountConfig?: AccountNodeConfig;
|
|
908
|
+
postVideoConfig?: PostVideoNodeConfig;
|
|
909
|
+
postSlideshowConfig?: PostSlideshowNodeConfig;
|
|
910
|
+
saveToMediaConfig?: SaveToMediaNodeConfig;
|
|
907
911
|
};
|
|
908
912
|
}
|
|
909
913
|
export interface OutputInput {
|
|
@@ -957,11 +961,11 @@ export interface SaveToMediaInput {
|
|
|
957
961
|
*/
|
|
958
962
|
export interface SaveToMediaNodeConfig {
|
|
959
963
|
/** Dynamic inputs to save */
|
|
960
|
-
inputs
|
|
964
|
+
inputs?: SaveToMediaInput[];
|
|
961
965
|
/** Global tag applied to all saved items */
|
|
962
966
|
globalTag?: string;
|
|
963
967
|
/** If true, append date in mm-dd-yy format to tag */
|
|
964
|
-
|
|
968
|
+
includeDateTag?: boolean;
|
|
965
969
|
/** If true, append run ID to make tags unique */
|
|
966
970
|
makeUnique?: boolean;
|
|
967
971
|
}
|