-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
- Loading branch information
1 parent
f71ff87
commit bc5643b
Showing
3 changed files
with
11 additions
and
7 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,11 @@ | ||
# @ts-ghost/ghost-blog-buster | ||
|
||
## 0.6.16 | ||
|
||
### Patch Changes | ||
|
||
- f71ff87: fix connection to ghost instances deployed on custom ports | ||
|
||
## 0.6.15 | ||
|
||
### Patch Changes | ||
|
@@ -197,7 +203,10 @@ | |
- The `members` resource now have a `add` and `edit` method that allow them to be created and updated. | ||
```ts | ||
const createNewMember = await api.members.add({ email: "[email protected]" }, { send_email: true }); | ||
const createNewMember = await api.members.add( | ||
{ email: "[email protected]" }, | ||
{ send_email: true }, | ||
); | ||
assert(createNewMember.success); | ||
const newMember = createNewMember.data; | ||
// id => 6438cc365a8fdb00013a8783 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters