@ekairos/story 1.6.1 → 1.6.3

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/dist/agent.d.ts +72 -72
  2. package/dist/agent.js +478 -478
  3. package/dist/document-parser.d.ts +15 -15
  4. package/dist/document-parser.js +156 -156
  5. package/dist/engine.d.ts +21 -21
  6. package/dist/engine.js +35 -35
  7. package/dist/events.d.ts +27 -27
  8. package/dist/events.js +203 -203
  9. package/dist/index.d.ts +11 -13
  10. package/dist/index.d.ts.map +1 -1
  11. package/dist/index.js +50 -52
  12. package/dist/index.js.map +1 -1
  13. package/dist/schema.d.ts +107 -107
  14. package/dist/schema.js +63 -63
  15. package/dist/service.d.ts +44 -44
  16. package/dist/service.js +202 -202
  17. package/dist/steps/ai.d.ts +42 -42
  18. package/dist/steps/ai.js +135 -135
  19. package/dist/steps/base.d.ts +13 -13
  20. package/dist/steps/base.js +36 -36
  21. package/dist/steps/index.d.ts +3 -4
  22. package/dist/steps/index.d.ts.map +1 -1
  23. package/dist/steps/index.js +19 -20
  24. package/dist/steps/index.js.map +1 -1
  25. package/dist/steps/registry.d.ts +4 -4
  26. package/dist/steps/registry.js +28 -28
  27. package/dist/steps/sampleStep.d.ts.map +1 -1
  28. package/dist/steps/sampleStep.js +1 -1
  29. package/dist/steps/sampleStep.js.map +1 -1
  30. package/dist/steps-context.d.ts +11 -11
  31. package/dist/steps-context.js +19 -19
  32. package/dist/story.d.ts +49 -49
  33. package/dist/story.js +54 -54
  34. package/dist/storyEngine.d.ts +54 -54
  35. package/dist/storyEngine.js +50 -50
  36. package/dist/storyRunner.d.ts +7 -7
  37. package/dist/storyRunner.js +55 -55
  38. package/dist/workflows/sampleWorkflow.d.ts +5 -1
  39. package/dist/workflows/sampleWorkflow.d.ts.map +1 -1
  40. package/dist/workflows/sampleWorkflow.js +6 -2
  41. package/dist/workflows/sampleWorkflow.js.map +1 -1
  42. package/package.json +51 -52
package/package.json CHANGED
@@ -1,52 +1,51 @@
1
- {
2
- "name": "@ekairos/story",
3
- "version": "1.6.1",
4
- "description": "Pulzar Story - Workflow-based AI Stories",
5
- "type": "commonjs",
6
- "main": "dist/index.js",
7
- "types": "dist/index.d.ts",
8
- "files": [
9
- "dist"
10
- ],
11
- "publishConfig": {
12
- "access": "public"
13
- },
14
- "license": "MIT",
15
- "repository": {
16
- "type": "git",
17
- "url": "git+https://github.com/pulz-ar/pulzar-lib-core.git",
18
- "directory": "packages/story"
19
- },
20
- "exports": {
21
- ".": {
22
- "types": "./dist/index.d.ts",
23
- "require": "./dist/index.js",
24
- "default": "./dist/index.js"
25
- }
26
- },
27
- "scripts": {
28
- "build": "tsc -p tsconfig.json",
29
- "dev": "tsc -p tsconfig.json --watch",
30
- "clean": "node -e \"require('fs').rmSync('dist', {recursive:true, force:true})\"",
31
- "typecheck": "tsc --noEmit"
32
- },
33
- "dependencies": {
34
- "@ai-sdk/openai": "^2.0.52",
35
- "@ekairos/domain": "^1.6.0",
36
- "@instantdb/admin": "^0.22.13",
37
- "@instantdb/core": "^0.22.13",
38
- "@vercel/sandbox": "^0.0.23",
39
- "ai": "^5.0.44",
40
- "ajv": "^8.17.1",
41
- "braintrust": "^0.3.7",
42
- "llamaindex": "^0.12.0",
43
- "xmlbuilder2": "^3.1.1",
44
- "zod": "^4.1.8"
45
- },
46
- "devDependencies": {
47
- "@ekairos/tsconfig": "workspace:*",
48
- "@types/node": "^24.5.0",
49
- "typescript": "^5.9.2"
50
- }
51
- }
52
-
1
+ {
2
+ "name": "@ekairos/story",
3
+ "version": "1.6.3",
4
+ "description": "Pulzar Story - Workflow-based AI Stories",
5
+ "type": "commonjs",
6
+ "main": "dist/index.js",
7
+ "types": "dist/index.d.ts",
8
+ "files": [
9
+ "dist"
10
+ ],
11
+ "publishConfig": {
12
+ "access": "public"
13
+ },
14
+ "license": "MIT",
15
+ "repository": {
16
+ "type": "git",
17
+ "url": "git+https://github.com/pulz-ar/pulzar-lib-core.git",
18
+ "directory": "packages/story"
19
+ },
20
+ "exports": {
21
+ ".": {
22
+ "types": "./dist/index.d.ts",
23
+ "require": "./dist/index.js",
24
+ "default": "./dist/index.js"
25
+ }
26
+ },
27
+ "scripts": {
28
+ "build": "tsc -p tsconfig.json",
29
+ "dev": "tsc -p tsconfig.json --watch",
30
+ "clean": "node -e \"require('fs').rmSync('dist', {recursive:true, force:true})\"",
31
+ "typecheck": "tsc --noEmit"
32
+ },
33
+ "dependencies": {
34
+ "@ai-sdk/openai": "^2.0.52",
35
+ "@ekairos/domain": "^1.6.1",
36
+ "@instantdb/admin": "^0.22.13",
37
+ "@instantdb/core": "^0.22.13",
38
+ "@vercel/sandbox": "^0.0.23",
39
+ "ai": "^5.0.44",
40
+ "ajv": "^8.17.1",
41
+ "braintrust": "^0.3.7",
42
+ "llamaindex": "^0.12.0",
43
+ "xmlbuilder2": "^3.1.1",
44
+ "zod": "^4.1.8"
45
+ },
46
+ "devDependencies": {
47
+ "@ekairos/tsconfig": "workspace:*",
48
+ "@types/node": "^24.5.0",
49
+ "typescript": "^5.9.2"
50
+ }
51
+ }