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