chore(docs): bump @openuidev/thesys-server to 0.1.3 - #912
Merged
Conversation
The docs site was pinned to 0.1.1 while npm latest is 0.1.3. The release is additive: it adds generateSystemPrompt and validateChatLibrary alongside the existing exports, whose signatures are unchanged. Only the docs importer entry in the lockfile changes; the 0.1.3 resolution was already present, so no other workspace package is affected.
Aditya-thesys
approved these changes
Jul 31, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What
The docs site pins
@openuidev/thesys-serverat0.1.1, while npmlatesthas been0.1.3since 2026-07-24. This brings the pin up to date so the documentation builds against the same server SDK consumers install.@openuidev/thesysis already level at0.3.0and is untouched here.Changes
docs/package.json—@openuidev/thesys-server0.1.1→0.1.3pnpm-lock.yaml— thedocsimporter entry now resolves0.1.30.1.3is additive over0.1.1. It addsgenerateSystemPromptandvalidateChatLibraryto the public surface, together with theSystemPromptSpec,ToolSpec,ChatLibrary,ChatLibraryIssue,ComponentGroup,LibraryJSONSchemaandPromptOptionstypes.createResponsesInstructionsis now marked deprecated in favour ofgenerateSystemPrompt, but remains exported with an unchanged signature.Note that
0.1.2was never published to npm —0.1.1→0.1.3is the real sequence.The lockfile diff is deliberately two lines:
@openuidev/thesys-server@0.1.3was already resolved in the lockfile by another workspace package, so only thedocsimporter needed to point at it. No other workspace package's resolutions change.Test Plan
Verified locally
pnpm install --frozen-lockfileexits 0 under both pnpm9.15.4and10.33.0— the versions this repository's workflows pin — so the frozen install CI step is satisfied.The published type surfaces of
0.1.1and0.1.3were compared directly from the npm tarballs. Every0.1.1export is still present in0.1.3, and the two symbols the docs site actually imports are byte-identical:artifactTool(options?: ArtifactToolOptions): ResponsesArtifactToolEntrycreateResponsesInstructions(options?: ResponsesConfigOptions): stringdocs/app/api/openui-cloud/chat/route.tsis the only consumer of the package in the repository; both of its call sites typecheck unchanged against0.1.3.Not verified in this PR: no docs build or
types:checkrun was performed locally. Nothing indocs/source changed — this is a version pin plus the matching lockfile resolution — so the build result rests on CI rather than a local run.Follow-up, deliberately not in this PR
createResponsesInstructionsis deprecated as of0.1.3. Migrating the Cloud chat route togenerateSystemPromptis a behavioural change and belongs in its own PR; keeping this one to the pin makes it trivially revertible.Checklist