@uniswap/client-data-api 0.0.159 → 0.0.160
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.
- package/dist/data/v2/api_pb.d.ts +12 -0
- package/dist/data/v2/api_pb.js +1 -0
- package/package.json +1 -1
package/dist/data/v2/api_pb.d.ts
CHANGED
|
@@ -1131,6 +1131,18 @@ export declare class ListLaunchesRequest extends Message<ListLaunchesRequest> {
|
|
|
1131
1131
|
* @generated from field: optional bool ascending = 7;
|
|
1132
1132
|
*/
|
|
1133
1133
|
ascending?: boolean;
|
|
1134
|
+
/**
|
|
1135
|
+
* Launchpad search: keep only launches whose token name OR
|
|
1136
|
+
* symbol starts with this string, compared case-insensitively (prefix
|
|
1137
|
+
* match only — no fuzzy/substring matching). LIKE metacharacters in the
|
|
1138
|
+
* query are treated literally. Ranking is orthogonal: sort_by/ascending
|
|
1139
|
+
* order the filtered results exactly as they do the unfiltered list.
|
|
1140
|
+
* Whitespace-only queries are treated as absent; input is trimmed,
|
|
1141
|
+
* whitespace-collapsed, and capped at 100 characters server-side.
|
|
1142
|
+
*
|
|
1143
|
+
* @generated from field: optional string query = 8;
|
|
1144
|
+
*/
|
|
1145
|
+
query?: string;
|
|
1134
1146
|
constructor(data?: PartialMessage<ListLaunchesRequest>);
|
|
1135
1147
|
static readonly runtime: typeof proto3;
|
|
1136
1148
|
static readonly typeName = "data.v2.ListLaunchesRequest";
|
package/dist/data/v2/api_pb.js
CHANGED
|
@@ -1469,6 +1469,7 @@ ListLaunchesRequest.fields = proto3.util.newFieldList(() => [
|
|
|
1469
1469
|
{ no: 5, name: "launchpad_ids", kind: "scalar", T: 9 /* ScalarType.STRING */, repeated: true },
|
|
1470
1470
|
{ no: 6, name: "filter", kind: "message", T: LaunchListFilter, opt: true },
|
|
1471
1471
|
{ no: 7, name: "ascending", kind: "scalar", T: 8 /* ScalarType.BOOL */, opt: true },
|
|
1472
|
+
{ no: 8, name: "query", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
|
|
1472
1473
|
]);
|
|
1473
1474
|
/**
|
|
1474
1475
|
* @generated from message data.v2.ListLaunchesResponse
|