npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

prisma-json-types-generator

v3.1.1

Published

Changes JsonValues to your custom typescript type

Downloads

342,271

Readme

Generate your prisma client with strict JSON types and String literals!

Prisma Json Types Generator is a prisma client generator which changes all json types from your @prisma/client into the ones you specified. It adds another layer of checking within your schema, as you must make typescript happy with your json type before inserting it into your DB.

generator client {
  provider = "prisma-client-js"
}

generator json {
  provider = "prisma-json-types-generator"
}

model Example {
  /// [MyType]
  normal Json
}

Using it!

npm install -D prisma-json-types-generator

Include it in your schema and provide your own namespace declarations inside a file included in your tsconfig.

// schema.prisma

generator client {
  provider = "prisma-client-js"
}

/// Always after the prisma-client-js generator
generator json {
  provider = "prisma-json-types-generator"
}
// types.ts

declare global {
  namespace PrismaJson {
    // Insert your types here!
  }
}

Configuration

generator json {
  provider = "prisma-json-types-generator"

  // The namespace to generate the types in.
  //
  // namespace = "PrismaJson"

  // The name of the client output type. By default it will try
  // to find it automatically
  // (./ -> relative to schema, or an importable path to require() it)
  //
  // clientOutput = "finds automatically"

  // In case you need to use a root type inside PrismaJson, export it
  // inside the namespace and we will add a index signature to it
  //
  // useType = "PrismaJson.GlobalType"

  // If untyped JSON fields should be any instead of `unknown`.
  //
  // allowAny = false
}

Available types

This package adds multiple ways to type a JSON or String field.

We need to avoid circular dependencies between the prisma schema and your codebase, and typescript namespaces are the best way to solve this. As we declare a global namespace, any type declared within a normal declaration (/// [T]) gets transpiled to Namespace.T inside the prisma schema.

Sometimes you have a very simple type, like a union literal or some constants, using a literal declaration (/// ![T]) will probably be better, as it gets transpiled to onlt T inside the schema. This way, types like /// ['some' | 'none'] that are only used once, are way more easy to write and maintain.

model Example {
  /// [MyType]
  normal Json

  /// [MyType]
  optional Json?

  /// [MyType]
  array Json[]

  /// [ComplexType]
  complex Json

  /// !['A' | 'B']
  literal Json

  /// ![PrismaJson.MyType | 'none']
  anything Json[]
}
declare global {
  // you can use typical basic types
  // or you can use classes, interfaces, object types, etc.
  namespace PrismaJson {
    type MyType = boolean;
    type ComplexType = { foo: string; bar: number };
  }
}

And now, your types are correctly typed:

import type { Example } from '@prisma/client';

// example.normal   is now a boolean
// example.optional is now a boolean | null
// example.array    is now a boolean[]
// example.complex  is now a { foo: string; bar: number }
// example.literal  is now a 'A' | 'B'
// example.anything is now a boolean | 'none'

Some types are still JSON?

Yes! And it is right!

Complex filter types like JsonFilter or JsonWithAggregatesFilter must not be typed. As we cannot change the object signature, (only its types) mutating these objects would make the usage less powerful and probably lose functionality.

So no, not all types will be converted. However if you find a field which is missing types, please open an issue in this repository.

Usage within monorepos

If you're working with a monorepo, you must make sure the file containing the global definition for namespace PrismaJson is part of the runtime imports of your application. If you don't, the types will silently fall back to any.

// package1/src/types.ts

declare global {
  namespace PrismaJson {
    // ...
  }
}
// package2/src/client.ts

// Manually import the definition.
import 'package1/types.ts';
import { PrismaClient } from '@prisma/client';

export const client = new PrismaClient(...);

You can also declare the type on the spot using the following syntax:

model Example {
  /// ![Record<string, string>]
  map Json
}

Limitations

  • This project should be a temporary workaround (and possible solution) to prisma/prisma#3219.
  • No more support to prisma v4 is being done. Please migrate to prisma v5+, prisma-json-types-generator v3+

How it works

By using the Typescript Compiler API, this generator parses the generated client's types AST and looks for Prisma.JsonValue (or related) types and replaces them with their corresponding type.

License

Licensed under the MIT. See LICENSE for more informations.