@relayfx/sdk 0.2.14 → 0.2.16

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 (110) hide show
  1. package/dist/ai.js +2 -2
  2. package/dist/{index-9q3yh32k.js → index-5x686v8w.js} +1815 -1543
  3. package/dist/{index-15f2ewt8.js → index-6dv1dqq1.js} +8 -8
  4. package/dist/{index-gb7d1wfm.js → index-a6vwwhcp.js} +116 -105
  5. package/dist/{index-qg0hy7s1.js → index-per7tyzq.js} +12 -8
  6. package/dist/index.js +5 -5
  7. package/dist/mysql.js +24 -9
  8. package/dist/postgres.js +18 -13
  9. package/dist/sqlite.js +26 -29
  10. package/dist/types/ai/embedding-model/embedding-model-registration.d.ts +2 -2
  11. package/dist/types/relay/adapter-outbox.d.ts +1 -1
  12. package/dist/types/relay/client.d.ts +28 -28
  13. package/dist/types/relay/command.d.ts +10 -4
  14. package/dist/types/relay/database.d.ts +4 -4
  15. package/dist/types/relay/migration-errors.d.ts +8 -2
  16. package/dist/types/relay/mysql.d.ts +2 -2
  17. package/dist/types/relay/operation.d.ts +173 -123
  18. package/dist/types/relay/postgres.d.ts +2 -2
  19. package/dist/types/relay/runtime-capability-policy.d.ts +11 -5
  20. package/dist/types/relay/runtime-database.d.ts +1 -1
  21. package/dist/types/relay/runtime.d.ts +4 -4
  22. package/dist/types/relay/sqlite-migrations.d.ts +1 -1
  23. package/dist/types/relay/sqlite-runtime.d.ts +10 -5
  24. package/dist/types/relay/tool-worker.d.ts +6 -5
  25. package/dist/types/runtime/address/address-book-service.d.ts +3 -3
  26. package/dist/types/runtime/address/address-resolution-service.d.ts +60 -38
  27. package/dist/types/runtime/agent/agent-loop-service.d.ts +14 -5
  28. package/dist/types/runtime/agent/agent-registry-service.d.ts +2 -2
  29. package/dist/types/runtime/agent/prompt-assembler-service.d.ts +1 -1
  30. package/dist/types/runtime/agent/relay-compaction.d.ts +3 -2
  31. package/dist/types/runtime/agent/relay-tool-output.d.ts +4 -1
  32. package/dist/types/runtime/child/child-fan-out-admission-service.d.ts +1 -1
  33. package/dist/types/runtime/child/child-fan-out-runtime.d.ts +12 -8
  34. package/dist/types/runtime/child/child-fan-out-transition-service.d.ts +1 -1
  35. package/dist/types/runtime/child/child-run-service.d.ts +7 -4
  36. package/dist/types/runtime/child/parent-notifier-service.d.ts +4 -2
  37. package/dist/types/runtime/child/spawn-child-run-tool.d.ts +12 -4
  38. package/dist/types/runtime/cluster/execution-entity.d.ts +2 -2
  39. package/dist/types/runtime/content/artifact-store-service.d.ts +2 -2
  40. package/dist/types/runtime/content/blob-store-service.d.ts +1 -1
  41. package/dist/types/runtime/entity/entity-instance-service.d.ts +14 -5
  42. package/dist/types/runtime/entity/entity-registry-service.d.ts +2 -2
  43. package/dist/types/runtime/envelope/envelope-service.d.ts +2 -2
  44. package/dist/types/runtime/execution/active-execution-registry.d.ts +1 -1
  45. package/dist/types/runtime/execution/event-log-service.d.ts +5 -2
  46. package/dist/types/runtime/execution/execution-service.d.ts +1 -1
  47. package/dist/types/runtime/execution/execution-watch-service.d.ts +1 -1
  48. package/dist/types/runtime/execution/session-stream-service.d.ts +1 -1
  49. package/dist/types/runtime/inbox/inbox-service.d.ts +1 -1
  50. package/dist/types/runtime/memory/memory-service.d.ts +1 -1
  51. package/dist/types/runtime/model/embedding-model-service.d.ts +23 -10
  52. package/dist/types/runtime/model/language-model-service.d.ts +20 -6
  53. package/dist/types/runtime/model/model-call-policy.d.ts +1 -1
  54. package/dist/types/runtime/observability/runtime-metrics.d.ts +12 -3
  55. package/dist/types/runtime/presence/presence-service.d.ts +1 -1
  56. package/dist/types/runtime/presence/presence-tool.d.ts +1 -1
  57. package/dist/types/runtime/runner/runner-runtime-service.d.ts +19 -19
  58. package/dist/types/runtime/schedule/scheduler-service.d.ts +3 -3
  59. package/dist/types/runtime/schema-registry/schema-registry-service.d.ts +2 -2
  60. package/dist/types/runtime/session/session-store-service.d.ts +13 -4
  61. package/dist/types/runtime/skill/skill-registry-service.d.ts +2 -2
  62. package/dist/types/runtime/state/execution-state-service.d.ts +5 -2
  63. package/dist/types/runtime/tool/tool-runtime-service.d.ts +42 -19
  64. package/dist/types/runtime/tool/tool-transition-coordinator.d.ts +2 -2
  65. package/dist/types/runtime/topic/topic-service.d.ts +1 -1
  66. package/dist/types/runtime/wait/wait-service.d.ts +1 -1
  67. package/dist/types/runtime/wait/wait-signal.d.ts +12 -3
  68. package/dist/types/runtime/workflow/activity-version-registry.d.ts +7 -3
  69. package/dist/types/runtime/workflow/definition-runtime.d.ts +37 -22
  70. package/dist/types/runtime/workflow/execution-workflow.d.ts +143 -104
  71. package/dist/types/runtime/workspace/workspace-planner-service.d.ts +6 -6
  72. package/dist/types/runtime/workspace/workspace-provider-service.d.ts +11 -7
  73. package/dist/types/runtime/workspace/workspace-runtime-service.d.ts +1 -1
  74. package/dist/types/schema/agent-schema.d.ts +388 -228
  75. package/dist/types/schema/child-orchestration-schema.d.ts +78 -57
  76. package/dist/types/schema/execution-schema.d.ts +118 -54
  77. package/dist/types/schema/workflow-schema.d.ts +243 -243
  78. package/dist/types/schema/workspace-schema.d.ts +1 -1
  79. package/dist/types/store-sql/address/address-book-repository.d.ts +5 -5
  80. package/dist/types/store-sql/agent/agent-definition-repository.d.ts +7 -7
  81. package/dist/types/store-sql/chat/agent-chat-repository.d.ts +2 -2
  82. package/dist/types/store-sql/child/child-execution-repository.d.ts +4 -4
  83. package/dist/types/store-sql/child/child-fan-out-repository.d.ts +2 -2
  84. package/dist/types/store-sql/cluster/cluster-registry-repository.d.ts +5 -5
  85. package/dist/types/store-sql/compaction/compaction-repository.d.ts +3 -3
  86. package/dist/types/store-sql/database/database-service.d.ts +3 -3
  87. package/dist/types/store-sql/database/notification-bus.d.ts +1 -1
  88. package/dist/types/store-sql/database/sql-dialect.d.ts +4 -1
  89. package/dist/types/store-sql/entity/entity-repository.d.ts +2 -2
  90. package/dist/types/store-sql/envelope/envelope-repository.d.ts +13 -13
  91. package/dist/types/store-sql/execution/execution-event-repository.d.ts +4 -4
  92. package/dist/types/store-sql/execution/execution-repository.d.ts +8 -8
  93. package/dist/types/store-sql/idempotency/idempotency-repository.d.ts +5 -5
  94. package/dist/types/store-sql/inbox/inbox-repository.d.ts +1 -1
  95. package/dist/types/store-sql/memory/memory-repository.d.ts +3 -3
  96. package/dist/types/store-sql/permission/permission-rule-repository.d.ts +2 -2
  97. package/dist/types/store-sql/presence/presence-repository.d.ts +2 -2
  98. package/dist/types/store-sql/schedule/schedule-repository.d.ts +9 -9
  99. package/dist/types/store-sql/schema/relay-schema.d.ts +257 -257
  100. package/dist/types/store-sql/session/context-epoch-repository.d.ts +2 -2
  101. package/dist/types/store-sql/session/session-repository.d.ts +5 -5
  102. package/dist/types/store-sql/skill/skill-definition-repository.d.ts +9 -9
  103. package/dist/types/store-sql/state/execution-state-repository.d.ts +2 -2
  104. package/dist/types/store-sql/steering/steering-repository.d.ts +5 -5
  105. package/dist/types/store-sql/tenant/tenant-id.d.ts +2 -2
  106. package/dist/types/store-sql/tool/tool-call-repository.d.ts +19 -16
  107. package/dist/types/store-sql/topic/topic-repository.d.ts +1 -1
  108. package/dist/types/store-sql/workflow/workflow-definition-repository.d.ts +16 -14
  109. package/dist/types/store-sql/workspace/workspace-lease-repository.d.ts +11 -11
  110. 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.