closeio 3.15.0 → 3.17.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 455a72fb4450c853ef1c1f4a56cb163ed3a0a0eb367c3ea653118243aa0ddb04
4
- data.tar.gz: 131feeaa904df435be2707d63220cc53782a6903219e2fa86beef721c404fc7c
3
+ metadata.gz: 4b6425d5045461d4b24a6903ba1217f7166a7b143741bb60abfa6d796099ffc4
4
+ data.tar.gz: 23300ab863e842d24af45d9ca25e4e26a3595abbbc44cfbae515fbf58c9557ac
5
5
  SHA512:
6
- metadata.gz: 0a1fed22f49bde9672d561e974aac065c0c81be1eb00e8b2d380fc99b3dfc1024dd88da8c65dc5cd73f3b5cc16e87590400272f9d2d48f933ae9759feb11972a
7
- data.tar.gz: 636bbb8c0440d715ac89c9956d05928be9b7eb880c24ca430dad2f407e85aead93c9ad72bb4e2c0ae89864f7b55f3c6f03d52e329eeb0a034915247a45e191ba
6
+ metadata.gz: '091c413ff38f4e6ce6691b408abffa53c5d0b08cadb28c2c1b57239d30f58f4274a35723e54b1e1c558f069dba04938c92672a12b672269f51cc803ee467a37d'
7
+ data.tar.gz: 5f00108e0ccc6f73476e037bd476b21afec1e16f5e433cc432b581f8d09e9d7af11cd0b4b1fe6a2f3b0576dec4f22307fc03fd00ad9907ac1c1375fafaff6132
@@ -117,6 +117,14 @@ module Closeio
117
117
  delete("#{sms_path}#{id}/")
118
118
  end
119
119
 
120
+ #
121
+ # Meeting Activities
122
+ #
123
+
124
+ def list_meetings(options = {})
125
+ get(meeting_path, options)
126
+ end
127
+
120
128
  private
121
129
 
122
130
  def activity_path
@@ -142,6 +150,10 @@ module Closeio
142
150
  def sms_path
143
151
  "#{activity_path}sms/"
144
152
  end
153
+
154
+ def meeting_path
155
+ "#{activity_path}meeting/"
156
+ end
145
157
  end
146
158
  end
147
159
  end
@@ -1,8 +1,8 @@
1
1
  module Closeio
2
2
  class Client
3
3
  module Contact
4
- def list_contacts(_params = nil)
5
- get(contact_path)
4
+ def list_contacts(options = {})
5
+ get(contact_path, options)
6
6
  end
7
7
 
8
8
  def find_contact(id)
@@ -13,7 +13,7 @@ module Closeio
13
13
  post(custom_activity_path, options)
14
14
  end
15
15
 
16
- def update_custom_activity(options = {})
16
+ def update_custom_activity(id, options = {})
17
17
  put("#{custom_activity_path}#{id}/", options)
18
18
  end
19
19
 
@@ -1,3 +1,3 @@
1
1
  module Closeio
2
- VERSION = '3.15.0'.freeze
2
+ VERSION = '3.17.0'.freeze
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: closeio
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.15.0
4
+ version: 3.17.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Taylor Brooks
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-04-25 00:00:00.000000000 Z
11
+ date: 2024-01-29 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: faraday