@@ -163,7 +163,7 @@ class Cayenne extends Request {
163
163
164
164
/**
165
165
* Delete all groups and attributes for a user
166
- * @param {string } applicationId
166
+ * @param {string } applicationId
167
167
* @param {string } userId The user id of the user that owns the parent device
168
168
*/
169
169
deleteGroups ( applicationId , userId ) {
@@ -540,15 +540,12 @@ class Cayenne extends Request {
540
540
} ) ;
541
541
}
542
542
543
-
544
- /**
543
+ /**
545
544
* Gets a device's meta data by device type id and meta id
546
545
* @param {string } deviceTypeId
547
546
* @param {string } id
548
547
*/
549
- getDeviceTypeOneMeta ( deviceTypeId , opts ) {
550
- opts = { useCache : false , cacheOnNotFound : false , ...opts } ;
551
-
548
+ getDeviceTypeOneMeta ( deviceTypeId , id ) {
552
549
const path = `/things/types/${ deviceTypeId } /meta/${ id } ` ;
553
550
return this . send ( 'GET' , path ) ;
554
551
}
@@ -589,7 +586,6 @@ class Cayenne extends Request {
589
586
return this . send ( 'GET' , path ) ;
590
587
}
591
588
592
-
593
589
/**
594
590
* Gets a device's channel meta by device type id
595
591
* @param {string } deviceTypeId
@@ -608,7 +604,7 @@ class Cayenne extends Request {
608
604
return this . send ( 'GET' , path ) ;
609
605
}
610
606
611
- /**
607
+ /**
612
608
* Gets a device's uses by device type id
613
609
* @param {string } deviceTypeId
614
610
*/
0 commit comments