closeio 3.9.0 → 3.11.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: a6b0b40852d25d56f9df081bf0ffaa13f0fb595d7337852cd1675cbdb31ef8be
4
- data.tar.gz: 67927424cf933329d352f3382c52a6ed2e70a09c8e5e54f89e676f83c802e0de
3
+ metadata.gz: a9338b55f278856ee6840f2637105ded00ee65c9535994c06b63efb282702b69
4
+ data.tar.gz: c6655ddea439d67548d5836bb3d1296505eb98cf485fe2442e1ec2747708b42c
5
5
  SHA512:
6
- metadata.gz: 8df504b0fc28e427470640ff9d0c24dd9cc92020ddb7e073d5c0fbd35c017ad71189ebdf4a95609cd72bdf627bc55b8f336db492efb9911870ff7669007980c8
7
- data.tar.gz: 950a5076e89839ec877024c0a0fd620449bc0d2ba050762dcd29454aa51866622fd7f825b784fe5f06e516b819adecb4a6ab456e2383f249cfbcdf745a75e48f
6
+ metadata.gz: 05052f91b684b5134f0751c7a8e6e7d34cfe98731ded7b47fb5f9e209b4dcbab78e7b6284c2c21c5ae7b52386275a96e0d922a374178a5bfeb2d40ed1922a0fb
7
+ data.tar.gz: 5acb52b6e4842e3e52b44b4e26ee0a3e6a8ed3c5ed021a633e45e11f2e748cd545466b8ba8a9438e571ecb6e0f6144063ff4112efa6456164497e4b661d446af
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- closeio (3.9.0)
4
+ closeio (3.11.0)
5
5
  faraday
6
6
  faraday_middleware
7
7
  json
@@ -39,7 +39,7 @@ GEM
39
39
  faraday_middleware (1.2.0)
40
40
  faraday (~> 1.0)
41
41
  hashdiff (0.3.6)
42
- json (2.6.2)
42
+ json (2.6.3)
43
43
  minitest (5.10.3)
44
44
  multipart-post (2.2.3)
45
45
  public_suffix (4.0.6)
data/bin/console ADDED
@@ -0,0 +1,15 @@
1
+ #!/usr/bin/env ruby
2
+ # frozen_string_literal: true
3
+
4
+ require "bundler/setup"
5
+ require "closeio"
6
+
7
+ # You can add fixtures and/or initialization code here to make experimenting
8
+ # with your gem easier. You can also use a different console, if you like.
9
+
10
+ # (If you use this, don't forget to add pry to your Gemfile!)
11
+ # require "pry"
12
+ # Pry.start
13
+
14
+ require "irb"
15
+ IRB.start(__FILE__)
@@ -10,6 +10,8 @@ module Closeio
10
10
  include Closeio::Client::Activity
11
11
  include Closeio::Client::BulkAction
12
12
  include Closeio::Client::Contact
13
+ include Closeio::Client::CustomActivity
14
+ include Closeio::Client::CustomActivityType
13
15
  include Closeio::Client::CustomField
14
16
  include Closeio::Client::EmailAccount
15
17
  include Closeio::Client::EmailTemplate
@@ -28,6 +30,7 @@ module Closeio
28
30
  include Closeio::Client::Task
29
31
  include Closeio::Client::User
30
32
  include Closeio::Client::Webhook
33
+ include Closeio::Client::Filter
31
34
 
32
35
  attr_reader :api_key, :logger, :ca_file, :errors, :utc_offset
33
36
 
@@ -0,0 +1,23 @@
1
+ module Closeio
2
+ class Client
3
+ module CustomActivity
4
+ def list_custom_activities(options = {})
5
+ get(custom_activity_path, options)
6
+ end
7
+
8
+ def create_custom_activity(options = {})
9
+ post(custom_activity_path, options)
10
+ end
11
+
12
+ def delete_custom_activity(id)
13
+ delete("#{custom_activity_path}#{id}/")
14
+ end
15
+
16
+ private
17
+
18
+ def custom_activity_path
19
+ 'activity/custom/'
20
+ end
21
+ end
22
+ end
23
+ end
@@ -0,0 +1,19 @@
1
+ module Closeio
2
+ class Client
3
+ module CustomActivityType
4
+ def list_custom_activity_types
5
+ get(custom_activity_type_path)
6
+ end
7
+
8
+ def find_custom_activity_type(id)
9
+ get("#{custom_activity_type_path}#{id}/")
10
+ end
11
+
12
+ private
13
+
14
+ def custom_activity_type_path
15
+ 'custom_activity/'
16
+ end
17
+ end
18
+ end
19
+ end
@@ -0,0 +1,16 @@
1
+ module Closeio
2
+ class Client
3
+ module Filter
4
+
5
+ def filter(body={})
6
+ post(advanced_filter_path, body)
7
+ end
8
+
9
+ private
10
+
11
+ def advanced_filter_path
12
+ 'data/search/'
13
+ end
14
+ end
15
+ end
16
+ end
@@ -1,3 +1,3 @@
1
1
  module Closeio
2
- VERSION = '3.9.0'.freeze
2
+ VERSION = '3.11.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.9.0
4
+ version: 3.11.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: 2022-10-05 00:00:00.000000000 Z
11
+ date: 2022-12-19 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: faraday
@@ -126,7 +126,8 @@ description: A Ruby wrapper for the CloseIO API -- a sales CRM built by salespeo
126
126
  for salespeople.
127
127
  email:
128
128
  - tbrooks@gmail.com
129
- executables: []
129
+ executables:
130
+ - console
130
131
  extensions: []
131
132
  extra_rdoc_files: []
132
133
  files:
@@ -137,6 +138,7 @@ files:
137
138
  - LICENSE
138
139
  - README.md
139
140
  - Rakefile
141
+ - bin/console
140
142
  - closeio.gemspec
141
143
  - lib/closeio.rb
142
144
  - lib/closeio/client.rb
@@ -144,10 +146,13 @@ files:
144
146
  - lib/closeio/resources/activity.rb
145
147
  - lib/closeio/resources/bulk_action.rb
146
148
  - lib/closeio/resources/contact.rb
149
+ - lib/closeio/resources/custom_activity.rb
150
+ - lib/closeio/resources/custom_activity_type.rb
147
151
  - lib/closeio/resources/custom_field.rb
148
152
  - lib/closeio/resources/email_account.rb
149
153
  - lib/closeio/resources/email_template.rb
150
154
  - lib/closeio/resources/event.rb
155
+ - lib/closeio/resources/filter.rb
151
156
  - lib/closeio/resources/integration_link.rb
152
157
  - lib/closeio/resources/lead.rb
153
158
  - lib/closeio/resources/lead_status.rb