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