@prisma/client-generator-ts 7.1.0-dev.15 → 7.1.0-dev.16

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/index.js CHANGED
@@ -3591,7 +3591,7 @@ function queryRawDefinition(context) {
3591
3591
  * const result = await prisma.$queryRaw\`SELECT * FROM User WHERE id = \${1} OR email = \${'user@email.com'};\`
3592
3592
  * \`\`\`
3593
3593
  *
3594
- * Read more in our [docs](https://www.prisma.io/docs/reference/tools-and-interfaces/prisma-client/raw-database-access).
3594
+ * Read more in our [docs](https://pris.ly/d/raw-queries).
3595
3595
  */
3596
3596
  $queryRaw<T = unknown>(query: TemplateStringsArray | Prisma.Sql, ...values: any[]): Prisma.PrismaPromise<T>;
3597
3597
 
@@ -3603,7 +3603,7 @@ function queryRawDefinition(context) {
3603
3603
  * const result = await prisma.$queryRawUnsafe('SELECT * FROM User WHERE id = $1 OR email = $2;', 1, 'user@email.com')
3604
3604
  * \`\`\`
3605
3605
  *
3606
- * Read more in our [docs](https://www.prisma.io/docs/reference/tools-and-interfaces/prisma-client/raw-database-access).
3606
+ * Read more in our [docs](https://pris.ly/d/raw-queries).
3607
3607
  */
3608
3608
  $queryRawUnsafe<T = unknown>(query: string, ...values: any[]): Prisma.PrismaPromise<T>;`;
3609
3609
  }
@@ -3619,7 +3619,7 @@ function executeRawDefinition(context) {
3619
3619
  * const result = await prisma.$executeRaw\`UPDATE User SET cool = \${true} WHERE email = \${'user@email.com'};\`
3620
3620
  * \`\`\`
3621
3621
  *
3622
- * Read more in our [docs](https://www.prisma.io/docs/reference/tools-and-interfaces/prisma-client/raw-database-access).
3622
+ * Read more in our [docs](https://pris.ly/d/raw-queries).
3623
3623
  */
3624
3624
  $executeRaw<T = unknown>(query: TemplateStringsArray | Prisma.Sql, ...values: any[]): Prisma.PrismaPromise<number>;
3625
3625
 
@@ -3631,7 +3631,7 @@ function executeRawDefinition(context) {
3631
3631
  * const result = await prisma.$executeRawUnsafe('UPDATE User SET cool = $1 WHERE email = $2 ;', true, 'user@email.com')
3632
3632
  * \`\`\`
3633
3633
  *
3634
- * Read more in our [docs](https://www.prisma.io/docs/reference/tools-and-interfaces/prisma-client/raw-database-access).
3634
+ * Read more in our [docs](https://pris.ly/d/raw-queries).
3635
3635
  */
3636
3636
  $executeRawUnsafe<T = unknown>(query: string, ...values: any[]): Prisma.PrismaPromise<number>;`;
3637
3637
  }
@@ -3676,7 +3676,7 @@ function runCommandRawDefinition(context) {
3676
3676
  })
3677
3677
  \`\`\`
3678
3678
 
3679
- Read more in our [docs](https://www.prisma.io/docs/reference/tools-and-interfaces/prisma-client/raw-database-access).
3679
+ Read more in our [docs](https://pris.ly/d/raw-queries).
3680
3680
  `);
3681
3681
  return ts5.stringify(method3, { indentLevel: 1, newLine: "leading" });
3682
3682
  }
@@ -3701,7 +3701,7 @@ function getPrismaClientClassDocComment({ dmmf }) {
3701
3701
  const ${(0, import_client_common11.uncapitalize)(example.plural)} = await prisma.${(0, import_client_common11.uncapitalize)(example.model)}.findMany()
3702
3702
  \`\`\`
3703
3703
 
3704
- Read more in our [docs](https://www.prisma.io/docs/reference/tools-and-interfaces/prisma-client).
3704
+ Read more in our [docs](https://pris.ly/d/client).
3705
3705
  `;
3706
3706
  }
