@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.
@@ -2351,10 +2351,11 @@ declare enum AnthropicModel {
2351
2351
  CLAUDE_4_5_OPUS_1_0 = "CLAUDE_4_5_OPUS_1_0",
2352
2352
  CLAUDE_4_6_OPUS_1_0 = "CLAUDE_4_6_OPUS_1_0",
2353
2353
  CLAUDE_4_6_SONNET_1_0 = "CLAUDE_4_6_SONNET_1_0",
2354
- CLAUDE_4_7_OPUS_1_0 = "CLAUDE_4_7_OPUS_1_0"
2354
+ CLAUDE_4_7_OPUS_1_0 = "CLAUDE_4_7_OPUS_1_0",
2355
+ CLAUDE_4_8_OPUS_1_0 = "CLAUDE_4_8_OPUS_1_0"
2355
2356
  }
2356
2357
  /** @enumType */
2357
- 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';
2358
+ 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';
2358
2359
  interface AnthropicMessage {
2359
2360
  /** The role of the message author. */
2360
2361
  role?: MessageRoleRoleWithLiterals;
@@ -4813,6 +4814,12 @@ interface Inputs {
4813
4814
  * @maxLength 10000
4814
4815
  */
4815
4816
  seedImage?: string | null;
4817
+ /**
4818
+ * Specifies the input video to be used for the generation process.
4819
+ * Must be a URL pointing to the video. The video must be accessible publicly.
4820
+ * @maxLength 10000
4821
+ */
4822
+ video?: string | null;
4816
4823
  }
4817
4824
  interface InvokeMlPlatformLlamaModelRequest {
4818
4825
  /**
@@ -5684,7 +5691,7 @@ interface VideoInferenceRequest {
5684
5691
  /**
5685
5692
  * The length of the generated video in seconds.
5686
5693
  * @min 1
5687
- * @max 10
5694
+ * @max 300
5688
5695
  */
5689
5696
  duration?: number | null;
5690
5697
  /**
@@ -5733,6 +5740,8 @@ interface VideoInferenceRequest {
5733
5740
  skipPolling?: boolean | null;
5734
5741
  /** Inputs for the video generation process. */
5735
5742
  inputs?: VideoInputs;
5743
+ /** Contains additional settings that customize the behavior of the generation process. */
5744
+ settings?: Record<string, any> | null;
5736
5745
  }
5737
5746
  declare enum OutputFormat {
5738
5747
  UNKNOWN_OUTPUT_FORMAT = "UNKNOWN_OUTPUT_FORMAT",
@@ -5795,6 +5804,12 @@ interface VideoInputs {
5795
5804
  * @maxLength 100000
5796
5805
  */
5797
5806
  referenceVideos?: string[] | null;
5807
+ /**
5808
+ * Specifies the input video to be used for the generation process.
5809
+ * Must be a URL pointing to the video. The video must be accessible publicly.
5810
+ * @maxLength 100000
5811
+ */
5812
+ video?: string | null;
5798
5813
  }
5799
5814
  interface V1OpenAiResponsesRequest {
5800
5815
  /** ID of the model to use. */
@@ -3409,6 +3409,7 @@ var AnthropicModel = /* @__PURE__ */ ((AnthropicModel2) => {
3409
3409
  AnthropicModel2["CLAUDE_4_6_OPUS_1_0"] = "CLAUDE_4_6_OPUS_1_0";
3410
3410
  AnthropicModel2["CLAUDE_4_6_SONNET_1_0"] = "CLAUDE_4_6_SONNET_1_0";
3411
3411
  AnthropicModel2["CLAUDE_4_7_OPUS_1_0"] = "CLAUDE_4_7_OPUS_1_0";
3412
+ AnthropicModel2["CLAUDE_4_8_OPUS_1_0"] = "CLAUDE_4_8_OPUS_1_0";
3412
3413
  return AnthropicModel2;
3413
3414
  })(AnthropicModel || {});
3414
3415
  var MessageRoleRole = /* @__PURE__ */ ((MessageRoleRole2) => {