drizzle-kit 0.27.2 → 0.28.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,8 +0,0 @@
1
- declare const prefixes: readonly ["index", "timestamp", "supabase", "unix", "none"];
2
- type Prefix = (typeof prefixes)[number];
3
- declare const casingTypes: readonly ["snake_case", "camelCase"];
4
- type CasingType = (typeof casingTypes)[number];
5
- declare const drivers: readonly ["d1-http", "expo", "aws-data-api", "pglite"];
6
- type Driver = (typeof drivers)[number];
7
-
8
- export type { CasingType as C, Driver as D, Prefix as P };