active_call-doc_fox 0.1.2 → 0.2.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.
Files changed (48) hide show
  1. checksums.yaml +4 -4
  2. data/.rubocop.yml +4 -0
  3. data/CHANGELOG.md +10 -0
  4. data/README.md +423 -10
  5. data/lib/doc_fox/access_token/get_service.rb +2 -0
  6. data/lib/doc_fox/authentication/get_service.rb +4 -0
  7. data/lib/doc_fox/base_service.rb +1 -0
  8. data/lib/doc_fox/concerns/enumerable.rb +1 -1
  9. data/lib/doc_fox/data_requirement/facade.rb +25 -0
  10. data/lib/doc_fox/data_requirement/get_service.rb +53 -0
  11. data/lib/doc_fox/data_requirement/list_service.rb +67 -0
  12. data/lib/doc_fox/document/download_service.rb +81 -0
  13. data/lib/doc_fox/document/facade.rb +22 -0
  14. data/lib/doc_fox/document/get_service.rb +54 -0
  15. data/lib/doc_fox/document/list_service.rb +36 -0
  16. data/lib/doc_fox/document/upload_service.rb +62 -0
  17. data/lib/doc_fox/document_token/create_service.rb +57 -0
  18. data/lib/doc_fox/document_token/facade.rb +15 -0
  19. data/lib/doc_fox/document_token/get_service.rb +46 -0
  20. data/lib/doc_fox/document_token/list_service.rb +36 -0
  21. data/lib/doc_fox/evidence_submission/approve_service.rb +54 -0
  22. data/lib/doc_fox/evidence_submission/facade.rb +20 -0
  23. data/lib/doc_fox/evidence_submission/get_service.rb +54 -0
  24. data/lib/doc_fox/evidence_submission/list_service.rb +36 -0
  25. data/lib/doc_fox/evidence_submission/reject_service.rb +58 -0
  26. data/lib/doc_fox/evidence_submission/replace_service.rb +54 -0
  27. data/lib/doc_fox/evidence_submission/update_service.rb +95 -0
  28. data/lib/doc_fox/kyc_application/approve_service.rb +2 -0
  29. data/lib/doc_fox/kyc_application/archive_service.rb +2 -0
  30. data/lib/doc_fox/kyc_application/create_service.rb +2 -0
  31. data/lib/doc_fox/kyc_application/delete_service.rb +2 -0
  32. data/lib/doc_fox/kyc_application/get_service.rb +3 -1
  33. data/lib/doc_fox/kyc_application/list_service.rb +2 -0
  34. data/lib/doc_fox/kyc_application/transfer_service.rb +2 -0
  35. data/lib/doc_fox/kyc_application/unapprove_service.rb +2 -0
  36. data/lib/doc_fox/kyc_application/unarchive_service.rb +2 -0
  37. data/lib/doc_fox/kyc_entity_template/get_service.rb +2 -0
  38. data/lib/doc_fox/kyc_entity_template/list_service.rb +2 -0
  39. data/lib/doc_fox/profile/facade.rb +15 -0
  40. data/lib/doc_fox/profile/get_service.rb +53 -0
  41. data/lib/doc_fox/profile/list_service.rb +36 -0
  42. data/lib/doc_fox/status_summary/facade.rb +14 -0
  43. data/lib/doc_fox/status_summary/get_service.rb +47 -0
  44. data/lib/doc_fox/user/get_service.rb +2 -0
  45. data/lib/doc_fox/user/list_service.rb +2 -0
  46. data/lib/doc_fox/version.rb +1 -1
  47. data/lib/doc_fox.rb +1 -0
  48. metadata +40 -2
