@h0ngcha0/zeta-backend 0.0.1-rc.2 → 0.0.1-rc.3
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/types/api/index.d.ts +9 -0
- package/dist/types/api/index.d.ts.map +1 -0
- package/dist/types/app.d.ts +28 -28
- package/dist/types/index.d.ts +1 -3
- package/dist/types/index.d.ts.map +1 -1
- package/dist/types/routes/compute.d.ts +2 -3
- package/dist/types/routes/compute.d.ts.map +1 -1
- package/dist/types/routes/response.d.ts +4 -2
- package/dist/types/routes/response.d.ts.map +1 -1
- package/dist/types/services/poolService.d.ts +11 -9
- package/dist/types/services/poolService.d.ts.map +1 -1
- package/package.json +3 -3
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
export type { App } from '../app';
|
|
2
|
+
export type { PoolType, PoolSortType, PoolWithStats, StandardPoolWithStats, ConcentratedPoolWithStats, PoolStatsPeriod, ClmmLiquidityRow, } from '../services/poolService';
|
|
3
|
+
export type { TokenPrice } from '../services/priceService';
|
|
4
|
+
export type { LiquidityLineData, OHLVCResult } from '../services/poolStatsService';
|
|
5
|
+
export type { SwapComputeResult } from '../services/computeService';
|
|
6
|
+
export type { ApiResponse, SuccessApiResponse, ErrorApiResponse, PaginatedApiResponse, } from '../routes/response';
|
|
7
|
+
export type { ClmmLiquidityRowPayload, ClmmLiquidityLinePayload, PoolListResponse, PoolListFromIdsResponse, Events as PoolEventsResponse, TokenListResponse, TokenPricesResponse, } from '../routes/pools';
|
|
8
|
+
export type { ClmmPosition } from '../api/types';
|
|
9
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/api/index.ts"],"names":[],"mappings":"AAAA,YAAY,EAAE,GAAG,EAAE,MAAM,OAAO,CAAC;AAEjC,YAAY,EACV,QAAQ,EACR,YAAY,EACZ,aAAa,EACb,qBAAqB,EACrB,yBAAyB,EACzB,eAAe,EACf,gBAAgB,GACjB,MAAM,wBAAwB,CAAC;AAEhC,YAAY,EAAE,UAAU,EAAE,MAAM,yBAAyB,CAAC;AAC1D,YAAY,EAAE,iBAAiB,EAAE,WAAW,EAAE,MAAM,6BAA6B,CAAC;AAClF,YAAY,EAAE,iBAAiB,EAAE,MAAM,2BAA2B,CAAC;AAEnE,YAAY,EACV,WAAW,EACX,kBAAkB,EAClB,gBAAgB,EAChB,oBAAoB,GACrB,MAAM,mBAAmB,CAAC;AAE3B,YAAY,EACV,uBAAuB,EACvB,wBAAwB,EACxB,gBAAgB,EAChB,uBAAuB,EACvB,MAAM,IAAI,kBAAkB,EAC5B,iBAAiB,EACjB,mBAAmB,GACpB,MAAM,gBAAgB,CAAC;AAExB,YAAY,EAAE,YAAY,EAAE,MAAM,aAAa,CAAC"}
|
package/dist/types/app.d.ts
CHANGED
|
@@ -109,7 +109,7 @@ export declare function createApp(): Elysia<"", {
|
|
|
109
109
|
query: unknown;
|
|
110
110
|
headers: unknown;
|
|
111
111
|
response: {
|
|
112
|
-
200: import("./
|
|
112
|
+
200: import("./api").ApiResponse<import("./routes/pools").TokenListResponse>;
|
|
113
113
|
};
|
|
114
114
|
};
|
|
115
115
|
};
|
|
@@ -126,7 +126,7 @@ export declare function createApp(): Elysia<"", {
|
|
|
126
126
|
};
|
|
127
127
|
headers: unknown;
|
|
128
128
|
response: {
|
|
129
|
-
200: import("./
|
|
129
|
+
200: import("./api").ApiResponse<import("./routes/pools").ClmmLiquidityLinePayload>;
|
|
130
130
|
422: {
|
|
131
131
|
type: "validation";
|
|
132
132
|
on: string;
|
|
@@ -153,7 +153,7 @@ export declare function createApp(): Elysia<"", {
|
|
|
153
153
|
};
|
|
154
154
|
headers: unknown;
|
|
155
155
|
response: {
|
|
156
|
-
200: import("./
|
|
156
|
+
200: import("./api").ApiResponse<import("./routes/pools").TokenPricesResponse>;
|
|
157
157
|
422: {
|
|
158
158
|
type: "validation";
|
|
159
159
|
on: string;
|
|
@@ -183,7 +183,7 @@ export declare function createApp(): Elysia<"", {
|
|
|
183
183
|
};
|
|
184
184
|
headers: unknown;
|
|
185
185
|
response: {
|
|
186
|
-
200: import("./
|
|
186
|
+
200: import("./api").ApiResponse<import("./routes/pools").PoolListResponse>;
|
|
187
187
|
422: {
|
|
188
188
|
type: "validation";
|
|
189
189
|
on: string;
|
|
@@ -210,7 +210,7 @@ export declare function createApp(): Elysia<"", {
|
|
|
210
210
|
};
|
|
211
211
|
headers: unknown;
|
|
212
212
|
response: {
|
|
213
|
-
200: import("./
|
|
213
|
+
200: import("./api").ApiResponse<import("./routes/pools").PoolListFromIdsResponse>;
|
|
214
214
|
422: {
|
|
215
215
|
type: "validation";
|
|
216
216
|
on: string;
|
|
@@ -237,7 +237,7 @@ export declare function createApp(): Elysia<"", {
|
|
|
237
237
|
};
|
|
238
238
|
headers: unknown;
|
|
239
239
|
response: {
|
|
240
|
-
200: import("./
|
|
240
|
+
200: import("./api").ApiResponse<import("./routes/pools").Events>;
|
|
241
241
|
422: {
|
|
242
242
|
type: "validation";
|
|
243
243
|
on: string;
|
|
@@ -264,7 +264,7 @@ export declare function createApp(): Elysia<"", {
|
|
|
264
264
|
};
|
|
265
265
|
headers: unknown;
|
|
266
266
|
response: {
|
|
267
|
-
200: import("./
|
|
267
|
+
200: import("./api").ApiResponse<import("./api").ClmmPosition[]>;
|
|
268
268
|
422: {
|
|
269
269
|
type: "validation";
|
|
270
270
|
on: string;
|
|
@@ -294,7 +294,7 @@ export declare function createApp(): Elysia<"", {
|
|
|
294
294
|
};
|
|
295
295
|
headers: unknown;
|
|
296
296
|
response: {
|
|
297
|
-
200: import("./
|
|
297
|
+
200: import("./api").ApiResponse<import("./routes/pools").PoolListResponse>;
|
|
298
298
|
422: {
|
|
299
299
|
type: "validation";
|
|
300
300
|
on: string;
|
|
@@ -323,7 +323,7 @@ export declare function createApp(): Elysia<"", {
|
|
|
323
323
|
};
|
|
324
324
|
headers: unknown;
|
|
325
325
|
response: {
|
|
326
|
-
200: import("./
|
|
326
|
+
200: import("./api").ApiResponse<import("./api").LiquidityLineData>;
|
|
327
327
|
422: {
|
|
328
328
|
type: "validation";
|
|
329
329
|
on: string;
|
|
@@ -346,14 +346,14 @@ export declare function createApp(): Elysia<"", {
|
|
|
346
346
|
params: {};
|
|
347
347
|
query: {
|
|
348
348
|
slippageBps?: string | undefined;
|
|
349
|
-
poolType:
|
|
349
|
+
poolType: "standard" | "concentrated";
|
|
350
350
|
inputMint: string;
|
|
351
351
|
outputMint: string;
|
|
352
352
|
amount: string;
|
|
353
353
|
};
|
|
354
354
|
headers: unknown;
|
|
355
355
|
response: {
|
|
356
|
-
200: import("./
|
|
356
|
+
200: import("./api").ApiResponse<import("./api").SwapComputeResult>;
|
|
357
357
|
422: {
|
|
358
358
|
type: "validation";
|
|
359
359
|
on: string;
|
|
@@ -375,14 +375,14 @@ export declare function createApp(): Elysia<"", {
|
|
|
375
375
|
params: {};
|
|
376
376
|
query: {
|
|
377
377
|
slippageBps?: string | undefined;
|
|
378
|
-
poolType:
|
|
378
|
+
poolType: "standard" | "concentrated";
|
|
379
379
|
inputMint: string;
|
|
380
380
|
outputMint: string;
|
|
381
381
|
amount: string;
|
|
382
382
|
};
|
|
383
383
|
headers: unknown;
|
|
384
384
|
response: {
|
|
385
|
-
200: import("./
|
|
385
|
+
200: import("./api").ApiResponse<import("./api").SwapComputeResult>;
|
|
386
386
|
422: {
|
|
387
387
|
type: "validation";
|
|
388
388
|
on: string;
|
|
@@ -413,7 +413,7 @@ export declare function createApp(): Elysia<"", {
|
|
|
413
413
|
};
|
|
414
414
|
headers: unknown;
|
|
415
415
|
response: {
|
|
416
|
-
200: import("./
|
|
416
|
+
200: import("./api").ApiResponse<import("./api").OHLVCResult>;
|
|
417
417
|
422: {
|
|
418
418
|
type: "validation";
|
|
419
419
|
on: string;
|
|
@@ -580,7 +580,7 @@ export declare const app: Elysia<"", {
|
|
|
580
580
|
query: unknown;
|
|
581
581
|
headers: unknown;
|
|
582
582
|
response: {
|
|
583
|
-
200: import("./
|
|
583
|
+
200: import("./api").ApiResponse<import("./routes/pools").TokenListResponse>;
|
|
584
584
|
};
|
|
585
585
|
};
|
|
586
586
|
};
|
|
@@ -597,7 +597,7 @@ export declare const app: Elysia<"", {
|
|
|
597
597
|
};
|
|
598
598
|
headers: unknown;
|
|
599
599
|
response: {
|
|
600
|
-
200: import("./
|
|
600
|
+
200: import("./api").ApiResponse<import("./routes/pools").ClmmLiquidityLinePayload>;
|
|
601
601
|
422: {
|
|
602
602
|
type: "validation";
|
|
603
603
|
on: string;
|
|
@@ -624,7 +624,7 @@ export declare const app: Elysia<"", {
|
|
|
624
624
|
};
|
|
625
625
|
headers: unknown;
|
|
626
626
|
response: {
|
|
627
|
-
200: import("./
|
|
627
|
+
200: import("./api").ApiResponse<import("./routes/pools").TokenPricesResponse>;
|
|
628
628
|
422: {
|
|
629
629
|
type: "validation";
|
|
630
630
|
on: string;
|
|
@@ -654,7 +654,7 @@ export declare const app: Elysia<"", {
|
|
|
654
654
|
};
|
|
655
655
|
headers: unknown;
|
|
656
656
|
response: {
|
|
657
|
-
200: import("./
|
|
657
|
+
200: import("./api").ApiResponse<import("./routes/pools").PoolListResponse>;
|
|
658
658
|
422: {
|
|
659
659
|
type: "validation";
|
|
660
660
|
on: string;
|
|
@@ -681,7 +681,7 @@ export declare const app: Elysia<"", {
|
|
|
681
681
|
};
|
|
682
682
|
headers: unknown;
|
|
683
683
|
response: {
|
|
684
|
-
200: import("./
|
|
684
|
+
200: import("./api").ApiResponse<import("./routes/pools").PoolListFromIdsResponse>;
|
|
685
685
|
422: {
|
|
686
686
|
type: "validation";
|
|
687
687
|
on: string;
|
|
@@ -708,7 +708,7 @@ export declare const app: Elysia<"", {
|
|
|
708
708
|
};
|
|
709
709
|
headers: unknown;
|
|
710
710
|
response: {
|
|
711
|
-
200: import("./
|
|
711
|
+
200: import("./api").ApiResponse<import("./routes/pools").Events>;
|
|
712
712
|
422: {
|
|
713
713
|
type: "validation";
|
|
714
714
|
on: string;
|
|
@@ -735,7 +735,7 @@ export declare const app: Elysia<"", {
|
|
|
735
735
|
};
|
|
736
736
|
headers: unknown;
|
|
737
737
|
response: {
|
|
738
|
-
200: import("./
|
|
738
|
+
200: import("./api").ApiResponse<import("./api").ClmmPosition[]>;
|
|
739
739
|
422: {
|
|
740
740
|
type: "validation";
|
|
741
741
|
on: string;
|
|
@@ -765,7 +765,7 @@ export declare const app: Elysia<"", {
|
|
|
765
765
|
};
|
|
766
766
|
headers: unknown;
|
|
767
767
|
response: {
|
|
768
|
-
200: import("./
|
|
768
|
+
200: import("./api").ApiResponse<import("./routes/pools").PoolListResponse>;
|
|
769
769
|
422: {
|
|
770
770
|
type: "validation";
|
|
771
771
|
on: string;
|
|
@@ -794,7 +794,7 @@ export declare const app: Elysia<"", {
|
|
|
794
794
|
};
|
|
795
795
|
headers: unknown;
|
|
796
796
|
response: {
|
|
797
|
-
200: import("./
|
|
797
|
+
200: import("./api").ApiResponse<import("./api").LiquidityLineData>;
|
|
798
798
|
422: {
|
|
799
799
|
type: "validation";
|
|
800
800
|
on: string;
|
|
@@ -817,14 +817,14 @@ export declare const app: Elysia<"", {
|
|
|
817
817
|
params: {};
|
|
818
818
|
query: {
|
|
819
819
|
slippageBps?: string | undefined;
|
|
820
|
-
poolType:
|
|
820
|
+
poolType: "standard" | "concentrated";
|
|
821
821
|
inputMint: string;
|
|
822
822
|
outputMint: string;
|
|
823
823
|
amount: string;
|
|
824
824
|
};
|
|
825
825
|
headers: unknown;
|
|
826
826
|
response: {
|
|
827
|
-
200: import("./
|
|
827
|
+
200: import("./api").ApiResponse<import("./api").SwapComputeResult>;
|
|
828
828
|
422: {
|
|
829
829
|
type: "validation";
|
|
830
830
|
on: string;
|
|
@@ -846,14 +846,14 @@ export declare const app: Elysia<"", {
|
|
|
846
846
|
params: {};
|
|
847
847
|
query: {
|
|
848
848
|
slippageBps?: string | undefined;
|
|
849
|
-
poolType:
|
|
849
|
+
poolType: "standard" | "concentrated";
|
|
850
850
|
inputMint: string;
|
|
851
851
|
outputMint: string;
|
|
852
852
|
amount: string;
|
|
853
853
|
};
|
|
854
854
|
headers: unknown;
|
|
855
855
|
response: {
|
|
856
|
-
200: import("./
|
|
856
|
+
200: import("./api").ApiResponse<import("./api").SwapComputeResult>;
|
|
857
857
|
422: {
|
|
858
858
|
type: "validation";
|
|
859
859
|
on: string;
|
|
@@ -884,7 +884,7 @@ export declare const app: Elysia<"", {
|
|
|
884
884
|
};
|
|
885
885
|
headers: unknown;
|
|
886
886
|
response: {
|
|
887
|
-
200: import("./
|
|
887
|
+
200: import("./api").ApiResponse<import("./api").OHLVCResult>;
|
|
888
888
|
422: {
|
|
889
889
|
type: "validation";
|
|
890
890
|
on: string;
|
package/dist/types/index.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AACA,cAAc,OAAO,CAAC"}
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import { Elysia } from 'elysia';
|
|
2
2
|
import type { SwapComputeResult } from '../services/computeService';
|
|
3
3
|
import type { ApiResponse } from './response';
|
|
4
|
-
import { PoolType } from '../services/poolService';
|
|
5
4
|
export interface SwapComputeError {
|
|
6
5
|
id: string;
|
|
7
6
|
success: false;
|
|
@@ -38,7 +37,7 @@ export declare const computeRouter: Elysia<"/compute", {
|
|
|
38
37
|
params: {};
|
|
39
38
|
query: {
|
|
40
39
|
slippageBps?: string | undefined;
|
|
41
|
-
poolType:
|
|
40
|
+
poolType: "standard" | "concentrated";
|
|
42
41
|
inputMint: string;
|
|
43
42
|
outputMint: string;
|
|
44
43
|
amount: string;
|
|
@@ -67,7 +66,7 @@ export declare const computeRouter: Elysia<"/compute", {
|
|
|
67
66
|
params: {};
|
|
68
67
|
query: {
|
|
69
68
|
slippageBps?: string | undefined;
|
|
70
|
-
poolType:
|
|
69
|
+
poolType: "standard" | "concentrated";
|
|
71
70
|
inputMint: string;
|
|
72
71
|
outputMint: string;
|
|
73
72
|
amount: string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"compute.d.ts","sourceRoot":"","sources":["../../../src/routes/compute.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,MAAM,EAAK,MAAM,QAAQ,CAAC;AACnC,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,0BAA0B,CAAC;AAElE,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,YAAY,CAAC;
|
|
1
|
+
{"version":3,"file":"compute.d.ts","sourceRoot":"","sources":["../../../src/routes/compute.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,MAAM,EAAK,MAAM,QAAQ,CAAC;AACnC,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,0BAA0B,CAAC;AAElE,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,YAAY,CAAC;AAI9C,MAAM,WAAW,gBAAgB;IAC/B,EAAE,EAAE,MAAM,CAAC;IACX,OAAO,EAAE,KAAK,CAAC;IACf,GAAG,EAAE,MAAM,CAAC;IACZ,IAAI,EAAE,SAAS,CAAC;CACjB;AAED,MAAM,WAAW,kBAAkB;IACjC,EAAE,EAAE,MAAM,CAAC;IACX,OAAO,EAAE,IAAI,CAAC;IACd,GAAG,CAAC,EAAE,SAAS,CAAC;IAChB,IAAI,EAAE,iBAAiB,CAAC;CACzB;AAED,MAAM,MAAM,mBAAmB,GAAG,kBAAkB,GAAG,gBAAgB,CAAC;AAIxE,eAAO,MAAM,aAAa;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAqFvB,CAAC"}
|
|
@@ -1,14 +1,16 @@
|
|
|
1
|
-
export interface SuccessApiResponse<T>
|
|
1
|
+
export interface SuccessApiResponse<T> {
|
|
2
2
|
id: string;
|
|
3
3
|
success: true;
|
|
4
4
|
data: T;
|
|
5
5
|
}
|
|
6
|
-
export interface ErrorApiResponse
|
|
6
|
+
export interface ErrorApiResponse {
|
|
7
7
|
id: string;
|
|
8
8
|
success: false;
|
|
9
9
|
msg: string;
|
|
10
10
|
}
|
|
11
11
|
export interface PaginatedApiResponse<T> extends SuccessApiResponse<T> {
|
|
12
|
+
id: string;
|
|
13
|
+
success: true;
|
|
12
14
|
data: T & {
|
|
13
15
|
meta: {
|
|
14
16
|
page: number;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"response.d.ts","sourceRoot":"","sources":["../../../src/routes/response.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"response.d.ts","sourceRoot":"","sources":["../../../src/routes/response.ts"],"names":[],"mappings":"AAEA,MAAM,WAAW,kBAAkB,CAAC,CAAC;IACnC,EAAE,EAAE,MAAM,CAAC;IACX,OAAO,EAAE,IAAI,CAAC;IACd,IAAI,EAAE,CAAC,CAAC;CACT;AAED,MAAM,WAAW,gBAAgB;IAC/B,EAAE,EAAE,MAAM,CAAC;IACX,OAAO,EAAE,KAAK,CAAC;IACf,GAAG,EAAE,MAAM,CAAC;CACb;AAED,MAAM,WAAW,oBAAoB,CAAC,CAAC,CAAE,SAAQ,kBAAkB,CAAC,CAAC,CAAC;IACpE,EAAE,EAAE,MAAM,CAAC;IACX,OAAO,EAAE,IAAI,CAAC;IACd,IAAI,EAAE,CAAC,GAAG;QACR,IAAI,EAAE;YACJ,IAAI,EAAE,MAAM,CAAC;YACb,QAAQ,EAAE,MAAM,CAAC;YACjB,UAAU,EAAE,MAAM,CAAC;SACpB,CAAC;KACH,CAAC;CACH;AAED,MAAM,MAAM,WAAW,CAAC,CAAC,IAAI,kBAAkB,CAAC,CAAC,CAAC,GAAG,gBAAgB,CAAC;AAEtE,wBAAgB,sBAAsB,CAAC,CAAC,EACtC,IAAI,EAAE,CAAC,EACP,IAAI,EAAE,MAAM,EACZ,QAAQ,EAAE,MAAM,EAChB,UAAU,EAAE,MAAM,GACjB,oBAAoB,CAAC,CAAC,CAAC,CASzB;AAED,wBAAgB,aAAa,CAAC,CAAC,EAAE,IAAI,EAAE,CAAC,GAAG,kBAAkB,CAAC,CAAC,CAAC,CAM/D;AAED,wBAAgB,WAAW,CAAC,KAAK,EAAE,OAAO,GAAG,gBAAgB,CAM5D"}
|
|
@@ -43,15 +43,17 @@ export interface ConcentratedPoolWithStats {
|
|
|
43
43
|
month: PoolStatsPeriod;
|
|
44
44
|
}
|
|
45
45
|
export type PoolWithStats = StandardPoolWithStats | ConcentratedPoolWithStats;
|
|
46
|
-
export declare
|
|
47
|
-
Standard
|
|
48
|
-
Concentrated
|
|
49
|
-
All
|
|
50
|
-
}
|
|
51
|
-
export
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
46
|
+
export declare const PoolType: {
|
|
47
|
+
readonly Standard: "standard";
|
|
48
|
+
readonly Concentrated: "concentrated";
|
|
49
|
+
readonly All: "all";
|
|
50
|
+
};
|
|
51
|
+
export type PoolType = (typeof PoolType)[keyof typeof PoolType];
|
|
52
|
+
export declare const PoolSortType: {
|
|
53
|
+
readonly Desc: "desc";
|
|
54
|
+
readonly Asc: "asc";
|
|
55
|
+
};
|
|
56
|
+
export type PoolSortType = (typeof PoolSortType)[keyof typeof PoolSortType];
|
|
55
57
|
export type PoolRecord = PoolRow;
|
|
56
58
|
export type PoolEventCounterRecord = PoolEventCounterRow;
|
|
57
59
|
export type PoolFactoryEventCounterRecord = PoolFactoryEventCounterRow;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"poolService.d.ts","sourceRoot":"","sources":["../../../src/services/poolService.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,IAAI,EAAiB,MAAM,0BAA0B,CAAC;AAEpE,OAAY,EAAqB,KAAK,SAAS,EAAE,MAAM,kBAAkB,CAAC;AAE1E,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,sBAAsB,CAAC;AACtD,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,gBAAgB,CAAC;AACnD,OAAO,KAAK,EAAE,gBAAgB,EAAE,oBAAoB,EAAE,MAAM,oBAAoB,CAAC;AAwBjF,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,0BAA0B,CAAC;AAE9D,OAAO,KAAK,EACV,SAAS,EACT,OAAO,EACP,mBAAmB,EACnB,0BAA0B,EAC3B,MAAM,iBAAiB,CAAC;AACzB,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,YAAY,CAAC;AAG/C,OAAO,OAAO,MAAM,YAAY,CAAC;AAIjC,MAAM,MAAM,eAAe,GAAG,oBAAoB,CAAC;AAEnD,MAAM,WAAW,qBAAqB;IACpC,IAAI,EAAE,UAAU,CAAC;IACjB,MAAM,EAAE,MAAM,CAAC;IACf,QAAQ,EAAE,MAAM,CAAC;IACjB,QAAQ,EAAE,MAAM,CAAC;IACjB,WAAW,EAAE,MAAM,CAAC;IACpB,UAAU,EAAE,SAAS,CAAC;IACtB,UAAU,EAAE,SAAS,CAAC;IACtB,OAAO,EAAE,MAAM,CAAC;IAChB,GAAG,EAAE,MAAM,CAAC;IACZ,QAAQ,EAAE,MAAM,CAAC;IACjB,GAAG,EAAE,eAAe,CAAC;IACrB,IAAI,EAAE,eAAe,CAAC;IACtB,KAAK,EAAE,eAAe,CAAC;CACxB;AAED,MAAM,WAAW,yBAAyB;IACxC,IAAI,EAAE,cAAc,CAAC;IACrB,MAAM,EAAE,MAAM,CAAC;IACf,UAAU,EAAE,SAAS,CAAC;IACtB,UAAU,EAAE,SAAS,CAAC;IACtB,SAAS,EAAE,MAAM,CAAC;IAClB,UAAU,EAAE,MAAM,CAAC;IACnB,WAAW,EAAE,MAAM,CAAC;IACpB,YAAY,EAAE,MAAM,CAAC;IACrB,IAAI,EAAE,MAAM,CAAC;IACb,WAAW,EAAE,MAAM,CAAC;IACpB,WAAW,EAAE,MAAM,CAAC;IACpB,OAAO,EAAE,MAAM,CAAC;IAChB,GAAG,EAAE,MAAM,CAAC;IACZ,QAAQ,EAAE,MAAM,CAAC;IACjB,GAAG,EAAE,eAAe,CAAC;IACrB,IAAI,EAAE,eAAe,CAAC;IACtB,KAAK,EAAE,eAAe,CAAC;CACxB;AAED,MAAM,MAAM,aAAa,GAAG,qBAAqB,GAAG,yBAAyB,CAAC;AAE9E,
|
|
1
|
+
{"version":3,"file":"poolService.d.ts","sourceRoot":"","sources":["../../../src/services/poolService.ts"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@h0ngcha0/zeta-backend",
|
|
3
|
-
"version": "0.0.1-rc.
|
|
3
|
+
"version": "0.0.1-rc.3",
|
|
4
4
|
"scripts": {
|
|
5
5
|
"dev": "bun run --watch src/index.ts",
|
|
6
6
|
"build": "bun build src/index.ts --outdir dist --target=node",
|
|
@@ -19,8 +19,8 @@
|
|
|
19
19
|
".": {
|
|
20
20
|
"types": "./dist/types/index.d.ts"
|
|
21
21
|
},
|
|
22
|
-
"./
|
|
23
|
-
"types": "./dist/types/
|
|
22
|
+
"./api": {
|
|
23
|
+
"types": "./dist/types/api/index.d.ts"
|
|
24
24
|
}
|
|
25
25
|
},
|
|
26
26
|
"dependencies": {
|