prisma-sql 1.61.0 → 1.63.0
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/dist/generator.cjs +2 -3
- package/dist/generator.cjs.map +1 -1
- package/dist/generator.js +2 -3
- package/dist/generator.js.map +1 -1
- package/dist/index.cjs +1 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.mts +3 -1
- package/dist/index.d.ts +3 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/readme.md +3 -3
package/dist/generator.js
CHANGED
|
@@ -69,7 +69,7 @@ var require_package = __commonJS({
|
|
|
69
69
|
"package.json"(exports$1, module) {
|
|
70
70
|
module.exports = {
|
|
71
71
|
name: "prisma-sql",
|
|
72
|
-
version: "1.
|
|
72
|
+
version: "1.63.0",
|
|
73
73
|
description: "Convert Prisma queries to optimized SQL with type safety. 2-7x faster than Prisma Client.",
|
|
74
74
|
main: "dist/index.cjs",
|
|
75
75
|
module: "dist/index.js",
|
|
@@ -5409,8 +5409,7 @@ function createQueryKey(processedQuery) {
|
|
|
5409
5409
|
}
|
|
5410
5410
|
function generateImports() {
|
|
5411
5411
|
return `// Generated by @prisma-sql/generator - DO NOT EDIT
|
|
5412
|
-
import { buildSQL, buildBatchSql, parseBatchResults, buildBatchCountSql, parseBatchCountResults, createTransactionExecutor, transformQueryResults, type PrismaMethod, type Model, type BatchQuery, type BatchCountQuery, type TransactionQuery, type TransactionOptions } from 'prisma-sql'
|
|
5413
|
-
import { normalizeValue } from 'prisma-sql/utils/normalize-value'`;
|
|
5412
|
+
import { buildSQL, buildBatchSql, parseBatchResults, buildBatchCountSql, parseBatchCountResults, createTransactionExecutor, transformQueryResults, normalizeValue, type PrismaMethod, type Model, type BatchQuery, type BatchCountQuery, type TransactionQuery, type TransactionOptions } from 'prisma-sql'`;
|
|
5414
5413
|
}
|
|
5415
5414
|
function generateCoreTypes() {
|
|
5416
5415
|
return `class DeferredQuery {
|