From ce854f086e004e7fcd6f1493677fdca138128dda Mon Sep 17 00:00:00 2001 From: psychedelicious <4822129+psychedelicious@users.noreply.github.com> Date: Sat, 24 Aug 2024 11:55:50 +1000 Subject: [PATCH] chore(ui): typegen --- invokeai/frontend/web/src/services/api/schema.ts | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/invokeai/frontend/web/src/services/api/schema.ts b/invokeai/frontend/web/src/services/api/schema.ts index a6b0eb4cef..1cd6567e20 100644 --- a/invokeai/frontend/web/src/services/api/schema.ts +++ b/invokeai/frontend/web/src/services/api/schema.ts @@ -3127,11 +3127,16 @@ export type components = { * @default true */ use_cache?: boolean; + /** + * @description The source image onto which the masked generated image is pasted. If omitted, the masked generated image is returned with transparency. + * @default null + */ + source_image?: components["schemas"]["ImageField"] | null; /** * @description The image to apply the mask to * @default null */ - image?: components["schemas"]["ImageField"]; + generated_image?: components["schemas"]["ImageField"]; /** * @description The mask to apply * @default null