File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -1055,7 +1055,7 @@ model AIRouterLogs {
10551055 finalGatewayLogId String ? @db.VarChar (30 )
10561056 attemptGatewayIds String [] @default ([] )
10571057 attemptGatewayLogIds String [] @default ([] )
1058- /// [Nullable<PrismaJson.CommonPayload[] >]
1058+ /// [Nullable<Array< PrismaJson.CommonPayload> >]
10591059 /// @zod.custom(imports.CommonPayloadSchema.array().nullish())
10601060 attemptErrors Json ? @db.Json
10611061 attemptCount Int @default (0 ) @db.Integer
Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ export const AIRouterLogsModelSchema = z.object({
2020 attemptGatewayIds : z . string ( ) . array ( ) ,
2121 attemptGatewayLogIds : z . string ( ) . array ( ) ,
2222 /**
23- * [Nullable<PrismaJson.CommonPayload[] >]
23+ * [Nullable<Array< PrismaJson.CommonPayload> >]
2424 */
2525 attemptErrors : imports . CommonPayloadSchema . array ( ) . nullish ( ) ,
2626 attemptCount : z . number ( ) . int ( ) ,
You can’t perform that action at this time.
0 commit comments