chore: version packages #26
Open
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.
This PR was opened by the Changesets release GitHub action. When you're ready to do a release, you can merge this and the packages will be published to npm automatically. If you're not ready to do a release yet, that's fine, whenever you add more changesets to main, this PR will be updated.
Releases
scope3@2.0.0
Major Changes
#27
3ccaa7dThanks @nastassiafulconis! - Generate SDK from OpenAPI specificationsMajor refactor to automatically generate TypeScript SDK from OpenAPI specs:
New Features:
PlatformClientandPartnerClientfor different user typesBreaking Changes:
Scope3AgenticClientnow extendsPlatformClient(backwards compatible)Infrastructure:
scripts/generate-sdk.tsfor SDK generationscripts/update-schemas.shfor automated OpenAPI spec updatesTesting:
#27
3ccaa7dThanks @nastassiafulconis! - BREAKING CHANGE: Remove legacy Scope3AgenticClientThe legacy
Scope3AgenticClientclass has been completely removed. Users must now explicitly choose between:PlatformClient- for brand advertisers/buyers managing campaigns and creativesPartnerClient- for DSPs/publishers/partners managing media buys and productsMigration Guide:
Both clients have the same configuration options and provide access to the appropriate API resources for their use case.
Patch Changes
#25
976ca4aThanks @nastassiafulconis! - Fix npm Trusted Publisher authentication by removing conflicting NPM_TOKENThe release workflow was failing because it had both OIDC Trusted Publishing configured (id-token: write) and the legacy NPM_TOKEN environment variable. This caused npm authentication to fail. Removed NPM_TOKEN to use only Trusted Publishing for secure, token-free npm publishing.