spark_api 1.4.34 → 1.5.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 +4 -4
- data/README.md +1 -1
- data/VERSION +1 -1
- data/lib/spark_api/authentication/api_auth.rb +5 -3
- data/lib/spark_api/authentication/oauth2.rb +2 -1
- data/lib/spark_api/authentication/oauth2_impl/grant_type_base.rb +1 -1
- data/lib/spark_api/client.rb +2 -2
- data/lib/spark_api/models/media.rb +30 -0
- data/lib/spark_api/models/video.rb +108 -0
- data/lib/spark_api/models/virtual_tour.rb +16 -0
- data/lib/spark_api/models.rb +1 -0
- data/lib/spark_api/request.rb +17 -1
- data/lib/spark_api.rb +1 -0
- data/spec/spec_helper.rb +9 -4
- data/spec/unit/spark_api/authentication/api_auth_spec.rb +40 -22
- data/spec/unit/spark_api/authentication/base_auth_spec.rb +3 -3
- data/spec/unit/spark_api/authentication/oauth2_impl/faraday_middleware_spec.rb +1 -1
- data/spec/unit/spark_api/authentication/oauth2_impl/grant_type_base_spec.rb +1 -1
- data/spec/unit/spark_api/authentication/oauth2_impl/single_session_provider_spec.rb +2 -2
- data/spec/unit/spark_api/authentication/oauth2_spec.rb +58 -40
- data/spec/unit/spark_api/authentication_spec.rb +2 -2
- data/spec/unit/spark_api/configuration/yaml_spec.rb +44 -44
- data/spec/unit/spark_api/configuration_spec.rb +56 -57
- data/spec/unit/spark_api/faraday_middleware_spec.rb +12 -12
- data/spec/unit/spark_api/models/account_spec.rb +20 -20
- data/spec/unit/spark_api/models/activity_spec.rb +5 -5
- data/spec/unit/spark_api/models/base_spec.rb +32 -32
- data/spec/unit/spark_api/models/concerns/destroyable_spec.rb +2 -2
- data/spec/unit/spark_api/models/concerns/savable_spec.rb +19 -19
- data/spec/unit/spark_api/models/connect_prefs_spec.rb +1 -1
- data/spec/unit/spark_api/models/constraint_spec.rb +1 -1
- data/spec/unit/spark_api/models/contact_spec.rb +50 -50
- data/spec/unit/spark_api/models/dirty_spec.rb +12 -12
- data/spec/unit/spark_api/models/document_spec.rb +3 -3
- data/spec/unit/spark_api/models/fields_spec.rb +17 -17
- data/spec/unit/spark_api/models/finders_spec.rb +7 -7
- data/spec/unit/spark_api/models/floplan_spec.rb +4 -4
- data/spec/unit/spark_api/models/listing_cart_spec.rb +46 -46
- data/spec/unit/spark_api/models/listing_meta_translations_spec.rb +6 -6
- data/spec/unit/spark_api/models/listing_spec.rb +91 -91
- data/spec/unit/spark_api/models/message_spec.rb +10 -10
- data/spec/unit/spark_api/models/note_spec.rb +10 -10
- data/spec/unit/spark_api/models/notification_spec.rb +6 -6
- data/spec/unit/spark_api/models/open_house_spec.rb +4 -4
- data/spec/unit/spark_api/models/photo_spec.rb +8 -8
- data/spec/unit/spark_api/models/portal_spec.rb +4 -4
- data/spec/unit/spark_api/models/property_types_spec.rb +5 -5
- data/spec/unit/spark_api/models/rental_calendar_spec.rb +13 -11
- data/spec/unit/spark_api/models/rule_spec.rb +2 -2
- data/spec/unit/spark_api/models/saved_search_spec.rb +33 -33
- data/spec/unit/spark_api/models/search_template/quick_search_spec.rb +5 -5
- data/spec/unit/spark_api/models/shared_listing_spec.rb +12 -12
- data/spec/unit/spark_api/models/sort_spec.rb +3 -3
- data/spec/unit/spark_api/models/standard_fields_spec.rb +12 -12
- data/spec/unit/spark_api/models/subresource_spec.rb +18 -18
- data/spec/unit/spark_api/models/system_info_spec.rb +7 -7
- data/spec/unit/spark_api/models/tour_of_home_spec.rb +3 -3
- data/spec/unit/spark_api/models/video_spec.rb +9 -9
- data/spec/unit/spark_api/models/virtual_tour_spec.rb +7 -7
- data/spec/unit/spark_api/models/vow_account_spec.rb +8 -8
- data/spec/unit/spark_api/multi_client_spec.rb +14 -14
- data/spec/unit/spark_api/options_hash_spec.rb +4 -4
- data/spec/unit/spark_api/paginate_spec.rb +71 -71
- data/spec/unit/spark_api/primary_array_spec.rb +5 -5
- data/spec/unit/spark_api/request_spec.rb +79 -63
- data/spec/unit/spark_api_spec.rb +6 -6
- metadata +178 -248
    
        data/spec/unit/spark_api_spec.rb
    CHANGED
    
    | @@ -3,30 +3,30 @@ require './spec/spec_helper' | |
| 3 3 | 
             
            describe SparkApi do
         | 
| 4 4 |  | 
| 5 5 | 
             
              it "should use 'yajl-ruby' for parsing json" do
         | 
| 6 | 
            -
                MultiJson.engine. | 
| 6 | 
            +
                expect(MultiJson.engine).to eq(MultiJson::Adapters::Yajl) unless jruby?
         | 
| 7 7 | 
             
              end
         | 
| 8 8 |  | 
| 9 9 | 
             
              it "should load the version" do
         | 
| 10 | 
            -
                subject::VERSION. | 
| 10 | 
            +
                expect(subject::VERSION).to match(/\d+\.\d+\.\d+/)
         | 
| 11 11 | 
             
              end
         | 
| 12 12 |  | 
| 13 13 | 
             
              it "should give me a client connection" do
         | 
| 14 | 
            -
                subject.client. | 
| 14 | 
            +
                expect(subject.client).to be_a(SparkApi::Client)
         | 
| 15 15 | 
             
              end
         | 
| 16 16 |  | 
| 17 17 | 
             
              it "should reset my connection" do
         | 
| 18 18 | 
             
                c1 = subject.client
         | 
| 19 19 | 
             
                subject.reset
         | 
| 20 | 
            -
                subject.client. | 
| 20 | 
            +
                expect(subject.client).not_to eq(c1)
         | 
| 21 21 | 
             
              end
         | 
