prisma-sql 1.66.0 → 1.66.1

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.
@@ -6480,7 +6480,6 @@ var init_streaming_progressive_reducer = __esm({
6480
6480
  var init_streaming_where_in_executor = __esm({
6481
6481
  "src/builder/select/streaming-where-in-executor.ts"() {
6482
6482
  init_primary_key_utils();
6483
- init_where_in_executor_base();
6484
6483
  init_src();
6485
6484
  init_reducer();
6486
6485
  }
@@ -8757,7 +8756,7 @@ var require_package = __commonJS({
8757
8756
  "package.json"(exports$1, module) {
8758
8757
  module.exports = {
8759
8758
  name: "prisma-sql",
8760
- version: "1.66.0",
8759
+ version: "1.66.1",
8761
8760
  description: "Convert Prisma queries to optimized SQL with type safety. 2-7x faster than Prisma Client.",
8762
8761
  main: "dist/index.cjs",
8763
8762
  module: "dist/index.js",
@@ -10169,25 +10168,25 @@ function generateExtension(runtimeImportPath) {
10169
10168
  },
10170
10169
  model: {
10171
10170
  $allModels: {
10172
- async findMany(args: any) {
10171
+ async findMany(this: ModelContext, args: any) {
10173
10172
  return handleMethod.call(this, 'findMany', args)
10174
10173
  },
10175
- async findFirst(args: any) {
10174
+ async findFirst(this: ModelContext, args: any) {
10176
10175
  return handleMethod.call(this, 'findFirst', args)
10177
10176
  },
10178
- async findUnique(args: any) {
10177
+ async findUnique(this: ModelContext, args: any) {
10179
10178
  return handleMethod.call(this, 'findUnique', args)
10180
10179
  },
10181
- async count(args: any) {
10180
+ async count(this: ModelContext, args: any) {
10182
10181
  return handleMethod.call(this, 'count', args)
10183
10182
  },
10184
- async aggregate(args: any) {
10183
+ async aggregate(this: ModelContext, args: any) {
10185
10184
  return handleMethod.call(this, 'aggregate', args)
10186
10185
  },
10187
- async groupBy(args: any) {
10186
+ async groupBy(this: ModelContext, args: any) {
10188
10187
  return handleMethod.call(this, 'groupBy', args)
10189
10188
  },
10190
- findManyStream(args?: any): AsyncIterableIterator<any> {
10189
+ findManyStream(this: ModelContext, args?: any): AsyncIterableIterator<any> {
10191
10190
  return findManyStream.call(this, args)
10192
10191
  },
10193
10192
  },