@uniswap/client-data-api 0.0.226 → 0.0.227

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.
@@ -1307,6 +1307,18 @@ export declare class PoolListFilter extends Message<PoolListFilter> {
1307
1307
  * @generated from field: optional bool apply_top_level_filters = 8;
1308
1308
  */
1309
1309
  applyTopLevelFilters?: boolean;
1310
+ /**
1311
+ * Restrict the listing to pools running a live allowlisted LP-incentive
1312
+ * campaign (Merkl). The campaign set is the row source; everything else —
1313
+ * spam, the quality gates above, attribute filters, sort, pagination —
1314
+ * behaves exactly as it does without this flag, so a caller wanting every
1315
+ * rewarded pool regardless of size sends include_spam true and
1316
+ * apply_top_level_filters false alongside it. Never matches V2 pools:
1317
+ * Merkl campaign types don't target them.
1318
+ *
1319
+ * @generated from field: optional bool rewards_only = 9;
1320
+ */
1321
+ rewardsOnly?: boolean;
1310
1322
  constructor(data?: PartialMessage<PoolListFilter>);
1311
1323
  static readonly runtime: typeof proto3;
1312
1324
  static readonly typeName = "data.v2.PoolListFilter";
@@ -1413,6 +1413,7 @@ PoolListFilter.fields = proto3.util.newFieldList(() => [
1413
1413
  { no: 6, name: "tick_spacing", kind: "scalar", T: 5 /* ScalarType.INT32 */, opt: true },
1414
1414
  { no: 7, name: "hooks", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
1415
1415
  { no: 8, name: "apply_top_level_filters", kind: "scalar", T: 8 /* ScalarType.BOOL */, opt: true },
1416
+ { no: 9, name: "rewards_only", kind: "scalar", T: 8 /* ScalarType.BOOL */, opt: true },
1416
1417
  ]);
1417
1418
  /**
1418
1419
  * Returned by ListPools — wraps a Pool with its ranking stats.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@uniswap/client-data-api",
3
- "version": "0.0.226",
3
+ "version": "0.0.227",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },