@conboai/app.db.query 0.9.69 → 0.9.70
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 +24402 -23956
- package/dist/apps/Cargo/Cargo.d.ts +1 -1
- package/dist/apps/CargoTrails/CargoTrails.d.ts +2 -2
- package/dist/apps/Classifiers/Classifiers.d.ts +1 -1
- package/dist/apps/ConboKeySearch/ConboKeySearch.d.ts +2 -2
- package/dist/apps/ConboKeySearch/components/AppContentWrapper.d.ts +2 -2
- package/dist/apps/EntitySearch/EntitySearch.d.ts +1 -1
- package/dist/apps/HeatMap/HeatMap.d.ts +2 -2
- package/dist/apps/ImageAnalysis/ImageAnalysis.d.ts +2 -2
- package/dist/apps/ImageAnalysis/components/AppContentWrapper.d.ts +2 -2
- package/dist/apps/SearchTool/SearchTool.d.ts +2 -2
- package/dist/apps/conbo-match/components/conbo-match-root/conbo-match-root.d.ts +2 -2
- package/dist/apps/conbo-match/store.d.ts +1 -1
- package/package.json +2 -1
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
type PalletsProps = {
|
|
2
|
-
|
|
2
|
+
deploymentId: string;
|
|
3
3
|
baseUrl?: string;
|
|
4
4
|
onHomeClick?: () => void;
|
|
5
5
|
UserComponent?: () => JSX.Element;
|
|
6
6
|
};
|
|
7
|
-
declare const CargoTrails: ({
|
|
7
|
+
declare const CargoTrails: ({ deploymentId, onHomeClick, baseUrl, UserComponent }: PalletsProps) => import("react/jsx-runtime").JSX.Element;
|
|
8
8
|
export default CargoTrails;
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import { FC } from 'react';
|
|
2
2
|
|
|
3
3
|
type InputProps = {
|
|
4
|
-
|
|
4
|
+
deploymentId: string;
|
|
5
5
|
baseUrl?: string;
|
|
6
6
|
onHomeClick?: () => void;
|
|
7
7
|
UserComponent?: FC;
|
|
8
8
|
};
|
|
9
|
-
export declare const ConboKeySearch: ({
|
|
9
|
+
export declare const ConboKeySearch: ({ deploymentId, onHomeClick, baseUrl, UserComponent }: InputProps) => import("react/jsx-runtime").JSX.Element;
|
|
10
10
|
export default ConboKeySearch;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
declare const AppContentWrapper: ({ baseUrl,
|
|
1
|
+
declare const AppContentWrapper: ({ baseUrl, deploymentId, onBack, onForward }: {
|
|
2
2
|
baseUrl?: string;
|
|
3
|
-
|
|
3
|
+
deploymentId?: string;
|
|
4
4
|
onBack?: () => void;
|
|
5
5
|
onForward?: () => void;
|
|
6
6
|
}) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import { FC } from 'react';
|
|
2
2
|
|
|
3
3
|
type HeatMapProps = {
|
|
4
|
-
|
|
4
|
+
deploymentId: string;
|
|
5
5
|
baseUrl?: string;
|
|
6
6
|
onHomeClick?: () => void;
|
|
7
7
|
isAdmin?: boolean;
|
|
8
8
|
UserComponent?: FC;
|
|
9
9
|
};
|
|
10
|
-
declare const HeatMap: ({
|
|
10
|
+
declare const HeatMap: ({ deploymentId, onHomeClick, baseUrl, isAdmin, UserComponent }: HeatMapProps) => import("react/jsx-runtime").JSX.Element;
|
|
11
11
|
export default HeatMap;
|
|
@@ -2,12 +2,12 @@ import { FC } from 'react';
|
|
|
2
2
|
import { Link } from '../../shared/RightLayout/RightLayout';
|
|
3
3
|
|
|
4
4
|
type InputProps = {
|
|
5
|
-
|
|
5
|
+
deploymentId: string;
|
|
6
6
|
baseUrl?: string;
|
|
7
7
|
isAdmin?: boolean;
|
|
8
8
|
onHomeClick?: () => void;
|
|
9
9
|
links?: Link[];
|
|
10
10
|
UserComponent?: FC;
|
|
11
11
|
};
|
|
12
|
-
export declare const ImageAnalysis: ({
|
|
12
|
+
export declare const ImageAnalysis: ({ deploymentId, onHomeClick, baseUrl, isAdmin, links, UserComponent }: InputProps) => import("react/jsx-runtime").JSX.Element;
|
|
13
13
|
export default ImageAnalysis;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
declare const AppContentWrapper: ({ baseUrl,
|
|
1
|
+
declare const AppContentWrapper: ({ baseUrl, deploymentId, onBack, onForward }: {
|
|
2
2
|
baseUrl?: string;
|
|
3
|
-
|
|
3
|
+
deploymentId?: string;
|
|
4
4
|
onBack?: () => void;
|
|
5
5
|
onForward?: () => void;
|
|
6
6
|
}) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import { FC } from 'react';
|
|
2
2
|
|
|
3
3
|
type SearchToolProps = {
|
|
4
|
-
|
|
4
|
+
deploymentId: string;
|
|
5
5
|
baseUrl?: string;
|
|
6
6
|
isAdmin?: boolean;
|
|
7
7
|
onHomeClick?: () => void;
|
|
8
8
|
UserComponent?: FC;
|
|
9
9
|
};
|
|
10
|
-
export declare const SearchTool: ({
|
|
10
|
+
export declare const SearchTool: ({ deploymentId, onHomeClick, baseUrl, isAdmin, UserComponent }: SearchToolProps) => import("react/jsx-runtime").JSX.Element;
|
|
11
11
|
export default SearchTool;
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
type InputProps = {
|
|
2
|
-
|
|
2
|
+
deploymentId: string;
|
|
3
3
|
baseUrl?: string;
|
|
4
4
|
onHomeClick?: () => void;
|
|
5
5
|
UserComponent?: () => JSX.Element;
|
|
6
6
|
};
|
|
7
|
-
export declare const ConboMatchRoot: ({
|
|
7
|
+
export declare const ConboMatchRoot: ({ deploymentId, onHomeClick, baseUrl, UserComponent }: InputProps) => import("react/jsx-runtime").JSX.Element | null;
|
|
8
8
|
export {};
|
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.70",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "dist/app.db.query.js",
|
|
6
6
|
"types": "dist/build/index.d.ts",
|
|
@@ -33,6 +33,7 @@
|
|
|
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
35
|
"generate-floor-plan": "openapi --input https://portsight.ai/api/floorplan/docs-yaml --output ./src/api/floorPlan",
|
|
36
|
+
"generate-position": "openapi --input https://dev.portsight.ai/api/position/docs-yaml --output ./src/api/position",
|
|
36
37
|
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives",
|
|
37
38
|
"lint-fix": "eslint . --ext ts,tsx --fix",
|
|
38
39
|
"format-check": "prettier \"src/**/*.{ts,tsx,json}\" --check",
|