@wix/auto_sdk_ai-gateway_generators 1.0.65 → 1.0.66
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 +26 -2
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +26 -2
- package/build/cjs/meta.js.map +1 -1
- package/build/es/index.d.mts +26 -2
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +26 -2
- 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 +26 -2
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +26 -2
- 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 +26 -2
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +26 -2
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +2 -2
package/build/es/index.d.mts
CHANGED
|
@@ -4747,8 +4747,20 @@ interface TextToImageRequest {
|
|
|
4747
4747
|
* @maxSize 10
|
|
4748
4748
|
*/
|
|
4749
4749
|
loraModels?: LoraModelSelect[];
|
|
4750
|
-
/**
|
|
4750
|
+
/**
|
|
4751
|
+
* Contains provider-specific configuration settings that customize the behavior of different AI models and services.
|
|
4752
|
+
* @deprecated Contains provider-specific configuration settings that customize the behavior of different AI models and services.
|
|
4753
|
+
* @replacedBy provider_settings_string
|
|
4754
|
+
* @targetRemovalDate 2030-01-01
|
|
4755
|
+
*/
|
|
4751
4756
|
providerSettings?: Record<string, any> | null;
|
|
4757
|
+
/**
|
|
4758
|
+
* Contains provider-specific configuration settings that customize the behavior of different AI models and services.
|
|
4759
|
+
* Uses a string representation that's parsed directly into JSON to avoid issues with number parsing.
|
|
4760
|
+
* https://stackoverflow.com/questions/51818125/how-to-use-ints-in-a-protobuf-struct
|
|
4761
|
+
* @maxLength 1000000
|
|
4762
|
+
*/
|
|
4763
|
+
providerSettingsString?: string | null;
|
|
4752
4764
|
/** Inputs for the image generation process. */
|
|
4753
4765
|
inputs?: Inputs;
|
|
4754
4766
|
}
|
|
@@ -5718,8 +5730,20 @@ interface VideoInferenceRequest {
|
|
|
5718
5730
|
* @max 4
|
|
5719
5731
|
*/
|
|
5720
5732
|
numberResults?: number | null;
|
|
5721
|
-
/**
|
|
5733
|
+
/**
|
|
5734
|
+
* Contains provider-specific configuration settings that customize the behavior of different AI models and services.
|
|
5735
|
+
* @deprecated Contains provider-specific configuration settings that customize the behavior of different AI models and services.
|
|
5736
|
+
* @replacedBy provider_settings_string
|
|
5737
|
+
* @targetRemovalDate 2030-01-01
|
|
5738
|
+
*/
|
|
5722
5739
|
providerSettings?: Record<string, any> | null;
|
|
5740
|
+
/**
|
|
5741
|
+
* Contains provider-specific configuration settings that customize the behavior of different AI models and services.
|
|
5742
|
+
* Uses a string representation that's parsed directly into JSON to avoid issues with number parsing.
|
|
5743
|
+
* https://stackoverflow.com/questions/51818125/how-to-use-ints-in-a-protobuf-struct
|
|
5744
|
+
* @maxLength 1000000
|
|
5745
|
+
*/
|
|
5746
|
+
providerSettingsString?: string | null;
|
|
5723
5747
|
/**
|
|
5724
5748
|
* Skip polling flag - if set to false, will poll until video generation is complete
|
|
5725
5749
|
* If not set or true, returns immediately with task UUID for manual polling
|