@conboai/app.db.query 0.9.55 → 0.9.56

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.
@@ -24,7 +24,7 @@ export type FeedStreamsData = {
24
24
  regions: RegionType[];
25
25
  };
26
26
  export type ModifyShapesType = {
27
- fov: Shape[];
27
+ fov?: Shape;
28
28
  regions: Shape[];
29
29
  crosses: Shape[];
30
30
  fovCondition?: boolean;
@@ -42,7 +42,7 @@ export type ImageGridItemType = {
42
42
  onClick?: (value: number | string | null) => void;
43
43
  innerLoading?: boolean;
44
44
  isError?: boolean;
45
- fov?: Shape[];
45
+ fov?: Shape;
46
46
  regions?: Shape[];
47
47
  crosses?: Shape[];
48
48
  unit: string;
@@ -1,4 +1,5 @@
1
1
  import { FeedStreamsData, ModifyShapesType } from './types';
2
+ import { Shape } from '@conboai/storybook.components';
2
3
 
3
4
  export declare const generateFeedStreamsData: ({ latestSnapshots, fovInfos, baseUrl, feeds, regions }: FeedStreamsData) => {
4
5
  url: string;
@@ -54,4 +55,4 @@ export declare const generateFeedStreamsData: ({ latestSnapshots, fovInfos, base
54
55
  };
55
56
  }[] | null;
56
57
  }[];
57
- export declare const modifyShapes: ({ fov, regions, crosses, fovCondition, regionsCondition, crossesCondition }: ModifyShapesType) => (import('@conboai/storybook.components').Shape | import('@conboai/storybook.components').Shape[])[];
58
+ export declare const modifyShapes: ({ fov, regions, crosses, fovCondition, regionsCondition, crossesCondition }: ModifyShapesType) => Shape[];
@@ -18,6 +18,7 @@ declare const useDataEffect: (isImageAnalysis?: boolean) => {
18
18
  shapesCoordinates: GeneratedShape[];
19
19
  trailShapes: GeneratedShape[];
20
20
  fovShapes: GeneratedShape[];
21
+ crossLineShapes: GeneratedShape[];
21
22
  checkboxes: import('../../../store/types/types').CheckboxType[];
22
23
  columns: ({
23
24
  field: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@conboai/app.db.query",
3
- "version": "0.9.55",
3
+ "version": "0.9.56",
4
4
  "type": "module",
5
5
  "main": "dist/app.db.query.js",
6
6
  "types": "dist/build/index.d.ts",