ugcinc 3.84.4 → 3.84.5

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.
@@ -70,10 +70,12 @@ export declare class AutomationsClient extends BaseClient {
70
70
  }>>>;
71
71
  /**
72
72
  * List all automation runs for the organization (across all templates)
73
+ * @param templateId - Optional filter to show runs from a specific automation only
73
74
  */
74
75
  listAllRuns(params: {
75
76
  limit?: number;
76
77
  reviewStatus?: 'pending_review' | 'approved' | 'rejected' | 'all';
78
+ templateId?: string;
77
79
  }): Promise<ApiResponse<Array<{
78
80
  run: AutomationRun;
79
81
  templateName: string;
@@ -77,6 +77,7 @@ class AutomationsClient extends base_1.BaseClient {
77
77
  }
78
78
  /**
79
79
  * List all automation runs for the organization (across all templates)
80
+ * @param templateId - Optional filter to show runs from a specific automation only
80
81
  */
81
82
  async listAllRuns(params) {
82
83
  return this.request('/automations/list-all-runs', {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ugcinc",
3
- "version": "3.84.4",
3
+ "version": "3.84.5",
4
4
  "description": "TypeScript/JavaScript client for the UGC Inc API",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",