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