@conboai/app.db.query 0.8.83 → 0.8.85

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.
@@ -11,6 +11,7 @@ export type ImageItemType = {
11
11
  shapeCoordinates?: Shape[];
12
12
  innerLoading?: boolean;
13
13
  isError?: boolean;
14
+ unit: string;
14
15
  };
15
- declare const ImageItem: ({ url, displayName, name, feedId, captureTime, delay, onClick, shapeCoordinates, innerLoading, isError }: ImageItemType) => import("react/jsx-runtime").JSX.Element;
16
+ declare const ImageItem: ({ url, displayName, name, feedId, captureTime, delay, onClick, shapeCoordinates, innerLoading, isError, unit }: ImageItemType) => import("react/jsx-runtime").JSX.Element;
16
17
  export default ImageItem;
@@ -13,6 +13,7 @@ export type FeedType = {
13
13
  feed_name: string;
14
14
  run_id: number;
15
15
  updated_at: string;
16
+ unit_name: string;
16
17
  };
17
18
  export type FeedStreamsData = {
18
19
  latestSnapshots: Snapshot[];
@@ -39,4 +40,5 @@ export type ImageGridItemType = {
39
40
  isError?: boolean;
40
41
  fov?: Shape[];
41
42
  regions?: Shape[];
43
+ unit: string;
42
44
  };
@@ -27,5 +27,6 @@ export declare const generateFeedStreamsData: ({ latestSnapshots, fovInfos, base
27
27
  }[];
28
28
  styles: any;
29
29
  } | null)[] | undefined;
30
+ unit: string | undefined;
30
31
  }[];
31
32
  export declare const modifyShapes: ({ fov, regions, fovCondition, regionsCondition }: ModifyShapesType) => (import('@conboai/storybook.components').Shape | import('@conboai/storybook.components').Shape[])[];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@conboai/app.db.query",
3
- "version": "0.8.83",
3
+ "version": "0.8.85",
4
4
  "type": "module",
5
5
  "main": "dist/app.db.query.js",
6
6
  "types": "dist/build/index.d.ts",