From 03627d85c91533cbd5ffa0427d7717bd387a5b7d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Ol=C3=B3rtegui?= <20072509+olrtg@users.noreply.github.com> Date: Wed, 16 Oct 2024 12:26:54 -0300 Subject: [PATCH] fix(v5): `locale` type can be `null` (#437) --- src/runtime/types/v5.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/runtime/types/v5.ts b/src/runtime/types/v5.ts index e63ab5fb..2b87629e 100644 --- a/src/runtime/types/v5.ts +++ b/src/runtime/types/v5.ts @@ -16,7 +16,7 @@ export interface Strapi5RequestParams { pagination?: PaginationByOffset | PaginationByPage filters?: Record publicationState?: 'live' | 'preview' - locale?: StrapiLocale + locale?: StrapiLocale | null } export interface StrapiSystemFields {