@camstack/addon-decoder-nodeav 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/index.js +45 -1
- package/dist/index.mjs +45 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -19151,6 +19151,33 @@ var RecentTracksQueryInput = object({
|
|
|
19151
19151
|
*/
|
|
19152
19152
|
classes: array(string()).optional()
|
|
19153
19153
|
});
|
|
19154
|
+
/**
|
|
19155
|
+
* A Summary (D359): the per-camera session envelope that references tracks.
|
|
19156
|
+
* `groupShotKey` is the media key of its group shot (`ownerKind: 'summary'`,
|
|
19157
|
+
* served by the event-media plane by key), null until the first frame with a
|
|
19158
|
+
* member visible has been materialised.
|
|
19159
|
+
*/
|
|
19160
|
+
var SummarySchema = object({
|
|
19161
|
+
id: string(),
|
|
19162
|
+
deviceId: number(),
|
|
19163
|
+
openedAt: number(),
|
|
19164
|
+
lastActiveAt: number(),
|
|
19165
|
+
sealedAt: number().nullable(),
|
|
19166
|
+
memberCount: number().int().nonnegative(),
|
|
19167
|
+
groupShotKey: string().nullable()
|
|
19168
|
+
});
|
|
19169
|
+
var SummariesQueryInput = object({
|
|
19170
|
+
deviceIds: array(number()).min(1),
|
|
19171
|
+
since: number().optional(),
|
|
19172
|
+
until: number().optional(),
|
|
19173
|
+
limit: number().int().min(1).max(200).default(50)
|
|
19174
|
+
});
|
|
19175
|
+
var SummariesPageSchema = object({ summaries: array(SummarySchema).readonly() });
|
|
19176
|
+
var SummaryDetailSchema = object({
|
|
19177
|
+
summary: SummarySchema,
|
|
19178
|
+
/** Member track ids, in absorption order. */
|
|
19179
|
+
trackIds: array(string()).readonly()
|
|
19180
|
+
});
|
|
19154
19181
|
var RecentTracksPageSchema = object({
|
|
19155
19182
|
/** Merged page, ordered by (`lastSeen` DESC, `trackId` DESC). */
|
|
19156
19183
|
tracks: array(TrackSchema).readonly(),
|
|
@@ -19551,7 +19578,7 @@ DeviceType.Camera, method(object({ deviceId: number() }), array(TrackSchema).rea
|
|
|
19551
19578
|
* timeline would read as a camera that saw nothing.
|
|
19552
19579
|
*/
|
|
19553
19580
|
classes: array(string()).optional()
|
|
19554
|
-
}), array(TrackSchema).readonly()), method(RecentTracksQueryInput, RecentTracksPageSchema), method(object({ deviceId: number() }), _void(), {
|
|
19581
|
+
}), array(TrackSchema).readonly()), method(RecentTracksQueryInput, RecentTracksPageSchema), method(SummariesQueryInput, SummariesPageSchema), method(object({ id: string() }), SummaryDetailSchema.nullable()), method(object({ deviceId: number() }), _void(), {
|
|
19555
19582
|
kind: "mutation",
|
|
19556
19583
|
auth: "admin"
|
|
19557
19584
|
}), 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({
|
|
@@ -32506,6 +32533,12 @@ Object.freeze({
|
|
|
32506
32533
|
addonId: null,
|
|
32507
32534
|
access: "view"
|
|
32508
32535
|
},
|
|
32536
|
+
"pipelineAnalytics.getSummary": {
|
|
32537
|
+
capName: "pipeline-analytics",
|
|
32538
|
+
capScope: "device",
|
|
32539
|
+
addonId: null,
|
|
32540
|
+
access: "view"
|
|
32541
|
+
},
|
|
32509
32542
|
"pipelineAnalytics.getTrack": {
|
|
32510
32543
|
capName: "pipeline-analytics",
|
|
32511
32544
|
capScope: "device",
|
|
@@ -32584,6 +32617,12 @@ Object.freeze({
|
|
|
32584
32617
|
addonId: null,
|
|
32585
32618
|
access: "view"
|
|
32586
32619
|
},
|
|
32620
|
+
"pipelineAnalytics.listSummaries": {
|
|
32621
|
+
capName: "pipeline-analytics",
|
|
32622
|
+
capScope: "device",
|
|
32623
|
+
addonId: null,
|
|
32624
|
+
access: "view"
|
|
32625
|
+
},
|
|
32587
32626
|
"pipelineAnalytics.listTrackMedia": {
|
|
32588
32627
|
capName: "pipeline-analytics",
|
|
32589
32628
|
capScope: "device",
|
|
@@ -36279,6 +36318,11 @@ Object.freeze({
|
|
|
36279
36318
|
form: "array",
|
|
36280
36319
|
optional: true
|
|
36281
36320
|
}],
|
|
36321
|
+
"pipelineAnalytics.listSummaries": [{
|
|
36322
|
+
name: "deviceIds",
|
|
36323
|
+
form: "array",
|
|
36324
|
+
optional: false
|
|
36325
|
+
}],
|
|
36282
36326
|
"pipelineAnalytics.listTrackMedia": [{
|
|
36283
36327
|
name: "deviceId",
|
|
36284
36328
|
form: "single",
|
package/dist/index.mjs
CHANGED
|
@@ -19147,6 +19147,33 @@ var RecentTracksQueryInput = object({
|
|
|
19147
19147
|
*/
|
|
19148
19148
|
classes: array(string()).optional()
|
|
19149
19149
|
});
|
|
19150
|
+
/**
|
|
19151
|
+
* A Summary (D359): the per-camera session envelope that references tracks.
|
|
19152
|
+
* `groupShotKey` is the media key of its group shot (`ownerKind: 'summary'`,
|
|
19153
|
+
* served by the event-media plane by key), null until the first frame with a
|
|
19154
|
+
* member visible has been materialised.
|
|
19155
|
+
*/
|
|
19156
|
+
var SummarySchema = object({
|
|
19157
|
+
id: string(),
|
|
19158
|
+
deviceId: number(),
|
|
19159
|
+
openedAt: number(),
|
|
19160
|
+
lastActiveAt: number(),
|
|
19161
|
+
sealedAt: number().nullable(),
|
|
19162
|
+
memberCount: number().int().nonnegative(),
|
|
19163
|
+
groupShotKey: string().nullable()
|
|
19164
|
+
});
|
|
19165
|
+
var SummariesQueryInput = object({
|
|
19166
|
+
deviceIds: array(number()).min(1),
|
|
19167
|
+
since: number().optional(),
|
|
19168
|
+
until: number().optional(),
|
|
19169
|
+
limit: number().int().min(1).max(200).default(50)
|
|
19170
|
+
});
|
|
19171
|
+
var SummariesPageSchema = object({ summaries: array(SummarySchema).readonly() });
|
|
19172
|
+
var SummaryDetailSchema = object({
|
|
19173
|
+
summary: SummarySchema,
|
|
19174
|
+
/** Member track ids, in absorption order. */
|
|
19175
|
+
trackIds: array(string()).readonly()
|
|
19176
|
+
});
|
|
19150
19177
|
var RecentTracksPageSchema = object({
|
|
19151
19178
|
/** Merged page, ordered by (`lastSeen` DESC, `trackId` DESC). */
|
|
19152
19179
|
tracks: array(TrackSchema).readonly(),
|
|
@@ -19547,7 +19574,7 @@ DeviceType.Camera, method(object({ deviceId: number() }), array(TrackSchema).rea
|
|
|
19547
19574
|
* timeline would read as a camera that saw nothing.
|
|
19548
19575
|
*/
|
|
19549
19576
|
classes: array(string()).optional()
|
|
19550
|
-
}), array(TrackSchema).readonly()), method(RecentTracksQueryInput, RecentTracksPageSchema), method(object({ deviceId: number() }), _void(), {
|
|
19577
|
+
}), array(TrackSchema).readonly()), method(RecentTracksQueryInput, RecentTracksPageSchema), method(SummariesQueryInput, SummariesPageSchema), method(object({ id: string() }), SummaryDetailSchema.nullable()), method(object({ deviceId: number() }), _void(), {
|
|
19551
19578
|
kind: "mutation",
|
|
19552
19579
|
auth: "admin"
|
|
19553
19580
|
}), 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({
|
|
@@ -32502,6 +32529,12 @@ Object.freeze({
|
|
|
32502
32529
|
addonId: null,
|
|
32503
32530
|
access: "view"
|
|
32504
32531
|
},
|
|
32532
|
+
"pipelineAnalytics.getSummary": {
|
|
32533
|
+
capName: "pipeline-analytics",
|
|
32534
|
+
capScope: "device",
|
|
32535
|
+
addonId: null,
|
|
32536
|
+
access: "view"
|
|
32537
|
+
},
|
|
32505
32538
|
"pipelineAnalytics.getTrack": {
|
|
32506
32539
|
capName: "pipeline-analytics",
|
|
32507
32540
|
capScope: "device",
|
|
@@ -32580,6 +32613,12 @@ Object.freeze({
|
|
|
32580
32613
|
addonId: null,
|
|
32581
32614
|
access: "view"
|
|
32582
32615
|
},
|
|
32616
|
+
"pipelineAnalytics.listSummaries": {
|
|
32617
|
+
capName: "pipeline-analytics",
|
|
32618
|
+
capScope: "device",
|
|
32619
|
+
addonId: null,
|
|
32620
|
+
access: "view"
|
|
32621
|
+
},
|
|
32583
32622
|
"pipelineAnalytics.listTrackMedia": {
|
|
32584
32623
|
capName: "pipeline-analytics",
|
|
32585
32624
|
capScope: "device",
|
|
@@ -36275,6 +36314,11 @@ Object.freeze({
|
|
|
36275
36314
|
form: "array",
|
|
36276
36315
|
optional: true
|
|
36277
36316
|
}],
|
|
36317
|
+
"pipelineAnalytics.listSummaries": [{
|
|
36318
|
+
name: "deviceIds",
|
|
36319
|
+
form: "array",
|
|
36320
|
+
optional: false
|
|
36321
|
+
}],
|
|
36278
36322
|
"pipelineAnalytics.listTrackMedia": [{
|
|
36279
36323
|
name: "deviceId",
|
|
36280
36324
|
form: "single",
|