| 22 22 |  | 
| 23 23 | 
             
              it "should let me override the default logger" do
         | 
| 24 | 
            -
                subject.logger.level. | 
| 24 | 
            +
                expect(subject.logger.level).to eq(Logger::DEBUG) # default overridden in spec_helper
         | 
| 25 25 |  | 
| 26 26 | 
             
                subject.logger = Logger.new('/dev/null')
         | 
| 27 27 | 
             
                subject.logger.level = Logger::WARN
         | 
| 28 28 |  | 
| 29 | 
            -
                SparkApi.logger.level. | 
| 29 | 
            +
                expect(SparkApi.logger.level).to eq(Logger::WARN)
         | 
| 30 30 | 
             
              end
         | 
| 31 31 | 
             
            end
         | 
| 32 32 |  | 
    
        metadata
    CHANGED
    
    | @@ -1,7 +1,7 @@ | |
| 1 1 | 
             
            --- !ruby/object:Gem::Specification
         | 
| 2 2 | 
             
            name: spark_api
         | 
| 3 3 | 
             
            version: !ruby/object:Gem::Version
         | 
| 4 | 
            -
              version: 1. | 
| 4 | 
            +
              version: 1.5.3
         | 
| 5 5 | 
             
            platform: ruby
         | 
| 6 6 | 
             
            authors:
         | 
| 7 7 | 
             
            - Brandon Hornseth
         | 
| @@ -9,22 +9,22 @@ authors: | |
| 9 9 | 
             
            autorequire: 
         | 
| 10 10 | 
             
            bindir: bin
         | 
| 11 11 | 
             
            cert_chain: []
         | 
| 12 | 
            -
            date:  | 
| 12 | 
            +
            date: 2021-08-25 00:00:00.000000000 Z
         | 
| 13 13 | 
             
            dependencies:
         | 
| 14 14 | 
             
            - !ruby/object:Gem::Dependency
         | 
| 15 15 | 
             
              name: faraday
         | 
| 16 16 | 
             
              requirement: !ruby/object:Gem::Requirement
         | 
| 17 17 | 
             
                requirements:
         | 
| 18 | 
            -
                - - " | 
| 18 | 
            +
                - - ">="
         | 
| 19 19 | 
             
                  - !ruby/object:Gem::Version
         | 
| 20 | 
            -
                    version: 0. | 
| 20 | 
            +
                    version: 0.17.3
         | 
| 21 21 | 
             
              type: :runtime
         | 
| 22 22 | 
             
              prerelease: false
         | 
| 23 23 | 
             
              version_requirements: !ruby/object:Gem::Requirement
         | 
| 24 24 | 
             
                requirements:
         | 
| 25 | 
            -
                - - " | 
| 25 | 
            +
                - - ">="
         | 
| 26 26 | 
             
                  - !ruby/object:Gem::Version
         | 
| 27 | 
            -
                    version: 0. | 
| 27 | 
            +
                    version: 0.17.3
         | 
| 28 28 | 
             
            - !ruby/object:Gem::Dependency
         | 
| 29 29 | 
             
              name: multi_json
         | 
| 30 30 | 
             
              requirement: !ruby/object:Gem::Requirement
         | 
| @@ -43,14 +43,14 @@ dependencies: | |
| 43 43 | 
             
              name: json
         | 
| 44 44 | 
             
              requirement: !ruby/object:Gem::Requirement
         | 
| 45 45 | 
             
                requirements:
         | 
| 46 | 
            -
                - - " | 
| 46 | 
            +
                - - ">="
         | 
| 47 47 | 
             
                  - !ruby/object:Gem::Version
         | 
| 48 48 | 
             
                    version: '1.7'
         | 
| 49 49 | 
             
              type: :runtime
         | 
| 50 50 | 
             
              prerelease: false
         | 
| 51 51 | 
             
              version_requirements: !ruby/object:Gem::Requirement
         | 
| 52 52 | 
             
                requirements:
         | 
| 53 | 
            -
                - - " | 
| 53 | 
            +
                - - ">="
         | 
| 54 54 | 
             
                  - !ruby/object:Gem::Version
         | 
| 55 55 | 
             
                    version: '1.7'
         | 
| 56 56 | 
             
            - !ruby/object:Gem::Dependency
         | 
| @@ -107,92 +107,36 @@ dependencies: | |
| 107 107 | 
             
                - - ">="
         | 
| 108 108 | 
             
                  - !ruby/object:Gem::Version
         | 
| 109 109 | 
             
                    version: '1.0'
         | 
| 110 | 
            -
            - !ruby/object:Gem::Dependency
         | 
| 111 | 
            -
              name: public_suffix
         | 
| 112 | 
            -
              requirement: !ruby/object:Gem::Requirement
         | 
| 113 | 
            -
                requirements:
         | 
| 114 | 
            -
                - - "~>"
         | 
| 115 | 
            -
                  - !ruby/object:Gem::Version
         | 
| 116 | 
            -
                    version: 1.4.6
         | 
| 117 | 
            -
              type: :development
         | 
| 118 | 
            -
              prerelease: false
         | 
| 119 | 
            -
              version_requirements: !ruby/object:Gem::Requirement
         | 
| 120 | 
            -
                requirements:
         | 
| 121 | 
            -
                - - "~>"
         | 
| 122 | 
            -
                  - !ruby/object:Gem::Version
         | 
| 123 | 
            -
                    version: 1.4.6
         | 
| 124 110 | 
             
            - !ruby/object:Gem::Dependency
         | 
| 125 111 | 
             
              name: rake
         | 
| 126 112 | 
             
              requirement: !ruby/object:Gem::Requirement
         | 
| 127 113 | 
             
                requirements:
         | 
| 128 | 
            -
                - - " | 
| 114 | 
            +
                - - ">="
         | 
| 129 115 | 
             
                  - !ruby/object:Gem::Version
         | 
| 130 | 
            -
                    version: 0 | 
| 116 | 
            +
                    version: '0'
         | 
| 131 117 | 
             
              type: :development
         | 
| 132 118 | 
             
              prerelease: false
         | 
| 133 119 | 
             
              version_requirements: !ruby/object:Gem::Requirement
         | 
| 134 120 | 
             
                requirements:
         | 
| 135 | 
            -
                - - " | 
| 121 | 
            +
                - - ">="
         | 
| 136 122 | 
             
                  - !ruby/object:Gem::Version
         | 
| 137 | 
            -
                    version: 0 | 
| 123 | 
            +
                    version: '0'
         | 
| 138 124 | 
             
            - !ruby/object:Gem::Dependency
         | 
| 139 125 | 
             
              name: rspec
         | 
