From 85c9411aeef50ebfaaa3328541597c8eacebc80e Mon Sep 17 00:00:00 2001 From: Prageeth Silva Date: Wed, 26 Aug 2026 00:08:45 +1000 Subject: [PATCH] docs(docs): list prisma-prefixed-ids in community extensions Adds prisma-prefixed-ids to the "Extensions made by Prisma's community" table. The extension automatically generates prefixed record IDs with per-model prefixes and a configurable ID generator. It works with both Prisma 6 and 7, so it is listed on the v6 and v7 pages. Linear: N/A (external contribution) Co-Authored-By: Claude Opus 5 --- .../v6/prisma-client/client-extensions/extension-examples.mdx | 1 + .../v7/prisma-client/client-extensions/extension-examples.mdx | 1 + 2 files changed, 2 insertions(+) diff --git a/apps/docs/content/docs/orm/v6/prisma-client/client-extensions/extension-examples.mdx b/apps/docs/content/docs/orm/v6/prisma-client/client-extensions/extension-examples.mdx index 9409f1e326..d691d01042 100644 --- a/apps/docs/content/docs/orm/v6/prisma-client/client-extensions/extension-examples.mdx +++ b/apps/docs/content/docs/orm/v6/prisma-client/client-extensions/extension-examples.mdx @@ -35,6 +35,7 @@ The following is a list of extensions created by the community. If you want to c | [`prisma-cache-extension`](https://github.com/Shikhar97/prisma-cache) | Prisma extension for caching and invalidating cache with Redis(other Storage options to be supported) | | [`prisma-extension-casl`](https://github.com/dennemark/prisma-extension-casl) | Prisma client extension that utilizes CASL to enforce authorization logic on most simple and nested queries. | | [`prisma-emitter-extension`](https://github.com/feggaa/prisma-emitter-extension) | Prisma extension for emit events on CRUD operations based on configurable listeners. | +| [`prisma-prefixed-ids`](https://github.com/pureartisan/prisma-prefixed-ids) | Automatically generates prefixed IDs for models, with configurable per-model prefixes and ID generation | If you have built an extension and would like to see it featured, feel free to add it to the list by opening a pull request. diff --git a/apps/docs/content/docs/orm/v7/prisma-client/client-extensions/extension-examples.mdx b/apps/docs/content/docs/orm/v7/prisma-client/client-extensions/extension-examples.mdx index de9302e12c..a6c84eeffd 100644 --- a/apps/docs/content/docs/orm/v7/prisma-client/client-extensions/extension-examples.mdx +++ b/apps/docs/content/docs/orm/v7/prisma-client/client-extensions/extension-examples.mdx @@ -34,6 +34,7 @@ The following is a list of extensions created by the community. If you want to c | [`prisma-cache-extension`](https://github.com/Shikhar97/prisma-cache) | Prisma extension for caching and invalidating cache with Redis(other Storage options to be supported) | | [`prisma-extension-casl`](https://github.com/dennemark/prisma-extension-casl) | Prisma client extension that utilizes CASL to enforce authorization logic on most simple and nested queries. | | [`prisma-emitter-extension`](https://github.com/feggaa/prisma-emitter-extension) | Prisma extension for emit events on CRUD operations based on configurable listeners. | +| [`prisma-prefixed-ids`](https://github.com/pureartisan/prisma-prefixed-ids) | Automatically generates prefixed IDs for models, with configurable per-model prefixes and ID generation | If you have built an extension and would like to see it featured, feel free to add it to the list by opening a pull request.