Pydantic To Typescript Versions Save

CLI Tool for converting pydantic models into typescript definitions

v1.0.10

1 year ago

What's Changed

New Contributors

Full Changelog: https://github.com/phillipdupuis/pydantic-to-typescript/compare/v1.0.9...v1.0.10

v1.0.9

1 year ago

What's Changed

  • Added tests for exception raising
  • Removed click dependency, since the built-in argparse module is sufficient
  • Added basic action to github marketplace

v1.0.7

2 years ago

Primary changes:

  • added the option to exclude pydantic models from the generated typescript definitions. This is done by providing the names of the models which should be excluded. For CLI users, this can be accomplished via the --exclude option, ex: --exclude MyCustomBaseModel to exclude the model named MyCustomBaseModel from the results. And if you want to exclude multiple models, provide multiple options, ex: --exclude Foo --exclude Bar to exclude both Foo and Bar. For python users, this same behavior can be accomplished by passing a tuple of model names as the exclude kwarg to generate_typescript_defs.

Additional changes:

  • fixed tests (even though they aren't part of CI currently) to reflect the new comment format, including the eslint-disable directive.
  • fixed a bug in which pydantic2ts forced python progams to start logging at the DEBUG level. Logging at the DEBUG level will now only occur if pydantic2ts is invoked via the CLI. If it is called from within another python program, it will use whatever logging configuration has already been set up.

1.0.6

3 years ago