alula-ruby 1.9.13 → 1.9.15
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 +2 -0
- data/lib/alula/resources/device.rb +0 -7
- data/lib/alula/resources/token_exchange.rb +2 -1
- data/lib/alula/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 3b7739917c002099d1faef9ca3be6c7d816296e5ec598d63373fa12bf4db4955
|
|
4
|
+
data.tar.gz: f23cf0753376e191baaf24c54d42f72ad1ff3324871dc9d40ca6f1a2825bc123
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ec710ab13e373cf6550f6b6ee7e211e75120469f4c9a6b2b310b2eb1d6af8958101f15fb8e79b97dfbdde04952b7b9ed36e5c22e6365f79697a79bac271df033
|
|
7
|
+
data.tar.gz: 5e1f0f774736ffd4e4de8cdf648a1b8eff3392e42d00ace2d87853aabb3b173590cd683d79fed00a38290ddb212d83780a322b1dd7e172ece6d3401bb4af33de
|
data/VERSION.md
CHANGED
|
@@ -2,6 +2,8 @@
|
|
|
2
2
|
|
|
3
3
|
| Version | Date | Description |
|
|
4
4
|
| ------- | ------------| --------------------------------------------------------------------------- |
|
|
5
|
+
| v1.9.15 | 2024-09-02 | Add impersonated_by accessor to the ImpersonatedToken |
|
|
6
|
+
| v1.9.14 | 2024-08-28 | Getting rid of all mention of callerID in device import |
|
|
5
7
|
| v1.9.13 | 2024-08-27 | Updated camera info proc |
|
|
6
8
|
| v1.9.12 | 2024-08-26 | Added get camera info proc |
|
|
7
9
|
| v1.9.11 | 2024-08-22 | Fixing incorrect payload format for set recording config proc |
|
|
@@ -238,13 +238,6 @@ module Alula
|
|
|
238
238
|
creatable_by: [],
|
|
239
239
|
patchable_by: [:system, :station, :dealer, :technician]
|
|
240
240
|
|
|
241
|
-
field :caller_id_phone_number,
|
|
242
|
-
type: :string,
|
|
243
|
-
sortable: false,
|
|
244
|
-
filterable: true,
|
|
245
|
-
creatable_by: [],
|
|
246
|
-
patchable_by: [:system, :station, :dealer, :technician]
|
|
247
|
-
|
|
248
241
|
field :station_account_number,
|
|
249
242
|
type: :string,
|
|
250
243
|
sortable: false,
|
|
@@ -65,7 +65,7 @@ module Alula
|
|
|
65
65
|
|
|
66
66
|
class ImpersonatedToken
|
|
67
67
|
# Simple Oauth::Response reader object
|
|
68
|
-
attr_reader :date_created, :access_token, :expires_in, :expires_at, :refresh_token, :scope
|
|
68
|
+
attr_reader :date_created, :access_token, :expires_in, :expires_at, :refresh_token, :scope, :impersonated_by
|
|
69
69
|
|
|
70
70
|
def initialize(attributes)
|
|
71
71
|
@raw_response = attributes
|
|
@@ -76,6 +76,7 @@ module Alula
|
|
|
76
76
|
@expires_in = (@expires_at - Time.now.utc).to_i
|
|
77
77
|
@refresh_token = attributes['refresh_token']
|
|
78
78
|
@scope = attributes['scope']
|
|
79
|
+
@impersonated_by = attributes['impersonatedBy']
|
|
79
80
|
end
|
|
80
81
|
end
|
|
81
82
|
end
|
data/lib/alula/version.rb
CHANGED
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.9.
|
|
4
|
+
version: 1.9.15
|
|
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-
|
|
11
|
+
date: 2024-09-03 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: httparty
|