Skip to content
Closed
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
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
72 changes: 72 additions & 0 deletions .fern/metadata.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,72 @@
{
"cliVersion": "2.8.1",
"generatorName": "fernapi/fern-typescript-sdk",
"generatorVersion": "3.35.8",
"generatorConfig": {
"packagePath": "src/management",
"namespaceExport": "Management",
"allowCustomFetcher": true,
"omitFernHeaders": true,
"useDefaultRequestParameterValues": true,
"exportAllRequestsAtRoot": true,
"consolidateTypeFiles": true,
"generateEndpointMetadata": true,
"testFramework": "jest",
"packageJson": {
"engines": {
"node": "^20.19.0 || ^22.12.0 || ^24.0.0"
},
"lint-staged": {
"*.{js,ts,tsx}": ["eslint --fix", "prettier --write"],
"*.{json,md,yml,yaml}": ["prettier --write"]
},
"scripts": {
"prepare": "husky",
"lint": "eslint . --ext .js,.ts,.tsx",
"lint:fix": "eslint . --ext .js,.ts,.tsx --fix",
"lint:check": "eslint . --ext .js,.ts,.tsx",
"test:coverage": "jest --config jest.config.mjs --coverage",
"test:coverage:unit": "jest --selectProjects unit --coverage",
"test:coverage:browser": "jest --selectProjects browser --coverage",
"test:coverage:wire": "jest --selectProjects wire --coverage",
"docs": "typedoc",
"docs:clean": "rm -rf docs",
"docs:build": "npm run docs:clean && npm run docs",
"precommit": "lint-staged",
"validate": "yarn lint:check && yarn format --check && yarn test"
},
"dependencies": {
"uuid": "^11.1.0",
"jose": "^4.13.2",
"auth0-legacy": "npm:auth0@^4.27.0"
},
"devDependencies": {
"typedoc": "^0.28.7",
"typedoc-plugin-missing-exports": "^4.0.0",
"nock": "^14.0.6",
"undici": "^7.12.0",
"@eslint/js": "^9.32.0",
"@typescript-eslint/eslint-plugin": "^8.38.0",
"@typescript-eslint/parser": "^8.38.0",
"eslint": "^9.32.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.3",
"husky": "^9.1.7",
"lint-staged": "^16.1.4"
},
"exports": {
"./legacy": {
"types": "./legacy/exports/index.d.ts",
"import": {
"types": "./legacy/exports/index.d.mts",
"default": "./legacy/exports/index.mjs"
},
"require": {
"types": "./legacy/exports/index.d.ts",
"default": "./legacy/exports/index.js"
}
}
}
}
}
}
11 changes: 0 additions & 11 deletions .npmignore

This file was deleted.

2 changes: 0 additions & 2 deletions .prettierrc.yml

This file was deleted.

74 changes: 74 additions & 0 deletions biome.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,74 @@
{
"$schema": "https://biomejs.dev/schemas/2.3.1/schema.json",
"root": true,
"vcs": {
"enabled": false
},
"files": {
"ignoreUnknown": true,
"includes": [
"**",
"!!dist",
"!!**/dist",
"!!lib",
"!!**/lib",
"!!_tmp_*",
"!!**/_tmp_*",
"!!*.tmp",
"!!**/*.tmp",
"!!.tmp/",
"!!**/.tmp/",
"!!*.log",
"!!**/*.log",
"!!**/.DS_Store",
"!!**/Thumbs.db"
]
},
"formatter": {
"enabled": true,
"indentStyle": "space",
"indentWidth": 4,
"lineWidth": 120
},
"javascript": {
"formatter": {
"quoteStyle": "double"
}
},
"assist": {
"enabled": true,
"actions": {
"source": {
"organizeImports": "on"
}
}
},
"linter": {
"rules": {
"style": {
"useNodejsImportProtocol": "off"
},
"suspicious": {
"noAssignInExpressions": "warn",
"noUselessEscapeInString": {
"level": "warn",
"fix": "none",
"options": {}
},
"noThenProperty": "warn",
"useIterableCallbackReturn": "warn",
"noShadowRestrictedNames": "warn",
"noTsIgnore": {
"level": "warn",
"fix": "none",
"options": {}
},
"noConfusingVoidType": {
"level": "warn",
"fix": "none",
"options": {}
}
}
}
}
}
4 changes: 4 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
## 5.1.1 - 2025-12-03
* SDK regeneration
* Unable to analyze changes with AI, incrementing PATCH version.

