ugcinc 3.48.0 → 3.50.0

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.
@@ -139,14 +139,12 @@ export declare class AutomationsClient extends BaseClient {
139
139
  lastRunAt: string | null;
140
140
  }>>;
141
141
  /**
142
- * Publish an automation - enables recurrence and starts the scheduler workflow
142
+ * Publish an automation - enables recurrence scheduling
143
143
  * The automation will run automatically based on its recurrence configuration
144
144
  */
145
145
  publish(params: {
146
146
  templateId: string;
147
- }): Promise<ApiResponse<{
148
- schedulerRunId: string;
149
- }>>;
147
+ }): Promise<ApiResponse<null>>;
150
148
  /**
151
149
  * Unpublish an automation - disables recurrence and stops the scheduler workflow
152
150
  * No more scheduled runs will occur until the automation is published again
@@ -156,7 +156,7 @@ class AutomationsClient extends base_1.BaseClient {
156
156
  });
157
157
  }
158
158
  /**
159
- * Publish an automation - enables recurrence and starts the scheduler workflow
159
+ * Publish an automation - enables recurrence scheduling
160
160
  * The automation will run automatically based on its recurrence configuration
161
161
  */
162
162
  async publish(params) {
package/dist/types.d.ts CHANGED
@@ -1248,7 +1248,7 @@ export interface ForEachNodeConfig {
1248
1248
  /**
1249
1249
  * Random node value type - determines the type for all inputs and outputs
1250
1250
  */
1251
- export type RandomValueType = 'image' | 'video' | 'audio' | 'text' | 'object' | 'account';
1251
+ export type RandomValueType = 'image' | 'video' | 'audio' | 'text' | 'object' | 'account' | 'boolean';
1252
1252
  /**
1253
1253
  * Random node input port configuration (for multi-input mode)
1254
1254
  * Each input has an associated probability weight
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ugcinc",
3
- "version": "3.48.0",
3
+ "version": "3.50.0",
4
4
  "description": "TypeScript/JavaScript client for the UGC Inc API",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",