@conboai/app.db.query 0.8.41 → 0.8.43

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.
@@ -6,6 +6,6 @@ export declare const useImageAnalysisRightBar: () => {
6
6
  endTime: string;
7
7
  assignedFeedId: number;
8
8
  timeInfo: string;
9
- }) => void;
9
+ }) => Promise<void>;
10
10
  setRightPanelData: () => void;
11
11
  };
@@ -17,3 +17,4 @@ export declare const getContentTabs: () => {
17
17
  value: string;
18
18
  disabled: boolean;
19
19
  }[];
20
+ export declare const generateTitle: (date: Date, timezone?: string) => string;
@@ -1,5 +1,5 @@
1
1
  type InputProps = {
2
2
  baseUrl?: string;
3
3
  };
4
- export declare const AppSidebarRight: (props: InputProps) => import("react/jsx-runtime").JSX.Element | null;
4
+ export declare const AppSidebarRight: ({ baseUrl }: InputProps) => import("react/jsx-runtime").JSX.Element;
5
5
  export {};
@@ -1,12 +1,6 @@
1
1
  type GetDetailsContentProps = {
2
2
  topOne?: {
3
- conbo_key: string;
4
- tagId: number;
5
- kitId: number;
6
- value: number;
7
- count: number;
8
- avgConf: number;
9
- elementSerialNumber: number;
3
+ [x: string]: any;
10
4
  }[];
11
5
  classifiersFrameInfo?: {
12
6
  conbo_key: string;
@@ -22,15 +16,7 @@ type GetDetailsContentProps = {
22
16
  end_time: string;
23
17
  }[];
24
18
  classifierSummary?: {
25
- conbo_key: string;
26
- tag_id: number;
27
- value: number;
28
- kit_id: number;
29
- kit_version: number;
30
- average_confidence: number;
31
- median_confidence: number;
32
- element_serial_number: number;
33
- count: number;
19
+ [x: string]: any;
34
20
  }[];
35
21
  kitsElements?: {
36
22
  kit_id: number;
@@ -1,6 +1,7 @@
1
1
  type InputType = {
2
2
  title?: string;
3
3
  onHomeClick?: () => void;
4
+ isLoading?: boolean;
4
5
  };
5
- export declare const ConboMatchHeader: (props: InputType) => import("react/jsx-runtime").JSX.Element;
6
+ export declare const ConboMatchHeader: ({ title, onHomeClick, isLoading }: InputType) => import("react/jsx-runtime").JSX.Element;
6
7
  export {};
@@ -4,12 +4,11 @@ export type MatchFilterFormType = {
4
4
  isUtc?: boolean;
5
5
  };
6
6
  type SidebarLeftFilterInput = {
7
- loadingFetch?: boolean;
8
7
  onSubmit?: (value: {
9
8
  conboKey: string;
10
9
  baseUrl?: string;
11
10
  }) => void;
12
11
  baseUrl?: string;
13
12
  };
14
- export declare const SidebarLeftFilter: ({ loadingFetch, onSubmit, baseUrl }: SidebarLeftFilterInput) => import("react/jsx-runtime").JSX.Element;
13
+ export declare const SidebarLeftFilter: ({ onSubmit, baseUrl }: SidebarLeftFilterInput) => import("react/jsx-runtime").JSX.Element;
15
14
  export {};
Binary file
Binary file
Binary file
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@conboai/app.db.query",
3
- "version": "0.8.41",
3
+ "version": "0.8.43",
4
4
  "type": "module",
5
5
  "main": "dist/app.db.query.js",
6
6
  "types": "dist/build/index.d.ts",
@@ -38,7 +38,7 @@
38
38
  "format": "prettier --write \"src/**/*.{ts,tsx,json}\" --color"
39
39
  },
40
40
  "dependencies": {
41
- "@conboai/storybook.components": "^0.5.39",
41
+ "@conboai/storybook.components": "^0.5.42",
42
42
  "@emotion/react": "^11.11.4",
43
43
  "@emotion/styled": "^11.11.5",
44
44
  "@hookform/resolvers": "^3.9.1",