moxiworks_platform 0.4.1 → 0.4.2
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/moxiworks_platform/event.rb +17 -0
- data/lib/moxiworks_platform/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 11826227d6986ab2fea973c52ec0951df969d4e1
|
4
|
+
data.tar.gz: b97428fc8aeff4de886eb278379e6f1014665753
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f77145079a3f2c8f917b887e4d345662b69dfdb8f654fdb1fefcafd44ba22a5ef55e8f67dbc6f82b8b4c8bf653ceb6be3bfdf4852ee56e57259854cbf813b1a4
|
7
|
+
data.tar.gz: ed4d3598996bba7a72b337d9d3915a6f782cbed8a2a2904c9cb8df3050f38a4a4fec34a6e9f930d8a5f18f3e837a969331eec2f8ad837805b3fe04f342418f4c
|
@@ -64,6 +64,17 @@ module MoxiworksPlatform
|
|
64
64
|
# @return [Boolean]
|
65
65
|
attr_accessor :all_day
|
66
66
|
|
67
|
+
# @!attribute required_attendees
|
68
|
+
# a comma separated list of attendee IDs
|
69
|
+
#
|
70
|
+
# @return [String]
|
71
|
+
attr_accessor :required_attendees
|
72
|
+
|
73
|
+
# @!attribute optional_attendees
|
74
|
+
# a comma separated list of attendee IDs
|
75
|
+
#
|
76
|
+
# @return [String]
|
77
|
+
attr_accessor :optional_attendees
|
67
78
|
|
68
79
|
# Creates a new Event in Moxi Works Platform
|
69
80
|
# @param [Hash] opts named parameter Hash
|
@@ -80,6 +91,8 @@ module MoxiworksPlatform
|
|
80
91
|
# @option opts [Integer] :event_start Unix timestamp representing the start time of the event
|
81
92
|
# @option opts [Integer] :event_end Unix timestamp representing the end time of the event
|
82
93
|
# @option opts [Boolean] :all_day whether the event is an all day event
|
94
|
+
# @option opts [String] :required_attendees comma separated list of attendee IDs using Contact IDs from your system (partner_contact_id) that have already been added to The Moxi Works Platform as a Contact
|
95
|
+
# @option opts [String] :optional_attendees comma separated list of attendee IDs using Contact IDs from your system (partner_contact_id) that have already been added to The Moxi Works Platform as a Contact
|
83
96
|
#
|
84
97
|
# @return [MoxiworksPlatform::Event]
|
85
98
|
#
|
@@ -182,6 +195,8 @@ module MoxiworksPlatform
|
|
182
195
|
# @option opts [Integer] :event_start Unix timestamp representing the start time of the event
|
183
196
|
# @option opts [Integer] :event_end Unix timestamp representing the end time of the event
|
184
197
|
# @option opts [Boolean] :all_day whether the event is an all day event
|
198
|
+
# @option opts [String] :required_attendees comma separated list of attendee IDs using Contact IDs from your system (partner_contact_id) that have already been added to The Moxi Works Platform as a Contact
|
199
|
+
# @option opts [String] :optional_attendees comma separated list of attendee IDs using Contact IDs from your system (partner_contact_id) that have already been added to The Moxi Works Platform as a Contact
|
185
200
|
#
|
186
201
|
# @return [MoxiworksPlatform::Event]
|
187
202
|
#
|
@@ -259,6 +274,8 @@ module MoxiworksPlatform
|
|
259
274
|
# @option opts [Integer] :event_end Unix timestamp representing the end time of the event
|
260
275
|
# @option opts [Boolean] :recurring whether the event is a recurring event
|
261
276
|
# @option opts [Boolean] :all_day whether the event is an all day event
|
277
|
+
# @option opts [String] :required_attendees comma separated list of attendee IDs using Contact IDs from your system (partner_contact_id) that have already been added to The Moxi Works Platform as a Contact
|
278
|
+
# @option opts [String] :optional_attendees comma separated list of attendee IDs using Contact IDs from your system (partner_contact_id) that have already been added to The Moxi Works Platform as a Contact
|
262
279
|
#
|
263
280
|
# @return [MoxiworksPlatform::Event]
|
264
281
|
#
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: moxiworks_platform
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.4.
|
4
|
+
version: 0.4.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tres Wong-Godfrey
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2016-
|
11
|
+
date: 2016-06-13 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|