Type Alias BasePrismaPayload

BasePrismaPayload: {
    name: string;
    objects: Record<string, BasePrismaPayload | BasePrismaPayload[] | null>;
    scalars: AnyObject;
}

A base type for Prisma model payloads because Prisma doesn't give us one. This currently only includes the properties that are used within this package.

Note: this omits the composites property because I don't have any examples of what those actually are.