ugcinc 4.5.51 → 4.5.53

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.
@@ -4,7 +4,7 @@
4
4
  * Provides methods to interact with the UGC Inc Automations API.
5
5
  * For graph logic (validation, port computation, connections), use graph-controller.ts
6
6
  */
7
- import type { WorkflowDefinition, AutomationTemplate, AutomationRun, ExecutorNode, ExecutionEdge, AutomationExport, AutomationRunExport, AutomationRunLog, PortValue } from './types';
7
+ import type { WorkflowDefinition, AutomationTemplate, AutomationRun, ExecutorNode, ExecutionEdge, AutomationExport, AutomationRunExport, AutomationRunLog, PortValue, ScheduleConfig, AccountIterationConfig } from './types';
8
8
  import type { ApiResponse } from '../types';
9
9
  import { BaseClient } from '../base';
10
10
  export declare class AutomationsClient extends BaseClient {
@@ -153,6 +153,8 @@ export declare class AutomationsClient extends BaseClient {
153
153
  */
154
154
  publish(params: {
155
155
  templateId: string;
156
+ scheduleConfig: ScheduleConfig;
157
+ accountIterationConfig: AccountIterationConfig | null;
156
158
  }): Promise<ApiResponse<null>>;
157
159
  /**
158
160
  * Unpublish an automation - disables recurrence and stops the scheduler workflow
@@ -8,7 +8,7 @@ const definition = (0, types_1.defineNode)({
8
8
  nodeId: 'video-import',
9
9
  label: 'Import Video',
10
10
  description: 'Import videos from YouTube, TikTok, Instagram & more',
11
- guide: 'Downloads video from a URL (YouTube, TikTok, or Instagram). Use when you need to repurpose or remix external video. Use cases: reaction content, compilations, reposting with edits, clipping highlights. Requires a URL input (from Input node or Text/List). Output is a video value for downstream nodes (Video Composer, Auto Caption, etc.). Not for generating new video—use Generate Video for AI-created content.',
11
+ guide: 'Downloads video from a URL (YouTube, TikTok, or Instagram). Use for clipping, or when the user wants to download and use dynamically found media from TikTok/Instagram/YouTube. Use cases: reaction content, compilations, reposting with edits, clipping highlights, pulling in trending videos. Requires a URL input (from Input node or Text/List). Output is a video value for downstream nodes (Video Composer, Auto Caption, etc.). Not for generating new video—use Generate Video for AI-created content.',
12
12
  type: 'source',
13
13
  category: 'Sources',
14
14
  outputModes: ['per-input', 'single'],
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ugcinc",
3
- "version": "4.5.51",
3
+ "version": "4.5.53",
4
4
  "description": "TypeScript/JavaScript client for the UGC Inc API",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",