
Security News
Axios Supply Chain Attack Reaches OpenAI macOS Signing Pipeline, Forces Certificate Rotation
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.
@smartthings/core-sdk
Advanced tools
The SmartThings Core SDK is a wrapper designed to simplify the use of the SmartThings REST API from JavaScript and TypeScript applications. This is the very first release of this SDK and should be considered a work in progress. Changes may still be made that are not backwardly compatible.
npm install @smartthings/core-sdk
:warning: Note that if you use axios in your project, you must use version 0.28.1 or later.
NodeJS:
const {SmartThingsClient} = require('@smartthings/core-sdk')
Or ES2015+:
import {SmartThingsClient} from '@smartthings/core-sdk'
For this example, you'll need to create a Personal Access Token (PAT)
with at least the r:locations:* scope. Substitute it for YOUR-PAT-HERE in the following code:
const {SmartThingsClient, BearerTokenAuthenticator} = require('@smartthings/core-sdk')
const client = new SmartThingsClient(new BearerTokenAuthenticator('YOUR-PAT-HERE'))
client.locations.list().then(locations => {
console.log(`Found ${locations.length} locations`)
})
There is some logging done of requests and responses made to the API. The default logger does nothing but you can pass your own. Logging is done via a generic interface so you can use whatever logger you want in your application.
First, write an implementation of the Logger interface defined in
logger.ts
which proxies to your logger. For example:
import { Logger as WinstonLogger } from 'winston'
import { Logger } from '@smartthings/core-sdk'
export class WinstonLoggerProxy implements Logger {
proxy: WinstonLogger
level: string
constructor(winstonLogger) {
this.level = proxy.level
}
trace(message: any, ...args: any[]): void {
// Winston doesn't have a "trace" level but it has a "silly" level in the same place.
proxy.silly(message, args)
}
debug(message: any, ...args: any[]): void {
proxy.debug(message, args)
}
info(message: any, ...args: any[]): void {
proxy.info(message, args)
}
...
isTraceEnabled(): boolean {
return proxy.isSillyEnabled()
}
...
}
Then, when you create your SmartThingsClient, pass this in via the config parameter.
const config = {
logger: new WinstonLoggerProxy(myWinstonLoggerInstance)
}
const client = new SmartThingsClient(new BearerTokenAuthenticator('{YOUR-PAT-TOKEN}'), config)
This SDK supports multiple ways of authenticating with the SmartThings platform. The currently available authenticators are:
BearerTokenAuthenticator -- Authenticator that is instantiated with any valid bearer token. This is the authenticator you would use with a PAT (Personal Access) Token.
RefreshTokenAuthenticator -- Authenticator that is instantiated with a bearer token and a RefreshTokenStore that provides methods for retrieving and storing access and refresh tokens. When this authenticator is used the API will automatically refresh expired access tokens, save the new tokens, and retry the original request.
apps -- A SmartApp can be an AWS lambda function or WebHook endpoint. Like to code interface here, link to wiki page description here
capabilities - Operations to read standard Capability definitions as well as create and modify custom Capabilities. Link to code interface here, link to wiki page here.
deviceProfiles - A Device Profile contains the Components, Capabilities, and metadata (ID, name, ownership, etc.) that define a SmartThings Device. Link to code interface here, link to wiki page here
devices - Operations to access, control, create, update, and delete Devices. Like to code interface here, link to wiki page here
history - Operations to query event history. Link to code interface here.
installedApps - Apps are installed by users. Link to code interface here, link to wiki page description here
locations - Locations can include Hubs, Devices, and Automations. Link to code interface here, link to wiki page description here
modes - Operations to change the current Mode of a Location. Link to code interface here, link to wiki page description here
notifications - Operations to send push notifications to SmartThings mobile app. Link to code interface here, link to wiki page description here
organizations - Operations to list and get Organizations. Link to code interface here. Future feature. Not yet supported.
presentation - Operations to query and create Device Configurations and Presentations. Link to code interface here.
rooms - Operations related to Rooms, a grouping of Devices within a Location. Link to code interface here, link to wiki page description here
rules - Operations for working with Rules. Rules allow you to create Automations that can operate on SmartThings connected Devices. Link to code interface here, link to wiki page description here
scenes - Operations to list and execute Scenes. Currently this endpoint does not support creating or updating Scenes. Link to code interface here, link to wiki page description here
schedules - Operations for scheduling future executions for use in SmartApps. Link to code interface here, link to wiki page description here
schema - Operations for ST Schema connectors and installed instances, along with operations to list the Devices owned by each installed instance. Link to code interface here, link to wiki page description here
services - Operations to query for and subscribe to location service data, currently consisting of current weather conditions, weather forecast, and air quality data. Link to code interface here, link to wiki page description here
subscriptions - Operations for subscribing to events, for use in SmartApps and API Access apps. Link to code interface here, link to wiki page description here
FAQs
JavaScript/TypeScript library for using SmartThings APIs
The npm package @smartthings/core-sdk receives a total of 1,174 weekly downloads. As such, @smartthings/core-sdk popularity was classified as popular.
We found that @smartthings/core-sdk demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 8 open source maintainers collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.

Security News
Open source is under attack because of how much value it creates. It has been the foundation of every major software innovation for the last three decades. This is not the time to walk away from it.

Security News
Socket CEO Feross Aboukhadijeh breaks down how North Korea hijacked Axios and what it means for the future of software supply chain security.