@zodic/shared 0.0.331 → 0.0.332
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 +1 -1
- package/types/scopes/generic.ts +4 -2
package/package.json
CHANGED
package/types/scopes/generic.ts
CHANGED
|
@@ -409,7 +409,8 @@ export type ControlNetConfig =
|
|
|
409
409
|
initImageId: string;
|
|
410
410
|
initImageType: 'UPLOADED' | 'GENERATED';
|
|
411
411
|
preprocessorId: 100;
|
|
412
|
-
strengthType
|
|
412
|
+
strengthType?: ControlNetStrenghtType;
|
|
413
|
+
weight?: number;
|
|
413
414
|
}
|
|
414
415
|
| {
|
|
415
416
|
initImageId: string;
|
|
@@ -421,7 +422,8 @@ export type ControlNetConfig =
|
|
|
421
422
|
initImageId: string;
|
|
422
423
|
initImageType: 'UPLOADED' | 'GENERATED';
|
|
423
424
|
preprocessorId: 133;
|
|
424
|
-
strengthType
|
|
425
|
+
strengthType?: ControlNetStrenghtType;
|
|
426
|
+
weight?: number;
|
|
425
427
|
};
|
|
426
428
|
|
|
427
429
|
export type PlacementObject = {
|