diff --git a/.changeset/unified-agents-api.md b/.changeset/unified-agents-api.md deleted file mode 100644 index 7e9a8f9..0000000 --- a/.changeset/unified-agents-api.md +++ /dev/null @@ -1,20 +0,0 @@ ---- -"@scope3/agentic-client": major ---- - -Add unified agents API and remove salesAgents - -BREAKING CHANGE: Removed `salesAgents` resource. Use `agents` resource instead with type filtering. - -- Add unified agents resource supporting both SALES and OUTCOME agent types -- Remove deprecated salesAgents resource -- Add JWT authentication support -- Update simple-media-agent to use new agents API -- Update documentation to use 'Agent' instead of 'Sales Agent' -- Add publishConfig for npm publishing -- Update schemas from merged outcomes-agent-registration branch - -Migration guide: -- Replace `client.salesAgents.list()` with `client.agents.list({ type: 'SALES' })` -- Replace `client.salesAgents.get()` with `client.agents.get()` -- Replace `client.salesAgents.register()` with `client.agents.register({ type: 'SALES', ... })` diff --git a/CHANGELOG.md b/CHANGELOG.md index b2361d7..faa0c05 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,25 @@ # @scope3/agentic-client +## 1.0.0 + +### Major Changes + +- [#6](https://github.com/scope3data/agentic-client/pull/6) [`186144c`](https://github.com/scope3data/agentic-client/commit/186144cf4c3cc2647d852f320ed1ce4cda0311c7) Thanks [@nastassiafulconis](https://github.com/nastassiafulconis)! - Add unified agents API and remove salesAgents + + BREAKING CHANGE: Removed `salesAgents` resource. Use `agents` resource instead with type filtering. + - Add unified agents resource supporting both SALES and OUTCOME agent types + - Remove deprecated salesAgents resource + - Add JWT authentication support + - Update simple-media-agent to use new agents API + - Update documentation to use 'Agent' instead of 'Sales Agent' + - Add publishConfig for npm publishing + - Update schemas from merged outcomes-agent-registration branch + + Migration guide: + - Replace `client.salesAgents.list()` with `client.agents.list({ type: 'SALES' })` + - Replace `client.salesAgents.get()` with `client.agents.get()` + - Replace `client.salesAgents.register()` with `client.agents.register({ type: 'SALES', ... })` + ## 0.2.0 ### Minor Changes diff --git a/package.json b/package.json index 1c0e6a3..ef7a823 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@scope3/agentic-client", - "version": "0.2.0", + "version": "1.0.0", "description": "TypeScript client for the Scope3 Agentic API with AdCP webhook support", "main": "dist/index.js", "types": "dist/index.d.ts", @@ -35,9 +35,6 @@ ], "author": "", "license": "MIT", - "publishConfig": { - "access": "public" - }, "repository": { "type": "git", "url": "git+https://github.com/scope3data/agentic-client.git"