drizzle-kit 0.23.2 → 0.24.0-38d6dab

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 (8) hide show
  1. package/api.d.mts +20 -4
  2. package/api.d.ts +20 -4
  3. package/api.js +1315 -404
  4. package/api.mjs +1315 -404
  5. package/bin.cjs +1658 -394
  6. package/package.json +1 -1
  7. package/utils.js +14 -0
  8. package/utils.mjs +12 -0
package/api.d.mts CHANGED
@@ -1411,7 +1411,7 @@ declare const pushMySQLSchema: (imports: Record<string, unknown>, drizzleInstanc
1411
1411
  apply: () => Promise<void>;
1412
1412
  }>;
1413
1413
  declare const upPgSnapshot: (snapshot: Record<string, unknown>) => {
1414
- version: "6";
1414
+ version: "7";
1415
1415
  dialect: "postgresql";
1416
1416
  tables: Record<string, {
1417
1417
  name: string;
@@ -1444,11 +1444,17 @@ declare const upPgSnapshot: (snapshot: Record<string, unknown>) => {
1444
1444
  }>;
1445
1445
  indexes: Record<string, {
1446
1446
  name: string;
1447
- columns: string[];
1447
+ columns: {
1448
+ expression: string;
1449
+ isExpression: boolean;
1450
+ asc: boolean;
1451
+ nulls?: string | undefined;
1452
+ opclass?: string | undefined;
1453
+ }[];
1448
1454
  isUnique: boolean;
1449
1455
  method: string;
1450
1456
  concurrently: boolean;
1451
- with?: Record<string, string> | undefined;
1457
+ with?: Record<string, any> | undefined;
1452
1458
  where?: string | undefined;
1453
1459
  }>;
1454
1460
  foreignKeys: Record<string, {
@@ -1477,6 +1483,16 @@ declare const upPgSnapshot: (snapshot: Record<string, unknown>) => {
1477
1483
  schema: string;
1478
1484
  }>;
1479
1485
  schemas: Record<string, string>;
1486
+ sequences: Record<string, {
1487
+ name: string;
1488
+ schema: string;
1489
+ increment?: string | undefined;
1490
+ minValue?: string | undefined;
1491
+ maxValue?: string | undefined;
1492
+ startWith?: string | undefined;
1493
+ cache?: string | undefined;
1494
+ cycle?: boolean | undefined;
1495
+ }>;
1480
1496
  _meta: {
1481
1497
  tables: Record<string, string>;
1482
1498
  columns: Record<string, string>;
@@ -1493,6 +1509,6 @@ declare const upPgSnapshot: (snapshot: Record<string, unknown>) => {
1493
1509
  } | undefined>;
1494
1510
  } | undefined>;
1495
1511
  } | undefined;
1496
- };
1512
+ } | Record<string, unknown>;
1497
1513
 
1498
1514
  export { type DrizzleMySQLSnapshotJSON, type DrizzleSQLiteSnapshotJSON, type DrizzleSnapshotJSON, generateDrizzleJson, generateMigration, generateMySQLDrizzleJson, generateMySQLMigration, generateSQLiteDrizzleJson, generateSQLiteMigration, pushMySQLSchema, pushSQLiteSchema, pushSchema, upPgSnapshot };
package/api.d.ts CHANGED
@@ -1411,7 +1411,7 @@ declare const pushMySQLSchema: (imports: Record<string, unknown>, drizzleInstanc
1411
1411
  apply: () => Promise<void>;
1412
1412
  }>;
1413
1413
  declare const upPgSnapshot: (snapshot: Record<string, unknown>) => {
1414
- version: "6";
1414
+ version: "7";
1415
1415
  dialect: "postgresql";
1416
1416
  tables: Record<string, {
1417
1417
  name: string;
@@ -1444,11 +1444,17 @@ declare const upPgSnapshot: (snapshot: Record<string, unknown>) => {
1444
1444
  }>;
1445
1445
  indexes: Record<string, {
1446
1446
  name: string;
1447
- columns: string[];
1447
+ columns: {
1448
+ expression: string;
1449
+ isExpression: boolean;
1450
+ asc: boolean;
1451
+ nulls?: string | undefined;
1452
+ opclass?: string | undefined;
1453
+ }[];
1448
1454
  isUnique: boolean;
1449
1455
  method: string;
1450
1456
  concurrently: boolean;
1451
- with?: Record<string, string> | undefined;
1457
+ with?: Record<string, any> | undefined;
1452
1458
  where?: string | undefined;
1453
1459
  }>;
1454
1460
  foreignKeys: Record<string, {
@@ -1477,6 +1483,16 @@ declare const upPgSnapshot: (snapshot: Record<string, unknown>) => {
1477
1483
  schema: string;
1478
1484
  }>;
1479
1485
  schemas: Record<string, string>;
1486
+ sequences: Record<string, {
1487
+ name: string;
1488
+ schema: string;
1489
+ increment?: string | undefined;
1490
+ minValue?: string | undefined;
1491
+ maxValue?: string | undefined;
1492
+ startWith?: string | undefined;
1493
+ cache?: string | undefined;
1494
+ cycle?: boolean | undefined;
1495
+ }>;
1480
1496
  _meta: {
1481
1497
  tables: Record<string, string>;
1482
1498
  columns: Record<string, string>;
@@ -1493,6 +1509,6 @@ declare const upPgSnapshot: (snapshot: Record<string, unknown>) => {
1493
1509
  } | undefined>;
1494
1510
  } | undefined>;
1495
1511
  } | undefined;
1496
- };
1512
+ } | Record<string, unknown>;
1497
1513
 
1498
1514
  export { type DrizzleMySQLSnapshotJSON, type DrizzleSQLiteSnapshotJSON, type DrizzleSnapshotJSON, generateDrizzleJson, generateMigration, generateMySQLDrizzleJson, generateMySQLMigration, generateSQLiteDrizzleJson, generateSQLiteMigration, pushMySQLSchema, pushSQLiteSchema, pushSchema, upPgSnapshot };