@camstack/addon-model-studio 1.0.15 → 1.0.17

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.
@@ -4638,7 +4638,7 @@ function _instanceof(cls, params = {}) {
4638
4638
  return inst;
4639
4639
  }
4640
4640
  //#endregion
4641
- //#region ../types/dist/sleep-BiDFW0E7.mjs
4641
+ //#region ../types/dist/sleep-CZDdRBua.mjs
4642
4642
  var EventCategory = /* @__PURE__ */ function(EventCategory) {
4643
4643
  EventCategory["SystemBoot"] = "system.boot";
4644
4644
  EventCategory["SystemAddonsReady"] = "system.addons-ready";
@@ -7234,7 +7234,16 @@ var DecoderStatsSchema = object({
7234
7234
  inputFps: number(),
7235
7235
  outputFps: number(),
7236
7236
  avgDecodeTimeMs: number(),
7237
- droppedFrames: number()
7237
+ droppedFrames: number(),
7238
+ /**
7239
+ * Pull-mode adaptive-fps telemetry (optional — only pull sessions run the
7240
+ * lag-driven controller; push sessions omit these). `lagMs` is the EWMA of
7241
+ * the decoder's real-time drift (rising = falling behind live); `adaptiveFps`
7242
+ * is the current lag-throttled emit rate (≤ `effectiveFps` ceiling).
7243
+ */
7244
+ lagMs: number().optional(),
7245
+ effectiveFps: number().optional(),
7246
+ adaptiveFps: number().optional()
7238
7247
  });
7239
7248
  var DecoderSessionConfigSchema = object({
7240
7249
  codec: string(),
@@ -7275,7 +7284,15 @@ var DecoderSessionConfigSchema = object({
7275
7284
  * other — `pullFrames` returns nothing for an `'shm'` session and
7276
7285
  * `pullHandles` returns nothing for a `'callback'` session.
7277
7286
  */
7278
- frameSink: _enum(["callback", "shm"]).default("callback")
7287
+ frameSink: _enum(["callback", "shm"]).default("callback"),
7288
+ /**
7289
+ * Per-camera decoder DEBUG facility. When `true`, a pull-mode session emits
7290
+ * a throttled (~1Hz) structured `decoder debug` line (effective/adaptive fps,
7291
+ * real-time lag, dropped-frame delta, avg decode time, hwaccel). Mirrors the
7292
+ * stream-broker's `streamingDebug` gate — off by default so production logs
7293
+ * stay quiet and the emit path pays zero per-frame cost when disabled.
7294
+ */
7295
+ debug: boolean().optional()
7279
7296
  });
7280
7297
  var EncodeProfileSchema = object({
7281
7298
  video: object({
@@ -9463,6 +9480,75 @@ DeviceType.Cover, method(object({ deviceId: number().int().nonnegative() }), _vo
9463
9480
  auth: "admin"
9464
9481
  });
9465
9482
  /**
9483
+ * Vendor-neutral day/night (IR-cut) control — the per-camera config cap
9484
+ * shared by reolink / hikvision / amcrest. Models the common firmware
9485
+ * surface: the IR-cut switching MODE plus the two knobs that gate it
9486
+ * (photocell `sensitivity` + `switchDelaySec`). Each vendor maps these
9487
+ * onto its own ISAPI / Baichuan / Dahua-CGI fields; the cap standardises
9488
+ * the shape so ONE derived-form renders every camera.
9489
+ *
9490
+ * Follows the D14 `deviceConfig` archetype (see `stream-params.cap.ts`):
9491
+ * `getOptions` advertises per-camera availability, `getStatus` (auto-
9492
+ * injected from `status`) reports the live values, and a single
9493
+ * `setSettings` mutation applies a partial change. No hand-written
9494
+ * settings-contribution methods — the framework derives the UI + save
9495
+ * routing from this surface.
9496
+ */
9497
+ /** IR-cut switching mode. `schedule` = time-of-day table configured on the camera. */
9498
+ var DayNightModeSchema = _enum([
9499
+ "auto",
9500
+ "day",
9501
+ "night",
9502
+ "schedule"
9503
+ ]);
9504
+ /** Normalized numeric range descriptor — `{ min, max, step }` per the
9505
+ * getOptions availability convention. Normalized values are 0–100. */
9506
+ var NormalizedRangeSchema$1 = object({
9507
+ min: number(),
9508
+ max: number(),
9509
+ step: number()
9510
+ });
9511
+ object({
9512
+ mode: DayNightModeSchema,
9513
+ /** IR-cut trigger sensitivity, NORMALIZED 0–100 (higher = switches to night sooner). */
9514
+ sensitivity: number().optional(),
9515
+ /** Delay before the IR-cut filter flips, in seconds. */
9516
+ switchDelaySec: number().optional(),
9517
+ lastFetchedAt: number()
9518
+ });
9519
+ /**
9520
+ * Per-camera availability descriptor — drives which controls the admin UI
9521
+ * renders. Booleans as `supportsX`; numeric ranges as `{ min, max, step }`
9522
+ * (normalized 0–100); the mode choice-set as an array. A provider returns
9523
+ * honest, camera-probed values — never hardcoded.
9524
+ */
9525
+ var DayNightOptionsSchema = object({
9526
+ /** Modes this camera accepts. Empty → the camera has no configurable day/night mode. */
9527
+ modes: array(DayNightModeSchema),
9528
+ supportsSensitivity: boolean(),
9529
+ /** Present when `supportsSensitivity` — the normalized 0–100 range. */
9530
+ sensitivity: NormalizedRangeSchema$1.optional(),
9531
+ supportsSwitchDelay: boolean(),
9532
+ /** Present when `supportsSwitchDelay` — the allowed delay range in seconds. */
9533
+ switchDelaySec: NormalizedRangeSchema$1.optional()
9534
+ });
9535
+ /**
9536
+ * Partial change to the day/night config — every field optional. A
9537
+ * provider ignores fields it does not support.
9538
+ */
9539
+ var DayNightSettingsPatchSchema = object({
9540
+ mode: DayNightModeSchema.optional(),
9541
+ sensitivity: number().optional(),
9542
+ switchDelaySec: number().optional()
9543
+ });
9544
+ DeviceType.Camera, method(object({ deviceId: number() }), DayNightOptionsSchema), method(object({
9545
+ deviceId: number(),
9546
+ settings: DayNightSettingsPatchSchema
9547
+ }), _void(), {
9548
+ kind: "mutation",
9549
+ auth: "admin"
9550
+ });
9551
+ /**
9466
9552
  * Identity envelope for a device's upstream-system metadata.
9467
9553
  *
9468
9554
  * Two jobs:
@@ -9818,6 +9904,130 @@ object({
9818
9904
  });
9819
9905
  DeviceType.Image;
9820
9906
  /**
9907
+ * Vendor-neutral image / picture-adjustment cap — the per-camera config
9908
+ * cap shared by reolink / hikvision / amcrest. Models the common ISP
9909
+ * surface: the four picture sliders (brightness / contrast / saturation /
9910
+ * sharpness), orientation (mirror / flip / rotate), white-balance,
9911
+ * exposure and backlight-compensation modes.
9912
+ *
9913
+ * NORMALIZATION: every slider is a normalized int 0–100. Vendors expose
9914
+ * these natively as 0–100 or 0–255 (or other ranges); each provider maps
9915
+ * its native range to/from this normalized 0–100 space so the cap surface
9916
+ * (and the derived form) is identical across cameras. `warmth` (manual
9917
+ * white-balance) is likewise normalized 0–100.
9918
+ *
9919
+ * Follows the D14 `deviceConfig` archetype (see `stream-params.cap.ts`):
9920
+ * `getOptions` advertises per-camera availability, `getStatus` (auto-
9921
+ * injected from `status`) reports the live values, and a single
9922
+ * `setSettings` mutation applies a partial change. No hand-written
9923
+ * settings-contribution methods — the framework derives the UI + save
9924
+ * routing from this surface.
9925
+ */
9926
+ /** Sensor/image rotation, degrees clockwise. */
9927
+ var ImageRotateSchema = _enum([
9928
+ "0",
9929
+ "90",
9930
+ "180",
9931
+ "270"
9932
+ ]);
9933
+ /** White-balance mode. `manual` unlocks the normalized `warmth` knob. */
9934
+ var WhiteBalanceModeSchema = _enum(["auto", "manual"]);
9935
+ /** Exposure mode. */
9936
+ var ExposureModeSchema = _enum(["auto", "manual"]);
9937
+ /**
9938
+ * Backlight-compensation mode:
9939
+ * - `off` — disabled
9940
+ * - `blc` — backlight compensation
9941
+ * - `wdr` — wide dynamic range
9942
+ * - `hlc` — highlight compensation
9943
+ */
9944
+ var BacklightModeSchema = _enum([
9945
+ "off",
9946
+ "blc",
9947
+ "wdr",
9948
+ "hlc"
9949
+ ]);
9950
+ /** Normalized numeric range descriptor — `{ min, max, step }` per the
9951
+ * getOptions availability convention. Slider values are normalized 0–100. */
9952
+ var NormalizedRangeSchema = object({
9953
+ min: number(),
9954
+ max: number(),
9955
+ step: number()
9956
+ });
9957
+ object({
9958
+ /** Normalized 0–100. */
9959
+ brightness: number().optional(),
9960
+ /** Normalized 0–100. */
9961
+ contrast: number().optional(),
9962
+ /** Normalized 0–100. */
9963
+ saturation: number().optional(),
9964
+ /** Normalized 0–100. */
9965
+ sharpness: number().optional(),
9966
+ mirror: boolean().optional(),
9967
+ flip: boolean().optional(),
9968
+ rotate: ImageRotateSchema.optional(),
9969
+ whiteBalance: WhiteBalanceModeSchema.optional(),
9970
+ /** Manual white-balance warmth, NORMALIZED 0–100. Meaningful only when `whiteBalance === 'manual'`. */
9971
+ warmth: number().optional(),
9972
+ exposureMode: ExposureModeSchema.optional(),
9973
+ backlightMode: BacklightModeSchema.optional(),
9974
+ lastFetchedAt: number()
9975
+ });
9976
+ /**
9977
+ * Per-camera availability descriptor — drives which controls the admin UI
9978
+ * renders. Booleans as `supportsX`; numeric ranges as `{ min, max, step }`
9979
+ * (the normalized 0–100 range); enums as arrays of supported values (empty
9980
+ * array → control hidden). A provider returns honest, camera-probed values
9981
+ * — never hardcoded.
9982
+ */
9983
+ var ImageSettingsOptionsSchema = object({
9984
+ supportsBrightness: boolean(),
9985
+ brightness: NormalizedRangeSchema.optional(),
9986
+ supportsContrast: boolean(),
9987
+ contrast: NormalizedRangeSchema.optional(),
9988
+ supportsSaturation: boolean(),
9989
+ saturation: NormalizedRangeSchema.optional(),
9990
+ supportsSharpness: boolean(),
9991
+ sharpness: NormalizedRangeSchema.optional(),
9992
+ supportsMirror: boolean(),
9993
+ supportsFlip: boolean(),
9994
+ /** Supported rotation values. Empty → rotation not configurable. */
9995
+ rotateOptions: array(ImageRotateSchema),
9996
+ /** Supported white-balance modes. Empty → white-balance not configurable. */
9997
+ whiteBalanceModes: array(WhiteBalanceModeSchema),
9998
+ supportsWarmth: boolean(),
9999
+ /** Present when `supportsWarmth` — the normalized 0–100 range. */
10000
+ warmth: NormalizedRangeSchema.optional(),
10001
+ /** Supported exposure modes. Empty → exposure not configurable. */
10002
+ exposureModes: array(ExposureModeSchema),
10003
+ /** Supported backlight modes. Empty → backlight-compensation not configurable. */
10004
+ backlightModes: array(BacklightModeSchema)
10005
+ });
10006
+ /**
10007
+ * Partial change to the image config — every field optional. Slider values
10008
+ * are normalized 0–100. A provider ignores fields it does not support.
10009
+ */
10010
+ var ImageSettingsPatchSchema = object({
10011
+ brightness: number().optional(),
10012
+ contrast: number().optional(),
10013
+ saturation: number().optional(),
10014
+ sharpness: number().optional(),
10015
+ mirror: boolean().optional(),
10016
+ flip: boolean().optional(),
10017
+ rotate: ImageRotateSchema.optional(),
10018
+ whiteBalance: WhiteBalanceModeSchema.optional(),
10019
+ warmth: number().optional(),
10020
+ exposureMode: ExposureModeSchema.optional(),
10021
+ backlightMode: BacklightModeSchema.optional()
10022
+ });
10023
+ DeviceType.Camera, method(object({ deviceId: number() }), ImageSettingsOptionsSchema), method(object({
10024
+ deviceId: number(),
10025
+ settings: ImageSettingsPatchSchema
10026
+ }), _void(), {
10027
+ kind: "mutation",
10028
+ auth: "admin"
10029
+ });
10030
+ /**
9821
10031
  * Robotic lawn-mower cap. Models HA `lawn_mower.*` entities — anything
9822
10032
  * with a mowing lifecycle plus a dock action.
9823
10033
  *
@@ -10712,6 +10922,16 @@ var RunnerCameraConfigSchema = object({
10712
10922
  * this gate is bypassed.
10713
10923
  */
10714
10924
  onboardMotionDrivesAnalyzer: boolean().default(true),
10925
+ /**
10926
+ * Master toggle for the occupancy re-check. When `false` (DEFAULT) the runner
10927
+ * never arms the periodic recheck timer, regardless of `occupancyRecheckSec` —
10928
+ * this is off by default because the recheck re-subscribes a detection session
10929
+ * every N seconds while `watching`, a major source of pull-decoder re-dial
10930
+ * churn (each cycle creates+tears a session → RTSP re-dial → latency). The
10931
+ * `occupancyRecheckSec` / `occupancyRecheckFrames` sliders only take effect
10932
+ * (and only render) when this is enabled.
10933
+ */
10934
+ occupancyRecheckEnabled: boolean().default(false),
10715
10935
  occupancyRecheckSec: number().min(occupancyRecheckSecField.min).max(occupancyRecheckSecField.max).default(occupancyRecheckSecField.default),
10716
10936
  occupancyRecheckFrames: number().min(occupancyRecheckFramesField.min).max(occupancyRecheckFramesField.max).default(occupancyRecheckFramesField.default),
10717
10937
  /**
@@ -13041,7 +13261,9 @@ method(object({ codec: string() }), boolean()), method(_void(), object({
13041
13261
  id: string(),
13042
13262
  name: string(),
13043
13263
  isPullMode: boolean().optional(),
13044
- priority: number().optional()
13264
+ priority: number().optional(),
13265
+ hwaccel: string().optional(),
13266
+ probedBestHwaccel: string().optional()
13045
13267
  })), method(DecoderSessionConfigSchema, object({
13046
13268
  sessionId: string(),
13047
13269
  nodeId: string()
@@ -14961,7 +15183,17 @@ var AgentAddonConfigSchema = object({
14961
15183
  });
14962
15184
  var AgentPipelineSettingsSchema = object({
14963
15185
  addonDefaults: record(string(), AgentAddonConfigSchema).readonly(),
14964
- maxCameras: number().int().nonnegative().nullable().default(null)
15186
+ maxCameras: number().int().nonnegative().nullable().default(null),
15187
+ /** Per-node detection weight (relative share for the quota balancer). */
15188
+ detectWeight: number().positive().optional(),
15189
+ /** Node is eligible to run the detection pipeline (decode + inference). */
15190
+ detect: boolean().optional(),
15191
+ /** Node is eligible to host decoder sessions. */
15192
+ decode: boolean().optional(),
15193
+ /** Node is eligible to run audio-analyzer sessions. */
15194
+ audio: boolean().optional(),
15195
+ /** Node is eligible to be the ingest / source-owner (serve the restream). */
15196
+ ingest: boolean().optional()
14965
15197
  });
14966
15198
  var CameraPipelineForAgentSchema = object({
14967
15199
  steps: array(PipelineStepInputSchema).readonly(),
@@ -15267,6 +15499,21 @@ method(object({
15267
15499
  }), object({ success: literal(true) }), {
15268
15500
  kind: "mutation",
15269
15501
  auth: "admin"
15502
+ }), method(object({
15503
+ agentNodeId: string(),
15504
+ detectWeight: number().positive().nullable()
15505
+ }), object({ success: literal(true) }), {
15506
+ kind: "mutation",
15507
+ auth: "admin"
15508
+ }), method(object({
15509
+ agentNodeId: string(),
15510
+ detect: boolean().nullable().optional(),
15511
+ decode: boolean().nullable().optional(),
15512
+ audio: boolean().nullable().optional(),
15513
+ ingest: boolean().nullable().optional()
15514
+ }), object({ success: literal(true) }), {
15515
+ kind: "mutation",
15516
+ auth: "admin"
15270
15517
  }), method(object({ deviceId: number() }), CameraPipelineSettingsSchema.nullable()), method(object({
15271
15518
  deviceId: number(),
15272
15519
  addonId: string(),
@@ -19014,6 +19261,18 @@ Object.freeze({
19014
19261
  addonId: null,
19015
19262
  access: "view"
19016
19263
  },
19264
+ "dayNight.getOptions": {
19265
+ capName: "day-night",
19266
+ capScope: "device",
19267
+ addonId: null,
19268
+ access: "view"
19269
+ },
19270
+ "dayNight.setSettings": {
19271
+ capName: "day-night",
19272
+ capScope: "device",
19273
+ addonId: null,
19274
+ access: "create"
19275
+ },
19017
19276
  "decoder.createSession": {
19018
19277
  capName: "decoder",
19019
19278
  capScope: "system",
@@ -19944,6 +20203,18 @@ Object.freeze({
19944
20203
  addonId: null,
19945
20204
  access: "create"
19946
20205
  },
20206
+ "imageSettings.getOptions": {
20207
+ capName: "image-settings",
20208
+ capScope: "device",
20209
+ addonId: null,
20210
+ access: "view"
20211
+ },
20212
+ "imageSettings.setSettings": {
20213
+ capName: "image-settings",
20214
+ capScope: "device",
20215
+ addonId: null,
20216
+ access: "create"
20217
+ },
19947
20218
  "integrations.create": {
19948
20219
  capName: "integrations",
19949
20220
  capScope: "system",
@@ -21126,6 +21397,18 @@ Object.freeze({
21126
21397
  addonId: null,
21127
21398
  access: "create"
21128
21399
  },
21400
+ "pipelineOrchestrator.setAgentCapabilities": {
21401
+ capName: "pipeline-orchestrator",
21402
+ capScope: "system",
21403
+ addonId: null,
21404
+ access: "create"
21405
+ },
21406
+ "pipelineOrchestrator.setAgentDetectWeight": {
21407
+ capName: "pipeline-orchestrator",
21408
+ capScope: "system",
21409
+ addonId: null,
21410
+ access: "create"
21411
+ },
21129
21412
  "pipelineOrchestrator.setAgentMaxCameras": {
21130
21413
  capName: "pipeline-orchestrator",
21131
21414
  capScope: "system",
@@ -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-B2wIUCRf.mjs";
3
+ import { d as p } from "./_virtual_mf___mfe_internal__addon_model_studio_page__loadShare___mf_0_camstack_mf_1_types__loadShare__.js-BzCPF55l.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-BvNosyfQ.mjs";
1
+ import { n as e, t } from "./virtual_mf-REMOTE_ENTRY_ID___mfe_internal__addon_model_studio_page__remoteEntry_js-Ds-GThyo.mjs";
2
2
  export { t as get, e as init };
@@ -1,4 +1,4 @@
1
- import { s as e } from "./player-overlays-VyAYk-Z7.mjs";
1
+ import { s as e } from "./player-overlays-DHoKoGsu.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-BF3y8bIK.mjs")).catch((e) => {
2756
+ return tr ||= rr(() => import("./_virtual_mf-localSharedImportMap___mfe_internal__addon_model_studio_page-Cbboz9cu.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.15",
3
+ "version": "1.0.17",
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.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.DEVICE_CAP_NAMES, e.DEVICE_PROFILES, e.DEVICE_SETTINGS_CONTRIBUTION_METHODS, e.DEVICE_STATUS_METHOD, e.DEVICE_TYPE_INFO, e.DecodedAudioChunkSchema, e.DecodedFrameSchema, e.DecoderAssignmentSchema, e.DecoderSessionConfigSchema, e.DecoderStatsSchema, e.DeleteIntegrationResultSchema, e.DetectionSourceSchema, e.DetectorOutputSchema, e.DeviceCodeSeveritySchema, e.DeviceConfig, e.DeviceDiscoveryStatusSchema, e.DeviceExportExposeInputSchema, e.DeviceExportStatusSchema, e.DeviceExportUnexposeInputSchema, o = e.DeviceFeature, e.DeviceInfoSchema, 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_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.EventKindSchema, e.EventSourceType, e.ExportSetupFieldSchema, e.ExportSetupSchema, u = e.ExposedDeviceSchema, e.ExposedResourceSchema, 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.ImageStatusSchema, e.InstalledPackageSchema, e.IntegrationLiteSchema, e.IntegrationWithStateSchema, e.IntercomAbilitySchema, e.IntercomStatusSchema, e.KNOWN_CAP_NAMES, e.LabelDefinitionSchema, e.LawnMowerActivitySchema, e.LawnMowerControlStatusSchema, e.LocateSegmentResultSchema, e.LocationStatSchema, e.LockControlStatusSchema, e.LockStateSchema, e.LogEntrySchema, e.LogLevelSchema, e.LogStreamEntrySchema, 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.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.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.PasskeySummarySchema, e.PcmSampleFormatSchema, e.PerScopeBreakdownSchema, e.PetFeederStatusSchema, e.PickStreamPreferencesSchema, e.PickStreamRequirementsSchema, e.PickedCamStreamSchema, e.PipelineAssignmentSchema, e.PipelineDefaultStepSchema, e.PipelineEngineChoiceSchema, e.PipelineRunResultBridge, e.PipelineStepInputSchema, 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.RECOGNITION_TYPES, e.RESERVED_BINDING_NAMES, e.RUNTIME_DEFAULTS, e.RUNTIME_TO_FORMAT, e.RawStateResultSchema, e.ReadSegmentBytesResultSchema, e.ReadinessRegistry, e.ReadinessTimeoutError, 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.RegisteredStreamSchema, e.RenderedAsSchema, e.ReportMotionInputSchema, e.RingBuffer, e.RtpSourceSchema, e.RtspRestreamEntrySchema, e.RunnerCameraConfigSchema, e.RunnerCameraDeviceUIFields, e.RunnerFrameSourceSchema, e.RunnerLocalLoadSchema, e.RunnerLocalMetricsSchema, e.SCOPE_PRESETS, e.SOURCE_INFO_METADATA_KEY, e.STREAM_PROFILE_META, e.STREAM_QUALITY_LABELS, e.SUB_DETECTION_TYPES, e.SYSTEM_CAP_NAMES, e.ScopedTokenSchema, e.ScopedTokenSummarySchema, e.ScoredObjectEventSchema, e.ScriptRunnerStatusSchema, e.SearchResultSchema, e.SendEmailInputSchema, e.SendEmailResultSchema, e.SendResultSchema, 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.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.StreamInfoSchema, 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.TrackSchema, e.TrackStateSchema, 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.WidgetHostEnum, 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.buildStreamParamsConfigSchema, e.buttonCapability, e.cameraCredentialsCapability, e.cameraPipelineConfigCapability, e.cameraStreamsCapability, m = e.canConvertUnit, e.carbonMonoxideCapability, e.cellsToRects, e.classifyStream, e.classifyStreams, e.climateControlCapability, 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.decoderCapability, e.defaultDeviceFor, e.defineCustomActions, 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.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.integrationsCapability, e.intercomCapability, e.isAgentOnlyPlacement, e.isDeployableToAgent, e.isDeviceConfigCap, e.isEvent, e.jobKindSchema, e.lawnMowerControlCapability, e.lifecycleJobSchema, e.lifecycleJobScopeSchema, e.lifecycleJobStateSchema, e.lifecycleTaskSchema, e.localNetworkCapability, e.locationSimilarity, e.lockControlCapability, e.logDestinationCapability, 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.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.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.resolveModelFormat, e.resolveRunnerId, e.restreamerCapability, e.runInferenceStep, e.runtimeDevices, e.scopeKey, e.scoreRuntimes, e.scriptRunnerCapability, e.selectAssignedProfileSlots, e.setByPath, e.settingsStoreCapability, e.sleep, e.sleepCancellable, e.smokeCapability, e.smtpProviderCapability, e.snapshotCapability, e.snapshotProviderCapability, e.ssoBridgeCapability, e.storageCapability, e.storageEvictableCapability, e.storageProviderCapability, e.streamBrokerCapability, e.streamCatalogCapability, e.streamParamsCapability, e.streamPixels, e.streamQualityLabel, e.streamingEngineCapability, 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.waterHeaterCapability, e.weatherCapability, e.webrtcCapability, 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 };