@agentdock/wire 0.0.93 → 0.0.94
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/accountLanguage.d.ts +32 -0
- package/dist/accountLanguage.js +1 -0
- package/dist/agentCapabilities.d.ts +26 -0
- package/dist/agentCapabilities.js +1 -1
- package/dist/agentRuntimeSettings.d.ts +140 -0
- package/dist/agentRuntimeSettings.js +1 -0
- package/dist/enterpriseGateway.d.ts +215 -0
- package/dist/enterpriseGateway.js +1 -0
- package/dist/envelope.d.ts +45 -30
- package/dist/events.d.ts +24 -12
- package/dist/events.js +1 -1
- package/dist/features.d.ts +7 -3
- package/dist/features.js +1 -1
- package/dist/feedback.d.ts +18 -18
- package/dist/gateway.d.ts +386 -0
- package/dist/gateway.js +1 -0
- package/dist/handoffBrief.d.ts +14 -0
- package/dist/handoffBrief.js +52 -0
- package/dist/inboundEvents.d.ts +70 -0
- package/dist/inboundEvents.js +1 -1
- package/dist/index.d.ts +20 -12
- package/dist/index.js +1 -1
- package/dist/interactionEvents.d.ts +2 -2
- package/dist/legacyProtocol.d.ts +36 -36
- package/dist/machine.d.ts +9 -0
- package/dist/machine.js +1 -1
- package/dist/messageMeta.d.ts +6 -4
- package/dist/messageMeta.js +1 -1
- package/dist/messages.d.ts +338 -216
- package/dist/messages.js +1 -1
- package/dist/rpc.d.ts +883 -78
- package/dist/rpc.js +1 -1
- package/dist/scheduledTasks.d.ts +50 -50
- package/dist/sessionBtw.d.ts +153 -0
- package/dist/sessionBtw.js +1 -0
- package/dist/sessionTitle.d.ts +16 -0
- package/dist/sessionTitle.js +1 -0
- package/dist/socketEvents.d.ts +9 -0
- package/dist/socketEvents.js +1 -1
- package/dist/sourceMetadata.d.ts +2 -2
- package/dist/stats.d.ts +87 -49
- package/dist/stats.js +1 -1
- package/dist/sync.d.ts +315 -0
- package/dist/sync.js +1 -1
- package/dist/workItems.d.ts +345 -0
- package/dist/workItems.js +1 -0
- package/package.json +1 -1
package/dist/sync.d.ts
CHANGED
|
@@ -44,15 +44,19 @@ export declare const UpdateNewMessageBodySchema: z.ZodObject<{
|
|
|
44
44
|
id: z.ZodString;
|
|
45
45
|
seq: z.ZodNumber;
|
|
46
46
|
localId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
47
|
+
contextBoundary: z.ZodOptional<z.ZodNullable<z.ZodEnum<["clear", "compact"]>>>;
|
|
47
48
|
content: z.ZodObject<{
|
|
48
49
|
c: z.ZodString;
|
|
49
50
|
t: z.ZodEnum<["encrypted", "plaintext"]>;
|
|
51
|
+
contextBoundary: z.ZodOptional<z.ZodEnum<["clear", "compact"]>>;
|
|
50
52
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
51
53
|
c: z.ZodString;
|
|
52
54
|
t: z.ZodEnum<["encrypted", "plaintext"]>;
|
|
55
|
+
contextBoundary: z.ZodOptional<z.ZodEnum<["clear", "compact"]>>;
|
|
53
56
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
54
57
|
c: z.ZodString;
|
|
55
58
|
t: z.ZodEnum<["encrypted", "plaintext"]>;
|
|
59
|
+
contextBoundary: z.ZodOptional<z.ZodEnum<["clear", "compact"]>>;
|
|
56
60
|
}, z.ZodTypeAny, "passthrough">>;
|
|
57
61
|
createdAt: z.ZodNumber;
|
|
58
62
|
updatedAt: z.ZodNumber;
|
|
@@ -60,15 +64,19 @@ export declare const UpdateNewMessageBodySchema: z.ZodObject<{
|
|
|
60
64
|
id: z.ZodString;
|
|
61
65
|
seq: z.ZodNumber;
|
|
62
66
|
localId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
67
|
+
contextBoundary: z.ZodOptional<z.ZodNullable<z.ZodEnum<["clear", "compact"]>>>;
|
|
63
68
|
content: z.ZodObject<{
|
|
64
69
|
c: z.ZodString;
|
|
65
70
|
t: z.ZodEnum<["encrypted", "plaintext"]>;
|
|
71
|
+
contextBoundary: z.ZodOptional<z.ZodEnum<["clear", "compact"]>>;
|
|
66
72
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
67
73
|
c: z.ZodString;
|
|
68
74
|
t: z.ZodEnum<["encrypted", "plaintext"]>;
|
|
75
|
+
contextBoundary: z.ZodOptional<z.ZodEnum<["clear", "compact"]>>;
|
|
69
76
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
70
77
|
c: z.ZodString;
|
|
71
78
|
t: z.ZodEnum<["encrypted", "plaintext"]>;
|
|
79
|
+
contextBoundary: z.ZodOptional<z.ZodEnum<["clear", "compact"]>>;
|
|
72
80
|
}, z.ZodTypeAny, "passthrough">>;
|
|
73
81
|
createdAt: z.ZodNumber;
|
|
74
82
|
updatedAt: z.ZodNumber;
|
|
@@ -76,15 +84,19 @@ export declare const UpdateNewMessageBodySchema: z.ZodObject<{
|
|
|
76
84
|
id: z.ZodString;
|
|
77
85
|
seq: z.ZodNumber;
|
|
78
86
|
localId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
87
|
+
contextBoundary: z.ZodOptional<z.ZodNullable<z.ZodEnum<["clear", "compact"]>>>;
|
|
79
88
|
content: z.ZodObject<{
|
|
80
89
|
c: z.ZodString;
|
|
81
90
|
t: z.ZodEnum<["encrypted", "plaintext"]>;
|
|
91
|
+
contextBoundary: z.ZodOptional<z.ZodEnum<["clear", "compact"]>>;
|
|
82
92
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
83
93
|
c: z.ZodString;
|
|
84
94
|
t: z.ZodEnum<["encrypted", "plaintext"]>;
|
|
95
|
+
contextBoundary: z.ZodOptional<z.ZodEnum<["clear", "compact"]>>;
|
|
85
96
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
86
97
|
c: z.ZodString;
|
|
87
98
|
t: z.ZodEnum<["encrypted", "plaintext"]>;
|
|
99
|
+
contextBoundary: z.ZodOptional<z.ZodEnum<["clear", "compact"]>>;
|
|
88
100
|
}, z.ZodTypeAny, "passthrough">>;
|
|
89
101
|
createdAt: z.ZodNumber;
|
|
90
102
|
updatedAt: z.ZodNumber;
|
|
@@ -96,15 +108,19 @@ export declare const UpdateNewMessageBodySchema: z.ZodObject<{
|
|
|
96
108
|
id: z.ZodString;
|
|
97
109
|
seq: z.ZodNumber;
|
|
98
110
|
localId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
111
|
+
contextBoundary: z.ZodOptional<z.ZodNullable<z.ZodEnum<["clear", "compact"]>>>;
|
|
99
112
|
content: z.ZodObject<{
|
|
100
113
|
c: z.ZodString;
|
|
101
114
|
t: z.ZodEnum<["encrypted", "plaintext"]>;
|
|
115
|
+
contextBoundary: z.ZodOptional<z.ZodEnum<["clear", "compact"]>>;
|
|
102
116
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
103
117
|
c: z.ZodString;
|
|
104
118
|
t: z.ZodEnum<["encrypted", "plaintext"]>;
|
|
119
|
+
contextBoundary: z.ZodOptional<z.ZodEnum<["clear", "compact"]>>;
|
|
105
120
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
106
121
|
c: z.ZodString;
|
|
107
122
|
t: z.ZodEnum<["encrypted", "plaintext"]>;
|
|
123
|
+
contextBoundary: z.ZodOptional<z.ZodEnum<["clear", "compact"]>>;
|
|
108
124
|
}, z.ZodTypeAny, "passthrough">>;
|
|
109
125
|
createdAt: z.ZodNumber;
|
|
110
126
|
updatedAt: z.ZodNumber;
|
|
@@ -112,15 +128,19 @@ export declare const UpdateNewMessageBodySchema: z.ZodObject<{
|
|
|
112
128
|
id: z.ZodString;
|
|
113
129
|
seq: z.ZodNumber;
|
|
114
130
|
localId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
131
|
+
contextBoundary: z.ZodOptional<z.ZodNullable<z.ZodEnum<["clear", "compact"]>>>;
|
|
115
132
|
content: z.ZodObject<{
|
|
116
133
|
c: z.ZodString;
|
|
117
134
|
t: z.ZodEnum<["encrypted", "plaintext"]>;
|
|
135
|
+
contextBoundary: z.ZodOptional<z.ZodEnum<["clear", "compact"]>>;
|
|
118
136
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
119
137
|
c: z.ZodString;
|
|
120
138
|
t: z.ZodEnum<["encrypted", "plaintext"]>;
|
|
139
|
+
contextBoundary: z.ZodOptional<z.ZodEnum<["clear", "compact"]>>;
|
|
121
140
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
122
141
|
c: z.ZodString;
|
|
123
142
|
t: z.ZodEnum<["encrypted", "plaintext"]>;
|
|
143
|
+
contextBoundary: z.ZodOptional<z.ZodEnum<["clear", "compact"]>>;
|
|
124
144
|
}, z.ZodTypeAny, "passthrough">>;
|
|
125
145
|
createdAt: z.ZodNumber;
|
|
126
146
|
updatedAt: z.ZodNumber;
|
|
@@ -128,15 +148,19 @@ export declare const UpdateNewMessageBodySchema: z.ZodObject<{
|
|
|
128
148
|
id: z.ZodString;
|
|
129
149
|
seq: z.ZodNumber;
|
|
130
150
|
localId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
151
|
+
contextBoundary: z.ZodOptional<z.ZodNullable<z.ZodEnum<["clear", "compact"]>>>;
|
|
131
152
|
content: z.ZodObject<{
|
|
132
153
|
c: z.ZodString;
|
|
133
154
|
t: z.ZodEnum<["encrypted", "plaintext"]>;
|
|
155
|
+
contextBoundary: z.ZodOptional<z.ZodEnum<["clear", "compact"]>>;
|
|
134
156
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
135
157
|
c: z.ZodString;
|
|
136
158
|
t: z.ZodEnum<["encrypted", "plaintext"]>;
|
|
159
|
+
contextBoundary: z.ZodOptional<z.ZodEnum<["clear", "compact"]>>;
|
|
137
160
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
138
161
|
c: z.ZodString;
|
|
139
162
|
t: z.ZodEnum<["encrypted", "plaintext"]>;
|
|
163
|
+
contextBoundary: z.ZodOptional<z.ZodEnum<["clear", "compact"]>>;
|
|
140
164
|
}, z.ZodTypeAny, "passthrough">>;
|
|
141
165
|
createdAt: z.ZodNumber;
|
|
142
166
|
updatedAt: z.ZodNumber;
|
|
@@ -148,15 +172,19 @@ export declare const UpdateNewMessageBodySchema: z.ZodObject<{
|
|
|
148
172
|
id: z.ZodString;
|
|
149
173
|
seq: z.ZodNumber;
|
|
150
174
|
localId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
175
|
+
contextBoundary: z.ZodOptional<z.ZodNullable<z.ZodEnum<["clear", "compact"]>>>;
|
|
151
176
|
content: z.ZodObject<{
|
|
152
177
|
c: z.ZodString;
|
|
153
178
|
t: z.ZodEnum<["encrypted", "plaintext"]>;
|
|
179
|
+
contextBoundary: z.ZodOptional<z.ZodEnum<["clear", "compact"]>>;
|
|
154
180
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
155
181
|
c: z.ZodString;
|
|
156
182
|
t: z.ZodEnum<["encrypted", "plaintext"]>;
|
|
183
|
+
contextBoundary: z.ZodOptional<z.ZodEnum<["clear", "compact"]>>;
|
|
157
184
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
158
185
|
c: z.ZodString;
|
|
159
186
|
t: z.ZodEnum<["encrypted", "plaintext"]>;
|
|
187
|
+
contextBoundary: z.ZodOptional<z.ZodEnum<["clear", "compact"]>>;
|
|
160
188
|
}, z.ZodTypeAny, "passthrough">>;
|
|
161
189
|
createdAt: z.ZodNumber;
|
|
162
190
|
updatedAt: z.ZodNumber;
|
|
@@ -164,15 +192,19 @@ export declare const UpdateNewMessageBodySchema: z.ZodObject<{
|
|
|
164
192
|
id: z.ZodString;
|
|
165
193
|
seq: z.ZodNumber;
|
|
166
194
|
localId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
195
|
+
contextBoundary: z.ZodOptional<z.ZodNullable<z.ZodEnum<["clear", "compact"]>>>;
|
|
167
196
|
content: z.ZodObject<{
|
|
168
197
|
c: z.ZodString;
|
|
169
198
|
t: z.ZodEnum<["encrypted", "plaintext"]>;
|
|
199
|
+
contextBoundary: z.ZodOptional<z.ZodEnum<["clear", "compact"]>>;
|
|
170
200
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
171
201
|
c: z.ZodString;
|
|
172
202
|
t: z.ZodEnum<["encrypted", "plaintext"]>;
|
|
203
|
+
contextBoundary: z.ZodOptional<z.ZodEnum<["clear", "compact"]>>;
|
|
173
204
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
174
205
|
c: z.ZodString;
|
|
175
206
|
t: z.ZodEnum<["encrypted", "plaintext"]>;
|
|
207
|
+
contextBoundary: z.ZodOptional<z.ZodEnum<["clear", "compact"]>>;
|
|
176
208
|
}, z.ZodTypeAny, "passthrough">>;
|
|
177
209
|
createdAt: z.ZodNumber;
|
|
178
210
|
updatedAt: z.ZodNumber;
|
|
@@ -180,15 +212,19 @@ export declare const UpdateNewMessageBodySchema: z.ZodObject<{
|
|
|
180
212
|
id: z.ZodString;
|
|
181
213
|
seq: z.ZodNumber;
|
|
182
214
|
localId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
215
|
+
contextBoundary: z.ZodOptional<z.ZodNullable<z.ZodEnum<["clear", "compact"]>>>;
|
|
183
216
|
content: z.ZodObject<{
|
|
184
217
|
c: z.ZodString;
|
|
185
218
|
t: z.ZodEnum<["encrypted", "plaintext"]>;
|
|
219
|
+
contextBoundary: z.ZodOptional<z.ZodEnum<["clear", "compact"]>>;
|
|
186
220
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
187
221
|
c: z.ZodString;
|
|
188
222
|
t: z.ZodEnum<["encrypted", "plaintext"]>;
|
|
223
|
+
contextBoundary: z.ZodOptional<z.ZodEnum<["clear", "compact"]>>;
|
|
189
224
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
190
225
|
c: z.ZodString;
|
|
191
226
|
t: z.ZodEnum<["encrypted", "plaintext"]>;
|
|
227
|
+
contextBoundary: z.ZodOptional<z.ZodEnum<["clear", "compact"]>>;
|
|
192
228
|
}, z.ZodTypeAny, "passthrough">>;
|
|
193
229
|
createdAt: z.ZodNumber;
|
|
194
230
|
updatedAt: z.ZodNumber;
|
|
@@ -228,6 +264,15 @@ export declare const UpdateSessionBodySchema: z.ZodObject<{
|
|
|
228
264
|
contextUsage: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
229
265
|
/** Base64-encoded wrapped DEK — only present on session-create broadcast. */
|
|
230
266
|
dataEncryptionKey: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
267
|
+
/** RFC-084: session-level handoff switch, carried on the session-create
|
|
268
|
+
* broadcast so the web client's real-time session object has it without
|
|
269
|
+
* waiting for a full reload (list-sessions also returns it). */
|
|
270
|
+
handoffEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
271
|
+
/** RFC-084: delivery (proposal) IDs this session inherited from — same
|
|
272
|
+
* rationale as handoffEnabled: carried on the session-create broadcast so
|
|
273
|
+
* the web client's real-time session object has it without a full reload.
|
|
274
|
+
* list-sessions also returns it. */
|
|
275
|
+
inheritedFrom: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
231
276
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
232
277
|
t: z.ZodLiteral<"update-session">;
|
|
233
278
|
id: z.ZodString;
|
|
@@ -261,6 +306,15 @@ export declare const UpdateSessionBodySchema: z.ZodObject<{
|
|
|
261
306
|
contextUsage: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
262
307
|
/** Base64-encoded wrapped DEK — only present on session-create broadcast. */
|
|
263
308
|
dataEncryptionKey: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
309
|
+
/** RFC-084: session-level handoff switch, carried on the session-create
|
|
310
|
+
* broadcast so the web client's real-time session object has it without
|
|
311
|
+
* waiting for a full reload (list-sessions also returns it). */
|
|
312
|
+
handoffEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
313
|
+
/** RFC-084: delivery (proposal) IDs this session inherited from — same
|
|
314
|
+
* rationale as handoffEnabled: carried on the session-create broadcast so
|
|
315
|
+
* the web client's real-time session object has it without a full reload.
|
|
316
|
+
* list-sessions also returns it. */
|
|
317
|
+
inheritedFrom: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
264
318
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
265
319
|
t: z.ZodLiteral<"update-session">;
|
|
266
320
|
id: z.ZodString;
|
|
@@ -294,6 +348,15 @@ export declare const UpdateSessionBodySchema: z.ZodObject<{
|
|
|
294
348
|
contextUsage: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
295
349
|
/** Base64-encoded wrapped DEK — only present on session-create broadcast. */
|
|
296
350
|
dataEncryptionKey: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
351
|
+
/** RFC-084: session-level handoff switch, carried on the session-create
|
|
352
|
+
* broadcast so the web client's real-time session object has it without
|
|
353
|
+
* waiting for a full reload (list-sessions also returns it). */
|
|
354
|
+
handoffEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
355
|
+
/** RFC-084: delivery (proposal) IDs this session inherited from — same
|
|
356
|
+
* rationale as handoffEnabled: carried on the session-create broadcast so
|
|
357
|
+
* the web client's real-time session object has it without a full reload.
|
|
358
|
+
* list-sessions also returns it. */
|
|
359
|
+
inheritedFrom: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
297
360
|
}, z.ZodTypeAny, "passthrough">>;
|
|
298
361
|
export type UpdateSessionBody = z.infer<typeof UpdateSessionBodySchema>;
|
|
299
362
|
export declare const UpdateMachineBodySchema: z.ZodObject<{
|
|
@@ -528,15 +591,19 @@ export declare const CoreUpdateBodySchema: z.ZodDiscriminatedUnion<"t", [z.ZodOb
|
|
|
528
591
|
id: z.ZodString;
|
|
529
592
|
seq: z.ZodNumber;
|
|
530
593
|
localId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
594
|
+
contextBoundary: z.ZodOptional<z.ZodNullable<z.ZodEnum<["clear", "compact"]>>>;
|
|
531
595
|
content: z.ZodObject<{
|
|
532
596
|
c: z.ZodString;
|
|
533
597
|
t: z.ZodEnum<["encrypted", "plaintext"]>;
|
|
598
|
+
contextBoundary: z.ZodOptional<z.ZodEnum<["clear", "compact"]>>;
|
|
534
599
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
535
600
|
c: z.ZodString;
|
|
536
601
|
t: z.ZodEnum<["encrypted", "plaintext"]>;
|
|
602
|
+
contextBoundary: z.ZodOptional<z.ZodEnum<["clear", "compact"]>>;
|
|
537
603
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
538
604
|
c: z.ZodString;
|
|
539
605
|
t: z.ZodEnum<["encrypted", "plaintext"]>;
|
|
606
|
+
contextBoundary: z.ZodOptional<z.ZodEnum<["clear", "compact"]>>;
|
|
540
607
|
}, z.ZodTypeAny, "passthrough">>;
|
|
541
608
|
createdAt: z.ZodNumber;
|
|
542
609
|
updatedAt: z.ZodNumber;
|
|
@@ -544,15 +611,19 @@ export declare const CoreUpdateBodySchema: z.ZodDiscriminatedUnion<"t", [z.ZodOb
|
|
|
544
611
|
id: z.ZodString;
|
|
545
612
|
seq: z.ZodNumber;
|
|
546
613
|
localId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
614
|
+
contextBoundary: z.ZodOptional<z.ZodNullable<z.ZodEnum<["clear", "compact"]>>>;
|
|
547
615
|
content: z.ZodObject<{
|
|
548
616
|
c: z.ZodString;
|
|
549
617
|
t: z.ZodEnum<["encrypted", "plaintext"]>;
|
|
618
|
+
contextBoundary: z.ZodOptional<z.ZodEnum<["clear", "compact"]>>;
|
|
550
619
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
551
620
|
c: z.ZodString;
|
|
552
621
|
t: z.ZodEnum<["encrypted", "plaintext"]>;
|
|
622
|
+
contextBoundary: z.ZodOptional<z.ZodEnum<["clear", "compact"]>>;
|
|
553
623
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
554
624
|
c: z.ZodString;
|
|
555
625
|
t: z.ZodEnum<["encrypted", "plaintext"]>;
|
|
626
|
+
contextBoundary: z.ZodOptional<z.ZodEnum<["clear", "compact"]>>;
|
|
556
627
|
}, z.ZodTypeAny, "passthrough">>;
|
|
557
628
|
createdAt: z.ZodNumber;
|
|
558
629
|
updatedAt: z.ZodNumber;
|
|
@@ -560,15 +631,19 @@ export declare const CoreUpdateBodySchema: z.ZodDiscriminatedUnion<"t", [z.ZodOb
|
|
|
560
631
|
id: z.ZodString;
|
|
561
632
|
seq: z.ZodNumber;
|
|
562
633
|
localId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
634
|
+
contextBoundary: z.ZodOptional<z.ZodNullable<z.ZodEnum<["clear", "compact"]>>>;
|
|
563
635
|
content: z.ZodObject<{
|
|
564
636
|
c: z.ZodString;
|
|
565
637
|
t: z.ZodEnum<["encrypted", "plaintext"]>;
|
|
638
|
+
contextBoundary: z.ZodOptional<z.ZodEnum<["clear", "compact"]>>;
|
|
566
639
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
567
640
|
c: z.ZodString;
|
|
568
641
|
t: z.ZodEnum<["encrypted", "plaintext"]>;
|
|
642
|
+
contextBoundary: z.ZodOptional<z.ZodEnum<["clear", "compact"]>>;
|
|
569
643
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
570
644
|
c: z.ZodString;
|
|
571
645
|
t: z.ZodEnum<["encrypted", "plaintext"]>;
|
|
646
|
+
contextBoundary: z.ZodOptional<z.ZodEnum<["clear", "compact"]>>;
|
|
572
647
|
}, z.ZodTypeAny, "passthrough">>;
|
|
573
648
|
createdAt: z.ZodNumber;
|
|
574
649
|
updatedAt: z.ZodNumber;
|
|
@@ -580,15 +655,19 @@ export declare const CoreUpdateBodySchema: z.ZodDiscriminatedUnion<"t", [z.ZodOb
|
|
|
580
655
|
id: z.ZodString;
|
|
581
656
|
seq: z.ZodNumber;
|
|
582
657
|
localId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
658
|
+
contextBoundary: z.ZodOptional<z.ZodNullable<z.ZodEnum<["clear", "compact"]>>>;
|
|
583
659
|
content: z.ZodObject<{
|
|
584
660
|
c: z.ZodString;
|
|
585
661
|
t: z.ZodEnum<["encrypted", "plaintext"]>;
|
|
662
|
+
contextBoundary: z.ZodOptional<z.ZodEnum<["clear", "compact"]>>;
|
|
586
663
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
587
664
|
c: z.ZodString;
|
|
588
665
|
t: z.ZodEnum<["encrypted", "plaintext"]>;
|
|
666
|
+
contextBoundary: z.ZodOptional<z.ZodEnum<["clear", "compact"]>>;
|
|
589
667
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
590
668
|
c: z.ZodString;
|
|
591
669
|
t: z.ZodEnum<["encrypted", "plaintext"]>;
|
|
670
|
+
contextBoundary: z.ZodOptional<z.ZodEnum<["clear", "compact"]>>;
|
|
592
671
|
}, z.ZodTypeAny, "passthrough">>;
|
|
593
672
|
createdAt: z.ZodNumber;
|
|
594
673
|
updatedAt: z.ZodNumber;
|
|
@@ -596,15 +675,19 @@ export declare const CoreUpdateBodySchema: z.ZodDiscriminatedUnion<"t", [z.ZodOb
|
|
|
596
675
|
id: z.ZodString;
|
|
597
676
|
seq: z.ZodNumber;
|
|
598
677
|
localId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
678
|
+
contextBoundary: z.ZodOptional<z.ZodNullable<z.ZodEnum<["clear", "compact"]>>>;
|
|
599
679
|
content: z.ZodObject<{
|
|
600
680
|
c: z.ZodString;
|
|
601
681
|
t: z.ZodEnum<["encrypted", "plaintext"]>;
|
|
682
|
+
contextBoundary: z.ZodOptional<z.ZodEnum<["clear", "compact"]>>;
|
|
602
683
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
603
684
|
c: z.ZodString;
|
|
604
685
|
t: z.ZodEnum<["encrypted", "plaintext"]>;
|
|
686
|
+
contextBoundary: z.ZodOptional<z.ZodEnum<["clear", "compact"]>>;
|
|
605
687
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
606
688
|
c: z.ZodString;
|
|
607
689
|
t: z.ZodEnum<["encrypted", "plaintext"]>;
|
|
690
|
+
contextBoundary: z.ZodOptional<z.ZodEnum<["clear", "compact"]>>;
|
|
608
691
|
}, z.ZodTypeAny, "passthrough">>;
|
|
609
692
|
createdAt: z.ZodNumber;
|
|
610
693
|
updatedAt: z.ZodNumber;
|
|
@@ -612,15 +695,19 @@ export declare const CoreUpdateBodySchema: z.ZodDiscriminatedUnion<"t", [z.ZodOb
|
|
|
612
695
|
id: z.ZodString;
|
|
613
696
|
seq: z.ZodNumber;
|
|
614
697
|
localId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
698
|
+
contextBoundary: z.ZodOptional<z.ZodNullable<z.ZodEnum<["clear", "compact"]>>>;
|
|
615
699
|
content: z.ZodObject<{
|
|
616
700
|
c: z.ZodString;
|
|
617
701
|
t: z.ZodEnum<["encrypted", "plaintext"]>;
|
|
702
|
+
contextBoundary: z.ZodOptional<z.ZodEnum<["clear", "compact"]>>;
|
|
618
703
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
619
704
|
c: z.ZodString;
|
|
620
705
|
t: z.ZodEnum<["encrypted", "plaintext"]>;
|
|
706
|
+
contextBoundary: z.ZodOptional<z.ZodEnum<["clear", "compact"]>>;
|
|
621
707
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
622
708
|
c: z.ZodString;
|
|
623
709
|
t: z.ZodEnum<["encrypted", "plaintext"]>;
|
|
710
|
+
contextBoundary: z.ZodOptional<z.ZodEnum<["clear", "compact"]>>;
|
|
624
711
|
}, z.ZodTypeAny, "passthrough">>;
|
|
625
712
|
createdAt: z.ZodNumber;
|
|
626
713
|
updatedAt: z.ZodNumber;
|
|
@@ -632,15 +719,19 @@ export declare const CoreUpdateBodySchema: z.ZodDiscriminatedUnion<"t", [z.ZodOb
|
|
|
632
719
|
id: z.ZodString;
|
|
633
720
|
seq: z.ZodNumber;
|
|
634
721
|
localId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
722
|
+
contextBoundary: z.ZodOptional<z.ZodNullable<z.ZodEnum<["clear", "compact"]>>>;
|
|
635
723
|
content: z.ZodObject<{
|
|
636
724
|
c: z.ZodString;
|
|
637
725
|
t: z.ZodEnum<["encrypted", "plaintext"]>;
|
|
726
|
+
contextBoundary: z.ZodOptional<z.ZodEnum<["clear", "compact"]>>;
|
|
638
727
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
639
728
|
c: z.ZodString;
|
|
640
729
|
t: z.ZodEnum<["encrypted", "plaintext"]>;
|
|
730
|
+
contextBoundary: z.ZodOptional<z.ZodEnum<["clear", "compact"]>>;
|
|
641
731
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
642
732
|
c: z.ZodString;
|
|
643
733
|
t: z.ZodEnum<["encrypted", "plaintext"]>;
|
|
734
|
+
contextBoundary: z.ZodOptional<z.ZodEnum<["clear", "compact"]>>;
|
|
644
735
|
}, z.ZodTypeAny, "passthrough">>;
|
|
645
736
|
createdAt: z.ZodNumber;
|
|
646
737
|
updatedAt: z.ZodNumber;
|
|
@@ -648,15 +739,19 @@ export declare const CoreUpdateBodySchema: z.ZodDiscriminatedUnion<"t", [z.ZodOb
|
|
|
648
739
|
id: z.ZodString;
|
|
649
740
|
seq: z.ZodNumber;
|
|
650
741
|
localId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
742
|
+
contextBoundary: z.ZodOptional<z.ZodNullable<z.ZodEnum<["clear", "compact"]>>>;
|
|
651
743
|
content: z.ZodObject<{
|
|
652
744
|
c: z.ZodString;
|
|
653
745
|
t: z.ZodEnum<["encrypted", "plaintext"]>;
|
|
746
|
+
contextBoundary: z.ZodOptional<z.ZodEnum<["clear", "compact"]>>;
|
|
654
747
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
655
748
|
c: z.ZodString;
|
|
656
749
|
t: z.ZodEnum<["encrypted", "plaintext"]>;
|
|
750
|
+
contextBoundary: z.ZodOptional<z.ZodEnum<["clear", "compact"]>>;
|
|
657
751
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
658
752
|
c: z.ZodString;
|
|
659
753
|
t: z.ZodEnum<["encrypted", "plaintext"]>;
|
|
754
|
+
contextBoundary: z.ZodOptional<z.ZodEnum<["clear", "compact"]>>;
|
|
660
755
|
}, z.ZodTypeAny, "passthrough">>;
|
|
661
756
|
createdAt: z.ZodNumber;
|
|
662
757
|
updatedAt: z.ZodNumber;
|
|
@@ -664,15 +759,19 @@ export declare const CoreUpdateBodySchema: z.ZodDiscriminatedUnion<"t", [z.ZodOb
|
|
|
664
759
|
id: z.ZodString;
|
|
665
760
|
seq: z.ZodNumber;
|
|
666
761
|
localId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
762
|
+
contextBoundary: z.ZodOptional<z.ZodNullable<z.ZodEnum<["clear", "compact"]>>>;
|
|
667
763
|
content: z.ZodObject<{
|
|
668
764
|
c: z.ZodString;
|
|
669
765
|
t: z.ZodEnum<["encrypted", "plaintext"]>;
|
|
766
|
+
contextBoundary: z.ZodOptional<z.ZodEnum<["clear", "compact"]>>;
|
|
670
767
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
671
768
|
c: z.ZodString;
|
|
672
769
|
t: z.ZodEnum<["encrypted", "plaintext"]>;
|
|
770
|
+
contextBoundary: z.ZodOptional<z.ZodEnum<["clear", "compact"]>>;
|
|
673
771
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
674
772
|
c: z.ZodString;
|
|
675
773
|
t: z.ZodEnum<["encrypted", "plaintext"]>;
|
|
774
|
+
contextBoundary: z.ZodOptional<z.ZodEnum<["clear", "compact"]>>;
|
|
676
775
|
}, z.ZodTypeAny, "passthrough">>;
|
|
677
776
|
createdAt: z.ZodNumber;
|
|
678
777
|
updatedAt: z.ZodNumber;
|
|
@@ -710,6 +809,15 @@ export declare const CoreUpdateBodySchema: z.ZodDiscriminatedUnion<"t", [z.ZodOb
|
|
|
710
809
|
contextUsage: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
711
810
|
/** Base64-encoded wrapped DEK — only present on session-create broadcast. */
|
|
712
811
|
dataEncryptionKey: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
812
|
+
/** RFC-084: session-level handoff switch, carried on the session-create
|
|
813
|
+
* broadcast so the web client's real-time session object has it without
|
|
814
|
+
* waiting for a full reload (list-sessions also returns it). */
|
|
815
|
+
handoffEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
816
|
+
/** RFC-084: delivery (proposal) IDs this session inherited from — same
|
|
817
|
+
* rationale as handoffEnabled: carried on the session-create broadcast so
|
|
818
|
+
* the web client's real-time session object has it without a full reload.
|
|
819
|
+
* list-sessions also returns it. */
|
|
820
|
+
inheritedFrom: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
713
821
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
714
822
|
t: z.ZodLiteral<"update-session">;
|
|
715
823
|
id: z.ZodString;
|
|
@@ -743,6 +851,15 @@ export declare const CoreUpdateBodySchema: z.ZodDiscriminatedUnion<"t", [z.ZodOb
|
|
|
743
851
|
contextUsage: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
744
852
|
/** Base64-encoded wrapped DEK — only present on session-create broadcast. */
|
|
745
853
|
dataEncryptionKey: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
854
|
+
/** RFC-084: session-level handoff switch, carried on the session-create
|
|
855
|
+
* broadcast so the web client's real-time session object has it without
|
|
856
|
+
* waiting for a full reload (list-sessions also returns it). */
|
|
857
|
+
handoffEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
858
|
+
/** RFC-084: delivery (proposal) IDs this session inherited from — same
|
|
859
|
+
* rationale as handoffEnabled: carried on the session-create broadcast so
|
|
860
|
+
* the web client's real-time session object has it without a full reload.
|
|
861
|
+
* list-sessions also returns it. */
|
|
862
|
+
inheritedFrom: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
746
863
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
747
864
|
t: z.ZodLiteral<"update-session">;
|
|
748
865
|
id: z.ZodString;
|
|
@@ -776,6 +893,15 @@ export declare const CoreUpdateBodySchema: z.ZodDiscriminatedUnion<"t", [z.ZodOb
|
|
|
776
893
|
contextUsage: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
777
894
|
/** Base64-encoded wrapped DEK — only present on session-create broadcast. */
|
|
778
895
|
dataEncryptionKey: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
896
|
+
/** RFC-084: session-level handoff switch, carried on the session-create
|
|
897
|
+
* broadcast so the web client's real-time session object has it without
|
|
898
|
+
* waiting for a full reload (list-sessions also returns it). */
|
|
899
|
+
handoffEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
900
|
+
/** RFC-084: delivery (proposal) IDs this session inherited from — same
|
|
901
|
+
* rationale as handoffEnabled: carried on the session-create broadcast so
|
|
902
|
+
* the web client's real-time session object has it without a full reload.
|
|
903
|
+
* list-sessions also returns it. */
|
|
904
|
+
inheritedFrom: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
779
905
|
}, z.ZodTypeAny, "passthrough">>, z.ZodObject<{
|
|
780
906
|
t: z.ZodLiteral<"update-machine">;
|
|
781
907
|
machineId: z.ZodString;
|
|
@@ -1007,15 +1133,19 @@ export declare const CoreUpdateContainerSchema: z.ZodObject<{
|
|
|
1007
1133
|
id: z.ZodString;
|
|
1008
1134
|
seq: z.ZodNumber;
|
|
1009
1135
|
localId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1136
|
+
contextBoundary: z.ZodOptional<z.ZodNullable<z.ZodEnum<["clear", "compact"]>>>;
|
|
1010
1137
|
content: z.ZodObject<{
|
|
1011
1138
|
c: z.ZodString;
|
|
1012
1139
|
t: z.ZodEnum<["encrypted", "plaintext"]>;
|
|
1140
|
+
contextBoundary: z.ZodOptional<z.ZodEnum<["clear", "compact"]>>;
|
|
1013
1141
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
1014
1142
|
c: z.ZodString;
|
|
1015
1143
|
t: z.ZodEnum<["encrypted", "plaintext"]>;
|
|
1144
|
+
contextBoundary: z.ZodOptional<z.ZodEnum<["clear", "compact"]>>;
|
|
1016
1145
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
1017
1146
|
c: z.ZodString;
|
|
1018
1147
|
t: z.ZodEnum<["encrypted", "plaintext"]>;
|
|
1148
|
+
contextBoundary: z.ZodOptional<z.ZodEnum<["clear", "compact"]>>;
|
|
1019
1149
|
}, z.ZodTypeAny, "passthrough">>;
|
|
1020
1150
|
createdAt: z.ZodNumber;
|
|
1021
1151
|
updatedAt: z.ZodNumber;
|
|
@@ -1023,15 +1153,19 @@ export declare const CoreUpdateContainerSchema: z.ZodObject<{
|
|
|
1023
1153
|
id: z.ZodString;
|
|
1024
1154
|
seq: z.ZodNumber;
|
|
1025
1155
|
localId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1156
|
+
contextBoundary: z.ZodOptional<z.ZodNullable<z.ZodEnum<["clear", "compact"]>>>;
|
|
1026
1157
|
content: z.ZodObject<{
|
|
1027
1158
|
c: z.ZodString;
|
|
1028
1159
|
t: z.ZodEnum<["encrypted", "plaintext"]>;
|
|
1160
|
+
contextBoundary: z.ZodOptional<z.ZodEnum<["clear", "compact"]>>;
|
|
1029
1161
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
1030
1162
|
c: z.ZodString;
|
|
1031
1163
|
t: z.ZodEnum<["encrypted", "plaintext"]>;
|
|
1164
|
+
contextBoundary: z.ZodOptional<z.ZodEnum<["clear", "compact"]>>;
|
|
1032
1165
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
1033
1166
|
c: z.ZodString;
|
|
1034
1167
|
t: z.ZodEnum<["encrypted", "plaintext"]>;
|
|
1168
|
+
contextBoundary: z.ZodOptional<z.ZodEnum<["clear", "compact"]>>;
|
|
1035
1169
|
}, z.ZodTypeAny, "passthrough">>;
|
|
1036
1170
|
createdAt: z.ZodNumber;
|
|
1037
1171
|
updatedAt: z.ZodNumber;
|
|
@@ -1039,15 +1173,19 @@ export declare const CoreUpdateContainerSchema: z.ZodObject<{
|
|
|
1039
1173
|
id: z.ZodString;
|
|
1040
1174
|
seq: z.ZodNumber;
|
|
1041
1175
|
localId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1176
|
+
contextBoundary: z.ZodOptional<z.ZodNullable<z.ZodEnum<["clear", "compact"]>>>;
|
|
1042
1177
|
content: z.ZodObject<{
|
|
1043
1178
|
c: z.ZodString;
|
|
1044
1179
|
t: z.ZodEnum<["encrypted", "plaintext"]>;
|
|
1180
|
+
contextBoundary: z.ZodOptional<z.ZodEnum<["clear", "compact"]>>;
|
|
1045
1181
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
1046
1182
|
c: z.ZodString;
|
|
1047
1183
|
t: z.ZodEnum<["encrypted", "plaintext"]>;
|
|
1184
|
+
contextBoundary: z.ZodOptional<z.ZodEnum<["clear", "compact"]>>;
|
|
1048
1185
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
1049
1186
|
c: z.ZodString;
|
|
1050
1187
|
t: z.ZodEnum<["encrypted", "plaintext"]>;
|
|
1188
|
+
contextBoundary: z.ZodOptional<z.ZodEnum<["clear", "compact"]>>;
|
|
1051
1189
|
}, z.ZodTypeAny, "passthrough">>;
|
|
1052
1190
|
createdAt: z.ZodNumber;
|
|
1053
1191
|
updatedAt: z.ZodNumber;
|
|
@@ -1059,15 +1197,19 @@ export declare const CoreUpdateContainerSchema: z.ZodObject<{
|
|
|
1059
1197
|
id: z.ZodString;
|
|
1060
1198
|
seq: z.ZodNumber;
|
|
1061
1199
|
localId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1200
|
+
contextBoundary: z.ZodOptional<z.ZodNullable<z.ZodEnum<["clear", "compact"]>>>;
|
|
1062
1201
|
content: z.ZodObject<{
|
|
1063
1202
|
c: z.ZodString;
|
|
1064
1203
|
t: z.ZodEnum<["encrypted", "plaintext"]>;
|
|
1204
|
+
contextBoundary: z.ZodOptional<z.ZodEnum<["clear", "compact"]>>;
|
|
1065
1205
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
1066
1206
|
c: z.ZodString;
|
|
1067
1207
|
t: z.ZodEnum<["encrypted", "plaintext"]>;
|
|
1208
|
+
contextBoundary: z.ZodOptional<z.ZodEnum<["clear", "compact"]>>;
|
|
1068
1209
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
1069
1210
|
c: z.ZodString;
|
|
1070
1211
|
t: z.ZodEnum<["encrypted", "plaintext"]>;
|
|
1212
|
+
contextBoundary: z.ZodOptional<z.ZodEnum<["clear", "compact"]>>;
|
|
1071
1213
|
}, z.ZodTypeAny, "passthrough">>;
|
|
1072
1214
|
createdAt: z.ZodNumber;
|
|
1073
1215
|
updatedAt: z.ZodNumber;
|
|
@@ -1075,15 +1217,19 @@ export declare const CoreUpdateContainerSchema: z.ZodObject<{
|
|
|
1075
1217
|
id: z.ZodString;
|
|
1076
1218
|
seq: z.ZodNumber;
|
|
1077
1219
|
localId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1220
|
+
contextBoundary: z.ZodOptional<z.ZodNullable<z.ZodEnum<["clear", "compact"]>>>;
|
|
1078
1221
|
content: z.ZodObject<{
|
|
1079
1222
|
c: z.ZodString;
|
|
1080
1223
|
t: z.ZodEnum<["encrypted", "plaintext"]>;
|
|
1224
|
+
contextBoundary: z.ZodOptional<z.ZodEnum<["clear", "compact"]>>;
|
|
1081
1225
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
1082
1226
|
c: z.ZodString;
|
|
1083
1227
|
t: z.ZodEnum<["encrypted", "plaintext"]>;
|
|
1228
|
+
contextBoundary: z.ZodOptional<z.ZodEnum<["clear", "compact"]>>;
|
|
1084
1229
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
1085
1230
|
c: z.ZodString;
|
|
1086
1231
|
t: z.ZodEnum<["encrypted", "plaintext"]>;
|
|
1232
|
+
contextBoundary: z.ZodOptional<z.ZodEnum<["clear", "compact"]>>;
|
|
1087
1233
|
}, z.ZodTypeAny, "passthrough">>;
|
|
1088
1234
|
createdAt: z.ZodNumber;
|
|
1089
1235
|
updatedAt: z.ZodNumber;
|
|
@@ -1091,15 +1237,19 @@ export declare const CoreUpdateContainerSchema: z.ZodObject<{
|
|
|
1091
1237
|
id: z.ZodString;
|
|
1092
1238
|
seq: z.ZodNumber;
|
|
1093
1239
|
localId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1240
|
+
contextBoundary: z.ZodOptional<z.ZodNullable<z.ZodEnum<["clear", "compact"]>>>;
|
|
1094
1241
|
content: z.ZodObject<{
|
|
1095
1242
|
c: z.ZodString;
|
|
1096
1243
|
t: z.ZodEnum<["encrypted", "plaintext"]>;
|
|
1244
|
+
contextBoundary: z.ZodOptional<z.ZodEnum<["clear", "compact"]>>;
|
|
1097
1245
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
1098
1246
|
c: z.ZodString;
|
|
1099
1247
|
t: z.ZodEnum<["encrypted", "plaintext"]>;
|
|
1248
|
+
contextBoundary: z.ZodOptional<z.ZodEnum<["clear", "compact"]>>;
|
|
1100
1249
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
1101
1250
|
c: z.ZodString;
|
|
1102
1251
|
t: z.ZodEnum<["encrypted", "plaintext"]>;
|
|
1252
|
+
contextBoundary: z.ZodOptional<z.ZodEnum<["clear", "compact"]>>;
|
|
1103
1253
|
}, z.ZodTypeAny, "passthrough">>;
|
|
1104
1254
|
createdAt: z.ZodNumber;
|
|
1105
1255
|
updatedAt: z.ZodNumber;
|
|
@@ -1111,15 +1261,19 @@ export declare const CoreUpdateContainerSchema: z.ZodObject<{
|
|
|
1111
1261
|
id: z.ZodString;
|
|
1112
1262
|
seq: z.ZodNumber;
|
|
1113
1263
|
localId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1264
|
+
contextBoundary: z.ZodOptional<z.ZodNullable<z.ZodEnum<["clear", "compact"]>>>;
|
|
1114
1265
|
content: z.ZodObject<{
|
|
1115
1266
|
c: z.ZodString;
|
|
1116
1267
|
t: z.ZodEnum<["encrypted", "plaintext"]>;
|
|
1268
|
+
contextBoundary: z.ZodOptional<z.ZodEnum<["clear", "compact"]>>;
|
|
1117
1269
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
1118
1270
|
c: z.ZodString;
|
|
1119
1271
|
t: z.ZodEnum<["encrypted", "plaintext"]>;
|
|
1272
|
+
contextBoundary: z.ZodOptional<z.ZodEnum<["clear", "compact"]>>;
|
|
1120
1273
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
1121
1274
|
c: z.ZodString;
|
|
1122
1275
|
t: z.ZodEnum<["encrypted", "plaintext"]>;
|
|
1276
|
+
contextBoundary: z.ZodOptional<z.ZodEnum<["clear", "compact"]>>;
|
|
1123
1277
|
}, z.ZodTypeAny, "passthrough">>;
|
|
1124
1278
|
createdAt: z.ZodNumber;
|
|
1125
1279
|
updatedAt: z.ZodNumber;
|
|
@@ -1127,15 +1281,19 @@ export declare const CoreUpdateContainerSchema: z.ZodObject<{
|
|
|
1127
1281
|
id: z.ZodString;
|
|
1128
1282
|
seq: z.ZodNumber;
|
|
1129
1283
|
localId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1284
|
+
contextBoundary: z.ZodOptional<z.ZodNullable<z.ZodEnum<["clear", "compact"]>>>;
|
|
1130
1285
|
content: z.ZodObject<{
|
|
1131
1286
|
c: z.ZodString;
|
|
1132
1287
|
t: z.ZodEnum<["encrypted", "plaintext"]>;
|
|
1288
|
+
contextBoundary: z.ZodOptional<z.ZodEnum<["clear", "compact"]>>;
|
|
1133
1289
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
1134
1290
|
c: z.ZodString;
|
|
1135
1291
|
t: z.ZodEnum<["encrypted", "plaintext"]>;
|
|
1292
|
+
contextBoundary: z.ZodOptional<z.ZodEnum<["clear", "compact"]>>;
|
|
1136
1293
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
1137
1294
|
c: z.ZodString;
|
|
1138
1295
|
t: z.ZodEnum<["encrypted", "plaintext"]>;
|
|
1296
|
+
contextBoundary: z.ZodOptional<z.ZodEnum<["clear", "compact"]>>;
|
|
1139
1297
|
}, z.ZodTypeAny, "passthrough">>;
|
|
1140
1298
|
createdAt: z.ZodNumber;
|
|
1141
1299
|
updatedAt: z.ZodNumber;
|
|
@@ -1143,15 +1301,19 @@ export declare const CoreUpdateContainerSchema: z.ZodObject<{
|
|
|
1143
1301
|
id: z.ZodString;
|
|
1144
1302
|
seq: z.ZodNumber;
|
|
1145
1303
|
localId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1304
|
+
contextBoundary: z.ZodOptional<z.ZodNullable<z.ZodEnum<["clear", "compact"]>>>;
|
|
1146
1305
|
content: z.ZodObject<{
|
|
1147
1306
|
c: z.ZodString;
|
|
1148
1307
|
t: z.ZodEnum<["encrypted", "plaintext"]>;
|
|
1308
|
+
contextBoundary: z.ZodOptional<z.ZodEnum<["clear", "compact"]>>;
|
|
1149
1309
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
1150
1310
|
c: z.ZodString;
|
|
1151
1311
|
t: z.ZodEnum<["encrypted", "plaintext"]>;
|
|
1312
|
+
contextBoundary: z.ZodOptional<z.ZodEnum<["clear", "compact"]>>;
|
|
1152
1313
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
1153
1314
|
c: z.ZodString;
|
|
1154
1315
|
t: z.ZodEnum<["encrypted", "plaintext"]>;
|
|
1316
|
+
contextBoundary: z.ZodOptional<z.ZodEnum<["clear", "compact"]>>;
|
|
1155
1317
|
}, z.ZodTypeAny, "passthrough">>;
|
|
1156
1318
|
createdAt: z.ZodNumber;
|
|
1157
1319
|
updatedAt: z.ZodNumber;
|
|
@@ -1189,6 +1351,15 @@ export declare const CoreUpdateContainerSchema: z.ZodObject<{
|
|
|
1189
1351
|
contextUsage: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
1190
1352
|
/** Base64-encoded wrapped DEK — only present on session-create broadcast. */
|
|
1191
1353
|
dataEncryptionKey: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1354
|
+
/** RFC-084: session-level handoff switch, carried on the session-create
|
|
1355
|
+
* broadcast so the web client's real-time session object has it without
|
|
1356
|
+
* waiting for a full reload (list-sessions also returns it). */
|
|
1357
|
+
handoffEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
1358
|
+
/** RFC-084: delivery (proposal) IDs this session inherited from — same
|
|
1359
|
+
* rationale as handoffEnabled: carried on the session-create broadcast so
|
|
1360
|
+
* the web client's real-time session object has it without a full reload.
|
|
1361
|
+
* list-sessions also returns it. */
|
|
1362
|
+
inheritedFrom: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
1192
1363
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
1193
1364
|
t: z.ZodLiteral<"update-session">;
|
|
1194
1365
|
id: z.ZodString;
|
|
@@ -1222,6 +1393,15 @@ export declare const CoreUpdateContainerSchema: z.ZodObject<{
|
|
|
1222
1393
|
contextUsage: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
1223
1394
|
/** Base64-encoded wrapped DEK — only present on session-create broadcast. */
|
|
1224
1395
|
dataEncryptionKey: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1396
|
+
/** RFC-084: session-level handoff switch, carried on the session-create
|
|
1397
|
+
* broadcast so the web client's real-time session object has it without
|
|
1398
|
+
* waiting for a full reload (list-sessions also returns it). */
|
|
1399
|
+
handoffEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
1400
|
+
/** RFC-084: delivery (proposal) IDs this session inherited from — same
|
|
1401
|
+
* rationale as handoffEnabled: carried on the session-create broadcast so
|
|
1402
|
+
* the web client's real-time session object has it without a full reload.
|
|
1403
|
+
* list-sessions also returns it. */
|
|
1404
|
+
inheritedFrom: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
1225
1405
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
1226
1406
|
t: z.ZodLiteral<"update-session">;
|
|
1227
1407
|
id: z.ZodString;
|
|
@@ -1255,6 +1435,15 @@ export declare const CoreUpdateContainerSchema: z.ZodObject<{
|
|
|
1255
1435
|
contextUsage: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
1256
1436
|
/** Base64-encoded wrapped DEK — only present on session-create broadcast. */
|
|
1257
1437
|
dataEncryptionKey: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1438
|
+
/** RFC-084: session-level handoff switch, carried on the session-create
|
|
1439
|
+
* broadcast so the web client's real-time session object has it without
|
|
1440
|
+
* waiting for a full reload (list-sessions also returns it). */
|
|
1441
|
+
handoffEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
1442
|
+
/** RFC-084: delivery (proposal) IDs this session inherited from — same
|
|
1443
|
+
* rationale as handoffEnabled: carried on the session-create broadcast so
|
|
1444
|
+
* the web client's real-time session object has it without a full reload.
|
|
1445
|
+
* list-sessions also returns it. */
|
|
1446
|
+
inheritedFrom: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
1258
1447
|
}, z.ZodTypeAny, "passthrough">>, z.ZodObject<{
|
|
1259
1448
|
t: z.ZodLiteral<"update-machine">;
|
|
1260
1449
|
machineId: z.ZodString;
|
|
@@ -1486,15 +1675,19 @@ export declare const CoreUpdateContainerSchema: z.ZodObject<{
|
|
|
1486
1675
|
id: z.ZodString;
|
|
1487
1676
|
seq: z.ZodNumber;
|
|
1488
1677
|
localId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1678
|
+
contextBoundary: z.ZodOptional<z.ZodNullable<z.ZodEnum<["clear", "compact"]>>>;
|
|
1489
1679
|
content: z.ZodObject<{
|
|
1490
1680
|
c: z.ZodString;
|
|
1491
1681
|
t: z.ZodEnum<["encrypted", "plaintext"]>;
|
|
1682
|
+
contextBoundary: z.ZodOptional<z.ZodEnum<["clear", "compact"]>>;
|
|
1492
1683
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
1493
1684
|
c: z.ZodString;
|
|
1494
1685
|
t: z.ZodEnum<["encrypted", "plaintext"]>;
|
|
1686
|
+
contextBoundary: z.ZodOptional<z.ZodEnum<["clear", "compact"]>>;
|
|
1495
1687
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
1496
1688
|
c: z.ZodString;
|
|
1497
1689
|
t: z.ZodEnum<["encrypted", "plaintext"]>;
|
|
1690
|
+
contextBoundary: z.ZodOptional<z.ZodEnum<["clear", "compact"]>>;
|
|
1498
1691
|
}, z.ZodTypeAny, "passthrough">>;
|
|
1499
1692
|
createdAt: z.ZodNumber;
|
|
1500
1693
|
updatedAt: z.ZodNumber;
|
|
@@ -1502,15 +1695,19 @@ export declare const CoreUpdateContainerSchema: z.ZodObject<{
|
|
|
1502
1695
|
id: z.ZodString;
|
|
1503
1696
|
seq: z.ZodNumber;
|
|
1504
1697
|
localId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1698
|
+
contextBoundary: z.ZodOptional<z.ZodNullable<z.ZodEnum<["clear", "compact"]>>>;
|
|
1505
1699
|
content: z.ZodObject<{
|
|
1506
1700
|
c: z.ZodString;
|
|
1507
1701
|
t: z.ZodEnum<["encrypted", "plaintext"]>;
|
|
1702
|
+
contextBoundary: z.ZodOptional<z.ZodEnum<["clear", "compact"]>>;
|
|
1508
1703
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
1509
1704
|
c: z.ZodString;
|
|
1510
1705
|
t: z.ZodEnum<["encrypted", "plaintext"]>;
|
|
1706
|
+
contextBoundary: z.ZodOptional<z.ZodEnum<["clear", "compact"]>>;
|
|
1511
1707
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
1512
1708
|
c: z.ZodString;
|
|
1513
1709
|
t: z.ZodEnum<["encrypted", "plaintext"]>;
|
|
1710
|
+
contextBoundary: z.ZodOptional<z.ZodEnum<["clear", "compact"]>>;
|
|
1514
1711
|
}, z.ZodTypeAny, "passthrough">>;
|
|
1515
1712
|
createdAt: z.ZodNumber;
|
|
1516
1713
|
updatedAt: z.ZodNumber;
|
|
@@ -1518,15 +1715,19 @@ export declare const CoreUpdateContainerSchema: z.ZodObject<{
|
|
|
1518
1715
|
id: z.ZodString;
|
|
1519
1716
|
seq: z.ZodNumber;
|
|
1520
1717
|
localId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1718
|
+
contextBoundary: z.ZodOptional<z.ZodNullable<z.ZodEnum<["clear", "compact"]>>>;
|
|
1521
1719
|
content: z.ZodObject<{
|
|
1522
1720
|
c: z.ZodString;
|
|
1523
1721
|
t: z.ZodEnum<["encrypted", "plaintext"]>;
|
|
1722
|
+
contextBoundary: z.ZodOptional<z.ZodEnum<["clear", "compact"]>>;
|
|
1524
1723
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
1525
1724
|
c: z.ZodString;
|
|
1526
1725
|
t: z.ZodEnum<["encrypted", "plaintext"]>;
|
|
1726
|
+
contextBoundary: z.ZodOptional<z.ZodEnum<["clear", "compact"]>>;
|
|
1527
1727
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
1528
1728
|
c: z.ZodString;
|
|
1529
1729
|
t: z.ZodEnum<["encrypted", "plaintext"]>;
|
|
1730
|
+
contextBoundary: z.ZodOptional<z.ZodEnum<["clear", "compact"]>>;
|
|
1530
1731
|
}, z.ZodTypeAny, "passthrough">>;
|
|
1531
1732
|
createdAt: z.ZodNumber;
|
|
1532
1733
|
updatedAt: z.ZodNumber;
|
|
@@ -1538,15 +1739,19 @@ export declare const CoreUpdateContainerSchema: z.ZodObject<{
|
|
|
1538
1739
|
id: z.ZodString;
|
|
1539
1740
|
seq: z.ZodNumber;
|
|
1540
1741
|
localId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1742
|
+
contextBoundary: z.ZodOptional<z.ZodNullable<z.ZodEnum<["clear", "compact"]>>>;
|
|
1541
1743
|
content: z.ZodObject<{
|
|
1542
1744
|
c: z.ZodString;
|
|
1543
1745
|
t: z.ZodEnum<["encrypted", "plaintext"]>;
|
|
1746
|
+
contextBoundary: z.ZodOptional<z.ZodEnum<["clear", "compact"]>>;
|
|
1544
1747
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
1545
1748
|
c: z.ZodString;
|
|
1546
1749
|
t: z.ZodEnum<["encrypted", "plaintext"]>;
|
|
1750
|
+
contextBoundary: z.ZodOptional<z.ZodEnum<["clear", "compact"]>>;
|
|
1547
1751
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
1548
1752
|
c: z.ZodString;
|
|
1549
1753
|
t: z.ZodEnum<["encrypted", "plaintext"]>;
|
|
1754
|
+
contextBoundary: z.ZodOptional<z.ZodEnum<["clear", "compact"]>>;
|
|
1550
1755
|
}, z.ZodTypeAny, "passthrough">>;
|
|
1551
1756
|
createdAt: z.ZodNumber;
|
|
1552
1757
|
updatedAt: z.ZodNumber;
|
|
@@ -1554,15 +1759,19 @@ export declare const CoreUpdateContainerSchema: z.ZodObject<{
|
|
|
1554
1759
|
id: z.ZodString;
|
|
1555
1760
|
seq: z.ZodNumber;
|
|
1556
1761
|
localId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1762
|
+
contextBoundary: z.ZodOptional<z.ZodNullable<z.ZodEnum<["clear", "compact"]>>>;
|
|
1557
1763
|
content: z.ZodObject<{
|
|
1558
1764
|
c: z.ZodString;
|
|
1559
1765
|
t: z.ZodEnum<["encrypted", "plaintext"]>;
|
|
1766
|
+
contextBoundary: z.ZodOptional<z.ZodEnum<["clear", "compact"]>>;
|
|
1560
1767
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
1561
1768
|
c: z.ZodString;
|
|
1562
1769
|
t: z.ZodEnum<["encrypted", "plaintext"]>;
|
|
1770
|
+
contextBoundary: z.ZodOptional<z.ZodEnum<["clear", "compact"]>>;
|
|
1563
1771
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
1564
1772
|
c: z.ZodString;
|
|
1565
1773
|
t: z.ZodEnum<["encrypted", "plaintext"]>;
|
|
1774
|
+
contextBoundary: z.ZodOptional<z.ZodEnum<["clear", "compact"]>>;
|
|
1566
1775
|
}, z.ZodTypeAny, "passthrough">>;
|
|
1567
1776
|
createdAt: z.ZodNumber;
|
|
1568
1777
|
updatedAt: z.ZodNumber;
|
|
@@ -1570,15 +1779,19 @@ export declare const CoreUpdateContainerSchema: z.ZodObject<{
|
|
|
1570
1779
|
id: z.ZodString;
|
|
1571
1780
|
seq: z.ZodNumber;
|
|
1572
1781
|
localId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1782
|
+
contextBoundary: z.ZodOptional<z.ZodNullable<z.ZodEnum<["clear", "compact"]>>>;
|
|
1573
1783
|
content: z.ZodObject<{
|
|
1574
1784
|
c: z.ZodString;
|
|
1575
1785
|
t: z.ZodEnum<["encrypted", "plaintext"]>;
|
|
1786
|
+
contextBoundary: z.ZodOptional<z.ZodEnum<["clear", "compact"]>>;
|
|
1576
1787
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
1577
1788
|
c: z.ZodString;
|
|
1578
1789
|
t: z.ZodEnum<["encrypted", "plaintext"]>;
|
|
1790
|
+
contextBoundary: z.ZodOptional<z.ZodEnum<["clear", "compact"]>>;
|
|
1579
1791
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
1580
1792
|
c: z.ZodString;
|
|
1581
1793
|
t: z.ZodEnum<["encrypted", "plaintext"]>;
|
|
1794
|
+
contextBoundary: z.ZodOptional<z.ZodEnum<["clear", "compact"]>>;
|
|
1582
1795
|
}, z.ZodTypeAny, "passthrough">>;
|
|
1583
1796
|
createdAt: z.ZodNumber;
|
|
1584
1797
|
updatedAt: z.ZodNumber;
|
|
@@ -1590,15 +1803,19 @@ export declare const CoreUpdateContainerSchema: z.ZodObject<{
|
|
|
1590
1803
|
id: z.ZodString;
|
|
1591
1804
|
seq: z.ZodNumber;
|
|
1592
1805
|
localId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1806
|
+
contextBoundary: z.ZodOptional<z.ZodNullable<z.ZodEnum<["clear", "compact"]>>>;
|
|
1593
1807
|
content: z.ZodObject<{
|
|
1594
1808
|
c: z.ZodString;
|
|
1595
1809
|
t: z.ZodEnum<["encrypted", "plaintext"]>;
|
|
1810
|
+
contextBoundary: z.ZodOptional<z.ZodEnum<["clear", "compact"]>>;
|
|
1596
1811
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
1597
1812
|
c: z.ZodString;
|
|
1598
1813
|
t: z.ZodEnum<["encrypted", "plaintext"]>;
|
|
1814
|
+
contextBoundary: z.ZodOptional<z.ZodEnum<["clear", "compact"]>>;
|
|
1599
1815
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
1600
1816
|
c: z.ZodString;
|
|
1601
1817
|
t: z.ZodEnum<["encrypted", "plaintext"]>;
|
|
1818
|
+
contextBoundary: z.ZodOptional<z.ZodEnum<["clear", "compact"]>>;
|
|
1602
1819
|
}, z.ZodTypeAny, "passthrough">>;
|
|
1603
1820
|
createdAt: z.ZodNumber;
|
|
1604
1821
|
updatedAt: z.ZodNumber;
|
|
@@ -1606,15 +1823,19 @@ export declare const CoreUpdateContainerSchema: z.ZodObject<{
|
|
|
1606
1823
|
id: z.ZodString;
|
|
1607
1824
|
seq: z.ZodNumber;
|
|
1608
1825
|
localId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1826
|
+
contextBoundary: z.ZodOptional<z.ZodNullable<z.ZodEnum<["clear", "compact"]>>>;
|
|
1609
1827
|
content: z.ZodObject<{
|
|
1610
1828
|
c: z.ZodString;
|
|
1611
1829
|
t: z.ZodEnum<["encrypted", "plaintext"]>;
|
|
1830
|
+
contextBoundary: z.ZodOptional<z.ZodEnum<["clear", "compact"]>>;
|
|
1612
1831
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
1613
1832
|
c: z.ZodString;
|
|
1614
1833
|
t: z.ZodEnum<["encrypted", "plaintext"]>;
|
|
1834
|
+
contextBoundary: z.ZodOptional<z.ZodEnum<["clear", "compact"]>>;
|
|
1615
1835
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
1616
1836
|
c: z.ZodString;
|
|
1617
1837
|
t: z.ZodEnum<["encrypted", "plaintext"]>;
|
|
1838
|
+
contextBoundary: z.ZodOptional<z.ZodEnum<["clear", "compact"]>>;
|
|
1618
1839
|
}, z.ZodTypeAny, "passthrough">>;
|
|
1619
1840
|
createdAt: z.ZodNumber;
|
|
1620
1841
|
updatedAt: z.ZodNumber;
|
|
@@ -1622,15 +1843,19 @@ export declare const CoreUpdateContainerSchema: z.ZodObject<{
|
|
|
1622
1843
|
id: z.ZodString;
|
|
1623
1844
|
seq: z.ZodNumber;
|
|
1624
1845
|
localId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1846
|
+
contextBoundary: z.ZodOptional<z.ZodNullable<z.ZodEnum<["clear", "compact"]>>>;
|
|
1625
1847
|
content: z.ZodObject<{
|
|
1626
1848
|
c: z.ZodString;
|
|
1627
1849
|
t: z.ZodEnum<["encrypted", "plaintext"]>;
|
|
1850
|
+
contextBoundary: z.ZodOptional<z.ZodEnum<["clear", "compact"]>>;
|
|
1628
1851
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
1629
1852
|
c: z.ZodString;
|
|
1630
1853
|
t: z.ZodEnum<["encrypted", "plaintext"]>;
|
|
1854
|
+
contextBoundary: z.ZodOptional<z.ZodEnum<["clear", "compact"]>>;
|
|
1631
1855
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
1632
1856
|
c: z.ZodString;
|
|
1633
1857
|
t: z.ZodEnum<["encrypted", "plaintext"]>;
|
|
1858
|
+
contextBoundary: z.ZodOptional<z.ZodEnum<["clear", "compact"]>>;
|
|
1634
1859
|
}, z.ZodTypeAny, "passthrough">>;
|
|
1635
1860
|
createdAt: z.ZodNumber;
|
|
1636
1861
|
updatedAt: z.ZodNumber;
|
|
@@ -1668,6 +1893,15 @@ export declare const CoreUpdateContainerSchema: z.ZodObject<{
|
|
|
1668
1893
|
contextUsage: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
1669
1894
|
/** Base64-encoded wrapped DEK — only present on session-create broadcast. */
|
|
1670
1895
|
dataEncryptionKey: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1896
|
+
/** RFC-084: session-level handoff switch, carried on the session-create
|
|
1897
|
+
* broadcast so the web client's real-time session object has it without
|
|
1898
|
+
* waiting for a full reload (list-sessions also returns it). */
|
|
1899
|
+
handoffEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
1900
|
+
/** RFC-084: delivery (proposal) IDs this session inherited from — same
|
|
1901
|
+
* rationale as handoffEnabled: carried on the session-create broadcast so
|
|
1902
|
+
* the web client's real-time session object has it without a full reload.
|
|
1903
|
+
* list-sessions also returns it. */
|
|
1904
|
+
inheritedFrom: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
1671
1905
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
1672
1906
|
t: z.ZodLiteral<"update-session">;
|
|
1673
1907
|
id: z.ZodString;
|
|
@@ -1701,6 +1935,15 @@ export declare const CoreUpdateContainerSchema: z.ZodObject<{
|
|
|
1701
1935
|
contextUsage: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
1702
1936
|
/** Base64-encoded wrapped DEK — only present on session-create broadcast. */
|
|
1703
1937
|
dataEncryptionKey: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1938
|
+
/** RFC-084: session-level handoff switch, carried on the session-create
|
|
1939
|
+
* broadcast so the web client's real-time session object has it without
|
|
1940
|
+
* waiting for a full reload (list-sessions also returns it). */
|
|
1941
|
+
handoffEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
1942
|
+
/** RFC-084: delivery (proposal) IDs this session inherited from — same
|
|
1943
|
+
* rationale as handoffEnabled: carried on the session-create broadcast so
|
|
1944
|
+
* the web client's real-time session object has it without a full reload.
|
|
1945
|
+
* list-sessions also returns it. */
|
|
1946
|
+
inheritedFrom: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
1704
1947
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
1705
1948
|
t: z.ZodLiteral<"update-session">;
|
|
1706
1949
|
id: z.ZodString;
|
|
@@ -1734,6 +1977,15 @@ export declare const CoreUpdateContainerSchema: z.ZodObject<{
|
|
|
1734
1977
|
contextUsage: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
1735
1978
|
/** Base64-encoded wrapped DEK — only present on session-create broadcast. */
|
|
1736
1979
|
dataEncryptionKey: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1980
|
+
/** RFC-084: session-level handoff switch, carried on the session-create
|
|
1981
|
+
* broadcast so the web client's real-time session object has it without
|
|
1982
|
+
* waiting for a full reload (list-sessions also returns it). */
|
|
1983
|
+
handoffEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
1984
|
+
/** RFC-084: delivery (proposal) IDs this session inherited from — same
|
|
1985
|
+
* rationale as handoffEnabled: carried on the session-create broadcast so
|
|
1986
|
+
* the web client's real-time session object has it without a full reload.
|
|
1987
|
+
* list-sessions also returns it. */
|
|
1988
|
+
inheritedFrom: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
1737
1989
|
}, z.ZodTypeAny, "passthrough">>, z.ZodObject<{
|
|
1738
1990
|
t: z.ZodLiteral<"update-machine">;
|
|
1739
1991
|
machineId: z.ZodString;
|
|
@@ -1965,15 +2217,19 @@ export declare const CoreUpdateContainerSchema: z.ZodObject<{
|
|
|
1965
2217
|
id: z.ZodString;
|
|
1966
2218
|
seq: z.ZodNumber;
|
|
1967
2219
|
localId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2220
|
+
contextBoundary: z.ZodOptional<z.ZodNullable<z.ZodEnum<["clear", "compact"]>>>;
|
|
1968
2221
|
content: z.ZodObject<{
|
|
1969
2222
|
c: z.ZodString;
|
|
1970
2223
|
t: z.ZodEnum<["encrypted", "plaintext"]>;
|
|
2224
|
+
contextBoundary: z.ZodOptional<z.ZodEnum<["clear", "compact"]>>;
|
|
1971
2225
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
1972
2226
|
c: z.ZodString;
|
|
1973
2227
|
t: z.ZodEnum<["encrypted", "plaintext"]>;
|
|
2228
|
+
contextBoundary: z.ZodOptional<z.ZodEnum<["clear", "compact"]>>;
|
|
1974
2229
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
1975
2230
|
c: z.ZodString;
|
|
1976
2231
|
t: z.ZodEnum<["encrypted", "plaintext"]>;
|
|
2232
|
+
contextBoundary: z.ZodOptional<z.ZodEnum<["clear", "compact"]>>;
|
|
1977
2233
|
}, z.ZodTypeAny, "passthrough">>;
|
|
1978
2234
|
createdAt: z.ZodNumber;
|
|
1979
2235
|
updatedAt: z.ZodNumber;
|
|
@@ -1981,15 +2237,19 @@ export declare const CoreUpdateContainerSchema: z.ZodObject<{
|
|
|
1981
2237
|
id: z.ZodString;
|
|
1982
2238
|
seq: z.ZodNumber;
|
|
1983
2239
|
localId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2240
|
+
contextBoundary: z.ZodOptional<z.ZodNullable<z.ZodEnum<["clear", "compact"]>>>;
|
|
1984
2241
|
content: z.ZodObject<{
|
|
1985
2242
|
c: z.ZodString;
|
|
1986
2243
|
t: z.ZodEnum<["encrypted", "plaintext"]>;
|
|
2244
|
+
contextBoundary: z.ZodOptional<z.ZodEnum<["clear", "compact"]>>;
|
|
1987
2245
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
1988
2246
|
c: z.ZodString;
|
|
1989
2247
|
t: z.ZodEnum<["encrypted", "plaintext"]>;
|
|
2248
|
+
contextBoundary: z.ZodOptional<z.ZodEnum<["clear", "compact"]>>;
|
|
1990
2249
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
1991
2250
|
c: z.ZodString;
|
|
1992
2251
|
t: z.ZodEnum<["encrypted", "plaintext"]>;
|
|
2252
|
+
contextBoundary: z.ZodOptional<z.ZodEnum<["clear", "compact"]>>;
|
|
1993
2253
|
}, z.ZodTypeAny, "passthrough">>;
|
|
1994
2254
|
createdAt: z.ZodNumber;
|
|
1995
2255
|
updatedAt: z.ZodNumber;
|
|
@@ -1997,15 +2257,19 @@ export declare const CoreUpdateContainerSchema: z.ZodObject<{
|
|
|
1997
2257
|
id: z.ZodString;
|
|
1998
2258
|
seq: z.ZodNumber;
|
|
1999
2259
|
localId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2260
|
+
contextBoundary: z.ZodOptional<z.ZodNullable<z.ZodEnum<["clear", "compact"]>>>;
|
|
2000
2261
|
content: z.ZodObject<{
|
|
2001
2262
|
c: z.ZodString;
|
|
2002
2263
|
t: z.ZodEnum<["encrypted", "plaintext"]>;
|
|
2264
|
+
contextBoundary: z.ZodOptional<z.ZodEnum<["clear", "compact"]>>;
|
|
2003
2265
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
2004
2266
|
c: z.ZodString;
|
|
2005
2267
|
t: z.ZodEnum<["encrypted", "plaintext"]>;
|
|
2268
|
+
contextBoundary: z.ZodOptional<z.ZodEnum<["clear", "compact"]>>;
|
|
2006
2269
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
2007
2270
|
c: z.ZodString;
|
|
2008
2271
|
t: z.ZodEnum<["encrypted", "plaintext"]>;
|
|
2272
|
+
contextBoundary: z.ZodOptional<z.ZodEnum<["clear", "compact"]>>;
|
|
2009
2273
|
}, z.ZodTypeAny, "passthrough">>;
|
|
2010
2274
|
createdAt: z.ZodNumber;
|
|
2011
2275
|
updatedAt: z.ZodNumber;
|
|
@@ -2017,15 +2281,19 @@ export declare const CoreUpdateContainerSchema: z.ZodObject<{
|
|
|
2017
2281
|
id: z.ZodString;
|
|
2018
2282
|
seq: z.ZodNumber;
|
|
2019
2283
|
localId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2284
|
+
contextBoundary: z.ZodOptional<z.ZodNullable<z.ZodEnum<["clear", "compact"]>>>;
|
|
2020
2285
|
content: z.ZodObject<{
|
|
2021
2286
|
c: z.ZodString;
|
|
2022
2287
|
t: z.ZodEnum<["encrypted", "plaintext"]>;
|
|
2288
|
+
contextBoundary: z.ZodOptional<z.ZodEnum<["clear", "compact"]>>;
|
|
2023
2289
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
2024
2290
|
c: z.ZodString;
|
|
2025
2291
|
t: z.ZodEnum<["encrypted", "plaintext"]>;
|
|
2292
|
+
contextBoundary: z.ZodOptional<z.ZodEnum<["clear", "compact"]>>;
|
|
2026
2293
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
2027
2294
|
c: z.ZodString;
|
|
2028
2295
|
t: z.ZodEnum<["encrypted", "plaintext"]>;
|
|
2296
|
+
contextBoundary: z.ZodOptional<z.ZodEnum<["clear", "compact"]>>;
|
|
2029
2297
|
}, z.ZodTypeAny, "passthrough">>;
|
|
2030
2298
|
createdAt: z.ZodNumber;
|
|
2031
2299
|
updatedAt: z.ZodNumber;
|
|
@@ -2033,15 +2301,19 @@ export declare const CoreUpdateContainerSchema: z.ZodObject<{
|
|
|
2033
2301
|
id: z.ZodString;
|
|
2034
2302
|
seq: z.ZodNumber;
|
|
2035
2303
|
localId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2304
|
+
contextBoundary: z.ZodOptional<z.ZodNullable<z.ZodEnum<["clear", "compact"]>>>;
|
|
2036
2305
|
content: z.ZodObject<{
|
|
2037
2306
|
c: z.ZodString;
|
|
2038
2307
|
t: z.ZodEnum<["encrypted", "plaintext"]>;
|
|
2308
|
+
contextBoundary: z.ZodOptional<z.ZodEnum<["clear", "compact"]>>;
|
|
2039
2309
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
2040
2310
|
c: z.ZodString;
|
|
2041
2311
|
t: z.ZodEnum<["encrypted", "plaintext"]>;
|
|
2312
|
+
contextBoundary: z.ZodOptional<z.ZodEnum<["clear", "compact"]>>;
|
|
2042
2313
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
2043
2314
|
c: z.ZodString;
|
|
2044
2315
|
t: z.ZodEnum<["encrypted", "plaintext"]>;
|
|
2316
|
+
contextBoundary: z.ZodOptional<z.ZodEnum<["clear", "compact"]>>;
|
|
2045
2317
|
}, z.ZodTypeAny, "passthrough">>;
|
|
2046
2318
|
createdAt: z.ZodNumber;
|
|
2047
2319
|
updatedAt: z.ZodNumber;
|
|
@@ -2049,15 +2321,19 @@ export declare const CoreUpdateContainerSchema: z.ZodObject<{
|
|
|
2049
2321
|
id: z.ZodString;
|
|
2050
2322
|
seq: z.ZodNumber;
|
|
2051
2323
|
localId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2324
|
+
contextBoundary: z.ZodOptional<z.ZodNullable<z.ZodEnum<["clear", "compact"]>>>;
|
|
2052
2325
|
content: z.ZodObject<{
|
|
2053
2326
|
c: z.ZodString;
|
|
2054
2327
|
t: z.ZodEnum<["encrypted", "plaintext"]>;
|
|
2328
|
+
contextBoundary: z.ZodOptional<z.ZodEnum<["clear", "compact"]>>;
|
|
2055
2329
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
2056
2330
|
c: z.ZodString;
|
|
2057
2331
|
t: z.ZodEnum<["encrypted", "plaintext"]>;
|
|
2332
|
+
contextBoundary: z.ZodOptional<z.ZodEnum<["clear", "compact"]>>;
|
|
2058
2333
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
2059
2334
|
c: z.ZodString;
|
|
2060
2335
|
t: z.ZodEnum<["encrypted", "plaintext"]>;
|
|
2336
|
+
contextBoundary: z.ZodOptional<z.ZodEnum<["clear", "compact"]>>;
|
|
2061
2337
|
}, z.ZodTypeAny, "passthrough">>;
|
|
2062
2338
|
createdAt: z.ZodNumber;
|
|
2063
2339
|
updatedAt: z.ZodNumber;
|
|
@@ -2069,15 +2345,19 @@ export declare const CoreUpdateContainerSchema: z.ZodObject<{
|
|
|
2069
2345
|
id: z.ZodString;
|
|
2070
2346
|
seq: z.ZodNumber;
|
|
2071
2347
|
localId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2348
|
+
contextBoundary: z.ZodOptional<z.ZodNullable<z.ZodEnum<["clear", "compact"]>>>;
|
|
2072
2349
|
content: z.ZodObject<{
|
|
2073
2350
|
c: z.ZodString;
|
|
2074
2351
|
t: z.ZodEnum<["encrypted", "plaintext"]>;
|
|
2352
|
+
contextBoundary: z.ZodOptional<z.ZodEnum<["clear", "compact"]>>;
|
|
2075
2353
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
2076
2354
|
c: z.ZodString;
|
|
2077
2355
|
t: z.ZodEnum<["encrypted", "plaintext"]>;
|
|
2356
|
+
contextBoundary: z.ZodOptional<z.ZodEnum<["clear", "compact"]>>;
|
|
2078
2357
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
2079
2358
|
c: z.ZodString;
|
|
2080
2359
|
t: z.ZodEnum<["encrypted", "plaintext"]>;
|
|
2360
|
+
contextBoundary: z.ZodOptional<z.ZodEnum<["clear", "compact"]>>;
|
|
2081
2361
|
}, z.ZodTypeAny, "passthrough">>;
|
|
2082
2362
|
createdAt: z.ZodNumber;
|
|
2083
2363
|
updatedAt: z.ZodNumber;
|
|
@@ -2085,15 +2365,19 @@ export declare const CoreUpdateContainerSchema: z.ZodObject<{
|
|
|
2085
2365
|
id: z.ZodString;
|
|
2086
2366
|
seq: z.ZodNumber;
|
|
2087
2367
|
localId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2368
|
+
contextBoundary: z.ZodOptional<z.ZodNullable<z.ZodEnum<["clear", "compact"]>>>;
|
|
2088
2369
|
content: z.ZodObject<{
|
|
2089
2370
|
c: z.ZodString;
|
|
2090
2371
|
t: z.ZodEnum<["encrypted", "plaintext"]>;
|
|
2372
|
+
contextBoundary: z.ZodOptional<z.ZodEnum<["clear", "compact"]>>;
|
|
2091
2373
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
2092
2374
|
c: z.ZodString;
|
|
2093
2375
|
t: z.ZodEnum<["encrypted", "plaintext"]>;
|
|
2376
|
+
contextBoundary: z.ZodOptional<z.ZodEnum<["clear", "compact"]>>;
|
|
2094
2377
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
2095
2378
|
c: z.ZodString;
|
|
2096
2379
|
t: z.ZodEnum<["encrypted", "plaintext"]>;
|
|
2380
|
+
contextBoundary: z.ZodOptional<z.ZodEnum<["clear", "compact"]>>;
|
|
2097
2381
|
}, z.ZodTypeAny, "passthrough">>;
|
|
2098
2382
|
createdAt: z.ZodNumber;
|
|
2099
2383
|
updatedAt: z.ZodNumber;
|
|
@@ -2101,15 +2385,19 @@ export declare const CoreUpdateContainerSchema: z.ZodObject<{
|
|
|
2101
2385
|
id: z.ZodString;
|
|
2102
2386
|
seq: z.ZodNumber;
|
|
2103
2387
|
localId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2388
|
+
contextBoundary: z.ZodOptional<z.ZodNullable<z.ZodEnum<["clear", "compact"]>>>;
|
|
2104
2389
|
content: z.ZodObject<{
|
|
2105
2390
|
c: z.ZodString;
|
|
2106
2391
|
t: z.ZodEnum<["encrypted", "plaintext"]>;
|
|
2392
|
+
contextBoundary: z.ZodOptional<z.ZodEnum<["clear", "compact"]>>;
|
|
2107
2393
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
2108
2394
|
c: z.ZodString;
|
|
2109
2395
|
t: z.ZodEnum<["encrypted", "plaintext"]>;
|
|
2396
|
+
contextBoundary: z.ZodOptional<z.ZodEnum<["clear", "compact"]>>;
|
|
2110
2397
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
2111
2398
|
c: z.ZodString;
|
|
2112
2399
|
t: z.ZodEnum<["encrypted", "plaintext"]>;
|
|
2400
|
+
contextBoundary: z.ZodOptional<z.ZodEnum<["clear", "compact"]>>;
|
|
2113
2401
|
}, z.ZodTypeAny, "passthrough">>;
|
|
2114
2402
|
createdAt: z.ZodNumber;
|
|
2115
2403
|
updatedAt: z.ZodNumber;
|
|
@@ -2147,6 +2435,15 @@ export declare const CoreUpdateContainerSchema: z.ZodObject<{
|
|
|
2147
2435
|
contextUsage: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
2148
2436
|
/** Base64-encoded wrapped DEK — only present on session-create broadcast. */
|
|
2149
2437
|
dataEncryptionKey: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2438
|
+
/** RFC-084: session-level handoff switch, carried on the session-create
|
|
2439
|
+
* broadcast so the web client's real-time session object has it without
|
|
2440
|
+
* waiting for a full reload (list-sessions also returns it). */
|
|
2441
|
+
handoffEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
2442
|
+
/** RFC-084: delivery (proposal) IDs this session inherited from — same
|
|
2443
|
+
* rationale as handoffEnabled: carried on the session-create broadcast so
|
|
2444
|
+
* the web client's real-time session object has it without a full reload.
|
|
2445
|
+
* list-sessions also returns it. */
|
|
2446
|
+
inheritedFrom: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
2150
2447
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
2151
2448
|
t: z.ZodLiteral<"update-session">;
|
|
2152
2449
|
id: z.ZodString;
|
|
@@ -2180,6 +2477,15 @@ export declare const CoreUpdateContainerSchema: z.ZodObject<{
|
|
|
2180
2477
|
contextUsage: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
2181
2478
|
/** Base64-encoded wrapped DEK — only present on session-create broadcast. */
|
|
2182
2479
|
dataEncryptionKey: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2480
|
+
/** RFC-084: session-level handoff switch, carried on the session-create
|
|
2481
|
+
* broadcast so the web client's real-time session object has it without
|
|
2482
|
+
* waiting for a full reload (list-sessions also returns it). */
|
|
2483
|
+
handoffEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
2484
|
+
/** RFC-084: delivery (proposal) IDs this session inherited from — same
|
|
2485
|
+
* rationale as handoffEnabled: carried on the session-create broadcast so
|
|
2486
|
+
* the web client's real-time session object has it without a full reload.
|
|
2487
|
+
* list-sessions also returns it. */
|
|
2488
|
+
inheritedFrom: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
2183
2489
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
2184
2490
|
t: z.ZodLiteral<"update-session">;
|
|
2185
2491
|
id: z.ZodString;
|
|
@@ -2213,6 +2519,15 @@ export declare const CoreUpdateContainerSchema: z.ZodObject<{
|
|
|
2213
2519
|
contextUsage: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
2214
2520
|
/** Base64-encoded wrapped DEK — only present on session-create broadcast. */
|
|
2215
2521
|
dataEncryptionKey: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2522
|
+
/** RFC-084: session-level handoff switch, carried on the session-create
|
|
2523
|
+
* broadcast so the web client's real-time session object has it without
|
|
2524
|
+
* waiting for a full reload (list-sessions also returns it). */
|
|
2525
|
+
handoffEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
2526
|
+
/** RFC-084: delivery (proposal) IDs this session inherited from — same
|
|
2527
|
+
* rationale as handoffEnabled: carried on the session-create broadcast so
|
|
2528
|
+
* the web client's real-time session object has it without a full reload.
|
|
2529
|
+
* list-sessions also returns it. */
|
|
2530
|
+
inheritedFrom: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
2216
2531
|
}, z.ZodTypeAny, "passthrough">>, z.ZodObject<{
|
|
2217
2532
|
t: z.ZodLiteral<"update-machine">;
|
|
2218
2533
|
machineId: z.ZodString;
|