From c4d2eadf1295ce89b16bd2d4c2c6982d6b9f5c73 Mon Sep 17 00:00:00 2001 From: Mostafa Rashed <17770919+mrashed-dev@users.noreply.github.com> Date: Tue, 6 Feb 2024 01:22:43 +0400 Subject: [PATCH] v7.0.0 beta.5 Release (#532) # Changelog * Added `default` event visibility value * Changed `clientSecret` to optional for token exchange methods; defaults to API Key now * Updated reminders field to match updated API schema * Updated all references to `File` to `Attachment` to match API schema * Fixes to the `Event` models * Fixes to drafts and sending messages * Removed `ContactType` enum as the API accepts any string Note, this is the final beta. --- CHANGELOG.md | 2 +- package-lock.json | 4 ++-- package.json | 2 +- src/version.ts | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 112b6579..8a4af1d8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # Changelog -### Unreleased +### 7.0.0-beta.5 / 2024-02-05 * Added `default` event visibility value * Changed `clientSecret` to optional for token exchange methods; defaults to API Key now * Updated reminders field to match updated API schema diff --git a/package-lock.json b/package-lock.json index c7a72b56..12fd7307 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "nylas", - "version": "7.0.0-beta.4", + "version": "7.0.0-beta.5", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "nylas", - "version": "7.0.0-beta.4", + "version": "7.0.0-beta.5", "license": "MIT", "dependencies": { "change-case": "^4.1.2", diff --git a/package.json b/package.json index 8d098c68..d0bd9879 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "nylas", - "version": "7.0.0-beta.4", + "version": "7.0.0-beta.5", "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", diff --git a/src/version.ts b/src/version.ts index c89c9fd4..8b656114 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1,2 +1,2 @@ // This file is generated by scripts/exportVersion.js -export const SDK_VERSION = '7.0.0-beta.4'; +export const SDK_VERSION = '7.0.0-beta.5';