trinsic_api 2.0.3 → 2.1.0.pre.alpha1

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 (52) hide show
  1. checksums.yaml +4 -4
  2. data/docs/AttachmentsApi.md +1 -1
  3. data/docs/BangladeshNidInput.md +3 -3
  4. data/docs/ContractField.md +20 -0
  5. data/docs/CreateAdvancedProviderSessionRequest.md +3 -3
  6. data/docs/CreateHostedProviderSessionRequest.md +1 -1
  7. data/docs/FieldAvailability.md +15 -0
  8. data/docs/NetworkApi.md +11 -6
  9. data/docs/ProviderContract.md +6 -2
  10. data/docs/ProviderInfo.md +9 -1
  11. data/docs/ProviderInformation.md +16 -4
  12. data/docs/ProviderInput.md +12 -12
  13. data/docs/RecommendRequest.md +3 -1
  14. data/docs/RecommendResponse.md +3 -3
  15. data/docs/Session.md +1 -1
  16. data/docs/SessionsApi.md +1 -1
  17. data/docs/SmartIdInput.md +3 -1
  18. data/docs/SubProviderMetadata.md +4 -2
  19. data/lib/trinsic_api/api/attachments_api.rb +2 -2
  20. data/lib/trinsic_api/api/network_api.rb +5 -2
  21. data/lib/trinsic_api/api/sessions_api.rb +2 -2
  22. data/lib/trinsic_api/models/bangladesh_nid_input.rb +87 -3
  23. data/lib/trinsic_api/models/contract_field.rb +288 -0
  24. data/lib/trinsic_api/models/create_advanced_provider_session_request.rb +16 -16
  25. data/lib/trinsic_api/models/create_hosted_provider_session_request.rb +1 -1
  26. data/lib/trinsic_api/models/document_type.rb +2 -1
  27. data/lib/trinsic_api/models/field_availability.rb +41 -0
  28. data/lib/trinsic_api/models/integration_capability.rb +2 -1
  29. data/lib/trinsic_api/models/provider_contract.rb +42 -2
  30. data/lib/trinsic_api/models/provider_info.rb +98 -4
  31. data/lib/trinsic_api/models/provider_information.rb +155 -4
  32. data/lib/trinsic_api/models/provider_input.rb +12 -12
  33. data/lib/trinsic_api/models/recommend_request.rb +16 -5
  34. data/lib/trinsic_api/models/recommend_response.rb +3 -3
  35. data/lib/trinsic_api/models/session.rb +1 -1
  36. data/lib/trinsic_api/models/smart_id_input.rb +16 -5
  37. data/lib/trinsic_api/models/sub_provider_metadata.rb +29 -2
  38. data/lib/trinsic_api/version.rb +1 -1
  39. data/lib/trinsic_api.rb +2 -0
  40. data/spec/api/attachments_api_spec.rb +1 -1
  41. data/spec/api/network_api_spec.rb +2 -1
  42. data/spec/api/sessions_api_spec.rb +1 -1
  43. data/spec/models/contract_field_spec.rb +42 -0
  44. data/spec/models/create_advanced_provider_session_request_spec.rb +4 -4
  45. data/spec/models/field_availability_spec.rb +30 -0
  46. data/spec/models/provider_contract_spec.rb +12 -0
  47. data/spec/models/provider_info_spec.rb +24 -0
  48. data/spec/models/provider_information_spec.rb +36 -0
  49. data/spec/models/recommend_request_spec.rb +6 -0
  50. data/spec/models/smart_id_input_spec.rb +6 -0
  51. data/spec/models/sub_provider_metadata_spec.rb +6 -0
  52. metadata +64 -56
@@ -22,7 +22,10 @@ module TrinsicApi
22
22
  # The name of the sub-provider
23
23
  attr_accessor :name
24
24
 
25
- # Flavor text for the sub-provider
25
+ # The Provider's subtext recommended to be shown next to the name. This is flavor text, not a full, human-readable description of the provider.
26
+ attr_accessor :subtext
27
+
28
+ # The Provider's subtext recommended to be shown next to the name. This is flavor text, not a full, human-readable description of the provider.
26
29
  attr_accessor :description
