icalia-sdk-event-core 0.3.4 → 0.3.5

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 406aa4b2cd3996df9ce41c8bdc034d697c3afad57681dc89280f9efaa71b2ef8
4
- data.tar.gz: 29ba5134ccc5b2fb6675560f6e76452fe024880454fb29ac771d3fb0b95df78e
3
+ metadata.gz: 787d455002d7b3363a853b784e2b4ce411ed25cad30ec4fd5081ddb2df3312a5
4
+ data.tar.gz: 162335fdb3231e77d636c429bdc2cc47b2bc6a41eff85acf93d86c7d4c765aa6
5
5
  SHA512:
6
- metadata.gz: d3a9542085ce4b8ad36b7b8b1c32330b04eee80d5012d939625d449c6a2372624a66ba2ef2a305699cf6fdfc7599249ba023c2b323afafcb6774bcabacd09f74
7
- data.tar.gz: 7432cb346d4d5b45a2d2bee4aa80ed8107176dc3139f71a5138ad99617701e5fa3dad37aa5e964ad2ed2cf3cf1795c63b40b3a571a503518eea76d2987928bc3
6
+ metadata.gz: 7c16e5317a1c00c4d8f342a47187fc26f071fb9a381fa7545bfbf7c7bae5a01783b85f30924fb1964aab6a9a52c0240df1251eda5b768a2fddf8d37688d8c76b
7
+ data.tar.gz: b86d2ef17d2556fb3476442dda04c1bf95e7b1bb418a09f63353cf2176858059e88c71577210f47ca973771582a1a8f0ebd7421685e4c7c70cf7fd742c9ab5ee
@@ -8,7 +8,12 @@ module Icalia::Event
8
8
  class DeserializablePerson < DeserializableResource
9
9
  include DeserializableResourceTimestamps
10
10
 
11
- attributes :name
11
+ attribute(:'full-name') { |value| Hash[full_name: value] }
12
+ attribute(:'given-name') { |value| Hash[given_name: value] }
13
+ attribute(:'family-name') { |value| Hash[family_name: value] }
14
+ attribute(:'gender-type') { |value| Hash[gender_type: value] }
15
+ attribute(:'custom-gender') { |value| Hash[custom_gender: value] }
16
+ attribute(:'date-of-birth') { |value| Hash[date_of_birth: value] }
12
17
 
13
18
  has_many(:'email-accounts') do |rel, _ids, _types|
14
19
  Hash[email_accounts: get_stand_ins(rel)]
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Icalia
4
4
  module Event
5
- CORE_VERSION = '0.3.4'
5
+ CORE_VERSION = '0.3.5'
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: icalia-sdk-event-core
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.4
4
+ version: 0.3.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Roberto Quintanilla