Skip to content

Commit

Permalink
Merge branch 'main' into CUST-2786-v-3-node-js-sdk-add-support-for-qu…
Browse files Browse the repository at this point in the history
…erying-by-attendees-when-returning-all-events
  • Loading branch information
mrashed-dev authored Sep 25, 2024
2 parents d46f411 + f01250d commit 983f464
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

### Unreleased
* Add support for filtering events by attendee email
* Fix issue where crypto import was causing downstream Jest incompatibilities

### 7.5.2 / 2024-07-12
* Fix issue where metadata was being incorrectly modified before being sent to the API
Expand Down
1 change: 0 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,6 @@
"license": "MIT",
"dependencies": {
"change-case": "^4.1.2",
"eslint-plugin-import": "^2.28.1",
"form-data": "^4.0.0",
"mime-types": "^2.1.35",
"node-fetch": "^2.6.12",
Expand Down
3 changes: 2 additions & 1 deletion src/models/auth.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@ export type Provider =
| 'imap'
| 'microsoft'
| 'icloud'
| 'virtual-calendar';
| 'virtual-calendar'
| 'ews';

/**
* Configuration for generating a URL for OAuth 2.0 authentication.
Expand Down
2 changes: 1 addition & 1 deletion src/resources/auth.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { v4 as uuid } from 'uuid';
import { createHash } from 'node:crypto';
import { createHash } from 'crypto';
import { Resource } from './resource.js';
import {
URLForAdminConsentConfig,
Expand Down

0 comments on commit 983f464

Please sign in to comment.