From f81a203918681ca30f9aaec030edd9244194a0e9 Mon Sep 17 00:00:00 2001 From: Amin Mahboubi Date: Fri, 15 Oct 2021 10:08:18 +0200 Subject: [PATCH] introduce async_url_enrich_enabled flag --- src/types.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/types.ts b/src/types.ts index d980927e9..61cc5c488 100644 --- a/src/types.ts +++ b/src/types.ts @@ -79,6 +79,7 @@ export type AppSettingsAPIResponse< url_enrichment?: boolean; } >; + async_url_enrich_enabled?: boolean; auto_translation_enabled?: boolean; before_message_send_hook_url?: string; campaign_enabled?: boolean; @@ -1513,6 +1514,7 @@ export type AppSettings = { p12_cert?: string; team_id?: string; }; + async_url_enrich_enabled?: boolean; auto_translation_enabled?: boolean; custom_action_handler_url?: string; disable_auth_checks?: boolean;