kentaa-api 0.7.0 → 0.7.1

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: 1aca25f29280f1c8b1ac63c17a8d8bac967c27a10975027ceaa163ca13a57a09
4
- data.tar.gz: 7e9a8a9e7bcc65b8f63de8284db9e8550d238bf75dc8565a2eeb5f147f48e5c3
3
+ metadata.gz: 04451de6b9a5dd6b328e8ad1c9be31b801724bef93e241121aa52fdd405ca42d
4
+ data.tar.gz: c8eba8ba2aafb55dd1ae14cee1ab24e960fdc2000d831927aafea0dec2028285
5
5
  SHA512:
6
- metadata.gz: 5b5889b38da0cf1ed917460cfae3f2c4987c4fe62e48988f865dd1768c2106ca12d726e324f3d3c1f7199b8888848c93ecfcd93ff2a6de5bb6bff01a79418d9a
7
- data.tar.gz: bd4b8963915d48a62f44082aa20225b1826c2a0eae40488084c138e78799f06787e7213d6d7bc8b2bd1e7f19de92f3ddbae7ad2e13ec6e2a47fb192d1187c57b
6
+ metadata.gz: db13df5861b14bd55f3405e8ed30f56da822d0f5660edfb6806d2756e7b1f8f4d70ef75ae003c182339ee2ec1668c0e336bb1dc5ae3d4a8ca8f8b521ad1af336
7
+ data.tar.gz: abcb417700fcf572bbf8ff70dc325fc75b4074d3fd8bffd250c5970aae2b6f6c62bfd2667e966c21f208bb262e282ed06f41d54c6ccb624f999d780917342b67
data/README.md CHANGED
@@ -431,7 +431,7 @@ user = client.users.get(1)
431
431
  user.first_name # => "John"
432
432
  user.last_name # => "Doe"
433
433
 
434
- # Create an User
434
+ # Create a User
435
435
  user = client.users.create(
436
436
  first_name: "John",
437
437
  last_name: "Doe"
@@ -441,12 +441,12 @@ user.id # => 1
441
441
  user.first_name # => "John"
442
442
  user.last_name # => "Doe"
443
443
 
444
- # Update an User
444
+ # Update a User
445
445
  user = client.users.update(1, first_name: "Jane")
446
446
 
447
447
  user.first_name # => "Jane"
448
448
 
449
- # Authenticate an User
449
+ # Authenticate a User
450
450
  user = client.users.auth(email: "john.doe@kentaa.nl", password: "secret")
451
451
 
452
452
  user.id # => 1
@@ -94,6 +94,10 @@ module Kentaa
94
94
  def terms_conditions_version
95
95
  data[:terms_conditions_version]
96
96
  end
97
+
98
+ def privacy_version
99
+ data[:privacy_version]
100
+ end
97
101
  end
98
102
  end
99
103
  end
@@ -16,6 +16,8 @@ module Kentaa
16
16
  Kentaa::Api::Resources::Action.new(config, id: action_id, options: options)
17
17
  elsif team_id
18
18
  Kentaa::Api::Resources::Team.new(config, id: team_id, options: options)
19
+ elsif company_id
20
+ Kentaa::Api::Resources::Company.new(config, id: company_id, options: options)
19
21
  elsif project_id
20
22
  Kentaa::Api::Resources::Project.new(config, id: project_id, options: options)
21
23
  elsif segment_id
@@ -51,6 +53,10 @@ module Kentaa
51
53
  data[:project_id]
52
54
  end
53
55
 
56
+ def company_id
57
+ data[:company_id]
58
+ end
59
+
54
60
  def team_id
55
61
  data[:team_id]
56
62
  end
@@ -87,6 +93,10 @@ module Kentaa
87
93
  data[:anonymous]
88
94
  end
89
95
 
96
+ def contact_details_type
97
+ data[:contact_details_type]
98
+ end
99
+
90
100
  def email
91
101
  data[:email]
92
102
  end
@@ -16,6 +16,8 @@ module Kentaa
16
16
  Kentaa::Api::Resources::Action.new(config, id: action_id, options: options)
17
17
  elsif team_id
18
18
  Kentaa::Api::Resources::Team.new(config, id: team_id, options: options)
19
+ elsif company_id
20
+ Kentaa::Api::Resources::Company.new(config, id: company_id, options: options)
19
21
  elsif project_id
20
22
  Kentaa::Api::Resources::Project.new(config, id: project_id, options: options)
21
23
  elsif segment_id
@@ -43,6 +45,10 @@ module Kentaa
43
45
  data[:segment_id]
44
46
  end
45
47
 
48
+ def company_id
49
+ data[:company_id]
50
+ end
51
+
46
52
  def project_id
47
53
  data[:project_id]
48
54
  end
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Kentaa
4
4
  module Api
5
- VERSION = '0.7.0'
5
+ VERSION = '0.7.1'
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: kentaa-api
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.7.0
4
+ version: 0.7.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Kentaa
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2022-08-24 00:00:00.000000000 Z
11
+ date: 2022-12-20 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler