@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.
@@ -16569,14 +16569,14 @@ var alarmPanelCapability = {
16569
16569
  code: string().min(1).optional()
16570
16570
  }), _void(), {
16571
16571
  kind: "mutation",
16572
- auth: "admin"
16572
+ auth: "protected"
16573
16573
  }),
16574
16574
  disarm: method(object({
16575
16575
  deviceId: number().int().nonnegative(),
16576
16576
  code: string().min(1).optional()
16577
16577
  }), _void(), {
16578
16578
  kind: "mutation",
16579
- auth: "admin"
16579
+ auth: "protected"
16580
16580
  }),
16581
16581
  /**
16582
16582
  * Force the panel into the `triggered` state — used by HA
@@ -16587,7 +16587,7 @@ var alarmPanelCapability = {
16587
16587
  */
16588
16588
  trigger: method(object({ deviceId: number().int().nonnegative() }), _void(), {
16589
16589
  kind: "mutation",
16590
- auth: "admin"
16590
+ auth: "protected"
16591
16591
  })
16592
16592
  },
16593
16593
  status: {
@@ -25764,7 +25764,7 @@ var brightnessCapability = {
25764
25764
  percentage: number().min(0).max(100)
25765
25765
  }), _void(), {
25766
25766
  kind: "mutation",
25767
- auth: "admin"
25767
+ auth: "protected"
25768
25768
  }) },
