lws 7.4.0 → 7.5.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: 13d271f3eac0482c5f1d67079d21237d8c47b1c26c9d7f9c8a61dfcf600923b4
4
- data.tar.gz: ead25aa00d1227afaef9fcd4218e4080d131d954d68a9a6eb9b8e84880895137
3
+ metadata.gz: 8d67d47eca79efdc3503e0887370376a318dd9e718849a4edfc8b43bfea85f22
4
+ data.tar.gz: e25029a0f216ed27a30874d032c7b0ff25652e7ef1649eef1066edbc4e9fd120
5
5
  SHA512:
6
- metadata.gz: a4f8bb8d7637c23e4033e05aeb3ec214aaba0b3b393949821149eba528e8fe10af73d844976ff4149328c59e382bf67da240ce99b755e2bdc34312d30761d8c9
7
- data.tar.gz: 62a449ef8d72b5f889a9839a6addaaeb0aeae25167a637874f281d067c09ce8bda9b44021116fa78da7359e5a241b70d5fed81fa5802449184335eac3582691b
6
+ metadata.gz: 12629ffd1da6fb9282cc4972395f9f00c71f2defdddf06251893222ba5271614dab3ab7eac8167b137f5a56834cd9655ff99466c999eaa292571d94ea1b7cc1d
7
+ data.tar.gz: 1125d8d47a848fb64c42011a76acd98491643cd6a2fe66fd7a41eb0f3e0ed6bfa299650b0f0aca1f9d06270be7e448e0193d89afecab4e6f212e3cde2565241f
@@ -710,6 +710,10 @@ module LWS::DigitalSignage
710
710
  # @return [String] the customizable attribute/property name
711
711
  attribute :attr
712
712
 
713
+ # @!attribute description
714
+ # @return [String] the customizable attribute/property description
715
+ attribute :description
716
+
713
717
  # @!attribute element
714
718
  # @return [Layout::element] the layout element the customizable property
715
719
  # is for
@@ -719,9 +723,13 @@ module LWS::DigitalSignage
719
723
  # @return [Integer] the ID of the layout element the customizable is for
720
724
  attribute :element_id
721
725
 
722
- # @!attribute hint_message
723
- # @return [String] the customizable attribute/property value
724
- attribute :hint_message
726
+ # @!attribute help
727
+ # @return [String] the customizable attribute/property help text
728
+ attribute :help
729
+
730
+ # @!attribute placeholder
731
+ # @return [String] the customizable attribute/property placholder text
732
+ attribute :placeholder
725
733
 
726
734
  # @!attribute presets
727
735
  # This is a list of mappings of the preset label (key +"label"+) to the
@@ -730,6 +738,14 @@ module LWS::DigitalSignage
730
738
  # @return [Array<Hash{String => String}>] the presets for attribute values
731
739
  attribute :presets
732
740
 
741
+ # @!attribute required
742
+ # @return [String] whether the customizable attribute/property is required
743
+ attribute :required
744
+
745
+ # @!attribute title
746
+ # @return [String] the customizable attribute/property title
747
+ attribute :title
748
+
733
749
  # @!attribute uuid
734
750
  # @return [String] the UUID of the customizable attribute/property
735
751
  attribute :uuid
@@ -953,6 +969,11 @@ module LWS::DigitalSignage
953
969
  # @return [Boolean] whether the player is being serviced/is in service
954
970
  attribute :service
955
971
 
972
+ # @!attribute service_reason
973
+ # @return [String, nil] the reason the player is being serviced/is in
974
+ # service
975
+ attribute :service_reason
976
+
956
977
  # @!attribute status [r]
957
978
  # @return ["unknown", "good", "warning", "bad"] the player status
958
979
  attribute :status
@@ -522,6 +522,9 @@ module LWS::Resource
522
522
  # @return [String] the description of the folder
523
523
  attribute :description
524
524
 
525
+ # @!attribute email [r]
526
+ # @return [String] the email adress of the folder
527
+
525
528
  # @!attribute folders
526
529
  # @return [Array<Folder>] the folders contained in the folder
527
530
  has_many :folders
data/lib/lws/version.rb CHANGED
@@ -14,6 +14,6 @@ module LWS
14
14
 
15
15
  # The LWS library version.
16
16
  # @note The major and minor version parts match the LWS API version!
17
- VERSION = "7.4.0".freeze
17
+ VERSION = "7.5.1".freeze
18
18
 
19
19
  end
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.4.0
4
+ version: 7.5.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: 2021-10-21 00:00:00.000000000 Z
11
+ date: 2022-03-02 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: faraday-http-cache
@@ -110,16 +110,22 @@ dependencies:
110
110
  name: spyke
111
111
  requirement: !ruby/object:Gem::Requirement
112
112
  requirements:
113
- - - "~>"
113
+ - - ">="
114
114
  - !ruby/object:Gem::Version
115
115
  version: '5.3'
116
+ - - "<"
117
+ - !ruby/object:Gem::Version
118
+ version: '7'
116
119
  type: :runtime
117
120
  prerelease: false
118
121
  version_requirements: !ruby/object:Gem::Requirement
119
122
  requirements:
120
- - - "~>"
123
+ - - ">="
121
124
  - !ruby/object:Gem::Version
122
125
  version: '5.3'
126
+ - - "<"
127
+ - !ruby/object:Gem::Version
128
+ version: '7'
123
129
  - !ruby/object:Gem::Dependency
124
130
  name: webmock
125
131
  requirement: !ruby/object:Gem::Requirement