@teardown/ingest-api 0.1.24 → 0.1.25
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/package.json +9 -4
- package/src/client/client.ts +4 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@teardown/ingest-api",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.25",
|
|
4
4
|
"private": false,
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
@@ -30,17 +30,22 @@
|
|
|
30
30
|
}
|
|
31
31
|
},
|
|
32
32
|
"scripts": {
|
|
33
|
-
"
|
|
33
|
+
"dev": "bun run typecheck --watch",
|
|
34
|
+
"typecheck": "tsc --noEmit --project ./tsconfig.lib.json",
|
|
35
|
+
"lint": "bun x biome lint .",
|
|
36
|
+
"fmt": "bun x biome format --write .",
|
|
37
|
+
"check": "bun x biome check ."
|
|
34
38
|
},
|
|
35
39
|
"dependencies": {
|
|
36
40
|
"@elysiajs/eden": "1.4.5",
|
|
37
|
-
"@teardown/schemas": "0.1.
|
|
38
|
-
"@teardown/types": "0.1.
|
|
41
|
+
"@teardown/schemas": "0.1.25",
|
|
42
|
+
"@teardown/types": "0.1.25"
|
|
39
43
|
},
|
|
40
44
|
"peerDependencies": {
|
|
41
45
|
"typescript": "^5.9.3"
|
|
42
46
|
},
|
|
43
47
|
"devDependencies": {
|
|
48
|
+
"@biomejs/biome": "2.3.7",
|
|
44
49
|
"@types/bun": "1.3.3",
|
|
45
50
|
"@teardown/ingest": "0.0.1",
|
|
46
51
|
"@teardown/tsconfig": "1.0.0",
|
package/src/client/client.ts
CHANGED
|
@@ -1,5 +1,8 @@
|
|
|
1
1
|
import { edenFetch } from "@elysiajs/eden";
|
|
2
|
-
import type { IngestApp } from "
|
|
2
|
+
import type { IngestApp } from "../../../../apps/ingest/src/client/client";
|
|
3
|
+
|
|
4
|
+
export type { IngestApp };
|
|
5
|
+
export { edenFetch };
|
|
3
6
|
|
|
4
7
|
export type ClientConfig = NonNullable<Parameters<typeof edenFetch<typeof IngestApp>>[1]>;
|
|
5
8
|
export const client = edenFetch<typeof IngestApp>;
|