From df357bb693cf3abe02337d07f54c7a36145106ce Mon Sep 17 00:00:00 2001 From: Brainslug Date: Tue, 7 Nov 2023 14:15:27 +0100 Subject: [PATCH] SDK translation schema update (#20344) --- .changeset/four-pans-work.md | 5 +++++ sdk/src/schema/translation.ts | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) create mode 100644 .changeset/four-pans-work.md diff --git a/.changeset/four-pans-work.md b/.changeset/four-pans-work.md new file mode 100644 index 0000000000..723b82ee7e --- /dev/null +++ b/.changeset/four-pans-work.md @@ -0,0 +1,5 @@ +--- +"@directus/sdk": patch +--- + +Updated custom translation schema in the SDK diff --git a/sdk/src/schema/translation.ts b/sdk/src/schema/translation.ts index dc56f602cd..8a169c4c91 100644 --- a/sdk/src/schema/translation.ts +++ b/sdk/src/schema/translation.ts @@ -4,7 +4,7 @@ export type DirectusTranslation = MergeCoreCollection< Schema, 'directus_translations', { - id: number; + id: string; // uuid language: string; key: string; value: string;