Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .changeset/pre.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
"calm-mice-negotiate",
"fix-asset-instance-registry-drift",
"fix-canonical-list-creatives-validation",
"fix-capability-portfolio-fields",
"fix-core-required-field-codegen",
"fix-era-negotiation-legacy-fallback",
"fix-mcp-beta-pins",
Expand Down
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## 13.0.0-rc.6

### Patch Changes

- f01ac27: Fix capability normalization to expose portfolio `primary_channels` and `primary_countries` from spec-compliant sales agents.

## 13.0.0-rc.5

### Major Changes
Expand Down
6 changes: 3 additions & 3 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@adcp/sdk",
"version": "13.0.0-rc.5",
"version": "13.0.0-rc.6",
"description": "AdCP SDK — client, server, and compliance harnesses for the AdContext Protocol (MCP + A2A)",
"workspaces": [
".",
Expand Down
2 changes: 1 addition & 1 deletion packages/client-shim/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@
"LICENSE"
],
"dependencies": {
"@adcp/sdk": "^13.0.0-rc.5"
"@adcp/sdk": "^13.0.0-rc.6"
},
"keywords": [
"adcp",
Expand Down
16 changes: 13 additions & 3 deletions schemas/registry/registry.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4172,6 +4172,9 @@ components:
- invalid_url
- invalid_env_reference
- invalid_auth_method_value
- array_too_many
- array_too_few
- aggregate_too_long
description: Stable rejection tag. UI maps this to operator-friendly prose.
field:
type: string
Expand Down Expand Up @@ -10784,9 +10787,16 @@ paths:
maxLength: 1024
description: Space-separated OAuth scope values.
resource:
type: string
maxLength: 2048
description: RFC 8707 resource indicator.
anyOf:
- type: string
maxLength: 2048
- type: array
items:
type: string
maxLength: 2048
minItems: 1
maxItems: 8
description: RFC 8707 resource indicator. Accepts a single URI string or an array of 1–8 URI strings for multi-resource authorization servers (Keycloak strict, AWS Cognito multi-RS).
audience:
type: string
maxLength: 2048
Expand Down
8 changes: 4 additions & 4 deletions src/lib/registry/types.generated.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// Generated AdCP Registry types from OpenAPI spec
// Generated at: 2026-08-03T11:51:45.160Z
// Generated at: 2026-08-03T12:13:19.639Z
// Source: https://agenticadvertising.org/openapi/registry.yaml
//
// Do not edit this file manually. Run: npm run generate-registry-types
Expand Down Expand Up @@ -3970,7 +3970,7 @@ export interface components {
* @description Stable rejection tag. UI maps this to operator-friendly prose.
* @enum {string}
*/
code: "invalid_blob_shape" | "missing_field" | "invalid_field_type" | "field_too_long" | "invalid_url" | "invalid_env_reference" | "invalid_auth_method_value";
code: "invalid_blob_shape" | "missing_field" | "invalid_field_type" | "field_too_long" | "invalid_url" | "invalid_env_reference" | "invalid_auth_method_value" | "array_too_many" | "array_too_few" | "aggregate_too_long";
/**
* @description Field the UI should scroll to + highlight.
* @enum {string}
Expand Down Expand Up @@ -8974,8 +8974,8 @@ export interface operations {
client_secret: string;
/** @description Space-separated OAuth scope values. */
scope?: string;
/** @description RFC 8707 resource indicator. */
resource?: string;
/** @description RFC 8707 resource indicator. Accepts a single URI string or an array of 1–8 URI strings for multi-resource authorization servers (Keycloak strict, AWS Cognito multi-RS). */
resource?: string | string[];
/** @description Audience parameter for audience-validating authorization servers. */
audience?: string;
/**
Expand Down
6 changes: 3 additions & 3 deletions src/lib/version.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
/**
* AdCP SDK library version
*/
export const LIBRARY_VERSION = '13.0.0-rc.5';
export const LIBRARY_VERSION = '13.0.0-rc.6';

/**
* AdCP specification version this library is built for
Expand Down Expand Up @@ -74,10 +74,10 @@ export type AdcpVersion = (typeof COMPATIBLE_ADCP_VERSIONS)[number];
* Full version information
*/
export const VERSION_INFO = {
library: '13.0.0-rc.5',
library: '13.0.0-rc.6',
adcp: '3.1.8',
compatibleVersions: COMPATIBLE_ADCP_VERSIONS,
generatedAt: '2026-07-31T23:39:02.334Z',
generatedAt: '2026-08-03T12:04:02.372Z',
} as const;

/**
Expand Down
Loading