ugcinc 2.87.3 → 2.87.5
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 +4 -2
- package/package.json +1 -1
package/dist/types.d.ts
CHANGED
|
@@ -955,17 +955,19 @@ export interface SaveToMediaInput {
|
|
|
955
955
|
id: string;
|
|
956
956
|
title: string;
|
|
957
957
|
type: 'image' | 'video' | 'audio' | 'text';
|
|
958
|
+
/** Optional individual tag for this input (overrides global tag) */
|
|
959
|
+
tag?: string;
|
|
958
960
|
}
|
|
959
961
|
/**
|
|
960
962
|
* Save To Media node configuration - saves outputs to media library
|
|
961
963
|
*/
|
|
962
964
|
export interface SaveToMediaNodeConfig {
|
|
963
965
|
/** Dynamic inputs to save */
|
|
964
|
-
inputs
|
|
966
|
+
inputs?: SaveToMediaInput[];
|
|
965
967
|
/** Global tag applied to all saved items */
|
|
966
968
|
globalTag?: string;
|
|
967
969
|
/** If true, append date in mm-dd-yy format to tag */
|
|
968
|
-
|
|
970
|
+
includeDateTag?: boolean;
|
|
969
971
|
/** If true, append run ID to make tags unique */
|
|
970
972
|
makeUnique?: boolean;
|
|
971
973
|
}
|