Skip to content

Commit

Permalink
v7.3.0 Release (#557)
Browse files Browse the repository at this point in the history
# Changelog
* Add response type to `sendRsvp` (#556)
* Add support for adding custom headers to outgoing requests (#552)
* Add support for custom headers field for drafts and messages (#553)
* Add support for setting `include_grant_scopes` for auth url generation (#554)
* Rename incorrect `type` field in `When` models to `object` (#551)
* Fix inaccuracy in `ReminderOverride` model (#555)
  • Loading branch information
mrashed-dev authored Apr 15, 2024
1 parent 30b8060 commit 001ede3
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 7 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/pull-reqeust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,4 +36,6 @@ jobs:
run: npm run test:coverage

- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3
uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }}
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
# Changelog

### Unreleased
### 7.3.0 / 2024-04-15
* Add response type to `sendRsvp`
* Add support for adding custom headers to outgoing requests
* Add support for custom headers field for drafts and messages
* Add support for setting `include_grant_scopes` for auth url generation
* Rename incorrect `type` field in `When` models to `object`
* Fix inaccuracy in `ReminderOverride` model

Expand Down
2 changes: 1 addition & 1 deletion jest.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ const config = {
},
clearMocks: true,
collectCoverage: true,
overageReporters: ['text', 'cobertura'],
coverageReporters: ['text', 'cobertura'],
};

module.exports = config;
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "nylas",
"version": "7.2.1",
"version": "7.3.0",
"description": "A NodeJS wrapper for the Nylas REST API for email, contacts, and calendar.",
"main": "lib/cjs/nylas.js",
"types": "lib/types/nylas.d.ts",
Expand Down
2 changes: 1 addition & 1 deletion src/version.ts
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
// This file is generated by scripts/exportVersion.js
export const SDK_VERSION = '7.2.1';
export const SDK_VERSION = '7.3.0';

0 comments on commit 001ede3

Please sign in to comment.