@uniswap/client-data-api 0.0.73 → 0.0.74

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.
@@ -290,6 +290,14 @@ export declare class Position extends Message<Position> {
290
290
  * @generated from field: bool is_hidden = 8;
291
291
  */
292
292
  isHidden: boolean;
293
+ /**
294
+ * @generated from field: optional double value_usd = 9;
295
+ */
296
+ valueUsd?: number;
297
+ /**
298
+ * @generated from field: optional double uncollected_fees_usd = 10;
299
+ */
300
+ uncollectedFeesUsd?: number;
293
301
  constructor(data?: PartialMessage<Position>);
294
302
  static readonly runtime: typeof proto3;
295
303
  static readonly typeName = "pools.v1.Position";
@@ -368,6 +368,8 @@ Position.fields = proto3.util.newFieldList(() => [
368
368
  { no: 6, name: "status", kind: "enum", T: proto3.getEnumType(PositionStatus) },
369
369
  { no: 7, name: "timestamp", kind: "scalar", T: 13 /* ScalarType.UINT32 */ },
370
370
  { no: 8, name: "is_hidden", kind: "scalar", T: 8 /* ScalarType.BOOL */ },
371
+ { no: 9, name: "value_usd", kind: "scalar", T: 1 /* ScalarType.DOUBLE */, opt: true },
372
+ { no: 10, name: "uncollected_fees_usd", kind: "scalar", T: 1 /* ScalarType.DOUBLE */, opt: true },
371
373
  ]);
372
374
  /**
373
375
  * @generated from message pools.v1.Hook
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@uniswap/client-data-api",
3
- "version": "0.0.73",
3
+ "version": "0.0.74",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },