ugcinc 4.5.52 → 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
|