alula-ruby 1.10.2 → 1.10.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 20dfb92c4f24024d650790929e1d4b4ae5e7457be5b635cc0f50dc520637af4b
4
- data.tar.gz: 4323a2e2afa604bb6efa50383af2ca174f08a3bdce6a59ebf47d6ebe17ab29ac
3
+ metadata.gz: 95102c59ac7683b2ceff20a0c4eff6aad9539253e56c3e97f5804468a403389f
4
+ data.tar.gz: 2377688056ea04e8f4ce1e9f836ac5601c3b9bca1af48610902c5377bbef1aad
5
5
  SHA512:
6
- metadata.gz: 64db8044f947e291a657583d0bc6f0fdd9a80a30904a43db39a6dc64acdcceb10a0d23aac9cc0a7461df8647374120e35cdd319e8f5526d180896c6b9382ad6c
7
- data.tar.gz: 434dbb009f19c568438357dcd39a9b8350468488053221b89fda926908d852f164f9ab07ef57eb0217625d5ad58292fab917a2f4d7f5f9e7c18f6cb7844dcd3a
6
+ metadata.gz: aa3eae80f10870a392bf1fbe2f33947b91a7bd72e84052a556f1eac281405dabb500b16bd0371195f0867e08c8a201d51ab5a31d4bff6316aa40346b03816559
7
+ data.tar.gz: 78c69fd3c436713c7c36c120fbfcf56dee5924f5b5917275e3dfff4b7131c0a5018314346a8bb687ebd8d26706a8102322832d58ab66aa7e93cf1344617bdcfd
data/VERSION.md CHANGED
@@ -2,6 +2,7 @@
2
2
 
3
3
  | Version | Date | Description |
4
4
  | ------- | ------------| --------------------------------------------------------------------------- |
5
+ | v1.10.3 | 2024-10-07 | Updating get_sd_status_proc to match video API's update |
5
6
  | v1.10.2 | 2024-09-25 | Add custom filters to get_info_proc |
6
7
  | v1.10.1 | 2024-09-20 | Update User model properties |
7
8
  | v1.10.0 | 2024-09-18 | Add DeviceUser and HelixUser resources |
@@ -7,6 +7,15 @@
7
7
  module Alula
8
8
  class CameraGetSdStatusProc < Alula::RpcResource
9
9
  class Response < Alula::RpcResponse
10
+ attr_accessor :result, :sd_format, :timestamp, :progress
11
+
12
+ def initialize(response)
13
+ super(response)
14
+ @result = response.data['result']
15
+ @sd_format = @result['format']
16
+ @timestamp = @result['datetime']
17
+ @progress = @result['progress']['percent']
18
+ end
10
19
  end
11
20
 
12
21
  def self.call(device_id:)
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.2'
4
+ VERSION = '1.10.3'
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: alula-ruby
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.10.2
4
+ version: 1.10.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Titus Johnson
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2024-09-26 00:00:00.000000000 Z
11
+ date: 2024-10-07 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: httparty