From aaf44b5a10d8f6e160ffdcd1fdfe8fbb1ce2f4c5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Marti=CC=81n?= Date: Mon, 23 Sep 2024 13:33:34 +0200 Subject: [PATCH] Add allow text to content relationship --- src/types/model/contentRelationship.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/types/model/contentRelationship.ts b/src/types/model/contentRelationship.ts index 09f06294..4c542748 100644 --- a/src/types/model/contentRelationship.ts +++ b/src/types/model/contentRelationship.ts @@ -18,5 +18,6 @@ export interface CustomTypeModelContentRelationshipField< select: typeof CustomTypeModelLinkSelectType.Document customtypes?: readonly CustomTypeIDs[] tags?: readonly Tags[] + allowText?: boolean } }