Skip to content

Commit fe22062

Browse files
feat: migrate to v5 (Fern-generated SDK)
1 parent 7c492bf commit fe22062

File tree

2,434 files changed

+223286
-12404
lines changed

Some content is hidden

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

2,434 files changed

+223286
-12404
lines changed

.fern/metadata.json

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
{
2+
"cliVersion": "3.24.3",
3+
"generatorName": "fernapi/fern-python-sdk",
4+
"generatorVersion": "4.46.2",
5+
"generatorConfig": {
6+
"client": {
7+
"class_name": "Auth0"
8+
},
9+
"package_path": "management",
10+
"enable_wire_tests": true,
11+
"pydantic_config": {
12+
"use_provided_defaults": true
13+
}
14+
}
15+
}

.fernignore

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
# Specify files that shouldn't be modified by Fern
2+
3+
# ManagementClient wrapper
4+
src/auth0/management/management_client.py
5+
src/auth0/management/token_provider.py
6+
tests/management/
7+
8+
# Documentation
9+
v5_MIGRATION_GUIDE.md
10+
CHANGELOG.md
11+
12+
# Authentication API (copied from auth0-python, not Fern-generated)
13+
src/auth0/authentication/
14+
tests/authentication/
15+
16+
# Root auth0 __init__.pys
17+
src/auth0/__init__.py
18+
src/auth0/management/__init__.py
19+
20+
# Files edited to incorporate both APIs
21+
pyproject.toml
22+
poetry.lock
23+
requirements.txt
24+
README.md
25+
.gitignore
26+
.github/workflows/ci.yml
27+
.version

.flake8

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

.gitignore

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ bin/
2727
.pypirc
2828
pyvenv.cfg
2929
.python-version
30+
poetry.toml
3031

3132
# Installer logs
3233
pip-log.txt
@@ -42,7 +43,11 @@ nosetests.xml
4243
coverage.xml
4344
*,cover
4445
.hypothesis/
45-
.pytest_cache
46+
.pytest_cache/
47+
.mypy_cache/
48+
49+
# Linting
50+
.ruff_cache/
4651

4752
# Translations
4853
*.mo
@@ -51,12 +56,10 @@ coverage.xml
5156
# Sphinx documentation
5257
docs/build/
5358

54-
# IDEA
59+
# IDEs
5560
.idea/
5661
*.iml
57-
58-
# VSCode
5962
.vscode/
6063

6164
# OS-specific files
62-
.DS_Store
65+
.DS_Store

.pre-commit-config.yaml

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

DEVELOPMENT.rst

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

EXAMPLES.md

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

0 commit comments

Comments
 (0)