@alephium/powfi-backend 0.0.1-rc.2

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.
Files changed (116) hide show
  1. package/README.md +22 -0
  2. package/dist/types/api/index.d.ts +14 -0
  3. package/dist/types/api/index.d.ts.map +1 -0
  4. package/dist/types/api/schemas.d.ts +8 -0
  5. package/dist/types/api/schemas.d.ts.map +1 -0
  6. package/dist/types/api/serializers.d.ts +7 -0
  7. package/dist/types/api/serializers.d.ts.map +1 -0
  8. package/dist/types/api/types.d.ts +91 -0
  9. package/dist/types/api/types.d.ts.map +1 -0
  10. package/dist/types/api/utils.d.ts +7 -0
  11. package/dist/types/api/utils.d.ts.map +1 -0
  12. package/dist/types/app.d.ts +1350 -0
  13. package/dist/types/app.d.ts.map +1 -0
  14. package/dist/types/common/types.d.ts +12 -0
  15. package/dist/types/common/types.d.ts.map +1 -0
  16. package/dist/types/config/database.d.ts +17 -0
  17. package/dist/types/config/database.d.ts.map +1 -0
  18. package/dist/types/config/env.d.ts +20 -0
  19. package/dist/types/config/env.d.ts.map +1 -0
  20. package/dist/types/cron.d.ts +54 -0
  21. package/dist/types/cron.d.ts.map +1 -0
  22. package/dist/types/database/addressUtils.d.ts +4 -0
  23. package/dist/types/database/addressUtils.d.ts.map +1 -0
  24. package/dist/types/database/aggregates.d.ts +14 -0
  25. package/dist/types/database/aggregates.d.ts.map +1 -0
  26. package/dist/types/database/clmmPositions.d.ts +28 -0
  27. package/dist/types/database/clmmPositions.d.ts.map +1 -0
  28. package/dist/types/database/clmmTicks.d.ts +9 -0
  29. package/dist/types/database/clmmTicks.d.ts.map +1 -0
  30. package/dist/types/database/cpmmPositions.d.ts +16 -0
  31. package/dist/types/database/cpmmPositions.d.ts.map +1 -0
  32. package/dist/types/database/liquidityTicks.d.ts +7 -0
  33. package/dist/types/database/liquidityTicks.d.ts.map +1 -0
  34. package/dist/types/database/mints.d.ts +18 -0
  35. package/dist/types/database/mints.d.ts.map +1 -0
  36. package/dist/types/database/poolEvents.d.ts +38 -0
  37. package/dist/types/database/poolEvents.d.ts.map +1 -0
  38. package/dist/types/database/pools.d.ts +47 -0
  39. package/dist/types/database/pools.d.ts.map +1 -0
  40. package/dist/types/database/priceTicks.d.ts +7 -0
  41. package/dist/types/database/priceTicks.d.ts.map +1 -0
  42. package/dist/types/database/schemas.d.ts +134 -0
  43. package/dist/types/database/schemas.d.ts.map +1 -0
  44. package/dist/types/database/types.d.ts +134 -0
  45. package/dist/types/database/types.d.ts.map +1 -0
  46. package/dist/types/index.d.ts +2 -0
  47. package/dist/types/index.d.ts.map +1 -0
  48. package/dist/types/lib/error-codes.d.ts +12 -0
  49. package/dist/types/lib/error-codes.d.ts.map +1 -0
  50. package/dist/types/lib/errors.d.ts +109 -0
  51. package/dist/types/lib/errors.d.ts.map +1 -0
  52. package/dist/types/lib/logger.d.ts +2 -0
  53. package/dist/types/lib/logger.d.ts.map +1 -0
  54. package/dist/types/lib/validation.d.ts +3 -0
  55. package/dist/types/lib/validation.d.ts.map +1 -0
  56. package/dist/types/routes/addresses.d.ts +115 -0
  57. package/dist/types/routes/addresses.d.ts.map +1 -0
  58. package/dist/types/routes/compute.d.ts +132 -0
  59. package/dist/types/routes/compute.d.ts.map +1 -0
  60. package/dist/types/routes/ohlcv.d.ts +76 -0
  61. package/dist/types/routes/ohlcv.d.ts.map +1 -0
  62. package/dist/types/routes/pools.d.ts +290 -0
  63. package/dist/types/routes/pools.d.ts.map +1 -0
  64. package/dist/types/routes/response.d.ts +83 -0
  65. package/dist/types/routes/response.d.ts.map +1 -0
  66. package/dist/types/routes/stats.d.ts +69 -0
  67. package/dist/types/routes/stats.d.ts.map +1 -0
  68. package/dist/types/routes/tokens.d.ts +71 -0
  69. package/dist/types/routes/tokens.d.ts.map +1 -0
  70. package/dist/types/routes/websocket.d.ts +42 -0
  71. package/dist/types/routes/websocket.d.ts.map +1 -0
  72. package/dist/types/services/Services.d.ts +23 -0
  73. package/dist/types/services/Services.d.ts.map +1 -0
  74. package/dist/types/services/compute/computeService.d.ts +80 -0
  75. package/dist/types/services/compute/computeService.d.ts.map +1 -0
  76. package/dist/types/services/compute/computeServiceTypes.d.ts +29 -0
  77. package/dist/types/services/compute/computeServiceTypes.d.ts.map +1 -0
  78. package/dist/types/services/computeService.d.ts +103 -0
  79. package/dist/types/services/computeService.d.ts.map +1 -0
  80. package/dist/types/services/pool/poolEventsHandler.d.ts +27 -0
  81. package/dist/types/services/pool/poolEventsHandler.d.ts.map +1 -0
  82. package/dist/types/services/pool/poolEventsSubscriptionService.d.ts +18 -0
  83. package/dist/types/services/pool/poolEventsSubscriptionService.d.ts.map +1 -0
  84. package/dist/types/services/pool/poolService.d.ts +99 -0
  85. package/dist/types/services/pool/poolService.d.ts.map +1 -0
  86. package/dist/types/services/pool/poolServiceTypes.d.ts +53 -0
  87. package/dist/types/services/pool/poolServiceTypes.d.ts.map +1 -0
  88. package/dist/types/services/pool/poolStateService.d.ts +11 -0
  89. package/dist/types/services/pool/poolStateService.d.ts.map +1 -0
  90. package/dist/types/services/pool/poolStateWebsocketService.d.ts +13 -0
  91. package/dist/types/services/pool/poolStateWebsocketService.d.ts.map +1 -0
  92. package/dist/types/services/poolEventsHandler.d.ts +26 -0
  93. package/dist/types/services/poolEventsHandler.d.ts.map +1 -0
  94. package/dist/types/services/poolEventsSubscriptionService.d.ts +16 -0
  95. package/dist/types/services/poolEventsSubscriptionService.d.ts.map +1 -0
  96. package/dist/types/services/poolService.d.ts +153 -0
  97. package/dist/types/services/poolService.d.ts.map +1 -0
  98. package/dist/types/services/poolStateWebsocketService.d.ts +13 -0
  99. package/dist/types/services/poolStateWebsocketService.d.ts.map +1 -0
  100. package/dist/types/services/poolStatsService.d.ts +66 -0
  101. package/dist/types/services/poolStatsService.d.ts.map +1 -0
  102. package/dist/types/services/price/priceService.d.ts +34 -0
  103. package/dist/types/services/price/priceService.d.ts.map +1 -0
  104. package/dist/types/services/price/priceServiceTypes.d.ts +8 -0
  105. package/dist/types/services/price/priceServiceTypes.d.ts.map +1 -0
  106. package/dist/types/services/priceService.d.ts +39 -0
  107. package/dist/types/services/priceService.d.ts.map +1 -0
  108. package/dist/types/services/stat/poolStatsService.d.ts +22 -0
  109. package/dist/types/services/stat/poolStatsService.d.ts.map +1 -0
  110. package/dist/types/services/stat/poolStatsServiceTypes.d.ts +35 -0
  111. package/dist/types/services/stat/poolStatsServiceTypes.d.ts.map +1 -0
  112. package/dist/types/utils/cacheUtil.d.ts +26 -0
  113. package/dist/types/utils/cacheUtil.d.ts.map +1 -0
  114. package/dist/types/utils/period.d.ts +8 -0
  115. package/dist/types/utils/period.d.ts.map +1 -0
  116. package/package.json +59 -0
