Skip to content

Commit

Permalink
(feat) add new ListAllSourcesStatusRequest endpoint (#210)
Browse files Browse the repository at this point in the history
  • Loading branch information
tphoney authored Sep 26, 2024
1 parent bdec770 commit 976fcf0
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 3 deletions.
22 changes: 19 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,22 +8,38 @@ Please make any changes in a feature branch and add a pull request. All changes

### Testing

Tests can be run with `pnpm run test` or the VSCode Test task
Tests can be run with `pnpm run test` or the VSCode Test task.

### Style

Code formatting/style can be validated using:

```
```shell
pnpm codequality:check
```

And fixed using:

```
```shell
pnpm codequality:fix
```

### Local Development

To use a local version of this package in the frontend. You can build the package and then linking it:

```shell
pnpm build
```

Then in the frontend edit the `package.json` to point to the local package:

```json
"dependencies": {
"@overmindtech/sdp": "file:../sdp-js/dist"
}
```

## Releasing

The package is automatically released each time a tag is created, so to release just create a tag such as `v1.23.6` and push that tag. This automatically triggers NPM publish etc.
1 change: 1 addition & 0 deletions src/connect.ts
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,7 @@ export {
updateSource,
deleteSource,
keepaliveSources,
listAllSourcesStatus,
createToken,
deleteAccount,
getTrialEnd,
Expand Down

0 comments on commit 976fcf0

Please sign in to comment.