2.2.0 (2024-06-07)
Features
- ✨ add EXISTS command as of Tile38 v1.33.0 (b52144c)
- ✨ add FEXISTS command as of Tile38 v1.33.0 (9fa1719)
await tile38
.set('fleet', 'truck1')
.fields({ maxSpeed: 90 })
.point(33.5123, -112.2693)
.exec();
let response = await tile38.fexists('fleet', 'truck1', 'weight');
console.log(response.exists);
// > true
response = await tile38.fexists('fleet', 'truck1', 'milage');
console.log(response.exists);
// > false
response = await tile38.exists('fleet', 'truck1');
console.log(response.exists);
// > true
response = await tile38.exists('fleet', 'truck2');
console.log(response.exists);
// > false
Other
Documentation
- 📚️ update documentation with FEXISTS and EXISTS (7c6c01c)