nylas 4.0.1 → 4.2.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
  SHA1:
3
- metadata.gz: bdbb6c150d3f86323edbef1c476fc87932507baa
4
- data.tar.gz: 7d27d792c1967e0662148f2ed7073f49eb8a35a3
3
+ metadata.gz: a0309597ec61422795c191d902f0869b199bdc1d
4
+ data.tar.gz: 3b0534a7844f8182f4bc3d5597f8e28cfe8e5eb8
5
5
  SHA512:
6
- metadata.gz: 73bfcdb6f6928a95d9183110e756547abc046e4e39ebe1b4a3ef7d63a2b91950f494b469c04ba7ca785d1abaa43d282a415da44c3e7f2efaacf4695915b9e4ba
7
- data.tar.gz: 0e29d71b4c0a61f81fa4f5cd3da8712fdc37f396ee50e52a08e983c7865e784f69ef5f223ecc053719e3b8d5e47ba9f2d69367ef7b71843b5e68ef60bbe0936b
6
+ metadata.gz: 5b5186ac266d2986be98076f6dac22e1df8bd305ae0ae0a41f31b56670682d626114b01b4f00c89f77bc3743938b837ad68e429a3bd136b361bc1be7e793d258
7
+ data.tar.gz: 114f8ab0eaad1018d267cefe1d7a79fc6f6a37d491aa60c2d108d67307967275afe0ab879ea94cfd7c2fa3765ba7dc1717cddd7748dd8927f70b4e811b39ba4e
@@ -42,7 +42,6 @@ require_relative "nylas/deltas_collection"
42
42
  require_relative "nylas/account"
43
43
  require_relative "nylas/calendar"
44
44
  require_relative "nylas/contact"
45
- require_relative "nylas/contact_group"
46
45
  require_relative "nylas/current_account"
47
46
  require_relative "nylas/deltas"
48
47
  require_relative "nylas/delta"
@@ -83,5 +82,4 @@ module Nylas
83
82
  Types.registry[:timespan] = Types::ModelType.new(model: Timespan)
84
83
  Types.registry[:web_page] = Types::ModelType.new(model: WebPage)
85
84
  Types.registry[:nylas_date] = NylasDateType.new
86
- Types.registry[:contact_group] = Types::ModelType.new(model: ContactGroup)
87
85
  end
@@ -29,7 +29,6 @@ module Nylas
29
29
  attribute :notes, :string
30
30
  attribute :web_page, :web_page
31
31
 
32
- has_n_of_attribute :groups, :contact_group
33
32
  has_n_of_attribute :emails, :email_address
34
33
  has_n_of_attribute :im_addresses, :im_address
35
34
  has_n_of_attribute :physical_addresses, :physical_address
@@ -1,3 +1,3 @@
1
1
  module Nylas
2
- VERSION = "4.0.1".freeze
2
+ VERSION = "4.2.0".freeze
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: nylas
3
3
  version: !ruby/object:Gem::Version
4
- version: 4.0.1
4
+ version: 4.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Nylas, Inc.
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2018-06-21 00:00:00.000000000 Z
11
+ date: 2018-02-05 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -253,7 +253,6 @@ files:
253
253
  - lib/nylas/collection.rb
254
254
  - lib/nylas/constraints.rb
255
255
  - lib/nylas/contact.rb
256
- - lib/nylas/contact_group.rb
257
256
  - lib/nylas/current_account.rb
258
257
  - lib/nylas/delta.rb
259
258
  - lib/nylas/deltas.rb
@@ -320,7 +319,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
320
319
  version: '0'
321
320
  requirements: []
322
321
  rubyforge_project:
323
- rubygems_version: 2.5.2
322
+ rubygems_version: 2.6.13
324
323
  signing_key:
325
324
  specification_version: 4
326
325
  summary: Gem for interacting with the Nylas API
@@ -1,12 +0,0 @@
1
- module Nylas
2
- # Structure to represent the Contact Group schema
3
- # @see https://docs.nylas.com/reference#contactsid
4
- class ContactGroup
5
- include Model::Attributable
6
- attribute :id, :string
7
- attribute :object, :string
8
- attribute :account_id, :string
9
- attribute :name, :string
10
- attribute :path, :string
11
- end
12
- end