lws 7.0.0 → 7.0.1
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/lib/lws/apps/digital_signage.rb +9 -1
- data/lib/lws/apps/presence.rb +1 -1
- data/lib/lws/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: df2e6e2da0a65bfe4f58710cd8d2e126d84b11a7d69032f8770019e9818b3c81
|
|
4
|
+
data.tar.gz: 381ab842c1653517ccafeefe6923d62559816e0546362b90a3803dffac91bc0c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: fcee2864386b9c6e6c8d0a0a205e284f30ef40be1063079158be5618a8fe8e6bbc5b3d676f2fd12e39857bb3763d604efebea3c8477d80f9af6220dc6dc53b15
|
|
7
|
+
data.tar.gz: fd4da59a819e77accca4ade09513c1e5b2f60005173cd9372fb6e6172ceae5a4a5d3d43d2e70579372e43833b85e3091ca46e8b2ae8eae209321f359f5e7e8b9
|
|
@@ -512,6 +512,10 @@ module LWS::DigitalSignage
|
|
|
512
512
|
# @return [Boolean] whether the layout is a favorite for the current account
|
|
513
513
|
attribute :favorite
|
|
514
514
|
|
|
515
|
+
# @!attribute kind
|
|
516
|
+
# @return ["marquee", "slide"] the kind of the layout
|
|
517
|
+
attribute :kind
|
|
518
|
+
|
|
515
519
|
# @!attribute name
|
|
516
520
|
# @return [String] the name of the layout
|
|
517
521
|
attribute :name
|
|
@@ -755,6 +759,10 @@ module LWS::DigitalSignage
|
|
|
755
759
|
# @return [Array<Player::Feedback>] the feedbacks for the player
|
|
756
760
|
has_many :feedbacks, class_name: "LWS::DigitalSignage::Player::Feedback"
|
|
757
761
|
|
|
762
|
+
# @!attribute [r] hostname
|
|
763
|
+
# @return [String] the hostname used by the player (for DHCP for example)
|
|
764
|
+
attribute :hostname
|
|
765
|
+
|
|
758
766
|
# @!attribute logs
|
|
759
767
|
# @return [Array<Player::Log>] the logs of the player
|
|
760
768
|
has_many :logs, class_name: "LWS::DigitalSignage::Player::Log"
|
|
@@ -770,7 +778,7 @@ module LWS::DigitalSignage
|
|
|
770
778
|
# @!attribute model
|
|
771
779
|
# @return [Player::Model] the model of the player
|
|
772
780
|
belongs_to :model, class_name: "LWS::DigitalSignage::Player::Model",
|
|
773
|
-
|
|
781
|
+
uri: "player/models/:id"
|
|
774
782
|
|
|
775
783
|
# @!attribute model_id
|
|
776
784
|
# @return [Integer] the ID of the model of the player
|
data/lib/lws/apps/presence.rb
CHANGED
|
@@ -129,7 +129,7 @@ module LWS::Presence
|
|
|
129
129
|
attribute :capacity_used_precentage_tree
|
|
130
130
|
|
|
131
131
|
# @!attribute checkin_status
|
|
132
|
-
# @return ["available", "busy", "away",
|
|
132
|
+
# @return ["available", "busy", "away", nil]
|
|
133
133
|
# the presence status to set people to when checking in
|
|
134
134
|
attribute :checkin_status
|
|
135
135
|
|
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.0.
|
|
4
|
+
version: 7.0.1
|
|
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-02-
|
|
11
|
+
date: 2020-02-10 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: faraday_middleware
|