realogy 0.5.4 → 0.5.9

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: fdccbc57a69dba12dd4e280d1f280e405f8f35dd73a916f97c784963324a831e
4
- data.tar.gz: 99bbf7b835e01263583481808b0e51b0a56dfbee1539789ae2b98f60a77953b6
3
+ metadata.gz: 702562782515233ac1a57e61324cf10b14f66eb2d94bf886453cc8cc14901aa0
4
+ data.tar.gz: 24c5a742636e90ba401f524eff9f222d90a5c6bdc8745b3ef799bd8ba2f9a367
5
5
  SHA512:
6
- metadata.gz: 995ac8526a4ff8d6aebba305488bf8db6d5d57ab3b896d2bd4098cf6e8910389599a11a5acd5fec308b7121f9061127ee801300cc386337539814a4f51ed5dce
7
- data.tar.gz: bf6bf683d3a2571c536c5588a51fb7f53ec9ce3b5889a976d394c7bd22701393f63654ed646676bf2135555e51c034c1547ad5e78140df87eaeb39f57a6b9fc3
6
+ metadata.gz: 6d3bdf26acc313331628f242681dc63a0ae8ce3668adff8c1f1496a40d2519b28f376bf129a0b79f8d1a8e2ed44652e2c8a2c83d88aba10b7f71d35ed4afd8ca
7
+ data.tar.gz: 9879729daada8cdc0f75acb0d5367ae22769d417f40ea5660312cff6eec63bf4dde6a477aca62529adac3a1d193dcb55b2586c72ff639af58afbaa55114b39e5
@@ -2,6 +2,7 @@ require "realogy/version"
2
2
  require "realogy/railtie" if defined?(Rails)
3
3
  require "realogy/app/models/application_record.rb"
4
4
  require "realogy/app/models/data_sync.rb"
5
+ require "realogy/app/models/search.rb"
5
6
  require "realogy/app/models/hash.rb"
6
7
  require "realogy/app/models/realogy/entity.rb"
7
8
  require "realogy/app/models/realogy/agent.rb"
@@ -163,7 +163,7 @@ class Realogy::Agent < Realogy::Entity
163
163
  # lastUpdateOn : DateTime
164
164
  # The date/time that the Agent record was last updated in the system (UTC)
165
165
 
166
- def last_update_on
166
+ def last_updated
167
167
  self.dig_for_datetime("lastUpdateOn")
168
168
  end
169
169
 
@@ -58,7 +58,7 @@ class Realogy::Company < Realogy::Entity
58
58
  # lastUpdateOn : DateTime
59
59
  # The date/time that the Company record was last updated in the system (UTC)
60
60
 
61
- def last_update_on
61
+ def last_updated
62
62
  self.dig_for_datetime("companySummary", "lastUpdateOn")
63
63
  end
64
64
 
@@ -887,7 +887,7 @@ class Realogy::Listing < Realogy::Entity
887
887
  # lastUpdateOn : DateTime
888
888
  # Timestamp when the listing was last updated at Realogy system
889
889
 
890
- def last_update_on
890
+ def last_updated
891
891
  self.dig_for_datetime("listingSummary", "lastUpdateOn")
892
892
  end
893
893
 
@@ -136,7 +136,7 @@ class Realogy::Office < Realogy::Entity
136
136
  # lastUpdateOn : DateTime
137
137
  # The date/time that the Office record was last updated in the system (UTC)
138
138
 
139
- def last_update_on
139
+ def last_updated
140
140
  self.dig_for_datetime("lastUpdateOn")
141
141
  end
142
142
 
@@ -44,7 +44,7 @@ class Realogy::Team < Realogy::Entity
44
44
  # lastUpdateOn : Datetime
45
45
  # The date/time in UTC when the team was last updated
46
46
 
47
- def last_update_on
47
+ def last_updated
48
48
  self.dig_for_datetime("lastUpdateOn")
49
49
  end
50
50
 
@@ -1,3 +1,3 @@
1
1
  module Realogy
2
- VERSION = "0.5.4"
2
+ VERSION = "0.5.9"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: realogy
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.4
4
+ version: 0.5.9
5
5
  platform: ruby
6
6
  authors:
7
7
  - Michael Edlund
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2020-05-19 00:00:00.000000000 Z
11
+ date: 2020-12-03 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -149,7 +149,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
149
149
  - !ruby/object:Gem::Version
150
150
  version: '0'
151
151
  requirements: []
152
- rubygems_version: 3.1.2
152
+ rubygems_version: 3.1.4
153
153
  signing_key:
154
154
  specification_version: 4
155
155
  summary: Encapsulation of Realogy's DataSync API.