3707
3707
  var PrismaClientClass = class {
@@ -5725,7 +5725,7 @@ function buildClientOptions(context) {
5725
5725
  { emit: 'stdout', level: 'error' }
5726
5726
  ]
5727
5727
  \`\`\`
5728
- Read more in our [docs](https://www.prisma.io/docs/reference/tools-and-interfaces/prisma-client/logging#the-log-option).
5728
+ Read more in our [docs](https://pris.ly/d/logging).
5729
5729
  `)
5730
5730
  );
5731
5731
  const transactionOptions = ts19.objectType().add(ts19.property("maxWait", ts19.numberType).optional()).add(ts19.property("timeout", ts19.numberType).optional());
@@ -6380,7 +6380,7 @@ var import_internals7 = require("@prisma/internals");
6380
6380
  var import_get_tsconfig = require("get-tsconfig");
6381
6381
 
6382
6382
  // package.json
6383
- var version = "7.1.0-dev.15";
6383
+ var version = "7.1.0-dev.16";
6384
6384
 
6385
6385
  // src/module-format.ts
6386
6386
  function parseModuleFormat(format) {
package/dist/index.mjs CHANGED
@@ -3584,7 +3584,7 @@ function queryRawDefinition(context) {
3584
3584
  * const result = await prisma.$queryRaw\`SELECT * FROM User WHERE id = \${1} OR email = \${'user@email.com'};\`
3585
3585
  * \`\`\`
3586
3586
  *
3587
- * Read more in our [docs](https://www.prisma.io/docs/reference/tools-and-interfaces/prisma-client/raw-database-access).
3587
+ * Read more in our [docs](https://pris.ly/d/raw-queries).
3588
3588
  */
3589
3589
  $queryRaw<T = unknown>(query: TemplateStringsArray | Prisma.Sql, ...values: any[]): Prisma.PrismaPromise<T>;
3590
3590
 
@@ -3596,7 +3596,7 @@ function queryRawDefinition(context) {
3596
3596
  * const result = await prisma.$queryRawUnsafe('SELECT * FROM User WHERE id = $1 OR email = $2;', 1, 'user@email.com')
3597
3597
  * \`\`\`
3598
3598
  *
3599
- * Read more in our [docs](https://www.prisma.io/docs/reference/tools-and-interfaces/prisma-client/raw-database-access).
3599
+ * Read more in our [docs](https://pris.ly/d/raw-queries).
3600
3600
  */
3601
3601
  $queryRawUnsafe<T = unknown>(query: string, ...values: any[]): Prisma.PrismaPromise<T>;`;
3602
3602
  }
@@ -3612,7 +3612,7 @@ function executeRawDefinition(context) {
3612
3612
  * const result = await prisma.$executeRaw\`UPDATE User SET cool = \${true} WHERE email = \${'user@email.com'};\`
3613
3613
  * \`\`\`
3614
3614
  *
3615
- * Read more in our [docs](https://www.prisma.io/docs/reference/tools-and-interfaces/prisma-client/raw-database-access).
3615
+ * Read more in our [docs](https://pris.ly/d/raw-queries).
3616
3616
  */
3617
3617
  $executeRaw<T = unknown>(query: TemplateStringsArray | Prisma.Sql, ...values: any[]): Prisma.PrismaPromise<number>;
3618
3618
 
@@ -3624,7 +3624,7 @@ function executeRawDefinition(context) {
3624
3624
  * const result = await prisma.$executeRawUnsafe('UPDATE User SET cool = $1 WHERE email = $2 ;', true, 'user@email.com')
3625
3625
  * \`\`\`
3626
3626
  *
3627
- * Read more in our [docs](https://www.prisma.io/docs/reference/tools-and-interfaces/prisma-client/raw-database-access).
3627
+ * Read more in our [docs](https://pris.ly/d/raw-queries).
3628
3628
  */
3629
3629
  $executeRawUnsafe<T = unknown>(query: string, ...values: any[]): Prisma.PrismaPromise<number>;`;
3630
3630
  }
@@ -3669,7 +3669,7 @@ function runCommandRawDefinition(context) {
3669
3669
  })