25769
25769
  events: {
25770
25770
  /**
@@ -25797,7 +25797,7 @@ onBrightnessChanged: { data: object({
25797
25797
  };
25798
25798
  DeviceType.Button, method(object({ deviceId: number().int().nonnegative() }), _void(), {
25799
25799
  kind: "mutation",
25800
- auth: "admin"
25800
+ auth: "protected"
25801
25801
  });
25802
25802
  /**
25803
25803
  * camera-credentials — device-scoped cap exposing the camera's network
@@ -25989,28 +25989,28 @@ var climateControlCapability = {
25989
25989
  mode: HvacModeSchema
25990
25990
  }), _void(), {
25991
25991
  kind: "mutation",
25992
- auth: "admin"
25992
+ auth: "protected"
25993
25993
  }),
25994
25994
  setFanMode: method(object({
25995
25995
  deviceId: number().int().nonnegative(),
25996
25996
  fanMode: string().min(1)
25997
25997
  }), _void(), {
25998
25998
  kind: "mutation",
25999
- auth: "admin"
25999
+ auth: "protected"
26000
26000
  }),
26001
26001
  setPreset: method(object({
26002
26002
  deviceId: number().int().nonnegative(),
26003
26003
  preset: string().min(1)
26004
26004
  }), _void(), {
26005
26005
  kind: "mutation",
26006
- auth: "admin"
26006
+ auth: "protected"
26007
26007
  }),
26008
26008
  setTarget: method(object({
26009
26009
  deviceId: number().int().nonnegative(),
26010
26010
  target: number()
26011
26011
  }), _void(), {
26012
26012
  kind: "mutation",
26013
- auth: "admin"
26013
+ auth: "protected"
26014
26014
  }),
26015
26015
  setTargetRange: method(object({
26016
26016
  deviceId: number().int().nonnegative(),
@@ -26018,28 +26018,28 @@ var climateControlCapability = {
26018
26018
  targetHigh: number()
26019
26019
  }), _void(), {
26020
26020
  kind: "mutation",
26021
- auth: "admin"
26021
+ auth: "protected"
26022
26022
  }),
26023
26023
  setTargetHumidity: method(object({
26024
26024
  deviceId: number().int().nonnegative(),
26025
26025
  targetHumidity: number().min(0).max(100)
26026
26026
  }), _void(), {
26027
26027
  kind: "mutation",
26028
- auth: "admin"
26028
+ auth: "protected"
26029
26029
  }),
26030
26030
  setSwingVertical: method(object({
26031
26031
  deviceId: number().int().nonnegative(),
26032
26032
  on: boolean()
26033
26033
  }), _void(), {
26034
26034
  kind: "mutation",
26035
- auth: "admin"
26035
+ auth: "protected"
26036
26036
  }),
26037
26037
  setSwingHorizontal: method(object({
26038
26038
  deviceId: number().int().nonnegative(),
26039
26039
  on: boolean()
26040
26040
  }), _void(), {
26041
26041
  kind: "mutation",
26042
- auth: "admin"
26042
+ auth: "protected"
26043
26043
  })
26044
26044
  },
26045
26045
  status: {
@@ -26139,7 +26139,7 @@ var colorCapability = {
26139
26139
  color: ColorInputSchema
26140
26140
  }), _void(), {
26141
26141
  kind: "mutation",
26142
- auth: "admin"
26142
+ auth: "protected"
26143
26143
  }) },
26144
26144
  events: {
26145
26145
  /**
@@ -26468,7 +26468,7 @@ var controlCapability = {
26468
26468
  control: ControlSetValueInputSchema
26469
26469
  }), _void(), {
26470
26470
  kind: "mutation",
26471
- auth: "admin"
26471
+ auth: "protected"
26472
26472
  }) },
26473
26473
  status: {
26474
26474
  schema: ControlStatusSchema,
@@ -26514,29 +26514,29 @@ var coverCapability = {
26514
26514
  methods: {
26515
26515
  open: method(object({ deviceId: number().int().nonnegative() }), _void(), {
26516
26516
  kind: "mutation",
26517
- auth: "admin"
26517
+ auth: "protected"
26518
26518
  }),
26519
26519
  close: method(object({ deviceId: number().int().nonnegative() }), _void(), {
26520
26520
  kind: "mutation",
26521
- auth: "admin"
26521
+ auth: "protected"
26522
26522
  }),
26523
26523
  stop: method(object({ deviceId: number().int().nonnegative() }), _void(), {
26524
26524
  kind: "mutation",
26525
- auth: "admin"
26525
+ auth: "protected"
26526
26526
  }),
26527
26527
  setPosition: method(object({
26528
26528
  deviceId: number().int().nonnegative(),
26529
26529
  position: number().min(0).max(100)
26530
26530
  }), _void(), {
26531
26531
  kind: "mutation",
26532
- auth: "admin"
26532
+ auth: "protected"
26533
26533
  }),
26534
26534
  setTiltPosition: method(object({
26535
26535
  deviceId: number().int().nonnegative(),
26536
26536
  tiltPosition: number().min(0).max(100)
26537
26537
  }), _void(), {
26538
26538
  kind: "mutation",
26539
- auth: "admin"
26539
+ auth: "protected"
26540
26540
  })
26541
26541
  },
26542
26542
  status: {
@@ -27358,28 +27358,28 @@ var fanControlCapability = {
27358
27358
  percentage: number().min(0).max(100)
27359
27359
  }), _void(), {
27360
27360
  kind: "mutation",
27361
- auth: "admin"
27361
+ auth: "protected"
27362
27362
  }),
27363
27363
  setPreset: method(object({
27364
27364
  deviceId: number().int().nonnegative(),
27365
27365
  preset: string().min(1)
27366
27366
  }), _void(), {
27367
27367
  kind: "mutation",
27368
- auth: "admin"
27368
+ auth: "protected"
27369
27369
  }),
27370
27370
  setDirection: method(object({
27371
27371
  deviceId: number().int().nonnegative(),
27372
27372
  direction: FanDirectionSchema
27373
27373
  }), _void(), {
27374
27374
  kind: "mutation",
27375
- auth: "admin"
27375
+ auth: "protected"
27376
27376
  }),
27377
27377
  setOscillating: method(object({
27378
27378
  deviceId: number().int().nonnegative(),
27379
27379
  oscillating: boolean()
27380
27380
  }), _void(), {
27381
27381
  kind: "mutation",
27382
- auth: "admin"
27382
+ auth: "protected"
27383
27383
  })
27384
27384
  },
27385
27385
  status: {
@@ -27601,21 +27601,21 @@ var humidifierCapability = {
27601
27601
  on: boolean()
27602
27602
  }), _void(), {
27603
27603
  kind: "mutation",
27604
- auth: "admin"
27604
+ auth: "protected"
27605
27605
  }),
27606
27606
  setTargetHumidity: method(object({
27607
27607
  deviceId: number().int().nonnegative(),
27608
27608
  humidity: number().min(0).max(100)
27609
27609
  }), _void(), {
27610
27610
  kind: "mutation",
27611
- auth: "admin"
27611
+ auth: "protected"
27612
27612
  }),
27613
27613
  setMode: method(object({
27614
27614
  deviceId: number().int().nonnegative(),
27615
27615
  mode: string().min(1)
27616
27616
  }), _void(), {
27617
27617
  kind: "mutation",
27618
- auth: "admin"
27618
+ auth: "protected"
27619
27619
  })
27620
27620
  },
27621
27621
  status: {
@@ -28316,15 +28316,15 @@ var lawnMowerControlCapability = {
28316
28316
  methods: {
28317
28317
  startMowing: method(object({ deviceId: number().int().nonnegative() }), _void(), {
28318
28318
  kind: "mutation",
28319
- auth: "admin"
28319
+ auth: "protected"
28320
28320
  }),
28321
28321
  pause: method(object({ deviceId: number().int().nonnegative() }), _void(), {
28322
28322
  kind: "mutation",
28323
- auth: "admin"
28323
+ auth: "protected"
28324
28324
  }),
28325
28325
  dock: method(object({ deviceId: number().int().nonnegative() }), _void(), {
28326
28326
  kind: "mutation",
28327
- auth: "admin"
28327
+ auth: "protected"
28328
28328
  })
28329
28329
  },
28330
28330
  status: {
@@ -28609,18 +28609,18 @@ var lockControlCapability = {
28609
28609
  code: string().min(1).optional()
28610
28610
  }), _void(), {
28611
28611
  kind: "mutation",
28612
- auth: "admin"
28612
+ auth: "protected"
28613
28613
  }),
28614
28614
  unlock: method(object({
28615
28615
  deviceId: number().int().nonnegative(),
28616
28616
  code: string().min(1).optional()
28617
28617
  }), _void(), {
28618
28618
  kind: "mutation",
28619
- auth: "admin"
28619
+ auth: "protected"
28620
28620
  }),
28621
28621
  open: method(object({ deviceId: number().int().nonnegative() }), _void(), {
28622
28622
  kind: "mutation",
28623
- auth: "admin"
28623
+ auth: "protected"
28624
28624
  })
28625
28625
  },
28626
28626
  status: {
@@ -28723,65 +28723,65 @@ var mediaPlayerCapability = {
28723
28723
  methods: {
28724
28724
  play: method(object({ deviceId: number().int().nonnegative() }), _void(), {
28725
28725
  kind: "mutation",
28726
- auth: "admin"
28726
+ auth: "protected"
28727
28727
  }),
28728
28728
  pause: method(object({ deviceId: number().int().nonnegative() }), _void(), {
28729
28729
  kind: "mutation",
28730
- auth: "admin"
28730
+ auth: "protected"
28731
28731
  }),
28732
28732
  stop: method(object({ deviceId: number().int().nonnegative() }), _void(), {
28733
28733
  kind: "mutation",
28734
- auth: "admin"
28734
+ auth: "protected"
28735
28735
  }),
28736
28736
  next: method(object({ deviceId: number().int().nonnegative() }), _void(), {
28737
28737
  kind: "mutation",
28738
- auth: "admin"
28738
+ auth: "protected"
28739
28739
  }),
28740
28740
  previous: method(object({ deviceId: number().int().nonnegative() }), _void(), {
28741
28741
  kind: "mutation",
28742
- auth: "admin"
28742
+ auth: "protected"
28743
28743
  }),
28744
28744
  seek: method(object({
28745
28745
  deviceId: number().int().nonnegative(),
28746
28746
  positionMs: number().int().nonnegative()
28747
28747
  }), _void(), {
28748
28748
  kind: "mutation",
28749
- auth: "admin"
28749
+ auth: "protected"
28750
28750
  }),
28751
28751
  setVolume: method(object({
28752
28752
  deviceId: number().int().nonnegative(),
28753
28753
  volumeLevel: number().min(0).max(100)
28754
28754
  }), _void(), {
28755
28755
  kind: "mutation",
28756
- auth: "admin"
28756
+ auth: "protected"
28757
28757
  }),
28758
28758
  setMute: method(object({
28759
28759
  deviceId: number().int().nonnegative(),
28760
28760
  muted: boolean()
28761
28761
  }), _void(), {
28762
28762
  kind: "mutation",
28763
- auth: "admin"
28763
+ auth: "protected"
28764
28764
  }),
28765
28765
  setShuffle: method(object({
28766
28766
  deviceId: number().int().nonnegative(),
28767
28767
  shuffle: boolean()
28768
28768
  }), _void(), {
28769
28769
  kind: "mutation",
28770
- auth: "admin"
28770
+ auth: "protected"
28771
28771
  }),
28772
28772
  setRepeat: method(object({
28773
28773
  deviceId: number().int().nonnegative(),
28774
28774
  repeat: MediaPlayerRepeatSchema
28775
28775
  }), _void(), {
28776
28776
  kind: "mutation",
28777
- auth: "admin"
28777
+ auth: "protected"
28778
28778
  }),
28779
28779
  selectSource: method(object({
28780
28780
  deviceId: number().int().nonnegative(),
28781
28781
  source: string().min(1)
28782
28782
  }), _void(), {
28783
28783
  kind: "mutation",
28784
- auth: "admin"
28784
+ auth: "protected"
28785
28785
  }),
28786
28786
  playMedia: method(object({
28787
28787
  deviceId: number().int().nonnegative(),
@@ -28792,7 +28792,7 @@ var mediaPlayerCapability = {
28792
28792
  mediaType: string().min(1)
28793
28793
  }), _void(), {
28794
28794
  kind: "mutation",
28795
- auth: "admin"
28795
+ auth: "protected"
28796
28796
  })
28797
28797
  },
28798
28798
  status: {
@@ -30385,27 +30385,27 @@ var petFeederCapability = {
30385
30385
  hopper2: gramsPortion.optional()
30386
30386
  }), _void(), {
30387
30387
  kind: "mutation",
30388
- auth: "admin"
30388
+ auth: "protected"
30389
30389
  }),
30390
30390
  /** Cancel an in-progress manual feed. */
30391
30391
  cancelFeed: method(object({ deviceId: number().int().nonnegative() }), _void(), {
30392
30392
  kind: "mutation",
30393
- auth: "admin"
30393
+ auth: "protected"
30394
30394
  }),
30395
30395
  /** Reset the desiccant "days remaining" counter after replacing it. */
30396
30396
  resetDesiccant: method(object({ deviceId: number().int().nonnegative() }), _void(), {
30397
30397
  kind: "mutation",
30398
- auth: "admin"
30398
+ auth: "protected"
30399
30399
  }),
30400
30400
  /** Mark a hopper as refilled (D4H/D4S/D4SH). */
30401
30401
  markFoodReplenished: method(object({ deviceId: number().int().nonnegative() }), _void(), {
30402
30402
  kind: "mutation",
30403
- auth: "admin"
30403
+ auth: "protected"
30404
30404
  }),
30405
30405
  /** Call the pet with the recorded prompt (D3). */
30406
30406
  callPet: method(object({ deviceId: number().int().nonnegative() }), _void(), {
30407
30407
  kind: "mutation",
30408
- auth: "admin"
30408
+ auth: "protected"
30409
30409
  }),
30410
30410
  /** Play a stored sound by id (D3 / D4H / D4SH). */
30411
30411
  playSound: method(object({
@@ -30413,7 +30413,7 @@ var petFeederCapability = {
30413
30413
  soundId: number().int().nonnegative()
30414
30414
  }), _void(), {
30415
30415
  kind: "mutation",
30416
- auth: "admin"
30416
+ auth: "protected"
30417
30417
  }),
30418
30418
  /** Toggle the child-lock (manual-lock) setting. */
30419
30419
  setChildLock: method(object({
@@ -30421,7 +30421,7 @@ var petFeederCapability = {
30421
30421
  on: boolean()
30422
30422
  }), _void(), {
30423
30423
  kind: "mutation",
30424
- auth: "admin"
30424
+ auth: "protected"
30425
30425
  }),
30426
30426
  /** Toggle the front indicator light. */
30427
30427
  setIndicatorLight: method(object({
@@ -30429,7 +30429,7 @@ var petFeederCapability = {
30429
30429
  on: boolean()
30430
30430
  }), _void(), {
30431
30431
  kind: "mutation",
30432
- auth: "admin"
30432
+ auth: "protected"
30433
30433
  }),
30434
30434
  /** Toggle the dispense chime. */
30435
30435
  setFeedSound: method(object({
@@ -30437,7 +30437,7 @@ var petFeederCapability = {
30437
30437
  on: boolean()
30438
30438
  }), _void(), {
30439
30439
  kind: "mutation",
30440
- auth: "admin"
30440
+ auth: "protected"
30441
30441
  }),
30442
30442
  /** Set the speaker / prompt volume level. */
30443
30443
  setVolume: method(object({
@@ -30445,7 +30445,7 @@ var petFeederCapability = {
30445
30445
  level: number().int().nonnegative()
30446
30446
  }), _void(), {
30447
30447
  kind: "mutation",
30448
- auth: "admin"
30448
+ auth: "protected"
30449
30449
  })
30450
30450
  },
30451
30451
  status: {
@@ -32800,7 +32800,7 @@ var switchCapability = {
32800
32800
  on: boolean()
32801
32801
  }), _void(), {
32802
32802
  kind: "mutation",
32803
- auth: "admin"
32803
+ auth: "protected"
32804
32804
  }) },
32805
32805
  events: { onStateChanged: { data: object({
32806
32806
  deviceId: number(),
@@ -33788,30 +33788,30 @@ var vacuumControlCapability = {
33788
33788
  methods: {
33789
33789
  start: method(object({ deviceId: number().int().nonnegative() }), _void(), {
33790
33790
  kind: "mutation",
33791
- auth: "admin"
33791
+ auth: "protected"
33792
33792
  }),
33793
33793
  pause: method(object({ deviceId: number().int().nonnegative() }), _void(), {
33794
33794
  kind: "mutation",
33795
- auth: "admin"
33795
+ auth: "protected"
33796
33796
  }),
33797
33797
  stop: method(object({ deviceId: number().int().nonnegative() }), _void(), {
33798
33798
  kind: "mutation",
33799
- auth: "admin"
33799
+ auth: "protected"
33800
33800
  }),
33801
33801
  returnToBase: method(object({ deviceId: number().int().nonnegative() }), _void(), {
33802
33802
  kind: "mutation",
33803
- auth: "admin"
33803
+ auth: "protected"
33804
33804
  }),
33805
33805
  locate: method(object({ deviceId: number().int().nonnegative() }), _void(), {
33806
33806
  kind: "mutation",
33807
- auth: "admin"
33807
+ auth: "protected"
33808
33808
  }),
33809
33809
  setFanSpeed: method(object({
33810
33810
  deviceId: number().int().nonnegative(),
33811
33811
  speed: string().min(1)
33812
33812
  }), _void(), {
33813
33813
  kind: "mutation",
33814
- auth: "admin"
33814
+ auth: "protected"
33815
33815
  })
33816
33816
  },
33817
33817
  status: {
@@ -33855,22 +33855,22 @@ var valveCapability = {
33855
33855
  methods: {
33856
33856
  open: method(object({ deviceId: number().int().nonnegative() }), _void(), {
33857
33857
  kind: "mutation",
33858
- auth: "admin"
33858
+ auth: "protected"
33859
33859
  }),
33860
33860
  close: method(object({ deviceId: number().int().nonnegative() }), _void(), {
33861
33861
  kind: "mutation",
33862
- auth: "admin"
33862
+ auth: "protected"
33863
33863
  }),
33864
33864
  stop: method(object({ deviceId: number().int().nonnegative() }), _void(), {
33865
33865
  kind: "mutation",
33866
- auth: "admin"
33866
+ auth: "protected"
33867
33867
  }),
33868
33868
  setPosition: method(object({
33869
33869
  deviceId: number().int().nonnegative(),
33870
33870
  position: number().min(0).max(100)
33871
33871
  }), _void(), {
33872
33872
  kind: "mutation",
33873
- auth: "admin"
33873
+ auth: "protected"
33874
33874
  })
33875
33875
  },
33876
33876
  status: {
@@ -33969,21 +33969,21 @@ var waterHeaterCapability = {
33969
33969
  temp: number().finite()
33970
33970
  }), _void(), {
33971
33971
  kind: "mutation",
33972
- auth: "admin"
33972
+ auth: "protected"
33973
33973
  }),
33974
33974
  setOperationMode: method(object({
33975
33975
  deviceId: number().int().nonnegative(),
33976
33976
  mode: string().min(1)
33977
33977
  }), _void(), {
33978
33978
  kind: "mutation",
33979
- auth: "admin"
33979
+ auth: "protected"
33980
33980
  }),
33981
33981
  setAway: method(object({
33982
33982
  deviceId: number().int().nonnegative(),
33983
33983
  on: boolean()
33984
33984
  }), _void(), {
33985
33985
  kind: "mutation",
33986
- auth: "admin"
33986
+ auth: "protected"
33987
33987
  })
33988
33988
  },
33989
33989
  status: {