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.
Files changed (2) hide show
  1. package/dist/types.d.ts +2 -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: SaveToMediaInput[];
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
- tagWithDate?: boolean;
968
+ includeDateTag?: boolean;
969
969
  /** If true, append run ID to make tags unique */
970
970
  makeUnique?: boolean;
971
971
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ugcinc",
3
- "version": "2.87.3",
3
+ "version": "2.87.4",
4
4
  "description": "TypeScript/JavaScript client for the UGC Inc API",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",