rentvine 0.3.2 → 0.3.3

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: f64e12efafdda086983240a494aedfe2acefef651b3cdd932fbdd19681f37fba
4
- data.tar.gz: 20fcb13e53f3f735de7f87558d798e25d1a8891def7dadca74c3f3d5c5daacba
3
+ metadata.gz: 4062006dd72c1fff104508499df86ecf5a4f6166638bd24caa3183a5f54b11e2
4
+ data.tar.gz: 986822bbee7e3939abb22578350b37a753ec6d173b62f4e032be1d41b5754200
5
5
  SHA512:
6
- metadata.gz: c2abdde0f7a6ddd903096789e52ec72cbf0f072fff03fe78b1c4ddc5b6f2cd2c7d65298764886c5ff0c040e41eb32979fba3b63231d9be58111463b2f7a66345
7
- data.tar.gz: c967448d599bbd6b900ccf578359158ebd330e6f1a4cfdc230d23448038ff9129e53028640ecc305066945ecc624f2c176e0751eb49b8072496c83ecfffc58b0
6
+ metadata.gz: 91397482ecc6e830561d3aace3e4358bf2ffcab61727989a56585c4de9c04475092f6a6648b512e3180220d62e46aa0d82ae5bdbcc12670555e72e2442683dd2
7
+ data.tar.gz: 2f1065986105cbbd2a5c190b52a8797bdfd75a643433977087b7514d204b89fb781fcc64eaeddb7d1a659c244e540985ac71b6e030c3d441aad5c568a2955e48
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  ## [Unreleased]
2
2
 
3
+ ## [0.3.3] - 2025-01-26
4
+
5
+ - Updated call to tenants to use "/tenants" instead of "/tenants/search".
6
+
3
7
  ## [0.3.2] - 2025-01-25
4
8
 
5
9
  - Fixed call to leases export endpoint to use the correct spelling.
@@ -2,7 +2,7 @@ module Rentvine
2
2
  class Client
3
3
  module Tenants
4
4
  def tenants(args = {})
5
- results = process_request(:get, 'tenants/search', params: args)
5
+ results = process_request(:get, 'tenants', params: args)
6
6
  return results if results.is_a?(RentvineError)
7
7
 
8
8
  results.map { |result| Rentvine::Tenant.new(result[:contact]) }
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Rentvine
4
- VERSION = '0.3.2'
4
+ VERSION = '0.3.3'
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rentvine
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.2
4
+ version: 0.3.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Wes Hays