@wix/auto_sdk_ai-gateway_generators 1.0.64 → 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.
@@ -361,10 +361,11 @@ declare enum OpenaiproxyV1Model {
361
361
  GPT_5_2025_08_07 = "GPT_5_2025_08_07",
362
362
  GPT_5_MINI_2025_08_07 = "GPT_5_MINI_2025_08_07",
363
363
  GPT_5_NANO_2025_08_07 = "GPT_5_NANO_2025_08_07",
364
- GPT_5_2_2025_12_11_COMPLETION = "GPT_5_2_2025_12_11_COMPLETION"
364
+ GPT_5_2_2025_12_11_COMPLETION = "GPT_5_2_2025_12_11_COMPLETION",
365
+ GPT_5_1_2025_11_13_COMPLETION = "GPT_5_1_2025_11_13_COMPLETION"
365
366
  }
366
367
  /** @enumType */
367
- type OpenaiproxyV1ModelWithLiterals = OpenaiproxyV1Model | 'UNKNOWN' | 'GPT_3_5_TURBO' | 'GPT_3_5_TURBO_0301' | 'GPT_4' | 'GPT_4_0314' | 'GPT_4_32K' | 'GPT_4_32K_0314' | 'GPT_3_5_TURBO_0613' | 'GPT_3_5_TURBO_16K' | 'GPT_3_5_TURBO_16K_0613' | 'GPT_4_0613' | 'GPT_4_32K_0613' | 'GPT_3_5_TURBO_1106' | 'GPT_4_1106_PREVIEW' | 'GPT_4_VISION_PREVIEW' | 'GPT_4_TURBO_PREVIEW' | 'GPT_4_0125_PREVIEW' | 'GPT_3_5_TURBO_0125' | 'GPT_4_TURBO_2024_04_09' | 'GPT_4O_2024_05_13' | 'GPT_4O_MINI_2024_07_18' | 'GPT_4O_2024_08_06' | 'O1_PREVIEW' | 'O1_PREVIEW_2024_09_12' | 'O1_MINI' | 'O1_MINI_2024_09_12' | 'GPT_4O_2024_11_20' | 'O1_2024_12_17' | 'O3_MINI_2025_01_31' | 'GPT_4_OLD' | 'GPT_4_1_2025_04_14' | 'GPT_4_1_MINI_2025_04_14' | 'GPT_4_1_NANO_2025_04_14' | 'O3_2025_04_16' | 'O4_MINI_2025_04_16' | 'GPT_EXP' | 'GPT_EXP_2' | 'GPT_5_2025_08_07' | 'GPT_5_MINI_2025_08_07' | 'GPT_5_NANO_2025_08_07' | 'GPT_5_2_2025_12_11_COMPLETION';
368
+ type OpenaiproxyV1ModelWithLiterals = OpenaiproxyV1Model | 'UNKNOWN' | 'GPT_3_5_TURBO' | 'GPT_3_5_TURBO_0301' | 'GPT_4' | 'GPT_4_0314' | 'GPT_4_32K' | 'GPT_4_32K_0314' | 'GPT_3_5_TURBO_0613' | 'GPT_3_5_TURBO_16K' | 'GPT_3_5_TURBO_16K_0613' | 'GPT_4_0613' | 'GPT_4_32K_0613' | 'GPT_3_5_TURBO_1106' | 'GPT_4_1106_PREVIEW' | 'GPT_4_VISION_PREVIEW' | 'GPT_4_TURBO_PREVIEW' | 'GPT_4_0125_PREVIEW' | 'GPT_3_5_TURBO_0125' | 'GPT_4_TURBO_2024_04_09' | 'GPT_4O_2024_05_13' | 'GPT_4O_MINI_2024_07_18' | 'GPT_4O_2024_08_06' | 'O1_PREVIEW' | 'O1_PREVIEW_2024_09_12' | 'O1_MINI' | 'O1_MINI_2024_09_12' | 'GPT_4O_2024_11_20' | 'O1_2024_12_17' | 'O3_MINI_2025_01_31' | 'GPT_4_OLD' | 'GPT_4_1_2025_04_14' | 'GPT_4_1_MINI_2025_04_14' | 'GPT_4_1_NANO_2025_04_14' | 'O3_2025_04_16' | 'O4_MINI_2025_04_16' | 'GPT_EXP' | 'GPT_EXP_2' | 'GPT_5_2025_08_07' | 'GPT_5_MINI_2025_08_07' | 'GPT_5_NANO_2025_08_07' | 'GPT_5_2_2025_12_11_COMPLETION' | 'GPT_5_1_2025_11_13_COMPLETION';
368
369
  interface OpenaiproxyV1ChatCompletionMessage {
369
370
  /** The role of the message author. */
370
371
  role?: OpenaiproxyV1ChatCompletionMessageMessageRoleWithLiterals;
@@ -4746,8 +4747,20 @@ interface TextToImageRequest {
4746
4747
  * @maxSize 10
4747
4748
  */
4748
4749
  loraModels?: LoraModelSelect[];
4749
- /** Contains provider-specific configuration settings that customize the behavior of different AI models and services. */
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
+ */
4750
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;
4751
4764
  /** Inputs for the image generation process. */
4752
4765
  inputs?: Inputs;
4753
4766
  }
@@ -5717,8 +5730,20 @@ interface VideoInferenceRequest {
5717
5730
  * @max 4
5718
5731
  */
5719
5732
  numberResults?: number | null;
5720
- /** Contains provider-specific configuration settings that customize the behavior of different AI models and services. */
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
+ */
5721
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;
5722
5747
  /**
5723
5748
  * Skip polling flag - if set to false, will poll until video generation is complete
5724
5749
  * If not set or true, returns immediately with task UUID for manual polling
@@ -3251,6 +3251,7 @@ var OpenaiproxyV1Model = /* @__PURE__ */ ((OpenaiproxyV1Model2) => {
3251
3251
  OpenaiproxyV1Model2["GPT_5_MINI_2025_08_07"] = "GPT_5_MINI_2025_08_07";
3252
3252
  OpenaiproxyV1Model2["GPT_5_NANO_2025_08_07"] = "GPT_5_NANO_2025_08_07";
3253
3253
  OpenaiproxyV1Model2["GPT_5_2_2025_12_11_COMPLETION"] = "GPT_5_2_2025_12_11_COMPLETION";
3254
+ OpenaiproxyV1Model2["GPT_5_1_2025_11_13_COMPLETION"] = "GPT_5_1_2025_11_13_COMPLETION";
3254
3255
  return OpenaiproxyV1Model2;
3255
3256
  })(OpenaiproxyV1Model || {});
3256
3257
  var OpenaiproxyV1ChatCompletionMessageMessageRole = /* @__PURE__ */ ((OpenaiproxyV1ChatCompletionMessageMessageRole2) => {