drizzle-kit 0.31.0-26a0497 → 0.31.0-4aa795a
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.js +8 -0
- package/api.mjs +8 -0
- package/bin.cjs +1 -1
- package/package.json +1 -1
package/api.js
CHANGED
@@ -29921,6 +29921,8 @@ var init_db = __esm({
|
|
29921
29921
|
);
|
29922
29922
|
}
|
29923
29923
|
}
|
29924
|
+
this.$cache = { invalidate: async (_params) => {
|
29925
|
+
} };
|
29924
29926
|
}
|
29925
29927
|
$count(source, filters) {
|
29926
29928
|
return new PgCountBuilder({ source, filters, session: this.session });
|
@@ -35359,6 +35361,8 @@ var init_db2 = __esm({
|
|
35359
35361
|
);
|
35360
35362
|
}
|
35361
35363
|
}
|
35364
|
+
this.$cache = { invalidate: async (_params) => {
|
35365
|
+
} };
|
35362
35366
|
}
|
35363
35367
|
$count(source, filters) {
|
35364
35368
|
return new SQLiteCountBuilder({ source, filters, session: this.session });
|
@@ -40902,6 +40906,8 @@ var init_db3 = __esm({
|
|
40902
40906
|
);
|
40903
40907
|
}
|
40904
40908
|
}
|
40909
|
+
this.$cache = { invalidate: async (_params) => {
|
40910
|
+
} };
|
40905
40911
|
}
|
40906
40912
|
$count(source, filters) {
|
40907
40913
|
return new MySqlCountBuilder({ source, filters, session: this.session });
|
@@ -46229,6 +46235,8 @@ var init_db4 = __esm({
|
|
46229
46235
|
tableNamesMap: {}
|
46230
46236
|
};
|
46231
46237
|
this.query = {};
|
46238
|
+
this.$cache = { invalidate: async (_params) => {
|
46239
|
+
} };
|
46232
46240
|
}
|
46233
46241
|
$count(source, filters) {
|
46234
46242
|
return new SingleStoreCountBuilder({ source, filters, session: this.session });
|
package/api.mjs
CHANGED
@@ -29925,6 +29925,8 @@ var init_db = __esm({
|
|
29925
29925
|
);
|
29926
29926
|
}
|
29927
29927
|
}
|
29928
|
+
this.$cache = { invalidate: async (_params) => {
|
29929
|
+
} };
|
29928
29930
|
}
|
29929
29931
|
$count(source, filters) {
|
29930
29932
|
return new PgCountBuilder({ source, filters, session: this.session });
|
@@ -35363,6 +35365,8 @@ var init_db2 = __esm({
|
|
35363
35365
|
);
|
35364
35366
|
}
|
35365
35367
|
}
|
35368
|
+
this.$cache = { invalidate: async (_params) => {
|
35369
|
+
} };
|
35366
35370
|
}
|
35367
35371
|
$count(source, filters) {
|
35368
35372
|
return new SQLiteCountBuilder({ source, filters, session: this.session });
|
@@ -40906,6 +40910,8 @@ var init_db3 = __esm({
|
|
40906
40910
|
);
|
40907
40911
|
}
|
40908
40912
|
}
|
40913
|
+
this.$cache = { invalidate: async (_params) => {
|
40914
|
+
} };
|
40909
40915
|
}
|
40910
40916
|
$count(source, filters) {
|
40911
40917
|
return new MySqlCountBuilder({ source, filters, session: this.session });
|
@@ -46233,6 +46239,8 @@ var init_db4 = __esm({
|
|
46233
46239
|
tableNamesMap: {}
|
46234
46240
|
};
|
46235
46241
|
this.query = {};
|
46242
|
+
this.$cache = { invalidate: async (_params) => {
|
46243
|
+
} };
|
46236
46244
|
}
|
46237
46245
|
$count(source, filters) {
|
46238
46246
|
return new SingleStoreCountBuilder({ source, filters, session: this.session });
|
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-4aa795a";
|
93121
93121
|
const kitVersion = envVersion ? `v${envVersion}` : "--";
|
93122
93122
|
const versions = `drizzle-kit: ${kitVersion}
|
93123
93123
|
${ormVersion}`;
|