@winmatrix/protocol 1.0.6 → 1.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/chatPresentation.d.ts +143 -0
- package/dist/chatPresentation.d.ts.map +1 -1
- package/dist/chatPresentation.js +26 -0
- package/dist/chatPresentation.js.map +1 -1
- package/dist/conversationTerminal.d.ts +1656 -0
- package/dist/conversationTerminal.d.ts.map +1 -0
- package/dist/conversationTerminal.js +145 -0
- package/dist/conversationTerminal.js.map +1 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +1 -0
- package/dist/index.js.map +1 -1
- package/dist/messageView.d.ts +9 -0
- package/dist/messageView.d.ts.map +1 -1
- package/dist/messageView.js +3 -0
- package/dist/messageView.js.map +1 -1
- package/dist/schemas.d.ts +164 -1
- package/dist/schemas.d.ts.map +1 -1
- package/dist/schemas.js +27 -1
- package/dist/schemas.js.map +1 -1
- package/package.json +4 -2
|
@@ -135,6 +135,32 @@ export declare const ChatPresentationProducerSchema: z.ZodObject<{
|
|
|
135
135
|
runId?: string | undefined;
|
|
136
136
|
sourceId?: string | undefined;
|
|
137
137
|
}>;
|
|
138
|
+
/**
|
|
139
|
+
* step 身份嵌套对象(converge-message-id-identity design D2)。
|
|
140
|
+
* 全字段 optional:旧磁带/DB 事件回读经同一 schema,缺失 step 不拒 parse。
|
|
141
|
+
*/
|
|
142
|
+
export declare const ChatPresentationStepSchema: z.ZodObject<{
|
|
143
|
+
workerBriefId: z.ZodOptional<z.ZodString>;
|
|
144
|
+
workerStepId: z.ZodOptional<z.ZodString>;
|
|
145
|
+
stepKey: z.ZodOptional<z.ZodString>;
|
|
146
|
+
roleId: z.ZodOptional<z.ZodString>;
|
|
147
|
+
attemptNo: z.ZodOptional<z.ZodNumber>;
|
|
148
|
+
repairRound: z.ZodOptional<z.ZodNumber>;
|
|
149
|
+
}, "strip", z.ZodTypeAny, {
|
|
150
|
+
roleId?: string | undefined;
|
|
151
|
+
workerBriefId?: string | undefined;
|
|
152
|
+
workerStepId?: string | undefined;
|
|
153
|
+
attemptNo?: number | undefined;
|
|
154
|
+
repairRound?: number | undefined;
|
|
155
|
+
stepKey?: string | undefined;
|
|
156
|
+
}, {
|
|
157
|
+
roleId?: string | undefined;
|
|
158
|
+
workerBriefId?: string | undefined;
|
|
159
|
+
workerStepId?: string | undefined;
|
|
160
|
+
attemptNo?: number | undefined;
|
|
161
|
+
repairRound?: number | undefined;
|
|
162
|
+
stepKey?: string | undefined;
|
|
163
|
+
}>;
|
|
138
164
|
export declare const ChatPresentationEventSchema: z.ZodEffects<z.ZodObject<{
|
|
139
165
|
eventId: z.ZodString;
|
|
140
166
|
conversationId: z.ZodString;
|
|
@@ -206,6 +232,28 @@ export declare const ChatPresentationEventSchema: z.ZodEffects<z.ZodObject<{
|
|
|
206
232
|
displayName: string;
|
|
207
233
|
}>]>>;
|
|
208
234
|
payload: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
235
|
+
step: z.ZodOptional<z.ZodObject<{
|
|
236
|
+
workerBriefId: z.ZodOptional<z.ZodString>;
|
|
237
|
+
workerStepId: z.ZodOptional<z.ZodString>;
|
|
238
|
+
stepKey: z.ZodOptional<z.ZodString>;
|
|
239
|
+
roleId: z.ZodOptional<z.ZodString>;
|
|
240
|
+
attemptNo: z.ZodOptional<z.ZodNumber>;
|
|
241
|
+
repairRound: z.ZodOptional<z.ZodNumber>;
|
|
242
|
+
}, "strip", z.ZodTypeAny, {
|
|
243
|
+
roleId?: string | undefined;
|
|
244
|
+
workerBriefId?: string | undefined;
|
|
245
|
+
workerStepId?: string | undefined;
|
|
246
|
+
attemptNo?: number | undefined;
|
|
247
|
+
repairRound?: number | undefined;
|
|
248
|
+
stepKey?: string | undefined;
|
|
249
|
+
}, {
|
|
250
|
+
roleId?: string | undefined;
|
|
251
|
+
workerBriefId?: string | undefined;
|
|
252
|
+
workerStepId?: string | undefined;
|
|
253
|
+
attemptNo?: number | undefined;
|
|
254
|
+
repairRound?: number | undefined;
|
|
255
|
+
stepKey?: string | undefined;
|
|
256
|
+
}>>;
|
|
209
257
|
}, "strip", z.ZodTypeAny, {
|
|
210
258
|
payload: Record<string, unknown>;
|
|
211
259
|
kind: "artifacts" | "final-response" | "final-draft" | "transient-thinking" | "tool-execution" | "orchestration" | "execution-surface";
|
|
@@ -238,6 +286,14 @@ export declare const ChatPresentationEventSchema: z.ZodEffects<z.ZodObject<{
|
|
|
238
286
|
kind: "user";
|
|
239
287
|
displayName?: string | undefined;
|
|
240
288
|
} | undefined;
|
|
289
|
+
step?: {
|
|
290
|
+
roleId?: string | undefined;
|
|
291
|
+
workerBriefId?: string | undefined;
|
|
292
|
+
workerStepId?: string | undefined;
|
|
293
|
+
attemptNo?: number | undefined;
|
|
294
|
+
repairRound?: number | undefined;
|
|
295
|
+
stepKey?: string | undefined;
|
|
296
|
+
} | undefined;
|
|
241
297
|
}, {
|
|
242
298
|
payload: Record<string, unknown>;
|
|
243
299
|
kind: "artifacts" | "final-response" | "final-draft" | "transient-thinking" | "tool-execution" | "orchestration" | "execution-surface";
|
|
@@ -270,6 +326,14 @@ export declare const ChatPresentationEventSchema: z.ZodEffects<z.ZodObject<{
|
|
|
270
326
|
kind: "user";
|
|
271
327
|
displayName?: string | undefined;
|
|
272
328
|
} | undefined;
|
|
329
|
+
step?: {
|
|
330
|
+
roleId?: string | undefined;
|
|
331
|
+
workerBriefId?: string | undefined;
|
|
332
|
+
workerStepId?: string | undefined;
|
|
333
|
+
attemptNo?: number | undefined;
|
|
334
|
+
repairRound?: number | undefined;
|
|
335
|
+
stepKey?: string | undefined;
|
|
336
|
+
} | undefined;
|
|
273
337
|
}>, {
|
|
274
338
|
payload: Record<string, unknown>;
|
|
275
339
|
kind: "artifacts" | "final-response" | "final-draft" | "transient-thinking" | "tool-execution" | "orchestration" | "execution-surface";
|
|
@@ -302,6 +366,14 @@ export declare const ChatPresentationEventSchema: z.ZodEffects<z.ZodObject<{
|
|
|
302
366
|
kind: "user";
|
|
303
367
|
displayName?: string | undefined;
|
|
304
368
|
} | undefined;
|
|
369
|
+
step?: {
|
|
370
|
+
roleId?: string | undefined;
|
|
371
|
+
workerBriefId?: string | undefined;
|
|
372
|
+
workerStepId?: string | undefined;
|
|
373
|
+
attemptNo?: number | undefined;
|
|
374
|
+
repairRound?: number | undefined;
|
|
375
|
+
stepKey?: string | undefined;
|
|
376
|
+
} | undefined;
|
|
305
377
|
}, {
|
|
306
378
|
payload: Record<string, unknown>;
|
|
307
379
|
kind: "artifacts" | "final-response" | "final-draft" | "transient-thinking" | "tool-execution" | "orchestration" | "execution-surface";
|
|
@@ -334,6 +406,14 @@ export declare const ChatPresentationEventSchema: z.ZodEffects<z.ZodObject<{
|
|
|
334
406
|
kind: "user";
|
|
335
407
|
displayName?: string | undefined;
|
|
336
408
|
} | undefined;
|
|
409
|
+
step?: {
|
|
410
|
+
roleId?: string | undefined;
|
|
411
|
+
workerBriefId?: string | undefined;
|
|
412
|
+
workerStepId?: string | undefined;
|
|
413
|
+
attemptNo?: number | undefined;
|
|
414
|
+
repairRound?: number | undefined;
|
|
415
|
+
stepKey?: string | undefined;
|
|
416
|
+
} | undefined;
|
|
337
417
|
}>;
|
|
338
418
|
export declare const PresentationIntentSchema: z.ZodEffects<z.ZodObject<{
|
|
339
419
|
conversationId: z.ZodString;
|
|
@@ -404,6 +484,28 @@ export declare const PresentationIntentSchema: z.ZodEffects<z.ZodObject<{
|
|
|
404
484
|
displayName: string;
|
|
405
485
|
}>]>>;
|
|
406
486
|
payload: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
487
|
+
step: z.ZodOptional<z.ZodObject<{
|
|
488
|
+
workerBriefId: z.ZodOptional<z.ZodString>;
|
|
489
|
+
workerStepId: z.ZodOptional<z.ZodString>;
|
|
490
|
+
stepKey: z.ZodOptional<z.ZodString>;
|
|
491
|
+
roleId: z.ZodOptional<z.ZodString>;
|
|
492
|
+
attemptNo: z.ZodOptional<z.ZodNumber>;
|
|
493
|
+
repairRound: z.ZodOptional<z.ZodNumber>;
|
|
494
|
+
}, "strip", z.ZodTypeAny, {
|
|
495
|
+
roleId?: string | undefined;
|
|
496
|
+
workerBriefId?: string | undefined;
|
|
497
|
+
workerStepId?: string | undefined;
|
|
498
|
+
attemptNo?: number | undefined;
|
|
499
|
+
repairRound?: number | undefined;
|
|
500
|
+
stepKey?: string | undefined;
|
|
501
|
+
}, {
|
|
502
|
+
roleId?: string | undefined;
|
|
503
|
+
workerBriefId?: string | undefined;
|
|
504
|
+
workerStepId?: string | undefined;
|
|
505
|
+
attemptNo?: number | undefined;
|
|
506
|
+
repairRound?: number | undefined;
|
|
507
|
+
stepKey?: string | undefined;
|
|
508
|
+
}>>;
|
|
407
509
|
}, "strip", z.ZodTypeAny, {
|
|
408
510
|
payload: Record<string, unknown>;
|
|
409
511
|
kind: "artifacts" | "final-response" | "final-draft" | "transient-thinking" | "tool-execution" | "orchestration" | "execution-surface";
|
|
@@ -435,6 +537,14 @@ export declare const PresentationIntentSchema: z.ZodEffects<z.ZodObject<{
|
|
|
435
537
|
tieBreaker: string;
|
|
436
538
|
} | undefined;
|
|
437
539
|
presentationId?: string | undefined;
|
|
540
|
+
step?: {
|
|
541
|
+
roleId?: string | undefined;
|
|
542
|
+
workerBriefId?: string | undefined;
|
|
543
|
+
workerStepId?: string | undefined;
|
|
544
|
+
attemptNo?: number | undefined;
|
|
545
|
+
repairRound?: number | undefined;
|
|
546
|
+
stepKey?: string | undefined;
|
|
547
|
+
} | undefined;
|
|
438
548
|
}, {
|
|
439
549
|
payload: Record<string, unknown>;
|
|
440
550
|
kind: "artifacts" | "final-response" | "final-draft" | "transient-thinking" | "tool-execution" | "orchestration" | "execution-surface";
|
|
@@ -466,6 +576,14 @@ export declare const PresentationIntentSchema: z.ZodEffects<z.ZodObject<{
|
|
|
466
576
|
tieBreaker: string;
|
|
467
577
|
} | undefined;
|
|
468
578
|
presentationId?: string | undefined;
|
|
579
|
+
step?: {
|
|
580
|
+
roleId?: string | undefined;
|
|
581
|
+
workerBriefId?: string | undefined;
|
|
582
|
+
workerStepId?: string | undefined;
|
|
583
|
+
attemptNo?: number | undefined;
|
|
584
|
+
repairRound?: number | undefined;
|
|
585
|
+
stepKey?: string | undefined;
|
|
586
|
+
} | undefined;
|
|
469
587
|
}>, {
|
|
470
588
|
payload: Record<string, unknown>;
|
|
471
589
|
kind: "artifacts" | "final-response" | "final-draft" | "transient-thinking" | "tool-execution" | "orchestration" | "execution-surface";
|
|
@@ -497,6 +615,14 @@ export declare const PresentationIntentSchema: z.ZodEffects<z.ZodObject<{
|
|
|
497
615
|
tieBreaker: string;
|
|
498
616
|
} | undefined;
|
|
499
617
|
presentationId?: string | undefined;
|
|
618
|
+
step?: {
|
|
619
|
+
roleId?: string | undefined;
|
|
620
|
+
workerBriefId?: string | undefined;
|
|
621
|
+
workerStepId?: string | undefined;
|
|
622
|
+
attemptNo?: number | undefined;
|
|
623
|
+
repairRound?: number | undefined;
|
|
624
|
+
stepKey?: string | undefined;
|
|
625
|
+
} | undefined;
|
|
500
626
|
}, {
|
|
501
627
|
payload: Record<string, unknown>;
|
|
502
628
|
kind: "artifacts" | "final-response" | "final-draft" | "transient-thinking" | "tool-execution" | "orchestration" | "execution-surface";
|
|
@@ -528,6 +654,14 @@ export declare const PresentationIntentSchema: z.ZodEffects<z.ZodObject<{
|
|
|
528
654
|
tieBreaker: string;
|
|
529
655
|
} | undefined;
|
|
530
656
|
presentationId?: string | undefined;
|
|
657
|
+
step?: {
|
|
658
|
+
roleId?: string | undefined;
|
|
659
|
+
workerBriefId?: string | undefined;
|
|
660
|
+
workerStepId?: string | undefined;
|
|
661
|
+
attemptNo?: number | undefined;
|
|
662
|
+
repairRound?: number | undefined;
|
|
663
|
+
stepKey?: string | undefined;
|
|
664
|
+
} | undefined;
|
|
531
665
|
}>;
|
|
532
666
|
export interface HistoryPresentationOrderEntry {
|
|
533
667
|
presentationOrder: bigint;
|
|
@@ -535,6 +669,14 @@ export interface HistoryPresentationOrderEntry {
|
|
|
535
669
|
}
|
|
536
670
|
export declare function compareHistoryPresentationOrder(left: HistoryPresentationOrderEntry, right: HistoryPresentationOrderEntry): number;
|
|
537
671
|
export declare function compareLivePresentationAnchor(left: ChatPresentationAnchor, right: ChatPresentationAnchor): number;
|
|
672
|
+
/**
|
|
673
|
+
* execution-surface 消息的合成 presentationId(converge-message-id-identity)。
|
|
674
|
+
* 与服务端/前端历史拼串字面量 `execution-surface:${turnId}` 逐字等价;
|
|
675
|
+
* 服务端 3 处 + 前端 3 处拼串改引本 helper(tasks 2.3)。
|
|
676
|
+
*/
|
|
677
|
+
export declare function executionSurfacePresentationId(turnId: string): string;
|
|
678
|
+
/** brief 过程帧 presentationId 前缀(`brief-message:<briefId>`,同 brief 重试覆盖旧帧)。 */
|
|
679
|
+
export declare const BRIEF_PROCESS_FRAME_PREFIX = "brief-message:";
|
|
538
680
|
export type ChatPresentationLifecycle = z.infer<typeof ChatPresentationLifecycleSchema>;
|
|
539
681
|
export type ConversationChatAccepted = z.infer<typeof ConversationChatAcceptedSchema>;
|
|
540
682
|
export type MessageAckFrame = z.infer<typeof MessageAckFrameSchema>;
|
|
@@ -543,6 +685,7 @@ export type EmployeePresentationAuthor = z.infer<typeof EmployeePresentationAuth
|
|
|
543
685
|
export type SystemPresentationAuthor = z.infer<typeof SystemPresentationAuthorSchema>;
|
|
544
686
|
export type ChatPresentationAuthor = z.infer<typeof ChatPresentationAuthorSchema>;
|
|
545
687
|
export type ChatPresentationProducer = z.infer<typeof ChatPresentationProducerSchema>;
|
|
688
|
+
export type ChatPresentationStep = z.infer<typeof ChatPresentationStepSchema>;
|
|
546
689
|
export type ChatPresentationEvent = z.infer<typeof ChatPresentationEventSchema>;
|
|
547
690
|
export type PresentationIntent = z.infer<typeof PresentationIntentSchema>;
|
|
548
691
|
//# sourceMappingURL=chatPresentation.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"chatPresentation.d.ts","sourceRoot":"","sources":["../src/chatPresentation.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAGxB,eAAO,MAAM,yBAAyB,mBAAmB,CAAC;AAC1D,eAAO,MAAM,yCAAyC,IAAI,CAAC;AAI3D,mCAAmC;AACnC,eAAO,MAAM,8BAA8B;;;;;;;;;;;;EAIzC,CAAC;AAEH;;;GAGG;AACH,eAAO,MAAM,qBAAqB;;;;;;;;;;;;;;;;;;EAMhC,CAAC;AAEH,eAAO,MAAM,+BAA+B,sDAK1C,CAAC;AAEH,eAAO,MAAM,4BAA4B;;;;;;;;;;;;EAIvC,CAAC;AAEH,eAAO,MAAM,gCAAgC;;;;;;;;;;;;;;;EAK3C,CAAC;AAEH,eAAO,MAAM,8BAA8B;;;;;;;;;EAGzC,CAAC;AAEH,eAAO,MAAM,4BAA4B;;;;;;;;;EAGvC,CAAC;AAEH,eAAO,MAAM,4BAA4B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAIvC,CAAC;AAEH,eAAO,MAAM,8BAA8B;;;;;;;;;;;;EAIzC,CAAC;
|
|
1
|
+
{"version":3,"file":"chatPresentation.d.ts","sourceRoot":"","sources":["../src/chatPresentation.ts"],"names":[],"mappings":"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"}
|
package/dist/chatPresentation.js
CHANGED
|
@@ -55,6 +55,18 @@ export const ChatPresentationProducerSchema = z.object({
|
|
|
55
55
|
runId: z.string().min(1).optional(),
|
|
56
56
|
sourceId: z.string().min(1).optional(),
|
|
57
57
|
});
|
|
58
|
+
/**
|
|
59
|
+
* step 身份嵌套对象(converge-message-id-identity design D2)。
|
|
60
|
+
* 全字段 optional:旧磁带/DB 事件回读经同一 schema,缺失 step 不拒 parse。
|
|
61
|
+
*/
|
|
62
|
+
export const ChatPresentationStepSchema = z.object({
|
|
63
|
+
workerBriefId: z.string().min(1).optional(),
|
|
64
|
+
workerStepId: z.string().min(1).optional(),
|
|
65
|
+
stepKey: z.string().min(1).optional(),
|
|
66
|
+
roleId: z.string().min(1).optional(),
|
|
67
|
+
attemptNo: z.number().int().positive().optional(),
|
|
68
|
+
repairRound: z.number().int().positive().optional(),
|
|
69
|
+
});
|
|
58
70
|
const ChatPresentationEventBaseSchema = z.object({
|
|
59
71
|
eventId: z.string().min(1),
|
|
60
72
|
conversationId: z.string().min(1),
|
|
@@ -69,6 +81,7 @@ const ChatPresentationEventBaseSchema = z.object({
|
|
|
69
81
|
producer: ChatPresentationProducerSchema,
|
|
70
82
|
author: ChatPresentationAuthorSchema.optional(),
|
|
71
83
|
payload: z.record(z.string(), z.unknown()),
|
|
84
|
+
step: ChatPresentationStepSchema.optional(),
|
|
72
85
|
});
|
|
73
86
|
export const ChatPresentationEventSchema = ChatPresentationEventBaseSchema.superRefine((event, context) => {
|
|
74
87
|
if (event.kind === ChatPresentationFinalKind && !event.author) {
|
|
@@ -91,6 +104,9 @@ const PresentationIntentBaseSchema = z.object({
|
|
|
91
104
|
producer: ChatPresentationProducerSchema,
|
|
92
105
|
author: ChatPresentationAuthorSchema.optional(),
|
|
93
106
|
payload: z.record(z.string(), z.unknown()),
|
|
107
|
+
// 阻断修复(design D2):final 族必经 createEvent → PresentationIntentSchema.parse,
|
|
108
|
+
// zod 默认剥未知键——intent 不带 step 则服务端注入的身份在 publisher 边界静默消失。
|
|
109
|
+
step: ChatPresentationStepSchema.optional(),
|
|
94
110
|
});
|
|
95
111
|
export const PresentationIntentSchema = PresentationIntentBaseSchema.superRefine((intent, context) => {
|
|
96
112
|
if (intent.kind === ChatPresentationFinalKind && !intent.author) {
|
|
@@ -115,4 +131,14 @@ export function compareLivePresentationAnchor(left, right) {
|
|
|
115
131
|
return left.slot - right.slot;
|
|
116
132
|
return left.tieBreaker.localeCompare(right.tieBreaker);
|
|
117
133
|
}
|
|
134
|
+
/**
|
|
135
|
+
* execution-surface 消息的合成 presentationId(converge-message-id-identity)。
|
|
136
|
+
* 与服务端/前端历史拼串字面量 `execution-surface:${turnId}` 逐字等价;
|
|
137
|
+
* 服务端 3 处 + 前端 3 处拼串改引本 helper(tasks 2.3)。
|
|
138
|
+
*/
|
|
139
|
+
export function executionSurfacePresentationId(turnId) {
|
|
140
|
+
return `execution-surface:${turnId}`;
|
|
141
|
+
}
|
|
142
|
+
/** brief 过程帧 presentationId 前缀(`brief-message:<briefId>`,同 brief 重试覆盖旧帧)。 */
|
|
143
|
+
export const BRIEF_PROCESS_FRAME_PREFIX = 'brief-message:';
|
|
118
144
|
//# sourceMappingURL=chatPresentation.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"chatPresentation.js","sourceRoot":"","sources":["../src/chatPresentation.ts"],"names":[],"mappings":"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
|
|
1
|
+
{"version":3,"file":"chatPresentation.js","sourceRoot":"","sources":["../src/chatPresentation.ts"],"names":[],"mappings":"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"}
|