From fb2617b9109cbf77556552b95e5a2327ca7f8e13 Mon Sep 17 00:00:00 2001 From: DrMint <29893320+DrMint@users.noreply.github.com> Date: Sat, 13 Jul 2024 14:37:54 +0200 Subject: [PATCH] Added updatedAt to Meilisearch document type --- meilisearch/types.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/meilisearch/types.ts b/meilisearch/types.ts index 6154d85..7fa3cc3 100644 --- a/meilisearch/types.ts +++ b/meilisearch/types.ts @@ -17,6 +17,7 @@ export type MeiliDocument = { languages: string[]; title?: string; content?: string; + updatedAt?: number; } & ( | { type: Collections.Collectibles;