Jericho
Jericho
ZoomNet is a .NET client library for the Zoom.us REST API. The project is hosted on GitHub: https://github.com/Jericho/ZoomNet
The goals are: - Consolidate the query for searching contacts, searching email activities and segmenting (currently we have "legacy" query logic for searching email activities) - Allow using custom fields...
The fields that can be used when searching for email activities are listed [here](https://docs.sendgrid.com/for-developers/sending-email/getting-started-email-activity-api#query-reference).
Currently StrongGrid does not support the functions that are available for segmenting: - ~~[CONTAINS()](https://docs.sendgrid.com/for-developers/sending-email/segmentation-query-language#contains)~~ See #448 - [CONCAT()](https://docs.sendgrid.com/for-developers/sending-email/segmentation-query-language#concat) - [LENGTH()](https://docs.sendgrid.com/for-developers/sending-email/segmentation-query-language#length) - [LOWER()](https://docs.sendgrid.com/for-developers/sending-email/segmentation-query-language#lower) - [NOW()](https://docs.sendgrid.com/for-developers/sending-email/segmentation-query-language#now) https://sendgrid.com/docs/for-developers/sending-email/segmentation-query-language/#well-defined-functions
@kevinchalet recently [alerted](#361) me to the fact that SendGrid includes "link" information in the response of the `GlobalSuppressions.GetAllAsync` which can be useful for pagination. While investigating this situation, I found...
I interface with a 3rd party API and I know that my requests will be rejected if they exceed a given maximum size. For example, I can attach multiple files...
Currently the FluentHttpClient allows us to handle scenarios where a request fails (presumably due to a transient problem) and waiting a brief moment allows us to dispatch the exact same...
The last step of my Cake script when I publish a new release of my library is to close the GitHub milestone. Unfortunately, it's failing when my Cake script is...
In PR #162 we implemented a workaround for a know issue in OpenCover (specifically: run open cover with the `-oldstyle` parameter). This workaround is for OpenCover 4.6.519 but it will...
In particular, the "Cross-platform targeting" section needs to be refreshed, I think. - What are the latest recommendations for library authors? - What are the most "reasonable" frameworks we should...