dji_mqtt_connect 0.1.30.1 → 0.1.30.2

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: ebc14e4ca0bf1f712c0875c20cdbd99b027560336c41a93a25583ddf4aec97aa
4
- data.tar.gz: 6366d350a9f9cc6c82d5d207dee6b81278814543aaa46be40c70264869c2f841
3
+ metadata.gz: 9228a05f0a4255c439cbae85468ea3ef5a52a4dbc2aa4fff1337704035395687
4
+ data.tar.gz: 85440a3169f7c3d471376b95cbec487647d88b2090e79daf4d658ef7f3b8fc77
5
5
  SHA512:
6
- metadata.gz: 40ff2883c6259b1824c98a1d059db98a7ce6d2f05199c869c0ac26c93cf650677b9451a0e88dc7f174ba3a9f05f00c82ad2ea59d8b7c9119fad1b39752cef8fe
7
- data.tar.gz: 6b4d733ea7f5394419408963a9ae86a67ee3289b261140eaeffa57766782da1014c28418bd215d20573092eb606b0a02c66707a74d49ae3c18865d30311606dc
6
+ metadata.gz: c7673ae71b0526afc26edd0bbd896a453a7f2ac724b5a5738cd29bfb14ac3098cae32827216ad330663a5e4033376c139b622c0c3bd74dae579f6d40c035c38d
7
+ data.tar.gz: 2c007f30c60f9eb1089617befb50e749ad302d5ee3bab66bc849fcf81eca57fb6f8c40c082810440b64baacb9a401537f514718a31cb7fb49e462fed71df8dc5
@@ -68,11 +68,11 @@ module DjiMqttConnect
68
68
  attribute? :cameras, Types::Array do
69
69
  attribute :camera_mode, Types::Integer
70
70
 
71
- attribute :liveview_world_region do
72
- attribute :bottom, Types::JSON::Decimal
73
- attribute :left, Types::JSON::Decimal
74
- attribute :right, Types::JSON::Decimal
75
- attribute :top, Types::JSON::Decimal
71
+ attribute? :liveview_world_region do
72
+ attribute :bottom, Types::JSON::Decimal.optional
73
+ attribute :left, Types::JSON::Decimal.optional
74
+ attribute :right, Types::JSON::Decimal.optional
75
+ attribute :top, Types::JSON::Decimal.optional
76
76
  end
77
77
 
78
78
  attribute :payload_index, Types::PayloadIndex
@@ -83,55 +83,55 @@ module DjiMqttConnect
83
83
 
84
84
  attribute? :recording_state, Types::Integer
85
85
 
86
- attribute :remain_photo_num, Types::Integer
86
+ attribute? :remain_photo_num, Types::Integer
87
87
 
88
- attribute :remain_record_duration, Types::Integer
88
+ attribute? :remain_record_duration, Types::Integer
89
89
 
90
- attribute :wide_calibrate_farthest_focus_value, Types::Integer
90
+ attribute? :wide_calibrate_farthest_focus_value, Types::Integer
91
91
 
92
- attribute :wide_calibrate_nearest_focus_value, Types::Integer
92
+ attribute? :wide_calibrate_nearest_focus_value, Types::Integer
93
93
 
94
- attribute :wide_exposure_mode, Types::Integer
94
+ attribute? :wide_exposure_mode, Types::Integer
95
95
 
96
- attribute :wide_exposure_value, Types::Integer
96
+ attribute? :wide_exposure_value, Types::Integer
97
97
 
98
- attribute :wide_focus_mode, Types::Integer
98
+ attribute? :wide_focus_mode, Types::Integer
99
99
 
100
- attribute :wide_focus_state, Types::Integer
100
+ attribute? :wide_focus_state, Types::Integer
101
101
 
102
- attribute :wide_focus_value, Types::Integer
102
+ attribute? :wide_focus_value, Types::Integer
103
103
 
104
- attribute :wide_iso, Types::Integer
104
+ attribute? :wide_iso, Types::Integer
105
105
 
106
- attribute :wide_max_focus_value, Types::Integer
106
+ attribute? :wide_max_focus_value, Types::Integer
107
107
 
108
- attribute :wide_min_focus_value, Types::Integer
108
+ attribute? :wide_min_focus_value, Types::Integer
109
109
 
110
- attribute :wide_shutter_speed, Types::Integer
110
+ attribute? :wide_shutter_speed, Types::Integer
111
111
 
112
- attribute :zoom_calibrate_farthest_focus_value, Types::Integer
112
+ attribute? :zoom_calibrate_farthest_focus_value, Types::Integer
113
113
 
114
- attribute :zoom_calibrate_nearest_focus_value, Types::Integer
114
+ attribute? :zoom_calibrate_nearest_focus_value, Types::Integer
115
115
 
116
- attribute :zoom_exposure_mode, Types::Integer
116
+ attribute? :zoom_exposure_mode, Types::Integer
117
117
 
118
- attribute :zoom_exposure_value, Types::Integer
118
+ attribute? :zoom_exposure_value, Types::Integer
119
119
 
120
- attribute :zoom_factor, Types::JSON::Decimal
120
+ attribute? :zoom_factor, Types::JSON::Decimal
121
121
 
122
- attribute :zoom_focus_mode, Types::Integer
122
+ attribute? :zoom_focus_mode, Types::Integer
123
123
 
124
- attribute :zoom_focus_state, Types::Integer
124
+ attribute? :zoom_focus_state, Types::Integer
125
125
 
126
- attribute :zoom_focus_value, Types::Integer
126
+ attribute? :zoom_focus_value, Types::Integer
127
127
 
128
- attribute :zoom_iso, Types::Integer
128
+ attribute? :zoom_iso, Types::Integer
129
129
 
130
- attribute :zoom_max_focus_value, Types::Integer
130
+ attribute? :zoom_max_focus_value, Types::Integer
131
131
 
132
- attribute :zoom_min_focus_value, Types::Integer
132
+ attribute? :zoom_min_focus_value, Types::Integer
133
133
 
134
- attribute :zoom_shutter_speed, Types::Integer
134
+ attribute? :zoom_shutter_speed, Types::Integer
135
135
  end
136
136
 
137
137
  attribute? :country, Types::String
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module DjiMqttConnect
4
- VERSION = "0.1.30.1"
4
+ VERSION = "0.1.30.2"
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: dji_mqtt_connect
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.30.1
4
+ version: 0.1.30.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Sphere Drones
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2025-10-07 00:00:00.000000000 Z
11
+ date: 2025-10-10 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activesupport