alula-ruby 0.65.0 → 0.66.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/.github/workflows/gem-push.yml +3 -3
- data/VERSION.md +2 -1
- data/lib/alula/resources/receiver_disabled.rb +60 -0
- data/lib/alula/version.rb +1 -1
- data/lib/alula.rb +2 -0
- metadata +3 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: c4cbe39c4e2fa60837e68df662197c6a72ddeca6aaa32007ae2197771ef31867
|
|
4
|
+
data.tar.gz: 326e36d8245bbf414b20d063cd1c6d18ab356a3ddb61675adba445ec60bfaa0f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 5c2ff625c820cc614528d85fe6dd4946c0ab12be56d55bbc03cf90ad5ebe96ab8008de2e5cf4bc861dff2050736b90883eb01b242788e04736c25225bfab4e05
|
|
7
|
+
data.tar.gz: 49a97ceae85c37b107c63a4f82ac0c1eb023aa10d487b04b90a501d97a9152a9038d971a36ab23bb10ddd0c7eeddbe1883d2d7c376d7cd5134c2519d145dc0da
|
|
@@ -2,7 +2,7 @@ name: Ruby Gem
|
|
|
2
2
|
|
|
3
3
|
on:
|
|
4
4
|
push:
|
|
5
|
-
branches: [ main ]
|
|
5
|
+
branches: [ main, github-action-update ]
|
|
6
6
|
|
|
7
7
|
jobs:
|
|
8
8
|
build:
|
|
@@ -15,9 +15,9 @@ jobs:
|
|
|
15
15
|
steps:
|
|
16
16
|
- uses: actions/checkout@v2
|
|
17
17
|
- name: Set up Ruby 2.6
|
|
18
|
-
uses:
|
|
18
|
+
uses: ruby/setup-ruby@v1
|
|
19
19
|
with:
|
|
20
|
-
ruby-version: 2.6
|
|
20
|
+
ruby-version: '2.6'
|
|
21
21
|
|
|
22
22
|
- name: Publish to GPR
|
|
23
23
|
run: |
|
data/VERSION.md
CHANGED
|
@@ -96,4 +96,5 @@
|
|
|
96
96
|
| v0.62.0 | 2022-08-19 | Remove Admin User resource map |
|
|
97
97
|
| v0.63.0 | 2022-08-25 | Gateway Error |
|
|
98
98
|
| v0.64.0 | 2022-09-28 | Add procedures for unlocking and locking |
|
|
99
|
-
| v0.65.0 | 2022-
|
|
99
|
+
| v0.65.0 | 2022-11-08 | OAuth Client model |
|
|
100
|
+
| v0.66.0 | 2022-11-16 | Receivers Disabled |
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
module Alula
|
|
2
|
+
class ReceiverDisabled < Alula::RestResource
|
|
3
|
+
extend Alula::ResourceAttributes
|
|
4
|
+
extend Alula::ApiOperations::List
|
|
5
|
+
extend Alula::ApiOperations::Request
|
|
6
|
+
extend Alula::ApiOperations::Save
|
|
7
|
+
extend Alula::ApiOperations::Delete
|
|
8
|
+
|
|
9
|
+
# You should update this to be a slash-separated, literal path to the resource
|
|
10
|
+
# without the prefix /api/v1 or the suffix of an ID
|
|
11
|
+
resource_path 'receivers/disabled'
|
|
12
|
+
type 'receivers-disabled'
|
|
13
|
+
|
|
14
|
+
# Relationships
|
|
15
|
+
# None
|
|
16
|
+
|
|
17
|
+
# Resource Fields
|
|
18
|
+
field :id,
|
|
19
|
+
type: :string,
|
|
20
|
+
sortable: false,
|
|
21
|
+
filterable: false,
|
|
22
|
+
creatable_by: [],
|
|
23
|
+
patchable_by: []
|
|
24
|
+
|
|
25
|
+
field :receiver_path,
|
|
26
|
+
type: :string,
|
|
27
|
+
sortable: true,
|
|
28
|
+
filterable: true,
|
|
29
|
+
creatable_by: [:system],
|
|
30
|
+
patchable_by: [:system]
|
|
31
|
+
|
|
32
|
+
field :caller_phone_number,
|
|
33
|
+
type: :string,
|
|
34
|
+
sortable: true,
|
|
35
|
+
filterable: true,
|
|
36
|
+
creatable_by: [:system],
|
|
37
|
+
patchable_by: [:system]
|
|
38
|
+
|
|
39
|
+
field :enable,
|
|
40
|
+
type: :boolean,
|
|
41
|
+
sortable: true,
|
|
42
|
+
filterable: true,
|
|
43
|
+
creatable_by: [:system],
|
|
44
|
+
patchable_by: [:system]
|
|
45
|
+
|
|
46
|
+
field :date_created,
|
|
47
|
+
type: :date,
|
|
48
|
+
sortable: false,
|
|
49
|
+
filterable: false,
|
|
50
|
+
creatable_by: [],
|
|
51
|
+
patchable_by: []
|
|
52
|
+
|
|
53
|
+
field :date_modified,
|
|
54
|
+
type: :date,
|
|
55
|
+
sortable: true,
|
|
56
|
+
filterable: false,
|
|
57
|
+
creatable_by: [],
|
|
58
|
+
patchable_by: []
|
|
59
|
+
end
|
|
60
|
+
end
|
data/lib/alula/version.rb
CHANGED
data/lib/alula.rb
CHANGED
|
@@ -54,6 +54,7 @@ require_relative 'alula/resources/dealer_branding'
|
|
|
54
54
|
require_relative 'alula/resources/token_exchange'
|
|
55
55
|
require_relative 'alula/resources/receiver_connection'
|
|
56
56
|
require_relative 'alula/resources/receiver_group'
|
|
57
|
+
require_relative 'alula/resources/receiver_disabled'
|
|
57
58
|
require_relative 'alula/resources/revision'
|
|
58
59
|
require_relative 'alula/resources/station'
|
|
59
60
|
require_relative 'alula/resources/oauth_client'
|
|
@@ -118,6 +119,7 @@ module Alula
|
|
|
118
119
|
Alula::Dealer,
|
|
119
120
|
Alula::DealerBranding,
|
|
120
121
|
Alula::ReceiverGroup,
|
|
122
|
+
Alula::ReceiverDisabled,
|
|
121
123
|
Alula::Station,
|
|
122
124
|
Alula::DealerAccountTransfer,
|
|
123
125
|
Alula::FeaturePlan,
|
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: 0.
|
|
4
|
+
version: 0.66.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: 2022-11-
|
|
11
|
+
date: 2022-11-17 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: httparty
|
|
@@ -258,6 +258,7 @@ files:
|
|
|
258
258
|
- lib/alula/resources/feature_price.rb
|
|
259
259
|
- lib/alula/resources/oauth_client.rb
|
|
260
260
|
- lib/alula/resources/receiver_connection.rb
|
|
261
|
+
- lib/alula/resources/receiver_disabled.rb
|
|
261
262
|
- lib/alula/resources/receiver_group.rb
|
|
262
263
|
- lib/alula/resources/revision.rb
|
|
263
264
|
- lib/alula/resources/self.rb
|