alula-ruby 2.11.0 → 2.12.0

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: 60c69a521077e4b1d365c335cc42cdaceeb402f9434ddea28cb7b3b1116861e7
4
- data.tar.gz: 47290d3b659624b040a05cc4cd96148c3f60ddb3646654f81f3761aa6de2c638
3
+ metadata.gz: 8cfef2fee4669e1d78c8e0cfc65b2e1c33eccb2709cec1d956ffc82510ae1d5d
4
+ data.tar.gz: af667ac85774ee8913b56305455d313658a9f3016070d6271007838be488480a
5
5
  SHA512:
6
- metadata.gz: d0d896bd209f205b7ed172d9d95d526902b10f7e696f120e019fc5679d11a382749073e69786b2f0f3e0bdfddfd7c02ccdc54a6d9e2de2f106d96b4dae81ecd9
7
- data.tar.gz: a3a29122796addea26a4a8b9614fac6c3c6dd72af4a48dbf30146e8d401bf95e5432b7e2fb28822d4e142a47ba4d1a2e35b8ee48b314dcee03d071d9cd2b0620
6
+ metadata.gz: 045aba45c7c51da82cc14012e59f1babd4e156b9d816f667f9aeedc44a01bf452b791b68442426d82de22f49f2da277bff7cd66f24c8cd7bb04acbc042012f5c
7
+ data.tar.gz: 4cb43c7f08d69fa5ec6822b6e24c318dde856f04c0341304951c851ce969c72ec5f4be32e8e6549fe291ec5694c45daa31eba03ca441777f2a6251aa13bcf0b9
data/VERSION.md CHANGED
@@ -2,6 +2,7 @@
2
2
 
3
3
  | Version | Date | Description |
4
4
  | ------- | ------------| --------------------------------------------------------------------------- |
5
+ | v2.12.0 | 2025-03-13 | Add new Eufy Cameras Program IDs |
5
6
  | v2.11.0 | 2025-03-11 | Add a model for Receiver Bind |
6
7
  | v2.10.1 | 2025-03-10 | Update includeCustomerIP field's type for Receiver model |
7
8
  | v2.10.0 | 2025-02-27 | Add a model for Receiver |
@@ -155,7 +156,7 @@
155
156
  | v0.7.0 | 2019-11-11 | Implements the start of RPC resources, beginning with Device Registration, Unregistration, Assignment, Unassignment, and Dealer Device Stats |
156
157
  | v0.6.0 | 2019-10-28 | Implements related model loading when fetching a single model, or loading a collection. Call `.includes(:some_model, :othermodel)` in the filter chain, and if present the related models will be available after loading. |
157
158
  | v0.5.1 | 2019-10-21 | Whitelists the EULA as patchable for uType 96 |
158
- | v0.5.0 | 2019-10-10 | Inverts how readers & writers are set. <ol><li>Model metadata is now the be-all end-all of defining how an attribute becomes available.</li><li>Readers & writers are set during object initialization. We no longer throw `NoMethodAvailable` errors when attempting to write to an attribute that exists, but your uTYpe doesn't allow writing to. Instead we will accept the write, but continue to exclude that attribute from being sent to the API</li><li>This change fixes an issue where if the API sent down a model that was missing an attribute, we would run into `NoMethodErrors` when rendering the model. Since I don't want to safe-access check every single API model property, having concrete models is the way to go.</li></ol>)
159
+ | v0.5.0 | 2019-10-10 | Inverts how readers & writers are set. <ol><li>Model metadata is now the be-all end-all of defining how an attribute becomes available.</li><li>Readers & writers are set during object initialization. We no longer throw `NoMethodAvailable` errors when attempting to write to an attribute that exists, but your uTYpe doesn't allow writing to. Instead we will accept the write, but continue to exclude that attribute from being sent to the API</li><li>This change fixes an issue where if the API sent down a model that was missing an attribute, we would run into `NoMethodErrors` when rendering the model. Since I don't want to safe-access check every single API model property, having concrete models is the way to go.</li></ol>)
159
160
  | v0.4.3 | 2019-10-3 | Adds timezone field to Dealer resource |
160
161
  | v0.4.2 | 2019-10-3 | Excludes fields not annotated on the model with the `fields` property. This fixes an issue where a password hash would be used as the basis for a new user password when system users saved a user model. |
161
162
  | v0.4.1 | 2019-10-2 | Handles unknown/empty errors from the API |
@@ -170,4 +171,4 @@
170
171
  | v0.1.8 | 2019-8-9 | Bugfix, switches api_root in Alula::Client to api_url |
171
172
  | v0.1.7 | 2019-8-8 | Adds RequestStore as a thread-safe storage system for tokens, auth keys, and debug info |
172
173
  | v0.1.6 | 2019-8-7 | Added Dealers and Branding, bug with non-patchable attributes, client grant |
173
- | v0.1.0 | 2019-7-25 | Initial release, GET and POST devices, dealer_addresses, user, self |
174
+ | v0.1.0 | 2019-7-25 | Initial release, GET and POST devices, dealer_addresses, user, self |
@@ -46,7 +46,9 @@ module Alula
46
46
  3087,
47
47
  3088,
48
48
  3089,
49
- 3091
49
+ 3091,
50
+ 3092,
51
+ 3093,
50
52
  ].freeze
51
53
 
52
54
  XIP_FAMILY_PROGRAM_IDS = [
data/lib/alula/version.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Alula
4
- VERSION = '2.11.0'
4
+ VERSION = '2.12.0'
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: 2.11.0
4
+ version: 2.12.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Titus Johnson
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2025-03-12 00:00:00.000000000 Z
11
+ date: 2025-03-13 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: httparty