drizzle-kit 0.31.0-62ea5c4 → 0.31.0-63b40d5
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 +443 -443
- package/api.d.ts +443 -443
- package/api.js +8 -8
- package/api.mjs +8 -8
- package/bin.cjs +1 -1
- package/package.json +1 -1
package/api.js
CHANGED
@@ -22662,7 +22662,7 @@ var version;
|
|
22662
22662
|
var init_version = __esm({
|
22663
22663
|
"../drizzle-orm/dist/version.js"() {
|
22664
22664
|
"use strict";
|
22665
|
-
version = "0.43.
|
22665
|
+
version = "0.43.1";
|
22666
22666
|
}
|
22667
22667
|
});
|
22668
22668
|
|
@@ -30043,18 +30043,18 @@ var init_schema = __esm({
|
|
30043
30043
|
__publicField(this, "materializedView", (name2, columns) => {
|
30044
30044
|
return pgMaterializedViewWithSchema(name2, columns, this.schemaName);
|
30045
30045
|
});
|
30046
|
-
__publicField(this, "enum", (enumName, input) => {
|
30047
|
-
return Array.isArray(input) ? pgEnumWithSchema(
|
30048
|
-
enumName,
|
30049
|
-
[...input],
|
30050
|
-
this.schemaName
|
30051
|
-
) : pgEnumObjectWithSchema(enumName, input, this.schemaName);
|
30052
|
-
});
|
30053
30046
|
__publicField(this, "sequence", (name2, options) => {
|
30054
30047
|
return pgSequenceWithSchema(name2, options, this.schemaName);
|
30055
30048
|
});
|
30056
30049
|
this.schemaName = schemaName;
|
30057
30050
|
}
|
30051
|
+
enum(enumName, input) {
|
30052
|
+
return Array.isArray(input) ? pgEnumWithSchema(
|
30053
|
+
enumName,
|
30054
|
+
[...input],
|
30055
|
+
this.schemaName
|
30056
|
+
) : pgEnumObjectWithSchema(enumName, input, this.schemaName);
|
30057
|
+
}
|
30058
30058
|
getSQL() {
|
30059
30059
|
return new SQL([sql.identifier(this.schemaName)]);
|
30060
30060
|
}
|
package/api.mjs
CHANGED
@@ -22667,7 +22667,7 @@ var version;
|
|
22667
22667
|
var init_version = __esm({
|
22668
22668
|
"../drizzle-orm/dist/version.js"() {
|
22669
22669
|
"use strict";
|
22670
|
-
version = "0.43.
|
22670
|
+
version = "0.43.1";
|
22671
22671
|
}
|
22672
22672
|
});
|
22673
22673
|
|
@@ -30048,18 +30048,18 @@ var init_schema = __esm({
|
|
30048
30048
|
__publicField(this, "materializedView", (name2, columns) => {
|
30049
30049
|
return pgMaterializedViewWithSchema(name2, columns, this.schemaName);
|
30050
30050
|
});
|
30051
|
-
__publicField(this, "enum", (enumName, input) => {
|
30052
|
-
return Array.isArray(input) ? pgEnumWithSchema(
|
30053
|
-
enumName,
|
30054
|
-
[...input],
|
30055
|
-
this.schemaName
|
30056
|
-
) : pgEnumObjectWithSchema(enumName, input, this.schemaName);
|
30057
|
-
});
|
30058
30051
|
__publicField(this, "sequence", (name2, options) => {
|
30059
30052
|
return pgSequenceWithSchema(name2, options, this.schemaName);
|
30060
30053
|
});
|
30061
30054
|
this.schemaName = schemaName;
|
30062
30055
|
}
|
30056
|
+
enum(enumName, input) {
|
30057
|
+
return Array.isArray(input) ? pgEnumWithSchema(
|
30058
|
+
enumName,
|
30059
|
+
[...input],
|
30060
|
+
this.schemaName
|
30061
|
+
) : pgEnumObjectWithSchema(enumName, input, this.schemaName);
|
30062
|
+
}
|
30063
30063
|
getSQL() {
|
30064
30064
|
return new SQL([sql.identifier(this.schemaName)]);
|
30065
30065
|
}
|
package/bin.cjs
CHANGED
@@ -93117,7 +93117,7 @@ init_utils5();
|
|
93117
93117
|
var version2 = async () => {
|
93118
93118
|
const { npmVersion } = await ormCoreVersions();
|
93119
93119
|
const ormVersion = npmVersion ? `drizzle-orm: v${npmVersion}` : "";
|
93120
|
-
const envVersion = "0.31.0-
|
93120
|
+
const envVersion = "0.31.0-63b40d5";
|
93121
93121
|
const kitVersion = envVersion ? `v${envVersion}` : "--";
|
93122
93122
|
const versions = `drizzle-kit: ${kitVersion}
|
93123
93123
|
${ormVersion}`;
|