@evercam/api 1.0.0-a6868d86c → 1.0.0-a85cb7fae
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/api/3dFirebaseApi.d.ts +1 -0
- package/dist/api/api/adminApi.d.ts +67 -58
- package/dist/api/api/aiApi.d.ts +57 -53
- package/dist/api/api/authzApi.d.ts +27 -17
- package/dist/api/api/client/axios.d.ts +1 -1
- package/dist/api/api/client/swr/Swr.d.ts +1 -1
- package/dist/api/api/evercamApi.d.ts +110 -94
- package/dist/api/api/evercamLabsApi.d.ts +4 -5
- package/dist/api/api/exNvrApi.d.ts +1 -1
- package/dist/api/api/ingestApi.d.ts +99 -47
- package/dist/api/api/ptzApi.d.ts +9 -4
- package/dist/api/api/videoWallApi.d.ts +2 -2
- package/dist/api/api/weatherApi.d.ts +2 -2
- package/dist/api/types/360.d.ts +4 -2
- package/dist/api/types/aconex.d.ts +9 -9
- package/dist/api/types/admin.d.ts +51 -0
- package/dist/api/types/analytics.d.ts +84 -45
- package/dist/api/types/anpr.d.ts +19 -2
- package/dist/api/types/auditLogs.d.ts +1 -1
- package/dist/api/types/authz.d.ts +45 -6
- package/dist/api/types/autodesk.d.ts +7 -7
- package/dist/api/types/automation.d.ts +37 -3
- package/dist/api/types/axios.d.ts +10 -6
- package/dist/api/types/bim.d.ts +11 -5
- package/dist/api/types/camera.d.ts +87 -74
- package/dist/api/types/comments.d.ts +4 -8
- package/dist/api/types/company.d.ts +42 -1
- package/dist/api/types/compare.d.ts +20 -5
- package/dist/api/types/connector.d.ts +3 -5
- package/dist/api/types/coolify.d.ts +18 -2
- package/dist/api/types/copilot.d.ts +11 -6
- package/dist/api/types/detections.d.ts +20 -8
- package/dist/api/types/drone.d.ts +1 -0
- package/dist/api/types/gateReport.d.ts +43 -50
- package/dist/api/types/hdd.d.ts +26 -1
- package/dist/api/types/index.d.ts +6 -1
- package/dist/api/types/ingest.d.ts +90 -2
- package/dist/api/types/kit.d.ts +14 -7
- package/dist/api/types/media.d.ts +2 -1
- package/dist/api/types/notification.d.ts +32 -2
- package/dist/api/types/oauth.d.ts +62 -0
- package/dist/api/types/planner.d.ts +44 -0
- package/dist/api/types/posthog.d.ts +15 -0
- package/dist/api/types/procore.d.ts +13 -6
- package/dist/api/types/progressPhoto.d.ts +6 -2
- package/dist/api/types/project.d.ts +98 -20
- package/dist/api/types/recording.d.ts +2 -3
- package/dist/api/types/recycleBin.d.ts +1 -1
- package/dist/api/types/ring.d.ts +53 -0
- package/dist/api/types/router.d.ts +1 -1
- package/dist/api/types/shared.d.ts +11 -4
- package/dist/api/types/shares.d.ts +6 -144
- package/dist/api/types/sim.d.ts +6 -6
- package/dist/api/types/siteAnalytics.d.ts +79 -39
- package/dist/api/types/smartSeach.d.ts +5 -0
- package/dist/api/types/snapshots.d.ts +36 -4
- package/dist/api/types/storageProvider.d.ts +19 -0
- package/dist/api/types/storyblok.d.ts +40 -0
- package/dist/api/types/streaming.d.ts +3 -3
- package/dist/api/types/tag.d.ts +1 -1
- package/dist/api/types/time.d.ts +0 -18
- package/dist/api/types/timelapse.d.ts +3 -4
- package/dist/api/types/user.d.ts +101 -31
- package/dist/api/types/videoWall.d.ts +21 -21
- package/dist/api/types/weather.d.ts +75 -11
- package/dist/api/types/widget.d.ts +71 -12
- package/dist/api/types/xweather.d.ts +4 -4
- package/dist/index.js +926 -784
- package/dist/index.js.map +1 -1
- package/dist/index.umd.cjs +1 -1
- package/dist/index.umd.cjs.map +1 -1
- package/dist/shared/types/components.d.ts +113 -9
- package/dist/shared/types/imagePlayer.d.ts +1 -1
- package/dist/shared/types/index.d.ts +1 -0
- package/dist/shared/types/rbac.d.ts +67 -0
- package/dist/shared/types/timeline.d.ts +2 -1
- package/package.json +2 -2
- package/dist/api/types/storageServers.d.ts +0 -4
|
@@ -1,31 +1,95 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { DateType } from "@evercam/api/types/time";
|
|
2
2
|
export type HistoryWeatherRequestPayload = {
|
|
3
3
|
day: string;
|
|
4
4
|
provider: WeatherProvider;
|
|
5
5
|
};
|
|
6
|
+
export type WeatherReportParams = {
|
|
7
|
+
startDate: string;
|
|
8
|
+
endDate: string;
|
|
9
|
+
weatherConditionIds?: number[];
|
|
10
|
+
minMinTemp?: number;
|
|
11
|
+
maxMinTemp?: number;
|
|
12
|
+
minMaxTemp?: number;
|
|
13
|
+
maxMaxTemp?: number;
|
|
14
|
+
minMinPrecip?: number;
|
|
15
|
+
maxMinPrecip?: number;
|
|
16
|
+
minMaxPrecip?: number;
|
|
17
|
+
maxMaxPrecip?: number;
|
|
18
|
+
minMinWindSpeed?: number;
|
|
19
|
+
maxMinWindSpeed?: number;
|
|
20
|
+
minMaxWindSpeed?: number;
|
|
21
|
+
maxMaxWindSpeed?: number;
|
|
22
|
+
minMinHumidity?: number;
|
|
23
|
+
maxMinHumidity?: number;
|
|
24
|
+
minMaxHumidity?: number;
|
|
25
|
+
maxMaxHumidity?: number;
|
|
26
|
+
minMinPressure?: number;
|
|
27
|
+
maxMinPressure?: number;
|
|
28
|
+
minMaxPressure?: number;
|
|
29
|
+
maxMaxPressure?: number;
|
|
30
|
+
minMinClouds?: number;
|
|
31
|
+
maxMinClouds?: number;
|
|
32
|
+
minMaxClouds?: number;
|
|
33
|
+
maxMaxClouds?: number;
|
|
34
|
+
minMaxUvIndex?: number;
|
|
35
|
+
maxMaxUvIndex?: number;
|
|
36
|
+
};
|
|
37
|
+
export declare enum WeatherReportScope {
|
|
38
|
+
Daily = "daily"
|
|
39
|
+
}
|
|
40
|
+
export type WeatherReportRequestPayload = WeatherReportParams & {
|
|
41
|
+
scope: WeatherReportScope;
|
|
42
|
+
includeRecent: boolean;
|
|
43
|
+
};
|
|
6
44
|
export type CurrentWeatherRequestPayload = {
|
|
7
45
|
provider: WeatherProvider;
|
|
8
46
|
includeForecast?: boolean;
|
|
9
47
|
forecastDays?: number;
|
|
10
48
|
};
|
|
11
|
-
export type
|
|
12
|
-
|
|
13
|
-
|
|
49
|
+
export type WeatherHourlyItem = {
|
|
50
|
+
chanceoffog: number;
|
|
51
|
+
chanceoffrost: number;
|
|
52
|
+
chanceofhightemp: number;
|
|
53
|
+
chanceofovercast: number;
|
|
54
|
+
chanceofrain: number;
|
|
55
|
+
chanceofremdry: number;
|
|
56
|
+
chanceofsnow: number;
|
|
57
|
+
chanceofsunshine: number;
|
|
58
|
+
chanceofthunder: number;
|
|
59
|
+
chanceofwindy: number;
|
|
14
60
|
clouds?: number;
|
|
61
|
+
dewpoint: number;
|
|
15
62
|
feelsLike?: number;
|
|
16
|
-
|
|
63
|
+
heatindex: number;
|
|
64
|
+
hour?: number;
|
|
17
65
|
humidity?: number;
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
66
|
+
isRequestedWeather?: boolean;
|
|
67
|
+
precip: number;
|
|
68
|
+
pressure?: number;
|
|
21
69
|
rain?: HourlyReading;
|
|
22
70
|
snow?: HourlyReading;
|
|
23
|
-
|
|
71
|
+
source: string;
|
|
72
|
+
temp?: number;
|
|
73
|
+
uvIndex: number;
|
|
74
|
+
weather?: WeatherSummary;
|
|
75
|
+
windchill: number;
|
|
76
|
+
windDegree?: number;
|
|
77
|
+
windDir: string;
|
|
78
|
+
windgust: number;
|
|
79
|
+
windSpeed?: number;
|
|
80
|
+
wind?: {
|
|
81
|
+
speed: number;
|
|
82
|
+
};
|
|
83
|
+
};
|
|
84
|
+
export type WeatherResponsePayload = Array<WeatherHourlyItem>;
|
|
24
85
|
export type WeatherSummary = {
|
|
25
86
|
id?: number;
|
|
26
87
|
main?: string;
|
|
27
88
|
description?: string;
|
|
28
|
-
|
|
89
|
+
temperature?: number;
|
|
90
|
+
icon?: string | string[];
|
|
91
|
+
weatherIndex?: number;
|
|
92
|
+
rain?: HourlyReading;
|
|
29
93
|
};
|
|
30
94
|
export type HourlyReading = {
|
|
31
95
|
"1h"?: number;
|
|
@@ -78,7 +142,7 @@ export type WeatherDataResponse = {
|
|
|
78
142
|
uvIndex: number;
|
|
79
143
|
maxHeatindex: number;
|
|
80
144
|
minTemp: number;
|
|
81
|
-
date:
|
|
145
|
+
date: string;
|
|
82
146
|
totalsnow: number;
|
|
83
147
|
maxPressure: number;
|
|
84
148
|
maxWindchill: number;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import
|
|
2
|
-
import {
|
|
3
|
-
import {
|
|
1
|
+
import { CameraExid, PaginationParams } from "@evercam/api/types";
|
|
2
|
+
import type { JsonObject } from "@evercam/api/types";
|
|
3
|
+
import { VideoWallPresetGridConfig } from "@evercam/api/types/videoWall";
|
|
4
4
|
export declare enum DelayUnit {
|
|
5
5
|
Minute = "Minutes",
|
|
6
6
|
Hour = "Hours",
|
|
@@ -79,7 +79,7 @@ export type RecordingsWidgetSettings = CommonWidgetSettings & {
|
|
|
79
79
|
delay: number;
|
|
80
80
|
delayUnit: DelayUnit;
|
|
81
81
|
hasRange: boolean;
|
|
82
|
-
dateRange: [
|
|
82
|
+
dateRange: [string, string] | null;
|
|
83
83
|
};
|
|
84
84
|
export type LiveViewWidgetSettings = CommonWidgetSettings & {
|
|
85
85
|
fullscreen: boolean;
|
|
@@ -92,16 +92,24 @@ export type BimCompareWidgetSettings = CommonWidgetSettings & {
|
|
|
92
92
|
timeline: boolean;
|
|
93
93
|
darkMode: boolean;
|
|
94
94
|
};
|
|
95
|
-
export type
|
|
96
|
-
preset:
|
|
95
|
+
export type VideoWallWidgetSettingsObject = CommonWidgetSettings & {
|
|
96
|
+
preset: VideoWallPresetGridConfig;
|
|
97
97
|
refreshRate: number;
|
|
98
|
+
allowCellFullscreen: boolean;
|
|
99
|
+
allowFitContent: boolean;
|
|
100
|
+
allowForceAspectRatio: boolean;
|
|
101
|
+
allowFullscreen: boolean;
|
|
102
|
+
cameras: CameraExid[];
|
|
103
|
+
description: string;
|
|
104
|
+
global: boolean;
|
|
105
|
+
visibility: string;
|
|
98
106
|
};
|
|
99
107
|
export type ThreeSixtyWidgetSettings = CommonWidgetSettings & {
|
|
100
108
|
dateId: string;
|
|
101
109
|
floorId: string;
|
|
102
110
|
markerId: string;
|
|
103
111
|
};
|
|
104
|
-
export type WidgetSettings = RecordingsWidgetSettings | LiveViewWidgetSettings | BimCompareWidgetSettings |
|
|
112
|
+
export type WidgetSettings = RecordingsWidgetSettings | LiveViewWidgetSettings | BimCompareWidgetSettings | VideoWallWidgetSettingsObject | ThreeSixtyWidgetSettings;
|
|
105
113
|
export declare enum WidgetType {
|
|
106
114
|
LiveWidget = "Live View",
|
|
107
115
|
Recording = "Recordings",
|
|
@@ -148,8 +156,8 @@ export type Widget = {
|
|
|
148
156
|
firstname: string;
|
|
149
157
|
lastname: string;
|
|
150
158
|
};
|
|
151
|
-
insertedAt:
|
|
152
|
-
updatedAt:
|
|
159
|
+
insertedAt: string;
|
|
160
|
+
updatedAt: string;
|
|
153
161
|
};
|
|
154
162
|
export type WidgetFull = {
|
|
155
163
|
id: number;
|
|
@@ -174,11 +182,62 @@ export type WidgetFull = {
|
|
|
174
182
|
email: string;
|
|
175
183
|
};
|
|
176
184
|
settings: WidgetSettings;
|
|
177
|
-
sessionSettings:
|
|
185
|
+
sessionSettings: JsonObject | null;
|
|
178
186
|
allowedOrigin: string;
|
|
179
187
|
domainRestricted: boolean;
|
|
180
|
-
insertedAt:
|
|
181
|
-
updatedAt:
|
|
188
|
+
insertedAt: string;
|
|
189
|
+
updatedAt: string;
|
|
190
|
+
};
|
|
191
|
+
export type WidgetSessionSettingsPayload = {
|
|
192
|
+
sessionSettings: JsonObject;
|
|
193
|
+
};
|
|
194
|
+
export type AdminWidgetResourceCamera = {
|
|
195
|
+
id: number;
|
|
196
|
+
exid: string;
|
|
197
|
+
name: string;
|
|
198
|
+
};
|
|
199
|
+
export type AdminWidgetResourceProject = {
|
|
200
|
+
id: number;
|
|
201
|
+
exid: string;
|
|
202
|
+
name: string;
|
|
203
|
+
featureFlags: string[];
|
|
204
|
+
};
|
|
205
|
+
export type AdminWidgetResourcePreset = {
|
|
206
|
+
id: number;
|
|
207
|
+
name: string;
|
|
208
|
+
exid: string;
|
|
209
|
+
config: JsonObject;
|
|
210
|
+
};
|
|
211
|
+
export type AdminWidgetResources = {
|
|
212
|
+
camera?: AdminWidgetResourceCamera | null;
|
|
213
|
+
project?: AdminWidgetResourceProject | null;
|
|
214
|
+
preset?: AdminWidgetResourcePreset | null;
|
|
215
|
+
};
|
|
216
|
+
export type AdminWidgetUser = {
|
|
217
|
+
id: number;
|
|
218
|
+
email: string;
|
|
219
|
+
firstname: string;
|
|
220
|
+
lastname: string;
|
|
221
|
+
};
|
|
222
|
+
export type AdminWidget = {
|
|
223
|
+
id: number;
|
|
224
|
+
active: boolean;
|
|
225
|
+
public: boolean;
|
|
226
|
+
user: AdminWidgetUser;
|
|
227
|
+
description: string | null;
|
|
228
|
+
insertedAt: string;
|
|
229
|
+
updatedAt: string;
|
|
230
|
+
settings: WidgetSettings;
|
|
231
|
+
ressources: AdminWidgetResources;
|
|
232
|
+
seenAt?: string;
|
|
233
|
+
showDashboardLink?: boolean;
|
|
234
|
+
domainRestricted: boolean;
|
|
235
|
+
widgetType: WidgetType;
|
|
236
|
+
allowedOrigin: string | null;
|
|
237
|
+
};
|
|
238
|
+
export type AdminWidgetFull = AdminWidget & {
|
|
239
|
+
widgetKey: string;
|
|
240
|
+
widgetId: string;
|
|
182
241
|
};
|
|
183
242
|
export type WidgetPayload = {
|
|
184
243
|
ressources: {
|
|
@@ -4,9 +4,9 @@ export type XWeatherCreatePayload = {
|
|
|
4
4
|
clientSecret: string;
|
|
5
5
|
};
|
|
6
6
|
export type XWeatherResponse = {
|
|
7
|
-
id
|
|
8
|
-
provider:
|
|
7
|
+
id?: number;
|
|
8
|
+
provider: "xweather";
|
|
9
9
|
config: object;
|
|
10
|
-
insertedAt
|
|
11
|
-
updatedAt
|
|
10
|
+
insertedAt?: string;
|
|
11
|
+
updatedAt?: string;
|
|
12
12
|
};
|