@trii/types 2.10.472 → 2.10.473
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -4,11 +4,11 @@ export interface NodeToolMapsCheckPolygon extends NodeBase {
|
|
|
4
4
|
handles: [];
|
|
5
5
|
category: 'tool';
|
|
6
6
|
description: "Check if a point is inside a polygon defined by its ID. Useful for geofencing and location-based services.";
|
|
7
|
-
|
|
7
|
+
maps: NodeToolMapsCheckPolygonItem[];
|
|
8
8
|
}
|
|
9
9
|
export interface NodeToolMapsCheckPolygonItem {
|
|
10
|
-
|
|
11
|
-
|
|
10
|
+
mapId: string;
|
|
11
|
+
mapName: string;
|
|
12
12
|
scheduleId?: string | null;
|
|
13
13
|
price?: number | null;
|
|
14
14
|
}
|