File tree Expand file tree Collapse file tree 3 files changed +10
-3
lines changed
Expand file tree Collapse file tree 3 files changed +10
-3
lines changed Original file line number Diff line number Diff line change 11Changelog
22=========
33
4+ v1.3.5 - 2020-09-01
5+
6+ * #59 : Optionally include extra stats in get_ticket (@jstitch )
7+ * #60 : Add delete company (@aharabedian )
8+
49v1.3.4 - 2020-07-24
510
611 * Fix versioning issue. No code changes (@sjkingo )
Original file line number Diff line number Diff line change @@ -39,7 +39,7 @@ It includes the following features from the [Freshdesk v2 API](https://developer
3939 - [ Get] ( http://developer.freshdesk.com/api/#view_company )
4040 - [ List] ( http://developer.freshdesk.com/api/#list_all_companies ) (from 1.2.8)
4141 - [ Filter] ( https://developers.freshdesk.com/api/#filter_companies ) (from 1.3.2)
42- - [ Delete] ( https://developers.freshdesk.com/api/#delete_company )
42+ - [ Delete] ( https://developers.freshdesk.com/api/#delete_company ) (from 1.3.5)
4343* [ Roles] ( https://developers.freshdesk.com/api/#roles ) (from 1.1.1)
4444 - [ Get] ( http://developer.freshdesk.com/api/#view_role )
4545 - [ List] ( http://developer.freshdesk.com/api/#list_role )
@@ -143,7 +143,7 @@ Or converted from indexes to their descriptions:
143143' phone'
144144```
145145
146- You can get additional details of the ticket in the response using extra arguments.
146+ You can get additional details of the ticket in the response using extra arguments (from 1.3.5) .
147147
148148Please take a look at the FreshDesk documentation for more details: [ View a Ticket] ( http://developer.freshdesk.com/api/#view_a_ticket )
149149
@@ -373,6 +373,8 @@ To get a company, use:
373373a.companies.filter_companies(query = " updated_at:>'2020-07-12'" )
374374```
375375
376+ To delete a company (from 1.3 .5), call `delete_company()` and pass the Freshdesk company ID .
377+
376378# # Credits
377379
378380Thank you to all the people who have worked on this library and made it great for everyone.
Original file line number Diff line number Diff line change 1- __version__ = "1.3.4 "
1+ __version__ = "1.3.5 "
You can’t perform that action at this time.
0 commit comments