Skip to content

Commit 6f1c00a

Browse files
SDK regeneration
1 parent f3c024f commit 6f1c00a

File tree

278 files changed

+12311
-12538
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

278 files changed

+12311
-12538
lines changed

.fern/metadata.json

Lines changed: 88 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,88 @@
1+
{
2+
"cliVersion": "3.0.3",
3+
"generatorName": "fernapi/fern-typescript-sdk",
4+
"generatorVersion": "3.35.9",
5+
"generatorConfig": {
6+
"packagePath": "src/management",
7+
"namespaceExport": "Management",
8+
"allowCustomFetcher": true,
9+
"omitFernHeaders": true,
10+
"exportAllRequestsAtRoot": true,
11+
"useDefaultRequestParameterValues": true,
12+
"consolidateTypeFiles": true,
13+
"offsetSemantics": "page-index",
14+
"linter": "none",
15+
"formatter": "prettier",
16+
"packageManager": "yarn",
17+
"testFramework": "jest",
18+
"packageJson": {
19+
"bugs": {
20+
"url": "https://github.com/auth0/node-auth0/issues"
21+
},
22+
"homepage": "https://github.com/auth0/node-auth0",
23+
"repository": {
24+
"type": "git",
25+
"url": "git+https://github.com/auth0/node-auth0.git"
26+
},
27+
"keywords": ["auth0", "authentication", "login", "auth", "jwt", "management api", "json web token"],
28+
"files": ["legacy", "package.json"],
29+
"description": "Auth0 Node.js SDK for the Management API v2.",
30+
"engines": {
31+
"node": "^20.19.0 || ^22.12.0 || ^24.0.0"
32+
},
33+
"lint-staged": {
34+
"*.{js,ts,tsx}": ["eslint --fix", "prettier --write"],
35+
"*.{json,md,yml,yaml}": ["prettier --write"]
36+
},
37+
"scripts": {
38+
"prepare": "husky",
39+
"lint": "eslint . --ext .js,.ts,.tsx",
40+
"lint:fix": "eslint . --ext .js,.ts,.tsx --fix",
41+
"lint:check": "eslint . --ext .js,.ts,.tsx",
42+
"lint:package": "publint --pack npm",
43+
"test:coverage": "jest --config jest.config.mjs --coverage",
44+
"test:coverage:unit": "jest --selectProjects unit --coverage",
45+
"test:coverage:browser": "jest --selectProjects browser --coverage",
46+
"test:coverage:wire": "jest --selectProjects wire --coverage",
47+
"docs": "typedoc",
48+
"docs:clean": "rm -rf docs",
49+
"docs:build": "yarn docs:clean && yarn docs",
50+
"precommit": "lint-staged",
51+
"validate": "yarn lint:check && yarn format --check && yarn build && yarn test && yarn lint:package"
52+
},
53+
"dependencies": {
54+
"uuid": "^11.1.0",
55+
"jose": "^4.13.2",
56+
"auth0-legacy": "npm:auth0@^4.27.0"
57+
},
58+
"devDependencies": {
59+
"typedoc": "^0.28.7",
60+
"typedoc-plugin-missing-exports": "^4.0.0",
61+
"nock": "^14.0.6",
62+
"undici": "^7.12.0",
63+
"@eslint/js": "^9.32.0",
64+
"@typescript-eslint/eslint-plugin": "^8.38.0",
65+
"@typescript-eslint/parser": "^8.38.0",
66+
"eslint": "^9.32.0",
67+
"eslint-config-prettier": "^10.1.8",
68+
"eslint-plugin-prettier": "^5.5.3",
69+
"husky": "^9.1.7",
70+
"lint-staged": "^16.1.4",
71+
"publint": "^0.3.12"
72+
},
73+
"exports": {
74+
"./legacy": {
75+
"types": "./legacy/exports/index.d.ts",
76+
"import": {
77+
"types": "./legacy/exports/index.d.mts",
78+
"default": "./legacy/exports/index.mjs"
79+
},
80+
"require": {
81+
"types": "./legacy/exports/index.d.ts",
82+
"default": "./legacy/exports/index.js"
83+
}
84+
}
85+
}
86+
}
87+
}
88+
}

.npmignore

Lines changed: 0 additions & 11 deletions
This file was deleted.

package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "auth0",
3-
"version": "5.1.0",
3+
"version": "5.1.1",
44
"private": false,
55
"repository": {
66
"type": "git",
@@ -71,6 +71,11 @@
7171
"precommit": "lint-staged",
7272
"validate": "yarn lint:check && yarn format --check && yarn build && yarn test && yarn lint:package"
7373
},
74+
"dependencies": {
75+
"uuid": "^11.1.0",
76+
"jose": "^4.13.2",
77+
"auth0-legacy": "npm:auth0@^4.27.0"
78+
},
7479
"devDependencies": {
7580
"webpack": "^5.97.1",
7681
"ts-loader": "^9.5.1",
@@ -130,10 +135,5 @@
130135
"*.{json,md,yml,yaml}": [
131136
"prettier --write"
132137
]
133-
},
134-
"dependencies": {
135-
"uuid": "^11.1.0",
136-
"jose": "^4.13.2",
137-
"auth0-legacy": "npm:auth0@^4.27.0"
138138
}
139139
}

0 commit comments

Comments
 (0)