ugcinc 2.87.3 → 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 +2 -2
- package/package.json +1 -1
package/dist/types.d.ts
CHANGED
|
@@ -961,11 +961,11 @@ export interface SaveToMediaInput {
|
|
|
961
961
|
*/
|
|
962
962
|
export interface SaveToMediaNodeConfig {
|
|
963
963
|
/** Dynamic inputs to save */
|
|
964
|
-
inputs
|
|
964
|
+
inputs?: SaveToMediaInput[];
|
|
965
965
|
/** Global tag applied to all saved items */
|
|
966
966
|
globalTag?: string;
|
|
967
967
|
/** If true, append date in mm-dd-yy format to tag */
|
|
968
|
-
|
|
968
|
+
includeDateTag?: boolean;
|
|
969
969
|
/** If true, append run ID to make tags unique */
|
|
970
970
|
makeUnique?: boolean;
|
|
971
971
|
}
|