@happyvertical/smrt-core 0.40.63 → 0.40.65

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 (37) hide show
  1. package/AGENTS.md +13 -0
  2. package/README.md +38 -0
  3. package/dist/__typechecks__/collection-read-plan.d.ts +50 -0
  4. package/dist/__typechecks__/collection-read-plan.d.ts.map +1 -0
  5. package/dist/collection-read-plan.d.ts +77 -0
  6. package/dist/collection-read-plan.d.ts.map +1 -0
  7. package/dist/collection-read-plan.js +55 -0
  8. package/dist/collection-read-plan.js.map +1 -0
  9. package/dist/consumer-plugin/index.d.ts.map +1 -1
  10. package/dist/consumer-plugin/index.js +44 -5
  11. package/dist/consumer-plugin/index.js.map +1 -1
  12. package/dist/index.d.ts +1 -0
  13. package/dist/index.d.ts.map +1 -1
  14. package/dist/index.js +2 -1
  15. package/dist/manifest/static-manifest.js +1 -1
  16. package/dist/manifest/static-manifest.js.map +1 -1
  17. package/dist/manifest/store.js +1 -1
  18. package/dist/manifest.json +1 -1
  19. package/dist/object.d.ts.map +1 -1
  20. package/dist/object.js +1 -1
  21. package/dist/object.js.map +1 -1
  22. package/dist/registry/class-registration.d.ts.map +1 -1
  23. package/dist/registry/class-registration.js +53 -3
  24. package/dist/registry/class-registration.js.map +1 -1
  25. package/dist/registry/types.d.ts +7 -0
  26. package/dist/registry/types.d.ts.map +1 -1
  27. package/dist/registry.d.ts.map +1 -1
  28. package/dist/registry.js +5 -4
  29. package/dist/registry.js.map +1 -1
  30. package/dist/smrt-knowledge.json +8 -5
  31. package/dist/vite-plugin/index.d.ts.map +1 -1
  32. package/dist/vite-plugin/index.js +31 -13
  33. package/dist/vite-plugin/index.js.map +1 -1
  34. package/dist/vite-plugin/sveltekit-generator.d.ts.map +1 -1
  35. package/dist/vite-plugin/sveltekit-generator.js +92 -26
  36. package/dist/vite-plugin/sveltekit-generator.js.map +1 -1
  37. package/package.json +8 -5
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@happyvertical/smrt-core",
3
- "version": "0.40.63",
3
+ "version": "0.40.65",
4
4
  "description": "Core AI agent framework with standardized collections, object-relational mapping, and code generators",
5
5
  "author": "HappyVertical",
6
6
  "type": "module",
@@ -164,9 +164,9 @@
164
164
  "tsx": "^4.23.0",
165
165
  "typescript": "5.9.3",
166
166
  "yaml": "^2.9.0",
167
- "@happyvertical/smrt-config": "0.40.63",
168
- "@happyvertical/smrt-scanner": "0.40.63",
169
- "@happyvertical/smrt-types": "0.40.63"
167
+ "@happyvertical/smrt-config": "0.40.65",
168
+ "@happyvertical/smrt-scanner": "0.40.65",
169
+ "@happyvertical/smrt-types": "0.40.65"
170
170
  },
171
171
  "peerDependencies": {
172
172
  "@huggingface/transformers": ">=3.0.0 <4.0.0",
@@ -183,9 +183,12 @@
183
183
  "devDependencies": {
184
184
  "@faker-js/faker": "^10.5.0",
185
185
  "@huggingface/transformers": "^3.8.1",
186
+ "@sveltejs/kit": "^2.69.1",
187
+ "@sveltejs/vite-plugin-svelte": "^7.1.2",
186
188
  "@types/node": "24.13.2",
187
189
  "@types/pluralize": "^0.0.33",
188
190
  "@xenova/transformers": "^2.17.2",
191
+ "svelte": "^5.56.4",
189
192
  "vite": "8.1.4",
190
193
  "vite-plugin-dts": "4.5.4",
191
194
  "vitest": "4.1.10"
@@ -204,7 +207,7 @@
204
207
  "generate": "node scripts/generate-manifest.js",
205
208
  "generate:test": "node scripts/generate-test-manifest.js",
206
209
  "test": "node scripts/generate-test-manifest.js && vitest run",
207
- "test:postgres": "node scripts/generate-test-manifest.js && NODE_OPTIONS=--trace-deprecation node ../../scripts/run-with-ci-postgres.mjs -- pnpm exec vitest run src/__tests__/change-feed-concurrency.optional.test.ts src/__tests__/issue-2069-postgres-date-instant.optional.test.ts src/__tests__/issue-2070-postgres-hydration.optional.test.ts",
210
+ "test:postgres": "node scripts/generate-test-manifest.js && NODE_OPTIONS=--trace-deprecation node ../../scripts/run-with-ci-postgres.mjs -- pnpm exec vitest run src/__tests__/change-feed-concurrency.optional.test.ts src/__tests__/collection-read-plan-postgres.optional.test.ts src/__tests__/issue-2069-postgres-date-instant.optional.test.ts src/__tests__/issue-2070-postgres-hydration.optional.test.ts",
208
211
  "test:integration": "TEST_INTEGRATION=1 vitest run src/__tests__/full-registry-integration.test.ts src/__tests__/manifest-no-leak.test.ts",
209
212
  "test:watch": "node scripts/generate-test-manifest.js && vitest",
210
213
  "build": "node scripts/generate-manifest.js && vite build && cp -r src/vite-plugin/templates dist/vite-plugin/ && cp -r scripts dist/ && cp src/manifest/static-manifest.json dist/manifest.json && cp src/manifest/smrt-knowledge.json dist/smrt-knowledge.json",