@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.
@@ -2355,10 +2355,11 @@ declare enum AnthropicModel {
2355
2355
  CLAUDE_4_5_OPUS_1_0 = "CLAUDE_4_5_OPUS_1_0",
2356
2356
  CLAUDE_4_6_OPUS_1_0 = "CLAUDE_4_6_OPUS_1_0",
2357
2357
  CLAUDE_4_6_SONNET_1_0 = "CLAUDE_4_6_SONNET_1_0",
2358
- CLAUDE_4_7_OPUS_1_0 = "CLAUDE_4_7_OPUS_1_0"
2358
+ CLAUDE_4_7_OPUS_1_0 = "CLAUDE_4_7_OPUS_1_0",
2359
+ CLAUDE_4_8_OPUS_1_0 = "CLAUDE_4_8_OPUS_1_0"
2359
2360
  }
2360
2361
  /** @enumType */
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';
2362
+ 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';
2362
2363
  interface AnthropicMessage {
2363
2364
  /** The role of the message author. */
2364
2365
  role?: MessageRoleRoleWithLiterals;
@@ -4817,6 +4818,12 @@ interface Inputs {
4817
4818
  * @maxLength 10000
4818
4819
  */
4819
4820
  seedImage?: string | null;
4821
+ /**
4822
+ * Specifies the input video to be used for the generation process.
4823
+ * Must be a URL pointing to the video. The video must be accessible publicly.
4824
+ * @maxLength 10000
4825
+ */
4826
+ video?: string | null;
4820
4827
  }
4821
4828
  interface InvokeMlPlatformLlamaModelRequest {
4822
4829
  /**
@@ -5688,7 +5695,7 @@ interface VideoInferenceRequest {
5688
5695
  /**
5689
5696
  * The length of the generated video in seconds.
5690
5697
  * @min 1
5691
- * @max 10
5698
+ * @max 300
5692
5699
  */
5693
5700
  duration?: number | null;
5694
5701
  /**
@@ -5737,6 +5744,8 @@ interface VideoInferenceRequest {
5737
5744
  skipPolling?: boolean | null;
5738
5745
  /** Inputs for the video generation process. */
5739
5746
  inputs?: VideoInputs;
5747
+ /** Contains additional settings that customize the behavior of the generation process. */
5748
+ settings?: Record<string, any> | null;
5740
5749
  }
5741
5750
  declare enum OutputFormat {
5742
5751
  UNKNOWN_OUTPUT_FORMAT = "UNKNOWN_OUTPUT_FORMAT",
@@ -5799,6 +5808,12 @@ interface VideoInputs {
5799
5808
  * @maxLength 100000
5800
5809
  */
5801
5810
  referenceVideos?: string[] | null;
5811
+ /**
5812
+ * Specifies the input video to be used for the generation process.
5813
+ * Must be a URL pointing to the video. The video must be accessible publicly.
5814
+ * @maxLength 100000
5815
+ */
5816
+ video?: string | null;
5802
5817
  }
5803
5818
  interface V1OpenAiResponsesRequest {
5804
5819
  /** ID of the model to use. */
@@ -3402,6 +3402,7 @@ var AnthropicModel = /* @__PURE__ */ ((AnthropicModel2) => {
3402
3402
  AnthropicModel2["CLAUDE_4_6_OPUS_1_0"] = "CLAUDE_4_6_OPUS_1_0";
3403
3403
  AnthropicModel2["CLAUDE_4_6_SONNET_1_0"] = "CLAUDE_4_6_SONNET_1_0";
3404
3404
  AnthropicModel2["CLAUDE_4_7_OPUS_1_0"] = "CLAUDE_4_7_OPUS_1_0";
3405
+ AnthropicModel2["CLAUDE_4_8_OPUS_1_0"] = "CLAUDE_4_8_OPUS_1_0";
3405
3406
  return AnthropicModel2;
3406
3407
  })(AnthropicModel || {});
3407
3408
  var MessageRoleRole = /* @__PURE__ */ ((MessageRoleRole2) => {