27
30
 
28
31
  # A URL pointing to the logo on Trinsic's CDN. May be a PNG, JPG, or SVG image.
@@ -33,6 +36,7 @@ module TrinsicApi
33
36
  {
34
37
  :'id' => :'id',
35
38
  :'name' => :'name',
39
+ :'subtext' => :'subtext',
36
40
  :'description' => :'description',
37
41
  :'logo_url' => :'logoUrl'
38
42
  }
@@ -53,6 +57,7 @@ module TrinsicApi
53
57
  {
54
58
  :'id' => :'String',
55
59
  :'name' => :'String',
60
+ :'subtext' => :'String',
56
61
  :'description' => :'String',
57
62
  :'logo_url' => :'String'
58
63
  }
@@ -92,6 +97,12 @@ module TrinsicApi
92
97
  self.name = nil
93
98
  end
94
99
 
100
+ if attributes.key?(:'subtext')
101
+ self.subtext = attributes[:'subtext']
102
+ else
103
+ self.subtext = nil
104
+ end
105
+
95
106
  if attributes.key?(:'description')
96
107
  self.description = attributes[:'description']
97
108
  else
@@ -118,6 +129,10 @@ module TrinsicApi
118
129
  invalid_properties.push('invalid value for "name", name cannot be nil.')
119
130
  end
120
131
 
132
+ if @subtext.nil?
133
+ invalid_properties.push('invalid value for "subtext", subtext cannot be nil.')
134
+ end
135
+
121
136
  if @description.nil?
122
137
  invalid_properties.push('invalid value for "description", description cannot be nil.')
123
138
  end
@@ -135,6 +150,7 @@ module TrinsicApi
135
150
  warn '[DEPRECATED] the `valid?` method is obsolete'
136
151
  return false if @id.nil?
137
152
  return false if @name.nil?
153
+ return false if @subtext.nil?
138
154
  return false if @description.nil?
139
155
  return false if @logo_url.nil?
140
156
  true
@@ -160,6 +176,16 @@ module TrinsicApi
160
176
  @name = name
161
177
  end
162
178
 
179
+ # Custom attribute writer method with validation
180
+ # @param [Object] subtext Value to be assigned
181
+ def subtext=(subtext)
182
+ if subtext.nil?
183
+ fail ArgumentError, 'subtext cannot be nil'
184
+ end
185
+
186
+ @subtext = subtext
187
+ end
188
+
163
189
  # Custom attribute writer method with validation
164
190
  # @param [Object] description Value to be assigned
165
191
  def description=(description)
@@ -187,6 +213,7 @@ module TrinsicApi
187
213
  self.class == o.class &&
188
214
  id == o.id &&
189
215
  name == o.name &&
216
+ subtext == o.subtext &&
190
217
  description == o.description &&
191
218
  logo_url == o.logo_url
192
219
  end
@@ -200,7 +227,7 @@ module TrinsicApi
200
227
  # Calculates hash code according to all attributes.
201
228
  # @return [Integer] Hash code
202
229
  def hash
203
- [id, name, description, logo_url].hash
230
+ [id, name, subtext, description, logo_url].hash
204
231
  end
205
232
 
206
233
  # Builds the object from hash
@@ -11,5 +11,5 @@ Generator version: 7.13.0
11
11
  =end
12
12
 
13
13
  module TrinsicApi
14
- VERSION = '2.0.3'
14
+ VERSION = '2.1.0-alpha1'
15
15
  end
data/lib/trinsic_api.rb CHANGED
@@ -24,6 +24,7 @@ require 'trinsic_api/models/bangladesh_nid_input'
24
24
  require 'trinsic_api/models/brazil_cpf_check_input'
25
25
  require 'trinsic_api/models/brazil_digital_cnh_input'
26
26
  require 'trinsic_api/models/cancel_session_response'
27
+ require 'trinsic_api/models/contract_field'
27
28
  require 'trinsic_api/models/create_advanced_provider_session_request'
28
29
  require 'trinsic_api/models/create_advanced_provider_session_response'
29
30
  require 'trinsic_api/models/create_hosted_provider_session_request'
