@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.
Files changed (45) hide show
  1. package/dist/capabilities/filesystem-browse.cap.d.ts +39 -0
  2. package/dist/capabilities/filesystem-browse.cap.d.ts.map +1 -0
  3. package/dist/capabilities/index.d.ts +5 -1
  4. package/dist/capabilities/index.d.ts.map +1 -1
  5. package/dist/capabilities/recording.cap.d.ts +129 -0
  6. package/dist/capabilities/recording.cap.d.ts.map +1 -1
  7. package/dist/capabilities/storage-provider.cap.d.ts +15 -0
  8. package/dist/capabilities/storage-provider.cap.d.ts.map +1 -1
  9. package/dist/capabilities/storage.cap.d.ts +6 -0
  10. package/dist/capabilities/storage.cap.d.ts.map +1 -1
  11. package/dist/capabilities/stream-broker.cap.d.ts +14 -0
  12. package/dist/capabilities/stream-broker.cap.d.ts.map +1 -1
  13. package/dist/capabilities/videoclips.cap.d.ts +77 -0
  14. package/dist/capabilities/videoclips.cap.d.ts.map +1 -0
  15. package/dist/generated/addon-api.d.ts +428 -2
  16. package/dist/generated/addon-api.d.ts.map +1 -1
  17. package/dist/generated/capability-router-map.d.ts +8 -2
  18. package/dist/generated/capability-router-map.d.ts.map +1 -1
  19. package/dist/generated/device-proxy.d.ts +2 -0
  20. package/dist/generated/device-proxy.d.ts.map +1 -1
  21. package/dist/generated/method-access-map.d.ts +1 -1
  22. package/dist/generated/method-access-map.d.ts.map +1 -1
  23. package/dist/generated/system-proxy.d.ts +1 -1
  24. package/dist/generated/system-proxy.d.ts.map +1 -1
  25. package/dist/{index-Bpj3ScIH.mjs → index-BxWo3b49.mjs} +624 -465
  26. package/dist/index-BxWo3b49.mjs.map +1 -0
  27. package/dist/{index-BSA_TBea.js → index-CGMPfVaT.js} +161 -2
  28. package/dist/index-CGMPfVaT.js.map +1 -0
  29. package/dist/index.d.ts +1 -0
  30. package/dist/index.d.ts.map +1 -1
  31. package/dist/index.js +62 -1
  32. package/dist/index.js.map +1 -1
  33. package/dist/index.mjs +485 -424
  34. package/dist/index.mjs.map +1 -1
  35. package/dist/interfaces/recording-config-migrate.d.ts +13 -0
  36. package/dist/interfaces/recording-config-migrate.d.ts.map +1 -0
  37. package/dist/interfaces/recording-config.d.ts +119 -1
  38. package/dist/interfaces/recording-config.d.ts.map +1 -1
  39. package/dist/interfaces/storage-location.d.ts +1 -0
  40. package/dist/interfaces/storage-location.d.ts.map +1 -1
  41. package/dist/node.js +1 -1
  42. package/dist/node.mjs +1 -1
  43. package/package.json +1 -1
  44. package/dist/index-BSA_TBea.js.map +0 -1
  45. 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
