moxiworks_platform 0.13.0 → 0.13.2

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
  SHA1:
3
- metadata.gz: 52672cbf7bb8c410996194f501e7f13d00fd668f
4
- data.tar.gz: 30410dc4fe5db3324fa1ae0348facbb438f9cd62
3
+ metadata.gz: 72371394c5340b10ea0ae12863fbed16fc7b1c32
4
+ data.tar.gz: 222797a54f1cb4759f72d558ed22abe2ae929a86
5
5
  SHA512:
6
- metadata.gz: 39ccb3940c9bf5d006efdd03711a43c91f4c8d50ae2c9edb5c0c46ff744651c7673a168cf835de41da431a4b6fb9a3f23ad669436c83e7c16fbf96bfc9b648ef
7
- data.tar.gz: 5f2ae2f3c7931b1e59fa79b5ecd3b2e9d462312c0bd3fade65fc457681559ba8103612d3022a2799e4151a7fc4a7d28a58d486a3494e045ae6de0311711849d2
6
+ metadata.gz: 04de67bc8baadccad24b017869fa2e199eecdd0ded5dd5973031279b95d7b0eb19e4e8dfc4ff5fc16524df9da5f651bad5126d755a7c85adc9722a45e5249302
7
+ data.tar.gz: fbe0f1c9fbb80837197f406390bb4729799892239b889dc4a50a3307961bbd1a76c60e7a39c5700ab61317b67a39c43f8f514ce461669088d081e8b4db482ee9
@@ -156,6 +156,13 @@ module MoxiworksPlatform
156
156
  # @return [String] any business related titles associated with the agent
157
157
  attr_accessor :title
158
158
 
159
+ # @!attribute uuid
160
+ #
161
+ # @return [String] UUID of the agent. Can be used as a unique
162
+ # identifier in determining associations between Agent objects and Listing
163
+ # objects.
164
+ attr_accessor :uuid
165
+
159
166
  # Find an Agent on the Moxi Works Platform
160
167
  # @param [Hash] opts named parameter Hash
161
168
  # @option opts [String] :moxi_works_agent_id *REQUIRED* -- either :moxi_works_agent_id or :agent_uuid is required -- The Moxi Works Agent ID for the agent
@@ -67,6 +67,11 @@ module MoxiworksPlatform
67
67
  # @return [String] city of property address
68
68
  attr_accessor :city
69
69
 
70
+ # @!attribute company_listing_attributes
71
+ #
72
+ # @return [Array] company specific attributes
73
+ attr_accessor :company_listing_attributes
74
+
70
75
  # @!attribute county_or_parish
71
76
  #
72
77
  # @return [String] county of property address
@@ -117,6 +122,11 @@ module MoxiworksPlatform
117
122
  # @return [String] name of listing agent
118
123
  attr_accessor :list_agent_full_name
119
124
 
125
+ # @!attribute list_agent_uuid
126
+ #
127
+ # @return [String] UUID of listing agent
128
+ attr_accessor :list_agent_uuid
129
+
120
130
  # @!attribute list_office_name
121
131
  #
122
132
  # @return [String] name office responsible for listing
@@ -142,6 +152,11 @@ module MoxiworksPlatform
142
152
  # @return [String] the mls number associated with the listing
143
153
  attr_accessor :listing_id
144
154
 
155
+ # @!attribute listing_url
156
+ #
157
+ # @return [String] the URL of the listing
158
+ attr_accessor :listing_url
159
+
145
160
  # @!attribute listing_images
146
161
  #
147
162
  # @return [Array] array of image Hashes in the format
@@ -240,6 +255,11 @@ module MoxiworksPlatform
240
255
  # @return [String] state of property address
241
256
  attr_accessor :state_or_province
242
257
 
258
+ # @!attribute status
259
+ #
260
+ # @return [String] status of listing
261
+ attr_accessor :status
262
+
243
263
  # @!attribute tax_annual_amount
244
264
  #
245
265
  # @return [Integer] Annual property tax for the property
@@ -3,7 +3,11 @@ module MoxiworksPlatform
3
3
  class Session
4
4
  include Singleton
5
5
 
6
- attr_accessor :cookie
6
+ attr_reader :cookie
7
+
8
+ def cookie=(value)
9
+ @cookie = value unless value.nil?
10
+ end
7
11
 
8
12
  end
9
13
  end
@@ -1,3 +1,3 @@
1
1
  module MoxiworksPlatform
2
- VERSION = '0.13.0'
2
+ VERSION = '0.13.2'
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: moxiworks_platform
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.13.0
4
+ version: 0.13.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tres Wong-Godfrey
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2018-02-28 00:00:00.000000000 Z
11
+ date: 2018-03-22 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rest-client