File tree Expand file tree Collapse file tree 2 files changed +16
-2
lines changed
Expand file tree Collapse file tree 2 files changed +16
-2
lines changed Original file line number Diff line number Diff line change 11# openSenseMap Client
22
3- Based on API version: ` v11.2 .0 `
3+ Based on API version: ` v11.3 .0 `
44
55[ ![ NPM] ( https://nodei.co/npm/opensensemap-client.png )] ( https://npmjs.org/package/opensensemap-client )
66
@@ -54,6 +54,8 @@ start();
5454 - _ Function:_ [ ` updateBox() ` ] ( https://killerjulian.github.io/opensensemap-client/functions/updateBox.html )
5555 - [ Mark a senseBox and its measurements for deletion] ( https://docs.opensensemap.org/#api-Boxes-deleteBox )
5656 - _ Function:_ [ ` deleteBox() ` ] ( https://killerjulian.github.io/opensensemap-client/functions/deleteBox.html )
57+ - [ Get all senseBox tags] ( https://docs.opensensemap.org/#api-Boxes-getAllTags )
58+ - _ Function:_ [ ` getAllTags() ` ] ( https://killerjulian.github.io/opensensemap-client/functions/getAllTags.html )
5759 - [ Claim a senseBox marked for transfer] ( https://docs.opensensemap.org/#api-Boxes-claimBox )
5860 - _ Function:_ [ ` claimBox() ` ] ( https://killerjulian.github.io/opensensemap-client/functions/claimBox.html )
5961 - [ Download the Arduino script for your senseBox] ( https://docs.opensensemap.org/#api-Boxes-getSketch )
Original file line number Diff line number Diff line change @@ -103,12 +103,14 @@ export type Sensor<T extends Measurement | LastMeasurement | Measurement['_id']
103103} ;
104104
105105/**
106- * @linkcode https://github.com/sensebox/openSenseMap-API/blob/2e645bdc4c80e668720b5eaaf384a35d2909569e /packages/models/src/box/box .js#L77C5-L77C5
106+ * @linkcode https://github.com/sensebox/openSenseMap-API/blob/953c476b192bcb051823e67c2a3b3e9891eb7bea /packages/models/src/box/sensorLayouts/index .js#L34
107107 */
108108export type BoxModel =
109109 | 'homeV2Lora'
110110 | 'homeV2Ethernet'
111+ | 'homeV2EthernetFeinstaub'
111112 | 'homeV2Wifi'
113+ | 'homeV2WifiFeinstaub'
112114 | 'homeEthernet'
113115 | 'homeWifi'
114116 | 'homeEthernetFeinstaub'
@@ -118,6 +120,16 @@ export type BoxModel =
118120 | 'luftdaten_sds011_dht22'
119121 | 'luftdaten_sds011_bmp180'
120122 | 'luftdaten_sds011_bme280'
123+ | 'luftdaten_pms1003'
124+ | 'luftdaten_pms1003_bme280'
125+ | 'luftdaten_pms3003'
126+ | 'luftdaten_pms3003_bme280'
127+ | 'luftdaten_pms5003'
128+ | 'luftdaten_pms5003_bme280'
129+ | 'luftdaten_pms7003'
130+ | 'luftdaten_pms7003_bme280'
131+ | 'luftdaten_sps30_bme280'
132+ | 'luftdaten_sps30_sht3x'
121133 | 'hackair_home_v2' ;
122134
123135export type BoxTransferInformation = {
You can’t perform that action at this time.
0 commit comments