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