@uniswap/client-data-api 0.0.25 → 0.0.26

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.
@@ -789,6 +789,12 @@ export declare class GetPositionRequest extends Message<GetPositionRequest> {
789
789
  * @generated from field: string owner = 5;
790
790
  */
791
791
  owner: string;
792
+ /**
793
+ * if true, fallback to onchain data for pool data
794
+ *
795
+ * @generated from field: optional bool fallback_to_chain = 6;
796
+ */
797
+ fallbackToChain?: boolean;
792
798
  constructor(data?: PartialMessage<GetPositionRequest>);
793
799
  static readonly runtime: typeof proto3;
794
800
  static readonly typeName = "data.v1.GetPositionRequest";
@@ -1195,6 +1195,7 @@ GetPositionRequest.fields = proto3.util.newFieldList(() => [
1195
1195
  { no: 3, name: "token_id", kind: "scalar", T: 9 /* ScalarType.STRING */ },
1196
1196
  { no: 4, name: "pair_address", kind: "scalar", T: 9 /* ScalarType.STRING */ },
1197
1197
  { no: 5, name: "owner", kind: "scalar", T: 9 /* ScalarType.STRING */ },
1198
+ { no: 6, name: "fallback_to_chain", kind: "scalar", T: 8 /* ScalarType.BOOL */, opt: true },
1198
1199
  ]);
1199
1200
  /**
1200
1201
  * @generated from message data.v1.GetPositionResponse
@@ -269,6 +269,46 @@ export declare class Auction extends Message<Auction> {
269
269
  * @generated from field: string clearing_price = 13;
270
270
  */
271
271
  clearingPrice: string;
272
+ /**
273
+ * @generated from field: string address = 14;
274
+ */
275
+ address: string;
276
+ /**
277
+ * @generated from field: string amount = 15;
278
+ */
279
+ amount: string;
280
+ /**
281
+ * @generated from field: string currency = 16;
282
+ */
283
+ currency: string;
284
+ /**
285
+ * @generated from field: string tokens_recipient = 17;
286
+ */
287
+ tokensRecipient: string;
288
+ /**
289
+ * @generated from field: string funds_recipient = 18;
290
+ */
291
+ fundsRecipient: string;
292
+ /**
293
+ * @generated from field: string claim_block = 19;
294
+ */
295
+ claimBlock: string;
296
+ /**
297
+ * @generated from field: string validation_hook = 20;
298
+ */
299
+ validationHook: string;
300
+ /**
301
+ * @generated from field: string floor_price = 21;
302
+ */
303
+ floorPrice: string;
304
+ /**
305
+ * @generated from field: string required_currency_raised = 22;
306
+ */
307
+ requiredCurrencyRaised: string;
308
+ /**
309
+ * @generated from field: string auction_steps_data = 23;
310
+ */
311
+ auctionStepsData: string;
272
312
  constructor(data?: PartialMessage<Auction>);
273
313
  static readonly runtime: typeof proto3;
274
314
  static readonly typeName = "data.v1.Auction";
@@ -377,6 +377,46 @@ export class Auction extends Message {
377
377
  * @generated from field: string clearing_price = 13;
378
378
  */
379
379
  this.clearingPrice = "";
380
+ /**
381
+ * @generated from field: string address = 14;
382
+ */
383
+ this.address = "";
384
+ /**
385
+ * @generated from field: string amount = 15;
386
+ */
387
+ this.amount = "";
388
+ /**
389
+ * @generated from field: string currency = 16;
390
+ */
391
+ this.currency = "";
392
+ /**
393
+ * @generated from field: string tokens_recipient = 17;
394
+ */
395
+ this.tokensRecipient = "";
396
+ /**
397
+ * @generated from field: string funds_recipient = 18;
398
+ */
399
+ this.fundsRecipient = "";
400
+ /**
401
+ * @generated from field: string claim_block = 19;
402
+ */
403
+ this.claimBlock = "";
404
+ /**
405
+ * @generated from field: string validation_hook = 20;
406
+ */
407
+ this.validationHook = "";
408
+ /**
409
+ * @generated from field: string floor_price = 21;
410
+ */
411
+ this.floorPrice = "";
412
+ /**
413
+ * @generated from field: string required_currency_raised = 22;
414
+ */
415
+ this.requiredCurrencyRaised = "";
416
+ /**
417
+ * @generated from field: string auction_steps_data = 23;
418
+ */
419
+ this.auctionStepsData = "";
380
420
  proto3.util.initPartial(data, this);
381
421
  }
382
422
  static fromBinary(bytes, options) {
@@ -408,6 +448,16 @@ Auction.fields = proto3.util.newFieldList(() => [
408
448
  { no: 11, name: "created_at", kind: "scalar", T: 9 /* ScalarType.STRING */ },
409
449
  { no: 12, name: "updated_at", kind: "scalar", T: 9 /* ScalarType.STRING */ },
410
450
  { no: 13, name: "clearing_price", kind: "scalar", T: 9 /* ScalarType.STRING */ },
451
+ { no: 14, name: "address", kind: "scalar", T: 9 /* ScalarType.STRING */ },
452
+ { no: 15, name: "amount", kind: "scalar", T: 9 /* ScalarType.STRING */ },
453
+ { no: 16, name: "currency", kind: "scalar", T: 9 /* ScalarType.STRING */ },
454
+ { no: 17, name: "tokens_recipient", kind: "scalar", T: 9 /* ScalarType.STRING */ },
455
+ { no: 18, name: "funds_recipient", kind: "scalar", T: 9 /* ScalarType.STRING */ },
456
+ { no: 19, name: "claim_block", kind: "scalar", T: 9 /* ScalarType.STRING */ },
457
+ { no: 20, name: "validation_hook", kind: "scalar", T: 9 /* ScalarType.STRING */ },
458
+ { no: 21, name: "floor_price", kind: "scalar", T: 9 /* ScalarType.STRING */ },
459
+ { no: 22, name: "required_currency_raised", kind: "scalar", T: 9 /* ScalarType.STRING */ },
460
+ { no: 23, name: "auction_steps_data", kind: "scalar", T: 9 /* ScalarType.STRING */ },
411
461
  ]);
412
462
  /**
413
463
  * Response containing auctions.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@uniswap/client-data-api",
3
- "version": "0.0.25",
3
+ "version": "0.0.26",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },