feat(sync): add Teams conferencing and instance fetch - #3397
Closed
tyler-dane wants to merge 2 commits into
Closed
Conversation
Graph createConference reads mailbox meeting providers and asks for Teams when one is allowed. fetchInstanceAt lists one day of series instances and normalizes the occurrence whose originalStart matches. Co-authored-by: Tyler Dane <tyler-dane@users.noreply.github.com>
Co-authored-by: Tyler Dane <tyler-dane@users.noreply.github.com>
tyler-dane
marked this pull request as ready for review
September 5, 2026 04:12
tyler-dane
enabled auto-merge
September 5, 2026 04:17
auto-merge was automatically disabled
September 5, 2026 14:18
Pull request was closed
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Fixes #3246
What and why
Microsoft Graph event writer now creates a Teams online meeting when a command sets
createConference, and resolves a recurring occurrence by original start.Conference:
GET /me/calendarfor allowed/default online-meeting providers (cached per access token, 5 minute TTL). Uses the default when it is Teams (teamsForBusinessorteamsForConsumer), else the first allowed Teams provider. If none are allowed, the event is created without a conference and the write result returnsconference: nullso booking read-back can say no link was made. A mintedonlineMeeting.joinUrlis mapped the same way as the Google Meet read-back.Instance fetch:
GET /me/events/{seriesMasterId}/instancesover a one-day UTC window aroundoriginalStartAt, pick the row whoseoriginalStartis the same instant, and normalize it as an instance (Graph/instancesrows aretype: occurrence; the delta reader still skips those expansions).Spec: calendar providers
Verify
VERDICT: PASS (test:sync:fast, type-check, lint, knip)