diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 258673c..9af660c 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -1,4 +1,4 @@ -# Canonical Dependabot config for the wyre-technology *-mcp / node-* fleet. +# Canonical Dependabot config for the wyre-ai *-mcp / node-* fleet. # # Goal: keep PR volume manageable for a small team. Updates are GROUPED so a # repo gets a handful of PRs per week instead of one-per-package, and the diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 8481444..55c1662 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -24,10 +24,10 @@ jobs: node-version: 22 cache: npm registry-url: https://npm.pkg.github.com - scope: '@wyre-technology' + scope: '@wyre-ai' - name: Configure npm for GitHub Packages run: | - echo "@wyre-technology:registry=https://npm.pkg.github.com" >> .npmrc + echo "@wyre-ai:registry=https://npm.pkg.github.com" >> .npmrc echo "//npm.pkg.github.com/:_authToken=${{ secrets.GITHUB_TOKEN }}" >> .npmrc - run: npm ci - run: npm run lint diff --git a/.npmrc b/.npmrc index a6f1153..bf56073 100644 --- a/.npmrc +++ b/.npmrc @@ -1 +1 @@ -@wyre-technology:registry=https://npm.pkg.github.com +@wyre-ai:registry=https://npm.pkg.github.com diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 91d81e9..7144c31 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -1,6 +1,6 @@ # Contributing -We welcome contributions to @wyre-technology/node-inforcer! Please read this guide before submitting pull requests. +We welcome contributions to @wyre-ai/node-inforcer! Please read this guide before submitting pull requests. ## Development Setup diff --git a/README.md b/README.md index 22c6963..459dfe9 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# @wyre-technology/node-inforcer +# @wyre-ai/node-inforcer Node.js / TypeScript client library for the [Inforcer](https://www.inforcer.com/) REST API — Microsoft 365 baseline management, alignment scoring, tenant policy, users, groups, roles, audit events, and assessments. @@ -22,13 +22,13 @@ This package is published to **GitHub Packages**, not the public npm registry. Add a scoped registry entry to your project's `.npmrc`: ```ini -@wyre-technology:registry=https://npm.pkg.github.com +@wyre-ai:registry=https://npm.pkg.github.com ``` Then install: ```bash -npm install @wyre-technology/node-inforcer +npm install @wyre-ai/node-inforcer ``` (Installing private GitHub Packages requires an authenticated `.npmrc` with a @@ -58,7 +58,7 @@ Inforcer runs region-specific API hosts. You **must** pass a `region` ## Quick start ```typescript -import { InforcerClient } from '@wyre-technology/node-inforcer'; +import { InforcerClient } from '@wyre-ai/node-inforcer'; const client = new InforcerClient({ region: 'uk', // required: 'anz' | 'eu' | 'uk' | 'us' @@ -149,7 +149,7 @@ the client throws a typed error (with the API key redacted from messages): | `InforcerError` | base class for all of the above | ```typescript -import { InforcerClient, NotFoundError, RateLimitError } from '@wyre-technology/node-inforcer'; +import { InforcerClient, NotFoundError, RateLimitError } from '@wyre-ai/node-inforcer'; try { await client.tenants.get('nope.onmicrosoft.com'); diff --git a/SECURITY.md b/SECURITY.md index 578ff9e..5b96ba8 100644 --- a/SECURITY.md +++ b/SECURITY.md @@ -2,7 +2,7 @@ ## Reporting a Vulnerability -If you discover a security vulnerability in `@wyre-technology/node-inforcer`, please email **security@wyretechnology.com** with a description of the issue, reproduction steps, and any relevant logs. +If you discover a security vulnerability in `@wyre-ai/node-inforcer`, please email **security@wyretechnology.com** with a description of the issue, reproduction steps, and any relevant logs. Please do not file a public GitHub issue for security reports. diff --git a/package-lock.json b/package-lock.json index 5714634..fb6069b 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,11 +1,11 @@ { - "name": "@wyre-technology/node-inforcer", + "name": "@wyre-ai/node-inforcer", "version": "1.1.0", "lockfileVersion": 3, "requires": true, "packages": { "": { - "name": "@wyre-technology/node-inforcer", + "name": "@wyre-ai/node-inforcer", "version": "1.1.0", "license": "Apache-2.0", "devDependencies": { diff --git a/package.json b/package.json index 53c9d39..0cc7494 100644 --- a/package.json +++ b/package.json @@ -1,5 +1,5 @@ { - "name": "@wyre-technology/node-inforcer", + "name": "@wyre-ai/node-inforcer", "version": "1.1.0", "description": "Node.js client library for the Inforcer API (community-sourced)", "type": "module", @@ -42,12 +42,12 @@ "license": "Apache-2.0", "repository": { "type": "git", - "url": "https://github.com/wyre-technology/node-inforcer.git" + "url": "https://github.com/WYRE-AI/node-inforcer.git" }, "bugs": { - "url": "https://github.com/wyre-technology/node-inforcer/issues" + "url": "https://github.com/WYRE-AI/node-inforcer/issues" }, - "homepage": "https://github.com/wyre-technology/node-inforcer#readme", + "homepage": "https://github.com/WYRE-AI/node-inforcer#readme", "devDependencies": { "@semantic-release/changelog": "^7.0.0", "@semantic-release/git": "^11.0.1",