vng 1.7.0 → 2.0.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/CHANGELOG.md +6 -0
- data/lib/vng/service_type.rb +3 -32
- data/lib/vng/version.rb +1 -1
- data/lib/vng/zip.rb +5 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2ba9ded97747e245e2102d52fc515f78a6b836b5e5a19709c40413d6c135f62b
|
4
|
+
data.tar.gz: 356ecdbc427ba9f6d1977972bafa3b81a4afa3122bc66ed11bbc9d69cfa1e6f9
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1547625c3428ba7727be689119387e1c29b3a931037a01ac6cd03e8df0a9f80a21bf5486d17d23bb5428b902b4d7620696f997fad59e53ec101a8f62c8441f6f
|
7
|
+
data.tar.gz: 0646cbea6e388d76db71cf24505862ec92d808901e1c465b3c2796383c24ba93c1bdea676bcab98968e79b79004030133cce0e2c9f533346371ce1b930df595b
|
data/CHANGELOG.md
CHANGED
data/lib/vng/service_type.rb
CHANGED
@@ -5,42 +5,13 @@ module Vng
|
|
5
5
|
class ServiceType < Resource
|
6
6
|
PATH = '/api/v1/resources/serviceTypes/'
|
7
7
|
|
8
|
-
attr_reader :id, :type, :duration
|
8
|
+
attr_reader :id, :type, :duration, :price_list_id
|
9
9
|
|
10
|
-
def initialize(id:, type:, duration:)
|
10
|
+
def initialize(id:, type:, duration:, price_list_id:)
|
11
11
|
@id = id
|
12
12
|
@type = type
|
13
13
|
@duration = duration
|
14
|
-
|
15
|
-
|
16
|
-
def self.all
|
17
|
-
data = request path: PATH
|
18
|
-
|
19
|
-
data['ServiceTypes'].map do |body|
|
20
|
-
id = body['serviceTypeID']
|
21
|
-
type = body['serviceType']
|
22
|
-
duration = body['duration']
|
23
|
-
|
24
|
-
new id: id, type: type, duration: duration
|
25
|
-
end
|
26
|
-
end
|
27
|
-
|
28
|
-
def self.where(zip:)
|
29
|
-
body = {
|
30
|
-
zip: zip,
|
31
|
-
}
|
32
|
-
|
33
|
-
data = request path: PATH, body: body
|
34
|
-
|
35
|
-
data.fetch('ServiceTypes', []).filter do |body|
|
36
|
-
body['isActive']
|
37
|
-
end.map do |body|
|
38
|
-
id = body['serviceTypeID']
|
39
|
-
type = body['serviceType']
|
40
|
-
duration = body['duration']
|
41
|
-
|
42
|
-
new id: id, type: type, duration: duration
|
43
|
-
end
|
14
|
+
@price_list_id = price_list_id
|
44
15
|
end
|
45
16
|
end
|
46
17
|
end
|
data/lib/vng/version.rb
CHANGED
data/lib/vng/zip.rb
CHANGED
@@ -20,6 +20,7 @@ module Vng
|
|
20
20
|
data = request path: PATH
|
21
21
|
|
22
22
|
data['Zips'].reject do |franchise|
|
23
|
+
# TODO: add "Owned - Not In Service"
|
23
24
|
franchise['zipStatus'].eql? 'Owned – Deactivated'
|
24
25
|
end.map do |body|
|
25
26
|
zip = body['zip']
|
@@ -39,12 +40,15 @@ module Vng
|
|
39
40
|
data = request path: PATH, body: body
|
40
41
|
zip_data = data['Zip']
|
41
42
|
|
43
|
+
# TODO: Remove ServiceType class, store duration and price_list_id
|
44
|
+
# inside Zip itself
|
42
45
|
unless zip_data['zipCodeID'] == '0'
|
43
46
|
service_types = data['ServiceTypes'].map do |body|
|
44
47
|
id = body['serviceTypeID']
|
45
48
|
type = body['serviceType']
|
46
49
|
duration = body['duration']
|
47
|
-
|
50
|
+
price_list_id = body['priceID']
|
51
|
+
ServiceType.new id: id, type: type, duration: duration, price_list_id: price_list_id
|
48
52
|
end
|
49
53
|
|
50
54
|
new zip: zip_data['zipCode'], state: zip_data['provinceAbbr'], zone_name: zip_data['zoneName'], city: zip_data['defaultCity'], service_types: service_types
|