@prisma/client-runtime-utils 6.17.0-integration-feat-tml-1074-extract-utilities-entrypoint.3 → 6.17.0-integration-feat-tml-1074-extract-utilities-entrypoint.5

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 (2) hide show
  1. package/README.md +9 -3
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # `@prisma/client-runtime-utils`
2
2
 
3
- ⚠️ **Warning**: This package is intended for Prisma's internal use. Its release
4
- cycle does not follow SemVer, which means we might release breaking changes
5
- (change APIs, remove functionality) without any prior warning.
3
+ This package provides utility types and singleton instances used by the Prisma Client.
4
+ These are reexported by the generated clients but can also be directly imported from here.
5
+ This is useful for cases where one does not want to depend on a specific generated Prisma Client.
6
+
7
+ Example usage:
8
+
9
+ ```
10
+ import { PrismaClientKnownRequestError, DbNull, Decimal } from '@prisma/client-runtime-utils'
11
+ ```
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@prisma/client-runtime-utils",
3
- "version": "6.17.0-integration-feat-tml-1074-extract-utilities-entrypoint.3",
4
- "description": "This package is intended for Prisma's internal use",
3
+ "version": "6.17.0-integration-feat-tml-1074-extract-utilities-entrypoint.5",
4
+ "description": "Utility types and singletons used by the Prisma Client.",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",
7
7
  "types": "dist/index.d.ts",