@iflow-mcp/andrewhopper-facts-server 1.0.3 → 1.0.4

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.
Files changed (60) hide show
  1. package/build/cli.js +9 -37
  2. package/build/prisma/client/LICENSE +201 -0
  3. package/build/prisma/client/README.md +27 -0
  4. package/build/prisma/client/default.d.ts +1 -0
  5. package/build/prisma/client/default.js +3 -0
  6. package/build/prisma/client/edge.d.ts +1 -0
  7. package/build/prisma/client/edge.js +4 -0
  8. package/build/prisma/client/extension.d.ts +1 -0
  9. package/build/prisma/client/extension.js +4 -0
  10. package/build/prisma/client/generator-build/index.js +11203 -0
  11. package/build/prisma/client/index-browser.js +3 -0
  12. package/build/prisma/client/index.d.ts +1 -0
  13. package/build/prisma/client/index.js +4 -0
  14. package/build/prisma/client/package.json +296 -0
  15. package/build/prisma/client/react-native.d.ts +1 -0
  16. package/build/prisma/client/react-native.js +3 -0
  17. package/build/prisma/client/runtime/binary.d.ts +1 -0
  18. package/build/prisma/client/runtime/binary.js +284 -0
  19. package/build/prisma/client/runtime/client.d.ts +3455 -0
  20. package/build/prisma/client/runtime/client.js +103 -0
  21. package/build/prisma/client/runtime/edge-esm.js +31 -0
  22. package/build/prisma/client/runtime/edge.js +31 -0
  23. package/build/prisma/client/runtime/index-browser.d.ts +367 -0
  24. package/build/prisma/client/runtime/index-browser.js +13 -0
  25. package/build/prisma/client/runtime/library.d.ts +3455 -0
  26. package/build/prisma/client/runtime/library.js +143 -0
  27. package/build/prisma/client/runtime/query_compiler_bg.mysql.js +1 -0
  28. package/build/prisma/client/runtime/query_compiler_bg.mysql.wasm +0 -0
  29. package/build/prisma/client/runtime/query_compiler_bg.postgresql.js +1 -0
  30. package/build/prisma/client/runtime/query_compiler_bg.postgresql.wasm +0 -0
  31. package/build/prisma/client/runtime/query_compiler_bg.sqlite.js +1 -0
  32. package/build/prisma/client/runtime/query_compiler_bg.sqlite.wasm +0 -0
  33. package/build/prisma/client/runtime/query_engine_bg.mysql.js +2 -0
  34. package/build/prisma/client/runtime/query_engine_bg.mysql.wasm +0 -0
  35. package/build/prisma/client/runtime/query_engine_bg.postgresql.js +2 -0
  36. package/build/prisma/client/runtime/query_engine_bg.postgresql.wasm +0 -0
  37. package/build/prisma/client/runtime/query_engine_bg.sqlite.js +2 -0
  38. package/build/prisma/client/runtime/query_engine_bg.sqlite.wasm +0 -0
  39. package/build/prisma/client/runtime/react-native.d.ts +3455 -0
  40. package/build/prisma/client/runtime/react-native.js +80 -0
  41. package/build/prisma/client/runtime/wasm.js +32 -0
  42. package/build/prisma/client/scripts/colors.js +176 -0
  43. package/build/prisma/client/scripts/default-deno-edge.ts +9 -0
  44. package/build/prisma/client/scripts/default-index.d.ts +110 -0
  45. package/build/prisma/client/scripts/default-index.js +65 -0
  46. package/build/prisma/client/scripts/postinstall.d.ts +5 -0
  47. package/build/prisma/client/scripts/postinstall.js +410 -0
  48. package/build/prisma/client/sql.d.ts +1 -0
  49. package/build/prisma/client/sql.js +4 -0
  50. package/build/prisma/client/sql.mjs +1 -0
  51. package/build/prisma/client/wasm.d.ts +1 -0
  52. package/build/prisma/client/wasm.js +4 -0
  53. package/build/prisma-client.d.ts +3 -0
  54. package/build/prisma-client.js +15 -0
  55. package/build/storage.js +1 -1
  56. package/package.json +1 -1
  57. package/src/cli.js +9 -37
  58. package/src/prisma-client.d.ts +3 -0
  59. package/src/prisma-client.js +15 -0
  60. package/src/storage.ts +3 -2