@@ -0,0 +1,58 @@
1
+ # frozen_string_literal: true
2
+
3
+ class DocFox::EvidenceSubmission::RejectService < DocFox::BaseService
4
+ attr_reader :id, :reason
5
+
6
+ validates :id, :reason, presence: true
7
+
8
+ after_call :set_facade
9
+
10
+ delegate_missing_to :@facade
11
+
12
+ def initialize(id:, reason:)
13
+ @id = id
14
+ @reason = reason
15
+ end
16
+
17
+ # Reject an active evidence submission.
18
+ #
19
+ # https://www.docfoxapp.com/api/v2/documentation#tag/Evidence-Submissions/paths/~1api~1v2~1evidence_submissions~1%7Bevidence_submission_id%7D~1reject/patch
20
+ #
21
+ # ==== Examples
22
+ #
23
+ # service = DocFox::EvidenceSubmission::RejectService.call(id: '', reason: '')
24
+ #
25
+ # service.success? # => true
26
+ # service.errors # => #<ActiveModel::Errors []>
27
+ #
28
+ # service.response # => #<Faraday::Response ...>
29
+ # service.response.status # => 200
30
+ # service.response.body # => {}
31
+ #
32
+ # service.facade # => #<DocFox::EvidenceSubmission::Facade ...>
33
+ # service.facade.id
34
+ # service.id
35
+ #
36
+ # PATCH /api/v2/kyc_applications/:id/archive
37
+ def call
38
+ connection.patch("evidence_submissions/#{id}/reject", **params)
39
+ end
40
+
41
+ private
42
+
43
+ def params
44
+ {
45
+ data: {
46
+ type: 'evidence_submission',
47
+ id: id,
48
+ attributes: {
49
+ rejection_reason: reason
50
+ }
51
+ }
52
+ }
53
+ end
54
+
55
+ def set_facade
56
+ @facade = DocFox::EvidenceSubmission::Facade.new(response.body)
57
+ end
58
+ end
@@ -0,0 +1,54 @@
1
+ # frozen_string_literal: true
2
+
3
+ class DocFox::EvidenceSubmission::ReplaceService < DocFox::BaseService
4
+ attr_reader :id
5
+
6
+ validates :id, presence: true
7
+
8
+ after_call :set_facade
9
+
10
+ delegate_missing_to :@facade
11
+
12
+ def initialize(id:)
13
+ @id = id
14
+ end
15
+
16
+ # Approve an active evidence submission.
17
+ #
18
+ # https://www.docfoxapp.com/api/v2/documentation#tag/Evidence-Submissions/paths/~1api~1v2~1evidence_submissions~1%7Bevidence_submission_id%7D~1replace/patch
19
+ #
20
+ # ==== Examples
21
+ #
22
+ # service = DocFox::EvidenceSubmission::ReplaceService.call(id: '')
23
+ #
24
+ # service.success? # => true
25
+ # service.errors # => #<ActiveModel::Errors []>
26
+ #
27
+ # service.response # => #<Faraday::Response ...>
28
+ # service.response.status # => 200
29
+ # service.response.body # => {}
30
+ #
31
+ # service.facade # => #<DocFox::EvidenceSubmission::Facade ...>
32
+ # service.facade.id
33
+ # service.id
34
+ #
35
+ # PATCH /api/v2/kyc_applications/:id/replace
36
+ def call
37
+ connection.patch("evidence_submissions/#{id}/replace", **params)
38
+ end
39
+
40
+ private
41
+
42
+ def params
43
+ {
44
+ data: {
45
+ type: 'evidence_submission',
46
+ id: id
47
+ }
48
+ }
49
+ end
50
+
51
+ def set_facade
52
+ @facade = DocFox::EvidenceSubmission::Facade.new(response.body)
53
+ end
54
+ end
@@ -0,0 +1,95 @@
1
+ # frozen_string_literal: true
2
+
3
+ class DocFox::EvidenceSubmission::UpdateService < DocFox::BaseService
4
+ attr_reader :id, :data
5
+
6
+ validates :id, :data, presence: true
7
+
8
+ after_call :set_facade
9
+
10
+ delegate_missing_to :@facade
11
+
12
+ def initialize(id:, data:)
13
+ @id = id
14
+ @data = data
15
+ end
16
+
17
+ # Update an evidence submission.
18
+ #
19
+ # https://www.docfoxapp.com/api/v2/documentation#tag/Evidence-Submissions/paths/~1api~1v2~1evidence_submissions~1%7Bevidence_submission_id%7D/patch
20
+ #
21
+ # ==== Examples
22
+ #
23
+ # service = DocFox::EvidenceSubmission::UpdateService.call(
24
+ # id: '',
25
+ # data: {
26
+ # type: 'evidence_submission',
27
+ # id: '',
28
+ # attributes: {
29
+ # results: {
30
+ # dob: '1984-01-01',
31
+ # gender: 'M',
32
+ # surname: 'Cartman',
33
+ # forename1: 'Eric',
34
+ # forename2: nil,
35
+ # id_number: '8401017223183',
36
+ # addresses: {
37
+ # address: [
38
+ # {
39
+ # addr_type: 'R',
40
+ # addr_line1: '28201 E. Bonanza St.',
41
+ # addr_line2: '',
42
+ # addr_line3: '',
43
+ # addr_line4: 'South Park',
44
+ # addr_postal_code: '8000',
45
+ # addr_update_date: '2017-11-21'
46
+ # }
47
+ # ]
48
+ # },
49
+ # telephones: {
50
+ # telephone: [
51
+ # {
52
+ # tel_num: '27715555555',
53
+ # tel_type: 'Cell',
54
+ # tel_update_date: '2017-09-05'
55
+ # }
56
+ # ]
57
+ # },
58
+ # deceased_date: nil,
59
+ # deceased_flag: 'N',
60
+ # verified_date: '2015-06-23',
61
+ # verified_flag: 'Y',
62
+ # deceased_reason: nil
63
+ # }
64
+ # }
65
+ # }
66
+ # )
67
+ #
68
+ # service.success? # => true
69
+ # service.errors # => #<ActiveModel::Errors []>
70
+ #
71
+ # service.response # => #<Faraday::Response ...>
72
+ # service.response.status # => 200
73
+ # service.response.body # => {}
74
+ #
75
+ # service.facade # => #<DocFox::EvidenceSubmission::Facade ...>
76
+ # service.facade.id
77
+ # service.id
78
+ #
79
+ # PATCH /api/v2/evidence_submissions/:id
80
+ def call
81
+ connection.patch("evidence_submissions/#{id}", **params)
82
+ end
83
+
84
+ private
85
+
86
+ def params
87
+ {
88
+ data: data
89
+ }
90
+ end
91
+
92
+ def set_facade
93
+ @facade = DocFox::EvidenceSubmission::Facade.new(response.body)
94
+ end
95
+ end
@@ -15,6 +15,8 @@ class DocFox::KycApplication::ApproveService < DocFox::BaseService
15
15
 
