import { apiClient } from './api-client'; export interface AuthenticationEvent { orderId: number, startAuthentication: string, endAuthentication: string, cameraId: string, stationId: string } const BASE_URL = '/v1/internal'; export const getAuthentication = (orderId: number) => apiClient.client.get(`${BASE_URL}/authentication/${orderId}`);