Skip to content

Commit

Permalink
Snowtype update for v0.8.3 (#1000)
Browse files Browse the repository at this point in the history
  • Loading branch information
igneel64 authored Sep 6, 2024
1 parent 1bc146b commit c339168
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions docs/collecting-data/code-generation/snowtype-config/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,13 +62,15 @@ options?: {
}
update?: {
/* Update your configuration file automatically and regenerate the code of the latest available update. */
regenerateOnUpdate?: boolean
regenerateOnUpdate?: boolean;
/* The maximum SchemaVer update to show an available update notification for. */
maximumBump?: "major" | "minor" | "patch"
maximumBump?: "major" | "minor" | "patch";
/* The `update` command will only display updates for Data Structures that have been deployed to production environment. */
showOnlyProdUpdates?: boolean;
}
patch?: {
/* Automatically regenerate the code after a successful patch operation. */
regenerateOnPatch?: boolean
regenerateOnPatch?: boolean;
}
}
}
Expand Down Expand Up @@ -150,8 +152,9 @@ type SnowtypeConfig = {
disallowDevSchemas?: boolean;
}
update?: {
regenerateOnUpdate?: boolean
maximumBump?: "major" | "minor" | "patch"
regenerateOnUpdate?: boolean;
maximumBump?: "major" | "minor" | "patch";
showOnlyProdUpdates?: boolean;
}
patch?: {
regenerateOnPatch?: boolean
Expand Down

0 comments on commit c339168

Please sign in to comment.