ugcinc 2.87.7 → 2.87.9

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 +1 -9
  2. package/package.json +1 -1
package/dist/types.d.ts CHANGED
@@ -914,16 +914,9 @@ export interface OutputInput {
914
914
  id: string;
915
915
  title: string;
916
916
  type: 'image' | 'video' | 'audio' | 'social_audio' | 'text';
917
- tag?: string;
918
917
  }
919
918
  export interface OutputNodeConfig {
920
919
  inputs: OutputInput[];
921
- saveToMedia: boolean;
922
- globalTag?: string;
923
- makeUnique: boolean;
924
- createPost?: boolean;
925
- requireReview?: boolean;
926
- mainPreviewInputId?: string;
927
920
  }
928
921
  /**
929
922
  * Account node configuration - source node for selecting accounts to post from
@@ -939,8 +932,7 @@ export interface AccountNodeConfig {
939
932
  /**
940
933
  * Post Video node configuration - posts a video to social media
941
934
  */
942
- export interface PostVideoNodeConfig {
943
- }
935
+ export type PostVideoNodeConfig = Record<string, never>;
944
936
  /**
945
937
  * Post Slideshow node configuration - posts a slideshow to social media
946
938
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ugcinc",
3
- "version": "2.87.7",
3
+ "version": "2.87.9",
4
4
  "description": "TypeScript/JavaScript client for the UGC Inc API",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",