@camstack/addon-model-studio 1.0.25 → 1.0.27

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.
@@ -4646,7 +4646,26 @@ function _instanceof(cls, params = {}) {
4646
4646
  return inst;
4647
4647
  }
4648
4648
  //#endregion
4649
- //#region ../types/dist/event-category-H4AVePnn.mjs
4649
+ //#region ../../node_modules/zod/v4/classic/compat.js
4650
+ /** @deprecated Use the raw string literal codes instead, e.g. "invalid_type". */
4651
+ var ZodIssueCode = {
4652
+ invalid_type: "invalid_type",
4653
+ too_big: "too_big",
4654
+ too_small: "too_small",
4655
+ invalid_format: "invalid_format",
4656
+ not_multiple_of: "not_multiple_of",
4657
+ unrecognized_keys: "unrecognized_keys",
4658
+ invalid_union: "invalid_union",
4659
+ invalid_key: "invalid_key",
4660
+ invalid_element: "invalid_element",
4661
+ invalid_value: "invalid_value",
4662
+ custom: "custom"
4663
+ };
4664
+ /** @deprecated Do not use. Stub definition, only included for zod-to-json-schema compatibility. */
4665
+ var ZodFirstPartyTypeKind;
4666
+ ZodFirstPartyTypeKind || (ZodFirstPartyTypeKind = {});
4667
+ //#endregion
4668
+ //#region ../types/dist/event-category-D4HJq7Mw.mjs
4650
4669
  var EventCategory = /* @__PURE__ */ function(EventCategory) {
4651
4670
  EventCategory["SystemBoot"] = "system.boot";
4652
4671
  EventCategory["SystemAddonsReady"] = "system.addons-ready";
@@ -4799,6 +4818,11 @@ var EventCategory = /* @__PURE__ */ function(EventCategory) {
4799
4818
  /** Runner-sampled scrub thumbnail (~1/5 s/camera). Telemetry (D8): a lost
4800
4819
  * thumb is a scrub gap the recorder's keyframe backfill covers. */
4801
4820
  EventCategory["RecordingThumbSampled"] = "recording.thumb-sampled";
4821
+ /** Export render progress (0–100). Telemetry (D8): a lost tick is a stale
4822
+ * progress bar the client reconciles via `recordingExport.getExport`. */
4823
+ EventCategory["RecordingExportProgress"] = "recording.export.progress";
4824
+ EventCategory["RecordingExportCompleted"] = "recording.export.completed";
4825
+ EventCategory["RecordingExportFailed"] = "recording.export.failed";
4802
4826
  EventCategory["DetectionEvent"] = "detection.event";
4803
4827
  EventCategory["SessionTrackNew"] = "session.track.new";
4804
4828
  EventCategory["SessionTrackExpired"] = "session.track.expired";
@@ -5088,6 +5112,25 @@ var EventCategory = /* @__PURE__ */ function(EventCategory) {
5088
5112
  */
5089
5113
  EventCategory["PipelineAnalyticsStationaryChanged"] = "pipeline-analytics.stationary-changed";
5090
5114
  /**
5115
+ * Fired by `addon-post-analysis` when a package-drop is confirmed inside
5116
+ * a package zone — a newly-appeared stationary object of a package class
5117
+ * that cleared the class / zone / dwell / size gates. Payload:
5118
+ * `PipelineAnalyticsPackageDeliveredPayload` carrying `{ deviceId,
5119
+ * entryId, className, zoneIds, keyFrameMediaKey?, bbox, timestamp }`.
5120
+ * Telemetry (D8): the durable record is the `package-events` store row;
5121
+ * this bus topic drives notifier rules + live UI. See
5122
+ * docs/superpowers/specs/2026-07-17-package-zones-design.md §5.1.
5123
+ */
5124
+ EventCategory["PipelineAnalyticsPackageDelivered"] = "pipeline-analytics.package-delivered";
5125
+ /**
5126
+ * Fired by `addon-post-analysis` when a previously-delivered package
5127
+ * leaves its zone (the stationary entry departed — moved or swept).
5128
+ * Payload: `PipelineAnalyticsPackagePickedUpPayload` carrying
5129
+ * `{ deviceId, entryId, deliveredEventId, className, timestamp }`.
5130
+ * Telemetry (D8). See package-zones-design §5.2.
5131
+ */
5132
+ EventCategory["PipelineAnalyticsPackagePickedUp"] = "pipeline-analytics.package-picked-up";
5133
+ /**
5091
5134
  * Fired by `addon-post-analysis` whenever a gallery face row changes:
5092
5135
  * `kind:'buffered'` a new detected face was persisted, `'assigned'` /
5093
5136
  * `'unassigned'` its identity link changed, `'deleted'` the row was
@@ -7296,6 +7339,62 @@ var RecordingConfigSchema = object({
7296
7339
  scrubThumbnails: ScrubThumbnailPresetSchema.optional()
7297
7340
  });
7298
7341
  /**
7342
+ * Ops-log — the durable, append-only operations audit shared by the
7343
+ * recordings and events management surfaces.
7344
+ *
7345
+ * ONE row shape is reused for both domains so a single "Activity" view can
7346
+ * merge the recorder's DurableState ring (recordings ops-log) and the
7347
+ * pipeline-analytics SQLite collection (events ops-log). Each row records a
7348
+ * management operation, WHY it ran (reason), and its measurable effect
7349
+ * (itemsAffected + bytesReclaimed). Writes are best-effort — a failed log must
7350
+ * never fail the operation it records.
7351
+ */
7352
+ /** Which management domain the operation belongs to. */
7353
+ var OpsLogDomainSchema = _enum(["recording", "events"]);
7354
+ /** The kind of management operation performed. */
7355
+ var OpsLogOpSchema = _enum([
7356
+ "prune",
7357
+ "manual-delete",
7358
+ "rescan",
7359
+ "retention-run"
7360
+ ]);
7361
+ /** Why the operation ran. */
7362
+ var OpsLogReasonSchema = _enum([
7363
+ "retention",
7364
+ "quota",
7365
+ "manual",
7366
+ "operator"
7367
+ ]);
7368
+ /** One audit row, shared verbatim by both domains. */
7369
+ var OpsLogEntrySchema = object({
7370
+ /** Unique row id. */
7371
+ id: string(),
7372
+ /** Epoch ms the operation completed. */
7373
+ at: number(),
7374
+ domain: OpsLogDomainSchema,
7375
+ op: OpsLogOpSchema,
7376
+ reason: OpsLogReasonSchema,
7377
+ /** The camera the op targeted; null for a cluster/global op. */
7378
+ deviceId: number().nullable(),
7379
+ /** Node that performed the op (the log carries nodeId — no cross-node aggregation). */
7380
+ nodeId: string(),
7381
+ /** Buckets / rows deleted (op-specific unit). */
7382
+ itemsAffected: number(),
7383
+ /** Bytes reclaimed by the op (0 when not measurable). */
7384
+ bytesReclaimed: number(),
7385
+ /** Free-text detail (e.g. "floor moved to <ts>"); null when none. */
7386
+ detail: string().nullable(),
7387
+ /** Who/what triggered the op. */
7388
+ actor: string()
7389
+ });
7390
+ /** Shared query input for the per-domain `listOpsLog` cap methods. */
7391
+ var OpsLogQueryInputSchema = object({
7392
+ /** Restrict to a single camera; omit for every row. */
7393
+ deviceId: number().optional(),
7394
+ /** Max rows returned, newest-first. */
7395
+ limit: number().int().min(1).max(1e3).optional()
7396
+ });
7397
+ /**
7299
7398
  * `StorageLocationType` — an addon-declared id that identifies the *kind* of
7300
7399
  * storage a location serves. Defined here (not in `capabilities/storage.cap.ts`)
7301
7400
  * so the persisted record schema and the consumer-facing cap can both consume it
@@ -12575,7 +12674,11 @@ array(ZoneRuleSchema).readonly();
12575
12674
  * Extend the enum here when a new gating consumer comes online (audio
12576
12675
  * gating, alert filtering, …) — no other surface needs to change.
12577
12676
  */
12578
- var ZoneRuleStageEnum = _enum(["motion", "detection"]);
12677
+ var ZoneRuleStageEnum = _enum([
12678
+ "motion",
12679
+ "detection",
12680
+ "package"
12681
+ ]);
12579
12682
  DeviceType.Camera, method(object({
12580
12683
  deviceId: number(),
12581
12684
  stage: ZoneRuleStageEnum
@@ -12588,7 +12691,8 @@ DeviceType.Camera, method(object({
12588
12691
  auth: "admin"
12589
12692
  }), object({
12590
12693
  motion: array(ZoneRuleSchema).readonly(),
12591
- detection: array(ZoneRuleSchema).readonly()
12694
+ detection: array(ZoneRuleSchema).readonly(),
12695
+ package: array(ZoneRuleSchema).readonly()
12592
12696
  });
12593
12697
  var ProviderStatusSchema = object({
12594
12698
  connected: boolean(),
@@ -15810,6 +15914,7 @@ var EventKindIconSchema = _enum([
15810
15914
  "smoke",
15811
15915
  "water",
15812
15916
  "button",
15917
+ "package",
15813
15918
  "generic"
15814
15919
  ]);
15815
15920
  var EventKindCategorySchema = _enum([
@@ -15817,7 +15922,8 @@ var EventKindCategorySchema = _enum([
15817
15922
  "audio",
15818
15923
  "detection",
15819
15924
  "sensor",
15820
- "custom"
15925
+ "custom",
15926
+ "package"
15821
15927
  ]);
15822
15928
  var EventKindDescriptorSchema = object({
15823
15929
  /** Stable kind id (e.g. 'motion', 'person', 'contact'). */
@@ -16158,6 +16264,26 @@ var TrackCascadeCountsSchema = object({
16158
16264
  /** Per-track CLIP search vectors removed (best-effort). */
16159
16265
  embeddings: number().int()
16160
16266
  });
16267
+ /** Event-store footprint for one camera. */
16268
+ var EventStoreDeviceFootprintSchema = object({
16269
+ deviceId: number(),
16270
+ /** Persisted event rows (motion + object + audio) for the camera. */
16271
+ rows: number().int(),
16272
+ /** Event-owned media bytes on disk for the camera. */
16273
+ bytes: number().int()
16274
+ });
16275
+ /** Aggregate event-store footprint: global totals + per-camera breakdown. */
16276
+ var EventStoreFootprintSchema = object({
16277
+ totalRows: number().int(),
16278
+ totalBytes: number().int(),
16279
+ devices: array(EventStoreDeviceFootprintSchema).readonly()
16280
+ });
16281
+ /** Per-kind counts returned by the event-prune / device-delete mutations. */
16282
+ var EventPruneCountsSchema = object({
16283
+ motion: number().int(),
16284
+ object: number().int(),
16285
+ audio: number().int()
16286
+ });
16161
16287
  DeviceType.Camera, method(object({ deviceId: number() }), array(TrackSchema).readonly()), method(object({
16162
16288
  deviceId: number(),
16163
16289
  trackId: string()
@@ -16221,6 +16347,21 @@ DeviceType.Camera, method(object({ deviceId: number() }), array(TrackSchema).rea
16221
16347
  }), {
16222
16348
  kind: "mutation",
16223
16349
  auth: "admin"
16350
+ }), method(object({}), EventStoreFootprintSchema, {
16351
+ kind: "query",
16352
+ auth: "admin"
16353
+ }), method(object({
16354
+ olderThanMs: number(),
16355
+ reason: OpsLogReasonSchema.optional()
16356
+ }), EventPruneCountsSchema, {
16357
+ kind: "mutation",
16358
+ auth: "admin"
16359
+ }), method(object({ deviceId: number() }), EventPruneCountsSchema, {
16360
+ kind: "mutation",
16361
+ auth: "admin"
16362
+ }), method(OpsLogQueryInputSchema, array(OpsLogEntrySchema).readonly(), {
16363
+ kind: "query",
16364
+ auth: "admin"
16224
16365
  }), method(object({
16225
16366
  eventId: string(),
16226
16367
  kind: MediaFileKindEnum.optional()
@@ -19454,13 +19595,131 @@ method(object({
19454
19595
  }), method(object({ deviceId: number() }), RecordingStatusSchema, {
19455
19596
  kind: "mutation",
19456
19597
  auth: "admin"
19457
- }), method(object({ deviceId: number() }), object({
19598
+ }), method(object({
19599
+ deviceId: number(),
19600
+ reason: OpsLogReasonSchema.optional()
19601
+ }), object({
19458
19602
  floorMs: number().nullable(),
19459
19603
  deletedBuckets: number().int(),
19460
19604
  reclaimedBytes: number().int()
19461
19605
  }), {
19462
19606
  kind: "mutation",
19463
19607
  auth: "admin"
19608
+ }), method(object({
19609
+ deviceId: number(),
19610
+ fromMs: number().optional(),
19611
+ toMs: number().optional()
19612
+ }), object({
19613
+ deletedBuckets: number().int(),
19614
+ reclaimedBytes: number().int()
19615
+ }), {
19616
+ kind: "mutation",
19617
+ auth: "admin"
19618
+ }), method(OpsLogQueryInputSchema, array(OpsLogEntrySchema).readonly(), {
19619
+ kind: "query",
19620
+ auth: "admin"
19621
+ });
19622
+ /**
19623
+ * `recordingExport` cap — render a footage time range into a single downloadable
19624
+ * MP4 (regular / accelerated / decelerated / timelapse, ± audio), kept for a
19625
+ * bounded lifetime with a durable history, auto-expiry, and optional
19626
+ * delete-after-download.
19627
+ *
19628
+ * Like `recording` this is a `scope:'system', mode:'singleton'` cap: the
19629
+ * recorder self-gates so exactly ONE node (the designated `recordingNodeId`,
19630
+ * default `hub`) registers it. Device-scoped methods carry `deviceId` in their
19631
+ * input and dispatch to that single provider; the render runs on the node that
19632
+ * owns the footage (no cross-node segment transfer). Download rides the
19633
+ * framework addon data-plane. State persists in a DurableState blob (NOT
19634
+ * SQLite); history rows survive file deletion for audit.
19635
+ */
19636
+ /** Playback-speed multiplier for the render (1 = realtime). */
19637
+ var ExportSpeedSchema = number().min(.25).max(32);
19638
+ /** Timelapse cadence — sample one source frame per `everyMs`, output at `outputFps`. */
19639
+ var ExportTimelapseSchema = object({
19640
+ everyMs: number().int().positive(),
19641
+ outputFps: number().int().min(1).max(60).optional()
19642
+ });
19643
+ /**
19644
+ * Render options. `speed` and `timelapse` are mutually exclusive. `includeAudio`
19645
+ * is honoured only for a realtime-ish speed (0.5–2×); timelapse is always
19646
+ * silent. `maxLifeMs` bounds how long the finished file is kept;
19647
+ * `deleteAfterDownload` removes it shortly after the first complete download.
19648
+ */
19649
+ var ExportOptionsSchema = object({
19650
+ speed: ExportSpeedSchema.optional(),
19651
+ timelapse: ExportTimelapseSchema.optional(),
19652
+ includeAudio: boolean(),
19653
+ maxLifeMs: number().int().positive(),
19654
+ deleteAfterDownload: boolean(),
19655
+ title: string().max(200).optional()
19656
+ }).superRefine((v, ctx) => {
19657
+ if (v.speed !== void 0 && v.timelapse !== void 0) ctx.addIssue({
19658
+ code: ZodIssueCode.custom,
19659
+ message: "speed and timelapse are mutually exclusive",
19660
+ path: ["timelapse"]
19661
+ });
19662
+ });
19663
+ var ExportStateSchema = _enum([
19664
+ "queued",
19665
+ "rendering",
19666
+ "ready",
19667
+ "failed",
19668
+ "expired",
19669
+ "deleted"
19670
+ ]);
19671
+ /** One export job / history row. */
19672
+ var ExportRecordSchema = object({
19673
+ id: string(),
19674
+ deviceId: number(),
19675
+ profile: string(),
19676
+ fromMs: number(),
19677
+ toMs: number(),
19678
+ options: ExportOptionsSchema,
19679
+ state: ExportStateSchema,
19680
+ /** 0–100 while rendering; null otherwise. */
19681
+ progressPct: number().nullable(),
19682
+ /** File size once ready; null before. */
19683
+ fileBytes: number().nullable(),
19684
+ expiresAt: number(),
19685
+ deleteAfterDownload: boolean(),
19686
+ /** Epoch of the first complete download; null until then. */
19687
+ downloadedAt: number().nullable(),
19688
+ createdAt: number(),
19689
+ /** User id/name that requested the export. */
19690
+ createdBy: string(),
19691
+ /** Failure reason when state is 'failed'; null otherwise. */
19692
+ error: string().nullable()
19693
+ });
19694
+ /** Candidate download URLs (LAN first, then operator extra hosts). */
19695
+ var ExportDownloadSchema = object({
19696
+ url: string(),
19697
+ endpoints: array(string())
19698
+ });
19699
+ method(object({
19700
+ deviceId: number(),
19701
+ profile: string(),
19702
+ fromMs: number(),
19703
+ toMs: number(),
19704
+ options: ExportOptionsSchema
19705
+ }), ExportRecordSchema, {
19706
+ kind: "mutation",
19707
+ auth: "protected"
19708
+ }), method(object({ deviceId: number().optional() }), array(ExportRecordSchema), {
19709
+ kind: "query",
19710
+ auth: "protected"
19711
+ }), method(object({ exportId: string() }), ExportRecordSchema, {
19712
+ kind: "query",
19713
+ auth: "protected"
19714
+ }), method(object({ exportId: string() }), ExportRecordSchema, {
19715
+ kind: "mutation",
19716
+ auth: "protected"
19717
+ }), method(object({ exportId: string() }), ExportRecordSchema, {
19718
+ kind: "mutation",
19719
+ auth: "protected"
19720
+ }), method(object({ exportId: string() }), ExportDownloadSchema, {
19721
+ kind: "query",
19722
+ auth: "protected"
19464
19723
  });
19465
19724
  /**
19466
19725
  * One publishable camera stream as its OWNING PROVIDER describes it — the same
@@ -22480,6 +22739,12 @@ Object.freeze({
22480
22739
  addonId: null,
22481
22740
  access: "delete"
22482
22741
  },
22742
+ "pipelineAnalytics.deleteDeviceEvents": {
22743
+ capName: "pipeline-analytics",
22744
+ capScope: "device",
22745
+ addonId: null,
22746
+ access: "delete"
22747
+ },
22483
22748
  "pipelineAnalytics.deleteTracks": {
22484
22749
  capName: "pipeline-analytics",
22485
22750
  capScope: "device",
@@ -22510,6 +22775,12 @@ Object.freeze({
22510
22775
  addonId: null,
22511
22776
  access: "view"
22512
22777
  },
22778
+ "pipelineAnalytics.getEventStoreFootprint": {
22779
+ capName: "pipeline-analytics",
22780
+ capScope: "device",
22781
+ addonId: null,
22782
+ access: "view"
22783
+ },
22513
22784
  "pipelineAnalytics.getKeyEvents": {
22514
22785
  capName: "pipeline-analytics",
22515
22786
  capScope: "device",
@@ -22552,6 +22823,12 @@ Object.freeze({
22552
22823
  addonId: null,
22553
22824
  access: "view"
22554
22825
  },
22826
+ "pipelineAnalytics.listOpsLog": {
22827
+ capName: "pipeline-analytics",
22828
+ capScope: "device",
22829
+ addonId: null,
22830
+ access: "view"
22831
+ },
22555
22832
  "pipelineAnalytics.listRecentTracks": {
22556
22833
  capName: "pipeline-analytics",
22557
22834
  capScope: "device",
@@ -22564,6 +22841,12 @@ Object.freeze({
22564
22841
  addonId: null,
22565
22842
  access: "view"
22566
22843
  },
22844
+ "pipelineAnalytics.pruneEvents": {
22845
+ capName: "pipeline-analytics",
22846
+ capScope: "device",
22847
+ addonId: null,
22848
+ access: "create"
22849
+ },
22567
22850
  "pipelineAnalytics.pruneEventsBefore": {
22568
22851
  capName: "pipeline-analytics",
22569
22852
  capScope: "device",
@@ -23326,6 +23609,12 @@ Object.freeze({
23326
23609
  addonId: null,
23327
23610
  access: "create"
23328
23611
  },
23612
+ "recording.deleteFootprint": {
23613
+ capName: "recording",
23614
+ capScope: "system",
23615
+ addonId: null,
23616
+ access: "delete"
23617
+ },
23329
23618
  "recording.getAvailability": {
23330
23619
  capName: "recording",
23331
23620
  capScope: "system",
@@ -23356,6 +23645,12 @@ Object.freeze({
23356
23645
  addonId: null,
23357
23646
  access: "view"
23358
23647
  },
23648
+ "recording.listOpsLog": {
23649
+ capName: "recording",
23650
+ capScope: "system",
23651
+ addonId: null,
23652
+ access: "view"
23653
+ },
23359
23654
  "recording.locateSegment": {
23360
23655
  capName: "recording",
23361
23656
  capScope: "system",
@@ -23386,6 +23681,42 @@ Object.freeze({
23386
23681
  addonId: null,
23387
23682
  access: "create"
23388
23683
  },
23684
+ "recordingExport.cancelExport": {
23685
+ capName: "recordingExport",
23686
+ capScope: "system",
23687
+ addonId: null,
23688
+ access: "create"
23689
+ },
23690
+ "recordingExport.createExport": {
23691
+ capName: "recordingExport",
23692
+ capScope: "system",
23693
+ addonId: null,
23694
+ access: "create"
23695
+ },
23696
+ "recordingExport.deleteExport": {
23697
+ capName: "recordingExport",
23698
+ capScope: "system",
23699
+ addonId: null,
23700
+ access: "delete"
23701
+ },
23702
+ "recordingExport.getDownloadUrl": {
23703
+ capName: "recordingExport",
23704
+ capScope: "system",
23705
+ addonId: null,
23706
+ access: "view"
23707
+ },
23708
+ "recordingExport.getExport": {
23709
+ capName: "recordingExport",
23710
+ capScope: "system",
23711
+ addonId: null,
23712
+ access: "view"
23713
+ },
23714
+ "recordingExport.listExports": {
23715
+ capName: "recordingExport",
23716
+ capScope: "system",
23717
+ addonId: null,
23718
+ access: "view"
23719
+ },
23389
23720
  "sceneMonitor.captureReference": {
23390
23721
  capName: "scene-monitor",
23391
23722
  capScope: "device",
@@ -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 { d as p } from "./_virtual_mf___mfe_internal__addon_model_studio_page__loadShare___mf_0_camstack_mf_1_types__loadShare__.js-D8ShF3ol.mjs";
3
+ import { d as p } from "./_virtual_mf___mfe_internal__addon_model_studio_page__loadShare___mf_0_camstack_mf_1_types__loadShare__.js-Bk2_mr_k.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-BdANchpC.mjs";
1
+ import { n as e, t } from "./virtual_mf-REMOTE_ENTRY_ID___mfe_internal__addon_model_studio_page__remoteEntry_js-BnhvvVch.mjs";
2
2
  export { t as get, e as init };
@@ -1,4 +1,4 @@
1
- import { s as e } from "./player-overlays-CXHVR3cl.mjs";
1
+ import { s as e } from "./player-overlays-CoyUKf0k.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-BKUtNQ7f.mjs")).catch((e) => {
2756
+ return tr ||= rr(() => import("./_virtual_mf-localSharedImportMap___mfe_internal__addon_model_studio_page-CWRIhNRo.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.25",
3
+ "version": "1.0.27",
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, _ = (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_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.EVENT_KIND_BY_CAP, e.EVENT_PAD_MS, 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, l = e.EventCategory, e.EventEmitterStatusSchema, e.EventFireSchema, e.EventItemSchema, e.EventKindCategorySchema, e.EventKindDescriptorSchema, e.EventKindIconSchema, e.EventKindSchema, e.EventSourceType, e.ExportSetupFieldSchema, e.ExportSetupSchema, u = 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.OauthIntegrationDescriptorSchema, e.ObjectEventSchema, e.OrchestratorMetricsSchema, e.OsdOverlayKindEnum, e.OsdOverlayPatchSchema, e.OsdOverlaySchema, e.OsdPositionEnum, e.OsdStatusSchema, d = e.PET_FEEDER_MANUAL_FEED_MAX, f = 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, p = 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.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.buildModelVariantGroups, e.buildStreamParamsConfigSchema, e.buttonCapability, e.cameraCredentialsCapability, e.cameraPipelineConfigCapability, e.cameraStreamsCapability, m = e.canConvertUnit, e.carbonMonoxideCapability, e.cellsToRects, e.classifyStream, e.classifyStreams, e.climateControlCapability, e.collectHydratedFieldEntries, e.collectHydratedFieldValues, e.colorCapability, e.compileExpression, e.compileExpressionSafe, e.connectivityCapability, e.consumablesCapability, e.contactCapability, e.controlCapability, e.convertUnit, e.cosineSimilarity, e.coverCapability, h = 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.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.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.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, g = 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
- }, v = i.share["default:@camstack/types"];
21
- v === void 0 ? n.then(() => {
22
- if (v = i.share["default:@camstack/types"], v === void 0) throw Error("[Module Federation] Shared module @camstack/types was imported before federation bootstrap finished.");
23
- _(v);
24
- }) : _(v);
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, s as r, d as s, a as t, m as u };