@@ -33,6 +34,7 @@ require 'trinsic_api/models/create_widget_session_response'
33
34
  require 'trinsic_api/models/document_data'
34
35
  require 'trinsic_api/models/document_scan_attachments'
35
36
  require 'trinsic_api/models/document_type'
37
+ require 'trinsic_api/models/field_availability'
36
38
  require 'trinsic_api/models/get_attachment_request'
37
39
  require 'trinsic_api/models/get_attachment_response'
38
40
  require 'trinsic_api/models/get_session_response'
@@ -34,7 +34,7 @@ describe 'AttachmentsApi' do
34
34
 
35
35
  # unit tests for get_attachment
36
36
  # Get Attachment
37
- # Exchange an Attachment Access Key (from `IdentityData.Attachments`) for the raw contents of the attachment. Use this API to fetch document (front, back, portrait) or other (selfie) images from a verification, if relevant. In some cases, attachments may not be immediately available after a verification is completed. If so, this endpoint will return an HTTP 503 code, and you should try again later.
37
+ # Exchange an Attachment Access Key (from `IdentityData.AttachmentAccessKeys`) for the raw contents of the attachment. Use this API to fetch document (front, back, portrait) or other (selfie) images from a verification, if relevant. In some cases, attachments may not be immediately available after a verification is completed. If so, this endpoint will return an HTTP 503 code, and you should try again later.
38
38
  # @param [Hash] opts the optional parameters
39
39
  # @option opts [GetAttachmentRequest] :get_attachment_request
40
40
  # @return [GetAttachmentResponse]
@@ -47,6 +47,7 @@ describe 'NetworkApi' do
47
47
  # List Providers
48
48
  # List all identity providers available for use
49
49
  # @param [Hash] opts the optional parameters
50
+ # @option opts [String] :health Filter providers by health status. Valid values: \"online\", \"offline\", \"all\". Defaults to \"all\".
50
51
  # @return [ListProvidersResponse]
51
52
  describe 'list_providers test' do
52
53
  it 'should work' do
@@ -56,7 +57,7 @@ describe 'NetworkApi' do
56
57
 
57
58
  # unit tests for recommend_providers
58
59
  # Recommend Providers
59
- # Generate provider recommendations based on the given signals (phone number, countries, states).
60
+ # Generate provider recommendations based on signals about the user's location (phone number, countries, states).
60
61
  # @param [Hash] opts the optional parameters
61
62
  # @option opts [RecommendRequest] :recommend_request
62
63
  # @return [RecommendResponse]
@@ -121,7 +121,7 @@ describe 'SessionsApi' do
121
121
 
122
122
  # unit tests for redact_session
123
123
  # Redact Session
124
- # Redact a Session, removing all identity data from Trinsic's servers. Every application has a redaction period that dictates how long we will hold on to your users' PII data. Once a session falls outside the redaction cutoff date, all PII will automatically be removed from that session. You can utilize this endpoint to redact a session immediately. Identity data that a user has chosen to save in their passkey-protected wallet will not be deleted.
124
+ # Redact a Session, removing all identity data from Trinsic's servers. Every application has a redaction period that dictates how long we will hold on to your users' PII data. Once a session falls outside the redaction cutoff date, all PII will automatically be removed from that session. You can utilize this endpoint to redact a session immediately.
125
125
  # @param session_id
126
126
  # @param [Hash] opts the optional parameters
127
127
  # @return [nil]
@@ -0,0 +1,42 @@
1
+ =begin
2
+ #Trinsic API
3
+
4
+ #No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
5
+
6
+ The version of the OpenAPI document: v1
7
+
8
+ Generated by: https://openapi-generator.tech
9
+ Generator version: 7.13.0
10
+
11
+ =end
12
+
13
+ require 'spec_helper'
14
+ require 'json'
15
+ require 'date'
16
+
17
+ # Unit tests for TrinsicApi::ContractField
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe TrinsicApi::ContractField do
21
+ let(:instance) { TrinsicApi::ContractField.new }
22
+
23
+ describe 'test an instance of ContractField' do
24
+ it 'should create an instance of ContractField' do
25
+ # uncomment below to test the instance creation
26
+ #expect(instance).to be_instance_of(TrinsicApi::ContractField)
27
+ end
28
+ end
29
+
30
+ describe 'test attribute "name"' do
31
+ it 'should work' do
32
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
33
+ end
34
+ end
35
+
36
+ describe 'test attribute "outputted"' do
37
+ it 'should work' do
38
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
39
+ end
40
+ end
41
+
42
+ end
@@ -33,25 +33,25 @@ describe TrinsicApi::CreateAdvancedProviderSessionRequest do
33
33
  end
