drizzle-kit 0.24.0-38d6dab → 0.24.0-5df8253
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.
- package/api.d.mts +10 -0
- package/api.d.ts +10 -0
- package/api.js +501 -1280
- package/api.mjs +501 -1280
- package/bin.cjs +756 -1832
- package/package.json +2 -1
- package/utils.js +2 -10
- package/utils.mjs +2 -9
package/api.d.mts
CHANGED
@@ -801,23 +801,28 @@ declare const pgSchema: zod.ZodObject<zod.objectUtil.extendShape<{
|
|
801
801
|
isArray: zod.ZodOptional<zod.ZodBoolean>;
|
802
802
|
dimensions: zod.ZodOptional<zod.ZodNumber>;
|
803
803
|
rawType: zod.ZodOptional<zod.ZodString>;
|
804
|
+
isDefaultAnExpression: zod.ZodOptional<zod.ZodBoolean>;
|
804
805
|
}, "strip", zod.ZodTypeAny, {
|
806
|
+
isDefaultAnExpression?: boolean | undefined;
|
805
807
|
isArray?: boolean | undefined;
|
806
808
|
dimensions?: number | undefined;
|
807
809
|
rawType?: string | undefined;
|
808
810
|
}, {
|
811
|
+
isDefaultAnExpression?: boolean | undefined;
|
809
812
|
isArray?: boolean | undefined;
|
810
813
|
dimensions?: number | undefined;
|
811
814
|
rawType?: string | undefined;
|
812
815
|
}>>>;
|
813
816
|
}, "strip", zod.ZodTypeAny, {
|
814
817
|
columns: Record<string, {
|
818
|
+
isDefaultAnExpression?: boolean | undefined;
|
815
819
|
isArray?: boolean | undefined;
|
816
820
|
dimensions?: number | undefined;
|
817
821
|
rawType?: string | undefined;
|
818
822
|
} | undefined>;
|
819
823
|
}, {
|
820
824
|
columns: Record<string, {
|
825
|
+
isDefaultAnExpression?: boolean | undefined;
|
821
826
|
isArray?: boolean | undefined;
|
822
827
|
dimensions?: number | undefined;
|
823
828
|
rawType?: string | undefined;
|
@@ -826,6 +831,7 @@ declare const pgSchema: zod.ZodObject<zod.objectUtil.extendShape<{
|
|
826
831
|
}, "strip", zod.ZodTypeAny, {
|
827
832
|
tables: Record<string, {
|
828
833
|
columns: Record<string, {
|
834
|
+
isDefaultAnExpression?: boolean | undefined;
|
829
835
|
isArray?: boolean | undefined;
|
830
836
|
dimensions?: number | undefined;
|
831
837
|
rawType?: string | undefined;
|
@@ -834,6 +840,7 @@ declare const pgSchema: zod.ZodObject<zod.objectUtil.extendShape<{
|
|
834
840
|
}, {
|
835
841
|
tables: Record<string, {
|
836
842
|
columns: Record<string, {
|
843
|
+
isDefaultAnExpression?: boolean | undefined;
|
837
844
|
isArray?: boolean | undefined;
|
838
845
|
dimensions?: number | undefined;
|
839
846
|
rawType?: string | undefined;
|
@@ -936,6 +943,7 @@ declare const pgSchema: zod.ZodObject<zod.objectUtil.extendShape<{
|
|
936
943
|
internal?: {
|
937
944
|
tables: Record<string, {
|
938
945
|
columns: Record<string, {
|
946
|
+
isDefaultAnExpression?: boolean | undefined;
|
939
947
|
isArray?: boolean | undefined;
|
940
948
|
dimensions?: number | undefined;
|
941
949
|
rawType?: string | undefined;
|
@@ -1025,6 +1033,7 @@ declare const pgSchema: zod.ZodObject<zod.objectUtil.extendShape<{
|
|
1025
1033
|
internal?: {
|
1026
1034
|
tables: Record<string, {
|
1027
1035
|
columns: Record<string, {
|
1036
|
+
isDefaultAnExpression?: boolean | undefined;
|
1028
1037
|
isArray?: boolean | undefined;
|
1029
1038
|
dimensions?: number | undefined;
|
1030
1039
|
rawType?: string | undefined;
|
@@ -1506,6 +1515,7 @@ declare const upPgSnapshot: (snapshot: Record<string, unknown>) => {
|
|
1506
1515
|
isArray?: boolean | undefined;
|
1507
1516
|
dimensions?: number | undefined;
|
1508
1517
|
rawType?: string | undefined;
|
1518
|
+
isDefaultAnExpression?: boolean | undefined;
|
1509
1519
|
} | undefined>;
|
1510
1520
|
} | undefined>;
|
1511
1521
|
} | undefined;
|
package/api.d.ts
CHANGED
@@ -801,23 +801,28 @@ declare const pgSchema: zod.ZodObject<zod.objectUtil.extendShape<{
|
|
801
801
|
isArray: zod.ZodOptional<zod.ZodBoolean>;
|
802
802
|
dimensions: zod.ZodOptional<zod.ZodNumber>;
|
803
803
|
rawType: zod.ZodOptional<zod.ZodString>;
|
804
|
+
isDefaultAnExpression: zod.ZodOptional<zod.ZodBoolean>;
|
804
805
|
}, "strip", zod.ZodTypeAny, {
|
806
|
+
isDefaultAnExpression?: boolean | undefined;
|
805
807
|
isArray?: boolean | undefined;
|
806
808
|
dimensions?: number | undefined;
|
807
809
|
rawType?: string | undefined;
|
808
810
|
}, {
|
811
|
+
isDefaultAnExpression?: boolean | undefined;
|
809
812
|
isArray?: boolean | undefined;
|
810
813
|
dimensions?: number | undefined;
|
811
814
|
rawType?: string | undefined;
|
812
815
|
}>>>;
|
813
816
|
}, "strip", zod.ZodTypeAny, {
|
814
817
|
columns: Record<string, {
|
818
|
+
isDefaultAnExpression?: boolean | undefined;
|
815
819
|
isArray?: boolean | undefined;
|
816
820
|
dimensions?: number | undefined;
|
817
821
|
rawType?: string | undefined;
|
818
822
|
} | undefined>;
|
819
823
|
}, {
|
820
824
|
columns: Record<string, {
|
825
|
+
isDefaultAnExpression?: boolean | undefined;
|
821
826
|
isArray?: boolean | undefined;
|
822
827
|
dimensions?: number | undefined;
|
823
828
|
rawType?: string | undefined;
|
@@ -826,6 +831,7 @@ declare const pgSchema: zod.ZodObject<zod.objectUtil.extendShape<{
|
|
826
831
|
}, "strip", zod.ZodTypeAny, {
|
827
832
|
tables: Record<string, {
|
828
833
|
columns: Record<string, {
|
834
|
+
isDefaultAnExpression?: boolean | undefined;
|
829
835
|
isArray?: boolean | undefined;
|
830
836
|
dimensions?: number | undefined;
|
831
837
|
rawType?: string | undefined;
|
@@ -834,6 +840,7 @@ declare const pgSchema: zod.ZodObject<zod.objectUtil.extendShape<{
|
|
834
840
|
}, {
|
835
841
|
tables: Record<string, {
|
836
842
|
columns: Record<string, {
|
843
|
+
isDefaultAnExpression?: boolean | undefined;
|
837
844
|
isArray?: boolean | undefined;
|
838
845
|
dimensions?: number | undefined;
|
839
846
|
rawType?: string | undefined;
|
@@ -936,6 +943,7 @@ declare const pgSchema: zod.ZodObject<zod.objectUtil.extendShape<{
|
|
936
943
|
internal?: {
|
937
944
|
tables: Record<string, {
|
938
945
|
columns: Record<string, {
|
946
|
+
isDefaultAnExpression?: boolean | undefined;
|
939
947
|
isArray?: boolean | undefined;
|
940
948
|
dimensions?: number | undefined;
|
941
949
|
rawType?: string | undefined;
|
@@ -1025,6 +1033,7 @@ declare const pgSchema: zod.ZodObject<zod.objectUtil.extendShape<{
|
|
1025
1033
|
internal?: {
|
1026
1034
|
tables: Record<string, {
|
1027
1035
|
columns: Record<string, {
|
1036
|
+
isDefaultAnExpression?: boolean | undefined;
|
1028
1037
|
isArray?: boolean | undefined;
|
1029
1038
|
dimensions?: number | undefined;
|
1030
1039
|
rawType?: string | undefined;
|
@@ -1506,6 +1515,7 @@ declare const upPgSnapshot: (snapshot: Record<string, unknown>) => {
|
|
1506
1515
|
isArray?: boolean | undefined;
|
1507
1516
|
dimensions?: number | undefined;
|
1508
1517
|
rawType?: string | undefined;
|
1518
|
+
isDefaultAnExpression?: boolean | undefined;
|
1509
1519
|
} | undefined>;
|
1510
1520
|
} | undefined>;
|
1511
1521
|
} | undefined;
|