├── .all-contributorsrc ├── .github ├── CODEOWNERS └── workflows │ ├── cd.yml │ ├── ci.yml │ ├── docs-preview.yml │ ├── docs.yml │ ├── pr-title.yml │ └── publish.yml ├── .gitignore ├── .pre-commit-config.yaml ├── CONTRIBUTING.rst ├── LICENSE ├── Makefile ├── README.md ├── copier.yaml ├── docs ├── CONTRIBUTORS.md ├── PYPI_README.md ├── _static │ ├── css │ │ └── custom.css │ └── logo.png ├── changelog.rst ├── conf.py ├── contribution-guide.rst ├── examples │ ├── __init__.py │ └── tests │ │ └── __init__.py ├── index.rst ├── reference │ └── index.rst ├── releases.rst └── usage │ ├── index.rst │ └── placeholder.rst ├── dtos ├── __init__.py ├── __metadata__.py └── _types.py ├── pyproject.toml ├── sonar-project.properties ├── tests ├── __init__.py └── test_src.py ├── tools ├── __init__.py ├── build_docs.py ├── pypi_readme.py └── sphinx_ext │ ├── __init__.py │ ├── changelog.py │ └── missing_references.py └── uv.lock /.all-contributorsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litestar-org/dtos/HEAD/.all-contributorsrc -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litestar-org/dtos/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/workflows/cd.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litestar-org/dtos/HEAD/.github/workflows/cd.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litestar-org/dtos/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/docs-preview.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litestar-org/dtos/HEAD/.github/workflows/docs-preview.yml -------------------------------------------------------------------------------- /.github/workflows/docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litestar-org/dtos/HEAD/.github/workflows/docs.yml -------------------------------------------------------------------------------- /.github/workflows/pr-title.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litestar-org/dtos/HEAD/.github/workflows/pr-title.yml -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litestar-org/dtos/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litestar-org/dtos/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litestar-org/dtos/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /CONTRIBUTING.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litestar-org/dtos/HEAD/CONTRIBUTING.rst -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litestar-org/dtos/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litestar-org/dtos/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litestar-org/dtos/HEAD/README.md -------------------------------------------------------------------------------- /copier.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litestar-org/dtos/HEAD/copier.yaml -------------------------------------------------------------------------------- /docs/CONTRIBUTORS.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/PYPI_README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litestar-org/dtos/HEAD/docs/PYPI_README.md -------------------------------------------------------------------------------- /docs/_static/css/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litestar-org/dtos/HEAD/docs/_static/css/custom.css -------------------------------------------------------------------------------- /docs/_static/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litestar-org/dtos/HEAD/docs/_static/logo.png -------------------------------------------------------------------------------- /docs/changelog.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litestar-org/dtos/HEAD/docs/changelog.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litestar-org/dtos/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/contribution-guide.rst: -------------------------------------------------------------------------------- 1 | :orphan: 2 | 3 | .. include:: ../CONTRIBUTING.rst 4 | -------------------------------------------------------------------------------- /docs/examples/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/examples/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litestar-org/dtos/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/reference/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litestar-org/dtos/HEAD/docs/reference/index.rst -------------------------------------------------------------------------------- /docs/releases.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litestar-org/dtos/HEAD/docs/releases.rst -------------------------------------------------------------------------------- /docs/usage/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litestar-org/dtos/HEAD/docs/usage/index.rst -------------------------------------------------------------------------------- /docs/usage/placeholder.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litestar-org/dtos/HEAD/docs/usage/placeholder.rst -------------------------------------------------------------------------------- /dtos/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litestar-org/dtos/HEAD/dtos/__init__.py -------------------------------------------------------------------------------- /dtos/__metadata__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litestar-org/dtos/HEAD/dtos/__metadata__.py -------------------------------------------------------------------------------- /dtos/_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litestar-org/dtos/HEAD/dtos/_types.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litestar-org/dtos/HEAD/pyproject.toml -------------------------------------------------------------------------------- /sonar-project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litestar-org/dtos/HEAD/sonar-project.properties -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_src.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litestar-org/dtos/HEAD/tests/test_src.py -------------------------------------------------------------------------------- /tools/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/build_docs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litestar-org/dtos/HEAD/tools/build_docs.py -------------------------------------------------------------------------------- /tools/pypi_readme.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litestar-org/dtos/HEAD/tools/pypi_readme.py -------------------------------------------------------------------------------- /tools/sphinx_ext/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litestar-org/dtos/HEAD/tools/sphinx_ext/__init__.py -------------------------------------------------------------------------------- /tools/sphinx_ext/changelog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litestar-org/dtos/HEAD/tools/sphinx_ext/changelog.py -------------------------------------------------------------------------------- /tools/sphinx_ext/missing_references.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litestar-org/dtos/HEAD/tools/sphinx_ext/missing_references.py -------------------------------------------------------------------------------- /uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litestar-org/dtos/HEAD/uv.lock --------------------------------------------------------------------------------