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
Jump to file
Failed to load files.
Loading
Diff view
Diff view
88 changes: 88 additions & 0 deletions .fern/metadata.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,88 @@
{
"cliVersion": "3.4.3",
"generatorName": "fernapi/fern-typescript-sdk",
"generatorVersion": "3.37.1",
"generatorConfig": {
"packagePath": "src/management",
"namespaceExport": "Management",
"allowCustomFetcher": true,
"omitFernHeaders": true,
"exportAllRequestsAtRoot": true,
"useDefaultRequestParameterValues": true,
"consolidateTypeFiles": true,
"offsetSemantics": "page-index",
"linter": "none",
"formatter": "prettier",
"packageManager": "yarn",
"testFramework": "jest",
"packageJson": {
"bugs": {
"url": "https://github.com/auth0/node-auth0/issues"
},
"homepage": "https://github.com/auth0/node-auth0",
"repository": {
"type": "git",
"url": "git+https://github.com/auth0/node-auth0.git"
},
"keywords": ["auth0", "authentication", "login", "auth", "jwt", "management api", "json web token"],
"files": ["legacy", "package.json"],
"description": "Auth0 Node.js SDK for the Management API v2.",
"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",
"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",
"precommit": "lint-staged",
"validate": "yarn lint:check && yarn format --check && yarn build && yarn test && yarn lint:package"
},
"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",
"publint": "^0.3.12"
},
"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.

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-09
* SDK regeneration
* Unable to analyze changes with AI, incrementing PATCH version.

12 changes: 6 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "auth0",
"version": "5.1.0",
"version": "5.1.1",
"private": false,
"repository": {
"type": "git",
Expand Down Expand Up @@ -71,6 +71,11 @@
"precommit": "lint-staged",
"validate": "yarn lint:check && yarn format --check && yarn build && yarn test && yarn lint:package"
},
"dependencies": {
"uuid": "^11.1.0",
"jose": "^4.13.2",
"auth0-legacy": "npm:auth0@^4.27.0"
},
"devDependencies": {
"webpack": "^5.97.1",
"ts-loader": "^9.5.1",
Expand Down Expand Up @@ -130,10 +135,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