import type { ENV } from 'types'; export interface Coordinate { longitude: number; latitude: number; } export interface GetMapInfoFilterArguments { env?: ENV; coordinates: MapCoordinates; } export interface MapCoordinates { bottomLeft: Coordinate; upperRight: Coordinate; } export interface GetMapInfoResponse { smartKeys: any[]; monstersBeacons: any[]; checkIns: any[]; } export interface GetPublicSmartKeyInfoByIdResponse { country: string; region: string; city: string; }