@creator.co/creatorco-prisma-client 1.0.32 → 1.0.33-alpha-dde3fcf
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;
|
|
@@ -1303,7 +1303,7 @@ const config = {
|
|
|
1303
1303
|
"value": "prisma-client-js"
|
|
1304
1304
|
},
|
|
1305
1305
|
"output": {
|
|
1306
|
-
"value": "/home/runner/github-runner-
|
|
1306
|
+
"value": "/home/runner/github-runner-9hbIotHFpOyOx/creator-database/creator-database/client/creatorco/client",
|
|
1307
1307
|
"fromEnvVar": null
|
|
1308
1308
|
},
|
|
1309
1309
|
"config": {
|
|
@@ -1354,8 +1354,8 @@ const config = {
|
|
|
1354
1354
|
"rootEnvPath": null
|
|
1355
1355
|
},
|
|
1356
1356
|
"relativePath": "../../../prisma/creatorco",
|
|
1357
|
-
"clientVersion": "5.
|
|
1358
|
-
"engineVersion": "
|
|
1357
|
+
"clientVersion": "5.13.0",
|
|
1358
|
+
"engineVersion": "b9a39a7ee606c28e3455d0fd60e78c3ba82b1a2b",
|
|
1359
1359
|
"datasourceNames": [
|
|
1360
1360
|
"db"
|
|
1361
1361
|
],
|
|
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.33-alpha-dde3fcf",
|
|
77
83
|
"sideEffects": false,
|
|
78
84
|
"description": "Prisma client for creatorco Database"
|
|
79
85
|
}
|
|
Binary file
|