From bee29bcecffbb129916b4bda33dfc9cf97b71114 Mon Sep 17 00:00:00 2001 From: Ella Nan <38847123+ellanan@users.noreply.github.com> Date: Fri, 27 Mar 2026 16:40:53 -0400 Subject: [PATCH] feat: add presentation type in custom api type --- src/types/custom-apis.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/types/custom-apis.ts b/src/types/custom-apis.ts index 2a7174d..a05854f 100644 --- a/src/types/custom-apis.ts +++ b/src/types/custom-apis.ts @@ -16,6 +16,10 @@ export interface CustomApiBase { type: string slug: string allow_upserts: boolean + presentation?: { + page?: string | null + section?: string | null + } } export interface CustomApi extends Identifiable, CustomApiBase {