prisma-redis-middleware
Advanced tools
Comparing version 0.1.0 to 0.1.1
@@ -6,4 +6,5 @@ export declare type PrismaAction = "findUnique" | "findFirst" | "findMany" | "create" | "createMany" | "update" | "updateMany" | "upsert" | "delete" | "deleteMany" | "executeRaw" | "queryRaw" | "aggregate" | "count" | "groupBy"; | ||
*/ | ||
declare type ModelName = ""; | ||
export declare type MiddlewareParams = { | ||
model?: string; | ||
model?: ModelName; | ||
action: PrismaAction; | ||
@@ -19,1 +20,2 @@ args: any; | ||
}, opts: any): (params: MiddlewareParams, next: (params: MiddlewareParams) => Promise<any>) => Promise<any>; | ||
export {}; |
{ | ||
"name": "prisma-redis-middleware", | ||
"main": "src/index.ts", | ||
"version": "0.1.0", | ||
"version": "0.1.1", | ||
"description": "Prisma Middleware for caching results of queries in Redis", | ||
@@ -6,0 +6,0 @@ "engines": { |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
20540
45