nylas 6.8.0 → 6.8.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/nylas/resources/calendars.rb +7 -2
- data/lib/nylas/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 537c2669d5e30d03ad70d6acbd18c782865038fcff32779ffca36ece16234900
|
|
4
|
+
data.tar.gz: bf78777657d01f6907505b473d5304419d95a8f8984455604fe59c86e5a1279b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: bb7bca82b3c7dbb97b8365a4ef5882d86f41256952e17f854e03e1eff92d16a8cee53f57a971a8bc70209d26a7f5721915a6d458b8582adc24aaf9a055257469
|
|
7
|
+
data.tar.gz: 52196420bcaeb94ea0b31c2a513b57dee5a8dd7eed2f5689564cba0d84e2b63b91751a0616881e0813b63a02a29cd16a1064d78f0a57b6e1e6c4ce31fa0e395f
|
|
@@ -90,8 +90,13 @@ module Nylas
|
|
|
90
90
|
|
|
91
91
|
# Get the free/busy schedule for a list of email addresses.
|
|
92
92
|
#
|
|
93
|
-
# @param identifier [
|
|
94
|
-
# @param request_body [Hash] Request body to pass to the request.
|
|
93
|
+
# @param identifier [String] The identifier of the grant to act upon.
|
|
94
|
+
# @param request_body [Hash] Request body to pass to the request. Supported keys:
|
|
95
|
+
# - `:start_time` [Integer] Unix timestamp for the start time to check free/busy for.
|
|
96
|
+
# - `:end_time` [Integer] Unix timestamp for the end time to check free/busy for.
|
|
97
|
+
# - `:emails` [Array<String>] List of email addresses to check free/busy for.
|
|
98
|
+
# - `:tentative_as_busy` [Boolean, nil] When set to `false`, treats tentative calendar events as
|
|
99
|
+
# `busy: false`. Only applicable for Microsoft and EWS calendar providers. Defaults to `true`.
|
|
95
100
|
# @return [Array(Array(Hash), String)] The free/busy response.
|
|
96
101
|
def get_free_busy(identifier:, request_body:)
|
|
97
102
|
post(
|
data/lib/nylas/version.rb
CHANGED