@ellipsis-dev/sdk 0.2.3 → 0.3.0

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ellipsis-dev/sdk",
3
- "version": "0.2.3",
3
+ "version": "0.3.0",
4
4
  "description": "TypeScript SDK for the Ellipsis agents platform: /v1 REST types + client, the session stream WebSocket client, and the session transcript store.",
5
5
  "license": "MIT",
6
6
  "type": "module",
@@ -98,6 +98,46 @@
98
98
  "title": "MessageRequeuedPayload",
99
99
  "type": "object"
100
100
  },
101
+ "OutboxCollectedPayload": {
102
+ "description": "outbox_collected \u2014 the platform read a code_review session's\n/ellipsis/outbox/* at finalize (CODE_REVIEW_v3.md \u00a73). Carries both raw\nand parsed so the feed alone tells the whole delivery story; the\ncode_review_outbox table is the queryable projection of this record.",
103
+ "properties": {
104
+ "findings": {
105
+ "default": [],
106
+ "items": {
107
+ "additionalProperties": true,
108
+ "type": "object"
109
+ },
110
+ "title": "Findings",
111
+ "type": "array"
112
+ },
113
+ "parse_errors": {
114
+ "default": [],
115
+ "items": {
116
+ "additionalProperties": true,
117
+ "type": "object"
118
+ },
119
+ "title": "Parse Errors",
120
+ "type": "array"
121
+ },
122
+ "parser_version": {
123
+ "title": "Parser Version",
124
+ "type": "string"
125
+ },
126
+ "raw": {
127
+ "additionalProperties": {
128
+ "type": "string"
129
+ },
130
+ "default": {},
131
+ "title": "Raw",
132
+ "type": "object"
133
+ }
134
+ },
135
+ "required": [
136
+ "parser_version"
137
+ ],
138
+ "title": "OutboxCollectedPayload",
139
+ "type": "object"
140
+ },
101
141
  "SandboxOutputPayload": {
102
142
  "description": "sandbox_output \u2014 one chunk of provisioning/lifecycle-script output.\nMany fire per execution; `chunk` rides the idempotency key. These records\nARE the durable copy (archived into the session log's S3 segments), under\na high per-session cap + truncation marker.",
103
143
  "properties": {
@@ -450,6 +490,9 @@
450
490
  "message_requeued": {
451
491
  "$ref": "#/$defs/MessageRequeuedPayload"
452
492
  },
493
+ "outbox_collected": {
494
+ "$ref": "#/$defs/OutboxCollectedPayload"
495
+ },
453
496
  "sandbox_output": {
454
497
  "$ref": "#/$defs/SandboxOutputPayload"
455
498
  },
@@ -497,6 +540,7 @@
497
540
  "message_delivered",
498
541
  "message_received",
499
542
  "message_requeued",
543
+ "outbox_collected",
500
544
  "sandbox_output",
501
545
  "sandbox_phase",
502
546
  "sandbox_ready",