34
34
  end
35
35
 
36
- describe 'test attribute "provider_input"' do
36
+ describe 'test attribute "redirect_url"' do
37
37
  it 'should work' do
38
38
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
39
39
  end
40
40
  end
41
41
 
42
- describe 'test attribute "redirect_url"' do
42
+ describe 'test attribute "capabilities"' do
43
43
  it 'should work' do
44
44
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
45
45
  end
46
46
  end
47
47
 
48
- describe 'test attribute "capabilities"' do
48
+ describe 'test attribute "fallback_to_hosted_ui"' do
49
49
  it 'should work' do
50
50
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
51
51
  end
52
52
  end
53
53
 
54
- describe 'test attribute "fallback_to_hosted_ui"' do
54
+ describe 'test attribute "provider_input"' do
55
55
  it 'should work' do
56
56
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
57
57
  end
@@ -0,0 +1,30 @@
1
+ =begin
2
+ #Trinsic API
3
+
4
+ #No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
5
+
6
+ The version of the OpenAPI document: v1
7
+
8
+ Generated by: https://openapi-generator.tech
9
+ Generator version: 7.13.0
10
+
11
+ =end
12
+
13
+ require 'spec_helper'
14
+ require 'json'
15
+ require 'date'
16
+
17
+ # Unit tests for TrinsicApi::FieldAvailability
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe TrinsicApi::FieldAvailability do
21
+ let(:instance) { TrinsicApi::FieldAvailability.new }
22
+
23
+ describe 'test an instance of FieldAvailability' do
24
+ it 'should create an instance of FieldAvailability' do
25
+ # uncomment below to test the instance creation
26
+ #expect(instance).to be_instance_of(TrinsicApi::FieldAvailability)
27
+ end
28
+ end
29
+
30
+ end
@@ -39,6 +39,12 @@ describe TrinsicApi::ProviderContract do
39
39
  end
40
40
  end
41
41
 
42
+ describe 'test attribute "subtext"' do
43
+ it 'should work' do
44
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
45
+ end
46
+ end
47
+
42
48
  describe 'test attribute "description"' do
43
49
  it 'should work' do
44
50
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
@@ -111,6 +117,12 @@ describe TrinsicApi::ProviderContract do
111
117
  end
112
118
  end
113
119
 
120
+ describe 'test attribute "available_fields"' do
121
+ it 'should work' do
122
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
123
+ end
124
+ end
125
+
114
126
  describe 'test attribute "sub_providers"' do
115
127
  it 'should work' do
116
128
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
@@ -45,4 +45,28 @@ describe TrinsicApi::ProviderInfo do
45
45
  end
46
46
  end
47
47
 
48
+ describe 'test attribute "subtext"' do
49
+ it 'should work' do
50
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
51
+ end
52
+ end
53
+
54
+ describe 'test attribute "description"' do
55
+ it 'should work' do
56
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
57
+ end
58
+ end
59
+
60
+ describe 'test attribute "health"' do
61
+ it 'should work' do
62
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
63
+ end
64
+ end
65
+
66
+ describe 'test attribute "sub_providers"' do
67
+ it 'should work' do
68
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
69
+ end
70
+ end
71
+
48
72
  end
@@ -27,6 +27,30 @@ describe TrinsicApi::ProviderInformation do
27
27
  end
28
28
  end
29
29
 
