formId => count */ public function getEntryCountByFormIds(array $formIds): array; /** * Get the count of entries for the filter dropdown. * * @param array|null $params * @return array */ public function getFilterCount(?array $params = null): array; /** * Update the starred status of an entry. * * @param int $entryId * @param bool $value * @return void */ public function updateEntryStarred(int $entryId, bool $value): void; /** * Update the status of an entry. * * @param int $entryId * @param string $status * @return void */ public function updateEntryStatus(int $entryId, string $status): void; /** * Get the entries with their fields based on search parameters. * * @param array> $entries * @return array */ public function getEntryFields(array $entries): array; }