alula-ruby 2.33.0 → 2.35.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: 31daa0fd131304d5f8c858b4bc4918c051c4d1a1d7a21d0aa1ebaa627cf10af1
4
- data.tar.gz: f32fde1b206ba13b62bcd8e125505bded5364c9f90b38a951fe364013d95c53e
3
+ metadata.gz: 0fa474905fec61ea6d32a40d599ec2292441fc12f0fbaf208b6ea14c77af062f
4
+ data.tar.gz: f78955295849252bbee750faf3544736b6df920da138840596f60a984989d018
5
5
  SHA512:
6
- metadata.gz: bdf84b81c4560d36b051477d8db8683fb1621f3ad220318cdd2cda3874380845688744b56c72ddb06c7cbe3702ea0475b3fe90c6294045687e9d50a513e9269c
7
- data.tar.gz: 9681ddcb9749ac4a2491be164e8ac002f72b34eb47952bf738d6ce26adf99c19d3de4634d48cb27db1a4049f9a48f83eb044ee7782d760908de67e305dfa7a5d
6
+ metadata.gz: cdef6e2bc895a47d260f04914c49de9b011e9ed663578f51c094a9338af3a2dc8276e98df65e403c261201a3d1b30daa29edcd3b0961029f92ba31d98da79059
7
+ data.tar.gz: 396176d45119000802685bd8c10db0794d06779615264a719a03c0d66f4cacc2a4eeb28cad55bc6fa38e481bcc9b201a10fba0599111c1d50efdc1a7ea88ca43
data/VERSION.md CHANGED
@@ -2,6 +2,8 @@
2
2
 
3
3
  | Version | Date | Description |
4
4
  | ------- | ------------| --------------------------------------------------------------------------- |
5
+ | v2.35.0 | 2026-05-21 | Add acl field to Receiver model (M2M-TCP receivers) |
6
+ | v2.34.0 | 2026-05-04 | Add CONNECT-XiP-INTL (program ID 49) to XiP family and Connect device program IDs |
5
7
  | v2.33.0 | 2026-03-02 | Add a new method `Alula::Oauth#authenticate_with_code` for handling grants of type `authorization_code` |
6
8
  | 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
9
  | 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 # Connect-FLX-DUAL-Z
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 # C+Flex-Dual-Z
64
+ 47, # C+Flex-Dual-Z
65
+ 49 # CONNECT-XiP-INTL
64
66
  ].freeze
65
67
 
66
68
  def connect_device?
@@ -132,6 +132,13 @@ module Alula
132
132
  creatable_by: [:system, :station, :dealer],
133
133
  patchable_by: [:system, :station, :dealer]
134
134
 
135
+ field :acl,
136
+ type: :string,
137
+ sortable: false,
138
+ filterable: false,
139
+ creatable_by: [:system, :station, :dealer],
140
+ patchable_by: [:system, :station, :dealer]
141
+
135
142
  field :remote_central_station_id,
136
143
  type: :string,
137
144
  sortable: false,
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.33.0'
4
+ VERSION = '2.35.0'
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: 2.33.0
4
+ version: 2.35.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Titus Johnson