@camstack/addon-model-studio 1.0.28 → 1.1.0

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.
@@ -7078,6 +7078,17 @@ var ModelCatalogEntrySchema = object({
7078
7078
  "imagenet",
7079
7079
  "none"
7080
7080
  ]).optional(),
7081
+ /**
7082
+ * The model already applies softmax IN-GRAPH — its raw output is a
7083
+ * probability distribution, not logits. When set, the `softmax`
7084
+ * postprocessor must NOT re-apply softmax: re-softmaxing an already-normalised
7085
+ * probability vector collapses it toward uniform (top-1 score craters far
7086
+ * below its true value, making every confidence gate meaningless). Absent ⇒
7087
+ * the output is raw logits and the postprocessor applies softmax (the normal
7088
+ * case). Set on the Google AIY Birds `bird-classifier` (softmax baked into the
7089
+ * TF graph). Threaded to the Python pool via `PoolModelConfig.outputProbabilities`.
7090
+ */
7091
+ outputProbabilities: boolean().optional(),
7081
7092
  preprocessMode: _enum(["letterbox", "resize"]).optional(),
7082
7093
  /**
7083
7094
  * Per-MODEL postprocessor override. Absent ⇒ the step's own
@@ -11122,10 +11133,7 @@ var ConfigUISchemaNullableBridge = custom();
11122
11133
  var InferenceCapabilitiesBridge = custom();
11123
11134
  var ModelAvailabilityListBridge = custom();
11124
11135
  var PipelineRunResultBridge = custom();
11125
- method(_void(), array(PipelineEngineChoiceSchema)), method(_void(), PipelineEngineChoiceSchema), method(PipelineEngineChoiceSchema, array(PipelineDefaultStepSchema)), method(_void(), PipelineEngineChoiceSchema, {
11126
- kind: "mutation",
11127
- auth: "admin"
11128
- }), method(object({ nodeId: string() }), EngineProvisioningSchema), method(_void(), record(string(), object({
11136
+ method(_void(), array(PipelineEngineChoiceSchema)), method(_void(), PipelineEngineChoiceSchema), method(PipelineEngineChoiceSchema, array(PipelineDefaultStepSchema)), method(object({ nodeId: string() }), EngineProvisioningSchema), method(_void(), record(string(), object({
11129
11137
  modelId: string(),
11130
11138
  settings: record(string(), unknown()).readonly()
11131
11139
  }))), method(object({ steps: record(string(), object({
@@ -11185,13 +11193,33 @@ method(_void(), array(PipelineEngineChoiceSchema)), method(_void(), PipelineEngi
11185
11193
  * (inputClasses ≠ null) are skipped and served per-track via
11186
11194
  * pipelineRunner.runDetailSubtree (two-plane design).
11187
11195
  */
