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;