@conboai/app.db.query 0.6.18 → 0.6.19
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 +14857 -15246
- package/dist/apps/conbo-match/mocks.d.ts +2 -6
- package/dist/apps/conbo-match/types.d.ts +2 -2
- package/package.json +10 -12
|
@@ -1,14 +1,10 @@
|
|
|
1
|
-
import { SnapshotsDto } from '../../api/snapshot/models/SnapshotsDto';
|
|
2
|
-
import { FrameResponseDTO } from '../../api/detectionGeo/models/FrameResponseDTO';
|
|
3
1
|
import { MatchItemType } from './types';
|
|
2
|
+
import { FrameResponseDto } from '../../api/detectionPixel';
|
|
4
3
|
|
|
5
|
-
export declare const SnapshotsServiceMock: {
|
|
6
|
-
snapshotControllerGetSnapshots: () => Promise<SnapshotsDto>;
|
|
7
|
-
};
|
|
8
4
|
export declare const DetectionsPixelsServiceMock: {
|
|
9
5
|
detectionsControllerGetFrameDetails: () => {
|
|
10
6
|
items: MatchItemType[];
|
|
11
|
-
details:
|
|
7
|
+
details: FrameResponseDto["details"];
|
|
12
8
|
time_info: any;
|
|
13
9
|
};
|
|
14
10
|
};
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { FrameItemDto } from '../../api/detectionPixel/models/FrameItemDto.ts';
|
|
2
2
|
|
|
3
|
-
export type MatchItemType = Omit<
|
|
3
|
+
export type MatchItemType = Omit<FrameItemDto, "start_time" | "end_time"> & {
|
|
4
4
|
id: number;
|
|
5
5
|
color: string;
|
|
6
6
|
startTime: string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@conboai/app.db.query",
|
|
3
|
-
"version": "0.6.
|
|
3
|
+
"version": "0.6.19",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "dist/app.db.query.js",
|
|
6
6
|
"types": "dist/build/index.d.ts",
|
|
@@ -21,18 +21,16 @@
|
|
|
21
21
|
"prepare": "husky",
|
|
22
22
|
"storybook": "storybook dev -p 6006",
|
|
23
23
|
"build-storybook": "storybook build",
|
|
24
|
-
"generate-classifiers": "openapi --input https://dev.
|
|
24
|
+
"generate-classifiers": "openapi --input https://dev.portsight.ai/api/classification/docs-yaml --output ./src/api/classifiers",
|
|
25
25
|
"generate-cargo": "openapi --input https://dev.test.portsight.ai/api/action/docs-yaml --output ./src/api/cargo",
|
|
26
|
-
"generate-snapshots": "openapi --input https://dev.
|
|
27
|
-
"generate-detections-pixels": "openapi --input https://dev.
|
|
28
|
-
"generate-detections-geo": "openapi --input https://dev.
|
|
29
|
-
"generate-
|
|
30
|
-
"generate-
|
|
31
|
-
"generate-
|
|
32
|
-
"generate-
|
|
33
|
-
"generate-
|
|
34
|
-
"generate-query-info": "openapi --input https://dev.test.portsight.ai/api/info/docs-yaml --output ./src/api/queryInfo",
|
|
35
|
-
"generate-api": "yarn generate-classifiers && yarn generate-cargo && yarn generate-snapshots && yarn generate-detections-pixels && yarn generate-detections-geo && yarn generate-tag-family-labels && yarn generate-top-one && yarn generate-cropped && yarn generate-poc && yarn generate-search && yarn generate-query-info",
|
|
26
|
+
"generate-snapshots": "openapi --input https://dev.portsight.ai/api/snapshots/docs-yaml --output ./src/api/snapshot",
|
|
27
|
+
"generate-detections-pixels": "openapi --input https://dev.portsight.ai/api/detections_pixels/docs-yaml --output ./src/api/detectionPixel",
|
|
28
|
+
"generate-detections-geo": "openapi --input https://dev.portsight.ai/api/detections_geo/docs-yaml --output ./src/api/detectionGeo",
|
|
29
|
+
"generate-top-one": "openapi --input https://dev.portsight.ai/api/top1/docs-yaml --output ./src/api/topOne",
|
|
30
|
+
"generate-cropped": "openapi --input https://dev.portsight.ai/api/cropped/docs-yaml --output ./src/api/cropped",
|
|
31
|
+
"generate-search": "openapi --input https://dev.portsight.ai/api/search/docs-yaml --output ./src/api/search",
|
|
32
|
+
"generate-query-info": "openapi --input https://dev.portsight.ai/api/info/docs-yaml --output ./src/api/queryInfo",
|
|
33
|
+
"generate-api": "yarn generate-classifiers && yarn generate-cargo && yarn generate-snapshots && yarn generate-detections-pixels && yarn generate-detections-geo && yarn generate-top-one && yarn generate-cropped && yarn generate-search && yarn generate-query-info",
|
|
36
34
|
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives",
|
|
37
35
|
"lint:fix": "eslint . --ext ts,tsx --fix",
|
|
38
36
|
"format:check": "prettier \"src/**/*.{ts,tsx,json}\" --check",
|