alula-ruby 0.69.5 → 0.69.7

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: 959f0e72516b633c4160f4f42574099c124e704e0d74e4e5f09a29acb6a6cc22
4
- data.tar.gz: 17d63410726e0e6ecf0498b89e0200fed8c39d0de35e3cfc574da6d2e3ac5257
3
+ metadata.gz: 3b7f8c5fb624eb7c68b2af31714a93a62631541565cea93fa259bfab05f907be
4
+ data.tar.gz: 65808615d8648aad104f355682c9cc6b9fac9b6128592d860e6e68e5e7c839aa
5
5
  SHA512:
6
- metadata.gz: eb9a45c6dd92b174ec16cf063d16b968337733352156e7c6c4ba11d1dd28bf58318b594eb685738ff4066949481c2c3f5a9222fd072d0915fde0850890ab82cb
7
- data.tar.gz: a824eb61bd6b2110db326da025c56cb4985d34e16cab30d61ffce0d799840a0226156c0301a3f14b8246042ce9b52c1dc3da4228f38acb17ec2b3348829aa798
6
+ metadata.gz: 829ca84e3fddfb8c71129c77f207a1daba23a2998c23a9b571f6a36d8ec81cdb9daefc1f627060e4aff4777b6a32d04c9fb92636b3da4edb430871c2e03f9783
7
+ data.tar.gz: d9df2215dd23220683a1652474f0121e99c28f6d1b0bc0e27e118a769aebff41c224aedf0c4ea2e509ed8d09c5fd05537d60e4173071179d9c5b9affd401b514
data/VERSION.md CHANGED
@@ -106,3 +106,5 @@
106
106
  | v0.69.3 | 2023-01-13 | Password reset RPC |
107
107
  | v0.69.4 | 2023-01-26 | User video Profile and readme update |
108
108
  | v0.69.5 | 2023-03-14 | Dealer patchable whitelisted camera vendors |
109
+ | v0.69.6 | 2023-03-17 | Add Dealer Phone resource |
110
+ | v0.69.7 | 2023-03-21 | Rename Receiers Disabled field to correct one |
@@ -0,0 +1,103 @@
1
+ module Alula
2
+ class DealerPhone < Alula::RestResource
3
+ extend Alula::ResourceAttributes
4
+ extend Alula::RelationshipAttributes
5
+ extend Alula::ApiOperations::Request
6
+ extend Alula::ApiOperations::List
7
+ extend Alula::ApiOperations::Save
8
+
9
+ resource_path 'dealers/phones'
10
+ type 'dealers-phones'
11
+
12
+ # Relationships
13
+ # None
14
+
15
+ # Resource Fields
16
+ # Not all params are used at the moment. See Alula::ResourceAttributes for details
17
+ # on how params are parsed,
18
+ field :id,
19
+ type: :string,
20
+ sortable: false,
21
+ filterable: false,
22
+ creatable_by: [],
23
+ patchable_by: []
24
+
25
+ field :company_name,
26
+ type: :string,
27
+ sortable: true,
28
+ filterable: true,
29
+ creatable_by: [],
30
+ patchable_by: []
31
+
32
+ field :phone_pri_contact,
33
+ type: :string,
34
+ sortable: false,
35
+ filterable: false,
36
+ creatable_by: [],
37
+ patchable_by: [:system, :station, :dealer]
38
+
39
+ field :phone_pri_ct,
40
+ type: :string,
41
+ sortable: false,
42
+ filterable: false,
43
+ creatable_by: [],
44
+ patchable_by: [:system, :station, :dealer]
45
+
46
+ field :phone_sec_contact,
47
+ type: :string,
48
+ sortable: false,
49
+ filterable: false,
50
+ creatable_by: [],
51
+ patchable_by: [:system, :station, :dealer]
52
+
53
+ field :phone_sec_ct,
54
+ type: :string,
55
+ sortable: false,
56
+ filterable: false,
57
+ creatable_by: [],
58
+ patchable_by: [:system, :station, :dealer]
59
+
60
+ field :contact_type,
61
+ type: :string,
62
+ sortable: false,
63
+ filterable: false,
64
+ creatable_by: [],
65
+ patchable_by: [:system, :station, :dealer]
66
+
67
+ field :co_ph_pri,
68
+ type: :string,
69
+ sortable: false,
70
+ filterable: false,
71
+ creatable_by: [],
72
+ patchable_by: [:system, :station, :dealer]
73
+
74
+ field :co_ph_sec,
75
+ type: :string,
76
+ sortable: false,
77
+ filterable: false,
78
+ creatable_by: [],
79
+ patchable_by: [:system, :station, :dealer]
80
+
81
+ field :co_ph_sales,
82
+ type: :string,
83
+ sortable: false,
84
+ filterable: false,
85
+ creatable_by: [],
86
+ patchable_by: []
87
+
88
+ field :co_ph_service,
89
+ type: :string,
90
+ sortable: false,
91
+ filterable: false,
92
+ creatable_by: [],
93
+ patchable_by: []
94
+
95
+ field :co_ph_billing,
96
+ type: :string,
97
+ sortable: false,
98
+ filterable: false,
99
+ creatable_by: [],
100
+ patchable_by: []
101
+
102
+ end
103
+ end
@@ -43,7 +43,7 @@ module Alula
43
43
  creatable_by: [:system],
44
44
  patchable_by: [:system]
45
45
 
46
- field :date_created,
46
+ field :date_entered,
47
47
  type: :date,
48
48
  sortable: false,
49
49
  filterable: 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 = '0.69.5'
4
+ VERSION = '0.69.7'
5
5
  end
data/lib/alula.rb CHANGED
@@ -37,6 +37,7 @@ require_relative 'alula/resources/device_event_log'
37
37
  require_relative 'alula/resources/device_cellular_status'
38
38
  require_relative 'alula/resources/device_program'
39
39
  require_relative 'alula/resources/dealer_address'
40
+ require_relative 'alula/resources/dealer_phone'
40
41
  require_relative 'alula/resources/dealer_account_transfer'
41
42
  require_relative 'alula/resources/dealer_suspension_log'
42
43
  require_relative 'alula/resources/dealer_program'
@@ -111,6 +112,7 @@ module Alula
111
112
  Alula::DeviceEventLog,
112
113
  Alula::DeviceProgram,
113
114
  Alula::DealerAddress,
115
+ Alula::DealerPhone,
114
116
  Alula::DealerProgram,
115
117
  Alula::DeviceCellularStatus,
116
118
  Alula::Self,
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.69.5
4
+ version: 0.69.7
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-03-14 00:00:00.000000000 Z
11
+ date: 2023-03-21 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: httparty
@@ -244,6 +244,7 @@ files:
244
244
  - lib/alula/resources/dealer_account_transfer.rb
245
245
  - lib/alula/resources/dealer_address.rb
246
246
  - lib/alula/resources/dealer_branding.rb
247
+ - lib/alula/resources/dealer_phone.rb
247
248
  - lib/alula/resources/dealer_program.rb
248
249
  - lib/alula/resources/dealer_suspension_log.rb
249
250
  - lib/alula/resources/device.rb