@@ -0,0 +1,3 @@
1
+ const prisma = require('.prisma/client/index-browser')
2
+
3
+ module.exports = prisma
@@ -0,0 +1 @@
1
+ export * from '.prisma/client/default'
@@ -0,0 +1,4 @@
1
+ module.exports = {
2
+ // https://github.com/prisma/prisma/pull/12907
3
+ ...require('.prisma/client/default'),
4
+ }
@@ -0,0 +1,296 @@
1
+ {
2
+ "name": "@prisma/client",
3
+ "version": "6.4.1",
4
+ "description": "Prisma Client is an auto-generated, type-safe and modern JavaScript/TypeScript ORM for Node.js that's tailored to your data. Supports PostgreSQL, CockroachDB, MySQL, MariaDB, SQL Server, SQLite & MongoDB databases.",
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",
35
+ "browser": "index-browser.js",
36
+ "exports": {
37
+ "./package.json": "./package.json",
38
+ ".": {
39
+ "require": {
40
+ "types": "./default.d.ts",
41
+ "node": "./default.js",
42
+ "edge-light": "./default.js",
43
+ "workerd": "./default.js",
44
+ "worker": "./default.js",
45
+ "browser": "./index-browser.js"
46
+ },
47
+ "import": {
48
+ "types": "./default.d.ts",
49
+ "node": "./default.js",
50
+ "edge-light": "./default.js",
51
+ "workerd": "./default.js",
52
+ "worker": "./default.js",
53
+ "browser": "./index-browser.js"
54
+ },
55
+ "default": "./default.js"
56
+ },
57
+ "./edge": {
58
+ "types": "./edge.d.ts",
59
+ "require": "./edge.js",
60
+ "import": "./edge.js",
61
+ "default": "./edge.js"
62
+ },
63
+ "./react-native": {
64
+ "types": "./react-native.d.ts",
65
+ "require": "./react-native.js",
66
+ "import": "./react-native.js",
67
+ "default": "./react-native.js"
68
+ },
69
+ "./extension": {
70
+ "types": "./extension.d.ts",
71
+ "require": "./extension.js",
72
+ "import": "./extension.js",
73
+ "default": "./extension.js"
74
+ },
75
+ "./index-browser": {
76
+ "types": "./index.d.ts",
77
+ "require": "./index-browser.js",
78
+ "import": "./index-browser.js",
79
+ "default": "./index-browser.js"
80
+ },
81
+ "./index": {
82
+ "types": "./index.d.ts",
83
+ "require": "./index.js",
84
+ "import": "./index.js",
85
+ "default": "./index.js"
86
+ },
87
+ "./wasm": {
88
+ "types": "./wasm.d.ts",
89
+ "require": "./wasm.js",
90
+ "import": "./wasm.js",
91
+ "default": "./wasm.js"
92
+ },
93
+ "./runtime/client": {
94
+ "types": "./runtime/client.d.ts",
95
+ "require": "./runtime/client.js",
96
+ "import": "./runtime/client.js",
97
+ "default": "./runtime/client.js"
98
+ },
99
+ "./runtime/library": {
100
+ "types": "./runtime/library.d.ts",
101
+ "require": "./runtime/library.js",
102
+ "import": "./runtime/library.js",
103
+ "default": "./runtime/library.js"
104
+ },
105
+ "./runtime/binary": {
106
+ "types": "./runtime/binary.d.ts",
107
+ "require": "./runtime/binary.js",
108
+ "import": "./runtime/binary.js",
109
+ "default": "./runtime/binary.js"
110
+ },
111
+ "./generator-build": {
112
+ "require": "./generator-build/index.js",
113
+ "import": "./generator-build/index.js",
114
+ "default": "./generator-build/index.js"
115
+ },
116
+ "./sql": {
117
+ "require": {
118
+ "types": "./sql.d.ts",
119
+ "node": "./sql.js",
120
+ "default": "./sql.js"
121
+ },
122
+ "import": {
123
+ "types": "./sql.d.ts",
124
+ "node": "./sql.mjs",
125
+ "default": "./sql.mjs"
126
+ },
127
+ "default": "./sql.js"
128
+ },
129
+ "./*": "./*"
130
+ },
131
+ "license": "Apache-2.0",
132
+ "engines": {
133
+ "node": ">=18.18"
134
+ },
135
+ "homepage": "https://www.prisma.io",
136
+ "repository": {
137
+ "type": "git",
138
+ "url": "https://github.com/prisma/prisma.git",
139
+ "directory": "packages/client"
140
+ },
141
+ "author": "Tim Suchanek <suchanek@prisma.io>",
142
+ "bugs": "https://github.com/prisma/prisma/issues",
143
+ "files": [
144
+ "README.md",
145
+ "runtime",
146
+ "!runtime/*.map",
147
+ "scripts",
148
+ "generator-build",
149
+ "edge.js",
150
+ "edge.d.ts",
151
+ "wasm.js",
152
+ "wasm.d.ts",
153
+ "index.js",
154
+ "index.d.ts",
155
+ "react-native.js",
156
+ "react-native.d.ts",
157
+ "default.js",
158
+ "default.d.ts",
159
+ "index-browser.js",
160
+ "extension.js",
161
+ "extension.d.ts",
162
+ "sql.d.ts",
163
+ "sql.js",
164
+ "sql.mjs"
165
+ ],
166
+ "devDependencies": {
167
+ "@cloudflare/workers-types": "4.20240614.0",
168
+ "@codspeed/benchmark.js-plugin": "3.1.1",
169
+ "@faker-js/faker": "8.4.1",
170
+ "@fast-check/jest": "2.0.3",
171
+ "@inquirer/prompts": "5.0.5",
172
+ "@jest/create-cache-key-function": "29.7.0",
173
+ "@jest/globals": "29.7.0",
174
+ "@jest/test-sequencer": "29.7.0",
175
+ "@libsql/client": "0.8.0",
176
+ "@neondatabase/serverless": "0.10.2",
177
+ "@opentelemetry/api": "1.9.0",
178
+ "@opentelemetry/context-async-hooks": "1.30.1",
179
+ "@opentelemetry/instrumentation": "0.57.1",
180
+ "@opentelemetry/resources": "1.30.1",
181
+ "@opentelemetry/sdk-trace-base": "1.30.1",
182
+ "@opentelemetry/semantic-conventions": "1.28.0",
183
+ "@planetscale/database": "1.18.0",
184
+ "@prisma/engines-version": "6.4.0-29.a9055b89e58b4b5bfb59600785423b1db3d0e75d",
185
+ "@prisma/mini-proxy": "0.9.5",
186
+ "@prisma/query-compiler-wasm": "6.4.0-29.a9055b89e58b4b5bfb59600785423b1db3d0e75d",
187
+ "@prisma/query-engine-wasm": "6.4.0-29.a9055b89e58b4b5bfb59600785423b1db3d0e75d",
188
+ "@snaplet/copycat": "0.17.3",
189
+ "@swc-node/register": "1.10.9",
190
+ "@swc/core": "1.10.11",
191
+ "@swc/jest": "0.2.37",
192
+ "@timsuchanek/copy": "1.4.5",
193
+ "@types/debug": "4.1.12",
194
+ "@types/fs-extra": "9.0.13",
195
+ "@types/jest": "29.5.14",
196
+ "@types/js-levenshtein": "1.1.3",
197
+ "@types/mssql": "9.1.5",
198
+ "@types/node": "18.19.31",
199
+ "@types/pg": "8.11.6",
200
+ "arg": "5.0.2",
201
+ "benchmark": "2.1.4",
202
+ "ci-info": "4.0.0",
203
+ "decimal.js": "10.5.0",
204
+ "detect-runtime": "1.0.4",
205
+ "env-paths": "2.2.1",
206
+ "esbuild": "0.24.2",
207
+ "execa": "5.1.1",
208
+ "expect-type": "0.19.0",
209
+ "flat-map-polyfill": "0.3.8",
210
+ "fs-extra": "11.1.1",
211
+ "get-stream": "6.0.1",
212
+ "globby": "11.1.0",
213
+ "indent-string": "4.0.0",
214
+ "jest": "29.7.0",
215
+ "jest-extended": "4.0.2",
216
+ "jest-junit": "16.0.0",
217
+ "jest-serializer-ansi-escapes": "4.0.0",
218
+ "jest-snapshot": "29.7.0",
219
+ "js-levenshtein": "1.1.6",
220
+ "kleur": "4.1.5",
221
+ "klona": "2.0.6",
222
+ "mariadb": "3.3.1",
223
+ "memfs": "4.17.0",
224
+ "mssql": "11.0.1",
225
+ "new-github-issue-url": "0.2.1",
226
+ "node-fetch": "3.3.2",
227
+ "p-retry": "4.6.2",
228
+ "pg": "8.11.5",
229
+ "pkg-up": "3.1.0",
230
+ "pluralize": "8.0.0",
231
+ "resolve": "1.22.10",
232
+ "rimraf": "3.0.2",
233
+ "simple-statistics": "7.8.7",
234
+ "sort-keys": "4.2.0",
235
+ "source-map-support": "0.5.21",
236
+ "sql-template-tag": "5.2.1",
237
+ "stacktrace-parser": "0.1.10",
238
+ "strip-ansi": "6.0.1",
239
+ "strip-indent": "3.0.0",
240
+ "ts-node": "10.9.2",
241
+ "ts-pattern": "5.6.2",
242
+ "tsd": "0.31.2",
243
+ "typescript": "5.4.5",
244
+ "undici": "7.3.0",
245
+ "wrangler": "3.91.0",
246
+ "zx": "7.2.3",
247
+ "@prisma/adapter-d1": "6.4.1",
248
+ "@prisma/adapter-libsql": "6.4.1",
249
+ "@prisma/adapter-pg": "6.4.1",
250
+ "@prisma/adapter-neon": "6.4.1",
251
+ "@prisma/adapter-pg-worker": "6.4.1",
252
+ "@prisma/client-engine-runtime": "6.4.1",
253
+ "@prisma/adapter-planetscale": "6.4.1",
254
+ "@prisma/debug": "6.4.1",
255
+ "@prisma/driver-adapter-utils": "6.4.1",
256
+ "@prisma/fetch-engine": "6.4.1",
257
+ "@prisma/engines": "6.4.1",
258
+ "@prisma/config": "6.4.1",
259
+ "@prisma/generator-helper": "6.4.1",
260
+ "@prisma/get-platform": "6.4.1",
261
+ "@prisma/internals": "6.4.1",
262
+ "@prisma/pg-worker": "6.4.1",
263
+ "@prisma/instrumentation": "6.4.1",
264
+ "@prisma/migrate": "6.4.1"
265
+ },
266
+ "peerDependencies": {
267
+ "prisma": "*",
268
+ "typescript": ">=5.1.0"
269
+ },
270
+ "peerDependenciesMeta": {
271
+ "prisma": {
272
+ "optional": true
273
+ },
274
+ "typescript": {
275
+ "optional": true
276
+ }
277
+ },
278
+ "sideEffects": false,
279
+ "scripts": {
280
+ "dev": "DEV=true tsx helpers/build.ts",
281
+ "build": "tsx helpers/build.ts",
282
+ "test": "dotenv -e ../../.db.env -- jest --silent",
283
+ "test:e2e": "dotenv -e ../../.db.env -- tsx tests/e2e/_utils/run.ts",
284
+ "test:functional": "dotenv -e ../../.db.env -- tsx helpers/functional-test/run-tests.ts",
285
+ "test:functional:client": "PRISMA_UNSTABLE_CLIENT_ENGINE_TYPE=1 pnpm run test:functional --adapter js_pg --client-runtime client --preview-features driverAdapters --engine-type client --runInBand --json --outputFile tests/functional/results.json decimal",
286
+ "test:memory": "dotenv -e ../../.db.env -- tsx helpers/memory-tests.ts",
287
+ "test:functional:code": "dotenv -e ../../.db.env -- tsx helpers/functional-test/run-tests.ts --no-types",
288
+ "test:functional:types": "dotenv -e ../../.db.env -- tsx helpers/functional-test/run-tests.ts --types-only",
289
+ "test:knownQueryCompilerFailures:check": "tsx helpers/functional-test/check-known-failures.ts",
290
+ "test:knownQueryCompilerFailures:record": "tsx helpers/functional-test/check-known-failures.ts --record",
291
+ "test-notypes": "dotenv -e ../../.db.env -- jest --testPathIgnorePatterns src/__tests__/types/types.test.ts",
292
+ "generate": "node scripts/postinstall.js",
293
+ "postinstall": "node scripts/postinstall.js",
294
+ "new-test": "tsx ./helpers/new-test/new-test.ts"
295
+ }
296
+ }
@@ -0,0 +1 @@
1
+ export * from '.prisma/client/react-native'
@@ -0,0 +1,3 @@
1
+ module.exports = {
2
+ ...require('.prisma/client/react-native'),
3
+ }
@@ -0,0 +1 @@
1
+ export * from "./library"