16
16
  # Approve a KYC application.
17
17
  #
18
+ # https://www.docfoxapp.com/api/v2/documentation#tag/KYC-Applications/paths/~1api~1v2~1kyc_applications~1%7Bkyc_application_id%7D~1approve/patch
19
+ #
18
20
  # ==== Examples
19
21
  #
20
22
  # service = DocFox::KycApplication::ApproveService.call(id: '')
@@ -12,6 +12,8 @@ class DocFox::KycApplication::ArchiveService < DocFox::BaseService
12
12
 
13
13
  # Archive a KYC application.
14
14
  #
15
+ # https://www.docfoxapp.com/api/v2/documentation#tag/KYC-Applications/paths/~1api~1v2~1kyc_applications~1%7Bkyc_application_id%7D~1archive/post
16
+ #
15
17
  # ==== Examples
16
18
  #
17
19
  # service = DocFox::KycApplication::ArchiveService.call(id: '', reason: '')
@@ -15,6 +15,8 @@ class DocFox::KycApplication::CreateService < DocFox::BaseService
15
15
 
16
16
  # Create a KYC application.
17
17
  #
18
+ # https://www.docfoxapp.com/api/v2/documentation#tag/KYC-Applications/paths/~1api~1v2~1kyc_applications/post
19
+ #
18
20
  # ==== Examples
19
21
  #
20
22
  # service = DocFox::KycApplication::CreateService.call(
@@ -11,6 +11,8 @@ class DocFox::KycApplication::DeleteService < DocFox::BaseService
11
11
 
12
12
  # Delete a KYC application.
13
13
  #
14
+ # https://www.docfoxapp.com/api/v2/documentation#tag/KYC-Applications/paths/~1api~1v2~1kyc_applications~1%7Bkyc_application_id%7D/delete
15
+ #
14
16
  # ==== Examples
15
17
  #
16
18
  # service = DocFox::KycApplication::DeleteService.call(id: '')
@@ -16,6 +16,8 @@ class DocFox::KycApplication::GetService < DocFox::BaseService
16
16
 
17
17
  # Get a KYC application.
18
18
  #
19
+ # https://www.docfoxapp.com/api/v2/documentation#tag/KYC-Applications/paths/~1api~1v2~1kyc_applications~1%7Bkyc_application_id%7D/get
20
+ #
19
21
  # ==== Examples
20
22
  #
21
23
  # service = DocFox::KycApplication::GetService.call(id: '')
@@ -41,7 +43,7 @@ class DocFox::KycApplication::GetService < DocFox::BaseService
41
43
  #
42
44
  # GET /api/v2/kyc_applications/:id
43
45
  def call
44
- connection.get("kyc_applications/#{id}", params)
46
+ connection.get("kyc_applications/#{id}", **params)
45
47
  end
46
48
 
47
49
  private
@@ -7,6 +7,8 @@ class DocFox::KycApplication::ListService < DocFox::BaseService
7
7
 
8
8
  # List KYC applications.
9
9
  #
10
+ # https://www.docfoxapp.com/api/v2/documentation#tag/KYC-Applications/paths/~1api~1v2~1kyc_applications/get
11
+ #
10
12
  # ==== Examples
11
13
  #
12
14
  # service = DocFox::KycApplication::ListService.call.first
@@ -16,6 +16,8 @@ class DocFox::KycApplication::TransferService < DocFox::BaseService
16
16
 
17
17
  # Transfer a KYC application.
18
18
  #
19
+ # https://www.docfoxapp.com/api/v2/documentation#tag/KYC-Applications/paths/~1api~1v2~1kyc_applications~1%7Bkyc_application_id%7D~1transfer/patch
20
+ #
19
21
  # ==== Examples
20
22
  #
21
23
  # service = DocFox::KycApplication::TransferService.call(id: '', transfer_to_user_id: '')
@@ -16,6 +16,8 @@ class DocFox::KycApplication::UnapproveService < DocFox::BaseService
16
16
 
17
17
  # Unapprove a KYC application.
18
18
  #
19
+ # https://www.docfoxapp.com/api/v2/documentation#tag/KYC-Applications/paths/~1api~1v2~1kyc_applications~1%7Bkyc_application_id%7D~1unapprove/patch
20
+ #
19
21
  # ==== Examples
20
22
  #
21
23
  # service = DocFox::KycApplication::UnapproveService.call(id: '', reason: '')
@@ -12,6 +12,8 @@ class DocFox::KycApplication::UnarchiveService < DocFox::BaseService
12
12
 
13
13
  # Unarchive a KYC application.
14
14
  #
15
+ # https://www.docfoxapp.com/api/v2/documentation#tag/KYC-Applications/paths/~1api~1v2~1kyc_applications~1%7Bkyc_application_id%7D~1unarchive/post
16
+ #
15
17
  # ==== Examples
16
18
  #
17
19
  # service = DocFox::KycApplication::UnarchiveService.call(id: '', reason: '')
@@ -15,6 +15,8 @@ class DocFox::KycEntityTemplate::GetService < DocFox::BaseService
15
15
 
16
16
  # Get a KYC application.
