Fix config visibility for ga4

Signed-off-by: Brian Forbis <bforbis@athenahealth.com>
This commit is contained in:
Brian Forbis
2023-05-26 10:29:21 -04:00
parent 2fe9559e6e
commit 3a90dc9176
+2 -2
View File
@@ -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[] | ['*'];
};