Health

Fingermark Health related tasks

Overview

Fingermark Health includes all health related tasks for devices

Usage

Currently, we setup a heartbeat service and a service to check online status.

import { pingHealthService, checkOnlineStatus } from '@fingermarkglobal/health';
import { KioskSettingsComplete } from '@fingermarkglobal/types';

const settings: KioskSettingsComplete = {
  // Fingermark standard KAS settings
};

await pingHealthService({ serial: 'test', settings });
const booleanResponse = await checkOnlineStatus();

Gotcha's

Please refer to @fingermarkglobal/types for more information on how payloads are typed.