chore(ui): typegen

This commit is contained in:
psychedelicious 2024-07-16 21:31:49 +10:00
parent a5708eaefe
commit 5087b306c0

View File

@ -3090,7 +3090,7 @@ export type components = {
}; };
/** /**
* Canvas V2 Mask and Crop * Canvas V2 Mask and Crop
* @description Apply a mask to an image * @description Handles Canvas V2 image output masking and cropping
*/ */
CanvasV2MaskAndCropInvocation: { CanvasV2MaskAndCropInvocation: {
/** /**
@ -3131,17 +3131,11 @@ export type components = {
*/ */
mask?: components["schemas"]["ImageField"]; mask?: components["schemas"]["ImageField"];
/** /**
* Invert * Mask Blur
* @description Whether or not to invert the mask * @description The amount to blur the mask by
* @default false * @default 0
*/ */
invert?: boolean; mask_blur?: number;
/**
* Crop Visible
* @description Crop the image to the mask
* @default false
*/
crop_visible?: boolean;
/** /**
* type * type
* @default canvas_v2_mask_and_crop * @default canvas_v2_mask_and_crop
@ -3172,15 +3166,15 @@ export type components = {
*/ */
type: "canvas_v2_mask_and_crop_output"; type: "canvas_v2_mask_and_crop_output";
/** /**
* X * Offset X
* @description The x coordinate of the image * @description The x offset of the image, after cropping
*/ */
x: number; offset_x: number;
/** /**
* Y * Offset Y
* @description The y coordinate of the image * @description The y offset of the image, after cropping
*/ */
y: number; offset_y: number;
}; };
/** /**
* Center Pad or Crop Image * Center Pad or Crop Image