@evercam/api 1.0.0-003a1ed80 → 1.0.0-02b905f39
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 +3 -0
- package/dist/api/api/3dFirebaseApi.d.ts +1 -0
- package/dist/api/api/adminApi.d.ts +26 -2
- package/dist/api/api/aiApi.d.ts +14 -5
- package/dist/api/api/authzApi.d.ts +7 -0
- package/dist/api/api/evercamApi.d.ts +13 -9
- package/dist/api/api/evercamLabsApi.d.ts +3 -2
- package/dist/api/api/ingestApi.d.ts +30 -8
- package/dist/api/api/videoWallApi.d.ts +7 -7
- package/dist/api/types/360.d.ts +44 -2
- package/dist/api/types/aconex.d.ts +102 -4
- package/dist/api/types/analytics.d.ts +51 -4
- package/dist/api/types/anpr.d.ts +5 -11
- package/dist/api/types/authz.d.ts +22 -0
- package/dist/api/types/automation.d.ts +51 -0
- package/dist/api/types/camera.d.ts +7 -2
- package/dist/api/types/coolify.d.ts +2 -0
- package/dist/api/types/detections.d.ts +4 -18
- package/dist/api/types/errors.d.ts +1 -0
- package/dist/api/types/index.d.ts +2 -0
- package/dist/api/types/ingest.d.ts +4 -0
- package/dist/api/types/kit.d.ts +2 -0
- package/dist/api/types/planner.d.ts +4 -1
- package/dist/api/types/progressPhoto.d.ts +1 -31
- package/dist/api/types/project.d.ts +41 -2
- package/dist/api/types/recycleBin.d.ts +14 -0
- package/dist/api/types/routeParams.d.ts +2 -1
- package/dist/api/types/siteAnalytics.d.ts +28 -7
- package/dist/api/types/snapshots.d.ts +9 -0
- package/dist/api/types/time.d.ts +4 -0
- package/dist/api/types/user.d.ts +4 -0
- package/dist/api/types/videoWall.d.ts +34 -1
- package/dist/api/types/weather.d.ts +2 -0
- package/dist/api/types/widget.d.ts +6 -4
- package/dist/api/utils.d.ts +1 -0
- package/dist/index.js +683 -546
- 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 +8 -2
- package/package.json +4 -4
|
@@ -78,6 +78,8 @@ export type RecordingsWidgetSettings = CommonWidgetSettings & {
|
|
|
78
78
|
hasDelay: boolean;
|
|
79
79
|
delay: number;
|
|
80
80
|
delayUnit: DelayUnit;
|
|
81
|
+
hasRange: boolean;
|
|
82
|
+
dateRange: [DateTime, DateTime] | null;
|
|
81
83
|
};
|
|
82
84
|
export type LiveViewWidgetSettings = CommonWidgetSettings & {
|
|
83
85
|
fullscreen: boolean;
|
|
@@ -118,7 +120,7 @@ export type WidgetsListRequestPayload = PaginationParams & {
|
|
|
118
120
|
active: boolean;
|
|
119
121
|
settings: WidgetSettings;
|
|
120
122
|
widgetType: WidgetType;
|
|
121
|
-
|
|
123
|
+
domainRestricted: boolean;
|
|
122
124
|
allowedOrigin: string;
|
|
123
125
|
};
|
|
124
126
|
export type Widget = {
|
|
@@ -138,7 +140,7 @@ export type Widget = {
|
|
|
138
140
|
widgetType: WidgetType;
|
|
139
141
|
settings: WidgetSettings;
|
|
140
142
|
allowedOrigin: string;
|
|
141
|
-
|
|
143
|
+
domainRestricted: boolean;
|
|
142
144
|
active: boolean;
|
|
143
145
|
user: {
|
|
144
146
|
id: number;
|
|
@@ -174,7 +176,7 @@ export type WidgetFull = {
|
|
|
174
176
|
settings: WidgetSettings;
|
|
175
177
|
sessionSettings: any;
|
|
176
178
|
allowedOrigin: string;
|
|
177
|
-
|
|
179
|
+
domainRestricted: boolean;
|
|
178
180
|
insertedAt: DateTime;
|
|
179
181
|
updatedAt: DateTime;
|
|
180
182
|
};
|
|
@@ -186,6 +188,6 @@ export type WidgetPayload = {
|
|
|
186
188
|
widgetType: WidgetType;
|
|
187
189
|
active: boolean;
|
|
188
190
|
settings: WidgetSettings;
|
|
189
|
-
|
|
191
|
+
domainRestricted: boolean;
|
|
190
192
|
allowedOrigin: string;
|
|
191
193
|
};
|
package/dist/api/utils.d.ts
CHANGED
|
@@ -7,3 +7,4 @@ export declare const toQueryString: <T extends Record<string, unknown>>(paramsOb
|
|
|
7
7
|
forceArrayBrackets?: boolean | undefined;
|
|
8
8
|
}) => string | undefined;
|
|
9
9
|
export declare function queryStringToObject(queryString?: string): QueryParams;
|
|
10
|
+
export declare function capitalizeFirstLetter(inputString: string): string;
|