17
17
  #
18
+ # https://www.docfoxapp.com/api/v2/documentation#tag/KYC-Entity-Templates/paths/~1api~1v2~1kyc_entity_templates~1%7Bkyc_entity_template_id%7D/get
19
+ #
18
20
  # ==== Examples
19
21
  #
20
22
  # service = DocFox::KycEntityTemplate::GetService.call(id: '')
@@ -5,6 +5,8 @@ class DocFox::KycEntityTemplate::ListService < DocFox::BaseService
5
5
 
6
6
  # List KYC entity templates.
7
7
  #
8
+ # https://www.docfoxapp.com/api/v2/documentation#tag/KYC-Entity-Templates/paths/~1api~1v2~1kyc_entity_templates/get
9
+ #
8
10
  # ==== Examples
9
11
  #
10
12
  # service = DocFox::KycEntityTemplate::ListService.call.first
@@ -0,0 +1,15 @@
1
+ # frozen_string_literal: true
2
+
3
+ class DocFox::Profile::Facade
4
+ attr_reader :id, :attributes, :relationships, :included, :created_at, :updated_at
5
+
6
+ def initialize(hash)
7
+ @id = hash.dig('data', 'id') || hash['id']
8
+ @attributes = hash.dig('data', 'attributes') || hash['attributes']
9
+ @relationships = hash.dig('data', 'relationships') || hash['relationships']
10
+ @included = hash['included']
11
+
12
+ @created_at = attributes['created_at']
13
+ @updated_at = attributes['updated_at']
14
+ end
15
+ end
@@ -0,0 +1,53 @@
1
+ # frozen_string_literal: true
2
+
3
+ class DocFox::Profile::GetService < DocFox::BaseService
4
+ attr_reader :id, :params
5
+
6
+ validates :id, presence: true
7
+
8
+ after_call :set_facade
9
+
10
+ delegate_missing_to :@facade
11
+
12
+ def initialize(id:, params: {})
13
+ @id = id
14
+ @params = params
15
+ end
16
+
17
+ # Get a profile.
18
+ #
19
+ # https://www.docfoxapp.com/api/v2/documentation#tag/Profiles/paths/~1api~1v2~1profiles~1%7Bprofile_id%7D/get
20
+ #
21
+ # ==== Examples
22
+ #
23
+ # service = DocFox::Profile::GetService.call(id: '')
24
+ #
25
+ # service.success? # => true
26
+ # service.errors # => #<ActiveModel::Errors []>
27
+ #
28
+ # service.response # => #<Faraday::Response ...>
29
+ # service.response.status # => 200
30
+ # service.response.body # => {}
31
+ #
32
+ # service.facade # => #<DocFox::Profile::Facade ...>
33
+ # service.facade.id
34
+ # service.id
35
+ #
36
+ # service.relationships.dig('names', 'data', 'id')
37
+ # service.relationships.dig('numbers', 'links', 'related')
38
+ #
39
+ # Include related resources.
40
+ #
41
+ # service = DocFox::Profile::GetService.call(id: '', params: { include: 'names,numbers,additional_details' })
42
+ #
43
+ # GET /api/v2/profiles/:id
44
+ def call
45
+ connection.get("profiles/#{id}", **params)
46
+ end
47
+
48
+ private
49
+
50
+ def set_facade
51
+ @facade = DocFox::Profile::Facade.new(response.body)
52
+ end
53
+ end
@@ -0,0 +1,36 @@
1
+ # frozen_string_literal: true
2
+
3
+ class DocFox::Profile::ListService < DocFox::BaseService
4
+ include DocFox::Enumerable
5
+
6
+ attr_reader :kyc_application_id
7
+
8
+ validates :kyc_application_id, presence: true
9
+
10
+ # List profiles.
11
+ #
12
+ # https://www.docfoxapp.com/api/v2/documentation#tag/Profiles/paths/~1api~1v2~1kyc_applications~1%7Bkyc_application_id%7D~1profiles/get
13
+ #
14
+ # ==== Examples
15
+ #
16
+ # service = DocFox::Profile::ListService.call(kyc_application_id: '').first
17
+ # service.id
18
+ # service.created_at
19
+ #
20
+ # If you don't provide the `per_page` argument, multiple API requests will be made untill all records have been
21
+ # returned. You could be rate limited, so use wisely.
22
+ #
23
+ # DocFox::Profile::ListService.call(kyc_application_id: '', page: 1, per_page: 10).map { _1 }
24
+ #
25
+ # GET /api/v2/kyc_applications/:kyc_application_id/profiles
26
+ def initialize(kyc_application_id:, page: 1, per_page: Float::INFINITY)
27
+ @kyc_application_id = kyc_application_id
28
+
29
+ super(
30
+ path: "kyc_applications/#{kyc_application_id}/profiles",
31
+ facade_klass: DocFox::Profile::Facade,
32
+ page: page,
33
+ per_page: per_page
34
+ )
35
+ end
36
+ end
@@ -0,0 +1,14 @@
1
+ # frozen_string_literal: true
2
+
3
+ class DocFox::StatusSummary::Facade
4
+ attr_reader :id, :attributes, :relationships, :overall_kyc_application_status, :module_statuses
5
+
6
+ def initialize(hash)
7
+ @id = hash.dig('data', 'id')
8
+ @attributes = hash.dig('data', 'attributes')
9
+ @relationships = hash.dig('data', 'relationships')
10
+
11
+ @overall_kyc_application_status = attributes['overall_kyc_application_status']
12
+ @module_statuses = attributes['module_statuses']
13
+ end
14
+ end
@@ -0,0 +1,47 @@
1
+ # frozen_string_literal: true
2
+
3
+ class DocFox::StatusSummary::GetService < DocFox::BaseService
4
+ attr_reader :id
5
+
6
+ validates :id, presence: true
7
+
8
+ after_call :set_facade
9
+
10
+ delegate_missing_to :@facade
11
+
12
+ def initialize(id:)
13
+ @id = id
14
+ end
15
+
16
+ # Get a status summary of a KYC application.
17
+ #
18
+ # https://www.docfoxapp.com/api/v2/documentation#tag/Status-Summaries/paths/~1api~1v2~1kyc_applications~1%7Bkyc_application_id%7D~1status_summaries/get
19
+ #
20
+ # ==== Examples
21
+ #
22
+ # service = DocFox::StatusSummary::GetService.call(id: '')
23
+ #
24
+ # service.success? # => true
25
+ # service.errors # => #<ActiveModel::Errors []>
26
+ #
27
+ # service.response # => #<Faraday::Response ...>
28
+ # service.response.status # => 200
29
+ # service.response.body # => {}
30
+ #
31
+ # service.facade # => #<DocFox::StatusSummary::Facade ...>
32
+ # service.facade.id
33
+ # service.id
34
+ #
35
+ # service.relationships.dig('kyc_application', 'links', 'related')
36
+ #
37
+ # GET /api/v2/kyc_applications/:id/status_summaries
38
+ def call
39
+ connection.get("kyc_applications/#{id}/status_summaries")
40
+ end
41
+
42
+ private
43
+
44
+ def set_facade
45
+ @facade = DocFox::StatusSummary::Facade.new(response.body)
46
+ end
47
+ end
@@ -15,6 +15,8 @@ class DocFox::User::GetService < DocFox::BaseService
15
15
 
16
16
  # Get a user.
17
17
  #
18
+ # https://www.docfoxapp.com/api/v2/documentation#tag/Users/paths/~1api~1v2~1users~1%7Buser_id%7D/get
19
+ #
18
20
  # ==== Examples
19
21
  #
20
22
  # service = DocFox::User::GetService.call(id: '')
@@ -5,6 +5,8 @@ class DocFox::User::ListService < DocFox::BaseService
5
5
 
6
6
  # List users.
7
7
  #
8
+ # https://www.docfoxapp.com/api/v2/documentation#tag/Users/paths/~1api~1v2~1users/get
9
+ #
8
10
  # ==== Examples
9
11
  #
10
12
  # service = DocFox::User::ListService.call.first
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module DocFox
4
- VERSION = '0.1.2'
4
+ VERSION = '0.2.0'
5
5
  end
data/lib/doc_fox.rb CHANGED
@@ -3,6 +3,7 @@
3
3
  require 'active_call'
4
4
  require 'active_call/api'
5
5
  require 'active_support/core_ext/time'
6
+ require 'faraday/follow_redirects'
6
7
 
7
8
  loader = Zeitwerk::Loader.for_gem
8
9
  loader.ignore("#{__dir__}/active_call-doc_fox.rb")
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: active_call-doc_fox
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.2
4
+ version: 0.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Kobus Joubert
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2025-04-05 00:00:00.000000000 Z
11
+ date: 2025-04-15 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: active_call-api
@@ -24,6 +24,20 @@ dependencies:
24
24
  - - "~>"
25
25
  - !ruby/object:Gem::Version
26
26
  version: '0.1'
27
+ - !ruby/object:Gem::Dependency
28
+ name: faraday-follow_redirects
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '0.3'
34
+ type: :runtime
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '0.3'
27
41
  - !ruby/object:Gem::Dependency
28
42
  name: openssl
29
43
  requirement: !ruby/object:Gem::Requirement
@@ -59,7 +73,26 @@ files:
59
73
  - lib/doc_fox/authentication/get_service.rb
60
74
  - lib/doc_fox/base_service.rb
61
75
  - lib/doc_fox/concerns/enumerable.rb
76
+ - lib/doc_fox/data_requirement/facade.rb
77
+ - lib/doc_fox/data_requirement/get_service.rb
78
+ - lib/doc_fox/data_requirement/list_service.rb
79
+ - lib/doc_fox/document/download_service.rb
80
+ - lib/doc_fox/document/facade.rb
81
+ - lib/doc_fox/document/get_service.rb
82
+ - lib/doc_fox/document/list_service.rb
83
+ - lib/doc_fox/document/upload_service.rb
84
+ - lib/doc_fox/document_token/create_service.rb
85
+ - lib/doc_fox/document_token/facade.rb
86
+ - lib/doc_fox/document_token/get_service.rb
87
+ - lib/doc_fox/document_token/list_service.rb
62
88
  - lib/doc_fox/error.rb
89
+ - lib/doc_fox/evidence_submission/approve_service.rb
90
+ - lib/doc_fox/evidence_submission/facade.rb
91
+ - lib/doc_fox/evidence_submission/get_service.rb
92
+ - lib/doc_fox/evidence_submission/list_service.rb
93
+ - lib/doc_fox/evidence_submission/reject_service.rb
94
+ - lib/doc_fox/evidence_submission/replace_service.rb
95
+ - lib/doc_fox/evidence_submission/update_service.rb
63
96
  - lib/doc_fox/kyc_application/approve_service.rb
64
97
  - lib/doc_fox/kyc_application/archive_service.rb
65
98
  - lib/doc_fox/kyc_application/create_service.rb
@@ -73,6 +106,11 @@ files:
73
106
  - lib/doc_fox/kyc_entity_template/facade.rb
74
107
  - lib/doc_fox/kyc_entity_template/get_service.rb
75
108
  - lib/doc_fox/kyc_entity_template/list_service.rb
109
+ - lib/doc_fox/profile/facade.rb
110
+ - lib/doc_fox/profile/get_service.rb
111
+ - lib/doc_fox/profile/list_service.rb
112
+ - lib/doc_fox/status_summary/facade.rb
113
+ - lib/doc_fox/status_summary/get_service.rb
76
114
  - lib/doc_fox/user/facade.rb
77
115
  - lib/doc_fox/user/get_service.rb
78
116
  - lib/doc_fox/user/list_service.rb