nayota-show-sdk 1.3.39 → 1.3.41

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.
Files changed (2) hide show
  1. package/api/devices.js +10 -1
  2. package/package.json +1 -1
package/api/devices.js CHANGED
@@ -365,6 +365,14 @@ export function updateDepart(data) {
365
365
  })
366
366
  }
367
367
 
368
+ export function updateProp(data) {
369
+ return requestShow({
370
+ url: '/devices/updateProp',
371
+ method: 'post',
372
+ data
373
+ })
374
+ }
375
+
368
376
  export default {
369
377
  list,
370
378
  create,
@@ -375,5 +383,6 @@ export default {
375
383
  getOne,
376
384
  easyList,
377
385
  getPropHistoryData,
378
- updateDepart
386
+ updateDepart,
387
+ updateProp
379
388
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "nayota-show-sdk",
3
- "version": "1.3.39",
3
+ "version": "1.3.41",
4
4
  "description": "nayota-show-server rest-api",
5
5
  "type": "module",
6
6
  "main": "index.js",