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
2 changes: 1 addition & 1 deletion .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -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
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion .npmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
@wyre-technology:registry=https://npm.pkg.github.com
@wyre-ai:registry=https://npm.pkg.github.com
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -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

Expand Down
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -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.

Expand All @@ -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
Expand Down Expand Up @@ -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'
Expand Down Expand Up @@ -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');
Expand Down
2 changes: 1 addition & 1 deletion SECURITY.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.

Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

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

8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down Expand Up @@ -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",
Expand Down