@wix/auto_sdk_ai-gateway_generators 1.0.88 → 1.0.90

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.
@@ -2354,10 +2354,11 @@ declare enum AnthropicModel {
2354
2354
  CLAUDE_4_5_OPUS_1_0 = "CLAUDE_4_5_OPUS_1_0",
2355
2355
  CLAUDE_4_6_OPUS_1_0 = "CLAUDE_4_6_OPUS_1_0",
2356
2356
  CLAUDE_4_6_SONNET_1_0 = "CLAUDE_4_6_SONNET_1_0",
2357
- CLAUDE_4_7_OPUS_1_0 = "CLAUDE_4_7_OPUS_1_0"
2357
+ CLAUDE_4_7_OPUS_1_0 = "CLAUDE_4_7_OPUS_1_0",
2358
+ CLAUDE_4_8_OPUS_1_0 = "CLAUDE_4_8_OPUS_1_0"
2358
2359
  }
2359
2360
  /** @enumType */
2360
- type AnthropicModelWithLiterals = AnthropicModel | 'UNKNOWN_ANTHROPIC_MODEL' | 'CLAUDE_3_HAIKU_1_0' | 'CLAUDE_3_5_SONNET_1_0' | 'CLAUDE_3_5_SONNET_2_0' | 'CLAUDE_3_7_SONNET_1_0' | 'CLAUDE_4_SONNET_1_0' | 'CLAUDE_4_OPUS_1_0' | 'CLAUDE_4_1_OPUS_1_0' | 'CLAUDE_4_5_SONNET_1_0' | 'CLAUDE_4_5_HAIKU_1_0' | 'CLAUDE_4_5_OPUS_1_0' | 'CLAUDE_4_6_OPUS_1_0' | 'CLAUDE_4_6_SONNET_1_0' | 'CLAUDE_4_7_OPUS_1_0';
2361
+ type AnthropicModelWithLiterals = AnthropicModel | 'UNKNOWN_ANTHROPIC_MODEL' | 'CLAUDE_3_HAIKU_1_0' | 'CLAUDE_3_5_SONNET_1_0' | 'CLAUDE_3_5_SONNET_2_0' | 'CLAUDE_3_7_SONNET_1_0' | 'CLAUDE_4_SONNET_1_0' | 'CLAUDE_4_OPUS_1_0' | 'CLAUDE_4_1_OPUS_1_0' | 'CLAUDE_4_5_SONNET_1_0' | 'CLAUDE_4_5_HAIKU_1_0' | 'CLAUDE_4_5_OPUS_1_0' | 'CLAUDE_4_6_OPUS_1_0' | 'CLAUDE_4_6_SONNET_1_0' | 'CLAUDE_4_7_OPUS_1_0' | 'CLAUDE_4_8_OPUS_1_0';
2361
2362
  interface AnthropicMessage {
2362
2363
  /** The role of the message author. */
2363
2364
  role?: MessageRoleRoleWithLiterals;
@@ -4816,6 +4817,12 @@ interface Inputs {
4816
4817
  * @maxLength 10000
4817
4818
  */
4818
4819
  seedImage?: string | null;
4820
+ /**
4821
+ * Specifies the input video to be used for the generation process.
4822
+ * Must be a URL pointing to the video. The video must be accessible publicly.
4823
+ * @maxLength 10000
4824
+ */
4825
+ video?: string | null;
4819
4826
  }
4820
4827
  interface InvokeMlPlatformLlamaModelRequest {
4821
4828
  /**
@@ -5687,7 +5694,7 @@ interface VideoInferenceRequest {
5687
5694
  /**
5688
5695
  * The length of the generated video in seconds.
5689
5696
  * @min 1
5690
- * @max 10
5697
+ * @max 300
5691
5698
  */
5692
5699
  duration?: number | null;
5693
5700
  /**
@@ -5736,6 +5743,8 @@ interface VideoInferenceRequest {
5736
5743
  skipPolling?: boolean | null;
5737
5744
  /** Inputs for the video generation process. */
5738
5745
  inputs?: VideoInputs;
5746
+ /** Contains additional settings that customize the behavior of the generation process. */
5747
+ settings?: Record<string, any> | null;
5739
5748
  }
5740
5749
  declare enum OutputFormat {
5741
5750
  UNKNOWN_OUTPUT_FORMAT = "UNKNOWN_OUTPUT_FORMAT",
@@ -5798,6 +5807,12 @@ interface VideoInputs {
5798
5807
  * @maxLength 100000
5799
5808
  */
5800
5809
  referenceVideos?: string[] | null;
5810
+ /**
5811
+ * Specifies the input video to be used for the generation process.
5812
+ * Must be a URL pointing to the video. The video must be accessible publicly.
5813
+ * @maxLength 100000
5814
+ */
5815
+ video?: string | null;
5801
5816
  }
5802
5817
  interface V1OpenAiResponsesRequest {
5803
5818
  /** ID of the model to use. */
package/build/cjs/meta.js CHANGED
@@ -3550,6 +3550,7 @@ var AnthropicModel = /* @__PURE__ */ ((AnthropicModel2) => {
3550
3550
  AnthropicModel2["CLAUDE_4_6_OPUS_1_0"] = "CLAUDE_4_6_OPUS_1_0";
3551
3551
  AnthropicModel2["CLAUDE_4_6_SONNET_1_0"] = "CLAUDE_4_6_SONNET_1_0";
3552
3552
  AnthropicModel2["CLAUDE_4_7_OPUS_1_0"] = "CLAUDE_4_7_OPUS_1_0";
3553
+ AnthropicModel2["CLAUDE_4_8_OPUS_1_0"] = "CLAUDE_4_8_OPUS_1_0";
3553
3554
  return AnthropicModel2;
3554
3555
  })(AnthropicModel || {});
3555
3556
  var MessageRoleRole = /* @__PURE__ */ ((MessageRoleRole2) => {