@relayfx/sdk 0.0.38 → 0.0.40

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 (72) hide show
  1. package/dist/index.js +1366 -1215
  2. package/dist/migrations/20260709030349_agent_id_rename/migration.sql +8 -0
  3. package/dist/migrations/20260709030349_agent_id_rename/snapshot.json +4883 -0
  4. package/dist/migrations/mysql/0001_baseline.sql +8 -8
  5. package/dist/migrations/pg/20260709030349_agent_id_rename/migration.sql +8 -0
  6. package/dist/migrations/pg/20260709030349_agent_id_rename/snapshot.json +4883 -0
  7. package/dist/migrations/sqlite/0001_baseline.sql +8 -8
  8. package/dist/types/ai/embedding-model/embedding-model-registration.d.ts +2 -4
  9. package/dist/types/relay/adapter-outbox.d.ts +11 -11
  10. package/dist/types/relay/client.d.ts +54 -54
  11. package/dist/types/relay/database.d.ts +11 -10
  12. package/dist/types/relay/operation.d.ts +11 -11
  13. package/dist/types/runtime/address/address-resolution-service.d.ts +9 -9
  14. package/dist/types/runtime/agent/agent-loop-service.d.ts +16 -35
  15. package/dist/types/runtime/agent/agent-registry-service.d.ts +4 -4
  16. package/dist/types/runtime/agent/prompt-assembler-service.d.ts +6 -44
  17. package/dist/types/runtime/agent/relay-approvals.d.ts +0 -19
  18. package/dist/types/runtime/agent/relay-instructions.d.ts +0 -15
  19. package/dist/types/runtime/agent/relay-permissions.d.ts +4 -4
  20. package/dist/types/runtime/agent/relay-steering.d.ts +2 -2
  21. package/dist/types/runtime/agent/relay-tool-executor.d.ts +5 -21
  22. package/dist/types/runtime/agent/relay-tool-output.d.ts +5 -5
  23. package/dist/types/runtime/agent/sequence-allocator.d.ts +0 -19
  24. package/dist/types/runtime/child/child-run-service.d.ts +2 -2
  25. package/dist/types/runtime/child/parent-notifier-service.d.ts +4 -4
  26. package/dist/types/runtime/child/spawn-child-run-tool.d.ts +16 -16
  27. package/dist/types/runtime/cluster/execution-entity.d.ts +28 -28
  28. package/dist/types/runtime/content/artifact-store-service.d.ts +0 -47
  29. package/dist/types/runtime/content/blob-store-service.d.ts +0 -33
  30. package/dist/types/runtime/envelope/envelope-service.d.ts +4 -4
  31. package/dist/types/runtime/execution/event-log-service.d.ts +0 -5
  32. package/dist/types/runtime/execution/execution-service.d.ts +10 -9
  33. package/dist/types/runtime/memory/memory-service.d.ts +5 -4
  34. package/dist/types/runtime/model/embedding-model-service.d.ts +3 -3
  35. package/dist/types/runtime/model/language-model-service.d.ts +0 -30
  36. package/dist/types/runtime/model/model-call-policy.d.ts +0 -58
  37. package/dist/types/runtime/runner/runner-runtime-service.d.ts +63 -74
  38. package/dist/types/runtime/schedule/scheduler-service.d.ts +5 -5
  39. package/dist/types/runtime/schema-registry/schema-registry-service.d.ts +0 -40
  40. package/dist/types/runtime/tool/tool-runtime-service.d.ts +40 -13
  41. package/dist/types/runtime/wait/wait-service.d.ts +2 -2
  42. package/dist/types/runtime/wait/wait-signal.d.ts +3 -3
  43. package/dist/types/runtime/workflow/execution-workflow.d.ts +17 -22
  44. package/dist/types/runtime/workspace/workspace-planner-service.d.ts +16 -15
  45. package/dist/types/runtime/workspace/workspace-runtime-service.d.ts +4 -4
  46. package/dist/types/schema/agent-schema.d.ts +14 -22
  47. package/dist/types/schema/execution-schema.d.ts +5 -5
  48. package/dist/types/schema/ids-schema.d.ts +3 -3
  49. package/dist/types/store-sql/address/address-book-repository.d.ts +2 -2
  50. package/dist/types/store-sql/agent/agent-definition-repository.d.ts +11 -11
  51. package/dist/types/store-sql/chat/agent-chat-repository.d.ts +2 -2
  52. package/dist/types/store-sql/child/child-execution-repository.d.ts +2 -2
  53. package/dist/types/store-sql/cluster/cluster-registry-repository.d.ts +2 -2
  54. package/dist/types/store-sql/compaction/compaction-repository.d.ts +2 -2
  55. package/dist/types/store-sql/database/database-service.d.ts +11 -12
  56. package/dist/types/store-sql/database/notification-bus.d.ts +3 -3
  57. package/dist/types/store-sql/envelope/envelope-repository.d.ts +2 -2
  58. package/dist/types/store-sql/execution/execution-event-repository.d.ts +4 -4
  59. package/dist/types/store-sql/execution/execution-repository.d.ts +14 -14
  60. package/dist/types/store-sql/idempotency/idempotency-repository.d.ts +3 -3
  61. package/dist/types/store-sql/memory/memory-repository.d.ts +5 -5
  62. package/dist/types/store-sql/permission/permission-rule-repository.d.ts +2 -2
  63. package/dist/types/store-sql/schedule/schedule-repository.d.ts +2 -2
  64. package/dist/types/store-sql/schema/relay-schema.d.ts +26 -26
  65. package/dist/types/store-sql/session/context-epoch-repository.d.ts +2 -2
  66. package/dist/types/store-sql/session/session-repository.d.ts +6 -6
  67. package/dist/types/store-sql/skill/skill-definition-repository.d.ts +2 -2
  68. package/dist/types/store-sql/steering/steering-repository.d.ts +2 -2
  69. package/dist/types/store-sql/tenant/tenant-id.d.ts +3 -1
  70. package/dist/types/store-sql/tool/tool-call-repository.d.ts +2 -2
  71. package/dist/types/store-sql/workspace/workspace-lease-repository.d.ts +2 -2
  72. package/package.json +3 -14

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.