alula-ruby 1.2.0 → 1.2.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: e5b52a039a55a975a9e384c3bcee4396747836b75a5a128c016afdc4e0da5e55
4
- data.tar.gz: 6a687418c9664f3a3500edd4fdd6c0502519a1656d525a19374db77a6103b81d
3
+ metadata.gz: 76e3fb4e97de46f4bb42b736383e362e55f81efb69fe48508951851b757729ee
4
+ data.tar.gz: 36b13f4a52d22c64499e91b0fcd97e9c063e1cd66616b130ce0d898813b2b62d
5
5
  SHA512:
6
- metadata.gz: c8118a0de2222644c1cdd47fcde599deda77025608dfc65200e0bdfe16b4b744c1cf08fc81ae154c797bb3e856a2914627fa0fe5bae327e29a949e1466014fda
7
- data.tar.gz: ee50bc1b597d15747c9761fc090a3a213ea8867e2a9102c5b149ff7de977f61b8a41a0f617d0a5d29aebb8bbbe77d5c38922ef95d062ec7970a9b1a3fae0493a
6
+ metadata.gz: 7bab4b970eb6724492c4cea1cbc5f6f9ce0c7726435debabf8f604dd8c0dc8bf9a89068ba3f4b3670b882f3e7e8d85dfa2a96474756bb2a1f08e8718cc1be73c
7
+ data.tar.gz: 9ad8f87a40c10a46a04d704bd70ffdcc3066b8c61f1c00bcea679fc4e2c647f23157bc8646c17b8e47cf19aefc8d537bb37c10ec7f2352f8871ab3048e8465e8
data/VERSION.md CHANGED
@@ -2,6 +2,8 @@
2
2
 
3
3
  | Version | Date | Description |
4
4
  | ------- | --------- | --------------------------------------------------------------------------- |
5
+ | v1.2.1 | 2023-08-17 | Add new device patchable field `uiSettings` |
6
+ | v1.2.1 | 2023-08-17 | Fix types on OAuth clients |
5
7
  | v1.2.0 | 2023-08-10 | Support objects and saving to objects natively |
6
8
  | v1.1.0 | 2023-08-01 | Fixes Ruby 3 argument errors in filter builder. Gets test suite running again in circle |
7
9
  | v1.0.2 | 2023-05-30 | Includes v0.69.11 - fix for a field not being underscoreable |
@@ -115,4 +117,4 @@
115
117
  | v0.1.8 | 2019-8-9 | Bugfix, switches api_root in Alula::Client to api_url |
116
118
  | v0.1.7 | 2019-8-8 | Adds RequestStore as a thread-safe storage system for tokens, auth keys, and debug info |
117
119
  | v0.1.6 | 2019-8-7 | Added Dealers and Branding, bug with non-patchable attributes, client grant |
118
- | v0.1.0 | 2019-7-25 | Initial release, GET and POST devices, dealer_addresses, user, self |
120
+ | v0.1.0 | 2019-7-25 | Initial release, GET and POST devices, dealer_addresses, user, self |
@@ -691,5 +691,12 @@ module Alula
691
691
  creatable_by: [],
692
692
  patchable_by: []
693
693
 
694
+ field :uiSettings,
695
+ type: :string,
696
+ sortable: false,
697
+ filterable: false,
698
+ creatable_by: [],
699
+ patchable_by: [:system]
700
+
694
701
  end
695
702
  end
@@ -48,14 +48,14 @@ module Alula
48
48
  patchable_by: [:system]
49
49
 
50
50
  field :scope,
51
- type: :date,
51
+ type: :string,
52
52
  sortable: false,
53
53
  filterable: false,
54
54
  creatable_by: [:system],
55
55
  patchable_by: [:system]
56
56
 
57
57
  field :user_id,
58
- type: :date,
58
+ type: :string,
59
59
  sortable: false,
60
60
  filterable: true,
61
61
  creatable_by: [:system],
data/lib/alula/version.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Alula
4
- VERSION = '1.2.0'
4
+ VERSION = '1.2.2'
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: 1.2.0
4
+ version: 1.2.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Titus Johnson
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2023-08-11 00:00:00.000000000 Z
11
+ date: 2023-08-31 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: httparty