@relayfx/sdk 0.0.5 → 0.0.7
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.
- package/dist/index.js +7437 -3239
- package/dist/migrations/20260705003847_nervous_banshee/migration.sql +11 -0
- package/dist/migrations/20260705003847_nervous_banshee/snapshot.json +2954 -0
- package/dist/migrations/20260705012626_common_stryfe/migration.sql +31 -0
- package/dist/migrations/20260705012626_common_stryfe/snapshot.json +3378 -0
- package/dist/migrations/20260705015420_sweet_captain_marvel/migration.sql +10 -0
- package/dist/migrations/20260705015420_sweet_captain_marvel/snapshot.json +3485 -0
- package/dist/migrations/20260705023041_chunky_scalphunter/migration.sql +22 -0
- package/dist/migrations/20260705023041_chunky_scalphunter/snapshot.json +3753 -0
- package/dist/migrations/20260705030344_short_patriot/migration.sql +11 -0
- package/dist/migrations/20260705030344_short_patriot/snapshot.json +3873 -0
- package/dist/migrations/20260705045546_heavy_ben_grimm/migration.sql +30 -0
- package/dist/migrations/20260705045546_heavy_ben_grimm/snapshot.json +4193 -0
- package/dist/types/ai/embedding-model/embedding-model-registration.d.ts +45 -0
- package/dist/types/ai/index.d.ts +1 -0
- package/dist/types/relay/client.d.ts +20 -4
- package/dist/types/relay/index.d.ts +3 -3
- package/dist/types/relay/operation.d.ts +242 -1
- package/dist/types/runtime/address/address-resolution-service.d.ts +15 -0
- package/dist/types/runtime/agent/agent-loop-service.d.ts +39 -5
- package/dist/types/runtime/agent/relay-approvals.d.ts +15 -3
- package/dist/types/runtime/agent/relay-compaction.d.ts +22 -0
- package/dist/types/runtime/agent/relay-instructions.d.ts +22 -0
- package/dist/types/runtime/agent/relay-permissions.d.ts +25 -0
- package/dist/types/runtime/agent/relay-steering.d.ts +17 -0
- package/dist/types/runtime/agent/relay-tool-executor.d.ts +3 -0
- package/dist/types/runtime/agent/relay-tool-output.d.ts +7 -0
- package/dist/types/runtime/child/spawn-child-run-tool.d.ts +209 -0
- package/dist/types/runtime/cluster/execution-entity.d.ts +101 -2
- package/dist/types/runtime/execution/event-log-service.d.ts +6 -0
- package/dist/types/runtime/execution/execution-service.d.ts +1 -0
- package/dist/types/runtime/index.d.ts +9 -0
- package/dist/types/runtime/memory/memory-service.d.ts +20 -0
- package/dist/types/runtime/model/embedding-model-service.d.ts +68 -0
- package/dist/types/runtime/model/model-call-policy.d.ts +30 -11
- package/dist/types/runtime/runner/runner-runtime-service.d.ts +41 -21
- package/dist/types/runtime/schedule/scheduler-service.d.ts +4 -4
- package/dist/types/runtime/session/session-store-service.d.ts +14 -0
- package/dist/types/runtime/skill/skill-registry-service.d.ts +44 -0
- package/dist/types/runtime/tool/tool-runtime-service.d.ts +5 -0
- package/dist/types/runtime/wait/wait-signal.d.ts +2 -1
- package/dist/types/runtime/workflow/execution-workflow.d.ts +73 -4
- package/dist/types/schema/agent-schema.d.ts +130 -0
- package/dist/types/schema/content-schema.d.ts +12 -0
- package/dist/types/schema/envelope-schema.d.ts +12 -0
- package/dist/types/schema/execution-schema.d.ts +32 -2
- package/dist/types/schema/ids-schema.d.ts +16 -0
- package/dist/types/schema/index.d.ts +1 -0
- package/dist/types/schema/schedule-schema.d.ts +6 -0
- package/dist/types/schema/skill-schema.d.ts +260 -0
- package/dist/types/schema/tool-schema.d.ts +2 -0
- package/dist/types/store-sql/child/child-execution-repository.d.ts +1 -0
- package/dist/types/store-sql/compaction/compaction-repository.d.ts +37 -0
- package/dist/types/store-sql/execution/execution-repository.d.ts +3 -0
- package/dist/types/store-sql/index.d.ts +7 -0
- package/dist/types/store-sql/memory/memory-repository.d.ts +50 -0
- package/dist/types/store-sql/permission/permission-rule-repository.d.ts +37 -0
- package/dist/types/store-sql/schema/relay-schema.d.ts +1039 -8
- package/dist/types/store-sql/session/context-epoch-repository.d.ts +33 -0
- package/dist/types/store-sql/session/session-repository.d.ts +138 -0
- package/dist/types/store-sql/skill/skill-definition-repository.d.ts +71 -0
- package/dist/types/store-sql/steering/steering-repository.d.ts +59 -0
- package/package.json +3 -3
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
CREATE TABLE "relay_agent_compactions" (
|
|
2
|
+
"execution_id" text NOT NULL,
|
|
3
|
+
"checkpoint_id" text NOT NULL,
|
|
4
|
+
"summary" text NOT NULL,
|
|
5
|
+
"first_kept_entry_id" text NOT NULL,
|
|
6
|
+
"turn" integer NOT NULL,
|
|
7
|
+
"created_at" timestamp with time zone DEFAULT now() NOT NULL,
|
|
8
|
+
CONSTRAINT "pk_relay_agent_compactions" PRIMARY KEY("execution_id","checkpoint_id")
|
|
9
|
+
);
|
|
10
|
+
--> statement-breakpoint
|
|
11
|
+
CREATE INDEX "idx_relay_agent_compactions_execution_turn" ON "relay_agent_compactions" ("execution_id","turn");
|