finapps 6.5.0 → 6.7.1

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: 5e80a928ff71e2322588992ecaaccb749ef54da3885b691b7397fc0e78be6061
4
- data.tar.gz: c37736f652f09f2c7066e9a45df9c4718b9c933d914716251d5e3105d9bb465f
3
+ metadata.gz: c1007bb9e3b614755fa3252fe8c53958f0a9f093997b8910e2eb29ea38082dec
4
+ data.tar.gz: 9991cf065517607999949265e2b3c2e7214edbea5c9120bb2f01e11133b6a03d
5
5
  SHA512:
6
- metadata.gz: f7a0e0ca416920b490133e964d36b4a6a86a0c5c759cbf01a30e1b3158ef66abe1c67ecf3fe2d90fb20355824a69839585090bb16fe21448468c28704bab32aa
7
- data.tar.gz: 33788efee5a351ff06001daa933578a54965de86e9b949cc8b1631e93a3c890f888d890a5e5e9af8939679d0bf2ba83702034621ae10503d27885aced872e8a3
6
+ metadata.gz: 541d42baf3992dc7e7a5a2417d95b9d7d10f886913df1123dc9ff2bc2f62918389a0cac5fbb5aab04ab2544d0c2b4bdaf512fb1a2e0e4e8a1ecdf7495144f24b
7
+ data.tar.gz: ab496f7a9823916ba5e3493860298c068d9643a193e048e0aec74bf0858bea4a690d561c82257e934e952f6e0de1b7ceda10a0a5afa0dc95abcf952967e40b71
@@ -20,7 +20,7 @@ jobs:
20
20
  runs-on: ${{ matrix.os }}
21
21
  steps:
22
22
  - name: Checkout source code
23
- uses: actions/checkout@v2.3.4
23
+ uses: actions/checkout@v2.4.0
24
24
 
25
25
  - name: Install required ruby version
26
26
  uses: ruby/setup-ruby@v1
@@ -11,7 +11,7 @@ jobs:
11
11
 
12
12
  steps:
13
13
  - name: Checkout source code
14
- uses: actions/checkout@v2.3.4
14
+ uses: actions/checkout@v2.4.0
15
15
  with:
16
16
  persist-credentials: false
17
17
  fetch-depth: 0 # otherwise, you will fail to push refs to dest repo
@@ -7,7 +7,7 @@ jobs:
7
7
  label:
8
8
  runs-on: ubuntu-latest
9
9
  steps:
10
- - uses: mheap/github-action-required-labels@v1.1.2
10
+ - uses: mheap/github-action-required-labels@v1.2
11
11
  with:
12
12
  mode: minimum
13
13
  count: 1
data/.rubocop.yml CHANGED
@@ -12,6 +12,9 @@ AllCops:
12
12
  CacheRootDirectory: tmp
13
13
  NewCops: enable
14
14
 
15
+ Gemspec/RequireMFA:
16
+ Enabled: false
17
+
15
18
  Layout/SpaceAroundMethodCallOperator:
16
19
  Enabled: true
17
20
  Layout/EmptyLinesAroundAttributeAccessor:
data/finapps.gemspec CHANGED
@@ -27,7 +27,7 @@ Gem::Specification.new do |spec|
27
27
  spec.add_development_dependency 'rspec', '~> 3.10', '>= 3.10.0'
28
28
  spec.add_development_dependency 'rubocop-performance', '~> 1.11', '>= 1.11.5'
29
29
  spec.add_development_dependency 'rubocop-rake', '~> 0.5', '>= 0.5.1'
30
- spec.add_development_dependency 'rubocop-rspec', '~> 2.4', '>= 2.4.0'
30
+ spec.add_development_dependency 'rubocop-rspec', '~> 2.5', '>= 2.5.0'
31
31
  spec.add_development_dependency 'simplecov', '~> 0.21', '>= 0.21.2'
32
32
  spec.add_development_dependency 'simplecov-console', '~> 0.9'
33
33
  spec.add_development_dependency 'sinatra', '~> 2.1', '>= 2.1.0'
@@ -0,0 +1,13 @@
1
+ # frozen_string_literal: true
2
+
3
+ module FinApps
4
+ module REST
5
+ class Actors < FinAppsCore::REST::Resources
6
+ END_POINT = 'actor/details'
7
+
8
+ def show
9
+ super nil, END_POINT
10
+ end
11
+ end
12
+ end
13
+ end
@@ -7,6 +7,7 @@ module FinApps
7
7
  module REST
8
8
  class Client < FinAppsCore::REST::BaseClient # :nodoc:
9
9
  RESOURCES = %i[
10
+ actors
10
11
  alert_definitions
11
12
  alert_occurrences
12
13
  consumers
@@ -41,6 +42,7 @@ module FinApps
41
42
  portfolio_reports
42
43
  products
43
44
  screenings
45
+ screening_metadatas
44
46
  sessions
45
47
  signed_documents_downloads
46
48
  tenant_settings
@@ -74,7 +76,7 @@ module FinApps
74
76
  end
75
77
 
76
78
  def set_variable(class_name, variable)
77
- klass = Object.const_get('FinApps').const_get('REST').const_get class_name
79
+ klass = Object.const_get(:FinApps).const_get(:REST).const_get class_name
78
80
  instance_variable_set(variable, klass.new(self))
79
81
  end
80
82
 
@@ -0,0 +1,32 @@
1
+ # frozen_string_literal: true
2
+
3
+ module FinApps
4
+ module REST
5
+ class ScreeningMetadatas < FinAppsCore::REST::Resources # :nodoc:
6
+ def show(id, key)
7
+ not_blank(id, :session_id)
8
+ not_blank(key, :key)
9
+
10
+ path = "screenings/#{ERB::Util.url_encode(id)}/meta/#{ERB::Util.url_encode(key)}"
11
+ super(nil, path)
12
+ end
13
+
14
+ def create(id, key, value)
15
+ not_blank(id, :session_id)
16
+ not_blank(key, :key)
17
+ not_blank(value, :value)
18
+
19
+ path = "screenings/#{ERB::Util.url_encode(id)}/meta"
20
+ super({key: key, value: value}, path)
21
+ end
22
+
23
+ def destroy(id, key)
24
+ not_blank(id, :session_id)
25
+ not_blank(key, :key)
26
+
27
+ path = "screenings/#{ERB::Util.url_encode(id)}/meta/#{ERB::Util.url_encode(key)}"
28
+ super(nil, path)
29
+ end
30
+ end
31
+ end
32
+ end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module FinApps
4
- VERSION = '6.5.0'
4
+ VERSION = '6.7.1'
5
5
  end
data/lib/finapps.rb CHANGED
@@ -4,6 +4,7 @@ require 'faraday'
4
4
  require 'faraday_middleware'
5
5
 
6
6
  require 'finapps_core'
7
+ require 'finapps/rest/actors'
7
8
  require 'finapps/rest/version'
8
9
  require 'finapps/rest/consumers'
9
10
  require 'finapps/rest/consumer_login_tokens'
@@ -39,6 +40,7 @@ require 'finapps/rest/documents_upload_types'
39
40
  require 'finapps/rest/signed_documents_downloads'
40
41
  require 'finapps/rest/documents_orders_notifications'
41
42
  require 'finapps/rest/screenings'
43
+ require 'finapps/rest/screening_metadatas'
42
44
 
43
45
  require 'finapps/rest/plaid/plaid_resources'
44
46
  require 'finapps/rest/plaid/plaid_webhooks'
@@ -0,0 +1,39 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'spec_helpers/client'
4
+ require 'spec_helpers/api_request'
5
+
6
+ RSpec.describe FinApps::REST::Actors do
7
+ include SpecHelpers::Client
8
+
9
+ let(:results) { subject[RESULTS] }
10
+ let(:error_messages) { subject[ERROR_MESSAGES] }
11
+
12
+ describe '#show' do
13
+ subject(:show) { described_class.new(client).show }
14
+
15
+ context 'when authorization is not valid' do
16
+ before { stub_unauthorized_request }
17
+
18
+ it { expect { show }.to raise_error(FinAppsCore::ApiUnauthenticatedError) }
19
+ end
20
+
21
+ context 'when authorization is valid' do
22
+ it_behaves_like 'an API request'
23
+ it_behaves_like 'a successful request'
24
+
25
+ it('returns a valid actor') { expect(results).to be_a(Hash) }
26
+ end
27
+ end
28
+
29
+ def stub_unauthorized_request
30
+ stub_request(:get, %r{/actor/details}).to_return(
31
+ status: 401,
32
+ body: {
33
+ error_messages: ['Unauthorized'],
34
+ results: nil
35
+ }.to_json,
36
+ headers: {}
37
+ )
38
+ end
39
+ end
@@ -0,0 +1,131 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'spec_helpers/client'
4
+ require 'spec_helpers/api_request'
5
+
6
+ RSpec.describe FinApps::REST::ScreeningMetadatas do
7
+ include SpecHelpers::Client
8
+
9
+ let(:results) { subject[RESULTS] }
10
+ let(:error_messages) { subject[ERROR_MESSAGES] }
11
+
12
+ describe '#show' do
13
+ subject(:show_metadata) { described_class.new(client).show(id, key) }
14
+
15
+ context 'with valid params' do
16
+ let(:id) { :session_id }
17
+ let(:key) { :key }
18
+
19
+ before { show_metadata }
20
+
21
+ it 'sends proper request' do
22
+ url = "#{versioned_api_path}/screenings/session_id/meta/key"
23
+
24
+ expect(WebMock).to have_requested(:get, url)
25
+ end
26
+
27
+ it_behaves_like 'an API request'
28
+ it_behaves_like 'a successful request'
29
+ end
30
+
31
+ context 'with invalid params' do
32
+ let(:id) { :something_else }
33
+ let(:key) { :key }
34
+
35
+ it_behaves_like 'an API request'
36
+ it('results is nil') { expect(results).to be_nil }
37
+
38
+ it('error messages array is populated') do
39
+ expect(error_messages.first.downcase).to eq('the screening id was not found')
40
+ end
41
+ end
42
+
43
+ context 'with missing params' do
44
+ let(:id) { nil }
45
+ let(:key) { nil }
46
+
47
+ it_behaves_like 'a request that raises an error'
48
+ end
49
+ end
50
+
51
+ describe '#create' do
52
+ subject(:create_metadata) { described_class.new(client).create(id, key, value) }
53
+
54
+ context 'with valid params' do
55
+ let(:id) { :session_id }
56
+ let(:key) { :key }
57
+ let(:value) { :value }
58
+
59
+ before { create_metadata }
60
+
61
+ it 'sends proper request' do
62
+ url = "#{versioned_api_path}/screenings/session_id/meta"
63
+
64
+ expect(WebMock).to have_requested(:post, url)
65
+ end
66
+
67
+ it_behaves_like 'an API request'
68
+ it_behaves_like 'a successful request'
69
+ end
70
+
71
+ context 'with invalid params' do
72
+ let(:id) { :something_else }
73
+ let(:key) { :key }
74
+ let(:value) { :value }
75
+
76
+ it_behaves_like 'an API request'
77
+ it('results is nil') { expect(results).to be_nil }
78
+
79
+ it('error messages array is populated') do
80
+ expect(error_messages.first.downcase).to eq('the screening id was not found')
81
+ end
82
+ end
83
+
84
+ context 'with missing params' do
85
+ let(:id) { nil }
86
+ let(:key) { nil }
87
+ let(:value) { nil }
88
+
89
+ it_behaves_like 'a request that raises an error'
90
+ end
91
+ end
92
+
93
+ describe '#destroy' do
94
+ subject(:destroy_metadata) { described_class.new(client).destroy(id, key) }
95
+
96
+ context 'with valid params' do
97
+ let(:id) { :session_id }
98
+ let(:key) { :key }
99
+
100
+ before { destroy_metadata }
101
+
102
+ it 'sends proper request' do
103
+ url = "#{versioned_api_path}/screenings/session_id/meta/key"
104
+
105
+ expect(WebMock).to have_requested(:delete, url)
106
+ end
107
+
108
+ it_behaves_like 'an API request'
109
+ it_behaves_like 'a successful request'
110
+ end
111
+
112
+ context 'with invalid params' do
113
+ let(:id) { :something_else }
114
+ let(:key) { :key }
115
+
116
+ it_behaves_like 'an API request'
117
+ it('results is nil') { expect(results).to be_nil }
118
+
119
+ it('error messages array is populated') do
120
+ expect(error_messages.first.downcase).to eq('the screening id was not found')
121
+ end
122
+ end
123
+
124
+ context 'with missing params' do
125
+ let(:id) { nil }
126
+ let(:key) { nil }
127
+
128
+ it_behaves_like 'a request that raises an error'
129
+ end
130
+ end
131
+ end
@@ -3,6 +3,8 @@
3
3
  require 'sinatra/base'
4
4
  require_relative 'documents_uploads_routes'
5
5
  require_relative 'screenings_routes'
6
+ require_relative 'routes/actors'
7
+ require_relative 'routes/screening_metadatas'
6
8
 
7
9
  module Fake
8
10
  # the FakeApi class is used to mock API requests while testing.
@@ -18,6 +20,11 @@ module Fake
18
20
  put("/#{version}/resources") { json_response 201, 'resource.json' }
19
21
  delete("/#{version}/resources/:id") { status 202 }
20
22
 
23
+ include ActorsRoutes
24
+ include DocumentsUploadsRoutes
25
+ include ScreeningsRoutes
26
+ include ScreeningMetadatasRoutes
27
+
21
28
  # verix_metadata
22
29
  get("/#{version}/v/metadata") do
23
30
  json_response 200, 'verix/metadata.json'
@@ -257,9 +264,6 @@ module Fake
257
264
  json_response 404, 'invalid_signature_id.json'
258
265
  end
259
266
 
260
- # documents_uploads
261
- include DocumentsUploadsRoutes
262
-
263
267
  # documents orders notifications
264
268
  post("/#{version}/documents/orders/valid_id/notify") { status 204 }
265
269
  post("/#{version}/documents/orders/invalid_id/notify") do
@@ -277,9 +281,6 @@ module Fake
277
281
  # document_upload_types
278
282
  get("/#{version}/documents/upload_types") { json_response 200, 'upload_types.json' }
279
283
 
280
- # screenings
281
- include ScreeningsRoutes
282
-
283
284
  # consumers
284
285
  get("/#{version}/consumers") do
285
286
  json_response 200, 'users.json'
@@ -554,7 +555,7 @@ module Fake
554
555
  def http_response(content_type, response_code, file_name)
555
556
  content_type content_type
556
557
  status response_code
557
- File.open("#{File.dirname(__FILE__)}/fixtures/#{file_name}").read
558
+ File.read("#{File.dirname(__FILE__)}/fixtures/#{file_name}")
558
559
  end
559
560
  end
560
561
  end
@@ -0,0 +1,19 @@
1
+ {
2
+ "auth0_id": "string",
3
+ "date_created": "2021-10-27T02:36:01Z",
4
+ "date_modified": "2021-10-27T02:36:01Z",
5
+ "email": "string",
6
+ "external_id": "string",
7
+ "first_name": "string",
8
+ "language": "string",
9
+ "last_name": "string",
10
+ "locked": true,
11
+ "memo": "string",
12
+ "phone": "string",
13
+ "phone_country_code": "string",
14
+ "public_id": "string",
15
+ "role": 0,
16
+ "status": 0,
17
+ "tenant_id": "string",
18
+ "token": "string"
19
+ }
@@ -0,0 +1,3 @@
1
+ {
2
+ "messages": [ "The screening ID was not found" ]
3
+ }
@@ -0,0 +1,4 @@
1
+ {
2
+ "key": "le-key",
3
+ "value": "le-value"
4
+ }
@@ -0,0 +1,14 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Fake
4
+ module ActorsRoutes
5
+ class << self
6
+ def included(base)
7
+ base.get("/#{base.version}/actor/details") do
8
+ json_response 200, 'actors/details.json'
9
+ end
10
+ super
11
+ end
12
+ end
13
+ end
14
+ end
@@ -0,0 +1,45 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Fake
4
+ module ScreeningMetadatasRoutes
5
+ class << self
6
+ def included(base)
7
+ get_routes base
8
+ post_routes base
9
+ destroy_routes base
10
+
11
+ super
12
+ end
13
+
14
+ def post_routes(base)
15
+ base.post("/#{base.version}/screenings/:session_id/meta") do
16
+ if params[:session_id] == 'session_id'
17
+ status 204
18
+ else
19
+ json_response 404, 'screening_metadatas/not_found.json'
20
+ end
21
+ end
22
+ end
23
+
24
+ def destroy_routes(base)
25
+ base.delete("/#{base.version}/screenings/:session_id/meta/:key") do
26
+ if params[:session_id] == 'session_id'
27
+ status 204
28
+ else
29
+ json_response 404, 'screening_metadatas/not_found.json'
30
+ end
31
+ end
32
+ end
33
+
34
+ def get_routes(base)
35
+ base.get("/#{base.version}/screenings/:session_id/meta/:key") do
36
+ if params[:session_id] == 'session_id'
37
+ json_response 200, 'screening_metadatas/show.json'
38
+ else
39
+ json_response 404, 'screening_metadatas/not_found.json'
40
+ end
41
+ end
42
+ end
43
+ end
44
+ end
45
+ 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.5.0
4
+ version: 6.7.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Erich Quintero
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-09-27 00:00:00.000000000 Z
11
+ date: 2022-01-21 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: finapps_core
@@ -136,20 +136,20 @@ dependencies:
136
136
  requirements:
137
137
  - - "~>"
138
138
  - !ruby/object:Gem::Version
139
- version: '2.4'
139
+ version: '2.5'
140
140
  - - ">="
141
141
  - !ruby/object:Gem::Version
142
- version: 2.4.0
142
+ version: 2.5.0
143
143
  type: :development
144
144
  prerelease: false
145
145
  version_requirements: !ruby/object:Gem::Requirement
146
146
  requirements:
147
147
  - - "~>"
148
148
  - !ruby/object:Gem::Version
149
- version: '2.4'
149
+ version: '2.5'
150
150
  - - ">="
151
151
  - !ruby/object:Gem::Version
152
- version: 2.4.0
152
+ version: 2.5.0
153
153
  - !ruby/object:Gem::Dependency
154
154
  name: simplecov
155
155
  requirement: !ruby/object:Gem::Requirement
@@ -258,6 +258,7 @@ files:
258
258
  - Rakefile
259
259
  - finapps.gemspec
260
260
  - lib/finapps.rb
261
+ - lib/finapps/rest/actors.rb
261
262
  - lib/finapps/rest/alert_definitions.rb
262
263
  - lib/finapps/rest/alert_occurrences.rb
263
264
  - lib/finapps/rest/client.rb
@@ -293,6 +294,7 @@ files:
293
294
  - lib/finapps/rest/portfolios_available_consumers.rb
294
295
  - lib/finapps/rest/portfolios_consumers.rb
295
296
  - lib/finapps/rest/products.rb
297
+ - lib/finapps/rest/screening_metadatas.rb
296
298
  - lib/finapps/rest/screenings.rb
297
299
  - lib/finapps/rest/sessions.rb
298
300
  - lib/finapps/rest/signed_documents_downloads.rb
@@ -305,6 +307,7 @@ files:
305
307
  - lib/finapps/rest/version.rb
306
308
  - lib/finapps/utils/query_builder.rb
307
309
  - lib/finapps/version.rb
310
+ - spec/rest/actors_spec.rb
308
311
  - spec/rest/alert_definitions_spec.rb
309
312
  - spec/rest/alert_occurrences_spec.rb
310
313
  - spec/rest/client_spec.rb
@@ -339,6 +342,7 @@ files:
339
342
  - spec/rest/portfolios_consumers_spec.rb
340
343
  - spec/rest/portfolios_spec.rb
341
344
  - spec/rest/products_spec.rb
345
+ - spec/rest/screening_metadatas_spec.rb
342
346
  - spec/rest/screenings_spec.rb
343
347
  - spec/rest/sessions_spec.rb
344
348
  - spec/rest/signed_documents_downloads_spec.rb
@@ -354,6 +358,7 @@ files:
354
358
  - spec/spec_helpers/client.rb
355
359
  - spec/support/documents_uploads_routes.rb
356
360
  - spec/support/fake_api.rb
361
+ - spec/support/fixtures/actors/details.json
357
362
  - spec/support/fixtures/alert_definition.json
358
363
  - spec/support/fixtures/alert_definitions.json
359
364
  - spec/support/fixtures/alert_occurrences.json
@@ -407,6 +412,8 @@ files:
407
412
  - spec/support/fixtures/screening.json
408
413
  - spec/support/fixtures/screening_invalid_update.json
409
414
  - spec/support/fixtures/screening_list.json
415
+ - spec/support/fixtures/screening_metadatas/not_found.json
416
+ - spec/support/fixtures/screening_metadatas/show.json
410
417
  - spec/support/fixtures/screenings/last_session.json
411
418
  - spec/support/fixtures/screenings/session_not_found_with_id.json
412
419
  - spec/support/fixtures/screenings/tenant_schemas.json
@@ -426,6 +433,8 @@ files:
426
433
  - spec/support/fixtures/verix/metadata.json
427
434
  - spec/support/fixtures/verix/record/create.json
428
435
  - spec/support/fixtures/verix/record/list.json
436
+ - spec/support/routes/actors.rb
437
+ - spec/support/routes/screening_metadatas.rb
429
438
  - spec/support/screenings_routes.rb
430
439
  - spec/utils/query_builder_spec.rb
431
440
  - tags
@@ -459,54 +468,58 @@ signing_key:
459
468
  specification_version: 4
460
469
  summary: FinApps REST API ruby client.
461
470
  test_files:
471
+ - spec/support/routes/actors.rb
472
+ - spec/support/routes/screening_metadatas.rb
462
473
  - spec/support/screenings_routes.rb
463
- - spec/support/fake_api.rb
464
474
  - spec/support/documents_uploads_routes.rb
465
- - spec/spec_helper.rb
466
- - spec/spec_helpers/api_request.rb
467
- - spec/spec_helpers/client.rb
468
- - spec/rest/portfolios_alerts_spec.rb
469
- - spec/rest/products_spec.rb
475
+ - spec/support/fake_api.rb
476
+ - spec/rest/operators_login_tokens_spec.rb
477
+ - spec/rest/screening_metadatas_spec.rb
478
+ - spec/rest/documents_upload_types_spec.rb
479
+ - spec/rest/orders_spec.rb
480
+ - spec/rest/tenant_app_settings_spec.rb
481
+ - spec/rest/version_spec.rb
482
+ - spec/rest/screenings_spec.rb
470
483
  - spec/rest/documents_orders_spec.rb
484
+ - spec/rest/documents_uploads_spec.rb
485
+ - spec/rest/alert_definitions_spec.rb
471
486
  - spec/rest/password_resets_spec.rb
487
+ - spec/rest/order_reports_spec.rb
488
+ - spec/rest/alert_occurrences_spec.rb
489
+ - spec/rest/portfolios_available_consumers_spec.rb
490
+ - spec/rest/consumer_login_tokens_spec.rb
491
+ - spec/rest/tenant_settings_spec.rb
472
492
  - spec/rest/order_statuses_spec.rb
493
+ - spec/rest/products_spec.rb
473
494
  - spec/rest/operators_spec.rb
474
- - spec/rest/operator_change_password_email_spec.rb
475
- - spec/rest/esign_templates_spec.rb
476
- - spec/rest/order_tokens_spec.rb
477
- - spec/rest/order_reports_spec.rb
478
- - spec/rest/documents_upload_types_spec.rb
495
+ - spec/rest/sessions_spec.rb
496
+ - spec/rest/order_notifications_spec.rb
497
+ - spec/rest/signed_documents_downloads_spec.rb
498
+ - spec/rest/portfolio_reports_spec.rb
499
+ - spec/rest/portfolios_spec.rb
479
500
  - spec/rest/consumers_portfolios_spec.rb
480
- - spec/rest/portfolios_consumers_spec.rb
481
- - spec/rest/verix/verix_metadata_spec.rb
482
501
  - spec/rest/verix/verix_documents_spec.rb
483
- - spec/rest/verix/verix_records_spec.rb
484
502
  - spec/rest/verix/verix_pdf_documents_spec.rb
485
- - spec/rest/tenant_settings_spec.rb
486
- - spec/rest/consumers_spec.rb
487
- - spec/rest/client_spec.rb
488
- - spec/rest/portfolios_available_consumers_spec.rb
489
- - spec/rest/alert_definitions_spec.rb
490
- - spec/rest/order_notifications_spec.rb
491
- - spec/rest/operators_password_resets_spec.rb
492
- - spec/rest/version_spec.rb
493
- - spec/rest/portfolios_spec.rb
494
- - spec/rest/sessions_spec.rb
495
- - spec/rest/documents_orders_notifications_spec.rb
496
- - spec/rest/tenant_app_settings_spec.rb
497
- - spec/rest/documents_uploads_spec.rb
498
- - spec/rest/screenings_spec.rb
499
- - spec/rest/signed_documents_downloads_spec.rb
503
+ - spec/rest/verix/verix_metadata_spec.rb
504
+ - spec/rest/verix/verix_records_spec.rb
505
+ - spec/rest/order_refreshes_spec.rb
500
506
  - spec/rest/plaid/plaid_account_permissions_spec.rb
507
+ - spec/rest/plaid/plaid_consumer_institutions_spec.rb
508
+ - spec/rest/plaid/plaid_institution_logos_spec.rb
501
509
  - spec/rest/plaid/plaid_webhooks_spec.rb
502
510
  - spec/rest/plaid/plaid_accounts_spec.rb
503
- - spec/rest/plaid/plaid_institution_logos_spec.rb
504
- - spec/rest/plaid/plaid_consumer_institutions_spec.rb
511
+ - spec/rest/client_spec.rb
512
+ - spec/rest/portfolios_alerts_spec.rb
513
+ - spec/rest/consumers_spec.rb
505
514
  - spec/rest/order_assignments_spec.rb
506
- - spec/rest/consumer_login_tokens_spec.rb
507
- - spec/rest/alert_occurrences_spec.rb
508
- - spec/rest/operators_login_tokens_spec.rb
509
- - spec/rest/order_refreshes_spec.rb
510
- - spec/rest/portfolio_reports_spec.rb
511
- - spec/rest/orders_spec.rb
515
+ - spec/rest/operator_change_password_email_spec.rb
516
+ - spec/rest/documents_orders_notifications_spec.rb
517
+ - spec/rest/operators_password_resets_spec.rb
518
+ - spec/rest/esign_templates_spec.rb
519
+ - spec/rest/order_tokens_spec.rb
520
+ - spec/rest/portfolios_consumers_spec.rb
521
+ - spec/rest/actors_spec.rb
522
+ - spec/spec_helpers/api_request.rb
523
+ - spec/spec_helpers/client.rb
512
524
  - spec/utils/query_builder_spec.rb
525
+ - spec/spec_helper.rb