Make SDKs publishable, harden API, and add CI/release workflows (alpha)#2
Merged
thomasdreyer merged 1 commit intomainfrom Feb 5, 2026
Merged
Conversation
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.
Motivation
Description
@opensync/sdk-react-nativewithpackage.json, TypeScripttsconfig.*, build scripts, and a small fetch-based client implementation to avoid runtimeaxiosfriction..NETSDK packageOpenSync.Clientwithcsproj, client implementation, readme, and NuGet metadata targetingnet8.0;net8.0-android;net8.0-ios.ValidationPipeinapps/src/main.ts, DTOs for auth/sync (AuthDto,PushDto,PullDto), JWTStrategy+JwtAuthGuard, exportedPassportModule, safer auth exceptions, and fixedpullto useTypeORM'sMoreThan(...)with deterministic ordering.alpha, updated rootpackage.jsonscripts/devDeps andpackageManager, migratedturbo.jsonpipeline→tasks, addedtsconfig.api.json, and alignedapps/apibuild scripts for monorepo layout..github/workflows/api.yml(API CI),packages.yml(pack &dotnet packchecks), andrelease.yml(manual release that publishes npm alpha and builds NuGet artifacts).README.mdand added/updateddocs/*with real install, build, publish, and roadmap guidance (npm, NuGet, native SDK roadmap).Testing
npm run buildat repo root and the Turborepo build (succeeded). ✅npm --workspace @opensync/sdk-react-native run build(succeeded). ✅npm --workspace @opensync/sdk-react-native pack --dry-run(succeeded and inspected tarball contents). ✅npm --workspace opensync-api run build(TypeScript compile succeeded). ✅npm ci/npm installfailed in this environment due to missing lockfile and registry policy (403), so dependency install via CI requires a normal environment with registry access or a lockfile.dotnet pack packages/sdk-dotnet/OpenSync.Client/OpenSync.Client.csproj -c Releasefailed here becausedotnetis not installed in the execution environment, but thecsprojand code were validated statically.Codex Task