@inkeep/agents-core 0.10.2 → 0.11.0
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 +1 -7
- package/dist/{chunk-YVGNJIQZ.js → chunk-J7YOVSV7.js} +1 -1
- package/dist/{chunk-URSDNK76.js → chunk-KBRQN63H.js} +82 -206
- package/dist/{chunk-JXAL2ALG.js → chunk-R5V3UTGB.js} +1 -1
- package/dist/client-exports.cjs +80 -200
- package/dist/client-exports.d.cts +7 -7
- package/dist/client-exports.d.ts +7 -7
- package/dist/client-exports.js +2 -2
- package/dist/db/schema.cjs +80 -204
- package/dist/db/schema.d.cts +2 -2
- package/dist/db/schema.d.ts +2 -2
- package/dist/db/schema.js +1 -1
- package/dist/index.cjs +80 -208
- package/dist/index.d.cts +225 -223
- package/dist/index.d.ts +225 -223
- package/dist/index.js +6 -6
- package/dist/{schema-D66X7wP_.d.ts → schema-BA1ATr-V.d.ts} +674 -663
- package/dist/{schema-BXVLXPQq.d.cts → schema-CGo-G_SM.d.cts} +674 -663
- package/dist/types/index.d.cts +2 -2
- package/dist/types/index.d.ts +2 -2
- package/dist/{utility-D7QP8MkV.d.cts → utility-ChGndcyd.d.cts} +1031 -1007
- package/dist/{utility-D7QP8MkV.d.ts → utility-ChGndcyd.d.ts} +1031 -1007
- package/dist/validation/index.cjs +80 -200
- package/dist/validation/index.d.cts +2 -2
- package/dist/validation/index.d.ts +2 -2
- package/dist/validation/index.js +2 -2
- package/package.json +4 -5
package/README.md
CHANGED
|
@@ -134,10 +134,7 @@ pnpm db:check
|
|
|
134
134
|
### Apply Migrations
|
|
135
135
|
|
|
136
136
|
```bash
|
|
137
|
-
#
|
|
138
|
-
pnpm db:push
|
|
139
|
-
|
|
140
|
-
# Run migrations (production)
|
|
137
|
+
# Run migrations
|
|
141
138
|
pnpm db:migrate
|
|
142
139
|
```
|
|
143
140
|
|
|
@@ -413,9 +410,6 @@ export * from './workflows';
|
|
|
413
410
|
pnpm db:generate
|
|
414
411
|
|
|
415
412
|
# Apply migration to database
|
|
416
|
-
pnpm db:push
|
|
417
|
-
|
|
418
|
-
# Or for production, run migrations
|
|
419
413
|
pnpm db:migrate
|
|
420
414
|
```
|
|
421
415
|
|