11188
- plane: _enum(["full", "frame"]).optional()
11196
+ plane: _enum(["full", "frame"]).optional(),
11197
+ /**
11198
+ * Inference-device selector (Phase 2 multi-device). Format
11199
+ * `<backend>:<device>` (e.g. `openvino:gpu`, `edgetpu:usb`, `cpu`).
11200
+ * Omitted ⇒ the runner's default device (current single-engine
11201
+ * behaviour). Selects WHICH device pool of the node runs the call.
11202
+ */
11203
+ deviceKey: string().optional()
11189
11204
  }), PipelineRunResultBridge, { kind: "mutation" }), method(object({
11190
11205
  engine: PipelineEngineChoiceSchema.optional(),
11191
11206
  steps: array(PipelineStepInputSchema).min(1),
11192
11207
  frames: array(FrameInputSchema).min(1).max(255),
11193
11208
  deviceId: number().optional(),
11194
- sessionId: string().optional()
11209
+ sessionId: string().optional(),
11210
+ /**
11211
+ * Pure-inference benchmark hint. A NONZERO uint32 pins every frame in
11212
+ * the batch to the Python pool's bench preprocess cache
11213
+ * (`_bench_frame_id`) so a REPEATED benchmark frame is decoded +
11214
+ * preprocessed ONCE and every later inference is a pure-inference cache
11215
+ * hit — the sustained-throughput run measures inference, not
11216
+ * decode+preprocess+infer. Omitted/0 for live frames (all different →
11217
+ * full preprocess every call, correct). Fresh per sustained run;
11218
+ * released via `uncacheFrame`.
11219
+ */
11220
+ frameId: number().int().nonnegative().optional(),
11221
+ /** Inference-device selector (Phase 2 multi-device); see runPipeline. */
11222
+ deviceKey: string().optional()
11195
11223
  }), object({ results: array(PipelineRunResultBridge).readonly() }), { kind: "mutation" }), method(object({
11196
11224
  data: _instanceof(Uint8Array),
11197
11225
  width: number().int().positive(),
@@ -11223,8 +11251,18 @@ method(_void(), array(PipelineEngineChoiceSchema)), method(_void(), PipelineEngi
11223
11251
  * - `runtime` — main camera-serving engine (no idle TTL).
11224
11252
  * - `warm-override` — benchmark/test override held in the warm
11225
11253
  * cache; auto-disposed after the idle TTL.
11254
+ * - `device-pool` — a concurrent per-device pool (Phase 2
11255
+ * multi-device, keyed by `deviceKey`) resolved
11256
+ * via `resolveDeviceFactory`. Runs alongside the
11257
+ * `runtime` engine on a DIFFERENT accelerator
11258
+ * (NPU / iGPU / Coral) — this is how the
11259
+ * Engines tab shows all pools running at once.
11226
11260
  */
11227
- kind: _enum(["runtime", "warm-override"]),
11261
+ kind: _enum([
11262
+ "runtime",
11263
+ "warm-override",
11264
+ "device-pool"
11265
+ ]),
11228
11266
  /** Native pid of the underlying Python pool (null when no pool). */
11229
11267
  poolPid: number().nullable(),
11230
11268
  /** ms since this factory was last used (null when not warm-tracked). */
@@ -11566,7 +11604,14 @@ var RunnerCameraConfigSchema = object({
11566
11604
  * camera's detect node differs from its source-owner (P2d, gated by the
11567
11605
  * `remoteSourcingNodes` rollout setting).
11568
11606
  */
11569
- frameSource: RunnerFrameSourceSchema.default({ kind: "local-broker" })
11607
+ frameSource: RunnerFrameSourceSchema.default({ kind: "local-broker" }),
11608
+ /**
11609
+ * Inference-device selector for this camera's sessions (Phase 2 multi-device).
11610
+ * Format `<backend>:<device>` (e.g. `openvino:gpu`, `edgetpu:usb`, `cpu`);
11611
+ * omitted ⇒ the runner's default device. The engine itself stays node-local —
11612
+ * this only selects WHICH device pool of that node runs the session.
11613
+ */
11614
+ deviceKey: string().optional()
11570
11615
  });
11571
11616
  motionFpsField.min, motionFpsField.max, motionFpsField.step, motionFpsField.default, detectionFpsField.min, detectionFpsField.max, detectionFpsField.step, detectionFpsField.default, motionCooldownMsField.min, motionCooldownMsField.max, motionCooldownMsField.step, motionCooldownMsField.default, occupancyRecheckSecField.min, occupancyRecheckSecField.max, occupancyRecheckSecField.step, occupancyRecheckSecField.default, occupancyRecheckFramesField.min, occupancyRecheckFramesField.max, occupancyRecheckFramesField.step, occupancyRecheckFramesField.default;
11572
11617
  /**
@@ -11587,6 +11632,19 @@ var RunnerLocalLoadSchema = object({
11587
11632
  avgInferenceTimeMs: number(),
11588
11633
  /** Total queue depth across motion + detection queues. */
11589
11634
  queueDepthTotal: number(),
11635
+ /**
11636
+ * Per-inference-device live load (multi-device C4). One entry per deviceKey
11637
+ * this runner currently has attached cameras on, so the orchestrator's second
11638
+ * `balance()` pass (over a node's devices) weights on real per-pool session
11639
+ * counts. Empty on single-device / pre-multi-device runners. `queueDepthTotal`
11640
+ * per device is 0 until the pool backlog gets a public accessor (follow-up).
11641
+ */
11642
+ devices: array(object({
11643
+ deviceKey: string(),
11644
+ backend: string(),
11645
+ attachedCameras: number(),
11646
+ queueDepthTotal: number()
11647
+ })).default([]),
11590
11648
  /** Hardware capability flags reported by this node. */
11591
11649
  hardware: object({
11592
11650
  hasGpu: boolean(),
@@ -13062,6 +13120,8 @@ method(_void(), _void(), { kind: "mutation" }), method(_void(), _void(), { kind:
13062
13120
  kind: "mutation",
13063
13121
  auth: "admin"
13064
13122
  });
13123
+ DeviceType.Cover, DeviceType.Valve, DeviceType.Humidifier, DeviceType.WaterHeater, DeviceType.Camera, DeviceType.Hub, DeviceType.Switch, DeviceType.Siren, DeviceType.Light, DeviceType.Fan, DeviceType.Sensor, DeviceType.Thermostat, DeviceType.Climate, DeviceType.Button, DeviceType.EventEmitter, DeviceType.Update, DeviceType.Generic, DeviceType.Notifier, DeviceType.Script, DeviceType.Automation, DeviceType.Lock, DeviceType.MediaPlayer, DeviceType.AlarmPanel, DeviceType.Control, DeviceType.Presence, DeviceType.Weather, DeviceType.Vacuum, DeviceType.LawnMower, DeviceType.Container, DeviceType.Image, DeviceType.PetFeeder;
13124
+ new Set(Object.values(DeviceType));
13065
13125
  /**
13066
13126
  * `addon-pages` — system-scoped singleton aggregator cap. Public-facing
13067
13127
  * surface that admin-ui consumes through `useAddonPagesListPages()`.
@@ -16770,13 +16830,11 @@ var PipelineTemplateSchema = object({
16770
16830
  createdAt: string(),
16771
16831
  updatedAt: string()
16772
16832
  });
16773
- var AgentAddonConfigSchema = object({
16774
- enabled: boolean(),
16833
+ var DeviceStepConfigSchema = object({
16775
16834
  modelId: string().optional(),
16776
- settings: record(string(), unknown()).readonly()
16835
+ settings: record(string(), unknown()).optional()
16777
16836
  });
16778
16837
  var AgentPipelineSettingsSchema = object({
16779
- addonDefaults: record(string(), AgentAddonConfigSchema).readonly(),
16780
16838
  maxCameras: number().int().nonnegative().nullable().default(null),
16781
16839
  /** Per-node detection weight (relative share for the quota balancer). */
16782
16840
  detectWeight: number().positive().optional(),
@@ -16800,7 +16858,22 @@ var AgentPipelineSettingsSchema = object({
16800
16858
  * it already uses to reach the hub). Set this only when the auto-detected
16801
16859
  * address is wrong (multi-homed host, NAT, custom interface).
16802
16860
  */
16803
- reachableHost: string().optional()
16861
+ reachableHost: string().optional(),
16862
+ /**
16863
+ * Multi-device inference opt-in (Phase 4). Per-node map deviceKey → {enabled,
16864
+ * weight, steps}. Absent / all-disabled ⇒ the node's single default
16865
+ * accelerator (safe default); two+ enabled ⇒ the dispatcher balances
16866
+ * detection sessions across them so they run CONCURRENTLY. `steps` is the
16867
+ * per-(node,device) BASE provisioning (`stepId → {modelId?, settings?}`) —
16868
+ * the default model/settings for every camera landing on that accelerator;
16869
+ * a stepId absent ⇒ the step uses that device's format default.
16870
+ */
16871
+ inferenceDevices: record(string(), object({
16872
+ enabled: boolean(),
16873
+ weight: number().positive().optional(),
16874
+ maxSessions: number().int().positive().optional(),
16875
+ steps: record(string(), DeviceStepConfigSchema).optional()
16876
+ })).optional()
16804
16877
  });
16805
16878
  var CameraPipelineForAgentSchema = object({
16806
16879
  steps: array(PipelineStepInputSchema).readonly(),
@@ -16810,14 +16883,13 @@ var CameraPipelineForAgentSchema = object({
16810
16883
  }).nullable()
16811
16884
  });
16812
16885
  var CameraStepOverridePatchSchema = object({
16813
- enabled: boolean().optional(),
16814
16886
  modelId: string().optional(),
16815
16887
  settings: record(string(), unknown()).readonly().optional()
16816
16888
  });
16817
16889
  var CameraPipelineSettingsSchema = object({
16818
16890
  pinnedAgentNodeId: string().optional(),
16819
16891
  stepToggles: record(string(), boolean()).optional(),
16820
- stepOverridesByAgent: record(string(), record(string(), CameraStepOverridePatchSchema)).optional(),
16892
+ stepOverridesByDevice: record(string(), record(string(), record(string(), CameraStepOverridePatchSchema))).optional(),
16821
16893
  pipelineByAgent: record(string(), CameraPipelineForAgentSchema).optional()
16822
16894
  });
16823
16895
  /**
@@ -17031,6 +17103,44 @@ var CameraStatusSchema = object({
17031
17103
  /** Unix timestamp (ms) when this snapshot was composed server-side. */
17032
17104
  fetchedAt: number()
17033
17105
  });
17106
+ var NodeInferenceDeviceSchema = object({
17107
+ /** Stable per-node device key, e.g. `openvino:npu`, `edgetpu:usb`, `cpu`. */
17108
+ key: string(),
17109
+ backend: string(),
17110
+ device: string(),
17111
+ format: _enum(MODEL_FORMATS),
17112
+ /** Whether the node's live probe reports the device as usable right now. */
17113
+ available: boolean(),
17114
+ /**
17115
+ * Whether this device participates in dispatch. AUTO default (spec C2):
17116
+ * accelerators are opt-OUT (a discovered NPU/iGPU/Coral/ANE with no stored
17117
+ * entry is `true`); CPU is opt-IN (`false` by default — the fallback pool,
17118
+ * not a balanced target). An explicit stored value always wins; a stored-only
17119
+ * (unavailable) key keeps its stored value.
17120
+ */
17121
+ enabled: boolean(),
17122
+ /** Relative balancer weight for the enabled device (default 1). */
17123
+ weight: number(),
17124
+ /** Per-device concurrent-session cap; null = unlimited (multi-device C4). */
17125
+ maxSessions: number().nullable(),
17126
+ /** Object-detection model the executor defaults to for this deviceKey. */
17127
+ defaultModelId: string(),
17128
+ /**
17129
+ * Per-(node,device) BASE provisioning (C7.2/C7.4) — the RAW stored
17130
+ * `stepId → {modelId?, settings?}` map from `inferenceDevices[key].steps`.
17131
+ * Absent/empty ⇒ no base (every step uses its device format default). The
17132
+ * UI cross-references `pipelineExecutor.getSchema` for the models actually
17133
+ * available per format; this is the stored selection that becomes the
17134
+ * default for EVERY camera landing on this accelerator.
17135
+ */
17136
+ steps: record(string(), DeviceStepConfigSchema).optional()
17137
+ });
17138
+ var NodeInferenceDevicesSchema = object({
17139
+ nodeId: string(),
17140
+ /** False when the node's platform-probe was unreachable (no live device set). */
17141
+ reachable: boolean(),
17142
+ devices: array(NodeInferenceDeviceSchema).readonly()
17143
+ });
17034
17144
  method(object({
17035
17145
  deviceId: number(),
17036
17146
  agentNodeId: string()
@@ -17040,7 +17150,13 @@ method(object({
17040
17150
  }), method(object({ deviceId: number() }), object({ success: literal(true) }), {
17041
17151
  kind: "mutation",
17042
17152
  auth: "admin"
17043
- }), method(_void(), object({ migrated: number() }), {
17153
+ }), method(object({
17154
+ deviceId: number(),
17155
+ deviceKey: string()
17156
+ }), object({ success: literal(true) }), {
17157
+ kind: "mutation",
17158
+ auth: "admin"
17159
+ }), method(object({ deviceId: number() }), object({ deviceKey: string().nullable() })), method(_void(), object({ migrated: number() }), {
17044
17160
  kind: "mutation",
17045
17161
  auth: "admin"
17046
17162
  }), method(_void(), array(PipelineAssignmentSchema).readonly()), method(object({ deviceId: number() }), PipelineAssignmentSchema.nullable()), method(_void(), array(AgentLoadSummarySchema).readonly()), method(_void(), GlobalMetricsSchema), method(object({ deviceId: number() }), CameraMetricsSchema.nullable()), method(object({ nodeId: string() }), CapabilityBindingsSchema), method(object({
@@ -17074,13 +17190,7 @@ method(object({
17074
17190
  }))), method(object({ agentNodeId: string() }), AgentPipelineSettingsSchema.nullable()), method(_void(), array(object({
17075
17191
  nodeId: string(),
17076
17192
  settings: AgentPipelineSettingsSchema
17077
- })).readonly()), method(object({
17078
- agentNodeId: string(),
17079
- defaults: record(string(), AgentAddonConfigSchema)
17080
- }), object({ success: literal(true) }), {
17081
- kind: "mutation",
17082
- auth: "admin"
17083
- }), method(object({ agentNodeId: string() }), object({
17193
+ })).readonly()), method(object({ agentNodeId: string() }), object({
17084
17194
  success: boolean(),
17085
17195
  removed: boolean()
17086
17196
  }), {
@@ -17112,7 +17222,18 @@ method(object({
17112
17222
  }), object({ success: literal(true) }), {
17113
17223
  kind: "mutation",
17114
17224
  auth: "admin"
17115
- }), method(object({ agentNodeId: string() }), object({
17225
+ }), method(object({
17226
+ agentNodeId: string(),
17227
+ inferenceDevices: record(string(), object({
17228
+ enabled: boolean(),
17229
+ weight: number().positive().optional(),
17230
+ maxSessions: number().int().positive().optional(),
17231
+ steps: record(string(), DeviceStepConfigSchema).optional()
17232
+ }))
17233
+ }), object({ success: literal(true) }), {
17234
+ kind: "mutation",
17235
+ auth: "admin"
17236
+ }), method(object({ nodeId: string() }), NodeInferenceDevicesSchema), method(object({ agentNodeId: string() }), object({
17116
17237
  success: literal(true),
17117
17238
  /** Hardware-aware default detection model now in effect on the node (null when unresolvable). */
17118
17239
  effectiveModelId: string().nullable(),
@@ -17128,9 +17249,10 @@ method(object({
17128
17249
  }), object({ success: literal(true) }), {
17129
17250
  kind: "mutation",
17130
17251
  auth: "admin"
17131
- }), method(object({ deviceId: number() }), record(string(), record(string(), CameraStepOverridePatchSchema)).nullable()), method(object({
17252
+ }), method(object({ deviceId: number() }), record(string(), record(string(), record(string(), CameraStepOverridePatchSchema))).nullable()), method(object({
17132
17253
  deviceId: number(),
17133
17254
  agentNodeId: string(),
17255
+ deviceKey: string(),
17134
17256
  addonId: string(),
17135
17257
  patch: CameraStepOverridePatchSchema.nullable()
17136
17258
  }), object({ success: literal(true) }), {
@@ -17167,14 +17289,13 @@ method(object({
17167
17289
  });
17168
17290
  /**
17169
17291
  * server-management — per-NODE singleton capability for a node's ROOT
17170
- * package lifecycle (runtime-updatable node packages, phase 2: hub + docker
17171
- * agents).
17292
+ * package lifecycle (runtime-updatable node packages).
17172
17293
  *
17173
- * Each node's root package (`@camstack/server` on the hub, `@camstack/agent`
17174
- * on agents) carries the whole software stack in its npm dep tree, so ONE
17175
- * version describes the node. Updates install into
17176
- * `<dataDir>/server-root/versions/<v>/` and apply on restart via the baked
17177
- * starter (probation boot + auto-rollback to N-1).
17294
+ * Every node role runs the SAME root package (`@camstack/server`), which
17295
+ * carries the whole software stack in its npm dep tree, so ONE version
17296
+ * describes the node. Updates stage into `<dataDir>/server-root/` and apply
17297
+ * on restart via the baked starter (single-copy in-place swap — no probation,
17298
+ * no auto-rollback).
17178
17299
  *
17179
17300
  * Providers:
17180
17301
  * - HUB: `ServerUpdateService` behind the `server-provided` mount
@@ -17282,7 +17403,8 @@ method(_void(), ServerPackageStatusSchema, { auth: "admin" }), method(_void(), S
17282
17403
  /** Explicit target version; omitted = latest from the registry. */
17283
17404
  version: string().optional() }), ServerUpdateActionResultSchema, {
17284
17405
  kind: "mutation",
17285
- auth: "admin"
17406
+ auth: "admin",
17407
+ timeoutMs: 16 * 6e4
17286
17408
  }), method(_void(), ServerUpdateActionResultSchema, {
17287
17409
  kind: "mutation",
17288
17410
  auth: "admin"
@@ -18326,22 +18448,6 @@ var AddonAutoUpdateSchema = ChannelWithInheritSchema;
18326
18448
  var RestartAddonResultSchema = unknown();
18327
18449
  var InstallPackageResultSchema = unknown();
18328
18450
  var ReloadPackagesResultSchema = unknown();
18329
- /**
18330
- * Result of `updateFrameworkPackage`. The cap method returns BEFORE the
18331
- * server restarts so the admin UI can react to the `restartingAt`
18332
- * timestamp (shows reconnect overlay). The transition from
18333
- * `fromVersion` to `toVersion` will be confirmed by a subsequent
18334
- * `system.restart-completed` event after the new process boots.
18335
- *
18336
- * Spec: docs/superpowers/specs/2026-05-14-framework-live-update-design.md
18337
- */
18338
- var UpdateFrameworkPackageResultSchema = object({
18339
- packageName: string(),
18340
- fromVersion: string(),
18341
- toVersion: string(),
18342
- /** Ms-epoch the server scheduled its self-restart. */
18343
- restartingAt: number()
18344
- });
18345
18451
  var BulkUpdateItemStatusSchema = _enum([
18346
18452
  "queued",
18347
18453
  "updating",
@@ -18469,13 +18575,6 @@ method(_void(), array(AddonListItemSchema).readonly()), method(object({
18469
18575
  }), object({ success: literal(true) }), {
18470
18576
  kind: "mutation",
18471
18577
  auth: "admin"
18472
- }), method(object({
18473
- packageName: string().min(1),
18474
- version: string().optional(),
18475
- deferRestart: boolean().optional()
18476
- }), UpdateFrameworkPackageResultSchema, {
18477
- kind: "mutation",
18478
- auth: "admin"
18479
18578
  }), method(object({ name: string() }), array(PackageVersionInfoSchema).readonly()), method(object({ addonId: string() }), RestartAddonResultSchema, {
18480
18579
  kind: "mutation",
18481
18580
  auth: "admin"
@@ -19341,10 +19440,10 @@ var TopologyCategorySchema = object({
19341
19440
  addons: array(TopologyCategoryAddonSchema).readonly()
19342
19441
  });
19343
19442
  /**
19344
- * The node's runtime-updatable ROOT package (`@camstack/server` on the hub,
19345
- * `@camstack/agent` on agents) as reported by its `registerNode` manifest —
19346
- * version visibility for the Server management surface. Nullable: offline
19347
- * rows and pre-phase-2 nodes report none.
19443
+ * The node's runtime-updatable ROOT package (`@camstack/server` the single
19444
+ * root package for every node role) as reported by its `registerNode`
19445
+ * manifest — version visibility for the Server management surface. Nullable:
19446
+ * offline rows and nodes that never reported one.
19348
19447
  */
19349
19448
  var TopologyRootPackageSchema = object({
19350
19449
  name: string(),
@@ -19732,17 +19831,28 @@ var PlatformScoreSchema = object({
19732
19831
  format: _enum([
19733
19832
  "onnx",
19734
19833
  "coreml",
19735
- "openvino"
19834
+ "openvino",
19835
+ "tflite"
19736
19836
  ]),
19737
19837
  score: number(),
19738
19838
  reason: string(),
19739
19839
  available: boolean()
19740
19840
  });
19841
+ var InferenceDeviceDescriptorSchema = object({
19842
+ key: string(),
19843
+ backend: string(),
19844
+ device: string(),
19845
+ format: ModelFormatSchema,
19846
+ runtime: literal("python"),
19847
+ score: number(),
19848
+ available: boolean()
19849
+ });
19741
19850
  var PlatformCapabilitiesSchema = object({
19742
19851
  hardware: HardwareInfoSchema,
19743
19852
  scores: array(PlatformScoreSchema).readonly(),
19744
19853
  bestScore: PlatformScoreSchema,
19745
- pythonPath: string().nullable()
19854
+ pythonPath: string().nullable(),
19855
+ devices: array(InferenceDeviceDescriptorSchema).readonly()
19746
19856
  });
19747
19857
  var ModelRequirementSchema = object({
19748
19858
  modelId: string(),
@@ -20621,12 +20731,6 @@ Object.freeze({
20621
20731
  addonId: null,
20622
20732
  access: "delete"
20623
20733
  },
20624
- "addons.updateFrameworkPackage": {
20625
- capName: "addons",
20626
- capScope: "system",
20627
- addonId: null,
20628
- access: "create"
20629
- },
20630
20734
  "addons.updatePackage": {
20631
20735
  capName: "addons",
20632
20736
  capScope: "system",
@@ -23399,12 +23503,6 @@ Object.freeze({
23399
23503
  addonId: null,
23400
23504
  access: "view"
23401
23505
  },
23402
- "pipelineExecutor.reprobeEngine": {
23403
- capName: "pipeline-executor",
23404
- capScope: "system",
23405
- addonId: null,
23406
- access: "create"
23407
- },
23408
23506
  "pipelineExecutor.runAudioTest": {
23409
23507
  capName: "pipeline-executor",
23410
23508
  capScope: "system",
@@ -23555,6 +23653,12 @@ Object.freeze({
23555
23653
  addonId: null,
23556
23654
  access: "view"
23557
23655
  },
23656
+ "pipelineOrchestrator.getNodeInferenceDevices": {
23657
+ capName: "pipeline-orchestrator",
23658
+ capScope: "system",
23659
+ addonId: null,
23660
+ access: "view"
23661
+ },
23558
23662
  "pipelineOrchestrator.getPipelineAssignment": {
23559
23663
  capName: "pipeline-orchestrator",
23560
23664
  capScope: "system",
@@ -23567,6 +23671,12 @@ Object.freeze({
23567
23671
  addonId: null,
23568
23672
  access: "view"
23569
23673
  },
23674
+ "pipelineOrchestrator.getPipelineDevicePin": {
23675
+ capName: "pipeline-orchestrator",
23676
+ capScope: "system",
23677
+ addonId: null,
23678
+ access: "view"
23679
+ },
23570
23680
  "pipelineOrchestrator.listAgentSettings": {
23571
23681
  capName: "pipeline-orchestrator",
23572
23682
  capScope: "system",
@@ -23609,19 +23719,19 @@ Object.freeze({
23609
23719
  addonId: null,
23610
23720
  access: "create"
23611
23721
  },
23612
- "pipelineOrchestrator.setAgentAddonDefaults": {
23722
+ "pipelineOrchestrator.setAgentCapabilities": {
23613
23723
  capName: "pipeline-orchestrator",
23614
23724
  capScope: "system",
23615
23725
  addonId: null,
23616
23726
  access: "create"
23617
23727
  },
23618
- "pipelineOrchestrator.setAgentCapabilities": {
23728
+ "pipelineOrchestrator.setAgentDetectWeight": {
23619
23729
  capName: "pipeline-orchestrator",
23620
23730
  capScope: "system",
23621
23731
  addonId: null,
23622
23732
  access: "create"
23623
23733
  },
23624
- "pipelineOrchestrator.setAgentDetectWeight": {
23734
+ "pipelineOrchestrator.setAgentInferenceDevices": {
23625
23735
  capName: "pipeline-orchestrator",
23626
23736
  capScope: "system",
23627
23737
  addonId: null,
@@ -23663,6 +23773,12 @@ Object.freeze({
23663
23773
  addonId: null,
23664
23774
  access: "create"
23665
23775
  },
23776
+ "pipelineOrchestrator.setPipelineDevicePin": {
23777
+ capName: "pipeline-orchestrator",
23778
+ capScope: "system",
23779
+ addonId: null,
23780
+ access: "create"
23781
+ },
23666
23782
  "pipelineOrchestrator.unassignAudio": {
23667
23783
  capName: "pipeline-orchestrator",
23668
23784
  capScope: "system",
@@ -25215,32 +25331,6 @@ Object.freeze({
25215
25331
  "network-access": "ingress",
25216
25332
  "smtp-provider": "email"
25217
25333
  });
25218
- var frameworkSwapPackageSchema = object({
25219
- name: string(),
25220
- stagedPath: string(),
25221
- backupPath: string(),
25222
- toVersion: string(),
25223
- fromVersion: string().nullable()
25224
- });
25225
- object({
25226
- jobId: string(),
25227
- taskId: string(),
25228
- packages: array(frameworkSwapPackageSchema),
25229
- requestedAtMs: number(),
25230
- schemaVersion: literal(1)
25231
- });
25232
- object({
25233
- jobId: string(),
25234
- taskId: string(),
25235
- backups: array(object({
25236
- name: string(),
25237
- backupPath: string(),
25238
- livePath: string()
25239
- })),
25240
- appliedAtMs: number(),
25241
- bootAttempts: number(),
25242
- schemaVersion: literal(1)
25243
- });
25244
25334
  //#endregion
25245
25335
  //#region ../system/dist/model-download-service-Cp9f4dk6.mjs
25246
25336
  /** Build fetch headers, including HF auth token for huggingface.co URLs */
@@ -1,6 +1,6 @@
1
1
  import { c as e, g as t, h as n, l as r, n as i, p as a, r as o, t as s, u as c, y as l } from "./_virtual_mf___mfe_internal__addon_model_studio_page__loadShare__react__loadShare__.js-DJDHChgO.mjs";
2
2
  import { n as u, r as d, t as f } from "./_virtual_mf___mfe_internal__addon_model_studio_page__loadShare__react_mf_1_jsx_mf_2_runtime__loadShare__.js-ds_Ehzaa.mjs";
3
- import { f as p } from "./_virtual_mf___mfe_internal__addon_model_studio_page__loadShare___mf_0_camstack_mf_1_types__loadShare__.js-BOsI55Qr.mjs";
3
+ import { p } from "./_virtual_mf___mfe_internal__addon_model_studio_page__loadShare___mf_0_camstack_mf_1_types__loadShare__.js-BBPyU4jt.mjs";
4
4
  //#region ../ui-library/src/lib/cap-error.ts
5
5
  function m(e) {
6
6
  if (typeof e != "object" || !e) return null;
@@ -1,2 +1,2 @@
1
- import { n as e, t } from "./virtual_mf-REMOTE_ENTRY_ID___mfe_internal__addon_model_studio_page__remoteEntry_js-DvnLvZMm.mjs";
1
+ import { n as e, t } from "./virtual_mf-REMOTE_ENTRY_ID___mfe_internal__addon_model_studio_page__remoteEntry_js-Cx5SVwjE.mjs";
2
2
  export { t as get, e as init };
@@ -1,4 +1,4 @@
1
- import { s as e } from "./player-overlays-BR3IAbV5.mjs";
1
+ import { s as e } from "./player-overlays-ti6ZIRq1.mjs";
2
2
  var t = e("eye-off", [
3
3
  ["path", {
4
4
  d: "M10.733 5.076a10.744 10.744 0 0 1 11.205 6.575 1 1 0 0 1 0 .696 10.747 10.747 0 0 1-1.444 2.49",
@@ -2753,7 +2753,7 @@ async function rr(e) {
2753
2753
  }
2754
2754
  }
2755
2755
  async function ir() {
2756
- return tr ||= rr(() => import("./_virtual_mf-localSharedImportMap___mfe_internal__addon_model_studio_page-NMFv_zoJ.mjs")).catch((e) => {
2756
+ return tr ||= rr(() => import("./_virtual_mf-localSharedImportMap___mfe_internal__addon_model_studio_page-C5V4-tj8.mjs")).catch((e) => {
2757
2757
  throw tr = void 0, e;
2758
2758
  }), tr;
2759
2759
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@camstack/addon-model-studio",
3
- "version": "1.0.28",
3
+ "version": "1.1.0",
4
4
  "description": "Custom detection model registry, conversion & distribution for CamStack",
5
5
  "keywords": [
6
6
  "camstack",
@@ -1,26 +0,0 @@
1
- //#region \0virtual:mf:__mfe_internal__addon_model_studio_page__loadShare___mf_0_camstack_mf_1_types__loadShare__.js
2
- var e = "__mf_init__virtual:mf:__mfe_internal__addon_model_studio_page__mf_v__runtimeInit__mf_v__.js__", t = globalThis[e];
3
- if (!t) {
4
- let n, r, i = new Promise((e, t) => {
5
- n = e, r = t;
6
- });
7
- t = globalThis[e] = {
8
- initPromise: i,
9
- initResolve: n,
10
- initReject: r
11
- };
12
- }
13
- var n = t.initPromise, r = "__mf_module_cache__";
14
- globalThis[r] ||= {
15
- share: {},
16
- remote: {}
17
- }, globalThis[r].share ||= {}, globalThis[r].remote ||= {};
18
- var i = globalThis[r], a, o, s, c, l, u, d, f, p, m, h, g, _, v = (e) => {
19
- e.ACCESSORY_LABEL, a = e.ALL_CAPABILITY_DEFINITIONS, e.APPLE_SA_TO_MACRO, e.AUDIO_BACKEND_CHOICES, e.AUDIO_MACRO_LABELS, e.AccessoriesStatusSchema, e.AccessoryKind, e.AddBrokerInputSchema, e.AddonAutoUpdateSchema, e.AddonListItemSchema, e.AddonPageDeclarationSchema, e.AddonPageInfoSchema, e.AdoptionAdoptInputSchema, e.AdoptionAdoptResultSchema, e.AdoptionFilterSchema, e.AdoptionGetCandidateInputSchema, e.AdoptionListCandidatesInputSchema, e.AdoptionListCandidatesOutputSchema, e.AdoptionReleaseInputSchema, e.AdoptionStatusSchema, e.AgentLoadSummarySchema, e.AirQualitySensorStatusSchema, e.AlarmArmModeSchema, e.AlarmPanelStatusSchema, e.AlarmStateSchema, e.AlertSchema, e.AlertSeveritySchema, e.AlertSourceSchema, e.AlertStatusSchema, e.AmbientLightSensorStatusSchema, e.ApiKeyRecordSchema, e.ApiKeySummarySchema, e.ArchiveEntrySchema, e.ArchiveManifestSchema, e.AttachmentMediaTypeSchema, e.AttachmentSchema, e.AudioAnalysisResultSchema, e.AudioAnalysisSettingsSchema, e.AudioChunkInputSchema, e.AudioClassSummarySchema, e.AudioClassificationLabelSchema, e.AudioClassificationResultSchema, e.AudioCodecInfoSchema, e.AudioDecodeSessionConfigSchema, e.AudioEncodeSchema, e.AudioEncodeSessionConfigSchema, e.AudioEncodedChunkSchema, e.AudioEventSchema, e.AudioLevelSchema, e.AudioMetricsHistoryPointSchema, e.AudioMetricsHistorySchema, e.AudioMetricsSnapshotSchema, e.AudioPcmChunkSchema, e.AuthResultSchema, e.AutoUpdateSettingsSchema, e.AutomationControlStatusSchema, e.AvailableIntegrationTypeSchema, e.BACKEND_TO_FORMAT, e.BATTERY_DEVICE_PROFILE, e.BacklightModeSchema, e.BackupDestinationInfoSchema, e.BackupEntrySchema, e.BaseAddon, e.BaseDevice, e.BaseDeviceProvider, e.BatteryStatusSchema, e.BinaryStatusSchema, e.BoundingBoxSchema, e.BrightnessStatusSchema, e.BrokerAddInputSchema, e.BrokerAudioClientSchema, e.BrokerClientsSchema, e.BrokerConnectionDetailsSchema, e.BrokerConsumerAttributionSchema, e.BrokerConsumerKindSchema, e.BrokerDecodedClientSchema, e.BrokerEncodedClientSchema, e.BrokerGetStateInputSchema, e.BrokerInfoSchema, e.BrokerProviderInfoSchema, e.BrokerPublishInputSchema, e.BrokerRegistryStatusSchema, e.BrokerRtspClientSchema, e.BrokerStatsSchema, e.BrokerStatusEnum, e.BrokerStatusSchema, e.BrokerSubscribeInputSchema, e.BrokerSubscribeResultSchema, e.BrokerTestConnectionResultSchema, e.BrokerUnsubscribeInputSchema, e.CAM_PROFILE_ORDER, e.CAPABILITY_NAMES, e.CAPABILITY_ROUTER_KEYS, e.CAP_NAMES_WITH_STATUS, e.CAP_NODE_PIN_CONTEXT_KEY, e.CAP_PROVIDER_KIND_MAP, e.COCO_80_LABELS, e.COCO_TO_MACRO, e.CamProfileSchema, e.CamStreamDescriptorSchema, e.CamStreamKindSchema, e.CamStreamResolutionSchema, e.CameraAssignmentStatusSchema, e.CameraAudioStatusSchema, e.CameraBrokerProfileSchema, e.CameraBrokerStatusSchema, e.CameraCredentialsSchema, e.CameraCredentialsStatusSchema, e.CameraDecoderShmSchema, e.CameraDecoderStatusSchema, e.CameraDetectionPhaseSchema, e.CameraDetectionProvisioningSchema, e.CameraDetectionProvisioningStateSchema, e.CameraDetectionStatusSchema, e.CameraMetricsSchema, e.CameraMetricsWithDeviceIdSchema, e.CameraMotionStatusSchema, e.CameraRecordingModeSchema, e.CameraRecordingStatusSchema, e.CameraSourceStatusSchema, e.CameraSourceStreamSchema, e.CameraStatusSchema, e.CameraStreamSchema, e.CandidateQueryFilterSchema, e.CapScopeSchema, e.CapabilityBindingsSchema, e.CarbonMonoxideStatusSchema, e.ChargingStatus, e.ClientNetworkStatsSchema, e.ClimateControlStatusSchema, e.ClipPlaybackSchema, e.ClipSchema, e.ClusterAddonNodeDeploymentSchema, e.ClusterAddonStatusEntrySchema, e.CollectionColumnSchema, e.CollectionIndexSchema, e.ColorStatusSchema, e.ConfigEntrySchema, e.ConfigSectionWithValuesSchema, e.ConfigTabDeclarationSchema, e.ConnectivityStatusSchema, e.ConsumableItemSchema, e.ConsumablesStatusSchema, e.ContactStatusSchema, e.ControlKindSchema, e.ControlStatusSchema, e.ConvertArtifactSchema, e.ConvertResultSchema, e.ConvertTargetSchema, e.CoverStateSchema, e.CoverStatusSchema, e.CreateApiKeyInputSchema, e.CreateApiKeyResultSchema, e.CreateIntegrationInputSchema, e.CreateScopedTokenInputSchema, e.CreateScopedTokenResultSchema, e.CreateUserInputSchema, e.CustomActionInputSchema, e.CustomModelDescriptorSchema, e.DATAPLANE_SECRET_HEADER, e.DEFAULT_ADDON_PLACEMENT, e.DEFAULT_AUDIO_ANALYZER_CONFIG, e.DEFAULT_DECODER_HWACCEL_CONFIG, e.DEFAULT_EVENT_COLOR, e.DEFAULT_FEATURES, e.DEFAULT_RETENTION, e.DEFAULT_SCRUB_THUMBNAIL_PRESET, e.DEVICE_CAP_NAMES, e.DEVICE_PROFILES, e.DEVICE_SETTINGS_CONTRIBUTION_METHODS, e.DEVICE_STATUS_METHOD, e.DEVICE_TYPE_INFO, e.DayNightModeSchema, e.DayNightOptionsSchema, e.DayNightSettingsPatchSchema, e.DayNightStatusSchema, e.DecodedAudioChunkSchema, e.DecodedFrameSchema, e.DecoderSessionConfigSchema, e.DecoderStatsSchema, e.DeleteIntegrationResultSchema, e.DetectionSourceSchema, e.DeviceCodeSeveritySchema, e.DeviceConfig, e.DeviceDiscoveryStatusSchema, e.DeviceExportExposeInputSchema, e.DeviceExportStatusSchema, e.DeviceExportUnexposeInputSchema, o = e.DeviceFeature, e.DeviceInfoSchema, e.DeviceLinkModeSchema, e.DeviceNetworkStatsSchema, s = e.DeviceRole, e.DeviceRuntimeState, e.DeviceStatusSchema, c = e.DeviceType, e.DiscoveredChildDeviceSchema, e.DiscoveredChildStatusSchema, e.DiscoveredDeviceSchema, e.DiscoveredTargetSchema, e.DisposerChain, e.DoorbellPressEventSchema, e.DoorbellStatusSchema, e.EVENTFUL_CAP_NAMES, e.EVENT_KIND_BY_CAP, e.EVENT_PAD_MS, l = e.EVENT_TAXONOMY, e.EXPRESSION_BUILTINS, e.EXPRESSION_BUILTIN_NAMES, e.EXPRESSION_COMPILE_CACHE_CAPACITY, e.EXPRESSION_IDENTIFIER_RE, e.EXPRESSION_INJECTED_NOW, e.ElementConfigStore, e.EmbeddingInfoSchema, e.EmbeddingResultSchema, e.EncodeProfileSchema, e.EncodedPacketSchema, e.EnrichedWidgetMetadataSchema, e.EnumSensorDateTimeFormatSchema, e.EnumSensorStatusSchema, u = e.EventCategory, e.EventEmitterStatusSchema, e.EventFireSchema, e.EventItemSchema, e.EventKindCategorySchema, e.EventKindDescriptorSchema, e.EventKindIconSchema, e.EventKindSchema, e.EventSourceType, e.ExportDownloadSchema, e.ExportOptionsSchema, e.ExportRecordSchema, e.ExportSetupFieldSchema, e.ExportSetupSchema, e.ExportSpeedSchema, e.ExportStateSchema, e.ExportTimelapseSchema, d = e.ExposedDeviceSchema, e.ExposureModeSchema, e.ExpressionEvalError, e.ExpressionParseError, e.FanControlStatusSchema, e.FanDirectionSchema, e.FeatureManifestSchema, e.FeatureProbeStatusSchema, e.FloodStatusSchema, e.FrameHandleFormatSchema, e.FrameHandleSchema, e.FrameInputSchema, e.GasStatusSchema, e.GetStreamWithCodecInputSchema, e.GlobalMetricsSchema, e.HF_BASE_URL, e.HF_REPO, e.HWACCEL_OPTIONS, e.HealthStatusSchema, e.HistoryPointSchema, e.HistoryResolutionEnum, e.HumidifierStatusSchema, e.HumiditySensorStatusSchema, e.HvacModeSchema, e.ImageRotateSchema, e.ImageSettingsOptionsSchema, e.ImageSettingsPatchSchema, e.ImageSettingsStatusSchema, e.ImageStatusSchema, e.IngestOwnerSchema, e.InstalledPackageSchema, e.IntegrationLiteSchema, e.IntegrationWithStateSchema, e.IntercomAbilitySchema, e.IntercomStatusSchema, e.KNOWN_CAP_NAMES, e.KeyEventSchema, e.LabelDefinitionSchema, e.LawnMowerActivitySchema, e.LawnMowerControlStatusSchema, e.LinkedDeviceSchema, e.LlmDefaultSchema, e.LlmDefaultSelectorSchema, e.LlmErrorCodeSchema, e.LlmGenerateBaseInputSchema, e.LlmGenerateErrSchema, e.LlmGenerateOkSchema, e.LlmGenerateResultSchema, e.LlmImageSchema, e.LlmNodeModelSchema, e.LlmProfileKindDescriptorSchema, e.LlmProfileKindSchema, e.LlmProfileSchema, e.LlmRuntimeCompleteInputSchema, e.LlmRuntimeDiskUsageSchema, e.LlmRuntimeNodeSchema, e.LlmRuntimeStatusSchema, e.LlmUsageRollupSchema, e.LlmUsageSchema, e.LocateSegmentResultSchema, e.LocationStatSchema, e.LockControlStatusSchema, e.LockStateSchema, e.LogEntrySchema, e.LogLevelSchema, e.LogStreamEntrySchema, e.LoginMethodContributionSchema, e.LoginStageEnum, e.MACRO_LABELS, e.MAX_EXPRESSION_AST_NODES, e.MAX_EXPRESSION_BINDINGS, e.MAX_EXPRESSION_CALL_ARGS, e.MAX_EXPRESSION_EVAL_STEPS, e.MAX_EXPRESSION_SOURCE_LENGTH, e.METHOD_ACCESS_MAP, e.MODEL_FORMATS, e.ManagedModelCatalogEntrySchema, e.ManagedModelRefSchema, e.ManagedRuntimeConfigSchema, e.MaskGridDimsSchema, e.MaskGridShapeSchema, e.MaskLineShapeSchema, e.MaskPointSchema, e.MaskPolygonShapeSchema, e.MaskPolygonVerticesSchema, e.MaskRectShapeSchema, e.MaskShapeKindSchema, e.MaskShapeSchema, e.MediaFileSchema, e.MediaPlayerRepeatSchema, e.MediaPlayerStateSchema, e.MediaPlayerStatusSchema, e.MeshPeerSchema, e.MeshStatusSchema, e.MethodAccessSchema, e.ModelCatalogEntrySchema, e.ModelConvertInputSchema, e.ModelConvertMetadataSchema, e.ModelDistributeInputSchema, e.ModelDistributeResultSchema, e.ModelExtraFileSchema, e.ModelFormatEntrySchema, e.ModelFormatsSchema, e.ModelSubstitutionSchema, e.ModelVariantGroupSchema, e.MotionAnalysisResultSchema, e.MotionEventSchema, e.MotionOnMotionChangedDataSchema, e.MotionRegionSchema, e.MotionSourceEnum, e.MotionSourcesSchema, e.MotionStatusSchema, e.MotionTriggerRuntimeStateSchema, e.MotionTriggerStatusSchema, e.MotionZoneOptionsSchema, e.MotionZonePatchSchema, e.MotionZoneRegionSchema, e.MotionZoneStatusSchema, e.MqttBrokerStatusSchema, e.NativeDetectionSchema, e.NativeObjectClassEnum, e.NativeObjectDetectionRuntimeStateSchema, e.NativeObjectDetectionStatusSchema, e.NetworkAccessStatusSchema, e.NetworkAddressSchema, e.NetworkEndpointSchema, e.NotificationActionSchema, e.NotificationFormatSchema, e.NotificationHistoryEntrySchema, e.NotificationRuleSchema, e.NotificationSchema, e.NotifierStatusSchema, e.NumericSensorStatusSchema, e.OPS_LOG_DEFAULT_LIMIT, e.OPS_LOG_RING_DEFAULT_MAX, e.OauthIntegrationDescriptorSchema, e.ObjectEventSchema, e.OpsLogDomainSchema, e.OpsLogEntrySchema, e.OpsLogOpSchema, e.OpsLogQueryInputSchema, e.OpsLogReasonSchema, e.OrchestratorMetricsSchema, e.OsdOverlayKindEnum, e.OsdOverlayPatchSchema, e.OsdOverlaySchema, e.OsdPositionEnum, e.OsdStatusSchema, f = e.PET_FEEDER_MANUAL_FEED_MAX, p = e.PET_FEEDER_MANUAL_FEED_MIN, e.PIPELINE_FLOW_CAPABILITY_NAMES, e.PIPELINE_OWNER_CAPABILITY_NAMES, e.PROVIDER_KIND_CAP_NAMES, e.PYTHON_SCRIPT, e.PackageUpdateSchema, e.PackageVersionInfoSchema, e.PasskeyLoginMethodSchema, e.PasskeySummarySchema, e.PcmSampleFormatSchema, e.PerScopeBreakdownSchema, e.PetFeederStatusSchema, e.PickStreamPreferencesSchema, e.PickStreamRequirementsSchema, e.PickedCamStreamSchema, e.PipelineAssignmentSchema, e.PipelineDefaultStepSchema, e.PipelineEngineChoiceSchema, e.PipelineRunResultBridge, e.PipelineStepInputSchema, e.PipelineValidationIssueSchema, e.PipelineValidationResultSchema, e.PlaceholderReasonSchema, e.PolygonPointSchema, e.PowerMeterStatusSchema, e.PresenceStatusSchema, e.PressureSensorStatusSchema, e.PrivacyMaskOptionsSchema, e.PrivacyMaskPatchSchema, e.PrivacyMaskRegionSchema, e.PrivacyMaskShapeSchema, e.PrivacyMaskStatusSchema, e.ProfileRtspEntrySchema, e.ProfileSlotSchema, e.ProfileSlotStatusSchema, e.ProviderStatusSchema, e.PtzAutotrackRuntimeStateSchema, e.PtzAutotrackSettingsSchema, e.PtzAutotrackStatusSchema, e.PtzAutotrackTargetOptionSchema, e.PtzMoveCommandSchema, e.PtzPositionSchema, e.PtzPresetSchema, e.PtzStatusSchema, e.QueryFilterSchema, e.REACHABILITY_FAILURES_TO_OFFLINE, e.REACHABILITY_POLL_INTERVAL_MS, e.REACHABILITY_PROBE_TIMEOUT_MS, e.RECOGNITION_TYPES, e.RESERVED_BINDING_NAMES, e.RUNTIME_DEFAULTS, e.RUNTIME_TO_FORMAT, e.RawStateResultSchema, e.ReadSegmentBytesResultSchema, e.ReadinessRegistry, e.ReadinessTimeoutError, e.RecentTracksPageSchema, e.RecentTracksQueryInput, e.RecordingAvailabilitySchema, e.RecordingBandModeSchema, e.RecordingBandSchema, e.RecordingBandTriggersSchema, e.RecordingConfigSchema, e.RecordingDaysSchema, e.RecordingDeviceUsageSchema, e.RecordingLocationUsageSchema, e.RecordingManifestSchema, e.RecordingModeSchema, e.RecordingRangeSchema, e.RecordingRetentionSchema, e.RecordingRuleSchema, e.RecordingScheduleSchema, e.RecordingStatusSchema, e.RecordingStorageModeSchema, e.RecordingStorageUsageSchema, e.RecordingTriggersSchema, e.RecordingWeekdaySchema, e.RedirectLoginMethodSchema, e.RenderedAsSchema, e.ReportMotionInputSchema, e.RingBuffer, e.RtpSourceSchema, e.RtspRestreamEntrySchema, e.RunnerCameraConfigSchema, e.RunnerCameraDeviceUIFields, e.RunnerFrameSourceSchema, e.RunnerLocalLoadSchema, e.RunnerLocalMetricsSchema, e.SCOPE_PRESETS, e.SCRUB_THUMBNAIL_PRESETS, e.SCRUB_THUMBNAIL_PRESET_LABELS, e.SCRUB_THUMBNAIL_PRESET_ORDER, e.SOURCE_INFO_METADATA_KEY, e.STREAM_PROFILE_META, e.STREAM_QUALITY_LABELS, e.SUB_DETECTION_TYPES, e.SYSTEM_CAP_NAMES, e.SceneCheckSchema, e.SceneConditionSchema, e.SceneMonitorSchema, e.SceneMonitorStateSchema, e.SceneMonitorStatusSchema, e.SceneReferenceSchema, e.ScopedTokenSchema, e.ScopedTokenSummarySchema, e.ScoredObjectEventSchema, e.ScriptRunnerStatusSchema, e.ScrubThumbnailPresetSchema, e.SearchResultSchema, e.SendEmailInputSchema, e.SendEmailResultSchema, e.SendResultSchema, e.SensorEventSchema, e.ServerBootModeSchema, e.ServerPackageStatusSchema, e.ServerRollbackInfoSchema, e.ServerUpdateActionResultSchema, e.ServerUpdateCheckResultSchema, e.ServerUpdateStateSchema, e.SettingsPatchSchema, e.SettingsRecordSchema, e.SettingsSchemaWithValuesSchema, e.SettingsUpdateResultSchema, e.ShmRingStatsSchema, e.SmokeStatusSchema, e.SmtpStatusSchema, e.SnapshotImageSchema, m = e.SourceInfoSchema, e.SpatialDetectionSchema, e.SsoBridgeClaimsSchema, e.StartEmbeddedInputSchema, e.StationaryObjectSchema, e.StorageAbortUploadInputSchema, e.StorageBeginDownloadInputSchema, e.StorageBeginDownloadResultSchema, e.StorageBeginUploadInputSchema, e.StorageBeginUploadResultSchema, e.StorageEndDownloadInputSchema, e.StorageFinalizeUploadInputSchema, e.StorageLocationDeclarationSchema, e.StorageLocationRefSchema, e.StorageLocationSchema, e.StorageLocationTypeSchema, e.StorageProviderInfoSchema, e.StorageReadChunkInputSchema, e.StorageTestLocationResultSchema, e.StorageWriteChunkInputSchema, e.StreamCodecSchema, e.StreamFormatSchema, e.StreamNetworkStatsSchema, e.StreamParamsOptionsSchema, e.StreamParamsStatusSchema, e.StreamProfileConfigSchema, e.StreamProfileOptionsSchema, e.StreamProfilePatchSchema, e.StreamProfileSchema, e.StreamSourceEntrySchema, e.StreamSourceSchema, e.SubscribeAudioChunksInputSchema, e.SubscribeAudioChunksResultSchema, e.SubscribeFramesInputSchema, e.SubscribeFramesResultSchema, e.SwitchStatusSchema, e.SystemMetricsSchema, e.SystemMirror, e.TAXONOMY_COLORS, e.TIMEZONES, e.TamperStatusSchema, e.TankStatusSchema, e.TargetKindCapsSchema, e.TargetKindLevelSchema, e.TargetKindSchema, e.TargetSchema, e.TemperatureSensorStatusSchema, e.TestConnectionResultSchema, e.TestResultSchema, e.ToastSchema, e.TokenScopeSchema, e.TopologyNodeSchema, e.TopologyProcessSchema, e.TopologyServiceSchema, e.TrackCascadeCountsSchema, e.TrackEnvelopeSchema, e.TrackProjectionSchema, e.TrackSchema, e.TrackStateSchema, e.TrackZoneFilterSchema, e.TrackedDetectionSchema, e.TurnServerSchema, e.UNIT_TABLE, e.UnifiedBrokerInfoSchema, e.UnitConversionError, e.UpdateIntegrationInputSchema, e.UpdateStatusSchema, e.UpdateUserInputSchema, e.UserRecordSchema, e.UserSummarySchema, e.VacuumControlStatusSchema, e.VacuumStateSchema, e.ValveStateSchema, e.ValveStatusSchema, e.VibrationStatusSchema, e.VideoEncodeSchema, e.WELL_KNOWN_TABS, e.WELL_KNOWN_TAB_MAP, e.WaterHeaterStatusSchema, e.WeatherStatusSchema, e.WebrtcStreamChoiceSchema, e.WebrtcStreamTargetSchema, e.WhiteBalanceModeSchema, e.WidgetHostEnum, e.WidgetLoginMethodSchema, e.WidgetMetadataSchema, e.WidgetRemoteSchema, e.WidgetSizeEnum, e.YAMNET_TO_MACRO, e.ZoneKindEnum, e.ZoneRuleModeEnum, e.ZoneRuleSchema, e.ZoneRuleStageEnum, e.ZoneRulesArraySchema, e.ZoneSchema, e.ZoneScopeBreakdownSchema, e.accessoriesCapability, e.accessoryStableId, e.addonPagesCapability, e.addonPagesSourceCapability, e.addonRoutesCapability, e.addonSettingsCapability, e.addonWidgetsCapability, e.addonWidgetsSourceCapability, e.addonsCapability, e.adminUiCapability, e.advancedNotifierCapability, e.airQualitySensorCapability, e.alarmPanelCapability, e.alertsCapability, e.ambientLightSensorCapability, e.applyTransform, e.asBoolean, e.asJsonArray, e.asJsonObject, e.asNumber, e.asString, e.audioAnalysisCapability, e.audioAnalyzerCapability, e.audioCodecCapability, e.audioMetricsCapability, e.authProviderCapability, e.autoAssignProfiles, e.automationControlCapability, e.backupCapability, e.batteryCapability, e.bestLocationMatch, e.binaryCapability, e.bindAddonActions, e.brightnessCapability, e.brokerCapability, e.buildAddonRouteProvider, e.buildEventKindDescriptor, e.buildModelVariantGroups, e.buildStreamParamsConfigSchema, e.buttonCapability, e.cameraCredentialsCapability, e.cameraPipelineConfigCapability, e.cameraStreamsCapability, h = e.canConvertUnit, e.carbonMonoxideCapability, e.cellsToRects, e.classifyStream, e.classifyStreams, e.climateControlCapability, e.collectHydratedFieldEntries, e.collectHydratedFieldValues, e.colorCapability, e.colorForKind, e.compileExpression, e.compileExpressionSafe, e.connectivityCapability, e.consumablesCapability, e.contactCapability, e.controlCapability, e.convertUnit, e.cosineSimilarity, e.coverCapability, g = e.createDeviceProxy, e.createDurableState, e.createEvent, e.createExpressionScope, e.createLazyTrpcSource, e.createMirrorSource, e.createRuntimeStateBridge, e.createSliceHandle, e.createSystemProxy, e.customAction, e.customModelRegistryCapability, e.dayNightCapability, e.decoderCapability, e.defaultDeviceFor, e.defineCustomActions, e.describeModelVariant, e.detectionPipelineCapability, e.deviceAdoptionCapability, e.deviceCustomAction, e.deviceDiscoveryCapability, e.deviceExportCapability, e.deviceManagerCapability, e.deviceMatchesProfile, e.deviceOpsCapability, e.deviceProviderCapability, e.deviceStateCapability, e.deviceStatusCapability, e.doorbellCapability, e.embeddingEncoderCapability, e.emitDownForOwnedCaps, e.emitReadiness, e.encodeProfileFromStreamShape, e.enumSensorCapability, e.enumerateItemArrayFields, e.enumerateSchemaFields, e.errMsg, e.evaluateAst, e.evaluateLinkExpression, e.evaluateZoneRules, e.event, e.eventEmitterCapability, e.eventsCapability, e.expandCapMethods, e.extractNestedAddonId, e.extractSourceInfoFromMetadata, e.faceGalleryCapability, e.fanControlCapability, e.featureProbeCapability, e.filesystemBrowseCapability, e.findTimezone, e.floodCapability, e.formatForBackend, e.formatForRuntime, e.frameworkSwapConfirmSchema, e.frameworkSwapPackageSchema, e.gasCapability, e.getAudioMacroClassIds, e.getByPath, e.getCapsByProviderKind, e.getTaxonomyEntry, e.hfModelUrl, e.htmlToText, e.humidifierCapability, e.humiditySensorCapability, e.hydrateSchema, e.imageCapability, e.imageSettingsCapability, e.integrationsCapability, e.intercomCapability, e.isAgentOnlyPlacement, e.isArrayOutputSchema, e.isCollectionArrayMethod, e.isDeployableToAgent, e.isDeviceConfigCap, e.isEvent, e.isObjectInput, e.isVoidInput, e.jobKindSchema, e.kebabToCamel, e.lawnMowerControlCapability, e.lifecycleJobSchema, e.lifecycleJobScopeSchema, e.lifecycleJobStateSchema, e.lifecycleTaskSchema, e.llmCapability, e.llmRuntimeCapability, e.localNetworkCapability, e.locationSimilarity, e.lockControlCapability, e.logDestinationCapability, e.loginMethodCapability, e.looseSchema, e.makeProfileBrokerId, e.makeSourceBrokerId, e.mapAudioLabelToMacro, e.markdownToHtmlLite, e.markdownToText, e.maskUrlCredentials, e.mediaPlayerCapability, e.mergeSourceInfo, e.meshNetworkCapability, e.method, e.metricsProviderCapability, e.migrateConfigToBands, e.modelConvertCapability, e.modelDistributorCapability, e.modelFormatForRuntime, e.motionCapability, e.motionDetectionCapability, e.motionTriggerCapability, e.motionZonesCapability, e.mqttBrokerCapability, e.nativeObjectDetectionCapability, e.networkAccessCapability, e.networkQualityCapability, e.nodePin, e.nodesCapability, e.normalizeAddonInitResult, e.normalizeUnit, e.notificationOutputCapability, e.notifierCapability, e.numericSensorCapability, e.oauthIntegrationCapability, e.objectInputDeclaresAddonId, e.osdCapability, e.parseCameraStreamConfig, e.parseExpression, e.parseJsonArray, e.parseJsonObject, e.parseJsonUnknown, e.parseProfileBrokerId, e.parseStreamParamsFormPatch, e.pendingFrameworkSwapSchema, e.petFeederCapability, e.pickPreferredRtspEntry, e.pipelineAnalyticsCapability, e.pipelineExecutorCapability, e.pipelineOrchestratorCapability, e.pipelineRunnerCapability, e.plateGalleryCapability, e.platformProbeCapability, e.powerMeterCapability, e.prepareNotification, e.presenceCapability, e.pressureSensorCapability, e.privacyMaskCapability, e.procedureAuthKey, e.ptzAutotrackCapability, e.ptzCapability, e.pythonScriptForBackend, e.readNodePin, e.readinessKey, e.rebootCapability, e.recordingCapability, e.recordingExportCapability, e.rectsToCells, e.requiresPython, e.resolveAddonExecution, e.resolveAddonGroup, e.resolveAddonPlacement, e.resolveAddonRuntime, e.resolveCapMount, e.resolveDetectionRuntime, e.resolveDeviceProfile, e.resolveFormat, e.resolveHydratedFieldValue, e.resolveModelFormat, e.resolveRunnerId, e.resolveScrubThumbnailGeometry, e.resolveVariantModelId, e.runInferenceStep, e.runtimeDevices, e.sceneMonitorCapability, e.scopeKey, e.scoreRuntimes, e.scriptRunnerCapability, e.selectAssignedProfileSlots, e.serverManagementCapability, e.setByPath, e.settingsStoreCapability, e.sleep, e.sleepCancellable, e.smokeCapability, e.smtpProviderCapability, e.snapshotCapability, e.ssoBridgeCapability, e.startReachabilityPoll, e.storageCapability, e.storageEvictableCapability, e.storageProviderCapability, e.streamBrokerCapability, e.streamCatalogCapability, e.streamParamsCapability, e.streamPixels, e.streamQualityLabel, e.subKindsOf, e.supportedRuntimes, e.switchCapability, e.synthesizeSourceInfo, e.systemCapability, e.tamperCapability, e.taskLogEntrySchema, e.taskPhaseSchema, e.taskTargetSchema, e.temperatureSensorCapability, e.textToHtml, e.toDeviceSummary, e.toExpressionValue, e.toStreamSourceEntry, e.toastCapability, e.tokenize, e.transcodeBody, _ = e.tryConvertUnit, e.turnProviderCapability, e.unitDimension, e.unitsForDimension, e.updateCapability, e.userManagementCapability, e.userPasskeysCapability, e.vacuumControlCapability, e.validateExpressionSource, e.valveCapability, e.vibrationCapability, e.videoclipsCapability, e.viewerUiCapability, e.waterHeaterCapability, e.weatherCapability, e.webrtcClientHintsSchema, e.webrtcSessionCapability, e.wiringAddonHealthSchema, e.wiringHealthSnapshotSchema, e.wiringNodeHealthSchema, e.wiringProbeKindSchema, e.wiringProbeResultSchema, e.zodEntriesToConfigUI, e.zoneAnalyticsCapability, e.zoneRulesCapability, e.zonesCapability, e.default;
20
- }, y = i.share["default:@camstack/types"];
21
- y === void 0 ? n.then(() => {
22
- if (y = i.share["default:@camstack/types"], y === void 0) throw Error("[Module Federation] Shared module @camstack/types was imported before federation bootstrap finished.");
23
- v(y);
24
- }) : v(y);
25
- //#endregion
26
- export { l as a, f as c, h as d, g as f, c as i, p as l, o as n, u as o, _ as p, s as r, d as s, a as t, m as u };