@relayfx/sdk 0.0.6 → 0.0.8

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 (67) hide show
  1. package/dist/index.js +8850 -4110
  2. package/dist/migrations/20260705003847_nervous_banshee/migration.sql +11 -0
  3. package/dist/migrations/20260705003847_nervous_banshee/snapshot.json +2954 -0
  4. package/dist/migrations/20260705012626_common_stryfe/migration.sql +31 -0
  5. package/dist/migrations/20260705012626_common_stryfe/snapshot.json +3378 -0
  6. package/dist/migrations/20260705015420_sweet_captain_marvel/migration.sql +10 -0
  7. package/dist/migrations/20260705015420_sweet_captain_marvel/snapshot.json +3485 -0
  8. package/dist/migrations/20260705023041_chunky_scalphunter/migration.sql +22 -0
  9. package/dist/migrations/20260705023041_chunky_scalphunter/snapshot.json +3753 -0
  10. package/dist/migrations/20260705030344_short_patriot/migration.sql +11 -0
  11. package/dist/migrations/20260705030344_short_patriot/snapshot.json +3873 -0
  12. package/dist/migrations/20260705045546_heavy_ben_grimm/migration.sql +30 -0
  13. package/dist/migrations/20260705045546_heavy_ben_grimm/snapshot.json +4193 -0
  14. package/dist/migrations/20260706185931_regular_shadow_king/migration.sql +166 -0
  15. package/dist/migrations/20260706185931_regular_shadow_king/snapshot.json +4844 -0
  16. package/dist/types/ai/embedding-model/embedding-model-registration.d.ts +45 -0
  17. package/dist/types/ai/index.d.ts +1 -0
  18. package/dist/types/relay/client.d.ts +20 -4
  19. package/dist/types/relay/index.d.ts +3 -3
  20. package/dist/types/relay/operation.d.ts +242 -1
  21. package/dist/types/runtime/address/address-resolution-service.d.ts +15 -0
  22. package/dist/types/runtime/agent/agent-loop-service.d.ts +39 -10
  23. package/dist/types/runtime/agent/relay-approvals.d.ts +15 -3
  24. package/dist/types/runtime/agent/relay-compaction.d.ts +22 -0
  25. package/dist/types/runtime/agent/relay-instructions.d.ts +22 -0
  26. package/dist/types/runtime/agent/relay-permissions.d.ts +25 -0
  27. package/dist/types/runtime/agent/relay-steering.d.ts +17 -0
  28. package/dist/types/runtime/agent/relay-tool-executor.d.ts +3 -0
  29. package/dist/types/runtime/agent/relay-tool-output.d.ts +7 -0
  30. package/dist/types/runtime/child/spawn-child-run-tool.d.ts +209 -0
  31. package/dist/types/runtime/cluster/execution-entity.d.ts +101 -2
  32. package/dist/types/runtime/execution/event-log-service.d.ts +6 -0
  33. package/dist/types/runtime/execution/execution-service.d.ts +1 -0
  34. package/dist/types/runtime/index.d.ts +10 -0
  35. package/dist/types/runtime/memory/memory-service.d.ts +20 -0
  36. package/dist/types/runtime/model/embedding-model-service.d.ts +68 -0
  37. package/dist/types/runtime/model/model-call-policy.d.ts +30 -11
  38. package/dist/types/runtime/runner/runner-runtime-service.d.ts +41 -21
  39. package/dist/types/runtime/schedule/scheduler-service.d.ts +4 -4
  40. package/dist/types/runtime/session/session-store-service.d.ts +14 -0
  41. package/dist/types/runtime/skill/skill-registry-service.d.ts +44 -0
  42. package/dist/types/runtime/tool/tool-runtime-service.d.ts +5 -0
  43. package/dist/types/runtime/wait/wait-signal.d.ts +2 -1
  44. package/dist/types/runtime/workflow/activity-version-registry.d.ts +89 -0
  45. package/dist/types/runtime/workflow/execution-workflow.d.ts +109 -4
  46. package/dist/types/schema/agent-schema.d.ts +130 -0
  47. package/dist/types/schema/content-schema.d.ts +12 -0
  48. package/dist/types/schema/envelope-schema.d.ts +12 -0
  49. package/dist/types/schema/execution-schema.d.ts +32 -2
  50. package/dist/types/schema/ids-schema.d.ts +21 -0
  51. package/dist/types/schema/index.d.ts +1 -0
  52. package/dist/types/schema/schedule-schema.d.ts +6 -0
  53. package/dist/types/schema/skill-schema.d.ts +260 -0
  54. package/dist/types/schema/tool-schema.d.ts +2 -0
  55. package/dist/types/store-sql/child/child-execution-repository.d.ts +1 -0
  56. package/dist/types/store-sql/compaction/compaction-repository.d.ts +37 -0
  57. package/dist/types/store-sql/execution/execution-repository.d.ts +3 -0
  58. package/dist/types/store-sql/index.d.ts +8 -0
  59. package/dist/types/store-sql/memory/memory-repository.d.ts +50 -0
  60. package/dist/types/store-sql/permission/permission-rule-repository.d.ts +37 -0
  61. package/dist/types/store-sql/schema/relay-schema.d.ts +1542 -91
  62. package/dist/types/store-sql/session/context-epoch-repository.d.ts +33 -0
  63. package/dist/types/store-sql/session/session-repository.d.ts +139 -0
  64. package/dist/types/store-sql/skill/skill-definition-repository.d.ts +71 -0
  65. package/dist/types/store-sql/steering/steering-repository.d.ts +59 -0
  66. package/dist/types/store-sql/tenant/tenant-id.d.ts +15 -0
  67. package/package.json +3 -3

There are too many changes on this page to be displayed.


The amount of changes on this page would crash your brower.

You can still verify the content by downloading the package file manually.