- settingsStoreCapability as a$,
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
- integrationsCapability as aE,
12799
- intercomCapability as aF,
12800
- localNetworkCapability as aG,
12801
- logDestinationCapability as aH,
12802
- meshNetworkCapability as aI,
12803
- metricsProviderCapability as aJ,
12804
- motionDetectionCapability as aK,
12805
- mqttBrokerCapability as aL,
12806
- networkAccessCapability as aM,
12807
- networkQualityCapability as aN,
12808
- nodesCapability as aO,
12809
- notificationOutputCapability as aP,
12810
- oauthIntegrationCapability as aQ,
12811
- osdCapability as aR,
12812
- pipelineAnalyticsCapability as aS,
12813
- pipelineExecutorCapability as aT,
12814
- pipelineOrchestratorCapability as aU,
12815
- pipelineRunnerCapability as aV,
12816
- platformProbeCapability as aW,
12817
- ptzCapability as aX,
12818
- rebootCapability as aY,
12819
- recordingCapability as aZ,
12820
- restreamerCapability as a_,
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
- AudioMetricsHistoryPointSchema as b$,
12849
- smtpProviderCapability as b0,
12850
- snapshotCapability as b1,
12851
- snapshotProviderCapability as b2,
12852
- ssoBridgeCapability as b3,
12853
- storageCapability as b4,
12854
- storageEvictableCapability as b5,
12855
- storageProviderCapability as b6,
12856
- streamBrokerCapability as b7,
12857
- streamCatalogCapability as b8,
12858
- streamingEngineCapability as b9,
12859
- AgentLoadSummarySchema as bA,
12860
- AirQualitySensorStatusSchema as bB,
12861
- AlarmArmModeSchema as bC,
12862
- AlarmPanelStatusSchema as bD,
12863
- AlarmStateSchema as bE,
12864
- AlertSchema as bF,
12865
- AlertSeveritySchema as bG,
12866
- AlertSourceSchema as bH,
12867
- AlertStatusSchema as bI,
12868
- AmbientLightSensorStatusSchema as bJ,
12869
- ApiKeyRecordSchema as bK,
12870
- ApiKeySummarySchema as bL,
12871
- ArchiveEntrySchema as bM,
12872
- ArchiveManifestSchema as bN,
12873
- AudioAnalysisResultSchema as bO,
12874
- AudioAnalysisSettingsSchema as bP,
12875
- AudioChunkInputSchema as bQ,
12876
- AudioClassSummarySchema as bR,
12877
- AudioClassificationLabelSchema as bS,
12878
- AudioClassificationResultSchema as bT,
12879
- AudioCodecInfoSchema as bU,
12880
- AudioDecodeSessionConfigSchema as bV,
12881
- AudioEncodeSchema as bW,
12882
- AudioEncodeSessionConfigSchema as bX,
12883
- AudioEncodedChunkSchema as bY,
12884
- AudioEventSchema as bZ,
12885
- AudioLevelSchema as b_,
12886
- systemCapability as ba,
12887
- toastCapability as bb,
12888
- turnProviderCapability as bc,
12889
- userManagementCapability as bd,
12890
- userPasskeysCapability as be,
12891
- webrtcCapability as bf,
12892
- webrtcSessionCapability as bg,
12893
- ACCESSORY_LABEL as bh,
12894
- APPLE_SA_TO_MACRO as bi,
12895
- AUDIO_BACKEND_CHOICES as bj,
12896
- AUDIO_MACRO_LABELS as bk,
12897
- AccessoriesStatusSchema as bl,
12898
- AccessoryKind as bm,
12899
- AddBrokerInputSchema as bn,
12900
- AddonAutoUpdateSchema as bo,
12901
- AddonListItemSchema as bp,
12902
- AddonPageDeclarationSchema as bq,
12903
- AddonPageInfoSchema as br,
12904
- AdoptInputSchema as bs,
12905
- AdoptResultSchema as bt,
12906
- AdoptionFilterSchema as bu,
12907
- GetCandidateInputSchema as bv,
12908
- ListCandidatesInputSchema as bw,
12909
- ListCandidatesOutputSchema as bx,
12910
- ReleaseInputSchema as by,
12911
- AdoptionStatusSchema as bz,
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
- ContactStatusSchema as c$,
12914
- AudioMetricsHistorySchema as c0,
12915
- AudioMetricsSnapshotSchema as c1,
12916
- AudioPcmChunkSchema as c2,
12917
- AuthResultSchema as c3,
12918
- AutoUpdateSettingsSchema as c4,
12919
- AutomationControlStatusSchema as c5,
12920
- AvailableIntegrationTypeSchema as c6,
12921
- BATTERY_DEVICE_PROFILE as c7,
12922
- BackupDestinationInfoSchema as c8,
12923
- BackupEntrySchema as c9,
12924
- CamProfileSchema as cA,
12925
- CamStreamDescriptorSchema as cB,
12926
- CamStreamKindSchema as cC,
12927
- CamStreamResolutionSchema as cD,
12928
- CameraCredentialsSchema as cE,
12929
- CameraCredentialsStatusSchema as cF,
12930
- CameraMetricsSchema as cG,
12931
- CameraMetricsWithDeviceIdSchema as cH,
12932
- CameraStreamSchema as cI,
12933
- CandidateQueryFilterSchema as cJ,
12934
- CapScopeSchema as cK,
12935
- CapabilityBindingsSchema as cL,
12936
- CarbonMonoxideStatusSchema as cM,
12937
- ChargingStatus as cN,
12938
- ClientNetworkStatsSchema as cO,
12939
- ClimateControlStatusSchema as cP,
12940
- ClusterAddonNodeDeploymentSchema as cQ,
12941
- ClusterAddonStatusEntrySchema as cR,
12942
- CollectionColumnSchema as cS,
12943
- CollectionIndexSchema as cT,
12944
- ColorStatusSchema as cU,
12945
- ConfigEntrySchema$1 as cV,
12946
- ConfigSectionWithValuesSchema as cW,
12947
- ConfigTabDeclarationSchema as cX,
12948
- ConnectivityStatusSchema as cY,
12949
- ConsumableItemSchema as cZ,
12950
- ConsumablesStatusSchema as c_,
12951
- BatteryStatusSchema as ca,
12952
- BinaryStatusSchema as cb,
12953
- BoundingBoxSchema as cc,
12954
- BrightnessStatusSchema as cd,
12955
- AddInputSchema as ce,
12956
- BrokerAudioClientSchema as cf,
12957
- BrokerClientsSchema as cg,
12958
- BrokerConnectionDetailsSchema as ch,
12959
- BrokerConsumerAttributionSchema as ci,
12960
- BrokerConsumerKindSchema as cj,
12961
- BrokerDecodedClientSchema as ck,
12962
- BrokerEncodedClientSchema as cl,
12963
- GetStateInputSchema as cm,
12964
- BrokerInfoSchema as cn,
12965
- BrokerProviderInfoSchema as co,
12966
- PublishInputSchema as cp,
12967
- RegistryStatusSchema as cq,
12968
- BrokerRtspClientSchema as cr,
12969
- BrokerStatsSchema as cs,
12970
- BrokerStatusEnum as ct,
12971
- BrokerStatusSchema$1 as cu,
12972
- SubscribeInputSchema as cv,
12973
- SubscribeResultSchema as cw,
12974
- TestConnectionResultSchema$1 as cx,
12975
- UnsubscribeInputSchema as cy,
12976
- CAM_PROFILE_ORDER as cz,
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
- GetStreamWithCodecInputSchema as d$,
12979
- ControlKindSchema as d0,
12980
- ControlStatusSchema as d1,
12981
- CoverStateSchema as d2,
12982
- CoverStatusSchema as d3,
12983
- CreateApiKeyInputSchema as d4,
12984
- CreateApiKeyResultSchema as d5,
12985
- CreateIntegrationInputSchema as d6,
12986
- CreateScopedTokenInputSchema as d7,
12987
- CreateScopedTokenResultSchema as d8,
12988
- CreateUserInputSchema as d9,
12989
- DiscoveredDeviceSchema as dA,
12990
- DoorbellPressEventSchema as dB,
12991
- DoorbellStatusSchema as dC,
12992
- EmbeddingInfoSchema as dD,
12993
- EmbeddingResultSchema as dE,
12994
- EncodeProfileSchema as dF,
12995
- EncodedPacketSchema as dG,
12996
- EnrichedWidgetMetadataSchema as dH,
12997
- EnumSensorDateTimeFormatSchema as dI,
12998
- EnumSensorStatusSchema as dJ,
12999
- EventEmitterStatusSchema as dK,
13000
- EventFireSchema as dL,
13001
- EventItemSchema as dM,
13002
- EventKindSchema as dN,
13003
- ExportSetupFieldSchema as dO,
13004
- ExportSetupSchema as dP,
13005
- ExposedDeviceSchema as dQ,
13006
- ExposedResourceSchema as dR,
13007
- FanControlStatusSchema as dS,
13008
- FanDirectionSchema as dT,
13009
- FeatureManifestSchema as dU,
13010
- FeatureProbeStatusSchema as dV,
13011
- FloodStatusSchema as dW,
13012
- FrameHandleFormatSchema as dX,
13013
- FrameHandleSchema as dY,
13014
- FrameInputSchema as dZ,
13015
- GasStatusSchema as d_,
13016
- CustomActionInputSchema as da,
13017
- DEFAULT_AUDIO_ANALYZER_CONFIG as db,
13018
- DEFAULT_DECODER_HWACCEL_CONFIG as dc,
13019
- DEVICE_PROFILES as dd,
13020
- DEVICE_SETTINGS_CONTRIBUTION_METHODS as de,
13021
- DEVICE_STATUS_METHOD as df,
13022
- DecodedAudioChunkSchema as dg,
13023
- DecodedFrameSchema as dh,
13024
- DecoderAssignmentSchema as di,
13025
- DecoderSessionConfigSchema as dj,
13026
- DecoderStatsSchema as dk,
13027
- DeleteIntegrationResultSchema as dl,
13028
- DetectorOutputSchema as dm,
13029
- DeviceDiscoveryStatusSchema as dn,
13030
- ExposeInputSchema as dp,
13031
- DeviceExportStatusSchema as dq,
13032
- UnexposeInputSchema as dr,
13033
- DeviceFeature as ds,
13034
- DeviceInfoSchema as dt,
13035
- DeviceNetworkStatsSchema as du,
13036
- DeviceRole as dv,
13037
- DeviceStatusSchema as dw,
13038
- DeviceType as dx,
13039
- DiscoveredChildDeviceSchema as dy,
13040
- DiscoveredChildStatusSchema as dz,
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
- NotifierStatusSchema as e$,
13043
- GlobalMetricsSchema as e0,
13044
- HWACCEL_OPTIONS as e1,
13045
- HealthStatusSchema as e2,
13046
- HistoryPointSchema as e3,
13047
- HistoryResolutionEnum as e4,
13048
- HumidifierStatusSchema as e5,
13049
- HumiditySensorStatusSchema as e6,
13050
- HvacModeSchema as e7,
13051
- ImageStatusSchema as e8,
13052
- InstalledPackageSchema as e9,
13053
- MeshPeerSchema as eA,
13054
- MeshStatusSchema as eB,
13055
- MethodAccessSchema as eC,
13056
- MotionAnalysisResultSchema as eD,
13057
- MotionEventSchema as eE,
13058
- MotionOnMotionChangedDataSchema as eF,
13059
- MotionRegionSchema as eG,
13060
- MotionSourceEnum as eH,
13061
- MotionSourcesSchema as eI,
13062
- MotionStatusSchema as eJ,
13063
- MotionTriggerRuntimeStateSchema as eK,
13064
- MotionTriggerStatusSchema as eL,
13065
- MotionZoneOptionsSchema as eM,
13066
- MotionZonePatchSchema as eN,
13067
- MotionZoneRegionSchema as eO,
13068
- MotionZoneStatusSchema as eP,
13069
- StatusSchema as eQ,
13070
- NativeDetectionSchema as eR,
13071
- NativeObjectClassEnum as eS,
13072
- NativeObjectDetectionRuntimeStateSchema as eT,
13073
- NativeObjectDetectionStatusSchema as eU,
13074
- NetworkAccessStatusSchema as eV,
13075
- NetworkAddressSchema as eW,
13076
- NetworkEndpointSchema as eX,
13077
- NotificationHistoryEntrySchema as eY,
13078
- NotificationRuleSchema as eZ,
13079
- NotificationSchema as e_,
13080
- IntegrationLiteSchema as ea,
13081
- IntegrationWithStateSchema as eb,
13082
- IntercomAbilitySchema as ec,
13083
- IntercomStatusSchema as ed,
13084
- LawnMowerActivitySchema as ee,
13085
- LawnMowerControlStatusSchema as ef,
13086
- LocationStatSchema as eg,
13087
- LockControlStatusSchema as eh,
13088
- LockStateSchema as ei,
13089
- LogEntrySchema as ej,
13090
- LogLevelSchema$1 as ek,
13091
- LogStreamEntrySchema as el,
13092
- MODEL_FORMATS as em,
13093
- MaskGridDimsSchema as en,
13094
- MaskGridShapeSchema as eo,
13095
- MaskLineShapeSchema as ep,
13096
- MaskPointSchema as eq,
13097
- MaskPolygonShapeSchema as er,
13098
- MaskPolygonVerticesSchema as es,
13099
- MaskRectShapeSchema as et,
13100
- MaskShapeKindSchema as eu,
13101
- MaskShapeSchema as ev,
13102
- MediaFileSchema as ew,
13103
- MediaPlayerRepeatSchema as ex,
13104
- MediaPlayerStateSchema as ey,
13105
- MediaPlayerStatusSchema as ez,
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
- RtpSourceSchema as f$,
13108
- NumericSensorStatusSchema as f0,
13109
- OauthIntegrationDescriptorSchema as f1,
13110
- ObjectEventSchema as f2,
13111
- OrchestratorMetricsSchema as f3,
13112
- OsdOverlayKindEnum as f4,
13113
- OsdOverlayPatchSchema as f5,
13114
- OsdOverlaySchema as f6,
13115
- OsdPositionEnum as f7,
13116
- OsdStatusSchema as f8,
13117
- PIPELINE_FLOW_CAPABILITY_NAMES as f9,
13118
- ProfileSlotStatusSchema as fA,
13119
- ProviderStatusSchema as fB,
13120
- PtzAutotrackRuntimeStateSchema as fC,
13121
- PtzAutotrackSettingsSchema as fD,
13122
- PtzAutotrackStatusSchema as fE,
13123
- PtzAutotrackTargetOptionSchema as fF,
13124
- PtzMoveCommandSchema as fG,
13125
- PtzPositionSchema as fH,
13126
- PtzPresetSchema as fI,
13127
- PtzStatusSchema as fJ,
13128
- QueryFilterSchema as fK,
13129
- RawStateResultSchema as fL,
13130
- RecordingAvailabilitySchema as fM,
13131
- RecordingConfigSchema as fN,
13132
- RecordingDeviceUsageSchema as fO,
13133
- RecordingLocationUsageSchema as fP,
13134
- RecordingManifestSchema as fQ,
13135
- RecordingModeSchema as fR,
13136
- RecordingRangeSchema as fS,
13137
- RecordingRetentionSchema as fT,
13138
- RecordingRuleSchema as fU,
13139
- RecordingScheduleSchema as fV,
13140
- RecordingStatusSchema as fW,
13141
- RecordingStorageUsageSchema as fX,
13142
- RecordingWeekdaySchema as fY,
13143
- RegisteredStreamSchema as fZ,
13144
- ReportMotionInputSchema as f_,
13145
- PIPELINE_OWNER_CAPABILITY_NAMES as fa,
13146
- PackageUpdateSchema as fb,
13147
- PackageVersionInfoSchema as fc,
13148
- PasskeySummarySchema as fd,
13149
- PcmSampleFormatSchema as fe,
13150
- PerScopeBreakdownSchema as ff,
13151
- PickStreamPreferencesSchema as fg,
13152
- PickStreamRequirementsSchema as fh,
13153
- PickedCamStreamSchema as fi,
13154
- PipelineAssignmentSchema as fj,
13155
- PipelineDefaultStepSchema as fk,
13156
- PipelineEngineChoiceSchema as fl,
13157
- PipelineRunResultBridge as fm,
13158
- PipelineStepInputSchema as fn,
13159
- PlaceholderReasonSchema as fo,
13160
- PolygonPointSchema as fp,
13161
- PowerMeterStatusSchema as fq,
13162
- PresenceStatusSchema as fr,
13163
- PressureSensorStatusSchema as fs,
13164
- PrivacyMaskOptionsSchema as ft,
13165
- PrivacyMaskPatchSchema as fu,
13166
- PrivacyMaskRegionSchema as fv,
13167
- PrivacyMaskShapeSchema as fw,
13168
- PrivacyMaskStatusSchema as fx,
13169
- ProfileRtspEntrySchema as fy,
13170
- ProfileSlotSchema as fz,
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
- TopologyProcessSchema as g$,
13173
- RtspRestreamEntrySchema as g0,
13174
- RunnerCameraConfigSchema as g1,
13175
- RunnerCameraDeviceUIFields as g2,
13176
- RunnerLocalLoadSchema as g3,
13177
- RunnerLocalMetricsSchema as g4,
13178
- ScopedTokenSchema as g5,
13179
- ScopedTokenSummarySchema as g6,
13180
- ScriptRunnerStatusSchema as g7,
13181
- SearchResultSchema as g8,
13182
- SendEmailInputSchema as g9,
13183
- TestLocationResultSchema as gA,
13184
- WriteChunkInputSchema as gB,
13185
- StreamCodecSchema as gC,
13186
- StreamFormatSchema as gD,
13187
- StreamInfoSchema as gE,
13188
- StreamNetworkStatsSchema as gF,
13189
- StreamParamsOptionsSchema as gG,
13190
- StreamParamsStatusSchema as gH,
13191
- StreamProfileConfigSchema as gI,
13192
- StreamProfileOptionsSchema as gJ,
13193
- StreamProfilePatchSchema as gK,
13194
- StreamProfileSchema as gL,
13195
- StreamSourceEntrySchema$1 as gM,
13196
- StreamSourceSchema as gN,
13197
- SubscribeAudioChunksInputSchema as gO,
13198
- SubscribeAudioChunksResultSchema as gP,
13199
- SubscribeFramesInputSchema as gQ,
13200
- SubscribeFramesResultSchema as gR,
13201
- SwitchStatusSchema as gS,
13202
- SystemMetricsSchema as gT,
13203
- TamperStatusSchema as gU,
13204
- TankStatusSchema as gV,
13205
- TemperatureSensorStatusSchema as gW,
13206
- TestConnectionResultSchema as gX,
13207
- ToastSchema as gY,
13208
- TokenScopeSchema as gZ,
13209
- TopologyNodeSchema as g_,
13210
- SendEmailResultSchema as ga,
13211
- SettingsPatchSchema as gb,
13212
- SettingsRecordSchema$1 as gc,
13213
- SettingsSchemaWithValuesSchema as gd,
13214
- SettingsUpdateResultSchema as ge,
13215
- ShmRingStatsSchema as gf,
13216
- SmokeStatusSchema as gg,
13217
- SmtpStatusSchema as gh,
13218
- SnapshotImageSchema as gi,
13219
- SourceInfoSchema as gj,
13220
- SpatialDetectionSchema as gk,
13221
- SsoBridgeClaimsSchema as gl,
13222
- StartEmbeddedInputSchema as gm,
13223
- AbortUploadInputSchema as gn,
13224
- BeginDownloadInputSchema as go,
13225
- BeginDownloadResultSchema as gp,
13226
- BeginUploadInputSchema as gq,
13227
- BeginUploadResultSchema as gr,
13228
- EndDownloadInputSchema as gs,
13229
- FinalizeUploadInputSchema as gt,
13230
- StorageLocationDeclarationSchema as gu,
13231
- StorageLocationRefSchema as gv,
13232
- StorageLocationSchema as gw,
13233
- StorageLocationTypeSchema as gx,
13234
- ProviderInfoSchema as gy,
13235
- ReadChunkInputSchema as gz,
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
- TopologyServiceSchema as h0,
13238
- TrackSchema as h1,
13239
- TrackStateSchema as h2,
13240
- TrackedDetectionSchema as h3,
13241
- TurnServerSchema as h4,
13242
- BrokerInfoSchema$1 as h5,
13243
- UpdateIntegrationInputSchema as h6,
13244
- UpdateStatusSchema as h7,
13245
- UpdateUserInputSchema as h8,
13246
- UserRecordSchema as h9,
13247
- deviceMatchesProfile as hA,
13248
- encodeProfileFromStreamShape as hB,
13249
- event as hC,
13250
- expandCapMethods as hD,
13251
- getAudioMacroClassIds as hE,
13252
- isDeviceConfigCap as hF,
13253
- makeProfileBrokerId as hG,
13254
- makeSourceBrokerId as hH,
13255
- mapAudioLabelToMacro as hI,
13256
- method as hJ,
13257
- normalizeUnit as hK,
13258
- parseProfileBrokerId as hL,
13259
- resolveDeviceProfile as hM,
13260
- selectAssignedProfileSlots as hN,
13261
- webrtcClientHintsSchema as hO,
13262
- wiringAddonHealthSchema as hP,
13263
- wiringHealthSnapshotSchema as hQ,
13264
- wiringNodeHealthSchema as hR,
13265
- wiringProbeKindSchema as hS,
13266
- wiringProbeResultSchema as hT,
13267
- UserSummarySchema as ha,
13268
- VacuumControlStatusSchema as hb,
13269
- VacuumStateSchema as hc,
13270
- ValveStateSchema as hd,
13271
- ValveStatusSchema as he,
13272
- VibrationStatusSchema as hf,
13273
- VideoEncodeSchema as hg,
13274
- WELL_KNOWN_TABS as hh,
13275
- WELL_KNOWN_TAB_MAP as hi,
13276
- WaterHeaterStatusSchema as hj,
13277
- WeatherStatusSchema as hk,
13278
- WebrtcStreamChoiceSchema as hl,
13279
- WebrtcStreamTargetSchema as hm,
13280
- WidgetHostEnum as hn,
13281
- WidgetMetadataSchema as ho,
13282
- WidgetRemoteSchema as hp,
13283
- WidgetSizeEnum as hq,
13284
- YAMNET_TO_MACRO as hr,
13285
- ZoneKindEnum as hs,
13286
- ZoneRuleModeEnum as ht,
13287
- ZoneRuleSchema as hu,
13288
- ZoneRuleStageEnum as hv,
13289
- ZoneRulesArraySchema as hw,
13290
- ZoneSchema as hx,
13291
- ZoneScopeBreakdownSchema as hy,
13292
- accessoryStableId as hz,
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-Bpj3ScIH.mjs.map
13471
+ //# sourceMappingURL=index-BxWo3b49.mjs.map