@evercam/api 1.0.0-e82be48cd → 1.0.0-ea5c7d976
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 +9 -0
- package/dist/api/aiApi.d.ts +1 -1
- package/dist/index.js +23 -2
- 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/index.d.ts +1 -0
- package/dist/types/kit.d.ts +3 -1
- package/dist/types/tag.d.ts +12 -0
- package/package.json +1 -1
package/dist/types/index.d.ts
CHANGED
package/dist/types/kit.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { CountryCode, CountryId, DateType, Nvr, PaginationParams, PowerType, Project, Region, Router, Schedule } from "@/types";
|
|
1
|
+
import { CountryCode, CountryId, DateType, Nvr, PaginationParams, PowerType, Project, Region, Router, Schedule, Tag } from "@/types";
|
|
2
2
|
export type Kit = {
|
|
3
3
|
alarms: KitAlarm[];
|
|
4
4
|
countryCode: CountryCode;
|
|
@@ -16,6 +16,7 @@ export type Kit = {
|
|
|
16
16
|
serial: string;
|
|
17
17
|
status: KitStatus;
|
|
18
18
|
powerSchedule: Schedule;
|
|
19
|
+
tags: Tag[];
|
|
19
20
|
};
|
|
20
21
|
export declare enum KitStatus {
|
|
21
22
|
New = "new",
|
|
@@ -240,6 +241,7 @@ export type KitQueryParams = PaginationParams & {
|
|
|
240
241
|
name: string;
|
|
241
242
|
serial: string;
|
|
242
243
|
status: KitStatus;
|
|
244
|
+
tagId: number | number[];
|
|
243
245
|
};
|
|
244
246
|
export type AdminKit = {
|
|
245
247
|
id: number;
|