30
+ describe 'test attribute "id"' do
31
+ it 'should work' do
32
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
33
+ end
34
+ end
35
+
36
+ describe 'test attribute "name"' do
37
+ it 'should work' do
38
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
39
+ end
40
+ end
41
+
42
+ describe 'test attribute "logo_url"' do
43
+ it 'should work' do
44
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
45
+ end
46
+ end
47
+
48
+ describe 'test attribute "subtext"' do
49
+ it 'should work' do
50
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
51
+ end
52
+ end
53
+
30
54
  describe 'test attribute "provider_id"' do
31
55
  it 'should work' do
32
56
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
@@ -45,4 +69,16 @@ describe TrinsicApi::ProviderInformation do
45
69
  end
46
70
  end
47
71
 
72
+ describe 'test attribute "health"' do
73
+ it 'should work' do
74
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
75
+ end
76
+ end
77
+
78
+ describe 'test attribute "sub_providers"' do
79
+ it 'should work' do
80
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
81
+ end
82
+ end
83
+
48
84
  end
@@ -33,4 +33,10 @@ describe TrinsicApi::RecommendRequest do
33
33
  end
34
34
  end
35
35
 
36
+ describe 'test attribute "health"' do
37
+ it 'should work' do
38
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
39
+ end
40
+ end
41
+
36
42
  end
@@ -33,4 +33,10 @@ describe TrinsicApi::SmartIdInput do
33
33
  end
34
34
  end
35
35
 
36
+ describe 'test attribute "smart_id_number"' do
37
+ it 'should work' do
38
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
39
+ end
40
+ end
41
+
36
42
  end
@@ -39,6 +39,12 @@ describe TrinsicApi::SubProviderMetadata do
39
39
  end
40
40
  end
41
41
 
42
+ describe 'test attribute "subtext"' do
43
+ it 'should work' do
44
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
45
+ end
46
+ end
47
+
42
48
  describe 'test attribute "description"' do
43
49
  it 'should work' do
44
50
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: trinsic_api
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.0.3
4
+ version: 2.1.0.pre.alpha1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Trinsic
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2025-05-22 00:00:00.000000000 Z
11
+ date: 2025-08-01 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: typhoeus
@@ -69,6 +69,7 @@ files:
69
69
  - docs/BrazilCpfCheckInput.md
70
70
  - docs/BrazilDigitalCnhInput.md
71
71
  - docs/CancelSessionResponse.md
72
+ - docs/ContractField.md
72
73
  - docs/CreateAdvancedProviderSessionRequest.md
73
74
  - docs/CreateAdvancedProviderSessionResponse.md
74
75
  - docs/CreateHostedProviderSessionRequest.md
@@ -78,6 +79,7 @@ files:
78
79
  - docs/DocumentData.md
79
80
  - docs/DocumentScanAttachments.md
80
81
  - docs/DocumentType.md
82
+ - docs/FieldAvailability.md
81
83
  - docs/GetAttachmentRequest.md
82
84
  - docs/GetAttachmentResponse.md
83
85
  - docs/GetSessionResponse.md
@@ -144,6 +146,7 @@ files:
144
146
  - lib/trinsic_api/models/brazil_cpf_check_input.rb
145
147
  - lib/trinsic_api/models/brazil_digital_cnh_input.rb
146
148
  - lib/trinsic_api/models/cancel_session_response.rb
149
+ - lib/trinsic_api/models/contract_field.rb
147
150
  - lib/trinsic_api/models/create_advanced_provider_session_request.rb
148
151
  - lib/trinsic_api/models/create_advanced_provider_session_response.rb
149
152
  - lib/trinsic_api/models/create_hosted_provider_session_request.rb
@@ -153,6 +156,7 @@ files:
153
156
  - lib/trinsic_api/models/document_data.rb
154
157
  - lib/trinsic_api/models/document_scan_attachments.rb
155
158
  - lib/trinsic_api/models/document_type.rb
159
+ - lib/trinsic_api/models/field_availability.rb
156
160
  - lib/trinsic_api/models/get_attachment_request.rb
157
161
  - lib/trinsic_api/models/get_attachment_response.rb
158
162
  - lib/trinsic_api/models/get_session_response.rb
@@ -213,6 +217,7 @@ files:
213
217
  - spec/models/brazil_cpf_check_input_spec.rb
214
218
  - spec/models/brazil_digital_cnh_input_spec.rb
