Updated salt methods.

This commit is contained in:
Mike Cao 2025-03-01 16:29:35 -08:00
parent 0a5a79e046
commit 925c756215
4 changed files with 18 additions and 27 deletions

View file

@ -83,7 +83,6 @@ async function relationalQuery(data: {
pageTitle: pageTitle?.substring(0, PAGE_TITLE_LENGTH),
eventType: eventName ? EVENT_TYPE.customEvent : EVENT_TYPE.pageView,
eventName: eventName ? eventName?.substring(0, EVENT_NAME_LENGTH) : null,
createdAt,
tag,
createdAt,
},
@ -194,7 +193,7 @@ async function clickhouseQuery(data: {
urlPath: urlPath?.substring(0, URL_LENGTH),
eventName: eventName?.substring(0, EVENT_NAME_LENGTH),
eventData,
createdAt: createdAtUTC,
createdAt,
});
}