@a_team/prisma 2.0.10 → 2.0.12
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/client/default.d.ts +1 -1
- package/dist/client/default.js +1 -3
- package/dist/client/edge.d.ts +1 -1
- package/dist/client/edge.js +356 -3
- package/dist/client/index-browser.js +342 -2
- package/dist/client/index.d.ts +23935 -1
- package/dist/client/index.js +381 -3
- package/dist/client/libquery_engine-darwin-arm64.dylib.node +0 -0
- package/dist/client/libquery_engine-darwin.dylib.node +0 -0
- package/dist/client/package.json +18 -198
- package/dist/client/schema.prisma +482 -0
- package/dist/client/wasm.d.ts +1 -1
- package/dist/client/wasm.js +342 -3
- package/dist/index.d.ts +3 -3
- package/dist/index.js +6 -6
- package/package.json +2 -2
- package/dist/client/LICENSE +0 -201
- package/dist/client/README.md +0 -27
- package/dist/client/extension.d.ts +0 -1
- package/dist/client/extension.js +0 -4
- package/dist/client/generator-build/index.js +0 -9552
- package/dist/client/react-native.d.ts +0 -1
- package/dist/client/react-native.js +0 -3
- package/dist/client/runtime/binary.d.ts +0 -1
- package/dist/client/runtime/binary.js +0 -210
- package/dist/client/runtime/query_engine_bg.mysql.js +0 -2
- package/dist/client/runtime/query_engine_bg.mysql.wasm +0 -0
- package/dist/client/runtime/query_engine_bg.postgresql.js +0 -2
- package/dist/client/runtime/query_engine_bg.postgresql.wasm +0 -0
- package/dist/client/runtime/query_engine_bg.sqlite.js +0 -2
- package/dist/client/runtime/query_engine_bg.sqlite.wasm +0 -0
- package/dist/client/runtime/react-native.d.ts +0 -3273
- package/dist/client/scripts/colors.js +0 -176
- package/dist/client/scripts/default-deno-edge.ts +0 -9
- package/dist/client/scripts/default-index.d.ts +0 -110
- package/dist/client/scripts/default-index.js +0 -65
- package/dist/client/scripts/postinstall.d.ts +0 -5
- package/dist/client/scripts/postinstall.js +0 -410
|
Binary file
|
|
Binary file
|
package/dist/client/package.json
CHANGED
|
@@ -1,58 +1,28 @@
|
|
|
1
1
|
{
|
|
2
|
-
"name": "
|
|
3
|
-
"
|
|
4
|
-
"
|
|
5
|
-
"keywords": [
|
|
6
|
-
"ORM",
|
|
7
|
-
"Prisma",
|
|
8
|
-
"prisma2",
|
|
9
|
-
"Prisma Client",
|
|
10
|
-
"client",
|
|
11
|
-
"query",
|
|
12
|
-
"query-builder",
|
|
13
|
-
"database",
|
|
14
|
-
"db",
|
|
15
|
-
"JavaScript",
|
|
16
|
-
"JS",
|
|
17
|
-
"TypeScript",
|
|
18
|
-
"TS",
|
|
19
|
-
"SQL",
|
|
20
|
-
"SQLite",
|
|
21
|
-
"pg",
|
|
22
|
-
"Postgres",
|
|
23
|
-
"PostgreSQL",
|
|
24
|
-
"CockroachDB",
|
|
25
|
-
"MySQL",
|
|
26
|
-
"MariaDB",
|
|
27
|
-
"MSSQL",
|
|
28
|
-
"SQL Server",
|
|
29
|
-
"SQLServer",
|
|
30
|
-
"MongoDB",
|
|
31
|
-
"react-native"
|
|
32
|
-
],
|
|
33
|
-
"main": "default.js",
|
|
34
|
-
"types": "default.d.ts",
|
|
2
|
+
"name": "prisma-client-34ed617a796d5abb3e1c429d041756693c40ff4d410ca3ebfb783cd5d303632b",
|
|
3
|
+
"main": "index.js",
|
|
4
|
+
"types": "index.d.ts",
|
|
35
5
|
"browser": "index-browser.js",
|
|
36
6
|
"exports": {
|
|
37
7
|
"./package.json": "./package.json",
|
|
38
8
|
".": {
|
|
39
9
|
"require": {
|
|
40
|
-
"
|
|
41
|
-
"
|
|
42
|
-
"
|
|
43
|
-
"
|
|
44
|
-
"
|
|
45
|
-
"
|
|
10
|
+
"node": "./index.js",
|
|
11
|
+
"edge-light": "./wasm.js",
|
|
12
|
+
"workerd": "./wasm.js",
|
|
13
|
+
"worker": "./wasm.js",
|
|
14
|
+
"browser": "./index-browser.js",
|
|
15
|
+
"default": "./index.js"
|
|
46
16
|
},
|
|
47
17
|
"import": {
|
|
48
|
-
"
|
|
49
|
-
"
|
|
50
|
-
"
|
|
51
|
-
"
|
|
52
|
-
"
|
|
53
|
-
"
|
|
18
|
+
"node": "./index.js",
|
|
19
|
+
"edge-light": "./wasm.js",
|
|
20
|
+
"workerd": "./wasm.js",
|
|
21
|
+
"worker": "./wasm.js",
|
|
22
|
+
"browser": "./index-browser.js",
|
|
23
|
+
"default": "./index.js"
|
|
54
24
|
},
|
|
55
|
-
"default": "./
|
|
25
|
+
"default": "./index.js"
|
|
56
26
|
},
|
|
57
27
|
"./edge": {
|
|
58
28
|
"types": "./edge.d.ts",
|
|
@@ -109,156 +79,6 @@
|
|
|
109
79
|
},
|
|
110
80
|
"./*": "./*"
|
|
111
81
|
},
|
|
112
|
-
"
|
|
113
|
-
"
|
|
114
|
-
"node": ">=16.13"
|
|
115
|
-
},
|
|
116
|
-
"homepage": "https://www.prisma.io",
|
|
117
|
-
"repository": {
|
|
118
|
-
"type": "git",
|
|
119
|
-
"url": "https://github.com/prisma/prisma.git",
|
|
120
|
-
"directory": "packages/client"
|
|
121
|
-
},
|
|
122
|
-
"author": "Tim Suchanek <suchanek@prisma.io>",
|
|
123
|
-
"bugs": "https://github.com/prisma/prisma/issues",
|
|
124
|
-
"files": [
|
|
125
|
-
"README.md",
|
|
126
|
-
"runtime",
|
|
127
|
-
"!runtime/*.map",
|
|
128
|
-
"scripts",
|
|
129
|
-
"generator-build",
|
|
130
|
-
"edge.js",
|
|
131
|
-
"edge.d.ts",
|
|
132
|
-
"wasm.js",
|
|
133
|
-
"wasm.d.ts",
|
|
134
|
-
"index.js",
|
|
135
|
-
"index.d.ts",
|
|
136
|
-
"react-native.js",
|
|
137
|
-
"react-native.d.ts",
|
|
138
|
-
"default.js",
|
|
139
|
-
"default.d.ts",
|
|
140
|
-
"index-browser.js",
|
|
141
|
-
"extension.js",
|
|
142
|
-
"extension.d.ts"
|
|
143
|
-
],
|
|
144
|
-
"devDependencies": {
|
|
145
|
-
"@cloudflare/workers-types": "4.20240614.0",
|
|
146
|
-
"@codspeed/benchmark.js-plugin": "3.1.0",
|
|
147
|
-
"@faker-js/faker": "8.4.1",
|
|
148
|
-
"@fast-check/jest": "1.8.2",
|
|
149
|
-
"@inquirer/prompts": "5.0.5",
|
|
150
|
-
"@jest/create-cache-key-function": "29.7.0",
|
|
151
|
-
"@jest/globals": "29.7.0",
|
|
152
|
-
"@jest/test-sequencer": "29.7.0",
|
|
153
|
-
"@libsql/client": "0.6.2",
|
|
154
|
-
"@neondatabase/serverless": "0.9.3",
|
|
155
|
-
"@opentelemetry/api": "1.9.0",
|
|
156
|
-
"@opentelemetry/context-async-hooks": "1.25.1",
|
|
157
|
-
"@opentelemetry/instrumentation": "0.52.1",
|
|
158
|
-
"@opentelemetry/resources": "1.25.1",
|
|
159
|
-
"@opentelemetry/sdk-trace-base": "1.25.1",
|
|
160
|
-
"@opentelemetry/semantic-conventions": "1.25.1",
|
|
161
|
-
"@planetscale/database": "1.18.0",
|
|
162
|
-
"@prisma/engines-version": "5.17.0-31.393aa359c9ad4a4bb28630fb5613f9c281cde053",
|
|
163
|
-
"@prisma/mini-proxy": "0.9.5",
|
|
164
|
-
"@prisma/query-engine-wasm": "5.17.0-31.393aa359c9ad4a4bb28630fb5613f9c281cde053",
|
|
165
|
-
"@snaplet/copycat": "0.17.3",
|
|
166
|
-
"@swc-node/register": "1.10.3",
|
|
167
|
-
"@swc/core": "1.6.13",
|
|
168
|
-
"@swc/jest": "0.2.36",
|
|
169
|
-
"@timsuchanek/copy": "1.4.5",
|
|
170
|
-
"@types/debug": "4.1.12",
|
|
171
|
-
"@types/fs-extra": "9.0.13",
|
|
172
|
-
"@types/jest": "29.5.12",
|
|
173
|
-
"@types/js-levenshtein": "1.1.3",
|
|
174
|
-
"@types/mssql": "9.1.5",
|
|
175
|
-
"@types/node": "18.19.31",
|
|
176
|
-
"@types/pg": "8.11.6",
|
|
177
|
-
"arg": "5.0.2",
|
|
178
|
-
"benchmark": "2.1.4",
|
|
179
|
-
"ci-info": "4.0.0",
|
|
180
|
-
"decimal.js": "10.4.3",
|
|
181
|
-
"detect-runtime": "1.0.4",
|
|
182
|
-
"env-paths": "2.2.1",
|
|
183
|
-
"esbuild": "0.23.0",
|
|
184
|
-
"execa": "5.1.1",
|
|
185
|
-
"expect-type": "0.19.0",
|
|
186
|
-
"flat-map-polyfill": "0.3.8",
|
|
187
|
-
"fs-extra": "11.1.1",
|
|
188
|
-
"get-stream": "6.0.1",
|
|
189
|
-
"globby": "11.1.0",
|
|
190
|
-
"indent-string": "4.0.0",
|
|
191
|
-
"jest": "29.7.0",
|
|
192
|
-
"jest-extended": "4.0.2",
|
|
193
|
-
"jest-junit": "16.0.0",
|
|
194
|
-
"jest-serializer-ansi-escapes": "3.0.0",
|
|
195
|
-
"jest-snapshot": "29.7.0",
|
|
196
|
-
"js-levenshtein": "1.1.6",
|
|
197
|
-
"kleur": "4.1.5",
|
|
198
|
-
"klona": "2.0.6",
|
|
199
|
-
"mariadb": "3.3.1",
|
|
200
|
-
"memfs": "4.9.3",
|
|
201
|
-
"mssql": "11.0.1",
|
|
202
|
-
"new-github-issue-url": "0.2.1",
|
|
203
|
-
"node-fetch": "3.3.2",
|
|
204
|
-
"p-retry": "4.6.2",
|
|
205
|
-
"pg": "8.11.5",
|
|
206
|
-
"pkg-up": "3.1.0",
|
|
207
|
-
"pluralize": "8.0.0",
|
|
208
|
-
"resolve": "1.22.8",
|
|
209
|
-
"rimraf": "3.0.2",
|
|
210
|
-
"simple-statistics": "7.8.3",
|
|
211
|
-
"sort-keys": "4.2.0",
|
|
212
|
-
"source-map-support": "0.5.21",
|
|
213
|
-
"sql-template-tag": "5.2.1",
|
|
214
|
-
"stacktrace-parser": "0.1.10",
|
|
215
|
-
"strip-ansi": "6.0.1",
|
|
216
|
-
"strip-indent": "3.0.0",
|
|
217
|
-
"ts-node": "10.9.2",
|
|
218
|
-
"ts-pattern": "5.2.0",
|
|
219
|
-
"tsd": "0.31.1",
|
|
220
|
-
"typescript": "5.4.5",
|
|
221
|
-
"undici": "5.28.4",
|
|
222
|
-
"wrangler": "3.62.0",
|
|
223
|
-
"zx": "7.2.3",
|
|
224
|
-
"@prisma/adapter-d1": "5.17.0",
|
|
225
|
-
"@prisma/adapter-neon": "5.17.0",
|
|
226
|
-
"@prisma/adapter-libsql": "5.17.0",
|
|
227
|
-
"@prisma/adapter-pg": "5.17.0",
|
|
228
|
-
"@prisma/adapter-pg-worker": "5.17.0",
|
|
229
|
-
"@prisma/adapter-planetscale": "5.17.0",
|
|
230
|
-
"@prisma/debug": "5.17.0",
|
|
231
|
-
"@prisma/driver-adapter-utils": "5.17.0",
|
|
232
|
-
"@prisma/engines": "5.17.0",
|
|
233
|
-
"@prisma/fetch-engine": "5.17.0",
|
|
234
|
-
"@prisma/generator-helper": "5.17.0",
|
|
235
|
-
"@prisma/instrumentation": "5.17.0",
|
|
236
|
-
"@prisma/get-platform": "5.17.0",
|
|
237
|
-
"@prisma/internals": "5.17.0",
|
|
238
|
-
"@prisma/migrate": "5.17.0",
|
|
239
|
-
"@prisma/pg-worker": "5.17.0"
|
|
240
|
-
},
|
|
241
|
-
"peerDependencies": {
|
|
242
|
-
"prisma": "*"
|
|
243
|
-
},
|
|
244
|
-
"peerDependenciesMeta": {
|
|
245
|
-
"prisma": {
|
|
246
|
-
"optional": true
|
|
247
|
-
}
|
|
248
|
-
},
|
|
249
|
-
"sideEffects": false,
|
|
250
|
-
"scripts": {
|
|
251
|
-
"dev": "DEV=true tsx helpers/build.ts",
|
|
252
|
-
"build": "tsx helpers/build.ts",
|
|
253
|
-
"test": "dotenv -e ../../.db.env -- jest --silent",
|
|
254
|
-
"test:e2e": "dotenv -e ../../.db.env -- tsx tests/e2e/_utils/run.ts",
|
|
255
|
-
"test:functional": "dotenv -e ../../.db.env -- tsx helpers/functional-test/run-tests.ts",
|
|
256
|
-
"test:memory": "dotenv -e ../../.db.env -- tsx helpers/memory-tests.ts",
|
|
257
|
-
"test:functional:code": "dotenv -e ../../.db.env -- tsx helpers/functional-test/run-tests.ts --no-types",
|
|
258
|
-
"test:functional:types": "dotenv -e ../../.db.env -- tsx helpers/functional-test/run-tests.ts --types-only",
|
|
259
|
-
"test-notypes": "dotenv -e ../../.db.env -- jest --testPathIgnorePatterns src/__tests__/types/types.test.ts",
|
|
260
|
-
"generate": "node scripts/postinstall.js",
|
|
261
|
-
"postinstall": "node scripts/postinstall.js",
|
|
262
|
-
"new-test": "tsx ./helpers/new-test/new-test.ts"
|
|
263
|
-
}
|
|
82
|
+
"version": "5.17.0",
|
|
83
|
+
"sideEffects": false
|
|
264
84
|
}
|