@wix/auto_sdk_ai-gateway_generators 1.0.1 → 1.0.2
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/build/cjs/index.d.ts +7 -0
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +7 -0
- package/build/cjs/meta.js.map +1 -1
- package/build/es/index.d.mts +7 -0
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +7 -0
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +7 -0
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +7 -0
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +7 -0
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +7 -0
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +2 -2
package/build/cjs/index.d.ts
CHANGED
|
@@ -3838,6 +3838,13 @@ interface TextToImageRequest {
|
|
|
3838
3838
|
cfgScale?: number | null;
|
|
3839
3839
|
/** The number of images to generate from the specified prompt. */
|
|
3840
3840
|
numberResults?: number | null;
|
|
3841
|
+
/**
|
|
3842
|
+
* When doing inpainting, this parameter is required.
|
|
3843
|
+
* Specifies the mask image to be used for the inpainting process. The value must be a URL pointing to the image. The image must be accessible publicly.
|
|
3844
|
+
* Supported formats are: PNG, JPG and WEBP.
|
|
3845
|
+
* @maxLength 10000
|
|
3846
|
+
*/
|
|
3847
|
+
maskImage?: string | null;
|
|
3841
3848
|
/**
|
|
3842
3849
|
* Specifies the seed image to be used for the diffusion process.
|
|
3843
3850
|
* Must be a URL pointing to the image. The image must be accessible publicly.
|