215
219
  - spec/models/cancel_session_response_spec.rb
220
+ - spec/models/contract_field_spec.rb
216
221
  - spec/models/create_advanced_provider_session_request_spec.rb
217
222
  - spec/models/create_advanced_provider_session_response_spec.rb
218
223
  - spec/models/create_hosted_provider_session_request_spec.rb
@@ -222,6 +227,7 @@ files:
222
227
  - spec/models/document_data_spec.rb
223
228
  - spec/models/document_scan_attachments_spec.rb
224
229
  - spec/models/document_type_spec.rb
230
+ - spec/models/field_availability_spec.rb
225
231
  - spec/models/get_attachment_request_spec.rb
226
232
  - spec/models/get_attachment_response_spec.rb
227
233
  - spec/models/get_session_response_spec.rb
@@ -297,72 +303,74 @@ signing_key:
297
303
  specification_version: 4
298
304
  summary: Trinsic API Ruby Library
299
305
  test_files:
300
- - spec/api/attachments_api_spec.rb
301
306
  - spec/api/network_api_spec.rb
302
307
  - spec/api/sessions_api_spec.rb
303
- - spec/models/refresh_step_content_request_spec.rb
304
- - spec/models/trinsic_test_sub_providers_input_spec.rb
305
- - spec/models/get_attachment_request_spec.rb
306
- - spec/models/http_validation_problem_details_spec.rb
307
- - spec/models/provider_health_spec.rb
308
- - spec/models/provider_contract_spec.rb
308
+ - spec/api/attachments_api_spec.rb
309
309
  - spec/models/address_spec.rb
310
- - spec/models/recommend_request_spec.rb
311
- - spec/models/provider_information_spec.rb
312
- - spec/models/person_data_spec.rb
313
- - spec/models/cancel_session_response_spec.rb
310
+ - spec/models/provider_contract_spec.rb
311
+ - spec/models/get_attachment_response_spec.rb
312
+ - spec/models/session_ordering_spec.rb
313
+ - spec/models/session_spec.rb
314
+ - spec/models/contract_field_spec.rb
315
+ - spec/models/idin_input_spec.rb
314
316
  - spec/models/step_refresh_info_spec.rb
315
- - spec/models/provider_info_spec.rb
316
- - spec/models/identity_data_spec.rb
317
- - spec/models/list_sessions_response_spec.rb
318
317
  - spec/models/aadhaar_input_spec.rb
319
- - spec/models/document_data_spec.rb
318
+ - spec/models/refresh_step_content_response_spec.rb
319
+ - spec/models/brazil_cpf_check_input_spec.rb
320
320
  - spec/models/mexico_curp_input_spec.rb
321
- - spec/models/create_widget_session_response_spec.rb
322
- - spec/models/session_ordering_spec.rb
323
- - spec/models/kenya_nid_input_spec.rb
324
- - spec/models/sub_provider_metadata_spec.rb
325
- - spec/models/provider_input_spec.rb
326
- - spec/models/list_provider_contracts_response_spec.rb
327
- - spec/models/document_type_spec.rb
328
- - spec/models/create_hosted_provider_session_response_spec.rb
321
+ - spec/models/trinsic_test_database_lookup_input_spec.rb
322
+ - spec/models/provider_health_spec.rb
329
323
  - spec/models/list_providers_response_spec.rb
330
- - spec/models/philippine_qr_input_spec.rb
331
- - spec/models/document_scan_attachments_spec.rb
332
- - spec/models/recommendation_info_spec.rb
333
- - spec/models/create_hosted_provider_session_request_spec.rb
334
- - spec/models/brazil_digital_cnh_input_spec.rb
335
- - spec/models/south_africa_nid_input_spec.rb
336
- - spec/models/idin_input_spec.rb
337
- - spec/models/smart_id_input_spec.rb
338
- - spec/models/brazil_cpf_check_input_spec.rb
339
- - spec/models/integration_launch_method_spec.rb
340
- - spec/models/philippine_match_input_spec.rb
341
- - spec/models/create_advanced_provider_session_response_spec.rb
342
- - spec/models/get_session_response_spec.rb
343
- - spec/models/get_session_result_request_spec.rb
344
- - spec/models/bangladesh_nid_input_spec.rb
345
- - spec/models/result_collection_spec.rb
324
+ - spec/models/result_collection_method_spec.rb
346
325
  - spec/models/indonesia_nik_input_spec.rb
