@camstack/types 1.2.112 → 1.2.114
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/capabilities/face-gallery.cap.d.ts +60 -0
- package/dist/capabilities/index.d.ts +2 -2
- package/dist/capabilities/recording.cap.d.ts +18 -0
- package/dist/capabilities/system.cap.d.ts +618 -1
- package/dist/catalogs/index.d.ts +1 -0
- package/dist/catalogs/sensor-active-state.d.ts +130 -0
- package/dist/generated/addon-api.d.ts +21 -0
- package/dist/generated/method-access-map.d.ts +1 -1
- package/dist/generated/system-proxy.d.ts +1 -1
- package/dist/index.d.ts +7 -6
- package/dist/index.js +882 -107
- package/dist/index.mjs +850 -108
- package/dist/interfaces/recording-config.d.ts +44 -0
- package/dist/pipeline/native-lease.d.ts +9 -1
- package/dist/types/detection.d.ts +11 -2
- package/dist/types/labels.d.ts +26 -0
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -1435,6 +1435,76 @@ var OPS_LOG_RING_DEFAULT_MAX = 500;
|
|
|
1435
1435
|
/** Default page size for a `listOpsLog` query when the caller omits `limit`. */
|
|
1436
1436
|
var OPS_LOG_DEFAULT_LIMIT = 200;
|
|
1437
1437
|
//#endregion
|
|
1438
|
+
//#region src/types/labels.ts
|
|
1439
|
+
var LabelDefinitionSchema = z.object({
|
|
1440
|
+
id: z.string(),
|
|
1441
|
+
name: z.string(),
|
|
1442
|
+
category: z.string().optional(),
|
|
1443
|
+
description: z.string().optional(),
|
|
1444
|
+
icon: z.string().optional()
|
|
1445
|
+
});
|
|
1446
|
+
/** Detection-macro targets a catalog `classMap` may resolve to. */
|
|
1447
|
+
var CLASS_MAP_MACRO_TARGETS = [
|
|
1448
|
+
"person",
|
|
1449
|
+
"vehicle",
|
|
1450
|
+
"animal",
|
|
1451
|
+
"package"
|
|
1452
|
+
];
|
|
1453
|
+
/**
|
|
1454
|
+
* Le macro classi di PRIMO LIVELLO: quelle che un object detector emette e che
|
|
1455
|
+
* un operatore può selezionare.
|
|
1456
|
+
*
|
|
1457
|
+
* Sono le tre offerte dallo step `object-detection`
|
|
1458
|
+
* (`addon-pipeline/src/detection-pipeline/registry/step-definitions.ts`,
|
|
1459
|
+
* `enabledMacroClasses`). `package` sta in {@link CLASS_MAP_MACRO_TARGETS} e in
|
|
1460
|
+
* `MACRO_LABELS` — è una macro vera — ma NON qui: appartiene allo step
|
|
1461
|
+
* `package-detection`, la cui abilitazione è guidata dalle zone, e offrire la
|
|
1462
|
+
* stessa parola due volte ha già fatto accendere a un operatore il proxy COCO
|
|
1463
|
+
* (suitcase/backpack/handbag) lasciando spento il detector dedicato.
|
|
1464
|
+
*
|
|
1465
|
+
* UNA lista. Prima di oggi le stesse tre erano scritte a mano nell'offerta
|
|
1466
|
+
* dello step e una seconda volta come union `FirstLevelMacro`
|
|
1467
|
+
* (`types/detection.ts`); una terza copia per il trigger di registrazione
|
|
1468
|
+
* (`RecordingTriggers.objectClasses`) avrebbe reso invisibile la divergenza
|
|
1469
|
+
* successiva.
|
|
1470
|
+
*/
|
|
1471
|
+
var FIRST_LEVEL_MACRO_CLASSES = [
|
|
1472
|
+
"person",
|
|
1473
|
+
"vehicle",
|
|
1474
|
+
"animal"
|
|
1475
|
+
];
|
|
1476
|
+
/**
|
|
1477
|
+
* True quando `value` è una macro di primo livello. Type guard, non cast: un
|
|
1478
|
+
* `className` che arriva dal bus è una stringa qualunque finché non passa di
|
|
1479
|
+
* qui.
|
|
1480
|
+
*/
|
|
1481
|
+
function isFirstLevelMacroClass(value) {
|
|
1482
|
+
return FIRST_LEVEL_MACRO_CLASSES.some((macro) => macro === value);
|
|
1483
|
+
}
|
|
1484
|
+
/**
|
|
1485
|
+
* Wire schema for a per-model CATALOG classMap override
|
|
1486
|
+
* (`ModelCatalogEntry.classMap` / `ModelConvertMetadata.classMap`) —
|
|
1487
|
+
* restricted to {@link CLASS_MAP_MACRO_TARGETS}, the only macros the
|
|
1488
|
+
* detection pipeline executor actually routes.
|
|
1489
|
+
*
|
|
1490
|
+
* This is deliberately a DIFFERENT, narrower shape than the general-purpose
|
|
1491
|
+
* `ClassMapDefinition` interface above (e.g. `IDetectionAddon.getClassMap()`
|
|
1492
|
+
* and the audio `YAMNET_TO_MACRO` catalog both use macro targets outside this
|
|
1493
|
+
* enum) — the two used to share the name `ClassMapDefinition`/
|
|
1494
|
+
* `ClassMapDefinitionSchema`, which made the schema-type-twin guard
|
|
1495
|
+
* (`scripts/check-schema-type-twins.ts`) flag them as a duplicated shape. They
|
|
1496
|
+
* are not: it is two different concepts colliding on a name. Keep this type
|
|
1497
|
+
* under its own name rather than reusing `ClassMapDefinition` — reusing it
|
|
1498
|
+
* would either narrow every `ClassMapDefinition` consumer to the four
|
|
1499
|
+
* detection macros (breaking `YAMNET_TO_MACRO`) or drop the validation this
|
|
1500
|
+
* schema exists for (see the "rejects a classMap whose target is not a
|
|
1501
|
+
* detection macro" test in `model-catalog-schema.test.ts`).
|
|
1502
|
+
*/
|
|
1503
|
+
var DetectionCatalogClassMapSchema = z.object({
|
|
1504
|
+
mapping: z.record(z.string(), z.enum(CLASS_MAP_MACRO_TARGETS)),
|
|
1505
|
+
preserveOriginal: z.boolean()
|
|
1506
|
+
});
|
|
1507
|
+
//#endregion
|
|
1438
1508
|
//#region src/interfaces/recording-config.ts
|
|
1439
1509
|
/**
|
|
1440
1510
|
* THE canonical event-clip pad: the time window a single-timestamp analytics
|
|
@@ -1477,10 +1547,64 @@ var RecordingStorageModeSchema = z.enum([
|
|
|
1477
1547
|
"events",
|
|
1478
1548
|
"continuous"
|
|
1479
1549
|
]);
|
|
1550
|
+
/**
|
|
1551
|
+
* Le macro classi che possono aprire una finestra di registrazione — le stesse
|
|
1552
|
+
* tre offerte dallo step `object-detection`, da UNA lista
|
|
1553
|
+
* ({@link FIRST_LEVEL_MACRO_CLASSES}).
|
|
1554
|
+
*/
|
|
1555
|
+
var RecordingObjectTriggerClassSchema = z.enum(FIRST_LEVEL_MACRO_CLASSES);
|
|
1556
|
+
/**
|
|
1557
|
+
* True quando `values` non ripete un elemento.
|
|
1558
|
+
*
|
|
1559
|
+
* Un duplicato non è innocuo: ogni voce di `objectClasses` / `sensorDeviceIds`
|
|
1560
|
+
* diventa una SORGENTE in `bandTriggerSources`, e la stessa sorgente due volte
|
|
1561
|
+
* conterebbe due volte le sue finestre in `segmentMissedByMs`.
|
|
1562
|
+
*/
|
|
1563
|
+
var noDuplicates = (values) => new Set(values).size === values.length;
|
|
1564
|
+
/**
|
|
1565
|
+
* Quanti device sorgente una singola banda può ascoltare.
|
|
1566
|
+
*
|
|
1567
|
+
* Non è un gusto: ogni sorgente è una CHIAVE nel `TriggerState` del recorder, e
|
|
1568
|
+
* il limite per chiave (`MAX_TRIGGER_WINDOWS = 32`) senza un limite sulle
|
|
1569
|
+
* chiavi lascerebbe crescere la mappa con l'inventario dell'operatore. 16
|
|
1570
|
+
* sensori su UNA camera è già oltre qualunque installazione osservata.
|
|
1571
|
+
*/
|
|
1572
|
+
var MAX_SENSOR_TRIGGER_DEVICES = 16;
|
|
1480
1573
|
/** Which detectors trigger an `events`-mode band. */
|
|
1481
1574
|
var RecordingTriggersSchema = z.object({
|
|
1482
1575
|
motion: z.boolean().optional(),
|
|
1483
|
-
audioThresholdDbfs: z.number().optional()
|
|
1576
|
+
audioThresholdDbfs: z.number().optional(),
|
|
1577
|
+
/**
|
|
1578
|
+
* Le macro classi la cui detection apre una finestra. ASSENTE = la sorgente
|
|
1579
|
+
* non è ascoltata; un array VUOTO è rifiutato, perché "banda events, trigger
|
|
1580
|
+
* object acceso, nessuna classe" è la stessa forma "abilitata e non registra
|
|
1581
|
+
* nulla, per sempre" contro cui è scritto `eventsBandCanEverDemand`.
|
|
1582
|
+
*
|
|
1583
|
+
* Il segnale letto è GIÀ FILTRATO: solo detection `source: 'pipeline'`, cioè
|
|
1584
|
+
* quelle che hanno attraversato `enabledMacroClasses`, i
|
|
1585
|
+
* `minConfidence<Macro>` e il full-frame guard. L'AI a bordo camera
|
|
1586
|
+
* (`source: 'onboard'`) non attraversa nessuno di quei gate e NON apre
|
|
1587
|
+
* finestre — vedi `recorder/object-trigger.ts`.
|
|
1588
|
+
*/
|
|
1589
|
+
objectClasses: z.array(RecordingObjectTriggerClassSchema).min(1).refine(noDuplicates, { message: "objectClasses must not repeat a class" }).optional(),
|
|
1590
|
+
/**
|
|
1591
|
+
* I device LINKED il cui FRONTE ALTO apre una finestra. Assente = la sorgente
|
|
1592
|
+
* non è ascoltata; un array vuoto è rifiutato per la stessa ragione di
|
|
1593
|
+
* `objectClasses`.
|
|
1594
|
+
*
|
|
1595
|
+
* Sono id di device SORGENTE, non camere: la banda li nomina, quindi il
|
|
1596
|
+
* percorso caldo (`DeviceStateChanged`, a ritmo di bus su tutta la flotta)
|
|
1597
|
+
* non fa RPC. L'OFFERTA da cui l'operatore li sceglie è un'altra domanda, e
|
|
1598
|
+
* si risolve con `deviceManager.getLinkedDevices` + `getBindingsBatch` per
|
|
1599
|
+
* device (D12) — mai un elenco globale di cap.
|
|
1600
|
+
*
|
|
1601
|
+
* Cosa vuol dire "alto" dipende dal TIPO di device e non è deciso qui:
|
|
1602
|
+
* `SOURCE_CAP_ACTIVE_FIELD` (`catalogs/sensor-active-state.ts`) è LA tabella,
|
|
1603
|
+
* la stessa che il virtual-doorbell usa dal 2026-08-05. Ed è il FRONTE, non
|
|
1604
|
+
* il livello: un contatto trovato già aperto al riavvio del runner non fa
|
|
1605
|
+
* registrare.
|
|
1606
|
+
*/
|
|
1607
|
+
sensorDeviceIds: z.array(z.number().int().positive()).min(1).max(16).refine(noDuplicates, { message: "sensorDeviceIds must not repeat a device" }).optional()
|
|
1484
1608
|
});
|
|
1485
1609
|
/**
|
|
1486
1610
|
* Mode of a single recording band — the recorder per-band vocabulary.
|
|
@@ -2270,45 +2394,6 @@ function pickClosestResolution(entries, target) {
|
|
|
2270
2394
|
return bestAbove?.entry ?? bestBelow?.entry;
|
|
2271
2395
|
}
|
|
2272
2396
|
//#endregion
|
|
2273
|
-
//#region src/types/labels.ts
|
|
2274
|
-
var LabelDefinitionSchema = z.object({
|
|
2275
|
-
id: z.string(),
|
|
2276
|
-
name: z.string(),
|
|
2277
|
-
category: z.string().optional(),
|
|
2278
|
-
description: z.string().optional(),
|
|
2279
|
-
icon: z.string().optional()
|
|
2280
|
-
});
|
|
2281
|
-
/** Detection-macro targets a catalog `classMap` may resolve to. */
|
|
2282
|
-
var CLASS_MAP_MACRO_TARGETS = [
|
|
2283
|
-
"person",
|
|
2284
|
-
"vehicle",
|
|
2285
|
-
"animal",
|
|
2286
|
-
"package"
|
|
2287
|
-
];
|
|
2288
|
-
/**
|
|
2289
|
-
* Wire schema for a per-model CATALOG classMap override
|
|
2290
|
-
* (`ModelCatalogEntry.classMap` / `ModelConvertMetadata.classMap`) —
|
|
2291
|
-
* restricted to {@link CLASS_MAP_MACRO_TARGETS}, the only macros the
|
|
2292
|
-
* detection pipeline executor actually routes.
|
|
2293
|
-
*
|
|
2294
|
-
* This is deliberately a DIFFERENT, narrower shape than the general-purpose
|
|
2295
|
-
* `ClassMapDefinition` interface above (e.g. `IDetectionAddon.getClassMap()`
|
|
2296
|
-
* and the audio `YAMNET_TO_MACRO` catalog both use macro targets outside this
|
|
2297
|
-
* enum) — the two used to share the name `ClassMapDefinition`/
|
|
2298
|
-
* `ClassMapDefinitionSchema`, which made the schema-type-twin guard
|
|
2299
|
-
* (`scripts/check-schema-type-twins.ts`) flag them as a duplicated shape. They
|
|
2300
|
-
* are not: it is two different concepts colliding on a name. Keep this type
|
|
2301
|
-
* under its own name rather than reusing `ClassMapDefinition` — reusing it
|
|
2302
|
-
* would either narrow every `ClassMapDefinition` consumer to the four
|
|
2303
|
-
* detection macros (breaking `YAMNET_TO_MACRO`) or drop the validation this
|
|
2304
|
-
* schema exists for (see the "rejects a classMap whose target is not a
|
|
2305
|
-
* detection macro" test in `model-catalog-schema.test.ts`).
|
|
2306
|
-
*/
|
|
2307
|
-
var DetectionCatalogClassMapSchema = z.object({
|
|
2308
|
-
mapping: z.record(z.string(), z.enum(CLASS_MAP_MACRO_TARGETS)),
|
|
2309
|
-
preserveOriginal: z.boolean()
|
|
2310
|
-
});
|
|
2311
|
-
//#endregion
|
|
2312
2397
|
//#region src/types/model-variant-groups.ts
|
|
2313
2398
|
var FORMAT_KEYS = [
|
|
2314
2399
|
"onnx",
|
|
@@ -21650,7 +21735,7 @@ var lifecycleJobSchema = z.object({
|
|
|
21650
21735
|
* `useAddonsOnAddonLogs`, etc. flow through the same codegen pipeline
|
|
21651
21736
|
* as every other cap.
|
|
21652
21737
|
*/
|
|
21653
|
-
var LogLevelSchema$
|
|
21738
|
+
var LogLevelSchema$2 = z.enum([
|
|
21654
21739
|
"debug",
|
|
21655
21740
|
"info",
|
|
21656
21741
|
"warn",
|
|
@@ -21877,7 +21962,7 @@ var addonsCapability = {
|
|
|
21877
21962
|
getLogs: method(z.object({
|
|
21878
21963
|
addonId: z.string(),
|
|
21879
21964
|
limit: z.number().min(1).max(500).default(100),
|
|
21880
|
-
level: LogLevelSchema$
|
|
21965
|
+
level: LogLevelSchema$2.optional()
|
|
21881
21966
|
}), z.array(LogQueryEntrySchema)),
|
|
21882
21967
|
listPackages: method(z.void(), z.array(InstalledPackageSchema).readonly()),
|
|
21883
21968
|
installPackage: method(z.object({
|
|
@@ -22115,7 +22200,7 @@ var addonsCapability = {
|
|
|
22115
22200
|
}),
|
|
22116
22201
|
onAddonLogs: method(z.object({
|
|
22117
22202
|
addonId: z.string(),
|
|
22118
|
-
level: LogLevelSchema$
|
|
22203
|
+
level: LogLevelSchema$2.optional()
|
|
22119
22204
|
}), LogStreamEntrySchema, { kind: "subscription" })
|
|
22120
22205
|
},
|
|
22121
22206
|
/** BIG PLAN 2: declarative mount hint — read by `@camstack/system` `buildCapRouters`. */
|
|
@@ -24061,6 +24146,35 @@ var FaceFilterEnum = z.enum([
|
|
|
24061
24146
|
"identified",
|
|
24062
24147
|
"all"
|
|
24063
24148
|
]);
|
|
24149
|
+
/**
|
|
24150
|
+
* What a `listRecentFaces` page is ORDERED BY.
|
|
24151
|
+
*
|
|
24152
|
+
* - `timestamp` — when the face was seen. The historical (and default) order.
|
|
24153
|
+
* - `suggestionConfidence` — {@link FaceInfo.suggestedMatchScore}, the peak
|
|
24154
|
+
* cosine of the face's SUGGESTED identity. This is the "review by certainty"
|
|
24155
|
+
* order: it puts the suggestions an operator can confirm with one tap at the
|
|
24156
|
+
* top, and it is the reason this enum exists — a client that ranked a capped
|
|
24157
|
+
* page client-side was ranking the newest N, never the most certain N.
|
|
24158
|
+
*
|
|
24159
|
+
* A row with NO suggestion (`suggestedMatchScore` absent — a legacy row, an
|
|
24160
|
+
* auto-assigned face, or a face below the suggestion band) has no certainty to
|
|
24161
|
+
* compare. Under `suggestionConfidence` it sorts **LAST, in BOTH directions**
|
|
24162
|
+
* — flipping the direction reorders the rows that HAVE a certainty and never
|
|
24163
|
+
* floods the page with the ones that do not. `addon-post-analysis`'s
|
|
24164
|
+
* `store/face-sort.ts` is the single implementation, tiebreaks newest-first
|
|
24165
|
+
* then by faceId, and is what makes this a total order instead of the
|
|
24166
|
+
* backend's NULL-collation accident.
|
|
24167
|
+
*/
|
|
24168
|
+
var FaceSortFieldEnum = z.enum(["timestamp", "suggestionConfidence"]);
|
|
24169
|
+
var FaceSortDirectionEnum = z.enum(["asc", "desc"]);
|
|
24170
|
+
/** One suggested group of look-alike UNASSIGNED faces. Ids only — an embedding
|
|
24171
|
+
* never leaves the server. */
|
|
24172
|
+
var FaceClusterSchema = z.object({
|
|
24173
|
+
faceIds: z.array(z.string()).readonly(),
|
|
24174
|
+
representativeFaceId: z.string(),
|
|
24175
|
+
size: z.number().int(),
|
|
24176
|
+
cohesion: z.number()
|
|
24177
|
+
});
|
|
24064
24178
|
var MediaFileLiteSchema$1 = z.object({
|
|
24065
24179
|
key: z.string(),
|
|
24066
24180
|
kind: z.string(),
|
|
@@ -24118,24 +24232,72 @@ includeCrops: z.boolean().optional() }).optional(), z.array(IdentitySchema).read
|
|
|
24118
24232
|
auth: "admin"
|
|
24119
24233
|
}),
|
|
24120
24234
|
listRecentFaces: method(z.object({
|
|
24121
|
-
/**
|
|
24235
|
+
/**
|
|
24236
|
+
* Restrict to ONE camera. Absent keeps the cluster-wide gallery view.
|
|
24237
|
+
*
|
|
24238
|
+
* The legacy single-camera form, kept verbatim for every caller that
|
|
24239
|
+
* already sends it. A caller that wants a SET sends {@link deviceIds}
|
|
24240
|
+
* instead — never both: `deviceIds` is the authority whenever it is
|
|
24241
|
+
* present, and this field is then ignored rather than unioned, so
|
|
24242
|
+
* there is exactly one answer to "which cameras did I ask for".
|
|
24243
|
+
*/
|
|
24122
24244
|
deviceId: z.number().int().optional(),
|
|
24245
|
+
/**
|
|
24246
|
+
* Restrict to a SET of cameras — the review UI's camera filter, which
|
|
24247
|
+
* until now had to fetch the cluster-wide page and drop rows in the
|
|
24248
|
+
* client (so the `limit` it asked for was spent on cameras it was
|
|
24249
|
+
* about to discard).
|
|
24250
|
+
*
|
|
24251
|
+
* An **empty array reads NOTHING** — `[]` is an empty page, never
|
|
24252
|
+
* "every camera". A request for no devices is a request, not an
|
|
24253
|
+
* omission; same contract as `deviceManager.listFleet` and
|
|
24254
|
+
* `pipelineAnalytics.listRecentTracks`.
|
|
24255
|
+
*
|
|
24256
|
+
* Absent (`undefined`) is the omission, and keeps the cluster-wide view.
|
|
24257
|
+
*/
|
|
24258
|
+
deviceIds: z.array(z.number().int()).optional(),
|
|
24123
24259
|
limit: z.number().int().positive().optional(),
|
|
24124
24260
|
filter: FaceFilterEnum.optional(),
|
|
24125
24261
|
/**
|
|
24126
|
-
*
|
|
24127
|
-
*
|
|
24262
|
+
* Window lower bound on {@link FaceInfo.timestamp}, INCLUSIVE.
|
|
24263
|
+
* Absent means no lower bound.
|
|
24264
|
+
*/
|
|
24265
|
+
since: z.number().int().optional(),
|
|
24266
|
+
/**
|
|
24267
|
+
* Window upper bound on {@link FaceInfo.timestamp}, INCLUSIVE.
|
|
24268
|
+
* Absent means no upper bound.
|
|
24269
|
+
*/
|
|
24270
|
+
until: z.number().int().optional(),
|
|
24271
|
+
/**
|
|
24272
|
+
* Order the page by time or by suggestion certainty. Default
|
|
24273
|
+
* `'timestamp'` — the historical order, unchanged for every caller
|
|
24274
|
+
* that does not ask.
|
|
24128
24275
|
*
|
|
24129
|
-
*
|
|
24130
|
-
*
|
|
24131
|
-
* the browser cache the images.
|
|
24276
|
+
* See {@link FaceSortFieldEnum} for what a row with no suggestion
|
|
24277
|
+
* does under `'suggestionConfidence'`.
|
|
24132
24278
|
*
|
|
24133
|
-
*
|
|
24134
|
-
*
|
|
24135
|
-
*
|
|
24136
|
-
*
|
|
24137
|
-
*
|
|
24138
|
-
|
|
24279
|
+
* Cost note: `'timestamp'` is served by the `(deviceId, timestamp)`
|
|
24280
|
+
* index and stops reading as soon as `limit` rows have PASSED the
|
|
24281
|
+
* filter. `'suggestionConfidence'` cannot stop early — the most
|
|
24282
|
+
* certain row may be the oldest — so it walks the window. Narrow it
|
|
24283
|
+
* with {@link since} / {@link until}.
|
|
24284
|
+
*/
|
|
24285
|
+
sortBy: FaceSortFieldEnum.optional(),
|
|
24286
|
+
/** Sort direction for {@link sortBy}. Default `'desc'`. */
|
|
24287
|
+
sortDirection: FaceSortDirectionEnum.optional(),
|
|
24288
|
+
/**
|
|
24289
|
+
* Inline the base64 crop on every row.
|
|
24290
|
+
*
|
|
24291
|
+
* Default `false` since the 2026-08-25 inversion — see
|
|
24292
|
+
* `include-crops-default.ts`, which is the ONE place that resolves
|
|
24293
|
+
* this for every gallery, and which records why the inline shape had
|
|
24294
|
+
* to become the one you ASK for (60 457 ms → UDS timeout at 500 rows).
|
|
24295
|
+
* The doc here used to still say `true`; it was wrong, and a leftover
|
|
24296
|
+
* that describes the old design reads as permission to rely on it.
|
|
24297
|
+
*
|
|
24298
|
+
* Nothing loses its image: the row carries {@link FaceInfo.cropUrl},
|
|
24299
|
+
* which the browser fetches off the `event-media` plane in parallel,
|
|
24300
|
+
* cached and ETagged.
|
|
24139
24301
|
*/
|
|
24140
24302
|
includeCrops: z.boolean().optional()
|
|
24141
24303
|
}).optional(), z.array(FaceInfoSchema).readonly()),
|
|
@@ -24184,13 +24346,39 @@ includeCrops: z.boolean().optional() }).optional(), z.array(IdentitySchema).read
|
|
|
24184
24346
|
suggestFaceClusters: method(z.object({
|
|
24185
24347
|
threshold: z.number().min(0).max(1).optional(),
|
|
24186
24348
|
minClusterSize: z.number().int().min(2).optional(),
|
|
24187
|
-
|
|
24188
|
-
|
|
24189
|
-
|
|
24190
|
-
|
|
24191
|
-
|
|
24192
|
-
|
|
24193
|
-
|
|
24349
|
+
/**
|
|
24350
|
+
* Cap on the number of CLUSTERS returned. Renamed from `limit`,
|
|
24351
|
+
* which read as though it bounded the work — it never did.
|
|
24352
|
+
*
|
|
24353
|
+
* Wins over {@link limit} when both are sent.
|
|
24354
|
+
*/
|
|
24355
|
+
maxClusters: z.number().int().positive().optional(),
|
|
24356
|
+
/**
|
|
24357
|
+
* @deprecated Ambiguous name for {@link maxClusters} — it cuts the
|
|
24358
|
+
* RESULT, not the scan. Kept so existing callers keep working; send
|
|
24359
|
+
* `maxClusters` (and, if you care about cost, {@link maxFacesScanned}).
|
|
24360
|
+
*/
|
|
24361
|
+
limit: z.number().int().positive().optional(),
|
|
24362
|
+
/**
|
|
24363
|
+
* Cap on the number of unassigned faces READ AND CLUSTERED — the
|
|
24364
|
+
* POOL, not the result.
|
|
24365
|
+
*
|
|
24366
|
+
* This is the knob {@link maxClusters} was mistaken for. Clustering
|
|
24367
|
+
* used to read every unassigned face on the hub no matter what the
|
|
24368
|
+
* caller asked for, because the only bound cut the finished clusters
|
|
24369
|
+
* afterwards; a UI showing a window of 100 paid for a scan of the
|
|
24370
|
+
* whole corpus, on an addon whose disk is under contention.
|
|
24371
|
+
*
|
|
24372
|
+
* The pool is the NEWEST matching faces first — the same order the
|
|
24373
|
+
* gallery shows — so a bound here shortens the horizon, it does not
|
|
24374
|
+
* sample it randomly.
|
|
24375
|
+
*
|
|
24376
|
+
* Default: 1 000 (`FACE_SWEEP_PAGE`, exactly one store page). Chosen
|
|
24377
|
+
* so the live corpus — 372 face rows — is unaffected while the
|
|
24378
|
+
* unbounded scan can never come back as the table grows.
|
|
24379
|
+
*/
|
|
24380
|
+
maxFacesScanned: z.number().int().positive().optional()
|
|
24381
|
+
}).optional(), z.array(FaceClusterSchema).readonly())
|
|
24194
24382
|
}
|
|
24195
24383
|
};
|
|
24196
24384
|
//#endregion
|
|
@@ -30249,6 +30437,295 @@ var SetSiteLocationInputSchema = z.object({
|
|
|
30249
30437
|
latitude: z.number().min(-90).max(90),
|
|
30250
30438
|
longitude: z.number().min(-180).max(180)
|
|
30251
30439
|
}).nullable();
|
|
30440
|
+
/**
|
|
30441
|
+
* The TRANSPORT a call arrived on.
|
|
30442
|
+
*
|
|
30443
|
+
* Every counted call carries exactly one of these, and `unknown` is a PLANE
|
|
30444
|
+
* rather than a gap: a plane that cannot attribute a call declares it here, so
|
|
30445
|
+
* the call lands in a named bucket instead of vanishing. `planes` summing to
|
|
30446
|
+
* `procedureCalls` is what makes "the sum of the planes explains the total"
|
|
30447
|
+
* checkable rather than asserted.
|
|
30448
|
+
*
|
|
30449
|
+
* - `http` — the Fastify tRPC plugin (`/trpc/*`), one context per request.
|
|
30450
|
+
* - `ws` — `applyWSSHandler`, counted per OPERATION rather than per
|
|
30451
|
+
* connection; the viewer talks to the hub over `wsLink`
|
|
30452
|
+
* exclusively, so this is the plane the HTTP census could not see.
|
|
30453
|
+
* - `mesh` — the in-process `$core-caps` bridge (`createCaller`), which
|
|
30454
|
+
* never touches a socket and therefore never touched a census.
|
|
30455
|
+
* - `unknown` — counted, plane undecidable. No hook produces it today, and
|
|
30456
|
+
* that is exactly what its `0` asserts: every plane the hub has can name
|
|
30457
|
+
* itself. It is an output bucket, never a knob — a call that arrives on a
|
|
30458
|
+
* plane nobody instrumented lands here instead of vanishing from the total.
|
|
30459
|
+
*/
|
|
30460
|
+
var TransportPlaneSchema = z.enum([
|
|
30461
|
+
"http",
|
|
30462
|
+
"ws",
|
|
30463
|
+
"mesh",
|
|
30464
|
+
"unknown"
|
|
30465
|
+
]);
|
|
30466
|
+
/**
|
|
30467
|
+
* Calls per plane. Every key is always present, `0` included — an absent plane
|
|
30468
|
+
* reads as "not instrumented", which is the one thing this census must never
|
|
30469
|
+
* make an operator wonder about.
|
|
30470
|
+
*/
|
|
30471
|
+
var TransportPlaneCountsSchema = z.object({
|
|
30472
|
+
http: z.number(),
|
|
30473
|
+
ws: z.number(),
|
|
30474
|
+
mesh: z.number(),
|
|
30475
|
+
unknown: z.number()
|
|
30476
|
+
});
|
|
30477
|
+
/**
|
|
30478
|
+
* One `(plane, procedure, user-agent, ip, principal)` tuple of the transport
|
|
30479
|
+
* census. `principal` is the DERIVED identity (`apocaliss92 (admin)`,
|
|
30480
|
+
* `scoped:1a2b3c4d (scoped-token)`, `anonymous`) that the tRPC error log
|
|
30481
|
+
* already prints - never a token, never an `Authorization` header.
|
|
30482
|
+
*
|
|
30483
|
+
* `subscriptions` is counted APART from `calls`: a subscription is opened once
|
|
30484
|
+
* and lives for hours, so folding it into a call count makes one long-lived
|
|
30485
|
+
* stream look like a storm.
|
|
30486
|
+
*/
|
|
30487
|
+
var RequestCensusGroupSchema = z.object({
|
|
30488
|
+
plane: TransportPlaneSchema,
|
|
30489
|
+
procedure: z.string(),
|
|
30490
|
+
userAgent: z.string(),
|
|
30491
|
+
ip: z.string(),
|
|
30492
|
+
principal: z.string(),
|
|
30493
|
+
calls: z.number(),
|
|
30494
|
+
subscriptions: z.number(),
|
|
30495
|
+
perMin: z.number()
|
|
30496
|
+
});
|
|
30497
|
+
/**
|
|
30498
|
+
* A procedure's TOTAL over the window, across every caller.
|
|
30499
|
+
*
|
|
30500
|
+
* This block, not the group list, is what answers "did these calls arrive over
|
|
30501
|
+
* HTTP at all". A total far BELOW what a store-side census counted over the
|
|
30502
|
+
* same window excludes the HTTP plane, which is a result, not a failure.
|
|
30503
|
+
*/
|
|
30504
|
+
var RequestCensusProcedureSchema = z.object({
|
|
30505
|
+
procedure: z.string(),
|
|
30506
|
+
calls: z.number(),
|
|
30507
|
+
/**
|
|
30508
|
+
* The same total, split by transport. THIS is the row that answers the
|
|
30509
|
+
* question the census exists for: one look at `deviceManager.listAll` says
|
|
30510
|
+
* which plane carried the 4 960, without joining two log lines by eye.
|
|
30511
|
+
*/
|
|
30512
|
+
planes: TransportPlaneCountsSchema,
|
|
30513
|
+
/** Subscription STARTS on this procedure. Never folded into `calls`. */
|
|
30514
|
+
subscriptions: z.number(),
|
|
30515
|
+
perMin: z.number()
|
|
30516
|
+
});
|
|
30517
|
+
/** What one armed window measured. Mirrors `TransportCensus.snapshot()`. */
|
|
30518
|
+
var RequestCensusSnapshotSchema = z.object({
|
|
30519
|
+
armed: z.boolean(),
|
|
30520
|
+
/** How long the current - or just-closed - window collected, in ms. */
|
|
30521
|
+
elapsedMs: z.number(),
|
|
30522
|
+
/** The window actually armed, after the server clamped the request. */
|
|
30523
|
+
windowMs: z.number(),
|
|
30524
|
+
/** Epoch ms the window closes at. 0 when disarmed. */
|
|
30525
|
+
armedUntilMs: z.number(),
|
|
30526
|
+
httpRequests: z.number(),
|
|
30527
|
+
batchedRequests: z.number(),
|
|
30528
|
+
/**
|
|
30529
|
+
* Procedure invocations. Higher than `httpRequests` whenever tRPC batching
|
|
30530
|
+
* is in play (`?batch=1` carries several procedures in one request); this is
|
|
30531
|
+
* the number comparable with a store-side call count.
|
|
30532
|
+
*/
|
|
30533
|
+
procedureCalls: z.number(),
|
|
30534
|
+
/**
|
|
30535
|
+
* `procedureCalls` split by transport. The four keys sum to
|
|
30536
|
+
* `procedureCalls` by construction - {@link RequestCensusSnapshotSchema}'s
|
|
30537
|
+
* `planesExplainTotal` is that identity, checked rather than assumed.
|
|
30538
|
+
*/
|
|
30539
|
+
planes: TransportPlaneCountsSchema,
|
|
30540
|
+
/**
|
|
30541
|
+
* True iff `planes` sums to `procedureCalls`. False means a call was counted
|
|
30542
|
+
* on no plane at all - which is a RESULT (a plane is missing from the
|
|
30543
|
+
* instrument), not a failure, and it has to be visible to be read as one.
|
|
30544
|
+
*/
|
|
30545
|
+
planesExplainTotal: z.boolean(),
|
|
30546
|
+
/**
|
|
30547
|
+
* tRPC WebSocket connections opened during the window. NOT calls - the WS
|
|
30548
|
+
* adapter resolves one context per connection - kept because a plane's call
|
|
30549
|
+
* count of zero against 37 open connections says something different from a
|
|
30550
|
+
* plane with no connections at all.
|
|
30551
|
+
*/
|
|
30552
|
+
wsConnections: z.number(),
|
|
30553
|
+
/**
|
|
30554
|
+
* Client frames the WS plane looked at. `wsMessages` far above
|
|
30555
|
+
* `planes.ws + subscriptions` means most traffic is not operations
|
|
30556
|
+
* (keepalives, connection params) - which is itself an answer.
|
|
30557
|
+
*/
|
|
30558
|
+
wsMessages: z.number(),
|
|
30559
|
+
/**
|
|
30560
|
+
* Subscription STARTS across every plane, excluded from `procedureCalls` on
|
|
30561
|
+
* purpose: one live-events stream opened at boot and held for six hours is
|
|
30562
|
+
* one subscription, and counting it as a call would let a quiet plane
|
|
30563
|
+
* masquerade as the storm.
|
|
30564
|
+
*/
|
|
30565
|
+
subscriptions: z.number(),
|
|
30566
|
+
/** `subscription.stop` frames. Starts minus stops is what is still open. */
|
|
30567
|
+
subscriptionStops: z.number(),
|
|
30568
|
+
distinctGroups: z.number(),
|
|
30569
|
+
/**
|
|
30570
|
+
* Operations counted in the totals whose CALLER attribution was shed at the
|
|
30571
|
+
* cardinality bound. Unrelated to the `unknown` PLANE: these calls know
|
|
30572
|
+
* which transport they arrived on, they just lost their group row.
|
|
30573
|
+
*/
|
|
30574
|
+
unattributedCalls: z.number(),
|
|
30575
|
+
procedures: z.array(RequestCensusProcedureSchema).readonly(),
|
|
30576
|
+
groups: z.array(RequestCensusGroupSchema).readonly()
|
|
30577
|
+
});
|
|
30578
|
+
/**
|
|
30579
|
+
* The census as an operator sees it.
|
|
30580
|
+
*
|
|
30581
|
+
* `persisted` is the honest answer to "will this survive the restart I am
|
|
30582
|
+
* about to do": the arm deadline is written to `system-settings` so a window
|
|
30583
|
+
* armed now can measure the NEXT boot, and a write that failed must not look
|
|
30584
|
+
* like one that succeeded.
|
|
30585
|
+
*/
|
|
30586
|
+
var RequestCensusStatusSchema = RequestCensusSnapshotSchema.extend({ persisted: z.boolean() });
|
|
30587
|
+
/** Severity vocabulary. Mirrors `LogLevel` in `interfaces/logging.ts`. */
|
|
30588
|
+
var LogLevelSchema$1 = z.enum([
|
|
30589
|
+
"debug",
|
|
30590
|
+
"info",
|
|
30591
|
+
"warn",
|
|
30592
|
+
"error"
|
|
30593
|
+
]);
|
|
30594
|
+
/**
|
|
30595
|
+
* The diagnostics that can be ARMED for a window. Exactly one today.
|
|
30596
|
+
*
|
|
30597
|
+
* A diagnostic is anything whose cost is only worth paying while a question is
|
|
30598
|
+
* open. It never persists as a boolean: see {@link DiagnosticWindowSchema}.
|
|
30599
|
+
*/
|
|
30600
|
+
var DiagnosticIdSchema = z.enum(["request-census"]);
|
|
30601
|
+
/**
|
|
30602
|
+
* The layers of the level hierarchy, general → specific. The most specific
|
|
30603
|
+
* layer that carries an explicit value wins.
|
|
30604
|
+
*
|
|
30605
|
+
* `component` is DECLARED and not yet resolvable: the per-component channels
|
|
30606
|
+
* are a later slice of the same plan, and a `levelSource` enum that has to
|
|
30607
|
+
* grow later would force every consumer of this document to change with it.
|
|
30608
|
+
* Nothing returns `component` today.
|
|
30609
|
+
*/
|
|
30610
|
+
var LoggingScopeKindSchema = z.enum([
|
|
30611
|
+
"cluster",
|
|
30612
|
+
"node",
|
|
30613
|
+
"component"
|
|
30614
|
+
]);
|
|
30615
|
+
/** Where an effective level came from. `default` = nothing is set anywhere. */
|
|
30616
|
+
var LoggingLevelSourceSchema = z.enum([
|
|
30617
|
+
"default",
|
|
30618
|
+
"cluster",
|
|
30619
|
+
"node",
|
|
30620
|
+
"component"
|
|
30621
|
+
]);
|
|
30622
|
+
/**
|
|
30623
|
+
* One layer of the hierarchy as it actually STANDS.
|
|
30624
|
+
*
|
|
30625
|
+
* `level: null` is the whole reason this array is returned: it is the
|
|
30626
|
+
* difference between "this node is at `info` because I decided it" and
|
|
30627
|
+
* "...because it inherits". An operator who clears an override believing they
|
|
30628
|
+
* are clearing an inherited value has been handed the same defect as the two
|
|
30629
|
+
* contradicting knobs this document exists to remove, moved one floor up.
|
|
30630
|
+
*/
|
|
30631
|
+
var LoggingLevelLayerSchema = z.object({
|
|
30632
|
+
scope: LoggingScopeKindSchema,
|
|
30633
|
+
/** The node this layer speaks for; `null` on the cluster layer. */
|
|
30634
|
+
nodeId: z.string().nullable(),
|
|
30635
|
+
/** Explicitly set here, or `null` when this layer inherits. */
|
|
30636
|
+
level: LogLevelSchema$1.nullable()
|
|
30637
|
+
});
|
|
30638
|
+
/** What a line is judged against, and WHICH layer decided it. */
|
|
30639
|
+
var LoggingEffectiveSchema = z.object({
|
|
30640
|
+
level: LogLevelSchema$1,
|
|
30641
|
+
levelSource: LoggingLevelSourceSchema
|
|
30642
|
+
});
|
|
30643
|
+
/** Every layer, general → specific. Never collapsed into the effective value. */
|
|
30644
|
+
var LoggingExplicitSchema = z.object({ layers: z.array(LoggingLevelLayerSchema).readonly() });
|
|
30645
|
+
/**
|
|
30646
|
+
* An armed diagnostic, with its DEADLINE.
|
|
30647
|
+
*
|
|
30648
|
+
* The shape of ADR-0244: what is stored is a deadline and never a flag, so a
|
|
30649
|
+
* diagnostic somebody forgot expires by itself, and a boot-window measurement
|
|
30650
|
+
* survives the restart it exists to measure. `remainingMs` is 0 whenever
|
|
30651
|
+
* `armed` is false — a window is never reported as slightly expired.
|
|
30652
|
+
*/
|
|
30653
|
+
var DiagnosticWindowSchema = z.object({
|
|
30654
|
+
id: DiagnosticIdSchema,
|
|
30655
|
+
armed: z.boolean(),
|
|
30656
|
+
/** Epoch ms the window closes at. 0 when disarmed. */
|
|
30657
|
+
armedUntilMs: z.number(),
|
|
30658
|
+
/** Ms left before it expires on its own. 0 when disarmed. */
|
|
30659
|
+
remainingMs: z.number(),
|
|
30660
|
+
/** Whether the stored deadline is the one the live diagnostic is running —
|
|
30661
|
+
* i.e. whether this window would survive a restart. */
|
|
30662
|
+
persisted: z.boolean()
|
|
30663
|
+
});
|
|
30664
|
+
/**
|
|
30665
|
+
* `armMs: 0` DISARMS. Any positive value arms for that long, clamped by the
|
|
30666
|
+
* server — there is no maximum here on purpose: a bound repeated in a schema
|
|
30667
|
+
* is a second knob that disagrees with the first the day one of them moves.
|
|
30668
|
+
*/
|
|
30669
|
+
var DiagnosticWindowPatchSchema = z.object({
|
|
30670
|
+
id: DiagnosticIdSchema,
|
|
30671
|
+
armMs: z.number().int().min(0),
|
|
30672
|
+
/** Cadence of the diagnostic's aggregated report line. Clamped by the server. */
|
|
30673
|
+
reportEveryMs: z.number().int().positive().optional()
|
|
30674
|
+
});
|
|
30675
|
+
/**
|
|
30676
|
+
* A PATCH, and patches MERGE.
|
|
30677
|
+
*
|
|
30678
|
+
* A field absent from the patch is left exactly as it was — arming a
|
|
30679
|
+
* diagnostic never resets a level, and setting a level never disarms a window.
|
|
30680
|
+
* The provider must not reconstruct the document as `{ ...snapshot, ...patch }`:
|
|
30681
|
+
* `setAll` already merges, and rebuilding the object is how an absent field
|
|
30682
|
+
* turns into an erased one.
|
|
30683
|
+
*/
|
|
30684
|
+
var LoggingSettingsPatchSchema = z.object({
|
|
30685
|
+
/**
|
|
30686
|
+
* Absent leaves the level untouched. `null` CLEARS the explicit value at the
|
|
30687
|
+
* addressed scope so it inherits again. A value sets it.
|
|
30688
|
+
*/
|
|
30689
|
+
level: LogLevelSchema$1.nullable().optional(),
|
|
30690
|
+
/**
|
|
30691
|
+
* Only the diagnostics NAMED here change. An armed window that is not listed
|
|
30692
|
+
* keeps running — a patch is never a full replacement.
|
|
30693
|
+
*/
|
|
30694
|
+
diagnostics: z.array(DiagnosticWindowPatchSchema).readonly().optional()
|
|
30695
|
+
});
|
|
30696
|
+
/**
|
|
30697
|
+
* Which LAYER of the hierarchy is addressed. Absent = the cluster layer.
|
|
30698
|
+
*
|
|
30699
|
+
* Deliberately NOT called `nodeId`: that key is reserved on every cap method
|
|
30700
|
+
* input — the generated router strips it and uses it to resolve the PROVIDER
|
|
30701
|
+
* on that node (`resolveProvider(cap, nodeId, …)`). A document about
|
|
30702
|
+
* `agent-1` addressed as `nodeId` would be forwarded to agent-1 and answered
|
|
30703
|
+
* by an agent that holds no cluster document at all. The hub is the single
|
|
30704
|
+
* authority over the whole hierarchy and answers for every layer, so the
|
|
30705
|
+
* layer selector needs a name the transport does not already own.
|
|
30706
|
+
*/
|
|
30707
|
+
var GetLoggingSettingsInputSchema = z.object({ scopeNodeId: z.string().optional() });
|
|
30708
|
+
var SetLoggingSettingsInputSchema = z.object({
|
|
30709
|
+
scopeNodeId: z.string().optional(),
|
|
30710
|
+
patch: LoggingSettingsPatchSchema
|
|
30711
|
+
});
|
|
30712
|
+
/**
|
|
30713
|
+
* The whole document, as read and as returned after every write.
|
|
30714
|
+
*
|
|
30715
|
+
* `persisted: false` means the settings store could not be read or written.
|
|
30716
|
+
* The in-memory mirror still governs behaviour and is unchanged by the
|
|
30717
|
+
* failure — a read that fails neither switches a level nor disarms a window
|
|
30718
|
+
* (D49) — but the operator is told that what they are looking at would not
|
|
30719
|
+
* survive a restart.
|
|
30720
|
+
*/
|
|
30721
|
+
var LoggingSettingsStateSchema = z.object({
|
|
30722
|
+
/** The layer this document was read at. `null` = the cluster layer. */
|
|
30723
|
+
scopeNodeId: z.string().nullable(),
|
|
30724
|
+
effective: LoggingEffectiveSchema,
|
|
30725
|
+
explicit: LoggingExplicitSchema,
|
|
30726
|
+
activeWindows: z.array(DiagnosticWindowSchema).readonly(),
|
|
30727
|
+
persisted: z.boolean()
|
|
30728
|
+
});
|
|
30252
30729
|
var systemCapability = {
|
|
30253
30730
|
name: "system",
|
|
30254
30731
|
scope: "system",
|
|
@@ -30292,6 +30769,38 @@ var systemCapability = {
|
|
|
30292
30769
|
detectSiteLocation: method(z.void(), SiteLocationStatusSchema, {
|
|
30293
30770
|
kind: "mutation",
|
|
30294
30771
|
auth: "admin"
|
|
30772
|
+
}),
|
|
30773
|
+
/**
|
|
30774
|
+
* Read the HTTP request census - which caller, from which address, with
|
|
30775
|
+
* which user-agent, invoked which tRPC procedure, and how often.
|
|
30776
|
+
*
|
|
30777
|
+
* Reading NEVER re-arms: re-arming clears the counts, which would throw
|
|
30778
|
+
* away exactly the numbers being asked for. A closed window may be read as
|
|
30779
|
+
* many times as the operator likes and always describes the same window.
|
|
30780
|
+
*
|
|
30781
|
+
* Admin-only: the rows carry source addresses and principal names.
|
|
30782
|
+
*/
|
|
30783
|
+
getRequestCensus: method(z.void(), RequestCensusStatusSchema, { auth: "admin" }),
|
|
30784
|
+
/**
|
|
30785
|
+
* The logging settings document — levels and armed diagnostics — resolved
|
|
30786
|
+
* for `nodeId`, or for the cluster when `nodeId` is absent.
|
|
30787
|
+
*
|
|
30788
|
+
* Returns BOTH `effective` and `explicit`. See
|
|
30789
|
+
* {@link LoggingLevelLayerSchema} for why collapsing them is the defect.
|
|
30790
|
+
*/
|
|
30791
|
+
getLoggingSettings: method(GetLoggingSettingsInputSchema, LoggingSettingsStateSchema, { auth: "admin" }),
|
|
30792
|
+
/**
|
|
30793
|
+
* Write the logging settings document. The ONLY write authority over log
|
|
30794
|
+
* levels and diagnostic windows — arming the request census went through
|
|
30795
|
+
* `system.setRequestCensus` until 2026-08-27 and no longer does, because
|
|
30796
|
+
* two writes that disagree about the same window is exactly the defect
|
|
30797
|
+
* this document exists to remove (D245).
|
|
30798
|
+
*
|
|
30799
|
+
* The patch MERGES: see {@link LoggingSettingsPatchSchema}.
|
|
30800
|
+
*/
|
|
30801
|
+
setLoggingSettings: method(SetLoggingSettingsInputSchema, LoggingSettingsStateSchema, {
|
|
30802
|
+
kind: "mutation",
|
|
30803
|
+
auth: "admin"
|
|
30295
30804
|
})
|
|
30296
30805
|
},
|
|
30297
30806
|
/** BIG PLAN 2: declarative mount hint — read by `@camstack/system` `buildCapRouters`. */
|
|
@@ -31486,6 +31995,172 @@ function stateVocabularyFor(runtimeState, alarmStates = []) {
|
|
|
31486
31995
|
return [];
|
|
31487
31996
|
}
|
|
31488
31997
|
//#endregion
|
|
31998
|
+
//#region src/catalogs/sensor-active-state.ts
|
|
31999
|
+
/**
|
|
32000
|
+
* LA tabella "quale booleano di questo tipo di device conta come ALTO", e il
|
|
32001
|
+
* valutatore puro del suo FRONTE.
|
|
32002
|
+
*
|
|
32003
|
+
* Viveva dentro il builtin virtual-doorbell
|
|
32004
|
+
* (`@camstack/system` — `builtins/doorbell/trigger-engine.ts`) e i suoi
|
|
32005
|
+
* predicati erano privati al modulo. Il recorder ne ha bisogno per il trigger
|
|
32006
|
+
* `RecordingTriggers.sensorDeviceIds`: copiarla avrebbe creato la SECONDA
|
|
32007
|
+
* tabella, che diverge alla prima cap aggiunta e il cui sintomo — "il sensore
|
|
32008
|
+
* fa suonare il campanello ma non registra" — è esattamente D62. Quindi si
|
|
32009
|
+
* SPOSTA qui e il doorbell la ri-esporta.
|
|
32010
|
+
*
|
|
32011
|
+
* ⚠ NON è `DEVICE_STATE_READERS` (`catalogs/device-state-vocabulary.ts`), e le
|
|
32012
|
+
* due non vanno unificate: quella risponde a "qual è la PAROLA di stato per una
|
|
32013
|
+
* regola" (e include `presence`, `cover`, `alarm-panel`), questa a "qual è il
|
|
32014
|
+
* booleano il cui FRONTE conta". Vocabolari deliberatamente diversi.
|
|
32015
|
+
*/
|
|
32016
|
+
/**
|
|
32017
|
+
* Known binary / switch source caps → the boolean slice field whose
|
|
32018
|
+
* false→true rise counts as ACTIVE. Every entry is "fire on active".
|
|
32019
|
+
* Sensors whose "active" reading is not a plain boolean (presence's string
|
|
32020
|
+
* state, connectivity's connected flag) are deliberately excluded — a
|
|
32021
|
+
* reconnect is not a doorbell press, and it is not a recording either.
|
|
32022
|
+
*/
|
|
32023
|
+
var SOURCE_CAP_ACTIVE_FIELD = {
|
|
32024
|
+
contact: "entryOpen",
|
|
32025
|
+
binary: "on",
|
|
32026
|
+
switch: "on",
|
|
32027
|
+
motion: "detected",
|
|
32028
|
+
flood: "flooded",
|
|
32029
|
+
gas: "detected",
|
|
32030
|
+
smoke: "detected",
|
|
32031
|
+
"carbon-monoxide": "detected",
|
|
32032
|
+
vibration: "detected",
|
|
32033
|
+
tamper: "tampered"
|
|
32034
|
+
};
|
|
32035
|
+
/**
|
|
32036
|
+
* The same caps → the slice field carrying the ms-epoch timestamp of the
|
|
32037
|
+
* last transition. Every source cap MUST appear here (guarded by a spec):
|
|
32038
|
+
* without a transition timestamp the evaluator cannot tell a genuine rise
|
|
32039
|
+
* from a boot-time hydration when the FIRST slice it ever sees is already
|
|
32040
|
+
* active, and errs towards silence — swallowing the rise.
|
|
32041
|
+
*
|
|
32042
|
+
* These timestamps are UPSTREAM ones, not ingest ones: the Home Assistant
|
|
32043
|
+
* provider derives them from `state.last_changed`, so they survive our own
|
|
32044
|
+
* restarts and correctly read as "hours ago" for a state that has been
|
|
32045
|
+
* active for hours. `motion` names its rise timestamp `lastDetectedAt`.
|
|
32046
|
+
*/
|
|
32047
|
+
var SOURCE_CAP_CHANGED_AT_FIELD = {
|
|
32048
|
+
contact: "lastChangedAt",
|
|
32049
|
+
binary: "lastChangedAt",
|
|
32050
|
+
switch: "lastChangedAt",
|
|
32051
|
+
motion: "lastDetectedAt",
|
|
32052
|
+
flood: "lastChangedAt",
|
|
32053
|
+
gas: "lastChangedAt",
|
|
32054
|
+
smoke: "lastChangedAt",
|
|
32055
|
+
"carbon-monoxide": "lastChangedAt",
|
|
32056
|
+
vibration: "lastChangedAt",
|
|
32057
|
+
tamper: "lastChangedAt"
|
|
32058
|
+
};
|
|
32059
|
+
/** Cap names whose presence in a device's bindings qualify it as a source. */
|
|
32060
|
+
var SOURCE_CAPS = Object.keys(SOURCE_CAP_ACTIVE_FIELD);
|
|
32061
|
+
/**
|
|
32062
|
+
* Device `type` values (from `DeviceType`) that can host a binary/switch
|
|
32063
|
+
* source cap. Used by the camera's `device-multiselect` picker as the
|
|
32064
|
+
* CLIENT-SIDE filter, alongside `SOURCE_CAPS`.
|
|
32065
|
+
*
|
|
32066
|
+
* Why types and not caps alone: the shared picker filters
|
|
32067
|
+
* `deviceManager.listAll` rows client-side, and those rows carry only the
|
|
32068
|
+
* device's advertised `features` — NOT its registered cap list. On the live
|
|
32069
|
+
* cluster binary sensors and switches advertise EMPTY features (features
|
|
32070
|
+
* mirror only a handful of caps like `motion-trigger`), so a caps-only
|
|
32071
|
+
* filter matched against `features` would list nothing (the very bug this
|
|
32072
|
+
* replaced, which relied on the now-empty `getAllBindings`). Matching by
|
|
32073
|
+
* `type` is the reliable client-side signal; the union with `SOURCE_CAPS`
|
|
32074
|
+
* still captures any device that DOES advertise a source-cap feature.
|
|
32075
|
+
* `sensor` covers contact/motion/flood/gas/smoke/CO/vibration/tamper,
|
|
32076
|
+
* `switch` covers switches, `control` covers generic binary actuators.
|
|
32077
|
+
*/
|
|
32078
|
+
var SOURCE_DEVICE_TYPES = [
|
|
32079
|
+
"sensor",
|
|
32080
|
+
"switch",
|
|
32081
|
+
"control"
|
|
32082
|
+
];
|
|
32083
|
+
/** True when a cap is a recognised binary/switch source. */
|
|
32084
|
+
function isSourceCap(capName) {
|
|
32085
|
+
return Object.prototype.hasOwnProperty.call(SOURCE_CAP_ACTIVE_FIELD, capName);
|
|
32086
|
+
}
|
|
32087
|
+
/** Extract the "active" boolean a source cap's slice carries, or null when
|
|
32088
|
+
* the cap is unknown or the field is missing / non-boolean. */
|
|
32089
|
+
function sliceActiveValue(capName, slice) {
|
|
32090
|
+
const field = SOURCE_CAP_ACTIVE_FIELD[capName];
|
|
32091
|
+
if (field === void 0) return null;
|
|
32092
|
+
const raw = slice[field];
|
|
32093
|
+
return typeof raw === "boolean" ? raw : null;
|
|
32094
|
+
}
|
|
32095
|
+
/** Ms-epoch transition timestamp a source cap's slice carries, or null when
|
|
32096
|
+
* it is absent, non-numeric or the zero "never observed" sentinel. */
|
|
32097
|
+
function sliceChangedAt(capName, slice) {
|
|
32098
|
+
const field = SOURCE_CAP_CHANGED_AT_FIELD[capName];
|
|
32099
|
+
if (field === void 0) return null;
|
|
32100
|
+
const raw = slice[field];
|
|
32101
|
+
if (typeof raw !== "number" || !Number.isFinite(raw) || raw <= 0) return null;
|
|
32102
|
+
return raw;
|
|
32103
|
+
}
|
|
32104
|
+
/**
|
|
32105
|
+
* How recent a source's own transition timestamp must be for a FIRST
|
|
32106
|
+
* sighting that is already active to count as a genuine rise rather than a
|
|
32107
|
+
* hydration of long-standing state.
|
|
32108
|
+
*/
|
|
32109
|
+
var DEFAULT_FIRST_SIGHTING_FRESHNESS_MS = 3e4;
|
|
32110
|
+
/**
|
|
32111
|
+
* IL fronte. Puro: nessun orologio proprio, nessuna memoria — il chiamante
|
|
32112
|
+
* porta `prior`, `nowMs` e il proprio `startedAtMs`.
|
|
32113
|
+
*
|
|
32114
|
+
* Il caso della PRIMA slice già attiva è trattato esplicitamente e vale come
|
|
32115
|
+
* fronte solo se il timestamp UPSTREAM della transizione è posteriore a
|
|
32116
|
+
* `startedAtMs` **e** entro `firstSightingFreshnessMs`. Entrambe le metà
|
|
32117
|
+
* servono: la sola freschezza scatterebbe su un'idratazione al boot di uno
|
|
32118
|
+
* stato flippato pochi secondi prima del riavvio, e il solo "dopo che abbiamo
|
|
32119
|
+
* iniziato" scatterebbe, su un processo di lunga vita, per una sorgente
|
|
32120
|
+
* adottata oggi il cui stato è cambiato ieri. Il caso ambiguo ERRA VERSO IL
|
|
32121
|
+
* SILENZIO e lo dichiara (`baseline-seeded-stale-active`).
|
|
32122
|
+
*/
|
|
32123
|
+
function evaluateSensorEdge(input) {
|
|
32124
|
+
const value = sliceActiveValue(input.capName, input.slice);
|
|
32125
|
+
if (value === null) return {
|
|
32126
|
+
edge: "none",
|
|
32127
|
+
value: null,
|
|
32128
|
+
reason: isSourceCap(input.capName) ? "non-boolean-value" : "unknown-cap"
|
|
32129
|
+
};
|
|
32130
|
+
if (input.prior === void 0) {
|
|
32131
|
+
if (!value) return {
|
|
32132
|
+
edge: "none",
|
|
32133
|
+
value,
|
|
32134
|
+
reason: "baseline-seeded-inactive"
|
|
32135
|
+
};
|
|
32136
|
+
const changedAt = sliceChangedAt(input.capName, input.slice);
|
|
32137
|
+
const floor = Math.max(input.startedAtMs, input.nowMs - input.firstSightingFreshnessMs);
|
|
32138
|
+
if (changedAt === null || changedAt < floor) return {
|
|
32139
|
+
edge: "none",
|
|
32140
|
+
value,
|
|
32141
|
+
reason: "baseline-seeded-stale-active"
|
|
32142
|
+
};
|
|
32143
|
+
return {
|
|
32144
|
+
edge: "rising",
|
|
32145
|
+
value: true
|
|
32146
|
+
};
|
|
32147
|
+
}
|
|
32148
|
+
if (input.prior === value) return {
|
|
32149
|
+
edge: "none",
|
|
32150
|
+
value,
|
|
32151
|
+
reason: "no-change"
|
|
32152
|
+
};
|
|
32153
|
+
if (!value) return {
|
|
32154
|
+
edge: "none",
|
|
32155
|
+
value,
|
|
32156
|
+
reason: "falling-edge"
|
|
32157
|
+
};
|
|
32158
|
+
return {
|
|
32159
|
+
edge: "rising",
|
|
32160
|
+
value: true
|
|
32161
|
+
};
|
|
32162
|
+
}
|
|
32163
|
+
//#endregion
|
|
31489
32164
|
//#region src/constants.ts
|
|
31490
32165
|
var HF_REPO = "camstack/camstack-models";
|
|
31491
32166
|
var HF_BASE_URL = `https://huggingface.co/${HF_REPO}/resolve/main`;
|
|
@@ -32647,6 +33322,47 @@ var BaseDeviceProvider = class extends BaseAddon {
|
|
|
32647
33322
|
}
|
|
32648
33323
|
};
|
|
32649
33324
|
//#endregion
|
|
33325
|
+
//#region src/device/battery-presence.ts
|
|
33326
|
+
/**
|
|
33327
|
+
* Default silence budget before a sleeping battery camera is called gone.
|
|
33328
|
+
*
|
|
33329
|
+
* Sized off the mechanism that produces contact, not off taste: a battery cam
|
|
33330
|
+
* on this deployment surfaces a firmware push (battery level, sleep/wake, or a
|
|
33331
|
+
* motion email) on the order of hours even with no visitors, and the snapshot
|
|
33332
|
+
* wrapper's own battery window is 1 hour. Six hours is therefore several
|
|
33333
|
+
* missed opportunities, not one — so a single quiet night does not raise a
|
|
33334
|
+
* fault, and a genuinely flat camera is named well inside a day.
|
|
33335
|
+
*/
|
|
33336
|
+
var BATTERY_UNREACHABLE_AFTER_MS = 360 * 6e4;
|
|
33337
|
+
/**
|
|
33338
|
+
* THE derivation. One crop rectangle, one presence verdict — see D52 for why
|
|
33339
|
+
* this repo insists a derived value has exactly one implementation.
|
|
33340
|
+
*
|
|
33341
|
+
* `undefined` status ⇒ `sleeping`. A device with no slice has made no claim,
|
|
33342
|
+
* and the caller decides separately whether it is even battery-operated
|
|
33343
|
+
* (`DeviceFeature.BatteryOperated`); this function never answers that
|
|
33344
|
+
* question, only what a battery device is doing.
|
|
33345
|
+
*/
|
|
33346
|
+
function deriveBatteryPresence(input) {
|
|
33347
|
+
const status = input.status;
|
|
33348
|
+
if (!status) return "sleeping";
|
|
33349
|
+
if (status.sleeping !== true) return "awake";
|
|
33350
|
+
const lastContactAt = status.lastContactAt;
|
|
33351
|
+
if (typeof lastContactAt !== "number" || lastContactAt <= 0) return "sleeping";
|
|
33352
|
+
const budget = input.unreachableAfterMs ?? 216e5;
|
|
33353
|
+
return input.nowMs - lastContactAt > budget ? "unreachable" : "sleeping";
|
|
33354
|
+
}
|
|
33355
|
+
/**
|
|
33356
|
+
* Is this presence a FAULT the operator should be told about?
|
|
33357
|
+
*
|
|
33358
|
+
* Exists so no surface has to re-decide it — the whole point of the third
|
|
33359
|
+
* state is that `sleeping` stops being rendered as breakage, and a caller that
|
|
33360
|
+
* writes `presence !== 'awake'` has silently undone that.
|
|
33361
|
+
*/
|
|
33362
|
+
function isBatteryPresenceFault(presence) {
|
|
33363
|
+
return presence === "unreachable";
|
|
33364
|
+
}
|
|
33365
|
+
//#endregion
|
|
32650
33366
|
//#region src/device/declared-device.ts
|
|
32651
33367
|
/** Marker written to a declared integration's `info`. */
|
|
32652
33368
|
var DECLARED_INTEGRATION_FIXED_KEY = "fixed";
|
|
@@ -33113,47 +33829,6 @@ function resolveDeviceProfile(features) {
|
|
|
33113
33829
|
return null;
|
|
33114
33830
|
}
|
|
33115
33831
|
//#endregion
|
|
33116
|
-
//#region src/device/battery-presence.ts
|
|
33117
|
-
/**
|
|
33118
|
-
* Default silence budget before a sleeping battery camera is called gone.
|
|
33119
|
-
*
|
|
33120
|
-
* Sized off the mechanism that produces contact, not off taste: a battery cam
|
|
33121
|
-
* on this deployment surfaces a firmware push (battery level, sleep/wake, or a
|
|
33122
|
-
* motion email) on the order of hours even with no visitors, and the snapshot
|
|
33123
|
-
* wrapper's own battery window is 1 hour. Six hours is therefore several
|
|
33124
|
-
* missed opportunities, not one — so a single quiet night does not raise a
|
|
33125
|
-
* fault, and a genuinely flat camera is named well inside a day.
|
|
33126
|
-
*/
|
|
33127
|
-
var BATTERY_UNREACHABLE_AFTER_MS = 360 * 6e4;
|
|
33128
|
-
/**
|
|
33129
|
-
* THE derivation. One crop rectangle, one presence verdict — see D52 for why
|
|
33130
|
-
* this repo insists a derived value has exactly one implementation.
|
|
33131
|
-
*
|
|
33132
|
-
* `undefined` status ⇒ `sleeping`. A device with no slice has made no claim,
|
|
33133
|
-
* and the caller decides separately whether it is even battery-operated
|
|
33134
|
-
* (`DeviceFeature.BatteryOperated`); this function never answers that
|
|
33135
|
-
* question, only what a battery device is doing.
|
|
33136
|
-
*/
|
|
33137
|
-
function deriveBatteryPresence(input) {
|
|
33138
|
-
const status = input.status;
|
|
33139
|
-
if (!status) return "sleeping";
|
|
33140
|
-
if (status.sleeping !== true) return "awake";
|
|
33141
|
-
const lastContactAt = status.lastContactAt;
|
|
33142
|
-
if (typeof lastContactAt !== "number" || lastContactAt <= 0) return "sleeping";
|
|
33143
|
-
const budget = input.unreachableAfterMs ?? 216e5;
|
|
33144
|
-
return input.nowMs - lastContactAt > budget ? "unreachable" : "sleeping";
|
|
33145
|
-
}
|
|
33146
|
-
/**
|
|
33147
|
-
* Is this presence a FAULT the operator should be told about?
|
|
33148
|
-
*
|
|
33149
|
-
* Exists so no surface has to re-decide it — the whole point of the third
|
|
33150
|
-
* state is that `sleeping` stops being rendered as breakage, and a caller that
|
|
33151
|
-
* writes `presence !== 'awake'` has silently undone that.
|
|
33152
|
-
*/
|
|
33153
|
-
function isBatteryPresenceFault(presence) {
|
|
33154
|
-
return presence === "unreachable";
|
|
33155
|
-
}
|
|
33156
|
-
//#endregion
|
|
33157
33832
|
//#region src/device/path-util.ts
|
|
33158
33833
|
/** Returns true when `x` is a non-null, non-array plain object. */
|
|
33159
33834
|
function isRecord(x) {
|
|
@@ -40437,6 +41112,18 @@ var METHOD_ACCESS_MAP = Object.freeze({
|
|
|
40437
41112
|
addonId: null,
|
|
40438
41113
|
access: "create"
|
|
40439
41114
|
},
|
|
41115
|
+
"system.getLoggingSettings": {
|
|
41116
|
+
capName: "system",
|
|
41117
|
+
capScope: "system",
|
|
41118
|
+
addonId: null,
|
|
41119
|
+
access: "view"
|
|
41120
|
+
},
|
|
41121
|
+
"system.getRequestCensus": {
|
|
41122
|
+
capName: "system",
|
|
41123
|
+
capScope: "system",
|
|
41124
|
+
addonId: null,
|
|
41125
|
+
access: "view"
|
|
41126
|
+
},
|
|
40440
41127
|
"system.getRetentionConfig": {
|
|
40441
41128
|
capName: "system",
|
|
40442
41129
|
capScope: "system",
|
|
@@ -40467,6 +41154,12 @@ var METHOD_ACCESS_MAP = Object.freeze({
|
|
|
40467
41154
|
addonId: null,
|
|
40468
41155
|
access: "view"
|
|
40469
41156
|
},
|
|
41157
|
+
"system.setLoggingSettings": {
|
|
41158
|
+
capName: "system",
|
|
41159
|
+
capScope: "system",
|
|
41160
|
+
addonId: null,
|
|
41161
|
+
access: "create"
|
|
41162
|
+
},
|
|
40470
41163
|
"system.setRetentionConfig": {
|
|
40471
41164
|
capName: "system",
|
|
40472
41165
|
capScope: "system",
|
|
@@ -41879,6 +42572,10 @@ var METHOD_DEVICE_SELECTORS = Object.freeze({
|
|
|
41879
42572
|
name: "deviceId",
|
|
41880
42573
|
form: "single",
|
|
41881
42574
|
optional: true
|
|
42575
|
+
}, {
|
|
42576
|
+
name: "deviceIds",
|
|
42577
|
+
form: "array",
|
|
42578
|
+
optional: true
|
|
41882
42579
|
}],
|
|
41883
42580
|
"fanControl.setDirection": [{
|
|
41884
42581
|
name: "deviceId",
|
|
@@ -44196,7 +44893,10 @@ function createSystemProxy(api) {
|
|
|
44196
44893
|
forceRetentionCleanup: (input) => dispatch("system", "forceRetentionCleanup", "mutation", input),
|
|
44197
44894
|
getSiteLocation: (input) => dispatch("system", "getSiteLocation", "query", input),
|
|
44198
44895
|
setSiteLocation: (input) => dispatch("system", "setSiteLocation", "mutation", input),
|
|
44199
|
-
detectSiteLocation: (input) => dispatch("system", "detectSiteLocation", "mutation", input)
|
|
44896
|
+
detectSiteLocation: (input) => dispatch("system", "detectSiteLocation", "mutation", input),
|
|
44897
|
+
getRequestCensus: (input) => dispatch("system", "getRequestCensus", "query", input),
|
|
44898
|
+
getLoggingSettings: (input) => dispatch("system", "getLoggingSettings", "query", input),
|
|
44899
|
+
setLoggingSettings: (input) => dispatch("system", "setLoggingSettings", "mutation", input)
|
|
44200
44900
|
},
|
|
44201
44901
|
terminalSession: {
|
|
44202
44902
|
listProfiles: (input) => dispatch("terminalSession", "listProfiles", "query", input),
|
|
@@ -46059,6 +46759,7 @@ var NATIVE_LEASE_BUDGET_KEY = "nativeLeaseBudgetMb";
|
|
|
46059
46759
|
var NATIVE_LEASE_ACTIVITY_KEY = "nativeLeaseActivityMs";
|
|
46060
46760
|
var NATIVE_LEASE_ADMISSION_KEY = "nativeLeaseAdmission";
|
|
46061
46761
|
var NATIVE_LEASE_TILE_BUDGET_KEY = "nativeTileBudgetMb";
|
|
46762
|
+
var NATIVE_LEASE_SCENE_BUDGET_KEY = "nativeSceneBudgetMb";
|
|
46062
46763
|
/**
|
|
46063
46764
|
* WHICH delivered frames the decode worker retains a native copy of.
|
|
46064
46765
|
*
|
|
@@ -46153,7 +46854,38 @@ var NativeLeaseSettingsSchema = z.object({
|
|
|
46153
46854
|
* fallback — i.e. the pre-2026-08-13 miss profile. Set it there only to
|
|
46154
46855
|
* reproduce that.
|
|
46155
46856
|
*/
|
|
46156
|
-
tileBudgetMb: z.number().int().min(0).max(1024)
|
|
46857
|
+
tileBudgetMb: z.number().int().min(0).max(1024),
|
|
46858
|
+
/**
|
|
46859
|
+
* RAM ceiling per decode worker, in MB, for the SCENE TILES — one
|
|
46860
|
+
* JPEG-encoded copy of the WHOLE native frame, cut in the same instant as the
|
|
46861
|
+
* subject tiles, on frames that detected something.
|
|
46862
|
+
*
|
|
46863
|
+
* It exists because a subject tile cannot answer a FULL-FRAME request:
|
|
46864
|
+
* containment is strict by design, so the native `keyFrame`, the detail
|
|
46865
|
+
* plane's `frameJpeg` rung and the display-crop fallback had no rung at all
|
|
46866
|
+
* below the hold. Measured on the live cluster: 23.3% of key-frame captures
|
|
46867
|
+
* missed, 95.7% of them with `worker-lease-gone` — the raster released one
|
|
46868
|
+
* frame-time after delivery, with the request only p50 367 ms behind it.
|
|
46869
|
+
*
|
|
46870
|
+
* Sizing, and why this is a budget and not a duration: a scene tile is
|
|
46871
|
+
* ~1.5-2.5 MB at 4K (against ~23.75 MB for the raster it was cut from and
|
|
46872
|
+
* ~60-120 KB for a subject tile), and it is cut ~0.4 times a second per busy
|
|
46873
|
+
* camera — only detection-bearing frames get one. 48 MB is therefore ~20-30
|
|
46874
|
+
* frames, i.e. the store's 30 s TTL binds at the steady state and the budget
|
|
46875
|
+
* binds only through a detection burst, where it still covers well past the
|
|
46876
|
+
* measured p90 ask age of 4.3 s. Holding the RASTERS for the same window
|
|
46877
|
+
* would be ~498 MB per camera and ~6 GB at peak concurrency — the OOM this
|
|
46878
|
+
* whole shape exists to avoid.
|
|
46879
|
+
*
|
|
46880
|
+
* A SEPARATE ceiling from `tileBudgetMb` on purpose: a scene tile is ~20× a
|
|
46881
|
+
* subject tile, so one shared budget would let a busy camera's key frames
|
|
46882
|
+
* evict the face/plate tiles the recognisers depend on. Two budgets make that
|
|
46883
|
+
* impossible rather than unlikely. `0` DISABLES scene tiles and restores the
|
|
46884
|
+
* pre-existing behaviour, where a late full-frame request had nothing but the
|
|
46885
|
+
* ≤640 RAM raster — which the `keyFrame` gate rejects, so in practice it had
|
|
46886
|
+
* nothing.
|
|
46887
|
+
*/
|
|
46888
|
+
sceneBudgetMb: z.number().int().min(0).max(1024)
|
|
46157
46889
|
});
|
|
46158
46890
|
/**
|
|
46159
46891
|
* The values in force when the operator has set nothing.
|
|
@@ -46169,6 +46901,7 @@ var DEFAULT_NATIVE_LEASE_SETTINGS = {
|
|
|
46169
46901
|
budgetMb: 1024,
|
|
46170
46902
|
activityMs: 15e3,
|
|
46171
46903
|
tileBudgetMb: 64,
|
|
46904
|
+
sceneBudgetMb: 48,
|
|
46172
46905
|
admission: "inferred"
|
|
46173
46906
|
};
|
|
46174
46907
|
/** Slider bounds for the operator-facing knobs (orchestrator settings UI). */
|
|
@@ -46196,6 +46929,12 @@ var NATIVE_LEASE_TILE_BUDGET_FIELD = {
|
|
|
46196
46929
|
step: 16,
|
|
46197
46930
|
default: DEFAULT_NATIVE_LEASE_SETTINGS.tileBudgetMb
|
|
46198
46931
|
};
|
|
46932
|
+
var NATIVE_LEASE_SCENE_BUDGET_FIELD = {
|
|
46933
|
+
min: 0,
|
|
46934
|
+
max: 1024,
|
|
46935
|
+
step: 16,
|
|
46936
|
+
default: DEFAULT_NATIVE_LEASE_SETTINGS.sceneBudgetMb
|
|
46937
|
+
};
|
|
46199
46938
|
/** Select options for the admission knob (orchestrator settings UI). */
|
|
46200
46939
|
var NATIVE_LEASE_ADMISSION_FIELD = {
|
|
46201
46940
|
options: [{
|
|
@@ -46254,12 +46993,14 @@ function readNativeLeaseOverride(config) {
|
|
|
46254
46993
|
const activityMs = readKnob("activityMs", config[NATIVE_LEASE_ACTIVITY_KEY]);
|
|
46255
46994
|
const admission = readAdmissionKnob(config[NATIVE_LEASE_ADMISSION_KEY]);
|
|
46256
46995
|
const tileBudgetMb = readKnob("tileBudgetMb", config[NATIVE_LEASE_TILE_BUDGET_KEY]);
|
|
46996
|
+
const sceneBudgetMb = readKnob("sceneBudgetMb", config[NATIVE_LEASE_SCENE_BUDGET_KEY]);
|
|
46257
46997
|
return {
|
|
46258
46998
|
...holdFrames === null ? {} : { holdFrames },
|
|
46259
46999
|
...budgetMb === null ? {} : { budgetMb },
|
|
46260
47000
|
...activityMs === null ? {} : { activityMs },
|
|
46261
47001
|
...admission === null ? {} : { admission },
|
|
46262
|
-
...tileBudgetMb === null ? {} : { tileBudgetMb }
|
|
47002
|
+
...tileBudgetMb === null ? {} : { tileBudgetMb },
|
|
47003
|
+
...sceneBudgetMb === null ? {} : { sceneBudgetMb }
|
|
46263
47004
|
};
|
|
46264
47005
|
}
|
|
46265
47006
|
function isHydratedField(entry) {
|
|
@@ -46270,7 +47011,8 @@ var LEASE_KEYS = [
|
|
|
46270
47011
|
NATIVE_LEASE_BUDGET_KEY,
|
|
46271
47012
|
NATIVE_LEASE_ACTIVITY_KEY,
|
|
46272
47013
|
NATIVE_LEASE_ADMISSION_KEY,
|
|
46273
|
-
NATIVE_LEASE_TILE_BUDGET_KEY
|
|
47014
|
+
NATIVE_LEASE_TILE_BUDGET_KEY,
|
|
47015
|
+
NATIVE_LEASE_SCENE_BUDGET_KEY
|
|
46274
47016
|
];
|
|
46275
47017
|
/**
|
|
46276
47018
|
* Extract the operator's lease overrides from an
|
|
@@ -48147,4 +48889,4 @@ function enumerateInferenceDevices(hw) {
|
|
|
48147
48889
|
return out;
|
|
48148
48890
|
}
|
|
48149
48891
|
//#endregion
|
|
48150
|
-
export { ACCESSORY_LABEL, ACCESS_ROLES, ALEXA_EGRESS_PROFILE, ALL_CAPABILITY_DEFINITIONS, APPLE_SA_TO_MACRO, AUDIO_ANALYSIS_CAP_NAME, AUDIO_BACKEND_CHOICES, AUDIO_MACRO_LABELS, AUDIO_PRESETS, AccessoriesStatusSchema, AccessoryKind, AddBrokerInputSchema, AddonAutoUpdateSchema, AddonListItemSchema, AddonPageDeclarationSchema, AddonPageInfoSchema, AdoptInputSchema as AdoptionAdoptInputSchema, AdoptResultSchema as AdoptionAdoptResultSchema, AdoptionCandidateResultSchema, AdoptionFilterSchema, GetCandidateInputSchema as AdoptionGetCandidateInputSchema, AdoptionJobSchema, AdoptionJobStateSchema, ListCandidatesInputSchema as AdoptionListCandidatesInputSchema, ListCandidatesOutputSchema as AdoptionListCandidatesOutputSchema, AdoptionOutcomeSchema, ReleaseInputSchema as AdoptionReleaseInputSchema, AdoptionStatusSchema, AgentLoadSummarySchema, AirQualitySensorStatusSchema, AlarmArmModeSchema, AlarmPanelStatusSchema, AlarmStateSchema, AlertSchema, AlertSeveritySchema, AlertSourceSchema, AlertStatusSchema, AmbientLightSensorStatusSchema, AnalyticsGroupDetailSchema, AnalyticsGroupMemberSchema, AnalyticsGroupRecordSchema, 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, AutomationActionSchema, AutomationConditionOperatorSchema, AutomationConditionSchema, AutomationControlStatusSchema, AutomationRecipeSchema, AutomationTriggerSchema, AvailableIntegrationTypeSchema, BACKEND_TO_FORMAT, BASE_LIVE_EGRESS_PROFILE, BATTERY_DEVICE_PROFILE, BATTERY_UNREACHABLE_AFTER_MS, BOOT_RECOVERY_BACKOFF_MS, 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, CAMERA_SWITCH_CATALOG, CAMERA_SWITCH_ORDER, CAM_PROFILE_ORDER, CAPABILITY_NAMES, CAPABILITY_ROUTER_KEYS, CAP_NAMES_WITH_STATUS, CAP_NODE_PIN_CONTEXT_KEY, CAP_PROVIDER_KIND_MAP, CLASS_MAP_MACRO_TARGETS, CLUSTER_MODEL_SCOPED_STEPS, CLUSTER_MODEL_SECTION_ID, CLUSTER_STEP_SETTING_FIELDS, COCO_80_LABELS, COCO_TO_MACRO, CONNECTION_TEST_TIMEOUT_MS, CORE_BLOCKS_ADDON_ID, CORE_BLOCK_ADDON_PREFIX, CamProfileSchema, CamStreamDescriptorSchema, CamStreamKindSchema, CamStreamResolutionSchema, CameraAssignmentStatusSchema, CameraAudioStatusSchema, CameraBrokerProfileSchema, CameraBrokerStatusSchema, CameraCredentialsSchema, CameraCredentialsStatusSchema, CameraDecoderShmSchema, CameraDecoderStatusSchema, CameraDetectionPhaseSchema, CameraDetectionProvisioningSchema, CameraDetectionProvisioningStateSchema, CameraDetectionStatusSchema, CameraMetricsSchema, CameraMetricsWithDeviceIdSchema, CameraMotionStatusSchema, CameraRecordingModeSchema, CameraRecordingStatusSchema, CameraSourceStatusSchema, CameraSourceStreamSchema, CameraStatusDegradationReasonSchema, CameraStatusDegradationSchema, CameraStatusSchema, CameraStatusStageSchema, CameraStreamSchema, CameraSwitchAuthoritySchema, CameraSwitchGroupSchema, CameraSwitchIdSchema, CameraSwitchSchema, CameraSwitchUnavailableReasonSchema, CandidateQueryFilterSchema, CapScopeSchema, CapabilityBindingsSchema, CarbonMonoxideStatusSchema, ChargingStatus, ClientNetworkStatsSchema, ClimateControlStatusSchema, ClipPlaybackSchema, ClipSchema, ClusterAddonNodeDeploymentSchema, ClusterAddonStatusEntrySchema, CollectionColumnSchema, CollectionIndexSchema, ColorStatusSchema, ConfigEntrySchema, ConfigSectionWithValuesSchema, ConfigTabDeclarationSchema, ConnectionTestDescriptorSchema, ConnectionTestInputSchema, ConnectionTestOutcomeSchema, ConnectivityStatusSchema, ConsumableItemSchema, ConsumablesStatusSchema, ContactStatusSchema, ControlKindSchema, ControlStatusSchema, ConvertArtifactSchema, ConvertResultSchema, ConvertTargetSchema, CoreBlockCompileResultSchema, CoreBlockInputSchema, CoreBlockPlacementSchema, CoreBlockSchema, CoreBlockStatusSchema, CoverStateSchema, CoverStatusSchema, CreateApiKeyInputSchema, CreateApiKeyResultSchema, CreateIntegrationInputSchema, CreateScopedTokenInputSchema, CreateScopedTokenResultSchema, CreateUserInputSchema, CustomActionInputSchema, CustomModelDescriptorSchema, DATAPLANE_SECRET_HEADER, DECLARED_DEVICE_SWEEP_LIMIT, DECLARED_INTEGRATION_FIXED_KEY, DEFAULT_ADDON_PLACEMENT, DEFAULT_AUDIO_ANALYZER_CONFIG, DEFAULT_CLUSTER_STEP_MODELS, DEFAULT_CLUSTER_STEP_SETTINGS, DEFAULT_DECODER_HWACCEL_CONFIG, DEFAULT_DETAIL_CROP_CONVENTION, DEFAULT_EVENTS_BAND_BUFFER_SEC, DEFAULT_EVENT_COLOR, DEFAULT_FEATURES, DEFAULT_MIN_LANDMARK_FACE_SIZE_PX, DEFAULT_NATIVE_LEASE_SETTINGS, DEFAULT_POOL_MEMORY_POLICY, DEFAULT_RECORDING_PROFILES, DEFAULT_RETENTION, DEFAULT_RUNTIME_STATE_DURABILITY, DEFAULT_TIMELAPSE_PREVIEW_TEXT, DETAIL_CROP_PADDING_FIELD, DETAIL_CROP_PADDING_KEY, DETAIL_CROP_SECTION_ID, DETAIL_CROP_SQUARE_KEY, DETECTION_MACRO_CLASSES, DETECTION_PIPELINE_CAP_NAME, DEVICE_BACKEND_TO_FORMAT, DEVICE_CAP_NAMES, DEVICE_PROFILES, DEVICE_SCOPED_CAPS, DEVICE_SETTINGS_CONTRIBUTION_METHODS, DEVICE_STATE_READERS, DEVICE_STATUS_METHOD, DEVICE_TYPE_CONTROL_KIND, DEVICE_TYPE_INFO, EngineInfoSchema as DataStoreEngineInfoSchema, DayNightModeSchema, DayNightOptionsSchema, DayNightSettingsPatchSchema, DayNightStatusSchema, DeclaredDevices, DecodedAudioChunkSchema, DecodedFrameSchema, DecoderSessionConfigSchema, DecoderStatsSchema, DeleteIntegrationResultSchema, DetailCropConventionSchema, DetectionCatalogClassMapSchema, DetectionSourceSchema, DeviceCodeSeveritySchema, DeviceConfig, DeviceDiscoveryStatusSchema, ExposeInputSchema as DeviceExportExposeInputSchema, DeviceExportStatusSchema, UnexposeInputSchema as DeviceExportUnexposeInputSchema, DeviceFeature, DeviceInfoSchema, DeviceNetworkStatsSchema, DeviceRole, DeviceRuntimeState, DeviceSelectorSchema, DeviceStatusSchema, DeviceType, DiscoveredChildDeviceSchema, DiscoveredChildStatusSchema, DiscoveredDeviceSchema, DiscoveredTargetSchema, DiskReconcileJobSchema, DisposerChain, DoorbellPressEventSchema, DoorbellStatusSchema, EVENTFUL_CAP_NAMES, EVENT_KIND_BY_CAP, EVENT_PAD_MS, EVENT_TAXONOMY, EXPORT_DENSE_MAX_RANGES, EXPRESSION_BUILTINS, EXPRESSION_BUILTIN_NAMES, EXPRESSION_COMPILE_CACHE_CAPACITY, EXPRESSION_IDENTIFIER_RE, EXPRESSION_INJECTED_NOW, EgressEncodeSchema, EgressRateControlSchema, EgressTranscodeRequestSchema, EgressTranscodeSchema, ElementConfigStore, EmbeddingInfoSchema, EmbeddingResultSchema, EncodeProfileSchema, EncodedPacketSchema, EnrichedWidgetMetadataSchema, EnumSensorDateTimeFormatSchema, EnumSensorStatusSchema, EventCategory, EventEmitterStatusSchema, EventFireSchema, EventItemSchema, EventKindCategorySchema, EventKindDescriptorSchema, EventKindIconSchema, EventKindSchema, EventKindsForDeviceSchema, EventMediaArtifactSchema, EventMediaCoverageSchema, EventMediaKindSchema, EventMediaProductionSchema, EventSourceType, ExportBytesSchema, ExportDenseRangeSchema, ExportDenseSchema, ExportDownloadSchema, ExportOptionsSchema, ExportRecordSchema, ExportSetupFieldSchema, ExportSetupSchema, ExportSpeedSchema, ExportStateSchema, ExportTimelapseSchema, ExposedDeviceSchema, ExposureModeSchema, ExpressionBindingSourceSchema, ExpressionEvalError, ExpressionFieldBindingSchema, ExpressionGlobalBindingSchema, ExpressionLiteralBindingSchema, ExpressionParseError, ExpressionSourceSchema, FULL_IMAGE_BBOX, FanControlStatusSchema, FanDirectionSchema, FeatureManifestSchema, FeatureProbeStatusSchema, FloodStatusSchema, Fmp4BoxSplitter, FrameHandleFormatSchema, FrameHandleSchema, FrameInputSchema, FrameLazyCountersSchema, FrameLazyMetricsSchema, GasStatusSchema, GetStreamWithCodecInputSchema, GlobalMetricsSchema, HAP_AUDIO_BASE, HAP_AUDIO_BITRATE_KBPS, HAP_AUDIO_VBV_KBITS, HAP_KEYFRAME_INTERVAL_SEC, HF_BASE_URL, HF_REPO, HWACCEL_OPTIONS, HealthStatusSchema, HfModelResolutionSchema, HistoryPointSchema, HistoryResolutionEnum, HumidifierStatusSchema, HumiditySensorStatusSchema, HvacModeSchema, INFERENCE_DEVICE_EXCLUSION_REASONS, ImageContractSchema, ImageContractStateSchema, ImageRotateSchema, ImageSettingsOptionsSchema, ImageSettingsPatchSchema, ImageSettingsStatusSchema, ImageStatusSchema, InferenceDeviceExclusionReasonSchema, IngestOwnerSchema, InstalledPackageSchema, IntegrationLiteSchema, IntegrationWithStateSchema, IntercomAbilitySchema, IntercomStatusSchema, KNOWN_CAP_NAMES, KeyEventSchema, LOG_LEVEL_RANK, LabelAttributionSchema, LabelDefinitionSchema, LabelTierSchema, LawnMowerActivitySchema, LawnMowerControlStatusSchema, LinkedDeviceSchema, LinkedDevicesModeSchema, ListGroupsPageSchema, ListGroupsQueryInput, LlmDefaultSchema, LlmDefaultSelectorSchema, LlmDownloadProgressSchema, LlmErrorCodeSchema, LlmGenerateBaseInputSchema, LlmGenerateErrSchema, LlmGenerateOkSchema, LlmGenerateResultSchema, LlmImageSchema, LlmNodeModelSchema, LlmProfileKindDescriptorSchema, LlmProfileKindSchema, LlmProfileSchema, LlmRetryPolicySchema, LlmRuntimeCompleteInputSchema, LlmRuntimeDiskUsageSchema, LlmRuntimeNodeSchema, LlmRuntimeStatusSchema, LlmTimeoutDefaults, LlmUsageRollupSchema, LlmUsageSchema, LocateSegmentResultSchema, LocationStatSchema, LockControlStatusSchema, LockStateSchema, LogEntrySchema, LogLevelSchema, LogStreamEntrySchema, LoginMethodContributionSchema, LoginStageEnum, MACRO_LABELS, MAX_CLIP_EVENT_IDS, MAX_CLIP_LABELS, MAX_CONDITION_DEPTH, MAX_CONDITION_LEAVES, MAX_EXPRESSION_AST_NODES, MAX_EXPRESSION_BINDINGS, MAX_EXPRESSION_CALL_ARGS, MAX_EXPRESSION_EVAL_STEPS, MAX_EXPRESSION_SOURCE_LENGTH, METHOD_ACCESS_MAP, METHOD_DEVICE_SELECTORS, MODEL_FORMATS, MODEL_PROVIDER_IDS, MOTION_TRIGGER_FEATURE, ManagedModelCatalogEntrySchema, ManagedModelExtraFileSchema, ManagedModelRefSchema, ManagedRuntimeConfigSchema, MaskGridDimsSchema, MaskGridShapeSchema, MaskLineShapeSchema, MaskPointSchema, MaskPolygonShapeSchema, MaskPolygonVerticesSchema, MaskRectShapeSchema, MaskShapeKindSchema, MaskShapeSchema, MediaFileInfoSchema, MediaFileSchema, MediaPlayerRepeatSchema, MediaPlayerStateSchema, MediaPlayerStatusSchema, MeshPeerSchema, MeshStatusSchema, MethodAccessSchema, ModelCatalogEntrySchema, ModelConvertInputSchema, ModelConvertMetadataSchema, ModelDistributeInputSchema, ModelDistributeResultSchema, ModelExtraFileSchema, ModelFormatEntrySchema, ModelFormatsSchema, ModelProviderIdSchema, ModelSubstitutionSchema, ModelVariantGroupSchema, MotionAnalysisResultSchema, MotionEventSchema, MotionOnMotionChangedDataSchema, MotionRegionSchema, MotionSourceEnum, MotionSourcesSchema, MotionStatusSchema, MotionTriggerRuntimeStateSchema, MotionTriggerStatusSchema, MotionZoneOptionsSchema, MotionZonePatchSchema, MotionZoneRegionSchema, MotionZoneStatusSchema, StatusSchema as MqttBrokerStatusSchema, MutationFilterSchema, NATIVE_LEASE_ACTIVITY_FIELD, NATIVE_LEASE_ACTIVITY_KEY, NATIVE_LEASE_ADMISSION_FIELD, NATIVE_LEASE_ADMISSION_KEY, NATIVE_LEASE_BUDGET_FIELD, NATIVE_LEASE_BUDGET_KEY, NATIVE_LEASE_HOLD_FIELD, NATIVE_LEASE_HOLD_KEY, NATIVE_LEASE_SECTION_ID, NATIVE_LEASE_TILE_BUDGET_FIELD, NATIVE_LEASE_TILE_BUDGET_KEY, NC_ALARM_SYSTEM_EVENT_KINDS, NC_AUDIO_CONFIRM_HITS_DEFAULT, NC_AUDIO_CONFIRM_HITS_MAX, NC_AUDIO_CONFIRM_HITS_MIN, NC_AUDIO_CONFIRM_WINDOW_MAX_SEC, NC_AUDIO_CONFIRM_WINDOW_MIN_SEC, NC_AUDIO_CONFIRM_WINDOW_SEC_DEFAULT, NC_AUDIO_DBFS_FLOOR, NC_AUDIO_DB_MAX, NC_AUDIO_DB_MIN, NC_AUDIO_DB_OFFERED, NC_AUDIO_DB_STEP, NC_AUDIO_DEFAULTS, NC_AUDIO_HIT_PERCENT_MAX, NC_AUDIO_HIT_PERCENT_MIN, NC_AUDIO_SAMPLING_MAX_SEC, NC_AUDIO_SAMPLING_MIN_SEC, NC_AUDIO_SEED, NC_AUTHORABLE_SYSTEM_EVENT_KINDS, NC_BASE_CONDITION_KEYS, NC_CONDITION_CATALOG, NC_CONFIRM_DEFAULT_MAX_IMAGE_PX, NC_CONFIRM_DEFAULT_TIMEOUT_MS, NC_CONFIRM_MAX_TIMEOUT_MS, NC_CONFIRM_MIN_TIMEOUT_MS, NC_DEFAULT_SNOOZE_MINUTES, NC_HISTORY_LIMIT_DEFAULT, NC_HISTORY_LIMIT_MAX, NC_MAX_PER_TRACK_IMMEDIATE, NC_OCCUPANCY_DEFAULTS, NC_RULE_EDITOR_SECTION_ORDER, NC_RULE_KIND_SPECS, NC_RULE_SECTIONS, NC_SNOOZE_MAX_MINUTES, NC_SYSTEM_DELIVERY, NC_SYSTEM_EVENT_FILTER_KEYS, NC_TAXONOMY, NativeCropBboxSchema, NativeCropRefSchema, NativeCropResultSchema, NativeDetectionSchema, NativeLeaseAdmissionSchema, NativeLeaseSettingsSchema, NativeObjectClassEnum, NativeObjectDetectionRuntimeStateSchema, NativeObjectDetectionStatusSchema, NcAlarmConfigSchema, NcAlarmModeCoverageSchema, NcAlarmSettingsPatchSchema, NcAlarmSettingsSchema, NcAlarmSkipReasonSchema, NcAlarmSkippedDeviceSchema, NcAudioConditionSchema, NcConditionDescriptorSchema, NcConditionsSchema, NcConfirmExpectSchema, NcConfirmSchema, NcCrossingSchema, NcDeliverySchema, NcDeviceStateConditionSchema, NcHistoryEntrySchema, NcHistoryFilterSchema, NcHistoryRecordKindSchema, NcHistoryStatusSchema, NcHistorySubjectSchema, NcMediaFrameSchema, NcMediaPolicySchema, NcOccupancyConditionSchema, NcPlateMatcherSchema, NcRuleActionSchema, NcRuleActionSequenceSchema, NcRuleActionsSchema, NcRuleInputSchema, NcRuleNotificationButtonSchema, NcRulePatchSchema, NcRuleSchema, NcRuleTargetSchema, NcSceneConditionSchema, NcScheduleSchema, NcScheduleWindowSchema, NcSnoozeInputSchema, NcSnoozeSchema, NcSnoozeScopeSchema, NcSnoozeSuppressedSchema, NcSystemEventConditionSchema, NcSystemEventKindSchema, NcTaxonomyEntrySchema, NcTaxonomySchema, NcTestResultSchema, NcThrottleGranularitySchema, NcThrottleSchema, NcZoneConditionSchema, NetworkAccessStatusSchema, NetworkAddressSchema, NetworkEndpointSchema, NotificationActionIconSchema, NotificationActionSchema, NotificationFormatSchema, NotificationSchema, NotifierStatusSchema, NumericSensorStatusSchema, OPERATOR_WRITTEN_STALE_MS, OPS_LOG_DEFAULT_LIMIT, OPS_LOG_RING_DEFAULT_MAX, OauthIntegrationDescriptorSchema, ObjectEventSchema, OpsLogDomainSchema, OpsLogEntrySchema, OpsLogOpSchema, OpsLogQueryInputSchema, OpsLogReasonSchema, OrchestratorMetricsSchema, OsdOverlayKindEnum, OsdOverlayPatchSchema, OsdOverlaySchema, OsdPositionEnum, OsdRenderOutcomeEnum, OsdRenderResultSchema, OsdSlotBindingSchema, OsdSlotViewSchema, OsdSourceOptionSchema, OsdSourceSchema, OsdSourceValueTypeEnum, OsdStatusSchema, PET_FEEDER_MANUAL_FEED_MAX, PET_FEEDER_MANUAL_FEED_MIN, PIPELINE_FLOW_CAPABILITY_NAMES, PIPELINE_OWNER_CAPABILITY_NAMES, PRIVACY_MASK_CAP_NAME, 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, PoolMemoryWatchdog, PowerMeterStatusSchema, PresenceStatusSchema, PressureSensorStatusSchema, PrivacyMaskOptionsSchema, PrivacyMaskPatchSchema, PrivacyMaskRegionSchema, PrivacyMaskShapeSchema, PrivacyMaskStatusSchema, ProfileRtspEntrySchema, ProfileSlotSchema, ProfileSlotStatusSchema, ProviderStatusSchema, PtzAutotrackRuntimeStateSchema, PtzAutotrackSettingsSchema, PtzAutotrackStatusSchema, PtzAutotrackTargetOptionSchema, PtzMoveCommandSchema, PtzOptionsSchema, PtzPositionSchema, PtzPresetSchema, PtzStatusSchema, QueryFilterSchema, RATE_CONTROL_RELAXED, RATE_CONTROL_TIGHT, REACHABILITY_FAILURES_TO_OFFLINE, REACHABILITY_POLL_INTERVAL_MS, REACHABILITY_PROBE_TIMEOUT_MS, RECOGNITION_TYPES, RECORDING_EXPORT_MAX_READ_BYTES, RESERVED_BINDING_NAMES, RESTORED_CAP_NAMES, RUNTIME_DEFAULTS, RUNTIME_STATE_POLICY, RUNTIME_STATE_REFRESH_MISS_COOLDOWN_MS, RUNTIME_TO_FORMAT, RawStateResultSchema, ReadGopBytesResultSchema, ReadSegmentBytesResultSchema, ReadWindowBytesResultSchema, ReadinessRegistry, ReadinessTimeoutError, RecentTracksPageSchema, RecentTracksQueryInput, RecordingAvailabilitySchema, RecordingBandModeSchema, RecordingBandSchema, RecordingBandTriggersSchema, RecordingConfigSchema, RecordingDaysSchema, RecordingDeviceUsageSchema, RecordingLocationUsageSchema, RecordingManifestSchema, RecordingRangeSchema, RecordingRebalanceInputSchema, RecordingRebalanceMoveSchema, RecordingRebalancePlanSchema, RecordingRebalanceSkipReasonSchema, RecordingRebalanceSkipSchema, RecordingRetentionSchema, RecordingStatusSchema, RecordingStorageModeSchema, RecordingStorageUsageSchema, RecordingTriggersSchema, RecordingWeekdaySchema, RedirectLoginMethodSchema, RelocateFootageClassSchema, RelocateFootageInputSchema, RelocateJobSchema, RelocateJobStateSchema, RelocateMediaInputSchema, RenderedAsSchema, ReportMotionInputSchema, RetrainAnnotationDraftSchema, RetrainAnnotationKindSchema, RetrainAnnotationSchema, RetrainAnnotationSourceSchema, RetrainAssistResultSchema, RetrainAssistSubjectSchema, RetrainCopyRefusalSchema, RetrainFrameCandidateSchema, RetrainFrameListSchema, RetrainFrameSchema, RetrainFrameSelectionSchema, RetrainMacroClassSchema, RetrainStatusSchema, RetrainTrackSchema, RetrainTransitionResultSchema, RingBuffer, RtpSourceSchema, RtspRestreamEntrySchema, RunnerCameraConfigSchema, RunnerCameraDeviceUIFields, RunnerFrameSourceSchema, RunnerInferenceDeviceSchema, RunnerLocalLoadSchema, RunnerLocalMetricsSchema, SCENE_CONDITIONS, SCENE_CONFIRM_DEFAULT_MAX_IMAGE_PX, SCENE_CONFIRM_DEFAULT_TIMEOUT_MS, SCENE_DEFAULT_ANCHOR_THRESHOLD, SCENE_DEFAULT_CHECK_INTERVAL_SEC, SCENE_DEFAULT_OBSERVATION_SPACING_SEC, SCENE_DEFAULT_QUIET_SECONDS, SCENE_DEFAULT_UNCOVERED_POLICY, SCENE_DIVERGED, SCENE_RESET_RECAPTURES, SCOPE_PRESETS, SENSOR_FEATURES, SENSOR_MAP, SOURCE_INFO_METADATA_KEY, STREAM_PROFILE_META, STREAM_QUALITY_LABELS, SUB_DETECTION_TYPES, SYSTEM_CAP_NAMES, SYSTEM_SCOPE_DEVICE_METHODS, SceneCheckSchema, SceneConditionSchema, SceneConfirmSchema, SceneMonitorSchema, SceneMonitorStateSchema, SceneMonitorStatusSchema, SceneReferenceSchema, SceneUnavailableSchema, SceneUncoveredPolicySchema, SceneVerdictSchema, ScopedTokenSchema, ScopedTokenSummarySchema, ScoredObjectEventSchema, ScriptRunnerStatusSchema, SearchResultSchema, SendEmailInputSchema, SendEmailResultSchema, SendResultSchema, SensorEventSchema, ServerBootModeSchema, ServerPackageStatusSchema, ServerRollbackInfoSchema, ServerUpdateActionResultSchema, ServerUpdateCheckResultSchema, ServerUpdateStateSchema, SetSiteLocationInputSchema, SettingsPatchSchema, SettingsRecordSchema, SettingsSchemaWithValuesSchema, SettingsUpdateResultSchema, ShmRingStatsSchema, SiteLocationSchema, SiteLocationSourceSchema, SiteLocationStatusSchema, 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, StorageMigrationClassSchema, StorageMigrationDestinationsSchema, StorageMigrationFootageMoveInputSchema, StorageMigrationInputSchema, StorageMigrationJobSchema, StorageMigrationLeaseInputSchema, StorageMigrationMediaMoveInputSchema, StorageMigrationMoveSchema, StorageMigrationParticipantSchema, StorageMigrationPhaseSchema, StorageMigrationPlanSchema, 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, TIMELAPSE_DENSE_FLOOR_SEC, TIMEZONES, TRANSCODE_DOWN_MAX_BITRATE_KBPS, TRANSCODE_DOWN_MAX_HEIGHT, TamperStatusSchema, TankStatusSchema, TargetKindCapsSchema, TargetKindLevelSchema, TargetKindSchema, TargetSchema, TemperatureSensorStatusSchema, TerminalInstanceInfoSchema, TerminalLegacyCameraSchema, TerminalOutputBatchSchema, TerminalOutputEventSchema, TerminalProfileInfoSchema, TerminalSessionInfoSchema, TestConnectionResultSchema$1 as TestConnectionResultSchema, TestConnectionStatusEnum, TestResultSchema, TimelapseRuleInputSchema, TimelapseRulePatchSchema, TimelapseRuleSchema, TimelapseTemplateSchema, ToastSchema, TokenScopeSchema, TopologyNodeSchema, TopologyProcessSchema, TopologyServiceSchema, TrackCascadeCountsSchema, TrackEnvelopeSchema, TrackFlagsPatchSchema, TrackFlagsSchema, TrackProjectionSchema, TrackSchema, TrackSourceSchema, TrackStateSchema, TrackZoneFilterSchema, TrackedDetectionSchema, TrainingExportDeviceTotalsSchema, TrainingExportSummarySchema, TurnServerSchema, UNIT_TABLE, BrokerInfoSchema$1 as UnifiedBrokerInfoSchema, UnitConversionError, UpdateIntegrationInputSchema, UpdateStatusSchema, UpdateUserInputSchema, UserRecordSchema, UserSummarySchema, VISIT_MERGE_GAP_MS, VacuumControlStatusSchema, VacuumStateSchema, ValveStateSchema, ValveStatusSchema, VectorDeclareIndexInputSchema, VectorDeleteByFilterInputSchema, VectorDeleteInputSchema, VectorDeleteResultSchema, VectorFilterSchema, VectorGetInputSchema, VectorGetResultSchema, VectorItemSchema, VectorMatchSchema, VectorMetadataSchema, VectorMetricSchema, VectorQueryInputSchema, VectorQueryResultSchema, VectorStatsInputSchema, VectorStatsResultSchema, VectorUpsertInputSchema, VectorUpsertResultSchema, VibrationStatusSchema, VideoEncodeSchema, WEBRTC_EGRESS_PROFILE, 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, asBoolean, asJsonArray, asJsonObject, asNumber, asString, assertTimelapseCadences, audioAnalysisCapability, audioAnalyzerCapability, audioCodecCapability, audioIsFailClosed, audioKindId, audioLabelChoices, audioMetricsCapability, audioModeOf, audioOrDefaults, audioPlanFromEncodeProfile, authProviderCapability, autoAssignProfiles, automationControlCapability, backupCapability, bareAddonId, batteryCapability, bestLocationMatch, binaryCapability, bindAddonActions, brightnessCapability, brokerCapability, buildAddonRouteProvider, buildAudioArgs, buildEventKindDescriptor, buildFfmpegArgs, buildInputArgs, buildModelVariantGroups, buildNcTaxonomy, buildRoleScopes, buildStreamParamsConfigSchema, buildVideoArgs, buttonCapability, cameraCredentialsCapability, cameraPipelineConfigCapability, cameraStreamsCapability, canConvertUnit, canonicalEgressPlan, carbonMonoxideCapability, cellsToRects, classifyBearerPrincipal, classifyStream, classifyStreams, climateControlCapability, clusterModelSettingKey, clusterStepSettingFieldsFor, clusterStepSettingKey, collectHydratedFieldEntries, collectHydratedFieldValues, colorCapability, colorForKind, commitWatchdogRestart, compileExpression, compileExpressionSafe, composeSwitchedOff, conditionDepth, conditionExclusionReason, conditionVisibleForKind, connectionTestCapability, connectivityCapability, consumablesCapability, contactCapability, controlCapability, convertUnit, coreBlockAddonId, coreBlockIdFromAddonId, coreBlocksCapability, cosineSimilarity, countConditionLeaves, coverCapability, createDeviceProxy, createDurableState, createEvent, createEventBusSliceSource, createExpressionScope, createHwAccelCache, createLazyTrpcSource, createMirrorSource, createRuntimeStateBridge, createSliceHandle, createSystemProxy, customAction, customModelRegistryCapability, dataStoreProviderCapability, dayNightCapability, declarationOwnerNodeId, decodeVectorBase64, decoderCapability, defaultDeliveryForSection, defaultDeviceFor, defineCustomActions, deriveBatteryPresence, deriveCameraSwitches, deriveDetailCropRect, deriveRecordingMode, describeModelVariant, detectAccessRole, detectionPipelineCapability, deviceAdoptionCapability, deviceBackendToFormat, deviceCustomAction, deviceDiscoveryCapability, deviceExportCapability, deviceManagerCapability, deviceMatchesProfile, deviceOpsCapability, deviceProviderCapability, deviceSelectorMatches, deviceStateCapability, deviceStatusCapability, doorbellCapability, droppedConditionsForKind, egressTranscodeSharingKey, egressTransportFromRequest, embeddingEncoderCapability, emitDownForOwnedCaps, emitReadiness, encodeProfileFromStreamShape, encodeVectorBase64, enumSensorCapability, enumerateInferenceDevices, enumerateItemArrayFields, enumerateSchemaFields, errMsg, evaluateAst, evaluateExpressionSource, evaluatePoolMemory, evaluateZoneRules, event, eventEmitterCapability, eventsCapability, expandCapMethods, extractNestedAddonId, extractSourceInfoFromMetadata, faceGalleryCapability, fanControlCapability, featureProbeCapability, filesystemBrowseCapability, findTimezone, floodCapability, formatForBackend, formatForRuntime, gasCapability, generateAutomationBlock, getAudioMacroClassIds, getByPath, getCapsByProviderKind, getTaxonomyEntry, hasMotionTrigger, hfModelUrl, htmlToText, humidifierCapability, humiditySensorCapability, hydrateSchema, imageCapability, imageSettingsCapability, inferModelProvider, initialPoolMemoryState, integrationsCapability, intercomCapability, invocationFromEncodeProfile, isAgentOnlyPlacement, isArrayOutputSchema, isAudioLabelSelected, isAudioRule, isBaseConditionKey, isBatteryPresenceFault, isClusterScopedStep, isCollectionArrayMethod, isDeployableToAgent, isDetectionMacroClass, isDeviceConfigCap, isDeviceScopedCap, isEvent, isIsolatedBuiltin, isNode, isObjectInput, isOccupancyRule, isRestoredCap, isSameAddonId, isScheduleActive, isSoftwareDecode, isSystemDelivery, isVoidInput, jobKindSchema, kebabToCamel, knownValues, lawnMowerControlCapability, lifecycleJobSchema, lifecycleJobScopeSchema, lifecycleJobStateSchema, lifecycleTaskSchema, llmCapability, llmRuntimeCapability, localNetworkCapability, locationSimilarity, lockControlCapability, logBannerArgs, logDestinationCapability, logLevelAtMost, loginMethodCapability, looseSchema, makeProfileBrokerId, makeSourceBrokerId, mapAudioLabelToMacro, markdownToHtmlLite, markdownToText, maskUrlCredentials, mediaPlayerCapability, mergeSourceInfo, meshNetworkCapability, method, methodAccessForHttpMethod, metricsProviderCapability, modelConvertCapability, modelDistributorCapability, modelFormatForRuntime, motionCapability, motionDetectionCapability, motionTriggerCapability, motionZonesCapability, mqttBrokerCapability, nativeObjectDetectionCapability, networkAccessCapability, networkQualityCapability, nodePin, nodesCapability, normalizeAddonInitResult, normalizeAudioLabel, normalizeTokenScopes, normalizeUnit, notificationOutputCapability, notificationRulesCapability, notifierCapability, numericSensorCapability, oauthIntegrationCapability, objectInputDeclaresAddonId, osdCapability, osdManagerCapability, overlayClusterStepSettings, parseCameraStreamConfig, parseExpression, parseJsonArray, parseJsonObject, parseJsonUnknown, parseProcStatus, parseProfileBrokerId, parseRuleSection, parseStreamParamsFormPatch, patchAudio, petFeederCapability, pickAccessoryControl, pickClusterStepModels, pickClusterStepSettings, pickDetailCropConvention, pickNativeLeaseOverride, pickPreferredRtspEntry, pickRestartCandidate, pickVideoEncoder, pickerForCondition, pipelineAnalyticsCapability, pipelineExecutorCapability, pipelineOrchestratorCapability, pipelineRunnerCapability, plateGalleryCapability, platformProbeCapability, poolMemoryThreshold, powerMeterCapability, prepareNotification, presenceCapability, pressureSensorCapability, principalMayReachAddon, privacyMaskCapability, procedureAuthKey, ptzAutotrackCapability, ptzCapability, pythonScriptForBackend, readClusterStepModels, readClusterStepSettings, readDetailCropConvention, readDeviceStateFrom, readNativeLeaseOverride, readNodePin, readTimelapseGeneratedAt, readinessKey, rebootCapability, recordingCapability, recordingExportCapability, rectsToCells, requiresPython, resetPoolBaseline, resolveAddonExecution, resolveAddonGroup, resolveAddonPlacement, resolveAddonRuntime, resolveCapMount, resolveClusterStepModelId, resolveDetectionRuntime, resolveDeviceControlKind, resolveDeviceProfile, resolveEgressDecodeHwAccel, resolveFormat, resolveHydratedFieldValue, resolveMethodAuth, resolveModelFormat, resolveMutate, resolvePoolMemoryPolicy, resolveRecordingProfiles, resolveRunnerId, resolveVariantModelId, resolveViewableDeviceIds, roleSpec, ruleEditorSectionsForKind, ruleKindOf, ruleKindSpec, ruleMatchesSection, ruleSection, ruleSectionOf, ruleSeedForSection, runInferenceStep, runtimeDevices, runtimeStatePolicyFor, sceneMonitorCapability, scopeInherits, scopeKey, scopesAllowAddon, scopesAllowDeviceCap, scoreRuntimes, scriptRunnerCapability, selectAssignedProfileSlots, serverManagementCapability, setByPath, settingsStoreCapability, sleep, sleepCancellable, smokeCapability, smtpProviderCapability, snapshotCapability, ssoBridgeCapability, startReachabilityPoll, stateVocabularyFor, storageCapability, storageEvictableCapability, storageMigrationCapability, storageProviderCapability, streamBrokerCapability, streamCatalogCapability, streamParamsCapability, streamPixels, streamQualityLabel, subKindsOf, summarisePrivacyAudio, summarizeEffectiveScope, supportedRuntimes, switchCapability, switchedOffIds, synthesizeSourceInfo, systemCapability, systemEventFilterApplies, systemEventFilterAppliesToAnyKind, tamperCapability, taskLogEntrySchema, taskPhaseSchema, taskTargetSchema, temperatureSensorCapability, terminalSessionCapability, textToHtml, toDeviceSummary, toExpressionValue, toNodeId, toStreamSourceEntry, toastCapability, toggleAudioLabel, tokenize, transcodeBody, tryConvertUnit, turnProviderCapability, unitDimension, unitsForDimension, updateCapability, userManagementCapability, userPasskeysCapability, vacuumControlCapability, validateExpressionSource, validateRecipeBounds, valveCapability, vectorDimFromBase64, vectorStoreCapability, vibrationCapability, videoclipsCapability, viewerUiCapability, waterHeaterCapability, weatherCapability, webrtcClientHintsSchema, webrtcSessionCapability, wiringAddonHealthSchema, wiringHealthSnapshotSchema, wiringNodeHealthSchema, wiringProbeKindSchema, wiringProbeResultSchema, zodEntriesToConfigUI, zoneAnalyticsCapability, zoneRulesCapability, zonesCapability };
|
|
48892
|
+
export { ACCESSORY_LABEL, ACCESS_ROLES, ALEXA_EGRESS_PROFILE, ALL_CAPABILITY_DEFINITIONS, APPLE_SA_TO_MACRO, AUDIO_ANALYSIS_CAP_NAME, AUDIO_BACKEND_CHOICES, AUDIO_MACRO_LABELS, AUDIO_PRESETS, AccessoriesStatusSchema, AccessoryKind, AddBrokerInputSchema, AddonAutoUpdateSchema, AddonListItemSchema, AddonPageDeclarationSchema, AddonPageInfoSchema, AdoptInputSchema as AdoptionAdoptInputSchema, AdoptResultSchema as AdoptionAdoptResultSchema, AdoptionCandidateResultSchema, AdoptionFilterSchema, GetCandidateInputSchema as AdoptionGetCandidateInputSchema, AdoptionJobSchema, AdoptionJobStateSchema, ListCandidatesInputSchema as AdoptionListCandidatesInputSchema, ListCandidatesOutputSchema as AdoptionListCandidatesOutputSchema, AdoptionOutcomeSchema, ReleaseInputSchema as AdoptionReleaseInputSchema, AdoptionStatusSchema, AgentLoadSummarySchema, AirQualitySensorStatusSchema, AlarmArmModeSchema, AlarmPanelStatusSchema, AlarmStateSchema, AlertSchema, AlertSeveritySchema, AlertSourceSchema, AlertStatusSchema, AmbientLightSensorStatusSchema, AnalyticsGroupDetailSchema, AnalyticsGroupMemberSchema, AnalyticsGroupRecordSchema, 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, AutomationActionSchema, AutomationConditionOperatorSchema, AutomationConditionSchema, AutomationControlStatusSchema, AutomationRecipeSchema, AutomationTriggerSchema, AvailableIntegrationTypeSchema, BACKEND_TO_FORMAT, BASE_LIVE_EGRESS_PROFILE, BATTERY_DEVICE_PROFILE, BATTERY_UNREACHABLE_AFTER_MS, BOOT_RECOVERY_BACKOFF_MS, 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, CAMERA_SWITCH_CATALOG, CAMERA_SWITCH_ORDER, CAM_PROFILE_ORDER, CAPABILITY_NAMES, CAPABILITY_ROUTER_KEYS, CAP_NAMES_WITH_STATUS, CAP_NODE_PIN_CONTEXT_KEY, CAP_PROVIDER_KIND_MAP, CLASS_MAP_MACRO_TARGETS, CLUSTER_MODEL_SCOPED_STEPS, CLUSTER_MODEL_SECTION_ID, CLUSTER_STEP_SETTING_FIELDS, COCO_80_LABELS, COCO_TO_MACRO, CONNECTION_TEST_TIMEOUT_MS, CORE_BLOCKS_ADDON_ID, CORE_BLOCK_ADDON_PREFIX, CamProfileSchema, CamStreamDescriptorSchema, CamStreamKindSchema, CamStreamResolutionSchema, CameraAssignmentStatusSchema, CameraAudioStatusSchema, CameraBrokerProfileSchema, CameraBrokerStatusSchema, CameraCredentialsSchema, CameraCredentialsStatusSchema, CameraDecoderShmSchema, CameraDecoderStatusSchema, CameraDetectionPhaseSchema, CameraDetectionProvisioningSchema, CameraDetectionProvisioningStateSchema, CameraDetectionStatusSchema, CameraMetricsSchema, CameraMetricsWithDeviceIdSchema, CameraMotionStatusSchema, CameraRecordingModeSchema, CameraRecordingStatusSchema, CameraSourceStatusSchema, CameraSourceStreamSchema, CameraStatusDegradationReasonSchema, CameraStatusDegradationSchema, CameraStatusSchema, CameraStatusStageSchema, CameraStreamSchema, CameraSwitchAuthoritySchema, CameraSwitchGroupSchema, CameraSwitchIdSchema, CameraSwitchSchema, CameraSwitchUnavailableReasonSchema, CandidateQueryFilterSchema, CapScopeSchema, CapabilityBindingsSchema, CarbonMonoxideStatusSchema, ChargingStatus, ClientNetworkStatsSchema, ClimateControlStatusSchema, ClipPlaybackSchema, ClipSchema, ClusterAddonNodeDeploymentSchema, ClusterAddonStatusEntrySchema, CollectionColumnSchema, CollectionIndexSchema, ColorStatusSchema, ConfigEntrySchema, ConfigSectionWithValuesSchema, ConfigTabDeclarationSchema, ConnectionTestDescriptorSchema, ConnectionTestInputSchema, ConnectionTestOutcomeSchema, ConnectivityStatusSchema, ConsumableItemSchema, ConsumablesStatusSchema, ContactStatusSchema, ControlKindSchema, ControlStatusSchema, ConvertArtifactSchema, ConvertResultSchema, ConvertTargetSchema, CoreBlockCompileResultSchema, CoreBlockInputSchema, CoreBlockPlacementSchema, CoreBlockSchema, CoreBlockStatusSchema, CoverStateSchema, CoverStatusSchema, CreateApiKeyInputSchema, CreateApiKeyResultSchema, CreateIntegrationInputSchema, CreateScopedTokenInputSchema, CreateScopedTokenResultSchema, CreateUserInputSchema, CustomActionInputSchema, CustomModelDescriptorSchema, DATAPLANE_SECRET_HEADER, DECLARED_DEVICE_SWEEP_LIMIT, DECLARED_INTEGRATION_FIXED_KEY, DEFAULT_ADDON_PLACEMENT, DEFAULT_AUDIO_ANALYZER_CONFIG, DEFAULT_CLUSTER_STEP_MODELS, DEFAULT_CLUSTER_STEP_SETTINGS, DEFAULT_DECODER_HWACCEL_CONFIG, DEFAULT_DETAIL_CROP_CONVENTION, DEFAULT_EVENTS_BAND_BUFFER_SEC, DEFAULT_EVENT_COLOR, DEFAULT_FEATURES, DEFAULT_FIRST_SIGHTING_FRESHNESS_MS, DEFAULT_MIN_LANDMARK_FACE_SIZE_PX, DEFAULT_NATIVE_LEASE_SETTINGS, DEFAULT_POOL_MEMORY_POLICY, DEFAULT_RECORDING_PROFILES, DEFAULT_RETENTION, DEFAULT_RUNTIME_STATE_DURABILITY, DEFAULT_TIMELAPSE_PREVIEW_TEXT, DETAIL_CROP_PADDING_FIELD, DETAIL_CROP_PADDING_KEY, DETAIL_CROP_SECTION_ID, DETAIL_CROP_SQUARE_KEY, DETECTION_MACRO_CLASSES, DETECTION_PIPELINE_CAP_NAME, DEVICE_BACKEND_TO_FORMAT, DEVICE_CAP_NAMES, DEVICE_PROFILES, DEVICE_SCOPED_CAPS, DEVICE_SETTINGS_CONTRIBUTION_METHODS, DEVICE_STATE_READERS, DEVICE_STATUS_METHOD, DEVICE_TYPE_CONTROL_KIND, DEVICE_TYPE_INFO, EngineInfoSchema as DataStoreEngineInfoSchema, DayNightModeSchema, DayNightOptionsSchema, DayNightSettingsPatchSchema, DayNightStatusSchema, DeclaredDevices, DecodedAudioChunkSchema, DecodedFrameSchema, DecoderSessionConfigSchema, DecoderStatsSchema, DeleteIntegrationResultSchema, DetailCropConventionSchema, DetectionCatalogClassMapSchema, DetectionSourceSchema, DeviceCodeSeveritySchema, DeviceConfig, DeviceDiscoveryStatusSchema, ExposeInputSchema as DeviceExportExposeInputSchema, DeviceExportStatusSchema, UnexposeInputSchema as DeviceExportUnexposeInputSchema, DeviceFeature, DeviceInfoSchema, DeviceNetworkStatsSchema, DeviceRole, DeviceRuntimeState, DeviceSelectorSchema, DeviceStatusSchema, DeviceType, DiagnosticIdSchema, DiagnosticWindowPatchSchema, DiagnosticWindowSchema, DiscoveredChildDeviceSchema, DiscoveredChildStatusSchema, DiscoveredDeviceSchema, DiscoveredTargetSchema, DiskReconcileJobSchema, DisposerChain, DoorbellPressEventSchema, DoorbellStatusSchema, EVENTFUL_CAP_NAMES, EVENT_KIND_BY_CAP, EVENT_PAD_MS, EVENT_TAXONOMY, EXPORT_DENSE_MAX_RANGES, EXPRESSION_BUILTINS, EXPRESSION_BUILTIN_NAMES, EXPRESSION_COMPILE_CACHE_CAPACITY, EXPRESSION_IDENTIFIER_RE, EXPRESSION_INJECTED_NOW, EgressEncodeSchema, EgressRateControlSchema, EgressTranscodeRequestSchema, EgressTranscodeSchema, ElementConfigStore, EmbeddingInfoSchema, EmbeddingResultSchema, EncodeProfileSchema, EncodedPacketSchema, EnrichedWidgetMetadataSchema, EnumSensorDateTimeFormatSchema, EnumSensorStatusSchema, EventCategory, EventEmitterStatusSchema, EventFireSchema, EventItemSchema, EventKindCategorySchema, EventKindDescriptorSchema, EventKindIconSchema, EventKindSchema, EventKindsForDeviceSchema, EventMediaArtifactSchema, EventMediaCoverageSchema, EventMediaKindSchema, EventMediaProductionSchema, EventSourceType, ExportBytesSchema, ExportDenseRangeSchema, ExportDenseSchema, ExportDownloadSchema, ExportOptionsSchema, ExportRecordSchema, ExportSetupFieldSchema, ExportSetupSchema, ExportSpeedSchema, ExportStateSchema, ExportTimelapseSchema, ExposedDeviceSchema, ExposureModeSchema, ExpressionBindingSourceSchema, ExpressionEvalError, ExpressionFieldBindingSchema, ExpressionGlobalBindingSchema, ExpressionLiteralBindingSchema, ExpressionParseError, ExpressionSourceSchema, FIRST_LEVEL_MACRO_CLASSES, FULL_IMAGE_BBOX, FanControlStatusSchema, FanDirectionSchema, FeatureManifestSchema, FeatureProbeStatusSchema, FloodStatusSchema, Fmp4BoxSplitter, FrameHandleFormatSchema, FrameHandleSchema, FrameInputSchema, FrameLazyCountersSchema, FrameLazyMetricsSchema, GasStatusSchema, GetLoggingSettingsInputSchema, GetStreamWithCodecInputSchema, GlobalMetricsSchema, HAP_AUDIO_BASE, HAP_AUDIO_BITRATE_KBPS, HAP_AUDIO_VBV_KBITS, HAP_KEYFRAME_INTERVAL_SEC, HF_BASE_URL, HF_REPO, HWACCEL_OPTIONS, HealthStatusSchema, HfModelResolutionSchema, HistoryPointSchema, HistoryResolutionEnum, HumidifierStatusSchema, HumiditySensorStatusSchema, HvacModeSchema, INFERENCE_DEVICE_EXCLUSION_REASONS, ImageContractSchema, ImageContractStateSchema, ImageRotateSchema, ImageSettingsOptionsSchema, ImageSettingsPatchSchema, ImageSettingsStatusSchema, ImageStatusSchema, InferenceDeviceExclusionReasonSchema, IngestOwnerSchema, InstalledPackageSchema, IntegrationLiteSchema, IntegrationWithStateSchema, IntercomAbilitySchema, IntercomStatusSchema, KNOWN_CAP_NAMES, KeyEventSchema, LOG_LEVEL_RANK, LabelAttributionSchema, LabelDefinitionSchema, LabelTierSchema, LawnMowerActivitySchema, LawnMowerControlStatusSchema, LinkedDeviceSchema, LinkedDevicesModeSchema, ListGroupsPageSchema, ListGroupsQueryInput, LlmDefaultSchema, LlmDefaultSelectorSchema, LlmDownloadProgressSchema, LlmErrorCodeSchema, LlmGenerateBaseInputSchema, LlmGenerateErrSchema, LlmGenerateOkSchema, LlmGenerateResultSchema, LlmImageSchema, LlmNodeModelSchema, LlmProfileKindDescriptorSchema, LlmProfileKindSchema, LlmProfileSchema, LlmRetryPolicySchema, LlmRuntimeCompleteInputSchema, LlmRuntimeDiskUsageSchema, LlmRuntimeNodeSchema, LlmRuntimeStatusSchema, LlmTimeoutDefaults, LlmUsageRollupSchema, LlmUsageSchema, LocateSegmentResultSchema, LocationStatSchema, LockControlStatusSchema, LockStateSchema, LogEntrySchema, LogLevelSchema, LogStreamEntrySchema, LoggingEffectiveSchema, LoggingExplicitSchema, LoggingLevelLayerSchema, LoggingLevelSourceSchema, LoggingScopeKindSchema, LoggingSettingsPatchSchema, LoggingSettingsStateSchema, LoginMethodContributionSchema, LoginStageEnum, MACRO_LABELS, MAX_CLIP_EVENT_IDS, MAX_CLIP_LABELS, MAX_CONDITION_DEPTH, MAX_CONDITION_LEAVES, MAX_EXPRESSION_AST_NODES, MAX_EXPRESSION_BINDINGS, MAX_EXPRESSION_CALL_ARGS, MAX_EXPRESSION_EVAL_STEPS, MAX_EXPRESSION_SOURCE_LENGTH, MAX_SENSOR_TRIGGER_DEVICES, METHOD_ACCESS_MAP, METHOD_DEVICE_SELECTORS, MODEL_FORMATS, MODEL_PROVIDER_IDS, MOTION_TRIGGER_FEATURE, ManagedModelCatalogEntrySchema, ManagedModelExtraFileSchema, ManagedModelRefSchema, ManagedRuntimeConfigSchema, MaskGridDimsSchema, MaskGridShapeSchema, MaskLineShapeSchema, MaskPointSchema, MaskPolygonShapeSchema, MaskPolygonVerticesSchema, MaskRectShapeSchema, MaskShapeKindSchema, MaskShapeSchema, MediaFileInfoSchema, MediaFileSchema, MediaPlayerRepeatSchema, MediaPlayerStateSchema, MediaPlayerStatusSchema, MeshPeerSchema, MeshStatusSchema, MethodAccessSchema, ModelCatalogEntrySchema, ModelConvertInputSchema, ModelConvertMetadataSchema, ModelDistributeInputSchema, ModelDistributeResultSchema, ModelExtraFileSchema, ModelFormatEntrySchema, ModelFormatsSchema, ModelProviderIdSchema, ModelSubstitutionSchema, ModelVariantGroupSchema, MotionAnalysisResultSchema, MotionEventSchema, MotionOnMotionChangedDataSchema, MotionRegionSchema, MotionSourceEnum, MotionSourcesSchema, MotionStatusSchema, MotionTriggerRuntimeStateSchema, MotionTriggerStatusSchema, MotionZoneOptionsSchema, MotionZonePatchSchema, MotionZoneRegionSchema, MotionZoneStatusSchema, StatusSchema as MqttBrokerStatusSchema, MutationFilterSchema, NATIVE_LEASE_ACTIVITY_FIELD, NATIVE_LEASE_ACTIVITY_KEY, NATIVE_LEASE_ADMISSION_FIELD, NATIVE_LEASE_ADMISSION_KEY, NATIVE_LEASE_BUDGET_FIELD, NATIVE_LEASE_BUDGET_KEY, NATIVE_LEASE_HOLD_FIELD, NATIVE_LEASE_HOLD_KEY, NATIVE_LEASE_SCENE_BUDGET_FIELD, NATIVE_LEASE_SCENE_BUDGET_KEY, NATIVE_LEASE_SECTION_ID, NATIVE_LEASE_TILE_BUDGET_FIELD, NATIVE_LEASE_TILE_BUDGET_KEY, NC_ALARM_SYSTEM_EVENT_KINDS, NC_AUDIO_CONFIRM_HITS_DEFAULT, NC_AUDIO_CONFIRM_HITS_MAX, NC_AUDIO_CONFIRM_HITS_MIN, NC_AUDIO_CONFIRM_WINDOW_MAX_SEC, NC_AUDIO_CONFIRM_WINDOW_MIN_SEC, NC_AUDIO_CONFIRM_WINDOW_SEC_DEFAULT, NC_AUDIO_DBFS_FLOOR, NC_AUDIO_DB_MAX, NC_AUDIO_DB_MIN, NC_AUDIO_DB_OFFERED, NC_AUDIO_DB_STEP, NC_AUDIO_DEFAULTS, NC_AUDIO_HIT_PERCENT_MAX, NC_AUDIO_HIT_PERCENT_MIN, NC_AUDIO_SAMPLING_MAX_SEC, NC_AUDIO_SAMPLING_MIN_SEC, NC_AUDIO_SEED, NC_AUTHORABLE_SYSTEM_EVENT_KINDS, NC_BASE_CONDITION_KEYS, NC_CONDITION_CATALOG, NC_CONFIRM_DEFAULT_MAX_IMAGE_PX, NC_CONFIRM_DEFAULT_TIMEOUT_MS, NC_CONFIRM_MAX_TIMEOUT_MS, NC_CONFIRM_MIN_TIMEOUT_MS, NC_DEFAULT_SNOOZE_MINUTES, NC_HISTORY_LIMIT_DEFAULT, NC_HISTORY_LIMIT_MAX, NC_MAX_PER_TRACK_IMMEDIATE, NC_OCCUPANCY_DEFAULTS, NC_RULE_EDITOR_SECTION_ORDER, NC_RULE_KIND_SPECS, NC_RULE_SECTIONS, NC_SNOOZE_MAX_MINUTES, NC_SYSTEM_DELIVERY, NC_SYSTEM_EVENT_FILTER_KEYS, NC_TAXONOMY, NativeCropBboxSchema, NativeCropRefSchema, NativeCropResultSchema, NativeDetectionSchema, NativeLeaseAdmissionSchema, NativeLeaseSettingsSchema, NativeObjectClassEnum, NativeObjectDetectionRuntimeStateSchema, NativeObjectDetectionStatusSchema, NcAlarmConfigSchema, NcAlarmModeCoverageSchema, NcAlarmSettingsPatchSchema, NcAlarmSettingsSchema, NcAlarmSkipReasonSchema, NcAlarmSkippedDeviceSchema, NcAudioConditionSchema, NcConditionDescriptorSchema, NcConditionsSchema, NcConfirmExpectSchema, NcConfirmSchema, NcCrossingSchema, NcDeliverySchema, NcDeviceStateConditionSchema, NcHistoryEntrySchema, NcHistoryFilterSchema, NcHistoryRecordKindSchema, NcHistoryStatusSchema, NcHistorySubjectSchema, NcMediaFrameSchema, NcMediaPolicySchema, NcOccupancyConditionSchema, NcPlateMatcherSchema, NcRuleActionSchema, NcRuleActionSequenceSchema, NcRuleActionsSchema, NcRuleInputSchema, NcRuleNotificationButtonSchema, NcRulePatchSchema, NcRuleSchema, NcRuleTargetSchema, NcSceneConditionSchema, NcScheduleSchema, NcScheduleWindowSchema, NcSnoozeInputSchema, NcSnoozeSchema, NcSnoozeScopeSchema, NcSnoozeSuppressedSchema, NcSystemEventConditionSchema, NcSystemEventKindSchema, NcTaxonomyEntrySchema, NcTaxonomySchema, NcTestResultSchema, NcThrottleGranularitySchema, NcThrottleSchema, NcZoneConditionSchema, NetworkAccessStatusSchema, NetworkAddressSchema, NetworkEndpointSchema, NotificationActionIconSchema, NotificationActionSchema, NotificationFormatSchema, NotificationSchema, NotifierStatusSchema, NumericSensorStatusSchema, OPERATOR_WRITTEN_STALE_MS, OPS_LOG_DEFAULT_LIMIT, OPS_LOG_RING_DEFAULT_MAX, OauthIntegrationDescriptorSchema, ObjectEventSchema, OpsLogDomainSchema, OpsLogEntrySchema, OpsLogOpSchema, OpsLogQueryInputSchema, OpsLogReasonSchema, OrchestratorMetricsSchema, OsdOverlayKindEnum, OsdOverlayPatchSchema, OsdOverlaySchema, OsdPositionEnum, OsdRenderOutcomeEnum, OsdRenderResultSchema, OsdSlotBindingSchema, OsdSlotViewSchema, OsdSourceOptionSchema, OsdSourceSchema, OsdSourceValueTypeEnum, OsdStatusSchema, PET_FEEDER_MANUAL_FEED_MAX, PET_FEEDER_MANUAL_FEED_MIN, PIPELINE_FLOW_CAPABILITY_NAMES, PIPELINE_OWNER_CAPABILITY_NAMES, PRIVACY_MASK_CAP_NAME, 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, PoolMemoryWatchdog, PowerMeterStatusSchema, PresenceStatusSchema, PressureSensorStatusSchema, PrivacyMaskOptionsSchema, PrivacyMaskPatchSchema, PrivacyMaskRegionSchema, PrivacyMaskShapeSchema, PrivacyMaskStatusSchema, ProfileRtspEntrySchema, ProfileSlotSchema, ProfileSlotStatusSchema, ProviderStatusSchema, PtzAutotrackRuntimeStateSchema, PtzAutotrackSettingsSchema, PtzAutotrackStatusSchema, PtzAutotrackTargetOptionSchema, PtzMoveCommandSchema, PtzOptionsSchema, PtzPositionSchema, PtzPresetSchema, PtzStatusSchema, QueryFilterSchema, RATE_CONTROL_RELAXED, RATE_CONTROL_TIGHT, REACHABILITY_FAILURES_TO_OFFLINE, REACHABILITY_POLL_INTERVAL_MS, REACHABILITY_PROBE_TIMEOUT_MS, RECOGNITION_TYPES, RECORDING_EXPORT_MAX_READ_BYTES, RESERVED_BINDING_NAMES, RESTORED_CAP_NAMES, RUNTIME_DEFAULTS, RUNTIME_STATE_POLICY, RUNTIME_STATE_REFRESH_MISS_COOLDOWN_MS, RUNTIME_TO_FORMAT, RawStateResultSchema, ReadGopBytesResultSchema, ReadSegmentBytesResultSchema, ReadWindowBytesResultSchema, ReadinessRegistry, ReadinessTimeoutError, RecentTracksPageSchema, RecentTracksQueryInput, RecordingAvailabilitySchema, RecordingBandModeSchema, RecordingBandSchema, RecordingBandTriggersSchema, RecordingConfigSchema, RecordingDaysSchema, RecordingDeviceUsageSchema, RecordingLocationUsageSchema, RecordingManifestSchema, RecordingObjectTriggerClassSchema, RecordingRangeSchema, RecordingRebalanceInputSchema, RecordingRebalanceMoveSchema, RecordingRebalancePlanSchema, RecordingRebalanceSkipReasonSchema, RecordingRebalanceSkipSchema, RecordingRetentionSchema, RecordingStatusSchema, RecordingStorageModeSchema, RecordingStorageUsageSchema, RecordingTriggersSchema, RecordingWeekdaySchema, RedirectLoginMethodSchema, RelocateFootageClassSchema, RelocateFootageInputSchema, RelocateJobSchema, RelocateJobStateSchema, RelocateMediaInputSchema, RenderedAsSchema, ReportMotionInputSchema, RequestCensusGroupSchema, RequestCensusProcedureSchema, RequestCensusSnapshotSchema, RequestCensusStatusSchema, RetrainAnnotationDraftSchema, RetrainAnnotationKindSchema, RetrainAnnotationSchema, RetrainAnnotationSourceSchema, RetrainAssistResultSchema, RetrainAssistSubjectSchema, RetrainCopyRefusalSchema, RetrainFrameCandidateSchema, RetrainFrameListSchema, RetrainFrameSchema, RetrainFrameSelectionSchema, RetrainMacroClassSchema, RetrainStatusSchema, RetrainTrackSchema, RetrainTransitionResultSchema, RingBuffer, RtpSourceSchema, RtspRestreamEntrySchema, RunnerCameraConfigSchema, RunnerCameraDeviceUIFields, RunnerFrameSourceSchema, RunnerInferenceDeviceSchema, RunnerLocalLoadSchema, RunnerLocalMetricsSchema, SCENE_CONDITIONS, SCENE_CONFIRM_DEFAULT_MAX_IMAGE_PX, SCENE_CONFIRM_DEFAULT_TIMEOUT_MS, SCENE_DEFAULT_ANCHOR_THRESHOLD, SCENE_DEFAULT_CHECK_INTERVAL_SEC, SCENE_DEFAULT_OBSERVATION_SPACING_SEC, SCENE_DEFAULT_QUIET_SECONDS, SCENE_DEFAULT_UNCOVERED_POLICY, SCENE_DIVERGED, SCENE_RESET_RECAPTURES, SCOPE_PRESETS, SENSOR_FEATURES, SENSOR_MAP, SOURCE_CAPS, SOURCE_CAP_ACTIVE_FIELD, SOURCE_CAP_CHANGED_AT_FIELD, SOURCE_DEVICE_TYPES, SOURCE_INFO_METADATA_KEY, STREAM_PROFILE_META, STREAM_QUALITY_LABELS, SUB_DETECTION_TYPES, SYSTEM_CAP_NAMES, SYSTEM_SCOPE_DEVICE_METHODS, SceneCheckSchema, SceneConditionSchema, SceneConfirmSchema, SceneMonitorSchema, SceneMonitorStateSchema, SceneMonitorStatusSchema, SceneReferenceSchema, SceneUnavailableSchema, SceneUncoveredPolicySchema, SceneVerdictSchema, ScopedTokenSchema, ScopedTokenSummarySchema, ScoredObjectEventSchema, ScriptRunnerStatusSchema, SearchResultSchema, SendEmailInputSchema, SendEmailResultSchema, SendResultSchema, SensorEventSchema, ServerBootModeSchema, ServerPackageStatusSchema, ServerRollbackInfoSchema, ServerUpdateActionResultSchema, ServerUpdateCheckResultSchema, ServerUpdateStateSchema, SetLoggingSettingsInputSchema, SetSiteLocationInputSchema, SettingsPatchSchema, SettingsRecordSchema, SettingsSchemaWithValuesSchema, SettingsUpdateResultSchema, ShmRingStatsSchema, SiteLocationSchema, SiteLocationSourceSchema, SiteLocationStatusSchema, 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, StorageMigrationClassSchema, StorageMigrationDestinationsSchema, StorageMigrationFootageMoveInputSchema, StorageMigrationInputSchema, StorageMigrationJobSchema, StorageMigrationLeaseInputSchema, StorageMigrationMediaMoveInputSchema, StorageMigrationMoveSchema, StorageMigrationParticipantSchema, StorageMigrationPhaseSchema, StorageMigrationPlanSchema, 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, TIMELAPSE_DENSE_FLOOR_SEC, TIMEZONES, TRANSCODE_DOWN_MAX_BITRATE_KBPS, TRANSCODE_DOWN_MAX_HEIGHT, TamperStatusSchema, TankStatusSchema, TargetKindCapsSchema, TargetKindLevelSchema, TargetKindSchema, TargetSchema, TemperatureSensorStatusSchema, TerminalInstanceInfoSchema, TerminalLegacyCameraSchema, TerminalOutputBatchSchema, TerminalOutputEventSchema, TerminalProfileInfoSchema, TerminalSessionInfoSchema, TestConnectionResultSchema$1 as TestConnectionResultSchema, TestConnectionStatusEnum, TestResultSchema, TimelapseRuleInputSchema, TimelapseRulePatchSchema, TimelapseRuleSchema, TimelapseTemplateSchema, ToastSchema, TokenScopeSchema, TopologyNodeSchema, TopologyProcessSchema, TopologyServiceSchema, TrackCascadeCountsSchema, TrackEnvelopeSchema, TrackFlagsPatchSchema, TrackFlagsSchema, TrackProjectionSchema, TrackSchema, TrackSourceSchema, TrackStateSchema, TrackZoneFilterSchema, TrackedDetectionSchema, TrainingExportDeviceTotalsSchema, TrainingExportSummarySchema, TransportPlaneCountsSchema, TransportPlaneSchema, TurnServerSchema, UNIT_TABLE, BrokerInfoSchema$1 as UnifiedBrokerInfoSchema, UnitConversionError, UpdateIntegrationInputSchema, UpdateStatusSchema, UpdateUserInputSchema, UserRecordSchema, UserSummarySchema, VISIT_MERGE_GAP_MS, VacuumControlStatusSchema, VacuumStateSchema, ValveStateSchema, ValveStatusSchema, VectorDeclareIndexInputSchema, VectorDeleteByFilterInputSchema, VectorDeleteInputSchema, VectorDeleteResultSchema, VectorFilterSchema, VectorGetInputSchema, VectorGetResultSchema, VectorItemSchema, VectorMatchSchema, VectorMetadataSchema, VectorMetricSchema, VectorQueryInputSchema, VectorQueryResultSchema, VectorStatsInputSchema, VectorStatsResultSchema, VectorUpsertInputSchema, VectorUpsertResultSchema, VibrationStatusSchema, VideoEncodeSchema, WEBRTC_EGRESS_PROFILE, 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, asBoolean, asJsonArray, asJsonObject, asNumber, asString, assertTimelapseCadences, audioAnalysisCapability, audioAnalyzerCapability, audioCodecCapability, audioIsFailClosed, audioKindId, audioLabelChoices, audioMetricsCapability, audioModeOf, audioOrDefaults, audioPlanFromEncodeProfile, authProviderCapability, autoAssignProfiles, automationControlCapability, backupCapability, bareAddonId, batteryCapability, bestLocationMatch, binaryCapability, bindAddonActions, brightnessCapability, brokerCapability, buildAddonRouteProvider, buildAudioArgs, buildEventKindDescriptor, buildFfmpegArgs, buildInputArgs, buildModelVariantGroups, buildNcTaxonomy, buildRoleScopes, buildStreamParamsConfigSchema, buildVideoArgs, buttonCapability, cameraCredentialsCapability, cameraPipelineConfigCapability, cameraStreamsCapability, canConvertUnit, canonicalEgressPlan, carbonMonoxideCapability, cellsToRects, classifyBearerPrincipal, classifyStream, classifyStreams, climateControlCapability, clusterModelSettingKey, clusterStepSettingFieldsFor, clusterStepSettingKey, collectHydratedFieldEntries, collectHydratedFieldValues, colorCapability, colorForKind, commitWatchdogRestart, compileExpression, compileExpressionSafe, composeSwitchedOff, conditionDepth, conditionExclusionReason, conditionVisibleForKind, connectionTestCapability, connectivityCapability, consumablesCapability, contactCapability, controlCapability, convertUnit, coreBlockAddonId, coreBlockIdFromAddonId, coreBlocksCapability, cosineSimilarity, countConditionLeaves, coverCapability, createDeviceProxy, createDurableState, createEvent, createEventBusSliceSource, createExpressionScope, createHwAccelCache, createLazyTrpcSource, createMirrorSource, createRuntimeStateBridge, createSliceHandle, createSystemProxy, customAction, customModelRegistryCapability, dataStoreProviderCapability, dayNightCapability, declarationOwnerNodeId, decodeVectorBase64, decoderCapability, defaultDeliveryForSection, defaultDeviceFor, defineCustomActions, deriveBatteryPresence, deriveCameraSwitches, deriveDetailCropRect, deriveRecordingMode, describeModelVariant, detectAccessRole, detectionPipelineCapability, deviceAdoptionCapability, deviceBackendToFormat, deviceCustomAction, deviceDiscoveryCapability, deviceExportCapability, deviceManagerCapability, deviceMatchesProfile, deviceOpsCapability, deviceProviderCapability, deviceSelectorMatches, deviceStateCapability, deviceStatusCapability, doorbellCapability, droppedConditionsForKind, egressTranscodeSharingKey, egressTransportFromRequest, embeddingEncoderCapability, emitDownForOwnedCaps, emitReadiness, encodeProfileFromStreamShape, encodeVectorBase64, enumSensorCapability, enumerateInferenceDevices, enumerateItemArrayFields, enumerateSchemaFields, errMsg, evaluateAst, evaluateExpressionSource, evaluatePoolMemory, evaluateSensorEdge, evaluateZoneRules, event, eventEmitterCapability, eventsCapability, expandCapMethods, extractNestedAddonId, extractSourceInfoFromMetadata, faceGalleryCapability, fanControlCapability, featureProbeCapability, filesystemBrowseCapability, findTimezone, floodCapability, formatForBackend, formatForRuntime, gasCapability, generateAutomationBlock, getAudioMacroClassIds, getByPath, getCapsByProviderKind, getTaxonomyEntry, hasMotionTrigger, hfModelUrl, htmlToText, humidifierCapability, humiditySensorCapability, hydrateSchema, imageCapability, imageSettingsCapability, inferModelProvider, initialPoolMemoryState, integrationsCapability, intercomCapability, invocationFromEncodeProfile, isAgentOnlyPlacement, isArrayOutputSchema, isAudioLabelSelected, isAudioRule, isBaseConditionKey, isBatteryPresenceFault, isClusterScopedStep, isCollectionArrayMethod, isDeployableToAgent, isDetectionMacroClass, isDeviceConfigCap, isDeviceScopedCap, isEvent, isFirstLevelMacroClass, isIsolatedBuiltin, isNode, isObjectInput, isOccupancyRule, isRestoredCap, isSameAddonId, isScheduleActive, isSoftwareDecode, isSourceCap, isSystemDelivery, isVoidInput, jobKindSchema, kebabToCamel, knownValues, lawnMowerControlCapability, lifecycleJobSchema, lifecycleJobScopeSchema, lifecycleJobStateSchema, lifecycleTaskSchema, llmCapability, llmRuntimeCapability, localNetworkCapability, locationSimilarity, lockControlCapability, logBannerArgs, logDestinationCapability, logLevelAtMost, loginMethodCapability, looseSchema, makeProfileBrokerId, makeSourceBrokerId, mapAudioLabelToMacro, markdownToHtmlLite, markdownToText, maskUrlCredentials, mediaPlayerCapability, mergeSourceInfo, meshNetworkCapability, method, methodAccessForHttpMethod, metricsProviderCapability, modelConvertCapability, modelDistributorCapability, modelFormatForRuntime, motionCapability, motionDetectionCapability, motionTriggerCapability, motionZonesCapability, mqttBrokerCapability, nativeObjectDetectionCapability, networkAccessCapability, networkQualityCapability, nodePin, nodesCapability, normalizeAddonInitResult, normalizeAudioLabel, normalizeTokenScopes, normalizeUnit, notificationOutputCapability, notificationRulesCapability, notifierCapability, numericSensorCapability, oauthIntegrationCapability, objectInputDeclaresAddonId, osdCapability, osdManagerCapability, overlayClusterStepSettings, parseCameraStreamConfig, parseExpression, parseJsonArray, parseJsonObject, parseJsonUnknown, parseProcStatus, parseProfileBrokerId, parseRuleSection, parseStreamParamsFormPatch, patchAudio, petFeederCapability, pickAccessoryControl, pickClusterStepModels, pickClusterStepSettings, pickDetailCropConvention, pickNativeLeaseOverride, pickPreferredRtspEntry, pickRestartCandidate, pickVideoEncoder, pickerForCondition, pipelineAnalyticsCapability, pipelineExecutorCapability, pipelineOrchestratorCapability, pipelineRunnerCapability, plateGalleryCapability, platformProbeCapability, poolMemoryThreshold, powerMeterCapability, prepareNotification, presenceCapability, pressureSensorCapability, principalMayReachAddon, privacyMaskCapability, procedureAuthKey, ptzAutotrackCapability, ptzCapability, pythonScriptForBackend, readClusterStepModels, readClusterStepSettings, readDetailCropConvention, readDeviceStateFrom, readNativeLeaseOverride, readNodePin, readTimelapseGeneratedAt, readinessKey, rebootCapability, recordingCapability, recordingExportCapability, rectsToCells, requiresPython, resetPoolBaseline, resolveAddonExecution, resolveAddonGroup, resolveAddonPlacement, resolveAddonRuntime, resolveCapMount, resolveClusterStepModelId, resolveDetectionRuntime, resolveDeviceControlKind, resolveDeviceProfile, resolveEgressDecodeHwAccel, resolveFormat, resolveHydratedFieldValue, resolveMethodAuth, resolveModelFormat, resolveMutate, resolvePoolMemoryPolicy, resolveRecordingProfiles, resolveRunnerId, resolveVariantModelId, resolveViewableDeviceIds, roleSpec, ruleEditorSectionsForKind, ruleKindOf, ruleKindSpec, ruleMatchesSection, ruleSection, ruleSectionOf, ruleSeedForSection, runInferenceStep, runtimeDevices, runtimeStatePolicyFor, sceneMonitorCapability, scopeInherits, scopeKey, scopesAllowAddon, scopesAllowDeviceCap, scoreRuntimes, scriptRunnerCapability, selectAssignedProfileSlots, serverManagementCapability, setByPath, settingsStoreCapability, sleep, sleepCancellable, sliceActiveValue, sliceChangedAt, smokeCapability, smtpProviderCapability, snapshotCapability, ssoBridgeCapability, startReachabilityPoll, stateVocabularyFor, storageCapability, storageEvictableCapability, storageMigrationCapability, storageProviderCapability, streamBrokerCapability, streamCatalogCapability, streamParamsCapability, streamPixels, streamQualityLabel, subKindsOf, summarisePrivacyAudio, summarizeEffectiveScope, supportedRuntimes, switchCapability, switchedOffIds, synthesizeSourceInfo, systemCapability, systemEventFilterApplies, systemEventFilterAppliesToAnyKind, tamperCapability, taskLogEntrySchema, taskPhaseSchema, taskTargetSchema, temperatureSensorCapability, terminalSessionCapability, textToHtml, toDeviceSummary, toExpressionValue, toNodeId, toStreamSourceEntry, toastCapability, toggleAudioLabel, tokenize, transcodeBody, tryConvertUnit, turnProviderCapability, unitDimension, unitsForDimension, updateCapability, userManagementCapability, userPasskeysCapability, vacuumControlCapability, validateExpressionSource, validateRecipeBounds, valveCapability, vectorDimFromBase64, vectorStoreCapability, vibrationCapability, videoclipsCapability, viewerUiCapability, waterHeaterCapability, weatherCapability, webrtcClientHintsSchema, webrtcSessionCapability, wiringAddonHealthSchema, wiringHealthSnapshotSchema, wiringNodeHealthSchema, wiringProbeKindSchema, wiringProbeResultSchema, zodEntriesToConfigUI, zoneAnalyticsCapability, zoneRulesCapability, zonesCapability };
|