import { GQLACTION_GROUP, GQLACTION_ITEM_TYPE, GQLACTION_TYPE, } from "talk-server/graph/tenant/schema/__generated__/types"; export type ActionCounts = Record; export interface Action { readonly id: string; action_type: GQLACTION_TYPE; item_type: GQLACTION_ITEM_TYPE; item_id: string; group_id?: GQLACTION_GROUP; user_id?: string; created_at: Date; metadata?: Record; }