caren-api 0.4.14 → 0.4.15

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.
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.4.14
1
+ 0.4.15
data/caren-api.gemspec CHANGED
@@ -5,7 +5,7 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{caren-api}
8
- s.version = "0.4.14"
8
+ s.version = "0.4.15"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Andre Foeken"]
@@ -17,11 +17,18 @@ class Caren::CareProvider < Caren::Base
17
17
  :resolution, # String (exact,daypart,range)
18
18
  :bandwidth, # Integer (60 -> 60 minutes)
19
19
  :show_employee_names, # Boolean
20
+ :show_employee_photos, # Boolean
20
21
  :max_start, # String (23:00)
21
22
  :min_start, # String (07:00)
22
23
  :show_employee_name_as_title, # Boolean
23
24
  :communication, # Boolean
24
- :api_key # String, RSA public key
25
+ :selective_communication, # Boolean
26
+ :api_key, # String, RSA public key
27
+ :linkable, # Boolean
28
+ :closed_beta, # Boolean
29
+ :locale, # String
30
+ :lat,
31
+ :lng
25
32
  ] + super
26
33
  end
27
34
 
@@ -59,8 +66,14 @@ class Caren::CareProvider < Caren::Base
59
66
  :max_start => self.max_start,
60
67
  :show_employee_name_as_title => self.show_employee_name_as_title,
61
68
  :show_employee_names => self.show_employee_names,
69
+ :show_employee_photos => self.show_employee_photos,
62
70
  :communication => self.communication,
63
- :api_key => self.api_key
71
+ :selective_communication => self.selective_communication,
72
+ :api_key => self.api_key,
73
+ :closed_beta => self.closed_beta,
74
+ :locale => self.locale,
75
+ :lat => self.lat,
76
+ :lng => self.lng
64
77
  }
65
78
  end
66
79
 
metadata CHANGED
@@ -5,9 +5,9 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 0
7
7
  - 4
8
- - 14
8
+ - 15
9
9
  segments_generated: true
10
- version: 0.4.14
10
+ version: 0.4.15
11
11
  platform: ruby
12
12
  authors:
13
13
  - Andre Foeken