alula-ruby 2.33.0 → 2.34.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 +4 -4
- data/VERSION.md +1 -0
- data/lib/alula/helpers/device_helpers/program_id_helper.rb +4 -2
- data/lib/alula/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: b83ebcec265a85695b8e1a84d7961ba8f67972bde1ba661fda5f2ea3d0576113
|
|
4
|
+
data.tar.gz: 00621eaa3a8481aa2b526a4b8fd6e5fdc63e5662e8f5a455f329f5ef86e46df9
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 9e4a8db28f7766bdcda562fb27d77f75c97d4f642c096d2a167ff417d08e848ae7bf0e0042ff71f45e7ba0ec0163481c8c434daec2e9eb821e3d5a68eb890490
|
|
7
|
+
data.tar.gz: 9f0cb4409c0b81afbd25e25bc14c7363244ce2cf0d95065311271bbcd74c4f92c05f1f0dbc3a23fd94925a383ab1df313cd8e60581caccdb936ae2af83483648
|
data/VERSION.md
CHANGED
|
@@ -2,6 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
| Version | Date | Description |
|
|
4
4
|
| ------- | ------------| --------------------------------------------------------------------------- |
|
|
5
|
+
| v2.34.0 | 2026-05-04 | Add CONNECT-XiP-INTL (program ID 49) to XiP family and Connect device program IDs |
|
|
5
6
|
| v2.33.0 | 2026-03-02 | Add a new method `Alula::Oauth#authenticate_with_code` for handling grants of type `authorization_code` |
|
|
6
7
|
| v2.32.0 | 2026-01-30 | Add a new `Alula::Dcp::Config::ClearStaged` class that calls the DCP API endpoint to clear all staged configuration data for a device. |
|
|
7
8
|
| v2.31.0 | 2025-12-19 | Adds managed_by and sso_access_level properties in Dealer |
|
|
@@ -21,7 +21,8 @@ module Alula
|
|
|
21
21
|
44, # WTP-02 (is ALDER-WTP_WIFI)
|
|
22
22
|
45, # Connect-FLX-Z
|
|
23
23
|
46, # Connect-FLX-DUAL
|
|
24
|
-
47
|
|
24
|
+
47, # Connect-FLX-DUAL-Z
|
|
25
|
+
49 # CONNECT-XiP-INTL
|
|
25
26
|
].freeze
|
|
26
27
|
|
|
27
28
|
GSM_PROGRAM_IDS = [
|
|
@@ -60,7 +61,8 @@ module Alula
|
|
|
60
61
|
42, # C+Pro-SC
|
|
61
62
|
45, # C+Flex-Z
|
|
62
63
|
46, # C+Flex-Dual
|
|
63
|
-
47
|
|
64
|
+
47, # C+Flex-Dual-Z
|
|
65
|
+
49 # CONNECT-XiP-INTL
|
|
64
66
|
].freeze
|
|
65
67
|
|
|
66
68
|
def connect_device?
|
data/lib/alula/version.rb
CHANGED