@camstack/addon-provider-reolink 1.2.91 → 1.2.92
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/addon.js +45 -1
- package/dist/addon.mjs +45 -1
- package/package.json +1 -1
package/dist/addon.js
CHANGED
|
@@ -20034,6 +20034,33 @@ var RecentTracksQueryInput = object({
|
|
|
20034
20034
|
*/
|
|
20035
20035
|
classes: array(string()).optional()
|
|
20036
20036
|
});
|
|
20037
|
+
/**
|
|
20038
|
+
* A Summary (D359): the per-camera session envelope that references tracks.
|
|
20039
|
+
* `groupShotKey` is the media key of its group shot (`ownerKind: 'summary'`,
|
|
20040
|
+
* served by the event-media plane by key), null until the first frame with a
|
|
20041
|
+
* member visible has been materialised.
|
|
20042
|
+
*/
|
|
20043
|
+
var SummarySchema = object({
|
|
20044
|
+
id: string(),
|
|
20045
|
+
deviceId: number(),
|
|
20046
|
+
openedAt: number(),
|
|
20047
|
+
lastActiveAt: number(),
|
|
20048
|
+
sealedAt: number().nullable(),
|
|
20049
|
+
memberCount: number().int().nonnegative(),
|
|
20050
|
+
groupShotKey: string().nullable()
|
|
20051
|
+
});
|
|
20052
|
+
var SummariesQueryInput = object({
|
|
20053
|
+
deviceIds: array(number()).min(1),
|
|
20054
|
+
since: number().optional(),
|
|
20055
|
+
until: number().optional(),
|
|
20056
|
+
limit: number().int().min(1).max(200).default(50)
|
|
20057
|
+
});
|
|
20058
|
+
var SummariesPageSchema = object({ summaries: array(SummarySchema).readonly() });
|
|
20059
|
+
var SummaryDetailSchema = object({
|
|
20060
|
+
summary: SummarySchema,
|
|
20061
|
+
/** Member track ids, in absorption order. */
|
|
20062
|
+
trackIds: array(string()).readonly()
|
|
20063
|
+
});
|
|
20037
20064
|
var RecentTracksPageSchema = object({
|
|
20038
20065
|
/** Merged page, ordered by (`lastSeen` DESC, `trackId` DESC). */
|
|
20039
20066
|
tracks: array(TrackSchema).readonly(),
|
|
@@ -20434,7 +20461,7 @@ DeviceType.Camera, method(object({ deviceId: number() }), array(TrackSchema).rea
|
|
|
20434
20461
|
* timeline would read as a camera that saw nothing.
|
|
20435
20462
|
*/
|
|
20436
20463
|
classes: array(string()).optional()
|
|
20437
|
-
}), array(TrackSchema).readonly()), method(RecentTracksQueryInput, RecentTracksPageSchema), method(object({ deviceId: number() }), _void(), {
|
|
20464
|
+
}), array(TrackSchema).readonly()), method(RecentTracksQueryInput, RecentTracksPageSchema), method(SummariesQueryInput, SummariesPageSchema), method(object({ id: string() }), SummaryDetailSchema.nullable()), method(object({ deviceId: number() }), _void(), {
|
|
20438
20465
|
kind: "mutation",
|
|
20439
20466
|
auth: "admin"
|
|
20440
20467
|
}), method(DeviceEventQueryInput, array(MotionEventSchema).readonly()), method(ObjectEventQueryInput, array(ObjectEventSchema).readonly()), method(DeviceEventQueryInput, array(AudioEventSchema).readonly()), method(object({ deviceId: number() }), array(EventKindDescriptorSchema).readonly()), method(object({ deviceIds: array(number()).min(1).max(200) }), array(EventKindsForDeviceSchema).readonly()), method(object({
|
|
@@ -37735,6 +37762,12 @@ Object.freeze({
|
|
|
37735
37762
|
addonId: null,
|
|
37736
37763
|
access: "view"
|
|
37737
37764
|
},
|
|
37765
|
+
"pipelineAnalytics.getSummary": {
|
|
37766
|
+
capName: "pipeline-analytics",
|
|
37767
|
+
capScope: "device",
|
|
37768
|
+
addonId: null,
|
|
37769
|
+
access: "view"
|
|
37770
|
+
},
|
|
37738
37771
|
"pipelineAnalytics.getTrack": {
|
|
37739
37772
|
capName: "pipeline-analytics",
|
|
37740
37773
|
capScope: "device",
|
|
@@ -37813,6 +37846,12 @@ Object.freeze({
|
|
|
37813
37846
|
addonId: null,
|
|
37814
37847
|
access: "view"
|
|
37815
37848
|
},
|
|
37849
|
+
"pipelineAnalytics.listSummaries": {
|
|
37850
|
+
capName: "pipeline-analytics",
|
|
37851
|
+
capScope: "device",
|
|
37852
|
+
addonId: null,
|
|
37853
|
+
access: "view"
|
|
37854
|
+
},
|
|
37816
37855
|
"pipelineAnalytics.listTrackMedia": {
|
|
37817
37856
|
capName: "pipeline-analytics",
|
|
37818
37857
|
capScope: "device",
|
|
@@ -41508,6 +41547,11 @@ Object.freeze({
|
|
|
41508
41547
|
form: "array",
|
|
41509
41548
|
optional: true
|
|
41510
41549
|
}],
|
|
41550
|
+
"pipelineAnalytics.listSummaries": [{
|
|
41551
|
+
name: "deviceIds",
|
|
41552
|
+
form: "array",
|
|
41553
|
+
optional: false
|
|
41554
|
+
}],
|
|
41511
41555
|
"pipelineAnalytics.listTrackMedia": [{
|
|
41512
41556
|
name: "deviceId",
|
|
41513
41557
|
form: "single",
|
package/dist/addon.mjs
CHANGED
|
@@ -20029,6 +20029,33 @@ var RecentTracksQueryInput = object({
|
|
|
20029
20029
|
*/
|
|
20030
20030
|
classes: array(string()).optional()
|
|
20031
20031
|
});
|
|
20032
|
+
/**
|
|
20033
|
+
* A Summary (D359): the per-camera session envelope that references tracks.
|
|
20034
|
+
* `groupShotKey` is the media key of its group shot (`ownerKind: 'summary'`,
|
|
20035
|
+
* served by the event-media plane by key), null until the first frame with a
|
|
20036
|
+
* member visible has been materialised.
|
|
20037
|
+
*/
|
|
20038
|
+
var SummarySchema = object({
|
|
20039
|
+
id: string(),
|
|
20040
|
+
deviceId: number(),
|
|
20041
|
+
openedAt: number(),
|
|
20042
|
+
lastActiveAt: number(),
|
|
20043
|
+
sealedAt: number().nullable(),
|
|
20044
|
+
memberCount: number().int().nonnegative(),
|
|
20045
|
+
groupShotKey: string().nullable()
|
|
20046
|
+
});
|
|
20047
|
+
var SummariesQueryInput = object({
|
|
20048
|
+
deviceIds: array(number()).min(1),
|
|
20049
|
+
since: number().optional(),
|
|
20050
|
+
until: number().optional(),
|
|
20051
|
+
limit: number().int().min(1).max(200).default(50)
|
|
20052
|
+
});
|
|
20053
|
+
var SummariesPageSchema = object({ summaries: array(SummarySchema).readonly() });
|
|
20054
|
+
var SummaryDetailSchema = object({
|
|
20055
|
+
summary: SummarySchema,
|
|
20056
|
+
/** Member track ids, in absorption order. */
|
|
20057
|
+
trackIds: array(string()).readonly()
|
|
20058
|
+
});
|
|
20032
20059
|
var RecentTracksPageSchema = object({
|
|
20033
20060
|
/** Merged page, ordered by (`lastSeen` DESC, `trackId` DESC). */
|
|
20034
20061
|
tracks: array(TrackSchema).readonly(),
|
|
@@ -20429,7 +20456,7 @@ DeviceType.Camera, method(object({ deviceId: number() }), array(TrackSchema).rea
|
|
|
20429
20456
|
* timeline would read as a camera that saw nothing.
|
|
20430
20457
|
*/
|
|
20431
20458
|
classes: array(string()).optional()
|
|
20432
|
-
}), array(TrackSchema).readonly()), method(RecentTracksQueryInput, RecentTracksPageSchema), method(object({ deviceId: number() }), _void(), {
|
|
20459
|
+
}), array(TrackSchema).readonly()), method(RecentTracksQueryInput, RecentTracksPageSchema), method(SummariesQueryInput, SummariesPageSchema), method(object({ id: string() }), SummaryDetailSchema.nullable()), method(object({ deviceId: number() }), _void(), {
|
|
20433
20460
|
kind: "mutation",
|
|
20434
20461
|
auth: "admin"
|
|
20435
20462
|
}), method(DeviceEventQueryInput, array(MotionEventSchema).readonly()), method(ObjectEventQueryInput, array(ObjectEventSchema).readonly()), method(DeviceEventQueryInput, array(AudioEventSchema).readonly()), method(object({ deviceId: number() }), array(EventKindDescriptorSchema).readonly()), method(object({ deviceIds: array(number()).min(1).max(200) }), array(EventKindsForDeviceSchema).readonly()), method(object({
|
|
@@ -37730,6 +37757,12 @@ Object.freeze({
|
|
|
37730
37757
|
addonId: null,
|
|
37731
37758
|
access: "view"
|
|
37732
37759
|
},
|
|
37760
|
+
"pipelineAnalytics.getSummary": {
|
|
37761
|
+
capName: "pipeline-analytics",
|
|
37762
|
+
capScope: "device",
|
|
37763
|
+
addonId: null,
|
|
37764
|
+
access: "view"
|
|
37765
|
+
},
|
|
37733
37766
|
"pipelineAnalytics.getTrack": {
|
|
37734
37767
|
capName: "pipeline-analytics",
|
|
37735
37768
|
capScope: "device",
|
|
@@ -37808,6 +37841,12 @@ Object.freeze({
|
|
|
37808
37841
|
addonId: null,
|
|
37809
37842
|
access: "view"
|
|
37810
37843
|
},
|
|
37844
|
+
"pipelineAnalytics.listSummaries": {
|
|
37845
|
+
capName: "pipeline-analytics",
|
|
37846
|
+
capScope: "device",
|
|
37847
|
+
addonId: null,
|
|
37848
|
+
access: "view"
|
|
37849
|
+
},
|
|
37811
37850
|
"pipelineAnalytics.listTrackMedia": {
|
|
37812
37851
|
capName: "pipeline-analytics",
|
|
37813
37852
|
capScope: "device",
|
|
@@ -41503,6 +41542,11 @@ Object.freeze({
|
|
|
41503
41542
|
form: "array",
|
|
41504
41543
|
optional: true
|
|
41505
41544
|
}],
|
|
41545
|
+
"pipelineAnalytics.listSummaries": [{
|
|
41546
|
+
name: "deviceIds",
|
|
41547
|
+
form: "array",
|
|
41548
|
+
optional: false
|
|
41549
|
+
}],
|
|
41506
41550
|
"pipelineAnalytics.listTrackMedia": [{
|
|
41507
41551
|
name: "deviceId",
|
|
41508
41552
|
form: "single",
|