@linzumi/cli 1.0.190 → 1.0.192
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/README.md +1 -1
- package/dist/impl-res/cloud-supervisor.mjs +8 -8
- package/dist/impl-res/index.js +126 -126
- package/dist/impl-res/mcp-server.mjs +24 -24
- package/dist/impl-ts/cloud-supervisor.mjs +8 -8
- package/dist/impl-ts/index.js +456 -456
- package/dist/impl-ts/mcp-server.mjs +21 -21
- package/dist/mcp-server.mjs +21 -21
- package/package.json +1 -1
- package/scripts/differentialMutations.mjs +4 -3
package/package.json
CHANGED
|
@@ -43,7 +43,7 @@ export const differentialMutations = [
|
|
|
43
43
|
patches: [
|
|
44
44
|
{
|
|
45
45
|
file: 'src/channelSession.ts',
|
|
46
|
-
find: ` await publishQueuedMessageState(
|
|
46
|
+
find: ` const startingConsensus = await publishQueuedMessageState(
|
|
47
47
|
args,
|
|
48
48
|
state,
|
|
49
49
|
next,
|
|
@@ -51,10 +51,11 @@ export const differentialMutations = [
|
|
|
51
51
|
status: 'processing',
|
|
52
52
|
reason: 'starting turn',
|
|
53
53
|
},
|
|
54
|
-
'
|
|
54
|
+
'acked'
|
|
55
55
|
);`,
|
|
56
56
|
replace: ` // [seeded differential mutation: message-state-processing-drop] the
|
|
57
|
-
// starting-turn processing paint is silently dropped
|
|
57
|
+
// starting-turn processing paint is silently dropped.
|
|
58
|
+
const startingConsensus = { kind: 'applied' } as const;`,
|
|
58
59
|
},
|
|
59
60
|
],
|
|
60
61
|
},
|