@camstack/addon-osd-manager 0.1.19 → 0.1.20
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/{MotionZonesSettings-2bARhPh6.mjs → MotionZonesSettings-Dhh1AqWY.mjs} +2 -2
- package/dist/{PrivacyMaskSettings-Cdqm3uIC.mjs → PrivacyMaskSettings-CPABuSH1.mjs} +4 -4
- package/dist/{SceneMonitorEditor-C58VvxWO.mjs → SceneMonitorEditor-CyVjkJI2.mjs} +3 -3
- package/dist/_stub.js +11 -11
- package/dist/{_virtual_mf-localSharedImportMap___mfe_internal__addon_osd_manager_page-SPTPw18n.mjs → _virtual_mf-localSharedImportMap___mfe_internal__addon_osd_manager_page-5jby0ZM9.mjs} +4 -4
- package/dist/_virtual_mf___mfe_internal__addon_osd_manager_page__loadShare___mf_0_camstack_mf_1_types__loadShare__.js-DO3S4jGF.mjs +26 -0
- package/dist/{hostInit-CaN1IxGo.mjs → hostInit-5GIsHCyh.mjs} +3 -3
- package/dist/index.js +284 -24
- package/dist/index.mjs +284 -24
- package/dist/{player-overlays-CQmBy0Zm.mjs → player-overlays-A11g0xRn.mjs} +1 -1
- package/dist/remoteEntry.js +1 -1
- package/dist/{responsive-jU_1DnOd.mjs → responsive-B_W10135.mjs} +1 -1
- package/dist/{square-BewXHDNm.mjs → square-BqxtsJJ4.mjs} +1 -1
- package/dist/{trash-2-h2ZuBBnj.mjs → trash-2-xxP-WwG0.mjs} +1 -1
- package/dist/{use-device-snapshot--wXDROMR.mjs → use-device-snapshot-B6sowK2s.mjs} +1 -1
- package/dist/{virtual_mf-REMOTE_ENTRY_ID___mfe_internal__addon_osd_manager_page__remoteEntry_js-BqFfMnBU.mjs → virtual_mf-REMOTE_ENTRY_ID___mfe_internal__addon_osd_manager_page__remoteEntry_js-0ziNXHDT.mjs} +1 -1
- package/package.json +1 -1
- package/dist/_virtual_mf___mfe_internal__addon_osd_manager_page__loadShare___mf_0_camstack_mf_1_types__loadShare__.js-KlN_tI2R.mjs +0 -26
package/dist/index.mjs
CHANGED
|
@@ -8091,6 +8091,15 @@ var LabelDefinitionSchema = object({
|
|
|
8091
8091
|
description: string().optional(),
|
|
8092
8092
|
icon: string().optional()
|
|
8093
8093
|
});
|
|
8094
|
+
var ClassMapDefinitionSchema = object({
|
|
8095
|
+
mapping: record(string(), _enum([
|
|
8096
|
+
"person",
|
|
8097
|
+
"vehicle",
|
|
8098
|
+
"animal",
|
|
8099
|
+
"package"
|
|
8100
|
+
])),
|
|
8101
|
+
preserveOriginal: boolean()
|
|
8102
|
+
});
|
|
8094
8103
|
var MODEL_FORMATS = [
|
|
8095
8104
|
"onnx",
|
|
8096
8105
|
"coreml",
|
|
@@ -8269,7 +8278,13 @@ var ModelCatalogEntrySchema = object({
|
|
|
8269
8278
|
* `id` stays the source of truth for resolution/download/persistence; grouping
|
|
8270
8279
|
* is a presentation overlay resolved back to an `id`.
|
|
8271
8280
|
*/
|
|
8272
|
-
group: ModelVariantGroupSchema.optional()
|
|
8281
|
+
group: ModelVariantGroupSchema.optional(),
|
|
8282
|
+
/**
|
|
8283
|
+
* Per-MODEL class map override. Absent ⇒ the step's `StepDefinition.classMap`
|
|
8284
|
+
* applies (Frigate / COCO public catalog). Set on a custom model whose raw
|
|
8285
|
+
* labels already ARE the CamStack macros (Scrypted identity map).
|
|
8286
|
+
*/
|
|
8287
|
+
classMap: ClassMapDefinitionSchema.optional()
|
|
8273
8288
|
});
|
|
8274
8289
|
var ConvertTargetSchema = discriminatedUnion("format", [object({
|
|
8275
8290
|
format: literal("openvino"),
|
|
@@ -8298,7 +8313,8 @@ var ModelConvertMetadataSchema = object({
|
|
|
8298
8313
|
"ocr",
|
|
8299
8314
|
"segmentation"
|
|
8300
8315
|
]),
|
|
8301
|
-
faceAlignment: boolean().optional()
|
|
8316
|
+
faceAlignment: boolean().optional(),
|
|
8317
|
+
classMap: ClassMapDefinitionSchema.optional()
|
|
8302
8318
|
});
|
|
8303
8319
|
var ConvertResultSchema = object({
|
|
8304
8320
|
entry: ModelCatalogEntrySchema,
|
|
@@ -20021,6 +20037,33 @@ var NativeCropRefSchema = object({
|
|
|
20021
20037
|
h: number()
|
|
20022
20038
|
})
|
|
20023
20039
|
});
|
|
20040
|
+
object({
|
|
20041
|
+
crop: object({
|
|
20042
|
+
left: number(),
|
|
20043
|
+
top: number(),
|
|
20044
|
+
width: number().positive(),
|
|
20045
|
+
height: number().positive()
|
|
20046
|
+
}).optional(),
|
|
20047
|
+
content: object({
|
|
20048
|
+
width: number().int().positive(),
|
|
20049
|
+
height: number().int().positive()
|
|
20050
|
+
}),
|
|
20051
|
+
fit: _enum(["stretch", "contain"]),
|
|
20052
|
+
format: _enum([
|
|
20053
|
+
"rgb",
|
|
20054
|
+
"gray",
|
|
20055
|
+
"jpeg"
|
|
20056
|
+
])
|
|
20057
|
+
});
|
|
20058
|
+
var FrameRefSchema = object({
|
|
20059
|
+
registryId: string().min(1),
|
|
20060
|
+
id: string().min(1),
|
|
20061
|
+
width: number().int().positive(),
|
|
20062
|
+
height: number().int().positive(),
|
|
20063
|
+
format: _enum(["rgb", "gray"]),
|
|
20064
|
+
timestamp: number(),
|
|
20065
|
+
capturedAt: number().optional()
|
|
20066
|
+
});
|
|
20024
20067
|
var ModelFormatSchema$1 = _enum([
|
|
20025
20068
|
"onnx",
|
|
20026
20069
|
"coreml",
|
|
@@ -20341,7 +20384,7 @@ var pipelineExecutorCapability = {
|
|
|
20341
20384
|
* legacy call shape used by existing benchmark code; once all
|
|
20342
20385
|
* callers pass it explicitly we make it required.
|
|
20343
20386
|
*
|
|
20344
|
-
* Exactly one of `frame`, `frameHandle`, `imageBase64`,
|
|
20387
|
+
* Exactly one of `frame`, `frameRef`, `frameHandle`, `imageBase64`,
|
|
20345
20388
|
* `referenceImage` must be provided:
|
|
20346
20389
|
* - `frame`: runtime dispatch path (runner → decoded broker frame).
|
|
20347
20390
|
* Carries the raw buffer, dimensions, and format; the executor
|
|
@@ -20363,6 +20406,12 @@ var pipelineExecutorCapability = {
|
|
|
20363
20406
|
steps: array(PipelineStepInputSchema).min(1),
|
|
20364
20407
|
frame: FrameInputSchema.optional(),
|
|
20365
20408
|
/**
|
|
20409
|
+
* Process-local lazy frame. Valid only when caller and provider resolve
|
|
20410
|
+
* in the same execution-group process; split/cross-node callers use
|
|
20411
|
+
* `frame`/`image` inline compatibility instead.
|
|
20412
|
+
*/
|
|
20413
|
+
frameRef: FrameRefSchema.optional(),
|
|
20414
|
+
/**
|
|
20366
20415
|
* CB5 shm passthrough — a `FrameHandle` naming the same ring slot
|
|
20367
20416
|
* the decoded pixels live in. One more member of the one-of
|
|
20368
20417
|
* frame/frameHandle/image/imageBase64/referenceImage group.
|
|
@@ -20712,7 +20761,10 @@ var NativeCropResultSchema = object({
|
|
|
20712
20761
|
* Which source served this crop, so a quality-sensitive consumer (the native
|
|
20713
20762
|
* `keyFrame`) can reject a degraded fallback:
|
|
20714
20763
|
* - `native` — cut from the decode worker's retained NATIVE surface (the
|
|
20715
|
-
* quality path).
|
|
20764
|
+
* quality path). A subject-tile serve is also native-resolution and stays
|
|
20765
|
+
* `native` here: the public enum cannot name `tile` without a breaking cap
|
|
20766
|
+
* change. Runner telemetry distinguishes lease vs tile via `source` on the
|
|
20767
|
+
* internal crop result (`nativeHits` vs `tileHits`).
|
|
20716
20768
|
* - `ram-fullframe` — the native surface MISSED but the request was full-frame,
|
|
20717
20769
|
* so the ≤640 RAM `RetainedFrameStore` served it (honest lower-res; legit for
|
|
20718
20770
|
* the blank-frame guard / 640-snapshot resolve, NOT for the clean keyFrame).
|
|
@@ -21203,12 +21255,41 @@ var RunnerLocalLoadSchema = object({
|
|
|
21203
21255
|
* legacy `OrchestratorMetricsSchema` shape so existing dashboards keep
|
|
21204
21256
|
* working unchanged when they switch to reading from the runner cap.
|
|
21205
21257
|
*/
|
|
21258
|
+
var FrameLazyCountersSchema = object({
|
|
21259
|
+
framesDecoded: number(),
|
|
21260
|
+
framesAdmitted: number(),
|
|
21261
|
+
framesDroppedPixelFree: number(),
|
|
21262
|
+
viewsMaterialized: number(),
|
|
21263
|
+
viewsSkipped: number(),
|
|
21264
|
+
workerToRunnerBytes: number(),
|
|
21265
|
+
runnerToPoolRawBytes: number(),
|
|
21266
|
+
runnerToPoolJpegBytes: number(),
|
|
21267
|
+
onDemandFullFrameRequests: number(),
|
|
21268
|
+
onDemandCropRequests: number(),
|
|
21269
|
+
nativeHits: number(),
|
|
21270
|
+
nativeMisses: number(),
|
|
21271
|
+
tileHits: number(),
|
|
21272
|
+
tileMisses: number(),
|
|
21273
|
+
fallbackHits: number(),
|
|
21274
|
+
fallbackMisses: number(),
|
|
21275
|
+
retainedWritesAvoided: number(),
|
|
21276
|
+
residentRefs: number(),
|
|
21277
|
+
residentBytes: number(),
|
|
21278
|
+
releases: number(),
|
|
21279
|
+
evictions: number(),
|
|
21280
|
+
staleMisses: number()
|
|
21281
|
+
});
|
|
21282
|
+
var FrameLazyMetricsSchema = object({
|
|
21283
|
+
node: FrameLazyCountersSchema,
|
|
21284
|
+
cameras: array(FrameLazyCountersSchema.extend({ deviceId: number() }))
|
|
21285
|
+
});
|
|
21206
21286
|
var RunnerLocalMetricsSchema = object({
|
|
21207
21287
|
nodeId: string(),
|
|
21208
21288
|
activeCameras: number(),
|
|
21209
21289
|
throttledCameras: number(),
|
|
21210
21290
|
avgInferenceTimeMs: number(),
|
|
21211
|
-
queueDepth: number()
|
|
21291
|
+
queueDepth: number(),
|
|
21292
|
+
frameLazy: FrameLazyMetricsSchema.optional()
|
|
21212
21293
|
});
|
|
21213
21294
|
/**
|
|
21214
21295
|
* Pipeline Runner capability — runtime detection workhorse.
|
|
@@ -23240,6 +23321,9 @@ var storageProviderCapability = {
|
|
|
23240
23321
|
endDownload: method(EndDownloadInputSchema, _void(), { kind: "mutation" })
|
|
23241
23322
|
}
|
|
23242
23323
|
};
|
|
23324
|
+
/** Profile-exported FormBuilder schema. Shape is ConfigUISchema at the UI. */
|
|
23325
|
+
var ProfileSettingsSchemaBridge = unknown().nullable();
|
|
23326
|
+
var ProfileSettingsBagSchema = record(string(), unknown());
|
|
23243
23327
|
/**
|
|
23244
23328
|
* A live terminal session hosted by the provider addon. Output and input do
|
|
23245
23329
|
* NOT flow through the capability — they use the addon data plane
|
|
@@ -23269,7 +23353,14 @@ var TerminalSessionInfoSchema = object({
|
|
|
23269
23353
|
var TerminalProfileInfoSchema = object({
|
|
23270
23354
|
profileId: string(),
|
|
23271
23355
|
label: string(),
|
|
23272
|
-
description: string().optional()
|
|
23356
|
+
description: string().optional(),
|
|
23357
|
+
/** Spawn defaults the instance form copies on create. */
|
|
23358
|
+
executable: string().optional(),
|
|
23359
|
+
args: array(string()).readonly().optional(),
|
|
23360
|
+
cwd: string().optional(),
|
|
23361
|
+
environment: array(string()).readonly().optional(),
|
|
23362
|
+
/** ConfigUISchema for instance knobs, or null when the profile has none. */
|
|
23363
|
+
settingsSchema: ProfileSettingsSchemaBridge.optional()
|
|
23273
23364
|
});
|
|
23274
23365
|
/**
|
|
23275
23366
|
* A durable operator-created Terminal instance. Profiles are templates; only
|
|
@@ -23282,7 +23373,12 @@ var TerminalInstanceInfoSchema = object({
|
|
|
23282
23373
|
profileId: string(),
|
|
23283
23374
|
profileLabel: string(),
|
|
23284
23375
|
name: string(),
|
|
23285
|
-
enabled: boolean()
|
|
23376
|
+
enabled: boolean(),
|
|
23377
|
+
executable: string(),
|
|
23378
|
+
args: array(string()).readonly(),
|
|
23379
|
+
cwd: string(),
|
|
23380
|
+
environment: array(string()).readonly(),
|
|
23381
|
+
profileSettings: ProfileSettingsBagSchema
|
|
23286
23382
|
});
|
|
23287
23383
|
var TerminalLegacyCameraSchema = object({
|
|
23288
23384
|
stableId: string(),
|
|
@@ -23328,7 +23424,24 @@ var terminalSessionCapability = {
|
|
|
23328
23424
|
createInstance: method(object({
|
|
23329
23425
|
targetNodeId: string().min(1),
|
|
23330
23426
|
profileId: string().min(1),
|
|
23331
|
-
name: string().trim().min(1).max(160).optional()
|
|
23427
|
+
name: string().trim().min(1).max(160).optional(),
|
|
23428
|
+
executable: string().max(1024).optional(),
|
|
23429
|
+
args: array(string().max(2048)).max(64).optional(),
|
|
23430
|
+
cwd: string().max(1024).optional(),
|
|
23431
|
+
environment: array(string().max(4096)).max(64).optional(),
|
|
23432
|
+
profileSettings: ProfileSettingsBagSchema.optional()
|
|
23433
|
+
}), TerminalInstanceInfoSchema, {
|
|
23434
|
+
kind: "mutation",
|
|
23435
|
+
auth: "admin"
|
|
23436
|
+
}),
|
|
23437
|
+
updateInstance: method(object({
|
|
23438
|
+
instanceId: string().min(1),
|
|
23439
|
+
name: string().trim().min(1).max(160).optional(),
|
|
23440
|
+
executable: string().max(1024).optional(),
|
|
23441
|
+
args: array(string().max(2048)).max(64).optional(),
|
|
23442
|
+
cwd: string().max(1024).optional(),
|
|
23443
|
+
environment: array(string().max(4096)).max(64).optional(),
|
|
23444
|
+
profileSettings: ProfileSettingsBagSchema.optional()
|
|
23332
23445
|
}), TerminalInstanceInfoSchema, {
|
|
23333
23446
|
kind: "mutation",
|
|
23334
23447
|
auth: "admin"
|
|
@@ -23363,7 +23476,11 @@ var terminalSessionCapability = {
|
|
|
23363
23476
|
openSession: method(object({
|
|
23364
23477
|
profileId: string(),
|
|
23365
23478
|
cols: number().int().positive(),
|
|
23366
|
-
rows: number().int().positive()
|
|
23479
|
+
rows: number().int().positive(),
|
|
23480
|
+
executable: string().max(1024).optional(),
|
|
23481
|
+
args: array(string().max(2048)).max(64).optional(),
|
|
23482
|
+
cwd: string().max(1024).optional(),
|
|
23483
|
+
environment: array(string().max(4096)).max(64).optional()
|
|
23367
23484
|
}), TerminalSessionInfoSchema, {
|
|
23368
23485
|
kind: "mutation",
|
|
23369
23486
|
auth: "admin"
|
|
@@ -27741,10 +27858,10 @@ var lawnMowerControlCapability = {
|
|
|
27741
27858
|
*
|
|
27742
27859
|
* • The SDK (mobile / web client) consumes `getConnectionEndpoints()`
|
|
27743
27860
|
* to receive an ordered list of candidate base URLs it should race
|
|
27744
|
-
* on connect — LAN IPv4 first (lowest latency
|
|
27745
|
-
* then public hostname (if a tunnel is
|
|
27746
|
-
* race them with short timeouts and stick with the
|
|
27747
|
-
* session.
|
|
27861
|
+
* on connect — LAN IPv4 and stable LAN IPv6 first (lowest latency
|
|
27862
|
+
* when on the same network), then public hostname (if a tunnel is
|
|
27863
|
+
* up). The SDK can race them with short timeouts and stick with the
|
|
27864
|
+
* winner for the session.
|
|
27748
27865
|
*
|
|
27749
27866
|
* Why hub-only: agents are not directly addressable by the operator's
|
|
27750
27867
|
* clients — they reverse-connect to the hub. Exposing their interfaces
|
|
@@ -27899,6 +28016,17 @@ var NotificationEndpointSchema = object({
|
|
|
27899
28016
|
/** What the ranking currently resolves to (null when nothing is reachable). */
|
|
27900
28017
|
resolved: string().nullable()
|
|
27901
28018
|
});
|
|
28019
|
+
/**
|
|
28020
|
+
* The URLs the SDK / viewer should race for API access. `baseUrls` empty =
|
|
28021
|
+
* AUTO (every LAN IPv4 + the public tunnel). `resolved` is what that choice
|
|
28022
|
+
* currently expands to, so the UI can show the effective set either way.
|
|
28023
|
+
*/
|
|
28024
|
+
var ViewerEndpointsSchema = object({
|
|
28025
|
+
/** The operator's explicit race set, or empty for AUTO. */
|
|
28026
|
+
baseUrls: array(string()).readonly(),
|
|
28027
|
+
/** What the ranking currently resolves to (may be empty if nothing is up). */
|
|
28028
|
+
resolved: array(string()).readonly()
|
|
28029
|
+
});
|
|
27902
28030
|
var AllowedAddressesSchema = object({
|
|
27903
28031
|
/**
|
|
27904
28032
|
* Allowlist of interface addresses operators have explicitly opted
|
|
@@ -27907,6 +28035,20 @@ var AllowedAddressesSchema = object({
|
|
|
27907
28035
|
* Network Addresses admin page and persisted by the addon.
|
|
27908
28036
|
*/
|
|
27909
28037
|
addresses: array(string()).readonly() });
|
|
28038
|
+
var TlsStatusSchema = object({
|
|
28039
|
+
mode: _enum([
|
|
28040
|
+
"generated",
|
|
28041
|
+
"uploaded",
|
|
28042
|
+
"disabled"
|
|
28043
|
+
]),
|
|
28044
|
+
leafFingerprintSha256: string().nullable(),
|
|
28045
|
+
caFingerprintSha256: string().nullable(),
|
|
28046
|
+
validTo: string().nullable(),
|
|
28047
|
+
sans: array(string()),
|
|
28048
|
+
caCertPem: string().nullable(),
|
|
28049
|
+
reissueError: string().nullable(),
|
|
28050
|
+
restartRequired: boolean()
|
|
28051
|
+
});
|
|
27910
28052
|
var localNetworkCapability = {
|
|
27911
28053
|
name: "local-network",
|
|
27912
28054
|
scope: "system",
|
|
@@ -27926,13 +28068,13 @@ var localNetworkCapability = {
|
|
|
27926
28068
|
*/
|
|
27927
28069
|
getPreferred: method(_void(), PreferredSchema),
|
|
27928
28070
|
/**
|
|
27929
|
-
* Ordered candidate base URLs the
|
|
27930
|
-
* Includes LAN
|
|
27931
|
-
*
|
|
27932
|
-
*
|
|
27933
|
-
*
|
|
27934
|
-
*
|
|
27935
|
-
*
|
|
28071
|
+
* Ordered candidate base URLs (the palette the Network tab shows).
|
|
28072
|
+
* Includes LAN IPv4, stable LAN IPv6, the public tunnel, and mesh when
|
|
28073
|
+
* joined. Loopback is off by default. The SDK races the subset from
|
|
28074
|
+
* `getViewerEndpoints`, not this full list — IPv6 stays here because
|
|
28075
|
+
* WebRTC ICE gathers dual-stack regardless of the HTTP race. Honours
|
|
28076
|
+
* `getAllowedAddresses()` when set — addresses outside the allowlist
|
|
28077
|
+
* are dropped (the public tunnel is still included as an escape hatch).
|
|
27936
28078
|
*
|
|
27937
28079
|
* **The port is the hub's, not the caller's** (D62 — a function's fact
|
|
27938
28080
|
* belongs to whoever already owns it). This method used to take a `port`
|
|
@@ -27963,10 +28105,11 @@ var localNetworkCapability = {
|
|
|
27963
28105
|
*/
|
|
27964
28106
|
port: number().int().min(1).max(65535).optional(),
|
|
27965
28107
|
/** Include `http(s)://127.0.0.1:<port>` as the lowest-priority
|
|
27966
|
-
* candidate. Default `
|
|
28108
|
+
* candidate. Default `false` — loopback is not a client route. */
|
|
27967
28109
|
includeLoopback: boolean().optional(),
|
|
27968
|
-
/** Skip IPv6 entries.
|
|
27969
|
-
*
|
|
28110
|
+
/** Skip IPv6 entries. Default `false` — the palette includes stable
|
|
28111
|
+
* LAN IPv6 (ICE/WebRTC uses dual-stack regardless). Pass `true` to
|
|
28112
|
+
* hide them. The viewer HTTP/WS race is `getViewerEndpoints`. */
|
|
27970
28113
|
ipv4Only: boolean().optional(),
|
|
27971
28114
|
/** Scheme to emit for LAN/loopback URLs. Default `'http'`.
|
|
27972
28115
|
* Pass `'https'` when the caller is itself loaded over HTTPS
|
|
@@ -27995,6 +28138,19 @@ var localNetworkCapability = {
|
|
|
27995
28138
|
*/
|
|
27996
28139
|
setNotificationEndpoint: method(object({ baseUrl: string().nullable() }), NotificationEndpointSchema, { kind: "mutation" }),
|
|
27997
28140
|
/**
|
|
28141
|
+
* The endpoints the SDK / viewer races for API access. Empty `baseUrls`
|
|
28142
|
+
* means AUTO: every LAN IPv4 address plus the public tunnel, never IPv6,
|
|
28143
|
+
* never mesh, never loopback. `resolved` is that set (or the operator's
|
|
28144
|
+
* explicit subset) as it stands right now.
|
|
28145
|
+
*/
|
|
28146
|
+
getViewerEndpoints: method(_void(), ViewerEndpointsSchema),
|
|
28147
|
+
/**
|
|
28148
|
+
* Replace the viewer race set. Empty `baseUrls` restores AUTO. Stored
|
|
28149
|
+
* verbatim (not indices) so a temporarily-down tunnel is not silently
|
|
28150
|
+
* dropped from the operator's choice.
|
|
28151
|
+
*/
|
|
28152
|
+
setViewerEndpoints: method(object({ baseUrls: array(string()).readonly() }), ViewerEndpointsSchema, { kind: "mutation" }),
|
|
28153
|
+
/**
|
|
27998
28154
|
* Read the operator's allowlist. Empty = "auto" (no filter). Used
|
|
27999
28155
|
* by the admin UI's address selector to seed its checkbox state.
|
|
28000
28156
|
*/
|
|
@@ -28012,7 +28168,34 @@ var localNetworkCapability = {
|
|
|
28012
28168
|
* when the operator wants to wipe their manual edits and start
|
|
28013
28169
|
* over from the auto-detected best matches.
|
|
28014
28170
|
*/
|
|
28015
|
-
resetAllowlistToBestMatch: method(_void(), AllowedAddressesSchema, { kind: "mutation" })
|
|
28171
|
+
resetAllowlistToBestMatch: method(_void(), AllowedAddressesSchema, { kind: "mutation" }),
|
|
28172
|
+
/**
|
|
28173
|
+
* Live TLS material for the Network → Local access certificate card.
|
|
28174
|
+
* LAN HTTP / hostname are addon settings (`globalSettingsSchema`), not
|
|
28175
|
+
* a second store — this query is status, not configuration.
|
|
28176
|
+
*/
|
|
28177
|
+
getTlsStatus: method(_void(), TlsStatusSchema),
|
|
28178
|
+
/** Issue a new leaf under the existing local CA. Disabled in uploaded mode. */
|
|
28179
|
+
regenerateCertificate: method(object({ reason: string().optional() }), TlsStatusSchema, {
|
|
28180
|
+
kind: "mutation",
|
|
28181
|
+
auth: "admin"
|
|
28182
|
+
}),
|
|
28183
|
+
/** Replace the served material with operator-supplied PEMs. */
|
|
28184
|
+
uploadCertificate: method(object({
|
|
28185
|
+
certPem: string().min(1),
|
|
28186
|
+
keyPem: string().min(1),
|
|
28187
|
+
caPem: string().optional()
|
|
28188
|
+
}), TlsStatusSchema, {
|
|
28189
|
+
kind: "mutation",
|
|
28190
|
+
auth: "admin"
|
|
28191
|
+
}),
|
|
28192
|
+
/** The local CA PEM, or empty when there is none to download. */
|
|
28193
|
+
downloadCa: method(_void(), object({ pem: string() })),
|
|
28194
|
+
/** Drop uploaded material and return to the generated local CA. */
|
|
28195
|
+
revertToGeneratedCertificate: method(_void(), TlsStatusSchema, {
|
|
28196
|
+
kind: "mutation",
|
|
28197
|
+
auth: "admin"
|
|
28198
|
+
})
|
|
28016
28199
|
},
|
|
28017
28200
|
/** BIG PLAN 2: declarative mount hint — read by `@camstack/system` `buildCapRouters`. */
|
|
28018
28201
|
mount: { kind: "hub-only" }
|
|
@@ -35756,6 +35939,12 @@ Object.freeze({
|
|
|
35756
35939
|
addonId: null,
|
|
35757
35940
|
access: "create"
|
|
35758
35941
|
},
|
|
35942
|
+
"localNetwork.downloadCa": {
|
|
35943
|
+
capName: "local-network",
|
|
35944
|
+
capScope: "system",
|
|
35945
|
+
addonId: null,
|
|
35946
|
+
access: "view"
|
|
35947
|
+
},
|
|
35759
35948
|
"localNetwork.getAllowedAddresses": {
|
|
35760
35949
|
capName: "local-network",
|
|
35761
35950
|
capScope: "system",
|
|
@@ -35780,18 +35969,42 @@ Object.freeze({
|
|
|
35780
35969
|
addonId: null,
|
|
35781
35970
|
access: "view"
|
|
35782
35971
|
},
|
|
35972
|
+
"localNetwork.getTlsStatus": {
|
|
35973
|
+
capName: "local-network",
|
|
35974
|
+
capScope: "system",
|
|
35975
|
+
addonId: null,
|
|
35976
|
+
access: "view"
|
|
35977
|
+
},
|
|
35978
|
+
"localNetwork.getViewerEndpoints": {
|
|
35979
|
+
capName: "local-network",
|
|
35980
|
+
capScope: "system",
|
|
35981
|
+
addonId: null,
|
|
35982
|
+
access: "view"
|
|
35983
|
+
},
|
|
35783
35984
|
"localNetwork.list": {
|
|
35784
35985
|
capName: "local-network",
|
|
35785
35986
|
capScope: "system",
|
|
35786
35987
|
addonId: null,
|
|
35787
35988
|
access: "view"
|
|
35788
35989
|
},
|
|
35990
|
+
"localNetwork.regenerateCertificate": {
|
|
35991
|
+
capName: "local-network",
|
|
35992
|
+
capScope: "system",
|
|
35993
|
+
addonId: null,
|
|
35994
|
+
access: "create"
|
|
35995
|
+
},
|
|
35789
35996
|
"localNetwork.resetAllowlistToBestMatch": {
|
|
35790
35997
|
capName: "local-network",
|
|
35791
35998
|
capScope: "system",
|
|
35792
35999
|
addonId: null,
|
|
35793
36000
|
access: "delete"
|
|
35794
36001
|
},
|
|
36002
|
+
"localNetwork.revertToGeneratedCertificate": {
|
|
36003
|
+
capName: "local-network",
|
|
36004
|
+
capScope: "system",
|
|
36005
|
+
addonId: null,
|
|
36006
|
+
access: "create"
|
|
36007
|
+
},
|
|
35795
36008
|
"localNetwork.setAllowedAddresses": {
|
|
35796
36009
|
capName: "local-network",
|
|
35797
36010
|
capScope: "system",
|
|
@@ -35804,6 +36017,18 @@ Object.freeze({
|
|
|
35804
36017
|
addonId: null,
|
|
35805
36018
|
access: "create"
|
|
35806
36019
|
},
|
|
36020
|
+
"localNetwork.setViewerEndpoints": {
|
|
36021
|
+
capName: "local-network",
|
|
36022
|
+
capScope: "system",
|
|
36023
|
+
addonId: null,
|
|
36024
|
+
access: "create"
|
|
36025
|
+
},
|
|
36026
|
+
"localNetwork.uploadCertificate": {
|
|
36027
|
+
capName: "local-network",
|
|
36028
|
+
capScope: "system",
|
|
36029
|
+
addonId: null,
|
|
36030
|
+
access: "create"
|
|
36031
|
+
},
|
|
35807
36032
|
"lockControl.lock": {
|
|
35808
36033
|
capName: "lock-control",
|
|
35809
36034
|
capScope: "device",
|
|
@@ -38684,6 +38909,12 @@ Object.freeze({
|
|
|
38684
38909
|
addonId: null,
|
|
38685
38910
|
access: "create"
|
|
38686
38911
|
},
|
|
38912
|
+
"terminalSession.updateInstance": {
|
|
38913
|
+
capName: "terminal-session",
|
|
38914
|
+
capScope: "system",
|
|
38915
|
+
addonId: null,
|
|
38916
|
+
access: "create"
|
|
38917
|
+
},
|
|
38687
38918
|
"terminalSession.writeInput": {
|
|
38688
38919
|
capName: "terminal-session",
|
|
38689
38920
|
capScope: "system",
|
|
@@ -41231,6 +41462,35 @@ Object.freeze(Object.fromEntries([{
|
|
|
41231
41462
|
}]
|
|
41232
41463
|
}].map((s) => [s.stepId, s.defaultModelId])));
|
|
41233
41464
|
string().min(1);
|
|
41465
|
+
var CLUSTER_STEP_SETTING_FIELDS = [{
|
|
41466
|
+
stepId: "face-embedding",
|
|
41467
|
+
key: "minLandmarkFaceSize",
|
|
41468
|
+
label: "Min face size for recognition (detection px)",
|
|
41469
|
+
description: "Refuse to embed a face smaller than this IN THE DETECTION FRAME. Applies to every node — the enrolled gallery is one index, and two admission floors would fill it from two policies. 0 disables the gate.",
|
|
41470
|
+
type: "slider",
|
|
41471
|
+
min: 0,
|
|
41472
|
+
max: 64,
|
|
41473
|
+
step: 2,
|
|
41474
|
+
default: 24
|
|
41475
|
+
}];
|
|
41476
|
+
function clusterStepSettingKey(stepId, fieldKey) {
|
|
41477
|
+
return `clusterStepSetting:${stepId}:${fieldKey}`;
|
|
41478
|
+
}
|
|
41479
|
+
var ClusterSettingNumberSchema = number().finite();
|
|
41480
|
+
function readClusterStepSettings(config) {
|
|
41481
|
+
const out = {};
|
|
41482
|
+
for (const field of CLUSTER_STEP_SETTING_FIELDS) {
|
|
41483
|
+
const parsed = ClusterSettingNumberSchema.safeParse(config[clusterStepSettingKey(field.stepId, field.key)]);
|
|
41484
|
+
const value = parsed.success ? parsed.data : field.default;
|
|
41485
|
+
const existing = out[field.stepId] ?? {};
|
|
41486
|
+
out[field.stepId] = {
|
|
41487
|
+
...existing,
|
|
41488
|
+
[field.key]: value
|
|
41489
|
+
};
|
|
41490
|
+
}
|
|
41491
|
+
return out;
|
|
41492
|
+
}
|
|
41493
|
+
readClusterStepSettings({});
|
|
41234
41494
|
object({
|
|
41235
41495
|
/**
|
|
41236
41496
|
* Fraction of the box's own size added on EACH side before cutting.
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { h as e, l as t, u as n, y as r } from "./_virtual_mf___mfe_internal__addon_osd_manager_page__loadShare__react__loadShare__.js-Bs1t18EM.mjs";
|
|
2
|
-
import { o as i, s as a } from "./responsive-
|
|
2
|
+
import { o as i, s as a } from "./responsive-B_W10135.mjs";
|
|
3
3
|
import { n as o, r as s, t as c } from "./_virtual_mf___mfe_internal__addon_osd_manager_page__loadShare__react_mf_1_jsx_mf_2_runtime__loadShare__.js-DalfdIDw.mjs";
|
|
4
4
|
var l = a("chevron-down", [["path", {
|
|
5
5
|
d: "m6 9 6 6 6-6",
|
package/dist/remoteEntry.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { n as e, t } from "./virtual_mf-REMOTE_ENTRY_ID___mfe_internal__addon_osd_manager_page__remoteEntry_js-
|
|
1
|
+
import { n as e, t } from "./virtual_mf-REMOTE_ENTRY_ID___mfe_internal__addon_osd_manager_page__remoteEntry_js-0ziNXHDT.mjs";
|
|
2
2
|
export { t as get, e as init };
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { c as e, g as t, h as n, l as r, n as i, p as a, r as o, t as s, u as c, y as l } from "./_virtual_mf___mfe_internal__addon_osd_manager_page__loadShare__react__loadShare__.js-Bs1t18EM.mjs";
|
|
2
2
|
import "./_virtual_mf___mfe_internal__addon_osd_manager_page__loadShare__react_mf_1_jsx_mf_2_runtime__loadShare__.js-DalfdIDw.mjs";
|
|
3
|
-
import { t as u } from "./_virtual_mf___mfe_internal__addon_osd_manager_page__loadShare___mf_0_camstack_mf_1_types__loadShare__.js-
|
|
3
|
+
import { t as u } from "./_virtual_mf___mfe_internal__addon_osd_manager_page__loadShare___mf_0_camstack_mf_1_types__loadShare__.js-DO3S4jGF.mjs";
|
|
4
4
|
//#region ../ui-library/node_modules/lucide-react/dist/esm/shared/src/utils/mergeClasses.js
|
|
5
5
|
l();
|
|
6
6
|
var d = (...e) => e.filter((e, t, n) => !!e && e.trim() !== "" && n.indexOf(e) === t).join(" ").trim(), f = (e) => e.replace(/([a-z0-9])([A-Z])/g, "$1-$2").toLowerCase(), p = (e) => e.replace(/^([A-Z])|[\s-_]+(\w)/g, (e, t, n) => n ? n.toUpperCase() : t.toLowerCase()), m = (e) => {
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { c as e, h as t, p as n, y as r } from "./_virtual_mf___mfe_internal__addon_osd_manager_page__loadShare__react__loadShare__.js-Bs1t18EM.mjs";
|
|
2
|
-
import { s as i } from "./responsive-
|
|
2
|
+
import { s as i } from "./responsive-B_W10135.mjs";
|
|
3
3
|
var a = i("camera", [["path", {
|
|
4
4
|
d: "M13.997 4a2 2 0 0 1 1.76 1.05l.486.9A2 2 0 0 0 18.003 7H20a2 2 0 0 1 2 2v9a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V9a2 2 0 0 1 2-2h1.997a2 2 0 0 0 1.759-1.048l.489-.904A2 2 0 0 1 10.004 4z",
|
|
5
5
|
key: "18u6gg"
|
|
@@ -2753,7 +2753,7 @@ async function rr(e) {
|
|
|
2753
2753
|
}
|
|
2754
2754
|
}
|
|
2755
2755
|
async function ir() {
|
|
2756
|
-
return tr ||= rr(() => import("./_virtual_mf-localSharedImportMap___mfe_internal__addon_osd_manager_page-
|
|
2756
|
+
return tr ||= rr(() => import("./_virtual_mf-localSharedImportMap___mfe_internal__addon_osd_manager_page-5jby0ZM9.mjs")).catch((e) => {
|
|
2757
2757
|
throw tr = void 0, e;
|
|
2758
2758
|
}), tr;
|
|
2759
2759
|
}
|
package/package.json
CHANGED
|
@@ -1,26 +0,0 @@
|
|
|
1
|
-
//#region \0virtual:mf:__mfe_internal__addon_osd_manager_page__loadShare___mf_0_camstack_mf_1_types__loadShare__.js
|
|
2
|
-
var e = "__mf_init__virtual:mf:__mfe_internal__addon_osd_manager_page__mf_v__runtimeInit__mf_v__.js__", t = globalThis[e];
|
|
3
|
-
if (!t) {
|
|
4
|
-
let n, r, i = new Promise((e, t) => {
|
|
5
|
-
n = e, r = t;
|
|
6
|
-
});
|
|
7
|
-
t = globalThis[e] = {
|
|
8
|
-
initPromise: i,
|
|
9
|
-
initResolve: n,
|
|
10
|
-
initReject: r
|
|
11
|
-
};
|
|
12
|
-
}
|
|
13
|
-
var n = t.initPromise, r = "__mf_module_cache__";
|
|
14
|
-
globalThis[r] ||= {
|
|
15
|
-
share: {},
|
|
16
|
-
remote: {}
|
|
17
|
-
}, globalThis[r].share ||= {}, globalThis[r].remote ||= {};
|
|
18
|
-
var i = globalThis[r], a, o, s, c, l, u, d, f, p, m, h, g, _, v, y, b, x = (e) => {
|
|
19
|
-
e.ACCESSORY_LABEL, e.ACCESS_ROLES, e.ALEXA_EGRESS_PROFILE, a = e.ALL_CAPABILITY_DEFINITIONS, e.APPLE_SA_TO_MACRO, e.AUDIO_ANALYSIS_CAP_NAME, e.AUDIO_BACKEND_CHOICES, e.AUDIO_MACRO_LABELS, e.AUDIO_PRESETS, e.AccessoriesStatusSchema, e.AccessoryKind, e.AddBrokerInputSchema, e.AddonAutoUpdateSchema, e.AddonListItemSchema, e.AddonPageDeclarationSchema, e.AddonPageInfoSchema, e.AdoptionAdoptInputSchema, e.AdoptionAdoptResultSchema, e.AdoptionCandidateResultSchema, e.AdoptionFilterSchema, e.AdoptionGetCandidateInputSchema, e.AdoptionJobSchema, e.AdoptionJobStateSchema, e.AdoptionListCandidatesInputSchema, e.AdoptionListCandidatesOutputSchema, e.AdoptionOutcomeSchema, e.AdoptionReleaseInputSchema, e.AdoptionStatusSchema, e.AgentLoadSummarySchema, e.AirQualitySensorStatusSchema, e.AlarmArmModeSchema, e.AlarmPanelStatusSchema, o = e.AlarmStateSchema, e.AlertSchema, e.AlertSeveritySchema, e.AlertSourceSchema, e.AlertStatusSchema, e.AmbientLightSensorStatusSchema, e.ApiKeyRecordSchema, e.ApiKeySummarySchema, e.ArchiveEntrySchema, e.ArchiveManifestSchema, e.AttachmentMediaTypeSchema, e.AttachmentSchema, e.AudioAnalysisResultSchema, e.AudioAnalysisSettingsSchema, e.AudioChunkInputSchema, e.AudioClassSummarySchema, e.AudioClassificationLabelSchema, e.AudioClassificationResultSchema, e.AudioCodecInfoSchema, e.AudioDecodeSessionConfigSchema, e.AudioEncodeSchema, e.AudioEncodeSessionConfigSchema, e.AudioEncodedChunkSchema, e.AudioEventSchema, e.AudioLevelSchema, e.AudioMetricsHistoryPointSchema, e.AudioMetricsHistorySchema, e.AudioMetricsSnapshotSchema, e.AudioPcmChunkSchema, e.AuthResultSchema, e.AutoUpdateSettingsSchema, e.AutomationActionSchema, e.AutomationConditionOperatorSchema, e.AutomationConditionSchema, e.AutomationControlStatusSchema, e.AutomationRecipeSchema, e.AutomationTriggerSchema, e.AvailableIntegrationTypeSchema, e.BACKEND_TO_FORMAT, e.BASE_LIVE_EGRESS_PROFILE, e.BATTERY_DEVICE_PROFILE, e.BATTERY_UNREACHABLE_AFTER_MS, e.BOOT_RECOVERY_BACKOFF_MS, e.BacklightModeSchema, e.BackupDestinationInfoSchema, e.BackupEntrySchema, e.BaseAddon, e.BaseDevice, e.BaseDeviceProvider, e.BatteryStatusSchema, e.BinaryStatusSchema, e.BoundingBoxSchema, e.BrightnessStatusSchema, e.BrokerAddInputSchema, e.BrokerAudioClientSchema, e.BrokerClientsSchema, e.BrokerConnectionDetailsSchema, e.BrokerConsumerAttributionSchema, e.BrokerConsumerKindSchema, e.BrokerDecodedClientSchema, e.BrokerEncodedClientSchema, e.BrokerGetStateInputSchema, e.BrokerInfoSchema, e.BrokerProviderInfoSchema, e.BrokerPublishInputSchema, e.BrokerRegistryStatusSchema, e.BrokerRtspClientSchema, e.BrokerStatsSchema, e.BrokerStatusEnum, e.BrokerStatusSchema, e.BrokerSubscribeInputSchema, e.BrokerSubscribeResultSchema, e.BrokerTestConnectionResultSchema, e.BrokerUnsubscribeInputSchema, e.CAMERA_SWITCH_CATALOG, e.CAMERA_SWITCH_ORDER, e.CAM_PROFILE_ORDER, e.CAPABILITY_NAMES, e.CAPABILITY_ROUTER_KEYS, e.CAP_NAMES_WITH_STATUS, e.CAP_NODE_PIN_CONTEXT_KEY, e.CAP_PROVIDER_KIND_MAP, e.CLUSTER_MODEL_SCOPED_STEPS, e.CLUSTER_MODEL_SECTION_ID, e.COCO_80_LABELS, e.COCO_TO_MACRO, e.CONNECTION_TEST_TIMEOUT_MS, e.CORE_BLOCKS_ADDON_ID, e.CORE_BLOCK_ADDON_PREFIX, e.CamProfileSchema, e.CamStreamDescriptorSchema, e.CamStreamKindSchema, e.CamStreamResolutionSchema, e.CameraAssignmentStatusSchema, e.CameraAudioStatusSchema, e.CameraBrokerProfileSchema, e.CameraBrokerStatusSchema, e.CameraCredentialsSchema, e.CameraCredentialsStatusSchema, e.CameraDecoderShmSchema, e.CameraDecoderStatusSchema, e.CameraDetectionPhaseSchema, e.CameraDetectionProvisioningSchema, e.CameraDetectionProvisioningStateSchema, e.CameraDetectionStatusSchema, e.CameraMetricsSchema, e.CameraMetricsWithDeviceIdSchema, e.CameraMotionStatusSchema, e.CameraRecordingModeSchema, e.CameraRecordingStatusSchema, e.CameraSourceStatusSchema, e.CameraSourceStreamSchema, e.CameraStatusDegradationReasonSchema, e.CameraStatusDegradationSchema, e.CameraStatusSchema, e.CameraStatusStageSchema, e.CameraStreamSchema, e.CameraSwitchAuthoritySchema, e.CameraSwitchGroupSchema, e.CameraSwitchIdSchema, e.CameraSwitchSchema, e.CameraSwitchUnavailableReasonSchema, e.CandidateQueryFilterSchema, e.CapScopeSchema, e.CapabilityBindingsSchema, e.CarbonMonoxideStatusSchema, e.ChargingStatus, e.ClientNetworkStatsSchema, e.ClimateControlStatusSchema, e.ClipPlaybackSchema, e.ClipSchema, e.ClusterAddonNodeDeploymentSchema, e.ClusterAddonStatusEntrySchema, e.CollectionColumnSchema, e.CollectionIndexSchema, e.ColorStatusSchema, e.ConfigEntrySchema, e.ConfigSectionWithValuesSchema, e.ConfigTabDeclarationSchema, e.ConnectionTestDescriptorSchema, e.ConnectionTestInputSchema, e.ConnectionTestOutcomeSchema, e.ConnectivityStatusSchema, e.ConsumableItemSchema, e.ConsumablesStatusSchema, e.ContactStatusSchema, e.ControlKindSchema, e.ControlStatusSchema, e.ConvertArtifactSchema, e.ConvertResultSchema, e.ConvertTargetSchema, e.CoreBlockCompileResultSchema, e.CoreBlockInputSchema, e.CoreBlockPlacementSchema, e.CoreBlockSchema, e.CoreBlockStatusSchema, e.CoverStateSchema, e.CoverStatusSchema, e.CreateApiKeyInputSchema, e.CreateApiKeyResultSchema, e.CreateIntegrationInputSchema, e.CreateScopedTokenInputSchema, e.CreateScopedTokenResultSchema, e.CreateUserInputSchema, e.CustomActionInputSchema, e.CustomModelDescriptorSchema, e.DATAPLANE_SECRET_HEADER, e.DECLARED_DEVICE_SWEEP_LIMIT, e.DECLARED_INTEGRATION_FIXED_KEY, e.DEFAULT_ADDON_PLACEMENT, e.DEFAULT_AUDIO_ANALYZER_CONFIG, e.DEFAULT_CLUSTER_STEP_MODELS, e.DEFAULT_DECODER_HWACCEL_CONFIG, e.DEFAULT_DETAIL_CROP_CONVENTION, e.DEFAULT_EVENTS_BAND_BUFFER_SEC, e.DEFAULT_EVENT_COLOR, e.DEFAULT_FEATURES, e.DEFAULT_NATIVE_LEASE_SETTINGS, e.DEFAULT_POOL_MEMORY_POLICY, e.DEFAULT_RECORDING_PROFILES, e.DEFAULT_RETENTION, e.DEFAULT_RUNTIME_STATE_DURABILITY, e.DEFAULT_SCRUB_THUMBNAIL_PRESET, e.DEFAULT_TIMELAPSE_PREVIEW_TEXT, e.DETAIL_CROP_PADDING_FIELD, e.DETAIL_CROP_PADDING_KEY, e.DETAIL_CROP_SECTION_ID, e.DETAIL_CROP_SQUARE_KEY, e.DETECTION_MACRO_CLASSES, e.DETECTION_PIPELINE_CAP_NAME, e.DEVICE_BACKEND_TO_FORMAT, e.DEVICE_CAP_NAMES, e.DEVICE_PROFILES, e.DEVICE_SCOPED_CAPS, e.DEVICE_SETTINGS_CONTRIBUTION_METHODS, e.DEVICE_STATE_READERS, e.DEVICE_STATUS_METHOD, s = e.DEVICE_TYPE_CONTROL_KIND, e.DEVICE_TYPE_INFO, e.DataStoreEngineInfoSchema, e.DayNightModeSchema, e.DayNightOptionsSchema, e.DayNightSettingsPatchSchema, e.DayNightStatusSchema, e.DeclaredDevices, e.DecodedAudioChunkSchema, e.DecodedFrameSchema, e.DecoderSessionConfigSchema, e.DecoderStatsSchema, e.DeleteIntegrationResultSchema, e.DetailCropConventionSchema, e.DetectionSourceSchema, e.DeviceCodeSeveritySchema, e.DeviceConfig, e.DeviceDiscoveryStatusSchema, e.DeviceExportExposeInputSchema, e.DeviceExportStatusSchema, e.DeviceExportUnexposeInputSchema, c = e.DeviceFeature, e.DeviceInfoSchema, e.DeviceNetworkStatsSchema, l = e.DeviceRole, e.DeviceRuntimeState, e.DeviceSelectorSchema, e.DeviceStatusSchema, u = e.DeviceType, e.DiscoveredChildDeviceSchema, e.DiscoveredChildStatusSchema, e.DiscoveredDeviceSchema, e.DiscoveredTargetSchema, e.DiskReconcileJobSchema, e.DisposerChain, e.DoorbellPressEventSchema, e.DoorbellStatusSchema, e.EVENTFUL_CAP_NAMES, e.EVENT_KIND_BY_CAP, e.EVENT_PAD_MS, d = e.EVENT_TAXONOMY, e.EXPORT_DENSE_MAX_RANGES, e.EXPRESSION_BUILTINS, e.EXPRESSION_BUILTIN_NAMES, e.EXPRESSION_COMPILE_CACHE_CAPACITY, e.EXPRESSION_IDENTIFIER_RE, e.EXPRESSION_INJECTED_NOW, e.EgressEncodeSchema, e.EgressRateControlSchema, e.EgressTranscodeRequestSchema, e.EgressTranscodeSchema, e.ElementConfigStore, e.EmbeddingInfoSchema, e.EmbeddingResultSchema, e.EncodeProfileSchema, e.EncodedPacketSchema, e.EnrichedWidgetMetadataSchema, e.EnumSensorDateTimeFormatSchema, e.EnumSensorStatusSchema, f = e.EventCategory, e.EventEmitterStatusSchema, e.EventFireSchema, e.EventItemSchema, e.EventKindCategorySchema, e.EventKindDescriptorSchema, e.EventKindIconSchema, e.EventKindSchema, e.EventKindsForDeviceSchema, e.EventMediaArtifactSchema, e.EventMediaCoverageSchema, e.EventMediaKindSchema, e.EventMediaProductionSchema, e.EventSourceType, e.ExportBytesSchema, e.ExportDenseRangeSchema, e.ExportDenseSchema, e.ExportDownloadSchema, e.ExportOptionsSchema, e.ExportRecordSchema, e.ExportSetupFieldSchema, e.ExportSetupSchema, e.ExportSpeedSchema, e.ExportStateSchema, e.ExportTimelapseSchema, p = e.ExposedDeviceSchema, e.ExposureModeSchema, e.ExpressionBindingSourceSchema, e.ExpressionEvalError, e.ExpressionFieldBindingSchema, e.ExpressionGlobalBindingSchema, e.ExpressionLiteralBindingSchema, e.ExpressionParseError, e.ExpressionSourceSchema, e.FULL_IMAGE_BBOX, e.FanControlStatusSchema, e.FanDirectionSchema, e.FeatureManifestSchema, e.FeatureProbeStatusSchema, e.FloodStatusSchema, e.Fmp4BoxSplitter, e.FrameHandleFormatSchema, e.FrameHandleSchema, e.FrameInputSchema, e.GasStatusSchema, e.GetStreamWithCodecInputSchema, e.GlobalMetricsSchema, e.HAP_AUDIO_BASE, e.HAP_AUDIO_BITRATE_KBPS, e.HAP_AUDIO_VBV_KBITS, e.HAP_KEYFRAME_INTERVAL_SEC, e.HF_BASE_URL, e.HF_REPO, e.HWACCEL_OPTIONS, e.HealthStatusSchema, e.HfModelResolutionSchema, e.HistoryPointSchema, e.HistoryResolutionEnum, e.HumidifierStatusSchema, e.HumiditySensorStatusSchema, e.HvacModeSchema, e.INFERENCE_DEVICE_EXCLUSION_REASONS, e.ImageContractSchema, e.ImageContractStateSchema, e.ImageRotateSchema, e.ImageSettingsOptionsSchema, e.ImageSettingsPatchSchema, e.ImageSettingsStatusSchema, e.ImageStatusSchema, e.InferenceDeviceExclusionReasonSchema, e.IngestOwnerSchema, e.InstalledPackageSchema, e.IntegrationLiteSchema, e.IntegrationWithStateSchema, e.IntercomAbilitySchema, e.IntercomStatusSchema, e.KNOWN_CAP_NAMES, e.KeyEventSchema, e.LOG_LEVEL_RANK, e.LabelAttributionSchema, e.LabelDefinitionSchema, e.LabelTierSchema, e.LawnMowerActivitySchema, e.LawnMowerControlStatusSchema, e.LinkedDeviceSchema, e.LinkedDevicesModeSchema, e.LlmDefaultSchema, e.LlmDefaultSelectorSchema, e.LlmDownloadProgressSchema, e.LlmErrorCodeSchema, e.LlmGenerateBaseInputSchema, e.LlmGenerateErrSchema, e.LlmGenerateOkSchema, e.LlmGenerateResultSchema, e.LlmImageSchema, e.LlmNodeModelSchema, e.LlmProfileKindDescriptorSchema, e.LlmProfileKindSchema, e.LlmProfileSchema, e.LlmRetryPolicySchema, e.LlmRuntimeCompleteInputSchema, e.LlmRuntimeDiskUsageSchema, e.LlmRuntimeNodeSchema, e.LlmRuntimeStatusSchema, e.LlmTimeoutDefaults, e.LlmUsageRollupSchema, e.LlmUsageSchema, e.LocateSegmentResultSchema, e.LocationStatSchema, e.LockControlStatusSchema, e.LockStateSchema, e.LogEntrySchema, e.LogLevelSchema, e.LogStreamEntrySchema, e.LoginMethodContributionSchema, e.LoginStageEnum, e.MACRO_LABELS, e.MAX_CLIP_EVENT_IDS, e.MAX_CLIP_LABELS, e.MAX_CONDITION_DEPTH, e.MAX_CONDITION_LEAVES, e.MAX_EXPRESSION_AST_NODES, e.MAX_EXPRESSION_BINDINGS, e.MAX_EXPRESSION_CALL_ARGS, e.MAX_EXPRESSION_EVAL_STEPS, e.MAX_EXPRESSION_SOURCE_LENGTH, e.METHOD_ACCESS_MAP, e.METHOD_DEVICE_SELECTORS, e.MODEL_FORMATS, e.MOTION_TRIGGER_FEATURE, e.ManagedModelCatalogEntrySchema, e.ManagedModelExtraFileSchema, e.ManagedModelRefSchema, e.ManagedRuntimeConfigSchema, e.MaskGridDimsSchema, e.MaskGridShapeSchema, e.MaskLineShapeSchema, e.MaskPointSchema, e.MaskPolygonShapeSchema, e.MaskPolygonVerticesSchema, e.MaskRectShapeSchema, e.MaskShapeKindSchema, e.MaskShapeSchema, e.MediaFileInfoSchema, e.MediaFileSchema, e.MediaPlayerRepeatSchema, e.MediaPlayerStateSchema, e.MediaPlayerStatusSchema, e.MeshPeerSchema, e.MeshStatusSchema, e.MethodAccessSchema, e.ModelCatalogEntrySchema, e.ModelConvertInputSchema, e.ModelConvertMetadataSchema, e.ModelDistributeInputSchema, e.ModelDistributeResultSchema, e.ModelExtraFileSchema, e.ModelFormatEntrySchema, e.ModelFormatsSchema, e.ModelSubstitutionSchema, e.ModelVariantGroupSchema, e.MotionAnalysisResultSchema, e.MotionEventSchema, e.MotionOnMotionChangedDataSchema, e.MotionRegionSchema, e.MotionSourceEnum, e.MotionSourcesSchema, e.MotionStatusSchema, e.MotionTriggerRuntimeStateSchema, e.MotionTriggerStatusSchema, e.MotionZoneOptionsSchema, e.MotionZonePatchSchema, e.MotionZoneRegionSchema, e.MotionZoneStatusSchema, e.MqttBrokerStatusSchema, e.MutationFilterSchema, e.NATIVE_LEASE_ACTIVITY_FIELD, e.NATIVE_LEASE_ACTIVITY_KEY, e.NATIVE_LEASE_ADMISSION_FIELD, e.NATIVE_LEASE_ADMISSION_KEY, e.NATIVE_LEASE_BUDGET_FIELD, e.NATIVE_LEASE_BUDGET_KEY, e.NATIVE_LEASE_HOLD_FIELD, e.NATIVE_LEASE_HOLD_KEY, e.NATIVE_LEASE_SECTION_ID, e.NATIVE_LEASE_TILE_BUDGET_FIELD, e.NATIVE_LEASE_TILE_BUDGET_KEY, e.NC_ALARM_SYSTEM_EVENT_KINDS, e.NC_AUDIO_DBFS_FLOOR, e.NC_AUDIO_DB_MAX, e.NC_AUDIO_DB_MIN, e.NC_AUDIO_DB_OFFERED, e.NC_AUDIO_DB_STEP, e.NC_AUDIO_DEFAULTS, e.NC_AUDIO_HIT_PERCENT_MAX, e.NC_AUDIO_HIT_PERCENT_MIN, e.NC_AUDIO_SAMPLING_MAX_SEC, e.NC_AUDIO_SAMPLING_MIN_SEC, e.NC_AUDIO_SEED, e.NC_AUTHORABLE_SYSTEM_EVENT_KINDS, e.NC_BASE_CONDITION_KEYS, e.NC_CONDITION_CATALOG, e.NC_CONFIRM_DEFAULT_MAX_IMAGE_PX, e.NC_CONFIRM_DEFAULT_TIMEOUT_MS, e.NC_CONFIRM_MAX_TIMEOUT_MS, e.NC_CONFIRM_MIN_TIMEOUT_MS, e.NC_DEFAULT_SNOOZE_MINUTES, e.NC_HISTORY_LIMIT_DEFAULT, e.NC_HISTORY_LIMIT_MAX, e.NC_MAX_PER_TRACK_IMMEDIATE, e.NC_OCCUPANCY_DEFAULTS, e.NC_RULE_EDITOR_SECTION_ORDER, e.NC_RULE_KIND_SPECS, e.NC_RULE_SECTIONS, e.NC_SNOOZE_MAX_MINUTES, e.NC_SYSTEM_DELIVERY, e.NC_SYSTEM_EVENT_FILTER_KEYS, e.NC_TAXONOMY, e.NativeCropBboxSchema, e.NativeCropRefSchema, e.NativeCropResultSchema, e.NativeDetectionSchema, e.NativeLeaseAdmissionSchema, e.NativeLeaseSettingsSchema, e.NativeObjectClassEnum, e.NativeObjectDetectionRuntimeStateSchema, e.NativeObjectDetectionStatusSchema, e.NcAlarmConfigSchema, e.NcAlarmModeCoverageSchema, e.NcAlarmSettingsPatchSchema, e.NcAlarmSettingsSchema, e.NcAlarmSkipReasonSchema, e.NcAlarmSkippedDeviceSchema, e.NcAudioConditionSchema, e.NcConditionDescriptorSchema, e.NcConditionsSchema, e.NcConfirmExpectSchema, e.NcConfirmSchema, e.NcCrossingSchema, e.NcDeliverySchema, e.NcDeviceStateConditionSchema, e.NcHistoryEntrySchema, e.NcHistoryFilterSchema, e.NcHistoryRecordKindSchema, e.NcHistoryStatusSchema, e.NcHistorySubjectSchema, e.NcMediaFrameSchema, e.NcMediaPolicySchema, e.NcOccupancyConditionSchema, e.NcPlateMatcherSchema, e.NcRuleActionSchema, e.NcRuleActionSequenceSchema, e.NcRuleActionsSchema, e.NcRuleInputSchema, e.NcRuleNotificationButtonSchema, e.NcRulePatchSchema, e.NcRuleSchema, e.NcRuleTargetSchema, e.NcSceneConditionSchema, e.NcScheduleSchema, e.NcScheduleWindowSchema, e.NcSnoozeInputSchema, e.NcSnoozeSchema, e.NcSnoozeScopeSchema, e.NcSnoozeSuppressedSchema, e.NcSystemEventConditionSchema, e.NcSystemEventKindSchema, e.NcTaxonomyEntrySchema, e.NcTaxonomySchema, e.NcTestResultSchema, e.NcThrottleGranularitySchema, e.NcThrottleSchema, e.NcZoneConditionSchema, e.NetworkAccessStatusSchema, e.NetworkAddressSchema, e.NetworkEndpointSchema, e.NotificationActionIconSchema, e.NotificationActionSchema, e.NotificationFormatSchema, e.NotificationSchema, e.NotifierStatusSchema, e.NumericSensorStatusSchema, e.OPERATOR_WRITTEN_STALE_MS, e.OPS_LOG_DEFAULT_LIMIT, e.OPS_LOG_RING_DEFAULT_MAX, e.OauthIntegrationDescriptorSchema, e.ObjectEventSchema, e.OpsLogDomainSchema, e.OpsLogEntrySchema, e.OpsLogOpSchema, e.OpsLogQueryInputSchema, e.OpsLogReasonSchema, e.OrchestratorMetricsSchema, e.OsdOverlayKindEnum, e.OsdOverlayPatchSchema, e.OsdOverlaySchema, e.OsdPositionEnum, e.OsdRenderOutcomeEnum, e.OsdRenderResultSchema, e.OsdSlotBindingSchema, e.OsdSlotViewSchema, e.OsdSourceOptionSchema, e.OsdSourceSchema, e.OsdSourceValueTypeEnum, e.OsdStatusSchema, m = e.PET_FEEDER_MANUAL_FEED_MAX, h = e.PET_FEEDER_MANUAL_FEED_MIN, e.PIPELINE_FLOW_CAPABILITY_NAMES, e.PIPELINE_OWNER_CAPABILITY_NAMES, e.PRIVACY_MASK_CAP_NAME, e.PROVIDER_KIND_CAP_NAMES, e.PYTHON_SCRIPT, e.PackageUpdateSchema, e.PackageVersionInfoSchema, e.PasskeyLoginMethodSchema, e.PasskeySummarySchema, e.PcmSampleFormatSchema, e.PerScopeBreakdownSchema, e.PetFeederStatusSchema, e.PickStreamPreferencesSchema, e.PickStreamRequirementsSchema, e.PickedCamStreamSchema, e.PipelineAssignmentSchema, e.PipelineDefaultStepSchema, e.PipelineEngineChoiceSchema, e.PipelineRunResultBridge, e.PipelineStepInputSchema, e.PipelineValidationIssueSchema, e.PipelineValidationResultSchema, e.PlaceholderReasonSchema, e.PolygonPointSchema, e.PoolMemoryWatchdog, e.PowerMeterStatusSchema, e.PresenceStatusSchema, e.PressureSensorStatusSchema, e.PrivacyMaskOptionsSchema, e.PrivacyMaskPatchSchema, e.PrivacyMaskRegionSchema, e.PrivacyMaskShapeSchema, e.PrivacyMaskStatusSchema, e.ProfileRtspEntrySchema, e.ProfileSlotSchema, e.ProfileSlotStatusSchema, e.ProviderStatusSchema, e.PtzAutotrackRuntimeStateSchema, e.PtzAutotrackSettingsSchema, e.PtzAutotrackStatusSchema, e.PtzAutotrackTargetOptionSchema, e.PtzMoveCommandSchema, e.PtzOptionsSchema, e.PtzPositionSchema, e.PtzPresetSchema, e.PtzStatusSchema, e.QueryFilterSchema, e.RATE_CONTROL_RELAXED, e.RATE_CONTROL_TIGHT, e.REACHABILITY_FAILURES_TO_OFFLINE, e.REACHABILITY_POLL_INTERVAL_MS, e.REACHABILITY_PROBE_TIMEOUT_MS, e.RECOGNITION_TYPES, e.RECORDING_EXPORT_MAX_READ_BYTES, e.RESERVED_BINDING_NAMES, e.RESTORED_CAP_NAMES, e.RUNTIME_DEFAULTS, e.RUNTIME_STATE_POLICY, e.RUNTIME_STATE_REFRESH_MISS_COOLDOWN_MS, e.RUNTIME_TO_FORMAT, e.RawStateResultSchema, e.ReadGopBytesResultSchema, e.ReadSegmentBytesResultSchema, e.ReadinessRegistry, e.ReadinessTimeoutError, e.RecentTracksPageSchema, e.RecentTracksQueryInput, e.RecordingAvailabilitySchema, e.RecordingBandModeSchema, e.RecordingBandSchema, e.RecordingBandTriggersSchema, e.RecordingConfigSchema, e.RecordingDaysSchema, e.RecordingDeviceUsageSchema, e.RecordingLocationUsageSchema, e.RecordingManifestSchema, e.RecordingRangeSchema, e.RecordingRebalanceInputSchema, e.RecordingRebalanceMoveSchema, e.RecordingRebalancePlanSchema, e.RecordingRebalanceSkipReasonSchema, e.RecordingRebalanceSkipSchema, e.RecordingRetentionSchema, e.RecordingStatusSchema, e.RecordingStorageModeSchema, e.RecordingStorageUsageSchema, e.RecordingTriggersSchema, e.RecordingWeekdaySchema, e.RedirectLoginMethodSchema, e.RelocateFootageClassSchema, e.RelocateFootageInputSchema, e.RelocateJobSchema, e.RelocateJobStateSchema, e.RelocateMediaInputSchema, e.RenderedAsSchema, e.ReportMotionInputSchema, e.RetrainAnnotationDraftSchema, e.RetrainAnnotationKindSchema, e.RetrainAnnotationSchema, e.RetrainAnnotationSourceSchema, e.RetrainAssistResultSchema, e.RetrainAssistSubjectSchema, e.RetrainCopyRefusalSchema, e.RetrainFrameCandidateSchema, e.RetrainFrameListSchema, e.RetrainFrameSchema, e.RetrainFrameSelectionSchema, e.RetrainMacroClassSchema, e.RetrainStatusSchema, e.RetrainTrackSchema, e.RetrainTransitionResultSchema, e.RingBuffer, e.RtpSourceSchema, e.RtspRestreamEntrySchema, e.RunnerCameraConfigSchema, e.RunnerCameraDeviceUIFields, e.RunnerFrameSourceSchema, e.RunnerInferenceDeviceSchema, e.RunnerLocalLoadSchema, e.RunnerLocalMetricsSchema, e.SCENE_CONDITIONS, e.SCENE_CONFIRM_DEFAULT_MAX_IMAGE_PX, e.SCENE_CONFIRM_DEFAULT_TIMEOUT_MS, e.SCENE_DEFAULT_ANCHOR_THRESHOLD, e.SCENE_DEFAULT_CHECK_INTERVAL_SEC, e.SCENE_DEFAULT_OBSERVATION_SPACING_SEC, e.SCENE_DEFAULT_QUIET_SECONDS, e.SCENE_DEFAULT_UNCOVERED_POLICY, e.SCENE_DIVERGED, e.SCENE_RESET_RECAPTURES, e.SCOPE_PRESETS, e.SCRUB_THUMBNAIL_PRESETS, e.SCRUB_THUMBNAIL_PRESET_LABELS, e.SCRUB_THUMBNAIL_PRESET_ORDER, e.SENSOR_FEATURES, e.SENSOR_MAP, e.SOURCE_INFO_METADATA_KEY, e.STREAM_PROFILE_META, e.STREAM_QUALITY_LABELS, e.SUB_DETECTION_TYPES, e.SYSTEM_CAP_NAMES, e.SYSTEM_SCOPE_DEVICE_METHODS, e.SceneCheckSchema, e.SceneConditionSchema, e.SceneConfirmSchema, e.SceneMonitorSchema, e.SceneMonitorStateSchema, e.SceneMonitorStatusSchema, e.SceneReferenceSchema, e.SceneUnavailableSchema, e.SceneUncoveredPolicySchema, e.SceneVerdictSchema, e.ScopedTokenSchema, e.ScopedTokenSummarySchema, e.ScoredObjectEventSchema, e.ScriptRunnerStatusSchema, e.ScrubThumbnailPresetSchema, e.SearchResultSchema, e.SendEmailInputSchema, e.SendEmailResultSchema, e.SendResultSchema, e.SensorEventSchema, e.ServerBootModeSchema, e.ServerPackageStatusSchema, e.ServerRollbackInfoSchema, e.ServerUpdateActionResultSchema, e.ServerUpdateCheckResultSchema, e.ServerUpdateStateSchema, e.SetSiteLocationInputSchema, e.SettingsPatchSchema, e.SettingsRecordSchema, e.SettingsSchemaWithValuesSchema, e.SettingsUpdateResultSchema, e.ShmRingStatsSchema, e.SiteLocationSchema, e.SiteLocationSourceSchema, e.SiteLocationStatusSchema, e.SmokeStatusSchema, e.SmtpStatusSchema, e.SnapshotImageSchema, g = e.SourceInfoSchema, e.SpatialDetectionSchema, e.SsoBridgeClaimsSchema, e.StartEmbeddedInputSchema, e.StationaryObjectSchema, e.StorageAbortUploadInputSchema, e.StorageBeginDownloadInputSchema, e.StorageBeginDownloadResultSchema, e.StorageBeginUploadInputSchema, e.StorageBeginUploadResultSchema, e.StorageEndDownloadInputSchema, e.StorageFinalizeUploadInputSchema, e.StorageLocationDeclarationSchema, e.StorageLocationRefSchema, e.StorageLocationSchema, e.StorageLocationTypeSchema, e.StorageMigrationClassSchema, e.StorageMigrationDestinationsSchema, e.StorageMigrationFootageMoveInputSchema, e.StorageMigrationInputSchema, e.StorageMigrationJobSchema, e.StorageMigrationLeaseInputSchema, e.StorageMigrationMediaMoveInputSchema, e.StorageMigrationMoveSchema, e.StorageMigrationParticipantSchema, e.StorageMigrationPhaseSchema, e.StorageMigrationPlanSchema, e.StorageProviderInfoSchema, e.StorageReadChunkInputSchema, e.StorageTestLocationResultSchema, e.StorageWriteChunkInputSchema, e.StreamCodecSchema, e.StreamFormatSchema, e.StreamNetworkStatsSchema, e.StreamParamsOptionsSchema, e.StreamParamsStatusSchema, e.StreamProfileConfigSchema, e.StreamProfileOptionsSchema, e.StreamProfilePatchSchema, e.StreamProfileSchema, e.StreamSourceEntrySchema, e.StreamSourceSchema, e.SubscribeAudioChunksInputSchema, e.SubscribeAudioChunksResultSchema, e.SubscribeFramesInputSchema, e.SubscribeFramesResultSchema, e.SwitchStatusSchema, e.SystemMetricsSchema, e.SystemMirror, e.TAXONOMY_COLORS, e.TIMELAPSE_DENSE_FLOOR_SEC, e.TIMEZONES, e.TRANSCODE_DOWN_MAX_BITRATE_KBPS, e.TRANSCODE_DOWN_MAX_HEIGHT, e.TamperStatusSchema, e.TankStatusSchema, e.TargetKindCapsSchema, e.TargetKindLevelSchema, e.TargetKindSchema, e.TargetSchema, e.TemperatureSensorStatusSchema, e.TerminalInstanceInfoSchema, e.TerminalLegacyCameraSchema, e.TerminalOutputBatchSchema, e.TerminalOutputEventSchema, e.TerminalProfileInfoSchema, e.TerminalSessionInfoSchema, e.TestConnectionResultSchema, e.TestConnectionStatusEnum, e.TestResultSchema, e.TimelapseRuleInputSchema, e.TimelapseRulePatchSchema, e.TimelapseRuleSchema, e.TimelapseTemplateSchema, e.ToastSchema, e.TokenScopeSchema, e.TopologyNodeSchema, e.TopologyProcessSchema, e.TopologyServiceSchema, e.TrackCascadeCountsSchema, e.TrackEnvelopeSchema, e.TrackFlagsPatchSchema, e.TrackFlagsSchema, e.TrackProjectionSchema, e.TrackSchema, e.TrackSourceSchema, e.TrackStateSchema, e.TrackZoneFilterSchema, e.TrackedDetectionSchema, e.TrainingExportDeviceTotalsSchema, e.TrainingExportSummarySchema, e.TurnServerSchema, e.UNIT_TABLE, e.UnifiedBrokerInfoSchema, e.UnitConversionError, e.UpdateIntegrationInputSchema, e.UpdateStatusSchema, e.UpdateUserInputSchema, e.UserRecordSchema, e.UserSummarySchema, e.VISIT_MERGE_GAP_MS, e.VacuumControlStatusSchema, e.VacuumStateSchema, e.ValveStateSchema, e.ValveStatusSchema, e.VectorDeclareIndexInputSchema, e.VectorDeleteByFilterInputSchema, e.VectorDeleteInputSchema, e.VectorDeleteResultSchema, e.VectorFilterSchema, e.VectorGetInputSchema, e.VectorGetResultSchema, e.VectorItemSchema, e.VectorMatchSchema, e.VectorMetadataSchema, e.VectorMetricSchema, e.VectorQueryInputSchema, e.VectorQueryResultSchema, e.VectorStatsInputSchema, e.VectorStatsResultSchema, e.VectorUpsertInputSchema, e.VectorUpsertResultSchema, e.VibrationStatusSchema, e.VideoEncodeSchema, e.WEBRTC_EGRESS_PROFILE, e.WELL_KNOWN_TABS, e.WELL_KNOWN_TAB_MAP, e.WaterHeaterStatusSchema, e.WeatherStatusSchema, e.WebrtcStreamChoiceSchema, e.WebrtcStreamTargetSchema, e.WhiteBalanceModeSchema, e.WidgetHostEnum, e.WidgetLoginMethodSchema, e.WidgetMetadataSchema, e.WidgetRemoteSchema, e.WidgetSizeEnum, e.YAMNET_TO_MACRO, e.ZoneCrossingDirectionSchema, e.ZoneCrossingSchema, e.ZoneKindEnum, e.ZoneRuleModeEnum, e.ZoneRuleSchema, e.ZoneRuleStageEnum, e.ZoneRulesArraySchema, e.ZoneSchema, e.ZoneScopeBreakdownSchema, e.accessoriesCapability, e.accessoryStableId, e.addonPagesCapability, e.addonPagesSourceCapability, e.addonRoutesCapability, e.addonSettingsCapability, e.addonWidgetsCapability, e.addonWidgetsSourceCapability, e.addonsCapability, e.adminUiCapability, e.airQualitySensorCapability, e.alarmPanelCapability, e.alertsCapability, e.ambientLightSensorCapability, e.asBoolean, e.asJsonArray, e.asJsonObject, e.asNumber, e.asString, e.assertTimelapseCadences, e.audioAnalysisCapability, e.audioAnalyzerCapability, e.audioCodecCapability, e.audioIsFailClosed, e.audioKindId, e.audioLabelChoices, e.audioMetricsCapability, e.audioModeOf, e.audioOrDefaults, e.audioPlanFromEncodeProfile, e.authProviderCapability, e.autoAssignProfiles, e.automationControlCapability, e.backupCapability, e.bareAddonId, e.batteryCapability, e.bestLocationMatch, e.binaryCapability, e.bindAddonActions, e.brightnessCapability, e.brokerCapability, e.buildAddonRouteProvider, e.buildAudioArgs, e.buildEventKindDescriptor, e.buildFfmpegArgs, e.buildInputArgs, e.buildModelVariantGroups, e.buildNcTaxonomy, e.buildRoleScopes, e.buildStreamParamsConfigSchema, e.buildVideoArgs, e.buttonCapability, e.cameraCredentialsCapability, e.cameraPipelineConfigCapability, e.cameraStreamsCapability, _ = e.canConvertUnit, e.canonicalEgressPlan, e.carbonMonoxideCapability, e.cellsToRects, e.classifyBearerPrincipal, e.classifyStream, e.classifyStreams, e.climateControlCapability, e.clusterModelSettingKey, e.collectHydratedFieldEntries, e.collectHydratedFieldValues, e.colorCapability, e.colorForKind, e.commitWatchdogRestart, e.compileExpression, e.compileExpressionSafe, e.composeSwitchedOff, e.conditionDepth, e.conditionExclusionReason, e.conditionVisibleForKind, e.connectionTestCapability, e.connectivityCapability, e.consumablesCapability, e.contactCapability, e.controlCapability, e.convertUnit, e.coreBlockAddonId, e.coreBlockIdFromAddonId, e.coreBlocksCapability, e.cosineSimilarity, e.countConditionLeaves, e.coverCapability, v = e.createDeviceProxy, e.createDurableState, e.createEvent, e.createExpressionScope, e.createHwAccelCache, e.createLazyTrpcSource, e.createMirrorSource, e.createRuntimeStateBridge, e.createSliceHandle, e.createSystemProxy, e.customAction, e.customModelRegistryCapability, e.dataStoreProviderCapability, e.dayNightCapability, e.declarationOwnerNodeId, e.decodeVectorBase64, e.decoderCapability, e.defaultDeliveryForSection, e.defaultDeviceFor, e.defineCustomActions, e.deriveBatteryPresence, e.deriveCameraSwitches, e.deriveDetailCropRect, e.deriveRecordingMode, e.describeModelVariant, e.detectAccessRole, e.detectionPipelineCapability, e.deviceAdoptionCapability, e.deviceBackendToFormat, e.deviceCustomAction, e.deviceDiscoveryCapability, e.deviceExportCapability, e.deviceManagerCapability, e.deviceMatchesProfile, e.deviceOpsCapability, e.deviceProviderCapability, e.deviceSelectorMatches, e.deviceStateCapability, e.deviceStatusCapability, e.doorbellCapability, e.droppedConditionsForKind, e.egressTranscodeSharingKey, e.egressTransportFromRequest, e.embeddingEncoderCapability, e.emitDownForOwnedCaps, e.emitReadiness, e.encodeProfileFromStreamShape, e.encodeVectorBase64, e.enumSensorCapability, e.enumerateInferenceDevices, e.enumerateItemArrayFields, e.enumerateSchemaFields, e.errMsg, e.evaluateAst, e.evaluateExpressionSource, e.evaluatePoolMemory, e.evaluateZoneRules, e.event, e.eventEmitterCapability, e.eventsCapability, e.expandCapMethods, e.extractNestedAddonId, e.extractSourceInfoFromMetadata, e.faceGalleryCapability, e.fanControlCapability, e.featureProbeCapability, e.filesystemBrowseCapability, e.findTimezone, e.floodCapability, e.formatForBackend, e.formatForRuntime, e.gasCapability, e.generateAutomationBlock, e.getAudioMacroClassIds, e.getByPath, e.getCapsByProviderKind, e.getTaxonomyEntry, e.hasMotionTrigger, e.hfModelUrl, e.htmlToText, e.humidifierCapability, e.humiditySensorCapability, e.hydrateSchema, e.imageCapability, e.imageSettingsCapability, e.initialPoolMemoryState, e.integrationsCapability, e.intercomCapability, e.invocationFromEncodeProfile, e.isAgentOnlyPlacement, e.isArrayOutputSchema, e.isAudioLabelSelected, e.isAudioRule, e.isBaseConditionKey, e.isBatteryPresenceFault, e.isClusterScopedStep, e.isCollectionArrayMethod, e.isDeployableToAgent, e.isDetectionMacroClass, e.isDeviceConfigCap, e.isDeviceScopedCap, e.isEvent, e.isIsolatedBuiltin, e.isNode, e.isObjectInput, e.isOccupancyRule, e.isRestoredCap, e.isSameAddonId, e.isScheduleActive, e.isSoftwareDecode, e.isSystemDelivery, e.isVoidInput, e.jobKindSchema, e.kebabToCamel, e.knownValues, e.lawnMowerControlCapability, e.lifecycleJobSchema, e.lifecycleJobScopeSchema, e.lifecycleJobStateSchema, e.lifecycleTaskSchema, e.llmCapability, e.llmRuntimeCapability, e.localNetworkCapability, e.locationSimilarity, e.lockControlCapability, e.logBannerArgs, e.logDestinationCapability, e.logLevelAtMost, e.loginMethodCapability, e.looseSchema, e.makeProfileBrokerId, e.makeSourceBrokerId, e.mapAudioLabelToMacro, e.markdownToHtmlLite, e.markdownToText, e.maskUrlCredentials, e.mediaPlayerCapability, e.mergeSourceInfo, e.meshNetworkCapability, e.method, e.methodAccessForHttpMethod, e.metricsProviderCapability, e.modelConvertCapability, e.modelDistributorCapability, e.modelFormatForRuntime, e.motionCapability, e.motionDetectionCapability, e.motionTriggerCapability, e.motionZonesCapability, e.mqttBrokerCapability, e.nativeObjectDetectionCapability, e.networkAccessCapability, e.networkQualityCapability, e.nodePin, e.nodesCapability, e.normalizeAddonInitResult, e.normalizeAudioLabel, e.normalizeTokenScopes, e.normalizeUnit, e.notificationOutputCapability, e.notificationRulesCapability, e.notifierCapability, e.numericSensorCapability, e.oauthIntegrationCapability, e.objectInputDeclaresAddonId, e.osdCapability, e.osdManagerCapability, e.parseCameraStreamConfig, e.parseExpression, e.parseJsonArray, e.parseJsonObject, e.parseJsonUnknown, e.parseProcStatus, e.parseProfileBrokerId, e.parseRuleSection, e.parseStreamParamsFormPatch, e.patchAudio, e.petFeederCapability, e.pickAccessoryControl, e.pickClusterStepModels, e.pickDetailCropConvention, e.pickNativeLeaseOverride, e.pickPreferredRtspEntry, e.pickRestartCandidate, e.pickVideoEncoder, e.pickerForCondition, e.pipelineAnalyticsCapability, e.pipelineExecutorCapability, e.pipelineOrchestratorCapability, e.pipelineRunnerCapability, e.plateGalleryCapability, e.platformProbeCapability, e.poolMemoryThreshold, e.powerMeterCapability, e.prepareNotification, e.presenceCapability, e.pressureSensorCapability, e.principalMayReachAddon, e.privacyMaskCapability, e.procedureAuthKey, e.ptzAutotrackCapability, e.ptzCapability, e.pythonScriptForBackend, e.readClusterStepModels, e.readDetailCropConvention, e.readDeviceStateFrom, e.readNativeLeaseOverride, e.readNodePin, e.readTimelapseGeneratedAt, e.readinessKey, e.rebootCapability, e.recordingCapability, e.recordingExportCapability, e.rectsToCells, e.requiresPython, e.resetPoolBaseline, e.resolveAddonExecution, e.resolveAddonGroup, e.resolveAddonPlacement, e.resolveAddonRuntime, e.resolveCapMount, e.resolveClusterStepModelId, e.resolveDetectionRuntime, e.resolveDeviceControlKind, e.resolveDeviceProfile, e.resolveEgressDecodeHwAccel, e.resolveFormat, e.resolveHydratedFieldValue, e.resolveModelFormat, e.resolveMutate, e.resolvePoolMemoryPolicy, e.resolveRecordingProfiles, e.resolveRunnerId, e.resolveScrubThumbnailGeometry, e.resolveVariantModelId, e.resolveViewableDeviceIds, e.roleSpec, e.ruleEditorSectionsForKind, e.ruleKindOf, e.ruleKindSpec, e.ruleMatchesSection, e.ruleSection, e.ruleSectionOf, e.ruleSeedForSection, e.runInferenceStep, e.runtimeDevices, e.runtimeStatePolicyFor, e.sceneMonitorCapability, e.scopeInherits, e.scopeKey, e.scopesAllowAddon, e.scopesAllowDeviceCap, e.scoreRuntimes, e.scriptRunnerCapability, e.selectAssignedProfileSlots, e.serverManagementCapability, e.setByPath, e.settingsStoreCapability, e.sleep, e.sleepCancellable, e.smokeCapability, e.smtpProviderCapability, e.snapshotCapability, e.ssoBridgeCapability, e.startReachabilityPoll, y = e.stateVocabularyFor, e.storageCapability, e.storageEvictableCapability, e.storageMigrationCapability, e.storageProviderCapability, e.streamBrokerCapability, e.streamCatalogCapability, e.streamParamsCapability, e.streamPixels, e.streamQualityLabel, e.subKindsOf, e.summarisePrivacyAudio, e.summarizeEffectiveScope, e.supportedRuntimes, e.switchCapability, e.switchedOffIds, e.synthesizeSourceInfo, e.systemCapability, e.systemEventFilterApplies, e.systemEventFilterAppliesToAnyKind, e.tamperCapability, e.taskLogEntrySchema, e.taskPhaseSchema, e.taskTargetSchema, e.temperatureSensorCapability, e.terminalSessionCapability, e.textToHtml, e.toDeviceSummary, e.toExpressionValue, e.toNodeId, e.toStreamSourceEntry, e.toastCapability, e.toggleAudioLabel, e.tokenize, e.transcodeBody, b = e.tryConvertUnit, e.turnProviderCapability, e.unitDimension, e.unitsForDimension, e.updateCapability, e.userManagementCapability, e.userPasskeysCapability, e.vacuumControlCapability, e.validateExpressionSource, e.validateRecipeBounds, e.valveCapability, e.vectorDimFromBase64, e.vectorStoreCapability, e.vibrationCapability, e.videoclipsCapability, e.viewerUiCapability, e.waterHeaterCapability, e.weatherCapability, e.webrtcClientHintsSchema, e.webrtcSessionCapability, e.wiringAddonHealthSchema, e.wiringHealthSnapshotSchema, e.wiringNodeHealthSchema, e.wiringProbeKindSchema, e.wiringProbeResultSchema, e.zodEntriesToConfigUI, e.zoneAnalyticsCapability, e.zoneRulesCapability, e.zonesCapability, e.default;
|
|
20
|
-
}, S = i.share["default:@camstack/types"];
|
|
21
|
-
S === void 0 ? n.then(() => {
|
|
22
|
-
if (S = i.share["default:@camstack/types"], S === void 0) throw Error("[Module Federation] Shared module @camstack/types was imported before federation bootstrap finished.");
|
|
23
|
-
x(S);
|
|
24
|
-
}) : x(S);
|
|
25
|
-
//#endregion
|
|
26
|
-
export { c as a, d as c, p as d, o as f, _ as g, g as h, s as i, f as l, h as m, y as n, l as o, m as p, b as r, u as s, v as t, a as u };
|