@uniswap/client-liquidity 1.4.24 → 1.4.25

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.
@@ -1237,6 +1237,16 @@ export declare class GetWalletPositionsRequest extends Message<GetWalletPosition
1237
1237
  * @generated from field: optional bool ascending = 10;
1238
1238
  */
1239
1239
  ascending?: boolean;
1240
+ /**
1241
+ * Case-insensitive substring filter over each position's token symbol/name,
1242
+ * token0/token1 address, and pool address/id. Empty/absent = no filter. Token
1243
+ * identity is only matchable once pool metadata is resolved, so a search read
1244
+ * loads the wallet's whole bounded set, enriches it, filters, then pages by
1245
+ * offset (same model as a sorted read). Composes with all other filters.
1246
+ *
1247
+ * @generated from field: optional string search = 11;
1248
+ */
1249
+ search?: string;
1240
1250
  constructor(data?: PartialMessage<GetWalletPositionsRequest>);
1241
1251
  static readonly runtime: typeof proto3;
1242
1252
  static readonly typeName = "uniswap.liquidity.v2.GetWalletPositionsRequest";
@@ -1291,6 +1291,7 @@ GetWalletPositionsRequest.fields = proto3.util.newFieldList(() => [
1291
1291
  { no: 8, name: "range_statuses", kind: "enum", T: proto3.getEnumType(RangeStatus), repeated: true },
1292
1292
  { no: 9, name: "sort_by", kind: "enum", T: proto3.getEnumType(PositionSortBy), opt: true },
1293
1293
  { no: 10, name: "ascending", kind: "scalar", T: 8 /* ScalarType.BOOL */, opt: true },
1294
+ { no: 11, name: "search", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
1294
1295
  ]);
1295
1296
  /**
1296
1297
  * @generated from message uniswap.liquidity.v2.GetWalletPositionsResponse
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@uniswap/client-liquidity",
3
- "version": "1.4.24",
3
+ "version": "1.4.25",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },