@civitai/client 0.2.0-beta.21 → 0.2.0-beta.22

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.
@@ -4435,6 +4435,18 @@ export type QueryWorkflowsData = {
4435
4435
  * When set to true, any blob that has mature won't be available and won't have a URL
4436
4436
  */
4437
4437
  hideMatureContent?: boolean;
4438
+ /**
4439
+ * An optional start date to filter workflows created on or after this date
4440
+ */
4441
+ fromDate?: string;
4442
+ /**
4443
+ * An optional end date to filter workflows created on or before this date
4444
+ */
4445
+ toDate?: string;
4446
+ /**
4447
+ * When set to true, excludes workflows with Failed, Expired, or Canceled status
4448
+ */
4449
+ excludeFailed?: boolean;
4438
4450
  };
4439
4451
  url: '/v2/consumer/workflows';
4440
4452
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@civitai/client",
3
- "version": "0.2.0-beta.21",
3
+ "version": "0.2.0-beta.22",
4
4
  "description": "Civitai's javascript client for generating ai content",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",