| 140 126 | 
             
              requirement: !ruby/object:Gem::Requirement
         | 
| 141 127 | 
             
                requirements:
         | 
| 142 | 
            -
                - - " | 
| 128 | 
            +
                - - ">="
         | 
| 143 129 | 
             
                  - !ruby/object:Gem::Version
         | 
| 144 | 
            -
                    version:  | 
| 130 | 
            +
                    version: '0'
         | 
| 145 131 | 
             
              type: :development
         | 
| 146 132 | 
             
              prerelease: false
         | 
| 147 133 | 
             
              version_requirements: !ruby/object:Gem::Requirement
         | 
| 148 134 | 
             
                requirements:
         | 
| 149 | 
            -
                - - " | 
| 135 | 
            +
                - - ">="
         | 
| 150 136 | 
             
                  - !ruby/object:Gem::Version
         | 
| 151 | 
            -
                    version:  | 
| 137 | 
            +
                    version: '0'
         | 
| 152 138 | 
             
            - !ruby/object:Gem::Dependency
         | 
| 153 139 | 
             
              name: webmock
         | 
| 154 | 
            -
              requirement: !ruby/object:Gem::Requirement
         | 
| 155 | 
            -
                requirements:
         | 
| 156 | 
            -
                - - "~>"
         | 
| 157 | 
            -
                  - !ruby/object:Gem::Version
         | 
| 158 | 
            -
                    version: '1.9'
         | 
| 159 | 
            -
              type: :development
         | 
| 160 | 
            -
              prerelease: false
         | 
| 161 | 
            -
              version_requirements: !ruby/object:Gem::Requirement
         | 
| 162 | 
            -
                requirements:
         | 
| 163 | 
            -
                - - "~>"
         | 
| 164 | 
            -
                  - !ruby/object:Gem::Version
         | 
| 165 | 
            -
                    version: '1.9'
         | 
| 166 | 
            -
            - !ruby/object:Gem::Dependency
         | 
| 167 | 
            -
              name: typhoeus
         | 
| 168 | 
            -
              requirement: !ruby/object:Gem::Requirement
         | 
| 169 | 
            -
                requirements:
         | 
| 170 | 
            -
                - - "~>"
         | 
| 171 | 
            -
                  - !ruby/object:Gem::Version
         | 
| 172 | 
            -
                    version: '0.3'
         | 
| 173 | 
            -
              type: :development
         | 
| 174 | 
            -
              prerelease: false
         | 
| 175 | 
            -
              version_requirements: !ruby/object:Gem::Requirement
         | 
| 176 | 
            -
                requirements:
         | 
| 177 | 
            -
                - - "~>"
         | 
| 178 | 
            -
                  - !ruby/object:Gem::Version
         | 
| 179 | 
            -
                    version: '0.3'
         | 
| 180 | 
            -
            - !ruby/object:Gem::Dependency
         | 
| 181 | 
            -
              name: ci_reporter
         | 
| 182 | 
            -
              requirement: !ruby/object:Gem::Requirement
         | 
| 183 | 
            -
                requirements:
         | 
| 184 | 
            -
                - - "~>"
         | 
| 185 | 
            -
                  - !ruby/object:Gem::Version
         | 
| 186 | 
            -
                    version: 1.7.0
         | 
| 187 | 
            -
              type: :development
         | 
| 188 | 
            -
              prerelease: false
         | 
| 189 | 
            -
              version_requirements: !ruby/object:Gem::Requirement
         | 
| 190 | 
            -
                requirements:
         | 
| 191 | 
            -
                - - "~>"
         | 
| 192 | 
            -
                  - !ruby/object:Gem::Version
         | 
| 193 | 
            -
                    version: 1.7.0
         | 
| 194 | 
            -
            - !ruby/object:Gem::Dependency
         | 
| 195 | 
            -
              name: rb-readline
         | 
| 196 140 | 
             
              requirement: !ruby/object:Gem::Requirement
         | 
| 197 141 | 
             
                requirements:
         | 
| 198 142 | 
             
                - - ">="
         | 
| @@ -206,7 +150,7 @@ dependencies: | |
| 206 150 | 
             
                  - !ruby/object:Gem::Version
         | 
| 207 151 | 
             
                    version: '0'
         | 
| 208 152 | 
             
            - !ruby/object:Gem::Dependency
         | 
| 209 | 
            -
              name:  | 
| 153 | 
            +
              name: rexml
         | 
| 210 154 | 
             
              requirement: !ruby/object:Gem::Requirement
         | 
| 211 155 | 
             
                requirements:
         | 
| 212 156 | 
             
                - - ">="
         | 
| @@ -220,7 +164,7 @@ dependencies: | |
| 220 164 | 
             
                  - !ruby/object:Gem::Version
         | 
| 221 165 | 
             
                    version: '0'
         | 
| 222 166 | 
             
            - !ruby/object:Gem::Dependency
         | 
| 223 | 
            -
              name:  | 
| 167 | 
            +
              name: typhoeus
         | 
| 224 168 | 
             
              requirement: !ruby/object:Gem::Requirement
         | 
| 225 169 | 
             
                requirements:
         | 
| 226 170 | 
             
                - - ">="
         | 
| @@ -234,7 +178,7 @@ dependencies: | |
| 234 178 | 
             
                  - !ruby/object:Gem::Version
         | 
| 235 179 | 
             
                    version: '0'
         | 
| 236 180 | 
             
            - !ruby/object:Gem::Dependency
         | 
| 237 | 
            -
              name:  | 
| 181 | 
            +
              name: ci_reporter_rspec
         | 
| 238 182 | 
             
              requirement: !ruby/object:Gem::Requirement
         | 
| 239 183 | 
             
                requirements:
         | 
| 240 184 | 
             
                - - ">="
         | 
| @@ -248,21 +192,7 @@ dependencies: | |
| 248 192 | 
             
                  - !ruby/object:Gem::Version
         | 
| 249 193 | 
             
                    version: '0'
         | 
| 250 194 | 
             
            - !ruby/object:Gem::Dependency
         | 
| 251 | 
            -
              name:  | 
| 252 | 
            -
              requirement: !ruby/object:Gem::Requirement
         | 
| 253 | 
            -
                requirements:
         | 
| 254 | 
            -
                - - "~>"
         | 
| 255 | 
            -
                  - !ruby/object:Gem::Version
         | 
| 256 | 
            -
                    version: 3.0.8
         | 
| 257 | 
            -
              type: :development
         | 
| 258 | 
            -
              prerelease: false
         | 
