Skip to content

Commit

Permalink
chore: Update package.json and CHANGELOG (#16)
Browse files Browse the repository at this point in the history
  • Loading branch information
tshashkova authored Apr 27, 2023
1 parent 5f1a48a commit 67b2566
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
## 2022-04-26 v1.3.1
* Fix type definition for `onSession` method

## 2022-04-26 v1.3.0

* Add parameters to triggers
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@inworld/nodejs-sdk",
"version": "1.3.0",
"version": "1.3.1",
"license": "SEE LICENSE IN LICENSE.md",
"main": "build/src/index.js",
"types": "build/src/index.d.ts",
Expand Down
2 changes: 1 addition & 1 deletion src/common/interfaces.ts
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ export interface SessionTokenProps {
}

export interface GetterSetter<T> {
get: () => Awaitable<T> | Awaitable<undefined>;
get: () => Awaitable<T | undefined>;
set: (entity: T) => Awaitable<any>;
}

Expand Down

0 comments on commit 67b2566

Please sign in to comment.