@@ -0,0 +1,1350 @@
1
+ import { Elysia } from 'elysia';
2
+ import { BadRequest, NotFound, ValidationError, InternalServerError } from './lib/errors';
3
+ export declare function createApp(): Elysia<"", {
4
+ decorator: {};
5
+ store: {
6
+ cron: Record<"global-stats-cache-updater", import("croner").Cron>;
7
+ };
8
+ derive: {};
9
+ resolve: {};
10
+ }, {
11
+ typebox: {};
12
+ error: {};
13
+ } & {
14
+ typebox: {};
15
+ error: {
16
+ readonly BadRequest: BadRequest;
17
+ readonly NotFound: NotFound;
18
+ readonly ValidationError: ValidationError;
19
+ readonly InternalServerError: InternalServerError;
20
+ };
21
+ } & {
22
+ typebox: {};
23
+ error: {};
24
+ } & {
25
+ typebox: {};
26
+ error: {};
27
+ } & {
28
+ typebox: {};
29
+ error: {};
30
+ }, {
31
+ schema: {};
32
+ standaloneSchema: {};
33
+ macro: {};
34
+ macroFn: {};
35
+ parser: {};
36
+ response: {};
37
+ } & {
38
+ schema: {};
39
+ standaloneSchema: {};
40
+ macro: {};
41
+ macroFn: {};
42
+ parser: {};
43
+ response: {
44
+ 200: Response;
45
+ };
46
+ } & {
47
+ schema: {};
48
+ standaloneSchema: {};
49
+ macro: {};
50
+ macroFn: {};
51
+ parser: {};
52
+ response: {};
53
+ } & {
54
+ schema: {};
55
+ standaloneSchema: {};
56
+ macro: {};
57
+ macroFn: {};
58
+ parser: {};
59
+ response: {};
60
+ } & {
61
+ schema: {};
62
+ standaloneSchema: {};
63
+ macro: {};
64
+ macroFn: {};
65
+ parser: {};
66
+ response: {};
67
+ }, {
68
+ "token-list": {
69
+ "devnet.json": {
70
+ get: {
71
+ body: unknown;
72
+ params: {};
73
+ query: unknown;
74
+ headers: unknown;
75
+ response: {
76
+ 200: Response;
77
+ };
78
+ };
79
+ };
80
+ };
81
+ } & {
82
+ pools: {
83
+ get: {
84
+ body: unknown;
85
+ params: {};
86
+ query: {
87
+ token1?: string | undefined;
88
+ poolType?: "standard" | "concentrated" | "all" | undefined;
89
+ page?: number | undefined;
90
+ pageSize?: number | undefined;
91
+ token2?: string | undefined;
92
+ sortType?: "asc" | "desc" | undefined;
93
+ };
94
+ headers: unknown;
95
+ response: {
96
+ 400: {
97
+ code: "BAD_REQUEST" | "INVALID_FILE_TYPE" | "PARSE" | "INVALID_COOKIE_SIGNATURE";
98
+ message: string;
99
+ error: "Bad request";
100
+ details?: Record<string, unknown> | undefined;
101
+ };
102
+ 404: {
103
+ code: "RESOURCE_NOT_FOUND";
104
+ message: string;
105
+ error: "Resource not found";
106
+ details?: Record<string, unknown> | undefined;
107
+ };
108
+ 422: {
109
+ code: "VALIDATION";
110
+ message: string;
111
+ error: "Validation error";
112
+ details?: Record<string, unknown> | undefined;
113
+ };
114
+ 500: {
115
+ code: "INTERNAL_SERVER_ERROR";
116
+ message: string;
117
+ error: "Internal server error";
118
+ details?: Record<string, unknown> | undefined;
119
+ };
120
+ 200: import("./api").PaginatedApiResponse<import("./api").ApiPoolListResponse>;
121
+ };
122
+ };
123
+ };
124
+ } & {
125
+ pools: {
126
+ post: {
127
+ body: {
128
+ ids: string[];
129
+ };
130
+ params: {};
131
+ query: unknown;
132
+ headers: unknown;
133
+ response: {
134
+ 400: {
135
+ code: "BAD_REQUEST" | "INVALID_FILE_TYPE" | "PARSE" | "INVALID_COOKIE_SIGNATURE";
136
+ message: string;
137
+ error: "Bad request";
138
+ details?: Record<string, unknown> | undefined;
139
+ };
140
+ 404: {
141
+ code: "RESOURCE_NOT_FOUND";
142
+ message: string;
143
+ error: "Resource not found";
144
+ details?: Record<string, unknown> | undefined;
145
+ };
146
+ 422: {
147
+ code: "VALIDATION";
148
+ message: string;
149
+ error: "Validation error";
150
+ details?: Record<string, unknown> | undefined;
151
+ };
152
+ 500: {
153
+ code: "INTERNAL_SERVER_ERROR";
154
+ message: string;
155
+ error: "Internal server error";
156
+ details?: Record<string, unknown> | undefined;
157
+ };
158
+ 200: import("./api").ApiPoolListFromIdsResponse;
159
+ };
160
+ };
161
+ };
162
+ } & {
163
+ pools: {
164
+ ":id": {
165
+ get: {
166
+ body: unknown;
167
+ params: {
168
+ id: string;
169
+ };
170
+ query: unknown;
171
+ headers: unknown;
172
+ response: {
173
+ 400: {
174
+ code: "BAD_REQUEST" | "INVALID_FILE_TYPE" | "PARSE" | "INVALID_COOKIE_SIGNATURE";
175
+ message: string;
176
+ error: "Bad request";
177
+ details?: Record<string, unknown> | undefined;
178
+ };
179
+ 404: {
180
+ code: "RESOURCE_NOT_FOUND";
181
+ message: string;
182
+ error: "Resource not found";
183
+ details?: Record<string, unknown> | undefined;
184
+ };
185
+ 422: {
186
+ code: "VALIDATION";
187
+ message: string;
188
+ error: "Validation error";
189
+ details?: Record<string, unknown> | undefined;
190
+ };
191
+ 500: {
192
+ code: "INTERNAL_SERVER_ERROR";
193
+ message: string;
194
+ error: "Internal server error";
195
+ details?: Record<string, unknown> | undefined;
196
+ };
197
+ 200: import("./api").ApiPoolWithStats;
198
+ };
199
+ };
200
+ };
201
+ };
202
+ } & {
203
+ pools: {
204
+ ":id": {
205
+ events: {
206
+ get: {
207
+ body: unknown;
208
+ params: {
209
+ id: string;
210
+ };
211
+ query: {
212
+ page?: number | undefined;
213
+ pageSize?: number | undefined;
214
+ };
215
+ headers: unknown;
216
+ response: {
217
+ 400: {
218
+ code: "BAD_REQUEST" | "INVALID_FILE_TYPE" | "PARSE" | "INVALID_COOKIE_SIGNATURE";
219
+ message: string;
220
+ error: "Bad request";
221
+ details?: Record<string, unknown> | undefined;
222
+ };
223
+ 404: {
224
+ code: "RESOURCE_NOT_FOUND";
225
+ message: string;
226
+ error: "Resource not found";
227
+ details?: Record<string, unknown> | undefined;
228
+ };
229
+ 422: {
230
+ code: "VALIDATION";
231
+ message: string;
232
+ error: "Validation error";
233
+ details?: Record<string, unknown> | undefined;
234
+ };
235
+ 500: {
236
+ code: "INTERNAL_SERVER_ERROR";
237
+ message: string;
238
+ error: "Internal server error";
239
+ details?: Record<string, unknown> | undefined;
240
+ };
241
+ 200: import("./api").PaginatedApiResponse<import("./api").ApiPoolEventsResponse>;
242
+ };
243
+ };
244
+ };
245
+ };
246
+ };
247
+ } & {
248
+ pools: {
249
+ ":id": {
250
+ line: {
251
+ position: {
252
+ get: {
253
+ body: unknown;
254
+ params: {
255
+ id: string;
256
+ };
257
+ query: unknown;
258
+ headers: unknown;
259
+ response: {
260
+ 400: {
261
+ code: "BAD_REQUEST" | "INVALID_FILE_TYPE" | "PARSE" | "INVALID_COOKIE_SIGNATURE";
262
+ message: string;
263
+ error: "Bad request";
264
+ details?: Record<string, unknown> | undefined;
265
+ };
266
+ 404: {
267
+ code: "RESOURCE_NOT_FOUND";
268
+ message: string;
269
+ error: "Resource not found";
270
+ details?: Record<string, unknown> | undefined;
271
+ };
272
+ 422: {
273
+ code: "VALIDATION";
274
+ message: string;
275
+ error: "Validation error";
276
+ details?: Record<string, unknown> | undefined;
277
+ };
278
+ 500: {
279
+ code: "INTERNAL_SERVER_ERROR";
280
+ message: string;
281
+ error: "Internal server error";
282
+ details?: Record<string, unknown> | undefined;
283
+ };
284
+ 200: import("./api").ClmmLiquidityLinePayload;
285
+ };
286
+ };
287
+ };
288
+ };
289
+ };
290
+ };
291
+ } & {
292
+ pools: {
293
+ ":id": {
294
+ line: {
295
+ liquidity: {
296
+ get: {
297
+ body: unknown;
298
+ params: {
299
+ id: string;
300
+ };
301
+ query: {
302
+ startTime?: number | undefined;
303
+ endTime?: number | undefined;
304
+ };
305
+ headers: unknown;
306
+ response: {
307
+ 400: {
308
+ code: "BAD_REQUEST" | "INVALID_FILE_TYPE" | "PARSE" | "INVALID_COOKIE_SIGNATURE";
309
+ message: string;
310
+ error: "Bad request";
311
+ details?: Record<string, unknown> | undefined;
312
+ };
313
+ 404: {
314
+ code: "RESOURCE_NOT_FOUND";
315
+ message: string;
316
+ error: "Resource not found";
317
+ details?: Record<string, unknown> | undefined;
318
+ };
319
+ 422: {
320
+ code: "VALIDATION";
321
+ message: string;
322
+ error: "Validation error";
323
+ details?: Record<string, unknown> | undefined;
324
+ };
325
+ 500: {
326
+ code: "INTERNAL_SERVER_ERROR";
327
+ message: string;
328
+ error: "Internal server error";
329
+ details?: Record<string, unknown> | undefined;
330
+ };
331
+ 200: import("./api").LiquidityLineData;
332
+ };
333
+ };
334
+ };
335
+ };
336
+ };
337
+ };
338
+ } & {
339
+ addresses: {
340
+ ":address": {
341
+ "cpmm-positions": {
342
+ get: {
343
+ body: unknown;
344
+ params: {
345
+ address: string;
346
+ };
347
+ query: unknown;
348
+ headers: unknown;
349
+ response: {
350
+ 400: {
351
+ code: "BAD_REQUEST" | "INVALID_FILE_TYPE" | "PARSE" | "INVALID_COOKIE_SIGNATURE";
352
+ message: string;
353
+ error: "Bad request";
354
+ details?: Record<string, unknown> | undefined;
355
+ };
356
+ 404: {
357
+ code: "RESOURCE_NOT_FOUND";
358
+ message: string;
359
+ error: "Resource not found";
360
+ details?: Record<string, unknown> | undefined;
361
+ };
362
+ 422: {
363
+ code: "VALIDATION";
364
+ message: string;
365
+ error: "Validation error";
366
+ details?: Record<string, unknown> | undefined;
367
+ };
368
+ 500: {
369
+ code: "INTERNAL_SERVER_ERROR";
370
+ message: string;
371
+ error: "Internal server error";
372
+ details?: Record<string, unknown> | undefined;
373
+ };
374
+ 200: import("./api").ApiCpmmPosition[];
375
+ };
376
+ };
377
+ };
378
+ };
379
+ };
380
+ } & {
381
+ addresses: {
382
+ ":address": {
383
+ "clmm-positions": {
384
+ get: {
385
+ body: unknown;
386
+ params: {
387
+ address: string;
388
+ };
389
+ query: unknown;
390
+ headers: unknown;
391
+ response: {
392
+ 400: {
393
+ code: "BAD_REQUEST" | "INVALID_FILE_TYPE" | "PARSE" | "INVALID_COOKIE_SIGNATURE";
394
+ message: string;
395
+ error: "Bad request";
396
+ details?: Record<string, unknown> | undefined;
397
+ };
398
+ 404: {
399
+ code: "RESOURCE_NOT_FOUND";
400
+ message: string;
401
+ error: "Resource not found";
402
+ details?: Record<string, unknown> | undefined;
403
+ };
404
+ 422: {
405
+ code: "VALIDATION";
406
+ message: string;
407
+ error: "Validation error";
408
+ details?: Record<string, unknown> | undefined;
409
+ };
410
+ 500: {
411
+ code: "INTERNAL_SERVER_ERROR";
412
+ message: string;
413
+ error: "Internal server error";
414
+ details?: Record<string, unknown> | undefined;
415
+ };
416
+ 200: import("./api").ApiClmmPosition[];
417
+ };
418
+ };
419
+ };
420
+ };
421
+ };
422
+ } & {
423
+ tokens: {
424
+ get: {
425
+ body: unknown;
426
+ params: {};
427
+ query: unknown;
428
+ headers: unknown;
429
+ response: {
430
+ 400: {
431
+ code: "BAD_REQUEST" | "INVALID_FILE_TYPE" | "PARSE" | "INVALID_COOKIE_SIGNATURE";
432
+ message: string;
433
+ error: "Bad request";
434
+ details?: Record<string, unknown> | undefined;
435
+ };
436
+ 404: {
437
+ code: "RESOURCE_NOT_FOUND";
438
+ message: string;
439
+ error: "Resource not found";
440
+ details?: Record<string, unknown> | undefined;
441
+ };
442
+ 422: {
443
+ code: "VALIDATION";
444
+ message: string;
445
+ error: "Validation error";
446
+ details?: Record<string, unknown> | undefined;
447
+ };
448
+ 500: {
449
+ code: "INTERNAL_SERVER_ERROR";
450
+ message: string;
451
+ error: "Internal server error";
452
+ details?: Record<string, unknown> | undefined;
453
+ };
454
+ 200: import("./routes/tokens").TokenListResponse;
455
+ };
456
+ };
457
+ };
458
+ } & {
459
+ compute: {
460
+ "swap-in": {
461
+ get: {
462
+ body: unknown;
463
+ params: {};
464
+ query: {
465
+ slippageBps?: string | undefined;
466
+ poolType: "standard" | "concentrated";
467
+ inputMint: string;
468
+ outputMint: string;
469
+ amount: string;
470
+ };
471
+ headers: unknown;
472
+ response: {
473
+ 400: {
474
+ code: "BAD_REQUEST" | "INVALID_FILE_TYPE" | "PARSE" | "INVALID_COOKIE_SIGNATURE";
475
+ message: string;
476
+ error: "Bad request";
477
+ details?: Record<string, unknown> | undefined;
478
+ };
479
+ 404: {
480
+ code: "RESOURCE_NOT_FOUND";
481
+ message: string;
482
+ error: "Resource not found";
483
+ details?: Record<string, unknown> | undefined;
484
+ };
485
+ 422: {
486
+ code: "VALIDATION";
487
+ message: string;
488
+ error: "Validation error";
489
+ details?: Record<string, unknown> | undefined;
490
+ };
491
+ 500: {
492
+ code: "INTERNAL_SERVER_ERROR";
493
+ message: string;
494
+ error: "Internal server error";
495
+ details?: Record<string, unknown> | undefined;
496
+ };
497
+ 200: import("./api").SwapComputeResult;
498
+ };
499
+ };
500
+ };
501
+ };
502
+ } & {
503
+ compute: {
504
+ "swap-out": {
505
+ get: {
506
+ body: unknown;
507
+ params: {};
508
+ query: {
509
+ slippageBps?: string | undefined;
510
+ poolType: "standard" | "concentrated";
511
+ inputMint: string;
512
+ outputMint: string;
513
+ amount: string;
514
+ };
515
+ headers: unknown;
516
+ response: {
517
+ 400: {
518
+ code: "BAD_REQUEST" | "INVALID_FILE_TYPE" | "PARSE" | "INVALID_COOKIE_SIGNATURE";
519
+ message: string;
520
+ error: "Bad request";
521
+ details?: Record<string, unknown> | undefined;
522
+ };
523
+ 404: {
524
+ code: "RESOURCE_NOT_FOUND";
525
+ message: string;
526
+ error: "Resource not found";
527
+ details?: Record<string, unknown> | undefined;
528
+ };
529
+ 422: {
530
+ code: "VALIDATION";
531
+ message: string;
532
+ error: "Validation error";
533
+ details?: Record<string, unknown> | undefined;
534
+ };
535
+ 500: {
536
+ code: "INTERNAL_SERVER_ERROR";
537
+ message: string;
538
+ error: "Internal server error";
539
+ details?: Record<string, unknown> | undefined;
540
+ };
541
+ 200: import("./api").SwapComputeResult;
542
+ };
543
+ };
544
+ };
545
+ };
546
+ } & {
547
+ ohlcv: {
548
+ get: {
549
+ body: unknown;
550
+ params: {};
551
+ query: {
552
+ type?: "1m" | "5m" | "15m" | "1h" | "4h" | "1d" | "1w" | undefined;
553
+ token0?: string | undefined;
554
+ token1?: string | undefined;
555
+ poolId?: string | undefined;
556
+ time_from?: number | undefined;
557
+ time_to?: number | undefined;
558
+ };
559
+ headers: unknown;
560
+ response: {
561
+ 400: {
562
+ code: "BAD_REQUEST" | "INVALID_FILE_TYPE" | "PARSE" | "INVALID_COOKIE_SIGNATURE";
563
+ message: string;
564
+ error: "Bad request";
565
+ details?: Record<string, unknown> | undefined;
566
+ };
567
+ 404: {
568
+ code: "RESOURCE_NOT_FOUND";
569
+ message: string;
570
+ error: "Resource not found";
571
+ details?: Record<string, unknown> | undefined;
572
+ };
573
+ 422: {
574
+ code: "VALIDATION";
575
+ message: string;
576
+ error: "Validation error";
577
+ details?: Record<string, unknown> | undefined;
578
+ };
579
+ 500: {
580
+ code: "INTERNAL_SERVER_ERROR";
581
+ message: string;
582
+ error: "Internal server error";
583
+ details?: Record<string, unknown> | undefined;
584
+ };
585
+ 200: import("./api").OHLVCResult;
586
+ };
587
+ };
588
+ };
589
+ } & {
590
+ stats: {
591
+ global: {
592
+ get: {
593
+ body: unknown;
594
+ params: {};
595
+ query: unknown;
596
+ headers: unknown;
597
+ response: {
598
+ 400: {
599
+ code: "BAD_REQUEST" | "INVALID_FILE_TYPE" | "PARSE" | "INVALID_COOKIE_SIGNATURE";
600
+ message: string;
601
+ error: "Bad request";
602
+ details?: Record<string, unknown> | undefined;
603
+ };
604
+ 404: {
605
+ code: "RESOURCE_NOT_FOUND";
606
+ message: string;
607
+ error: "Resource not found";
608
+ details?: Record<string, unknown> | undefined;
609
+ };
610
+ 422: {
611
+ code: "VALIDATION";
612
+ message: string;
613
+ error: "Validation error";
614
+ details?: Record<string, unknown> | undefined;
615
+ };
616
+ 500: {
617
+ code: "INTERNAL_SERVER_ERROR";
618
+ message: string;
619
+ error: "Internal server error";
620
+ details?: Record<string, unknown> | undefined;
621
+ };
622
+ 200: import("./api").ApiGlobalStats;
623
+ };
624
+ };
625
+ };
626
+ };
627
+ } & {
628
+ ws: {
629
+ "pool-state": {
630
+ subscribe: {
631
+ body: unknown;
632
+ params: {};
633
+ query: unknown;
634
+ headers: unknown;
635
+ response: {};
636
+ };
637
+ };
638
+ };
639
+ }, {
640
+ derive: {};
641
+ resolve: {};
642
+ schema: {};
643
+ standaloneSchema: {};
644
+ response: {};
645
+ }, {
646
+ derive: {};
647
+ resolve: {};
648
+ schema: {};
649
+ standaloneSchema: {};
650
+ response: {};
651
+ } & {
652
+ derive: {};
653
+ resolve: {};
654
+ schema: {};
655
+ standaloneSchema: {};
656
+ response: {};
657
+ } & {
658
+ derive: {};
659
+ resolve: {};
660
+ schema: {};
661
+ standaloneSchema: {};
662
+ response: {};
663
+ } & {
664
+ derive: {};
665
+ resolve: {};
666
+ schema: {};
667
+ standaloneSchema: {};
668
+ response: {};
669
+ } & {
670
+ derive: {};
671
+ resolve: {};
672
+ schema: {};
673
+ standaloneSchema: {};
674
+ response: {};
675
+ }>;
676
+ export declare const app: Elysia<"", {
677
+ decorator: {};
678
+ store: {
679
+ cron: Record<"global-stats-cache-updater", import("croner").Cron>;
680
+ };
681
+ derive: {};
682
+ resolve: {};
683
+ }, {
684
+ typebox: {};
685
+ error: {};
686
+ } & {
687
+ typebox: {};
688
+ error: {
689
+ readonly BadRequest: BadRequest;
690
+ readonly NotFound: NotFound;
691
+ readonly ValidationError: ValidationError;
692
+ readonly InternalServerError: InternalServerError;
693
+ };
694
+ } & {
695
+ typebox: {};
696
+ error: {};
697
+ } & {
698
+ typebox: {};
699
+ error: {};
700
+ } & {
701
+ typebox: {};
702
+ error: {};
703
+ }, {
704
+ schema: {};
705
+ standaloneSchema: {};
706
+ macro: {};
707
+ macroFn: {};
708
+ parser: {};
709
+ response: {};
710
+ } & {
711
+ schema: {};
712
+ standaloneSchema: {};
713
+ macro: {};
714
+ macroFn: {};
715
+ parser: {};
716
+ response: {
717
+ 200: Response;
718
+ };
719
+ } & {
720
+ schema: {};
721
+ standaloneSchema: {};
722
+ macro: {};
723
+ macroFn: {};
724
+ parser: {};
725
+ response: {};
726
+ } & {
727
+ schema: {};
728
+ standaloneSchema: {};
729
+ macro: {};
730
+ macroFn: {};
731
+ parser: {};
732
+ response: {};
733
+ } & {
734
+ schema: {};
735
+ standaloneSchema: {};
736
+ macro: {};
737
+ macroFn: {};
738
+ parser: {};
739
+ response: {};
740
+ }, {
741
+ "token-list": {
742
+ "devnet.json": {
743
+ get: {
744
+ body: unknown;
745
+ params: {};
746
+ query: unknown;
747
+ headers: unknown;
748
+ response: {
749
+ 200: Response;
750
+ };
751
+ };
752
+ };
753
+ };
754
+ } & {
755
+ pools: {
756
+ get: {
757
+ body: unknown;
758
+ params: {};
759
+ query: {
760
+ token1?: string | undefined;
761
+ poolType?: "standard" | "concentrated" | "all" | undefined;
762
+ page?: number | undefined;
763
+ pageSize?: number | undefined;
764
+ token2?: string | undefined;
765
+ sortType?: "asc" | "desc" | undefined;
766
+ };
767
+ headers: unknown;
768
+ response: {
769
+ 400: {
770
+ code: "BAD_REQUEST" | "INVALID_FILE_TYPE" | "PARSE" | "INVALID_COOKIE_SIGNATURE";
771
+ message: string;
772
+ error: "Bad request";
773
+ details?: Record<string, unknown> | undefined;
774
+ };
775
+ 404: {
776
+ code: "RESOURCE_NOT_FOUND";
777
+ message: string;
778
+ error: "Resource not found";
779
+ details?: Record<string, unknown> | undefined;
780
+ };
781
+ 422: {
782
+ code: "VALIDATION";
783
+ message: string;
784
+ error: "Validation error";
785
+ details?: Record<string, unknown> | undefined;
786
+ };
787
+ 500: {
788
+ code: "INTERNAL_SERVER_ERROR";
789
+ message: string;
790
+ error: "Internal server error";
791
+ details?: Record<string, unknown> | undefined;
792
+ };
793
+ 200: import("./api").PaginatedApiResponse<import("./api").ApiPoolListResponse>;
794
+ };
795
+ };
796
+ };
797
+ } & {
798
+ pools: {
799
+ post: {
800
+ body: {
801
+ ids: string[];
802
+ };
803
+ params: {};
804
+ query: unknown;
805
+ headers: unknown;
806
+ response: {
807
+ 400: {
808
+ code: "BAD_REQUEST" | "INVALID_FILE_TYPE" | "PARSE" | "INVALID_COOKIE_SIGNATURE";
809
+ message: string;
810
+ error: "Bad request";
811
+ details?: Record<string, unknown> | undefined;
812
+ };
813
+ 404: {
814
+ code: "RESOURCE_NOT_FOUND";
815
+ message: string;
816
+ error: "Resource not found";
817
+ details?: Record<string, unknown> | undefined;
818
+ };
819
+ 422: {
820
+ code: "VALIDATION";
821
+ message: string;
822
+ error: "Validation error";
823
+ details?: Record<string, unknown> | undefined;
824
+ };
825
+ 500: {
826
+ code: "INTERNAL_SERVER_ERROR";
827
+ message: string;
828
+ error: "Internal server error";
829
+ details?: Record<string, unknown> | undefined;
830
+ };
831
+ 200: import("./api").ApiPoolListFromIdsResponse;
832
+ };
833
+ };
834
+ };
835
+ } & {
836
+ pools: {
837
+ ":id": {
838
+ get: {
839
+ body: unknown;
840
+ params: {
841
+ id: string;
842
+ };
843
+ query: unknown;
844
+ headers: unknown;
845
+ response: {
846
+ 400: {
847
+ code: "BAD_REQUEST" | "INVALID_FILE_TYPE" | "PARSE" | "INVALID_COOKIE_SIGNATURE";
848
+ message: string;
849
+ error: "Bad request";
850
+ details?: Record<string, unknown> | undefined;
851
+ };
852
+ 404: {
853
+ code: "RESOURCE_NOT_FOUND";
854
+ message: string;
855
+ error: "Resource not found";
856
+ details?: Record<string, unknown> | undefined;
857
+ };
858
+ 422: {
859
+ code: "VALIDATION";
860
+ message: string;
861
+ error: "Validation error";
862
+ details?: Record<string, unknown> | undefined;
863
+ };
864
+ 500: {
865
+ code: "INTERNAL_SERVER_ERROR";
866
+ message: string;
867
+ error: "Internal server error";
868
+ details?: Record<string, unknown> | undefined;
869
+ };
870
+ 200: import("./api").ApiPoolWithStats;
871
+ };
872
+ };
873
+ };
874
+ };
875
+ } & {
876
+ pools: {
877
+ ":id": {
878
+ events: {
879
+ get: {
880
+ body: unknown;
881
+ params: {
882
+ id: string;
883
+ };
884
+ query: {
885
+ page?: number | undefined;
886
+ pageSize?: number | undefined;
887
+ };
888
+ headers: unknown;
889
+ response: {
890
+ 400: {
891
+ code: "BAD_REQUEST" | "INVALID_FILE_TYPE" | "PARSE" | "INVALID_COOKIE_SIGNATURE";
892
+ message: string;
893
+ error: "Bad request";
894
+ details?: Record<string, unknown> | undefined;
895
+ };
896
+ 404: {
897
+ code: "RESOURCE_NOT_FOUND";
898
+ message: string;
899
+ error: "Resource not found";
900
+ details?: Record<string, unknown> | undefined;
901
+ };
902
+ 422: {
903
+ code: "VALIDATION";
904
+ message: string;
905
+ error: "Validation error";
906
+ details?: Record<string, unknown> | undefined;
907
+ };
908
+ 500: {
909
+ code: "INTERNAL_SERVER_ERROR";
910
+ message: string;
911
+ error: "Internal server error";
912
+ details?: Record<string, unknown> | undefined;
913
+ };
914
+ 200: import("./api").PaginatedApiResponse<import("./api").ApiPoolEventsResponse>;
915
+ };
916
+ };
917
+ };
918
+ };
919
+ };
920
+ } & {
921
+ pools: {
922
+ ":id": {
923
+ line: {
924
+ position: {
925
+ get: {
926
+ body: unknown;
927
+ params: {
928
+ id: string;
929
+ };
930
+ query: unknown;
931
+ headers: unknown;
932
+ response: {
933
+ 400: {
934
+ code: "BAD_REQUEST" | "INVALID_FILE_TYPE" | "PARSE" | "INVALID_COOKIE_SIGNATURE";
935
+ message: string;
936
+ error: "Bad request";
937
+ details?: Record<string, unknown> | undefined;
938
+ };
939
+ 404: {
940
+ code: "RESOURCE_NOT_FOUND";
941
+ message: string;
942
+ error: "Resource not found";
943
+ details?: Record<string, unknown> | undefined;
944
+ };
945
+ 422: {
946
+ code: "VALIDATION";
947
+ message: string;
948
+ error: "Validation error";
949
+ details?: Record<string, unknown> | undefined;
950
+ };
951
+ 500: {
952
+ code: "INTERNAL_SERVER_ERROR";
953
+ message: string;
954
+ error: "Internal server error";
955
+ details?: Record<string, unknown> | undefined;
956
+ };
957
+ 200: import("./api").ClmmLiquidityLinePayload;
958
+ };
959
+ };
960
+ };
961
+ };
962
+ };
963
+ };
964
+ } & {
965
+ pools: {
966
+ ":id": {
967
+ line: {
968
+ liquidity: {
969
+ get: {
970
+ body: unknown;
971
+ params: {
972
+ id: string;
973
+ };
974
+ query: {
975
+ startTime?: number | undefined;
976
+ endTime?: number | undefined;
977
+ };
978
+ headers: unknown;
979
+ response: {
980
+ 400: {
981
+ code: "BAD_REQUEST" | "INVALID_FILE_TYPE" | "PARSE" | "INVALID_COOKIE_SIGNATURE";
982
+ message: string;
983
+ error: "Bad request";
984
+ details?: Record<string, unknown> | undefined;
985
+ };
986
+ 404: {
987
+ code: "RESOURCE_NOT_FOUND";
988
+ message: string;
989
+ error: "Resource not found";
990
+ details?: Record<string, unknown> | undefined;
991
+ };
992
+ 422: {
993
+ code: "VALIDATION";
994
+ message: string;
995
+ error: "Validation error";
996
+ details?: Record<string, unknown> | undefined;
997
+ };
998
+ 500: {
999
+ code: "INTERNAL_SERVER_ERROR";
1000
+ message: string;
1001
+ error: "Internal server error";
1002
+ details?: Record<string, unknown> | undefined;
1003
+ };
1004
+ 200: import("./api").LiquidityLineData;
1005
+ };
1006
+ };
1007
+ };
1008
+ };
1009
+ };
1010
+ };
1011
+ } & {
1012
+ addresses: {
1013
+ ":address": {
1014
+ "cpmm-positions": {
1015
+ get: {
1016
+ body: unknown;
1017
+ params: {
1018
+ address: string;
1019
+ };
1020
+ query: unknown;
1021
+ headers: unknown;
1022
+ response: {
1023
+ 400: {
1024
+ code: "BAD_REQUEST" | "INVALID_FILE_TYPE" | "PARSE" | "INVALID_COOKIE_SIGNATURE";
1025
+ message: string;
1026
+ error: "Bad request";
1027
+ details?: Record<string, unknown> | undefined;
1028
+ };
1029
+ 404: {
1030
+ code: "RESOURCE_NOT_FOUND";
1031
+ message: string;
1032
+ error: "Resource not found";
1033
+ details?: Record<string, unknown> | undefined;
1034
+ };
1035
+ 422: {
1036
+ code: "VALIDATION";
1037
+ message: string;
1038
+ error: "Validation error";
1039
+ details?: Record<string, unknown> | undefined;
1040
+ };
1041
+ 500: {
1042
+ code: "INTERNAL_SERVER_ERROR";
1043
+ message: string;
1044
+ error: "Internal server error";
1045
+ details?: Record<string, unknown> | undefined;
1046
+ };
1047
+ 200: import("./api").ApiCpmmPosition[];
1048
+ };
1049
+ };
1050
+ };
1051
+ };
1052
+ };
1053
+ } & {
1054
+ addresses: {
1055
+ ":address": {
1056
+ "clmm-positions": {
1057
+ get: {
1058
+ body: unknown;
1059
+ params: {
1060
+ address: string;
1061
+ };
1062
+ query: unknown;
1063
+ headers: unknown;
1064
+ response: {
1065
+ 400: {
1066
+ code: "BAD_REQUEST" | "INVALID_FILE_TYPE" | "PARSE" | "INVALID_COOKIE_SIGNATURE";
1067
+ message: string;
1068
+ error: "Bad request";
1069
+ details?: Record<string, unknown> | undefined;
1070
+ };
1071
+ 404: {
1072
+ code: "RESOURCE_NOT_FOUND";
1073
+ message: string;
1074
+ error: "Resource not found";
1075
+ details?: Record<string, unknown> | undefined;
1076
+ };
1077
+ 422: {
1078
+ code: "VALIDATION";
1079
+ message: string;
1080
+ error: "Validation error";
1081
+ details?: Record<string, unknown> | undefined;
1082
+ };
1083
+ 500: {
1084
+ code: "INTERNAL_SERVER_ERROR";
1085
+ message: string;
1086
+ error: "Internal server error";
1087
+ details?: Record<string, unknown> | undefined;
1088
+ };
1089
+ 200: import("./api").ApiClmmPosition[];
1090
+ };
1091
+ };
1092
+ };
1093
+ };
1094
+ };
1095
+ } & {
1096
+ tokens: {
1097
+ get: {
1098
+ body: unknown;
1099
+ params: {};
1100
+ query: unknown;
1101
+ headers: unknown;
1102
+ response: {
1103
+ 400: {
1104
+ code: "BAD_REQUEST" | "INVALID_FILE_TYPE" | "PARSE" | "INVALID_COOKIE_SIGNATURE";
1105
+ message: string;
1106
+ error: "Bad request";
1107
+ details?: Record<string, unknown> | undefined;
1108
+ };
1109
+ 404: {
1110
+ code: "RESOURCE_NOT_FOUND";
1111
+ message: string;
1112
+ error: "Resource not found";
1113
+ details?: Record<string, unknown> | undefined;
1114
+ };
1115
+ 422: {
1116
+ code: "VALIDATION";
1117
+ message: string;
1118
+ error: "Validation error";
1119
+ details?: Record<string, unknown> | undefined;
1120
+ };
1121
+ 500: {
1122
+ code: "INTERNAL_SERVER_ERROR";
1123
+ message: string;
1124
+ error: "Internal server error";
1125
+ details?: Record<string, unknown> | undefined;
1126
+ };
1127
+ 200: import("./routes/tokens").TokenListResponse;
1128
+ };
1129
+ };
1130
+ };
1131
+ } & {
1132
+ compute: {
1133
+ "swap-in": {
1134
+ get: {
1135
+ body: unknown;
1136
+ params: {};
1137
+ query: {
1138
+ slippageBps?: string | undefined;
1139
+ poolType: "standard" | "concentrated";
1140
+ inputMint: string;
1141
+ outputMint: string;
1142
+ amount: string;
1143
+ };
1144
+ headers: unknown;
1145
+ response: {
1146
+ 400: {
1147
+ code: "BAD_REQUEST" | "INVALID_FILE_TYPE" | "PARSE" | "INVALID_COOKIE_SIGNATURE";
1148
+ message: string;
1149
+ error: "Bad request";
1150
+ details?: Record<string, unknown> | undefined;
1151
+ };
1152
+ 404: {
1153
+ code: "RESOURCE_NOT_FOUND";
1154
+ message: string;
1155
+ error: "Resource not found";
1156
+ details?: Record<string, unknown> | undefined;
1157
+ };
1158
+ 422: {
1159
+ code: "VALIDATION";
1160
+ message: string;
1161
+ error: "Validation error";
1162
+ details?: Record<string, unknown> | undefined;
1163
+ };
1164
+ 500: {
1165
+ code: "INTERNAL_SERVER_ERROR";
1166
+ message: string;
1167
+ error: "Internal server error";
1168
+ details?: Record<string, unknown> | undefined;
1169
+ };
1170
+ 200: import("./api").SwapComputeResult;
1171
+ };
1172
+ };
1173
+ };
1174
+ };
1175
+ } & {
1176
+ compute: {
1177
+ "swap-out": {
1178
+ get: {
1179
+ body: unknown;
1180
+ params: {};
1181
+ query: {
1182
+ slippageBps?: string | undefined;
1183
+ poolType: "standard" | "concentrated";
1184
+ inputMint: string;
1185
+ outputMint: string;
1186
+ amount: string;
1187
+ };
1188
+ headers: unknown;
1189
+ response: {
1190
+ 400: {
1191
+ code: "BAD_REQUEST" | "INVALID_FILE_TYPE" | "PARSE" | "INVALID_COOKIE_SIGNATURE";
1192
+ message: string;
1193
+ error: "Bad request";
1194
+ details?: Record<string, unknown> | undefined;
1195
+ };
1196
+ 404: {
1197
+ code: "RESOURCE_NOT_FOUND";
1198
+ message: string;
1199
+ error: "Resource not found";
1200
+ details?: Record<string, unknown> | undefined;
1201
+ };
1202
+ 422: {
1203
+ code: "VALIDATION";
1204
+ message: string;
1205
+ error: "Validation error";
1206
+ details?: Record<string, unknown> | undefined;
1207
+ };
1208
+ 500: {
1209
+ code: "INTERNAL_SERVER_ERROR";
1210
+ message: string;
1211
+ error: "Internal server error";
1212
+ details?: Record<string, unknown> | undefined;
1213
+ };
1214
+ 200: import("./api").SwapComputeResult;
1215
+ };
1216
+ };
1217
+ };
1218
+ };
1219
+ } & {
1220
+ ohlcv: {
1221
+ get: {
1222
+ body: unknown;
1223
+ params: {};
1224
+ query: {
1225
+ type?: "1m" | "5m" | "15m" | "1h" | "4h" | "1d" | "1w" | undefined;
1226
+ token0?: string | undefined;
1227
+ token1?: string | undefined;
1228
+ poolId?: string | undefined;
1229
+ time_from?: number | undefined;
1230
+ time_to?: number | undefined;
1231
+ };
1232
+ headers: unknown;
1233
+ response: {
1234
+ 400: {
1235
+ code: "BAD_REQUEST" | "INVALID_FILE_TYPE" | "PARSE" | "INVALID_COOKIE_SIGNATURE";
1236
+ message: string;
1237
+ error: "Bad request";
1238
+ details?: Record<string, unknown> | undefined;
1239
+ };
1240
+ 404: {
1241
+ code: "RESOURCE_NOT_FOUND";
1242
+ message: string;
1243
+ error: "Resource not found";
1244
+ details?: Record<string, unknown> | undefined;
1245
+ };
1246
+ 422: {
1247
+ code: "VALIDATION";
1248
+ message: string;
1249
+ error: "Validation error";
1250
+ details?: Record<string, unknown> | undefined;
1251
+ };
1252
+ 500: {
1253
+ code: "INTERNAL_SERVER_ERROR";
1254
+ message: string;
1255
+ error: "Internal server error";
1256
+ details?: Record<string, unknown> | undefined;
1257
+ };
1258
+ 200: import("./api").OHLVCResult;
1259
+ };
1260
+ };
1261
+ };
1262
+ } & {
1263
+ stats: {
1264
+ global: {
1265
+ get: {
1266
+ body: unknown;
1267
+ params: {};
1268
+ query: unknown;
1269
+ headers: unknown;
1270
+ response: {
1271
+ 400: {
1272
+ code: "BAD_REQUEST" | "INVALID_FILE_TYPE" | "PARSE" | "INVALID_COOKIE_SIGNATURE";
1273
+ message: string;
1274
+ error: "Bad request";
1275
+ details?: Record<string, unknown> | undefined;
1276
+ };
1277
+ 404: {
1278
+ code: "RESOURCE_NOT_FOUND";
1279
+ message: string;
1280
+ error: "Resource not found";
1281
+ details?: Record<string, unknown> | undefined;
1282
+ };
1283
+ 422: {
1284
+ code: "VALIDATION";
1285
+ message: string;
1286
+ error: "Validation error";
1287
+ details?: Record<string, unknown> | undefined;
1288
+ };
1289
+ 500: {
1290
+ code: "INTERNAL_SERVER_ERROR";
1291
+ message: string;
1292
+ error: "Internal server error";
1293
+ details?: Record<string, unknown> | undefined;
1294
+ };
1295
+ 200: import("./api").ApiGlobalStats;
1296
+ };
1297
+ };
1298
+ };
1299
+ };
1300
+ } & {
1301
+ ws: {
1302
+ "pool-state": {
1303
+ subscribe: {
1304
+ body: unknown;
1305
+ params: {};
1306
+ query: unknown;
1307
+ headers: unknown;
1308
+ response: {};
1309
+ };
1310
+ };
1311
+ };
1312
+ }, {
1313
+ derive: {};
1314
+ resolve: {};
1315
+ schema: {};
1316
+ standaloneSchema: {};
1317
+ response: {};
1318
+ }, {
1319
+ derive: {};
1320
+ resolve: {};
1321
+ schema: {};
1322
+ standaloneSchema: {};
1323
+ response: {};
1324
+ } & {
1325
+ derive: {};
1326
+ resolve: {};
1327
+ schema: {};
1328
+ standaloneSchema: {};
1329
+ response: {};
1330
+ } & {
1331
+ derive: {};
1332
+ resolve: {};
1333
+ schema: {};
1334
+ standaloneSchema: {};
1335
+ response: {};
1336
+ } & {
1337
+ derive: {};
1338
+ resolve: {};
1339
+ schema: {};
1340
+ standaloneSchema: {};
1341
+ response: {};
1342
+ } & {
1343
+ derive: {};
1344
+ resolve: {};
1345
+ schema: {};
1346
+ standaloneSchema: {};
1347
+ response: {};
1348
+ }>;
1349
+ export type App = typeof app;
1350
+ //# sourceMappingURL=app.d.ts.map