@uniswap/client-data-api 0.0.45 → 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.
@@ -104,6 +104,10 @@ export declare enum PlanStatus {
104
104
  * @generated from enum value: PLAN_STATUS_ACTIVE = 1;
105
105
  */
106
106
  ACTIVE = 1,
107
+ /**
108
+ * @generated from enum value: PLAN_STATUS_AWAITING_ACTION = 5;
109
+ */
110
+ AWAITING_ACTION = 5,
107
111
  /**
108
112
  * @generated from enum value: PLAN_STATUS_IN_PROGRESS = 2;
109
113
  */
@@ -139,6 +139,10 @@ export var PlanStatus;
139
139
  * @generated from enum value: PLAN_STATUS_ACTIVE = 1;
140
140
  */
141
141
  PlanStatus[PlanStatus["ACTIVE"] = 1] = "ACTIVE";
142
+ /**
143
+ * @generated from enum value: PLAN_STATUS_AWAITING_ACTION = 5;
144
+ */
145
+ PlanStatus[PlanStatus["AWAITING_ACTION"] = 5] = "AWAITING_ACTION";
142
146
  /**
143
147
  * @generated from enum value: PLAN_STATUS_IN_PROGRESS = 2;
144
148
  */
@@ -156,6 +160,7 @@ export var PlanStatus;
156
160
  proto3.util.setEnumType(PlanStatus, "data.v1.PlanStatus", [
157
161
  { no: 0, name: "PLAN_STATUS_UNKNOWN" },
158
162
  { no: 1, name: "PLAN_STATUS_ACTIVE" },
163
+ { no: 5, name: "PLAN_STATUS_AWAITING_ACTION" },
159
164
  { no: 2, name: "PLAN_STATUS_IN_PROGRESS" },
160
165
  { no: 3, name: "PLAN_STATUS_COMPLETED" },
161
166
  { no: 4, name: "PLAN_STATUS_FAILED" },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@uniswap/client-data-api",
3
- "version": "0.0.45",
3
+ "version": "0.0.47",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },