@camstack/addon-export-alexa 1.2.23 → 1.2.25
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.
|
@@ -11085,6 +11085,8 @@ var QueryFilterSchema = object({
|
|
|
11085
11085
|
where: record(string(), unknown()).optional(),
|
|
11086
11086
|
whereIn: record(string(), array(unknown())).optional(),
|
|
11087
11087
|
whereBetween: record(string(), tuple([unknown(), unknown()])).optional(),
|
|
11088
|
+
/** NULL-safe exclusion: matches rows whose field is NULL OR != the value. */
|
|
11089
|
+
whereNot: record(string(), unknown()).optional(),
|
|
11088
11090
|
orderBy: object({
|
|
11089
11091
|
field: string(),
|
|
11090
11092
|
direction: _enum(["asc", "desc"])
|
|
@@ -11104,7 +11106,8 @@ var QueryFilterSchema = object({
|
|
|
11104
11106
|
var MutationFilterSchema = object({
|
|
11105
11107
|
where: record(string(), unknown()).optional(),
|
|
11106
11108
|
whereIn: record(string(), array(unknown())).optional(),
|
|
11107
|
-
whereBetween: record(string(), tuple([unknown(), unknown()])).optional()
|
|
11109
|
+
whereBetween: record(string(), tuple([unknown(), unknown()])).optional(),
|
|
11110
|
+
whereNot: record(string(), unknown()).optional()
|
|
11108
11111
|
});
|
|
11109
11112
|
/** A single stored record: `{ id, data }`. */
|
|
11110
11113
|
var SettingsRecordSchema = object({
|
|
@@ -17011,7 +17014,10 @@ var RecentTracksQueryInput = object({
|
|
|
17011
17014
|
* Encodes the (lastSeen, trackId) sort position — treat as opaque. */
|
|
17012
17015
|
cursor: string().optional(),
|
|
17013
17016
|
/** See {@link TrackProjectionSchema}. Default `full`. */
|
|
17014
|
-
projection: TrackProjectionSchema.optional()
|
|
17017
|
+
projection: TrackProjectionSchema.optional(),
|
|
17018
|
+
/** Include stationary-promoted rows (parked objects). Default false: the
|
|
17019
|
+
* feed lists passages; parking records live on the stationary registry. */
|
|
17020
|
+
includeStationary: boolean().optional()
|
|
17015
17021
|
});
|
|
17016
17022
|
var RecentTracksPageSchema = object({
|
|
17017
17023
|
/** Merged page, ordered by (`lastSeen` DESC, `trackId` DESC). */
|
|
@@ -17229,7 +17235,11 @@ DeviceType.Camera, method(object({ deviceId: number() }), array(TrackSchema).rea
|
|
|
17229
17235
|
zone: TrackZoneFilterSchema.optional(),
|
|
17230
17236
|
/** See {@link TrackProjectionSchema}. Default `full` (backward
|
|
17231
17237
|
* compatible — omitting the field keeps today's exact behaviour). */
|
|
17232
|
-
projection: TrackProjectionSchema.optional()
|
|
17238
|
+
projection: TrackProjectionSchema.optional(),
|
|
17239
|
+
/** Include stationary-promoted rows (parked objects handed to the
|
|
17240
|
+
* stationary registry). Default false: the timeline lists passages,
|
|
17241
|
+
* not parking records (operator decision, 2026-08-15). */
|
|
17242
|
+
includeStationary: boolean().optional()
|
|
17233
17243
|
}), array(TrackSchema).readonly()), method(RecentTracksQueryInput, RecentTracksPageSchema), method(object({ deviceId: number() }), _void(), {
|
|
17234
17244
|
kind: "mutation",
|
|
17235
17245
|
auth: "admin"
|
|
@@ -17393,11 +17403,16 @@ DeviceType.Camera, method(object({ deviceId: number() }), array(TrackSchema).rea
|
|
|
17393
17403
|
auth: "admin"
|
|
17394
17404
|
}), method(object({
|
|
17395
17405
|
eventId: string(),
|
|
17396
|
-
kind: MediaFileKindEnum.optional()
|
|
17406
|
+
kind: MediaFileKindEnum.optional(),
|
|
17407
|
+
deviceId: number()
|
|
17408
|
+
}), array(MediaFileSchema).readonly()), method(object({
|
|
17409
|
+
trackId: string(),
|
|
17410
|
+
kinds: array(MediaFileKindEnum).optional(),
|
|
17411
|
+
deviceId: number()
|
|
17397
17412
|
}), array(MediaFileSchema).readonly()), method(object({
|
|
17398
17413
|
trackId: string(),
|
|
17399
|
-
|
|
17400
|
-
}), array(
|
|
17414
|
+
deviceId: number()
|
|
17415
|
+
}), array(MediaFileInfoSchema).readonly()), method(SearchObjectEventsInput, array(ScoredObjectEventSchema).readonly()), method(object({}), WipeObjectEmbeddingsResultSchema, {
|
|
17401
17416
|
kind: "mutation",
|
|
17402
17417
|
auth: "admin"
|
|
17403
17418
|
}), method(RebuildObjectEmbeddingsInput, RebuildObjectEmbeddingsResultSchema, {
|
|
@@ -19346,7 +19361,31 @@ DeviceType.Camera, method(object({
|
|
|
19346
19361
|
lastCapturedAt: number().nullable(),
|
|
19347
19362
|
cacheAgeMs: number().nullable(),
|
|
19348
19363
|
etag: string().nullable()
|
|
19349
|
-
}))), systemMethod(object({
|
|
19364
|
+
}))), systemMethod(object({ deviceId: number() }), object({
|
|
19365
|
+
/** The battery slice as read, or null when the device has none. */
|
|
19366
|
+
battery: object({
|
|
19367
|
+
sleeping: boolean(),
|
|
19368
|
+
lastUpdated: number(),
|
|
19369
|
+
lastContactAt: number().optional()
|
|
19370
|
+
}).nullable(),
|
|
19371
|
+
/** The resolved snapshot state (what the overlay decision used). */
|
|
19372
|
+
state: object({
|
|
19373
|
+
isBattery: boolean(),
|
|
19374
|
+
reason: _enum([
|
|
19375
|
+
"disabled",
|
|
19376
|
+
"sleeping",
|
|
19377
|
+
"unreachable",
|
|
19378
|
+
"waking"
|
|
19379
|
+
]).nullable()
|
|
19380
|
+
}),
|
|
19381
|
+
/** The cached frame behind the next paint. */
|
|
19382
|
+
frame: object({
|
|
19383
|
+
capturedAt: number().nullable(),
|
|
19384
|
+
ageMs: number().nullable()
|
|
19385
|
+
}),
|
|
19386
|
+
/** A wake window is currently open (the Waking overlay's source). */
|
|
19387
|
+
waking: boolean()
|
|
19388
|
+
})), systemMethod(object({
|
|
19350
19389
|
/** The tiles a surface is actually rendering. One entry per (device,
|
|
19351
19390
|
* width) the caller will paint — the width is snapped to the server's
|
|
19352
19391
|
* ladder and becomes part of the link's SIGNED identity. */
|
|
@@ -30561,6 +30600,12 @@ Object.freeze({
|
|
|
30561
30600
|
addonId: null,
|
|
30562
30601
|
access: "view"
|
|
30563
30602
|
},
|
|
30603
|
+
"snapshot.getDebugState": {
|
|
30604
|
+
capName: "snapshot",
|
|
30605
|
+
capScope: "device",
|
|
30606
|
+
addonId: null,
|
|
30607
|
+
access: "view"
|
|
30608
|
+
},
|
|
30564
30609
|
"snapshot.getSnapshot": {
|
|
30565
30610
|
capName: "snapshot",
|
|
30566
30611
|
capScope: "device",
|
|
@@ -32643,6 +32688,11 @@ Object.freeze({
|
|
|
32643
32688
|
form: "single",
|
|
32644
32689
|
optional: false
|
|
32645
32690
|
}],
|
|
32691
|
+
"pipelineAnalytics.getEventMedia": [{
|
|
32692
|
+
name: "deviceId",
|
|
32693
|
+
form: "single",
|
|
32694
|
+
optional: false
|
|
32695
|
+
}],
|
|
32646
32696
|
"pipelineAnalytics.getKeyEvents": [{
|
|
32647
32697
|
name: "deviceId",
|
|
32648
32698
|
form: "single",
|
|
@@ -32673,6 +32723,11 @@ Object.freeze({
|
|
|
32673
32723
|
form: "single",
|
|
32674
32724
|
optional: false
|
|
32675
32725
|
}],
|
|
32726
|
+
"pipelineAnalytics.getTrackMedia": [{
|
|
32727
|
+
name: "deviceId",
|
|
32728
|
+
form: "single",
|
|
32729
|
+
optional: false
|
|
32730
|
+
}],
|
|
32676
32731
|
"pipelineAnalytics.getTrainingExportSummary": [{
|
|
32677
32732
|
name: "deviceIds",
|
|
32678
32733
|
form: "array",
|
|
@@ -32708,6 +32763,11 @@ Object.freeze({
|
|
|
32708
32763
|
form: "array",
|
|
32709
32764
|
optional: true
|
|
32710
32765
|
}],
|
|
32766
|
+
"pipelineAnalytics.listTrackMedia": [{
|
|
32767
|
+
name: "deviceId",
|
|
32768
|
+
form: "single",
|
|
32769
|
+
optional: false
|
|
32770
|
+
}],
|
|
32711
32771
|
"pipelineAnalytics.listTracks": [{
|
|
32712
32772
|
name: "deviceId",
|
|
32713
32773
|
form: "single",
|
|
@@ -33143,11 +33203,22 @@ Object.freeze({
|
|
|
33143
33203
|
form: "single",
|
|
33144
33204
|
optional: false
|
|
33145
33205
|
}],
|
|
33206
|
+
"snapshot.getDebugState": [{
|
|
33207
|
+
name: "deviceId",
|
|
33208
|
+
form: "single",
|
|
33209
|
+
optional: false
|
|
33210
|
+
}],
|
|
33146
33211
|
"snapshot.getSnapshot": [{
|
|
33147
33212
|
name: "deviceId",
|
|
33148
33213
|
form: "single",
|
|
33149
33214
|
optional: false
|
|
33150
33215
|
}],
|
|
33216
|
+
"snapshot.getSnapshotLinks": [{
|
|
33217
|
+
name: "targets",
|
|
33218
|
+
form: "object-array",
|
|
33219
|
+
optional: false,
|
|
33220
|
+
itemField: "deviceId"
|
|
33221
|
+
}],
|
|
33151
33222
|
"snapshot.getSnapshotOverview": [{
|
|
33152
33223
|
name: "deviceIds",
|
|
33153
33224
|
form: "array",
|
|
@@ -11058,6 +11058,8 @@ var QueryFilterSchema = object({
|
|
|
11058
11058
|
where: record(string(), unknown()).optional(),
|
|
11059
11059
|
whereIn: record(string(), array(unknown())).optional(),
|
|
11060
11060
|
whereBetween: record(string(), tuple([unknown(), unknown()])).optional(),
|
|
11061
|
+
/** NULL-safe exclusion: matches rows whose field is NULL OR != the value. */
|
|
11062
|
+
whereNot: record(string(), unknown()).optional(),
|
|
11061
11063
|
orderBy: object({
|
|
11062
11064
|
field: string(),
|
|
11063
11065
|
direction: _enum(["asc", "desc"])
|
|
@@ -11077,7 +11079,8 @@ var QueryFilterSchema = object({
|
|
|
11077
11079
|
var MutationFilterSchema = object({
|
|
11078
11080
|
where: record(string(), unknown()).optional(),
|
|
11079
11081
|
whereIn: record(string(), array(unknown())).optional(),
|
|
11080
|
-
whereBetween: record(string(), tuple([unknown(), unknown()])).optional()
|
|
11082
|
+
whereBetween: record(string(), tuple([unknown(), unknown()])).optional(),
|
|
11083
|
+
whereNot: record(string(), unknown()).optional()
|
|
11081
11084
|
});
|
|
11082
11085
|
/** A single stored record: `{ id, data }`. */
|
|
11083
11086
|
var SettingsRecordSchema = object({
|
|
@@ -16984,7 +16987,10 @@ var RecentTracksQueryInput = object({
|
|
|
16984
16987
|
* Encodes the (lastSeen, trackId) sort position — treat as opaque. */
|
|
16985
16988
|
cursor: string().optional(),
|
|
16986
16989
|
/** See {@link TrackProjectionSchema}. Default `full`. */
|
|
16987
|
-
projection: TrackProjectionSchema.optional()
|
|
16990
|
+
projection: TrackProjectionSchema.optional(),
|
|
16991
|
+
/** Include stationary-promoted rows (parked objects). Default false: the
|
|
16992
|
+
* feed lists passages; parking records live on the stationary registry. */
|
|
16993
|
+
includeStationary: boolean().optional()
|
|
16988
16994
|
});
|
|
16989
16995
|
var RecentTracksPageSchema = object({
|
|
16990
16996
|
/** Merged page, ordered by (`lastSeen` DESC, `trackId` DESC). */
|
|
@@ -17202,7 +17208,11 @@ DeviceType.Camera, method(object({ deviceId: number() }), array(TrackSchema).rea
|
|
|
17202
17208
|
zone: TrackZoneFilterSchema.optional(),
|
|
17203
17209
|
/** See {@link TrackProjectionSchema}. Default `full` (backward
|
|
17204
17210
|
* compatible — omitting the field keeps today's exact behaviour). */
|
|
17205
|
-
projection: TrackProjectionSchema.optional()
|
|
17211
|
+
projection: TrackProjectionSchema.optional(),
|
|
17212
|
+
/** Include stationary-promoted rows (parked objects handed to the
|
|
17213
|
+
* stationary registry). Default false: the timeline lists passages,
|
|
17214
|
+
* not parking records (operator decision, 2026-08-15). */
|
|
17215
|
+
includeStationary: boolean().optional()
|
|
17206
17216
|
}), array(TrackSchema).readonly()), method(RecentTracksQueryInput, RecentTracksPageSchema), method(object({ deviceId: number() }), _void(), {
|
|
17207
17217
|
kind: "mutation",
|
|
17208
17218
|
auth: "admin"
|
|
@@ -17366,11 +17376,16 @@ DeviceType.Camera, method(object({ deviceId: number() }), array(TrackSchema).rea
|
|
|
17366
17376
|
auth: "admin"
|
|
17367
17377
|
}), method(object({
|
|
17368
17378
|
eventId: string(),
|
|
17369
|
-
kind: MediaFileKindEnum.optional()
|
|
17379
|
+
kind: MediaFileKindEnum.optional(),
|
|
17380
|
+
deviceId: number()
|
|
17381
|
+
}), array(MediaFileSchema).readonly()), method(object({
|
|
17382
|
+
trackId: string(),
|
|
17383
|
+
kinds: array(MediaFileKindEnum).optional(),
|
|
17384
|
+
deviceId: number()
|
|
17370
17385
|
}), array(MediaFileSchema).readonly()), method(object({
|
|
17371
17386
|
trackId: string(),
|
|
17372
|
-
|
|
17373
|
-
}), array(
|
|
17387
|
+
deviceId: number()
|
|
17388
|
+
}), array(MediaFileInfoSchema).readonly()), method(SearchObjectEventsInput, array(ScoredObjectEventSchema).readonly()), method(object({}), WipeObjectEmbeddingsResultSchema, {
|
|
17374
17389
|
kind: "mutation",
|
|
17375
17390
|
auth: "admin"
|
|
17376
17391
|
}), method(RebuildObjectEmbeddingsInput, RebuildObjectEmbeddingsResultSchema, {
|
|
@@ -19319,7 +19334,31 @@ DeviceType.Camera, method(object({
|
|
|
19319
19334
|
lastCapturedAt: number().nullable(),
|
|
19320
19335
|
cacheAgeMs: number().nullable(),
|
|
19321
19336
|
etag: string().nullable()
|
|
19322
|
-
}))), systemMethod(object({
|
|
19337
|
+
}))), systemMethod(object({ deviceId: number() }), object({
|
|
19338
|
+
/** The battery slice as read, or null when the device has none. */
|
|
19339
|
+
battery: object({
|
|
19340
|
+
sleeping: boolean(),
|
|
19341
|
+
lastUpdated: number(),
|
|
19342
|
+
lastContactAt: number().optional()
|
|
19343
|
+
}).nullable(),
|
|
19344
|
+
/** The resolved snapshot state (what the overlay decision used). */
|
|
19345
|
+
state: object({
|
|
19346
|
+
isBattery: boolean(),
|
|
19347
|
+
reason: _enum([
|
|
19348
|
+
"disabled",
|
|
19349
|
+
"sleeping",
|
|
19350
|
+
"unreachable",
|
|
19351
|
+
"waking"
|
|
19352
|
+
]).nullable()
|
|
19353
|
+
}),
|
|
19354
|
+
/** The cached frame behind the next paint. */
|
|
19355
|
+
frame: object({
|
|
19356
|
+
capturedAt: number().nullable(),
|
|
19357
|
+
ageMs: number().nullable()
|
|
19358
|
+
}),
|
|
19359
|
+
/** A wake window is currently open (the Waking overlay's source). */
|
|
19360
|
+
waking: boolean()
|
|
19361
|
+
})), systemMethod(object({
|
|
19323
19362
|
/** The tiles a surface is actually rendering. One entry per (device,
|
|
19324
19363
|
* width) the caller will paint — the width is snapped to the server's
|
|
19325
19364
|
* ladder and becomes part of the link's SIGNED identity. */
|
|
@@ -30534,6 +30573,12 @@ Object.freeze({
|
|
|
30534
30573
|
addonId: null,
|
|
30535
30574
|
access: "view"
|
|
30536
30575
|
},
|
|
30576
|
+
"snapshot.getDebugState": {
|
|
30577
|
+
capName: "snapshot",
|
|
30578
|
+
capScope: "device",
|
|
30579
|
+
addonId: null,
|
|
30580
|
+
access: "view"
|
|
30581
|
+
},
|
|
30537
30582
|
"snapshot.getSnapshot": {
|
|
30538
30583
|
capName: "snapshot",
|
|
30539
30584
|
capScope: "device",
|
|
@@ -32616,6 +32661,11 @@ Object.freeze({
|
|
|
32616
32661
|
form: "single",
|
|
32617
32662
|
optional: false
|
|
32618
32663
|
}],
|
|
32664
|
+
"pipelineAnalytics.getEventMedia": [{
|
|
32665
|
+
name: "deviceId",
|
|
32666
|
+
form: "single",
|
|
32667
|
+
optional: false
|
|
32668
|
+
}],
|
|
32619
32669
|
"pipelineAnalytics.getKeyEvents": [{
|
|
32620
32670
|
name: "deviceId",
|
|
32621
32671
|
form: "single",
|
|
@@ -32646,6 +32696,11 @@ Object.freeze({
|
|
|
32646
32696
|
form: "single",
|
|
32647
32697
|
optional: false
|
|
32648
32698
|
}],
|
|
32699
|
+
"pipelineAnalytics.getTrackMedia": [{
|
|
32700
|
+
name: "deviceId",
|
|
32701
|
+
form: "single",
|
|
32702
|
+
optional: false
|
|
32703
|
+
}],
|
|
32649
32704
|
"pipelineAnalytics.getTrainingExportSummary": [{
|
|
32650
32705
|
name: "deviceIds",
|
|
32651
32706
|
form: "array",
|
|
@@ -32681,6 +32736,11 @@ Object.freeze({
|
|
|
32681
32736
|
form: "array",
|
|
32682
32737
|
optional: true
|
|
32683
32738
|
}],
|
|
32739
|
+
"pipelineAnalytics.listTrackMedia": [{
|
|
32740
|
+
name: "deviceId",
|
|
32741
|
+
form: "single",
|
|
32742
|
+
optional: false
|
|
32743
|
+
}],
|
|
32684
32744
|
"pipelineAnalytics.listTracks": [{
|
|
32685
32745
|
name: "deviceId",
|
|
32686
32746
|
form: "single",
|
|
@@ -33116,11 +33176,22 @@ Object.freeze({
|
|
|
33116
33176
|
form: "single",
|
|
33117
33177
|
optional: false
|
|
33118
33178
|
}],
|
|
33179
|
+
"snapshot.getDebugState": [{
|
|
33180
|
+
name: "deviceId",
|
|
33181
|
+
form: "single",
|
|
33182
|
+
optional: false
|
|
33183
|
+
}],
|
|
33119
33184
|
"snapshot.getSnapshot": [{
|
|
33120
33185
|
name: "deviceId",
|
|
33121
33186
|
form: "single",
|
|
33122
33187
|
optional: false
|
|
33123
33188
|
}],
|
|
33189
|
+
"snapshot.getSnapshotLinks": [{
|
|
33190
|
+
name: "targets",
|
|
33191
|
+
form: "object-array",
|
|
33192
|
+
optional: false,
|
|
33193
|
+
itemField: "deviceId"
|
|
33194
|
+
}],
|
|
33124
33195
|
"snapshot.getSnapshotOverview": [{
|
|
33125
33196
|
name: "deviceIds",
|
|
33126
33197
|
form: "array",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@camstack/addon-export-alexa",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.25",
|
|
4
4
|
"description": "Alexa Smart Home Skill export — hub-side OAuth provider + directive handler. The companion AWS Lambda forwards Alexa directives to this addon's /addon/export-alexa/directive endpoint.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"camstack",
|