@vobase/core 0.1.0 → 0.1.1

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 (43) hide show
  1. package/README.md +23 -0
  2. package/dist/index.js +3 -3
  3. package/package.json +8 -1
  4. package/dist/__tests__/e2e.test.d.ts +0 -2
  5. package/dist/__tests__/e2e.test.d.ts.map +0 -1
  6. package/dist/__tests__/rpc-types.test.d.ts +0 -43
  7. package/dist/__tests__/rpc-types.test.d.ts.map +0 -1
  8. package/dist/app.test.d.ts +0 -2
  9. package/dist/app.test.d.ts.map +0 -1
  10. package/dist/audit.test.d.ts +0 -2
  11. package/dist/audit.test.d.ts.map +0 -1
  12. package/dist/auth.test.d.ts +0 -2
  13. package/dist/auth.test.d.ts.map +0 -1
  14. package/dist/ctx.test.d.ts +0 -2
  15. package/dist/ctx.test.d.ts.map +0 -1
  16. package/dist/db/client.test.d.ts +0 -2
  17. package/dist/db/client.test.d.ts.map +0 -1
  18. package/dist/db/ensure-core-tables.test.d.ts +0 -2
  19. package/dist/db/ensure-core-tables.test.d.ts.map +0 -1
  20. package/dist/db/helpers.test.d.ts +0 -2
  21. package/dist/db/helpers.test.d.ts.map +0 -1
  22. package/dist/db/system-schema.test.d.ts +0 -2
  23. package/dist/db/system-schema.test.d.ts.map +0 -1
  24. package/dist/errors.test.d.ts +0 -2
  25. package/dist/errors.test.d.ts.map +0 -1
  26. package/dist/job.test.d.ts +0 -2
  27. package/dist/job.test.d.ts.map +0 -1
  28. package/dist/logger.test.d.ts +0 -2
  29. package/dist/logger.test.d.ts.map +0 -1
  30. package/dist/mcp.test.d.ts +0 -2
  31. package/dist/mcp.test.d.ts.map +0 -1
  32. package/dist/middleware/audit.test.d.ts +0 -2
  33. package/dist/middleware/audit.test.d.ts.map +0 -1
  34. package/dist/module.test.d.ts +0 -2
  35. package/dist/module.test.d.ts.map +0 -1
  36. package/dist/queue.test.d.ts +0 -2
  37. package/dist/queue.test.d.ts.map +0 -1
  38. package/dist/sequence.test.d.ts +0 -2
  39. package/dist/sequence.test.d.ts.map +0 -1
  40. package/dist/storage.test.d.ts +0 -2
  41. package/dist/storage.test.d.ts.map +0 -1
  42. package/dist/system/system.test.d.ts +0 -2
  43. 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.0",
3
+ "version": "0.1.1",
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,2 +0,0 @@
1
- export {};
2
- //# sourceMappingURL=e2e.test.d.ts.map
@@ -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"}
@@ -1,2 +0,0 @@
1
- export {};
2
- //# sourceMappingURL=app.test.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"app.test.d.ts","sourceRoot":"","sources":["../src/app.test.ts"],"names":[],"mappings":""}
@@ -1,2 +0,0 @@
1
- export {};
2
- //# sourceMappingURL=audit.test.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"audit.test.d.ts","sourceRoot":"","sources":["../src/audit.test.ts"],"names":[],"mappings":""}
@@ -1,2 +0,0 @@
1
- export {};
2
- //# sourceMappingURL=auth.test.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"auth.test.d.ts","sourceRoot":"","sources":["../src/auth.test.ts"],"names":[],"mappings":""}
@@ -1,2 +0,0 @@
1
- export {};
2
- //# sourceMappingURL=ctx.test.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"ctx.test.d.ts","sourceRoot":"","sources":["../src/ctx.test.ts"],"names":[],"mappings":""}
@@ -1,2 +0,0 @@
1
- export {};
2
- //# sourceMappingURL=client.test.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"client.test.d.ts","sourceRoot":"","sources":["../../src/db/client.test.ts"],"names":[],"mappings":""}
@@ -1,2 +0,0 @@
1
- export {};
2
- //# sourceMappingURL=ensure-core-tables.test.d.ts.map
@@ -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,2 +0,0 @@
1
- export {};
2
- //# sourceMappingURL=helpers.test.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"helpers.test.d.ts","sourceRoot":"","sources":["../../src/db/helpers.test.ts"],"names":[],"mappings":""}
@@ -1,2 +0,0 @@
1
- export {};
2
- //# sourceMappingURL=system-schema.test.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"system-schema.test.d.ts","sourceRoot":"","sources":["../../src/db/system-schema.test.ts"],"names":[],"mappings":""}
@@ -1,2 +0,0 @@
1
- export {};
2
- //# sourceMappingURL=errors.test.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"errors.test.d.ts","sourceRoot":"","sources":["../src/errors.test.ts"],"names":[],"mappings":""}
@@ -1,2 +0,0 @@
1
- export {};
2
- //# sourceMappingURL=job.test.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"job.test.d.ts","sourceRoot":"","sources":["../src/job.test.ts"],"names":[],"mappings":""}
@@ -1,2 +0,0 @@
1
- export {};
2
- //# sourceMappingURL=logger.test.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"logger.test.d.ts","sourceRoot":"","sources":["../src/logger.test.ts"],"names":[],"mappings":""}
@@ -1,2 +0,0 @@
1
- export {};
2
- //# sourceMappingURL=mcp.test.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"mcp.test.d.ts","sourceRoot":"","sources":["../src/mcp.test.ts"],"names":[],"mappings":""}
@@ -1,2 +0,0 @@
1
- export {};
2
- //# sourceMappingURL=audit.test.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"audit.test.d.ts","sourceRoot":"","sources":["../../src/middleware/audit.test.ts"],"names":[],"mappings":""}
@@ -1,2 +0,0 @@
1
- export {};
2
- //# sourceMappingURL=module.test.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"module.test.d.ts","sourceRoot":"","sources":["../src/module.test.ts"],"names":[],"mappings":""}
@@ -1,2 +0,0 @@
1
- export {};
2
- //# sourceMappingURL=queue.test.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"queue.test.d.ts","sourceRoot":"","sources":["../src/queue.test.ts"],"names":[],"mappings":""}
@@ -1,2 +0,0 @@
1
- export {};
2
- //# sourceMappingURL=sequence.test.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"sequence.test.d.ts","sourceRoot":"","sources":["../src/sequence.test.ts"],"names":[],"mappings":""}
@@ -1,2 +0,0 @@
1
- export {};
2
- //# sourceMappingURL=storage.test.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"storage.test.d.ts","sourceRoot":"","sources":["../src/storage.test.ts"],"names":[],"mappings":""}
@@ -1,2 +0,0 @@
1
- export {};
2
- //# sourceMappingURL=system.test.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"system.test.d.ts","sourceRoot":"","sources":["../../src/system/system.test.ts"],"names":[],"mappings":""}