@wix/auto_sdk_ai-gateway_generators 1.0.0 → 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 +15 -2
- package/build/cjs/index.js +2 -0
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.js +2 -0
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +15 -2
- package/build/cjs/meta.js +2 -0
- package/build/cjs/meta.js.map +1 -1
- package/build/es/index.d.mts +15 -2
- package/build/es/index.mjs +2 -0
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.mjs +2 -0
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +15 -2
- package/build/es/meta.mjs +2 -0
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/index.js +2 -0
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +15 -2
- package/build/internal/cjs/index.typings.js +2 -0
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +15 -2
- package/build/internal/cjs/meta.js +2 -0
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/es/index.mjs +2 -0
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +15 -2
- package/build/internal/es/index.typings.mjs +2 -0
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +15 -2
- package/build/internal/es/meta.mjs +2 -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.
|
|
@@ -3854,6 +3861,8 @@ interface TextToImageRequest {
|
|
|
3854
3861
|
* @maxSize 10
|
|
3855
3862
|
*/
|
|
3856
3863
|
loraModels?: LoraModelSelect[];
|
|
3864
|
+
/** Contains provider-specific configuration settings that customize the behavior of different AI models and services. */
|
|
3865
|
+
providerSettings?: Record<string, any> | null;
|
|
3857
3866
|
}
|
|
3858
3867
|
declare enum TextToImageRequestModel {
|
|
3859
3868
|
UNKNOWN_MODEL = "UNKNOWN_MODEL",
|
|
@@ -3866,10 +3875,14 @@ declare enum TextToImageRequestModel {
|
|
|
3866
3875
|
/** bfl:3@1 */
|
|
3867
3876
|
FLUX_1_KONTEXT_PRO = "FLUX_1_KONTEXT_PRO",
|
|
3868
3877
|
/** runware:108@20 */
|
|
3869
|
-
QWEN_IMAGE_EDIT = "QWEN_IMAGE_EDIT"
|
|
3878
|
+
QWEN_IMAGE_EDIT = "QWEN_IMAGE_EDIT",
|
|
3879
|
+
/** ideogram:4@1 */
|
|
3880
|
+
IDEOGRAM_3_0 = "IDEOGRAM_3_0",
|
|
3881
|
+
/** ideogram:4@3 */
|
|
3882
|
+
IDEOGRAM_3_0_EDIT = "IDEOGRAM_3_0_EDIT"
|
|
3870
3883
|
}
|
|
3871
3884
|
/** @enumType */
|
|
3872
|
-
type TextToImageRequestModelWithLiterals = TextToImageRequestModel | 'UNKNOWN_MODEL' | 'FLUX_1_DEV' | 'FLUX_1_SCHNELL' | 'FLUX_1_KONTEXT_MAX' | 'FLUX_1_KONTEXT_PRO' | 'QWEN_IMAGE_EDIT';
|
|
3885
|
+
type TextToImageRequestModelWithLiterals = TextToImageRequestModel | 'UNKNOWN_MODEL' | 'FLUX_1_DEV' | 'FLUX_1_SCHNELL' | 'FLUX_1_KONTEXT_MAX' | 'FLUX_1_KONTEXT_PRO' | 'QWEN_IMAGE_EDIT' | 'IDEOGRAM_3_0' | 'IDEOGRAM_3_0_EDIT';
|
|
3873
3886
|
interface LoraModelSelect {
|
|
3874
3887
|
/**
|
|
3875
3888
|
* The unique identifier of the LoRA model, typically in the format "wix:<id>@<version>".
|
package/build/cjs/index.js
CHANGED
|
@@ -3550,6 +3550,8 @@ var TextToImageRequestModel = /* @__PURE__ */ ((TextToImageRequestModel2) => {
|
|
|
3550
3550
|
TextToImageRequestModel2["FLUX_1_KONTEXT_MAX"] = "FLUX_1_KONTEXT_MAX";
|
|
3551
3551
|
TextToImageRequestModel2["FLUX_1_KONTEXT_PRO"] = "FLUX_1_KONTEXT_PRO";
|
|
3552
3552
|
TextToImageRequestModel2["QWEN_IMAGE_EDIT"] = "QWEN_IMAGE_EDIT";
|
|
3553
|
+
TextToImageRequestModel2["IDEOGRAM_3_0"] = "IDEOGRAM_3_0";
|
|
3554
|
+
TextToImageRequestModel2["IDEOGRAM_3_0_EDIT"] = "IDEOGRAM_3_0_EDIT";
|
|
3553
3555
|
return TextToImageRequestModel2;
|
|
3554
3556
|
})(TextToImageRequestModel || {});
|
|
3555
3557
|
var PerplexityModel = /* @__PURE__ */ ((PerplexityModel2) => {
|