@uniswap/client-data-api 0.0.46 → 0.0.47

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.
@@ -1,5 +1,6 @@
1
1
  import type { BinaryReadOptions, FieldList, JsonReadOptions, JsonValue, PartialMessage, PlainMessage } from "@bufbuild/protobuf";
2
2
  import { Message, proto3 } from "@bufbuild/protobuf";
3
+ import { ProtectionInfo } from "./types_pb.js";
3
4
  /**
4
5
  * Request to fetch all bids by a wallet.
5
6
  *
@@ -329,6 +330,12 @@ export declare class Auction extends Message<Auction> {
329
330
  * @generated from field: optional string total_bid_volume = 26;
330
331
  */
331
332
  totalBidVolume?: string;
333
+ /**
334
+ * Blockaid protection info for the auction's underlying token
335
+ *
336
+ * @generated from field: data.v1.ProtectionInfo token_protection_info = 27;
337
+ */
338
+ tokenProtectionInfo?: ProtectionInfo;
332
339
  constructor(data?: PartialMessage<Auction>);
333
340
  static readonly runtime: typeof proto3;
334
341
  static readonly typeName = "data.v1.Auction";
@@ -3,6 +3,7 @@
3
3
  /* eslint-disable */
4
4
  // @ts-nocheck
5
5
  import { Message, proto3 } from "@bufbuild/protobuf";
6
+ import { ProtectionInfo } from "./types_pb.js";
6
7
  /**
7
8
  * Request to fetch all bids by a wallet.
8
9
  *
@@ -472,6 +473,7 @@ Auction.fields = proto3.util.newFieldList(() => [
472
473
  { no: 24, name: "token_total_supply", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
473
474
  { no: 25, name: "parsed_auction_steps", kind: "message", T: AuctionStep, repeated: true },
474
475
  { no: 26, name: "total_bid_volume", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
476
+ { no: 27, name: "token_protection_info", kind: "message", T: ProtectionInfo },
475
477
  ]);
476
478
  /**
477
479
  * Response containing auctions.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@uniswap/client-data-api",
3
- "version": "0.0.46",
3
+ "version": "0.0.47",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },