@firebase/ai 1.3.0-canary.40be2dbb8 → 1.3.0-canary.8cb21ffc5

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.
@@ -1755,30 +1755,18 @@ export declare interface SchemaShared<T> {
1755
1755
  format?: string;
1756
1756
  /** Optional. The description of the property. */
1757
1757
  description?: string;
1758
- /**
1759
- * The title of the property. This helps document the schema's purpose but does not typically
1760
- * constrain the generated value. It can subtly guide the model by clarifying the intent of a
1761
- * field.
1762
- */
1763
- title?: string;
1764
1758
  /** Optional. The items of the property. */
1765
1759
  items?: T;
1766
1760
  /** Optional. Map of `Schema` objects. */
1767
1761
  properties?: {
1768
1762
  [k: string]: T;
1769
1763
  };
1770
- /** A hint suggesting the order in which the keys should appear in the generated JSON string. */
1771
- propertyOrdering?: string[];
1772
1764
  /** Optional. The enum of the property. */
1773
1765
  enum?: string[];
1774
1766
  /** Optional. The example of the property. */
1775
1767
  example?: unknown;
1776
1768
  /** Optional. Whether the property is nullable. */
1777
1769
  nullable?: boolean;
1778
- /** The minimum value of a numeric type. */
1779
- minimum?: number;
1780
- /** The maximum value of a numeric type. */
1781
- maximum?: number;
1782
1770
  [key: string]: unknown;
1783
1771
  }
1784
1772
 
package/dist/ai.d.ts CHANGED
@@ -1853,30 +1853,18 @@ export declare interface SchemaShared<T> {
1853
1853
  format?: string;
1854
1854
  /** Optional. The description of the property. */
1855
1855
  description?: string;
1856
- /**
1857
- * The title of the property. This helps document the schema's purpose but does not typically
1858
- * constrain the generated value. It can subtly guide the model by clarifying the intent of a
1859
- * field.
1860
- */
1861
- title?: string;
1862
1856
  /** Optional. The items of the property. */
1863
1857
  items?: T;
1864
1858
  /** Optional. Map of `Schema` objects. */
1865
1859
  properties?: {
1866
1860
  [k: string]: T;
1867
1861
  };
1868
- /** A hint suggesting the order in which the keys should appear in the generated JSON string. */
1869
- propertyOrdering?: string[];
1870
1862
  /** Optional. The enum of the property. */
1871
1863
  enum?: string[];
1872
1864
  /** Optional. The example of the property. */
1873
1865
  example?: unknown;
1874
1866
  /** Optional. Whether the property is nullable. */
1875
1867
  nullable?: boolean;
1876
- /** The minimum value of a numeric type. */
1877
- minimum?: number;
1878
- /** The maximum value of a numeric type. */
1879
- maximum?: number;
1880
1868
  [key: string]: unknown;
1881
1869
  }
1882
1870
 
@@ -5,7 +5,7 @@ import { Logger } from '@firebase/logger';
5
5
  import { __asyncGenerator, __await } from 'tslib';
6
6
 
7
7
  var name = "@firebase/ai";
8
- var version = "1.3.0-canary.40be2dbb8";
8
+ var version = "1.3.0-canary.8cb21ffc5";
9
9
 
10
10
  /**
11
11
  * @license