@camstack/addon-post-analysis 1.2.208 → 1.2.209

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.
@@ -16600,14 +16600,14 @@ var alarmPanelCapability = {
16600
16600
  code: string().min(1).optional()
16601
16601
  }), _void(), {
16602
16602
  kind: "mutation",
16603
- auth: "admin"
16603
+ auth: "protected"
16604
16604
  }),
16605
16605
  disarm: method(object({
16606
16606
  deviceId: number().int().nonnegative(),
16607
16607
  code: string().min(1).optional()
16608
16608
  }), _void(), {
16609
16609
  kind: "mutation",
16610
- auth: "admin"
16610
+ auth: "protected"
16611
16611
  }),
16612
16612
  /**
16613
16613
  * Force the panel into the `triggered` state — used by HA
@@ -16618,7 +16618,7 @@ var alarmPanelCapability = {
16618
16618
  */
16619
16619
  trigger: method(object({ deviceId: number().int().nonnegative() }), _void(), {
16620
16620
  kind: "mutation",
16621
- auth: "admin"
16621
+ auth: "protected"
16622
16622
  })
16623
16623
  },
16624
16624
  status: {
@@ -25795,7 +25795,7 @@ var brightnessCapability = {
25795
25795
  percentage: number().min(0).max(100)
25796
25796
  }), _void(), {
25797
25797
  kind: "mutation",
25798
- auth: "admin"
25798
+ auth: "protected"
25799
25799
  }) },
