@uniswap/client-data-api 0.0.23 → 0.0.24

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.
@@ -267,6 +267,10 @@ export declare class Auction extends Message<Auction> {
267
267
  * @generated from field: string updated_at = 12;
268
268
  */
269
269
  updatedAt: string;
270
+ /**
271
+ * @generated from field: string clearing_price = 13;
272
+ */
273
+ clearingPrice: string;
270
274
  constructor(data?: PartialMessage<Auction>);
271
275
  static readonly runtime: typeof proto3;
272
276
  static readonly typeName = "data.v1.Auction";
@@ -375,6 +375,10 @@ export class Auction extends Message {
375
375
  * @generated from field: string updated_at = 12;
376
376
  */
377
377
  this.updatedAt = "";
378
+ /**
379
+ * @generated from field: string clearing_price = 13;
380
+ */
381
+ this.clearingPrice = "";
378
382
  proto3.util.initPartial(data, this);
379
383
  }
380
384
  static fromBinary(bytes, options) {
@@ -405,6 +409,7 @@ Auction.fields = proto3.util.newFieldList(() => [
405
409
  { no: 10, name: "creation_block", kind: "scalar", T: 9 /* ScalarType.STRING */ },
406
410
  { no: 11, name: "created_at", kind: "scalar", T: 9 /* ScalarType.STRING */ },
407
411
  { no: 12, name: "updated_at", kind: "scalar", T: 9 /* ScalarType.STRING */ },
412
+ { no: 13, name: "clearing_price", kind: "scalar", T: 9 /* ScalarType.STRING */ },
408
413
  ]);
409
414
  /**
410
415
  * Response containing auctions.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@uniswap/client-data-api",
3
- "version": "0.0.23",
3
+ "version": "0.0.24",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },