alula-ruby 1.10.3 → 1.10.4

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: 95102c59ac7683b2ceff20a0c4eff6aad9539253e56c3e97f5804468a403389f
4
- data.tar.gz: 2377688056ea04e8f4ce1e9f836ac5601c3b9bca1af48610902c5377bbef1aad
3
+ metadata.gz: 057aa305fd3302b139bbcd929efe96b1d6c54318a06511fed226ea9d24cbcf2e
4
+ data.tar.gz: fe9c2192364c8e1c0e2c46705ab818fb52faccb95432a81d80ab42918538be81
5
5
  SHA512:
6
- metadata.gz: aa3eae80f10870a392bf1fbe2f33947b91a7bd72e84052a556f1eac281405dabb500b16bd0371195f0867e08c8a201d51ab5a31d4bff6316aa40346b03816559
7
- data.tar.gz: 78c69fd3c436713c7c36c120fbfcf56dee5924f5b5917275e3dfff4b7131c0a5018314346a8bb687ebd8d26706a8102322832d58ab66aa7e93cf1344617bdcfd
6
+ metadata.gz: 9fa416c03697be2184072ee0b47e64bc35c91d61136e425c02065e5844d96b9269163afbb34ec9869f6bcd0f91d88f7fb2a9fb88ce5917d074d82407f75618cb
7
+ data.tar.gz: 3b08e6ddf6dbf136bdf0f7d6d2030542d7a65564ae73604656d594a09ea405dd31306dbe8be93d1a60e66b76b56729abf4f12d8a5ed27c6d6dbb03b8166c9fcf
data/VERSION.md CHANGED
@@ -2,6 +2,7 @@
2
2
 
3
3
  | Version | Date | Description |
4
4
  | ------- | ------------| --------------------------------------------------------------------------- |
5
+ | v1.10.4 | 2024-10-07 | Adding sd_card_status to camera record, restructured sd status proc accessors |
5
6
  | v1.10.3 | 2024-10-07 | Updating get_sd_status_proc to match video API's update |
6
7
  | v1.10.2 | 2024-09-25 | Add custom filters to get_info_proc |
7
8
  | v1.10.1 | 2024-09-20 | Update User model properties |
@@ -7,14 +7,16 @@
7
7
  module Alula
8
8
  class CameraGetSdStatusProc < Alula::RpcResource
9
9
  class Response < Alula::RpcResponse
10
- attr_accessor :result, :sd_format, :timestamp, :progress
10
+ attr_accessor :result, :sd_card_status
11
11
 
12
12
  def initialize(response)
13
13
  super(response)
14
14
  @result = response.data['result']
15
- @sd_format = @result['format']
16
- @timestamp = @result['datetime']
17
- @progress = @result['progress']['percent']
15
+ @sd_card_status = {
16
+ 'format' => @result['format'],
17
+ 'datetime' => @result['datetime'],
18
+ 'progress' => @result['progress']
19
+ }
18
20
  end
19
21
  end
20
22
 
@@ -65,6 +65,11 @@ module Alula
65
65
  patchable_by: %i[system station dealer user],
66
66
  creatable_by: %i[system station dealer user]
67
67
 
68
+ field :sd_card_status,
69
+ type: :object,
70
+ patchable_by: %i[system station dealer user],
71
+ creatable_by: %i[system station dealer user]
72
+
68
73
  field :customer_id,
69
74
  type: :string,
70
75
  patchable_by: %i[system station dealer user],
data/lib/alula/version.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Alula
4
- VERSION = '1.10.3'
4
+ VERSION = '1.10.4'
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: alula-ruby
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.10.3
4
+ version: 1.10.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Titus Johnson