@camstack/addon-provider-rtsp 1.2.68 → 1.2.69
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
|
@@ -19445,6 +19445,33 @@ var RecentTracksQueryInput = object({
|
|
|
19445
19445
|
*/
|
|
19446
19446
|
classes: array(string()).optional()
|
|
19447
19447
|
});
|
|
19448
|
+
/**
|
|
19449
|
+
* A Summary (D359): the per-camera session envelope that references tracks.
|
|
19450
|
+
* `groupShotKey` is the media key of its group shot (`ownerKind: 'summary'`,
|
|
19451
|
+
* served by the event-media plane by key), null until the first frame with a
|
|
19452
|
+
* member visible has been materialised.
|
|
19453
|
+
*/
|
|
19454
|
+
var SummarySchema = object({
|
|
19455
|
+
id: string(),
|
|
19456
|
+
deviceId: number(),
|
|
19457
|
+
openedAt: number(),
|
|
19458
|
+
lastActiveAt: number(),
|
|
19459
|
+
sealedAt: number().nullable(),
|
|
19460
|
+
memberCount: number().int().nonnegative(),
|
|
19461
|
+
groupShotKey: string().nullable()
|
|
19462
|
+
});
|
|
19463
|
+
var SummariesQueryInput = object({
|
|
19464
|
+
deviceIds: array(number()).min(1),
|
|
19465
|
+
since: number().optional(),
|
|
19466
|
+
until: number().optional(),
|
|
19467
|
+
limit: number().int().min(1).max(200).default(50)
|
|
19468
|
+
});
|
|
19469
|
+
var SummariesPageSchema = object({ summaries: array(SummarySchema).readonly() });
|
|
19470
|
+
var SummaryDetailSchema = object({
|
|
19471
|
+
summary: SummarySchema,
|
|
19472
|
+
/** Member track ids, in absorption order. */
|
|
19473
|
+
trackIds: array(string()).readonly()
|
|
19474
|
+
});
|
|
19448
19475
|
var RecentTracksPageSchema = object({
|
|
19449
19476
|
/** Merged page, ordered by (`lastSeen` DESC, `trackId` DESC). */
|
|
19450
19477
|
tracks: array(TrackSchema).readonly(),
|
|
@@ -19845,7 +19872,7 @@ DeviceType.Camera, method(object({ deviceId: number() }), array(TrackSchema).rea
|
|
|
19845
19872
|
* timeline would read as a camera that saw nothing.
|
|
19846
19873
|
*/
|
|
19847
19874
|
classes: array(string()).optional()
|
|
19848
|
-
}), array(TrackSchema).readonly()), method(RecentTracksQueryInput, RecentTracksPageSchema), method(object({ deviceId: number() }), _void(), {
|
|
19875
|
+
}), array(TrackSchema).readonly()), method(RecentTracksQueryInput, RecentTracksPageSchema), method(SummariesQueryInput, SummariesPageSchema), method(object({ id: string() }), SummaryDetailSchema.nullable()), method(object({ deviceId: number() }), _void(), {
|
|
19849
19876
|
kind: "mutation",
|
|
19850
19877
|
auth: "admin"
|
|
19851
19878
|
}), 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({
|
|
@@ -36757,6 +36784,12 @@ Object.freeze({
|
|
|
36757
36784
|
addonId: null,
|
|
36758
36785
|
access: "view"
|
|
36759
36786
|
},
|
|
36787
|
+
"pipelineAnalytics.getSummary": {
|
|
36788
|
+
capName: "pipeline-analytics",
|
|
36789
|
+
capScope: "device",
|
|
36790
|
+
addonId: null,
|
|
36791
|
+
access: "view"
|
|
36792
|
+
},
|
|
36760
36793
|
"pipelineAnalytics.getTrack": {
|
|
36761
36794
|
capName: "pipeline-analytics",
|
|
36762
36795
|
capScope: "device",
|
|
@@ -36835,6 +36868,12 @@ Object.freeze({
|
|
|
36835
36868
|
addonId: null,
|
|
36836
36869
|
access: "view"
|
|
36837
36870
|
},
|
|
36871
|
+
"pipelineAnalytics.listSummaries": {
|
|
36872
|
+
capName: "pipeline-analytics",
|
|
36873
|
+
capScope: "device",
|
|
36874
|
+
addonId: null,
|
|
36875
|
+
access: "view"
|
|
36876
|
+
},
|
|
36838
36877
|
"pipelineAnalytics.listTrackMedia": {
|
|
36839
36878
|
capName: "pipeline-analytics",
|
|
36840
36879
|
capScope: "device",
|
|
@@ -40530,6 +40569,11 @@ Object.freeze({
|
|
|
40530
40569
|
form: "array",
|
|
40531
40570
|
optional: true
|
|
40532
40571
|
}],
|
|
40572
|
+
"pipelineAnalytics.listSummaries": [{
|
|
40573
|
+
name: "deviceIds",
|
|
40574
|
+
form: "array",
|
|
40575
|
+
optional: false
|
|
40576
|
+
}],
|
|
40533
40577
|
"pipelineAnalytics.listTrackMedia": [{
|
|
40534
40578
|
name: "deviceId",
|
|
40535
40579
|
form: "single",
|
package/dist/addon.mjs
CHANGED
|
@@ -19421,6 +19421,33 @@ var RecentTracksQueryInput = object({
|
|
|
19421
19421
|
*/
|
|
19422
19422
|
classes: array(string()).optional()
|
|
19423
19423
|
});
|
|
19424
|
+
/**
|
|
19425
|
+
* A Summary (D359): the per-camera session envelope that references tracks.
|
|
19426
|
+
* `groupShotKey` is the media key of its group shot (`ownerKind: 'summary'`,
|
|
19427
|
+
* served by the event-media plane by key), null until the first frame with a
|
|
19428
|
+
* member visible has been materialised.
|
|
19429
|
+
*/
|
|
19430
|
+
var SummarySchema = object({
|
|
19431
|
+
id: string(),
|
|
19432
|
+
deviceId: number(),
|
|
19433
|
+
openedAt: number(),
|
|
19434
|
+
lastActiveAt: number(),
|
|
19435
|
+
sealedAt: number().nullable(),
|
|
19436
|
+
memberCount: number().int().nonnegative(),
|
|
19437
|
+
groupShotKey: string().nullable()
|
|
19438
|
+
});
|
|
19439
|
+
var SummariesQueryInput = object({
|
|
19440
|
+
deviceIds: array(number()).min(1),
|
|
19441
|
+
since: number().optional(),
|
|
19442
|
+
until: number().optional(),
|
|
19443
|
+
limit: number().int().min(1).max(200).default(50)
|
|
19444
|
+
});
|
|
19445
|
+
var SummariesPageSchema = object({ summaries: array(SummarySchema).readonly() });
|
|
19446
|
+
var SummaryDetailSchema = object({
|
|
19447
|
+
summary: SummarySchema,
|
|
19448
|
+
/** Member track ids, in absorption order. */
|
|
19449
|
+
trackIds: array(string()).readonly()
|
|
19450
|
+
});
|
|
19424
19451
|
var RecentTracksPageSchema = object({
|
|
19425
19452
|
/** Merged page, ordered by (`lastSeen` DESC, `trackId` DESC). */
|
|
19426
19453
|
tracks: array(TrackSchema).readonly(),
|
|
@@ -19821,7 +19848,7 @@ DeviceType.Camera, method(object({ deviceId: number() }), array(TrackSchema).rea
|
|
|
19821
19848
|
* timeline would read as a camera that saw nothing.
|
|
19822
19849
|
*/
|
|
19823
19850
|
classes: array(string()).optional()
|
|
19824
|
-
}), array(TrackSchema).readonly()), method(RecentTracksQueryInput, RecentTracksPageSchema), method(object({ deviceId: number() }), _void(), {
|
|
19851
|
+
}), array(TrackSchema).readonly()), method(RecentTracksQueryInput, RecentTracksPageSchema), method(SummariesQueryInput, SummariesPageSchema), method(object({ id: string() }), SummaryDetailSchema.nullable()), method(object({ deviceId: number() }), _void(), {
|
|
19825
19852
|
kind: "mutation",
|
|
19826
19853
|
auth: "admin"
|
|
19827
19854
|
}), 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({
|
|
@@ -36733,6 +36760,12 @@ Object.freeze({
|
|
|
36733
36760
|
addonId: null,
|
|
36734
36761
|
access: "view"
|
|
36735
36762
|
},
|
|
36763
|
+
"pipelineAnalytics.getSummary": {
|
|
36764
|
+
capName: "pipeline-analytics",
|
|
36765
|
+
capScope: "device",
|
|
36766
|
+
addonId: null,
|
|
36767
|
+
access: "view"
|
|
36768
|
+
},
|
|
36736
36769
|
"pipelineAnalytics.getTrack": {
|
|
36737
36770
|
capName: "pipeline-analytics",
|
|
36738
36771
|
capScope: "device",
|
|
@@ -36811,6 +36844,12 @@ Object.freeze({
|
|
|
36811
36844
|
addonId: null,
|
|
36812
36845
|
access: "view"
|
|
36813
36846
|
},
|
|
36847
|
+
"pipelineAnalytics.listSummaries": {
|
|
36848
|
+
capName: "pipeline-analytics",
|
|
36849
|
+
capScope: "device",
|
|
36850
|
+
addonId: null,
|
|
36851
|
+
access: "view"
|
|
36852
|
+
},
|
|
36814
36853
|
"pipelineAnalytics.listTrackMedia": {
|
|
36815
36854
|
capName: "pipeline-analytics",
|
|
36816
36855
|
capScope: "device",
|
|
@@ -40506,6 +40545,11 @@ Object.freeze({
|
|
|
40506
40545
|
form: "array",
|
|
40507
40546
|
optional: true
|
|
40508
40547
|
}],
|
|
40548
|
+
"pipelineAnalytics.listSummaries": [{
|
|
40549
|
+
name: "deviceIds",
|
|
40550
|
+
form: "array",
|
|
40551
|
+
optional: false
|
|
40552
|
+
}],
|
|
40509
40553
|
"pipelineAnalytics.listTrackMedia": [{
|
|
40510
40554
|
name: "deviceId",
|
|
40511
40555
|
form: "single",
|