347
- - spec/models/order_direction_spec.rb
348
- - spec/models/get_attachment_response_spec.rb
326
+ - spec/models/philippine_match_input_spec.rb
327
+ - spec/models/attachment_access_keys_spec.rb
349
328
  - spec/models/integration_capability_spec.rb
350
- - spec/models/provider_attachments_spec.rb
329
+ - spec/models/south_africa_nid_input_spec.rb
330
+ - spec/models/create_hosted_provider_session_request_spec.rb
331
+ - spec/models/document_data_spec.rb
332
+ - spec/models/sub_provider_metadata_spec.rb
333
+ - spec/models/mobile_id_input_spec.rb
334
+ - spec/models/order_direction_spec.rb
335
+ - spec/models/get_session_result_request_spec.rb
351
336
  - spec/models/spid_input_spec.rb
352
- - spec/models/nigeria_nin_input_spec.rb
353
- - spec/models/attachment_access_keys_spec.rb
337
+ - spec/models/provider_info_spec.rb
338
+ - spec/models/get_session_result_response_spec.rb
339
+ - spec/models/create_hosted_provider_session_response_spec.rb
340
+ - spec/models/recommend_response_spec.rb
341
+ - spec/models/problem_details_spec.rb
342
+ - spec/models/provider_information_spec.rb
343
+ - spec/models/kenya_nid_input_spec.rb
344
+ - spec/models/trinsic_test_sub_providers_input_spec.rb
345
+ - spec/models/smart_id_input_spec.rb
346
+ - spec/models/refresh_step_content_request_spec.rb
354
347
  - spec/models/create_widget_session_request_spec.rb
355
- - spec/models/session_spec.rb
348
+ - spec/models/list_sessions_response_spec.rb
349
+ - spec/models/document_type_spec.rb
350
+ - spec/models/philippine_qr_input_spec.rb
351
+ - spec/models/person_data_spec.rb
356
352
  - spec/models/create_advanced_provider_session_request_spec.rb
357
- - spec/models/recommend_response_spec.rb
358
- - spec/models/mobile_id_input_spec.rb
353
+ - spec/models/integration_launch_method_spec.rb
354
+ - spec/models/document_scan_attachments_spec.rb
355
+ - spec/models/recommend_request_spec.rb
356
+ - spec/models/provider_attachments_spec.rb
357
+ - spec/models/integration_step_spec.rb
358
+ - spec/models/bangladesh_nid_input_spec.rb
359
+ - spec/models/identity_data_spec.rb
360
+ - spec/models/list_provider_contracts_response_spec.rb
361
+ - spec/models/cancel_session_response_spec.rb
362
+ - spec/models/get_attachment_request_spec.rb
363
+ - spec/models/field_availability_spec.rb
364
+ - spec/models/get_session_response_spec.rb
359
365
  - spec/models/sex_spec.rb
360
- - spec/models/language_spec.rb
361
- - spec/models/refresh_step_content_response_spec.rb
362
- - spec/models/get_session_result_response_spec.rb
366
+ - spec/models/http_validation_problem_details_spec.rb
363
367
  - spec/models/session_error_code_spec.rb
364
- - spec/models/trinsic_test_database_lookup_input_spec.rb
365
- - spec/models/result_collection_method_spec.rb
366
- - spec/models/integration_step_spec.rb
367
- - spec/models/problem_details_spec.rb
368
+ - spec/models/provider_input_spec.rb
369
+ - spec/models/language_spec.rb
370
+ - spec/models/create_widget_session_response_spec.rb
371
+ - spec/models/recommendation_info_spec.rb
372
+ - spec/models/create_advanced_provider_session_response_spec.rb
373
+ - spec/models/nigeria_nin_input_spec.rb
374
+ - spec/models/brazil_digital_cnh_input_spec.rb
375
+ - spec/models/result_collection_spec.rb
368
376
  - spec/spec_helper.rb