| 259 | 
            -
              version_requirements: !ruby/object:Gem::Requirement
         | 
| 260 | 
            -
                requirements:
         | 
| 261 | 
            -
                - - "~>"
         | 
| 262 | 
            -
                  - !ruby/object:Gem::Version
         | 
| 263 | 
            -
                    version: 3.0.8
         | 
| 264 | 
            -
            - !ruby/object:Gem::Dependency
         | 
| 265 | 
            -
              name: guard-rspec
         | 
| 195 | 
            +
              name: simplecov-rcov
         | 
| 266 196 | 
             
              requirement: !ruby/object:Gem::Requirement
         | 
| 267 197 | 
             
                requirements:
         | 
| 268 198 | 
             
                - - ">="
         | 
| @@ -343,6 +273,7 @@ files: | |
| 343 273 | 
             
            - lib/spark_api/models/listing_cart.rb
         | 
| 344 274 | 
             
            - lib/spark_api/models/listing_meta_translations.rb
         | 
| 345 275 | 
             
            - lib/spark_api/models/market_statistics.rb
         | 
| 276 | 
            +
            - lib/spark_api/models/media.rb
         | 
| 346 277 | 
             
            - lib/spark_api/models/message.rb
         | 
| 347 278 | 
             
            - lib/spark_api/models/news_feed_meta.rb
         | 
| 348 279 | 
             
            - lib/spark_api/models/newsfeed.rb
         | 
| @@ -603,209 +534,208 @@ required_rubygems_version: !ruby/object:Gem::Requirement | |
| 603 534 | 
             
                - !ruby/object:Gem::Version
         | 
| 604 535 | 
             
                  version: '1.8'
         | 
| 605 536 | 
             
            requirements: []
         | 
| 606 | 
            -
             | 
| 607 | 
            -
            rubygems_version: 2.7.6
         | 
| 537 | 
            +
            rubygems_version: 3.1.6
         | 
| 608 538 | 
             
            signing_key: 
         | 
| 609 539 | 
             
            specification_version: 4
         | 
| 610 540 | 
             
            summary: A library for interacting with the Spark web services.
         | 
| 611 541 | 
             
            test_files:
         | 
| 612 | 
            -
            - spec/fixtures/accounts/all.json
         | 
| 613 | 
            -
            - spec/fixtures/accounts/my.json
         | 
| 614 | 
            -
            - spec/fixtures/accounts/my_portal.json
         | 
| 615 | 
            -
            - spec/fixtures/accounts/my_put.json
         | 
| 616 | 
            -
            - spec/fixtures/accounts/my_save.json
         | 
| 617 | 
            -
            - spec/fixtures/accounts/office.json
         | 
| 618 | 
            -
            - spec/fixtures/accounts/password_save.json
         | 
| 619 542 | 
             
            - spec/fixtures/activities/get.json
         | 
| 620 | 
            -
            - spec/fixtures/ | 
| 621 | 
            -
            - spec/fixtures/base.json
         | 
| 622 | 
            -
            - spec/fixtures/comments/get.json
         | 
| 623 | 
            -
            - spec/fixtures/comments/new.json
         | 
| 624 | 
            -
            - spec/fixtures/comments/post.json
         | 
| 625 | 
            -
            - spec/fixtures/contacts/contacts.json
         | 
| 626 | 
            -
            - spec/fixtures/contacts/my.json
         | 
| 627 | 
            -
            - spec/fixtures/contacts/new.json
         | 
| 628 | 
            -
            - spec/fixtures/contacts/new_empty.json
         | 
| 629 | 
            -
            - spec/fixtures/contacts/new_notify.json
         | 
| 630 | 
            -
            - spec/fixtures/contacts/post.json
         | 
| 631 | 
            -
            - spec/fixtures/contacts/tags.json
         | 
| 632 | 
            -
            - spec/fixtures/contacts/vow_accounts/edit.json
         | 
| 633 | 
            -
            - spec/fixtures/contacts/vow_accounts/get.json
         | 
| 634 | 
            -
            - spec/fixtures/contacts/vow_accounts/new.json
         | 
| 635 | 
            -
            - spec/fixtures/contacts/vow_accounts/post.json
         | 
| 636 | 
            -
            - spec/fixtures/count.json
         | 
| 637 | 
            -
            - spec/fixtures/empty.json
         | 
| 638 | 
            -
            - spec/fixtures/errors/expired.json
         | 
| 543 | 
            +
            - spec/fixtures/listing_meta_translations/get.json
         | 
| 639 544 | 
             
            - spec/fixtures/errors/failure.json
         | 
| 640 | 
            -
            - spec/fixtures/errors/ | 
| 545 | 
            +
            - spec/fixtures/errors/expired.json
         | 
| 641 546 | 
             
            - spec/fixtures/errors/failure_with_msg.json
         | 
| 642 | 
            -
            - spec/fixtures/ | 
| 643 | 
            -
            - spec/fixtures/ | 
| 644 | 
            -
            - spec/fixtures/ | 
| 645 | 
            -
            - spec/fixtures/ | 
| 646 | 
            -
            - spec/fixtures/ | 
| 647 | 
            -
            - spec/fixtures/ | 
| 648 | 
            -
            - spec/fixtures/ | 
| 649 | 
            -
            - spec/fixtures/ | 
| 650 | 
            -
            - spec/fixtures/listing_carts/add_listing_post.json
         | 
| 651 | 
            -
            - spec/fixtures/listing_carts/add_listings.json
         | 
| 652 | 
            -
            - spec/fixtures/listing_carts/add_listings_post.json
         | 
| 653 | 
            -
            - spec/fixtures/listing_carts/add_portal_cart_listings.json
         | 
| 654 | 
            -
            - spec/fixtures/listing_carts/add_portal_cart_listings_post.json
         | 
| 655 | 
            -
            - spec/fixtures/listing_carts/empty.json
         | 
| 656 | 
            -
            - spec/fixtures/listing_carts/listing_cart.json
         | 
| 657 | 
            -
            - spec/fixtures/listing_carts/listing_portal_cart.json
         | 
| 658 | 
            -
            - spec/fixtures/listing_carts/new.json
         | 
| 659 | 
            -
            - spec/fixtures/listing_carts/new_portal_cart.json
         | 
| 660 | 
            -
            - spec/fixtures/listing_carts/post.json
         | 
| 661 | 
            -
            - spec/fixtures/listing_carts/post_portal_cart.json
         | 
| 662 | 
            -
            - spec/fixtures/listing_carts/put.json
         | 
| 663 | 
            -
            - spec/fixtures/listing_carts/put_ids.json
         | 
