@evercam/api 1.0.0-e03a0c41b → 1.0.0-eabc633d1
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/README.md +2 -0
- package/dist/api/adminApi.d.ts +22 -7
- package/dist/api/aiApi.d.ts +35 -1
- package/dist/api/client/interceptors.d.ts +2 -1
- package/dist/api/evercamApi.d.ts +1 -1
- package/dist/api/evercamLabsApi.d.ts +1 -5
- package/dist/api/ptzApi.d.ts +1 -1
- package/dist/api/weatherApi.d.ts +3 -3
- package/dist/index.js +630 -523
- 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/360.d.ts +2 -2
- package/dist/types/axios.d.ts +0 -1
- package/dist/types/camera.d.ts +5 -3
- package/dist/types/coolify.d.ts +18 -0
- package/dist/types/copilot.d.ts +9 -8
- package/dist/types/detections.d.ts +10 -4
- package/dist/types/hdd.d.ts +63 -0
- package/dist/types/index.d.ts +2 -0
- package/dist/types/kit.d.ts +5 -1
- package/dist/types/nvr.d.ts +2 -1
- package/dist/types/shared.d.ts +1 -1
- package/dist/types/siteAnalytics.d.ts +80 -1
- package/dist/types/sitePlanner.d.ts +4 -2
- package/dist/types/timelapse.d.ts +15 -0
- package/dist/types/widget.d.ts +8 -5
- package/package.json +4 -4
package/dist/types/360.d.ts
CHANGED
|
@@ -41,11 +41,11 @@ export declare enum _360AssetType {
|
|
|
41
41
|
MobileAudio = "mobile_audios"
|
|
42
42
|
}
|
|
43
43
|
export declare enum _360IntergrationType {
|
|
44
|
+
Evercam = "Evercam",
|
|
44
45
|
Matterport = "Matterport",
|
|
45
46
|
OpenSpace = "Openspace",
|
|
46
47
|
HoloBuilder = "Holobuilder",
|
|
47
|
-
DroneDeploy = "Dronedeploy"
|
|
48
|
-
Evercam = "Evercam"
|
|
48
|
+
DroneDeploy = "Dronedeploy"
|
|
49
49
|
}
|
|
50
50
|
export type _360AssetsQueryParams = {
|
|
51
51
|
page: number;
|
package/dist/types/axios.d.ts
CHANGED
package/dist/types/camera.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { AuditLogActionType, DateTime_Z_micros, DateType, EntityByExid,
|
|
2
|
-
export type CameraExid =
|
|
1
|
+
import { AuditLogActionType, DateTime_Z_micros, DateType, EntityByExid, NvrDeviceType, PaginationParams, PowerSchedule, PowerType, ProjectExid, Schedule } from "@/types";
|
|
2
|
+
export type CameraExid = string;
|
|
3
3
|
export type CamerasByExid = EntityByExid<Camera>;
|
|
4
4
|
export type Cartesian3 = {
|
|
5
5
|
x: number;
|
|
@@ -185,7 +185,8 @@ export declare enum CameraFeatureFlag {
|
|
|
185
185
|
PTZ = "ptz",
|
|
186
186
|
ObjectDetection = "object_detection",
|
|
187
187
|
Segmentation = "segmentation",
|
|
188
|
-
SegmentationAutoLabelling = "segmentation_auto_labelling"
|
|
188
|
+
SegmentationAutoLabelling = "segmentation_auto_labelling",
|
|
189
|
+
PpeMonitoring = "ppe_monitoring"
|
|
189
190
|
}
|
|
190
191
|
export type CameraLogsRequestPayload = {
|
|
191
192
|
limit: number;
|
|
@@ -227,6 +228,7 @@ export type CameraUpdateRequestPayload = {
|
|
|
227
228
|
heading?: number;
|
|
228
229
|
fovAngle?: number;
|
|
229
230
|
fovRadius?: number;
|
|
231
|
+
featureFlags: CameraFeatureFlag[];
|
|
230
232
|
};
|
|
231
233
|
export type CamerasResponsePayload = {
|
|
232
234
|
cameras?: Camera[];
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { DateType } from "@/types/time";
|
|
2
|
+
export type CreateCoolifyAppRequestPayload = {
|
|
3
|
+
cameraExid: string;
|
|
4
|
+
startDate: DateType;
|
|
5
|
+
modelVersion: string;
|
|
6
|
+
snapshotRequestTimeout: string | number;
|
|
7
|
+
serverUuid: string;
|
|
8
|
+
branch: string;
|
|
9
|
+
};
|
|
10
|
+
export type SaveCoolifyAppRequestPayload = {
|
|
11
|
+
contextCameraExid: string;
|
|
12
|
+
coolifyServiceId: string;
|
|
13
|
+
modelVersion: string;
|
|
14
|
+
startTime: string;
|
|
15
|
+
branchName: string;
|
|
16
|
+
snapshotRequestTimeout: string | number;
|
|
17
|
+
serverUuid: string;
|
|
18
|
+
};
|
package/dist/types/copilot.d.ts
CHANGED
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
import type { AnalyticsEventPageId, CameraExid, CameraFeatureFlag, CameraStatus, ProjectExid, ProjectFeatureFlag, ProjectStatus } from "@/types";
|
|
2
2
|
export declare enum CopilotMessageAuthor {
|
|
3
3
|
Copilot = "copilot",
|
|
4
|
-
User = "user"
|
|
4
|
+
User = "user",
|
|
5
|
+
System = "system"
|
|
5
6
|
}
|
|
6
7
|
export declare enum CopilotMessageType {
|
|
7
8
|
Text = "text",
|
|
@@ -33,12 +34,13 @@ export declare enum CopilotMissingFieldsLabels {
|
|
|
33
34
|
FromDate = "Start date",
|
|
34
35
|
ToDate = "End date"
|
|
35
36
|
}
|
|
36
|
-
export type CopilotMissingField = {
|
|
37
|
+
export type CopilotMissingField<T = any> = {
|
|
37
38
|
name: string;
|
|
38
39
|
label: string;
|
|
39
40
|
value: any;
|
|
40
41
|
type: string;
|
|
41
42
|
toolId: string;
|
|
43
|
+
error?: T;
|
|
42
44
|
};
|
|
43
45
|
export type CopilotMissingFields = Record<number, CopilotMissingField[]>;
|
|
44
46
|
export type UserConversations = CopilotConversation & {
|
|
@@ -57,7 +59,8 @@ export declare enum CopilotSocketEvent {
|
|
|
57
59
|
ChatError = "chat:chatError",
|
|
58
60
|
MissingFields = "chat:missingFields",
|
|
59
61
|
MissingFieldsCompleted = "chat:missingFields:completed",
|
|
60
|
-
SystemToolCallResponse = "system:toolCall:response"
|
|
62
|
+
SystemToolCallResponse = "system:toolCall:response",
|
|
63
|
+
ChangeProvider = "chat:changeProvider"
|
|
61
64
|
}
|
|
62
65
|
export type CopilotConversation = {
|
|
63
66
|
id: number;
|
|
@@ -118,9 +121,6 @@ export type CopilotProject = {
|
|
|
118
121
|
featureFlags?: ProjectFeatureFlag[];
|
|
119
122
|
cameras?: CopilotCamera[];
|
|
120
123
|
};
|
|
121
|
-
export type CopilotConversationContext = {
|
|
122
|
-
availableProjects: CopilotProject[];
|
|
123
|
-
};
|
|
124
124
|
export type CopilotMessageContext = {
|
|
125
125
|
pageId?: AnalyticsEventPageId;
|
|
126
126
|
selectedCamera?: CopilotCamera;
|
|
@@ -129,8 +129,8 @@ export type CopilotMessageContext = {
|
|
|
129
129
|
export type CopilotMessageStep = {
|
|
130
130
|
args: string[];
|
|
131
131
|
depth: number;
|
|
132
|
-
id
|
|
133
|
-
message_id
|
|
132
|
+
id?: number;
|
|
133
|
+
message_id?: number;
|
|
134
134
|
step: CopilotStepId;
|
|
135
135
|
timestamp: string;
|
|
136
136
|
};
|
|
@@ -154,3 +154,4 @@ export declare enum CopilotMissingFieldType {
|
|
|
154
154
|
String = "string",
|
|
155
155
|
Number = "number"
|
|
156
156
|
}
|
|
157
|
+
export type CopilotCompletedFields = Record<string, unknown>;
|
|
@@ -1,11 +1,12 @@
|
|
|
1
|
-
import { type CameraExid, type DateType, DetectionLabel, SegmentLabel, type TimelineDateInterval, TimelinePrecision } from "@/types";
|
|
1
|
+
import { type BoundingBox, type CameraExid, type DateType, DetectionLabel, SegmentLabel, type TimelineDateInterval, TimelinePrecision } from "@/types";
|
|
2
2
|
export type DetectionsFilters = {
|
|
3
3
|
cameraExid: CameraExid;
|
|
4
4
|
fromDate: string | Date;
|
|
5
5
|
toDate: string | Date;
|
|
6
6
|
labels: DetectionLabel | DetectionLabel[];
|
|
7
|
+
trackId?: number;
|
|
7
8
|
};
|
|
8
|
-
export type BBox = [
|
|
9
|
+
export type BBox = number[];
|
|
9
10
|
export type SelectedObjectPath = {
|
|
10
11
|
label: string;
|
|
11
12
|
trackId: string;
|
|
@@ -31,9 +32,12 @@ export type SegmentsByLabel = Record<SegmentLabel, Segment[]>;
|
|
|
31
32
|
export type SegmentPolygonCoords = number[][];
|
|
32
33
|
export type Segment = {
|
|
33
34
|
id: number;
|
|
34
|
-
mask
|
|
35
|
+
mask?: SegmentPolygonCoords;
|
|
35
36
|
label: string;
|
|
36
37
|
timestamp: string | Date;
|
|
38
|
+
cameraExid?: CameraExid;
|
|
39
|
+
bbox?: BoundingBox;
|
|
40
|
+
area?: number;
|
|
37
41
|
};
|
|
38
42
|
export type SegmentSimilarityResult = {
|
|
39
43
|
distance: number;
|
|
@@ -55,7 +59,9 @@ export type CountsParams = {
|
|
|
55
59
|
cameraExid: CameraExid;
|
|
56
60
|
fromDate: string | Date;
|
|
57
61
|
toDate: string | Date;
|
|
58
|
-
precision: TimelinePrecision;
|
|
62
|
+
precision: keyof typeof TimelinePrecision;
|
|
63
|
+
trackId: number;
|
|
64
|
+
labels: DetectionLabel | DetectionLabel[];
|
|
59
65
|
};
|
|
60
66
|
export type CountByPeriod = {
|
|
61
67
|
date: string | Date;
|
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
import { PaginationParams } from "@/types";
|
|
2
|
+
export declare enum HddFormat {
|
|
3
|
+
ExFat = "ExFAT",
|
|
4
|
+
HikFs = "HikFS"
|
|
5
|
+
}
|
|
6
|
+
export declare enum HddType {
|
|
7
|
+
Magnetic35 = "3.5\" Magnetic",
|
|
8
|
+
Magnetic25 = "2.5\" Magnetic",
|
|
9
|
+
Ssd25 = "2.5\" SSD"
|
|
10
|
+
}
|
|
11
|
+
export declare enum HddState {
|
|
12
|
+
Blank = "Blank",
|
|
13
|
+
InUse = "In Use",
|
|
14
|
+
ColdStorage = "Cold Storage"
|
|
15
|
+
}
|
|
16
|
+
export declare enum WarehouseLocationIndex {
|
|
17
|
+
IEWarehouse = 1,
|
|
18
|
+
Deployed = 2,
|
|
19
|
+
CustomerStorage = 3,
|
|
20
|
+
USWarehouse = 4,
|
|
21
|
+
AUWarehouse = 5,
|
|
22
|
+
UKWarehouse = 6
|
|
23
|
+
}
|
|
24
|
+
export declare enum WarehouseLocation {
|
|
25
|
+
IEWarehouse = "IE Warehouse",
|
|
26
|
+
Deployed = "Deployed",
|
|
27
|
+
CustomerStorage = "Customer Storage",
|
|
28
|
+
USWarehouse = "US Warehouse",
|
|
29
|
+
AUWarehouse = "AU Warehouse",
|
|
30
|
+
UKWarehouse = "UK Warehouse"
|
|
31
|
+
}
|
|
32
|
+
export declare enum HddSize {
|
|
33
|
+
TwoTB = "2 TB",
|
|
34
|
+
FourTB = "4 TB",
|
|
35
|
+
FiveTB = "5 TB",
|
|
36
|
+
SixTB = "6 TB",
|
|
37
|
+
EightTB = "8 TB",
|
|
38
|
+
TenTB = "10 TB"
|
|
39
|
+
}
|
|
40
|
+
export type FootageCreateUpdatePayload = {
|
|
41
|
+
cameraId: string;
|
|
42
|
+
startDate: string;
|
|
43
|
+
endDate: string;
|
|
44
|
+
};
|
|
45
|
+
export type HDDCreateUpdatePayload = {
|
|
46
|
+
size: string;
|
|
47
|
+
type: string;
|
|
48
|
+
format: string;
|
|
49
|
+
locationId: string;
|
|
50
|
+
serialNumber: string;
|
|
51
|
+
hddStatus: string;
|
|
52
|
+
shelfBlock: string;
|
|
53
|
+
};
|
|
54
|
+
export type HDDsQueryParams = PaginationParams & {
|
|
55
|
+
id: number;
|
|
56
|
+
location: string;
|
|
57
|
+
serialNumber: string;
|
|
58
|
+
shelfBlock: string;
|
|
59
|
+
format: string;
|
|
60
|
+
size: string;
|
|
61
|
+
type: string;
|
|
62
|
+
hddStatus: string;
|
|
63
|
+
};
|
package/dist/types/index.d.ts
CHANGED
|
@@ -13,6 +13,7 @@ export * from "./devices";
|
|
|
13
13
|
export * from "./drone";
|
|
14
14
|
export * from "./errors";
|
|
15
15
|
export * from "./gateReport";
|
|
16
|
+
export * from "./hdd";
|
|
16
17
|
export * from "./ingest";
|
|
17
18
|
export * from "./map";
|
|
18
19
|
export * from "./connector";
|
|
@@ -49,3 +50,4 @@ export * from "./siteAnalytics";
|
|
|
49
50
|
export * from "./widget";
|
|
50
51
|
export * from "./countries";
|
|
51
52
|
export * from "./automation";
|
|
53
|
+
export * from "./coolify";
|
package/dist/types/kit.d.ts
CHANGED
|
@@ -27,7 +27,11 @@ export declare enum KitAlarm {
|
|
|
27
27
|
NvrOffline = "nvr_offline",
|
|
28
28
|
UnknownCamera = "unknown_camera",
|
|
29
29
|
NotRecordingCamera = "not_recording_camera",
|
|
30
|
-
OfflineScheduled = "offline_scheduled"
|
|
30
|
+
OfflineScheduled = "offline_scheduled",
|
|
31
|
+
FullSD = "full_sd",
|
|
32
|
+
FullStorage = "full_storage",
|
|
33
|
+
HddUnmounted = "hdd_unmounted",
|
|
34
|
+
NoHdd = "no_hdd"
|
|
31
35
|
}
|
|
32
36
|
export declare enum KitMetricId {
|
|
33
37
|
BatteryStats = "battery",
|
package/dist/types/nvr.d.ts
CHANGED
package/dist/types/shared.d.ts
CHANGED
|
@@ -1,5 +1,84 @@
|
|
|
1
|
+
import type { BBox, BoundingBox, DetectionLabel } from "@evercam/api/types";
|
|
1
2
|
export declare enum SiteAnalyticsMode {
|
|
2
|
-
Cranes = "cranes",
|
|
3
3
|
Detections = "detections",
|
|
4
4
|
Segments = "segments"
|
|
5
5
|
}
|
|
6
|
+
export type SmartSearchOptionData = {
|
|
7
|
+
id?: string;
|
|
8
|
+
type: SmartSearchQueryComponentType;
|
|
9
|
+
value: DetectionLabel | SmartSearchOperatorType | SmartSearchConditionData;
|
|
10
|
+
};
|
|
11
|
+
export type SmartSearchQueryPart = SmartSearchOptionData | SmartSearchQueryPart[];
|
|
12
|
+
export declare enum SmartSearchQueryComponentType {
|
|
13
|
+
Condition = "condition",
|
|
14
|
+
Object = "object",
|
|
15
|
+
Area = "in_area",
|
|
16
|
+
Time = "time",
|
|
17
|
+
Operator = "operator"
|
|
18
|
+
}
|
|
19
|
+
export type SmartSearchQueryComponentData = {
|
|
20
|
+
id: string;
|
|
21
|
+
type: SmartSearchQueryComponentType;
|
|
22
|
+
parts: SmartSearchQueryPart[];
|
|
23
|
+
};
|
|
24
|
+
export declare enum SmartSearchCondition {
|
|
25
|
+
InArea = "in_area",
|
|
26
|
+
Intersects = "intersects",
|
|
27
|
+
Time = "time"
|
|
28
|
+
}
|
|
29
|
+
export type SmartSearchConditionData = {
|
|
30
|
+
condition: SmartSearchCondition;
|
|
31
|
+
value: string | BoundingBox | DetectionLabel | Date;
|
|
32
|
+
};
|
|
33
|
+
export type SmartSearchQuery = {
|
|
34
|
+
returnTargets: SmartSearchQueryTargets[];
|
|
35
|
+
rulesLogic: SmartSearchOperatorType;
|
|
36
|
+
rules: {
|
|
37
|
+
logic: SmartSearchOperatorType;
|
|
38
|
+
conditions: {
|
|
39
|
+
type: SmartSearchQueryConditionTypes;
|
|
40
|
+
target: SmartSearchQueryTargets;
|
|
41
|
+
operator?: SmartSearchQueryOperators;
|
|
42
|
+
attribute?: string;
|
|
43
|
+
value: string | number | string[];
|
|
44
|
+
reference?: {
|
|
45
|
+
target: SmartSearchQueryTargets;
|
|
46
|
+
attribute: string;
|
|
47
|
+
value: string | number | string[];
|
|
48
|
+
};
|
|
49
|
+
polygon?: BBox;
|
|
50
|
+
}[];
|
|
51
|
+
}[];
|
|
52
|
+
returnType: SmartSearchQueryReturnType;
|
|
53
|
+
};
|
|
54
|
+
export declare enum SmartSearchQueryTargets {
|
|
55
|
+
Tracking = "tracking",
|
|
56
|
+
Segments = "segments"
|
|
57
|
+
}
|
|
58
|
+
export declare enum SmartSearchQueryReturnType {
|
|
59
|
+
All = "all",
|
|
60
|
+
FirstLastSeen = "first_last_seen"
|
|
61
|
+
}
|
|
62
|
+
export declare enum SmartSearchOperatorType {
|
|
63
|
+
And = "AND",
|
|
64
|
+
Or = "OR"
|
|
65
|
+
}
|
|
66
|
+
export declare enum SmartSearchQueryOperators {
|
|
67
|
+
Near = "near",
|
|
68
|
+
Far = "far",
|
|
69
|
+
Intersects = "intersects",
|
|
70
|
+
DoesNotIntersect = "does_not_intersect",
|
|
71
|
+
Inside = "inside",
|
|
72
|
+
Outside = "outside",
|
|
73
|
+
DistanceBelow = "distance_below",
|
|
74
|
+
DistanceAbove = "distance_above",
|
|
75
|
+
Area = "in_area"
|
|
76
|
+
}
|
|
77
|
+
export declare enum SmartSearchQueryConditionTypes {
|
|
78
|
+
Selection = "selection",
|
|
79
|
+
Spatial = "spatial",
|
|
80
|
+
Area = "area",
|
|
81
|
+
Iou = "iou",
|
|
82
|
+
Near = "near",
|
|
83
|
+
Far = "far"
|
|
84
|
+
}
|
|
@@ -3,10 +3,12 @@ export declare enum EMapTypes {
|
|
|
3
3
|
Satellite = "Satellite",
|
|
4
4
|
Street = "Street",
|
|
5
5
|
GoogleSatellite = "hybrid",
|
|
6
|
-
GoogleStreet = "roadmap"
|
|
6
|
+
GoogleStreet = "roadmap",
|
|
7
|
+
GoogleTerrain = "terrain"
|
|
7
8
|
}
|
|
8
9
|
export declare enum EMarkers {
|
|
9
|
-
CameraMarker = "cameraMarker"
|
|
10
|
+
CameraMarker = "cameraMarker",
|
|
11
|
+
ThreeSixtyMarker = "threeSixtyMarkers"
|
|
10
12
|
}
|
|
11
13
|
export declare enum EPageType {
|
|
12
14
|
List = "list",
|
|
@@ -15,6 +15,13 @@ export type TimelapseVideoOptions = {
|
|
|
15
15
|
removeTimestamp: boolean;
|
|
16
16
|
smoothTransition: boolean;
|
|
17
17
|
evercamWatermark: boolean;
|
|
18
|
+
timestampPosition?: TimestampPositionCoordinates;
|
|
19
|
+
};
|
|
20
|
+
export type TimestampPositionCoordinates = {
|
|
21
|
+
x: number;
|
|
22
|
+
y: number;
|
|
23
|
+
w: number;
|
|
24
|
+
h: number;
|
|
18
25
|
};
|
|
19
26
|
export type TimelapseLogoOptions = {
|
|
20
27
|
id: number;
|
|
@@ -36,6 +43,14 @@ export declare enum TimelapsePeriod {
|
|
|
36
43
|
WholeProject = "whole_project",
|
|
37
44
|
Custom = "custom"
|
|
38
45
|
}
|
|
46
|
+
export declare enum TimelapseType {
|
|
47
|
+
Hour = "hour",
|
|
48
|
+
Day = "day",
|
|
49
|
+
Week = "week",
|
|
50
|
+
Month = "month",
|
|
51
|
+
Year = "year",
|
|
52
|
+
FullProject = "full_project"
|
|
53
|
+
}
|
|
39
54
|
export type TimelapseFilterQueryParams = {
|
|
40
55
|
from?: DateType;
|
|
41
56
|
to?: DateType;
|
package/dist/types/widget.d.ts
CHANGED
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
import type { DateTime } from "@evercam/api/types/time";
|
|
2
|
+
import { PaginationParams } from "@/types";
|
|
2
3
|
import { VideoWallPresetItemConfig } from "@evercam/api/types/videoWall";
|
|
3
4
|
export declare enum DelayUnit {
|
|
4
|
-
Minute = "
|
|
5
|
-
Hour = "
|
|
6
|
-
Day = "
|
|
5
|
+
Minute = "Minutes",
|
|
6
|
+
Hour = "Hours",
|
|
7
|
+
Day = "Days"
|
|
7
8
|
}
|
|
8
9
|
export declare enum CommonWidgetSettingsKeys {
|
|
9
10
|
Width = "width",
|
|
@@ -87,11 +88,11 @@ export declare enum WidgetType {
|
|
|
87
88
|
BimCompare = "BIM Compare",
|
|
88
89
|
VideoWall = "Video Wall"
|
|
89
90
|
}
|
|
90
|
-
export declare const
|
|
91
|
+
export declare const WidgetTypesByResource: {
|
|
91
92
|
camera: WidgetType[];
|
|
92
93
|
project: WidgetType[];
|
|
93
94
|
};
|
|
94
|
-
export type WidgetsListRequestPayload = {
|
|
95
|
+
export type WidgetsListRequestPayload = PaginationParams & {
|
|
95
96
|
userId: number;
|
|
96
97
|
projectId: number;
|
|
97
98
|
cameraId: number;
|
|
@@ -123,6 +124,8 @@ export type Widget = {
|
|
|
123
124
|
user: {
|
|
124
125
|
id: number;
|
|
125
126
|
email: string;
|
|
127
|
+
firstname: string;
|
|
128
|
+
lastname: string;
|
|
126
129
|
};
|
|
127
130
|
insertedAt: DateTime;
|
|
128
131
|
updatedAt: DateTime;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@evercam/api",
|
|
3
|
-
"version": "1.0.0-
|
|
3
|
+
"version": "1.0.0-eabc633d1",
|
|
4
4
|
"description": "Evercam API client",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -11,11 +11,11 @@
|
|
|
11
11
|
"private": false,
|
|
12
12
|
"type": "module",
|
|
13
13
|
"main": "dist/index.umd.js",
|
|
14
|
-
"module": "dist/index.
|
|
14
|
+
"module": "dist/index.js",
|
|
15
15
|
"types": "./dist/index.d.ts",
|
|
16
16
|
"exports": {
|
|
17
17
|
".": {
|
|
18
|
-
"import": "./dist/index.
|
|
18
|
+
"import": "./dist/index.js",
|
|
19
19
|
"require": "./dist/index.umd.js"
|
|
20
20
|
},
|
|
21
21
|
"./types": "./dist/src/types.ts"
|
|
@@ -36,7 +36,7 @@
|
|
|
36
36
|
"publish-api": "cd ../.. && yarn publish-api"
|
|
37
37
|
},
|
|
38
38
|
"devDependencies": {
|
|
39
|
-
"@types/node": "^22.
|
|
39
|
+
"@types/node": "^22.14.1",
|
|
40
40
|
"vite": "latest",
|
|
41
41
|
"vite-plugin-commonjs": "^0.10.3",
|
|
42
42
|
"vite-plugin-dts": "^4.5.3"
|