@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.
@@ -365,10 +365,11 @@ declare enum OpenaiproxyV1Model {
365
365
  GPT_5_2025_08_07 = "GPT_5_2025_08_07",
366
366
  GPT_5_MINI_2025_08_07 = "GPT_5_MINI_2025_08_07",
367
367
  GPT_5_NANO_2025_08_07 = "GPT_5_NANO_2025_08_07",
368
- GPT_5_2_2025_12_11_COMPLETION = "GPT_5_2_2025_12_11_COMPLETION"
368
+ GPT_5_2_2025_12_11_COMPLETION = "GPT_5_2_2025_12_11_COMPLETION",
369
+ GPT_5_1_2025_11_13_COMPLETION = "GPT_5_1_2025_11_13_COMPLETION"
369
370
  }
370
371
  /** @enumType */
371
- 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';
372
+ 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';
372
373
  interface OpenaiproxyV1ChatCompletionMessage {
373
374
  /** The role of the message author. */
374
375
  role?: OpenaiproxyV1ChatCompletionMessageMessageRoleWithLiterals;
@@ -4750,8 +4751,20 @@ interface TextToImageRequest {
4750
4751
  * @maxSize 10
4751
4752
  */
4752
4753
  loraModels?: LoraModelSelect[];
4753
- /** 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
+ */
4754
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;
4755
4768
  /** Inputs for the image generation process. */
4756
4769
  inputs?: Inputs;
4757
4770
  }
@@ -5721,8 +5734,20 @@ interface VideoInferenceRequest {
5721
5734
  * @max 4
5722
5735
  */
5723
5736
  numberResults?: number | null;
5724
- /** 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
+ */
5725
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;
5726
5751
  /**
5727
5752
  * Skip polling flag - if set to false, will poll until video generation is complete
5728
5753
  * If not set or true, returns immediately with task UUID for manual polling
@@ -3393,6 +3393,7 @@ var OpenaiproxyV1Model = /* @__PURE__ */ ((OpenaiproxyV1Model2) => {
3393
3393
  OpenaiproxyV1Model2["GPT_5_MINI_2025_08_07"] = "GPT_5_MINI_2025_08_07";
3394
3394
  OpenaiproxyV1Model2["GPT_5_NANO_2025_08_07"] = "GPT_5_NANO_2025_08_07";
3395
3395
  OpenaiproxyV1Model2["GPT_5_2_2025_12_11_COMPLETION"] = "GPT_5_2_2025_12_11_COMPLETION";
3396
+ OpenaiproxyV1Model2["GPT_5_1_2025_11_13_COMPLETION"] = "GPT_5_1_2025_11_13_COMPLETION";
3396
3397
  return OpenaiproxyV1Model2;
3397
3398
  })(OpenaiproxyV1Model || {});
3398
3399
  var OpenaiproxyV1ChatCompletionMessageMessageRole = /* @__PURE__ */ ((OpenaiproxyV1ChatCompletionMessageMessageRole2) => {