import type { Checkpoint } from '../../checkpoint';

export type SocketRegisterKartCheckpointInput = {
  /** The macAddress is necessary to avoid extra process in the backend to find the macAddress */
  macAddress: string;
  checkpointAddress: Checkpoint['address'];
  checkpointType: Checkpoint['type'];
  /** Just Request the power-up when there is no a power-up already assigned */
  shouldRequestPowerUp: boolean;
  /** The real time when the event was generated on RPI */
  originTimestampISO: string;
};
