@conboai/app.db.query 0.9.21 → 0.9.22
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 +30585 -29992
- package/dist/apps/HeatMap/components/AppRightBar/styles.d.ts +0 -1
- package/dist/apps/ImageAnalysis/components/AppRightBar/hooks/useImageAnalysisRightBar.d.ts +10 -8
- package/dist/apps/ImageAnalysis/hooks/useActions.d.ts +1 -1
- package/dist/apps/ImageAnalysis/hooks/useDataEffect.d.ts +1 -1
- package/package.json +3 -2
|
@@ -1,11 +1,13 @@
|
|
|
1
|
+
interface IFetchRightPanelData {
|
|
2
|
+
requestBody: any;
|
|
3
|
+
conboKey: string;
|
|
4
|
+
startTime: string;
|
|
5
|
+
endTime: string;
|
|
6
|
+
assignedFeedId: number;
|
|
7
|
+
timeInfo: string;
|
|
8
|
+
}
|
|
1
9
|
export declare const useImageAnalysisRightBar: () => {
|
|
2
|
-
fetchRightPanelData: ({ requestBody, conboKey, startTime, endTime, assignedFeedId, timeInfo }:
|
|
3
|
-
requestBody: any;
|
|
4
|
-
conboKey: string;
|
|
5
|
-
startTime: string;
|
|
6
|
-
endTime: string;
|
|
7
|
-
assignedFeedId: number;
|
|
8
|
-
timeInfo: string;
|
|
9
|
-
}) => Promise<void>;
|
|
10
|
+
fetchRightPanelData: ({ requestBody, conboKey, startTime, endTime, assignedFeedId, timeInfo }: IFetchRightPanelData) => Promise<void>;
|
|
10
11
|
setRightPanelData: () => void;
|
|
11
12
|
};
|
|
13
|
+
export {};
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { ChangeEvent } from 'react';
|
|
2
2
|
import { Shape } from '@conboai/storybook.components';
|
|
3
|
-
import { GeneratedShape } from '../../../helpers/utils/
|
|
3
|
+
import { GeneratedShape } from '../../../helpers/utils/generators';
|
|
4
4
|
import { Snapshot } from '@conboai/storybook.components/dist/components/ImagePlayer/ImagePlayer';
|
|
5
5
|
|
|
6
6
|
declare const useActions: (isImageAnalysis?: boolean, baseUrl?: string, shapesCoordinates?: GeneratedShape[] | null) => {
|
|
@@ -2,7 +2,7 @@ import { ChangeEvent } from 'react';
|
|
|
2
2
|
import { FrameDetailUICmp } from '../components/AppContent/AppContent';
|
|
3
3
|
import { FrameDetailUI } from '../../../store/types/interfaces';
|
|
4
4
|
import { SnapshotDto } from '../../../api/snapshot';
|
|
5
|
-
import { GeneratedShape } from '../../../helpers/utils/
|
|
5
|
+
import { GeneratedShape } from '../../../helpers/utils/generators';
|
|
6
6
|
|
|
7
7
|
declare const useDataEffect: (isImageAnalysis?: boolean) => {
|
|
8
8
|
getCurrentFrameDetailsSet: () => Set<FrameDetailUICmp>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@conboai/app.db.query",
|
|
3
|
-
"version": "0.9.
|
|
3
|
+
"version": "0.9.22",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "dist/app.db.query.js",
|
|
6
6
|
"types": "dist/build/index.d.ts",
|
|
@@ -32,13 +32,14 @@
|
|
|
32
32
|
"generate-search": "openapi --input https://dev.portsight.ai/api/search/docs-yaml --output ./src/api/search",
|
|
33
33
|
"generate-query-info": "openapi --input https://dev.portsight.ai/api/info/docs-yaml --output ./src/api/queryInfo",
|
|
34
34
|
"generate-images": "openapi --input https://dev.portsight.ai/api/images/docs-yaml --output ./src/api/images",
|
|
35
|
+
"generate-floor-plan": "openapi --input https://portsight.ai/api/floorplan/docs-yaml --output ./src/api/floorPlan",
|
|
35
36
|
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives",
|
|
36
37
|
"lint:fix": "eslint . --ext ts,tsx --fix",
|
|
37
38
|
"format:check": "prettier \"src/**/*.{ts,tsx,json}\" --check",
|
|
38
39
|
"format": "prettier --write \"src/**/*.{ts,tsx,json}\" --color"
|
|
39
40
|
},
|
|
40
41
|
"dependencies": {
|
|
41
|
-
"@conboai/storybook.components": "^0.5.
|
|
42
|
+
"@conboai/storybook.components": "^0.5.64",
|
|
42
43
|
"@emotion/react": "^11.11.4",
|
|
43
44
|
"@emotion/styled": "^11.11.5",
|
|
44
45
|
"@hookform/resolvers": "^3.9.1",
|