@a_team/prisma 3.2.7-win → 3.2.8-linux-debian

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.
@@ -1 +1 @@
1
- export * from './index'
1
+ export * from "./index"
@@ -1 +1 @@
1
- export * from './default'
1
+ export * from "./default"
@@ -13,6 +13,7 @@ const {
13
13
  empty,
14
14
  join,
15
15
  raw,
16
+ skip,
16
17
  Decimal,
17
18
  Debug,
18
19
  objectEnumValues,
@@ -31,11 +32,11 @@ exports.Prisma = Prisma
31
32
  exports.$Enums = {}
32
33
 
33
34
  /**
34
- * Prisma Client JS version: 5.17.0
35
+ * Prisma Client JS version: 5.22.0
35
36
  * Query Engine version: 605197351a3c8bdd595af2d2a9bc3025bca48ea2
36
37
  */
37
38
  Prisma.prismaVersion = {
38
- client: "5.17.0",
39
+ client: "5.22.0",
39
40
  engine: "605197351a3c8bdd595af2d2a9bc3025bca48ea2"
40
41
  }
41
42
 
@@ -77,6 +78,8 @@ Prisma.NullTypes = {
77
78
 
78
79
 
79
80
 
81
+
82
+
80
83
  /**
81
84
  * Enums
82
85
  */
@@ -381,7 +384,7 @@ const config = {
381
384
  "binaryTargets": [
382
385
  {
383
386
  "fromEnvVar": null,
384
- "value": "windows"
387
+ "value": "debian-openssl-3.0.x"
385
388
  }
386
389
  ],
387
390
  "previewFeatures": [
@@ -393,8 +396,8 @@ const config = {
393
396
  "relativeEnvPaths": {
394
397
  "rootEnvPath": null
395
398
  },
396
- "relativePath": "../../prisma",
397
- "clientVersion": "5.17.0",
399
+ "relativePath": "../../prisma/schema",
400
+ "clientVersion": "5.22.0",
398
401
  "engineVersion": "605197351a3c8bdd595af2d2a9bc3025bca48ea2",
399
402
  "datasourceNames": [
400
403
  "db"
@@ -7,6 +7,7 @@ const {
7
7
  makeStrictEnum,
8
8
  Public,
9
9
  getRuntime,
10
+ skip
10
11
  } = require('./runtime/index-browser.js')
11
12
 
12
13
 
@@ -16,11 +17,11 @@ exports.Prisma = Prisma
16
17
  exports.$Enums = {}
17
18
 
18
19
  /**
19
- * Prisma Client JS version: 5.17.0
20
+ * Prisma Client JS version: 5.22.0
20
21
  * Query Engine version: 605197351a3c8bdd595af2d2a9bc3025bca48ea2
21
22
  */
22
23
  Prisma.prismaVersion = {
23
- client: "5.17.0",
24
+ client: "5.22.0",
24
25
  engine: "605197351a3c8bdd595af2d2a9bc3025bca48ea2"
25
26
  }
26
27
 
@@ -108,6 +109,8 @@ Prisma.NullTypes = {
108
109
  AnyNull: objectEnumValues.classes.AnyNull
109
110
  }
110
111
 
112
+
113
+
111
114
  /**
112
115
  * Enums
113
116
  */
@@ -622,6 +622,8 @@ export namespace Prisma {
622
622
  export import raw = runtime.raw
623
623
  export import Sql = runtime.Sql
624
624
 
625
+
626
+
625
627
  /**
626
628
  * Decimal.js
627
629
  */
@@ -648,7 +650,7 @@ export namespace Prisma {
648
650
  export import Exact = $Public.Exact
649
651
 
650
652
  /**
651
- * Prisma Client JS version: 5.17.0
653
+ * Prisma Client JS version: 5.22.0
652
654
  * Query Engine version: 605197351a3c8bdd595af2d2a9bc3025bca48ea2
653
655
  */
654
656
  export type PrismaVersion = {
@@ -661,51 +663,13 @@ export namespace Prisma {
661
663
  * Utility Types
662
664
  */
663
665
 
664
- /**
665
- * From https://github.com/sindresorhus/type-fest/
666
- * Matches a JSON object.
667
- * This type can be useful to enforce some input to be JSON-compatible or as a super-type to be extended from.
668
- */
669
- export type JsonObject = {[Key in string]?: JsonValue}
670
-
671
- /**
672
- * From https://github.com/sindresorhus/type-fest/
673
- * Matches a JSON array.
674
- */
675
- export interface JsonArray extends Array<JsonValue> {}
676
-
677
- /**
678
- * From https://github.com/sindresorhus/type-fest/
679
- * Matches any valid JSON value.
680
- */
681
- export type JsonValue = string | number | boolean | JsonObject | JsonArray | null
682
-
683
- /**
684
- * Matches a JSON object.
685
- * Unlike `JsonObject`, this type allows undefined and read-only properties.
686
- */
687
- export type InputJsonObject = {readonly [Key in string]?: InputJsonValue | null}
688
-
689
- /**
690
- * Matches a JSON array.
691
- * Unlike `JsonArray`, readonly arrays are assignable to this type.
692
- */
693
- export interface InputJsonArray extends ReadonlyArray<InputJsonValue | null> {}
694
666
 
695
- /**
696
- * Matches any valid value that can be used as an input for operations like
697
- * create and update as the value of a JSON field. Unlike `JsonValue`, this
698
- * type allows read-only arrays and read-only object properties and disallows
699
- * `null` at the top level.
700
- *
701
- * `null` cannot be used as the value of a JSON field because its meaning
702
- * would be ambiguous. Use `Prisma.JsonNull` to store the JSON null value or
703
- * `Prisma.DbNull` to clear the JSON value and set the field to the database
704
- * NULL value instead.
705
- *
706
- * @see https://www.prisma.io/docs/concepts/components/prisma-client/working-with-fields/working-with-json-fields#filtering-by-null-values
707
- */
708
- export type InputJsonValue = string | number | boolean | InputJsonObject | InputJsonArray | { toJSON(): unknown }
667
+ export import JsonObject = runtime.JsonObject
668
+ export import JsonArray = runtime.JsonArray
669
+ export import JsonValue = runtime.JsonValue
670
+ export import InputJsonObject = runtime.InputJsonObject
671
+ export import InputJsonArray = runtime.InputJsonArray
672
+ export import InputJsonValue = runtime.InputJsonValue
709
673
 
710
674
  /**
711
675
  * Types of the values used to represent different kinds of `null` values when working with JSON fields.
@@ -13,6 +13,7 @@ const {
13
13
  empty,
14
14
  join,
15
15
  raw,
16
+ skip,
16
17
  Decimal,
17
18
  Debug,
18
19
  objectEnumValues,
@@ -31,11 +32,11 @@ exports.Prisma = Prisma
31
32
  exports.$Enums = {}
32
33
 
33
34
  /**
34
- * Prisma Client JS version: 5.17.0
35
+ * Prisma Client JS version: 5.22.0
35
36
  * Query Engine version: 605197351a3c8bdd595af2d2a9bc3025bca48ea2
36
37
  */
37
38
  Prisma.prismaVersion = {
38
- client: "5.17.0",
39
+ client: "5.22.0",
39
40
  engine: "605197351a3c8bdd595af2d2a9bc3025bca48ea2"
40
41
  }
41
42
 
@@ -76,6 +77,8 @@ Prisma.NullTypes = {
76
77
  }
77
78
 
78
79
 
80
+
81
+
79
82
  const path = require('path')
80
83
 
81
84
  /**
@@ -382,7 +385,7 @@ const config = {
382
385
  "binaryTargets": [
383
386
  {
384
387
  "fromEnvVar": null,
385
- "value": "windows"
388
+ "value": "debian-openssl-3.0.x"
386
389
  }
387
390
  ],
388
391
  "previewFeatures": [
@@ -394,8 +397,8 @@ const config = {
394
397
  "relativeEnvPaths": {
395
398
  "rootEnvPath": null
396
399
  },
397
- "relativePath": "../../prisma",
398
- "clientVersion": "5.17.0",
400
+ "relativePath": "../../prisma/schema",
401
+ "clientVersion": "5.22.0",
399
402
  "engineVersion": "605197351a3c8bdd595af2d2a9bc3025bca48ea2",
400
403
  "datasourceNames": [
401
404
  "db"
@@ -450,8 +453,8 @@ exports.PrismaClient = PrismaClient
450
453
  Object.assign(exports, Prisma)
451
454
 
452
455
  // file annotations for bundling tools to include these files
453
- path.join(__dirname, "query_engine-windows.dll.node");
454
- path.join(process.cwd(), "src/client/query_engine-windows.dll.node")
456
+ path.join(__dirname, "libquery_engine-debian-openssl-3.0.x.so.node");
457
+ path.join(process.cwd(), "src/client/libquery_engine-debian-openssl-3.0.x.so.node")
455
458
  // file annotations for bundling tools to include these files
456
459
  path.join(__dirname, "schema.prisma");
457
460
  path.join(process.cwd(), "src/client/schema.prisma")
@@ -77,8 +77,21 @@
77
77
  "import": "./generator-build/index.js",
78
78
  "default": "./generator-build/index.js"
79
79
  },
80
+ "./sql": {
81
+ "require": {
82
+ "types": "./sql.d.ts",
83
+ "node": "./sql.js",
84
+ "default": "./sql.js"
85
+ },
86
+ "import": {
87
+ "types": "./sql.d.ts",
88
+ "node": "./sql.mjs",
89
+ "default": "./sql.mjs"
90
+ },
91
+ "default": "./sql.js"
92
+ },
80
93
  "./*": "./*"
81
94
  },
82
- "version": "5.17.0",
95
+ "version": "5.22.0",
83
96
  "sideEffects": false
84
97
  }