Update Zone interface id type from string to number

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: David Nguyen <david.nguyen@goutezplanb.com>
Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
David Nguyen 2025-10-29 11:30:14 -04:00
parent ef665f7bf1
commit 2cc110adc3
Signed by: david.nguyen
GPG Key ID: D5FB5A5715829326

View File

@ -9,7 +9,7 @@ export interface GeoPoint {
y: number;
}
export interface Zone {
id: string;
id: number;
name?: string;
color?: string;
opacity?: number;