From 3a90dc9176eb8ab3673e468eee733616384f9e76 Mon Sep 17 00:00:00 2001 From: Brian Forbis Date: Fri, 26 May 2023 10:29:21 -0400 Subject: [PATCH] Fix config visibility for ga4 Signed-off-by: Brian Forbis --- plugins/analytics-module-ga4/config.d.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/analytics-module-ga4/config.d.ts b/plugins/analytics-module-ga4/config.d.ts index d90ccb5938..4834d75f58 100644 --- a/plugins/analytics-module-ga4/config.d.ts +++ b/plugins/analytics-module-ga4/config.d.ts @@ -80,14 +80,14 @@ export interface Config { * metadata will be captured in Google Analytics. * Contexts that will be sent as parameters in the event. * context-name will be prefixed by c_, for example, pluginId will be c_pluginId in the event. - * + * @visibility frontend */ allowedContexts?: string[] | ['*']; /** * * Attributes that will be sent as parameters in the event * attribute-name will be prefixed by a_, for example , testAttribute will be c_testAttribute in the event. - * + * @visibility frontend */ allowedAttributes?: string[] | ['*']; };