| 664 | 
            -
            - spec/fixtures/listing_carts/put_name.json
         | 
| 665 | 
            -
            - spec/fixtures/listing_carts/remove_listing.json
         | 
| 666 | 
            -
            - spec/fixtures/listing_meta_translations/get.json
         | 
| 667 | 
            -
            - spec/fixtures/listings/constraints.json
         | 
| 668 | 
            -
            - spec/fixtures/listings/constraints_with_pagination.json
         | 
| 669 | 
            -
            - spec/fixtures/listings/document_index.json
         | 
| 670 | 
            -
            - spec/fixtures/listings/floplans_index.json
         | 
| 547 | 
            +
            - spec/fixtures/errors/failure_with_constraint.json
         | 
| 548 | 
            +
            - spec/fixtures/notifications/new.json
         | 
| 549 | 
            +
            - spec/fixtures/notifications/new_empty.json
         | 
| 550 | 
            +
            - spec/fixtures/notifications/post.json
         | 
| 551 | 
            +
            - spec/fixtures/notifications/notifications.json
         | 
| 552 | 
            +
            - spec/fixtures/notifications/unread.json
         | 
| 553 | 
            +
            - spec/fixtures/notifications/mark_read.json
         | 
| 554 | 
            +
            - spec/fixtures/listings/tour_of_homes_search.json
         | 
| 671 555 | 
             
            - spec/fixtures/listings/multiple.json
         | 
| 672 | 
            -
            - spec/fixtures/listings/ | 
| 556 | 
            +
            - spec/fixtures/listings/virtual_tours_index.json
         | 
| 557 | 
            +
            - spec/fixtures/listings/shared_listing_post.json
         | 
| 558 | 
            +
            - spec/fixtures/listings/with_videos.json
         | 
| 559 | 
            +
            - spec/fixtures/listings/reorder_photo.json
         | 
| 673 560 | 
             
            - spec/fixtures/listings/open_houses.json
         | 
| 674 | 
            -
            - spec/fixtures/listings/ | 
| 675 | 
            -
            - spec/fixtures/listings/photos/index.json
         | 
| 561 | 
            +
            - spec/fixtures/listings/tour_of_homes.json
         | 
| 676 562 | 
             
            - spec/fixtures/listings/photos/new.json
         | 
| 563 | 
            +
            - spec/fixtures/listings/photos/batch_delete.json
         | 
| 677 564 | 
             
            - spec/fixtures/listings/photos/post.json
         | 
| 678 565 | 
             
            - spec/fixtures/listings/photos/rollback.json
         | 
| 566 | 
            +
            - spec/fixtures/listings/photos/index.json
         | 
| 679 567 | 
             
            - spec/fixtures/listings/photos/rotate.json
         | 
| 568 | 
            +
            - spec/fixtures/listings/with_vtour.json
         | 
| 680 569 | 
             
            - spec/fixtures/listings/put.json
         | 
| 681 | 
            -
            - spec/fixtures/listings/ | 
| 682 | 
            -
            - spec/fixtures/listings/ | 
| 570 | 
            +
            - spec/fixtures/listings/floplans_index.json
         | 
| 571 | 
            +
            - spec/fixtures/listings/videos_index.json
         | 
| 572 | 
            +
            - spec/fixtures/listings/constraints_with_pagination.json
         | 
| 573 | 
            +
            - spec/fixtures/listings/document_index.json
         | 
| 574 | 
            +
            - spec/fixtures/listings/constraints.json
         | 
| 575 | 
            +
            - spec/fixtures/listings/with_permissions.json
         | 
| 683 576 | 
             
            - spec/fixtures/listings/rental_calendar.json
         | 
| 684 | 
            -
            - spec/fixtures/listings/ | 
| 577 | 
            +
            - spec/fixtures/listings/with_rental_calendar.json
         | 
| 685 578 | 
             
            - spec/fixtures/listings/shared_listing_get.json
         | 
| 579 | 
            +
            - spec/fixtures/listings/put_reorder_photo.json
         | 
| 686 580 | 
             
            - spec/fixtures/listings/shared_listing_new.json
         | 
| 687 | 
            -
            - spec/fixtures/listings/ | 
| 688 | 
            -
            - spec/fixtures/listings/ | 
| 689 | 
            -
            - spec/fixtures/listings/tour_of_homes_search.json
         | 
| 690 | 
            -
            - spec/fixtures/listings/videos_index.json
         | 
| 691 | 
            -
            - spec/fixtures/listings/virtual_tours_index.json
         | 
| 581 | 
            +
            - spec/fixtures/listings/put_expiration_date.json
         | 
| 582 | 
            +
            - spec/fixtures/listings/with_supplement.json
         | 
| 692 583 | 
             
            - spec/fixtures/listings/with_documents.json
         | 
| 693 | 
            -
            - spec/fixtures/listings/with_permissions.json
         | 
| 694 584 | 
             
            - spec/fixtures/listings/with_photos.json
         | 
| 695 | 
            -
            - spec/fixtures/listings/ | 
| 696 | 
            -
            - spec/fixtures/listings/with_supplement.json
         | 
| 697 | 
            -
            - spec/fixtures/listings/with_videos.json
         | 
| 698 | 
            -
            - spec/fixtures/listings/with_vtour.json
         | 
| 699 | 
            -
            - spec/fixtures/logo_fbs.png
         | 
| 700 | 
            -
            - spec/fixtures/messages/count.json
         | 
| 701 | 
            -
            - spec/fixtures/messages/get.json
         | 
| 585 | 
            +
            - spec/fixtures/listings/no_subresources.json
         | 
| 702 586 | 
             
            - spec/fixtures/messages/new.json
         | 
| 703 587 | 
             
            - spec/fixtures/messages/new_empty.json
         | 
| 704 | 
            -
            - spec/fixtures/messages/new_with_recipients.json
         | 
| 705 588 | 
             
            - spec/fixtures/messages/post.json
         | 
| 706 | 
            -
            - spec/fixtures/ | 
| 707 | 
            -
            - spec/fixtures/ | 
| 708 | 
            -
            - spec/fixtures/ | 
| 709 | 
            -
            - spec/fixtures/ | 
| 710 | 
            -
            - spec/fixtures/notes/add.json
         | 
| 711 | 
            -
            - spec/fixtures/notes/agent_shared.json
         | 
| 712 | 
            -
            - spec/fixtures/notes/agent_shared_empty.json
         | 
| 713 | 
            -
            - spec/fixtures/notes/new.json
         | 
| 714 | 
            -
            - spec/fixtures/notifications/mark_read.json
         | 
