@conboai/app.db.query 0.3.74 → 0.3.75

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.
@@ -20,9 +20,12 @@ interface IDetailsContent {
20
20
  timezone: string;
21
21
  isLoading?: boolean;
22
22
  }
23
- interface ISummaryContent extends IDetailsContent {
23
+ interface IFrameInfoContent extends IDetailsContent {
24
24
  classifiersFrameInfo: any;
25
25
  }
26
+ interface ISummaryContent extends IDetailsContent {
27
+ classifierSummary: any;
28
+ }
26
29
  export declare enum TrailPathType {
27
30
  Geo = 0,
28
31
  Feed = 1
@@ -55,7 +58,16 @@ export declare const getDetailsTabs: () => {
55
58
  value: string;
56
59
  disabled: boolean;
57
60
  }[];
58
- export declare const getSummaryContent: ({ classifiersFrameInfo, getLabels, selectedTableItemId, timezone, isLoading }: ISummaryContent) => {
61
+ export declare const getFrameInfoContent: ({ classifiersFrameInfo, getLabels, selectedTableItemId, timezone, isLoading }: IFrameInfoContent) => {
62
+ value: string;
63
+ content: import("react/jsx-runtime").JSX.Element;
64
+ }[];
65
+ export declare const getFrameInfoTabs: () => {
66
+ label: string;
67
+ value: string;
68
+ disabled: boolean;
69
+ }[];
70
+ export declare const getSummaryContent: ({ classifierSummary, getLabels, selectedTableItemId, timezone, isLoading }: ISummaryContent) => {
59
71
  value: string;
60
72
  content: import("react/jsx-runtime").JSX.Element;
61
73
  }[];
@@ -12,6 +12,22 @@ export declare const verticalTableColumnDefs: ({ timezone }: IVerticalTableColum
12
12
  field: string;
13
13
  renderCell: (value: number) => string;
14
14
  })[];
15
+ frameInfoColumnDefs: ({
16
+ headerName: string;
17
+ field: string;
18
+ renderCell: (value: number) => string;
19
+ flex?: undefined;
20
+ } | {
21
+ headerName: string;
22
+ field: string;
23
+ renderCell?: undefined;
24
+ flex?: undefined;
25
+ } | {
26
+ field: string;
27
+ headerName: string;
28
+ flex: number;
29
+ renderCell: (params: any) => string;
30
+ })[];
15
31
  summaryColumnDefs: ({
16
32
  headerName: string;
17
33
  field: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@conboai/app.db.query",
3
- "version": "0.3.74",
3
+ "version": "0.3.75",
4
4
  "type": "module",
5
5
  "main": "dist/app.db.query.js",
6
6
  "types": "dist/build/index.d.ts",
@@ -25,13 +25,14 @@
25
25
  "generate-cargo": "openapi --input https://dev.test.portsight.ai/api/action/docs-yaml --output ./src/api/cargo",
26
26
  "generate-snapshots": "openapi --input https://dev.test.portsight.ai/api/snapshots/docs-yaml --output ./src/api/snapshot",
27
27
  "generate-detections-pixels": "openapi --input https://dev.test.portsight.ai/api/detections_pixels/docs-yaml --output ./src/api/detectionPixel",
28
+ "generate-detections-geo": "openapi --input https://dev.test.portsight.ai/api/detections_geo/docs-yaml --output ./src/api/detectionGeo",
28
29
  "generate-tag-family-labels": "openapi --input https://dev.gateway.dev.portsight.ai/api/msm/api-yaml --output ./src/api/tagFamilyLabels",
29
30
  "generate-top-one": "openapi --input https://dev.test.portsight.ai/api/top1/docs-yaml --output ./src/api/topOne",
30
31
  "generate-cropped": "openapi --input https://dev.test.portsight.ai/api/cropped/docs-yaml --output ./src/api/cropped",
31
32
  "generate-poc": "openapi --input https://dev.gateway.dev.portsight.ai/api/poc/api-yaml --output ./src/api/poc"
32
33
  },
33
34
  "dependencies": {
34
- "@conboai/storybook.components": "^0.3.70",
35
+ "@conboai/storybook.components": "^0.3.71",
35
36
  "@emotion/react": "^11.11.4",
36
37
  "@emotion/styled": "^11.11.5",
37
38
  "@mui/material": "^5.15.17",