@vobase/core 0.1.0 → 0.1.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.
- package/README.md +23 -0
- package/dist/index.js +3 -3
- package/package.json +8 -1
- package/dist/__tests__/e2e.test.d.ts +0 -2
- package/dist/__tests__/e2e.test.d.ts.map +0 -1
- package/dist/__tests__/rpc-types.test.d.ts +0 -43
- package/dist/__tests__/rpc-types.test.d.ts.map +0 -1
- package/dist/app.test.d.ts +0 -2
- package/dist/app.test.d.ts.map +0 -1
- package/dist/audit.test.d.ts +0 -2
- package/dist/audit.test.d.ts.map +0 -1
- package/dist/auth.test.d.ts +0 -2
- package/dist/auth.test.d.ts.map +0 -1
- package/dist/ctx.test.d.ts +0 -2
- package/dist/ctx.test.d.ts.map +0 -1
- package/dist/db/client.test.d.ts +0 -2
- package/dist/db/client.test.d.ts.map +0 -1
- package/dist/db/ensure-core-tables.test.d.ts +0 -2
- package/dist/db/ensure-core-tables.test.d.ts.map +0 -1
- package/dist/db/helpers.test.d.ts +0 -2
- package/dist/db/helpers.test.d.ts.map +0 -1
- package/dist/db/system-schema.test.d.ts +0 -2
- package/dist/db/system-schema.test.d.ts.map +0 -1
- package/dist/errors.test.d.ts +0 -2
- package/dist/errors.test.d.ts.map +0 -1
- package/dist/job.test.d.ts +0 -2
- package/dist/job.test.d.ts.map +0 -1
- package/dist/logger.test.d.ts +0 -2
- package/dist/logger.test.d.ts.map +0 -1
- package/dist/mcp.test.d.ts +0 -2
- package/dist/mcp.test.d.ts.map +0 -1
- package/dist/middleware/audit.test.d.ts +0 -2
- package/dist/middleware/audit.test.d.ts.map +0 -1
- package/dist/module.test.d.ts +0 -2
- package/dist/module.test.d.ts.map +0 -1
- package/dist/queue.test.d.ts +0 -2
- package/dist/queue.test.d.ts.map +0 -1
- package/dist/sequence.test.d.ts +0 -2
- package/dist/sequence.test.d.ts.map +0 -1
- package/dist/storage.test.d.ts +0 -2
- package/dist/storage.test.d.ts.map +0 -1
- package/dist/system/system.test.d.ts +0 -2
- package/dist/system/system.test.d.ts.map +0 -1
package/package.json
CHANGED
|
@@ -1,6 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vobase/core",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.2",
|
|
4
|
+
"license": "MIT",
|
|
5
|
+
"description": "The app framework built for AI coding agents - core runtime",
|
|
6
|
+
"repository": {
|
|
7
|
+
"type": "git",
|
|
8
|
+
"url": "https://github.com/vobase/vobase",
|
|
9
|
+
"directory": "packages/core"
|
|
10
|
+
},
|
|
4
11
|
"type": "module",
|
|
5
12
|
"main": "./dist/index.js",
|
|
6
13
|
"types": "./dist/index.d.ts",
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"e2e.test.d.ts","sourceRoot":"","sources":["../../src/__tests__/e2e.test.ts"],"names":[],"mappings":""}
|
|
@@ -1,43 +0,0 @@
|
|
|
1
|
-
declare const chainedApp: import("hono/hono-base").HonoBase<import("hono/types").BlankEnv, import("hono/types").BlankSchema | import("hono/types").MergeSchemaPath<{
|
|
2
|
-
"/list": {
|
|
3
|
-
$get: {
|
|
4
|
-
input: {};
|
|
5
|
-
output: {
|
|
6
|
-
invoices: {
|
|
7
|
-
id: string;
|
|
8
|
-
total: number;
|
|
9
|
-
}[];
|
|
10
|
-
};
|
|
11
|
-
outputFormat: "json";
|
|
12
|
-
status: import("hono/utils/http-status").ContentfulStatusCode;
|
|
13
|
-
};
|
|
14
|
-
};
|
|
15
|
-
} & {
|
|
16
|
-
"/create": {
|
|
17
|
-
$post: {
|
|
18
|
-
input: {};
|
|
19
|
-
output: {
|
|
20
|
-
id: string;
|
|
21
|
-
total: number;
|
|
22
|
-
};
|
|
23
|
-
outputFormat: "json";
|
|
24
|
-
status: import("hono/utils/http-status").ContentfulStatusCode;
|
|
25
|
-
};
|
|
26
|
-
};
|
|
27
|
-
}, "/api/invoicing"> | import("hono/types").MergeSchemaPath<{
|
|
28
|
-
"/list": {
|
|
29
|
-
$get: {
|
|
30
|
-
input: {};
|
|
31
|
-
output: {
|
|
32
|
-
orders: {
|
|
33
|
-
id: string;
|
|
34
|
-
}[];
|
|
35
|
-
};
|
|
36
|
-
outputFormat: "json";
|
|
37
|
-
status: import("hono/utils/http-status").ContentfulStatusCode;
|
|
38
|
-
};
|
|
39
|
-
};
|
|
40
|
-
}, "/api/orders">, "/", "/">;
|
|
41
|
-
export type ChainedAppType = typeof chainedApp;
|
|
42
|
-
export {};
|
|
43
|
-
//# sourceMappingURL=rpc-types.test.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"rpc-types.test.d.ts","sourceRoot":"","sources":["../../src/__tests__/rpc-types.test.ts"],"names":[],"mappings":"AA2BA,QAAA,MAAM,UAAU;;;;;;wBAVK,MAAM;2BAAS,MAAM;;;;;;;;;;;;oBAArB,MAAM;uBAAS,MAAM;;;;;;;;;;;;wBAOL,MAAM;;;;;;;4BAKN,CAAC;AACtC,MAAM,MAAM,cAAc,GAAG,OAAO,UAAU,CAAC"}
|
package/dist/app.test.d.ts
DELETED
package/dist/app.test.d.ts.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"app.test.d.ts","sourceRoot":"","sources":["../src/app.test.ts"],"names":[],"mappings":""}
|
package/dist/audit.test.d.ts
DELETED
package/dist/audit.test.d.ts.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"audit.test.d.ts","sourceRoot":"","sources":["../src/audit.test.ts"],"names":[],"mappings":""}
|
package/dist/auth.test.d.ts
DELETED
package/dist/auth.test.d.ts.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"auth.test.d.ts","sourceRoot":"","sources":["../src/auth.test.ts"],"names":[],"mappings":""}
|
package/dist/ctx.test.d.ts
DELETED
package/dist/ctx.test.d.ts.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"ctx.test.d.ts","sourceRoot":"","sources":["../src/ctx.test.ts"],"names":[],"mappings":""}
|
package/dist/db/client.test.d.ts
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"client.test.d.ts","sourceRoot":"","sources":["../../src/db/client.test.ts"],"names":[],"mappings":""}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"ensure-core-tables.test.d.ts","sourceRoot":"","sources":["../../src/db/ensure-core-tables.test.ts"],"names":[],"mappings":""}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"helpers.test.d.ts","sourceRoot":"","sources":["../../src/db/helpers.test.ts"],"names":[],"mappings":""}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"system-schema.test.d.ts","sourceRoot":"","sources":["../../src/db/system-schema.test.ts"],"names":[],"mappings":""}
|
package/dist/errors.test.d.ts
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"errors.test.d.ts","sourceRoot":"","sources":["../src/errors.test.ts"],"names":[],"mappings":""}
|
package/dist/job.test.d.ts
DELETED
package/dist/job.test.d.ts.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"job.test.d.ts","sourceRoot":"","sources":["../src/job.test.ts"],"names":[],"mappings":""}
|
package/dist/logger.test.d.ts
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"logger.test.d.ts","sourceRoot":"","sources":["../src/logger.test.ts"],"names":[],"mappings":""}
|
package/dist/mcp.test.d.ts
DELETED
package/dist/mcp.test.d.ts.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"mcp.test.d.ts","sourceRoot":"","sources":["../src/mcp.test.ts"],"names":[],"mappings":""}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"audit.test.d.ts","sourceRoot":"","sources":["../../src/middleware/audit.test.ts"],"names":[],"mappings":""}
|
package/dist/module.test.d.ts
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"module.test.d.ts","sourceRoot":"","sources":["../src/module.test.ts"],"names":[],"mappings":""}
|
package/dist/queue.test.d.ts
DELETED
package/dist/queue.test.d.ts.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"queue.test.d.ts","sourceRoot":"","sources":["../src/queue.test.ts"],"names":[],"mappings":""}
|
package/dist/sequence.test.d.ts
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"sequence.test.d.ts","sourceRoot":"","sources":["../src/sequence.test.ts"],"names":[],"mappings":""}
|
package/dist/storage.test.d.ts
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"storage.test.d.ts","sourceRoot":"","sources":["../src/storage.test.ts"],"names":[],"mappings":""}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"system.test.d.ts","sourceRoot":"","sources":["../../src/system/system.test.ts"],"names":[],"mappings":""}
|