@uniswap/client-data-api 0.0.175 → 0.0.176

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.
@@ -1038,6 +1038,14 @@ export declare class ListTopAuctionsRequest extends Message<ListTopAuctionsReque
1038
1038
  * @generated from field: bool live_only = 3;
1039
1039
  */
1040
1040
  liveOnly: boolean;
1041
+ /**
1042
+ * When true, serve only quick (crowd) launches — auctions whose persisted
1043
+ * is_quick_launch marker is true. Absent and false are the same request:
1044
+ * no filter, so the shared Explore surface keeps seeing every auction.
1045
+ *
1046
+ * @generated from field: bool quick_launch_only = 4;
1047
+ */
1048
+ quickLaunchOnly: boolean;
1041
1049
  constructor(data?: PartialMessage<ListTopAuctionsRequest>);
1042
1050
  static readonly runtime: typeof proto3;
1043
1051
  static readonly typeName = "data.v1.ListTopAuctionsRequest";
@@ -1260,6 +1260,14 @@ export class ListTopAuctionsRequest extends Message {
1260
1260
  * @generated from field: bool live_only = 3;
1261
1261
  */
1262
1262
  this.liveOnly = false;
1263
+ /**
1264
+ * When true, serve only quick (crowd) launches — auctions whose persisted
1265
+ * is_quick_launch marker is true. Absent and false are the same request:
1266
+ * no filter, so the shared Explore surface keeps seeing every auction.
1267
+ *
1268
+ * @generated from field: bool quick_launch_only = 4;
1269
+ */
1270
+ this.quickLaunchOnly = false;
1263
1271
  proto3.util.initPartial(data, this);
1264
1272
  }
1265
1273
  static fromBinary(bytes, options) {
@@ -1281,6 +1289,7 @@ ListTopAuctionsRequest.fields = proto3.util.newFieldList(() => [
1281
1289
  { no: 1, name: "page_size", kind: "scalar", T: 5 /* ScalarType.INT32 */ },
1282
1290
  { no: 2, name: "chain_ids", kind: "scalar", T: 5 /* ScalarType.INT32 */, repeated: true },
1283
1291
  { no: 3, name: "live_only", kind: "scalar", T: 8 /* ScalarType.BOOL */ },
1292
+ { no: 4, name: "quick_launch_only", kind: "scalar", T: 8 /* ScalarType.BOOL */ },
1284
1293
  ]);
1285
1294
  /**
1286
1295
  * An auction with its total bid volume stats.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@uniswap/client-data-api",
3
- "version": "0.0.175",
3
+ "version": "0.0.176",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },