@evercam/api 1.0.0-dc478bb9d → 1.0.0-e03a0c41b
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 +1 -0
- package/dist/api/aiApi.d.ts +4 -1
- package/dist/api/evercamLabsApi.d.ts +1 -2
- package/dist/index.js +174 -165
- 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/analytics.d.ts +0 -1
- package/dist/types/detections.d.ts +13 -5
- package/dist/types/gateReport.d.ts +50 -1
- package/dist/types/sitePlanner.d.ts +3 -0
- package/dist/types/widget.d.ts +2 -0
- package/package.json +1 -1
package/dist/api/adminApi.d.ts
CHANGED
|
@@ -124,6 +124,7 @@ 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[]>>;
|
|
127
128
|
};
|
|
128
129
|
nvrs: {
|
|
129
130
|
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 } from "@evercam/api/types";
|
|
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, SegmentsSimilaritySearchParams } 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,4 +70,7 @@ 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
|
+
};
|
|
73
76
|
};
|
|
@@ -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,
|
|
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";
|
|
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,7 +27,6 @@ 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>>;
|
|
31
30
|
};
|
|
32
31
|
googleCloudStorage: {
|
|
33
32
|
listFiles(prefix?: string): Promise<{
|