Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(models): setup types and parser with zod #31

Merged
merged 56 commits into from
Sep 6, 2023
Merged

feat(models): setup types and parser with zod #31

merged 56 commits into from
Sep 6, 2023

Conversation

BioPhoton
Copy link
Collaborator

@BioPhoton BioPhoton commented Aug 30, 2023

Created package for models.

The package includes:

  • types and models for the CLI as well as plugins
  • parser for the exported types (written with zod)
  • basic validations
  • regex for slug, ref, and filePath
  • cross field validators for slug and ref
  • basic readme
  • additionally added
    • PluginsOutput
export const pluginsOutputSchema = z.object(
  {
    date: z.date({description: 'ISO format date of the start of all plugin runs'}),
    duration: z.string({description: 'Duration od all plugin runs in ms'})
  },
  {description: 'JSON formatted output emitted after executing all plugins.'},
);

Tests are added for:

  • regex
  • string helper
  • schema validators
  • cross field validators
  • custom validators

Precondition for #32 ; closes #30

BioPhoton and others added 8 commits September 6, 2023 12:12
Co-authored-by: Matěj Chalk <[email protected]>
Co-authored-by: Matěj Chalk <[email protected]>
Co-authored-by: Matěj Chalk <[email protected]>
Co-authored-by: Matěj Chalk <[email protected]>
Co-authored-by: Matěj Chalk <[email protected]>
Co-authored-by: Matěj Chalk <[email protected]>
Co-authored-by: Matěj Chalk <[email protected]>
matejchalk
matejchalk previously approved these changes Sep 6, 2023
@BioPhoton BioPhoton requested a review from vmasek September 6, 2023 12:32
@BioPhoton BioPhoton merged commit adec416 into main Sep 6, 2023
@BioPhoton BioPhoton deleted the add-models branch September 6, 2023 12:45
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Set up models package as well as types and parser
3 participants