@camstack/types 0.1.41 → 0.1.42
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/filesystem-browse.cap.d.ts +39 -0
- package/dist/capabilities/filesystem-browse.cap.d.ts.map +1 -0
- package/dist/capabilities/index.d.ts +5 -1
- package/dist/capabilities/index.d.ts.map +1 -1
- package/dist/capabilities/recording.cap.d.ts +129 -0
- package/dist/capabilities/recording.cap.d.ts.map +1 -1
- package/dist/capabilities/storage-provider.cap.d.ts +15 -0
- package/dist/capabilities/storage-provider.cap.d.ts.map +1 -1
- package/dist/capabilities/storage.cap.d.ts +6 -0
- package/dist/capabilities/storage.cap.d.ts.map +1 -1
- package/dist/capabilities/stream-broker.cap.d.ts +14 -0
- package/dist/capabilities/stream-broker.cap.d.ts.map +1 -1
- package/dist/capabilities/videoclips.cap.d.ts +77 -0
- package/dist/capabilities/videoclips.cap.d.ts.map +1 -0
- package/dist/generated/addon-api.d.ts +428 -2
- package/dist/generated/addon-api.d.ts.map +1 -1
- package/dist/generated/capability-router-map.d.ts +8 -2
- package/dist/generated/capability-router-map.d.ts.map +1 -1
- package/dist/generated/device-proxy.d.ts +2 -0
- package/dist/generated/device-proxy.d.ts.map +1 -1
- package/dist/generated/method-access-map.d.ts +1 -1
- package/dist/generated/method-access-map.d.ts.map +1 -1
- package/dist/generated/system-proxy.d.ts +1 -1
- package/dist/generated/system-proxy.d.ts.map +1 -1
- package/dist/{index-Bpj3ScIH.mjs → index-BxWo3b49.mjs} +624 -465
- package/dist/index-BxWo3b49.mjs.map +1 -0
- package/dist/{index-BSA_TBea.js → index-CGMPfVaT.js} +161 -2
- package/dist/index-CGMPfVaT.js.map +1 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +62 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +485 -424
- package/dist/index.mjs.map +1 -1
- package/dist/interfaces/recording-config-migrate.d.ts +13 -0
- package/dist/interfaces/recording-config-migrate.d.ts.map +1 -0
- package/dist/interfaces/recording-config.d.ts +119 -1
- package/dist/interfaces/recording-config.d.ts.map +1 -1
- package/dist/interfaces/storage-location.d.ts +1 -0
- package/dist/interfaces/storage-location.d.ts.map +1 -1
- package/dist/node.js +1 -1
- package/dist/node.mjs +1 -1
- package/package.json +1 -1
- package/dist/index-BSA_TBea.js.map +0 -1
- package/dist/index-Bpj3ScIH.mjs.map +0 -1
|
@@ -394,6 +394,22 @@ const RecordingScheduleSchema = z.discriminatedUnion("kind", [
|
|
|
394
394
|
})
|
|
395
395
|
]);
|
|
396
396
|
const RecordingModeSchema = z.enum(["continuous", "onMotion", "onAudioThreshold"]);
|
|
397
|
+
const RecordingStorageModeSchema = z.enum(["off", "events", "continuous"]);
|
|
398
|
+
const RecordingTriggersSchema = z.object({
|
|
399
|
+
motion: z.boolean().optional(),
|
|
400
|
+
audioThresholdDbfs: z.number().optional()
|
|
401
|
+
});
|
|
402
|
+
const RecordingBandModeSchema = z.enum(["continuous", "events"]);
|
|
403
|
+
const RecordingBandTriggersSchema = RecordingTriggersSchema;
|
|
404
|
+
const RecordingBandSchema = z.object({
|
|
405
|
+
days: z.array(RecordingWeekdaySchema),
|
|
406
|
+
start: z.string().regex(HHMM),
|
|
407
|
+
end: z.string().regex(HHMM),
|
|
408
|
+
mode: RecordingBandModeSchema,
|
|
409
|
+
triggers: RecordingBandTriggersSchema.optional(),
|
|
410
|
+
preBufferSec: z.number().min(0).optional(),
|
|
411
|
+
postBufferSec: z.number().min(0).optional()
|
|
412
|
+
});
|
|
397
413
|
const RecordingRuleSchema = z.object({
|
|
398
414
|
schedule: RecordingScheduleSchema,
|
|
399
415
|
mode: RecordingModeSchema,
|
|
@@ -412,9 +428,33 @@ const RecordingRetentionSchema = z.object({
|
|
|
412
428
|
});
|
|
413
429
|
const RecordingConfigSchema = z.object({
|
|
414
430
|
enabled: z.boolean(),
|
|
431
|
+
/** Authoritative storage mode. Absent on legacy targets → derived once via
|
|
432
|
+
* `migrateRulesToMode`, then persisted. */
|
|
433
|
+
mode: RecordingStorageModeSchema.optional(),
|
|
415
434
|
profiles: z.array(CamProfileSchema).optional(),
|
|
416
435
|
segmentSeconds: z.number().int().positive().optional(),
|
|
436
|
+
/** Shared recording time-bands for `events` & `continuous` — record only when
|
|
437
|
+
* the wall-clock falls inside one of these windows. Omit or empty = always.
|
|
438
|
+
* `continuous` compiles to one rule per band; `events` to band × trigger. */
|
|
439
|
+
schedules: z.array(RecordingScheduleSchema).optional(),
|
|
440
|
+
/** Legacy single-band predecessor of `schedules`. Read-compat only — it is
|
|
441
|
+
* normalized into `schedules` on read and never written going forward. (Not
|
|
442
|
+
* tagged `@deprecated`: the normalization paths must read it cast-free.) */
|
|
443
|
+
schedule: RecordingScheduleSchema.optional(),
|
|
444
|
+
/** `events`-mode only — which detectors trigger a recording. */
|
|
445
|
+
triggers: RecordingTriggersSchema.optional(),
|
|
446
|
+
/** `events`-mode only — seconds retained before / after a trigger. */
|
|
447
|
+
preBufferSec: z.number().min(0).optional(),
|
|
448
|
+
postBufferSec: z.number().min(0).optional(),
|
|
449
|
+
/** DEPRECATED authoring input; retained for migration/transition. */
|
|
417
450
|
rules: z.array(RecordingRuleSchema).optional(),
|
|
451
|
+
/**
|
|
452
|
+
* AUTHORITATIVE mode-per-band recording model (recorder). When present it
|
|
453
|
+
* is the single source of truth; the legacy `mode`/`schedules`/`schedule`/
|
|
454
|
+
* `triggers`/`rules` fields above are kept for READ-COMPAT only and are
|
|
455
|
+
* derived into bands once via `migrateConfigToBands`.
|
|
456
|
+
*/
|
|
457
|
+
bands: z.array(RecordingBandSchema).optional(),
|
|
418
458
|
retention: RecordingRetentionSchema.optional()
|
|
419
459
|
});
|
|
420
460
|
const StorageLocationTypeSchema = z.string().regex(/^[a-z][a-zA-Z0-9-]*$/);
|
|
@@ -427,6 +467,14 @@ const StorageLocationSchema = z.object({
|
|
|
427
467
|
displayName: z.string().min(1),
|
|
428
468
|
providerId: z.string().min(1),
|
|
429
469
|
config: z.record(z.string(), z.unknown()),
|
|
470
|
+
/**
|
|
471
|
+
* Cluster node this location physically lives on. REQUIRED for node-local
|
|
472
|
+
* providers (filesystem — the path exists on one node's disk), null/absent
|
|
473
|
+
* for node-agnostic providers (S3/SFTP/WebDAV, reachable from any node).
|
|
474
|
+
* `'hub'` is the hub node. Validated against the provider's `nodeLocal`
|
|
475
|
+
* flag at upsert time, not here (the schema is provider-agnostic).
|
|
476
|
+
*/
|
|
477
|
+
nodeId: z.string().optional(),
|
|
430
478
|
isDefault: z.boolean().default(false),
|
|
431
479
|
isSystem: z.boolean().default(false),
|
|
432
480
|
createdAt: z.number(),
|
|
@@ -1960,6 +2008,19 @@ const streamBrokerCapability = {
|
|
|
1960
2008
|
z.object({ brokerId: z.string() }),
|
|
1961
2009
|
BrokerStatsSchema
|
|
1962
2010
|
),
|
|
2011
|
+
/**
|
|
2012
|
+
* Force a one-shot probe of a single source stream: transiently dial the
|
|
2013
|
+
* broker (a `warmup` consumer), capture a fresh `BrokerStats` snapshot for
|
|
2014
|
+
* the per-stream "Probed" settings field, then release. Wakes a suspended
|
|
2015
|
+
* (incl. battery) stream for a few seconds. `summary` is the rendered
|
|
2016
|
+
* probed-values string; `probed` is false if the stream never reached
|
|
2017
|
+
* `streaming` within the timeout.
|
|
2018
|
+
*/
|
|
2019
|
+
probeStream: method(
|
|
2020
|
+
z.object({ brokerId: z.string() }),
|
|
2021
|
+
z.object({ probed: z.boolean(), summary: z.string() }),
|
|
2022
|
+
{ kind: "mutation", auth: "admin" }
|
|
2023
|
+
),
|
|
1963
2024
|
listClients: method(
|
|
1964
2025
|
z.object({ brokerId: z.string() }),
|
|
1965
2026
|
BrokerClientsSchema
|
|
@@ -6056,6 +6117,7 @@ const ProviderListEntrySchema = z.discriminatedUnion("shouldSaveDiskSpace", [
|
|
|
6056
6117
|
providerId: z.string().min(1),
|
|
6057
6118
|
displayName: z.string().min(1),
|
|
6058
6119
|
configSchema: z.unknown(),
|
|
6120
|
+
nodeLocal: z.boolean(),
|
|
6059
6121
|
shouldSaveDiskSpace: z.literal(true),
|
|
6060
6122
|
minFreePercent: z.number().min(0).max(100)
|
|
6061
6123
|
}),
|
|
@@ -6063,6 +6125,7 @@ const ProviderListEntrySchema = z.discriminatedUnion("shouldSaveDiskSpace", [
|
|
|
6063
6125
|
providerId: z.string().min(1),
|
|
6064
6126
|
displayName: z.string().min(1),
|
|
6065
6127
|
configSchema: z.unknown(),
|
|
6128
|
+
nodeLocal: z.boolean(),
|
|
6066
6129
|
shouldSaveDiskSpace: z.literal(false),
|
|
6067
6130
|
minFreePercent: z.literal(null)
|
|
6068
6131
|
})
|
|
@@ -6199,6 +6262,10 @@ const ProviderInfoSchema = z.discriminatedUnion("shouldSaveDiskSpace", [
|
|
|
6199
6262
|
providerId: z.string().min(1),
|
|
6200
6263
|
displayName: z.string().min(1),
|
|
6201
6264
|
configSchema: z.unknown(),
|
|
6265
|
+
/** True = provider serves a node-local volume (filesystem): its locations
|
|
6266
|
+
* bind to a single node and need a node + path. False = reachable from any
|
|
6267
|
+
* node (remote/object store). */
|
|
6268
|
+
nodeLocal: z.boolean(),
|
|
6202
6269
|
// Provider manages a finite volume → declares a default free-space threshold.
|
|
6203
6270
|
shouldSaveDiskSpace: z.literal(true),
|
|
6204
6271
|
minFreePercent: z.number().min(0).max(100)
|
|
@@ -6207,6 +6274,10 @@ const ProviderInfoSchema = z.discriminatedUnion("shouldSaveDiskSpace", [
|
|
|
6207
6274
|
providerId: z.string().min(1),
|
|
6208
6275
|
displayName: z.string().min(1),
|
|
6209
6276
|
configSchema: z.unknown(),
|
|
6277
|
+
/** True = provider serves a node-local volume (filesystem): its locations
|
|
6278
|
+
* bind to a single node and need a node + path. False = reachable from any
|
|
6279
|
+
* node (remote/object store). */
|
|
6280
|
+
nodeLocal: z.boolean(),
|
|
6210
6281
|
// No local free-space concept (remote/object store) → no threshold.
|
|
6211
6282
|
shouldSaveDiskSpace: z.literal(false),
|
|
6212
6283
|
minFreePercent: z.literal(null)
|
|
@@ -6334,6 +6405,43 @@ const storageEvictableCapability = {
|
|
|
6334
6405
|
)
|
|
6335
6406
|
}
|
|
6336
6407
|
};
|
|
6408
|
+
const DirEntrySchema = z.object({
|
|
6409
|
+
name: z.string(),
|
|
6410
|
+
path: z.string()
|
|
6411
|
+
});
|
|
6412
|
+
const BrowseResultSchema = z.object({
|
|
6413
|
+
path: z.string(),
|
|
6414
|
+
entries: z.array(DirEntrySchema).readonly(),
|
|
6415
|
+
freeBytes: z.number(),
|
|
6416
|
+
totalBytes: z.number()
|
|
6417
|
+
});
|
|
6418
|
+
const filesystemBrowseCapability = {
|
|
6419
|
+
name: "filesystem-browse",
|
|
6420
|
+
scope: "system",
|
|
6421
|
+
// `singleton` + node-routing: every node hosts its own provider; the hub
|
|
6422
|
+
// call carries `{nodeId}` and the cap-router routes to that node via
|
|
6423
|
+
// `createRemoteProxy` (same pattern as `platform-probe`). The codegen's
|
|
6424
|
+
// ALL_CAPABILITY_DEFINITIONS map only matches singleton/collection, and
|
|
6425
|
+
// `per-node` is not an actually-wired runtime mode — singleton is correct.
|
|
6426
|
+
mode: "singleton",
|
|
6427
|
+
internal: true,
|
|
6428
|
+
methods: {
|
|
6429
|
+
/** The allowed roots browsing is sandboxed to on this node. */
|
|
6430
|
+
listAllowedRoots: method(z.void(), z.array(z.string()).readonly(), { auth: "admin" }),
|
|
6431
|
+
/** Immediate subdirectories of `path` (must be within an allowed root) + free/total bytes. */
|
|
6432
|
+
browse: method(
|
|
6433
|
+
z.object({ path: z.string() }),
|
|
6434
|
+
BrowseResultSchema,
|
|
6435
|
+
{ auth: "admin" }
|
|
6436
|
+
),
|
|
6437
|
+
/** Create a subdirectory (within an allowed root). Returns its absolute path. */
|
|
6438
|
+
createDir: method(
|
|
6439
|
+
z.object({ path: z.string() }),
|
|
6440
|
+
z.object({ path: z.string() }),
|
|
6441
|
+
{ kind: "mutation", auth: "admin" }
|
|
6442
|
+
)
|
|
6443
|
+
}
|
|
6444
|
+
};
|
|
6337
6445
|
const BackupSubDestinationInfoSchema = z.object({
|
|
6338
6446
|
/**
|
|
6339
6447
|
* Sub-id within this addon. Convention `default` for single-
|
|
@@ -8039,6 +8147,48 @@ const webrtcSessionCapability = {
|
|
|
8039
8147
|
)
|
|
8040
8148
|
}
|
|
8041
8149
|
};
|
|
8150
|
+
const ClipSchema = z.object({
|
|
8151
|
+
/** Opaque, provider-namespaced id. The default provider encodes the time
|
|
8152
|
+
* window so `getClipPlayback` is self-contained (no event re-query). */
|
|
8153
|
+
id: z.string(),
|
|
8154
|
+
/** Which provider produced it (`analytics` | `native:<vendor>` | …). */
|
|
8155
|
+
source: z.string(),
|
|
8156
|
+
kind: z.enum(["motion", "object", "audio", "native"]),
|
|
8157
|
+
timeRange: z.object({ startMs: z.number(), endMs: z.number() }),
|
|
8158
|
+
/** Thumbnail URL (lazy; e.g. analytics `getEventMedia`). Never inlined. */
|
|
8159
|
+
thumbnail: z.string().optional()
|
|
8160
|
+
});
|
|
8161
|
+
const ClipPlaybackSchema = z.object({
|
|
8162
|
+
/** HLS master URL through the hub data-plane (Range + token in path). */
|
|
8163
|
+
playbackUrl: z.string(),
|
|
8164
|
+
/** Optional LAN/remote alternates for the same clip. */
|
|
8165
|
+
playbackEndpoints: z.array(z.string()).optional(),
|
|
8166
|
+
token: z.string().optional()
|
|
8167
|
+
});
|
|
8168
|
+
const videoclipsCapability = {
|
|
8169
|
+
name: "videoclips",
|
|
8170
|
+
scope: "device",
|
|
8171
|
+
mode: "singleton",
|
|
8172
|
+
kind: "wrapper",
|
|
8173
|
+
defaultActive: true,
|
|
8174
|
+
methods: {
|
|
8175
|
+
listClips: method(
|
|
8176
|
+
z.object({
|
|
8177
|
+
deviceId: z.number(),
|
|
8178
|
+
since: z.number(),
|
|
8179
|
+
until: z.number(),
|
|
8180
|
+
limit: z.number().int().positive().optional()
|
|
8181
|
+
}),
|
|
8182
|
+
z.array(ClipSchema).readonly(),
|
|
8183
|
+
{ kind: "query", auth: "admin" }
|
|
8184
|
+
),
|
|
8185
|
+
getClipPlayback: method(
|
|
8186
|
+
z.object({ deviceId: z.number(), clipId: z.string() }),
|
|
8187
|
+
ClipPlaybackSchema,
|
|
8188
|
+
{ kind: "query", auth: "admin" }
|
|
8189
|
+
)
|
|
8190
|
+
}
|
|
8191
|
+
};
|
|
8042
8192
|
const CameraPipelineConfigSchema = z.object({
|
|
8043
8193
|
engine: PipelineEngineChoiceSchema,
|
|
8044
8194
|
steps: z.array(PipelineStepInputSchema).readonly(),
|
|
@@ -10406,7 +10556,7 @@ const eventsCapability = {
|
|
|
10406
10556
|
const RecordingStatusSchema = z.object({
|
|
10407
10557
|
deviceId: z.number(),
|
|
10408
10558
|
enabled: z.boolean(),
|
|
10409
|
-
activeMode: z.enum(["off", "continuous"]),
|
|
10559
|
+
activeMode: z.enum(["off", "continuous", "events"]),
|
|
10410
10560
|
nodeId: z.string(),
|
|
10411
10561
|
storageBytes: z.number()
|
|
10412
10562
|
});
|
|
@@ -12780,7 +12930,7 @@ export {
|
|
|
12780
12930
|
cameraStreamsCapability as Z,
|
|
12781
12931
|
brightnessCapability as _,
|
|
12782
12932
|
zoneRulesCapability as a,
|
|
12783
|
-
|
|
12933
|
+
restreamerCapability as a$,
|
|
12784
12934
|
batteryCapability as a0,
|
|
12785
12935
|
automationControlCapability as a1,
|
|
12786
12936
|
audioMetricsCapability as a2,
|
|
@@ -12795,29 +12945,29 @@ export {
|
|
|
12795
12945
|
deviceStateCapability as aB,
|
|
12796
12946
|
embeddingEncoderCapability as aC,
|
|
12797
12947
|
eventsCapability as aD,
|
|
12798
|
-
|
|
12799
|
-
|
|
12800
|
-
|
|
12801
|
-
|
|
12802
|
-
|
|
12803
|
-
|
|
12804
|
-
|
|
12805
|
-
|
|
12806
|
-
|
|
12807
|
-
|
|
12808
|
-
|
|
12809
|
-
|
|
12810
|
-
|
|
12811
|
-
|
|
12812
|
-
|
|
12813
|
-
|
|
12814
|
-
|
|
12815
|
-
|
|
12816
|
-
|
|
12817
|
-
|
|
12818
|
-
|
|
12819
|
-
|
|
12820
|
-
|
|
12948
|
+
filesystemBrowseCapability as aE,
|
|
12949
|
+
integrationsCapability as aF,
|
|
12950
|
+
intercomCapability as aG,
|
|
12951
|
+
localNetworkCapability as aH,
|
|
12952
|
+
logDestinationCapability as aI,
|
|
12953
|
+
meshNetworkCapability as aJ,
|
|
12954
|
+
metricsProviderCapability as aK,
|
|
12955
|
+
motionDetectionCapability as aL,
|
|
12956
|
+
mqttBrokerCapability as aM,
|
|
12957
|
+
networkAccessCapability as aN,
|
|
12958
|
+
networkQualityCapability as aO,
|
|
12959
|
+
nodesCapability as aP,
|
|
12960
|
+
notificationOutputCapability as aQ,
|
|
12961
|
+
oauthIntegrationCapability as aR,
|
|
12962
|
+
osdCapability as aS,
|
|
12963
|
+
pipelineAnalyticsCapability as aT,
|
|
12964
|
+
pipelineExecutorCapability as aU,
|
|
12965
|
+
pipelineOrchestratorCapability as aV,
|
|
12966
|
+
pipelineRunnerCapability as aW,
|
|
12967
|
+
platformProbeCapability as aX,
|
|
12968
|
+
ptzCapability as aY,
|
|
12969
|
+
rebootCapability as aZ,
|
|
12970
|
+
recordingCapability as a_,
|
|
12821
12971
|
deviceProviderCapability as aa,
|
|
12822
12972
|
accessoriesCapability as ab,
|
|
12823
12973
|
addonPagesCapability as ac,
|
|
@@ -12845,452 +12995,461 @@ export {
|
|
|
12845
12995
|
deviceExportCapability as ay,
|
|
12846
12996
|
deviceManagerCapability as az,
|
|
12847
12997
|
zoneAnalyticsCapability as b,
|
|
12848
|
-
|
|
12849
|
-
|
|
12850
|
-
|
|
12851
|
-
|
|
12852
|
-
|
|
12853
|
-
|
|
12854
|
-
|
|
12855
|
-
|
|
12856
|
-
|
|
12857
|
-
|
|
12858
|
-
|
|
12859
|
-
|
|
12860
|
-
|
|
12861
|
-
|
|
12862
|
-
|
|
12863
|
-
|
|
12864
|
-
|
|
12865
|
-
|
|
12866
|
-
|
|
12867
|
-
|
|
12868
|
-
|
|
12869
|
-
|
|
12870
|
-
|
|
12871
|
-
|
|
12872
|
-
|
|
12873
|
-
|
|
12874
|
-
|
|
12875
|
-
|
|
12876
|
-
|
|
12877
|
-
|
|
12878
|
-
|
|
12879
|
-
|
|
12880
|
-
|
|
12881
|
-
|
|
12882
|
-
|
|
12883
|
-
|
|
12884
|
-
|
|
12885
|
-
|
|
12886
|
-
|
|
12887
|
-
|
|
12888
|
-
|
|
12889
|
-
|
|
12890
|
-
|
|
12891
|
-
|
|
12892
|
-
|
|
12893
|
-
|
|
12894
|
-
|
|
12895
|
-
|
|
12896
|
-
|
|
12897
|
-
|
|
12898
|
-
|
|
12899
|
-
|
|
12900
|
-
|
|
12901
|
-
|
|
12902
|
-
|
|
12903
|
-
|
|
12904
|
-
|
|
12905
|
-
|
|
12906
|
-
|
|
12907
|
-
|
|
12908
|
-
|
|
12909
|
-
|
|
12910
|
-
|
|
12911
|
-
|
|
12998
|
+
AudioEventSchema as b$,
|
|
12999
|
+
settingsStoreCapability as b0,
|
|
13000
|
+
smtpProviderCapability as b1,
|
|
13001
|
+
snapshotCapability as b2,
|
|
13002
|
+
snapshotProviderCapability as b3,
|
|
13003
|
+
ssoBridgeCapability as b4,
|
|
13004
|
+
storageCapability as b5,
|
|
13005
|
+
storageEvictableCapability as b6,
|
|
13006
|
+
storageProviderCapability as b7,
|
|
13007
|
+
streamBrokerCapability as b8,
|
|
13008
|
+
streamCatalogCapability as b9,
|
|
13009
|
+
ReleaseInputSchema as bA,
|
|
13010
|
+
AdoptionStatusSchema as bB,
|
|
13011
|
+
AgentLoadSummarySchema as bC,
|
|
13012
|
+
AirQualitySensorStatusSchema as bD,
|
|
13013
|
+
AlarmArmModeSchema as bE,
|
|
13014
|
+
AlarmPanelStatusSchema as bF,
|
|
13015
|
+
AlarmStateSchema as bG,
|
|
13016
|
+
AlertSchema as bH,
|
|
13017
|
+
AlertSeveritySchema as bI,
|
|
13018
|
+
AlertSourceSchema as bJ,
|
|
13019
|
+
AlertStatusSchema as bK,
|
|
13020
|
+
AmbientLightSensorStatusSchema as bL,
|
|
13021
|
+
ApiKeyRecordSchema as bM,
|
|
13022
|
+
ApiKeySummarySchema as bN,
|
|
13023
|
+
ArchiveEntrySchema as bO,
|
|
13024
|
+
ArchiveManifestSchema as bP,
|
|
13025
|
+
AudioAnalysisResultSchema as bQ,
|
|
13026
|
+
AudioAnalysisSettingsSchema as bR,
|
|
13027
|
+
AudioChunkInputSchema as bS,
|
|
13028
|
+
AudioClassSummarySchema as bT,
|
|
13029
|
+
AudioClassificationLabelSchema as bU,
|
|
13030
|
+
AudioClassificationResultSchema as bV,
|
|
13031
|
+
AudioCodecInfoSchema as bW,
|
|
13032
|
+
AudioDecodeSessionConfigSchema as bX,
|
|
13033
|
+
AudioEncodeSchema as bY,
|
|
13034
|
+
AudioEncodeSessionConfigSchema as bZ,
|
|
13035
|
+
AudioEncodedChunkSchema as b_,
|
|
13036
|
+
streamingEngineCapability as ba,
|
|
13037
|
+
systemCapability as bb,
|
|
13038
|
+
toastCapability as bc,
|
|
13039
|
+
turnProviderCapability as bd,
|
|
13040
|
+
userManagementCapability as be,
|
|
13041
|
+
userPasskeysCapability as bf,
|
|
13042
|
+
videoclipsCapability as bg,
|
|
13043
|
+
webrtcCapability as bh,
|
|
13044
|
+
webrtcSessionCapability as bi,
|
|
13045
|
+
ACCESSORY_LABEL as bj,
|
|
13046
|
+
APPLE_SA_TO_MACRO as bk,
|
|
13047
|
+
AUDIO_BACKEND_CHOICES as bl,
|
|
13048
|
+
AUDIO_MACRO_LABELS as bm,
|
|
13049
|
+
AccessoriesStatusSchema as bn,
|
|
13050
|
+
AccessoryKind as bo,
|
|
13051
|
+
AddBrokerInputSchema as bp,
|
|
13052
|
+
AddonAutoUpdateSchema as bq,
|
|
13053
|
+
AddonListItemSchema as br,
|
|
13054
|
+
AddonPageDeclarationSchema as bs,
|
|
13055
|
+
AddonPageInfoSchema as bt,
|
|
13056
|
+
AdoptInputSchema as bu,
|
|
13057
|
+
AdoptResultSchema as bv,
|
|
13058
|
+
AdoptionFilterSchema as bw,
|
|
13059
|
+
GetCandidateInputSchema as bx,
|
|
13060
|
+
ListCandidatesInputSchema as by,
|
|
13061
|
+
ListCandidatesOutputSchema as bz,
|
|
12912
13062
|
waterHeaterCapability as c,
|
|
12913
|
-
|
|
12914
|
-
|
|
12915
|
-
|
|
12916
|
-
|
|
12917
|
-
|
|
12918
|
-
|
|
12919
|
-
|
|
12920
|
-
|
|
12921
|
-
|
|
12922
|
-
|
|
12923
|
-
|
|
12924
|
-
|
|
12925
|
-
|
|
12926
|
-
|
|
12927
|
-
|
|
12928
|
-
|
|
12929
|
-
|
|
12930
|
-
|
|
12931
|
-
|
|
12932
|
-
|
|
12933
|
-
|
|
12934
|
-
|
|
12935
|
-
|
|
12936
|
-
|
|
12937
|
-
|
|
12938
|
-
|
|
12939
|
-
|
|
12940
|
-
|
|
12941
|
-
|
|
12942
|
-
|
|
12943
|
-
|
|
12944
|
-
|
|
12945
|
-
|
|
12946
|
-
|
|
12947
|
-
|
|
12948
|
-
|
|
12949
|
-
|
|
12950
|
-
|
|
12951
|
-
|
|
12952
|
-
|
|
12953
|
-
|
|
12954
|
-
|
|
12955
|
-
|
|
12956
|
-
|
|
12957
|
-
|
|
12958
|
-
|
|
12959
|
-
|
|
12960
|
-
|
|
12961
|
-
|
|
12962
|
-
|
|
12963
|
-
|
|
12964
|
-
|
|
12965
|
-
|
|
12966
|
-
|
|
12967
|
-
|
|
12968
|
-
|
|
12969
|
-
|
|
12970
|
-
|
|
12971
|
-
|
|
12972
|
-
|
|
12973
|
-
|
|
12974
|
-
|
|
12975
|
-
|
|
12976
|
-
|
|
13063
|
+
ConfigTabDeclarationSchema as c$,
|
|
13064
|
+
AudioLevelSchema as c0,
|
|
13065
|
+
AudioMetricsHistoryPointSchema as c1,
|
|
13066
|
+
AudioMetricsHistorySchema as c2,
|
|
13067
|
+
AudioMetricsSnapshotSchema as c3,
|
|
13068
|
+
AudioPcmChunkSchema as c4,
|
|
13069
|
+
AuthResultSchema as c5,
|
|
13070
|
+
AutoUpdateSettingsSchema as c6,
|
|
13071
|
+
AutomationControlStatusSchema as c7,
|
|
13072
|
+
AvailableIntegrationTypeSchema as c8,
|
|
13073
|
+
BATTERY_DEVICE_PROFILE as c9,
|
|
13074
|
+
UnsubscribeInputSchema as cA,
|
|
13075
|
+
CAM_PROFILE_ORDER as cB,
|
|
13076
|
+
CamProfileSchema as cC,
|
|
13077
|
+
CamStreamDescriptorSchema as cD,
|
|
13078
|
+
CamStreamKindSchema as cE,
|
|
13079
|
+
CamStreamResolutionSchema as cF,
|
|
13080
|
+
CameraCredentialsSchema as cG,
|
|
13081
|
+
CameraCredentialsStatusSchema as cH,
|
|
13082
|
+
CameraMetricsSchema as cI,
|
|
13083
|
+
CameraMetricsWithDeviceIdSchema as cJ,
|
|
13084
|
+
CameraStreamSchema as cK,
|
|
13085
|
+
CandidateQueryFilterSchema as cL,
|
|
13086
|
+
CapScopeSchema as cM,
|
|
13087
|
+
CapabilityBindingsSchema as cN,
|
|
13088
|
+
CarbonMonoxideStatusSchema as cO,
|
|
13089
|
+
ChargingStatus as cP,
|
|
13090
|
+
ClientNetworkStatsSchema as cQ,
|
|
13091
|
+
ClimateControlStatusSchema as cR,
|
|
13092
|
+
ClipPlaybackSchema as cS,
|
|
13093
|
+
ClipSchema as cT,
|
|
13094
|
+
ClusterAddonNodeDeploymentSchema as cU,
|
|
13095
|
+
ClusterAddonStatusEntrySchema as cV,
|
|
13096
|
+
CollectionColumnSchema as cW,
|
|
13097
|
+
CollectionIndexSchema as cX,
|
|
13098
|
+
ColorStatusSchema as cY,
|
|
13099
|
+
ConfigEntrySchema$1 as cZ,
|
|
13100
|
+
ConfigSectionWithValuesSchema as c_,
|
|
13101
|
+
BackupDestinationInfoSchema as ca,
|
|
13102
|
+
BackupEntrySchema as cb,
|
|
13103
|
+
BatteryStatusSchema as cc,
|
|
13104
|
+
BinaryStatusSchema as cd,
|
|
13105
|
+
BoundingBoxSchema as ce,
|
|
13106
|
+
BrightnessStatusSchema as cf,
|
|
13107
|
+
AddInputSchema as cg,
|
|
13108
|
+
BrokerAudioClientSchema as ch,
|
|
13109
|
+
BrokerClientsSchema as ci,
|
|
13110
|
+
BrokerConnectionDetailsSchema as cj,
|
|
13111
|
+
BrokerConsumerAttributionSchema as ck,
|
|
13112
|
+
BrokerConsumerKindSchema as cl,
|
|
13113
|
+
BrokerDecodedClientSchema as cm,
|
|
13114
|
+
BrokerEncodedClientSchema as cn,
|
|
13115
|
+
GetStateInputSchema as co,
|
|
13116
|
+
BrokerInfoSchema as cp,
|
|
13117
|
+
BrokerProviderInfoSchema as cq,
|
|
13118
|
+
PublishInputSchema as cr,
|
|
13119
|
+
RegistryStatusSchema as cs,
|
|
13120
|
+
BrokerRtspClientSchema as ct,
|
|
13121
|
+
BrokerStatsSchema as cu,
|
|
13122
|
+
BrokerStatusEnum as cv,
|
|
13123
|
+
BrokerStatusSchema$1 as cw,
|
|
13124
|
+
SubscribeInputSchema as cx,
|
|
13125
|
+
SubscribeResultSchema as cy,
|
|
13126
|
+
TestConnectionResultSchema$1 as cz,
|
|
12977
13127
|
valveCapability as d,
|
|
12978
|
-
|
|
12979
|
-
|
|
12980
|
-
|
|
12981
|
-
|
|
12982
|
-
|
|
12983
|
-
|
|
12984
|
-
|
|
12985
|
-
|
|
12986
|
-
|
|
12987
|
-
|
|
12988
|
-
|
|
12989
|
-
|
|
12990
|
-
|
|
12991
|
-
|
|
12992
|
-
|
|
12993
|
-
|
|
12994
|
-
|
|
12995
|
-
|
|
12996
|
-
|
|
12997
|
-
|
|
12998
|
-
|
|
12999
|
-
|
|
13000
|
-
|
|
13001
|
-
|
|
13002
|
-
|
|
13003
|
-
|
|
13004
|
-
|
|
13005
|
-
|
|
13006
|
-
|
|
13007
|
-
|
|
13008
|
-
|
|
13009
|
-
|
|
13010
|
-
|
|
13011
|
-
|
|
13012
|
-
|
|
13013
|
-
|
|
13014
|
-
|
|
13015
|
-
|
|
13016
|
-
|
|
13017
|
-
|
|
13018
|
-
|
|
13019
|
-
|
|
13020
|
-
|
|
13021
|
-
|
|
13022
|
-
|
|
13023
|
-
|
|
13024
|
-
|
|
13025
|
-
|
|
13026
|
-
|
|
13027
|
-
|
|
13028
|
-
|
|
13029
|
-
|
|
13030
|
-
|
|
13031
|
-
|
|
13032
|
-
|
|
13033
|
-
|
|
13034
|
-
|
|
13035
|
-
|
|
13036
|
-
|
|
13037
|
-
|
|
13038
|
-
|
|
13039
|
-
|
|
13040
|
-
|
|
13128
|
+
FrameHandleFormatSchema as d$,
|
|
13129
|
+
ConnectivityStatusSchema as d0,
|
|
13130
|
+
ConsumableItemSchema as d1,
|
|
13131
|
+
ConsumablesStatusSchema as d2,
|
|
13132
|
+
ContactStatusSchema as d3,
|
|
13133
|
+
ControlKindSchema as d4,
|
|
13134
|
+
ControlStatusSchema as d5,
|
|
13135
|
+
CoverStateSchema as d6,
|
|
13136
|
+
CoverStatusSchema as d7,
|
|
13137
|
+
CreateApiKeyInputSchema as d8,
|
|
13138
|
+
CreateApiKeyResultSchema as d9,
|
|
13139
|
+
DeviceStatusSchema as dA,
|
|
13140
|
+
DeviceType as dB,
|
|
13141
|
+
DiscoveredChildDeviceSchema as dC,
|
|
13142
|
+
DiscoveredChildStatusSchema as dD,
|
|
13143
|
+
DiscoveredDeviceSchema as dE,
|
|
13144
|
+
DoorbellPressEventSchema as dF,
|
|
13145
|
+
DoorbellStatusSchema as dG,
|
|
13146
|
+
EmbeddingInfoSchema as dH,
|
|
13147
|
+
EmbeddingResultSchema as dI,
|
|
13148
|
+
EncodeProfileSchema as dJ,
|
|
13149
|
+
EncodedPacketSchema as dK,
|
|
13150
|
+
EnrichedWidgetMetadataSchema as dL,
|
|
13151
|
+
EnumSensorDateTimeFormatSchema as dM,
|
|
13152
|
+
EnumSensorStatusSchema as dN,
|
|
13153
|
+
EventEmitterStatusSchema as dO,
|
|
13154
|
+
EventFireSchema as dP,
|
|
13155
|
+
EventItemSchema as dQ,
|
|
13156
|
+
EventKindSchema as dR,
|
|
13157
|
+
ExportSetupFieldSchema as dS,
|
|
13158
|
+
ExportSetupSchema as dT,
|
|
13159
|
+
ExposedDeviceSchema as dU,
|
|
13160
|
+
ExposedResourceSchema as dV,
|
|
13161
|
+
FanControlStatusSchema as dW,
|
|
13162
|
+
FanDirectionSchema as dX,
|
|
13163
|
+
FeatureManifestSchema as dY,
|
|
13164
|
+
FeatureProbeStatusSchema as dZ,
|
|
13165
|
+
FloodStatusSchema as d_,
|
|
13166
|
+
CreateIntegrationInputSchema as da,
|
|
13167
|
+
CreateScopedTokenInputSchema as db,
|
|
13168
|
+
CreateScopedTokenResultSchema as dc,
|
|
13169
|
+
CreateUserInputSchema as dd,
|
|
13170
|
+
CustomActionInputSchema as de,
|
|
13171
|
+
DEFAULT_AUDIO_ANALYZER_CONFIG as df,
|
|
13172
|
+
DEFAULT_DECODER_HWACCEL_CONFIG as dg,
|
|
13173
|
+
DEVICE_PROFILES as dh,
|
|
13174
|
+
DEVICE_SETTINGS_CONTRIBUTION_METHODS as di,
|
|
13175
|
+
DEVICE_STATUS_METHOD as dj,
|
|
13176
|
+
DecodedAudioChunkSchema as dk,
|
|
13177
|
+
DecodedFrameSchema as dl,
|
|
13178
|
+
DecoderAssignmentSchema as dm,
|
|
13179
|
+
DecoderSessionConfigSchema as dn,
|
|
13180
|
+
DecoderStatsSchema as dp,
|
|
13181
|
+
DeleteIntegrationResultSchema as dq,
|
|
13182
|
+
DetectorOutputSchema as dr,
|
|
13183
|
+
DeviceDiscoveryStatusSchema as ds,
|
|
13184
|
+
ExposeInputSchema as dt,
|
|
13185
|
+
DeviceExportStatusSchema as du,
|
|
13186
|
+
UnexposeInputSchema as dv,
|
|
13187
|
+
DeviceFeature as dw,
|
|
13188
|
+
DeviceInfoSchema as dx,
|
|
13189
|
+
DeviceNetworkStatsSchema as dy,
|
|
13190
|
+
DeviceRole as dz,
|
|
13041
13191
|
errMsg as e,
|
|
13042
|
-
|
|
13043
|
-
|
|
13044
|
-
|
|
13045
|
-
|
|
13046
|
-
|
|
13047
|
-
|
|
13048
|
-
|
|
13049
|
-
|
|
13050
|
-
|
|
13051
|
-
|
|
13052
|
-
|
|
13053
|
-
|
|
13054
|
-
|
|
13055
|
-
|
|
13056
|
-
|
|
13057
|
-
|
|
13058
|
-
|
|
13059
|
-
|
|
13060
|
-
|
|
13061
|
-
|
|
13062
|
-
|
|
13063
|
-
|
|
13064
|
-
|
|
13065
|
-
|
|
13066
|
-
|
|
13067
|
-
|
|
13068
|
-
|
|
13069
|
-
|
|
13070
|
-
|
|
13071
|
-
|
|
13072
|
-
|
|
13073
|
-
|
|
13074
|
-
|
|
13075
|
-
|
|
13076
|
-
|
|
13077
|
-
|
|
13078
|
-
|
|
13079
|
-
|
|
13080
|
-
|
|
13081
|
-
|
|
13082
|
-
|
|
13083
|
-
|
|
13084
|
-
|
|
13085
|
-
|
|
13086
|
-
|
|
13087
|
-
|
|
13088
|
-
|
|
13089
|
-
|
|
13090
|
-
|
|
13091
|
-
|
|
13092
|
-
|
|
13093
|
-
|
|
13094
|
-
|
|
13095
|
-
|
|
13096
|
-
|
|
13097
|
-
|
|
13098
|
-
|
|
13099
|
-
|
|
13100
|
-
|
|
13101
|
-
|
|
13102
|
-
|
|
13103
|
-
|
|
13104
|
-
|
|
13105
|
-
|
|
13192
|
+
NetworkEndpointSchema as e$,
|
|
13193
|
+
FrameHandleSchema as e0,
|
|
13194
|
+
FrameInputSchema as e1,
|
|
13195
|
+
GasStatusSchema as e2,
|
|
13196
|
+
GetStreamWithCodecInputSchema as e3,
|
|
13197
|
+
GlobalMetricsSchema as e4,
|
|
13198
|
+
HWACCEL_OPTIONS as e5,
|
|
13199
|
+
HealthStatusSchema as e6,
|
|
13200
|
+
HistoryPointSchema as e7,
|
|
13201
|
+
HistoryResolutionEnum as e8,
|
|
13202
|
+
HumidifierStatusSchema as e9,
|
|
13203
|
+
MediaFileSchema as eA,
|
|
13204
|
+
MediaPlayerRepeatSchema as eB,
|
|
13205
|
+
MediaPlayerStateSchema as eC,
|
|
13206
|
+
MediaPlayerStatusSchema as eD,
|
|
13207
|
+
MeshPeerSchema as eE,
|
|
13208
|
+
MeshStatusSchema as eF,
|
|
13209
|
+
MethodAccessSchema as eG,
|
|
13210
|
+
MotionAnalysisResultSchema as eH,
|
|
13211
|
+
MotionEventSchema as eI,
|
|
13212
|
+
MotionOnMotionChangedDataSchema as eJ,
|
|
13213
|
+
MotionRegionSchema as eK,
|
|
13214
|
+
MotionSourceEnum as eL,
|
|
13215
|
+
MotionSourcesSchema as eM,
|
|
13216
|
+
MotionStatusSchema as eN,
|
|
13217
|
+
MotionTriggerRuntimeStateSchema as eO,
|
|
13218
|
+
MotionTriggerStatusSchema as eP,
|
|
13219
|
+
MotionZoneOptionsSchema as eQ,
|
|
13220
|
+
MotionZonePatchSchema as eR,
|
|
13221
|
+
MotionZoneRegionSchema as eS,
|
|
13222
|
+
MotionZoneStatusSchema as eT,
|
|
13223
|
+
StatusSchema as eU,
|
|
13224
|
+
NativeDetectionSchema as eV,
|
|
13225
|
+
NativeObjectClassEnum as eW,
|
|
13226
|
+
NativeObjectDetectionRuntimeStateSchema as eX,
|
|
13227
|
+
NativeObjectDetectionStatusSchema as eY,
|
|
13228
|
+
NetworkAccessStatusSchema as eZ,
|
|
13229
|
+
NetworkAddressSchema as e_,
|
|
13230
|
+
HumiditySensorStatusSchema as ea,
|
|
13231
|
+
HvacModeSchema as eb,
|
|
13232
|
+
ImageStatusSchema as ec,
|
|
13233
|
+
InstalledPackageSchema as ed,
|
|
13234
|
+
IntegrationLiteSchema as ee,
|
|
13235
|
+
IntegrationWithStateSchema as ef,
|
|
13236
|
+
IntercomAbilitySchema as eg,
|
|
13237
|
+
IntercomStatusSchema as eh,
|
|
13238
|
+
LawnMowerActivitySchema as ei,
|
|
13239
|
+
LawnMowerControlStatusSchema as ej,
|
|
13240
|
+
LocationStatSchema as ek,
|
|
13241
|
+
LockControlStatusSchema as el,
|
|
13242
|
+
LockStateSchema as em,
|
|
13243
|
+
LogEntrySchema as en,
|
|
13244
|
+
LogLevelSchema$1 as eo,
|
|
13245
|
+
LogStreamEntrySchema as ep,
|
|
13246
|
+
MODEL_FORMATS as eq,
|
|
13247
|
+
MaskGridDimsSchema as er,
|
|
13248
|
+
MaskGridShapeSchema as es,
|
|
13249
|
+
MaskLineShapeSchema as et,
|
|
13250
|
+
MaskPointSchema as eu,
|
|
13251
|
+
MaskPolygonShapeSchema as ev,
|
|
13252
|
+
MaskPolygonVerticesSchema as ew,
|
|
13253
|
+
MaskRectShapeSchema as ex,
|
|
13254
|
+
MaskShapeKindSchema as ey,
|
|
13255
|
+
MaskShapeSchema as ez,
|
|
13106
13256
|
vacuumControlCapability as f,
|
|
13107
|
-
|
|
13108
|
-
|
|
13109
|
-
|
|
13110
|
-
|
|
13111
|
-
|
|
13112
|
-
|
|
13113
|
-
|
|
13114
|
-
|
|
13115
|
-
|
|
13116
|
-
|
|
13117
|
-
|
|
13118
|
-
|
|
13119
|
-
|
|
13120
|
-
|
|
13121
|
-
|
|
13122
|
-
|
|
13123
|
-
|
|
13124
|
-
|
|
13125
|
-
|
|
13126
|
-
|
|
13127
|
-
|
|
13128
|
-
|
|
13129
|
-
|
|
13130
|
-
|
|
13131
|
-
|
|
13132
|
-
|
|
13133
|
-
|
|
13134
|
-
|
|
13135
|
-
|
|
13136
|
-
|
|
13137
|
-
|
|
13138
|
-
|
|
13139
|
-
|
|
13140
|
-
|
|
13141
|
-
|
|
13142
|
-
|
|
13143
|
-
|
|
13144
|
-
|
|
13145
|
-
|
|
13146
|
-
|
|
13147
|
-
|
|
13148
|
-
|
|
13149
|
-
|
|
13150
|
-
|
|
13151
|
-
|
|
13152
|
-
|
|
13153
|
-
|
|
13154
|
-
|
|
13155
|
-
|
|
13156
|
-
|
|
13157
|
-
|
|
13158
|
-
|
|
13159
|
-
|
|
13160
|
-
|
|
13161
|
-
|
|
13162
|
-
|
|
13163
|
-
|
|
13164
|
-
|
|
13165
|
-
|
|
13166
|
-
|
|
13167
|
-
|
|
13168
|
-
|
|
13169
|
-
|
|
13170
|
-
|
|
13257
|
+
RecordingRuleSchema as f$,
|
|
13258
|
+
NotificationHistoryEntrySchema as f0,
|
|
13259
|
+
NotificationRuleSchema as f1,
|
|
13260
|
+
NotificationSchema as f2,
|
|
13261
|
+
NotifierStatusSchema as f3,
|
|
13262
|
+
NumericSensorStatusSchema as f4,
|
|
13263
|
+
OauthIntegrationDescriptorSchema as f5,
|
|
13264
|
+
ObjectEventSchema as f6,
|
|
13265
|
+
OrchestratorMetricsSchema as f7,
|
|
13266
|
+
OsdOverlayKindEnum as f8,
|
|
13267
|
+
OsdOverlayPatchSchema as f9,
|
|
13268
|
+
PrivacyMaskShapeSchema as fA,
|
|
13269
|
+
PrivacyMaskStatusSchema as fB,
|
|
13270
|
+
ProfileRtspEntrySchema as fC,
|
|
13271
|
+
ProfileSlotSchema as fD,
|
|
13272
|
+
ProfileSlotStatusSchema as fE,
|
|
13273
|
+
ProviderStatusSchema as fF,
|
|
13274
|
+
PtzAutotrackRuntimeStateSchema as fG,
|
|
13275
|
+
PtzAutotrackSettingsSchema as fH,
|
|
13276
|
+
PtzAutotrackStatusSchema as fI,
|
|
13277
|
+
PtzAutotrackTargetOptionSchema as fJ,
|
|
13278
|
+
PtzMoveCommandSchema as fK,
|
|
13279
|
+
PtzPositionSchema as fL,
|
|
13280
|
+
PtzPresetSchema as fM,
|
|
13281
|
+
PtzStatusSchema as fN,
|
|
13282
|
+
QueryFilterSchema as fO,
|
|
13283
|
+
RawStateResultSchema as fP,
|
|
13284
|
+
RecordingAvailabilitySchema as fQ,
|
|
13285
|
+
RecordingBandModeSchema as fR,
|
|
13286
|
+
RecordingBandSchema as fS,
|
|
13287
|
+
RecordingBandTriggersSchema as fT,
|
|
13288
|
+
RecordingConfigSchema as fU,
|
|
13289
|
+
RecordingDeviceUsageSchema as fV,
|
|
13290
|
+
RecordingLocationUsageSchema as fW,
|
|
13291
|
+
RecordingManifestSchema as fX,
|
|
13292
|
+
RecordingModeSchema as fY,
|
|
13293
|
+
RecordingRangeSchema as fZ,
|
|
13294
|
+
RecordingRetentionSchema as f_,
|
|
13295
|
+
OsdOverlaySchema as fa,
|
|
13296
|
+
OsdPositionEnum as fb,
|
|
13297
|
+
OsdStatusSchema as fc,
|
|
13298
|
+
PIPELINE_FLOW_CAPABILITY_NAMES as fd,
|
|
13299
|
+
PIPELINE_OWNER_CAPABILITY_NAMES as fe,
|
|
13300
|
+
PackageUpdateSchema as ff,
|
|
13301
|
+
PackageVersionInfoSchema as fg,
|
|
13302
|
+
PasskeySummarySchema as fh,
|
|
13303
|
+
PcmSampleFormatSchema as fi,
|
|
13304
|
+
PerScopeBreakdownSchema as fj,
|
|
13305
|
+
PickStreamPreferencesSchema as fk,
|
|
13306
|
+
PickStreamRequirementsSchema as fl,
|
|
13307
|
+
PickedCamStreamSchema as fm,
|
|
13308
|
+
PipelineAssignmentSchema as fn,
|
|
13309
|
+
PipelineDefaultStepSchema as fo,
|
|
13310
|
+
PipelineEngineChoiceSchema as fp,
|
|
13311
|
+
PipelineRunResultBridge as fq,
|
|
13312
|
+
PipelineStepInputSchema as fr,
|
|
13313
|
+
PlaceholderReasonSchema as fs,
|
|
13314
|
+
PolygonPointSchema as ft,
|
|
13315
|
+
PowerMeterStatusSchema as fu,
|
|
13316
|
+
PresenceStatusSchema as fv,
|
|
13317
|
+
PressureSensorStatusSchema as fw,
|
|
13318
|
+
PrivacyMaskOptionsSchema as fx,
|
|
13319
|
+
PrivacyMaskPatchSchema as fy,
|
|
13320
|
+
PrivacyMaskRegionSchema as fz,
|
|
13171
13321
|
tamperCapability as g,
|
|
13172
|
-
|
|
13173
|
-
|
|
13174
|
-
|
|
13175
|
-
|
|
13176
|
-
|
|
13177
|
-
|
|
13178
|
-
|
|
13179
|
-
|
|
13180
|
-
|
|
13181
|
-
|
|
13182
|
-
|
|
13183
|
-
|
|
13184
|
-
|
|
13185
|
-
|
|
13186
|
-
|
|
13187
|
-
|
|
13188
|
-
|
|
13189
|
-
|
|
13190
|
-
|
|
13191
|
-
|
|
13192
|
-
|
|
13193
|
-
|
|
13194
|
-
|
|
13195
|
-
|
|
13196
|
-
|
|
13197
|
-
|
|
13198
|
-
|
|
13199
|
-
|
|
13200
|
-
|
|
13201
|
-
|
|
13202
|
-
|
|
13203
|
-
|
|
13204
|
-
|
|
13205
|
-
|
|
13206
|
-
|
|
13207
|
-
|
|
13208
|
-
|
|
13209
|
-
|
|
13210
|
-
|
|
13211
|
-
|
|
13212
|
-
|
|
13213
|
-
|
|
13214
|
-
|
|
13215
|
-
|
|
13216
|
-
|
|
13217
|
-
|
|
13218
|
-
|
|
13219
|
-
|
|
13220
|
-
|
|
13221
|
-
|
|
13222
|
-
|
|
13223
|
-
|
|
13224
|
-
|
|
13225
|
-
|
|
13226
|
-
|
|
13227
|
-
|
|
13228
|
-
|
|
13229
|
-
|
|
13230
|
-
|
|
13231
|
-
|
|
13232
|
-
|
|
13233
|
-
|
|
13234
|
-
|
|
13235
|
-
|
|
13322
|
+
SwitchStatusSchema as g$,
|
|
13323
|
+
RecordingScheduleSchema as g0,
|
|
13324
|
+
RecordingStatusSchema as g1,
|
|
13325
|
+
RecordingStorageModeSchema as g2,
|
|
13326
|
+
RecordingStorageUsageSchema as g3,
|
|
13327
|
+
RecordingTriggersSchema as g4,
|
|
13328
|
+
RecordingWeekdaySchema as g5,
|
|
13329
|
+
RegisteredStreamSchema as g6,
|
|
13330
|
+
ReportMotionInputSchema as g7,
|
|
13331
|
+
RtpSourceSchema as g8,
|
|
13332
|
+
RtspRestreamEntrySchema as g9,
|
|
13333
|
+
BeginUploadResultSchema as gA,
|
|
13334
|
+
EndDownloadInputSchema as gB,
|
|
13335
|
+
FinalizeUploadInputSchema as gC,
|
|
13336
|
+
StorageLocationDeclarationSchema as gD,
|
|
13337
|
+
StorageLocationRefSchema as gE,
|
|
13338
|
+
StorageLocationSchema as gF,
|
|
13339
|
+
StorageLocationTypeSchema as gG,
|
|
13340
|
+
ProviderInfoSchema as gH,
|
|
13341
|
+
ReadChunkInputSchema as gI,
|
|
13342
|
+
TestLocationResultSchema as gJ,
|
|
13343
|
+
WriteChunkInputSchema as gK,
|
|
13344
|
+
StreamCodecSchema as gL,
|
|
13345
|
+
StreamFormatSchema as gM,
|
|
13346
|
+
StreamInfoSchema as gN,
|
|
13347
|
+
StreamNetworkStatsSchema as gO,
|
|
13348
|
+
StreamParamsOptionsSchema as gP,
|
|
13349
|
+
StreamParamsStatusSchema as gQ,
|
|
13350
|
+
StreamProfileConfigSchema as gR,
|
|
13351
|
+
StreamProfileOptionsSchema as gS,
|
|
13352
|
+
StreamProfilePatchSchema as gT,
|
|
13353
|
+
StreamProfileSchema as gU,
|
|
13354
|
+
StreamSourceEntrySchema$1 as gV,
|
|
13355
|
+
StreamSourceSchema as gW,
|
|
13356
|
+
SubscribeAudioChunksInputSchema as gX,
|
|
13357
|
+
SubscribeAudioChunksResultSchema as gY,
|
|
13358
|
+
SubscribeFramesInputSchema as gZ,
|
|
13359
|
+
SubscribeFramesResultSchema as g_,
|
|
13360
|
+
RunnerCameraConfigSchema as ga,
|
|
13361
|
+
RunnerCameraDeviceUIFields as gb,
|
|
13362
|
+
RunnerLocalLoadSchema as gc,
|
|
13363
|
+
RunnerLocalMetricsSchema as gd,
|
|
13364
|
+
ScopedTokenSchema as ge,
|
|
13365
|
+
ScopedTokenSummarySchema as gf,
|
|
13366
|
+
ScriptRunnerStatusSchema as gg,
|
|
13367
|
+
SearchResultSchema as gh,
|
|
13368
|
+
SendEmailInputSchema as gi,
|
|
13369
|
+
SendEmailResultSchema as gj,
|
|
13370
|
+
SettingsPatchSchema as gk,
|
|
13371
|
+
SettingsRecordSchema$1 as gl,
|
|
13372
|
+
SettingsSchemaWithValuesSchema as gm,
|
|
13373
|
+
SettingsUpdateResultSchema as gn,
|
|
13374
|
+
ShmRingStatsSchema as go,
|
|
13375
|
+
SmokeStatusSchema as gp,
|
|
13376
|
+
SmtpStatusSchema as gq,
|
|
13377
|
+
SnapshotImageSchema as gr,
|
|
13378
|
+
SourceInfoSchema as gs,
|
|
13379
|
+
SpatialDetectionSchema as gt,
|
|
13380
|
+
SsoBridgeClaimsSchema as gu,
|
|
13381
|
+
StartEmbeddedInputSchema as gv,
|
|
13382
|
+
AbortUploadInputSchema as gw,
|
|
13383
|
+
BeginDownloadInputSchema as gx,
|
|
13384
|
+
BeginDownloadResultSchema as gy,
|
|
13385
|
+
BeginUploadInputSchema as gz,
|
|
13236
13386
|
hydrateSchema as h,
|
|
13237
|
-
|
|
13238
|
-
|
|
13239
|
-
|
|
13240
|
-
|
|
13241
|
-
|
|
13242
|
-
|
|
13243
|
-
|
|
13244
|
-
|
|
13245
|
-
|
|
13246
|
-
|
|
13247
|
-
|
|
13248
|
-
|
|
13249
|
-
|
|
13250
|
-
|
|
13251
|
-
|
|
13252
|
-
|
|
13253
|
-
|
|
13254
|
-
|
|
13255
|
-
|
|
13256
|
-
|
|
13257
|
-
|
|
13258
|
-
|
|
13259
|
-
|
|
13260
|
-
|
|
13261
|
-
|
|
13262
|
-
|
|
13263
|
-
|
|
13264
|
-
|
|
13265
|
-
|
|
13266
|
-
|
|
13267
|
-
|
|
13268
|
-
|
|
13269
|
-
|
|
13270
|
-
|
|
13271
|
-
|
|
13272
|
-
|
|
13273
|
-
|
|
13274
|
-
|
|
13275
|
-
|
|
13276
|
-
|
|
13277
|
-
|
|
13278
|
-
|
|
13279
|
-
|
|
13280
|
-
|
|
13281
|
-
|
|
13282
|
-
|
|
13283
|
-
|
|
13284
|
-
|
|
13285
|
-
|
|
13286
|
-
|
|
13287
|
-
|
|
13288
|
-
|
|
13289
|
-
|
|
13290
|
-
|
|
13291
|
-
|
|
13292
|
-
|
|
13387
|
+
wiringProbeKindSchema as h$,
|
|
13388
|
+
SystemMetricsSchema as h0,
|
|
13389
|
+
TamperStatusSchema as h1,
|
|
13390
|
+
TankStatusSchema as h2,
|
|
13391
|
+
TemperatureSensorStatusSchema as h3,
|
|
13392
|
+
TestConnectionResultSchema as h4,
|
|
13393
|
+
ToastSchema as h5,
|
|
13394
|
+
TokenScopeSchema as h6,
|
|
13395
|
+
TopologyNodeSchema as h7,
|
|
13396
|
+
TopologyProcessSchema as h8,
|
|
13397
|
+
TopologyServiceSchema as h9,
|
|
13398
|
+
YAMNET_TO_MACRO as hA,
|
|
13399
|
+
ZoneKindEnum as hB,
|
|
13400
|
+
ZoneRuleModeEnum as hC,
|
|
13401
|
+
ZoneRuleSchema as hD,
|
|
13402
|
+
ZoneRuleStageEnum as hE,
|
|
13403
|
+
ZoneRulesArraySchema as hF,
|
|
13404
|
+
ZoneSchema as hG,
|
|
13405
|
+
ZoneScopeBreakdownSchema as hH,
|
|
13406
|
+
accessoryStableId as hI,
|
|
13407
|
+
deviceMatchesProfile as hJ,
|
|
13408
|
+
encodeProfileFromStreamShape as hK,
|
|
13409
|
+
event as hL,
|
|
13410
|
+
expandCapMethods as hM,
|
|
13411
|
+
getAudioMacroClassIds as hN,
|
|
13412
|
+
isDeviceConfigCap as hO,
|
|
13413
|
+
makeProfileBrokerId as hP,
|
|
13414
|
+
makeSourceBrokerId as hQ,
|
|
13415
|
+
mapAudioLabelToMacro as hR,
|
|
13416
|
+
method as hS,
|
|
13417
|
+
normalizeUnit as hT,
|
|
13418
|
+
parseProfileBrokerId as hU,
|
|
13419
|
+
resolveDeviceProfile as hV,
|
|
13420
|
+
selectAssignedProfileSlots as hW,
|
|
13421
|
+
webrtcClientHintsSchema as hX,
|
|
13422
|
+
wiringAddonHealthSchema as hY,
|
|
13423
|
+
wiringHealthSnapshotSchema as hZ,
|
|
13424
|
+
wiringNodeHealthSchema as h_,
|
|
13425
|
+
TrackSchema as ha,
|
|
13426
|
+
TrackStateSchema as hb,
|
|
13427
|
+
TrackedDetectionSchema as hc,
|
|
13428
|
+
TurnServerSchema as hd,
|
|
13429
|
+
BrokerInfoSchema$1 as he,
|
|
13430
|
+
UpdateIntegrationInputSchema as hf,
|
|
13431
|
+
UpdateStatusSchema as hg,
|
|
13432
|
+
UpdateUserInputSchema as hh,
|
|
13433
|
+
UserRecordSchema as hi,
|
|
13434
|
+
UserSummarySchema as hj,
|
|
13435
|
+
VacuumControlStatusSchema as hk,
|
|
13436
|
+
VacuumStateSchema as hl,
|
|
13437
|
+
ValveStateSchema as hm,
|
|
13438
|
+
ValveStatusSchema as hn,
|
|
13439
|
+
VibrationStatusSchema as ho,
|
|
13440
|
+
VideoEncodeSchema as hp,
|
|
13441
|
+
WELL_KNOWN_TABS as hq,
|
|
13442
|
+
WELL_KNOWN_TAB_MAP as hr,
|
|
13443
|
+
WaterHeaterStatusSchema as hs,
|
|
13444
|
+
WeatherStatusSchema as ht,
|
|
13445
|
+
WebrtcStreamChoiceSchema as hu,
|
|
13446
|
+
WebrtcStreamTargetSchema as hv,
|
|
13447
|
+
WidgetHostEnum as hw,
|
|
13448
|
+
WidgetMetadataSchema as hx,
|
|
13449
|
+
WidgetRemoteSchema as hy,
|
|
13450
|
+
WidgetSizeEnum as hz,
|
|
13293
13451
|
streamParamsCapability as i,
|
|
13452
|
+
wiringProbeResultSchema as i0,
|
|
13294
13453
|
smokeCapability as j,
|
|
13295
13454
|
scriptRunnerCapability as k,
|
|
13296
13455
|
privacyMaskCapability as l,
|
|
@@ -13309,4 +13468,4 @@ export {
|
|
|
13309
13468
|
motionZonesCapability as y,
|
|
13310
13469
|
zonesCapability as z
|
|
13311
13470
|
};
|
|
13312
|
-
//# sourceMappingURL=index-
|
|
13471
|
+
//# sourceMappingURL=index-BxWo3b49.mjs.map
|