fix(contracts): align runtime seams and codex expectations

This commit is contained in:
Vincent Koc
2026-04-04 12:10:28 +09:00
parent fc79ebe098
commit 26c9a4ce63
4 changed files with 8 additions and 8 deletions

View File

@@ -857,9 +857,9 @@ describe("plugin-sdk subpath exports", () => {
expect("createScopedPairingAccess" in channelPairingSdk).toBe(false);
expectSourceMentions("channel-reply-pipeline", ["createChannelReplyPipeline"]);
expect("createTypingCallbacks" in channelReplyPipelineSdk).toBe(false);
expect("createReplyPrefixContext" in channelReplyPipelineSdk).toBe(false);
expect("createReplyPrefixOptions" in channelReplyPipelineSdk).toBe(false);
expect("createTypingCallbacks" in channelReplyPipelineSdk).toBe(true);
expect("createReplyPrefixContext" in channelReplyPipelineSdk).toBe(true);
expect("createReplyPrefixOptions" in channelReplyPipelineSdk).toBe(true);
expect(pluginSdkSubpaths.length).toBeGreaterThan(representativeRuntimeSmokeSubpaths.length);
for (const [index, id] of representativeRuntimeSmokeSubpaths.entries()) {