@camstack/types 1.2.19 → 1.2.21
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 +2 -1
- package/dist/addon.mjs +2 -1
- package/dist/capabilities/data-store-provider.cap.d.ts +190 -0
- package/dist/capabilities/index.d.ts +4 -2
- package/dist/capabilities/recording.cap.d.ts +1 -5
- package/dist/capabilities/server-management.cap.d.ts +81 -1
- package/dist/capabilities/settings-store.cap.d.ts +19 -6
- package/dist/generated/addon-api.d.ts +86 -222
- package/dist/generated/capability-router-map.d.ts +5 -2
- package/dist/generated/collection-array-methods.d.ts +1 -1
- package/dist/generated/method-access-map.d.ts +1 -1
- package/dist/index.js +425 -167
- package/dist/index.mjs +422 -168
- package/dist/interfaces/recording-config.d.ts +0 -1
- package/dist/interfaces/relocate.d.ts +1 -2
- package/dist/types/detection.d.ts +13 -0
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -963,14 +963,7 @@ var RecordingConfigSchema = z.object({
|
|
|
963
963
|
* windows only — existing sheets are immutable, and each window's index
|
|
964
964
|
* carries its own tile dims so mixed-preset history renders correctly.
|
|
965
965
|
*/
|
|
966
|
-
scrubThumbnails: ScrubThumbnailPresetSchema.optional()
|
|
967
|
-
/**
|
|
968
|
-
* OPT-IN thumbnail-strip generation for this camera: every keyframe of the
|
|
969
|
-
* low recording saved as a JPEG (the fast-drag scrub depth), a derived
|
|
970
|
-
* cache that eviction reclaims with the footage. Absent/false = no strips
|
|
971
|
-
* are written and scrub reads exact keyframes at every velocity.
|
|
972
|
-
*/
|
|
973
|
-
stripsEnabled: z.boolean().optional()
|
|
966
|
+
scrubThumbnails: ScrubThumbnailPresetSchema.optional()
|
|
974
967
|
}).strict();
|
|
975
968
|
/**
|
|
976
969
|
* Derive the {@link RecordingStorageModeSchema} summary from the authoritative
|
|
@@ -1059,7 +1052,7 @@ var OPS_LOG_DEFAULT_LIMIT = 200;
|
|
|
1059
1052
|
/**
|
|
1060
1053
|
* Entity-relocation job state (storage entity-routing spec, Phase 4).
|
|
1061
1054
|
*
|
|
1062
|
-
* One shape shared by the recorder's `relocateFootage` (segments
|
|
1055
|
+
* One shape shared by the recorder's `relocateFootage` (segments) and
|
|
1063
1056
|
* pipeline-analytics' `relocateMedia` (event media blobs) so the admin Data
|
|
1064
1057
|
* page renders both movers with one component. Jobs are in-RAM (a restart
|
|
1065
1058
|
* forgets them — re-running is safe by construction: copy-if-absent, delete
|
|
@@ -1081,7 +1074,7 @@ var RelocateJobSchema = z.object({
|
|
|
1081
1074
|
toLocationId: z.string(),
|
|
1082
1075
|
/** Scoped device, or null = every device. */
|
|
1083
1076
|
deviceId: z.number().nullable(),
|
|
1084
|
-
/** What the job moves (owner-addon specific: segments
|
|
1077
|
+
/** What the job moves (owner-addon specific: segments or media). */
|
|
1085
1078
|
entities: z.array(z.string()),
|
|
1086
1079
|
filesMoved: z.number().int(),
|
|
1087
1080
|
bytesMoved: z.number().int(),
|
|
@@ -1095,7 +1088,7 @@ var RelocateFootageInputSchema = z.object({
|
|
|
1095
1088
|
deviceId: z.number().optional(),
|
|
1096
1089
|
fromLocationId: z.string(),
|
|
1097
1090
|
toLocationId: z.string(),
|
|
1098
|
-
entities: z.array(z.enum(["segments"
|
|
1091
|
+
entities: z.array(z.enum(["segments"])).optional(),
|
|
1099
1092
|
/** Copy throttle in MB/s (default 40) — the drain is a background chore,
|
|
1100
1093
|
* never allowed to starve live writers. */
|
|
1101
1094
|
throttleMbps: z.number().min(1).max(1e3).optional()
|
|
@@ -17430,6 +17423,296 @@ var decoderCapability = {
|
|
|
17430
17423
|
}
|
|
17431
17424
|
};
|
|
17432
17425
|
//#endregion
|
|
17426
|
+
//#region src/capabilities/settings-store.cap.ts
|
|
17427
|
+
/**
|
|
17428
|
+
* Query filter for settings-store collections.
|
|
17429
|
+
*/
|
|
17430
|
+
var QueryFilterSchema = z.object({
|
|
17431
|
+
where: z.record(z.string(), z.unknown()).optional(),
|
|
17432
|
+
whereIn: z.record(z.string(), z.array(z.unknown())).optional(),
|
|
17433
|
+
whereBetween: z.record(z.string(), z.tuple([z.unknown(), z.unknown()])).optional(),
|
|
17434
|
+
orderBy: z.object({
|
|
17435
|
+
field: z.string(),
|
|
17436
|
+
direction: z.enum(["asc", "desc"])
|
|
17437
|
+
}).optional(),
|
|
17438
|
+
limit: z.number().optional(),
|
|
17439
|
+
offset: z.number().optional()
|
|
17440
|
+
});
|
|
17441
|
+
/** A single stored record: `{ id, data }`. */
|
|
17442
|
+
var SettingsRecordSchema = z.object({
|
|
17443
|
+
id: z.string(),
|
|
17444
|
+
data: z.record(z.string(), z.unknown())
|
|
17445
|
+
});
|
|
17446
|
+
/**
|
|
17447
|
+
* Column declaration for a structured (SQL-backed) collection.
|
|
17448
|
+
*
|
|
17449
|
+
* Logical types — the backend translates each to the matching SQLite
|
|
17450
|
+
* storage class and handles per-type marshaling:
|
|
17451
|
+
* - `TEXT` / `INTEGER` / `REAL` — native SQLite types, pass-through
|
|
17452
|
+
* - `JSON` — TEXT under the hood; serialised on write, parsed on read
|
|
17453
|
+
* - `BOOLEAN` — INTEGER 0/1 under the hood; coerced both directions
|
|
17454
|
+
*/
|
|
17455
|
+
var CollectionColumnSchema = z.object({
|
|
17456
|
+
name: z.string(),
|
|
17457
|
+
type: z.enum([
|
|
17458
|
+
"TEXT",
|
|
17459
|
+
"INTEGER",
|
|
17460
|
+
"REAL",
|
|
17461
|
+
"JSON",
|
|
17462
|
+
"BOOLEAN"
|
|
17463
|
+
]),
|
|
17464
|
+
primaryKey: z.boolean().optional(),
|
|
17465
|
+
notNull: z.boolean().optional(),
|
|
17466
|
+
unique: z.boolean().optional()
|
|
17467
|
+
});
|
|
17468
|
+
var CollectionIndexSchema = z.object({
|
|
17469
|
+
name: z.string(),
|
|
17470
|
+
columns: z.array(z.string()).readonly(),
|
|
17471
|
+
unique: z.boolean().optional()
|
|
17472
|
+
});
|
|
17473
|
+
/**
|
|
17474
|
+
* settings-store — singleton capability for addon-scoped persistence.
|
|
17475
|
+
*
|
|
17476
|
+
* Every method operates within a `collection`. An optional `namespace`
|
|
17477
|
+
* field provides access to additional data spaces beyond the default
|
|
17478
|
+
* addon settings — useful for business data (events, tracks, faces, etc.).
|
|
17479
|
+
*
|
|
17480
|
+
* **Scoping is the CALLER's, and it is opt-in.** The table is
|
|
17481
|
+
* `namespace ? `${namespace}:${collection}` : collection` — nothing
|
|
17482
|
+
* consults the identity of the caller. An earlier version of this comment
|
|
17483
|
+
* claimed the implementation prefixes every collection with the calling
|
|
17484
|
+
* addon's ID and that "addons never see each other's data"; that was never
|
|
17485
|
+
* true, and this same file contradicted it under `declareCollection`. What
|
|
17486
|
+
* exists is `addon-context-factory`, which passes `namespace: addonId` ON
|
|
17487
|
+
* THE ADDON'S BEHALF for the `addon-settings` / `addon-devices` paths only.
|
|
17488
|
+
* Business collections use bare names, and any caller may name any
|
|
17489
|
+
* namespace, or none. Making the door enforce it is tracked separately —
|
|
17490
|
+
* it renames tables, so it needs a migration.
|
|
17491
|
+
*
|
|
17492
|
+
* - `{ collection: 'addon-settings' }` → table `addon-settings`
|
|
17493
|
+
* - `{ namespace: 'my-addon', collection: 'addon-settings' }` →
|
|
17494
|
+
* table `my-addon:addon-settings`
|
|
17495
|
+
*
|
|
17496
|
+
* Served by the **storage-orchestrator** builtin, which dispatches to the
|
|
17497
|
+
* `data-store-provider` engine registered for the collection
|
|
17498
|
+
* (`sqlite-settings`, a SQLite WAL backend, today). One addon owns the
|
|
17499
|
+
* data door; engines sit behind it
|
|
17500
|
+
* ([D44](../../../../docs/decisions/adr-0044.md)).
|
|
17501
|
+
* Addons access it via `ctx.api.settingsStore.*`.
|
|
17502
|
+
*/
|
|
17503
|
+
var settingsStoreCapability = {
|
|
17504
|
+
name: "settings-store",
|
|
17505
|
+
scope: "system",
|
|
17506
|
+
mode: "singleton",
|
|
17507
|
+
methods: {
|
|
17508
|
+
/** Get a single value by key from a collection. */
|
|
17509
|
+
get: method(z.object({
|
|
17510
|
+
namespace: z.string().optional(),
|
|
17511
|
+
collection: z.string(),
|
|
17512
|
+
key: z.string()
|
|
17513
|
+
}), z.unknown()),
|
|
17514
|
+
/** Set a value by key in a collection (upsert). */
|
|
17515
|
+
set: method(z.object({
|
|
17516
|
+
namespace: z.string().optional(),
|
|
17517
|
+
collection: z.string(),
|
|
17518
|
+
key: z.string(),
|
|
17519
|
+
value: z.unknown()
|
|
17520
|
+
}), z.void(), { kind: "mutation" }),
|
|
17521
|
+
/** Get all entries matching an optional filter. */
|
|
17522
|
+
query: method(z.object({
|
|
17523
|
+
namespace: z.string().optional(),
|
|
17524
|
+
collection: z.string(),
|
|
17525
|
+
filter: QueryFilterSchema.optional()
|
|
17526
|
+
}), z.array(SettingsRecordSchema).readonly()),
|
|
17527
|
+
/** Insert a new record. */
|
|
17528
|
+
insert: method(z.object({
|
|
17529
|
+
namespace: z.string().optional(),
|
|
17530
|
+
collection: z.string(),
|
|
17531
|
+
record: SettingsRecordSchema
|
|
17532
|
+
}), z.void(), { kind: "mutation" }),
|
|
17533
|
+
/** Update an existing record by ID. */
|
|
17534
|
+
update: method(z.object({
|
|
17535
|
+
namespace: z.string().optional(),
|
|
17536
|
+
collection: z.string(),
|
|
17537
|
+
id: z.string(),
|
|
17538
|
+
data: z.record(z.string(), z.unknown())
|
|
17539
|
+
}), z.void(), { kind: "mutation" }),
|
|
17540
|
+
/** Delete a record by key/ID. */
|
|
17541
|
+
delete: method(z.object({
|
|
17542
|
+
namespace: z.string().optional(),
|
|
17543
|
+
collection: z.string(),
|
|
17544
|
+
key: z.string()
|
|
17545
|
+
}), z.void(), { kind: "mutation" }),
|
|
17546
|
+
/** Count entries in a collection, optionally filtered. */
|
|
17547
|
+
count: method(z.object({
|
|
17548
|
+
namespace: z.string().optional(),
|
|
17549
|
+
collection: z.string(),
|
|
17550
|
+
filter: QueryFilterSchema.optional()
|
|
17551
|
+
}), z.number()),
|
|
17552
|
+
/** Grouped counts per ((field-origin)/bucketSize) bucket, filtered. */
|
|
17553
|
+
histogram: method(z.object({
|
|
17554
|
+
namespace: z.string().optional(),
|
|
17555
|
+
collection: z.string(),
|
|
17556
|
+
field: z.string(),
|
|
17557
|
+
bucketSize: z.number().int().positive(),
|
|
17558
|
+
origin: z.number().int(),
|
|
17559
|
+
filter: QueryFilterSchema.optional()
|
|
17560
|
+
}), z.array(z.object({
|
|
17561
|
+
bucket: z.number().int(),
|
|
17562
|
+
count: z.number().int()
|
|
17563
|
+
})).readonly()),
|
|
17564
|
+
/** Check if a collection is empty. */
|
|
17565
|
+
isEmpty: method(z.object({
|
|
17566
|
+
namespace: z.string().optional(),
|
|
17567
|
+
collection: z.string()
|
|
17568
|
+
}), z.boolean()),
|
|
17569
|
+
/**
|
|
17570
|
+
* Declare a typed (SQL-backed) collection with explicit columns +
|
|
17571
|
+
* indexes. Idempotent: re-declaring an existing collection with the
|
|
17572
|
+
* same shape is a no-op; shape changes (new columns, new indexes)
|
|
17573
|
+
* are applied additively. Subsequent `insert` / `update` / `delete`
|
|
17574
|
+
* / `query` calls on this collection use typed columns instead of
|
|
17575
|
+
* JSON-blob storage — `record.data` fields are spread across
|
|
17576
|
+
* columns, `query.filter.where` matches real columns (no
|
|
17577
|
+
* `json_extract` overhead), `orderBy` uses column indexes.
|
|
17578
|
+
*
|
|
17579
|
+
* Addons call this in `onInitialize` before their first read/write.
|
|
17580
|
+
* Collection names should be namespaced by addon (e.g.
|
|
17581
|
+
* `pipeline-analytics:object-events`) to avoid cross-addon
|
|
17582
|
+
* clashes — no automatic prefix is added.
|
|
17583
|
+
*/
|
|
17584
|
+
declareCollection: method(z.object({
|
|
17585
|
+
namespace: z.string().optional(),
|
|
17586
|
+
collection: z.string(),
|
|
17587
|
+
columns: z.array(CollectionColumnSchema).readonly(),
|
|
17588
|
+
indexes: z.array(CollectionIndexSchema).readonly().optional()
|
|
17589
|
+
}), z.void(), { kind: "mutation" })
|
|
17590
|
+
}
|
|
17591
|
+
};
|
|
17592
|
+
//#endregion
|
|
17593
|
+
//#region src/capabilities/data-store-provider.cap.ts
|
|
17594
|
+
/**
|
|
17595
|
+
* What one engine says about itself. The orchestrator uses `kind` to pick
|
|
17596
|
+
* a registrant for a collection; `engineId` is what a log line names when
|
|
17597
|
+
* a call is routed or refused.
|
|
17598
|
+
*/
|
|
17599
|
+
var EngineInfoSchema = z.object({
|
|
17600
|
+
engineId: z.string(),
|
|
17601
|
+
/**
|
|
17602
|
+
* `relational` — rows, columns, indexes, the surface `settings-store`
|
|
17603
|
+
* has always described. `vector` — an embedding store answering
|
|
17604
|
+
* similarity queries. A registrant declares exactly one; an engine that
|
|
17605
|
+
* does both registers twice, because "both" would make the routing
|
|
17606
|
+
* decision ambiguous at exactly the point it must not be.
|
|
17607
|
+
*/
|
|
17608
|
+
kind: z.enum(["relational", "vector"]),
|
|
17609
|
+
displayName: z.string()
|
|
17610
|
+
});
|
|
17611
|
+
/**
|
|
17612
|
+
* data-store-provider — the engine contract behind the data door.
|
|
17613
|
+
*
|
|
17614
|
+
* The sibling of `storage-provider`, for rows instead of bytes. The
|
|
17615
|
+
* orchestrator (singleton `settings-store` cap, owned by the
|
|
17616
|
+
* storage-orchestrator builtin) dispatches every call to the registrant
|
|
17617
|
+
* that serves the collection.
|
|
17618
|
+
*
|
|
17619
|
+
* `internal: true` — consumed only by the orchestrator. Public consumers
|
|
17620
|
+
* go through `settings-store`; they never see this cap, and an engine
|
|
17621
|
+
* never sees a caller.
|
|
17622
|
+
*
|
|
17623
|
+
* Design notes:
|
|
17624
|
+
* - **Stateless dispatch.** Every method carries its own
|
|
17625
|
+
* `namespace` + `collection`, so an engine keeps no per-caller state
|
|
17626
|
+
* and the orchestrator forwards the payload verbatim. Scoping is a
|
|
17627
|
+
* property of the input, not of the connection — see the note on
|
|
17628
|
+
* `settings-store` about what that does and does not guarantee.
|
|
17629
|
+
* - **One registrant today** (`sqlite-settings`). The collection shape
|
|
17630
|
+
* exists so a second engine is a registration rather than a second
|
|
17631
|
+
* door ([D44](../../../../docs/decisions/adr-0044.md)).
|
|
17632
|
+
*
|
|
17633
|
+
* The method set is deliberately identical to `settings-store`'s: the
|
|
17634
|
+
* orchestrator is a router, not a translator. A capability the door
|
|
17635
|
+
* gains, an engine must be able to answer.
|
|
17636
|
+
*/
|
|
17637
|
+
var dataStoreProviderCapability = {
|
|
17638
|
+
name: "data-store-provider",
|
|
17639
|
+
scope: "system",
|
|
17640
|
+
mode: "collection",
|
|
17641
|
+
internal: true,
|
|
17642
|
+
methods: {
|
|
17643
|
+
/** Self-description — how the orchestrator picks a registrant. */
|
|
17644
|
+
getEngineInfo: method(z.void(), EngineInfoSchema),
|
|
17645
|
+
/** Get a single value by key from a collection. */
|
|
17646
|
+
get: method(z.object({
|
|
17647
|
+
namespace: z.string().optional(),
|
|
17648
|
+
collection: z.string(),
|
|
17649
|
+
key: z.string()
|
|
17650
|
+
}), z.unknown()),
|
|
17651
|
+
/** Set a value by key in a collection (upsert). */
|
|
17652
|
+
set: method(z.object({
|
|
17653
|
+
namespace: z.string().optional(),
|
|
17654
|
+
collection: z.string(),
|
|
17655
|
+
key: z.string(),
|
|
17656
|
+
value: z.unknown()
|
|
17657
|
+
}), z.void(), { kind: "mutation" }),
|
|
17658
|
+
/** Get all entries matching an optional filter. */
|
|
17659
|
+
query: method(z.object({
|
|
17660
|
+
namespace: z.string().optional(),
|
|
17661
|
+
collection: z.string(),
|
|
17662
|
+
filter: QueryFilterSchema.optional()
|
|
17663
|
+
}), z.array(SettingsRecordSchema).readonly()),
|
|
17664
|
+
/** Insert a new record. */
|
|
17665
|
+
insert: method(z.object({
|
|
17666
|
+
namespace: z.string().optional(),
|
|
17667
|
+
collection: z.string(),
|
|
17668
|
+
record: SettingsRecordSchema
|
|
17669
|
+
}), z.void(), { kind: "mutation" }),
|
|
17670
|
+
/** Update an existing record by ID. */
|
|
17671
|
+
update: method(z.object({
|
|
17672
|
+
namespace: z.string().optional(),
|
|
17673
|
+
collection: z.string(),
|
|
17674
|
+
id: z.string(),
|
|
17675
|
+
data: z.record(z.string(), z.unknown())
|
|
17676
|
+
}), z.void(), { kind: "mutation" }),
|
|
17677
|
+
/** Delete a record by key/ID. */
|
|
17678
|
+
delete: method(z.object({
|
|
17679
|
+
namespace: z.string().optional(),
|
|
17680
|
+
collection: z.string(),
|
|
17681
|
+
key: z.string()
|
|
17682
|
+
}), z.void(), { kind: "mutation" }),
|
|
17683
|
+
/** Count entries in a collection, optionally filtered. */
|
|
17684
|
+
count: method(z.object({
|
|
17685
|
+
namespace: z.string().optional(),
|
|
17686
|
+
collection: z.string(),
|
|
17687
|
+
filter: QueryFilterSchema.optional()
|
|
17688
|
+
}), z.number()),
|
|
17689
|
+
/** Grouped counts per ((field-origin)/bucketSize) bucket, filtered. */
|
|
17690
|
+
histogram: method(z.object({
|
|
17691
|
+
namespace: z.string().optional(),
|
|
17692
|
+
collection: z.string(),
|
|
17693
|
+
field: z.string(),
|
|
17694
|
+
bucketSize: z.number().int().positive(),
|
|
17695
|
+
origin: z.number().int(),
|
|
17696
|
+
filter: QueryFilterSchema.optional()
|
|
17697
|
+
}), z.array(z.object({
|
|
17698
|
+
bucket: z.number().int(),
|
|
17699
|
+
count: z.number().int()
|
|
17700
|
+
})).readonly()),
|
|
17701
|
+
/** Check if a collection is empty. */
|
|
17702
|
+
isEmpty: method(z.object({
|
|
17703
|
+
namespace: z.string().optional(),
|
|
17704
|
+
collection: z.string()
|
|
17705
|
+
}), z.boolean()),
|
|
17706
|
+
/** Declare a typed (SQL-backed) collection with columns + indexes. */
|
|
17707
|
+
declareCollection: method(z.object({
|
|
17708
|
+
namespace: z.string().optional(),
|
|
17709
|
+
collection: z.string(),
|
|
17710
|
+
columns: z.array(CollectionColumnSchema).readonly(),
|
|
17711
|
+
indexes: z.array(CollectionIndexSchema).readonly().optional()
|
|
17712
|
+
}), z.void(), { kind: "mutation" })
|
|
17713
|
+
}
|
|
17714
|
+
};
|
|
17715
|
+
//#endregion
|
|
17433
17716
|
//#region src/capabilities/detection-pipeline.cap.ts
|
|
17434
17717
|
/**
|
|
17435
17718
|
* detection-pipeline — device-scoped facade over the system
|
|
@@ -21912,6 +22195,52 @@ var ServerUpdateStateSchema = z.enum([
|
|
|
21912
22195
|
"pending-restart",
|
|
21913
22196
|
"awaiting-confirmation"
|
|
21914
22197
|
]);
|
|
22198
|
+
/**
|
|
22199
|
+
* Verdict of comparing the node's IMMUTABLE baked seed (the Docker image / the
|
|
22200
|
+
* desktop app bundle) against the release the deployment contract would
|
|
22201
|
+
* deliver today. `applyServerUpdate` swaps the data-root closure and NEVER
|
|
22202
|
+
* touches the image, so `runningVersion` can be perfectly current while the
|
|
22203
|
+
* container is weeks old, from a renamed repository nothing rebuilds — which
|
|
22204
|
+
* is exactly what happened on 2026-08-02 (hub on `camstack-server:intel-1.1.74`
|
|
22205
|
+
* while every existing surface said "up to date"). The seed version is the one
|
|
22206
|
+
* image fingerprint a container can see from inside (no docker socket).
|
|
22207
|
+
*
|
|
22208
|
+
* - `in-sync` — seed equals the current release; the node runs the
|
|
22209
|
+
* contract image.
|
|
22210
|
+
* - `behind-patch` — same release series, older patch: the image predates
|
|
22211
|
+
* the current release. Normal between deliberate image
|
|
22212
|
+
* refreshes, but the starter/entrypoint are still old.
|
|
22213
|
+
* - `behind-series` — the seed's major/minor predates the current release
|
|
22214
|
+
* series. The shape of a pinned tag or a dead image
|
|
22215
|
+
* repository; a `docker pull` may fix nothing.
|
|
22216
|
+
* - `ahead` — seed newer than the best-known release (stale registry
|
|
22217
|
+
* check).
|
|
22218
|
+
* - `unknown` — no seed (dev workspace) or nothing to compare against
|
|
22219
|
+
* yet.
|
|
22220
|
+
*/
|
|
22221
|
+
var ImageContractStateSchema = z.enum([
|
|
22222
|
+
"in-sync",
|
|
22223
|
+
"behind-patch",
|
|
22224
|
+
"behind-series",
|
|
22225
|
+
"ahead",
|
|
22226
|
+
"unknown"
|
|
22227
|
+
]);
|
|
22228
|
+
var ImageContractSchema = z.object({
|
|
22229
|
+
state: ImageContractStateSchema,
|
|
22230
|
+
/** The baked seed closure version — the image/app-bundle fingerprint. */
|
|
22231
|
+
seedVersion: z.string().nullable(),
|
|
22232
|
+
/** Best-known version the deployment contract delivers today. */
|
|
22233
|
+
contractVersion: z.string().nullable(),
|
|
22234
|
+
/**
|
|
22235
|
+
* Where `contractVersion` came from: a real registry check (`registry`), or
|
|
22236
|
+
* the node's own running version (`running` — a node can never run code
|
|
22237
|
+
* newer than the newest release, so `seed < running` proves image staleness
|
|
22238
|
+
* even before any registry check has run).
|
|
22239
|
+
*/
|
|
22240
|
+
contractSource: z.enum(["registry", "running"]).nullable(),
|
|
22241
|
+
/** One operator-grade sentence: this node runs image X; the contract says Y. */
|
|
22242
|
+
message: z.string()
|
|
22243
|
+
});
|
|
21915
22244
|
var ServerRollbackInfoSchema = z.object({
|
|
21916
22245
|
/** The version that failed (or was manually rolled back). */
|
|
21917
22246
|
fromVersion: z.string(),
|
|
@@ -21948,7 +22277,12 @@ var ServerPackageStatusSchema = z.object({
|
|
|
21948
22277
|
* versions are being IGNORED. Surfaced as a warning in the UI.
|
|
21949
22278
|
*/
|
|
21950
22279
|
stateFileCorrupt: z.boolean(),
|
|
21951
|
-
lastCheckedAtMs: z.number().nullable()
|
|
22280
|
+
lastCheckedAtMs: z.number().nullable(),
|
|
22281
|
+
/**
|
|
22282
|
+
* Seed-vs-contract verdict (see {@link ImageContractSchema}). Optional for
|
|
22283
|
+
* version skew: an older provider's payload simply omits it.
|
|
22284
|
+
*/
|
|
22285
|
+
imageContract: ImageContractSchema.optional()
|
|
21952
22286
|
});
|
|
21953
22287
|
var ServerUpdateCheckResultSchema = z.object({
|
|
21954
22288
|
packageName: z.string(),
|
|
@@ -22003,160 +22337,6 @@ version: z.string().optional() }), ServerUpdateActionResultSchema, {
|
|
|
22003
22337
|
mount: { kind: "server-provided" }
|
|
22004
22338
|
};
|
|
22005
22339
|
//#endregion
|
|
22006
|
-
//#region src/capabilities/settings-store.cap.ts
|
|
22007
|
-
/**
|
|
22008
|
-
* Query filter for settings-store collections.
|
|
22009
|
-
*/
|
|
22010
|
-
var QueryFilterSchema = z.object({
|
|
22011
|
-
where: z.record(z.string(), z.unknown()).optional(),
|
|
22012
|
-
whereIn: z.record(z.string(), z.array(z.unknown())).optional(),
|
|
22013
|
-
whereBetween: z.record(z.string(), z.tuple([z.unknown(), z.unknown()])).optional(),
|
|
22014
|
-
orderBy: z.object({
|
|
22015
|
-
field: z.string(),
|
|
22016
|
-
direction: z.enum(["asc", "desc"])
|
|
22017
|
-
}).optional(),
|
|
22018
|
-
limit: z.number().optional(),
|
|
22019
|
-
offset: z.number().optional()
|
|
22020
|
-
});
|
|
22021
|
-
/** A single stored record: `{ id, data }`. */
|
|
22022
|
-
var SettingsRecordSchema = z.object({
|
|
22023
|
-
id: z.string(),
|
|
22024
|
-
data: z.record(z.string(), z.unknown())
|
|
22025
|
-
});
|
|
22026
|
-
/**
|
|
22027
|
-
* Column declaration for a structured (SQL-backed) collection.
|
|
22028
|
-
*
|
|
22029
|
-
* Logical types — the backend translates each to the matching SQLite
|
|
22030
|
-
* storage class and handles per-type marshaling:
|
|
22031
|
-
* - `TEXT` / `INTEGER` / `REAL` — native SQLite types, pass-through
|
|
22032
|
-
* - `JSON` — TEXT under the hood; serialised on write, parsed on read
|
|
22033
|
-
* - `BOOLEAN` — INTEGER 0/1 under the hood; coerced both directions
|
|
22034
|
-
*/
|
|
22035
|
-
var CollectionColumnSchema = z.object({
|
|
22036
|
-
name: z.string(),
|
|
22037
|
-
type: z.enum([
|
|
22038
|
-
"TEXT",
|
|
22039
|
-
"INTEGER",
|
|
22040
|
-
"REAL",
|
|
22041
|
-
"JSON",
|
|
22042
|
-
"BOOLEAN"
|
|
22043
|
-
]),
|
|
22044
|
-
primaryKey: z.boolean().optional(),
|
|
22045
|
-
notNull: z.boolean().optional(),
|
|
22046
|
-
unique: z.boolean().optional()
|
|
22047
|
-
});
|
|
22048
|
-
var CollectionIndexSchema = z.object({
|
|
22049
|
-
name: z.string(),
|
|
22050
|
-
columns: z.array(z.string()).readonly(),
|
|
22051
|
-
unique: z.boolean().optional()
|
|
22052
|
-
});
|
|
22053
|
-
/**
|
|
22054
|
-
* settings-store — singleton capability for addon-scoped persistence.
|
|
22055
|
-
*
|
|
22056
|
-
* Every method operates within a `collection`. An optional `namespace`
|
|
22057
|
-
* field provides access to additional data spaces beyond the default
|
|
22058
|
-
* addon settings — useful for business data (events, tracks, faces, etc.).
|
|
22059
|
-
*
|
|
22060
|
-
* Scoping: the implementation prefixes every collection with the calling
|
|
22061
|
-
* addon's ID automatically. Addons never see each other's data.
|
|
22062
|
-
*
|
|
22063
|
-
* - No namespace (default): `"addon-settings"` → `"<addonId>:addon-settings"`
|
|
22064
|
-
* - With namespace: `{ namespace: 'events', collection: 'detections' }` →
|
|
22065
|
-
* `"<addonId>:events:detections"`
|
|
22066
|
-
*
|
|
22067
|
-
* Implemented by `@camstack/system/builtins/sqlite-settings` (SQLite WAL backend).
|
|
22068
|
-
* Addons access it via `ctx.api.settingsStore.*`.
|
|
22069
|
-
*/
|
|
22070
|
-
var settingsStoreCapability = {
|
|
22071
|
-
name: "settings-store",
|
|
22072
|
-
scope: "system",
|
|
22073
|
-
mode: "singleton",
|
|
22074
|
-
methods: {
|
|
22075
|
-
/** Get a single value by key from a collection. */
|
|
22076
|
-
get: method(z.object({
|
|
22077
|
-
namespace: z.string().optional(),
|
|
22078
|
-
collection: z.string(),
|
|
22079
|
-
key: z.string()
|
|
22080
|
-
}), z.unknown()),
|
|
22081
|
-
/** Set a value by key in a collection (upsert). */
|
|
22082
|
-
set: method(z.object({
|
|
22083
|
-
namespace: z.string().optional(),
|
|
22084
|
-
collection: z.string(),
|
|
22085
|
-
key: z.string(),
|
|
22086
|
-
value: z.unknown()
|
|
22087
|
-
}), z.void(), { kind: "mutation" }),
|
|
22088
|
-
/** Get all entries matching an optional filter. */
|
|
22089
|
-
query: method(z.object({
|
|
22090
|
-
namespace: z.string().optional(),
|
|
22091
|
-
collection: z.string(),
|
|
22092
|
-
filter: QueryFilterSchema.optional()
|
|
22093
|
-
}), z.array(SettingsRecordSchema).readonly()),
|
|
22094
|
-
/** Insert a new record. */
|
|
22095
|
-
insert: method(z.object({
|
|
22096
|
-
namespace: z.string().optional(),
|
|
22097
|
-
collection: z.string(),
|
|
22098
|
-
record: SettingsRecordSchema
|
|
22099
|
-
}), z.void(), { kind: "mutation" }),
|
|
22100
|
-
/** Update an existing record by ID. */
|
|
22101
|
-
update: method(z.object({
|
|
22102
|
-
namespace: z.string().optional(),
|
|
22103
|
-
collection: z.string(),
|
|
22104
|
-
id: z.string(),
|
|
22105
|
-
data: z.record(z.string(), z.unknown())
|
|
22106
|
-
}), z.void(), { kind: "mutation" }),
|
|
22107
|
-
/** Delete a record by key/ID. */
|
|
22108
|
-
delete: method(z.object({
|
|
22109
|
-
namespace: z.string().optional(),
|
|
22110
|
-
collection: z.string(),
|
|
22111
|
-
key: z.string()
|
|
22112
|
-
}), z.void(), { kind: "mutation" }),
|
|
22113
|
-
/** Count entries in a collection, optionally filtered. */
|
|
22114
|
-
count: method(z.object({
|
|
22115
|
-
namespace: z.string().optional(),
|
|
22116
|
-
collection: z.string(),
|
|
22117
|
-
filter: QueryFilterSchema.optional()
|
|
22118
|
-
}), z.number()),
|
|
22119
|
-
/** Grouped counts per ((field-origin)/bucketSize) bucket, filtered. */
|
|
22120
|
-
histogram: method(z.object({
|
|
22121
|
-
namespace: z.string().optional(),
|
|
22122
|
-
collection: z.string(),
|
|
22123
|
-
field: z.string(),
|
|
22124
|
-
bucketSize: z.number().int().positive(),
|
|
22125
|
-
origin: z.number().int(),
|
|
22126
|
-
filter: QueryFilterSchema.optional()
|
|
22127
|
-
}), z.array(z.object({
|
|
22128
|
-
bucket: z.number().int(),
|
|
22129
|
-
count: z.number().int()
|
|
22130
|
-
})).readonly()),
|
|
22131
|
-
/** Check if a collection is empty. */
|
|
22132
|
-
isEmpty: method(z.object({
|
|
22133
|
-
namespace: z.string().optional(),
|
|
22134
|
-
collection: z.string()
|
|
22135
|
-
}), z.boolean()),
|
|
22136
|
-
/**
|
|
22137
|
-
* Declare a typed (SQL-backed) collection with explicit columns +
|
|
22138
|
-
* indexes. Idempotent: re-declaring an existing collection with the
|
|
22139
|
-
* same shape is a no-op; shape changes (new columns, new indexes)
|
|
22140
|
-
* are applied additively. Subsequent `insert` / `update` / `delete`
|
|
22141
|
-
* / `query` calls on this collection use typed columns instead of
|
|
22142
|
-
* JSON-blob storage — `record.data` fields are spread across
|
|
22143
|
-
* columns, `query.filter.where` matches real columns (no
|
|
22144
|
-
* `json_extract` overhead), `orderBy` uses column indexes.
|
|
22145
|
-
*
|
|
22146
|
-
* Addons call this in `onInitialize` before their first read/write.
|
|
22147
|
-
* Collection names should be namespaced by addon (e.g.
|
|
22148
|
-
* `pipeline-analytics:object-events`) to avoid cross-addon
|
|
22149
|
-
* clashes — no automatic prefix is added.
|
|
22150
|
-
*/
|
|
22151
|
-
declareCollection: method(z.object({
|
|
22152
|
-
namespace: z.string().optional(),
|
|
22153
|
-
collection: z.string(),
|
|
22154
|
-
columns: z.array(CollectionColumnSchema).readonly(),
|
|
22155
|
-
indexes: z.array(CollectionIndexSchema).readonly().optional()
|
|
22156
|
-
}), z.void(), { kind: "mutation" })
|
|
22157
|
-
}
|
|
22158
|
-
};
|
|
22159
|
-
//#endregion
|
|
22160
22340
|
//#region src/capabilities/smtp-provider.cap.ts
|
|
22161
22341
|
/**
|
|
22162
22342
|
* `smtp-provider` — pluggable email delivery surface.
|
|
@@ -25924,7 +26104,7 @@ var recordingCapability = {
|
|
|
25924
26104
|
auth: "admin"
|
|
25925
26105
|
}),
|
|
25926
26106
|
/**
|
|
25927
|
-
* Move footage (segments
|
|
26107
|
+
* Move footage (recorded segments) from one recordings location to
|
|
25928
26108
|
* another — the drain workflow's mover (entity-routing spec Phase 4).
|
|
25929
26109
|
* Throttled copy → size-verify → delete source → index refresh; resumable
|
|
25930
26110
|
* by construction (copy-if-absent). Single-flight: one job at a time.
|
|
@@ -26839,6 +27019,7 @@ var CAPABILITY_NAMES = {
|
|
|
26839
27019
|
control: "control",
|
|
26840
27020
|
cover: "cover",
|
|
26841
27021
|
customModelRegistry: "custom-model-registry",
|
|
27022
|
+
dataStoreProvider: "data-store-provider",
|
|
26842
27023
|
dayNight: "day-night",
|
|
26843
27024
|
decoder: "decoder",
|
|
26844
27025
|
detectionPipeline: "detection-pipeline",
|
|
@@ -27096,6 +27277,10 @@ var CAPABILITY_ROUTER_KEYS = [
|
|
|
27096
27277
|
key: "customModelRegistry",
|
|
27097
27278
|
name: "custom-model-registry"
|
|
27098
27279
|
},
|
|
27280
|
+
{
|
|
27281
|
+
key: "dataStoreProvider",
|
|
27282
|
+
name: "data-store-provider"
|
|
27283
|
+
},
|
|
27099
27284
|
{
|
|
27100
27285
|
key: "dayNight",
|
|
27101
27286
|
name: "day-night"
|
|
@@ -27568,6 +27753,7 @@ var ALL_CAPABILITY_DEFINITIONS = [
|
|
|
27568
27753
|
controlCapability,
|
|
27569
27754
|
coverCapability,
|
|
27570
27755
|
customModelRegistryCapability,
|
|
27756
|
+
dataStoreProviderCapability,
|
|
27571
27757
|
dayNightCapability,
|
|
27572
27758
|
decoderCapability,
|
|
27573
27759
|
detectionPipelineCapability,
|
|
@@ -28577,6 +28763,72 @@ var METHOD_ACCESS_MAP = Object.freeze({
|
|
|
28577
28763
|
addonId: null,
|
|
28578
28764
|
access: "view"
|
|
28579
28765
|
},
|
|
28766
|
+
"dataStoreProvider.count": {
|
|
28767
|
+
capName: "data-store-provider",
|
|
28768
|
+
capScope: "system",
|
|
28769
|
+
addonId: null,
|
|
28770
|
+
access: "view"
|
|
28771
|
+
},
|
|
28772
|
+
"dataStoreProvider.declareCollection": {
|
|
28773
|
+
capName: "data-store-provider",
|
|
28774
|
+
capScope: "system",
|
|
28775
|
+
addonId: null,
|
|
28776
|
+
access: "create"
|
|
28777
|
+
},
|
|
28778
|
+
"dataStoreProvider.delete": {
|
|
28779
|
+
capName: "data-store-provider",
|
|
28780
|
+
capScope: "system",
|
|
28781
|
+
addonId: null,
|
|
28782
|
+
access: "delete"
|
|
28783
|
+
},
|
|
28784
|
+
"dataStoreProvider.get": {
|
|
28785
|
+
capName: "data-store-provider",
|
|
28786
|
+
capScope: "system",
|
|
28787
|
+
addonId: null,
|
|
28788
|
+
access: "view"
|
|
28789
|
+
},
|
|
28790
|
+
"dataStoreProvider.getEngineInfo": {
|
|
28791
|
+
capName: "data-store-provider",
|
|
28792
|
+
capScope: "system",
|
|
28793
|
+
addonId: null,
|
|
28794
|
+
access: "view"
|
|
28795
|
+
},
|
|
28796
|
+
"dataStoreProvider.histogram": {
|
|
28797
|
+
capName: "data-store-provider",
|
|
28798
|
+
capScope: "system",
|
|
28799
|
+
addonId: null,
|
|
28800
|
+
access: "view"
|
|
28801
|
+
},
|
|
28802
|
+
"dataStoreProvider.insert": {
|
|
28803
|
+
capName: "data-store-provider",
|
|
28804
|
+
capScope: "system",
|
|
28805
|
+
addonId: null,
|
|
28806
|
+
access: "create"
|
|
28807
|
+
},
|
|
28808
|
+
"dataStoreProvider.isEmpty": {
|
|
28809
|
+
capName: "data-store-provider",
|
|
28810
|
+
capScope: "system",
|
|
28811
|
+
addonId: null,
|
|
28812
|
+
access: "view"
|
|
28813
|
+
},
|
|
28814
|
+
"dataStoreProvider.query": {
|
|
28815
|
+
capName: "data-store-provider",
|
|
28816
|
+
capScope: "system",
|
|
28817
|
+
addonId: null,
|
|
28818
|
+
access: "view"
|
|
28819
|
+
},
|
|
28820
|
+
"dataStoreProvider.set": {
|
|
28821
|
+
capName: "data-store-provider",
|
|
28822
|
+
capScope: "system",
|
|
28823
|
+
addonId: null,
|
|
28824
|
+
access: "create"
|
|
28825
|
+
},
|
|
28826
|
+
"dataStoreProvider.update": {
|
|
28827
|
+
capName: "data-store-provider",
|
|
28828
|
+
capScope: "system",
|
|
28829
|
+
addonId: null,
|
|
28830
|
+
access: "create"
|
|
28831
|
+
},
|
|
28580
28832
|
"dayNight.getOptions": {
|
|
28581
28833
|
capName: "day-night",
|
|
28582
28834
|
capScope: "device",
|
|
@@ -32744,6 +32996,7 @@ var KNOWN_CAP_NAMES = [
|
|
|
32744
32996
|
"control",
|
|
32745
32997
|
"cover",
|
|
32746
32998
|
"custom-model-registry",
|
|
32999
|
+
"data-store-provider",
|
|
32747
33000
|
"day-night",
|
|
32748
33001
|
"decoder",
|
|
32749
33002
|
"device-adoption",
|
|
@@ -32906,6 +33159,7 @@ var SYSTEM_CAP_NAMES = [
|
|
|
32906
33159
|
"backup",
|
|
32907
33160
|
"broker",
|
|
32908
33161
|
"custom-model-registry",
|
|
33162
|
+
"data-store-provider",
|
|
32909
33163
|
"decoder",
|
|
32910
33164
|
"device-adoption",
|
|
32911
33165
|
"device-export",
|
|
@@ -33552,4 +33806,4 @@ function enumerateInferenceDevices(hw) {
|
|
|
33552
33806
|
return out;
|
|
33553
33807
|
}
|
|
33554
33808
|
//#endregion
|
|
33555
|
-
export { ACCESSORY_LABEL, ALL_CAPABILITY_DEFINITIONS, APPLE_SA_TO_MACRO, AUDIO_BACKEND_CHOICES, AUDIO_MACRO_LABELS, AccessoriesStatusSchema, AccessoryKind, AddBrokerInputSchema, AddonAutoUpdateSchema, AddonListItemSchema, AddonPageDeclarationSchema, AddonPageInfoSchema, AdoptInputSchema as AdoptionAdoptInputSchema, AdoptResultSchema as AdoptionAdoptResultSchema, AdoptionFilterSchema, GetCandidateInputSchema as AdoptionGetCandidateInputSchema, ListCandidatesInputSchema as AdoptionListCandidatesInputSchema, ListCandidatesOutputSchema as AdoptionListCandidatesOutputSchema, ReleaseInputSchema as AdoptionReleaseInputSchema, AdoptionStatusSchema, AgentLoadSummarySchema, AirQualitySensorStatusSchema, AlarmArmModeSchema, AlarmPanelStatusSchema, AlarmStateSchema, AlertSchema, AlertSeveritySchema, AlertSourceSchema, AlertStatusSchema, AmbientLightSensorStatusSchema, ApiKeyRecordSchema, ApiKeySummarySchema, ArchiveEntrySchema, ArchiveManifestSchema, AttachmentMediaTypeSchema, AttachmentSchema, AudioAnalysisResultSchema, AudioAnalysisSettingsSchema, AudioChunkInputSchema, AudioClassSummarySchema, AudioClassificationLabelSchema, AudioClassificationResultSchema, AudioCodecInfoSchema, AudioDecodeSessionConfigSchema, AudioEncodeSchema, AudioEncodeSessionConfigSchema, AudioEncodedChunkSchema, AudioEventSchema, AudioLevelSchema, AudioMetricsHistoryPointSchema, AudioMetricsHistorySchema, AudioMetricsSnapshotSchema, AudioPcmChunkSchema, AuthResultSchema, AutoUpdateSettingsSchema, AutomationControlStatusSchema, AvailableIntegrationTypeSchema, BACKEND_TO_FORMAT, BATTERY_DEVICE_PROFILE, BacklightModeSchema, BackupDestinationInfoSchema, BackupEntrySchema, BaseAddon, BaseDevice, BaseDeviceProvider, BatteryStatusSchema, BinaryStatusSchema, BoundingBoxSchema, BrightnessStatusSchema, AddInputSchema as BrokerAddInputSchema, BrokerAudioClientSchema, BrokerClientsSchema, BrokerConnectionDetailsSchema, BrokerConsumerAttributionSchema, BrokerConsumerKindSchema, BrokerDecodedClientSchema, BrokerEncodedClientSchema, GetStateInputSchema as BrokerGetStateInputSchema, BrokerInfoSchema, BrokerProviderInfoSchema, PublishInputSchema as BrokerPublishInputSchema, RegistryStatusSchema as BrokerRegistryStatusSchema, BrokerRtspClientSchema, BrokerStatsSchema, BrokerStatusEnum, BrokerStatusSchema, SubscribeInputSchema as BrokerSubscribeInputSchema, SubscribeResultSchema as BrokerSubscribeResultSchema, TestConnectionResultSchema as BrokerTestConnectionResultSchema, UnsubscribeInputSchema as BrokerUnsubscribeInputSchema, CAM_PROFILE_ORDER, CAPABILITY_NAMES, CAPABILITY_ROUTER_KEYS, CAP_NAMES_WITH_STATUS, CAP_NODE_PIN_CONTEXT_KEY, CAP_PROVIDER_KIND_MAP, COCO_80_LABELS, COCO_TO_MACRO, CamProfileSchema, CamStreamDescriptorSchema, CamStreamKindSchema, CamStreamResolutionSchema, CameraAssignmentStatusSchema, CameraAudioStatusSchema, CameraBrokerProfileSchema, CameraBrokerStatusSchema, CameraCredentialsSchema, CameraCredentialsStatusSchema, CameraDecoderShmSchema, CameraDecoderStatusSchema, CameraDetectionPhaseSchema, CameraDetectionProvisioningSchema, CameraDetectionProvisioningStateSchema, CameraDetectionStatusSchema, CameraMetricsSchema, CameraMetricsWithDeviceIdSchema, CameraMotionStatusSchema, CameraRecordingModeSchema, CameraRecordingStatusSchema, CameraSourceStatusSchema, CameraSourceStreamSchema, CameraStatusSchema, CameraStreamSchema, CandidateQueryFilterSchema, CapScopeSchema, CapabilityBindingsSchema, CarbonMonoxideStatusSchema, ChargingStatus, ClientNetworkStatsSchema, ClimateControlStatusSchema, ClipPlaybackSchema, ClipSchema, ClusterAddonNodeDeploymentSchema, ClusterAddonStatusEntrySchema, CollectionColumnSchema, CollectionIndexSchema, ColorStatusSchema, ConfigEntrySchema, ConfigSectionWithValuesSchema, ConfigTabDeclarationSchema, ConnectivityStatusSchema, ConsumableItemSchema, ConsumablesStatusSchema, ContactStatusSchema, ControlKindSchema, ControlStatusSchema, ConvertArtifactSchema, ConvertResultSchema, ConvertTargetSchema, CoverStateSchema, CoverStatusSchema, CreateApiKeyInputSchema, CreateApiKeyResultSchema, CreateIntegrationInputSchema, CreateScopedTokenInputSchema, CreateScopedTokenResultSchema, CreateUserInputSchema, CustomActionInputSchema, CustomModelDescriptorSchema, DATAPLANE_SECRET_HEADER, DEFAULT_ADDON_PLACEMENT, DEFAULT_AUDIO_ANALYZER_CONFIG, DEFAULT_DECODER_HWACCEL_CONFIG, DEFAULT_EVENT_COLOR, DEFAULT_FEATURES, DEFAULT_RETENTION, DEFAULT_SCRUB_THUMBNAIL_PRESET, DEVICE_BACKEND_TO_FORMAT, DEVICE_CAP_NAMES, DEVICE_PROFILES, DEVICE_SETTINGS_CONTRIBUTION_METHODS, DEVICE_STATUS_METHOD, DEVICE_TYPE_CONTROL_KIND, DEVICE_TYPE_INFO, DayNightModeSchema, DayNightOptionsSchema, DayNightSettingsPatchSchema, DayNightStatusSchema, DecodedAudioChunkSchema, DecodedFrameSchema, DecoderSessionConfigSchema, DecoderStatsSchema, DeleteIntegrationResultSchema, DetectionSourceSchema, DeviceCodeSeveritySchema, DeviceConfig, DeviceDiscoveryStatusSchema, ExposeInputSchema as DeviceExportExposeInputSchema, DeviceExportStatusSchema, UnexposeInputSchema as DeviceExportUnexposeInputSchema, DeviceFeature, DeviceInfoSchema, DeviceLinkModeSchema, DeviceNetworkStatsSchema, DeviceRole, DeviceRuntimeState, DeviceStatusSchema, DeviceType, DiscoveredChildDeviceSchema, DiscoveredChildStatusSchema, DiscoveredDeviceSchema, DiscoveredTargetSchema, DisposerChain, DoorbellPressEventSchema, DoorbellStatusSchema, EVENTFUL_CAP_NAMES, EVENT_KIND_BY_CAP, EVENT_PAD_MS, EVENT_TAXONOMY, EXPRESSION_BUILTINS, EXPRESSION_BUILTIN_NAMES, EXPRESSION_COMPILE_CACHE_CAPACITY, EXPRESSION_IDENTIFIER_RE, EXPRESSION_INJECTED_NOW, ElementConfigStore, EmbeddingInfoSchema, EmbeddingResultSchema, EncodeProfileSchema, EncodedPacketSchema, EnrichedWidgetMetadataSchema, EnumSensorDateTimeFormatSchema, EnumSensorStatusSchema, EventCategory, EventEmitterStatusSchema, EventFireSchema, EventItemSchema, EventKindCategorySchema, EventKindDescriptorSchema, EventKindIconSchema, EventKindSchema, EventSourceType, ExportDownloadSchema, ExportOptionsSchema, ExportRecordSchema, ExportSetupFieldSchema, ExportSetupSchema, ExportSpeedSchema, ExportStateSchema, ExportTimelapseSchema, ExposedDeviceSchema, ExposureModeSchema, ExpressionEvalError, ExpressionParseError, FanControlStatusSchema, FanDirectionSchema, FeatureManifestSchema, FeatureProbeStatusSchema, FloodStatusSchema, FrameHandleFormatSchema, FrameHandleSchema, FrameInputSchema, GasStatusSchema, GetStreamWithCodecInputSchema, GlobalMetricsSchema, HF_BASE_URL, HF_REPO, HWACCEL_OPTIONS, HealthStatusSchema, HistoryPointSchema, HistoryResolutionEnum, HumidifierStatusSchema, HumiditySensorStatusSchema, HvacModeSchema, ImageRotateSchema, ImageSettingsOptionsSchema, ImageSettingsPatchSchema, ImageSettingsStatusSchema, ImageStatusSchema, IngestOwnerSchema, InstalledPackageSchema, IntegrationLiteSchema, IntegrationWithStateSchema, IntercomAbilitySchema, IntercomStatusSchema, KNOWN_CAP_NAMES, KeyEventSchema, LOG_LEVEL_RANK, LabelDefinitionSchema, LawnMowerActivitySchema, LawnMowerControlStatusSchema, LinkedDeviceSchema, LlmDefaultSchema, LlmDefaultSelectorSchema, LlmErrorCodeSchema, LlmGenerateBaseInputSchema, LlmGenerateErrSchema, LlmGenerateOkSchema, LlmGenerateResultSchema, LlmImageSchema, LlmNodeModelSchema, LlmProfileKindDescriptorSchema, LlmProfileKindSchema, LlmProfileSchema, LlmRuntimeCompleteInputSchema, LlmRuntimeDiskUsageSchema, LlmRuntimeNodeSchema, LlmRuntimeStatusSchema, LlmUsageRollupSchema, LlmUsageSchema, LocateSegmentResultSchema, LocationStatSchema, LockControlStatusSchema, LockStateSchema, LogEntrySchema, LogLevelSchema, LogStreamEntrySchema, LoginMethodContributionSchema, LoginStageEnum, MACRO_LABELS, MAX_EXPRESSION_AST_NODES, MAX_EXPRESSION_BINDINGS, MAX_EXPRESSION_CALL_ARGS, MAX_EXPRESSION_EVAL_STEPS, MAX_EXPRESSION_SOURCE_LENGTH, METHOD_ACCESS_MAP, MODEL_FORMATS, MOTION_TRIGGER_FEATURE, ManagedModelCatalogEntrySchema, ManagedModelRefSchema, ManagedRuntimeConfigSchema, MaskGridDimsSchema, MaskGridShapeSchema, MaskLineShapeSchema, MaskPointSchema, MaskPolygonShapeSchema, MaskPolygonVerticesSchema, MaskRectShapeSchema, MaskShapeKindSchema, MaskShapeSchema, MediaFileSchema, MediaPlayerRepeatSchema, MediaPlayerStateSchema, MediaPlayerStatusSchema, MeshPeerSchema, MeshStatusSchema, MethodAccessSchema, ModelCatalogEntrySchema, ModelConvertInputSchema, ModelConvertMetadataSchema, ModelDistributeInputSchema, ModelDistributeResultSchema, ModelExtraFileSchema, ModelFormatEntrySchema, ModelFormatsSchema, ModelSubstitutionSchema, ModelVariantGroupSchema, MotionAnalysisResultSchema, MotionEventSchema, MotionOnMotionChangedDataSchema, MotionRegionSchema, MotionSourceEnum, MotionSourcesSchema, MotionStatusSchema, MotionTriggerRuntimeStateSchema, MotionTriggerStatusSchema, MotionZoneOptionsSchema, MotionZonePatchSchema, MotionZoneRegionSchema, MotionZoneStatusSchema, StatusSchema as MqttBrokerStatusSchema, NC_BASE_CONDITION_KEYS, NC_CONDITION_CATALOG, NC_HISTORY_LIMIT_DEFAULT, NC_HISTORY_LIMIT_MAX, NC_MAX_PER_TRACK_IMMEDIATE, NC_TAXONOMY, NativeCropBboxSchema, NativeCropRefSchema, NativeCropResultSchema, NativeDetectionSchema, NativeObjectClassEnum, NativeObjectDetectionRuntimeStateSchema, NativeObjectDetectionStatusSchema, NcConditionDescriptorSchema, NcConditionsSchema, NcCrossingSchema, NcDeliverySchema, NcHistoryEntrySchema, NcHistoryFilterSchema, NcHistoryRecordKindSchema, NcHistoryStatusSchema, NcHistorySubjectSchema, NcMediaFrameSchema, NcMediaPolicySchema, NcOccupancyConditionSchema, NcPlateMatcherSchema, NcRuleInputSchema, NcRulePatchSchema, NcRuleSchema, NcRuleTargetSchema, NcScheduleSchema, NcScheduleWindowSchema, NcTaxonomyEntrySchema, NcTaxonomySchema, NcTestResultSchema, NcThrottleGranularitySchema, NcThrottleSchema, NcZoneConditionSchema, NetworkAccessStatusSchema, NetworkAddressSchema, NetworkEndpointSchema, NotificationActionSchema, NotificationFormatSchema, NotificationSchema, NotifierStatusSchema, NumericSensorStatusSchema, OPS_LOG_DEFAULT_LIMIT, OPS_LOG_RING_DEFAULT_MAX, OauthIntegrationDescriptorSchema, ObjectEventSchema, OpsLogDomainSchema, OpsLogEntrySchema, OpsLogOpSchema, OpsLogQueryInputSchema, OpsLogReasonSchema, OrchestratorMetricsSchema, OsdOverlayKindEnum, OsdOverlayPatchSchema, OsdOverlaySchema, OsdPositionEnum, OsdStatusSchema, PET_FEEDER_MANUAL_FEED_MAX, PET_FEEDER_MANUAL_FEED_MIN, PIPELINE_FLOW_CAPABILITY_NAMES, PIPELINE_OWNER_CAPABILITY_NAMES, PROVIDER_KIND_CAP_NAMES, PYTHON_SCRIPT, PackageUpdateSchema, PackageVersionInfoSchema, PasskeyLoginMethodSchema, PasskeySummarySchema, PcmSampleFormatSchema, PerScopeBreakdownSchema, PetFeederStatusSchema, PickStreamPreferencesSchema, PickStreamRequirementsSchema, PickedCamStreamSchema, PipelineAssignmentSchema, PipelineDefaultStepSchema, PipelineEngineChoiceSchema, PipelineRunResultBridge, PipelineStepInputSchema, PipelineValidationIssueSchema, PipelineValidationResultSchema, PlaceholderReasonSchema, PolygonPointSchema, PowerMeterStatusSchema, PresenceStatusSchema, PressureSensorStatusSchema, PrivacyMaskOptionsSchema, PrivacyMaskPatchSchema, PrivacyMaskRegionSchema, PrivacyMaskShapeSchema, PrivacyMaskStatusSchema, ProfileRtspEntrySchema, ProfileSlotSchema, ProfileSlotStatusSchema, ProviderStatusSchema, PtzAutotrackRuntimeStateSchema, PtzAutotrackSettingsSchema, PtzAutotrackStatusSchema, PtzAutotrackTargetOptionSchema, PtzMoveCommandSchema, PtzOptionsSchema, PtzPositionSchema, PtzPresetSchema, PtzStatusSchema, QueryFilterSchema, REACHABILITY_FAILURES_TO_OFFLINE, REACHABILITY_POLL_INTERVAL_MS, REACHABILITY_PROBE_TIMEOUT_MS, RECOGNITION_TYPES, RESERVED_BINDING_NAMES, RUNTIME_DEFAULTS, RUNTIME_TO_FORMAT, RawStateResultSchema, ReadSegmentBytesResultSchema, ReadinessRegistry, ReadinessTimeoutError, RecentTracksPageSchema, RecentTracksQueryInput, RecordingAvailabilitySchema, RecordingBandModeSchema, RecordingBandSchema, RecordingBandTriggersSchema, RecordingConfigSchema, RecordingDaysSchema, RecordingDeviceUsageSchema, RecordingLocationUsageSchema, RecordingManifestSchema, RecordingRangeSchema, RecordingRetentionSchema, RecordingStatusSchema, RecordingStorageModeSchema, RecordingStorageUsageSchema, RecordingTriggersSchema, RecordingWeekdaySchema, RedirectLoginMethodSchema, RelocateFootageInputSchema, RelocateJobSchema, RelocateJobStateSchema, RelocateMediaInputSchema, RenderedAsSchema, ReportMotionInputSchema, RingBuffer, RtpSourceSchema, RtspRestreamEntrySchema, RunnerCameraConfigSchema, RunnerCameraDeviceUIFields, RunnerFrameSourceSchema, RunnerInferenceDeviceSchema, RunnerLocalLoadSchema, RunnerLocalMetricsSchema, SCOPE_PRESETS, SCRUB_THUMBNAIL_PRESETS, SCRUB_THUMBNAIL_PRESET_LABELS, SCRUB_THUMBNAIL_PRESET_ORDER, SENSOR_FEATURES, SENSOR_MAP, SOURCE_INFO_METADATA_KEY, STREAM_PROFILE_META, STREAM_QUALITY_LABELS, SUB_DETECTION_TYPES, SYSTEM_CAP_NAMES, SceneCheckSchema, SceneConditionSchema, SceneMonitorSchema, SceneMonitorStateSchema, SceneMonitorStatusSchema, SceneReferenceSchema, ScopedTokenSchema, ScopedTokenSummarySchema, ScoredObjectEventSchema, ScriptRunnerStatusSchema, ScrubThumbnailPresetSchema, SearchResultSchema, SendEmailInputSchema, SendEmailResultSchema, SendResultSchema, SensorEventSchema, ServerBootModeSchema, ServerPackageStatusSchema, ServerRollbackInfoSchema, ServerUpdateActionResultSchema, ServerUpdateCheckResultSchema, ServerUpdateStateSchema, SettingsPatchSchema, SettingsRecordSchema, SettingsSchemaWithValuesSchema, SettingsUpdateResultSchema, ShmRingStatsSchema, SmokeStatusSchema, SmtpStatusSchema, SnapshotImageSchema, SourceInfoSchema, SpatialDetectionSchema, SsoBridgeClaimsSchema, StartEmbeddedInputSchema, StationaryObjectSchema, AbortUploadInputSchema as StorageAbortUploadInputSchema, BeginDownloadInputSchema as StorageBeginDownloadInputSchema, BeginDownloadResultSchema as StorageBeginDownloadResultSchema, BeginUploadInputSchema as StorageBeginUploadInputSchema, BeginUploadResultSchema as StorageBeginUploadResultSchema, EndDownloadInputSchema as StorageEndDownloadInputSchema, FinalizeUploadInputSchema as StorageFinalizeUploadInputSchema, StorageLocationDeclarationSchema, StorageLocationRefSchema, StorageLocationSchema, StorageLocationTypeSchema, ProviderInfoSchema as StorageProviderInfoSchema, ReadChunkInputSchema as StorageReadChunkInputSchema, TestLocationResultSchema as StorageTestLocationResultSchema, WriteChunkInputSchema as StorageWriteChunkInputSchema, StreamCodecSchema, StreamFormatSchema, StreamNetworkStatsSchema, StreamParamsOptionsSchema, StreamParamsStatusSchema, StreamProfileConfigSchema, StreamProfileOptionsSchema, StreamProfilePatchSchema, StreamProfileSchema, StreamSourceEntrySchema, StreamSourceSchema, SubscribeAudioChunksInputSchema, SubscribeAudioChunksResultSchema, SubscribeFramesInputSchema, SubscribeFramesResultSchema, SwitchStatusSchema, SystemMetricsSchema, SystemMirror, TAXONOMY_COLORS, TIMEZONES, TamperStatusSchema, TankStatusSchema, TargetKindCapsSchema, TargetKindLevelSchema, TargetKindSchema, TargetSchema, TemperatureSensorStatusSchema, TerminalProfileInfoSchema, TerminalSessionInfoSchema, TestConnectionResultSchema$1 as TestConnectionResultSchema, TestResultSchema, TimelapseRuleInputSchema, TimelapseRulePatchSchema, TimelapseRuleSchema, TimelapseTemplateSchema, ToastSchema, TokenScopeSchema, TopologyNodeSchema, TopologyProcessSchema, TopologyServiceSchema, TrackCascadeCountsSchema, TrackEnvelopeSchema, TrackProjectionSchema, TrackSchema, TrackStateSchema, TrackZoneFilterSchema, TrackedDetectionSchema, TurnServerSchema, UNIT_TABLE, BrokerInfoSchema$1 as UnifiedBrokerInfoSchema, UnitConversionError, UpdateIntegrationInputSchema, UpdateStatusSchema, UpdateUserInputSchema, UserRecordSchema, UserSummarySchema, VacuumControlStatusSchema, VacuumStateSchema, ValveStateSchema, ValveStatusSchema, VibrationStatusSchema, VideoEncodeSchema, WELL_KNOWN_TABS, WELL_KNOWN_TAB_MAP, WaterHeaterStatusSchema, WeatherStatusSchema, WebrtcStreamChoiceSchema, WebrtcStreamTargetSchema, WhiteBalanceModeSchema, WidgetHostEnum, WidgetLoginMethodSchema, WidgetMetadataSchema, WidgetRemoteSchema, WidgetSizeEnum, YAMNET_TO_MACRO, ZoneCrossingDirectionSchema, ZoneCrossingSchema, ZoneKindEnum, ZoneRuleModeEnum, ZoneRuleSchema, ZoneRuleStageEnum, ZoneRulesArraySchema, ZoneSchema, ZoneScopeBreakdownSchema, accessoriesCapability, accessoryStableId, addonPagesCapability, addonPagesSourceCapability, addonRoutesCapability, addonSettingsCapability, addonWidgetsCapability, addonWidgetsSourceCapability, addonsCapability, adminUiCapability, airQualitySensorCapability, alarmPanelCapability, alertsCapability, ambientLightSensorCapability, applyTransform, asBoolean, asJsonArray, asJsonObject, asNumber, asString, audioAnalysisCapability, audioAnalyzerCapability, audioCodecCapability, audioMetricsCapability, authProviderCapability, autoAssignProfiles, automationControlCapability, backupCapability, batteryCapability, bestLocationMatch, binaryCapability, bindAddonActions, brightnessCapability, brokerCapability, buildAddonRouteProvider, buildEventKindDescriptor, buildModelVariantGroups, buildNcTaxonomy, buildStreamParamsConfigSchema, buttonCapability, cameraCredentialsCapability, cameraPipelineConfigCapability, cameraStreamsCapability, canConvertUnit, carbonMonoxideCapability, cellsToRects, classifyStream, classifyStreams, climateControlCapability, collectHydratedFieldEntries, collectHydratedFieldValues, colorCapability, colorForKind, compileExpression, compileExpressionSafe, connectivityCapability, consumablesCapability, contactCapability, controlCapability, convertUnit, cosineSimilarity, coverCapability, createDeviceProxy, createDurableState, createEvent, createExpressionScope, createLazyTrpcSource, createMirrorSource, createRuntimeStateBridge, createSliceHandle, createSystemProxy, customAction, customModelRegistryCapability, dayNightCapability, decoderCapability, defaultDeviceFor, defineCustomActions, deriveRecordingMode, describeModelVariant, detectionPipelineCapability, deviceAdoptionCapability, deviceBackendToFormat, deviceCustomAction, deviceDiscoveryCapability, deviceExportCapability, deviceManagerCapability, deviceMatchesProfile, deviceOpsCapability, deviceProviderCapability, deviceStateCapability, deviceStatusCapability, doorbellCapability, embeddingEncoderCapability, emitDownForOwnedCaps, emitReadiness, encodeProfileFromStreamShape, enumSensorCapability, enumerateInferenceDevices, enumerateItemArrayFields, enumerateSchemaFields, errMsg, evaluateAst, evaluateLinkExpression, evaluateZoneRules, event, eventEmitterCapability, eventsCapability, expandCapMethods, extractNestedAddonId, extractSourceInfoFromMetadata, faceGalleryCapability, fanControlCapability, featureProbeCapability, filesystemBrowseCapability, findTimezone, floodCapability, formatForBackend, formatForRuntime, gasCapability, getAudioMacroClassIds, getByPath, getCapsByProviderKind, getTaxonomyEntry, hasMotionTrigger, hfModelUrl, htmlToText, humidifierCapability, humiditySensorCapability, hydrateSchema, imageCapability, imageSettingsCapability, integrationsCapability, intercomCapability, isAgentOnlyPlacement, isArrayOutputSchema, isBaseConditionKey, isCollectionArrayMethod, isDeployableToAgent, isDeviceConfigCap, isEvent, isNode, isObjectInput, isVoidInput, jobKindSchema, kebabToCamel, knownValues, lawnMowerControlCapability, lifecycleJobSchema, lifecycleJobScopeSchema, lifecycleJobStateSchema, lifecycleTaskSchema, llmCapability, llmRuntimeCapability, localNetworkCapability, locationSimilarity, lockControlCapability, logDestinationCapability, logLevelAtMost, loginMethodCapability, looseSchema, makeProfileBrokerId, makeSourceBrokerId, mapAudioLabelToMacro, markdownToHtmlLite, markdownToText, maskUrlCredentials, mediaPlayerCapability, mergeSourceInfo, meshNetworkCapability, method, metricsProviderCapability, modelConvertCapability, modelDistributorCapability, modelFormatForRuntime, motionCapability, motionDetectionCapability, motionTriggerCapability, motionZonesCapability, mqttBrokerCapability, nativeObjectDetectionCapability, networkAccessCapability, networkQualityCapability, nodePin, nodesCapability, normalizeAddonInitResult, normalizeUnit, notificationOutputCapability, notificationRulesCapability, notifierCapability, numericSensorCapability, oauthIntegrationCapability, objectInputDeclaresAddonId, osdCapability, parseCameraStreamConfig, parseExpression, parseJsonArray, parseJsonObject, parseJsonUnknown, parseProfileBrokerId, parseStreamParamsFormPatch, petFeederCapability, pickAccessoryControl, pickPreferredRtspEntry, pickerForCondition, pipelineAnalyticsCapability, pipelineExecutorCapability, pipelineOrchestratorCapability, pipelineRunnerCapability, plateGalleryCapability, platformProbeCapability, powerMeterCapability, prepareNotification, presenceCapability, pressureSensorCapability, privacyMaskCapability, procedureAuthKey, ptzAutotrackCapability, ptzCapability, pythonScriptForBackend, readNodePin, readinessKey, rebootCapability, recordingCapability, recordingExportCapability, rectsToCells, requiresPython, resolveAddonExecution, resolveAddonGroup, resolveAddonPlacement, resolveAddonRuntime, resolveCapMount, resolveDetectionRuntime, resolveDeviceControlKind, resolveDeviceProfile, resolveFormat, resolveHydratedFieldValue, resolveModelFormat, resolveMutate, resolveRunnerId, resolveScrubThumbnailGeometry, resolveVariantModelId, runInferenceStep, runtimeDevices, sceneMonitorCapability, scopeKey, scoreRuntimes, scriptRunnerCapability, selectAssignedProfileSlots, serverManagementCapability, setByPath, settingsStoreCapability, sleep, sleepCancellable, smokeCapability, smtpProviderCapability, snapshotCapability, ssoBridgeCapability, startReachabilityPoll, storageCapability, storageEvictableCapability, storageProviderCapability, streamBrokerCapability, streamCatalogCapability, streamParamsCapability, streamPixels, streamQualityLabel, subKindsOf, supportedRuntimes, switchCapability, synthesizeSourceInfo, systemCapability, tamperCapability, taskLogEntrySchema, taskPhaseSchema, taskTargetSchema, temperatureSensorCapability, terminalSessionCapability, textToHtml, toDeviceSummary, toExpressionValue, toStreamSourceEntry, toastCapability, tokenize, transcodeBody, tryConvertUnit, turnProviderCapability, unitDimension, unitsForDimension, updateCapability, userManagementCapability, userPasskeysCapability, vacuumControlCapability, validateExpressionSource, valveCapability, vibrationCapability, videoclipsCapability, viewerUiCapability, waterHeaterCapability, weatherCapability, webrtcClientHintsSchema, webrtcSessionCapability, wiringAddonHealthSchema, wiringHealthSnapshotSchema, wiringNodeHealthSchema, wiringProbeKindSchema, wiringProbeResultSchema, zodEntriesToConfigUI, zoneAnalyticsCapability, zoneRulesCapability, zonesCapability };
|
|
33809
|
+
export { ACCESSORY_LABEL, ALL_CAPABILITY_DEFINITIONS, APPLE_SA_TO_MACRO, AUDIO_BACKEND_CHOICES, AUDIO_MACRO_LABELS, AccessoriesStatusSchema, AccessoryKind, AddBrokerInputSchema, AddonAutoUpdateSchema, AddonListItemSchema, AddonPageDeclarationSchema, AddonPageInfoSchema, AdoptInputSchema as AdoptionAdoptInputSchema, AdoptResultSchema as AdoptionAdoptResultSchema, AdoptionFilterSchema, GetCandidateInputSchema as AdoptionGetCandidateInputSchema, ListCandidatesInputSchema as AdoptionListCandidatesInputSchema, ListCandidatesOutputSchema as AdoptionListCandidatesOutputSchema, ReleaseInputSchema as AdoptionReleaseInputSchema, AdoptionStatusSchema, AgentLoadSummarySchema, AirQualitySensorStatusSchema, AlarmArmModeSchema, AlarmPanelStatusSchema, AlarmStateSchema, AlertSchema, AlertSeveritySchema, AlertSourceSchema, AlertStatusSchema, AmbientLightSensorStatusSchema, ApiKeyRecordSchema, ApiKeySummarySchema, ArchiveEntrySchema, ArchiveManifestSchema, AttachmentMediaTypeSchema, AttachmentSchema, AudioAnalysisResultSchema, AudioAnalysisSettingsSchema, AudioChunkInputSchema, AudioClassSummarySchema, AudioClassificationLabelSchema, AudioClassificationResultSchema, AudioCodecInfoSchema, AudioDecodeSessionConfigSchema, AudioEncodeSchema, AudioEncodeSessionConfigSchema, AudioEncodedChunkSchema, AudioEventSchema, AudioLevelSchema, AudioMetricsHistoryPointSchema, AudioMetricsHistorySchema, AudioMetricsSnapshotSchema, AudioPcmChunkSchema, AuthResultSchema, AutoUpdateSettingsSchema, AutomationControlStatusSchema, AvailableIntegrationTypeSchema, BACKEND_TO_FORMAT, BATTERY_DEVICE_PROFILE, BacklightModeSchema, BackupDestinationInfoSchema, BackupEntrySchema, BaseAddon, BaseDevice, BaseDeviceProvider, BatteryStatusSchema, BinaryStatusSchema, BoundingBoxSchema, BrightnessStatusSchema, AddInputSchema as BrokerAddInputSchema, BrokerAudioClientSchema, BrokerClientsSchema, BrokerConnectionDetailsSchema, BrokerConsumerAttributionSchema, BrokerConsumerKindSchema, BrokerDecodedClientSchema, BrokerEncodedClientSchema, GetStateInputSchema as BrokerGetStateInputSchema, BrokerInfoSchema, BrokerProviderInfoSchema, PublishInputSchema as BrokerPublishInputSchema, RegistryStatusSchema as BrokerRegistryStatusSchema, BrokerRtspClientSchema, BrokerStatsSchema, BrokerStatusEnum, BrokerStatusSchema, SubscribeInputSchema as BrokerSubscribeInputSchema, SubscribeResultSchema as BrokerSubscribeResultSchema, TestConnectionResultSchema as BrokerTestConnectionResultSchema, UnsubscribeInputSchema as BrokerUnsubscribeInputSchema, CAM_PROFILE_ORDER, CAPABILITY_NAMES, CAPABILITY_ROUTER_KEYS, CAP_NAMES_WITH_STATUS, CAP_NODE_PIN_CONTEXT_KEY, CAP_PROVIDER_KIND_MAP, COCO_80_LABELS, COCO_TO_MACRO, CamProfileSchema, CamStreamDescriptorSchema, CamStreamKindSchema, CamStreamResolutionSchema, CameraAssignmentStatusSchema, CameraAudioStatusSchema, CameraBrokerProfileSchema, CameraBrokerStatusSchema, CameraCredentialsSchema, CameraCredentialsStatusSchema, CameraDecoderShmSchema, CameraDecoderStatusSchema, CameraDetectionPhaseSchema, CameraDetectionProvisioningSchema, CameraDetectionProvisioningStateSchema, CameraDetectionStatusSchema, CameraMetricsSchema, CameraMetricsWithDeviceIdSchema, CameraMotionStatusSchema, CameraRecordingModeSchema, CameraRecordingStatusSchema, CameraSourceStatusSchema, CameraSourceStreamSchema, CameraStatusSchema, CameraStreamSchema, CandidateQueryFilterSchema, CapScopeSchema, CapabilityBindingsSchema, CarbonMonoxideStatusSchema, ChargingStatus, ClientNetworkStatsSchema, ClimateControlStatusSchema, ClipPlaybackSchema, ClipSchema, ClusterAddonNodeDeploymentSchema, ClusterAddonStatusEntrySchema, CollectionColumnSchema, CollectionIndexSchema, ColorStatusSchema, ConfigEntrySchema, ConfigSectionWithValuesSchema, ConfigTabDeclarationSchema, ConnectivityStatusSchema, ConsumableItemSchema, ConsumablesStatusSchema, ContactStatusSchema, ControlKindSchema, ControlStatusSchema, ConvertArtifactSchema, ConvertResultSchema, ConvertTargetSchema, CoverStateSchema, CoverStatusSchema, CreateApiKeyInputSchema, CreateApiKeyResultSchema, CreateIntegrationInputSchema, CreateScopedTokenInputSchema, CreateScopedTokenResultSchema, CreateUserInputSchema, CustomActionInputSchema, CustomModelDescriptorSchema, DATAPLANE_SECRET_HEADER, DEFAULT_ADDON_PLACEMENT, DEFAULT_AUDIO_ANALYZER_CONFIG, DEFAULT_DECODER_HWACCEL_CONFIG, DEFAULT_EVENT_COLOR, DEFAULT_FEATURES, DEFAULT_RETENTION, DEFAULT_SCRUB_THUMBNAIL_PRESET, DEVICE_BACKEND_TO_FORMAT, DEVICE_CAP_NAMES, DEVICE_PROFILES, DEVICE_SETTINGS_CONTRIBUTION_METHODS, DEVICE_STATUS_METHOD, DEVICE_TYPE_CONTROL_KIND, DEVICE_TYPE_INFO, EngineInfoSchema as DataStoreEngineInfoSchema, DayNightModeSchema, DayNightOptionsSchema, DayNightSettingsPatchSchema, DayNightStatusSchema, DecodedAudioChunkSchema, DecodedFrameSchema, DecoderSessionConfigSchema, DecoderStatsSchema, DeleteIntegrationResultSchema, DetectionSourceSchema, DeviceCodeSeveritySchema, DeviceConfig, DeviceDiscoveryStatusSchema, ExposeInputSchema as DeviceExportExposeInputSchema, DeviceExportStatusSchema, UnexposeInputSchema as DeviceExportUnexposeInputSchema, DeviceFeature, DeviceInfoSchema, DeviceLinkModeSchema, DeviceNetworkStatsSchema, DeviceRole, DeviceRuntimeState, DeviceStatusSchema, DeviceType, DiscoveredChildDeviceSchema, DiscoveredChildStatusSchema, DiscoveredDeviceSchema, DiscoveredTargetSchema, DisposerChain, DoorbellPressEventSchema, DoorbellStatusSchema, EVENTFUL_CAP_NAMES, EVENT_KIND_BY_CAP, EVENT_PAD_MS, EVENT_TAXONOMY, EXPRESSION_BUILTINS, EXPRESSION_BUILTIN_NAMES, EXPRESSION_COMPILE_CACHE_CAPACITY, EXPRESSION_IDENTIFIER_RE, EXPRESSION_INJECTED_NOW, ElementConfigStore, EmbeddingInfoSchema, EmbeddingResultSchema, EncodeProfileSchema, EncodedPacketSchema, EnrichedWidgetMetadataSchema, EnumSensorDateTimeFormatSchema, EnumSensorStatusSchema, EventCategory, EventEmitterStatusSchema, EventFireSchema, EventItemSchema, EventKindCategorySchema, EventKindDescriptorSchema, EventKindIconSchema, EventKindSchema, EventSourceType, ExportDownloadSchema, ExportOptionsSchema, ExportRecordSchema, ExportSetupFieldSchema, ExportSetupSchema, ExportSpeedSchema, ExportStateSchema, ExportTimelapseSchema, ExposedDeviceSchema, ExposureModeSchema, ExpressionEvalError, ExpressionParseError, FanControlStatusSchema, FanDirectionSchema, FeatureManifestSchema, FeatureProbeStatusSchema, FloodStatusSchema, FrameHandleFormatSchema, FrameHandleSchema, FrameInputSchema, GasStatusSchema, GetStreamWithCodecInputSchema, GlobalMetricsSchema, HF_BASE_URL, HF_REPO, HWACCEL_OPTIONS, HealthStatusSchema, HistoryPointSchema, HistoryResolutionEnum, HumidifierStatusSchema, HumiditySensorStatusSchema, HvacModeSchema, ImageContractSchema, ImageContractStateSchema, ImageRotateSchema, ImageSettingsOptionsSchema, ImageSettingsPatchSchema, ImageSettingsStatusSchema, ImageStatusSchema, IngestOwnerSchema, InstalledPackageSchema, IntegrationLiteSchema, IntegrationWithStateSchema, IntercomAbilitySchema, IntercomStatusSchema, KNOWN_CAP_NAMES, KeyEventSchema, LOG_LEVEL_RANK, LabelDefinitionSchema, LawnMowerActivitySchema, LawnMowerControlStatusSchema, LinkedDeviceSchema, LlmDefaultSchema, LlmDefaultSelectorSchema, LlmErrorCodeSchema, LlmGenerateBaseInputSchema, LlmGenerateErrSchema, LlmGenerateOkSchema, LlmGenerateResultSchema, LlmImageSchema, LlmNodeModelSchema, LlmProfileKindDescriptorSchema, LlmProfileKindSchema, LlmProfileSchema, LlmRuntimeCompleteInputSchema, LlmRuntimeDiskUsageSchema, LlmRuntimeNodeSchema, LlmRuntimeStatusSchema, LlmUsageRollupSchema, LlmUsageSchema, LocateSegmentResultSchema, LocationStatSchema, LockControlStatusSchema, LockStateSchema, LogEntrySchema, LogLevelSchema, LogStreamEntrySchema, LoginMethodContributionSchema, LoginStageEnum, MACRO_LABELS, MAX_EXPRESSION_AST_NODES, MAX_EXPRESSION_BINDINGS, MAX_EXPRESSION_CALL_ARGS, MAX_EXPRESSION_EVAL_STEPS, MAX_EXPRESSION_SOURCE_LENGTH, METHOD_ACCESS_MAP, MODEL_FORMATS, MOTION_TRIGGER_FEATURE, ManagedModelCatalogEntrySchema, ManagedModelRefSchema, ManagedRuntimeConfigSchema, MaskGridDimsSchema, MaskGridShapeSchema, MaskLineShapeSchema, MaskPointSchema, MaskPolygonShapeSchema, MaskPolygonVerticesSchema, MaskRectShapeSchema, MaskShapeKindSchema, MaskShapeSchema, MediaFileSchema, MediaPlayerRepeatSchema, MediaPlayerStateSchema, MediaPlayerStatusSchema, MeshPeerSchema, MeshStatusSchema, MethodAccessSchema, ModelCatalogEntrySchema, ModelConvertInputSchema, ModelConvertMetadataSchema, ModelDistributeInputSchema, ModelDistributeResultSchema, ModelExtraFileSchema, ModelFormatEntrySchema, ModelFormatsSchema, ModelSubstitutionSchema, ModelVariantGroupSchema, MotionAnalysisResultSchema, MotionEventSchema, MotionOnMotionChangedDataSchema, MotionRegionSchema, MotionSourceEnum, MotionSourcesSchema, MotionStatusSchema, MotionTriggerRuntimeStateSchema, MotionTriggerStatusSchema, MotionZoneOptionsSchema, MotionZonePatchSchema, MotionZoneRegionSchema, MotionZoneStatusSchema, StatusSchema as MqttBrokerStatusSchema, NC_BASE_CONDITION_KEYS, NC_CONDITION_CATALOG, NC_HISTORY_LIMIT_DEFAULT, NC_HISTORY_LIMIT_MAX, NC_MAX_PER_TRACK_IMMEDIATE, NC_TAXONOMY, NativeCropBboxSchema, NativeCropRefSchema, NativeCropResultSchema, NativeDetectionSchema, NativeObjectClassEnum, NativeObjectDetectionRuntimeStateSchema, NativeObjectDetectionStatusSchema, NcConditionDescriptorSchema, NcConditionsSchema, NcCrossingSchema, NcDeliverySchema, NcHistoryEntrySchema, NcHistoryFilterSchema, NcHistoryRecordKindSchema, NcHistoryStatusSchema, NcHistorySubjectSchema, NcMediaFrameSchema, NcMediaPolicySchema, NcOccupancyConditionSchema, NcPlateMatcherSchema, NcRuleInputSchema, NcRulePatchSchema, NcRuleSchema, NcRuleTargetSchema, NcScheduleSchema, NcScheduleWindowSchema, NcTaxonomyEntrySchema, NcTaxonomySchema, NcTestResultSchema, NcThrottleGranularitySchema, NcThrottleSchema, NcZoneConditionSchema, NetworkAccessStatusSchema, NetworkAddressSchema, NetworkEndpointSchema, NotificationActionSchema, NotificationFormatSchema, NotificationSchema, NotifierStatusSchema, NumericSensorStatusSchema, OPS_LOG_DEFAULT_LIMIT, OPS_LOG_RING_DEFAULT_MAX, OauthIntegrationDescriptorSchema, ObjectEventSchema, OpsLogDomainSchema, OpsLogEntrySchema, OpsLogOpSchema, OpsLogQueryInputSchema, OpsLogReasonSchema, OrchestratorMetricsSchema, OsdOverlayKindEnum, OsdOverlayPatchSchema, OsdOverlaySchema, OsdPositionEnum, OsdStatusSchema, PET_FEEDER_MANUAL_FEED_MAX, PET_FEEDER_MANUAL_FEED_MIN, PIPELINE_FLOW_CAPABILITY_NAMES, PIPELINE_OWNER_CAPABILITY_NAMES, PROVIDER_KIND_CAP_NAMES, PYTHON_SCRIPT, PackageUpdateSchema, PackageVersionInfoSchema, PasskeyLoginMethodSchema, PasskeySummarySchema, PcmSampleFormatSchema, PerScopeBreakdownSchema, PetFeederStatusSchema, PickStreamPreferencesSchema, PickStreamRequirementsSchema, PickedCamStreamSchema, PipelineAssignmentSchema, PipelineDefaultStepSchema, PipelineEngineChoiceSchema, PipelineRunResultBridge, PipelineStepInputSchema, PipelineValidationIssueSchema, PipelineValidationResultSchema, PlaceholderReasonSchema, PolygonPointSchema, PowerMeterStatusSchema, PresenceStatusSchema, PressureSensorStatusSchema, PrivacyMaskOptionsSchema, PrivacyMaskPatchSchema, PrivacyMaskRegionSchema, PrivacyMaskShapeSchema, PrivacyMaskStatusSchema, ProfileRtspEntrySchema, ProfileSlotSchema, ProfileSlotStatusSchema, ProviderStatusSchema, PtzAutotrackRuntimeStateSchema, PtzAutotrackSettingsSchema, PtzAutotrackStatusSchema, PtzAutotrackTargetOptionSchema, PtzMoveCommandSchema, PtzOptionsSchema, PtzPositionSchema, PtzPresetSchema, PtzStatusSchema, QueryFilterSchema, REACHABILITY_FAILURES_TO_OFFLINE, REACHABILITY_POLL_INTERVAL_MS, REACHABILITY_PROBE_TIMEOUT_MS, RECOGNITION_TYPES, RESERVED_BINDING_NAMES, RUNTIME_DEFAULTS, RUNTIME_TO_FORMAT, RawStateResultSchema, ReadSegmentBytesResultSchema, ReadinessRegistry, ReadinessTimeoutError, RecentTracksPageSchema, RecentTracksQueryInput, RecordingAvailabilitySchema, RecordingBandModeSchema, RecordingBandSchema, RecordingBandTriggersSchema, RecordingConfigSchema, RecordingDaysSchema, RecordingDeviceUsageSchema, RecordingLocationUsageSchema, RecordingManifestSchema, RecordingRangeSchema, RecordingRetentionSchema, RecordingStatusSchema, RecordingStorageModeSchema, RecordingStorageUsageSchema, RecordingTriggersSchema, RecordingWeekdaySchema, RedirectLoginMethodSchema, RelocateFootageInputSchema, RelocateJobSchema, RelocateJobStateSchema, RelocateMediaInputSchema, RenderedAsSchema, ReportMotionInputSchema, RingBuffer, RtpSourceSchema, RtspRestreamEntrySchema, RunnerCameraConfigSchema, RunnerCameraDeviceUIFields, RunnerFrameSourceSchema, RunnerInferenceDeviceSchema, RunnerLocalLoadSchema, RunnerLocalMetricsSchema, SCOPE_PRESETS, SCRUB_THUMBNAIL_PRESETS, SCRUB_THUMBNAIL_PRESET_LABELS, SCRUB_THUMBNAIL_PRESET_ORDER, SENSOR_FEATURES, SENSOR_MAP, SOURCE_INFO_METADATA_KEY, STREAM_PROFILE_META, STREAM_QUALITY_LABELS, SUB_DETECTION_TYPES, SYSTEM_CAP_NAMES, SceneCheckSchema, SceneConditionSchema, SceneMonitorSchema, SceneMonitorStateSchema, SceneMonitorStatusSchema, SceneReferenceSchema, ScopedTokenSchema, ScopedTokenSummarySchema, ScoredObjectEventSchema, ScriptRunnerStatusSchema, ScrubThumbnailPresetSchema, SearchResultSchema, SendEmailInputSchema, SendEmailResultSchema, SendResultSchema, SensorEventSchema, ServerBootModeSchema, ServerPackageStatusSchema, ServerRollbackInfoSchema, ServerUpdateActionResultSchema, ServerUpdateCheckResultSchema, ServerUpdateStateSchema, SettingsPatchSchema, SettingsRecordSchema, SettingsSchemaWithValuesSchema, SettingsUpdateResultSchema, ShmRingStatsSchema, SmokeStatusSchema, SmtpStatusSchema, SnapshotImageSchema, SourceInfoSchema, SpatialDetectionSchema, SsoBridgeClaimsSchema, StartEmbeddedInputSchema, StationaryObjectSchema, AbortUploadInputSchema as StorageAbortUploadInputSchema, BeginDownloadInputSchema as StorageBeginDownloadInputSchema, BeginDownloadResultSchema as StorageBeginDownloadResultSchema, BeginUploadInputSchema as StorageBeginUploadInputSchema, BeginUploadResultSchema as StorageBeginUploadResultSchema, EndDownloadInputSchema as StorageEndDownloadInputSchema, FinalizeUploadInputSchema as StorageFinalizeUploadInputSchema, StorageLocationDeclarationSchema, StorageLocationRefSchema, StorageLocationSchema, StorageLocationTypeSchema, ProviderInfoSchema as StorageProviderInfoSchema, ReadChunkInputSchema as StorageReadChunkInputSchema, TestLocationResultSchema as StorageTestLocationResultSchema, WriteChunkInputSchema as StorageWriteChunkInputSchema, StreamCodecSchema, StreamFormatSchema, StreamNetworkStatsSchema, StreamParamsOptionsSchema, StreamParamsStatusSchema, StreamProfileConfigSchema, StreamProfileOptionsSchema, StreamProfilePatchSchema, StreamProfileSchema, StreamSourceEntrySchema, StreamSourceSchema, SubscribeAudioChunksInputSchema, SubscribeAudioChunksResultSchema, SubscribeFramesInputSchema, SubscribeFramesResultSchema, SwitchStatusSchema, SystemMetricsSchema, SystemMirror, TAXONOMY_COLORS, TIMEZONES, TamperStatusSchema, TankStatusSchema, TargetKindCapsSchema, TargetKindLevelSchema, TargetKindSchema, TargetSchema, TemperatureSensorStatusSchema, TerminalProfileInfoSchema, TerminalSessionInfoSchema, TestConnectionResultSchema$1 as TestConnectionResultSchema, TestResultSchema, TimelapseRuleInputSchema, TimelapseRulePatchSchema, TimelapseRuleSchema, TimelapseTemplateSchema, ToastSchema, TokenScopeSchema, TopologyNodeSchema, TopologyProcessSchema, TopologyServiceSchema, TrackCascadeCountsSchema, TrackEnvelopeSchema, TrackProjectionSchema, TrackSchema, TrackStateSchema, TrackZoneFilterSchema, TrackedDetectionSchema, TurnServerSchema, UNIT_TABLE, BrokerInfoSchema$1 as UnifiedBrokerInfoSchema, UnitConversionError, UpdateIntegrationInputSchema, UpdateStatusSchema, UpdateUserInputSchema, UserRecordSchema, UserSummarySchema, VacuumControlStatusSchema, VacuumStateSchema, ValveStateSchema, ValveStatusSchema, VibrationStatusSchema, VideoEncodeSchema, WELL_KNOWN_TABS, WELL_KNOWN_TAB_MAP, WaterHeaterStatusSchema, WeatherStatusSchema, WebrtcStreamChoiceSchema, WebrtcStreamTargetSchema, WhiteBalanceModeSchema, WidgetHostEnum, WidgetLoginMethodSchema, WidgetMetadataSchema, WidgetRemoteSchema, WidgetSizeEnum, YAMNET_TO_MACRO, ZoneCrossingDirectionSchema, ZoneCrossingSchema, ZoneKindEnum, ZoneRuleModeEnum, ZoneRuleSchema, ZoneRuleStageEnum, ZoneRulesArraySchema, ZoneSchema, ZoneScopeBreakdownSchema, accessoriesCapability, accessoryStableId, addonPagesCapability, addonPagesSourceCapability, addonRoutesCapability, addonSettingsCapability, addonWidgetsCapability, addonWidgetsSourceCapability, addonsCapability, adminUiCapability, airQualitySensorCapability, alarmPanelCapability, alertsCapability, ambientLightSensorCapability, applyTransform, asBoolean, asJsonArray, asJsonObject, asNumber, asString, audioAnalysisCapability, audioAnalyzerCapability, audioCodecCapability, audioMetricsCapability, authProviderCapability, autoAssignProfiles, automationControlCapability, backupCapability, batteryCapability, bestLocationMatch, binaryCapability, bindAddonActions, brightnessCapability, brokerCapability, buildAddonRouteProvider, buildEventKindDescriptor, buildModelVariantGroups, buildNcTaxonomy, buildStreamParamsConfigSchema, buttonCapability, cameraCredentialsCapability, cameraPipelineConfigCapability, cameraStreamsCapability, canConvertUnit, carbonMonoxideCapability, cellsToRects, classifyStream, classifyStreams, climateControlCapability, collectHydratedFieldEntries, collectHydratedFieldValues, colorCapability, colorForKind, compileExpression, compileExpressionSafe, connectivityCapability, consumablesCapability, contactCapability, controlCapability, convertUnit, cosineSimilarity, coverCapability, createDeviceProxy, createDurableState, createEvent, createExpressionScope, createLazyTrpcSource, createMirrorSource, createRuntimeStateBridge, createSliceHandle, createSystemProxy, customAction, customModelRegistryCapability, dataStoreProviderCapability, dayNightCapability, decoderCapability, defaultDeviceFor, defineCustomActions, deriveRecordingMode, describeModelVariant, detectionPipelineCapability, deviceAdoptionCapability, deviceBackendToFormat, deviceCustomAction, deviceDiscoveryCapability, deviceExportCapability, deviceManagerCapability, deviceMatchesProfile, deviceOpsCapability, deviceProviderCapability, deviceStateCapability, deviceStatusCapability, doorbellCapability, embeddingEncoderCapability, emitDownForOwnedCaps, emitReadiness, encodeProfileFromStreamShape, enumSensorCapability, enumerateInferenceDevices, enumerateItemArrayFields, enumerateSchemaFields, errMsg, evaluateAst, evaluateLinkExpression, evaluateZoneRules, event, eventEmitterCapability, eventsCapability, expandCapMethods, extractNestedAddonId, extractSourceInfoFromMetadata, faceGalleryCapability, fanControlCapability, featureProbeCapability, filesystemBrowseCapability, findTimezone, floodCapability, formatForBackend, formatForRuntime, gasCapability, getAudioMacroClassIds, getByPath, getCapsByProviderKind, getTaxonomyEntry, hasMotionTrigger, hfModelUrl, htmlToText, humidifierCapability, humiditySensorCapability, hydrateSchema, imageCapability, imageSettingsCapability, integrationsCapability, intercomCapability, isAgentOnlyPlacement, isArrayOutputSchema, isBaseConditionKey, isCollectionArrayMethod, isDeployableToAgent, isDeviceConfigCap, isEvent, isNode, isObjectInput, isVoidInput, jobKindSchema, kebabToCamel, knownValues, lawnMowerControlCapability, lifecycleJobSchema, lifecycleJobScopeSchema, lifecycleJobStateSchema, lifecycleTaskSchema, llmCapability, llmRuntimeCapability, localNetworkCapability, locationSimilarity, lockControlCapability, logDestinationCapability, logLevelAtMost, loginMethodCapability, looseSchema, makeProfileBrokerId, makeSourceBrokerId, mapAudioLabelToMacro, markdownToHtmlLite, markdownToText, maskUrlCredentials, mediaPlayerCapability, mergeSourceInfo, meshNetworkCapability, method, metricsProviderCapability, modelConvertCapability, modelDistributorCapability, modelFormatForRuntime, motionCapability, motionDetectionCapability, motionTriggerCapability, motionZonesCapability, mqttBrokerCapability, nativeObjectDetectionCapability, networkAccessCapability, networkQualityCapability, nodePin, nodesCapability, normalizeAddonInitResult, normalizeUnit, notificationOutputCapability, notificationRulesCapability, notifierCapability, numericSensorCapability, oauthIntegrationCapability, objectInputDeclaresAddonId, osdCapability, parseCameraStreamConfig, parseExpression, parseJsonArray, parseJsonObject, parseJsonUnknown, parseProfileBrokerId, parseStreamParamsFormPatch, petFeederCapability, pickAccessoryControl, pickPreferredRtspEntry, pickerForCondition, pipelineAnalyticsCapability, pipelineExecutorCapability, pipelineOrchestratorCapability, pipelineRunnerCapability, plateGalleryCapability, platformProbeCapability, powerMeterCapability, prepareNotification, presenceCapability, pressureSensorCapability, privacyMaskCapability, procedureAuthKey, ptzAutotrackCapability, ptzCapability, pythonScriptForBackend, readNodePin, readinessKey, rebootCapability, recordingCapability, recordingExportCapability, rectsToCells, requiresPython, resolveAddonExecution, resolveAddonGroup, resolveAddonPlacement, resolveAddonRuntime, resolveCapMount, resolveDetectionRuntime, resolveDeviceControlKind, resolveDeviceProfile, resolveFormat, resolveHydratedFieldValue, resolveModelFormat, resolveMutate, resolveRunnerId, resolveScrubThumbnailGeometry, resolveVariantModelId, runInferenceStep, runtimeDevices, sceneMonitorCapability, scopeKey, scoreRuntimes, scriptRunnerCapability, selectAssignedProfileSlots, serverManagementCapability, setByPath, settingsStoreCapability, sleep, sleepCancellable, smokeCapability, smtpProviderCapability, snapshotCapability, ssoBridgeCapability, startReachabilityPoll, storageCapability, storageEvictableCapability, storageProviderCapability, streamBrokerCapability, streamCatalogCapability, streamParamsCapability, streamPixels, streamQualityLabel, subKindsOf, supportedRuntimes, switchCapability, synthesizeSourceInfo, systemCapability, tamperCapability, taskLogEntrySchema, taskPhaseSchema, taskTargetSchema, temperatureSensorCapability, terminalSessionCapability, textToHtml, toDeviceSummary, toExpressionValue, toStreamSourceEntry, toastCapability, tokenize, transcodeBody, tryConvertUnit, turnProviderCapability, unitDimension, unitsForDimension, updateCapability, userManagementCapability, userPasskeysCapability, vacuumControlCapability, validateExpressionSource, valveCapability, vibrationCapability, videoclipsCapability, viewerUiCapability, waterHeaterCapability, weatherCapability, webrtcClientHintsSchema, webrtcSessionCapability, wiringAddonHealthSchema, wiringHealthSnapshotSchema, wiringNodeHealthSchema, wiringProbeKindSchema, wiringProbeResultSchema, zodEntriesToConfigUI, zoneAnalyticsCapability, zoneRulesCapability, zonesCapability };
|