vng 2.0.1 → 2.1.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: b55414af3d991f40577d333dca79e445d4c71a50966982680c62045a76588bb3
4
- data.tar.gz: 3cbccf175981d60238a834c2ecd97940f5bcb09a4bf731b034ec94877a3cf8ec
3
+ metadata.gz: '09b4cd00ba4b70329bb9824f7ebcf41d3d97f02e2bc9677a19dd383d3c0de4c3'
4
+ data.tar.gz: 0f2624b2c49242c74810bc7149f29bc95d2f1fdf314222f4e357f119b1e7926c
5
5
  SHA512:
6
- metadata.gz: 8ac26b5eff9feb7f2bc234855b0cbc6c06cc5c8073f0308c2edc3938a0196b60d3b2316aee28c6660bdfed8281bdd0769682162102eeeccae2698fb50d52c211
7
- data.tar.gz: ec80bef2801ad13ff0ad63edb503eae435b07d7e0889483ac2dd4700d1ad94cead7293f1dd87f5e1c9f00e2db8e19e361f4f484089b5ec2032355d79b5d954be
6
+ metadata.gz: 38071da71b58c98fe424be4269fc0d101e49c6b388aa1cff971dd5ea1e693abc968f3bc294ef723043a9a35478cd7de150017bc49a3eb339c94ed7275e2cb692
7
+ data.tar.gz: 01e5b806637ebcf5b4dfe9b40bffcdb1fc3e9f944732cb99be9ccf0dc0ddbdcdee910020a704d119956168fa87f867ed795cab960b44863b105dec8030a1f0d8
data/CHANGELOG.md CHANGED
@@ -1,3 +1,7 @@
1
+ ## [2.1.0] - 2024-12-8
2
+
3
+ - Adds Availability.where(zip:)
4
+
1
5
  ## [2.0.1] - 2024-12-26
2
6
 
3
7
  - Fix MockRequest for types
@@ -14,16 +14,18 @@ module Vng
14
14
  @minutes = minutes
15
15
  end
16
16
 
17
- def self.where(location_id:, duration:, from_time:, to_time:)
17
+ def self.where(location_id: nil, zip: nil, duration:, from_time:, to_time:)
18
18
  body = {
19
19
  method: '0',
20
20
  serviceTypeID: '14', # only return items of serviceType 'Pet Grooming'
21
- locationID: location_id,
22
21
  duration: [duration.to_i, 30].max, # or 'duration is not provided'
23
22
  dateStart: from_time.to_i,
24
23
  dateEnd: to_time.to_i,
25
24
  }
26
25
 
26
+ body[:locationID] = location_id if location_id
27
+ body[:zip] = zip if zip
28
+
27
29
  data = request path: PATH, body: body
28
30
 
29
31
  data['Availability'].map do |availability|
data/lib/vng/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module Vng
2
- VERSION = '2.0.1'
2
+ VERSION = '2.1.0'
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: vng
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.0.1
4
+ version: 2.1.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - claudiob
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2024-12-27 00:00:00.000000000 Z
11
+ date: 2024-12-29 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: simplecov