@uniswap/client-data-api 0.0.18 → 0.0.20
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/v1/api-DataApiService_connectquery.d.ts +14 -1
- package/dist/data/v1/api-DataApiService_connectquery.js +14 -1
- package/dist/data/v1/api_connect.d.ts +10 -1
- package/dist/data/v1/api_connect.js +10 -1
- package/dist/data/v1/api_pb.d.ts +97 -0
- package/dist/data/v1/api_pb.js +119 -0
- package/dist/data/v1/auction-AuctionService_connectquery.d.ts +28 -0
- package/dist/data/v1/auction-AuctionService_connectquery.js +32 -0
- package/dist/data/v1/auction_connect.d.ts +28 -0
- package/dist/data/v1/auction_connect.js +32 -0
- package/dist/data/v1/auction_pb.d.ts +188 -0
- package/dist/data/v1/auction_pb.js +279 -0
- package/dist/data/v1/reorged_block_pb.d.ts +31 -0
- package/dist/data/v1/reorged_block_pb.js +50 -0
- package/dist/data/v1/search-SearchService_connectquery.d.ts +15 -0
- package/dist/data/v1/search-SearchService_connectquery.js +19 -0
- package/dist/data/v1/searchTypes_pb.d.ts +349 -0
- package/dist/data/v1/searchTypes_pb.js +471 -0
- package/dist/data/v1/search_connect.d.ts +19 -0
- package/dist/data/v1/search_connect.js +23 -0
- package/dist/data/v1/search_pb.d.ts +57 -0
- package/dist/data/v1/search_pb.js +91 -0
- package/dist/data/v1/types_pb.d.ts +94 -14
- package/dist/data/v1/types_pb.js +86 -32
- package/package.json +1 -1
|
@@ -0,0 +1,279 @@
|
|
|
1
|
+
// @generated by protoc-gen-es v1.10.0 with parameter "target=ts"
|
|
2
|
+
// @generated from file data/v1/auction.proto (package data.v1, syntax proto3)
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
// @ts-nocheck
|
|
5
|
+
import { Message, proto3 } from "@bufbuild/protobuf";
|
|
6
|
+
/**
|
|
7
|
+
* Request to fetch all bids by a wallet.
|
|
8
|
+
*
|
|
9
|
+
* @generated from message data.v1.GetBidsByWalletRequest
|
|
10
|
+
*/
|
|
11
|
+
export class GetBidsByWalletRequest extends Message {
|
|
12
|
+
constructor(data) {
|
|
13
|
+
super();
|
|
14
|
+
/**
|
|
15
|
+
* Wallet address (lowercased, hex with 0x prefix).
|
|
16
|
+
*
|
|
17
|
+
* @generated from field: string wallet_id = 1;
|
|
18
|
+
*/
|
|
19
|
+
this.walletId = "";
|
|
20
|
+
/**
|
|
21
|
+
* Optional: filter by auction id if desired.
|
|
22
|
+
*
|
|
23
|
+
* @generated from field: string auction_id = 2;
|
|
24
|
+
*/
|
|
25
|
+
this.auctionId = "";
|
|
26
|
+
/**
|
|
27
|
+
* Optional: pagination
|
|
28
|
+
*
|
|
29
|
+
* @generated from field: int32 page_size = 3;
|
|
30
|
+
*/
|
|
31
|
+
this.pageSize = 0;
|
|
32
|
+
/**
|
|
33
|
+
* @generated from field: string page_token = 4;
|
|
34
|
+
*/
|
|
35
|
+
this.pageToken = "";
|
|
36
|
+
proto3.util.initPartial(data, this);
|
|
37
|
+
}
|
|
38
|
+
static fromBinary(bytes, options) {
|
|
39
|
+
return new GetBidsByWalletRequest().fromBinary(bytes, options);
|
|
40
|
+
}
|
|
41
|
+
static fromJson(jsonValue, options) {
|
|
42
|
+
return new GetBidsByWalletRequest().fromJson(jsonValue, options);
|
|
43
|
+
}
|
|
44
|
+
static fromJsonString(jsonString, options) {
|
|
45
|
+
return new GetBidsByWalletRequest().fromJsonString(jsonString, options);
|
|
46
|
+
}
|
|
47
|
+
static equals(a, b) {
|
|
48
|
+
return proto3.util.equals(GetBidsByWalletRequest, a, b);
|
|
49
|
+
}
|
|
50
|
+
}
|
|
51
|
+
GetBidsByWalletRequest.runtime = proto3;
|
|
52
|
+
GetBidsByWalletRequest.typeName = "data.v1.GetBidsByWalletRequest";
|
|
53
|
+
GetBidsByWalletRequest.fields = proto3.util.newFieldList(() => [
|
|
54
|
+
{ no: 1, name: "wallet_id", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
55
|
+
{ no: 2, name: "auction_id", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
56
|
+
{ no: 3, name: "page_size", kind: "scalar", T: 5 /* ScalarType.INT32 */ },
|
|
57
|
+
{ no: 4, name: "page_token", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
58
|
+
]);
|
|
59
|
+
/**
|
|
60
|
+
* A single bid resource.
|
|
61
|
+
*
|
|
62
|
+
* @generated from message data.v1.Bid
|
|
63
|
+
*/
|
|
64
|
+
export class Bid extends Message {
|
|
65
|
+
constructor(data) {
|
|
66
|
+
super();
|
|
67
|
+
/**
|
|
68
|
+
* @generated from field: string bid_id = 1;
|
|
69
|
+
*/
|
|
70
|
+
this.bidId = "";
|
|
71
|
+
/**
|
|
72
|
+
* @generated from field: string auction_id = 2;
|
|
73
|
+
*/
|
|
74
|
+
this.auctionId = "";
|
|
75
|
+
/**
|
|
76
|
+
* @generated from field: string wallet_id = 3;
|
|
77
|
+
*/
|
|
78
|
+
this.walletId = "";
|
|
79
|
+
/**
|
|
80
|
+
* @generated from field: string tx_hash = 4;
|
|
81
|
+
*/
|
|
82
|
+
this.txHash = "";
|
|
83
|
+
/**
|
|
84
|
+
* raw integer (string to avoid uint256 overflow)
|
|
85
|
+
*
|
|
86
|
+
* @generated from field: string amount = 5;
|
|
87
|
+
*/
|
|
88
|
+
this.amount = "";
|
|
89
|
+
/**
|
|
90
|
+
* raw integer (X96 or other format)
|
|
91
|
+
*
|
|
92
|
+
* @generated from field: string max_price = 6;
|
|
93
|
+
*/
|
|
94
|
+
this.maxPrice = "";
|
|
95
|
+
/**
|
|
96
|
+
* ISO 8601 / RFC 3339
|
|
97
|
+
*
|
|
98
|
+
* @generated from field: string created_at = 7;
|
|
99
|
+
*/
|
|
100
|
+
this.createdAt = "";
|
|
101
|
+
/**
|
|
102
|
+
* e.g. "active", "withdrawn", "claimed"
|
|
103
|
+
*
|
|
104
|
+
* @generated from field: string status = 8;
|
|
105
|
+
*/
|
|
106
|
+
this.status = "";
|
|
107
|
+
proto3.util.initPartial(data, this);
|
|
108
|
+
}
|
|
109
|
+
static fromBinary(bytes, options) {
|
|
110
|
+
return new Bid().fromBinary(bytes, options);
|
|
111
|
+
}
|
|
112
|
+
static fromJson(jsonValue, options) {
|
|
113
|
+
return new Bid().fromJson(jsonValue, options);
|
|
114
|
+
}
|
|
115
|
+
static fromJsonString(jsonString, options) {
|
|
116
|
+
return new Bid().fromJsonString(jsonString, options);
|
|
117
|
+
}
|
|
118
|
+
static equals(a, b) {
|
|
119
|
+
return proto3.util.equals(Bid, a, b);
|
|
120
|
+
}
|
|
121
|
+
}
|
|
122
|
+
Bid.runtime = proto3;
|
|
123
|
+
Bid.typeName = "data.v1.Bid";
|
|
124
|
+
Bid.fields = proto3.util.newFieldList(() => [
|
|
125
|
+
{ no: 1, name: "bid_id", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
126
|
+
{ no: 2, name: "auction_id", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
127
|
+
{ no: 3, name: "wallet_id", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
128
|
+
{ no: 4, name: "tx_hash", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
129
|
+
{ no: 5, name: "amount", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
130
|
+
{ no: 6, name: "max_price", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
131
|
+
{ no: 7, name: "created_at", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
132
|
+
{ no: 8, name: "status", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
133
|
+
]);
|
|
134
|
+
/**
|
|
135
|
+
* Response containing all bids for a wallet.
|
|
136
|
+
*
|
|
137
|
+
* @generated from message data.v1.GetBidsByWalletResponse
|
|
138
|
+
*/
|
|
139
|
+
export class GetBidsByWalletResponse extends Message {
|
|
140
|
+
constructor(data) {
|
|
141
|
+
super();
|
|
142
|
+
/**
|
|
143
|
+
* @generated from field: repeated data.v1.Bid bids = 1;
|
|
144
|
+
*/
|
|
145
|
+
this.bids = [];
|
|
146
|
+
/**
|
|
147
|
+
* Pagination token for next page.
|
|
148
|
+
*
|
|
149
|
+
* @generated from field: string next_page_token = 2;
|
|
150
|
+
*/
|
|
151
|
+
this.nextPageToken = "";
|
|
152
|
+
proto3.util.initPartial(data, this);
|
|
153
|
+
}
|
|
154
|
+
static fromBinary(bytes, options) {
|
|
155
|
+
return new GetBidsByWalletResponse().fromBinary(bytes, options);
|
|
156
|
+
}
|
|
157
|
+
static fromJson(jsonValue, options) {
|
|
158
|
+
return new GetBidsByWalletResponse().fromJson(jsonValue, options);
|
|
159
|
+
}
|
|
160
|
+
static fromJsonString(jsonString, options) {
|
|
161
|
+
return new GetBidsByWalletResponse().fromJsonString(jsonString, options);
|
|
162
|
+
}
|
|
163
|
+
static equals(a, b) {
|
|
164
|
+
return proto3.util.equals(GetBidsByWalletResponse, a, b);
|
|
165
|
+
}
|
|
166
|
+
}
|
|
167
|
+
GetBidsByWalletResponse.runtime = proto3;
|
|
168
|
+
GetBidsByWalletResponse.typeName = "data.v1.GetBidsByWalletResponse";
|
|
169
|
+
GetBidsByWalletResponse.fields = proto3.util.newFieldList(() => [
|
|
170
|
+
{ no: 1, name: "bids", kind: "message", T: Bid, repeated: true },
|
|
171
|
+
{ no: 2, name: "next_page_token", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
172
|
+
]);
|
|
173
|
+
/**
|
|
174
|
+
* Request to fetch bids by auction ID.
|
|
175
|
+
*
|
|
176
|
+
* @generated from message data.v1.GetBidsRequest
|
|
177
|
+
*/
|
|
178
|
+
export class GetBidsRequest extends Message {
|
|
179
|
+
constructor(data) {
|
|
180
|
+
super();
|
|
181
|
+
/**
|
|
182
|
+
* @generated from field: string auction_id = 1;
|
|
183
|
+
*/
|
|
184
|
+
this.auctionId = "";
|
|
185
|
+
proto3.util.initPartial(data, this);
|
|
186
|
+
}
|
|
187
|
+
static fromBinary(bytes, options) {
|
|
188
|
+
return new GetBidsRequest().fromBinary(bytes, options);
|
|
189
|
+
}
|
|
190
|
+
static fromJson(jsonValue, options) {
|
|
191
|
+
return new GetBidsRequest().fromJson(jsonValue, options);
|
|
192
|
+
}
|
|
193
|
+
static fromJsonString(jsonString, options) {
|
|
194
|
+
return new GetBidsRequest().fromJsonString(jsonString, options);
|
|
195
|
+
}
|
|
196
|
+
static equals(a, b) {
|
|
197
|
+
return proto3.util.equals(GetBidsRequest, a, b);
|
|
198
|
+
}
|
|
199
|
+
}
|
|
200
|
+
GetBidsRequest.runtime = proto3;
|
|
201
|
+
GetBidsRequest.typeName = "data.v1.GetBidsRequest";
|
|
202
|
+
GetBidsRequest.fields = proto3.util.newFieldList(() => [
|
|
203
|
+
{ no: 1, name: "auction_id", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
204
|
+
]);
|
|
205
|
+
/**
|
|
206
|
+
* A single bid concentration point.
|
|
207
|
+
*
|
|
208
|
+
* @generated from message data.v1.BidConcentrationPoint
|
|
209
|
+
*/
|
|
210
|
+
export class BidConcentrationPoint extends Message {
|
|
211
|
+
constructor(data) {
|
|
212
|
+
super();
|
|
213
|
+
/**
|
|
214
|
+
* cumulative volume (numeric as string)
|
|
215
|
+
*
|
|
216
|
+
* @generated from field: string volume = 1;
|
|
217
|
+
*/
|
|
218
|
+
this.volume = "";
|
|
219
|
+
/**
|
|
220
|
+
* ISO 8601 timestamp string
|
|
221
|
+
*
|
|
222
|
+
* @generated from field: string updated_at = 2;
|
|
223
|
+
*/
|
|
224
|
+
this.updatedAt = "";
|
|
225
|
+
proto3.util.initPartial(data, this);
|
|
226
|
+
}
|
|
227
|
+
static fromBinary(bytes, options) {
|
|
228
|
+
return new BidConcentrationPoint().fromBinary(bytes, options);
|
|
229
|
+
}
|
|
230
|
+
static fromJson(jsonValue, options) {
|
|
231
|
+
return new BidConcentrationPoint().fromJson(jsonValue, options);
|
|
232
|
+
}
|
|
233
|
+
static fromJsonString(jsonString, options) {
|
|
234
|
+
return new BidConcentrationPoint().fromJsonString(jsonString, options);
|
|
235
|
+
}
|
|
236
|
+
static equals(a, b) {
|
|
237
|
+
return proto3.util.equals(BidConcentrationPoint, a, b);
|
|
238
|
+
}
|
|
239
|
+
}
|
|
240
|
+
BidConcentrationPoint.runtime = proto3;
|
|
241
|
+
BidConcentrationPoint.typeName = "data.v1.BidConcentrationPoint";
|
|
242
|
+
BidConcentrationPoint.fields = proto3.util.newFieldList(() => [
|
|
243
|
+
{ no: 1, name: "volume", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
244
|
+
{ no: 2, name: "updated_at", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
245
|
+
]);
|
|
246
|
+
/**
|
|
247
|
+
* Response containing bids for an auction.
|
|
248
|
+
*
|
|
249
|
+
* @generated from message data.v1.GetBidsResponse
|
|
250
|
+
*/
|
|
251
|
+
export class GetBidsResponse extends Message {
|
|
252
|
+
constructor(data) {
|
|
253
|
+
super();
|
|
254
|
+
/**
|
|
255
|
+
* Map of max_price to bid concentration data
|
|
256
|
+
*
|
|
257
|
+
* @generated from field: map<string, data.v1.BidConcentrationPoint> concentration = 1;
|
|
258
|
+
*/
|
|
259
|
+
this.concentration = {};
|
|
260
|
+
proto3.util.initPartial(data, this);
|
|
261
|
+
}
|
|
262
|
+
static fromBinary(bytes, options) {
|
|
263
|
+
return new GetBidsResponse().fromBinary(bytes, options);
|
|
264
|
+
}
|
|
265
|
+
static fromJson(jsonValue, options) {
|
|
266
|
+
return new GetBidsResponse().fromJson(jsonValue, options);
|
|
267
|
+
}
|
|
268
|
+
static fromJsonString(jsonString, options) {
|
|
269
|
+
return new GetBidsResponse().fromJsonString(jsonString, options);
|
|
270
|
+
}
|
|
271
|
+
static equals(a, b) {
|
|
272
|
+
return proto3.util.equals(GetBidsResponse, a, b);
|
|
273
|
+
}
|
|
274
|
+
}
|
|
275
|
+
GetBidsResponse.runtime = proto3;
|
|
276
|
+
GetBidsResponse.typeName = "data.v1.GetBidsResponse";
|
|
277
|
+
GetBidsResponse.fields = proto3.util.newFieldList(() => [
|
|
278
|
+
{ no: 1, name: "concentration", kind: "map", K: 9 /* ScalarType.STRING */, V: { kind: "message", T: BidConcentrationPoint } },
|
|
279
|
+
]);
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import type { BinaryReadOptions, FieldList, JsonReadOptions, JsonValue, PartialMessage, PlainMessage } from "@bufbuild/protobuf";
|
|
2
|
+
import { Message, proto3 } from "@bufbuild/protobuf";
|
|
3
|
+
/**
|
|
4
|
+
* @generated from message data.v1.ReorgedBlock
|
|
5
|
+
*/
|
|
6
|
+
export declare class ReorgedBlock extends Message<ReorgedBlock> {
|
|
7
|
+
/**
|
|
8
|
+
* @generated from field: uint64 chain_id = 1;
|
|
9
|
+
*/
|
|
10
|
+
chainId: bigint;
|
|
11
|
+
/**
|
|
12
|
+
* @generated from field: uint64 block_num = 2;
|
|
13
|
+
*/
|
|
14
|
+
blockNum: bigint;
|
|
15
|
+
/**
|
|
16
|
+
* @generated from field: string block_hash = 3;
|
|
17
|
+
*/
|
|
18
|
+
blockHash: string;
|
|
19
|
+
/**
|
|
20
|
+
* @generated from field: uint64 created_at = 4;
|
|
21
|
+
*/
|
|
22
|
+
createdAt: bigint;
|
|
23
|
+
constructor(data?: PartialMessage<ReorgedBlock>);
|
|
24
|
+
static readonly runtime: typeof proto3;
|
|
25
|
+
static readonly typeName = "data.v1.ReorgedBlock";
|
|
26
|
+
static readonly fields: FieldList;
|
|
27
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): ReorgedBlock;
|
|
28
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): ReorgedBlock;
|
|
29
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): ReorgedBlock;
|
|
30
|
+
static equals(a: ReorgedBlock | PlainMessage<ReorgedBlock> | undefined, b: ReorgedBlock | PlainMessage<ReorgedBlock> | undefined): boolean;
|
|
31
|
+
}
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
// @generated by protoc-gen-es v1.10.0 with parameter "target=ts"
|
|
2
|
+
// @generated from file data/v1/reorged_block.proto (package data.v1, syntax proto3)
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
// @ts-nocheck
|
|
5
|
+
import { Message, proto3, protoInt64 } from "@bufbuild/protobuf";
|
|
6
|
+
/**
|
|
7
|
+
* @generated from message data.v1.ReorgedBlock
|
|
8
|
+
*/
|
|
9
|
+
export class ReorgedBlock extends Message {
|
|
10
|
+
constructor(data) {
|
|
11
|
+
super();
|
|
12
|
+
/**
|
|
13
|
+
* @generated from field: uint64 chain_id = 1;
|
|
14
|
+
*/
|
|
15
|
+
this.chainId = protoInt64.zero;
|
|
16
|
+
/**
|
|
17
|
+
* @generated from field: uint64 block_num = 2;
|
|
18
|
+
*/
|
|
19
|
+
this.blockNum = protoInt64.zero;
|
|
20
|
+
/**
|
|
21
|
+
* @generated from field: string block_hash = 3;
|
|
22
|
+
*/
|
|
23
|
+
this.blockHash = "";
|
|
24
|
+
/**
|
|
25
|
+
* @generated from field: uint64 created_at = 4;
|
|
26
|
+
*/
|
|
27
|
+
this.createdAt = protoInt64.zero;
|
|
28
|
+
proto3.util.initPartial(data, this);
|
|
29
|
+
}
|
|
30
|
+
static fromBinary(bytes, options) {
|
|
31
|
+
return new ReorgedBlock().fromBinary(bytes, options);
|
|
32
|
+
}
|
|
33
|
+
static fromJson(jsonValue, options) {
|
|
34
|
+
return new ReorgedBlock().fromJson(jsonValue, options);
|
|
35
|
+
}
|
|
36
|
+
static fromJsonString(jsonString, options) {
|
|
37
|
+
return new ReorgedBlock().fromJsonString(jsonString, options);
|
|
38
|
+
}
|
|
39
|
+
static equals(a, b) {
|
|
40
|
+
return proto3.util.equals(ReorgedBlock, a, b);
|
|
41
|
+
}
|
|
42
|
+
}
|
|
43
|
+
ReorgedBlock.runtime = proto3;
|
|
44
|
+
ReorgedBlock.typeName = "data.v1.ReorgedBlock";
|
|
45
|
+
ReorgedBlock.fields = proto3.util.newFieldList(() => [
|
|
46
|
+
{ no: 1, name: "chain_id", kind: "scalar", T: 4 /* ScalarType.UINT64 */ },
|
|
47
|
+
{ no: 2, name: "block_num", kind: "scalar", T: 4 /* ScalarType.UINT64 */ },
|
|
48
|
+
{ no: 3, name: "block_hash", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
49
|
+
{ no: 4, name: "created_at", kind: "scalar", T: 4 /* ScalarType.UINT64 */ },
|
|
50
|
+
]);
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { MethodKind } from "@bufbuild/protobuf";
|
|
2
|
+
import { SearchTokensRequest, SearchTokensResponse } from "./search_pb.js";
|
|
3
|
+
/**
|
|
4
|
+
* @generated from rpc data.v1.SearchService.SearchTokens
|
|
5
|
+
*/
|
|
6
|
+
export declare const searchTokens: {
|
|
7
|
+
readonly localName: "searchTokens";
|
|
8
|
+
readonly name: "SearchTokens";
|
|
9
|
+
readonly kind: MethodKind.Unary;
|
|
10
|
+
readonly I: typeof SearchTokensRequest;
|
|
11
|
+
readonly O: typeof SearchTokensResponse;
|
|
12
|
+
readonly service: {
|
|
13
|
+
readonly typeName: "data.v1.SearchService";
|
|
14
|
+
};
|
|
15
|
+
};
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
// @generated by protoc-gen-connect-query v1.4.1 with parameter "target=ts"
|
|
2
|
+
// @generated from file data/v1/search.proto (package data.v1, syntax proto3)
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
// @ts-nocheck
|
|
5
|
+
import { MethodKind } from "@bufbuild/protobuf";
|
|
6
|
+
import { SearchTokensRequest, SearchTokensResponse } from "./search_pb.js";
|
|
7
|
+
/**
|
|
8
|
+
* @generated from rpc data.v1.SearchService.SearchTokens
|
|
9
|
+
*/
|
|
10
|
+
export const searchTokens = {
|
|
11
|
+
localName: "searchTokens",
|
|
12
|
+
name: "SearchTokens",
|
|
13
|
+
kind: MethodKind.Unary,
|
|
14
|
+
I: SearchTokensRequest,
|
|
15
|
+
O: SearchTokensResponse,
|
|
16
|
+
service: {
|
|
17
|
+
typeName: "data.v1.SearchService"
|
|
18
|
+
}
|
|
19
|
+
};
|