finapps 6.10.0 → 6.11.0

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: 765aad4ece03d6e507cd77930fa24fb983911f4773c30adc09399695c62a6c0d
4
- data.tar.gz: 7bd544c214f84ec23c64ddc45a732ad820d5faebda7a1c7591a6c46b145dded8
3
+ metadata.gz: 701a3842e404d5025eccbfd03848e77a1c97ebf837974d51dbbe5d62b7b29ef2
4
+ data.tar.gz: bd21d306c479be7300b8d9b2769b0e50e657c9c2e962009fa21f82671ab338fe
5
5
  SHA512:
6
- metadata.gz: 7f7475687fc24f0f4480a0ad229e9ed8fdb9b6a6b4fb7b70117327187678006e3c1476294d2bb2753d2084051bc3350afa81ca892fa9b4d9e9def5e7793e1a40
7
- data.tar.gz: 73f047dfbfb2d3e1df537a69145d88a373d80b27799b3a1bf659b9d84c9603fe8048db6e85fe16bb7b4d3b216ddc8272896bb30e95a0658b9467234c89eaa31b
6
+ metadata.gz: 44bf90538086fc313fbd62e8be9fdb908a72131f31a24a3485528f8da4cc94f299dc1ee1c328116447472914243f5a43916e9c667927fb07221b4d5217685718
7
+ data.tar.gz: b61176f93d88fdf09e6a640c3a31185b60d295c76ba71a8654f28397ba8c22c5a9feb97b93fb5c07243f3af076387cc38dd1c48b6ae89313546925f796e940fb
@@ -17,6 +17,7 @@ module FinApps
17
17
  documents_orders_notifications
18
18
  documents_upload_types
19
19
  documents_uploads
20
+ edm_transmissions
20
21
  esign_templates
21
22
  orders
22
23
  locations
@@ -0,0 +1,14 @@
1
+ # frozen_string_literal: true
2
+
3
+ module FinApps
4
+ module REST
5
+ class EdmTransmissions < FinAppsCore::REST::Resources # :nodoc:
6
+ def create(order_id, params)
7
+ not_blank(order_id, :order_id)
8
+
9
+ path = "documents/edm/#{ERB::Util.url_encode(order_id)}/transmit"
10
+ super(params, path)
11
+ end
12
+ end
13
+ end
14
+ end
@@ -8,9 +8,9 @@ module FinApps
8
8
  super path
9
9
  end
10
10
 
11
- def update(key, params = {})
12
- path = resource_path(key)
13
- send_request path, :put, params
11
+ def update(id, params)
12
+ path = resource_path(id)
13
+ super params, path
14
14
  end
15
15
  end
16
16
  end
@@ -67,10 +67,11 @@ module FinApps
67
67
  end
68
68
 
69
69
  def term_array(term)
70
- [
71
- {email: term},
72
- {last_name: term}
73
- ]
70
+ if term.include?('@')
71
+ [{email: term}]
72
+ else
73
+ [{last_name: term}]
74
+ end
74
75
  end
75
76
 
76
77
  def role_filter(role)
@@ -3,6 +3,9 @@
3
3
  module FinApps
4
4
  module REST
5
5
  class States < FinAppsCore::REST::Resources # :nodoc:
6
+ def end_point
7
+ "references/#{super}"
8
+ end
6
9
  end
7
10
  end
8
11
  end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module FinApps
4
- VERSION = '6.10.0'
4
+ VERSION = '6.11.0'
5
5
  end
data/lib/finapps.rb CHANGED
@@ -5,6 +5,7 @@ require 'faraday_middleware'
5
5
 
6
6
  require 'finapps_core'
7
7
  require 'finapps/rest/actors'
8
+ require 'finapps/rest/edm_transmissions'
8
9
  require 'finapps/rest/version'
9
10
  require 'finapps/rest/locations'
10
11
  require 'finapps/rest/consumers'
@@ -0,0 +1,20 @@
1
+ # frozen_string_literal: true
2
+
3
+ RSpec.describe FinApps::REST::EdmTransmissions do
4
+ include SpecHelpers::Client
5
+
6
+ describe '#create' do
7
+ subject(:list) { described_class.new(client).create(:order_id, params) }
8
+
9
+ let(:params) { {external_id: '12345'} }
10
+
11
+ it_behaves_like 'an API request'
12
+ it_behaves_like 'a successful request'
13
+
14
+ it('returns a hash with known keys') do
15
+ expect(list[RESULTS].keys)
16
+ .to(match_array(%i[transmission_id date_created date_modified status
17
+ document_order_id documents]))
18
+ end
19
+ end
20
+ end
@@ -5,31 +5,12 @@ require 'digest'
5
5
  RSpec.describe FinApps::REST::Locations do
6
6
  include SpecHelpers::Client
7
7
 
8
- describe '#list' do
9
- subject(:list) { described_class.new(client).list filter }
10
-
11
- let(:filter) { nil }
12
-
13
- it_behaves_like 'an API request'
14
- it_behaves_like 'a successful request'
15
- it { expect(list[RESULTS]).to all(have_key(:name)) }
16
- it { expect(list[RESULTS]).to all(have_key(:state)) }
17
-
18
- context 'when the JMESPath filter is invalid' do
19
- let(:filter) { 'invalid' }
20
-
21
- it_behaves_like 'a failed request'
22
- end
23
- end
24
-
25
- describe '#create' do
26
- subject(:create) { described_class.new(client).create(params) }
8
+ let(:id) { :id }
27
9
 
28
- let(:params) { {name: 'Quick Mart Urgent Care', state: {code: 'MD'}} }
10
+ params = {name: 'Quick Mart Non-Urgent Care', state: {code: 'MD'}}
29
11
 
30
- it_behaves_like 'an API request'
31
- it_behaves_like 'a successful request'
32
- it { expect(create[RESULTS]).to be_nil }
12
+ RSpec::Matchers.define :have_keys do |*keys|
13
+ match {|actual| keys.all? {|key| actual.key? key } }
33
14
  end
34
15
 
35
16
  RSpec.shared_examples 'a request to a not found resource' do
@@ -40,73 +21,74 @@ RSpec.describe FinApps::REST::Locations do
40
21
  end
41
22
  end
42
23
 
43
- describe '#show' do
44
- subject(:show) { described_class.new(client).show(key) }
24
+ RSpec.shared_examples 'a successful API request returning an empty body' do
25
+ it_behaves_like 'an API request'
26
+ it_behaves_like 'a successful request'
27
+ it { expect(subject[RESULTS]).to be_nil }
28
+ end
29
+
30
+ describe '#list' do
31
+ subject(:list) { described_class.new(client).list filter }
45
32
 
46
- let(:key) { Digest::SHA256.hexdigest('Quick Mart Urgent CareMD,MD') }
33
+ let(:filter) { nil }
47
34
 
48
35
  it_behaves_like 'an API request'
49
36
  it_behaves_like 'a successful request'
50
- it { expect(show[RESULTS]).to have_key(:name) }
51
- it { expect(show[RESULTS]).to have_key(:state) }
37
+ it { expect(list[RESULTS]).to all(have_keys(:id, :name, :state)) }
52
38
 
53
- context 'when key is not a valid SHA256' do
54
- let(:key) { 'invalid_SHA256' }
39
+ context 'when the JMESPath filter is invalid' do
40
+ let(:filter) { 'invalid' }
55
41
 
56
42
  it_behaves_like 'a failed request'
57
43
  end
44
+ end
58
45
 
59
- context 'when key does not match any location' do
60
- let(:key) { 'not_found' }
46
+ describe '#show' do
47
+ subject(:show) { described_class.new(client).show(id) }
48
+
49
+ context 'when the location exists' do
50
+ it_behaves_like 'an API request'
51
+ it_behaves_like 'a successful request'
52
+ it { expect(show[RESULTS]).to have_keys(:id, :name, :state) }
53
+ end
54
+
55
+ context 'when id does not match any location' do
56
+ let(:id) { 'not_found' }
61
57
 
62
- it_behaves_like 'a failed request'
63
58
  it_behaves_like 'a request to a not found resource'
64
59
  end
65
60
  end
66
61
 
67
- describe '#update' do
68
- subject(:update) { described_class.new(client).update(key, params) }
69
-
70
- let(:key) { Digest::SHA256.hexdigest('Quick Mart Urgent CareMD,MD') }
71
- let(:params) { {name: 'Quick Mart Non-Urgent Care', state: {code: 'MD'}} }
62
+ describe '#create' do
63
+ subject(:create) { described_class.new(client).create(params) }
72
64
 
73
- it_behaves_like 'an API request'
74
- it_behaves_like 'a successful request'
75
- it { expect(update[RESULTS]).to be_nil }
65
+ it_behaves_like 'a successful API request returning an empty body'
66
+ end
76
67
 
77
- context 'when key is not a valid SHA256' do
78
- let(:key) { 'invalid_SHA256' }
68
+ describe '#update' do
69
+ subject(:update) { described_class.new(client).update(id, params) }
79
70
 
80
- it_behaves_like 'a failed request'
71
+ context 'when the location exists' do
72
+ it_behaves_like 'a successful API request returning an empty body'
81
73
  end
82
74
 
83
- context 'when key does not match any location' do
84
- let(:key) { 'not_found' }
75
+ context 'when id does not match any location' do
76
+ let(:id) { 'not_found' }
85
77
 
86
- it_behaves_like 'a failed request'
87
78
  it_behaves_like 'a request to a not found resource'
88
79
  end
89
80
  end
90
81
 
91
82
  describe '#destroy' do
92
- subject(:destroy) { described_class.new(client).destroy(key) }
93
-
94
- let(:key) { Digest::SHA256.hexdigest('Quick Mart Urgent CareMD,MD') }
83
+ subject(:destroy) { described_class.new(client).destroy(id) }
95
84
 
96
- it_behaves_like 'an API request'
97
- it_behaves_like 'a successful request'
98
- it { expect(destroy[RESULTS]).to be_nil }
99
-
100
- context 'when key is not a valid SHA256' do
101
- let(:key) { 'invalid_SHA256' }
102
-
103
- it_behaves_like 'a failed request'
85
+ context 'when the location exists' do
86
+ it_behaves_like 'a successful API request returning an empty body'
104
87
  end
105
88
 
106
- context 'when key does not match any location' do
107
- let(:key) { 'not_found' }
89
+ context 'when id does not match any location' do
90
+ let(:id) { 'not_found' }
108
91
 
109
- it_behaves_like 'a failed request'
110
92
  it_behaves_like 'a request to a not found resource'
111
93
  end
112
94
  end
@@ -25,12 +25,21 @@ RSpec.describe FinApps::REST::Operators do
25
25
  end
26
26
  end
27
27
 
28
- context 'with searchTerm' do
28
+ context 'with email searchTerm' do
29
+ let(:params) { {searchTerm: 'term@example.com'} }
30
+
31
+ it_behaves_like 'a filtereable GET index request', {
32
+ '$or': [
33
+ {email: 'term@example.com'}
34
+ ]
35
+ }
36
+ end
37
+
38
+ context 'with non email searchTerm' do
29
39
  let(:params) { {searchTerm: 'le term'} }
30
40
 
31
41
  it_behaves_like 'a filtereable GET index request', {
32
42
  '$or': [
33
- {email: 'le term'},
34
43
  {last_name: 'le term'}
35
44
  ]
36
45
  }
@@ -65,7 +74,7 @@ RSpec.describe FinApps::REST::Operators do
65
74
  it 'builds a full filter and query and sends the request' do
66
75
  list
67
76
 
68
- filter = {'$or': [{email: 't'}, {last_name: 't'}], role: {'$in': [2]}}
77
+ filter = {'$or': [{last_name: 't'}], role: {'$in': [2]}}
69
78
  expect(WebMock).to have_requested(:get, "#{versioned_api_path}/operators"\
70
79
  "?filter=#{ERB::Util.url_encode filter.to_json}"\
71
80
  '&page=2&requested=25&sort=date_created')
@@ -9,6 +9,8 @@ RSpec.describe FinApps::REST::States do
9
9
  it_behaves_like 'an API request'
10
10
  it_behaves_like 'a successful request'
11
11
 
12
- it('returns a list') { expect(list[RESULTS]).to be_a(Array) }
12
+ it('returns a list of hashes with the following keys: code, label, type') do
13
+ expect(list[RESULTS].first.keys).to match_array(%i[code label type])
14
+ end
13
15
  end
14
16
  end
data/spec/spec_helper.rb CHANGED
@@ -1,6 +1,6 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- if ENV['COVERAGE'] == 'true'
3
+ if ENV.fetch('COVERAGE', nil) == 'true'
4
4
  require 'simplecov'
5
5
  require 'simplecov-console'
6
6
 
@@ -5,6 +5,7 @@ require 'sinatra/base'
5
5
  require_relative 'documents_uploads_routes'
6
6
  require_relative 'screenings_routes'
7
7
  require_relative 'routes/actors'
8
+ require_relative 'routes/edm_transmissions'
8
9
  require_relative 'routes/locations'
9
10
  require_relative 'routes/screening_metadatas'
10
11
  require_relative 'routes/query_screenings'
@@ -25,6 +26,7 @@ module Fake
25
26
  delete("/#{version}/resources/:id") { status 202 }
26
27
 
27
28
  include ActorsRoutes
29
+ include EdmTransmissionsRoutes
28
30
  include DocumentsUploadsRoutes
29
31
  include LocationsRoutes
30
32
  include QueryScreeningRoutes
@@ -0,0 +1,17 @@
1
+ {
2
+ "transmission_id": "7829e171-4d39-4270-8969-7729038953d2",
3
+ "date_created": "2022-05-18T21:05:48.076809156Z",
4
+ "date_modified": "2022-05-18T21:05:48.07680924Z",
5
+ "status": 0,
6
+ "document_order_id": "0c272b3d-3c8c-43ab-beff-f5964835a591",
7
+ "documents": [
8
+ {
9
+ "template_data": null,
10
+ "path": "",
11
+ "file_id": "",
12
+ "status": 0,
13
+ "edm_filename": "",
14
+ "date_modified": "0001-01-01T00:00:00Z"
15
+ }
16
+ ]
17
+ }
@@ -1,4 +1,5 @@
1
1
  {
2
+ "id": "2c0c2951-0a5e-463f-abd3-d315e63a62b2",
2
3
  "name": "IK",
3
4
  "state": {
4
5
  "code": "MD",
@@ -1,5 +1,6 @@
1
1
  [
2
2
  {
3
+ "id": "2c0c2951-0a5e-463f-abd3-d315e63a62b2",
3
4
  "name": "Quick Mart Urgent Care",
4
5
  "state": {
5
6
  "code": "MD",
@@ -8,6 +9,7 @@
8
9
  }
9
10
  },
10
11
  {
12
+ "id": "2c0c2951-0a5e-463f-abd3-d315e63a62b3",
11
13
  "name": "Quick Mart Emergency Room",
12
14
  "state": {
13
15
  "code": "MD",
@@ -16,6 +18,7 @@
16
18
  }
17
19
  },
18
20
  {
21
+ "id": "2c0c2951-0a5e-463f-abd3-d315e63a62b4",
19
22
  "name": "Quick Mart - Folsom Business Office",
20
23
  "state": {
21
24
  "code": "CA",
@@ -23,4 +26,4 @@
23
26
  "type": "state"
24
27
  }
25
28
  }
26
- ]
29
+ ]
@@ -0,0 +1,19 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Fake
4
+ module EdmTransmissionsRoutes
5
+ class << self
6
+ def included(base)
7
+ post_routes base
8
+
9
+ super
10
+ end
11
+
12
+ def post_routes(base)
13
+ base.post("/#{base.version}/documents/edm/:order_id/transmit") do
14
+ json_response 200, 'edm_transmissions/create.json'
15
+ end
16
+ end
17
+ end
18
+ end
19
+ end
@@ -19,18 +19,16 @@ module Fake
19
19
  end
20
20
 
21
21
  def delete_routes(base)
22
- base.delete("/#{base.version}/locations/:key") do
23
- return status(404) if params[:key] == 'not_found'
24
- return status(400) unless sha256?(params[:key])
22
+ base.delete("/#{base.version}/locations/:id") do
23
+ return status(404) if params[:id] == 'not_found'
25
24
 
26
25
  status 204
27
26
  end
28
27
  end
29
28
 
30
29
  def put_routes(base)
31
- base.put("/#{base.version}/locations/:key") do
32
- return status(404) if params[:key] == 'not_found'
33
- return status(400) unless sha256?(params[:key])
30
+ base.put("/#{base.version}/locations/:id") do
31
+ return status(404) if params[:id] == 'not_found'
34
32
 
35
33
  status 204
36
34
  end
@@ -42,17 +40,12 @@ module Fake
42
40
 
43
41
  json_response 200, 'locations/get_locations.json'
44
42
  end
45
- base.get("/#{base.version}/locations/:key") do
46
- return status(404) if params[:key] == 'not_found'
47
- return status(400) unless sha256?(params[:key])
43
+ base.get("/#{base.version}/locations/:id") do
44
+ return status(404) if params[:id] == 'not_found'
48
45
 
49
46
  json_response 200, 'locations/get_location.json'
50
47
  end
51
48
  end
52
49
  end
53
-
54
- def sha256?(key)
55
- key.length == 64 && key.match(/^[0-9a-f]+$/)
56
- end
57
50
  end
58
51
  end
@@ -4,7 +4,7 @@ module Fake
4
4
  module StateRoutes
5
5
  class << self
6
6
  def included(base)
7
- base.get("/#{base.version}/states") do
7
+ base.get("/#{base.version}/references/states") do
8
8
  json_response 200, 'states/get_states.json'
9
9
  end
10
10
  super
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: finapps
3
3
  version: !ruby/object:Gem::Version
4
- version: 6.10.0
4
+ version: 6.11.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Erich Quintero
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-03-17 00:00:00.000000000 Z
11
+ date: 2022-05-19 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: finapps_core
@@ -269,6 +269,7 @@ files:
269
269
  - lib/finapps/rest/documents_orders_notifications.rb
270
270
  - lib/finapps/rest/documents_upload_types.rb
271
271
  - lib/finapps/rest/documents_uploads.rb
272
+ - lib/finapps/rest/edm_transmissions.rb
272
273
  - lib/finapps/rest/esign_templates.rb
273
274
  - lib/finapps/rest/locations.rb
274
275
  - lib/finapps/rest/operator_change_password_email.rb
@@ -322,6 +323,7 @@ files:
322
323
  - spec/rest/documents_orders_spec.rb
323
324
  - spec/rest/documents_upload_types_spec.rb
324
325
  - spec/rest/documents_uploads_spec.rb
326
+ - spec/rest/edm_transmissions_spec.rb
325
327
  - spec/rest/esign_templates_spec.rb
326
328
  - spec/rest/locations_spec.rb
327
329
  - spec/rest/operator_change_password_email_spec.rb
@@ -375,6 +377,7 @@ files:
375
377
  - spec/support/fixtures/documents_order.json
376
378
  - spec/support/fixtures/documents_orders.json
377
379
  - spec/support/fixtures/documents_orders_none.json
380
+ - spec/support/fixtures/edm_transmissions/create.json
378
381
  - spec/support/fixtures/error.json
379
382
  - spec/support/fixtures/esign_templates.json
380
383
  - spec/support/fixtures/invalid_order_id.json
@@ -446,6 +449,7 @@ files:
446
449
  - spec/support/fixtures/verix/record/create.json
447
450
  - spec/support/fixtures/verix/record/list.json
448
451
  - spec/support/routes/actors.rb
452
+ - spec/support/routes/edm_transmissions.rb
449
453
  - spec/support/routes/locations.rb
450
454
  - spec/support/routes/query_screenings.rb
451
455
  - spec/support/routes/screening_metadatas.rb
@@ -483,65 +487,67 @@ signing_key:
483
487
  specification_version: 4
484
488
  summary: FinApps REST API ruby client.
485
489
  test_files:
486
- - spec/utils/query_builder_spec.rb
487
- - spec/support/fake_api.rb
490
+ - spec/spec_helper.rb
488
491
  - spec/support/documents_uploads_routes.rb
489
- - spec/support/routes/locations.rb
490
- - spec/support/routes/query_screenings.rb
492
+ - spec/support/fake_api.rb
491
493
  - spec/support/routes/states.rb
492
494
  - spec/support/routes/actors.rb
495
+ - spec/support/routes/edm_transmissions.rb
496
+ - spec/support/routes/locations.rb
493
497
  - spec/support/routes/screening_metadatas.rb
498
+ - spec/support/routes/query_screenings.rb
494
499
  - spec/support/screenings_routes.rb
495
- - spec/spec_helper.rb
496
- - spec/rest/documents_orders_notifications_spec.rb
497
- - spec/rest/operator_change_password_email_spec.rb
498
- - spec/rest/order_assignments_spec.rb
499
- - spec/rest/order_refreshes_spec.rb
500
- - spec/rest/verix/verix_records_spec.rb
501
- - spec/rest/verix/verix_documents_spec.rb
500
+ - spec/utils/query_builder_spec.rb
501
+ - spec/spec_helpers/client.rb
502
+ - spec/spec_helpers/api_request.rb
503
+ - spec/rest/signed_documents_downloads_spec.rb
504
+ - spec/rest/consumers_spec.rb
505
+ - spec/rest/locations_spec.rb
506
+ - spec/rest/screenings_spec.rb
507
+ - spec/rest/consumer_login_tokens_spec.rb
508
+ - spec/rest/operators_spec.rb
502
509
  - spec/rest/verix/verix_pdf_documents_spec.rb
510
+ - spec/rest/verix/verix_documents_spec.rb
511
+ - spec/rest/verix/verix_records_spec.rb
503
512
  - spec/rest/verix/verix_metadata_spec.rb
504
- - spec/rest/states_spec.rb
505
- - spec/rest/consumers_portfolios_spec.rb
506
- - spec/rest/signed_documents_downloads_spec.rb
513
+ - spec/rest/documents_orders_notifications_spec.rb
514
+ - spec/rest/screening_metadatas_spec.rb
507
515
  - spec/rest/portfolio_reports_spec.rb
508
- - spec/rest/order_statuses_spec.rb
509
- - spec/rest/esign_templates_spec.rb
510
- - spec/rest/order_reports_spec.rb
511
- - spec/rest/tenant_settings_spec.rb
516
+ - spec/rest/portfolios_available_consumers_spec.rb
517
+ - spec/rest/client_spec.rb
512
518
  - spec/rest/portfolios_alerts_spec.rb
513
- - spec/rest/orders_spec.rb
514
- - spec/rest/consumer_login_tokens_spec.rb
515
- - spec/rest/operators_spec.rb
519
+ - spec/rest/edm_transmissions_spec.rb
520
+ - spec/rest/sessions_spec.rb
521
+ - spec/rest/portfolios_spec.rb
522
+ - spec/rest/portfolios_consumers_spec.rb
523
+ - spec/rest/operators_login_tokens_spec.rb
524
+ - spec/rest/tenant_settings_spec.rb
525
+ - spec/rest/alert_occurrences_spec.rb
526
+ - spec/rest/query/screenings_spec.rb
527
+ - spec/rest/query/base_spec.rb
528
+ - spec/rest/documents_uploads_spec.rb
516
529
  - spec/rest/actors_spec.rb
530
+ - spec/rest/order_statuses_spec.rb
531
+ - spec/rest/operators_password_resets_spec.rb
532
+ - spec/rest/alert_definitions_spec.rb
533
+ - spec/rest/operator_change_password_email_spec.rb
534
+ - spec/rest/consumers_portfolios_spec.rb
517
535
  - spec/rest/plaid/plaid_accounts_spec.rb
518
- - spec/rest/plaid/plaid_account_permissions_spec.rb
519
- - spec/rest/plaid/plaid_webhooks_spec.rb
520
536
  - spec/rest/plaid/plaid_institution_logos_spec.rb
521
537
  - spec/rest/plaid/plaid_consumer_institutions_spec.rb
538
+ - spec/rest/plaid/plaid_webhooks_spec.rb
539
+ - spec/rest/plaid/plaid_account_permissions_spec.rb
540
+ - spec/rest/version_spec.rb
541
+ - spec/rest/products_spec.rb
522
542
  - spec/rest/tenant_app_settings_spec.rb
523
- - spec/rest/locations_spec.rb
524
- - spec/rest/consumers_spec.rb
543
+ - spec/rest/order_assignments_spec.rb
544
+ - spec/rest/documents_orders_spec.rb
545
+ - spec/rest/esign_templates_spec.rb
546
+ - spec/rest/order_reports_spec.rb
525
547
  - spec/rest/order_tokens_spec.rb
526
- - spec/rest/alert_definitions_spec.rb
527
- - spec/rest/documents_upload_types_spec.rb
528
548
  - spec/rest/order_notifications_spec.rb
529
- - spec/rest/documents_orders_spec.rb
530
- - spec/rest/documents_uploads_spec.rb
531
- - spec/rest/portfolios_available_consumers_spec.rb
532
- - spec/rest/screening_metadatas_spec.rb
533
- - spec/rest/client_spec.rb
534
- - spec/rest/screenings_spec.rb
535
- - spec/rest/sessions_spec.rb
536
- - spec/rest/query/screenings_spec.rb
537
- - spec/rest/query/base_spec.rb
538
- - spec/rest/operators_password_resets_spec.rb
549
+ - spec/rest/documents_upload_types_spec.rb
550
+ - spec/rest/states_spec.rb
551
+ - spec/rest/order_refreshes_spec.rb
539
552
  - spec/rest/password_resets_spec.rb
540
- - spec/rest/products_spec.rb
541
- - spec/rest/portfolios_spec.rb
542
- - spec/rest/operators_login_tokens_spec.rb
543
- - spec/rest/alert_occurrences_spec.rb
544
- - spec/rest/portfolios_consumers_spec.rb
545
- - spec/rest/version_spec.rb
546
- - spec/spec_helpers/api_request.rb
547
- - spec/spec_helpers/client.rb
553
+ - spec/rest/orders_spec.rb