ecoportal-api 0.5.5 → 0.5.6

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: 1ab199a043ed1a5eb7e9fc093438ab18d6f096268954a2d9d5fdffff1213a055
4
- data.tar.gz: 49bc4860aaf99eaf89262c4cdb5445a4803252b687ef94881baa1b2ce424ef97
3
+ metadata.gz: 31190d7d5719d21b732605d97eccaad0c042f9fc3212fc5f181e6e18e6f12771
4
+ data.tar.gz: e7bb04368723c7da36ca8408b05088ed09753c9f9fa53722b32c3ef0df3f6e0e
5
5
  SHA512:
6
- metadata.gz: b15f3130c94ad5c11e8ab5309139b65d41e7049bb9c07e460737ef0d64f5cf3f634acc491579d3aae33b238192c7d35768bc0e268cd117ca4277c364bd87bda6
7
- data.tar.gz: 1f821c872aa39b6b6a6bdc7632033ef3872c802ff83a1fca6b4f36c94af34020ccfe62ca0f0081c68f8d760be91e1e3b34cd3b46ebc4123ab08907a003d9493f
6
+ metadata.gz: f10ac460fa44b8750825f46648f54d394b36b9a4bec95b138724dd79f278db4014540bb268fecf9e4a3e719b8eb03da1d398a15203776706643eaa9437ba9fe8
7
+ data.tar.gz: 67185025081f552f608ba0512fce293ef5a731d31fee2b2132e276eda04f85bd135b0f268936209af1e948ff066f537d7834c005a302ca251f75359d7cfeb758
@@ -0,0 +1,10 @@
1
+ # Change Log
2
+ All notable changes to this project will be documented in this file.
3
+
4
+ ## [0.5.6] - 2020-06-xx
5
+
6
+ ### Added
7
+ - this `CHANGELOG.md` file
8
+ - person model: `freemium` core property
9
+ ### Changed
10
+ ### Fixed
@@ -8,7 +8,15 @@ module Ecoportal
8
8
  :show_coming_soon,
9
9
  :show_recently_visited_forms,
10
10
  :show_tasks,
11
- :show_task_bubbles
11
+ :show_task_bubbles,
12
+ :kiosk_enabled,
13
+ :kiosk_workflow_message,
14
+ :kiosk_create_button_label,
15
+ :kiosk_create_button_help,
16
+ :kiosk_return_button_label,
17
+ :kiosk_return_button_help,
18
+ :kiosk_dashboard_button_label,
19
+ :kiosk_dashboard_button_help
12
20
  ].each do |field|
13
21
  define_method(field) do
14
22
  if doc.key?(field)
@@ -8,7 +8,7 @@ module Ecoportal
8
8
  # @attr_reader subordinates [Integer] the number of people this person is supervisor of.
9
9
  # @attr details [PersonDetails, nil] the details of the person or `nil` if missing.
10
10
  class Person < Common::BaseModel
11
- passthrough :id, :external_id, :name, :email, :supervisor_id, :subordinates, :filter_tags
11
+ passthrough :id, :external_id, :name, :email, :supervisor_id, :subordinates, :filter_tags, :freemium
12
12
 
13
13
  class_resolver :person_schema_class, "Ecoportal::API::V1::PersonSchema"
14
14
  class_resolver :person_details_class, "Ecoportal::API::V1::PersonDetails"
@@ -1,5 +1,5 @@
1
1
  module Ecoportal
2
2
  module API
3
- VERSION = "0.5.5"
3
+ VERSION = "0.5.6"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ecoportal-api
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.5
4
+ version: 0.5.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tapio Saarinen
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2019-10-21 00:00:00.000000000 Z
11
+ date: 2020-06-08 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -149,6 +149,7 @@ files:
149
149
  - ".rubocop.yml"
150
150
  - ".travis.yml"
151
151
  - ".yardopts"
152
+ - CHANGELOG.md
152
153
  - Gemfile
153
154
  - Gemfile.lock
154
155
  - LICENSE
@@ -215,7 +216,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
215
216
  - !ruby/object:Gem::Version
216
217
  version: '0'
217
218
  requirements: []
218
- rubygems_version: 3.0.4
219
+ rubygems_version: 3.0.3
219
220
  signing_key:
220
221
  specification_version: 4
221
222
  summary: A collection of helpers for interacting with the ecoPortal MS's various APIs