@wix/auto_sdk_ai-gateway_generators 1.0.101 → 1.0.102

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.
@@ -1635,10 +1635,21 @@ interface V1ImageUrl {
1635
1635
  * @maxLength 100000
1636
1636
  */
1637
1637
  url?: string | null;
1638
- /** Media type of the image. */
1638
+ /**
1639
+ * Media type of the image.
1640
+ * @deprecated Media type of the image.
1641
+ * @replacedBy mime_type
1642
+ * @targetRemovalDate 2026-12-31
1643
+ */
1639
1644
  mediaType?: MediaTypeWithLiterals;
1640
1645
  /** Enables prompt caching: https://docs.anthropic.com/en/docs/build-with-claude/prompt-caching. */
1641
1646
  cacheControl?: CacheControl;
1647
+ /**
1648
+ * Media type of the image as a MIME string (e.g. "image/png"). Supports template params (e.g. "{{mimeType}}"),
1649
+ * allowing the file type to be passed dynamically at invoke time. When set (non-empty), takes precedence over media_type.
1650
+ * @maxLength 500
1651
+ */
1652
+ mimeType?: string | null;
1642
1653
  }
1643
1654
  declare enum MediaType {
1644
1655
  UNKNOWN = "UNKNOWN",
@@ -2055,10 +2066,21 @@ interface GoogleproxyV1ImageUrl {
2055
2066
  * @maxLength 100000
2056
2067
  */
2057
2068
  url?: string | null;
2058
- /** Media type of the image. */
2069
+ /**
2070
+ * Media type of the image.
2071
+ * @deprecated Media type of the image.
2072
+ * @replacedBy mime_type
2073
+ * @targetRemovalDate 2026-12-31
2074
+ */
2059
2075
  mediaType?: V1ImageMediaTypeMediaTypeWithLiterals;
2060
2076
  /** Enables prompt caching: https://docs.anthropic.com/en/docs/build-with-claude/prompt-caching. */
2061
2077
  cacheControl?: GoogleproxyV1CacheControl;
2078
+ /**
2079
+ * Media type of the image as a MIME string (e.g. "image/png"). Supports template params (e.g. "{{mimeType}}"),
2080
+ * allowing the file type to be passed dynamically at invoke time. When set (non-empty), takes precedence over media_type.
2081
+ * @maxLength 500
2082
+ */
2083
+ mimeType?: string | null;
2062
2084
  }
2063
2085
  declare enum V1ImageMediaTypeMediaType {
2064
2086
  UNKNOWN = "UNKNOWN",
@@ -2653,10 +2675,21 @@ interface AnthropicV1ImageUrl {
2653
2675
  * @maxLength 100000
2654
2676
  */
2655
2677
  url?: string | null;
2656
- /** Media type of the image. */
2678
+ /**
2679
+ * Media type of the image.
2680
+ * @deprecated Media type of the image.
2681
+ * @replacedBy mime_type
2682
+ * @targetRemovalDate 2026-12-31
2683
+ */
2657
2684
  mediaType?: ImageMediaTypeMediaTypeWithLiterals;
2658
2685
  /** Enables prompt caching: https://docs.anthropic.com/en/docs/build-with-claude/prompt-caching. */
2659
2686
  cacheControl?: V1CacheControl;
2687
+ /**
2688
+ * Media type of the image as a MIME string (e.g. "image/png"). Supports template params (e.g. "{{mimeType}}"),
2689
+ * allowing the file type to be passed dynamically at invoke time. When set (non-empty), takes precedence over media_type.
2690
+ * @maxLength 500
2691
+ */
2692
+ mimeType?: string | null;
2660
2693
  }
2661
2694
  declare enum ImageMediaTypeMediaType {
2662
2695
  UNKNOWN = "UNKNOWN",