spark_api 1.6.1 → 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: e315d7b172f1df48cf669a4900fde0367b629dba0fa337b1047d5aeb38c32dfb
4
- data.tar.gz: cd034a5ea19d67503c5fca449771fa882a1f0b37b673d3f2259f38db0276a12a
3
+ metadata.gz: 1c6fe64e532ec608eaf6ab28400e609bac9509cc4435a308555647f807f82fe7
4
+ data.tar.gz: 981c83997a7c44bce902ad7eae8fe5eea87ff63ae6294973bd39d4183eb89f8e
5
5
  SHA512:
6
- metadata.gz: da7b242dbdeb0dac71a5334a6a26d158ad49a8bc0c835b896b754f4ba4d4da87445c50164406863a8ba23d2f5a99ef6f95c0d08b4cf0b53392243012803289ad
7
- data.tar.gz: c172948eff245c7ca407fb7a3d73f7634ce43fc1a1f906bdb90a4f73d2b7166eb0f88046beef6f856bab938dc15d4462af6b6150f0059c79e1b27291266d56b0
6
+ metadata.gz: b875967cf9b92b12f9cdb4dc6a17fb8fd1b03ec596eb60450ed7321ec2a1ef62bdf8c649c66413ca6d25eac18a3e38997058a6a69cf1416628c7e248a4d083ec
7
+ data.tar.gz: b51357fb93db5a941efa1503dacc8f0a16c04ed6f0ef971473947ee982c12df79bf2ea97970da686c8c02bf792f7f8cb4c38cba3e413f788fb3e02893fd28694
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.6.1
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
@@ -83,7 +83,8 @@ module SparkApi
83
83
  request_opts.merge!(options)
84
84
  request_path = if middleware && middleware.to_sym == :reso_api
85
85
  dd_version = "Dictionary/#{dictionary_version}/" unless dictionary_version.nil?
86
- "/Reso/#{dd_version}OData#{path}"
86
+ reso_version = "/Version/#{version}" unless version == SparkApi::Configuration::DEFAULT_VERSION || version.nil?
87
+ "#{reso_version}/Reso/#{dd_version}OData#{path}"
87
88
  else
88
89
  "/#{version}#{path}"
89
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.1
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-10-11 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/idx_links/get.json
565
- - spec/fixtures/session.json
566
- - spec/fixtures/listing_carts/listing_portal_cart.json
567
- - spec/fixtures/listing_carts/remove_listing.json
568
- - spec/fixtures/listing_carts/post.json
569
- - spec/fixtures/listing_carts/put_ids.json
570
- - spec/fixtures/listing_carts/new_portal_cart.json
571
- - spec/fixtures/listing_carts/add_portal_cart_listings_post.json
564
+ - spec/fixtures/sharedlinks/success.json
572
565
  - spec/fixtures/listing_carts/listing_cart.json
566
+ - spec/fixtures/listing_carts/new_portal_cart.json
573
567
  - spec/fixtures/listing_carts/put_name.json
574
- - spec/fixtures/listing_carts/new.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
575
571
  - spec/fixtures/listing_carts/add_portal_cart_listings.json
576
- - spec/fixtures/listing_carts/empty.json
572
+ - spec/fixtures/listing_carts/put_ids.json
577
573
  - spec/fixtures/listing_carts/post_portal_cart.json
574
+ - spec/fixtures/listing_carts/add_listings_post.json
578
575
  - spec/fixtures/listing_carts/add_listing.json
576
+ - spec/fixtures/listing_carts/remove_listing.json
577
+ - spec/fixtures/listing_carts/empty.json
579
578
  - spec/fixtures/listing_carts/put.json
580
- - spec/fixtures/listing_carts/add_listings_post.json
581
- - spec/fixtures/listing_carts/add_listings.json
582
- - spec/fixtures/listing_carts/add_listing_post.json
583
- - spec/fixtures/property_types/property_types.json
584
- - spec/fixtures/no_results.json
585
- - spec/fixtures/saved_searches/get.json
586
- - spec/fixtures/saved_searches/update.json
587
- - spec/fixtures/saved_searches/post.json
588
- - spec/fixtures/saved_searches/with_newsfeed.json
589
- - spec/fixtures/saved_searches/new.json
590
- - spec/fixtures/saved_searches/with_inactive_newsfeed.json
591
- - spec/fixtures/saved_searches/without_newsfeed.json
592
- - spec/fixtures/saved_searches/get_provided.json
593
- - spec/fixtures/search_templates/quick_searches/get.json
579
+ - spec/fixtures/listing_carts/post.json
580
+ - spec/fixtures/listing_carts/listing_portal_cart.json
581
+ - spec/fixtures/listing_carts/new.json
594
582
  - spec/fixtures/newsfeeds/get.json
595
583
  - spec/fixtures/newsfeeds/inactive.json
596
584
  - spec/fixtures/newsfeeds/meta.json
597
- - spec/fixtures/sorts/get.json
598
- - spec/fixtures/count.json
599
- - spec/fixtures/base.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
589
+ - spec/fixtures/messages/new_empty.json
590
+ - spec/fixtures/messages/count.json
600
591
  - spec/fixtures/messages/get.json
592
+ - spec/fixtures/messages/new_with_recipients.json
601
593
  - spec/fixtures/messages/post.json
602
- - spec/fixtures/messages/count.json
603
594
  - spec/fixtures/messages/new.json
604
- - spec/fixtures/messages/new_with_recipients.json
605
- - spec/fixtures/messages/new_empty.json
606
- - spec/fixtures/success.json
607
- - spec/fixtures/listings/open_houses.json
608
- - spec/fixtures/listings/with_supplement.json
609
- - spec/fixtures/listings/reorder_photo.json
610
- - spec/fixtures/listings/videos_index.json
611
- - spec/fixtures/listings/with_photos.json
612
- - spec/fixtures/listings/no_subresources.json
613
- - spec/fixtures/listings/with_videos.json
614
- - spec/fixtures/listings/document_index.json
615
- - spec/fixtures/listings/shared_listing_post.json
616
- - spec/fixtures/listings/constraints_with_pagination.json
617
- - spec/fixtures/listings/floplans_index.json
618
- - spec/fixtures/listings/multiple.json
619
- - spec/fixtures/listings/with_permissions.json
620
- - spec/fixtures/listings/put_reorder_photo.json
621
- - spec/fixtures/listings/constraints.json
622
- - spec/fixtures/listings/put.json
623
- - spec/fixtures/listings/put_expiration_date.json
624
- - spec/fixtures/listings/tour_of_homes_search.json
625
- - spec/fixtures/listings/with_rental_calendar.json
626
- - spec/fixtures/listings/photos/rollback.json
627
- - spec/fixtures/listings/photos/post.json
628
- - spec/fixtures/listings/photos/batch_delete.json
629
- - spec/fixtures/listings/photos/rotate.json
630
- - spec/fixtures/listings/photos/new.json
631
- - spec/fixtures/listings/photos/index.json
632
- - spec/fixtures/listings/shared_listing_new.json
633
- - spec/fixtures/listings/rental_calendar.json
634
- - spec/fixtures/listings/virtual_tours_index.json
635
- - spec/fixtures/listings/with_documents.json
636
- - spec/fixtures/listings/tour_of_homes.json
637
- - spec/fixtures/listings/shared_listing_get.json
638
- - spec/fixtures/listings/with_vtour.json
639
- - spec/fixtures/portal/post.json
640
- - spec/fixtures/portal/my.json
641
- - spec/fixtures/portal/disable.json
642
- - spec/fixtures/portal/new.json
643
- - spec/fixtures/portal/my_non_existant.json
644
- - spec/fixtures/portal/enable.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
645
602
  - spec/fixtures/notifications/notifications.json
646
603
  - spec/fixtures/notifications/post.json
647
604
  - spec/fixtures/notifications/new.json
648
- - spec/fixtures/notifications/unread.json
649
- - spec/fixtures/notifications/mark_read.json
650
- - spec/fixtures/notifications/new_empty.json
651
- - spec/fixtures/rules/get.json
652
- - spec/fixtures/empty.json
653
605
  - spec/fixtures/activities/get.json
654
- - spec/fixtures/errors/expired.json
655
- - spec/fixtures/errors/failure_with_msg.json
656
- - spec/fixtures/errors/failure_with_constraint.json
657
- - spec/fixtures/errors/failure.json
658
- - spec/fixtures/authentication_failure.json
659
- - spec/fixtures/standardfields/standardfields.json
660
- - spec/fixtures/standardfields/city.json
661
- - spec/fixtures/standardfields/stateorprovince.json
662
- - spec/fixtures/standardfields/nearby.json
606
+ - spec/fixtures/property_types/property_types.json
663
607
  - spec/fixtures/listing_meta_translations/get.json
664
- - spec/fixtures/oauth2_error.json
665
- - spec/fixtures/fields/order_a.json
666
- - spec/fixtures/fields/order.json
667
- - spec/fixtures/fields/settings.json
668
- - spec/fixtures/notes/add.json
669
- - spec/fixtures/notes/new.json
670
- - spec/fixtures/notes/agent_shared.json
671
- - spec/fixtures/notes/agent_shared_empty.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
672
614
  - spec/fixtures/oauth2/access.json
673
- - spec/fixtures/oauth2/access_with_old_refresh.json
674
- - spec/fixtures/oauth2/password_body.json
675
615
  - spec/fixtures/oauth2/access_with_refresh.json
676
- - spec/fixtures/oauth2/error.json
677
- - spec/fixtures/oauth2/authorization_code_body.json
616
+ - spec/fixtures/oauth2/access_with_old_refresh.json
678
617
  - spec/fixtures/oauth2/refresh_body.json
679
- - spec/fixtures/logo_fbs.png
680
- - spec/fixtures/generic_failure.json
681
- - spec/fixtures/accounts/my.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
682
624
  - spec/fixtures/accounts/office.json
683
- - spec/fixtures/accounts/password_save.json
684
- - spec/fixtures/accounts/all.json
685
625
  - spec/fixtures/accounts/my_put.json
626
+ - spec/fixtures/accounts/all.json
686
627
  - spec/fixtures/accounts/my_portal.json
628
+ - spec/fixtures/accounts/my.json
629
+ - spec/fixtures/accounts/password_save.json
687
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
637
+ - spec/fixtures/contacts/new_empty.json
638
+ - spec/fixtures/contacts/new_notify.json
639
+ - spec/fixtures/contacts/contacts.json
640
+ - spec/fixtures/contacts/tags.json
641
+ - spec/fixtures/contacts/vow_accounts/edit.json
688
642
  - spec/fixtures/contacts/vow_accounts/get.json
689
643
  - spec/fixtures/contacts/vow_accounts/post.json
690
- - spec/fixtures/contacts/vow_accounts/edit.json
691
644
  - spec/fixtures/contacts/vow_accounts/new.json
692
- - spec/fixtures/contacts/post.json
693
645
  - spec/fixtures/contacts/my.json
646
+ - spec/fixtures/contacts/post.json
694
647
  - spec/fixtures/contacts/new.json
695
- - spec/fixtures/contacts/tags.json
696
- - spec/fixtures/contacts/new_notify.json
697
- - spec/fixtures/contacts/contacts.json
698
- - spec/fixtures/contacts/new_empty.json
648
+ - spec/fixtures/oauth2_error.json
649
+ - spec/fixtures/listings/no_subresources.json
650
+ - spec/fixtures/listings/put_expiration_date.json
651
+ - spec/fixtures/listings/constraints_with_pagination.json
652
+ - spec/fixtures/listings/floplans_index.json
653
+ - spec/fixtures/listings/document_index.json
654
+ - spec/fixtures/listings/shared_listing_post.json
655
+ - spec/fixtures/listings/reorder_photo.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
667
+ - spec/fixtures/listings/rental_calendar.json
668
+ - spec/fixtures/listings/put_reorder_photo.json
669
+ - spec/fixtures/listings/videos_index.json
670
+ - spec/fixtures/listings/multiple.json
671
+ - spec/fixtures/listings/with_videos.json
672
+ - spec/fixtures/listings/virtual_tours_index.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
679
+ - spec/fixtures/listings/with_vtour.json
680
+ - spec/fixtures/listings/with_permissions.json
681
+ - spec/fixtures/notes/agent_shared.json
682
+ - spec/fixtures/notes/add.json
683
+ - spec/fixtures/notes/agent_shared_empty.json
684
+ - spec/fixtures/notes/new.json
685
+ - spec/fixtures/saved_searches/update.json
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
691
+ - spec/fixtures/saved_searches/get_provided.json
692
+ - spec/fixtures/saved_searches/new.json
693
+ - spec/fixtures/authentication_failure.json
694
+ - spec/fixtures/rules/get.json
699
695
  - spec/fixtures/finders.json
700
- - spec/fixtures/sharedlinks/success.json
701
- - spec/fixtures/generic_delete.json
702
- - spec/fixtures/comments/get.json
703
- - spec/fixtures/comments/post.json
704
- - spec/fixtures/comments/new.json
705
- - spec/unit/spark_api_spec.rb
706
- - spec/unit/spark_api/configuration/yaml_spec.rb
707
- - spec/unit/spark_api/models/floplan_spec.rb
708
- - spec/unit/spark_api/models/email_link_spec.rb
709
- - spec/unit/spark_api/models/property_types_spec.rb
710
- - spec/unit/spark_api/models/sort_spec.rb
711
- - spec/unit/spark_api/models/connect_prefs_spec.rb
712
- - spec/unit/spark_api/models/contact_spec.rb
713
- - spec/unit/spark_api/models/virtual_tour_spec.rb
714
- - spec/unit/spark_api/models/news_feed_meta_spec.rb
715
- - spec/unit/spark_api/models/base_spec.rb
716
- - spec/unit/spark_api/models/note_spec.rb
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
717
710
  - spec/unit/spark_api/models/shared_listing_spec.rb
718
- - spec/unit/spark_api/models/tour_of_home_spec.rb
719
- - spec/unit/spark_api/models/video_spec.rb
720
- - spec/unit/spark_api/models/rental_calendar_spec.rb
711
+ - spec/unit/spark_api/models/constraint_spec.rb
721
712
  - spec/unit/spark_api/models/photo_spec.rb
722
- - spec/unit/spark_api/models/vow_account_spec.rb
713
+ - spec/unit/spark_api/models/portal_spec.rb
723
714
  - spec/unit/spark_api/models/finders_spec.rb
715
+ - spec/unit/spark_api/models/subresource_spec.rb
716
+ - spec/unit/spark_api/models/rental_calendar_spec.rb
717
+ - spec/unit/spark_api/models/listing_spec.rb
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
721
+ - spec/unit/spark_api/models/search_template/quick_search_spec.rb
724
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
725
  - spec/unit/spark_api/models/concerns/savable_spec.rb
726
726
  - spec/unit/spark_api/models/concerns/destroyable_spec.rb
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
727
732
  - spec/unit/spark_api/models/listing_meta_translations_spec.rb
728
- - spec/unit/spark_api/models/rule_spec.rb
729
733
  - spec/unit/spark_api/models/defaultable_spec.rb
730
- - spec/unit/spark_api/models/listing_spec.rb
731
- - spec/unit/spark_api/models/dirty_spec.rb
732
- - spec/unit/spark_api/models/subresource_spec.rb
734
+ - spec/unit/spark_api/models/base_spec.rb
735
+ - spec/unit/spark_api/models/virtual_tour_spec.rb
736
+ - spec/unit/spark_api/models/system_info_spec.rb
737
+ - spec/unit/spark_api/models/saved_search_spec.rb
733
738
  - spec/unit/spark_api/models/open_house_spec.rb
734
- - spec/unit/spark_api/models/portal_spec.rb
735
- - spec/unit/spark_api/models/search_template/quick_search_spec.rb
736
- - spec/unit/spark_api/models/constraint_spec.rb
739
+ - spec/unit/spark_api/models/account_spec.rb
740
+ - spec/unit/spark_api/models/video_spec.rb
737
741
  - spec/unit/spark_api/models/newsfeed_spec.rb
738
- - spec/unit/spark_api/models/notification_spec.rb
739
- - spec/unit/spark_api/models/standard_fields_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
740
745
  - spec/unit/spark_api/models/fields_spec.rb
741
- - spec/unit/spark_api/models/account_spec.rb
742
- - spec/unit/spark_api/models/account_report_spec.rb
746
+ - spec/unit/spark_api/models/news_feed_meta_spec.rb
747
+ - spec/unit/spark_api/models/notification_spec.rb
743
748
  - spec/unit/spark_api/models/message_spec.rb
744
- - spec/unit/spark_api/models/activity_spec.rb
745
- - spec/unit/spark_api/models/system_info_spec.rb
746
- - spec/unit/spark_api/models/document_spec.rb
749
+ - spec/unit/spark_api/models/contact_spec.rb
747
750
  - spec/unit/spark_api/models/listing_cart_spec.rb
748
- - spec/unit/spark_api/models/saved_search_spec.rb
749
- - spec/unit/spark_api/request_spec.rb
751
+ - spec/unit/spark_api/paginate_spec.rb
750
752
  - spec/unit/spark_api/multi_client_spec.rb
751
- - spec/unit/spark_api/authentication/oauth2_impl/grant_type_base_spec.rb
753
+ - spec/unit/spark_api/authentication/oauth2_spec.rb
754
+ - spec/unit/spark_api/authentication/api_auth_spec.rb
752
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
753
757
  - spec/unit/spark_api/authentication/oauth2_impl/single_session_provider_spec.rb
754
- - spec/unit/spark_api/authentication/oauth2_spec.rb
755
758
  - spec/unit/spark_api/authentication/base_auth_spec.rb
756
- - spec/unit/spark_api/authentication/api_auth_spec.rb
757
- - spec/unit/spark_api/primary_array_spec.rb
758
- - spec/unit/spark_api/faraday_middleware_spec.rb
759
+ - spec/unit/spark_api/configuration/yaml_spec.rb
759
760
  - spec/unit/spark_api/configuration_spec.rb
760
- - spec/unit/spark_api/authentication_spec.rb
761
- - spec/unit/spark_api/paginate_spec.rb
762
- - spec/unit/spark_api/options_hash_spec.rb
761
+ - spec/unit/spark_api/request_spec.rb
762
+ - spec/unit/spark_api_spec.rb
763
763
  - spec/spec_helper.rb