@conboai/app.db.query 0.8.36 → 0.8.38
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.
- package/dist/app.db.query.js +23342 -23288
- package/dist/apps/HeatMap/hooks/useFetchDataEffect.d.ts +2 -0
- package/dist/apps/HeatMap/hooks/useFovAndTrailInfo.d.ts +5 -0
- package/dist/apps/HeatMap/utils.d.ts +10 -4
- package/dist/apps/conbo-match/components/app-content/use-column-defs.d.ts +1 -1
- package/dist/apps/conbo-match/components/sidebar-left-filter/styles.d.ts +1 -0
- package/dist/apps/conbo-match/utils.d.ts +1 -0
- package/package.json +1 -1
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { TrailsItemDto as TrailsItemDtoPixel } from '../../api/detectionPixel';
|
|
2
1
|
import { TrailsItemDto as TrailsItemDtoGeo } from '../../api/detectionGeo';
|
|
3
2
|
import { EntityTypes, ShapeType } from '@conboai/storybook.components';
|
|
3
|
+
import { TrailInfoPixelData } from '../../store/detectionsStore';
|
|
4
4
|
|
|
5
5
|
interface Data {
|
|
6
6
|
conbo_key: string;
|
|
@@ -14,16 +14,22 @@ export declare const getMinAndMaxTimes: (data?: Data[]) => {
|
|
|
14
14
|
maxEndTime: string;
|
|
15
15
|
} | null;
|
|
16
16
|
export declare const generateValidationErrorMessage: (cases: string[]) => string;
|
|
17
|
-
export declare const generatePixelTrailsPoints: (data:
|
|
17
|
+
export declare const generatePixelTrailsPoints: (data: TrailInfoPixelData[]) => {
|
|
18
18
|
id: string;
|
|
19
19
|
points: any;
|
|
20
20
|
type: ShapeType;
|
|
21
|
+
styles: {
|
|
22
|
+
stroke: string;
|
|
23
|
+
};
|
|
21
24
|
}[];
|
|
22
|
-
export declare const generateGeoTrailCoordinates: (data: TrailsItemDtoGeo[],
|
|
25
|
+
export declare const generateGeoTrailCoordinates: (data: TrailsItemDtoGeo[], pixelData: TrailInfoPixelData[]) => {
|
|
23
26
|
id: string;
|
|
24
27
|
coordinates: any;
|
|
25
28
|
type: EntityTypes;
|
|
26
|
-
styles:
|
|
29
|
+
styles: {
|
|
30
|
+
strokeColor: string;
|
|
31
|
+
fillColor: string;
|
|
32
|
+
};
|
|
27
33
|
}[];
|
|
28
34
|
export declare const generatePixelPolygonPoints: (data: Array<Array<Array<number>>>, styles?: any) => {
|
|
29
35
|
id: string;
|