fix(ci): align rollup timestamp types with DB millis strings

This commit is contained in:
2026-03-28 13:23:01 -07:00
parent f4d1cc9fb9
commit a96df287d1

View File

@@ -139,7 +139,7 @@ function resetRollups(db: DatabaseSync): void {
function upsertDailyRollupsForGroups(
db: DatabaseSync,
groups: Array<{ rollupDay: number; videoId: number }>,
rollupNowMs: bigint,
rollupNowMs: string,
): void {
if (groups.length === 0) {
return;
@@ -212,7 +212,7 @@ function upsertDailyRollupsForGroups(
function upsertMonthlyRollupsForGroups(
db: DatabaseSync,
groups: Array<{ rollupMonth: number; videoId: number }>,
rollupNowMs: bigint,
rollupNowMs: string,
): void {
if (groups.length === 0) {
return;