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