@creator.co/creatorco-prisma-client 1.0.27 → 1.0.28-alpha-a758046
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/edge.js +7 -7
- package/index-browser.js +4 -4
- package/index.d.ts +852 -1955
- package/index.js +7 -7
- package/libquery_engine-darwin-arm64.dylib.node +0 -0
- package/libquery_engine-darwin.dylib.node +0 -0
- package/libquery_engine-debian-openssl-3.0.x.so.node +0 -0
- package/libquery_engine-linux-arm64-openssl-1.0.x.so.node +0 -0
- package/libquery_engine-linux-arm64-openssl-3.0.x.so.node +0 -0
- package/libquery_engine-linux-musl-arm64-openssl-3.0.x.so.node +0 -0
- package/package.json +7 -1
- package/query_engine-windows.dll.node +0 -0
- package/runtime/edge-esm.js +16 -16
- package/runtime/edge.js +15 -15
- package/runtime/library.d.ts +34 -13
- package/runtime/library.js +46 -46
- package/runtime/react-native.js +77 -0
- package/runtime/wasm.js +17 -17
- package/wasm.js +4 -4
package/index.js
CHANGED
|
@@ -31,12 +31,12 @@ exports.Prisma = Prisma
|
|
|
31
31
|
exports.$Enums = {}
|
|
32
32
|
|
|
33
33
|
/**
|
|
34
|
-
* Prisma Client JS version: 5.
|
|
35
|
-
* Query Engine version:
|
|
34
|
+
* Prisma Client JS version: 5.13.0
|
|
35
|
+
* Query Engine version: b9a39a7ee606c28e3455d0fd60e78c3ba82b1a2b
|
|
36
36
|
*/
|
|
37
37
|
Prisma.prismaVersion = {
|
|
38
|
-
client: "5.
|
|
39
|
-
engine: "
|
|
38
|
+
client: "5.13.0",
|
|
39
|
+
engine: "b9a39a7ee606c28e3455d0fd60e78c3ba82b1a2b"
|
|
40
40
|
}
|
|
41
41
|
|
|
42
42
|
Prisma.PrismaClientKnownRequestError = PrismaClientKnownRequestError;
|
|
@@ -1299,7 +1299,7 @@ const config = {
|
|
|
1299
1299
|
"value": "prisma-client-js"
|
|
1300
1300
|
},
|
|
1301
1301
|
"output": {
|
|
1302
|
-
"value": "/home/runner/github-runner-
|
|
1302
|
+
"value": "/home/runner/github-runner-Belg7HL8m5iC7/creator-database/creator-database/client/creatorco/client",
|
|
1303
1303
|
"fromEnvVar": null
|
|
1304
1304
|
},
|
|
1305
1305
|
"config": {
|
|
@@ -1350,8 +1350,8 @@ const config = {
|
|
|
1350
1350
|
"rootEnvPath": null
|
|
1351
1351
|
},
|
|
1352
1352
|
"relativePath": "../../../prisma/creatorco",
|
|
1353
|
-
"clientVersion": "5.
|
|
1354
|
-
"engineVersion": "
|
|
1353
|
+
"clientVersion": "5.13.0",
|
|
1354
|
+
"engineVersion": "b9a39a7ee606c28e3455d0fd60e78c3ba82b1a2b",
|
|
1355
1355
|
"datasourceNames": [
|
|
1356
1356
|
"db"
|
|
1357
1357
|
],
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/package.json
CHANGED
|
@@ -30,6 +30,12 @@
|
|
|
30
30
|
"import": "./edge.js",
|
|
31
31
|
"default": "./edge.js"
|
|
32
32
|
},
|
|
33
|
+
"./react-native": {
|
|
34
|
+
"types": "./react-native.d.ts",
|
|
35
|
+
"require": "./react-native.js",
|
|
36
|
+
"import": "./react-native.js",
|
|
37
|
+
"default": "./react-native.js"
|
|
38
|
+
},
|
|
33
39
|
"./extension": {
|
|
34
40
|
"types": "./extension.d.ts",
|
|
35
41
|
"require": "./extension.js",
|
|
@@ -73,7 +79,7 @@
|
|
|
73
79
|
},
|
|
74
80
|
"./*": "./*"
|
|
75
81
|
},
|
|
76
|
-
"version": "1.0.
|
|
82
|
+
"version": "1.0.28-alpha-a758046",
|
|
77
83
|
"sideEffects": false,
|
|
78
84
|
"description": "Prisma client for creatorco Database"
|
|
79
85
|
}
|
|
Binary file
|