From b25fa6e3e6c72253baeead229c151e55a5995d95 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois=20Levasseur?= Date: Tue, 2 Jul 2024 17:12:33 -0400 Subject: [PATCH] feat: whilelist integrations routes (#343) --- scripts/generateApiDocumentationPage.ts | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/scripts/generateApiDocumentationPage.ts b/scripts/generateApiDocumentationPage.ts index 78deebe0..e575b4f0 100644 --- a/scripts/generateApiDocumentationPage.ts +++ b/scripts/generateApiDocumentationPage.ts @@ -78,6 +78,19 @@ const VisibleOperations: Operation[] = [ 'updateTableRows', 'upsertTableRows', + // Integrations + 'createIntegration', + 'getIntegration', + 'getIntegrationByName', + 'updateIntegration', + 'deleteIntegration', + 'listIntegrations', + + // Hub + 'listPublicIntegrations', + 'getPublicIntegrationById', + 'getPublicIntegration', + // Bots 'createBot', 'getBot',