import { GeneratedSchema } from './../foundations/index.js'; /** * This table is used to store aggregated data of daily active users for each tenant. A daily job summarizes data from the daily active users table and inserts it into this table, or removes expired data. Therefore, we should not directly manipulate this table, except for "read" operations. * * @remarks This is a type for database creation. * @see {@link AggregatedDailyActiveUser} for the original type. */ export type CreateAggregatedDailyActiveUser = { tenantId?: string; activityDate: number; userId: string; activityCount: number; }; /** This table is used to store aggregated data of daily active users for each tenant. A daily job summarizes data from the daily active users table and inserts it into this table, or removes expired data. Therefore, we should not directly manipulate this table, except for "read" operations. */ export type AggregatedDailyActiveUser = { tenantId: string; activityDate: number; userId: string; activityCount: number; }; export type AggregatedDailyActiveUserKeys = 'tenantId' | 'activityDate' | 'userId' | 'activityCount'; export declare const AggregatedDailyActiveUsers: GeneratedSchema;