@relayfx/sdk 0.6.1 → 0.7.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.
- package/dist/ai.js +1 -1
- package/dist/http-server.js +1 -1
- package/dist/{index-fh2ftte9.js → index-q7xzf506.js} +6 -0
- package/dist/{index-5vjhqzbk.js → index-qa93yf6j.js} +1516 -800
- package/dist/{index-dm4yqr8f.js → index-rppc919a.js} +1 -1
- package/dist/{index-ftgf8py0.js → index-s3mmg704.js} +1174 -1070
- package/dist/index.js +265 -229
- package/dist/mysql.js +4 -4
- package/dist/postgres.js +4 -4
- package/dist/sqlite.js +4 -4
- package/dist/types/relay/client-public-executions.d.ts +2 -2
- package/dist/types/relay/operation.d.ts +4 -4
- package/dist/types/runtime/agent/relay-compaction.d.ts +4 -0
- package/dist/types/schema/execution-schema.d.ts +8 -2
- package/dist/types/store-sql/prompt-wire.d.ts +4 -0
- package/dist/types/store-sql/session/session-entry-records.d.ts +3 -0
- package/dist/types/store-sql/session/session-repository.d.ts +7 -0
- package/package.json +15 -4
package/dist/ai.js
CHANGED
package/dist/http-server.js
CHANGED
|
@@ -527,6 +527,7 @@ __export2(exports_execution_schema, {
|
|
|
527
527
|
ExecutionEventSequence: () => ExecutionEventSequence,
|
|
528
528
|
ExecutionEvent: () => ExecutionEvent,
|
|
529
529
|
Execution: () => Execution,
|
|
530
|
+
CompactionStartedEventData: () => CompactionStartedEventData,
|
|
530
531
|
CompactionCommittedEventData: () => CompactionCommittedEventData,
|
|
531
532
|
ChildRunPreset: () => ChildRunPreset2,
|
|
532
533
|
ChildRunOverride: () => ChildRunOverride,
|
|
@@ -675,6 +676,7 @@ var ExecutionEventType = Schema7.Literals([
|
|
|
675
676
|
"model.toolcall.delta",
|
|
676
677
|
"model.output.completed",
|
|
677
678
|
"model.usage.reported",
|
|
679
|
+
"agent.compaction.started",
|
|
678
680
|
"agent.compaction.committed",
|
|
679
681
|
"budget.exceeded",
|
|
680
682
|
"tool.call.requested",
|
|
@@ -712,6 +714,10 @@ var ExecutionEventType = Schema7.Literals([
|
|
|
712
714
|
"workspace.lease.released",
|
|
713
715
|
"workspace.lease.failed"
|
|
714
716
|
]).annotate({ identifier: "Relay.ExecutionEventType" });
|
|
717
|
+
var CompactionStartedEventData = Schema7.Struct({
|
|
718
|
+
turn: Schema7.Finite,
|
|
719
|
+
overflow: Schema7.Boolean
|
|
720
|
+
}).annotate({ identifier: "Relay.CompactionStartedEventData" });
|
|
715
721
|
var CompactionCommittedEventData = Schema7.Struct({
|
|
716
722
|
checkpoint_id: SessionEntryId,
|
|
717
723
|
session_id: SessionId,
|