prisma 6.11.0-dev.38 → 6.11.0-dev.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 (35) hide show
  1. package/README.md +0 -2
  2. package/build/index.js +531 -538
  3. package/build/prisma_schema_build_bg.wasm +0 -0
  4. package/build/schema_engine_bg.wasm +0 -0
  5. package/package.json +14 -14
  6. package/prisma-client/generator-build/index.js +12 -13
  7. package/prisma-client/package.json +4 -5
  8. package/prisma-client/runtime/binary.js +47 -47
  9. package/prisma-client/runtime/binary.mjs +47 -47
  10. package/prisma-client/runtime/client.d.mts +1 -7
  11. package/prisma-client/runtime/client.d.ts +1 -7
  12. package/prisma-client/runtime/client.js +22 -22
  13. package/prisma-client/runtime/client.mjs +22 -22
  14. package/prisma-client/runtime/edge-esm.js +15 -15
  15. package/prisma-client/runtime/edge.d.ts +1 -7
  16. package/prisma-client/runtime/edge.js +15 -15
  17. package/prisma-client/runtime/library.d.mts +1 -7
  18. package/prisma-client/runtime/library.d.ts +1 -7
  19. package/prisma-client/runtime/library.js +38 -38
  20. package/prisma-client/runtime/library.mjs +36 -36
  21. package/prisma-client/runtime/query_engine_bg.mysql.js +2 -2
  22. package/prisma-client/runtime/query_engine_bg.mysql.mjs +1 -1
  23. package/prisma-client/runtime/query_engine_bg.postgresql.js +2 -2
  24. package/prisma-client/runtime/query_engine_bg.postgresql.mjs +1 -1
  25. package/prisma-client/runtime/query_engine_bg.sqlite.js +2 -2
  26. package/prisma-client/runtime/query_engine_bg.sqlite.mjs +1 -1
  27. package/prisma-client/runtime/query_engine_bg.sqlserver.js +2 -2
  28. package/prisma-client/runtime/query_engine_bg.sqlserver.mjs +1 -1
  29. package/prisma-client/runtime/react-native.d.ts +1 -7
  30. package/prisma-client/runtime/react-native.js +21 -21
  31. package/prisma-client/scripts/default-index.js +3 -3
  32. package/prisma-client/runtime/query_compiler_bg.cockroachdb.js +0 -2
  33. package/prisma-client/runtime/query_compiler_bg.cockroachdb.mjs +0 -2
  34. package/prisma-client/runtime/query_engine_bg.cockroachdb.js +0 -2
  35. package/prisma-client/runtime/query_engine_bg.cockroachdb.mjs +0 -2
package/README.md CHANGED
@@ -33,8 +33,6 @@ Prisma is a **next-generation ORM** that consists of these tools:
33
33
 
34
34
  Prisma Client can be used in _any_ Node.js or TypeScript backend application (including serverless applications and microservices). This can be a [REST API](https://www.prisma.io/docs/concepts/overview/prisma-in-your-stack/rest), a [GraphQL API](https://www.prisma.io/docs/concepts/overview/prisma-in-your-stack/graphql) a gRPC API, or anything else that needs a database.
35
35
 
36
- **If you need a database to use with Prisma ORM, check out [Prisma Postgres](https://www.prisma.io/docs/getting-started/quickstart-prismaPostgres?utm_source=npm&utm_medium=readme) or if you are looking for our MCP Server, head [here](https://github.com/prisma/mcp).**
37
-
38
36
  ## Getting started
39
37
 
40
38
  The fastest way to get started with Prisma is by following the [**Quickstart (5 min)**](https://pris.ly/quickstart).