drizzle-kit 0.20.14-a77266f → 0.20.14-b6f235e

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.
Files changed (48) hide show
  1. package/bin.cjs +21882 -21527
  2. package/cli/commands/migrate.d.ts +121 -97
  3. package/cli/commands/mysqlIntrospect.d.ts +8 -14
  4. package/cli/commands/mysqlPushUtils.d.ts +2 -2
  5. package/cli/commands/pgConnect.d.ts +1 -1
  6. package/cli/commands/pgIntrospect.d.ts +18 -11
  7. package/cli/commands/pgPushUtils.d.ts +2 -2
  8. package/cli/commands/sqliteIntrospect.d.ts +9 -9
  9. package/cli/commands/sqlitePushUtils.d.ts +3 -3
  10. package/cli/commands/utils.d.ts +15 -259
  11. package/cli/validations/cli.d.ts +107 -0
  12. package/cli/validations/common.d.ts +205 -7
  13. package/cli/validations/mysql.d.ts +6 -1
  14. package/cli/validations/pg.d.ts +6 -1
  15. package/cli/validations/sqlite.d.ts +382 -0
  16. package/cli/views.d.ts +7 -5
  17. package/global.d.ts +3 -1
  18. package/index.d.mts +8 -6
  19. package/index.d.ts +8 -6
  20. package/index.js +1 -0
  21. package/introspect-mysql.d.ts +1 -1
  22. package/introspect-pg.d.ts +5 -2
  23. package/introspect-sqlite.d.ts +1 -1
  24. package/jsonDiffer.d.ts +14 -29
  25. package/jsonStatements.d.ts +38 -11
  26. package/package.json +18 -50
  27. package/payload.js +8053 -8337
  28. package/payload.mjs +9022 -9312
  29. package/schemaValidator.d.ts +73 -70
  30. package/serializer/mysqlImports.d.ts +3 -7
  31. package/serializer/mysqlSchema.d.ts +1624 -493
  32. package/serializer/mysqlSerializer.d.ts +4 -4
  33. package/serializer/pgImports.d.ts +2 -2
  34. package/serializer/pgSchema.d.ts +1260 -801
  35. package/serializer/sqliteImports.d.ts +2 -4
  36. package/serializer/sqliteSchema.d.ts +144 -570
  37. package/serializer/sqliteSerializer.d.ts +3 -3
  38. package/snapshotsDiffer.d.ts +1908 -1050
  39. package/utils/words.d.ts +1 -1
  40. package/utils-studio.js +4147 -83
  41. package/utils-studio.mjs +4147 -83
  42. package/utils.d.ts +6 -140
  43. package/utils.js +3903 -7064
  44. package/utils.mjs +3982 -7143
  45. package/cli/commands/mysqlUp.d.ts +0 -4
  46. package/cli/commands/pgUp.d.ts +0 -4
  47. package/cli/commands/sqliteUtils.d.ts +0 -162
  48. package/cli/commands/upFolders.d.ts +0 -27
@@ -1,6 +1,6 @@
1
1
  import type { SQLiteSchemaInternal } from "../serializer/sqliteSchema";
2
2
  import { AnySQLiteTable } from "drizzle-orm/sqlite-core";
3
- import type { IntrospectStage, IntrospectStatus } from "src/cli/views";
4
- import type { DrizzleDbClient } from "src/drivers";
5
- export declare const generateSqliteSnapshot: (tables: AnySQLiteTable[], enums: any[]) => SQLiteSchemaInternal;
3
+ import type { IntrospectStage, IntrospectStatus } from "../cli/views";
4
+ import type { DrizzleDbClient } from "../drivers";
5
+ export declare const generateSqliteSnapshot: (tables: AnySQLiteTable[]) => SQLiteSchemaInternal;
6
6
  export declare const fromDatabase: (db: DrizzleDbClient, tablesFilter?: (table: string) => boolean, progressCallback?: ((stage: IntrospectStage, count: number, status: IntrospectStatus) => void) | undefined) => Promise<SQLiteSchemaInternal>;