Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,14 @@
# Next

- **[Feature]** Add `setConversationTopic(conversationId: string, topic: string)`
- **[Feature]** Add `getJoinUrl(conversationId: string)`
- **[Feature]** Add `addMemberToConversation(conversationId: string, memberId: string)`
- **[Feature]** Add `createConversation(allUsers: AllUsers)`
- **[Fix]** Do not throw on unexpected extra keys when reading responses.
- **[Fix]** Fix message host resolution (API change).
- **[Fix]** Mark `isFavorite` in `ContactGroup` as optional.
- **[Fix]** Mark `name` in `ContactProfile` as optional.
- **[Fix]** Move `.ts` sources to a different directory than `.d.ts` and `.js` in dist build
- **[Internal]** Run tests and coverage on `.mjs` files.

# 0.0.14 (2018-01-12)
Expand Down
2 changes: 1 addition & 1 deletion gulpfile.ts
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ const test: buildTools.MochaTarget = {
scripts: ["test/**/*.ts", "lib/**/*.ts"],
customTypingsDir: "src/custom-typings",
tsconfigJson: "src/test/tsconfig.json",
outModules: buildTools.OutModules.Mjs,
outModules: buildTools.OutModules.Both,
tscOptions: {
skipLibCheck: true,
},
Expand Down
Loading