You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
BREAKING CHANGES:
`ns devices --json` now prints a JSON object containing a devices key with an array of all devices.
`ns devices --available-devices --json` now properly prints available devices as JSON.
Migration steps:
update how parsing of the output is handled to use the new schema
```ts
{
available?: any[];
devices: any[];
}
```
0 commit comments