drizzle-kit 1.0.0-beta.1-57a367f → 1.0.0-beta.1-f92627f
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 +1 -1
- package/api.mjs +1 -1
- package/bin.cjs +1 -1
- package/package.json +1 -1
package/api.js
CHANGED
|
@@ -45296,7 +45296,7 @@ var init_vector4 = __esm({
|
|
|
45296
45296
|
__publicField(this, "elementType", "I64");
|
|
45297
45297
|
}
|
|
45298
45298
|
getSQLType() {
|
|
45299
|
-
return `vector(${this.config.length}, ${this.elementType}
|
|
45299
|
+
return `vector(${this.config.length}, ${this.elementType})`;
|
|
45300
45300
|
}
|
|
45301
45301
|
mapToDriverValue(value) {
|
|
45302
45302
|
return `[${value.map((e) => e.toString()).join(",")}]`;
|
package/api.mjs
CHANGED
|
@@ -45301,7 +45301,7 @@ var init_vector4 = __esm({
|
|
|
45301
45301
|
__publicField(this, "elementType", "I64");
|
|
45302
45302
|
}
|
|
45303
45303
|
getSQLType() {
|
|
45304
|
-
return `vector(${this.config.length}, ${this.elementType}
|
|
45304
|
+
return `vector(${this.config.length}, ${this.elementType})`;
|
|
45305
45305
|
}
|
|
45306
45306
|
mapToDriverValue(value) {
|
|
45307
45307
|
return `[${value.map((e) => e.toString()).join(",")}]`;
|
package/bin.cjs
CHANGED
|
@@ -93920,7 +93920,7 @@ init_utils5();
|
|
|
93920
93920
|
var version2 = async () => {
|
|
93921
93921
|
const { npmVersion } = await ormCoreVersions();
|
|
93922
93922
|
const ormVersion = npmVersion ? `drizzle-orm: v${npmVersion}` : "";
|
|
93923
|
-
const envVersion = "1.0.0-beta.1-
|
|
93923
|
+
const envVersion = "1.0.0-beta.1-f92627f";
|
|
93924
93924
|
const kitVersion = envVersion ? `v${envVersion}` : "--";
|
|
93925
93925
|
const versions = `drizzle-kit: ${kitVersion}
|
|
93926
93926
|
${ormVersion}`;
|