@civitai/client 0.2.0-beta.8 → 0.2.0-beta.9

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.
@@ -1773,6 +1773,10 @@ export type Workflow = {
1773
1773
  */
1774
1774
  allowMatureContent?: boolean | null;
1775
1775
  upgradeMode?: WorkflowUpgradeMode;
1776
+ /**
1777
+ * The currencies used for this workflow.
1778
+ */
1779
+ currencies?: Array<BuzzClientAccount> | null;
1776
1780
  };
1777
1781
  /**
1778
1782
  * Details of a callback setup for a workflow.
@@ -2070,6 +2074,10 @@ export type WorkflowTemplate = {
2070
2074
  */
2071
2075
  allowMatureContent?: boolean | null;
2072
2076
  upgradeMode?: WorkflowUpgradeMode;
2077
+ /**
2078
+ * The currencies used for this workflow.
2079
+ */
2080
+ currencies?: Array<BuzzClientAccount> | null;
2073
2081
  };
2074
2082
  export type WorkflowTips = {
2075
2083
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@civitai/client",
3
- "version": "0.2.0-beta.8",
3
+ "version": "0.2.0-beta.9",
4
4
  "description": "Civitai's javascript client for generating ai content",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -54,4 +54,4 @@
54
54
  "publishConfig": {
55
55
  "access": "public"
56
56
  }
57
- }
57
+ }