@civitai/client 0.1.9-beta.40 → 0.1.9-beta.41

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.
@@ -1685,6 +1685,10 @@ export declare const $LightricksVideoGenInput: {
1685
1685
  readonly description: 'Either A URL, A DataURL or a Base64 string';
1686
1686
  readonly nullable: true;
1687
1687
  };
1688
+ readonly expandPrompt: {
1689
+ readonly type: 'boolean';
1690
+ readonly default: true;
1691
+ };
1688
1692
  };
1689
1693
  readonly additionalProperties: false;
1690
1694
  },
@@ -1682,6 +1682,10 @@ export const $LightricksVideoGenInput = {
1682
1682
  description: 'Either A URL, A DataURL or a Base64 string',
1683
1683
  nullable: true,
1684
1684
  },
1685
+ expandPrompt: {
1686
+ type: 'boolean',
1687
+ default: true,
1688
+ },
1685
1689
  },
1686
1690
  additionalProperties: false,
1687
1691
  },
@@ -879,6 +879,7 @@ export type LightricksVideoGenInput = VideoGenInput & {
879
879
  * Either A URL, A DataURL or a Base64 string
880
880
  */
881
881
  sourceImage?: string | null;
882
+ expandPrompt?: boolean;
882
883
  } & {
883
884
  engine: 'lightricks';
884
885
  };
package/package.json CHANGED
@@ -1,10 +1,11 @@
1
1
  {
2
2
  "name": "@civitai/client",
3
- "version": "0.1.9-beta.40",
3
+ "version": "0.1.9-beta.41",
4
4
  "description": "Civitai's javascript client for generating ai content",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
7
7
  "sideEffects": false,
8
+ "type": "module",
8
9
  "repository": {
9
10
  "type": "git",
10
11
  "url": "git+https://github.com/civitai/civitai-client-javascript.git"