@uniswap/client-data-api 0.0.103 → 0.0.105

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.
@@ -1936,6 +1936,13 @@ export declare class ListRwasRequest extends Message<ListRwasRequest> {
1936
1936
  * @generated from field: repeated uint32 chain_ids = 1;
1937
1937
  */
1938
1938
  chainIds: number[];
1939
+ /**
1940
+ * When true, standalone commodity entries (no issuer structure) are
1941
+ * included. Default false: only stocks + ETFs.
1942
+ *
1943
+ * @generated from field: bool include_commodities = 2;
1944
+ */
1945
+ includeCommodities: boolean;
1939
1946
  constructor(data?: PartialMessage<ListRwasRequest>);
1940
1947
  static readonly runtime: typeof proto3;
1941
1948
  static readonly typeName = "data.v1.ListRwasRequest";
@@ -2191,6 +2198,13 @@ export declare class RankedRwa extends Message<RankedRwa> {
2191
2198
  * @generated from field: repeated data.v1.IssuerMultichainToken issuer_tokens = 11;
2192
2199
  */
2193
2200
  issuerTokens: IssuerMultichainToken[];
2201
+ /**
2202
+ * Max percent deviation of any issuer variant's price from price_usd (the
2203
+ * top issuer's). 0 when the grouping has a single variant.
2204
+ *
2205
+ * @generated from field: optional double price_deviation_pct = 12;
2206
+ */
2207
+ priceDeviationPct?: number;
2194
2208
  constructor(data?: PartialMessage<RankedRwa>);
2195
2209
  static readonly runtime: typeof proto3;
2196
2210
  static readonly typeName = "data.v1.RankedRwa";
@@ -2594,6 +2594,13 @@ export class ListRwasRequest extends Message {
2594
2594
  * @generated from field: repeated uint32 chain_ids = 1;
2595
2595
  */
2596
2596
  this.chainIds = [];
2597
+ /**
2598
+ * When true, standalone commodity entries (no issuer structure) are
2599
+ * included. Default false: only stocks + ETFs.
2600
+ *
2601
+ * @generated from field: bool include_commodities = 2;
2602
+ */
2603
+ this.includeCommodities = false;
2597
2604
  proto3.util.initPartial(data, this);
2598
2605
  }
2599
2606
  static fromBinary(bytes, options) {
@@ -2613,6 +2620,7 @@ ListRwasRequest.runtime = proto3;
2613
2620
  ListRwasRequest.typeName = "data.v1.ListRwasRequest";
2614
2621
  ListRwasRequest.fields = proto3.util.newFieldList(() => [
2615
2622
  { no: 1, name: "chain_ids", kind: "scalar", T: 13 /* ScalarType.UINT32 */, repeated: true },
2623
+ { no: 2, name: "include_commodities", kind: "scalar", T: 8 /* ScalarType.BOOL */ },
2616
2624
  ]);
2617
2625
  /**
2618
2626
  * @generated from message data.v1.ListRwasResponse
@@ -2986,6 +2994,7 @@ RankedRwa.fields = proto3.util.newFieldList(() => [
2986
2994
  { no: 9, name: "price_change_24h_pct", kind: "scalar", T: 1 /* ScalarType.DOUBLE */, opt: true },
2987
2995
  { no: 10, name: "sparkline_1d", kind: "message", T: RwaSparkline, opt: true },
2988
2996
  { no: 11, name: "issuer_tokens", kind: "message", T: IssuerMultichainToken, repeated: true },
2997
+ { no: 12, name: "price_deviation_pct", kind: "scalar", T: 1 /* ScalarType.DOUBLE */, opt: true },
2989
2998
  ]);
2990
2999
  /**
2991
3000
  * @generated from message data.v1.IssuerMultichainToken
@@ -729,6 +729,10 @@ export declare class AuctionActivityEntry extends Message<AuctionActivityEntry>
729
729
  * @generated from field: string status = 6;
730
730
  */
731
731
  status: string;
732
+ /**
733
+ * @generated from field: string tx_hash = 7;
734
+ */
735
+ txHash: string;
732
736
  constructor(data?: PartialMessage<AuctionActivityEntry>);
733
737
  static readonly runtime: typeof proto3;
734
738
  static readonly typeName = "data.v1.AuctionActivityEntry";
@@ -913,6 +913,10 @@ export class AuctionActivityEntry extends Message {
913
913
  * @generated from field: string status = 6;
914
914
  */
915
915
  this.status = "";
916
+ /**
917
+ * @generated from field: string tx_hash = 7;
918
+ */
919
+ this.txHash = "";
916
920
  proto3.util.initPartial(data, this);
917
921
  }
918
922
  static fromBinary(bytes, options) {
@@ -937,6 +941,7 @@ AuctionActivityEntry.fields = proto3.util.newFieldList(() => [
937
941
  { no: 4, name: "base_token_initial", kind: "scalar", T: 9 /* ScalarType.STRING */ },
938
942
  { no: 5, name: "created_at", kind: "scalar", T: 9 /* ScalarType.STRING */ },
939
943
  { no: 6, name: "status", kind: "scalar", T: 9 /* ScalarType.STRING */ },
944
+ { no: 7, name: "tx_hash", kind: "scalar", T: 9 /* ScalarType.STRING */ },
940
945
  ]);
941
946
  /**
942
947
  * @generated from message data.v1.GetAuctionActivityResponse
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@uniswap/client-data-api",
3
- "version": "0.0.103",
3
+ "version": "0.0.105",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },