spark_api 1.6.2 → 1.6.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: 967a5f3bb318a1587f3ffee8c3708a6067119c17f21bfa77cdaef3210259b064
4
- data.tar.gz: f49b25406b4b4b57a80fe6621fab36a1ea4e85a50e25637f2251278c789ccde2
3
+ metadata.gz: 1c6fe64e532ec608eaf6ab28400e609bac9509cc4435a308555647f807f82fe7
4
+ data.tar.gz: 981c83997a7c44bce902ad7eae8fe5eea87ff63ae6294973bd39d4183eb89f8e
5
5
  SHA512:
6
- metadata.gz: c32304629346b5d903d7ac51de3f01353f3078cc89e0c90c07a81c0245d44ca4788536f80d147d92058d5d92ec8ab06304509fe13ce3a546e6eb25b98948ffd7
7
- data.tar.gz: cc3246679de5467e4eab37a0c4d997d3ca2f3ddff5f38b2914c13514ae695cb0b22799356eca0e9430aaff7d871032e3e847da5bc201becbfbb1994811df533d
6
+ metadata.gz: b875967cf9b92b12f9cdb4dc6a17fb8fd1b03ec596eb60450ed7321ec2a1ef62bdf8c649c66413ca6d25eac18a3e38997058a6a69cf1416628c7e248a4d083ec
7
+ data.tar.gz: b51357fb93db5a941efa1503dacc8f0a16c04ed6f0ef971473947ee982c12df79bf2ea97970da686c8c02bf792f7f8cb4c38cba3e413f788fb3e02893fd28694
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.6.2
1
+ 1.6.3
@@ -11,7 +11,7 @@ module SparkApi
11
11
  # valid configuration options
12
12
  VALID_OPTION_KEYS = [:api_key, :api_secret, :api_user, :endpoint,
13
13
  :user_agent, :version, :ssl, :ssl_verify, :oauth2_provider, :authentication_mode,
14
- :auth_endpoint, :callback, :compress, :timeout, :middleware, :dictionary_version, :request_id_chain].freeze
14
+ :auth_endpoint, :callback, :compress, :timeout, :middleware, :dictionary_version, :request_id_chain, :user_ip_address].freeze
15
15
  OAUTH2_KEYS = [:authorization_uri, :access_uri, :client_id, :client_secret,
16
16
  # Requirements for authorization_code grant type
17
17
  :redirect_uri,
@@ -46,8 +46,10 @@ module SparkApi
46
46
  DEFAULT_MIDDLEWARE = 'spark_api'
47
47
  DEFAULT_DICTIONARY_VERSION = nil
48
48
  DEFAULT_REQUEST_ID_CHAIN = nil
49
+ DEFAULT_USER_IP_ADDRESS = nil
49
50
 
50
51
  X_SPARK_API_USER_AGENT = "X-SparkApi-User-Agent"
52
+ X_USER_IP_ADDRESS = "X-User-IP-Address"
51
53
 
52
54
  attr_accessor *VALID_OPTION_KEYS
53
55
  def configure
@@ -82,6 +84,7 @@ module SparkApi
82
84
  self.middleware = DEFAULT_MIDDLEWARE
83
85
  self.dictionary_version = DEFAULT_DICTIONARY_VERSION
84
86
  self.request_id_chain = DEFAULT_REQUEST_ID_CHAIN
87
+ self.user_ip_address = DEFAULT_USER_IP_ADDRESS
85
88
  self
86
89
  end
87
90
  end
@@ -14,6 +14,7 @@ describe SparkApi::Client, "Client config" do
14
14
  expect(SparkApi.api_key).to match("my_api_key")
15
15
  expect(SparkApi.timeout).to eq(5)
16
16
  expect(SparkApi.request_id_chain).to be_nil
17
+ expect(SparkApi.user_ip_address).to be_nil
17
18
  expect(SparkApi.middleware).to eq('spark_api')
18
19
  end
19
20
  end
@@ -26,7 +27,8 @@ describe SparkApi::Client, "Client config" do
26
27
  :auth_endpoint => "https://login.wade.dev.fbsdata.com",
27
28
  :endpoint => "http://api.wade.dev.fbsdata.com",
28
29
  :timeout => 15,
29
- :request_id_chain => 'foobar')
30
+ :request_id_chain => 'foobar',
31
+ :user_ip_address => 'barfoo')
30
32
 
31
33
  expect(client.api_key).to match("key_of_wade")
32
34
  expect(client.api_secret).to match("TopSecret")
@@ -36,6 +38,7 @@ describe SparkApi::Client, "Client config" do
36
38
  expect(client.version).to match("v1")
37
39
  expect(client.timeout).to eq(15)
38
40
  expect(client.request_id_chain).to eq('foobar')
41
+ expect(client.user_ip_address).to eq('barfoo')
39
42
  end
40
43
 
41
44
  it "should allow unverified ssl certificates when verification is off" do
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.6.2
4
+ version: 1.6.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Brandon Hornseth
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2022-11-07 00:00:00.000000000 Z
12
+ date: 2024-07-26 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: addressable
@@ -561,203 +561,203 @@ signing_key:
561
561
  specification_version: 4
562
562
  summary: A library for interacting with the Spark web services.
563
563
  test_files:
564
- - spec/fixtures/activities/get.json
565
- - spec/fixtures/finders.json
566
- - spec/fixtures/success.json
567
- - spec/fixtures/messages/post.json
564
+ - spec/fixtures/sharedlinks/success.json
565
+ - spec/fixtures/listing_carts/listing_cart.json
566
+ - spec/fixtures/listing_carts/new_portal_cart.json
567
+ - spec/fixtures/listing_carts/put_name.json
568
+ - spec/fixtures/listing_carts/add_listings.json
569
+ - spec/fixtures/listing_carts/add_listing_post.json
570
+ - spec/fixtures/listing_carts/add_portal_cart_listings_post.json
571
+ - spec/fixtures/listing_carts/add_portal_cart_listings.json
572
+ - spec/fixtures/listing_carts/put_ids.json
573
+ - spec/fixtures/listing_carts/post_portal_cart.json
574
+ - spec/fixtures/listing_carts/add_listings_post.json
575
+ - spec/fixtures/listing_carts/add_listing.json
576
+ - spec/fixtures/listing_carts/remove_listing.json
577
+ - spec/fixtures/listing_carts/empty.json
578
+ - spec/fixtures/listing_carts/put.json
579
+ - spec/fixtures/listing_carts/post.json
580
+ - spec/fixtures/listing_carts/listing_portal_cart.json
581
+ - spec/fixtures/listing_carts/new.json
582
+ - spec/fixtures/newsfeeds/get.json
583
+ - spec/fixtures/newsfeeds/inactive.json
584
+ - spec/fixtures/newsfeeds/meta.json
585
+ - spec/fixtures/errors/failure_with_msg.json
586
+ - spec/fixtures/errors/expired.json
587
+ - spec/fixtures/errors/failure.json
588
+ - spec/fixtures/errors/failure_with_constraint.json
568
589
  - spec/fixtures/messages/new_empty.json
569
- - spec/fixtures/messages/new.json
570
- - spec/fixtures/messages/new_with_recipients.json
571
590
  - spec/fixtures/messages/count.json
572
591
  - spec/fixtures/messages/get.json
573
- - spec/fixtures/portal/disable.json
574
- - spec/fixtures/portal/post.json
575
- - spec/fixtures/portal/new.json
576
- - spec/fixtures/portal/my.json
577
- - spec/fixtures/portal/my_non_existant.json
578
- - spec/fixtures/portal/enable.json
579
- - spec/fixtures/contacts/post.json
592
+ - spec/fixtures/messages/new_with_recipients.json
593
+ - spec/fixtures/messages/post.json
594
+ - spec/fixtures/messages/new.json
595
+ - spec/fixtures/sorts/get.json
596
+ - spec/fixtures/fields/order_a.json
597
+ - spec/fixtures/fields/settings.json
598
+ - spec/fixtures/fields/order.json
599
+ - spec/fixtures/notifications/new_empty.json
600
+ - spec/fixtures/notifications/unread.json
601
+ - spec/fixtures/notifications/mark_read.json
602
+ - spec/fixtures/notifications/notifications.json
603
+ - spec/fixtures/notifications/post.json
604
+ - spec/fixtures/notifications/new.json
605
+ - spec/fixtures/activities/get.json
606
+ - spec/fixtures/property_types/property_types.json
607
+ - spec/fixtures/listing_meta_translations/get.json
608
+ - spec/fixtures/no_results.json
609
+ - spec/fixtures/comments/get.json
610
+ - spec/fixtures/comments/post.json
611
+ - spec/fixtures/comments/new.json
612
+ - spec/fixtures/count.json
613
+ - spec/fixtures/oauth2/error.json
614
+ - spec/fixtures/oauth2/access.json
615
+ - spec/fixtures/oauth2/access_with_refresh.json
616
+ - spec/fixtures/oauth2/access_with_old_refresh.json
617
+ - spec/fixtures/oauth2/refresh_body.json
618
+ - spec/fixtures/oauth2/authorization_code_body.json
619
+ - spec/fixtures/oauth2/password_body.json
620
+ - spec/fixtures/standardfields/nearby.json
621
+ - spec/fixtures/standardfields/standardfields.json
622
+ - spec/fixtures/standardfields/city.json
623
+ - spec/fixtures/standardfields/stateorprovince.json
624
+ - spec/fixtures/accounts/office.json
625
+ - spec/fixtures/accounts/my_put.json
626
+ - spec/fixtures/accounts/all.json
627
+ - spec/fixtures/accounts/my_portal.json
628
+ - spec/fixtures/accounts/my.json
629
+ - spec/fixtures/accounts/password_save.json
630
+ - spec/fixtures/accounts/my_save.json
631
+ - spec/fixtures/session.json
632
+ - spec/fixtures/generic_delete.json
633
+ - spec/fixtures/generic_failure.json
634
+ - spec/fixtures/success.json
635
+ - spec/fixtures/idx_links/get.json
636
+ - spec/fixtures/empty.json
580
637
  - spec/fixtures/contacts/new_empty.json
581
- - spec/fixtures/contacts/tags.json
582
- - spec/fixtures/contacts/new.json
583
638
  - spec/fixtures/contacts/new_notify.json
584
- - spec/fixtures/contacts/my.json
585
639
  - spec/fixtures/contacts/contacts.json
586
- - spec/fixtures/contacts/vow_accounts/post.json
587
- - spec/fixtures/contacts/vow_accounts/new.json
640
+ - spec/fixtures/contacts/tags.json
588
641
  - spec/fixtures/contacts/vow_accounts/edit.json
589
642
  - spec/fixtures/contacts/vow_accounts/get.json
590
- - spec/fixtures/property_types/property_types.json
591
- - spec/fixtures/oauth2/access_with_refresh.json
592
- - spec/fixtures/oauth2/authorization_code_body.json
593
- - spec/fixtures/oauth2/access.json
594
- - spec/fixtures/oauth2/error.json
595
- - spec/fixtures/oauth2/refresh_body.json
596
- - spec/fixtures/oauth2/password_body.json
597
- - spec/fixtures/oauth2/access_with_old_refresh.json
598
- - spec/fixtures/base.json
599
- - spec/fixtures/logo_fbs.png
600
- - spec/fixtures/listings/shared_listing_get.json
643
+ - spec/fixtures/contacts/vow_accounts/post.json
644
+ - spec/fixtures/contacts/vow_accounts/new.json
645
+ - spec/fixtures/contacts/my.json
646
+ - spec/fixtures/contacts/post.json
647
+ - spec/fixtures/contacts/new.json
648
+ - spec/fixtures/oauth2_error.json
649
+ - spec/fixtures/listings/no_subresources.json
601
650
  - spec/fixtures/listings/put_expiration_date.json
602
- - spec/fixtures/listings/open_houses.json
603
651
  - spec/fixtures/listings/constraints_with_pagination.json
604
- - spec/fixtures/listings/with_rental_calendar.json
605
- - spec/fixtures/listings/with_videos.json
606
- - spec/fixtures/listings/shared_listing_new.json
607
- - spec/fixtures/listings/multiple.json
652
+ - spec/fixtures/listings/floplans_index.json
608
653
  - spec/fixtures/listings/document_index.json
609
- - spec/fixtures/listings/constraints.json
610
654
  - spec/fixtures/listings/shared_listing_post.json
611
655
  - spec/fixtures/listings/reorder_photo.json
612
- - spec/fixtures/listings/floplans_index.json
656
+ - spec/fixtures/listings/shared_listing_get.json
657
+ - spec/fixtures/listings/photos/rollback.json
658
+ - spec/fixtures/listings/photos/rotate.json
659
+ - spec/fixtures/listings/photos/index.json
660
+ - spec/fixtures/listings/photos/batch_delete.json
661
+ - spec/fixtures/listings/photos/post.json
662
+ - spec/fixtures/listings/photos/new.json
663
+ - spec/fixtures/listings/with_supplement.json
664
+ - spec/fixtures/listings/with_documents.json
665
+ - spec/fixtures/listings/with_rental_calendar.json
666
+ - spec/fixtures/listings/with_photos.json
613
667
  - spec/fixtures/listings/rental_calendar.json
614
- - spec/fixtures/listings/put.json
668
+ - spec/fixtures/listings/put_reorder_photo.json
615
669
  - spec/fixtures/listings/videos_index.json
616
- - spec/fixtures/listings/tour_of_homes_search.json
617
- - spec/fixtures/listings/tour_of_homes.json
670
+ - spec/fixtures/listings/multiple.json
671
+ - spec/fixtures/listings/with_videos.json
618
672
  - spec/fixtures/listings/virtual_tours_index.json
619
- - spec/fixtures/listings/with_documents.json
673
+ - spec/fixtures/listings/open_houses.json
674
+ - spec/fixtures/listings/tour_of_homes.json
675
+ - spec/fixtures/listings/put.json
676
+ - spec/fixtures/listings/shared_listing_new.json
677
+ - spec/fixtures/listings/constraints.json
678
+ - spec/fixtures/listings/tour_of_homes_search.json
620
679
  - spec/fixtures/listings/with_vtour.json
621
- - spec/fixtures/listings/with_supplement.json
622
- - spec/fixtures/listings/with_photos.json
623
- - spec/fixtures/listings/put_reorder_photo.json
624
680
  - spec/fixtures/listings/with_permissions.json
625
- - spec/fixtures/listings/no_subresources.json
626
- - spec/fixtures/listings/photos/post.json
627
- - spec/fixtures/listings/photos/rotate.json
628
- - spec/fixtures/listings/photos/rollback.json
629
- - spec/fixtures/listings/photos/new.json
630
- - spec/fixtures/listings/photos/index.json
631
- - spec/fixtures/listings/photos/batch_delete.json
681
+ - spec/fixtures/notes/agent_shared.json
632
682
  - spec/fixtures/notes/add.json
633
- - spec/fixtures/notes/new.json
634
683
  - spec/fixtures/notes/agent_shared_empty.json
635
- - spec/fixtures/notes/agent_shared.json
636
- - spec/fixtures/sharedlinks/success.json
637
- - spec/fixtures/errors/failure_with_constraint.json
638
- - spec/fixtures/errors/failure_with_msg.json
639
- - spec/fixtures/errors/expired.json
640
- - spec/fixtures/errors/failure.json
641
- - spec/fixtures/generic_delete.json
642
- - spec/fixtures/search_templates/quick_searches/get.json
643
- - spec/fixtures/session.json
644
- - spec/fixtures/accounts/office.json
645
- - spec/fixtures/accounts/my.json
646
- - spec/fixtures/accounts/password_save.json
647
- - spec/fixtures/accounts/my_portal.json
648
- - spec/fixtures/accounts/all.json
649
- - spec/fixtures/accounts/my_save.json
650
- - spec/fixtures/accounts/my_put.json
651
- - spec/fixtures/empty.json
652
- - spec/fixtures/no_results.json
653
- - spec/fixtures/newsfeeds/meta.json
654
- - spec/fixtures/newsfeeds/inactive.json
655
- - spec/fixtures/newsfeeds/get.json
656
- - spec/fixtures/saved_searches/post.json
684
+ - spec/fixtures/notes/new.json
657
685
  - spec/fixtures/saved_searches/update.json
658
- - spec/fixtures/saved_searches/without_newsfeed.json
659
686
  - spec/fixtures/saved_searches/with_newsfeed.json
687
+ - spec/fixtures/saved_searches/get.json
688
+ - spec/fixtures/saved_searches/without_newsfeed.json
689
+ - spec/fixtures/saved_searches/with_inactive_newsfeed.json
690
+ - spec/fixtures/saved_searches/post.json
660
691
  - spec/fixtures/saved_searches/get_provided.json
661
692
  - spec/fixtures/saved_searches/new.json
662
- - spec/fixtures/saved_searches/with_inactive_newsfeed.json
663
- - spec/fixtures/saved_searches/get.json
664
- - spec/fixtures/generic_failure.json
665
- - spec/fixtures/listing_meta_translations/get.json
666
- - spec/fixtures/oauth2_error.json
667
- - spec/fixtures/sorts/get.json
668
- - spec/fixtures/listing_carts/post.json
669
- - spec/fixtures/listing_carts/new_portal_cart.json
670
- - spec/fixtures/listing_carts/put_name.json
671
- - spec/fixtures/listing_carts/new.json
672
- - spec/fixtures/listing_carts/add_listing.json
673
- - spec/fixtures/listing_carts/listing_portal_cart.json
674
- - spec/fixtures/listing_carts/post_portal_cart.json
675
- - spec/fixtures/listing_carts/add_listings_post.json
676
- - spec/fixtures/listing_carts/put_ids.json
677
- - spec/fixtures/listing_carts/put.json
678
- - spec/fixtures/listing_carts/add_portal_cart_listings.json
679
- - spec/fixtures/listing_carts/empty.json
680
- - spec/fixtures/listing_carts/add_portal_cart_listings_post.json
681
- - spec/fixtures/listing_carts/add_listing_post.json
682
- - spec/fixtures/listing_carts/remove_listing.json
683
- - spec/fixtures/listing_carts/listing_cart.json
684
- - spec/fixtures/listing_carts/add_listings.json
685
- - spec/fixtures/count.json
686
- - spec/fixtures/comments/post.json
687
- - spec/fixtures/comments/new.json
688
- - spec/fixtures/comments/get.json
689
- - spec/fixtures/notifications/mark_read.json
690
- - spec/fixtures/notifications/post.json
691
- - spec/fixtures/notifications/new_empty.json
692
- - spec/fixtures/notifications/new.json
693
- - spec/fixtures/notifications/notifications.json
694
- - spec/fixtures/notifications/unread.json
695
693
  - spec/fixtures/authentication_failure.json
696
- - spec/fixtures/fields/settings.json
697
- - spec/fixtures/fields/order_a.json
698
- - spec/fixtures/fields/order.json
699
- - spec/fixtures/idx_links/get.json
700
- - spec/fixtures/standardfields/stateorprovince.json
701
- - spec/fixtures/standardfields/city.json
702
- - spec/fixtures/standardfields/standardfields.json
703
- - spec/fixtures/standardfields/nearby.json
704
694
  - spec/fixtures/rules/get.json
705
- - spec/unit/spark_api_spec.rb
706
- - spec/unit/spark_api/paginate_spec.rb
707
- - spec/unit/spark_api/request_spec.rb
708
- - spec/unit/spark_api/authentication/api_auth_spec.rb
709
- - spec/unit/spark_api/authentication/oauth2_spec.rb
710
- - spec/unit/spark_api/authentication/oauth2_impl/faraday_middleware_spec.rb
711
- - spec/unit/spark_api/authentication/oauth2_impl/grant_type_base_spec.rb
712
- - spec/unit/spark_api/authentication/oauth2_impl/single_session_provider_spec.rb
713
- - spec/unit/spark_api/authentication/base_auth_spec.rb
714
- - spec/unit/spark_api/configuration/yaml_spec.rb
715
- - spec/unit/spark_api/models/rental_calendar_spec.rb
716
- - spec/unit/spark_api/models/account_spec.rb
717
- - spec/unit/spark_api/models/standard_fields_spec.rb
718
- - spec/unit/spark_api/models/note_spec.rb
695
+ - spec/fixtures/finders.json
696
+ - spec/fixtures/base.json
697
+ - spec/fixtures/logo_fbs.png
698
+ - spec/fixtures/search_templates/quick_searches/get.json
699
+ - spec/fixtures/portal/enable.json
700
+ - spec/fixtures/portal/my_non_existant.json
701
+ - spec/fixtures/portal/my.json
702
+ - spec/fixtures/portal/disable.json
703
+ - spec/fixtures/portal/post.json
704
+ - spec/fixtures/portal/new.json
705
+ - spec/unit/spark_api/primary_array_spec.rb
706
+ - spec/unit/spark_api/faraday_middleware_spec.rb
707
+ - spec/unit/spark_api/options_hash_spec.rb
708
+ - spec/unit/spark_api/authentication_spec.rb
709
+ - spec/unit/spark_api/models/rule_spec.rb
719
710
  - spec/unit/spark_api/models/shared_listing_spec.rb
720
- - spec/unit/spark_api/models/virtual_tour_spec.rb
721
- - spec/unit/spark_api/models/base_spec.rb
722
- - spec/unit/spark_api/models/open_house_spec.rb
711
+ - spec/unit/spark_api/models/constraint_spec.rb
723
712
  - spec/unit/spark_api/models/photo_spec.rb
724
- - spec/unit/spark_api/models/contact_spec.rb
725
- - spec/unit/spark_api/models/property_types_spec.rb
713
+ - spec/unit/spark_api/models/portal_spec.rb
714
+ - spec/unit/spark_api/models/finders_spec.rb
726
715
  - spec/unit/spark_api/models/subresource_spec.rb
727
- - spec/unit/spark_api/models/constraint_spec.rb
728
- - spec/unit/spark_api/models/listing_cart_spec.rb
729
- - spec/unit/spark_api/models/message_spec.rb
730
- - spec/unit/spark_api/models/notification_spec.rb
731
- - spec/unit/spark_api/models/news_feed_meta_spec.rb
732
- - spec/unit/spark_api/models/fields_spec.rb
733
- - spec/unit/spark_api/models/rule_spec.rb
734
- - spec/unit/spark_api/models/tour_of_home_spec.rb
735
- - spec/unit/spark_api/models/concerns/destroyable_spec.rb
736
- - spec/unit/spark_api/models/concerns/savable_spec.rb
737
- - spec/unit/spark_api/models/document_spec.rb
738
- - spec/unit/spark_api/models/sort_spec.rb
739
- - spec/unit/spark_api/models/listing_meta_translations_spec.rb
740
- - spec/unit/spark_api/models/floplan_spec.rb
741
- - spec/unit/spark_api/models/newsfeed_spec.rb
742
- - spec/unit/spark_api/models/activity_spec.rb
743
- - spec/unit/spark_api/models/defaultable_spec.rb
744
- - spec/unit/spark_api/models/video_spec.rb
745
- - spec/unit/spark_api/models/email_link_spec.rb
746
- - spec/unit/spark_api/models/vow_account_spec.rb
716
+ - spec/unit/spark_api/models/rental_calendar_spec.rb
717
+ - spec/unit/spark_api/models/listing_spec.rb
747
718
  - spec/unit/spark_api/models/account_report_spec.rb
719
+ - spec/unit/spark_api/models/vow_account_spec.rb
720
+ - spec/unit/spark_api/models/activity_spec.rb
748
721
  - spec/unit/spark_api/models/search_template/quick_search_spec.rb
722
+ - spec/unit/spark_api/models/shared_link_spec.rb
723
+ - spec/unit/spark_api/models/sort_spec.rb
724
+ - spec/unit/spark_api/models/standard_fields_spec.rb
725
+ - spec/unit/spark_api/models/concerns/savable_spec.rb
726
+ - spec/unit/spark_api/models/concerns/destroyable_spec.rb
749
727
  - spec/unit/spark_api/models/dirty_spec.rb
728
+ - spec/unit/spark_api/models/property_types_spec.rb
729
+ - spec/unit/spark_api/models/floplan_spec.rb
730
+ - spec/unit/spark_api/models/tour_of_home_spec.rb
731
+ - spec/unit/spark_api/models/connect_prefs_spec.rb
732
+ - spec/unit/spark_api/models/listing_meta_translations_spec.rb
733
+ - spec/unit/spark_api/models/defaultable_spec.rb
734
+ - spec/unit/spark_api/models/base_spec.rb
735
+ - spec/unit/spark_api/models/virtual_tour_spec.rb
750
736
  - spec/unit/spark_api/models/system_info_spec.rb
751
- - spec/unit/spark_api/models/portal_spec.rb
752
737
  - spec/unit/spark_api/models/saved_search_spec.rb
753
- - spec/unit/spark_api/models/finders_spec.rb
754
- - spec/unit/spark_api/models/connect_prefs_spec.rb
755
- - spec/unit/spark_api/models/listing_spec.rb
756
- - spec/unit/spark_api/models/shared_link_spec.rb
757
- - spec/unit/spark_api/options_hash_spec.rb
758
- - spec/unit/spark_api/authentication_spec.rb
759
- - spec/unit/spark_api/primary_array_spec.rb
760
- - spec/unit/spark_api/faraday_middleware_spec.rb
761
- - spec/unit/spark_api/configuration_spec.rb
738
+ - spec/unit/spark_api/models/open_house_spec.rb
739
+ - spec/unit/spark_api/models/account_spec.rb
740
+ - spec/unit/spark_api/models/video_spec.rb
741
+ - spec/unit/spark_api/models/newsfeed_spec.rb
742
+ - spec/unit/spark_api/models/document_spec.rb
743
+ - spec/unit/spark_api/models/email_link_spec.rb
744
+ - spec/unit/spark_api/models/note_spec.rb
745
+ - spec/unit/spark_api/models/fields_spec.rb
746
+ - spec/unit/spark_api/models/news_feed_meta_spec.rb
747
+ - spec/unit/spark_api/models/notification_spec.rb
748
+ - spec/unit/spark_api/models/message_spec.rb
749
+ - spec/unit/spark_api/models/contact_spec.rb
750
+ - spec/unit/spark_api/models/listing_cart_spec.rb
751
+ - spec/unit/spark_api/paginate_spec.rb
762
752
  - spec/unit/spark_api/multi_client_spec.rb
753
+ - spec/unit/spark_api/authentication/oauth2_spec.rb
754
+ - spec/unit/spark_api/authentication/api_auth_spec.rb
755
+ - spec/unit/spark_api/authentication/oauth2_impl/faraday_middleware_spec.rb
756
+ - spec/unit/spark_api/authentication/oauth2_impl/grant_type_base_spec.rb
757
+ - spec/unit/spark_api/authentication/oauth2_impl/single_session_provider_spec.rb
758
+ - spec/unit/spark_api/authentication/base_auth_spec.rb
759
+ - spec/unit/spark_api/configuration/yaml_spec.rb
760
+ - spec/unit/spark_api/configuration_spec.rb
761
+ - spec/unit/spark_api/request_spec.rb
762
+ - spec/unit/spark_api_spec.rb
763
763
  - spec/spec_helper.rb