@uniswap/client-data-api 0.0.129 → 0.0.130

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.
@@ -48,7 +48,11 @@ export declare enum TokensOrderBy {
48
48
  /**
49
49
  * @generated from enum value: TOKENS_ORDER_BY_PRICE_CHANGE_1D = 10;
50
50
  */
51
- PRICE_CHANGE_1D = 10
51
+ PRICE_CHANGE_1D = 10,
52
+ /**
53
+ * @generated from enum value: TOKENS_ORDER_BY_MARKET_CAP = 11;
54
+ */
55
+ MARKET_CAP = 11
52
56
  }
53
57
  /**
54
58
  * The fiat currencies the legacy GraphQL convert resolver accepts
@@ -320,6 +324,10 @@ export declare class TokenListFilter extends Message<TokenListFilter> {
320
324
  * @generated from field: optional double min_tvl_usd = 3;
321
325
  */
322
326
  minTvlUsd?: number;
327
+ /**
328
+ * @generated from field: optional bool apply_top_level_filters = 4;
329
+ */
330
+ applyTopLevelFilters?: boolean;
323
331
  constructor(data?: PartialMessage<TokenListFilter>);
324
332
  static readonly runtime: typeof proto3;
325
333
  static readonly typeName = "data.v2.TokenListFilter";
@@ -53,6 +53,10 @@ export var TokensOrderBy;
53
53
  * @generated from enum value: TOKENS_ORDER_BY_PRICE_CHANGE_1D = 10;
54
54
  */
55
55
  TokensOrderBy[TokensOrderBy["PRICE_CHANGE_1D"] = 10] = "PRICE_CHANGE_1D";
56
+ /**
57
+ * @generated from enum value: TOKENS_ORDER_BY_MARKET_CAP = 11;
58
+ */
59
+ TokensOrderBy[TokensOrderBy["MARKET_CAP"] = 11] = "MARKET_CAP";
56
60
  })(TokensOrderBy || (TokensOrderBy = {}));
57
61
  // Retrieve enum metadata with: proto3.getEnumType(TokensOrderBy)
58
62
  proto3.util.setEnumType(TokensOrderBy, "data.v2.TokensOrderBy", [
@@ -67,6 +71,7 @@ proto3.util.setEnumType(TokensOrderBy, "data.v2.TokensOrderBy", [
67
71
  { no: 8, name: "TOKENS_ORDER_BY_FDV" },
68
72
  { no: 9, name: "TOKENS_ORDER_BY_PRICE_CHANGE_1H" },
69
73
  { no: 10, name: "TOKENS_ORDER_BY_PRICE_CHANGE_1D" },
74
+ { no: 11, name: "TOKENS_ORDER_BY_MARKET_CAP" },
70
75
  ]);
71
76
  /**
72
77
  * The fiat currencies the legacy GraphQL convert resolver accepts
@@ -381,6 +386,7 @@ TokenListFilter.fields = proto3.util.newFieldList(() => [
381
386
  { no: 1, name: "include_spam", kind: "scalar", T: 8 /* ScalarType.BOOL */, opt: true },
382
387
  { no: 2, name: "min_volume_1d_usd", kind: "scalar", T: 1 /* ScalarType.DOUBLE */, opt: true },
383
388
  { no: 3, name: "min_tvl_usd", kind: "scalar", T: 1 /* ScalarType.DOUBLE */, opt: true },
389
+ { no: 4, name: "apply_top_level_filters", kind: "scalar", T: 8 /* ScalarType.BOOL */, opt: true },
384
390
  ]);
385
391
  /**
386
392
  * @generated from message data.v2.FiatAmount
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@uniswap/client-data-api",
3
- "version": "0.0.129",
3
+ "version": "0.0.130",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },