@camstack/addon-provider-petkit 0.2.85 → 0.2.86

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.
package/dist/addon.js CHANGED
@@ -17227,14 +17227,14 @@ var alarmPanelCapability = {
17227
17227
  code: string().min(1).optional()
17228
17228
  }), _void(), {
17229
17229
  kind: "mutation",
17230
- auth: "admin"
17230
+ auth: "protected"
17231
17231
  }),
17232
17232
  disarm: method(object({
17233
17233
  deviceId: number().int().nonnegative(),
17234
17234
  code: string().min(1).optional()
17235
17235
  }), _void(), {
17236
17236
  kind: "mutation",
17237
- auth: "admin"
17237
+ auth: "protected"
17238
17238
  }),
17239
17239
  /**
17240
17240
  * Force the panel into the `triggered` state — used by HA
@@ -17245,7 +17245,7 @@ var alarmPanelCapability = {
17245
17245
  */
17246
17246
  trigger: method(object({ deviceId: number().int().nonnegative() }), _void(), {
17247
17247
  kind: "mutation",
17248
- auth: "admin"
17248
+ auth: "protected"
17249
17249
  })
17250
17250
  },
17251
17251
  status: {
@@ -25212,7 +25212,7 @@ var brightnessCapability = {
25212
25212
  percentage: number().min(0).max(100)
25213
25213
  }), _void(), {
25214
25214
  kind: "mutation",
25215
- auth: "admin"
25215
+ auth: "protected"
25216
25216
  }) },
25217
25217
  events: {
25218
25218
  /**
@@ -25245,7 +25245,7 @@ onBrightnessChanged: { data: object({
25245
25245
  };
25246
25246
  DeviceType.Button, method(object({ deviceId: number().int().nonnegative() }), _void(), {
25247
25247
  kind: "mutation",
25248
- auth: "admin"
25248
+ auth: "protected"
25249
25249
  });
25250
25250
  /**
25251
25251
  * camera-credentials — device-scoped cap exposing the camera's network
@@ -25437,28 +25437,28 @@ var climateControlCapability = {
25437
25437
  mode: HvacModeSchema
25438
25438
  }), _void(), {
25439
25439
  kind: "mutation",
25440
- auth: "admin"
25440
+ auth: "protected"
25441
25441
  }),
25442
25442
  setFanMode: method(object({
25443
25443
  deviceId: number().int().nonnegative(),
25444
25444
  fanMode: string().min(1)
25445
25445
  }), _void(), {
25446
25446
  kind: "mutation",
25447
- auth: "admin"
25447
+ auth: "protected"
25448
25448
  }),
25449
25449
  setPreset: method(object({
25450
25450
  deviceId: number().int().nonnegative(),
25451
25451
  preset: string().min(1)
25452
25452
  }), _void(), {
25453
25453
  kind: "mutation",
25454
- auth: "admin"
25454
+ auth: "protected"
25455
25455
  }),
25456
25456
  setTarget: method(object({
25457
25457
  deviceId: number().int().nonnegative(),
25458
25458
  target: number()
25459
25459
  }), _void(), {
25460
25460
  kind: "mutation",
25461
- auth: "admin"
25461
+ auth: "protected"
25462
25462
  }),
25463
25463
  setTargetRange: method(object({
25464
25464
  deviceId: number().int().nonnegative(),
@@ -25466,28 +25466,28 @@ var climateControlCapability = {
25466
25466
  targetHigh: number()
25467
25467
  }), _void(), {
25468
25468
  kind: "mutation",
25469
- auth: "admin"
25469
+ auth: "protected"
25470
25470
  }),
25471
25471
  setTargetHumidity: method(object({
25472
25472
  deviceId: number().int().nonnegative(),
25473
25473
  targetHumidity: number().min(0).max(100)
25474
25474
  }), _void(), {
25475
25475
  kind: "mutation",
25476
- auth: "admin"
25476
+ auth: "protected"
25477
25477
  }),
25478
25478
  setSwingVertical: method(object({
25479
25479
  deviceId: number().int().nonnegative(),
25480
25480
  on: boolean()
25481
25481
  }), _void(), {
25482
25482
  kind: "mutation",
25483
- auth: "admin"
25483
+ auth: "protected"
25484
25484
  }),
25485
25485
  setSwingHorizontal: method(object({
25486
25486
  deviceId: number().int().nonnegative(),
25487
25487
  on: boolean()
25488
25488
  }), _void(), {
25489
25489
  kind: "mutation",
25490
- auth: "admin"
25490
+ auth: "protected"
25491
25491
  })
25492
25492
  },
25493
25493
  status: {
@@ -25587,7 +25587,7 @@ var colorCapability = {
25587
25587
  color: ColorInputSchema
25588
25588
  }), _void(), {
25589
25589
  kind: "mutation",
25590
- auth: "admin"
25590
+ auth: "protected"
25591
25591
  }) },
25592
25592
  events: {
25593
25593
  /**
@@ -25924,7 +25924,7 @@ var controlCapability = {
25924
25924
  control: ControlSetValueInputSchema
25925
25925
  }), _void(), {
25926
25926
  kind: "mutation",
25927
- auth: "admin"
25927
+ auth: "protected"
25928
25928
  }) },
25929
25929
  status: {
25930
25930
  schema: ControlStatusSchema,
@@ -25970,29 +25970,29 @@ var coverCapability = {
25970
25970
  methods: {
25971
25971
  open: method(object({ deviceId: number().int().nonnegative() }), _void(), {
25972
25972
  kind: "mutation",
25973
- auth: "admin"
25973
+ auth: "protected"
25974
25974
  }),
25975
25975
  close: method(object({ deviceId: number().int().nonnegative() }), _void(), {
25976
25976
  kind: "mutation",
25977
- auth: "admin"
25977
+ auth: "protected"
25978
25978
  }),
25979
25979
  stop: method(object({ deviceId: number().int().nonnegative() }), _void(), {
25980
25980
  kind: "mutation",
25981
- auth: "admin"
25981
+ auth: "protected"
25982
25982
  }),
25983
25983
  setPosition: method(object({
25984
25984
  deviceId: number().int().nonnegative(),
25985
25985
  position: number().min(0).max(100)
25986
25986
  }), _void(), {
25987
25987
  kind: "mutation",
25988
- auth: "admin"
25988
+ auth: "protected"
25989
25989
  }),
25990
25990
  setTiltPosition: method(object({
25991
25991
  deviceId: number().int().nonnegative(),
25992
25992
  tiltPosition: number().min(0).max(100)
25993
25993
  }), _void(), {
25994
25994
  kind: "mutation",
25995
- auth: "admin"
25995
+ auth: "protected"
25996
25996
  })
25997
25997
  },
25998
25998
  status: {
@@ -26775,28 +26775,28 @@ var fanControlCapability = {
26775
26775
  percentage: number().min(0).max(100)
26776
26776
  }), _void(), {
26777
26777
  kind: "mutation",
26778
- auth: "admin"
26778
+ auth: "protected"
26779
26779
  }),
26780
26780
  setPreset: method(object({
26781
26781
  deviceId: number().int().nonnegative(),
26782
26782
  preset: string().min(1)
26783
26783
  }), _void(), {
26784
26784
  kind: "mutation",
26785
- auth: "admin"
26785
+ auth: "protected"
26786
26786
  }),
26787
26787
  setDirection: method(object({
26788
26788
  deviceId: number().int().nonnegative(),
26789
26789
  direction: FanDirectionSchema
26790
26790
  }), _void(), {
26791
26791
  kind: "mutation",
26792
- auth: "admin"
26792
+ auth: "protected"
26793
26793
  }),
26794
26794
  setOscillating: method(object({
26795
26795
  deviceId: number().int().nonnegative(),
26796
26796
  oscillating: boolean()
26797
26797
  }), _void(), {
26798
26798
  kind: "mutation",
26799
- auth: "admin"
26799
+ auth: "protected"
26800
26800
  })
26801
26801
  },
26802
26802
  status: {
@@ -27018,21 +27018,21 @@ var humidifierCapability = {
27018
27018
  on: boolean()
27019
27019
  }), _void(), {
27020
27020
  kind: "mutation",
27021
- auth: "admin"
27021
+ auth: "protected"
27022
27022
  }),
27023
27023
  setTargetHumidity: method(object({
27024
27024
  deviceId: number().int().nonnegative(),
27025
27025
  humidity: number().min(0).max(100)
27026
27026
  }), _void(), {
27027
27027
  kind: "mutation",
27028
- auth: "admin"
27028
+ auth: "protected"
27029
27029
  }),
27030
27030
  setMode: method(object({
27031
27031
  deviceId: number().int().nonnegative(),
27032
27032
  mode: string().min(1)
27033
27033
  }), _void(), {
27034
27034
  kind: "mutation",
27035
- auth: "admin"
27035
+ auth: "protected"
27036
27036
  })
27037
27037
  },
27038
27038
  status: {
@@ -27733,15 +27733,15 @@ var lawnMowerControlCapability = {
27733
27733
  methods: {
27734
27734
  startMowing: method(object({ deviceId: number().int().nonnegative() }), _void(), {
27735
27735
  kind: "mutation",
27736
- auth: "admin"
27736
+ auth: "protected"
27737
27737
  }),
27738
27738
  pause: method(object({ deviceId: number().int().nonnegative() }), _void(), {
27739
27739
  kind: "mutation",
27740
- auth: "admin"
27740
+ auth: "protected"
27741
27741
  }),
27742
27742
  dock: method(object({ deviceId: number().int().nonnegative() }), _void(), {
27743
27743
  kind: "mutation",
27744
- auth: "admin"
27744
+ auth: "protected"
27745
27745
  })
27746
27746
  },
27747
27747
  status: {
@@ -28026,18 +28026,18 @@ var lockControlCapability = {
28026
28026
  code: string().min(1).optional()
28027
28027
  }), _void(), {
28028
28028
  kind: "mutation",
28029
- auth: "admin"
28029
+ auth: "protected"
28030
28030
  }),
28031
28031
  unlock: method(object({
28032
28032
  deviceId: number().int().nonnegative(),
28033
28033
  code: string().min(1).optional()
28034
28034
  }), _void(), {
28035
28035
  kind: "mutation",
28036
- auth: "admin"
28036
+ auth: "protected"
28037
28037
  }),
28038
28038
  open: method(object({ deviceId: number().int().nonnegative() }), _void(), {
28039
28039
  kind: "mutation",
28040
- auth: "admin"
28040
+ auth: "protected"
28041
28041
  })
28042
28042
  },
28043
28043
  status: {
@@ -28140,65 +28140,65 @@ var mediaPlayerCapability = {
28140
28140
  methods: {
28141
28141
  play: method(object({ deviceId: number().int().nonnegative() }), _void(), {
28142
28142
  kind: "mutation",
28143
- auth: "admin"
28143
+ auth: "protected"
28144
28144
  }),
28145
28145
  pause: method(object({ deviceId: number().int().nonnegative() }), _void(), {
28146
28146
  kind: "mutation",
28147
- auth: "admin"
28147
+ auth: "protected"
28148
28148
  }),
28149
28149
  stop: method(object({ deviceId: number().int().nonnegative() }), _void(), {
28150
28150
  kind: "mutation",
28151
- auth: "admin"
28151
+ auth: "protected"
28152
28152
  }),
28153
28153
  next: method(object({ deviceId: number().int().nonnegative() }), _void(), {
28154
28154
  kind: "mutation",
28155
- auth: "admin"
28155
+ auth: "protected"
28156
28156
  }),
28157
28157
  previous: method(object({ deviceId: number().int().nonnegative() }), _void(), {
28158
28158
  kind: "mutation",
28159
- auth: "admin"
28159
+ auth: "protected"
28160
28160
  }),
28161
28161
  seek: method(object({
28162
28162
  deviceId: number().int().nonnegative(),
28163
28163
  positionMs: number().int().nonnegative()
28164
28164
  }), _void(), {
28165
28165
  kind: "mutation",
28166
- auth: "admin"
28166
+ auth: "protected"
28167
28167
  }),
28168
28168
  setVolume: method(object({
28169
28169
  deviceId: number().int().nonnegative(),
28170
28170
  volumeLevel: number().min(0).max(100)
28171
28171
  }), _void(), {
28172
28172
  kind: "mutation",
28173
- auth: "admin"
28173
+ auth: "protected"
28174
28174
  }),
28175
28175
  setMute: method(object({
28176
28176
  deviceId: number().int().nonnegative(),
28177
28177
  muted: boolean()
28178
28178
  }), _void(), {
28179
28179
  kind: "mutation",
28180
- auth: "admin"
28180
+ auth: "protected"
28181
28181
  }),
28182
28182
  setShuffle: method(object({
28183
28183
  deviceId: number().int().nonnegative(),
28184
28184
  shuffle: boolean()
28185
28185
  }), _void(), {
28186
28186
  kind: "mutation",
28187
- auth: "admin"
28187
+ auth: "protected"
28188
28188
  }),
28189
28189
  setRepeat: method(object({
28190
28190
  deviceId: number().int().nonnegative(),
28191
28191
  repeat: MediaPlayerRepeatSchema
28192
28192
  }), _void(), {
28193
28193
  kind: "mutation",
28194
- auth: "admin"
28194
+ auth: "protected"
28195
28195
  }),
28196
28196
  selectSource: method(object({
28197
28197
  deviceId: number().int().nonnegative(),
28198
28198
  source: string().min(1)
28199
28199
  }), _void(), {
28200
28200
  kind: "mutation",
28201
- auth: "admin"
28201
+ auth: "protected"
28202
28202
  }),
28203
28203
  playMedia: method(object({
28204
28204
  deviceId: number().int().nonnegative(),
@@ -28209,7 +28209,7 @@ var mediaPlayerCapability = {
28209
28209
  mediaType: string().min(1)
28210
28210
  }), _void(), {
28211
28211
  kind: "mutation",
28212
- auth: "admin"
28212
+ auth: "protected"
28213
28213
  })
28214
28214
  },
28215
28215
  status: {
@@ -29802,27 +29802,27 @@ var petFeederCapability = {
29802
29802
  hopper2: gramsPortion.optional()
29803
29803
  }), _void(), {
29804
29804
  kind: "mutation",
29805
- auth: "admin"
29805
+ auth: "protected"
29806
29806
  }),
29807
29807
  /** Cancel an in-progress manual feed. */
29808
29808
  cancelFeed: method(object({ deviceId: number().int().nonnegative() }), _void(), {
29809
29809
  kind: "mutation",
29810
- auth: "admin"
29810
+ auth: "protected"
29811
29811
  }),
29812
29812
  /** Reset the desiccant "days remaining" counter after replacing it. */
29813
29813
  resetDesiccant: method(object({ deviceId: number().int().nonnegative() }), _void(), {
29814
29814
  kind: "mutation",
29815
- auth: "admin"
29815
+ auth: "protected"
29816
29816
  }),
29817
29817
  /** Mark a hopper as refilled (D4H/D4S/D4SH). */
29818
29818
  markFoodReplenished: method(object({ deviceId: number().int().nonnegative() }), _void(), {
29819
29819
  kind: "mutation",
29820
- auth: "admin"
29820
+ auth: "protected"
29821
29821
  }),
29822
29822
  /** Call the pet with the recorded prompt (D3). */
29823
29823
  callPet: method(object({ deviceId: number().int().nonnegative() }), _void(), {
29824
29824
  kind: "mutation",
29825
- auth: "admin"
29825
+ auth: "protected"
29826
29826
  }),
29827
29827
  /** Play a stored sound by id (D3 / D4H / D4SH). */
29828
29828
  playSound: method(object({
@@ -29830,7 +29830,7 @@ var petFeederCapability = {
29830
29830
  soundId: number().int().nonnegative()
29831
29831
  }), _void(), {
29832
29832
  kind: "mutation",
29833
- auth: "admin"
29833
+ auth: "protected"
29834
29834
  }),
29835
29835
  /** Toggle the child-lock (manual-lock) setting. */
29836
29836
  setChildLock: method(object({
@@ -29838,7 +29838,7 @@ var petFeederCapability = {
29838
29838
  on: boolean()
29839
29839
  }), _void(), {
29840
29840
  kind: "mutation",
29841
- auth: "admin"
29841
+ auth: "protected"
29842
29842
  }),
29843
29843
  /** Toggle the front indicator light. */
29844
29844
  setIndicatorLight: method(object({
@@ -29846,7 +29846,7 @@ var petFeederCapability = {
29846
29846
  on: boolean()
29847
29847
  }), _void(), {
29848
29848
  kind: "mutation",
29849
- auth: "admin"
29849
+ auth: "protected"
29850
29850
  }),
29851
29851
  /** Toggle the dispense chime. */
29852
29852
  setFeedSound: method(object({
@@ -29854,7 +29854,7 @@ var petFeederCapability = {
29854
29854
  on: boolean()
29855
29855
  }), _void(), {
29856
29856
  kind: "mutation",
29857
- auth: "admin"
29857
+ auth: "protected"
29858
29858
  }),
29859
29859
  /** Set the speaker / prompt volume level. */
29860
29860
  setVolume: method(object({
@@ -29862,7 +29862,7 @@ var petFeederCapability = {
29862
29862
  level: number().int().nonnegative()
29863
29863
  }), _void(), {
29864
29864
  kind: "mutation",
29865
- auth: "admin"
29865
+ auth: "protected"
29866
29866
  })
29867
29867
  },
29868
29868
  status: {
@@ -32158,7 +32158,7 @@ var switchCapability = {
32158
32158
  on: boolean()
32159
32159
  }), _void(), {
32160
32160
  kind: "mutation",
32161
- auth: "admin"
32161
+ auth: "protected"
32162
32162
  }) },
32163
32163
  events: { onStateChanged: { data: object({
32164
32164
  deviceId: number(),
@@ -33146,30 +33146,30 @@ var vacuumControlCapability = {
33146
33146
  methods: {
33147
33147
  start: method(object({ deviceId: number().int().nonnegative() }), _void(), {
33148
33148
  kind: "mutation",
33149
- auth: "admin"
33149
+ auth: "protected"
33150
33150
  }),
33151
33151
  pause: method(object({ deviceId: number().int().nonnegative() }), _void(), {
33152
33152
  kind: "mutation",
33153
- auth: "admin"
33153
+ auth: "protected"
33154
33154
  }),
33155
33155
  stop: method(object({ deviceId: number().int().nonnegative() }), _void(), {
33156
33156
  kind: "mutation",
33157
- auth: "admin"
33157
+ auth: "protected"
33158
33158
  }),
33159
33159
  returnToBase: method(object({ deviceId: number().int().nonnegative() }), _void(), {
33160
33160
  kind: "mutation",
33161
- auth: "admin"
33161
+ auth: "protected"
33162
33162
  }),
33163
33163
  locate: method(object({ deviceId: number().int().nonnegative() }), _void(), {
33164
33164
  kind: "mutation",
33165
- auth: "admin"
33165
+ auth: "protected"
33166
33166
  }),
33167
33167
  setFanSpeed: method(object({
33168
33168
  deviceId: number().int().nonnegative(),
33169
33169
  speed: string().min(1)
33170
33170
  }), _void(), {
33171
33171
  kind: "mutation",
33172
- auth: "admin"
33172
+ auth: "protected"
33173
33173
  })
33174
33174
  },
33175
33175
  status: {
@@ -33213,22 +33213,22 @@ var valveCapability = {
33213
33213
  methods: {
33214
33214
  open: method(object({ deviceId: number().int().nonnegative() }), _void(), {
33215
33215
  kind: "mutation",
33216
- auth: "admin"
33216
+ auth: "protected"
33217
33217
  }),
33218
33218
  close: method(object({ deviceId: number().int().nonnegative() }), _void(), {
33219
33219
  kind: "mutation",
33220
- auth: "admin"
33220
+ auth: "protected"
33221
33221
  }),
33222
33222
  stop: method(object({ deviceId: number().int().nonnegative() }), _void(), {
33223
33223
  kind: "mutation",
33224
- auth: "admin"
33224
+ auth: "protected"
33225
33225
  }),
33226
33226
  setPosition: method(object({
33227
33227
  deviceId: number().int().nonnegative(),
33228
33228
  position: number().min(0).max(100)
33229
33229
  }), _void(), {
33230
33230
  kind: "mutation",
33231
- auth: "admin"
33231
+ auth: "protected"
33232
33232
  })
33233
33233
  },
33234
33234
  status: {
@@ -33327,21 +33327,21 @@ var waterHeaterCapability = {
33327
33327
  temp: number().finite()
33328
33328
  }), _void(), {
33329
33329
  kind: "mutation",
33330
- auth: "admin"
33330
+ auth: "protected"
33331
33331
  }),
33332
33332
  setOperationMode: method(object({
33333
33333
  deviceId: number().int().nonnegative(),
33334
33334
  mode: string().min(1)
33335
33335
  }), _void(), {
33336
33336
  kind: "mutation",
33337
- auth: "admin"
33337
+ auth: "protected"
33338
33338
  }),
33339
33339
  setAway: method(object({
33340
33340
  deviceId: number().int().nonnegative(),
33341
33341
  on: boolean()
33342
33342
  }), _void(), {
33343
33343
  kind: "mutation",
33344
- auth: "admin"
33344
+ auth: "protected"
33345
33345
  })
33346
33346
  },
33347
33347
  status: {
package/dist/addon.mjs CHANGED
@@ -17226,14 +17226,14 @@ var alarmPanelCapability = {
17226
17226
  code: string().min(1).optional()
17227
17227
  }), _void(), {
17228
17228
  kind: "mutation",
17229
- auth: "admin"
17229
+ auth: "protected"
17230
17230
  }),
17231
17231
  disarm: method(object({
17232
17232
  deviceId: number().int().nonnegative(),
17233
17233
  code: string().min(1).optional()
17234
17234
  }), _void(), {
17235
17235
  kind: "mutation",
17236
- auth: "admin"
17236
+ auth: "protected"
17237
17237
  }),
17238
17238
  /**
17239
17239
  * Force the panel into the `triggered` state — used by HA
@@ -17244,7 +17244,7 @@ var alarmPanelCapability = {
17244
17244
  */
17245
17245
  trigger: method(object({ deviceId: number().int().nonnegative() }), _void(), {
17246
17246
  kind: "mutation",
17247
- auth: "admin"
17247
+ auth: "protected"
17248
17248
  })
17249
17249
  },
17250
17250
  status: {
@@ -25211,7 +25211,7 @@ var brightnessCapability = {
25211
25211
  percentage: number().min(0).max(100)
25212
25212
  }), _void(), {
25213
25213
  kind: "mutation",
25214
- auth: "admin"
25214
+ auth: "protected"
25215
25215
  }) },
25216
25216
  events: {
25217
25217
  /**
@@ -25244,7 +25244,7 @@ onBrightnessChanged: { data: object({
25244
25244
  };
25245
25245
  DeviceType.Button, method(object({ deviceId: number().int().nonnegative() }), _void(), {
25246
25246
  kind: "mutation",
25247
- auth: "admin"
25247
+ auth: "protected"
25248
25248
  });
25249
25249
  /**
25250
25250
  * camera-credentials — device-scoped cap exposing the camera's network
@@ -25436,28 +25436,28 @@ var climateControlCapability = {
25436
25436
  mode: HvacModeSchema
25437
25437
  }), _void(), {
25438
25438
  kind: "mutation",
25439
- auth: "admin"
25439
+ auth: "protected"
25440
25440
  }),
25441
25441
  setFanMode: method(object({
25442
25442
  deviceId: number().int().nonnegative(),
25443
25443
  fanMode: string().min(1)
25444
25444
  }), _void(), {
25445
25445
  kind: "mutation",
25446
- auth: "admin"
25446
+ auth: "protected"
25447
25447
  }),
25448
25448
  setPreset: method(object({
25449
25449
  deviceId: number().int().nonnegative(),
25450
25450
  preset: string().min(1)
25451
25451
  }), _void(), {
25452
25452
  kind: "mutation",
25453
- auth: "admin"
25453
+ auth: "protected"
25454
25454
  }),
25455
25455
  setTarget: method(object({
25456
25456
  deviceId: number().int().nonnegative(),
25457
25457
  target: number()
25458
25458
  }), _void(), {
25459
25459
  kind: "mutation",
25460
- auth: "admin"
25460
+ auth: "protected"
25461
25461
  }),
25462
25462
  setTargetRange: method(object({
25463
25463
  deviceId: number().int().nonnegative(),
@@ -25465,28 +25465,28 @@ var climateControlCapability = {
25465
25465
  targetHigh: number()
25466
25466
  }), _void(), {
25467
25467
  kind: "mutation",
25468
- auth: "admin"
25468
+ auth: "protected"
25469
25469
  }),
25470
25470
  setTargetHumidity: method(object({
25471
25471
  deviceId: number().int().nonnegative(),
25472
25472
  targetHumidity: number().min(0).max(100)
25473
25473
  }), _void(), {
25474
25474
  kind: "mutation",
25475
- auth: "admin"
25475
+ auth: "protected"
25476
25476
  }),
25477
25477
  setSwingVertical: method(object({
25478
25478
  deviceId: number().int().nonnegative(),
25479
25479
  on: boolean()
25480
25480
  }), _void(), {
25481
25481
  kind: "mutation",
25482
- auth: "admin"
25482
+ auth: "protected"
25483
25483
  }),
25484
25484
  setSwingHorizontal: method(object({
25485
25485
  deviceId: number().int().nonnegative(),
25486
25486
  on: boolean()
25487
25487
  }), _void(), {
25488
25488
  kind: "mutation",
25489
- auth: "admin"
25489
+ auth: "protected"
25490
25490
  })
25491
25491
  },
25492
25492
  status: {
@@ -25586,7 +25586,7 @@ var colorCapability = {
25586
25586
  color: ColorInputSchema
25587
25587
  }), _void(), {
25588
25588
  kind: "mutation",
25589
- auth: "admin"
25589
+ auth: "protected"
25590
25590
  }) },
25591
25591
  events: {
25592
25592
  /**
@@ -25923,7 +25923,7 @@ var controlCapability = {
25923
25923
  control: ControlSetValueInputSchema
25924
25924
  }), _void(), {
25925
25925
  kind: "mutation",
25926
- auth: "admin"
25926
+ auth: "protected"
25927
25927
  }) },
25928
25928
  status: {
25929
25929
  schema: ControlStatusSchema,
@@ -25969,29 +25969,29 @@ var coverCapability = {
25969
25969
  methods: {
25970
25970
  open: method(object({ deviceId: number().int().nonnegative() }), _void(), {
25971
25971
  kind: "mutation",
25972
- auth: "admin"
25972
+ auth: "protected"
25973
25973
  }),
25974
25974
  close: method(object({ deviceId: number().int().nonnegative() }), _void(), {
25975
25975
  kind: "mutation",
25976
- auth: "admin"
25976
+ auth: "protected"
25977
25977
  }),
25978
25978
  stop: method(object({ deviceId: number().int().nonnegative() }), _void(), {
25979
25979
  kind: "mutation",
25980
- auth: "admin"
25980
+ auth: "protected"
25981
25981
  }),
25982
25982
  setPosition: method(object({
25983
25983
  deviceId: number().int().nonnegative(),
25984
25984
  position: number().min(0).max(100)
25985
25985
  }), _void(), {
25986
25986
  kind: "mutation",
25987
- auth: "admin"
25987
+ auth: "protected"
25988
25988
  }),
25989
25989
  setTiltPosition: method(object({
25990
25990
  deviceId: number().int().nonnegative(),
25991
25991
  tiltPosition: number().min(0).max(100)
25992
25992
  }), _void(), {
25993
25993
  kind: "mutation",
25994
- auth: "admin"
25994
+ auth: "protected"
25995
25995
  })
25996
25996
  },
25997
25997
  status: {
@@ -26774,28 +26774,28 @@ var fanControlCapability = {
26774
26774
  percentage: number().min(0).max(100)
26775
26775
  }), _void(), {
26776
26776
  kind: "mutation",
26777
- auth: "admin"
26777
+ auth: "protected"
26778
26778
  }),
26779
26779
  setPreset: method(object({
26780
26780
  deviceId: number().int().nonnegative(),
26781
26781
  preset: string().min(1)
26782
26782
  }), _void(), {
26783
26783
  kind: "mutation",
26784
- auth: "admin"
26784
+ auth: "protected"
26785
26785
  }),
26786
26786
  setDirection: method(object({
26787
26787
  deviceId: number().int().nonnegative(),
26788
26788
  direction: FanDirectionSchema
26789
26789
  }), _void(), {
26790
26790
  kind: "mutation",
26791
- auth: "admin"
26791
+ auth: "protected"
26792
26792
  }),
26793
26793
  setOscillating: method(object({
26794
26794
  deviceId: number().int().nonnegative(),
26795
26795
  oscillating: boolean()
26796
26796
  }), _void(), {
26797
26797
  kind: "mutation",
26798
- auth: "admin"
26798
+ auth: "protected"
26799
26799
  })
26800
26800
  },
26801
26801
  status: {
@@ -27017,21 +27017,21 @@ var humidifierCapability = {
27017
27017
  on: boolean()
27018
27018
  }), _void(), {
27019
27019
  kind: "mutation",
27020
- auth: "admin"
27020
+ auth: "protected"
27021
27021
  }),
27022
27022
  setTargetHumidity: method(object({
27023
27023
  deviceId: number().int().nonnegative(),
27024
27024
  humidity: number().min(0).max(100)
27025
27025
  }), _void(), {
27026
27026
  kind: "mutation",
27027
- auth: "admin"
27027
+ auth: "protected"
27028
27028
  }),
27029
27029
  setMode: method(object({
27030
27030
  deviceId: number().int().nonnegative(),
27031
27031
  mode: string().min(1)
27032
27032
  }), _void(), {
27033
27033
  kind: "mutation",
27034
- auth: "admin"
27034
+ auth: "protected"
27035
27035
  })
27036
27036
  },
27037
27037
  status: {
@@ -27732,15 +27732,15 @@ var lawnMowerControlCapability = {
27732
27732
  methods: {
27733
27733
  startMowing: method(object({ deviceId: number().int().nonnegative() }), _void(), {
27734
27734
  kind: "mutation",
27735
- auth: "admin"
27735
+ auth: "protected"
27736
27736
  }),
27737
27737
  pause: method(object({ deviceId: number().int().nonnegative() }), _void(), {
27738
27738
  kind: "mutation",
27739
- auth: "admin"
27739
+ auth: "protected"
27740
27740
  }),
27741
27741
  dock: method(object({ deviceId: number().int().nonnegative() }), _void(), {
27742
27742
  kind: "mutation",
27743
- auth: "admin"
27743
+ auth: "protected"
27744
27744
  })
27745
27745
  },
27746
27746
  status: {
@@ -28025,18 +28025,18 @@ var lockControlCapability = {
28025
28025
  code: string().min(1).optional()
28026
28026
  }), _void(), {
28027
28027
  kind: "mutation",
28028
- auth: "admin"
28028
+ auth: "protected"
28029
28029
  }),
28030
28030
  unlock: method(object({
28031
28031
  deviceId: number().int().nonnegative(),
28032
28032
  code: string().min(1).optional()
28033
28033
  }), _void(), {
28034
28034
  kind: "mutation",
28035
- auth: "admin"
28035
+ auth: "protected"
28036
28036
  }),
28037
28037
  open: method(object({ deviceId: number().int().nonnegative() }), _void(), {
28038
28038
  kind: "mutation",
28039
- auth: "admin"
28039
+ auth: "protected"
28040
28040
  })
28041
28041
  },
28042
28042
  status: {
@@ -28139,65 +28139,65 @@ var mediaPlayerCapability = {
28139
28139
  methods: {
28140
28140
  play: method(object({ deviceId: number().int().nonnegative() }), _void(), {
28141
28141
  kind: "mutation",
28142
- auth: "admin"
28142
+ auth: "protected"
28143
28143
  }),
28144
28144
  pause: method(object({ deviceId: number().int().nonnegative() }), _void(), {
28145
28145
  kind: "mutation",
28146
- auth: "admin"
28146
+ auth: "protected"
28147
28147
  }),
28148
28148
  stop: method(object({ deviceId: number().int().nonnegative() }), _void(), {
28149
28149
  kind: "mutation",
28150
- auth: "admin"
28150
+ auth: "protected"
28151
28151
  }),
28152
28152
  next: method(object({ deviceId: number().int().nonnegative() }), _void(), {
28153
28153
  kind: "mutation",
28154
- auth: "admin"
28154
+ auth: "protected"
28155
28155
  }),
28156
28156
  previous: method(object({ deviceId: number().int().nonnegative() }), _void(), {
28157
28157
  kind: "mutation",
28158
- auth: "admin"
28158
+ auth: "protected"
28159
28159
  }),
28160
28160
  seek: method(object({
28161
28161
  deviceId: number().int().nonnegative(),
28162
28162
  positionMs: number().int().nonnegative()
28163
28163
  }), _void(), {
28164
28164
  kind: "mutation",
28165
- auth: "admin"
28165
+ auth: "protected"
28166
28166
  }),
28167
28167
  setVolume: method(object({
28168
28168
  deviceId: number().int().nonnegative(),
28169
28169
  volumeLevel: number().min(0).max(100)
28170
28170
  }), _void(), {
28171
28171
  kind: "mutation",
28172
- auth: "admin"
28172
+ auth: "protected"
28173
28173
  }),
28174
28174
  setMute: method(object({
28175
28175
  deviceId: number().int().nonnegative(),
28176
28176
  muted: boolean()
28177
28177
  }), _void(), {
28178
28178
  kind: "mutation",
28179
- auth: "admin"
28179
+ auth: "protected"
28180
28180
  }),
28181
28181
  setShuffle: method(object({
28182
28182
  deviceId: number().int().nonnegative(),
28183
28183
  shuffle: boolean()
28184
28184
  }), _void(), {
28185
28185
  kind: "mutation",
28186
- auth: "admin"
28186
+ auth: "protected"
28187
28187
  }),
28188
28188
  setRepeat: method(object({
28189
28189
  deviceId: number().int().nonnegative(),
28190
28190
  repeat: MediaPlayerRepeatSchema
28191
28191
  }), _void(), {
28192
28192
  kind: "mutation",
28193
- auth: "admin"
28193
+ auth: "protected"
28194
28194
  }),
28195
28195
  selectSource: method(object({
28196
28196
  deviceId: number().int().nonnegative(),
28197
28197
  source: string().min(1)
28198
28198
  }), _void(), {
28199
28199
  kind: "mutation",
28200
- auth: "admin"
28200
+ auth: "protected"
28201
28201
  }),
28202
28202
  playMedia: method(object({
28203
28203
  deviceId: number().int().nonnegative(),
@@ -28208,7 +28208,7 @@ var mediaPlayerCapability = {
28208
28208
  mediaType: string().min(1)
28209
28209
  }), _void(), {
28210
28210
  kind: "mutation",
28211
- auth: "admin"
28211
+ auth: "protected"
28212
28212
  })
28213
28213
  },
28214
28214
  status: {
@@ -29801,27 +29801,27 @@ var petFeederCapability = {
29801
29801
  hopper2: gramsPortion.optional()
29802
29802
  }), _void(), {
29803
29803
  kind: "mutation",
29804
- auth: "admin"
29804
+ auth: "protected"
29805
29805
  }),
29806
29806
  /** Cancel an in-progress manual feed. */
29807
29807
  cancelFeed: method(object({ deviceId: number().int().nonnegative() }), _void(), {
29808
29808
  kind: "mutation",
29809
- auth: "admin"
29809
+ auth: "protected"
29810
29810
  }),
29811
29811
  /** Reset the desiccant "days remaining" counter after replacing it. */
29812
29812
  resetDesiccant: method(object({ deviceId: number().int().nonnegative() }), _void(), {
29813
29813
  kind: "mutation",
29814
- auth: "admin"
29814
+ auth: "protected"
29815
29815
  }),
29816
29816
  /** Mark a hopper as refilled (D4H/D4S/D4SH). */
29817
29817
  markFoodReplenished: method(object({ deviceId: number().int().nonnegative() }), _void(), {
29818
29818
  kind: "mutation",
29819
- auth: "admin"
29819
+ auth: "protected"
29820
29820
  }),
29821
29821
  /** Call the pet with the recorded prompt (D3). */
29822
29822
  callPet: method(object({ deviceId: number().int().nonnegative() }), _void(), {
29823
29823
  kind: "mutation",
29824
- auth: "admin"
29824
+ auth: "protected"
29825
29825
  }),
29826
29826
  /** Play a stored sound by id (D3 / D4H / D4SH). */
29827
29827
  playSound: method(object({
@@ -29829,7 +29829,7 @@ var petFeederCapability = {
29829
29829
  soundId: number().int().nonnegative()
29830
29830
  }), _void(), {
29831
29831
  kind: "mutation",
29832
- auth: "admin"
29832
+ auth: "protected"
29833
29833
  }),
29834
29834
  /** Toggle the child-lock (manual-lock) setting. */
29835
29835
  setChildLock: method(object({
@@ -29837,7 +29837,7 @@ var petFeederCapability = {
29837
29837
  on: boolean()
29838
29838
  }), _void(), {
29839
29839
  kind: "mutation",
29840
- auth: "admin"
29840
+ auth: "protected"
29841
29841
  }),
29842
29842
  /** Toggle the front indicator light. */
29843
29843
  setIndicatorLight: method(object({
@@ -29845,7 +29845,7 @@ var petFeederCapability = {
29845
29845
  on: boolean()
29846
29846
  }), _void(), {
29847
29847
  kind: "mutation",
29848
- auth: "admin"
29848
+ auth: "protected"
29849
29849
  }),
29850
29850
  /** Toggle the dispense chime. */
29851
29851
  setFeedSound: method(object({
@@ -29853,7 +29853,7 @@ var petFeederCapability = {
29853
29853
  on: boolean()
29854
29854
  }), _void(), {
29855
29855
  kind: "mutation",
29856
- auth: "admin"
29856
+ auth: "protected"
29857
29857
  }),
29858
29858
  /** Set the speaker / prompt volume level. */
29859
29859
  setVolume: method(object({
@@ -29861,7 +29861,7 @@ var petFeederCapability = {
29861
29861
  level: number().int().nonnegative()
29862
29862
  }), _void(), {
29863
29863
  kind: "mutation",
29864
- auth: "admin"
29864
+ auth: "protected"
29865
29865
  })
29866
29866
  },
29867
29867
  status: {
@@ -32157,7 +32157,7 @@ var switchCapability = {
32157
32157
  on: boolean()
32158
32158
  }), _void(), {
32159
32159
  kind: "mutation",
32160
- auth: "admin"
32160
+ auth: "protected"
32161
32161
  }) },
32162
32162
  events: { onStateChanged: { data: object({
32163
32163
  deviceId: number(),
@@ -33145,30 +33145,30 @@ var vacuumControlCapability = {
33145
33145
  methods: {
33146
33146
  start: method(object({ deviceId: number().int().nonnegative() }), _void(), {
33147
33147
  kind: "mutation",
33148
- auth: "admin"
33148
+ auth: "protected"
33149
33149
  }),
33150
33150
  pause: method(object({ deviceId: number().int().nonnegative() }), _void(), {
33151
33151
  kind: "mutation",
33152
- auth: "admin"
33152
+ auth: "protected"
33153
33153
  }),
33154
33154
  stop: method(object({ deviceId: number().int().nonnegative() }), _void(), {
33155
33155
  kind: "mutation",
33156
- auth: "admin"
33156
+ auth: "protected"
33157
33157
  }),
33158
33158
  returnToBase: method(object({ deviceId: number().int().nonnegative() }), _void(), {
33159
33159
  kind: "mutation",
33160
- auth: "admin"
33160
+ auth: "protected"
33161
33161
  }),
33162
33162
  locate: method(object({ deviceId: number().int().nonnegative() }), _void(), {
33163
33163
  kind: "mutation",
33164
- auth: "admin"
33164
+ auth: "protected"
33165
33165
  }),
33166
33166
  setFanSpeed: method(object({
33167
33167
  deviceId: number().int().nonnegative(),
33168
33168
  speed: string().min(1)
33169
33169
  }), _void(), {
33170
33170
  kind: "mutation",
33171
- auth: "admin"
33171
+ auth: "protected"
33172
33172
  })
33173
33173
  },
33174
33174
  status: {
@@ -33212,22 +33212,22 @@ var valveCapability = {
33212
33212
  methods: {
33213
33213
  open: method(object({ deviceId: number().int().nonnegative() }), _void(), {
33214
33214
  kind: "mutation",
33215
- auth: "admin"
33215
+ auth: "protected"
33216
33216
  }),
33217
33217
  close: method(object({ deviceId: number().int().nonnegative() }), _void(), {
33218
33218
  kind: "mutation",
33219
- auth: "admin"
33219
+ auth: "protected"
33220
33220
  }),
33221
33221
  stop: method(object({ deviceId: number().int().nonnegative() }), _void(), {
33222
33222
  kind: "mutation",
33223
- auth: "admin"
33223
+ auth: "protected"
33224
33224
  }),
33225
33225
  setPosition: method(object({
33226
33226
  deviceId: number().int().nonnegative(),
33227
33227
  position: number().min(0).max(100)
33228
33228
  }), _void(), {
33229
33229
  kind: "mutation",
33230
- auth: "admin"
33230
+ auth: "protected"
33231
33231
  })
33232
33232
  },
33233
33233
  status: {
@@ -33326,21 +33326,21 @@ var waterHeaterCapability = {
33326
33326
  temp: number().finite()
33327
33327
  }), _void(), {
33328
33328
  kind: "mutation",
33329
- auth: "admin"
33329
+ auth: "protected"
33330
33330
  }),
33331
33331
  setOperationMode: method(object({
33332
33332
  deviceId: number().int().nonnegative(),
33333
33333
  mode: string().min(1)
33334
33334
  }), _void(), {
33335
33335
  kind: "mutation",
33336
- auth: "admin"
33336
+ auth: "protected"
33337
33337
  }),
33338
33338
  setAway: method(object({
33339
33339
  deviceId: number().int().nonnegative(),
33340
33340
  on: boolean()
33341
33341
  }), _void(), {
33342
33342
  kind: "mutation",
33343
- auth: "admin"
33343
+ auth: "protected"
33344
33344
  })
33345
33345
  },
33346
33346
  status: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@camstack/addon-provider-petkit",
3
- "version": "0.2.85",
3
+ "version": "0.2.86",
4
4
  "description": "PetKit smart-feeder device-provider addon for CamStack — wraps the @apocaliss92/nodepetkit PetKit cloud client",
5
5
  "keywords": [
6
6
  "camstack",