@inkeep/agents-core 0.18.1 → 0.19.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 (42) hide show
  1. package/README.md +4 -4
  2. package/dist/{chunk-JTHQYGCX.js → chunk-4FMDWUE4.js} +34 -34
  3. package/dist/{chunk-ID4CFGVF.js → chunk-B6F3RF4T.js} +87 -120
  4. package/dist/chunk-E6R6PML7.js +19 -0
  5. package/dist/chunk-HYS7HUYJ.js +27 -0
  6. package/dist/{chunk-H6PMWHNV.js → chunk-SLL6V3AE.js} +12 -12
  7. package/dist/{chunk-E4SFK6AI.js → chunk-VICWT3WO.js} +281 -142
  8. package/dist/{chunk-R2EERZSW.js → chunk-YECQCT5N.js} +1 -1
  9. package/dist/client-exports.cjs +390 -283
  10. package/dist/client-exports.d.cts +13 -14
  11. package/dist/client-exports.d.ts +13 -14
  12. package/dist/client-exports.js +10 -10
  13. package/dist/constants/models.cjs +31 -0
  14. package/dist/constants/models.d.cts +33 -0
  15. package/dist/constants/models.d.ts +33 -0
  16. package/dist/constants/models.js +1 -0
  17. package/dist/db/schema.cjs +85 -118
  18. package/dist/db/schema.d.cts +2 -3
  19. package/dist/db/schema.d.ts +2 -3
  20. package/dist/db/schema.js +1 -1
  21. package/dist/index.cjs +214164 -1095
  22. package/dist/index.d.cts +215 -214
  23. package/dist/index.d.ts +215 -214
  24. package/dist/index.js +213657 -767
  25. package/dist/{schema-ULFEZCOL.d.cts → schema-CcSN2XcZ.d.cts} +54 -52
  26. package/dist/{schema-wbZXiVWb.d.ts → schema-D8h85qdU.d.ts} +54 -52
  27. package/dist/{signoz-queries-BuiipZTk.d.cts → signoz-queries-CuWMQh1H.d.cts} +10 -10
  28. package/dist/{signoz-queries-BuiipZTk.d.ts → signoz-queries-CuWMQh1H.d.ts} +10 -10
  29. package/dist/types/index.d.cts +2 -3
  30. package/dist/types/index.d.ts +2 -3
  31. package/dist/{utility-CyPQ1tC_.d.cts → utility-HqRMF7sM.d.cts} +1775 -320
  32. package/dist/{utility-CyPQ1tC_.d.ts → utility-HqRMF7sM.d.ts} +1775 -320
  33. package/dist/utils/schema-conversion.js +1 -1
  34. package/dist/validation/index.cjs +445 -304
  35. package/dist/validation/index.d.cts +12 -13
  36. package/dist/validation/index.d.ts +12 -13
  37. package/dist/validation/index.js +2 -2
  38. package/drizzle/0007_mighty_typhoid_mary.sql +227 -0
  39. package/drizzle/meta/0007_snapshot.json +2766 -0
  40. package/drizzle/meta/_journal.json +7 -0
  41. package/package.json +6 -1
  42. package/dist/chunk-MKBO26DX.js +0 -9
@@ -50,6 +50,13 @@
50
50
  "when": 1760053343084,
51
51
  "tag": "0006_damp_lenny_balinger",
52
52
  "breakpoints": true
53
+ },
54
+ {
55
+ "idx": 7,
56
+ "version": "6",
57
+ "when": 1760126352847,
58
+ "tag": "0007_mighty_typhoid_mary",
59
+ "breakpoints": true
53
60
  }
54
61
  ]
55
62
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@inkeep/agents-core",
3
- "version": "0.18.1",
3
+ "version": "0.19.1",
4
4
  "description": "Agents Core contains the database schema, types, and validation schemas for Inkeep Agent Framework, along with core components.",
5
5
  "type": "module",
6
6
  "license": "SEE LICENSE IN LICENSE.md",
@@ -27,6 +27,10 @@
27
27
  "types": "./dist/client-exports.d.ts",
28
28
  "import": "./dist/client-exports.js"
29
29
  },
30
+ "./constants/models": {
31
+ "types": "./dist/constants/models.d.ts",
32
+ "import": "./dist/constants/models.js"
33
+ },
30
34
  "./utils/schema-conversion": {
31
35
  "types": "./dist/utils/schema-conversion.d.ts",
32
36
  "import": "./dist/utils/schema-conversion.js"
@@ -111,6 +115,7 @@
111
115
  "format": "biome format --write src",
112
116
  "format:check": "biome format src",
113
117
  "typecheck": "tsc --noEmit",
118
+ "typecheck:watch": "tsc --noEmit --watch",
114
119
  "db:generate": "drizzle-kit generate",
115
120
  "db:migrate": "drizzle-kit migrate",
116
121
  "db:drop": "drizzle-kit drop",
@@ -1,9 +0,0 @@
1
- var __defProp = Object.defineProperty;
2
- var __defNormalProp = (obj, key, value) => key in obj ? __defProp(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
3
- var __export = (target, all) => {
4
- for (var name in all)
5
- __defProp(target, name, { get: all[name], enumerable: true });
6
- };
7
- var __publicField = (obj, key, value) => __defNormalProp(obj, typeof key !== "symbol" ? key + "" : key, value);
8
-
9
- export { __export, __publicField };