ory-kratos-client 0.2.0.alpha2 → 0.5.1.alpha1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Gemfile +1 -1
- data/README.md +84 -52
- data/docs/AdminApi.md +244 -86
- data/docs/CommonApi.md +54 -6
- data/docs/CompleteSelfServiceLoginFlowWithPasswordMethod.md +21 -0
- data/docs/CompleteSelfServiceRecoveryFlowWithLinkMethod.md +19 -0
- data/docs/CompleteSelfServiceSettingsFlowWithPasswordMethod.md +19 -0
- data/docs/CompleteSelfServiceVerificationFlowWithLinkMethod.md +19 -0
- data/docs/CreateIdentity.md +19 -0
- data/docs/CreateRecoveryLink.md +19 -0
- data/docs/ErrorContainer.md +2 -2
- data/docs/Form.md +2 -2
- data/docs/FormField.md +4 -4
- data/docs/GenericErrorPayload.md +1 -1
- data/docs/Identity.md +9 -7
- data/docs/LoginFlow.md +33 -0
- data/docs/LoginFlowMethod.md +19 -0
- data/docs/LoginFlowMethodConfig.md +25 -0
- data/docs/LoginRequest.md +2 -0
- data/docs/LoginRequestMethodConfig.md +2 -2
- data/docs/LoginViaApiResponse.md +19 -0
- data/docs/Message.md +23 -0
- data/docs/ProviderCredentialsConfig.md +19 -0
- data/docs/PublicApi.md +726 -151
- data/docs/RecoveryAddress.md +21 -0
- data/docs/RecoveryFlow.md +33 -0
- data/docs/RecoveryFlowMethod.md +19 -0
- data/docs/RecoveryFlowMethodConfig.md +23 -0
- data/docs/RecoveryLink.md +19 -0
- data/docs/RecoveryRequest.md +31 -0
- data/docs/RecoveryRequestMethod.md +19 -0
- data/docs/RegistrationFlow.md +31 -0
- data/docs/RegistrationFlowMethod.md +19 -0
- data/docs/RegistrationFlowMethodConfig.md +25 -0
- data/docs/RegistrationRequest.md +3 -1
- data/docs/RegistrationRequestMethodConfig.md +2 -2
- data/docs/RegistrationViaApiResponse.md +21 -0
- data/docs/RequestMethodConfig.md +2 -2
- data/docs/RevokeSession.md +17 -0
- data/docs/Session.md +6 -4
- data/docs/SettingsFlow.md +35 -0
- data/docs/SettingsFlowMethod.md +19 -0
- data/docs/SettingsFlowMethodConfig.md +23 -0
- data/docs/SettingsRequest.md +4 -2
- data/docs/SettingsViaApiResponse.md +19 -0
- data/docs/UpdateIdentity.md +19 -0
- data/docs/VerifiableAddress.md +3 -3
- data/docs/VerificationFlow.md +33 -0
- data/docs/VerificationFlowMethod.md +19 -0
- data/docs/VerificationFlowMethodConfig.md +23 -0
- data/docs/VerificationRequest.md +2 -0
- data/lib/ory-kratos-client.rb +31 -16
- data/lib/ory-kratos-client/api/admin_api.rb +321 -130
- data/lib/ory-kratos-client/api/common_api.rb +75 -12
- data/lib/ory-kratos-client/api/health_api.rb +2 -2
- data/lib/ory-kratos-client/api/public_api.rb +896 -246
- data/lib/ory-kratos-client/api/version_api.rb +2 -2
- data/lib/ory-kratos-client/api_client.rb +10 -7
- data/lib/ory-kratos-client/api_error.rb +2 -2
- data/lib/ory-kratos-client/configuration.rb +9 -2
- data/lib/ory-kratos-client/models/complete_self_service_browser_settings_strategy_profile_flow_payload.rb +2 -2
- data/lib/ory-kratos-client/models/complete_self_service_login_flow_with_password_method.rb +227 -0
- data/lib/ory-kratos-client/models/complete_self_service_recovery_flow_with_link_method.rb +217 -0
- data/lib/ory-kratos-client/models/complete_self_service_settings_flow_with_password_method.rb +222 -0
- data/lib/ory-kratos-client/models/complete_self_service_verification_flow_with_link_method.rb +217 -0
- data/lib/ory-kratos-client/models/create_identity.rb +227 -0
- data/lib/ory-kratos-client/models/create_recovery_link.rb +238 -0
- data/lib/ory-kratos-client/models/error_container.rb +13 -2
- data/lib/ory-kratos-client/models/form.rb +14 -15
- data/lib/ory-kratos-client/models/form_field.rb +11 -17
- data/lib/ory-kratos-client/models/generic_error.rb +2 -2
- data/lib/ory-kratos-client/models/generic_error_payload.rb +4 -6
- data/lib/ory-kratos-client/models/health_not_ready_status.rb +2 -2
- data/lib/ory-kratos-client/models/health_status.rb +2 -2
- data/lib/ory-kratos-client/models/identity.rb +53 -35
- data/lib/ory-kratos-client/models/login_flow.rb +315 -0
- data/lib/ory-kratos-client/models/login_flow_method.rb +226 -0
- data/lib/ory-kratos-client/models/login_flow_method_config.rb +267 -0
- data/lib/ory-kratos-client/models/login_request.rb +14 -3
- data/lib/ory-kratos-client/models/login_request_method.rb +2 -2
- data/lib/ory-kratos-client/models/login_request_method_config.rb +14 -15
- data/lib/ory-kratos-client/models/login_via_api_response.rb +227 -0
- data/lib/ory-kratos-client/models/message.rb +234 -0
- data/lib/ory-kratos-client/models/provider_credentials_config.rb +215 -0
- data/lib/ory-kratos-client/models/recovery_address.rb +239 -0
- data/lib/ory-kratos-client/models/recovery_flow.rb +319 -0
- data/lib/ory-kratos-client/models/recovery_flow_method.rb +226 -0
- data/lib/ory-kratos-client/models/recovery_flow_method_config.rb +255 -0
- data/lib/ory-kratos-client/models/recovery_link.rb +222 -0
- data/lib/ory-kratos-client/models/recovery_request.rb +309 -0
- data/lib/ory-kratos-client/models/recovery_request_method.rb +216 -0
- data/lib/ory-kratos-client/models/registration_flow.rb +304 -0
- data/lib/ory-kratos-client/models/registration_flow_method.rb +226 -0
- data/lib/ory-kratos-client/models/registration_flow_method_config.rb +267 -0
- data/lib/ory-kratos-client/models/registration_request.rb +14 -8
- data/lib/ory-kratos-client/models/registration_request_method.rb +2 -2
- data/lib/ory-kratos-client/models/registration_request_method_config.rb +14 -15
- data/lib/ory-kratos-client/models/registration_via_api_response.rb +236 -0
- data/lib/ory-kratos-client/models/request_method_config.rb +14 -15
- data/lib/ory-kratos-client/models/revoke_session.rb +212 -0
- data/lib/ory-kratos-client/models/session.rb +29 -20
- data/lib/ory-kratos-client/models/settings_flow.rb +333 -0
- data/lib/ory-kratos-client/models/settings_flow_method.rb +226 -0
- data/lib/ory-kratos-client/models/settings_flow_method_config.rb +255 -0
- data/lib/ory-kratos-client/models/settings_request.rb +24 -14
- data/lib/ory-kratos-client/models/settings_request_method.rb +2 -2
- data/lib/ory-kratos-client/models/settings_via_api_response.rb +226 -0
- data/lib/ory-kratos-client/models/update_identity.rb +222 -0
- data/lib/ory-kratos-client/models/verifiable_address.rb +17 -17
- data/lib/ory-kratos-client/models/verification_flow.rb +299 -0
- data/lib/ory-kratos-client/models/verification_flow_method.rb +226 -0
- data/lib/ory-kratos-client/models/verification_flow_method_config.rb +255 -0
- data/lib/ory-kratos-client/models/verification_request.rb +14 -3
- data/lib/ory-kratos-client/models/version.rb +2 -2
- data/lib/ory-kratos-client/version.rb +3 -3
- data/ory-kratos-client.gemspec +2 -2
- data/spec/models/complete_self_service_login_flow_with_password_method_spec.rb +53 -0
- data/spec/models/complete_self_service_recovery_flow_with_link_method_spec.rb +47 -0
- data/spec/models/complete_self_service_settings_flow_with_password_method_spec.rb +47 -0
- data/spec/models/complete_self_service_verification_flow_with_link_method_spec.rb +47 -0
- data/spec/models/create_identity_spec.rb +47 -0
- data/spec/models/create_recovery_link_spec.rb +47 -0
- data/spec/models/login_flow_method_config_spec.rb +65 -0
- data/spec/models/login_flow_method_spec.rb +47 -0
- data/spec/models/login_flow_spec.rb +89 -0
- data/spec/models/login_via_api_response_spec.rb +47 -0
- data/spec/models/message_spec.rb +59 -0
- data/spec/models/provider_credentials_config_spec.rb +47 -0
- data/spec/models/recovery_address_spec.rb +53 -0
- data/spec/models/recovery_flow_method_config_spec.rb +59 -0
- data/spec/models/recovery_flow_method_spec.rb +47 -0
- data/spec/models/recovery_flow_spec.rb +89 -0
- data/spec/models/recovery_link_spec.rb +47 -0
- data/spec/models/recovery_request_method_spec.rb +47 -0
- data/spec/models/recovery_request_spec.rb +83 -0
- data/spec/models/registration_flow_method_config_spec.rb +65 -0
- data/spec/models/registration_flow_method_spec.rb +47 -0
- data/spec/models/registration_flow_spec.rb +83 -0
- data/spec/models/registration_via_api_response_spec.rb +53 -0
- data/spec/models/revoke_session_spec.rb +41 -0
- data/spec/models/settings_flow_method_config_spec.rb +59 -0
- data/spec/models/settings_flow_method_spec.rb +47 -0
- data/spec/models/settings_flow_spec.rb +95 -0
- data/spec/models/settings_via_api_response_spec.rb +47 -0
- data/spec/models/update_identity_spec.rb +47 -0
- data/spec/models/verification_flow_method_config_spec.rb +59 -0
- data/spec/models/verification_flow_method_spec.rb +47 -0
- data/spec/models/verification_flow_spec.rb +89 -0
- metadata +152 -24
@@ -0,0 +1,47 @@
|
|
1
|
+
=begin
|
2
|
+
#Ory Kratos
|
3
|
+
|
4
|
+
#Welcome to the ORY Kratos HTTP API documentation!
|
5
|
+
|
6
|
+
The version of the OpenAPI document: v0.5.0-alpha.1
|
7
|
+
|
8
|
+
Generated by: https://openapi-generator.tech
|
9
|
+
OpenAPI Generator version: 4.3.1
|
10
|
+
|
11
|
+
=end
|
12
|
+
|
13
|
+
require 'spec_helper'
|
14
|
+
require 'json'
|
15
|
+
require 'date'
|
16
|
+
|
17
|
+
# Unit tests for OryHydraClient::SettingsViaApiResponse
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
19
|
+
# Please update as you see appropriate
|
20
|
+
describe 'SettingsViaApiResponse' do
|
21
|
+
before do
|
22
|
+
# run before each test
|
23
|
+
@instance = OryHydraClient::SettingsViaApiResponse.new
|
24
|
+
end
|
25
|
+
|
26
|
+
after do
|
27
|
+
# run after each test
|
28
|
+
end
|
29
|
+
|
30
|
+
describe 'test an instance of SettingsViaApiResponse' do
|
31
|
+
it 'should create an instance of SettingsViaApiResponse' do
|
32
|
+
expect(@instance).to be_instance_of(OryHydraClient::SettingsViaApiResponse)
|
33
|
+
end
|
34
|
+
end
|
35
|
+
describe 'test attribute "flow"' do
|
36
|
+
it 'should work' do
|
37
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
38
|
+
end
|
39
|
+
end
|
40
|
+
|
41
|
+
describe 'test attribute "identity"' do
|
42
|
+
it 'should work' do
|
43
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
44
|
+
end
|
45
|
+
end
|
46
|
+
|
47
|
+
end
|
@@ -0,0 +1,47 @@
|
|
1
|
+
=begin
|
2
|
+
#Ory Kratos
|
3
|
+
|
4
|
+
#Welcome to the ORY Kratos HTTP API documentation!
|
5
|
+
|
6
|
+
The version of the OpenAPI document: v0.5.0-alpha.1
|
7
|
+
|
8
|
+
Generated by: https://openapi-generator.tech
|
9
|
+
OpenAPI Generator version: 4.3.1
|
10
|
+
|
11
|
+
=end
|
12
|
+
|
13
|
+
require 'spec_helper'
|
14
|
+
require 'json'
|
15
|
+
require 'date'
|
16
|
+
|
17
|
+
# Unit tests for OryHydraClient::UpdateIdentity
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
19
|
+
# Please update as you see appropriate
|
20
|
+
describe 'UpdateIdentity' do
|
21
|
+
before do
|
22
|
+
# run before each test
|
23
|
+
@instance = OryHydraClient::UpdateIdentity.new
|
24
|
+
end
|
25
|
+
|
26
|
+
after do
|
27
|
+
# run after each test
|
28
|
+
end
|
29
|
+
|
30
|
+
describe 'test an instance of UpdateIdentity' do
|
31
|
+
it 'should create an instance of UpdateIdentity' do
|
32
|
+
expect(@instance).to be_instance_of(OryHydraClient::UpdateIdentity)
|
33
|
+
end
|
34
|
+
end
|
35
|
+
describe 'test attribute "schema_id"' do
|
36
|
+
it 'should work' do
|
37
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
38
|
+
end
|
39
|
+
end
|
40
|
+
|
41
|
+
describe 'test attribute "traits"' do
|
42
|
+
it 'should work' do
|
43
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
44
|
+
end
|
45
|
+
end
|
46
|
+
|
47
|
+
end
|
@@ -0,0 +1,59 @@
|
|
1
|
+
=begin
|
2
|
+
#Ory Kratos
|
3
|
+
|
4
|
+
#Welcome to the ORY Kratos HTTP API documentation!
|
5
|
+
|
6
|
+
The version of the OpenAPI document: v0.5.0-alpha.1
|
7
|
+
|
8
|
+
Generated by: https://openapi-generator.tech
|
9
|
+
OpenAPI Generator version: 4.3.1
|
10
|
+
|
11
|
+
=end
|
12
|
+
|
13
|
+
require 'spec_helper'
|
14
|
+
require 'json'
|
15
|
+
require 'date'
|
16
|
+
|
17
|
+
# Unit tests for OryHydraClient::VerificationFlowMethodConfig
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
19
|
+
# Please update as you see appropriate
|
20
|
+
describe 'VerificationFlowMethodConfig' do
|
21
|
+
before do
|
22
|
+
# run before each test
|
23
|
+
@instance = OryHydraClient::VerificationFlowMethodConfig.new
|
24
|
+
end
|
25
|
+
|
26
|
+
after do
|
27
|
+
# run after each test
|
28
|
+
end
|
29
|
+
|
30
|
+
describe 'test an instance of VerificationFlowMethodConfig' do
|
31
|
+
it 'should create an instance of VerificationFlowMethodConfig' do
|
32
|
+
expect(@instance).to be_instance_of(OryHydraClient::VerificationFlowMethodConfig)
|
33
|
+
end
|
34
|
+
end
|
35
|
+
describe 'test attribute "action"' do
|
36
|
+
it 'should work' do
|
37
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
38
|
+
end
|
39
|
+
end
|
40
|
+
|
41
|
+
describe 'test attribute "fields"' do
|
42
|
+
it 'should work' do
|
43
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
44
|
+
end
|
45
|
+
end
|
46
|
+
|
47
|
+
describe 'test attribute "messages"' do
|
48
|
+
it 'should work' do
|
49
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
50
|
+
end
|
51
|
+
end
|
52
|
+
|
53
|
+
describe 'test attribute "method"' do
|
54
|
+
it 'should work' do
|
55
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
56
|
+
end
|
57
|
+
end
|
58
|
+
|
59
|
+
end
|
@@ -0,0 +1,47 @@
|
|
1
|
+
=begin
|
2
|
+
#Ory Kratos
|
3
|
+
|
4
|
+
#Welcome to the ORY Kratos HTTP API documentation!
|
5
|
+
|
6
|
+
The version of the OpenAPI document: v0.5.0-alpha.1
|
7
|
+
|
8
|
+
Generated by: https://openapi-generator.tech
|
9
|
+
OpenAPI Generator version: 4.3.1
|
10
|
+
|
11
|
+
=end
|
12
|
+
|
13
|
+
require 'spec_helper'
|
14
|
+
require 'json'
|
15
|
+
require 'date'
|
16
|
+
|
17
|
+
# Unit tests for OryHydraClient::VerificationFlowMethod
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
19
|
+
# Please update as you see appropriate
|
20
|
+
describe 'VerificationFlowMethod' do
|
21
|
+
before do
|
22
|
+
# run before each test
|
23
|
+
@instance = OryHydraClient::VerificationFlowMethod.new
|
24
|
+
end
|
25
|
+
|
26
|
+
after do
|
27
|
+
# run after each test
|
28
|
+
end
|
29
|
+
|
30
|
+
describe 'test an instance of VerificationFlowMethod' do
|
31
|
+
it 'should create an instance of VerificationFlowMethod' do
|
32
|
+
expect(@instance).to be_instance_of(OryHydraClient::VerificationFlowMethod)
|
33
|
+
end
|
34
|
+
end
|
35
|
+
describe 'test attribute "config"' do
|
36
|
+
it 'should work' do
|
37
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
38
|
+
end
|
39
|
+
end
|
40
|
+
|
41
|
+
describe 'test attribute "method"' do
|
42
|
+
it 'should work' do
|
43
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
44
|
+
end
|
45
|
+
end
|
46
|
+
|
47
|
+
end
|
@@ -0,0 +1,89 @@
|
|
1
|
+
=begin
|
2
|
+
#Ory Kratos
|
3
|
+
|
4
|
+
#Welcome to the ORY Kratos HTTP API documentation!
|
5
|
+
|
6
|
+
The version of the OpenAPI document: v0.5.0-alpha.1
|
7
|
+
|
8
|
+
Generated by: https://openapi-generator.tech
|
9
|
+
OpenAPI Generator version: 4.3.1
|
10
|
+
|
11
|
+
=end
|
12
|
+
|
13
|
+
require 'spec_helper'
|
14
|
+
require 'json'
|
15
|
+
require 'date'
|
16
|
+
|
17
|
+
# Unit tests for OryHydraClient::VerificationFlow
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
19
|
+
# Please update as you see appropriate
|
20
|
+
describe 'VerificationFlow' do
|
21
|
+
before do
|
22
|
+
# run before each test
|
23
|
+
@instance = OryHydraClient::VerificationFlow.new
|
24
|
+
end
|
25
|
+
|
26
|
+
after do
|
27
|
+
# run after each test
|
28
|
+
end
|
29
|
+
|
30
|
+
describe 'test an instance of VerificationFlow' do
|
31
|
+
it 'should create an instance of VerificationFlow' do
|
32
|
+
expect(@instance).to be_instance_of(OryHydraClient::VerificationFlow)
|
33
|
+
end
|
34
|
+
end
|
35
|
+
describe 'test attribute "active"' do
|
36
|
+
it 'should work' do
|
37
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
38
|
+
end
|
39
|
+
end
|
40
|
+
|
41
|
+
describe 'test attribute "expires_at"' do
|
42
|
+
it 'should work' do
|
43
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
44
|
+
end
|
45
|
+
end
|
46
|
+
|
47
|
+
describe 'test attribute "id"' do
|
48
|
+
it 'should work' do
|
49
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
50
|
+
end
|
51
|
+
end
|
52
|
+
|
53
|
+
describe 'test attribute "issued_at"' do
|
54
|
+
it 'should work' do
|
55
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
56
|
+
end
|
57
|
+
end
|
58
|
+
|
59
|
+
describe 'test attribute "messages"' do
|
60
|
+
it 'should work' do
|
61
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
62
|
+
end
|
63
|
+
end
|
64
|
+
|
65
|
+
describe 'test attribute "methods"' do
|
66
|
+
it 'should work' do
|
67
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
68
|
+
end
|
69
|
+
end
|
70
|
+
|
71
|
+
describe 'test attribute "request_url"' do
|
72
|
+
it 'should work' do
|
73
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
74
|
+
end
|
75
|
+
end
|
76
|
+
|
77
|
+
describe 'test attribute "state"' do
|
78
|
+
it 'should work' do
|
79
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
80
|
+
end
|
81
|
+
end
|
82
|
+
|
83
|
+
describe 'test attribute "type"' do
|
84
|
+
it 'should work' do
|
85
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
86
|
+
end
|
87
|
+
end
|
88
|
+
|
89
|
+
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: ory-kratos-client
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.5.1.alpha1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- ORY GmbH
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2020-
|
11
|
+
date: 2020-10-20 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: typhoeus
|
@@ -84,6 +84,12 @@ files:
|
|
84
84
|
- docs/CommonApi.md
|
85
85
|
- docs/CompleteSelfServiceBrowserProfileManagementFlowPayload.md
|
86
86
|
- docs/CompleteSelfServiceBrowserSettingsStrategyProfileFlowPayload.md
|
87
|
+
- docs/CompleteSelfServiceLoginFlowWithPasswordMethod.md
|
88
|
+
- docs/CompleteSelfServiceRecoveryFlowWithLinkMethod.md
|
89
|
+
- docs/CompleteSelfServiceSettingsFlowWithPasswordMethod.md
|
90
|
+
- docs/CompleteSelfServiceVerificationFlowWithLinkMethod.md
|
91
|
+
- docs/CreateIdentity.md
|
92
|
+
- docs/CreateRecoveryLink.md
|
87
93
|
- docs/Error.md
|
88
94
|
- docs/ErrorContainer.md
|
89
95
|
- docs/Form.md
|
@@ -94,21 +100,47 @@ files:
|
|
94
100
|
- docs/HealthNotReadyStatus.md
|
95
101
|
- docs/HealthStatus.md
|
96
102
|
- docs/Identity.md
|
103
|
+
- docs/LoginFlow.md
|
104
|
+
- docs/LoginFlowMethod.md
|
105
|
+
- docs/LoginFlowMethodConfig.md
|
97
106
|
- docs/LoginRequest.md
|
98
107
|
- docs/LoginRequestMethod.md
|
99
108
|
- docs/LoginRequestMethodConfig.md
|
109
|
+
- docs/LoginViaApiResponse.md
|
110
|
+
- docs/Message.md
|
100
111
|
- docs/OidcStrategyCredentialsConfig.md
|
101
112
|
- docs/OidcStrategyRequestMethod.md
|
102
113
|
- docs/ProfileManagementRequest.md
|
114
|
+
- docs/ProviderCredentialsConfig.md
|
103
115
|
- docs/PublicApi.md
|
116
|
+
- docs/RecoveryAddress.md
|
117
|
+
- docs/RecoveryFlow.md
|
118
|
+
- docs/RecoveryFlowMethod.md
|
119
|
+
- docs/RecoveryFlowMethodConfig.md
|
120
|
+
- docs/RecoveryLink.md
|
121
|
+
- docs/RecoveryRequest.md
|
122
|
+
- docs/RecoveryRequestMethod.md
|
123
|
+
- docs/RegistrationFlow.md
|
124
|
+
- docs/RegistrationFlowMethod.md
|
125
|
+
- docs/RegistrationFlowMethodConfig.md
|
104
126
|
- docs/RegistrationRequest.md
|
105
127
|
- docs/RegistrationRequestMethod.md
|
106
128
|
- docs/RegistrationRequestMethodConfig.md
|
129
|
+
- docs/RegistrationViaApiResponse.md
|
107
130
|
- docs/RequestMethodConfig.md
|
131
|
+
- docs/RevokeSession.md
|
108
132
|
- docs/Session.md
|
133
|
+
- docs/SettingsFlow.md
|
134
|
+
- docs/SettingsFlowMethod.md
|
135
|
+
- docs/SettingsFlowMethodConfig.md
|
109
136
|
- docs/SettingsRequest.md
|
110
137
|
- docs/SettingsRequestMethod.md
|
138
|
+
- docs/SettingsViaApiResponse.md
|
139
|
+
- docs/UpdateIdentity.md
|
111
140
|
- docs/VerifiableAddress.md
|
141
|
+
- docs/VerificationFlow.md
|
142
|
+
- docs/VerificationFlowMethod.md
|
143
|
+
- docs/VerificationFlowMethodConfig.md
|
112
144
|
- docs/VerificationRequest.md
|
113
145
|
- docs/Version.md
|
114
146
|
- docs/VersionApi.md
|
@@ -123,6 +155,12 @@ files:
|
|
123
155
|
- lib/ory-kratos-client/configuration.rb
|
124
156
|
- lib/ory-kratos-client/models/complete_self_service_browser_profile_management_flow_payload.rb
|
125
157
|
- lib/ory-kratos-client/models/complete_self_service_browser_settings_strategy_profile_flow_payload.rb
|
158
|
+
- lib/ory-kratos-client/models/complete_self_service_login_flow_with_password_method.rb
|
159
|
+
- lib/ory-kratos-client/models/complete_self_service_recovery_flow_with_link_method.rb
|
160
|
+
- lib/ory-kratos-client/models/complete_self_service_settings_flow_with_password_method.rb
|
161
|
+
- lib/ory-kratos-client/models/complete_self_service_verification_flow_with_link_method.rb
|
162
|
+
- lib/ory-kratos-client/models/create_identity.rb
|
163
|
+
- lib/ory-kratos-client/models/create_recovery_link.rb
|
126
164
|
- lib/ory-kratos-client/models/error.rb
|
127
165
|
- lib/ory-kratos-client/models/error_container.rb
|
128
166
|
- lib/ory-kratos-client/models/form.rb
|
@@ -132,20 +170,46 @@ files:
|
|
132
170
|
- lib/ory-kratos-client/models/health_not_ready_status.rb
|
133
171
|
- lib/ory-kratos-client/models/health_status.rb
|
134
172
|
- lib/ory-kratos-client/models/identity.rb
|
173
|
+
- lib/ory-kratos-client/models/login_flow.rb
|
174
|
+
- lib/ory-kratos-client/models/login_flow_method.rb
|
175
|
+
- lib/ory-kratos-client/models/login_flow_method_config.rb
|
135
176
|
- lib/ory-kratos-client/models/login_request.rb
|
136
177
|
- lib/ory-kratos-client/models/login_request_method.rb
|
137
178
|
- lib/ory-kratos-client/models/login_request_method_config.rb
|
179
|
+
- lib/ory-kratos-client/models/login_via_api_response.rb
|
180
|
+
- lib/ory-kratos-client/models/message.rb
|
138
181
|
- lib/ory-kratos-client/models/oidc_strategy_credentials_config.rb
|
139
182
|
- lib/ory-kratos-client/models/oidc_strategy_request_method.rb
|
140
183
|
- lib/ory-kratos-client/models/profile_management_request.rb
|
184
|
+
- lib/ory-kratos-client/models/provider_credentials_config.rb
|
185
|
+
- lib/ory-kratos-client/models/recovery_address.rb
|
186
|
+
- lib/ory-kratos-client/models/recovery_flow.rb
|
187
|
+
- lib/ory-kratos-client/models/recovery_flow_method.rb
|
188
|
+
- lib/ory-kratos-client/models/recovery_flow_method_config.rb
|
189
|
+
- lib/ory-kratos-client/models/recovery_link.rb
|
190
|
+
- lib/ory-kratos-client/models/recovery_request.rb
|
191
|
+
- lib/ory-kratos-client/models/recovery_request_method.rb
|
192
|
+
- lib/ory-kratos-client/models/registration_flow.rb
|
193
|
+
- lib/ory-kratos-client/models/registration_flow_method.rb
|
194
|
+
- lib/ory-kratos-client/models/registration_flow_method_config.rb
|
141
195
|
- lib/ory-kratos-client/models/registration_request.rb
|
142
196
|
- lib/ory-kratos-client/models/registration_request_method.rb
|
143
197
|
- lib/ory-kratos-client/models/registration_request_method_config.rb
|
198
|
+
- lib/ory-kratos-client/models/registration_via_api_response.rb
|
144
199
|
- lib/ory-kratos-client/models/request_method_config.rb
|
200
|
+
- lib/ory-kratos-client/models/revoke_session.rb
|
145
201
|
- lib/ory-kratos-client/models/session.rb
|
202
|
+
- lib/ory-kratos-client/models/settings_flow.rb
|
203
|
+
- lib/ory-kratos-client/models/settings_flow_method.rb
|
204
|
+
- lib/ory-kratos-client/models/settings_flow_method_config.rb
|
146
205
|
- lib/ory-kratos-client/models/settings_request.rb
|
147
206
|
- lib/ory-kratos-client/models/settings_request_method.rb
|
207
|
+
- lib/ory-kratos-client/models/settings_via_api_response.rb
|
208
|
+
- lib/ory-kratos-client/models/update_identity.rb
|
148
209
|
- lib/ory-kratos-client/models/verifiable_address.rb
|
210
|
+
- lib/ory-kratos-client/models/verification_flow.rb
|
211
|
+
- lib/ory-kratos-client/models/verification_flow_method.rb
|
212
|
+
- lib/ory-kratos-client/models/verification_flow_method_config.rb
|
149
213
|
- lib/ory-kratos-client/models/verification_request.rb
|
150
214
|
- lib/ory-kratos-client/models/version.rb
|
151
215
|
- lib/ory-kratos-client/version.rb
|
@@ -159,6 +223,12 @@ files:
|
|
159
223
|
- spec/configuration_spec.rb
|
160
224
|
- spec/models/complete_self_service_browser_profile_management_flow_payload_spec.rb
|
161
225
|
- spec/models/complete_self_service_browser_settings_strategy_profile_flow_payload_spec.rb
|
226
|
+
- spec/models/complete_self_service_login_flow_with_password_method_spec.rb
|
227
|
+
- spec/models/complete_self_service_recovery_flow_with_link_method_spec.rb
|
228
|
+
- spec/models/complete_self_service_settings_flow_with_password_method_spec.rb
|
229
|
+
- spec/models/complete_self_service_verification_flow_with_link_method_spec.rb
|
230
|
+
- spec/models/create_identity_spec.rb
|
231
|
+
- spec/models/create_recovery_link_spec.rb
|
162
232
|
- spec/models/error_container_spec.rb
|
163
233
|
- spec/models/error_spec.rb
|
164
234
|
- spec/models/form_field_spec.rb
|
@@ -168,20 +238,46 @@ files:
|
|
168
238
|
- spec/models/health_not_ready_status_spec.rb
|
169
239
|
- spec/models/health_status_spec.rb
|
170
240
|
- spec/models/identity_spec.rb
|
241
|
+
- spec/models/login_flow_method_config_spec.rb
|
242
|
+
- spec/models/login_flow_method_spec.rb
|
243
|
+
- spec/models/login_flow_spec.rb
|
171
244
|
- spec/models/login_request_method_config_spec.rb
|
172
245
|
- spec/models/login_request_method_spec.rb
|
173
246
|
- spec/models/login_request_spec.rb
|
247
|
+
- spec/models/login_via_api_response_spec.rb
|
248
|
+
- spec/models/message_spec.rb
|
174
249
|
- spec/models/oidc_strategy_credentials_config_spec.rb
|
175
250
|
- spec/models/oidc_strategy_request_method_spec.rb
|
176
251
|
- spec/models/profile_management_request_spec.rb
|
252
|
+
- spec/models/provider_credentials_config_spec.rb
|
253
|
+
- spec/models/recovery_address_spec.rb
|
254
|
+
- spec/models/recovery_flow_method_config_spec.rb
|
255
|
+
- spec/models/recovery_flow_method_spec.rb
|
256
|
+
- spec/models/recovery_flow_spec.rb
|
257
|
+
- spec/models/recovery_link_spec.rb
|
258
|
+
- spec/models/recovery_request_method_spec.rb
|
259
|
+
- spec/models/recovery_request_spec.rb
|
260
|
+
- spec/models/registration_flow_method_config_spec.rb
|
261
|
+
- spec/models/registration_flow_method_spec.rb
|
262
|
+
- spec/models/registration_flow_spec.rb
|
177
263
|
- spec/models/registration_request_method_config_spec.rb
|
178
264
|
- spec/models/registration_request_method_spec.rb
|
179
265
|
- spec/models/registration_request_spec.rb
|
266
|
+
- spec/models/registration_via_api_response_spec.rb
|
180
267
|
- spec/models/request_method_config_spec.rb
|
268
|
+
- spec/models/revoke_session_spec.rb
|
181
269
|
- spec/models/session_spec.rb
|
270
|
+
- spec/models/settings_flow_method_config_spec.rb
|
271
|
+
- spec/models/settings_flow_method_spec.rb
|
272
|
+
- spec/models/settings_flow_spec.rb
|
182
273
|
- spec/models/settings_request_method_spec.rb
|
183
274
|
- spec/models/settings_request_spec.rb
|
275
|
+
- spec/models/settings_via_api_response_spec.rb
|
276
|
+
- spec/models/update_identity_spec.rb
|
184
277
|
- spec/models/verifiable_address_spec.rb
|
278
|
+
- spec/models/verification_flow_method_config_spec.rb
|
279
|
+
- spec/models/verification_flow_method_spec.rb
|
280
|
+
- spec/models/verification_flow_spec.rb
|
185
281
|
- spec/models/verification_request_spec.rb
|
186
282
|
- spec/models/version_spec.rb
|
187
283
|
- spec/spec_helper.rb
|
@@ -210,38 +306,70 @@ signing_key:
|
|
210
306
|
specification_version: 4
|
211
307
|
summary: Ory Kratos Ruby Gem
|
212
308
|
test_files:
|
213
|
-
- spec/api/admin_api_spec.rb
|
214
|
-
- spec/api/common_api_spec.rb
|
215
|
-
- spec/api/public_api_spec.rb
|
216
309
|
- spec/api/version_api_spec.rb
|
217
310
|
- spec/api/health_api_spec.rb
|
311
|
+
- spec/api/public_api_spec.rb
|
312
|
+
- spec/api/admin_api_spec.rb
|
313
|
+
- spec/api/common_api_spec.rb
|
218
314
|
- spec/api_client_spec.rb
|
219
315
|
- spec/configuration_spec.rb
|
316
|
+
- spec/models/form_spec.rb
|
220
317
|
- spec/models/login_request_method_config_spec.rb
|
221
|
-
- spec/models/
|
222
|
-
- spec/models/version_spec.rb
|
223
|
-
- spec/models/registration_request_method_config_spec.rb
|
224
|
-
- spec/models/health_status_spec.rb
|
318
|
+
- spec/models/login_via_api_response_spec.rb
|
225
319
|
- spec/models/request_method_config_spec.rb
|
226
|
-
- spec/models/
|
227
|
-
- spec/models/
|
228
|
-
- spec/models/form_spec.rb
|
229
|
-
- spec/models/oidc_strategy_request_method_spec.rb
|
320
|
+
- spec/models/registration_via_api_response_spec.rb
|
321
|
+
- spec/models/complete_self_service_recovery_flow_with_link_method_spec.rb
|
230
322
|
- spec/models/registration_request_method_spec.rb
|
231
|
-
- spec/models/
|
232
|
-
- spec/models/
|
233
|
-
- spec/models/
|
323
|
+
- spec/models/settings_request_method_spec.rb
|
324
|
+
- spec/models/provider_credentials_config_spec.rb
|
325
|
+
- spec/models/recovery_address_spec.rb
|
326
|
+
- spec/models/settings_via_api_response_spec.rb
|
327
|
+
- spec/models/generic_error_spec.rb
|
234
328
|
- spec/models/settings_request_spec.rb
|
235
|
-
- spec/models/
|
236
|
-
- spec/models/profile_management_request_spec.rb
|
329
|
+
- spec/models/complete_self_service_browser_settings_strategy_profile_flow_payload_spec.rb
|
237
330
|
- spec/models/session_spec.rb
|
238
|
-
- spec/models/
|
239
|
-
- spec/models/
|
331
|
+
- spec/models/generic_error_payload_spec.rb
|
332
|
+
- spec/models/error_spec.rb
|
333
|
+
- spec/models/verification_request_spec.rb
|
334
|
+
- spec/models/recovery_flow_method_spec.rb
|
335
|
+
- spec/models/login_flow_spec.rb
|
336
|
+
- spec/models/oidc_strategy_request_method_spec.rb
|
337
|
+
- spec/models/registration_flow_spec.rb
|
338
|
+
- spec/models/create_recovery_link_spec.rb
|
339
|
+
- spec/models/health_status_spec.rb
|
340
|
+
- spec/models/recovery_request_spec.rb
|
341
|
+
- spec/models/login_flow_method_spec.rb
|
240
342
|
- spec/models/oidc_strategy_credentials_config_spec.rb
|
241
|
-
- spec/models/
|
343
|
+
- spec/models/verification_flow_method_spec.rb
|
344
|
+
- spec/models/settings_flow_method_spec.rb
|
345
|
+
- spec/models/revoke_session_spec.rb
|
346
|
+
- spec/models/update_identity_spec.rb
|
347
|
+
- spec/models/recovery_link_spec.rb
|
348
|
+
- spec/models/profile_management_request_spec.rb
|
349
|
+
- spec/models/complete_self_service_login_flow_with_password_method_spec.rb
|
350
|
+
- spec/models/recovery_request_method_spec.rb
|
351
|
+
- spec/models/registration_flow_method_spec.rb
|
242
352
|
- spec/models/login_request_method_spec.rb
|
243
|
-
- spec/models/
|
244
|
-
- spec/models/
|
353
|
+
- spec/models/create_identity_spec.rb
|
354
|
+
- spec/models/registration_request_method_config_spec.rb
|
355
|
+
- spec/models/recovery_flow_spec.rb
|
356
|
+
- spec/models/login_flow_method_config_spec.rb
|
357
|
+
- spec/models/verification_flow_spec.rb
|
358
|
+
- spec/models/complete_self_service_browser_profile_management_flow_payload_spec.rb
|
245
359
|
- spec/models/login_request_spec.rb
|
246
|
-
- spec/models/
|
360
|
+
- spec/models/settings_flow_spec.rb
|
361
|
+
- spec/models/registration_request_spec.rb
|
362
|
+
- spec/models/settings_flow_method_config_spec.rb
|
363
|
+
- spec/models/registration_flow_method_config_spec.rb
|
364
|
+
- spec/models/identity_spec.rb
|
365
|
+
- spec/models/recovery_flow_method_config_spec.rb
|
366
|
+
- spec/models/error_container_spec.rb
|
367
|
+
- spec/models/message_spec.rb
|
368
|
+
- spec/models/complete_self_service_settings_flow_with_password_method_spec.rb
|
369
|
+
- spec/models/complete_self_service_verification_flow_with_link_method_spec.rb
|
370
|
+
- spec/models/verifiable_address_spec.rb
|
371
|
+
- spec/models/verification_flow_method_config_spec.rb
|
372
|
+
- spec/models/health_not_ready_status_spec.rb
|
373
|
+
- spec/models/form_field_spec.rb
|
374
|
+
- spec/models/version_spec.rb
|
247
375
|
- spec/spec_helper.rb
|