ugcinc 4.5.88 → 4.5.89

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.
@@ -380,7 +380,7 @@ export declare const nodeDefinitions: {
380
380
  __TOutputs: import("./video-composer").VideoComposerNodeOutputs;
381
381
  };
382
382
  readonly 'video-import': NodeDefinition<"video-import", "source", {
383
- platform: import("./video-import").VideoImportPlatform | undefined;
383
+ platform: import("./video-import").VideoImportPlatform;
384
384
  videoQuality: import("./video-import").VideoImportQuality;
385
385
  outputMode: import("./types").OutputMode;
386
386
  selectionMode: import("./types").SelectionMode;
@@ -6,10 +6,10 @@ export interface VideoImportNodeInputs {
6
6
  export interface VideoImportNodeOutputs {
7
7
  video: VideoValue;
8
8
  }
9
- export type VideoImportPlatform = 'youtube' | 'tiktok' | 'instagram';
9
+ export type VideoImportPlatform = 'detect' | 'youtube' | 'tiktok' | 'instagram';
10
10
  export type VideoImportQuality = '360' | '480' | '720' | '1080' | '1440' | '2160';
11
11
  declare const definition: import("./types").NodeDefinition<"video-import", "source", {
12
- platform: VideoImportPlatform | undefined;
12
+ platform: VideoImportPlatform;
13
13
  videoQuality: VideoImportQuality;
14
14
  outputMode: OutputMode;
15
15
  selectionMode: SelectionMode;
@@ -14,7 +14,7 @@ const definition = (0, types_1.defineNode)({
14
14
  outputModes: ['per-input', 'single'],
15
15
  selectionModes: ['random', 'sequential'],
16
16
  defaults: {
17
- platform: undefined,
17
+ platform: 'detect',
18
18
  videoQuality: '1080',
19
19
  outputMode: 'per-input',
20
20
  selectionMode: 'random',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ugcinc",
3
- "version": "4.5.88",
3
+ "version": "4.5.89",
4
4
  "description": "TypeScript/JavaScript client for the UGC Inc API",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",