@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.
@@ -4750,8 +4750,20 @@ interface TextToImageRequest {
4750
4750
  * @maxSize 10
4751
4751
  */
4752
4752
  loraModels?: LoraModelSelect[];
4753
- /** Contains provider-specific configuration settings that customize the behavior of different AI models and services. */
4753
+ /**
4754
+ * Contains provider-specific configuration settings that customize the behavior of different AI models and services.
4755
+ * @deprecated Contains provider-specific configuration settings that customize the behavior of different AI models and services.
4756
+ * @replacedBy provider_settings_string
4757
+ * @targetRemovalDate 2030-01-01
4758
+ */
4754
4759
  providerSettings?: Record<string, any> | null;
4760
+ /**
4761
+ * Contains provider-specific configuration settings that customize the behavior of different AI models and services.
4762
+ * Uses a string representation that's parsed directly into JSON to avoid issues with number parsing.
4763
+ * https://stackoverflow.com/questions/51818125/how-to-use-ints-in-a-protobuf-struct
4764
+ * @maxLength 1000000
4765
+ */
4766
+ providerSettingsString?: string | null;
4755
4767
  /** Inputs for the image generation process. */
4756
4768
  inputs?: Inputs;
4757
4769
  }
@@ -5721,8 +5733,20 @@ interface VideoInferenceRequest {
5721
5733
  * @max 4
5722
5734
  */
5723
5735
  numberResults?: number | null;
5724
- /** Contains provider-specific configuration settings that customize the behavior of different AI models and services. */
5736
+ /**
5737
+ * Contains provider-specific configuration settings that customize the behavior of different AI models and services.
5738
+ * @deprecated Contains provider-specific configuration settings that customize the behavior of different AI models and services.
5739
+ * @replacedBy provider_settings_string
5740
+ * @targetRemovalDate 2030-01-01
5741
+ */
5725
5742
  providerSettings?: Record<string, any> | null;
5743
+ /**
5744
+ * Contains provider-specific configuration settings that customize the behavior of different AI models and services.
5745
+ * Uses a string representation that's parsed directly into JSON to avoid issues with number parsing.
5746
+ * https://stackoverflow.com/questions/51818125/how-to-use-ints-in-a-protobuf-struct
5747
+ * @maxLength 1000000
5748
+ */
5749
+ providerSettingsString?: string | null;
5726
5750
  /**
5727
5751
  * Skip polling flag - if set to false, will poll until video generation is complete
5728
5752
  * If not set or true, returns immediately with task UUID for manual polling