@uniswap/client-data-api 0.0.64 → 0.0.65

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.
@@ -1372,6 +1372,10 @@ export declare class GetTokenPricesRequest extends Message<GetTokenPricesRequest
1372
1372
  * @generated from field: repeated data.v1.TokenPriceInput tokens = 1;
1373
1373
  */
1374
1374
  tokens: TokenPriceInput[];
1375
+ /**
1376
+ * @generated from field: bool prefer_quote_prices = 2;
1377
+ */
1378
+ preferQuotePrices: boolean;
1375
1379
  constructor(data?: PartialMessage<GetTokenPricesRequest>);
1376
1380
  static readonly runtime: typeof proto3;
1377
1381
  static readonly typeName = "data.v1.GetTokenPricesRequest";
@@ -1889,6 +1889,10 @@ export class GetTokenPricesRequest extends Message {
1889
1889
  * @generated from field: repeated data.v1.TokenPriceInput tokens = 1;
1890
1890
  */
1891
1891
  this.tokens = [];
1892
+ /**
1893
+ * @generated from field: bool prefer_quote_prices = 2;
1894
+ */
1895
+ this.preferQuotePrices = false;
1892
1896
  proto3.util.initPartial(data, this);
1893
1897
  }
1894
1898
  static fromBinary(bytes, options) {
@@ -1908,6 +1912,7 @@ GetTokenPricesRequest.runtime = proto3;
1908
1912
  GetTokenPricesRequest.typeName = "data.v1.GetTokenPricesRequest";
1909
1913
  GetTokenPricesRequest.fields = proto3.util.newFieldList(() => [
1910
1914
  { no: 1, name: "tokens", kind: "message", T: TokenPriceInput, repeated: true },
1915
+ { no: 2, name: "prefer_quote_prices", kind: "scalar", T: 8 /* ScalarType.BOOL */ },
1911
1916
  ]);
1912
1917
  /**
1913
1918
  * @generated from message data.v1.GetTokenPricesResponse
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@uniswap/client-data-api",
3
- "version": "0.0.64",
3
+ "version": "0.0.65",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },