@evercam/api 1.0.0-b275917d0 → 1.0.0-dc478bb9d
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/api/adminApi.d.ts +0 -1
- package/dist/api/aiApi.d.ts +1 -4
- package/dist/api/evercamLabsApi.d.ts +2 -1
- package/dist/index.js +83 -91
- package/dist/index.js.map +1 -1
- package/dist/index.umd.cjs +1 -1
- package/dist/index.umd.cjs.map +1 -1
- package/dist/types/detections.d.ts +5 -13
- package/dist/types/gateReport.d.ts +1 -50
- package/dist/types/widget.d.ts +0 -2
- package/package.json +1 -1
package/dist/api/adminApi.d.ts
CHANGED
|
@@ -124,7 +124,6 @@ export declare const AdminApi: {
|
|
|
124
124
|
getCameraLogs(cameraId: string, payload: {
|
|
125
125
|
params: CameraAuditLogsQueryParams;
|
|
126
126
|
}): Promise<PaginatedItems<CameraAuditLog[]>>;
|
|
127
|
-
togglePinNote(id: string): Promise<PaginatedItems<CameraAuditLog[]>>;
|
|
128
127
|
};
|
|
129
128
|
nvrs: {
|
|
130
129
|
getNvrs(params: {
|
package/dist/api/aiApi.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type { AnprQueryParams, AnprEvent, EventCountRequestPayload, EventCountResponsePayload, EventsExportRequestParameters, EventsRequestPayload, EventsResponsePayload, GateReportROI, PaginatedItems, GateReportVerifiedDay, ProjectExid, CameraExid, AnprCountsQueryParams, AnprCount, AnprBasedGateReportExportRequestParams, GateReportResponsePayload, GatReportRequestPayload, AnalyticsParameters, VerifiedDaysQueryParams, EventUpdateRequestPayload, VerifyDayUpdateRequestPayload, ProcessedDaysQueryParams, GateReportEventType, DateTime, RoisQueryParams, GateReportROICreateRequestPayload
|
|
1
|
+
import type { AnprQueryParams, AnprEvent, EventCountRequestPayload, EventCountResponsePayload, EventsExportRequestParameters, EventsRequestPayload, EventsResponsePayload, GateReportROI, PaginatedItems, GateReportVerifiedDay, ProjectExid, CameraExid, AnprCountsQueryParams, AnprCount, AnprBasedGateReportExportRequestParams, GateReportResponsePayload, GatReportRequestPayload, AnalyticsParameters, VerifiedDaysQueryParams, EventUpdateRequestPayload, VerifyDayUpdateRequestPayload, ProcessedDaysQueryParams, GateReportEventType, DateTime, RoisQueryParams, GateReportROICreateRequestPayload } from "@evercam/api/types";
|
|
2
2
|
import type { AxiosPromise, AxiosRequestConfig } from "axios";
|
|
3
3
|
export declare const getAiApiUrl: () => string | null | undefined;
|
|
4
4
|
export declare const AiApi: {
|
|
@@ -70,7 +70,4 @@ export declare const AiApi: {
|
|
|
70
70
|
updatedBy: string;
|
|
71
71
|
}): Promise<import("axios").AxiosResponse<any, any>>;
|
|
72
72
|
};
|
|
73
|
-
detections: {
|
|
74
|
-
getSimilarSegmentsInTimeIntervals({ cameraExid, iouThreshold, ...params }: SegmentsSimilaritySearchParams): Promise<import("axios").AxiosResponse<any, any>>;
|
|
75
|
-
};
|
|
76
73
|
};
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type { CameraExid, CopilotConversation, CopilotMessage, CopilotMessageStep, CountByPeriod, CountsParams, DetectionsFilters, DetectionsPresenceByLabel, FeedbackPayload, GrafanaKitMetrics, LabsPaginationParams, LuminanceReading, MilesightCameraNetworkConfiguration, MilesightCameraOsdConfiguration, MilesightCameraSdCardInfo, MilesightCameraSystemSettings, MilesightCameraVideoConfig, MilesightRequestParams, PaginatedItems, SegmentsByLabel, SegmentsPresenceByLabel, TrackingsByLabel } from "@evercam/api/types";
|
|
1
|
+
import type { CameraExid, CopilotConversation, CopilotMessage, CopilotMessageStep, CountByPeriod, CountsParams, DetectionsFilters, DetectionsPresenceByLabel, FeedbackPayload, GrafanaKitMetrics, LabsPaginationParams, LuminanceReading, MilesightCameraNetworkConfiguration, MilesightCameraOsdConfiguration, MilesightCameraSdCardInfo, MilesightCameraSystemSettings, MilesightCameraVideoConfig, MilesightRequestParams, PaginatedItems, SegmentsByLabel, SegmentsPresenceByLabel, SegmentsSimilaritySearchParams, TrackingsByLabel } from "@evercam/api/types";
|
|
2
2
|
import { GrafanaMetricId, KitMetricPeriod } from "@evercam/api/types";
|
|
3
3
|
export declare function getLabsBaseUrl(): string | null | undefined;
|
|
4
4
|
export declare const EvercamLabsApi: {
|
|
@@ -27,6 +27,7 @@ export declare const EvercamLabsApi: {
|
|
|
27
27
|
getDetectionsPresenceDateIntervals({ cameraExid, fromDate, toDate, precision, }: CountsParams): Promise<DetectionsPresenceByLabel>;
|
|
28
28
|
getSegmentsDateIntervals({ cameraExid, fromDate, toDate, precision, }: CountsParams): Promise<SegmentsPresenceByLabel>;
|
|
29
29
|
getCranesMovement({ cameraExid, fromDate, toDate, precision, }: CountsParams): Promise<CountByPeriod[]>;
|
|
30
|
+
getSimilarSegmentsInTimeIntervals({ cameraExid, segmentId, ...params }: SegmentsSimilaritySearchParams): Promise<import("axios").AxiosResponse<any, any>>;
|
|
30
31
|
};
|
|
31
32
|
googleCloudStorage: {
|
|
32
33
|
listFiles(prefix?: string): Promise<{
|