25800
25800
  events: {
25801
25801
  /**
@@ -25828,7 +25828,7 @@ onBrightnessChanged: { data: object({
25828
25828
  };
25829
25829
  DeviceType.Button, method(object({ deviceId: number().int().nonnegative() }), _void(), {
25830
25830
  kind: "mutation",
25831
- auth: "admin"
25831
+ auth: "protected"
25832
25832
  });
25833
25833
  /**
25834
25834
  * camera-credentials — device-scoped cap exposing the camera's network
@@ -26020,28 +26020,28 @@ var climateControlCapability = {
26020
26020
  mode: HvacModeSchema
26021
26021
  }), _void(), {
26022
26022
  kind: "mutation",
26023
- auth: "admin"
26023
+ auth: "protected"
26024
26024
  }),
26025
26025
  setFanMode: method(object({
26026
26026
  deviceId: number().int().nonnegative(),
26027
26027
  fanMode: string().min(1)
26028
26028
  }), _void(), {
26029
26029
  kind: "mutation",
26030
- auth: "admin"
26030
+ auth: "protected"
26031
26031
  }),
26032
26032
  setPreset: method(object({
26033
26033
  deviceId: number().int().nonnegative(),
26034
26034
  preset: string().min(1)
26035
26035
  }), _void(), {
26036
26036
  kind: "mutation",
26037
- auth: "admin"
26037
+ auth: "protected"
26038
26038
  }),
26039
26039
  setTarget: method(object({
26040
26040
  deviceId: number().int().nonnegative(),
26041
26041
  target: number()
26042
26042
  }), _void(), {
26043
26043
  kind: "mutation",
26044
- auth: "admin"
26044
+ auth: "protected"
26045
26045
  }),
26046
26046
  setTargetRange: method(object({
26047
26047
  deviceId: number().int().nonnegative(),
@@ -26049,28 +26049,28 @@ var climateControlCapability = {
26049
26049
  targetHigh: number()
26050
26050
  }), _void(), {
26051
26051
  kind: "mutation",
26052
- auth: "admin"
26052
+ auth: "protected"
26053
26053
  }),
26054
26054
  setTargetHumidity: method(object({
26055
26055
  deviceId: number().int().nonnegative(),
26056
26056
  targetHumidity: number().min(0).max(100)
26057
26057
  }), _void(), {
26058
26058
  kind: "mutation",
26059
- auth: "admin"
26059
+ auth: "protected"
26060
26060
  }),
26061
26061
  setSwingVertical: method(object({
26062
26062
  deviceId: number().int().nonnegative(),
26063
26063
  on: boolean()
26064
26064
  }), _void(), {
26065
26065
  kind: "mutation",
26066
- auth: "admin"
26066
+ auth: "protected"
26067
26067
  }),
26068
26068
  setSwingHorizontal: method(object({
26069
26069
  deviceId: number().int().nonnegative(),
26070
26070
  on: boolean()
26071
26071
  }), _void(), {
26072
26072
  kind: "mutation",
26073
- auth: "admin"
26073
+ auth: "protected"
26074
26074
  })
26075
26075
  },
26076
26076
  status: {
@@ -26170,7 +26170,7 @@ var colorCapability = {
26170
26170
  color: ColorInputSchema
26171
26171
  }), _void(), {
26172
26172
  kind: "mutation",
26173
- auth: "admin"
26173
+ auth: "protected"
26174
26174
  }) },
26175
26175
  events: {
26176
26176
  /**
@@ -26499,7 +26499,7 @@ var controlCapability = {
26499
26499
  control: ControlSetValueInputSchema
26500
26500
  }), _void(), {
26501
26501
  kind: "mutation",
26502
- auth: "admin"
26502
+ auth: "protected"
26503
26503
  }) },
26504
26504
  status: {
26505
26505
  schema: ControlStatusSchema,
@@ -26545,29 +26545,29 @@ var coverCapability = {
26545
26545
  methods: {
26546
26546
  open: method(object({ deviceId: number().int().nonnegative() }), _void(), {
26547
26547
  kind: "mutation",
26548
- auth: "admin"
26548
+ auth: "protected"
26549
26549
  }),
26550
26550
  close: method(object({ deviceId: number().int().nonnegative() }), _void(), {
26551
26551
  kind: "mutation",
26552
- auth: "admin"
26552
+ auth: "protected"
26553
26553
  }),
26554
26554
  stop: method(object({ deviceId: number().int().nonnegative() }), _void(), {
26555
26555
  kind: "mutation",
26556
- auth: "admin"
26556
+ auth: "protected"
26557
26557
  }),
26558
26558
  setPosition: method(object({
26559
26559
  deviceId: number().int().nonnegative(),
26560
26560
  position: number().min(0).max(100)
26561
26561
  }), _void(), {
26562
26562
  kind: "mutation",
26563
- auth: "admin"
26563
+ auth: "protected"
26564
26564
  }),
26565
26565
  setTiltPosition: method(object({
26566
26566
  deviceId: number().int().nonnegative(),
26567
26567
  tiltPosition: number().min(0).max(100)
26568
26568
  }), _void(), {
26569
26569
  kind: "mutation",
26570
- auth: "admin"
26570
+ auth: "protected"
26571
26571
  })
26572
26572
  },
26573
26573
  status: {
@@ -27389,28 +27389,28 @@ var fanControlCapability = {
27389
27389
  percentage: number().min(0).max(100)
27390
27390
  }), _void(), {
27391
27391
  kind: "mutation",
27392
- auth: "admin"
27392
+ auth: "protected"
27393
27393
  }),
27394
27394
  setPreset: method(object({
27395
27395
  deviceId: number().int().nonnegative(),
27396
27396
  preset: string().min(1)
27397
27397
  }), _void(), {
27398
27398
  kind: "mutation",
27399
- auth: "admin"
27399
+ auth: "protected"
27400
27400
  }),
27401
27401
  setDirection: method(object({
27402
27402
  deviceId: number().int().nonnegative(),
27403
27403
  direction: FanDirectionSchema
27404
27404
  }), _void(), {
27405
27405
  kind: "mutation",
27406
- auth: "admin"
27406
+ auth: "protected"
27407
27407
  }),
27408
27408
  setOscillating: method(object({
27409
27409
  deviceId: number().int().nonnegative(),
27410
27410
  oscillating: boolean()
27411
27411
  }), _void(), {
27412
27412
  kind: "mutation",
27413
- auth: "admin"
27413
+ auth: "protected"
27414
27414
  })
27415
27415
  },
27416
27416
  status: {
@@ -27632,21 +27632,21 @@ var humidifierCapability = {
27632
27632
  on: boolean()
27633
27633
  }), _void(), {
27634
27634
  kind: "mutation",
27635
- auth: "admin"
27635
+ auth: "protected"
27636
27636
  }),
27637
27637
  setTargetHumidity: method(object({
27638
27638
  deviceId: number().int().nonnegative(),
27639
27639
  humidity: number().min(0).max(100)
27640
27640
  }), _void(), {
27641
27641
  kind: "mutation",
27642
- auth: "admin"
27642
+ auth: "protected"
27643
27643
  }),
27644
27644
  setMode: method(object({
27645
27645
  deviceId: number().int().nonnegative(),
27646
27646
  mode: string().min(1)
27647
27647
  }), _void(), {
27648
27648
  kind: "mutation",
27649
- auth: "admin"
27649
+ auth: "protected"
27650
27650
  })
27651
27651
  },
27652
27652
  status: {
@@ -28347,15 +28347,15 @@ var lawnMowerControlCapability = {
28347
28347
  methods: {
28348
28348
  startMowing: method(object({ deviceId: number().int().nonnegative() }), _void(), {
28349
28349
  kind: "mutation",
28350
- auth: "admin"
28350
+ auth: "protected"
28351
28351
  }),
28352
28352
  pause: method(object({ deviceId: number().int().nonnegative() }), _void(), {
28353
28353
  kind: "mutation",
28354
- auth: "admin"
28354
+ auth: "protected"
28355
28355
  }),
28356
28356
  dock: method(object({ deviceId: number().int().nonnegative() }), _void(), {
28357
28357
  kind: "mutation",
28358
- auth: "admin"
28358
+ auth: "protected"
28359
28359
  })
28360
28360
  },
28361
28361
  status: {
@@ -28640,18 +28640,18 @@ var lockControlCapability = {
28640
28640
  code: string().min(1).optional()
28641
28641
  }), _void(), {
28642
28642
  kind: "mutation",
28643
- auth: "admin"
28643
+ auth: "protected"
28644
28644
  }),
28645
28645
  unlock: method(object({
28646
28646
  deviceId: number().int().nonnegative(),
28647
28647
  code: string().min(1).optional()
28648
28648
  }), _void(), {
28649
28649
  kind: "mutation",
28650
- auth: "admin"
28650
+ auth: "protected"
28651
28651
  }),
28652
28652
  open: method(object({ deviceId: number().int().nonnegative() }), _void(), {
28653
28653
  kind: "mutation",
28654
- auth: "admin"
28654
+ auth: "protected"
28655
28655
  })
28656
28656
  },
28657
28657
  status: {
@@ -28754,65 +28754,65 @@ var mediaPlayerCapability = {
28754
28754
  methods: {
28755
28755
  play: method(object({ deviceId: number().int().nonnegative() }), _void(), {
28756
28756
  kind: "mutation",
28757
- auth: "admin"
28757
+ auth: "protected"
28758
28758
  }),
28759
28759
  pause: method(object({ deviceId: number().int().nonnegative() }), _void(), {
28760
28760
  kind: "mutation",
28761
- auth: "admin"
28761
+ auth: "protected"
28762
28762
  }),
28763
28763
  stop: method(object({ deviceId: number().int().nonnegative() }), _void(), {
28764
28764
  kind: "mutation",
28765
- auth: "admin"
28765
+ auth: "protected"
28766
28766
  }),
28767
28767
  next: method(object({ deviceId: number().int().nonnegative() }), _void(), {
28768
28768
  kind: "mutation",
28769
- auth: "admin"
28769
+ auth: "protected"
28770
28770
  }),
28771
28771
  previous: method(object({ deviceId: number().int().nonnegative() }), _void(), {
28772
28772
  kind: "mutation",
28773
- auth: "admin"
28773
+ auth: "protected"
28774
28774
  }),
28775
28775
  seek: method(object({
28776
28776
  deviceId: number().int().nonnegative(),
28777
28777
  positionMs: number().int().nonnegative()
28778
28778
  }), _void(), {
28779
28779
  kind: "mutation",
28780
- auth: "admin"
28780
+ auth: "protected"
28781
28781
  }),
28782
28782
  setVolume: method(object({
28783
28783
  deviceId: number().int().nonnegative(),
28784
28784
  volumeLevel: number().min(0).max(100)
28785
28785
  }), _void(), {
28786
28786
  kind: "mutation",
28787
- auth: "admin"
28787
+ auth: "protected"
28788
28788
  }),
28789
28789
  setMute: method(object({
28790
28790
  deviceId: number().int().nonnegative(),
28791
28791
  muted: boolean()
28792
28792
  }), _void(), {
28793
28793
  kind: "mutation",
28794
- auth: "admin"
28794
+ auth: "protected"
28795
28795
  }),
28796
28796
  setShuffle: method(object({
28797
28797
  deviceId: number().int().nonnegative(),
28798
28798
  shuffle: boolean()
28799
28799
  }), _void(), {
28800
28800
  kind: "mutation",
28801
- auth: "admin"
28801
+ auth: "protected"
28802
28802
  }),
28803
28803
  setRepeat: method(object({
28804
28804
  deviceId: number().int().nonnegative(),
28805
28805
  repeat: MediaPlayerRepeatSchema
28806
28806
  }), _void(), {
28807
28807
  kind: "mutation",
28808
- auth: "admin"
28808
+ auth: "protected"
28809
28809
  }),
28810
28810
  selectSource: method(object({
28811
28811
  deviceId: number().int().nonnegative(),
28812
28812
  source: string().min(1)
28813
28813
  }), _void(), {
28814
28814
  kind: "mutation",
28815
- auth: "admin"
28815
+ auth: "protected"
28816
28816
  }),
28817
28817
  playMedia: method(object({
28818
28818
  deviceId: number().int().nonnegative(),
@@ -28823,7 +28823,7 @@ var mediaPlayerCapability = {
28823
28823
  mediaType: string().min(1)
28824
28824
  }), _void(), {
28825
28825
  kind: "mutation",
28826
- auth: "admin"
28826
+ auth: "protected"
28827
28827
  })
28828
28828
  },
28829
28829
  status: {
@@ -30416,27 +30416,27 @@ var petFeederCapability = {
30416
30416
  hopper2: gramsPortion.optional()
30417
30417
  }), _void(), {
30418
30418
  kind: "mutation",
30419
- auth: "admin"
30419
+ auth: "protected"
30420
30420
  }),
30421
30421
  /** Cancel an in-progress manual feed. */
30422
30422
  cancelFeed: method(object({ deviceId: number().int().nonnegative() }), _void(), {
30423
30423
  kind: "mutation",
30424
- auth: "admin"
30424
+ auth: "protected"
30425
30425
  }),
30426
30426
  /** Reset the desiccant "days remaining" counter after replacing it. */
30427
30427
  resetDesiccant: method(object({ deviceId: number().int().nonnegative() }), _void(), {
30428
30428
  kind: "mutation",
30429
- auth: "admin"
30429
+ auth: "protected"
30430
30430
  }),
30431
30431
  /** Mark a hopper as refilled (D4H/D4S/D4SH). */
30432
30432
  markFoodReplenished: method(object({ deviceId: number().int().nonnegative() }), _void(), {
30433
30433
  kind: "mutation",
30434
- auth: "admin"
30434
+ auth: "protected"
30435
30435
  }),
30436
30436
  /** Call the pet with the recorded prompt (D3). */
30437
30437
  callPet: method(object({ deviceId: number().int().nonnegative() }), _void(), {
30438
30438
  kind: "mutation",
30439
- auth: "admin"
30439
+ auth: "protected"
30440
30440
  }),
30441
30441
  /** Play a stored sound by id (D3 / D4H / D4SH). */
30442
30442
  playSound: method(object({
@@ -30444,7 +30444,7 @@ var petFeederCapability = {
30444
30444
  soundId: number().int().nonnegative()
30445
30445
  }), _void(), {
30446
30446
  kind: "mutation",
30447
- auth: "admin"
30447
+ auth: "protected"
30448
30448
  }),
30449
30449
  /** Toggle the child-lock (manual-lock) setting. */
30450
30450
  setChildLock: method(object({
@@ -30452,7 +30452,7 @@ var petFeederCapability = {
30452
30452
  on: boolean()
30453
30453
  }), _void(), {
30454
30454
  kind: "mutation",
30455
- auth: "admin"
30455
+ auth: "protected"
30456
30456
  }),
30457
30457
  /** Toggle the front indicator light. */
30458
30458
  setIndicatorLight: method(object({
@@ -30460,7 +30460,7 @@ var petFeederCapability = {
30460
30460
  on: boolean()
30461
30461
  }), _void(), {
30462
30462
  kind: "mutation",
30463
- auth: "admin"
30463
+ auth: "protected"
30464
30464
  }),
30465
30465
  /** Toggle the dispense chime. */
30466
30466
  setFeedSound: method(object({
@@ -30468,7 +30468,7 @@ var petFeederCapability = {
30468
30468
  on: boolean()
30469
30469
  }), _void(), {
30470
30470
  kind: "mutation",
30471
- auth: "admin"
30471
+ auth: "protected"
30472
30472
  }),
30473
30473
  /** Set the speaker / prompt volume level. */
30474
30474
  setVolume: method(object({
@@ -30476,7 +30476,7 @@ var petFeederCapability = {
30476
30476
  level: number().int().nonnegative()
30477
30477
  }), _void(), {
30478
30478
  kind: "mutation",
30479
- auth: "admin"
30479
+ auth: "protected"
30480
30480
  })
30481
30481
  },
30482
30482
  status: {
@@ -32831,7 +32831,7 @@ var switchCapability = {
32831
32831
  on: boolean()
32832
32832
  }), _void(), {
32833
32833
  kind: "mutation",
32834
- auth: "admin"
32834
+ auth: "protected"
32835
32835
  }) },
32836
32836
  events: { onStateChanged: { data: object({
32837
32837
  deviceId: number(),
@@ -33819,30 +33819,30 @@ var vacuumControlCapability = {
33819
33819
  methods: {
33820
33820
  start: method(object({ deviceId: number().int().nonnegative() }), _void(), {
33821
33821
  kind: "mutation",
33822
- auth: "admin"
33822
+ auth: "protected"
33823
33823
  }),
33824
33824
  pause: method(object({ deviceId: number().int().nonnegative() }), _void(), {
33825
33825
  kind: "mutation",
33826
- auth: "admin"
33826
+ auth: "protected"
33827
33827
  }),
33828
33828
  stop: method(object({ deviceId: number().int().nonnegative() }), _void(), {
33829
33829
  kind: "mutation",
33830
- auth: "admin"
33830
+ auth: "protected"
33831
33831
  }),
33832
33832
  returnToBase: method(object({ deviceId: number().int().nonnegative() }), _void(), {
33833
33833
  kind: "mutation",
33834
- auth: "admin"
33834
+ auth: "protected"
33835
33835
  }),
33836
33836
  locate: method(object({ deviceId: number().int().nonnegative() }), _void(), {
33837
33837
  kind: "mutation",
33838
- auth: "admin"
33838
+ auth: "protected"
33839
33839
  }),
33840
33840
  setFanSpeed: method(object({
33841
33841
  deviceId: number().int().nonnegative(),
33842
33842
  speed: string().min(1)
33843
33843
  }), _void(), {
33844
33844
  kind: "mutation",
33845
- auth: "admin"
33845
+ auth: "protected"
33846
33846
  })
33847
33847
  },
33848
33848
  status: {
@@ -33886,22 +33886,22 @@ var valveCapability = {
33886
33886
  methods: {
33887
33887
  open: method(object({ deviceId: number().int().nonnegative() }), _void(), {
33888
33888
  kind: "mutation",
33889
- auth: "admin"
33889
+ auth: "protected"
33890
33890
  }),
33891
33891
  close: method(object({ deviceId: number().int().nonnegative() }), _void(), {
33892
33892
  kind: "mutation",
33893
- auth: "admin"
33893
+ auth: "protected"
33894
33894
  }),
33895
33895
  stop: method(object({ deviceId: number().int().nonnegative() }), _void(), {
33896
33896
  kind: "mutation",
33897
- auth: "admin"
33897
+ auth: "protected"
33898
33898
  }),
33899
33899
  setPosition: method(object({
33900
33900
  deviceId: number().int().nonnegative(),
33901
33901
  position: number().min(0).max(100)
33902
33902
  }), _void(), {
33903
33903
  kind: "mutation",
33904
- auth: "admin"
33904
+ auth: "protected"
33905
33905
  })
33906
33906
  },
33907
33907
  status: {
@@ -34000,21 +34000,21 @@ var waterHeaterCapability = {
34000
34000
  temp: number().finite()
34001
34001
  }), _void(), {
34002
34002
  kind: "mutation",
34003
- auth: "admin"
34003
+ auth: "protected"
34004
34004
  }),
34005
34005
  setOperationMode: method(object({
34006
34006
  deviceId: number().int().nonnegative(),
34007
34007
  mode: string().min(1)
34008
34008
  }), _void(), {
34009
34009
  kind: "mutation",
34010
- auth: "admin"
34010
+ auth: "protected"
34011
34011
  }),
34012
34012
  setAway: method(object({
34013
34013
  deviceId: number().int().nonnegative(),
34014
34014
  on: boolean()
34015
34015
  }), _void(), {
34016
34016
  kind: "mutation",
34017
- auth: "admin"
34017
+ auth: "protected"
34018
34018
  })
34019
34019
  },
34020
34020
  status: {
@@ -2,7 +2,7 @@ Object.defineProperties(exports, {
2
2
  __esModule: { value: true },
3
3
  [Symbol.toStringTag]: { value: "Module" }
4
4
  });
5
- const require_dist = require("../dist-CoLA3NHh.js");
5
+ const require_dist = require("../dist-BttKNVmP.js");
6
6
  let node_fs = require("node:fs");
7
7
  node_fs = require_dist.__toESM(node_fs);
8
8
  let node_path = require("node:path");
@@ -1,4 +1,4 @@
1
- import { F as PoolMemoryWatchdog, Pt as BaseAddon, Tt as resolvePoolMemoryPolicy, at as embeddingEncoderCapability, dt as hfModelUrl, vt as parseProcStatus } from "../dist-WxrHfFRz.mjs";
1
+ import { F as PoolMemoryWatchdog, Pt as BaseAddon, Tt as resolvePoolMemoryPolicy, at as embeddingEncoderCapability, dt as hfModelUrl, vt as parseProcStatus } from "../dist-BV15Z8DR.mjs";
2
2
  import { createRequire } from "node:module";
3
3
  import * as fs from "node:fs";
4
4
  import * as path$1 from "node:path";
@@ -3,7 +3,7 @@ import "./dist-CYZr2fwk.mjs";
3
3
  var e = {
4
4
  "@camstack/sdk": {
5
5
  name: "@camstack/sdk",
6
- version: "1.2.88",
6
+ version: "1.2.89",
7
7
  scope: ["default"],
8
8
  loaded: !1,
9
9
  from: "addon_pipeline_analytics_widgets",
@@ -18,7 +18,7 @@ var e = {
18
18
  },
19
19
  "@camstack/types": {
20
20
  name: "@camstack/types",
21
- version: "1.2.168",
21
+ version: "1.2.169",
22
22
  scope: ["default"],
23
23
  loaded: !1,
24
24
  from: "addon_pipeline_analytics_widgets",
@@ -33,7 +33,7 @@ var e = {
33
33
  },
34
34
  "@camstack/ui-library": {
35
35
  name: "@camstack/ui-library",
36
- version: "1.2.136",
36
+ version: "1.2.137",
37
37
  scope: ["default"],
38
38
  loaded: !1,
39
39
  from: "addon_pipeline_analytics_widgets",
@@ -36,7 +36,7 @@ async function r() {
36
36
  }
37
37
  },
38
38
  "@camstack/types": {
39
- version: "1.2.168",
39
+ version: "1.2.169",
40
40
  scope: "default",
41
41
  shareConfig: {
42
42
  singleton: !0,
@@ -45,7 +45,7 @@ async function r() {
45
45
  }
46
46
  },
47
47
  "@camstack/sdk": {
48
- version: "1.2.88",
48
+ version: "1.2.89",
49
49
  scope: "default",
50
50
  shareConfig: {
51
51
  singleton: !0,
@@ -81,7 +81,7 @@ async function r() {
81
81
  }
82
82
  },
83
83
  "@camstack/ui-library": {
84
- version: "1.2.136",
84
+ version: "1.2.137",
85
85
  scope: "default",
86
86
  shareConfig: {
87
87
  singleton: !0,