| 715 | 
            -
            - spec/fixtures/notifications/new.json
         | 
| 716 | 
            -
            - spec/fixtures/notifications/new_empty.json
         | 
| 717 | 
            -
            - spec/fixtures/notifications/notifications.json
         | 
| 718 | 
            -
            - spec/fixtures/notifications/post.json
         | 
| 719 | 
            -
            - spec/fixtures/notifications/unread.json
         | 
| 720 | 
            -
            - spec/fixtures/oauth2/access.json
         | 
| 721 | 
            -
            - spec/fixtures/oauth2/access_with_old_refresh.json
         | 
| 589 | 
            +
            - spec/fixtures/messages/count.json
         | 
| 590 | 
            +
            - spec/fixtures/messages/new_with_recipients.json
         | 
| 591 | 
            +
            - spec/fixtures/messages/get.json
         | 
| 592 | 
            +
            - spec/fixtures/logo_fbs.png
         | 
| 722 593 | 
             
            - spec/fixtures/oauth2/access_with_refresh.json
         | 
| 594 | 
            +
            - spec/fixtures/oauth2/access_with_old_refresh.json
         | 
| 595 | 
            +
            - spec/fixtures/oauth2/access.json
         | 
| 596 | 
            +
            - spec/fixtures/oauth2/refresh_body.json
         | 
| 597 | 
            +
            - spec/fixtures/oauth2/password_body.json
         | 
| 723 598 | 
             
            - spec/fixtures/oauth2/authorization_code_body.json
         | 
| 724 599 | 
             
            - spec/fixtures/oauth2/error.json
         | 
| 725 | 
            -
            - spec/fixtures/ | 
| 726 | 
            -
            - spec/fixtures/ | 
| 727 | 
            -
            - spec/fixtures/ | 
| 728 | 
            -
            - spec/fixtures/ | 
| 729 | 
            -
            - spec/fixtures/ | 
| 730 | 
            -
            - spec/fixtures/ | 
| 731 | 
            -
            - spec/fixtures/ | 
| 732 | 
            -
            - spec/fixtures/ | 
| 733 | 
            -
            - spec/fixtures/ | 
| 600 | 
            +
            - spec/fixtures/comments/new.json
         | 
| 601 | 
            +
            - spec/fixtures/comments/post.json
         | 
| 602 | 
            +
            - spec/fixtures/comments/get.json
         | 
| 603 | 
            +
            - spec/fixtures/success.json
         | 
| 604 | 
            +
            - spec/fixtures/notes/new.json
         | 
| 605 | 
            +
            - spec/fixtures/notes/agent_shared_empty.json
         | 
| 606 | 
            +
            - spec/fixtures/notes/add.json
         | 
| 607 | 
            +
            - spec/fixtures/notes/agent_shared.json
         | 
| 608 | 
            +
            - spec/fixtures/count.json
         | 
| 609 | 
            +
            - spec/fixtures/accounts/my.json
         | 
| 610 | 
            +
            - spec/fixtures/accounts/office.json
         | 
| 611 | 
            +
            - spec/fixtures/accounts/my_portal.json
         | 
| 612 | 
            +
            - spec/fixtures/accounts/my_put.json
         | 
| 613 | 
            +
            - spec/fixtures/accounts/password_save.json
         | 
| 614 | 
            +
            - spec/fixtures/accounts/my_save.json
         | 
| 615 | 
            +
            - spec/fixtures/accounts/all.json
         | 
| 616 | 
            +
            - spec/fixtures/sharedlinks/success.json
         | 
| 617 | 
            +
            - spec/fixtures/finders.json
         | 
| 618 | 
            +
            - spec/fixtures/authentication_failure.json
         | 
| 619 | 
            +
            - spec/fixtures/idx_links/get.json
         | 
| 620 | 
            +
            - spec/fixtures/session.json
         | 
| 734 621 | 
             
            - spec/fixtures/property_types/property_types.json
         | 
| 735 | 
            -
            - spec/fixtures/rules/get.json
         | 
| 736 | 
            -
            - spec/fixtures/saved_searches/get.json
         | 
| 737 | 
            -
            - spec/fixtures/saved_searches/get_provided.json
         | 
| 738 622 | 
             
            - spec/fixtures/saved_searches/new.json
         | 
| 739 | 
            -
            - spec/fixtures/saved_searches/post.json
         | 
| 740 623 | 
             
            - spec/fixtures/saved_searches/update.json
         | 
| 741 | 
            -
            - spec/fixtures/saved_searches/ | 
| 742 | 
            -
            - spec/fixtures/saved_searches/with_newsfeed.json
         | 
| 624 | 
            +
            - spec/fixtures/saved_searches/post.json
         | 
| 743 625 | 
             
            - spec/fixtures/saved_searches/without_newsfeed.json
         | 
| 626 | 
            +
            - spec/fixtures/saved_searches/with_newsfeed.json
         | 
| 627 | 
            +
            - spec/fixtures/saved_searches/get_provided.json
         | 
| 628 | 
            +
            - spec/fixtures/saved_searches/with_inactive_newsfeed.json
         | 
| 629 | 
            +
            - spec/fixtures/saved_searches/get.json
         | 
| 744 630 | 
             
            - spec/fixtures/search_templates/quick_searches/get.json
         | 
| 745 | 
            -
            - spec/fixtures/session.json
         | 
| 746 | 
            -
            - spec/fixtures/sharedlinks/success.json
         | 
| 747 | 
            -
            - spec/fixtures/sorts/get.json
         | 
| 748 631 | 
             
            - spec/fixtures/standardfields/city.json
         | 
| 749 | 
            -
            - spec/fixtures/standardfields/nearby.json
         | 
| 750 632 | 
             
            - spec/fixtures/standardfields/standardfields.json
         | 
| 751 633 | 
             
            - spec/fixtures/standardfields/stateorprovince.json
         | 
| 752 | 
            -
            - spec/fixtures/ | 
| 753 | 
            -
            - spec/ | 
| 754 | 
            -
            - spec/ | 
| 755 | 
            -
            - spec/ | 
| 756 | 
            -
            - spec/ | 
| 757 | 
            -
            - spec/ | 
| 758 | 
            -
            - spec/ | 
| 759 | 
            -
            - spec/ | 
| 634 | 
            +
            - spec/fixtures/standardfields/nearby.json
         | 
| 635 | 
            +
            - spec/fixtures/generic_delete.json
         | 
| 636 | 
            +
            - spec/fixtures/fields/order_a.json
         | 
| 637 | 
            +
            - spec/fixtures/fields/settings.json
         | 
