reso_api 0.5.5 → 0.5.6

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +9 -0
  3. data/lib/reso_api/version.rb +1 -1
  4. metadata +1 -1
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 7ed9347d7eb406dabae26687fe46f0bfc933fe3b3b8ed192a149ba22e864a763
4
- data.tar.gz: f6b49eb08938c136cbb10d0f01c70d8e7412c4f2e8fe63d2773ef52e53b224c2
3
+ metadata.gz: c6328a0f138a8db17b52866e9a0bd41a95b444d88e874b0153cecd1124cc4d9a
4
+ data.tar.gz: 5f70b75248c806b56bc23026f8bd97bd21e6cd9ebc0064074a3d441ae55ce705
5
5
  SHA512:
6
- metadata.gz: 26d274666242b196d8fae5e6d8b53533fc07e68d6b5c8165b675a99f977b7cca7f8fb135fcba9742bf11bfe8f6f43c48e7ca11d867ce24f10ce2955f7a941402
7
- data.tar.gz: 444b122035ff51ea71014b9f09e6400572d6262b89f24dd98f30cebda3faf8b62a418382ed982b032c3d63ad354d5806edcfe6787a73d20bdd4b9364f778d5e2
6
+ metadata.gz: 0b4dcfaa9e7e304b1e109139c075231cb44c65e69cb604f82d27d5a296518bccef885a4c3d4b2ceaf018759a4b7b811bef03e13d8b8ce1f27d725fd4492a80bd
7
+ data.tar.gz: f49bd22db5aeea0c1f3054d40705480f34bbba3aabd8e9f5b97ed87c51be6eacbe63a6afbe24410cf93a869e45c1d3e811c6a07808134700b76e14d6a55d89bc
data/README.md CHANGED
@@ -143,6 +143,14 @@ $expand in oData is meant to join two resources together. For the Syndication AP
143
143
  client.properties(expand: "Media")
144
144
  ```
145
145
 
146
+ #### $ignorenulls
147
+
148
+ For servers that support it, $ignorenulls omits empty keys from the response to reduce data size.
149
+
150
+ ```ruby
151
+ client.properties(ignorenulls: "true")
152
+ ```
153
+
146
154
  #### Automatically iterate over all results
147
155
 
148
156
  By passing a block to Media, Member, Office, and Property resource calls, subsequent paginated calls will automatically be made until the whole result set has been traversed. The block provided is executed for each returned object hash. The `batch` option can be used to return the full array of results.
@@ -224,6 +232,7 @@ client.properties(top: 5, orderby: "ListingKey", skiptoken: "3yd-AAABORMI-320039
224
232
  This gem should work with any RESO Web API compliant service, but these are those that have been confirmed to work.
225
233
 
226
234
  - [ListHub](https://www.listhub.com)
235
+ - [Constellation1](https://constellation1.com)
227
236
  - [CoreLogic Trestle](https://trestle.corelogic.com)
228
237
 
229
238
  If you use this gem to connect to another service or MLS, please submit a pull request with that service added in alphabetical order in this list.
@@ -1,3 +1,3 @@
1
1
  module ResoApi
2
- VERSION = "0.5.5"
2
+ VERSION = "0.5.6"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: reso_api
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.5
4
+ version: 0.5.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Michael Edlund