@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.
@@ -364,10 +364,11 @@ declare enum OpenaiproxyV1Model {
364
364
  GPT_5_2025_08_07 = "GPT_5_2025_08_07",
365
365
  GPT_5_MINI_2025_08_07 = "GPT_5_MINI_2025_08_07",
366
366
  GPT_5_NANO_2025_08_07 = "GPT_5_NANO_2025_08_07",
367
- GPT_5_2_2025_12_11_COMPLETION = "GPT_5_2_2025_12_11_COMPLETION"
367
+ GPT_5_2_2025_12_11_COMPLETION = "GPT_5_2_2025_12_11_COMPLETION",
368
+ GPT_5_1_2025_11_13_COMPLETION = "GPT_5_1_2025_11_13_COMPLETION"
368
369
  }
369
370
  /** @enumType */
370
- 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';
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' | 'GPT_5_1_2025_11_13_COMPLETION';
371
372
  interface OpenaiproxyV1ChatCompletionMessage {
372
373
  /** The role of the message author. */
373
374
  role?: OpenaiproxyV1ChatCompletionMessageMessageRoleWithLiterals;
@@ -4749,8 +4750,20 @@ interface TextToImageRequest {
4749
4750
  * @maxSize 10
4750
4751
  */
4751
4752
  loraModels?: LoraModelSelect[];
4752
- /** 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
+ */
4753
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;
4754
4767
  /** Inputs for the image generation process. */
4755
4768
  inputs?: Inputs;
4756
4769
  }
@@ -5720,8 +5733,20 @@ interface VideoInferenceRequest {
5720
5733
  * @max 4
5721
5734
  */
5722
5735
  numberResults?: number | null;
5723
- /** 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
+ */
5724
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;
5725
5750
  /**
5726
5751
  * Skip polling flag - if set to false, will poll until video generation is complete
5727
5752
  * If not set or true, returns immediately with task UUID for manual polling
package/build/es/meta.mjs CHANGED
@@ -3244,6 +3244,7 @@ var OpenaiproxyV1Model = /* @__PURE__ */ ((OpenaiproxyV1Model2) => {
3244
3244
  OpenaiproxyV1Model2["GPT_5_MINI_2025_08_07"] = "GPT_5_MINI_2025_08_07";
3245
3245
  OpenaiproxyV1Model2["GPT_5_NANO_2025_08_07"] = "GPT_5_NANO_2025_08_07";
3246
3246
  OpenaiproxyV1Model2["GPT_5_2_2025_12_11_COMPLETION"] = "GPT_5_2_2025_12_11_COMPLETION";
3247
+ OpenaiproxyV1Model2["GPT_5_1_2025_11_13_COMPLETION"] = "GPT_5_1_2025_11_13_COMPLETION";
3247
3248
  return OpenaiproxyV1Model2;
3248
3249
  })(OpenaiproxyV1Model || {});
3249
3250
  var OpenaiproxyV1ChatCompletionMessageMessageRole = /* @__PURE__ */ ((OpenaiproxyV1ChatCompletionMessageMessageRole2) => {