Social Media Post For Website Registration

Mind Map Template For Product Road Map

product roadmap of the year xmind mind mapping software free product templates in ppt to download product roadmapmind map template business infographics stock vector free product roadmap templates editable and downloadable product roadmap template free product roadmap what it is how to create one venngage product design mind map template in google docs google slides word product roadmap in excel at alexander feakes blog product roadmapmind map template business infographics stock vector product roadmap template ppt campaign planning template 4 phase product planning product roadmap templates verticalseparator free product roadmap templates editable and downloadable free product roadmap templates editable and downloadable free product templates in ppt to download product roadmap timeline ppt and google slides template slidekit product development roadmap template for powerpoint and keynote product roadmap template attractive templates product development roadmap powerpoint google slides template slidekit free product roadmap templates editable and downloadable 22 visual product roadmap templates tools ᐅ templatelab product roadmap timeline ppt and google slides template slidekit swimlane roadmap powerpoint template and google slides slidekit agile roadmap template free product roadmap templates editable and downloadable 31 product roadmap design tips venngage powerpoint product roadmap at charles benavides blog product roadmap how to guide tips and examples canva product roadmap timeline ppt and google slides template slidekit product roadmap slide template free roadmap templates and examples edrawmind create a roadmap online free examples canva concept quarterly product roadmap template venngage product roadmap template visio simple product roadmap template venngage 3 phase strategic timeline product roadmap templates product roadmap template free download pdf agile free editable product roadmap templates product roadmap powerpoint template templateswise com product roadmap timeline ppt and google slides template slidekit roadmap template sheets free colorful product portfolio roadmap template venngage software development roadmap template using top down product strategy to plan your roadmap free timeline roadmap templates in excel to download product development roadmap template for powerpoint free product roadmap templates editable and downloadable life cycle roadmap free business roadmap template of four phase product strategy timeline product roadmap examples at rita ware blog visual roadmap template powerpoint product roadmap templates slides presentations what is roadmap in product management free printable template agile product roadmap template free customizable marketing roadmap templates smartsheet free mind map templates each customizable visme product development roadmap template ppt gsameister roadmap timeline template ppt 33 free mind map templates examples word powerpoint psd free google slides product roadmap templates slides product roadmap timeline ppt and google slides template slidekit

:
Business Cards Near Me
Add tentative_as_busy field to GetFreeBusyRequest (Social Media Product Restock Post)
1 parent Outfits Inspo Insta commit 35423ff

Product roadmapmind map template business infographics stock vector 3 files changed Agile product roadmap template

Lines changed: 29 additions & 1 deletion

Calendar Plan Example Mind Map Template For Product Road

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ Unreleased
44
----------
55
* Clarify that event `default` visibility is Google-only
66
* Added `resources` field to Event, CreateEventRequest, and UpdateEventRequest models
7+
* Added tentative_as_busy field to GetFreeBusyRequest
78

89
v6.16.0
910
----------

nylas/models/free_busy.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
from typing import List, Union
33

44
from dataclasses_json import dataclass_json
5-
from typing_extensions import TypedDict
5+
from typing_extensions import TypedDict, NotRequired
66

77

88
@dataclass_json
@@ -64,8 +64,11 @@ class GetFreeBusyRequest(TypedDict):
6464
start_time: Unix timestamp for the start time to check free/busy for.
6565
end_time: Unix timestamp for the end time to check free/busy for.
6666
emails: List of email addresses to check free/busy for.
67+
tentative_as_busy: When set to false, treats tentative calendar events as busy:false.
68+
Only applicable for Microsoft and EWS calendar providers. Defaults to true.
6769
"""
6870

6971
start_time: int
7072
end_time: int
7173
emails: List[str]
74+
tentative_as_busy: NotRequired[bool]

tests/resources/test_calendars.py

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -437,3 +437,27 @@ def test_get_free_busy(self, http_client_free_busy):
437437
overrides=None,
438438
)
439439

440+
def test_get_free_busy_with_tentative_as_busy(self, http_client_free_busy):
441+
calendars = Calendars(http_client_free_busy)
442+
free_busy_request = {
443+
"emails": ["test@gmail.com", "test2@gmail.com"],
444+
"start_time": 1497916800,
445+
"end_time": 1498003200,
446+
"tentative_as_busy": False,
447+
}
448+
449+
# Http client is mocked in conftest.py, specific
450+
# mock for free busy is configured there
451+
calendars.get_free_busy(
452+
identifier="abc123", request_body=free_busy_request, overrides=None
453+
)
454+
455+
http_client_free_busy._execute.assert_called_once_with(
456+
"POST",
457+
"/v3/grants/abc123/calendars/free-busy",
458+
None,
459+
None,
460+
free_busy_request,
461+
overrides=None,
462+
)
463+

Business Cards With Photo Mind Map Template For Product Road

Comments
 (0)