@uniswap/client-liquidity 0.0.18 → 0.0.19

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,6 +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 { ChainId, TransactionRequest } from "./types_pb.js";
3
+ import { BidToExit, ChainId, TransactionRequest } from "./types_pb.js";
4
4
  /**
5
5
  * REQUESTS & RESPONSES
6
6
  *
@@ -198,9 +198,9 @@ export declare class ClaimTokensResponse extends Message<ClaimTokensResponse> {
198
198
  */
199
199
  export declare class ExitBidAndClaimTokensRequest extends Message<ExitBidAndClaimTokensRequest> {
200
200
  /**
201
- * @generated from field: string bid_id = 1;
201
+ * @generated from field: repeated uniswap.liquidity.v1.BidToExit bids = 1;
202
202
  */
203
- bidId: string;
203
+ bids: BidToExit[];
204
204
  /**
205
205
  * @generated from field: string auction_contract_address = 2;
206
206
  */
@@ -3,7 +3,7 @@
3
3
  /* eslint-disable */
4
4
  // @ts-nocheck
5
5
  import { Message, proto3 } from "@bufbuild/protobuf";
6
- import { ChainId, TransactionRequest } from "./types_pb.js";
6
+ import { BidToExit, ChainId, TransactionRequest } from "./types_pb.js";
7
7
  /**
8
8
  * REQUESTS & RESPONSES
9
9
  *
@@ -255,9 +255,9 @@ export class ExitBidAndClaimTokensRequest extends Message {
255
255
  constructor(data) {
256
256
  super();
257
257
  /**
258
- * @generated from field: string bid_id = 1;
258
+ * @generated from field: repeated uniswap.liquidity.v1.BidToExit bids = 1;
259
259
  */
260
- this.bidId = "";
260
+ this.bids = [];
261
261
  /**
262
262
  * @generated from field: string auction_contract_address = 2;
263
263
  */
@@ -288,7 +288,7 @@ export class ExitBidAndClaimTokensRequest extends Message {
288
288
  ExitBidAndClaimTokensRequest.runtime = proto3;
289
289
  ExitBidAndClaimTokensRequest.typeName = "uniswap.liquidity.v1.ExitBidAndClaimTokensRequest";
290
290
  ExitBidAndClaimTokensRequest.fields = proto3.util.newFieldList(() => [
291
- { no: 1, name: "bid_id", kind: "scalar", T: 9 /* ScalarType.STRING */ },
291
+ { no: 1, name: "bids", kind: "message", T: BidToExit, repeated: true },
292
292
  { no: 2, name: "auction_contract_address", kind: "scalar", T: 9 /* ScalarType.STRING */ },
293
293
  { no: 3, name: "chain_id", kind: "enum", T: proto3.getEnumType(ChainId) },
294
294
  { no: 4, name: "wallet_address", kind: "scalar", T: 9 /* ScalarType.STRING */ },
@@ -1779,3 +1779,24 @@ export declare class V4CheckApprovalLPRequest extends Message<V4CheckApprovalLPR
1779
1779
  static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): V4CheckApprovalLPRequest;
1780
1780
  static equals(a: V4CheckApprovalLPRequest | PlainMessage<V4CheckApprovalLPRequest> | undefined, b: V4CheckApprovalLPRequest | PlainMessage<V4CheckApprovalLPRequest> | undefined): boolean;
1781
1781
  }
1782
+ /**
1783
+ * @generated from message uniswap.liquidity.v1.BidToExit
1784
+ */
1785
+ export declare class BidToExit extends Message<BidToExit> {
1786
+ /**
1787
+ * @generated from field: string bidId = 1;
1788
+ */
1789
+ bidId: string;
1790
+ /**
1791
+ * @generated from field: bool isExited = 2;
1792
+ */
1793
+ isExited: boolean;
1794
+ constructor(data?: PartialMessage<BidToExit>);
1795
+ static readonly runtime: typeof proto3;
1796
+ static readonly typeName = "uniswap.liquidity.v1.BidToExit";
1797
+ static readonly fields: FieldList;
1798
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): BidToExit;
1799
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): BidToExit;
1800
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): BidToExit;
1801
+ static equals(a: BidToExit | PlainMessage<BidToExit> | undefined, b: BidToExit | PlainMessage<BidToExit> | undefined): boolean;
1802
+ }
@@ -1987,3 +1987,38 @@ V4CheckApprovalLPRequest.fields = proto3.util.newFieldList(() => [
1987
1987
  { no: 9, name: "generate_permit_as_transaction", kind: "scalar", T: 8 /* ScalarType.BOOL */ },
1988
1988
  { no: 10, name: "simulate_transaction", kind: "scalar", T: 8 /* ScalarType.BOOL */ },
1989
1989
  ]);
1990
+ /**
1991
+ * @generated from message uniswap.liquidity.v1.BidToExit
1992
+ */
1993
+ export class BidToExit extends Message {
1994
+ constructor(data) {
1995
+ super();
1996
+ /**
1997
+ * @generated from field: string bidId = 1;
1998
+ */
1999
+ this.bidId = "";
2000
+ /**
2001
+ * @generated from field: bool isExited = 2;
2002
+ */
2003
+ this.isExited = false;
2004
+ proto3.util.initPartial(data, this);
2005
+ }
2006
+ static fromBinary(bytes, options) {
2007
+ return new BidToExit().fromBinary(bytes, options);
2008
+ }
2009
+ static fromJson(jsonValue, options) {
2010
+ return new BidToExit().fromJson(jsonValue, options);
2011
+ }
2012
+ static fromJsonString(jsonString, options) {
2013
+ return new BidToExit().fromJsonString(jsonString, options);
2014
+ }
2015
+ static equals(a, b) {
2016
+ return proto3.util.equals(BidToExit, a, b);
2017
+ }
2018
+ }
2019
+ BidToExit.runtime = proto3;
2020
+ BidToExit.typeName = "uniswap.liquidity.v1.BidToExit";
2021
+ BidToExit.fields = proto3.util.newFieldList(() => [
2022
+ { no: 1, name: "bidId", kind: "scalar", T: 9 /* ScalarType.STRING */ },
2023
+ { no: 2, name: "isExited", kind: "scalar", T: 8 /* ScalarType.BOOL */ },
2024
+ ]);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@uniswap/client-liquidity",
3
- "version": "0.0.18",
3
+ "version": "0.0.19",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },