finapps 6.10.0 → 6.11.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/finapps/rest/client.rb +1 -0
- data/lib/finapps/rest/edm_transmissions.rb +14 -0
- data/lib/finapps/rest/locations.rb +3 -3
- data/lib/finapps/rest/operators.rb +5 -4
- data/lib/finapps/rest/states.rb +3 -0
- data/lib/finapps/version.rb +1 -1
- data/lib/finapps.rb +1 -0
- data/spec/rest/edm_transmissions_spec.rb +20 -0
- data/spec/rest/locations_spec.rb +43 -61
- data/spec/rest/operators_spec.rb +12 -3
- data/spec/rest/states_spec.rb +3 -1
- data/spec/spec_helper.rb +1 -1
- data/spec/support/fake_api.rb +2 -0
- data/spec/support/fixtures/edm_transmissions/create.json +17 -0
- data/spec/support/fixtures/locations/get_location.json +1 -0
- data/spec/support/fixtures/locations/get_locations.json +4 -1
- data/spec/support/routes/edm_transmissions.rb +19 -0
- data/spec/support/routes/locations.rb +6 -13
- data/spec/support/routes/states.rb +1 -1
- metadata +53 -47
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 701a3842e404d5025eccbfd03848e77a1c97ebf837974d51dbbe5d62b7b29ef2
|
4
|
+
data.tar.gz: bd21d306c479be7300b8d9b2769b0e50e657c9c2e962009fa21f82671ab338fe
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 44bf90538086fc313fbd62e8be9fdb908a72131f31a24a3485528f8da4cc94f299dc1ee1c328116447472914243f5a43916e9c667927fb07221b4d5217685718
|
7
|
+
data.tar.gz: b61176f93d88fdf09e6a640c3a31185b60d295c76ba71a8654f28397ba8c22c5a9feb97b93fb5c07243f3af076387cc38dd1c48b6ae89313546925f796e940fb
|
data/lib/finapps/rest/client.rb
CHANGED
@@ -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
|
data/lib/finapps/rest/states.rb
CHANGED
data/lib/finapps/version.rb
CHANGED
data/lib/finapps.rb
CHANGED
@@ -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
|
data/spec/rest/locations_spec.rb
CHANGED
@@ -5,31 +5,12 @@ require 'digest'
|
|
5
5
|
RSpec.describe FinApps::REST::Locations do
|
6
6
|
include SpecHelpers::Client
|
7
7
|
|
8
|
-
|
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
|
-
|
10
|
+
params = {name: 'Quick Mart Non-Urgent Care', state: {code: 'MD'}}
|
29
11
|
|
30
|
-
|
31
|
-
|
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
|
-
|
44
|
-
|
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(:
|
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(
|
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
|
54
|
-
let(:
|
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
|
-
|
60
|
-
|
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 '#
|
68
|
-
subject(:
|
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 '
|
74
|
-
|
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
|
-
|
78
|
-
|
68
|
+
describe '#update' do
|
69
|
+
subject(:update) { described_class.new(client).update(id, params) }
|
79
70
|
|
80
|
-
|
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
|
84
|
-
let(:
|
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(
|
93
|
-
|
94
|
-
let(:key) { Digest::SHA256.hexdigest('Quick Mart Urgent CareMD,MD') }
|
83
|
+
subject(:destroy) { described_class.new(client).destroy(id) }
|
95
84
|
|
96
|
-
|
97
|
-
|
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
|
107
|
-
let(:
|
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
|
data/spec/rest/operators_spec.rb
CHANGED
@@ -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': [{
|
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')
|
data/spec/rest/states_spec.rb
CHANGED
@@ -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
|
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
data/spec/support/fake_api.rb
CHANGED
@@ -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,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/:
|
23
|
-
return status(404) if params[:
|
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/:
|
32
|
-
return status(404) if params[:
|
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/:
|
46
|
-
return status(404) if params[:
|
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
|
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.
|
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-
|
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/
|
487
|
-
- spec/support/fake_api.rb
|
490
|
+
- spec/spec_helper.rb
|
488
491
|
- spec/support/documents_uploads_routes.rb
|
489
|
-
- spec/support/
|
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/
|
496
|
-
- spec/
|
497
|
-
- spec/
|
498
|
-
- spec/rest/
|
499
|
-
- spec/rest/
|
500
|
-
- spec/rest/
|
501
|
-
- spec/rest/
|
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/
|
505
|
-
- spec/rest/
|
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/
|
509
|
-
- spec/rest/
|
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/
|
514
|
-
- spec/rest/
|
515
|
-
- spec/rest/
|
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/
|
524
|
-
- spec/rest/
|
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/
|
530
|
-
- spec/rest/
|
531
|
-
- spec/rest/
|
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/
|
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
|