File tree Expand file tree Collapse file tree 3 files changed +24
-2
lines changed
Expand file tree Collapse file tree 3 files changed +24
-2
lines changed Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ This version of the gem is compatible with `Ruby 2.1` and above.
2222
2323Using bundler:
2424
25- gem 'intercom', '~> 3.6.0 '
25+ gem 'intercom', '~> 3.6.1 '
2626
2727## Basic Usage
2828
Original file line number Diff line number Diff line change 1+ 3.6.1
2+ #430 Allow all conversations to be listed
3+ You can now iterate over all conversations for your app via:
4+ intercom.conversations.all.each { |convo| ... }
5+
6+ 3.6.0
7+ BREAKING CHANGE companies
8+ We updated companies to be able to list users via company_id as well as id (#428 )
9+ Note that this is a breaking change as we had to remove the old way of listing users via company.
10+
11+ Previously it was:
12+ intercom.companies.users(company.id)
13+
14+ Now you get a list of users in a company by Intercom Company ID
15+ intercom.companies.users_by_intercom_company_id(company.id)
16+
17+ Now you get a list of users in a company by external company_id
18+ intercom.companies.users_by_company_id(company.company_id)
19+
20+ Rate limit handling
21+ We also improved the way we handle rate limits in PR #409 which was related to issue #405
22+
1233.5.23
224 - New type of error (ResourceNotUniqueError). Thrown when trying to create a resource that already exists in Intercom
325
Original file line number Diff line number Diff line change 11module Intercom #:nodoc:
2- VERSION = "3.6.0 "
2+ VERSION = "3.6.1 "
33end
You can’t perform that action at this time.
0 commit comments