diff --git a/src/runtime/types.ts b/src/runtime/types.ts index ad24118..d589c39 100644 --- a/src/runtime/types.ts +++ b/src/runtime/types.ts @@ -50,5 +50,5 @@ export type Schema = { [key: string]: any } export type DefsSchema = { $id: string, definitions: Record } export interface OaModels { - [key: string]: Schema & { _id?: ObjectId, createdAt?: string|Date, updatedAt?: string|Date, createdBy?: string|ObjectId, updatedBy?: string|ObjectId, updates: any[] } + [key: string]: Schema & { _id?: ObjectId, createdAt?: string|Date, updatedAt?: string|Date, createdBy?: string|ObjectId, updatedBy?: string|ObjectId, updates?: any[] } }