@zodic/shared 0.0.333 → 0.0.334

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zodic/shared",
3
- "version": "0.0.333",
3
+ "version": "0.0.334",
4
4
  "module": "index.ts",
5
5
  "type": "module",
6
6
  "publishConfig": {
@@ -1,6 +1,6 @@
1
1
  import { pointNameMap } from '../../utils/astroPrompts/pointNameMap';
2
2
  import { BackendBindings } from './cloudflare';
3
- import { ControlNet, ControlNetConfig, Gender } from './generic';
3
+ import { ControlNet, Gender } from './generic';
4
4
 
5
5
  export const zodiacSigns = [
6
6
  'aries',
@@ -163,7 +163,7 @@ export interface LeonardoGenerateImageParams {
163
163
  prompt: string;
164
164
  width: number;
165
165
  height: number;
166
- controlNets?: Array<ControlNetConfig>;
166
+ controlNets?: Array<ControlNet>;
167
167
  quantity?: number;
168
168
  negPrompt?: string | null;
169
169
  }