Changelog

Version 4.4.3 (2021-04-09)

Fixes

added error for comment live object when create new comment

Version 4.4.2 (2021-04-07)

Fixes

fixed user reporting

Version 4.4.1 (2021-04-02)

Fixes

Removed check for comments since post contains only comments without replies

Version 4.4.0 (2021-04-01)

Fixes

  • recalculate comments counter for replies

  • clean in-memory cache when the session is reset

  • added user displayName to comments output

Version 4.3.2 (2021-03-22)

Fixes

  • fixed crash of file uploading

  • force unix line ending for windows

  • added withCredentials() so the cookie gets saved

Version 4.3.0-rc.0 (2021-03-08)

API / Behavior Changes

Allowed avatarCustomUrl to be passed to show avatars which are stored in the external systems

Version 4.2.1 (2021-03-01)

API / Behavior Changes

Added case insensitive community search

Version 4.2.0 (2021-02-25)

API / Behavior Changes

  • You can now create custom posts

    PostRepository.createPost({ dataType: string, data: Object })

Version 4.0.36 (2021-02-05)

API / Behavior Changes

  • Comment

    • Fix the issue of fetching X comments with first / last sorting in CommentRepository.queryComments(parameters: Object)

Version 4.0.0 (2020-09-11)

API / Behavior Changes

  • Reaction

    • Normalized API accross the SDK

  • Post

    • PostRepository()

    • PostRepository.postForId(postId: string)

    • PostRepository.createPost(postType: string)

    • PostRepository.updatePost({ postId: string, data: Object })

    • async PostRepository.deletePost(postId: string)

    • async PostRepository.addReaction(postId: string)

    • async PostRepository.removeReaction(postId: string)

    • async PostRepository.flag(postId: string)

    • async PostRepository.unflag(postId: string)

    • async PostRepository.isFlaggedByMe(postId: string)

  • Comment

    • CommentRepository()

    • CommentRepository.queryComments(parameters: Object)

    • CommentRepository.commentForId(commentId: string)

    • CommentRepository.createComment(parameters: Object)

    • CommentRepository.editComment({ commentId: string, data: Object })

    • async CommentRepository.deleteComment(commentId: string)

    • async CommentRepository.addReaction(commentId: string)

    • async CommentRepository.removeReaction(commentId: string)

    • async CommentRepository.flag(commentId: string)

    • async CommentRepository.unflag(commentId: string)

    • async CommentRepository.isFlaggedByMe(commentId: string)

  • User

    • UserRepository.getAllUsers(sortBy?: EkoUserSortingMethod)

    • UserRepository.searchUserByDisplayName(search: string)

Last updated