55 changes: 17 additions & 38 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,8 @@
{
"name": "auth0",
"version": "5.1.0",
"version": "5.1.1",
"private": false,
"repository": {
"type": "git",
"url": "git+https://github.com/auth0/node-auth0.git"
},
"repository": "github:auth0/node-auth0",
"license": "MIT",
"type": "commonjs",
"main": "./dist/cjs/index.js",
Expand Down Expand Up @@ -38,38 +35,40 @@
}
},
"files": [
"legacy",
"package.json",
"dist",
"reference.md",
"README.md",
"LICENSE"
],
"scripts": {
"format": "prettier . --write --ignore-unknown",
"format:check": "prettier . --check --ignore-unknown",
"format": "biome format --write --skip-parse-errors --no-errors-on-unmatched --max-diagnostics=none",
"format:check": "biome format --skip-parse-errors --no-errors-on-unmatched --max-diagnostics=none",
"lint": "eslint . --ext .js,.ts,.tsx",
"lint:fix": "eslint . --ext .js,.ts,.tsx --fix",
"check": "yarn format:check && yarn lint",
"check:fix": "yarn format && yarn lint:fix",
"build": "yarn build:cjs && yarn build:esm",
"check": "biome check --skip-parse-errors --no-errors-on-unmatched --max-diagnostics=none",
"check:fix": "biome check --fix --unsafe --skip-parse-errors --no-errors-on-unmatched --max-diagnostics=none",
"build": "pnpm build:cjs && pnpm build:esm",
"build:cjs": "tsc --project ./tsconfig.cjs.json",
"build:esm": "tsc --project ./tsconfig.esm.json && node scripts/rename-to-esm-files.js dist/esm",
"test": "jest --config jest.config.mjs",
"test:unit": "jest --selectProjects unit",
"test:wire": "jest --selectProjects wire",
"prepare": "husky",
"lint:check": "eslint . --ext .js,.ts,.tsx",
"lint:package": "publint --pack npm",
"test:coverage": "jest --config jest.config.mjs --coverage",
"test:coverage:unit": "jest --selectProjects unit --coverage",
"test:coverage:browser": "jest --selectProjects browser --coverage",
"test:coverage:wire": "jest --selectProjects wire --coverage",
"docs": "typedoc",
"docs:clean": "rm -rf docs",
"docs:build": "yarn docs:clean && yarn docs",
"docs:build": "npm run docs:clean && npm run docs",
"precommit": "lint-staged",
"validate": "yarn lint:check && yarn format --check && yarn build && yarn test && yarn lint:package"
"validate": "yarn lint:check && yarn format --check && yarn test"
},
"dependencies": {
"uuid": "^11.1.0",
"jose": "^4.13.2",
"auth0-legacy": "npm:auth0@^4.27.0"
},
"devDependencies": {
"webpack": "^5.97.1",
Expand All @@ -82,7 +81,7 @@
"msw": "2.11.2",
"@types/node": "^18.19.70",
"typescript": "~5.7.2",
"prettier": "3.4.2",
"@biomejs/biome": "2.3.1",
"typedoc": "^0.28.7",
"typedoc-plugin-missing-exports": "^4.0.0",
"nock": "^14.0.6",
Expand All @@ -94,34 +93,19 @@
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.3",
"husky": "^9.1.7",
"lint-staged": "^16.1.4",
"publint": "^0.3.12"
"lint-staged": "^16.1.4"
},
"browser": {
"fs": false,
"os": false,
"path": false,
"stream": false
},
"packageManager": "[email protected]",
"packageManager": "[email protected]",
"engines": {
"node": "^20.19.0 || ^22.12.0 || ^24.0.0"
},
"sideEffects": false,
"bugs": {
"url": "https://github.com/auth0/node-auth0/issues"
},
"homepage": "https://github.com/auth0/node-auth0",
"keywords": [
"auth0",
"authentication",
"login",
"auth",
"jwt",
"management api",
"json web token"
],
"description": "Auth0 Node.js SDK for the Management API v2.",
"lint-staged": {
"*.{js,ts,tsx}": [
"eslint --fix",
Expand All @@ -130,10 +114,5 @@
"*.{json,md,yml,yaml}": [
"prettier --write"
]
},
"dependencies": {
"uuid": "^11.1.0",
"jose": "^4.13.2",
"auth0-legacy": "npm:auth0@^4.27.0"
}
}
Loading
Loading