3670
3670
  \`\`\`
3671
3671
 
3672
- Read more in our [docs](https://www.prisma.io/docs/reference/tools-and-interfaces/prisma-client/raw-database-access).
3672
+ Read more in our [docs](https://pris.ly/d/raw-queries).
3673
3673
  `);
3674
3674
  return ts5.stringify(method3, { indentLevel: 1, newLine: "leading" });
3675
3675
  }
@@ -3694,7 +3694,7 @@ function getPrismaClientClassDocComment({ dmmf }) {
3694
3694
  const ${uncapitalize4(example.plural)} = await prisma.${uncapitalize4(example.model)}.findMany()
3695
3695
  \`\`\`
3696
3696
 
3697
- Read more in our [docs](https://www.prisma.io/docs/reference/tools-and-interfaces/prisma-client).
3697
+ Read more in our [docs](https://pris.ly/d/client).
3698
3698
  `;
3699
3699
  }
3700
3700
  var PrismaClientClass = class {
@@ -5718,7 +5718,7 @@ function buildClientOptions(context) {
5718
5718
  { emit: 'stdout', level: 'error' }
5719
5719
  ]
5720
5720
  \`\`\`
5721
- Read more in our [docs](https://www.prisma.io/docs/reference/tools-and-interfaces/prisma-client/logging#the-log-option).
5721
+ Read more in our [docs](https://pris.ly/d/logging).
5722
5722
  `)
5723
5723
  );
5724
5724
  const transactionOptions = ts19.objectType().add(ts19.property("maxWait", ts19.numberType).optional()).add(ts19.property("timeout", ts19.numberType).optional());
@@ -6373,7 +6373,7 @@ import { parseEnvValue } from "@prisma/internals";
6373
6373
  import { getTsconfig } from "get-tsconfig";
6374
6374
 
6375
6375
  // package.json
6376
- var version = "7.1.0-dev.15";
6376
+ var version = "7.1.0-dev.16";
6377
6377
 
6378
6378
  // src/module-format.ts
6379
6379
  function parseModuleFormat(format) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@prisma/client-generator-ts",
3
- "version": "7.1.0-dev.15",
3
+ "version": "7.1.0-dev.16",
4
4
  "description": "This package is intended for Prisma's internal use",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",
@@ -25,7 +25,7 @@
25
25
  "license": "Apache-2.0",
26
26
  "dependencies": {
27
27
  "@antfu/ni": "0.21.12",
28
- "@prisma/engines-version": "7.1.0-3.d9cee0d5892b6ac19222fb0ef2384cc3d5efd043",
28
+ "@prisma/engines-version": "7.1.0-4.671452b04ff2b1a300f34311d53ac29cc925e1a7",
29
29
  "fast-glob": "3.3.3",
30
30
  "get-tsconfig": "4.10.0",
31
31
  "indent-string": "4.0.0",
@@ -33,14 +33,14 @@
33
33
  "package-up": "5.0.0",
34
34
  "pluralize": "8.0.0",
35
35
  "ts-pattern": "5.6.2",
36
- "@prisma/client-common": "7.1.0-dev.15",
37
- "@prisma/debug": "7.1.0-dev.15",
38
- "@prisma/generator": "7.1.0-dev.15",
39
- "@prisma/get-platform": "7.1.0-dev.15",
40
- "@prisma/dmmf": "7.1.0-dev.15",
41
- "@prisma/internals": "7.1.0-dev.15",
42
- "@prisma/fetch-engine": "7.1.0-dev.15",
43
- "@prisma/ts-builders": "7.1.0-dev.15"
36
+ "@prisma/client-common": "7.1.0-dev.16",
37
+ "@prisma/debug": "7.1.0-dev.16",
38
+ "@prisma/fetch-engine": "7.1.0-dev.16",
39
+ "@prisma/get-platform": "7.1.0-dev.16",
40
+ "@prisma/dmmf": "7.1.0-dev.16",
41
+ "@prisma/generator": "7.1.0-dev.16",
42
+ "@prisma/ts-builders": "7.1.0-dev.16",
43
+ "@prisma/internals": "7.1.0-dev.16"
44
44
  },
45
45
  "devDependencies": {
46
46
  "@types/pluralize": "0.0.33",