@civitai/client 0.2.0-beta.69 → 0.2.0-beta.70
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.
|
@@ -616,6 +616,7 @@ export {
|
|
|
616
616
|
type Ltx23AiToolkitTrainingInput,
|
|
617
617
|
type Ltx2AiToolkitTrainingInput,
|
|
618
618
|
type MaiImageCreateFalImageGenInput,
|
|
619
|
+
type MaiImageEditFalImageGenInput,
|
|
619
620
|
type MaiImageFalImageGenInput,
|
|
620
621
|
type MediaCaptioningInput,
|
|
621
622
|
type MediaCaptioningOutput,
|
|
@@ -3527,6 +3527,15 @@ export type MaiImageCreateFalImageGenInput = Omit<
|
|
|
3527
3527
|
model: 'maiImage';
|
|
3528
3528
|
engine: 'fal';
|
|
3529
3529
|
};
|
|
3530
|
+
export type MaiImageEditFalImageGenInput = Omit<
|
|
3531
|
+
MaiImageFalImageGenInput,
|
|
3532
|
+
'engine' | 'model' | 'operation'
|
|
3533
|
+
> & {
|
|
3534
|
+
images: Array<string>;
|
|
3535
|
+
operation: 'editImage';
|
|
3536
|
+
model: 'maiImage';
|
|
3537
|
+
engine: 'fal';
|
|
3538
|
+
};
|
|
3530
3539
|
export type MaiImageFalImageGenInput = Omit<FalImageGenInput, 'engine' | 'model'> & {
|
|
3531
3540
|
operation: string;
|
|
3532
3541
|
prompt: string;
|