lws 7.2.2 → 7.2.3
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 +4 -4
- data/bin/lwsconsole +1 -0
- data/lib/lws/apps/digital_signage.rb +10 -2
- data/lib/lws/apps/presence.rb +16 -12
- data/lib/lws/version.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: ddef464d750e49d235fc28c11f209e9ac3fe6c8abb0ae605bbf5c3f61867e895
|
|
4
|
+
data.tar.gz: 20194be723ed5c15810a699723bef6d5de54562642bd7e25e80314cf92ed38a6
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 6ec11d0269f6c9565832321d27548ff22565f7afc5361317be9862eb286c9681ee2268b70145dffa8f51ec35d71765087a67347ea216c85d4e590146d1bfdedb
|
|
7
|
+
data.tar.gz: 0c1ab92859fe42a6a6fd3f7be9cdb7d3edb0efd338890de8517bc4cc537552f1c5f8de1b0d53616e3098a2b89db94b7ecf7258a83fae6804c1d47e9c1e9aa6f1
|
data/bin/lwsconsole
CHANGED
|
@@ -653,6 +653,12 @@ module LWS::DigitalSignage
|
|
|
653
653
|
# of the layout element
|
|
654
654
|
has_many :customizables, class_name: "LWS::DigitalSignage::Layout::Element::Customizable"
|
|
655
655
|
|
|
656
|
+
# @!attribute definition
|
|
657
|
+
# @note This attribute is only available if the token is of an account
|
|
658
|
+
# with sysadmin permissions
|
|
659
|
+
# @return [Hash] the (plugin) component definition of the layout element
|
|
660
|
+
attribute :definition
|
|
661
|
+
|
|
656
662
|
# @!attribute index
|
|
657
663
|
# @return [Integer, nil] the index of the element within the list of
|
|
658
664
|
# layout elements of the associated layout version
|
|
@@ -768,8 +774,10 @@ module LWS::DigitalSignage
|
|
|
768
774
|
|
|
769
775
|
# @!attribute archive_url
|
|
770
776
|
# @note
|
|
771
|
-
# To be able retrieve
|
|
772
|
-
# in the HTTP request headers!
|
|
777
|
+
# To be able retrieve the archive, the token needs to be passed via
|
|
778
|
+
# +X-Token+ in the HTTP request headers!
|
|
779
|
+
# @note This attribute is only available if the token is of an account
|
|
780
|
+
# with sysadmin permissions
|
|
773
781
|
# @return [String, nil] the URL of the archive/layout pack of the layout
|
|
774
782
|
# version (if accessible)
|
|
775
783
|
attribute :archive_url
|
data/lib/lws/apps/presence.rb
CHANGED
|
@@ -84,7 +84,7 @@ module LWS::Presence
|
|
|
84
84
|
attribute :title
|
|
85
85
|
|
|
86
86
|
# @!attribute uuid
|
|
87
|
-
# @return [String] the UUID of the
|
|
87
|
+
# @return [String] the UUID of the appointment
|
|
88
88
|
attribute :uuid
|
|
89
89
|
end
|
|
90
90
|
|
|
@@ -174,11 +174,11 @@ module LWS::Presence
|
|
|
174
174
|
attribute :checkin_status
|
|
175
175
|
|
|
176
176
|
# @!attribute checkout_alter_status
|
|
177
|
-
# @return ["available", "
|
|
178
|
-
# "
|
|
179
|
-
# "
|
|
180
|
-
# "
|
|
181
|
-
# location to when someone checks out
|
|
177
|
+
# @return ["available", "maintenance_cleaning", "maintenance_technical",
|
|
178
|
+
# "reserved", "unavailable", "permanent_available",
|
|
179
|
+
# "permanent_maintenance_cleaning", "permanent_maintenance_technical",
|
|
180
|
+
# "permanent_reserved", "permanent_unavailable", nil] the status to set
|
|
181
|
+
# the location to when someone checks out
|
|
182
182
|
attribute :checkout_alter_status
|
|
183
183
|
|
|
184
184
|
# @!attribute checkout_location
|
|
@@ -216,6 +216,10 @@ module LWS::Presence
|
|
|
216
216
|
# @return [String, nil] the URL of the image of the location
|
|
217
217
|
attribute :image_url
|
|
218
218
|
|
|
219
|
+
# @!attribute import_ref
|
|
220
|
+
# @return [String, nil] reference of the location in the remote database
|
|
221
|
+
attribute :import_ref
|
|
222
|
+
|
|
219
223
|
# @!attribute journals
|
|
220
224
|
# @return [Array<Journal>] the journal (entries) associated with the location
|
|
221
225
|
has_many :journals, class: "LWS::Presence::Journal"
|
|
@@ -285,10 +289,11 @@ module LWS::Presence
|
|
|
285
289
|
has_many :readers
|
|
286
290
|
|
|
287
291
|
# @!attribute status
|
|
288
|
-
# @return ["available", "
|
|
289
|
-
# "maintenance_technical", "
|
|
290
|
-
# "
|
|
291
|
-
# "permanent_maintenance_technical"
|
|
292
|
+
# @return ["available", "maintenance_cleaning",
|
|
293
|
+
# "maintenance_technical", "reserved", "unavailable",
|
|
294
|
+
# "permanent_available", "permanent_maintenance_cleaning",
|
|
295
|
+
# "permanent_maintenance_technical", "permanent_reserved",
|
|
296
|
+
# "permanent_unavailable" ] the status of the location
|
|
292
297
|
attribute :status
|
|
293
298
|
|
|
294
299
|
# @!attribute time_zone
|
|
@@ -503,8 +508,7 @@ module LWS::Presence
|
|
|
503
508
|
attribute :extra_info
|
|
504
509
|
|
|
505
510
|
# @!attribute import_ref
|
|
506
|
-
# @return [String, nil] reference
|
|
507
|
-
# database
|
|
511
|
+
# @return [String, nil] reference of the person in the remote database
|
|
508
512
|
attribute :import_ref
|
|
509
513
|
|
|
510
514
|
# @!attribute kind
|
data/lib/lws/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: lws
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 7.2.
|
|
4
|
+
version: 7.2.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- LeftClick B.V.
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2020-
|
|
11
|
+
date: 2020-12-02 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: faraday-http-cache
|
|
@@ -140,14 +140,14 @@ dependencies:
|
|
|
140
140
|
requirements:
|
|
141
141
|
- - "~>"
|
|
142
142
|
- !ruby/object:Gem::Version
|
|
143
|
-
version: '1
|
|
143
|
+
version: '2.1'
|
|
144
144
|
type: :development
|
|
145
145
|
prerelease: false
|
|
146
146
|
version_requirements: !ruby/object:Gem::Requirement
|
|
147
147
|
requirements:
|
|
148
148
|
- - "~>"
|
|
149
149
|
- !ruby/object:Gem::Version
|
|
150
|
-
version: '1
|
|
150
|
+
version: '2.1'
|
|
151
151
|
- !ruby/object:Gem::Dependency
|
|
152
152
|
name: minitest
|
|
153
153
|
requirement: !ruby/object:Gem::Requirement
|