@prisma/sqlcommenter 7.1.0-dev.35 → 7.1.0-dev.37

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 +4 -0
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -51,6 +51,10 @@ const prisma = new PrismaClient({
51
51
  })
52
52
  ```
53
53
 
54
+ ### First-Party Plugins
55
+
56
+ - [`@prisma/sqlcommenter-query-tags`](https://www.npmjs.com/package/@prisma/sqlcommenter-query-tags): appends arbitrary tags to all queries within an async context.
57
+
54
58
  ### Query Context
55
59
 
56
60
  Plugins receive a `SqlCommenterContext` object with information about the query being executed.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@prisma/sqlcommenter",
3
- "version": "7.1.0-dev.35",
3
+ "version": "7.1.0-dev.37",
4
4
  "description": "SQL commenter types for Prisma",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",
@@ -30,7 +30,7 @@
30
30
  ],
31
31
  "sideEffects": false,
32
32
  "devDependencies": {
33
- "@prisma/json-protocol": "7.1.0-dev.35"
33
+ "@prisma/json-protocol": "7.1.0-dev.37"
34
34
  },
35
35
  "scripts": {
36
36
  "dev": "DEV=true tsx helpers/build.ts",