@relayfx/sdk 0.0.1

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 (73) hide show
  1. package/dist/index.js +8449 -0
  2. package/dist/migrations/20260701002839_sour_cerebro/migration.sql +160 -0
  3. package/dist/migrations/20260701002839_sour_cerebro/snapshot.json +1971 -0
  4. package/dist/migrations/20260701041134_acoustic_hulk/migration.sql +30 -0
  5. package/dist/migrations/20260701041134_acoustic_hulk/snapshot.json +2372 -0
  6. package/dist/migrations/20260701160543_condemned_stryfe/migration.sql +2 -0
  7. package/dist/migrations/20260701160543_condemned_stryfe/snapshot.json +2442 -0
  8. package/dist/migrations/20260701220315_heavy_gorgon/migration.sql +5 -0
  9. package/dist/migrations/20260701220315_heavy_gorgon/snapshot.json +2495 -0
  10. package/dist/migrations/20260701225444_polite_lord_hawal/migration.sql +24 -0
  11. package/dist/migrations/20260701225444_polite_lord_hawal/snapshot.json +2821 -0
  12. package/dist/migrations/20260702030128_flaky_misty_knight/migration.sql +1 -0
  13. package/dist/migrations/20260702030128_flaky_misty_knight/snapshot.json +2821 -0
  14. package/dist/types/ai/index.d.ts +2 -0
  15. package/dist/types/ai/language-model/language-model-registration.d.ts +89 -0
  16. package/dist/types/relay/adapter-outbox.d.ts +19 -0
  17. package/dist/types/relay/client.d.ts +102 -0
  18. package/dist/types/relay/database.d.ts +11 -0
  19. package/dist/types/relay/index.d.ts +10 -0
  20. package/dist/types/relay/operation.d.ts +921 -0
  21. package/dist/types/runtime/address/address-book-service.d.ts +74 -0
  22. package/dist/types/runtime/address/address-resolution-service.d.ts +106 -0
  23. package/dist/types/runtime/agent/agent-loop-service.d.ts +53 -0
  24. package/dist/types/runtime/agent/agent-registry-service.d.ts +31 -0
  25. package/dist/types/runtime/agent/prompt-assembler-service.d.ts +102 -0
  26. package/dist/types/runtime/child/child-run-service.d.ts +90 -0
  27. package/dist/types/runtime/child/parent-notifier-service.d.ts +40 -0
  28. package/dist/types/runtime/cluster/execution-entity.d.ts +393 -0
  29. package/dist/types/runtime/content/artifact-store-service.d.ts +73 -0
  30. package/dist/types/runtime/content/blob-store-service.d.ts +87 -0
  31. package/dist/types/runtime/envelope/envelope-service.d.ts +52 -0
  32. package/dist/types/runtime/execution/event-log-service.d.ts +54 -0
  33. package/dist/types/runtime/execution/execution-service.d.ts +62 -0
  34. package/dist/types/runtime/index.d.ts +25 -0
  35. package/dist/types/runtime/model/language-model-service.d.ts +58 -0
  36. package/dist/types/runtime/model/model-call-policy.d.ts +53 -0
  37. package/dist/types/runtime/observability/runtime-metrics.d.ts +9 -0
  38. package/dist/types/runtime/runner/runner-runtime-service.d.ts +132 -0
  39. package/dist/types/runtime/schedule/scheduler-service.d.ts +34 -0
  40. package/dist/types/runtime/tool/tool-runtime-service.d.ts +85 -0
  41. package/dist/types/runtime/wait/wait-service.d.ts +80 -0
  42. package/dist/types/runtime/wait/wait-signal.d.ts +15 -0
  43. package/dist/types/runtime/workflow/execution-workflow.d.ts +335 -0
  44. package/dist/types/runtime/workspace/workspace-planner-service.d.ts +63 -0
  45. package/dist/types/runtime/workspace/workspace-provider-service.d.ts +108 -0
  46. package/dist/types/runtime/workspace/workspace-runtime-service.d.ts +21 -0
  47. package/dist/types/schema/address-schema.d.ts +77 -0
  48. package/dist/types/schema/agent-schema.d.ts +360 -0
  49. package/dist/types/schema/content-schema.d.ts +106 -0
  50. package/dist/types/schema/envelope-schema.d.ts +167 -0
  51. package/dist/types/schema/execution-schema.d.ts +297 -0
  52. package/dist/types/schema/ids-schema.d.ts +61 -0
  53. package/dist/types/schema/index.d.ts +11 -0
  54. package/dist/types/schema/schedule-schema.d.ts +73 -0
  55. package/dist/types/schema/shared-schema.d.ts +11 -0
  56. package/dist/types/schema/tool-schema.d.ts +53 -0
  57. package/dist/types/schema/workspace-schema.d.ts +78 -0
  58. package/dist/types/store-sql/address/address-book-repository.d.ts +48 -0
  59. package/dist/types/store-sql/agent/agent-definition-repository.d.ts +49 -0
  60. package/dist/types/store-sql/chat/agent-chat-repository.d.ts +31 -0
  61. package/dist/types/store-sql/child/child-execution-repository.d.ts +61 -0
  62. package/dist/types/store-sql/cluster/cluster-registry-repository.d.ts +35 -0
  63. package/dist/types/store-sql/database/database-service.d.ts +25 -0
  64. package/dist/types/store-sql/envelope/envelope-repository.d.ts +158 -0
  65. package/dist/types/store-sql/execution/execution-event-repository.d.ts +86 -0
  66. package/dist/types/store-sql/execution/execution-repository.d.ts +80 -0
  67. package/dist/types/store-sql/idempotency/idempotency-repository.d.ts +42 -0
  68. package/dist/types/store-sql/index.d.ts +15 -0
  69. package/dist/types/store-sql/schedule/schedule-repository.d.ts +83 -0
  70. package/dist/types/store-sql/schema/relay-schema.d.ts +2302 -0
  71. package/dist/types/store-sql/tool/tool-call-repository.d.ts +66 -0
  72. package/dist/types/store-sql/workspace/workspace-lease-repository.d.ts +87 -0
  73. package/package.json +44 -0

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.