diff --git a/.npmrc b/.npmrc index 7bd939c..a2b5821 100644 --- a/.npmrc +++ b/.npmrc @@ -1,2 +1,2 @@ -@wyre-technology:registry=https://npm.pkg.github.com +@wyre-ai:registry=https://npm.pkg.github.com //npm.pkg.github.com/:_authToken=${NODE_AUTH_TOKEN} diff --git a/CHANGELOG.md b/CHANGELOG.md index 56d6311..8fb4d64 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,7 +3,7 @@ ### Features -* initial Axcient x360Recover API client ([9a9b6f2](https://github.com/wyre-technology/node-axcient/commit/9a9b6f25bba12c078423d47c61a6984df1394c39)) +* initial Axcient x360Recover API client ([9a9b6f2](https://github.com/WYRE-AI/node-axcient/commit/9a9b6f25bba12c078423d47c61a6984df1394c39)) # Changelog diff --git a/README.md b/README.md index 96683aa..85b58dd 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# @wyre-technology/node-axcient +# @wyre-ai/node-axcient Node.js / TypeScript client library for the [Axcient x360Recover](https://developer.axcient.com/x360recover/) BCDR public API. Zero runtime dependencies — built on native `fetch`. @@ -6,13 +6,13 @@ BCDR public API. Zero runtime dependencies — built on native `fetch`. ## Install ```bash -npm install @wyre-technology/node-axcient +npm install @wyre-ai/node-axcient ``` ## Quick start ```typescript -import { AxcientClient } from '@wyre-technology/node-axcient'; +import { AxcientClient } from '@wyre-ai/node-axcient'; const axcient = new AxcientClient({ apiKey: process.env.AXCIENT_API_KEY! }); @@ -44,7 +44,7 @@ All response types mirror the API's wire format (snake_case field names) verbati pages automatically: ```typescript -import { paginateOffset } from '@wyre-technology/node-axcient'; +import { paginateOffset } from '@wyre-ai/node-axcient'; for await (const device of paginateOffset( (limit, offset) => axcient.devices.list({ limit, offset }), @@ -57,7 +57,7 @@ for await (const device of paginateOffset( ## Error handling ```typescript -import { NotFoundError, AuthenticationError, ValidationError } from '@wyre-technology/node-axcient'; +import { NotFoundError, AuthenticationError, ValidationError } from '@wyre-ai/node-axcient'; try { await axcient.clients.get(999999); diff --git a/package-lock.json b/package-lock.json index b638882..33563fd 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,11 +1,11 @@ { - "name": "@wyre-technology/node-axcient", + "name": "@wyre-ai/node-axcient", "version": "1.0.0", "lockfileVersion": 3, "requires": true, "packages": { "": { - "name": "@wyre-technology/node-axcient", + "name": "@wyre-ai/node-axcient", "version": "1.0.0", "license": "Apache-2.0", "devDependencies": { diff --git a/package.json b/package.json index b3bfd48..89bb4b7 100644 --- a/package.json +++ b/package.json @@ -1,5 +1,5 @@ { - "name": "@wyre-technology/node-axcient", + "name": "@wyre-ai/node-axcient", "version": "1.0.0", "type": "module", "description": "Node.js/TypeScript client library for the Axcient x360Recover BCDR API", @@ -50,12 +50,12 @@ "license": "Apache-2.0", "repository": { "type": "git", - "url": "git+https://github.com/wyre-technology/node-axcient.git" + "url": "git+https://github.com/WYRE-AI/node-axcient.git" }, "bugs": { - "url": "https://github.com/wyre-technology/node-axcient/issues" + "url": "https://github.com/WYRE-AI/node-axcient/issues" }, - "homepage": "https://github.com/wyre-technology/node-axcient#readme", + "homepage": "https://github.com/WYRE-AI/node-axcient#readme", "engines": { "node": ">=20.0.0" },