| 638 | 
            +
            - spec/fixtures/fields/order.json
         | 
| 639 | 
            +
            - spec/fixtures/contacts/my.json
         | 
| 640 | 
            +
            - spec/fixtures/contacts/new.json
         | 
| 641 | 
            +
            - spec/fixtures/contacts/new_notify.json
         | 
| 642 | 
            +
            - spec/fixtures/contacts/new_empty.json
         | 
| 643 | 
            +
            - spec/fixtures/contacts/post.json
         | 
| 644 | 
            +
            - spec/fixtures/contacts/contacts.json
         | 
| 645 | 
            +
            - spec/fixtures/contacts/vow_accounts/new.json
         | 
| 646 | 
            +
            - spec/fixtures/contacts/vow_accounts/post.json
         | 
| 647 | 
            +
            - spec/fixtures/contacts/vow_accounts/get.json
         | 
| 648 | 
            +
            - spec/fixtures/contacts/vow_accounts/edit.json
         | 
| 649 | 
            +
            - spec/fixtures/contacts/tags.json
         | 
| 650 | 
            +
            - spec/fixtures/rules/get.json
         | 
| 651 | 
            +
            - spec/fixtures/newsfeeds/inactive.json
         | 
| 652 | 
            +
            - spec/fixtures/newsfeeds/meta.json
         | 
| 653 | 
            +
            - spec/fixtures/newsfeeds/get.json
         | 
| 654 | 
            +
            - spec/fixtures/listing_carts/post_portal_cart.json
         | 
| 655 | 
            +
            - spec/fixtures/listing_carts/listing_portal_cart.json
         | 
| 656 | 
            +
            - spec/fixtures/listing_carts/put_ids.json
         | 
| 657 | 
            +
            - spec/fixtures/listing_carts/new.json
         | 
| 658 | 
            +
            - spec/fixtures/listing_carts/add_listings.json
         | 
| 659 | 
            +
            - spec/fixtures/listing_carts/post.json
         | 
| 660 | 
            +
            - spec/fixtures/listing_carts/put.json
         | 
| 661 | 
            +
            - spec/fixtures/listing_carts/add_listing_post.json
         | 
| 662 | 
            +
            - spec/fixtures/listing_carts/new_portal_cart.json
         | 
| 663 | 
            +
            - spec/fixtures/listing_carts/add_portal_cart_listings_post.json
         | 
| 664 | 
            +
            - spec/fixtures/listing_carts/put_name.json
         | 
| 665 | 
            +
            - spec/fixtures/listing_carts/add_listings_post.json
         | 
| 666 | 
            +
            - spec/fixtures/listing_carts/remove_listing.json
         | 
| 667 | 
            +
            - spec/fixtures/listing_carts/add_listing.json
         | 
| 668 | 
            +
            - spec/fixtures/listing_carts/add_portal_cart_listings.json
         | 
| 669 | 
            +
            - spec/fixtures/listing_carts/empty.json
         | 
| 670 | 
            +
            - spec/fixtures/listing_carts/listing_cart.json
         | 
| 671 | 
            +
            - spec/fixtures/portal/my.json
         | 
| 672 | 
            +
            - spec/fixtures/portal/new.json
         | 
| 673 | 
            +
            - spec/fixtures/portal/post.json
         | 
| 674 | 
            +
            - spec/fixtures/portal/disable.json
         | 
| 675 | 
            +
            - spec/fixtures/portal/my_non_existant.json
         | 
| 676 | 
            +
            - spec/fixtures/portal/enable.json
         | 
| 677 | 
            +
            - spec/fixtures/no_results.json
         | 
| 678 | 
            +
            - spec/fixtures/base.json
         | 
| 679 | 
            +
            - spec/fixtures/empty.json
         | 
| 680 | 
            +
            - spec/fixtures/generic_failure.json
         | 
| 681 | 
            +
            - spec/fixtures/sorts/get.json
         | 
| 682 | 
            +
            - spec/fixtures/oauth2_error.json
         | 
| 683 | 
            +
            - spec/unit/spark_api_spec.rb
         | 
| 684 | 
            +
            - spec/unit/spark_api/multi_client_spec.rb
         | 
| 685 | 
            +
            - spec/unit/spark_api/request_spec.rb
         | 
| 686 | 
            +
            - spec/unit/spark_api/paginate_spec.rb
         | 
| 760 687 | 
             
            - spec/unit/spark_api/configuration/yaml_spec.rb
         | 
| 761 | 
            -
            - spec/unit/spark_api/ | 
| 762 | 
            -
            - spec/unit/spark_api/faraday_middleware_spec.rb
         | 
| 763 | 
            -
            - spec/unit/spark_api/models/account_report_spec.rb
         | 
| 764 | 
            -
            - spec/unit/spark_api/models/account_spec.rb
         | 
| 765 | 
            -
            - spec/unit/spark_api/models/activity_spec.rb
         | 
| 766 | 
            -
            - spec/unit/spark_api/models/base_spec.rb
         | 
| 767 | 
            -
            - spec/unit/spark_api/models/concerns/destroyable_spec.rb
         | 
| 768 | 
            -
            - spec/unit/spark_api/models/concerns/savable_spec.rb
         | 
| 769 | 
            -
            - spec/unit/spark_api/models/connect_prefs_spec.rb
         | 
| 770 | 
            -
            - spec/unit/spark_api/models/constraint_spec.rb
         | 
| 771 | 
            -
            - spec/unit/spark_api/models/contact_spec.rb
         | 
| 772 | 
            -
            - spec/unit/spark_api/models/defaultable_spec.rb
         | 
| 773 | 
            -
            - spec/unit/spark_api/models/dirty_spec.rb
         | 
| 688 | 
            +
            - spec/unit/spark_api/authentication_spec.rb
         | 
| 774 689 | 
             
            - spec/unit/spark_api/models/document_spec.rb
         | 
| 775 | 
            -
            - spec/unit/spark_api/models/ | 
| 690 | 
            +
            - spec/unit/spark_api/models/newsfeed_spec.rb
         | 
| 776 691 | 
             
            - spec/unit/spark_api/models/fields_spec.rb
         | 
| 777 | 
            -
            - spec/unit/spark_api/models/ | 
| 778 | 
            -
            - spec/unit/spark_api/models/ | 
| 779 | 
            -
            - spec/unit/spark_api/models/listing_cart_spec.rb
         | 
| 692 | 
            +
            - spec/unit/spark_api/models/concerns/destroyable_spec.rb
         | 
| 693 | 
            +
            - spec/unit/spark_api/models/concerns/savable_spec.rb
         | 
