trinsic_api 2.3.0.pre.alpha1 → 2.3.0.pre.alpha2
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 +4 -4
- data/docs/AttachmentAccessKeys.md +2 -0
- data/docs/CreateHostedProviderSessionResponse.md +1 -1
- data/docs/CreateWidgetSessionResponse.md +1 -1
- data/docs/IntegrationStep.md +1 -1
- data/docs/KenyaNidBiometric2Input.md +22 -0
- data/docs/KenyaNidInput.md +1 -1
- data/docs/KenyaNidLookup2Input.md +18 -0
- data/docs/KenyaNidMatch2Input.md +28 -0
- data/docs/NigeriaNinInput.md +1 -1
- data/docs/PhilippinesDigitalNidProviderOutput.md +18 -0
- data/docs/PhilippinesPhysicalNidProviderOutput.md +18 -0
- data/docs/ProviderInput.md +8 -0
- data/docs/ProviderOutput.md +5 -1
- data/docs/SexV1.md +15 -0
- data/docs/SouthAfricaNidInput.md +1 -1
- data/docs/SouthAfricaNidLookup2Input.md +18 -0
- data/docs/SpidProviderOutput.md +22 -4
- data/lib/trinsic_api/models/attachment_access_keys.rb +11 -1
- data/lib/trinsic_api/models/kenya_nid_biometric2_input.rb +246 -0
- data/lib/trinsic_api/models/kenya_nid_input.rb +1 -1
- data/lib/trinsic_api/models/kenya_nid_lookup2_input.rb +222 -0
- data/lib/trinsic_api/models/kenya_nid_match2_input.rb +299 -0
- data/lib/trinsic_api/models/nigeria_nin_input.rb +1 -1
- data/lib/trinsic_api/models/philippines_digital_nid_provider_output.rb +238 -0
- data/lib/trinsic_api/models/philippines_physical_nid_provider_output.rb +238 -0
- data/lib/trinsic_api/models/provider_input.rb +45 -1
- data/lib/trinsic_api/models/provider_output.rb +25 -5
- data/lib/trinsic_api/models/sex_v1.rb +42 -0
- data/lib/trinsic_api/models/south_africa_nid_input.rb +1 -1
- data/lib/trinsic_api/models/south_africa_nid_lookup2_input.rb +222 -0
- data/lib/trinsic_api/models/spid_provider_output.rb +149 -18
- data/lib/trinsic_api/version.rb +1 -1
- data/lib/trinsic_api.rb +7 -0
- data/spec/models/attachment_access_keys_spec.rb +6 -0
- data/spec/models/kenya_nid_biometric2_input_spec.rb +48 -0
- data/spec/models/kenya_nid_lookup2_input_spec.rb +36 -0
- data/spec/models/kenya_nid_match2_input_spec.rb +66 -0
- data/spec/models/philippines_digital_nid_provider_output_spec.rb +36 -0
- data/spec/models/philippines_physical_nid_provider_output_spec.rb +36 -0
- data/spec/models/provider_input_spec.rb +24 -0
- data/spec/models/provider_output_spec.rb +12 -0
- data/spec/models/sex_v1_spec.rb +30 -0
- data/spec/models/south_africa_nid_lookup2_input_spec.rb +36 -0
- data/spec/models/spid_provider_output_spec.rb +56 -2
- metadata +30 -2
|
@@ -0,0 +1,66 @@
|
|
|
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::KenyaNidMatch2Input
|
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
|
19
|
+
# Please update as you see appropriate
|
|
20
|
+
describe TrinsicApi::KenyaNidMatch2Input do
|
|
21
|
+
let(:instance) { TrinsicApi::KenyaNidMatch2Input.new }
|
|
22
|
+
|
|
23
|
+
describe 'test an instance of KenyaNidMatch2Input' do
|
|
24
|
+
it 'should create an instance of KenyaNidMatch2Input' do
|
|
25
|
+
# uncomment below to test the instance creation
|
|
26
|
+
#expect(instance).to be_instance_of(TrinsicApi::KenyaNidMatch2Input)
|
|
27
|
+
end
|
|
28
|
+
end
|
|
29
|
+
|
|
30
|
+
describe 'test attribute "id_number"' 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 "given_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 "family_name"' 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 "middle_name"' 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 "date_of_birth"' 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 "sex"' 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
|
+
end
|
|
@@ -0,0 +1,36 @@
|
|
|
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::PhilippinesDigitalNidProviderOutput
|
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
|
19
|
+
# Please update as you see appropriate
|
|
20
|
+
describe TrinsicApi::PhilippinesDigitalNidProviderOutput do
|
|
21
|
+
let(:instance) { TrinsicApi::PhilippinesDigitalNidProviderOutput.new }
|
|
22
|
+
|
|
23
|
+
describe 'test an instance of PhilippinesDigitalNidProviderOutput' do
|
|
24
|
+
it 'should create an instance of PhilippinesDigitalNidProviderOutput' do
|
|
25
|
+
# uncomment below to test the instance creation
|
|
26
|
+
#expect(instance).to be_instance_of(TrinsicApi::PhilippinesDigitalNidProviderOutput)
|
|
27
|
+
end
|
|
28
|
+
end
|
|
29
|
+
|
|
30
|
+
describe 'test attribute "philsys_card_number"' 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
|
+
end
|
|
@@ -0,0 +1,36 @@
|
|
|
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::PhilippinesPhysicalNidProviderOutput
|
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
|
19
|
+
# Please update as you see appropriate
|
|
20
|
+
describe TrinsicApi::PhilippinesPhysicalNidProviderOutput do
|
|
21
|
+
let(:instance) { TrinsicApi::PhilippinesPhysicalNidProviderOutput.new }
|
|
22
|
+
|
|
23
|
+
describe 'test an instance of PhilippinesPhysicalNidProviderOutput' do
|
|
24
|
+
it 'should create an instance of PhilippinesPhysicalNidProviderOutput' do
|
|
25
|
+
# uncomment below to test the instance creation
|
|
26
|
+
#expect(instance).to be_instance_of(TrinsicApi::PhilippinesPhysicalNidProviderOutput)
|
|
27
|
+
end
|
|
28
|
+
end
|
|
29
|
+
|
|
30
|
+
describe 'test attribute "philsys_card_number"' 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
|
+
end
|
|
@@ -27,6 +27,12 @@ describe TrinsicApi::ProviderInput do
|
|
|
27
27
|
end
|
|
28
28
|
end
|
|
29
29
|
|
|
30
|
+
describe 'test attribute "kenya_biometric2"' 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
|
+
|
|
30
36
|
describe 'test attribute "indonesia_nik"' do
|
|
31
37
|
it 'should work' do
|
|
32
38
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
@@ -57,6 +63,24 @@ describe TrinsicApi::ProviderInput do
|
|
|
57
63
|
end
|
|
58
64
|
end
|
|
59
65
|
|
|
66
|
+
describe 'test attribute "kenya_nid_match2"' 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
|
+
|
|
72
|
+
describe 'test attribute "kenya_nid_lookup2"' 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 "south_africa_nid_lookup2"' 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
|
+
|
|
60
84
|
describe 'test attribute "nigeria_nin"' do
|
|
61
85
|
it 'should work' do
|
|
62
86
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
@@ -45,4 +45,16 @@ describe TrinsicApi::ProviderOutput do
|
|
|
45
45
|
end
|
|
46
46
|
end
|
|
47
47
|
|
|
48
|
+
describe 'test attribute "philippines_physical_national_id_qr"' 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 "philippines_digital_national_id_qr"' 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
|
+
|
|
48
60
|
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::SexV1
|
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
|
19
|
+
# Please update as you see appropriate
|
|
20
|
+
describe TrinsicApi::SexV1 do
|
|
21
|
+
let(:instance) { TrinsicApi::SexV1.new }
|
|
22
|
+
|
|
23
|
+
describe 'test an instance of SexV1' do
|
|
24
|
+
it 'should create an instance of SexV1' do
|
|
25
|
+
# uncomment below to test the instance creation
|
|
26
|
+
#expect(instance).to be_instance_of(TrinsicApi::SexV1)
|
|
27
|
+
end
|
|
28
|
+
end
|
|
29
|
+
|
|
30
|
+
end
|
|
@@ -0,0 +1,36 @@
|
|
|
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::SouthAfricaNidLookup2Input
|
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
|
19
|
+
# Please update as you see appropriate
|
|
20
|
+
describe TrinsicApi::SouthAfricaNidLookup2Input do
|
|
21
|
+
let(:instance) { TrinsicApi::SouthAfricaNidLookup2Input.new }
|
|
22
|
+
|
|
23
|
+
describe 'test an instance of SouthAfricaNidLookup2Input' do
|
|
24
|
+
it 'should create an instance of SouthAfricaNidLookup2Input' do
|
|
25
|
+
# uncomment below to test the instance creation
|
|
26
|
+
#expect(instance).to be_instance_of(TrinsicApi::SouthAfricaNidLookup2Input)
|
|
27
|
+
end
|
|
28
|
+
end
|
|
29
|
+
|
|
30
|
+
describe 'test attribute "id_number"' 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
|
+
end
|
|
@@ -33,7 +33,7 @@ describe TrinsicApi::SpidProviderOutput do
|
|
|
33
33
|
end
|
|
34
34
|
end
|
|
35
35
|
|
|
36
|
-
describe 'test attribute "
|
|
36
|
+
describe 'test attribute "identity_provider_entity_id"' 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
|
|
@@ -45,13 +45,67 @@ describe TrinsicApi::SpidProviderOutput do
|
|
|
45
45
|
end
|
|
46
46
|
end
|
|
47
47
|
|
|
48
|
+
describe 'test attribute "spid_credential_expiration_date"' 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 "place_of_birth"' 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 "county_of_birth"' 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 "raw_id_card"' 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
|
+
|
|
72
|
+
describe 'test attribute "email"' 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 "digital_address"' 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
|
+
|
|
84
|
+
describe 'test attribute "fiscal_number"' do
|
|
85
|
+
it 'should work' do
|
|
86
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
87
|
+
end
|
|
88
|
+
end
|
|
89
|
+
|
|
48
90
|
describe 'test attribute "iva_code"' do
|
|
49
91
|
it 'should work' do
|
|
50
92
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
51
93
|
end
|
|
52
94
|
end
|
|
53
95
|
|
|
54
|
-
describe 'test attribute "
|
|
96
|
+
describe 'test attribute "company_name"' do
|
|
97
|
+
it 'should work' do
|
|
98
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
99
|
+
end
|
|
100
|
+
end
|
|
101
|
+
|
|
102
|
+
describe 'test attribute "company_fiscal_number"' do
|
|
103
|
+
it 'should work' do
|
|
104
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
105
|
+
end
|
|
106
|
+
end
|
|
107
|
+
|
|
108
|
+
describe 'test attribute "registered_office"' do
|
|
55
109
|
it 'should work' do
|
|
56
110
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
57
111
|
end
|
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.3.0.pre.
|
|
4
|
+
version: 2.3.0.pre.alpha2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Trinsic
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2025-
|
|
11
|
+
date: 2025-11-19 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: typhoeus
|
|
@@ -107,7 +107,10 @@ files:
|
|
|
107
107
|
- docs/IntegrationCapability.md
|
|
108
108
|
- docs/IntegrationLaunchMethod.md
|
|
109
109
|
- docs/IntegrationStep.md
|
|
110
|
+
- docs/KenyaNidBiometric2Input.md
|
|
110
111
|
- docs/KenyaNidInput.md
|
|
112
|
+
- docs/KenyaNidLookup2Input.md
|
|
113
|
+
- docs/KenyaNidMatch2Input.md
|
|
111
114
|
- docs/Language.md
|
|
112
115
|
- docs/ListEnvironmentRedirectUrisResponse.md
|
|
113
116
|
- docs/ListProviderContractsResponse.md
|
|
@@ -130,6 +133,8 @@ files:
|
|
|
130
133
|
- docs/PersonData.md
|
|
131
134
|
- docs/PhilippineMatchInput.md
|
|
132
135
|
- docs/PhilippineQRInput.md
|
|
136
|
+
- docs/PhilippinesDigitalNidProviderOutput.md
|
|
137
|
+
- docs/PhilippinesPhysicalNidProviderOutput.md
|
|
133
138
|
- docs/ProblemDetails.md
|
|
134
139
|
- docs/ProviderAttachments.md
|
|
135
140
|
- docs/ProviderContract.md
|
|
@@ -151,8 +156,10 @@ files:
|
|
|
151
156
|
- docs/SessionOrdering.md
|
|
152
157
|
- docs/SessionsApi.md
|
|
153
158
|
- docs/Sex.md
|
|
159
|
+
- docs/SexV1.md
|
|
154
160
|
- docs/SmartIdInput.md
|
|
155
161
|
- docs/SouthAfricaNidInput.md
|
|
162
|
+
- docs/SouthAfricaNidLookup2Input.md
|
|
156
163
|
- docs/SpidBillingInformation.md
|
|
157
164
|
- docs/SpidInput.md
|
|
158
165
|
- docs/SpidProviderOutput.md
|
|
@@ -219,7 +226,10 @@ files:
|
|
|
219
226
|
- lib/trinsic_api/models/integration_capability.rb
|
|
220
227
|
- lib/trinsic_api/models/integration_launch_method.rb
|
|
221
228
|
- lib/trinsic_api/models/integration_step.rb
|
|
229
|
+
- lib/trinsic_api/models/kenya_nid_biometric2_input.rb
|
|
222
230
|
- lib/trinsic_api/models/kenya_nid_input.rb
|
|
231
|
+
- lib/trinsic_api/models/kenya_nid_lookup2_input.rb
|
|
232
|
+
- lib/trinsic_api/models/kenya_nid_match2_input.rb
|
|
223
233
|
- lib/trinsic_api/models/language.rb
|
|
224
234
|
- lib/trinsic_api/models/list_environment_redirect_uris_response.rb
|
|
225
235
|
- lib/trinsic_api/models/list_provider_contracts_response.rb
|
|
@@ -240,6 +250,8 @@ files:
|
|
|
240
250
|
- lib/trinsic_api/models/person_data.rb
|
|
241
251
|
- lib/trinsic_api/models/philippine_match_input.rb
|
|
242
252
|
- lib/trinsic_api/models/philippine_qr_input.rb
|
|
253
|
+
- lib/trinsic_api/models/philippines_digital_nid_provider_output.rb
|
|
254
|
+
- lib/trinsic_api/models/philippines_physical_nid_provider_output.rb
|
|
243
255
|
- lib/trinsic_api/models/problem_details.rb
|
|
244
256
|
- lib/trinsic_api/models/provider_attachments.rb
|
|
245
257
|
- lib/trinsic_api/models/provider_contract.rb
|
|
@@ -260,8 +272,10 @@ files:
|
|
|
260
272
|
- lib/trinsic_api/models/session_error_code.rb
|
|
261
273
|
- lib/trinsic_api/models/session_ordering.rb
|
|
262
274
|
- lib/trinsic_api/models/sex.rb
|
|
275
|
+
- lib/trinsic_api/models/sex_v1.rb
|
|
263
276
|
- lib/trinsic_api/models/smart_id_input.rb
|
|
264
277
|
- lib/trinsic_api/models/south_africa_nid_input.rb
|
|
278
|
+
- lib/trinsic_api/models/south_africa_nid_lookup2_input.rb
|
|
265
279
|
- lib/trinsic_api/models/spid_billing_information.rb
|
|
266
280
|
- lib/trinsic_api/models/spid_input.rb
|
|
267
281
|
- lib/trinsic_api/models/spid_provider_output.rb
|
|
@@ -323,7 +337,10 @@ files:
|
|
|
323
337
|
- spec/models/integration_capability_spec.rb
|
|
324
338
|
- spec/models/integration_launch_method_spec.rb
|
|
325
339
|
- spec/models/integration_step_spec.rb
|
|
340
|
+
- spec/models/kenya_nid_biometric2_input_spec.rb
|
|
326
341
|
- spec/models/kenya_nid_input_spec.rb
|
|
342
|
+
- spec/models/kenya_nid_lookup2_input_spec.rb
|
|
343
|
+
- spec/models/kenya_nid_match2_input_spec.rb
|
|
327
344
|
- spec/models/language_spec.rb
|
|
328
345
|
- spec/models/list_environment_redirect_uris_response_spec.rb
|
|
329
346
|
- spec/models/list_provider_contracts_response_spec.rb
|
|
@@ -344,6 +361,8 @@ files:
|
|
|
344
361
|
- spec/models/person_data_spec.rb
|
|
345
362
|
- spec/models/philippine_match_input_spec.rb
|
|
346
363
|
- spec/models/philippine_qr_input_spec.rb
|
|
364
|
+
- spec/models/philippines_digital_nid_provider_output_spec.rb
|
|
365
|
+
- spec/models/philippines_physical_nid_provider_output_spec.rb
|
|
347
366
|
- spec/models/problem_details_spec.rb
|
|
348
367
|
- spec/models/provider_attachments_spec.rb
|
|
349
368
|
- spec/models/provider_contract_spec.rb
|
|
@@ -364,8 +383,10 @@ files:
|
|
|
364
383
|
- spec/models/session_ordering_spec.rb
|
|
365
384
|
- spec/models/session_spec.rb
|
|
366
385
|
- spec/models/sex_spec.rb
|
|
386
|
+
- spec/models/sex_v1_spec.rb
|
|
367
387
|
- spec/models/smart_id_input_spec.rb
|
|
368
388
|
- spec/models/south_africa_nid_input_spec.rb
|
|
389
|
+
- spec/models/south_africa_nid_lookup2_input_spec.rb
|
|
369
390
|
- spec/models/spid_billing_information_spec.rb
|
|
370
391
|
- spec/models/spid_input_spec.rb
|
|
371
392
|
- spec/models/spid_provider_output_spec.rb
|
|
@@ -441,14 +462,17 @@ test_files:
|
|
|
441
462
|
- spec/models/list_provider_contracts_response_spec.rb
|
|
442
463
|
- spec/models/create_direct_provider_session_request_spec.rb
|
|
443
464
|
- spec/models/mdl_identity_data_spec.rb
|
|
465
|
+
- spec/models/kenya_nid_match2_input_spec.rb
|
|
444
466
|
- spec/models/result_collection_spec.rb
|
|
445
467
|
- spec/models/order_direction_spec.rb
|
|
446
468
|
- spec/models/get_attachment_response_spec.rb
|
|
447
469
|
- spec/models/brazil_digital_cnh_input_spec.rb
|
|
448
470
|
- spec/models/mobile_id_input_spec.rb
|
|
449
471
|
- spec/models/list_verification_profiles_response_spec.rb
|
|
472
|
+
- spec/models/sex_v1_spec.rb
|
|
450
473
|
- spec/models/identity_data_spec.rb
|
|
451
474
|
- spec/models/provider_contract_spec.rb
|
|
475
|
+
- spec/models/philippines_physical_nid_provider_output_spec.rb
|
|
452
476
|
- spec/models/kenya_nid_input_spec.rb
|
|
453
477
|
- spec/models/redirect_uri_response_spec.rb
|
|
454
478
|
- spec/models/nigeria_nin_input_spec.rb
|
|
@@ -460,14 +484,17 @@ test_files:
|
|
|
460
484
|
- spec/models/aadhaar_input_spec.rb
|
|
461
485
|
- spec/models/get_session_result_request_spec.rb
|
|
462
486
|
- spec/models/indonesia_dukcapil_match_input_spec.rb
|
|
487
|
+
- spec/models/south_africa_nid_lookup2_input_spec.rb
|
|
463
488
|
- spec/models/bangladesh_nid_input_spec.rb
|
|
464
489
|
- spec/models/mexico_curp_input_spec.rb
|
|
465
490
|
- spec/models/cancel_session_response_spec.rb
|
|
466
491
|
- spec/models/sex_spec.rb
|
|
492
|
+
- spec/models/kenya_nid_biometric2_input_spec.rb
|
|
467
493
|
- spec/models/session_error_code_spec.rb
|
|
468
494
|
- spec/models/session_spec.rb
|
|
469
495
|
- spec/models/indonesia_nik_input_spec.rb
|
|
470
496
|
- spec/models/recommendation_info_spec.rb
|
|
497
|
+
- spec/models/philippines_digital_nid_provider_output_spec.rb
|
|
471
498
|
- spec/models/mexico_curp_provider_output_spec.rb
|
|
472
499
|
- spec/models/add_redirect_uri_response_spec.rb
|
|
473
500
|
- spec/models/environment_redirect_uris_add_request_spec.rb
|
|
@@ -500,6 +527,7 @@ test_files:
|
|
|
500
527
|
- spec/models/session_ordering_spec.rb
|
|
501
528
|
- spec/models/refresh_step_content_response_spec.rb
|
|
502
529
|
- spec/models/finalize_mdl_exchange_request_spec.rb
|
|
530
|
+
- spec/models/kenya_nid_lookup2_input_spec.rb
|
|
503
531
|
- spec/models/result_collection_method_spec.rb
|
|
504
532
|
- spec/models/provider_input_spec.rb
|
|
505
533
|
- spec/models/recommend_request_spec.rb
|