@camstack/addon-export-alexa 1.2.23 → 1.2.24
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, {
|
|
@@ -32643,6 +32658,11 @@ Object.freeze({
|
|
|
32643
32658
|
form: "single",
|
|
32644
32659
|
optional: false
|
|
32645
32660
|
}],
|
|
32661
|
+
"pipelineAnalytics.getEventMedia": [{
|
|
32662
|
+
name: "deviceId",
|
|
32663
|
+
form: "single",
|
|
32664
|
+
optional: false
|
|
32665
|
+
}],
|
|
32646
32666
|
"pipelineAnalytics.getKeyEvents": [{
|
|
32647
32667
|
name: "deviceId",
|
|
32648
32668
|
form: "single",
|
|
@@ -32673,6 +32693,11 @@ Object.freeze({
|
|
|
32673
32693
|
form: "single",
|
|
32674
32694
|
optional: false
|
|
32675
32695
|
}],
|
|
32696
|
+
"pipelineAnalytics.getTrackMedia": [{
|
|
32697
|
+
name: "deviceId",
|
|
32698
|
+
form: "single",
|
|
32699
|
+
optional: false
|
|
32700
|
+
}],
|
|
32676
32701
|
"pipelineAnalytics.getTrainingExportSummary": [{
|
|
32677
32702
|
name: "deviceIds",
|
|
32678
32703
|
form: "array",
|
|
@@ -32708,6 +32733,11 @@ Object.freeze({
|
|
|
32708
32733
|
form: "array",
|
|
32709
32734
|
optional: true
|
|
32710
32735
|
}],
|
|
32736
|
+
"pipelineAnalytics.listTrackMedia": [{
|
|
32737
|
+
name: "deviceId",
|
|
32738
|
+
form: "single",
|
|
32739
|
+
optional: false
|
|
32740
|
+
}],
|
|
32711
32741
|
"pipelineAnalytics.listTracks": [{
|
|
32712
32742
|
name: "deviceId",
|
|
32713
32743
|
form: "single",
|
|
@@ -33148,6 +33178,12 @@ Object.freeze({
|
|
|
33148
33178
|
form: "single",
|
|
33149
33179
|
optional: false
|
|
33150
33180
|
}],
|
|
33181
|
+
"snapshot.getSnapshotLinks": [{
|
|
33182
|
+
name: "targets",
|
|
33183
|
+
form: "object-array",
|
|
33184
|
+
optional: false,
|
|
33185
|
+
itemField: "deviceId"
|
|
33186
|
+
}],
|
|
33151
33187
|
"snapshot.getSnapshotOverview": [{
|
|
33152
33188
|
name: "deviceIds",
|
|
33153
33189
|
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, {
|
|
@@ -32616,6 +32631,11 @@ Object.freeze({
|
|
|
32616
32631
|
form: "single",
|
|
32617
32632
|
optional: false
|
|
32618
32633
|
}],
|
|
32634
|
+
"pipelineAnalytics.getEventMedia": [{
|
|
32635
|
+
name: "deviceId",
|
|
32636
|
+
form: "single",
|
|
32637
|
+
optional: false
|
|
32638
|
+
}],
|
|
32619
32639
|
"pipelineAnalytics.getKeyEvents": [{
|
|
32620
32640
|
name: "deviceId",
|
|
32621
32641
|
form: "single",
|
|
@@ -32646,6 +32666,11 @@ Object.freeze({
|
|
|
32646
32666
|
form: "single",
|
|
32647
32667
|
optional: false
|
|
32648
32668
|
}],
|
|
32669
|
+
"pipelineAnalytics.getTrackMedia": [{
|
|
32670
|
+
name: "deviceId",
|
|
32671
|
+
form: "single",
|
|
32672
|
+
optional: false
|
|
32673
|
+
}],
|
|
32649
32674
|
"pipelineAnalytics.getTrainingExportSummary": [{
|
|
32650
32675
|
name: "deviceIds",
|
|
32651
32676
|
form: "array",
|
|
@@ -32681,6 +32706,11 @@ Object.freeze({
|
|
|
32681
32706
|
form: "array",
|
|
32682
32707
|
optional: true
|
|
32683
32708
|
}],
|
|
32709
|
+
"pipelineAnalytics.listTrackMedia": [{
|
|
32710
|
+
name: "deviceId",
|
|
32711
|
+
form: "single",
|
|
32712
|
+
optional: false
|
|
32713
|
+
}],
|
|
32684
32714
|
"pipelineAnalytics.listTracks": [{
|
|
32685
32715
|
name: "deviceId",
|
|
32686
32716
|
form: "single",
|
|
@@ -33121,6 +33151,12 @@ Object.freeze({
|
|
|
33121
33151
|
form: "single",
|
|
33122
33152
|
optional: false
|
|
33123
33153
|
}],
|
|
33154
|
+
"snapshot.getSnapshotLinks": [{
|
|
33155
|
+
name: "targets",
|
|
33156
|
+
form: "object-array",
|
|
33157
|
+
optional: false,
|
|
33158
|
+
itemField: "deviceId"
|
|
33159
|
+
}],
|
|
33124
33160
|
"snapshot.getSnapshotOverview": [{
|
|
33125
33161
|
name: "deviceIds",
|
|
33126
33162
|
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.24",
|
|
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",
|