| 780 694 | 
             
            - spec/unit/spark_api/models/listing_meta_translations_spec.rb
         | 
| 781 | 
            -
            - spec/unit/spark_api/models/listing_spec.rb
         | 
| 782 | 
            -
            - spec/unit/spark_api/models/message_spec.rb
         | 
| 783 | 
            -
            - spec/unit/spark_api/models/news_feed_meta_spec.rb
         | 
| 784 | 
            -
            - spec/unit/spark_api/models/newsfeed_spec.rb
         | 
| 785 | 
            -
            - spec/unit/spark_api/models/note_spec.rb
         | 
| 786 695 | 
             
            - spec/unit/spark_api/models/notification_spec.rb
         | 
| 787 | 
            -
            - spec/unit/spark_api/models/open_house_spec.rb
         | 
| 788 | 
            -
            - spec/unit/spark_api/models/photo_spec.rb
         | 
| 789 | 
            -
            - spec/unit/spark_api/models/portal_spec.rb
         | 
| 790 696 | 
             
            - spec/unit/spark_api/models/property_types_spec.rb
         | 
| 697 | 
            +
            - spec/unit/spark_api/models/vow_account_spec.rb
         | 
| 791 698 | 
             
            - spec/unit/spark_api/models/rental_calendar_spec.rb
         | 
| 792 | 
            -
            - spec/unit/spark_api/models/rule_spec.rb
         | 
| 793 | 
            -
            - spec/unit/spark_api/models/saved_search_spec.rb
         | 
| 794 | 
            -
            - spec/unit/spark_api/models/search_template/quick_search_spec.rb
         | 
| 795 699 | 
             
            - spec/unit/spark_api/models/shared_link_spec.rb
         | 
| 700 | 
            +
            - spec/unit/spark_api/models/saved_search_spec.rb
         | 
| 701 | 
            +
            - spec/unit/spark_api/models/floplan_spec.rb
         | 
| 702 | 
            +
            - spec/unit/spark_api/models/base_spec.rb
         | 
| 703 | 
            +
            - spec/unit/spark_api/models/portal_spec.rb
         | 
| 796 704 | 
             
            - spec/unit/spark_api/models/shared_listing_spec.rb
         | 
| 797 | 
            -
            - spec/unit/spark_api/models/ | 
| 705 | 
            +
            - spec/unit/spark_api/models/dirty_spec.rb
         | 
| 706 | 
            +
            - spec/unit/spark_api/models/photo_spec.rb
         | 
| 798 707 | 
             
            - spec/unit/spark_api/models/standard_fields_spec.rb
         | 
| 799 | 
            -
            - spec/unit/spark_api/models/ | 
| 708 | 
            +
            - spec/unit/spark_api/models/constraint_spec.rb
         | 
| 709 | 
            +
            - spec/unit/spark_api/models/search_template/quick_search_spec.rb
         | 
| 800 710 | 
             
            - spec/unit/spark_api/models/system_info_spec.rb
         | 
| 801 | 
            -
            - spec/unit/spark_api/models/ | 
| 711 | 
            +
            - spec/unit/spark_api/models/news_feed_meta_spec.rb
         | 
| 802 712 | 
             
            - spec/unit/spark_api/models/video_spec.rb
         | 
| 803 713 | 
             
            - spec/unit/spark_api/models/virtual_tour_spec.rb
         | 
| 804 | 
            -
            - spec/unit/spark_api/models/ | 
| 805 | 
            -
            - spec/unit/spark_api/ | 
| 806 | 
            -
            - spec/unit/spark_api/ | 
| 807 | 
            -
            - spec/unit/spark_api/ | 
| 714 | 
            +
            - spec/unit/spark_api/models/connect_prefs_spec.rb
         | 
| 715 | 
            +
            - spec/unit/spark_api/models/account_spec.rb
         | 
| 716 | 
            +
            - spec/unit/spark_api/models/sort_spec.rb
         | 
| 717 | 
            +
            - spec/unit/spark_api/models/listing_cart_spec.rb
         | 
| 718 | 
            +
            - spec/unit/spark_api/models/note_spec.rb
         | 
| 719 | 
            +
            - spec/unit/spark_api/models/subresource_spec.rb
         | 
| 720 | 
            +
            - spec/unit/spark_api/models/listing_spec.rb
         | 
| 721 | 
            +
            - spec/unit/spark_api/models/account_report_spec.rb
         | 
| 722 | 
            +
            - spec/unit/spark_api/models/defaultable_spec.rb
         | 
| 723 | 
            +
            - spec/unit/spark_api/models/finders_spec.rb
         | 
| 724 | 
            +
            - spec/unit/spark_api/models/rule_spec.rb
         | 
| 725 | 
            +
            - spec/unit/spark_api/models/message_spec.rb
         | 
| 726 | 
            +
            - spec/unit/spark_api/models/contact_spec.rb
         | 
| 727 | 
            +
            - spec/unit/spark_api/models/open_house_spec.rb
         | 
| 728 | 
            +
            - spec/unit/spark_api/models/email_link_spec.rb
         | 
| 729 | 
            +
            - spec/unit/spark_api/models/tour_of_home_spec.rb
         | 
| 730 | 
            +
            - spec/unit/spark_api/models/activity_spec.rb
         | 
| 808 731 | 
             
            - spec/unit/spark_api/primary_array_spec.rb
         | 
| 809 | 
            -
            - spec/unit/spark_api/ | 
| 810 | 
            -
            - spec/unit/ | 
| 732 | 
            +
            - spec/unit/spark_api/configuration_spec.rb
         | 
| 733 | 
            +
            - spec/unit/spark_api/options_hash_spec.rb
         | 
| 734 | 
            +
            - spec/unit/spark_api/authentication/base_auth_spec.rb
         | 
| 735 | 
            +
            - spec/unit/spark_api/authentication/oauth2_impl/single_session_provider_spec.rb
         | 
| 736 | 
            +
            - spec/unit/spark_api/authentication/oauth2_impl/grant_type_base_spec.rb
         | 
| 737 | 
            +
            - spec/unit/spark_api/authentication/oauth2_impl/faraday_middleware_spec.rb
         | 
| 738 | 
            +
            - spec/unit/spark_api/authentication/oauth2_spec.rb
         | 
| 739 | 
            +
            - spec/unit/spark_api/authentication/api_auth_spec.rb
         | 
| 740 | 
            +
            - spec/unit/spark_api/faraday_middleware_spec.rb
         | 
| 811 741 | 
             
            - spec/spec_helper.rb
         |