ory-client 0.0.1.alpha131 → 0.0.1.alpha132
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Gemfile.lock +1 -1
- data/README.md +60 -65
- data/docs/CreateProjectBody.md +18 -0
- data/docs/GenericError.md +6 -10
- data/docs/GenericErrorContent.md +26 -0
- data/docs/{IdentityPreset.md → IdentitySchemaPreset.md} +2 -2
- data/docs/JsonPatch.md +22 -0
- data/docs/MetadataApi.md +3 -3
- data/docs/NormalizedProject.md +34 -0
- data/docs/{ProjectRevision.md → NormalizedProjectRevision.md} +45 -7
- data/docs/{ProjectRevisionHook.md → NormalizedProjectRevisionHook.md} +4 -2
- data/docs/{ProjectRevisionIdentitySchema.md → NormalizedProjectRevisionIdentitySchema.md} +2 -2
- data/docs/{ProjectRevisionThirdPartyLoginProvider.md → NormalizedProjectRevisionThirdPartyProvider.md} +2 -2
- data/docs/Project.md +7 -13
- data/docs/ProjectServiceIdentity.md +18 -0
- data/docs/{UpdateProjectConfigConfig.md → ProjectServices.md} +3 -3
- data/docs/{SuccessfulProjectConfigUpdate.md → SuccessfulProjectUpdate.md} +4 -4
- data/docs/UpdateProject.md +20 -0
- data/docs/V0alpha2Api.md +43 -43
- data/lib/ory-client/api/metadata_api.rb +4 -4
- data/lib/ory-client/api/v0alpha2_api.rb +48 -48
- data/lib/ory-client/api_client.rb +1 -1
- data/lib/ory-client/api_error.rb +1 -1
- data/lib/ory-client/configuration.rb +1 -1
- data/lib/ory-client/models/active_project.rb +1 -1
- data/lib/ory-client/models/admin_create_identity_body.rb +1 -1
- data/lib/ory-client/models/admin_create_identity_import_credentials_oidc.rb +1 -1
- data/lib/ory-client/models/admin_create_identity_import_credentials_oidc_config.rb +1 -1
- data/lib/ory-client/models/admin_create_identity_import_credentials_oidc_provider.rb +1 -1
- data/lib/ory-client/models/admin_create_identity_import_credentials_password.rb +1 -1
- data/lib/ory-client/models/admin_create_identity_import_credentials_password_config.rb +1 -1
- data/lib/ory-client/models/admin_create_self_service_recovery_link_body.rb +1 -1
- data/lib/ory-client/models/admin_identity_import_credentials.rb +1 -1
- data/lib/ory-client/models/admin_update_identity_body.rb +1 -1
- data/lib/ory-client/models/api_token.rb +1 -1
- data/lib/ory-client/models/authenticator_assurance_level.rb +1 -1
- data/lib/ory-client/models/cloud_account.rb +1 -1
- data/lib/ory-client/models/cname_settings.rb +1 -1
- data/lib/ory-client/models/create_custom_hostname_body.rb +1 -1
- data/lib/ory-client/models/{inline_object.rb → create_project_body.rb} +15 -15
- data/lib/ory-client/models/create_subscription_payload.rb +1 -1
- data/lib/ory-client/models/error_authenticator_assurance_level_not_satisfied.rb +1 -1
- data/lib/ory-client/models/generic_error.rb +8 -29
- data/lib/ory-client/models/generic_error_content.rb +260 -0
- data/lib/ory-client/models/health_not_ready_status.rb +1 -1
- data/lib/ory-client/models/health_status.rb +1 -1
- data/lib/ory-client/models/identity.rb +1 -1
- data/lib/ory-client/models/identity_credentials.rb +1 -1
- data/lib/ory-client/models/identity_credentials_oidc.rb +1 -1
- data/lib/ory-client/models/identity_credentials_oidc_provider.rb +1 -1
- data/lib/ory-client/models/identity_credentials_password.rb +1 -1
- data/lib/ory-client/models/identity_credentials_type.rb +1 -1
- data/lib/ory-client/models/identity_schema.rb +1 -1
- data/lib/ory-client/models/identity_schema_location.rb +1 -1
- data/lib/ory-client/models/{identity_preset.rb → identity_schema_preset.rb} +4 -4
- data/lib/ory-client/models/identity_schema_validation_result.rb +1 -1
- data/lib/ory-client/models/identity_state.rb +1 -1
- data/lib/ory-client/models/inline_response200.rb +1 -1
- data/lib/ory-client/models/inline_response2001.rb +1 -1
- data/lib/ory-client/models/inline_response503.rb +1 -1
- data/lib/ory-client/models/invite_payload.rb +1 -1
- data/lib/ory-client/models/is_owner_for_project_by_slug.rb +1 -1
- data/lib/ory-client/models/is_owner_for_project_by_slug_payload.rb +1 -1
- data/lib/ory-client/models/json_error.rb +1 -1
- data/lib/ory-client/models/json_patch.rb +285 -0
- data/lib/ory-client/models/needs_privileged_session_error.rb +1 -1
- data/lib/ory-client/models/normalized_project.rb +372 -0
- data/lib/ory-client/models/{project_revision.rb → normalized_project_revision.rb} +200 -10
- data/lib/ory-client/models/{project_revision_hook.rb → normalized_project_revision_hook.rb} +15 -5
- data/lib/ory-client/models/{project_revision_identity_schema.rb → normalized_project_revision_identity_schema.rb} +4 -4
- data/lib/ory-client/models/{project_revision_third_party_login_provider.rb → normalized_project_revision_third_party_provider.rb} +4 -4
- data/lib/ory-client/models/null_plan.rb +1 -1
- data/lib/ory-client/models/pagination.rb +1 -1
- data/lib/ory-client/models/project.rb +38 -80
- data/lib/ory-client/models/project_host.rb +1 -1
- data/lib/ory-client/models/project_invite.rb +1 -1
- data/lib/ory-client/models/project_service_identity.rb +223 -0
- data/lib/ory-client/models/{update_project_config_config.rb → project_services.rb} +5 -6
- data/lib/ory-client/models/project_slug.rb +1 -1
- data/lib/ory-client/models/quota_project_member_seats.rb +1 -1
- data/lib/ory-client/models/recovery_address.rb +1 -1
- data/lib/ory-client/models/revoked_sessions.rb +1 -1
- data/lib/ory-client/models/schema_patch.rb +1 -1
- data/lib/ory-client/models/self_service_browser_location_change_required_error.rb +1 -1
- data/lib/ory-client/models/self_service_error.rb +1 -1
- data/lib/ory-client/models/self_service_flow_expired_error.rb +1 -1
- data/lib/ory-client/models/self_service_login_flow.rb +1 -1
- data/lib/ory-client/models/self_service_logout_url.rb +1 -1
- data/lib/ory-client/models/self_service_recovery_flow.rb +1 -1
- data/lib/ory-client/models/self_service_recovery_flow_state.rb +1 -1
- data/lib/ory-client/models/self_service_recovery_link.rb +1 -1
- data/lib/ory-client/models/self_service_registration_flow.rb +1 -1
- data/lib/ory-client/models/self_service_settings_flow.rb +1 -1
- data/lib/ory-client/models/self_service_settings_flow_state.rb +1 -1
- data/lib/ory-client/models/self_service_verification_flow.rb +1 -1
- data/lib/ory-client/models/self_service_verification_flow_state.rb +1 -1
- data/lib/ory-client/models/session.rb +1 -1
- data/lib/ory-client/models/session_authentication_method.rb +1 -1
- data/lib/ory-client/models/session_device.rb +1 -1
- data/lib/ory-client/models/settings_profile_form_config.rb +1 -1
- data/lib/ory-client/models/stripe_customer_response.rb +1 -1
- data/lib/ory-client/models/submit_self_service_flow_with_web_authn_registration_method.rb +1 -1
- data/lib/ory-client/models/submit_self_service_login_flow_body.rb +1 -1
- data/lib/ory-client/models/submit_self_service_login_flow_with_lookup_secret_method_body.rb +1 -1
- data/lib/ory-client/models/submit_self_service_login_flow_with_oidc_method_body.rb +1 -1
- data/lib/ory-client/models/submit_self_service_login_flow_with_password_method_body.rb +1 -1
- data/lib/ory-client/models/submit_self_service_login_flow_with_totp_method_body.rb +1 -1
- data/lib/ory-client/models/submit_self_service_login_flow_with_web_authn_method_body.rb +1 -1
- data/lib/ory-client/models/submit_self_service_logout_flow_without_browser_body.rb +1 -1
- data/lib/ory-client/models/submit_self_service_recovery_flow_body.rb +1 -1
- data/lib/ory-client/models/submit_self_service_recovery_flow_with_link_method_body.rb +1 -1
- data/lib/ory-client/models/submit_self_service_registration_flow_body.rb +1 -1
- data/lib/ory-client/models/submit_self_service_registration_flow_with_oidc_method_body.rb +1 -1
- data/lib/ory-client/models/submit_self_service_registration_flow_with_password_method_body.rb +1 -1
- data/lib/ory-client/models/submit_self_service_registration_flow_with_web_authn_method_body.rb +1 -1
- data/lib/ory-client/models/submit_self_service_settings_flow_body.rb +1 -1
- data/lib/ory-client/models/submit_self_service_settings_flow_with_lookup_method_body.rb +1 -1
- data/lib/ory-client/models/submit_self_service_settings_flow_with_oidc_method_body.rb +1 -1
- data/lib/ory-client/models/submit_self_service_settings_flow_with_password_method_body.rb +1 -1
- data/lib/ory-client/models/submit_self_service_settings_flow_with_profile_method_body.rb +1 -1
- data/lib/ory-client/models/submit_self_service_settings_flow_with_totp_method_body.rb +1 -1
- data/lib/ory-client/models/submit_self_service_settings_flow_with_web_authn_method_body.rb +1 -1
- data/lib/ory-client/models/submit_self_service_verification_flow_body.rb +1 -1
- data/lib/ory-client/models/submit_self_service_verification_flow_with_link_method_body.rb +1 -1
- data/lib/ory-client/models/subscription.rb +1 -1
- data/lib/ory-client/models/{successful_project_config_update.rb → successful_project_update.rb} +14 -4
- data/lib/ory-client/models/successful_self_service_login_without_browser.rb +1 -1
- data/lib/ory-client/models/successful_self_service_registration_without_browser.rb +1 -1
- data/lib/ory-client/models/ui_container.rb +1 -1
- data/lib/ory-client/models/ui_node.rb +1 -1
- data/lib/ory-client/models/ui_node_anchor_attributes.rb +1 -1
- data/lib/ory-client/models/ui_node_attributes.rb +1 -1
- data/lib/ory-client/models/ui_node_image_attributes.rb +1 -1
- data/lib/ory-client/models/ui_node_input_attributes.rb +1 -1
- data/lib/ory-client/models/ui_node_meta.rb +1 -1
- data/lib/ory-client/models/ui_node_script_attributes.rb +1 -1
- data/lib/ory-client/models/ui_node_text_attributes.rb +1 -1
- data/lib/ory-client/models/ui_text.rb +1 -1
- data/lib/ory-client/models/update_custom_hostname_body.rb +1 -1
- data/lib/ory-client/models/update_project.rb +238 -0
- data/lib/ory-client/models/update_subscription_payload.rb +1 -1
- data/lib/ory-client/models/verifiable_identity_address.rb +1 -1
- data/lib/ory-client/models/version.rb +1 -1
- data/lib/ory-client/models/warning.rb +1 -1
- data/lib/ory-client/version.rb +2 -2
- data/lib/ory-client.rb +14 -10
- data/ory-client.gemspec +1 -1
- data/spec/api/metadata_api_spec.rb +1 -1
- data/spec/api/v0alpha2_api_spec.rb +5 -5
- data/spec/api_client_spec.rb +1 -1
- data/spec/configuration_spec.rb +1 -1
- data/spec/models/active_project_spec.rb +1 -1
- data/spec/models/admin_create_identity_body_spec.rb +1 -1
- data/spec/models/admin_create_identity_import_credentials_oidc_config_spec.rb +1 -1
- data/spec/models/admin_create_identity_import_credentials_oidc_provider_spec.rb +1 -1
- data/spec/models/admin_create_identity_import_credentials_oidc_spec.rb +1 -1
- data/spec/models/admin_create_identity_import_credentials_password_config_spec.rb +1 -1
- data/spec/models/admin_create_identity_import_credentials_password_spec.rb +1 -1
- data/spec/models/admin_create_self_service_recovery_link_body_spec.rb +1 -1
- data/spec/models/admin_identity_import_credentials_spec.rb +1 -1
- data/spec/models/admin_update_identity_body_spec.rb +1 -1
- data/spec/models/api_token_spec.rb +1 -1
- data/spec/models/authenticator_assurance_level_spec.rb +1 -1
- data/spec/models/cloud_account_spec.rb +1 -1
- data/spec/models/cname_settings_spec.rb +1 -1
- data/spec/models/create_custom_hostname_body_spec.rb +1 -1
- data/spec/models/{inline_object_spec.rb → create_project_body_spec.rb} +8 -8
- data/spec/models/create_subscription_payload_spec.rb +1 -1
- data/spec/models/error_authenticator_assurance_level_not_satisfied_spec.rb +1 -1
- data/spec/models/generic_error_content_spec.rb +58 -0
- data/spec/models/generic_error_spec.rb +1 -13
- data/spec/models/health_not_ready_status_spec.rb +1 -1
- data/spec/models/health_status_spec.rb +1 -1
- data/spec/models/identity_credentials_oidc_provider_spec.rb +1 -1
- data/spec/models/identity_credentials_oidc_spec.rb +1 -1
- data/spec/models/identity_credentials_password_spec.rb +1 -1
- data/spec/models/identity_credentials_spec.rb +1 -1
- data/spec/models/identity_credentials_type_spec.rb +1 -1
- data/spec/models/identity_schema_location_spec.rb +1 -1
- data/spec/models/{identity_preset_spec.rb → identity_schema_preset_spec.rb} +7 -7
- data/spec/models/identity_schema_spec.rb +1 -1
- data/spec/models/identity_schema_validation_result_spec.rb +1 -1
- data/spec/models/identity_spec.rb +1 -1
- data/spec/models/identity_state_spec.rb +1 -1
- data/spec/models/inline_response2001_spec.rb +1 -1
- data/spec/models/inline_response200_spec.rb +1 -1
- data/spec/models/inline_response503_spec.rb +1 -1
- data/spec/models/invite_payload_spec.rb +1 -1
- data/spec/models/is_owner_for_project_by_slug_payload_spec.rb +1 -1
- data/spec/models/is_owner_for_project_by_slug_spec.rb +1 -1
- data/spec/models/json_error_spec.rb +1 -1
- data/spec/models/json_patch_spec.rb +50 -0
- data/spec/models/needs_privileged_session_error_spec.rb +1 -1
- data/spec/models/{project_revision_hook_spec.rb → normalized_project_revision_hook_spec.rb} +13 -7
- data/spec/models/{project_revision_identity_schema_spec.rb → normalized_project_revision_identity_schema_spec.rb} +7 -7
- data/spec/models/{project_revision_spec.rb → normalized_project_revision_spec.rb} +121 -7
- data/spec/models/{project_revision_third_party_login_provider_spec.rb → normalized_project_revision_third_party_provider_spec.rb} +7 -7
- data/spec/models/normalized_project_spec.rb +86 -0
- data/spec/models/null_plan_spec.rb +1 -1
- data/spec/models/pagination_spec.rb +1 -1
- data/spec/models/project_host_spec.rb +1 -1
- data/spec/models/project_invite_spec.rb +1 -1
- data/spec/models/project_service_identity_spec.rb +34 -0
- data/spec/models/{update_project_config_config_spec.rb → project_services_spec.rb} +7 -7
- data/spec/models/project_slug_spec.rb +1 -1
- data/spec/models/project_spec.rb +5 -23
- data/spec/models/quota_project_member_seats_spec.rb +1 -1
- data/spec/models/recovery_address_spec.rb +1 -1
- data/spec/models/revoked_sessions_spec.rb +1 -1
- data/spec/models/schema_patch_spec.rb +1 -1
- data/spec/models/self_service_browser_location_change_required_error_spec.rb +1 -1
- data/spec/models/self_service_error_spec.rb +1 -1
- data/spec/models/self_service_flow_expired_error_spec.rb +1 -1
- data/spec/models/self_service_login_flow_spec.rb +1 -1
- data/spec/models/self_service_logout_url_spec.rb +1 -1
- data/spec/models/self_service_recovery_flow_spec.rb +1 -1
- data/spec/models/self_service_recovery_flow_state_spec.rb +1 -1
- data/spec/models/self_service_recovery_link_spec.rb +1 -1
- data/spec/models/self_service_registration_flow_spec.rb +1 -1
- data/spec/models/self_service_settings_flow_spec.rb +1 -1
- data/spec/models/self_service_settings_flow_state_spec.rb +1 -1
- data/spec/models/self_service_verification_flow_spec.rb +1 -1
- data/spec/models/self_service_verification_flow_state_spec.rb +1 -1
- data/spec/models/session_authentication_method_spec.rb +1 -1
- data/spec/models/session_device_spec.rb +1 -1
- data/spec/models/session_spec.rb +1 -1
- data/spec/models/settings_profile_form_config_spec.rb +1 -1
- data/spec/models/stripe_customer_response_spec.rb +1 -1
- data/spec/models/submit_self_service_flow_with_web_authn_registration_method_spec.rb +1 -1
- data/spec/models/submit_self_service_login_flow_body_spec.rb +1 -1
- data/spec/models/submit_self_service_login_flow_with_lookup_secret_method_body_spec.rb +1 -1
- data/spec/models/submit_self_service_login_flow_with_oidc_method_body_spec.rb +1 -1
- data/spec/models/submit_self_service_login_flow_with_password_method_body_spec.rb +1 -1
- data/spec/models/submit_self_service_login_flow_with_totp_method_body_spec.rb +1 -1
- data/spec/models/submit_self_service_login_flow_with_web_authn_method_body_spec.rb +1 -1
- data/spec/models/submit_self_service_logout_flow_without_browser_body_spec.rb +1 -1
- data/spec/models/submit_self_service_recovery_flow_body_spec.rb +1 -1
- data/spec/models/submit_self_service_recovery_flow_with_link_method_body_spec.rb +1 -1
- data/spec/models/submit_self_service_registration_flow_body_spec.rb +1 -1
- data/spec/models/submit_self_service_registration_flow_with_oidc_method_body_spec.rb +1 -1
- data/spec/models/submit_self_service_registration_flow_with_password_method_body_spec.rb +1 -1
- data/spec/models/submit_self_service_registration_flow_with_web_authn_method_body_spec.rb +1 -1
- data/spec/models/submit_self_service_settings_flow_body_spec.rb +1 -1
- data/spec/models/submit_self_service_settings_flow_with_lookup_method_body_spec.rb +1 -1
- data/spec/models/submit_self_service_settings_flow_with_oidc_method_body_spec.rb +1 -1
- data/spec/models/submit_self_service_settings_flow_with_password_method_body_spec.rb +1 -1
- data/spec/models/submit_self_service_settings_flow_with_profile_method_body_spec.rb +1 -1
- data/spec/models/submit_self_service_settings_flow_with_totp_method_body_spec.rb +1 -1
- data/spec/models/submit_self_service_settings_flow_with_web_authn_method_body_spec.rb +1 -1
- data/spec/models/submit_self_service_verification_flow_body_spec.rb +1 -1
- data/spec/models/submit_self_service_verification_flow_with_link_method_body_spec.rb +1 -1
- data/spec/models/subscription_spec.rb +1 -1
- data/spec/models/{successful_project_config_update_spec.rb → successful_project_update_spec.rb} +7 -7
- data/spec/models/successful_self_service_login_without_browser_spec.rb +1 -1
- data/spec/models/successful_self_service_registration_without_browser_spec.rb +1 -1
- data/spec/models/ui_container_spec.rb +1 -1
- data/spec/models/ui_node_anchor_attributes_spec.rb +1 -1
- data/spec/models/ui_node_attributes_spec.rb +1 -1
- data/spec/models/ui_node_image_attributes_spec.rb +1 -1
- data/spec/models/ui_node_input_attributes_spec.rb +1 -1
- data/spec/models/ui_node_meta_spec.rb +1 -1
- data/spec/models/ui_node_script_attributes_spec.rb +1 -1
- data/spec/models/ui_node_spec.rb +1 -1
- data/spec/models/ui_node_text_attributes_spec.rb +1 -1
- data/spec/models/ui_text_spec.rb +1 -1
- data/spec/models/update_custom_hostname_body_spec.rb +1 -1
- data/spec/models/update_project_spec.rb +40 -0
- data/spec/models/update_subscription_payload_spec.rb +1 -1
- data/spec/models/verifiable_identity_address_spec.rb +1 -1
- data/spec/models/version_spec.rb +1 -1
- data/spec/models/warning_spec.rb +1 -1
- data/spec/spec_helper.rb +1 -1
- data/vendor/bundle/ruby/2.5.0/extensions/x86_64-linux/2.5.0/byebug-11.1.3/gem_make.out +2 -2
- data/vendor/bundle/ruby/2.5.0/extensions/x86_64-linux/2.5.0/ffi-1.15.5/gem_make.out +2 -2
- data/vendor/bundle/ruby/2.5.0/extensions/x86_64-linux/2.5.0/jaro_winkler-1.5.4/gem_make.out +2 -2
- data/vendor/bundle/ruby/2.5.0/extensions/x86_64-linux/2.5.0/psych-4.0.3/gem_make.out +2 -2
- data/vendor/bundle/ruby/2.5.0/extensions/x86_64-linux/2.5.0/stringio-3.0.1/gem_make.out +2 -2
- data/vendor/bundle/ruby/2.5.0/extensions/x86_64-linux/2.5.0/stringio-3.0.1/mkmf.log +1 -1
- data/vendor/bundle/ruby/2.5.0/gems/byebug-11.1.3/ext/byebug/Makefile +2 -2
- data/vendor/bundle/ruby/2.5.0/gems/ffi-1.15.5/ext/ffi_c/Makefile +2 -2
- data/vendor/bundle/ruby/2.5.0/gems/jaro_winkler-1.5.4/ext/jaro_winkler/Makefile +2 -2
- data/vendor/bundle/ruby/2.5.0/gems/psych-4.0.3/ext/psych/Makefile +2 -2
- data/vendor/bundle/ruby/2.5.0/gems/stringio-3.0.1/ext/stringio/Makefile +2 -2
- metadata +55 -39
- data/docs/InlineObject.md +0 -18
- data/docs/V0alpha0Api.md +0 -712
- data/lib/ory-client/api/v0alpha0_api.rb +0 -662
- data/spec/api/v0alpha0_api_spec.rb +0 -156
@@ -3,7 +3,7 @@
|
|
3
3
|
|
4
4
|
#Documentation for all public and administrative Ory APIs. Administrative APIs can only be accessed with a valid Personal Access Token. Public APIs are mostly used in browsers.
|
5
5
|
|
6
|
-
The version of the OpenAPI document: v0.0.1-alpha.
|
6
|
+
The version of the OpenAPI document: v0.0.1-alpha.132
|
7
7
|
Contact: support@ory.sh
|
8
8
|
Generated by: https://openapi-generator.tech
|
9
9
|
OpenAPI Generator version: 5.4.0
|
@@ -14,7 +14,7 @@ require 'date'
|
|
14
14
|
require 'time'
|
15
15
|
|
16
16
|
module OryClient
|
17
|
-
class
|
17
|
+
class NormalizedProjectRevision
|
18
18
|
# The Project's Revision Creation Date
|
19
19
|
attr_accessor :created_at
|
20
20
|
|
@@ -35,6 +35,42 @@ module OryClient
|
|
35
35
|
# NullJSONRawMessage represents a json.RawMessage that works well with JSON, SQL, and Swagger and is NULLable-
|
36
36
|
attr_accessor :kratos_courier_smtp_headers
|
37
37
|
|
38
|
+
# Configures the Ory Kratos Invalid Recovery Email Body HTML Template This governs the \"courier.smtp.templates.recovery.invalid.email.body.html\" setting.
|
39
|
+
attr_accessor :kratos_courier_templates_recovery_invalid_email_body_html
|
40
|
+
|
41
|
+
# Configures the Ory Kratos Invalid Recovery Email Body Plaintext Template This governs the \"courier.smtp.templates.recovery.invalid.email.body.plaintext\" setting.
|
42
|
+
attr_accessor :kratos_courier_templates_recovery_invalid_email_body_plaintext
|
43
|
+
|
44
|
+
# Configures the Ory Kratos Invalid Recovery Email Subject Template This governs the \"courier.smtp.templates.recovery.invalid.email.body.html\" setting.
|
45
|
+
attr_accessor :kratos_courier_templates_recovery_invalid_email_subject
|
46
|
+
|
47
|
+
# Configures the Ory Kratos Valid Recovery Email Body HTML Template This governs the \"courier.smtp.templates.recovery.valid.email.body.html\" setting.
|
48
|
+
attr_accessor :kratos_courier_templates_recovery_valid_email_body_html
|
49
|
+
|
50
|
+
# Configures the Ory Kratos Valid Recovery Email Body Plaintext Template This governs the \"courier.smtp.templates.recovery.valid.email.body.plaintext\" setting.
|
51
|
+
attr_accessor :kratos_courier_templates_recovery_valid_email_body_plaintext
|
52
|
+
|
53
|
+
# Configures the Ory Kratos Valid Recovery Email Subject Template This governs the \"courier.smtp.templates.recovery.valid.email.subject\" setting.
|
54
|
+
attr_accessor :kratos_courier_templates_recovery_valid_email_subject
|
55
|
+
|
56
|
+
# Configures the Ory Kratos Invalid Verification Email Body HTML Template This governs the \"courier.smtp.templates.verification.invalid.email.body.html\" setting.
|
57
|
+
attr_accessor :kratos_courier_templates_verification_invalid_email_body_html
|
58
|
+
|
59
|
+
# Configures the Ory Kratos Invalid Verification Email Body Plaintext Template This governs the \"courier.smtp.templates.recovery.invalid.email.body.plaintext\" setting.
|
60
|
+
attr_accessor :kratos_courier_templates_verification_invalid_email_body_plaintext
|
61
|
+
|
62
|
+
# Configures the Ory Kratos Invalid Verification Email Subject Template This governs the \"courier.smtp.templates.verification.invalid.email.subject\" setting.
|
63
|
+
attr_accessor :kratos_courier_templates_verification_invalid_email_subject
|
64
|
+
|
65
|
+
# Configures the Ory Kratos Valid Verification Email Body HTML Template This governs the \"courier.smtp.templates.verification.valid.email.body.html\" setting.
|
66
|
+
attr_accessor :kratos_courier_templates_verification_valid_email_body_html
|
67
|
+
|
68
|
+
# Configures the Ory Kratos Valid Verification Email Body Plaintext Template This governs the \"courier.smtp.templates.recovery.valid.email.body.plaintext\" setting.
|
69
|
+
attr_accessor :kratos_courier_templates_verification_valid_email_body_plaintext
|
70
|
+
|
71
|
+
# Configures the Ory Kratos Valid Verification Email Subject Template This governs the \"courier.smtp.templates.verification.valid.email.subject\" setting.
|
72
|
+
attr_accessor :kratos_courier_templates_verification_valid_email_subject
|
73
|
+
|
38
74
|
attr_accessor :kratos_identity_schemas
|
39
75
|
|
40
76
|
attr_accessor :kratos_secrets_cipher
|
@@ -62,6 +98,9 @@ module OryClient
|
|
62
98
|
# Configures the Ory Kratos Login After Password Default Return URL This governs the \"selfservice.flows.login.after.password.default_browser_return_url\" setting.
|
63
99
|
attr_accessor :kratos_selfservice_flows_login_after_password_default_browser_return_url
|
64
100
|
|
101
|
+
# Configures the Ory Kratos Login After WebAuthn Default Return URL This governs the \"selfservice.flows.login.after.webauthn.default_browser_return_url\" setting.
|
102
|
+
attr_accessor :kratos_selfservice_flows_login_after_webauthn_default_browser_return_url
|
103
|
+
|
65
104
|
# Configures the Ory Kratos Login Lifespan This governs the \"selfservice.flows.login.lifespan\" setting.
|
66
105
|
attr_accessor :kratos_selfservice_flows_login_lifespan
|
67
106
|
|
@@ -92,10 +131,15 @@ module OryClient
|
|
92
131
|
# Configures the Ory Kratos Registration After Password Default Return URL This governs the \"selfservice.flows.registration.after.password.default_browser_return_url\" setting.
|
93
132
|
attr_accessor :kratos_selfservice_flows_registration_after_password_default_browser_return_url
|
94
133
|
|
134
|
+
# Configures the Ory Kratos Registration After Password Default Return URL This governs the \"selfservice.flows.registration.after.password.default_browser_return_url\" setting.
|
135
|
+
attr_accessor :kratos_selfservice_flows_registration_after_webauthn_default_browser_return_url
|
136
|
+
|
137
|
+
attr_accessor :kratos_selfservice_flows_registration_enabled
|
138
|
+
|
95
139
|
# Configures the Ory Kratos Registration Lifespan This governs the \"selfservice.flows.registration.lifespan\" setting.
|
96
140
|
attr_accessor :kratos_selfservice_flows_registration_lifespan
|
97
141
|
|
98
|
-
# Configures the Ory Kratos Registration UI URL This governs the \"selfservice.flows.registration.ui_url\" setting.
|
142
|
+
# Configures the Ory Kratos Registration UI URL This governs the \"selfservice.flows.registration.ui_url\" setting.
|
99
143
|
attr_accessor :kratos_selfservice_flows_registration_ui_url
|
100
144
|
|
101
145
|
# Configures the Ory Kratos Settings Default Return URL This governs the \"selfservice.flows.settings.after.default_browser_return_url\" setting.
|
@@ -141,6 +185,9 @@ module OryClient
|
|
141
185
|
|
142
186
|
attr_accessor :kratos_selfservice_methods_lookup_secret_enabled
|
143
187
|
|
188
|
+
# Configures the Ory Kratos Third Party / OpenID Connect base redirect URI This governs the \"selfservice.methods.oidc.config.base_redirect_uri\" setting.
|
189
|
+
attr_accessor :kratos_selfservice_methods_oidc_config_base_redirect_uri
|
190
|
+
|
144
191
|
attr_accessor :kratos_selfservice_methods_oidc_config_providers
|
145
192
|
|
146
193
|
# Configures whether Ory Kratos Third Party / OpenID Connect Login is enabled This governs the \"selfservice.methods.oidc.enabled\" setting.
|
@@ -148,11 +195,16 @@ module OryClient
|
|
148
195
|
|
149
196
|
attr_accessor :kratos_selfservice_methods_password_config_haveibeenpwned_enabled
|
150
197
|
|
198
|
+
attr_accessor :kratos_selfservice_methods_password_config_identifier_similarity_check_enabled
|
199
|
+
|
151
200
|
attr_accessor :kratos_selfservice_methods_password_config_ignore_network_errors
|
152
201
|
|
153
|
-
# Configures Ory Kratos Password Max Breaches Detection This governs the \"selfservice.methods.password.
|
202
|
+
# Configures Ory Kratos Password Max Breaches Detection This governs the \"selfservice.methods.password.config.max_breaches\" setting.
|
154
203
|
attr_accessor :kratos_selfservice_methods_password_config_max_breaches
|
155
204
|
|
205
|
+
# Configures the minimum length of passwords. This governs the \"selfservice.methods.password.config.min_password_length\" setting.
|
206
|
+
attr_accessor :kratos_selfservice_methods_password_config_min_password_length
|
207
|
+
|
156
208
|
attr_accessor :kratos_selfservice_methods_password_enabled
|
157
209
|
|
158
210
|
attr_accessor :kratos_selfservice_methods_profile_enabled
|
@@ -162,6 +214,9 @@ module OryClient
|
|
162
214
|
|
163
215
|
attr_accessor :kratos_selfservice_methods_totp_enabled
|
164
216
|
|
217
|
+
# Configures whether Ory Kratos Webauthn is used for passwordless flows This governs the \"selfservice.methods.webauthn.config.passwordless\" setting.
|
218
|
+
attr_accessor :kratos_selfservice_methods_webauthn_config_passwordless
|
219
|
+
|
165
220
|
# Configures the Ory Kratos Webauthn RP Display Name This governs the \"selfservice.methods.webauthn.config.rp.display_name\" setting.
|
166
221
|
attr_accessor :kratos_selfservice_methods_webauthn_config_rp_display_name
|
167
222
|
|
@@ -205,6 +260,18 @@ module OryClient
|
|
205
260
|
:'kratos_courier_smtp_from_address' => :'kratos_courier_smtp_from_address',
|
206
261
|
:'kratos_courier_smtp_from_name' => :'kratos_courier_smtp_from_name',
|
207
262
|
:'kratos_courier_smtp_headers' => :'kratos_courier_smtp_headers',
|
263
|
+
:'kratos_courier_templates_recovery_invalid_email_body_html' => :'kratos_courier_templates_recovery_invalid_email_body_html',
|
264
|
+
:'kratos_courier_templates_recovery_invalid_email_body_plaintext' => :'kratos_courier_templates_recovery_invalid_email_body_plaintext',
|
265
|
+
:'kratos_courier_templates_recovery_invalid_email_subject' => :'kratos_courier_templates_recovery_invalid_email_subject',
|
266
|
+
:'kratos_courier_templates_recovery_valid_email_body_html' => :'kratos_courier_templates_recovery_valid_email_body_html',
|
267
|
+
:'kratos_courier_templates_recovery_valid_email_body_plaintext' => :'kratos_courier_templates_recovery_valid_email_body_plaintext',
|
268
|
+
:'kratos_courier_templates_recovery_valid_email_subject' => :'kratos_courier_templates_recovery_valid_email_subject',
|
269
|
+
:'kratos_courier_templates_verification_invalid_email_body_html' => :'kratos_courier_templates_verification_invalid_email_body_html',
|
270
|
+
:'kratos_courier_templates_verification_invalid_email_body_plaintext' => :'kratos_courier_templates_verification_invalid_email_body_plaintext',
|
271
|
+
:'kratos_courier_templates_verification_invalid_email_subject' => :'kratos_courier_templates_verification_invalid_email_subject',
|
272
|
+
:'kratos_courier_templates_verification_valid_email_body_html' => :'kratos_courier_templates_verification_valid_email_body_html',
|
273
|
+
:'kratos_courier_templates_verification_valid_email_body_plaintext' => :'kratos_courier_templates_verification_valid_email_body_plaintext',
|
274
|
+
:'kratos_courier_templates_verification_valid_email_subject' => :'kratos_courier_templates_verification_valid_email_subject',
|
208
275
|
:'kratos_identity_schemas' => :'kratos_identity_schemas',
|
209
276
|
:'kratos_secrets_cipher' => :'kratos_secrets_cipher',
|
210
277
|
:'kratos_secrets_cookie' => :'kratos_secrets_cookie',
|
@@ -216,6 +283,7 @@ module OryClient
|
|
216
283
|
:'kratos_selfservice_flows_login_after_default_browser_return_url' => :'kratos_selfservice_flows_login_after_default_browser_return_url',
|
217
284
|
:'kratos_selfservice_flows_login_after_oidc_default_browser_return_url' => :'kratos_selfservice_flows_login_after_oidc_default_browser_return_url',
|
218
285
|
:'kratos_selfservice_flows_login_after_password_default_browser_return_url' => :'kratos_selfservice_flows_login_after_password_default_browser_return_url',
|
286
|
+
:'kratos_selfservice_flows_login_after_webauthn_default_browser_return_url' => :'kratos_selfservice_flows_login_after_webauthn_default_browser_return_url',
|
219
287
|
:'kratos_selfservice_flows_login_lifespan' => :'kratos_selfservice_flows_login_lifespan',
|
220
288
|
:'kratos_selfservice_flows_login_ui_url' => :'kratos_selfservice_flows_login_ui_url',
|
221
289
|
:'kratos_selfservice_flows_logout_after_default_browser_return_url' => :'kratos_selfservice_flows_logout_after_default_browser_return_url',
|
@@ -226,6 +294,8 @@ module OryClient
|
|
226
294
|
:'kratos_selfservice_flows_registration_after_default_browser_return_url' => :'kratos_selfservice_flows_registration_after_default_browser_return_url',
|
227
295
|
:'kratos_selfservice_flows_registration_after_oidc_default_browser_return_url' => :'kratos_selfservice_flows_registration_after_oidc_default_browser_return_url',
|
228
296
|
:'kratos_selfservice_flows_registration_after_password_default_browser_return_url' => :'kratos_selfservice_flows_registration_after_password_default_browser_return_url',
|
297
|
+
:'kratos_selfservice_flows_registration_after_webauthn_default_browser_return_url' => :'kratos_selfservice_flows_registration_after_webauthn_default_browser_return_url',
|
298
|
+
:'kratos_selfservice_flows_registration_enabled' => :'kratos_selfservice_flows_registration_enabled',
|
229
299
|
:'kratos_selfservice_flows_registration_lifespan' => :'kratos_selfservice_flows_registration_lifespan',
|
230
300
|
:'kratos_selfservice_flows_registration_ui_url' => :'kratos_selfservice_flows_registration_ui_url',
|
231
301
|
:'kratos_selfservice_flows_settings_after_default_browser_return_url' => :'kratos_selfservice_flows_settings_after_default_browser_return_url',
|
@@ -243,15 +313,19 @@ module OryClient
|
|
243
313
|
:'kratos_selfservice_methods_link_config_lifespan' => :'kratos_selfservice_methods_link_config_lifespan',
|
244
314
|
:'kratos_selfservice_methods_link_enabled' => :'kratos_selfservice_methods_link_enabled',
|
245
315
|
:'kratos_selfservice_methods_lookup_secret_enabled' => :'kratos_selfservice_methods_lookup_secret_enabled',
|
316
|
+
:'kratos_selfservice_methods_oidc_config_base_redirect_uri' => :'kratos_selfservice_methods_oidc_config_base_redirect_uri',
|
246
317
|
:'kratos_selfservice_methods_oidc_config_providers' => :'kratos_selfservice_methods_oidc_config_providers',
|
247
318
|
:'kratos_selfservice_methods_oidc_enabled' => :'kratos_selfservice_methods_oidc_enabled',
|
248
319
|
:'kratos_selfservice_methods_password_config_haveibeenpwned_enabled' => :'kratos_selfservice_methods_password_config_haveibeenpwned_enabled',
|
320
|
+
:'kratos_selfservice_methods_password_config_identifier_similarity_check_enabled' => :'kratos_selfservice_methods_password_config_identifier_similarity_check_enabled',
|
249
321
|
:'kratos_selfservice_methods_password_config_ignore_network_errors' => :'kratos_selfservice_methods_password_config_ignore_network_errors',
|
250
322
|
:'kratos_selfservice_methods_password_config_max_breaches' => :'kratos_selfservice_methods_password_config_max_breaches',
|
323
|
+
:'kratos_selfservice_methods_password_config_min_password_length' => :'kratos_selfservice_methods_password_config_min_password_length',
|
251
324
|
:'kratos_selfservice_methods_password_enabled' => :'kratos_selfservice_methods_password_enabled',
|
252
325
|
:'kratos_selfservice_methods_profile_enabled' => :'kratos_selfservice_methods_profile_enabled',
|
253
326
|
:'kratos_selfservice_methods_totp_config_issuer' => :'kratos_selfservice_methods_totp_config_issuer',
|
254
327
|
:'kratos_selfservice_methods_totp_enabled' => :'kratos_selfservice_methods_totp_enabled',
|
328
|
+
:'kratos_selfservice_methods_webauthn_config_passwordless' => :'kratos_selfservice_methods_webauthn_config_passwordless',
|
255
329
|
:'kratos_selfservice_methods_webauthn_config_rp_display_name' => :'kratos_selfservice_methods_webauthn_config_rp_display_name',
|
256
330
|
:'kratos_selfservice_methods_webauthn_config_rp_icon' => :'kratos_selfservice_methods_webauthn_config_rp_icon',
|
257
331
|
:'kratos_selfservice_methods_webauthn_config_rp_id' => :'kratos_selfservice_methods_webauthn_config_rp_id',
|
@@ -282,17 +356,30 @@ module OryClient
|
|
282
356
|
:'kratos_courier_smtp_from_address' => :'String',
|
283
357
|
:'kratos_courier_smtp_from_name' => :'String',
|
284
358
|
:'kratos_courier_smtp_headers' => :'Object',
|
285
|
-
:'
|
359
|
+
:'kratos_courier_templates_recovery_invalid_email_body_html' => :'String',
|
360
|
+
:'kratos_courier_templates_recovery_invalid_email_body_plaintext' => :'String',
|
361
|
+
:'kratos_courier_templates_recovery_invalid_email_subject' => :'String',
|
362
|
+
:'kratos_courier_templates_recovery_valid_email_body_html' => :'String',
|
363
|
+
:'kratos_courier_templates_recovery_valid_email_body_plaintext' => :'String',
|
364
|
+
:'kratos_courier_templates_recovery_valid_email_subject' => :'String',
|
365
|
+
:'kratos_courier_templates_verification_invalid_email_body_html' => :'String',
|
366
|
+
:'kratos_courier_templates_verification_invalid_email_body_plaintext' => :'String',
|
367
|
+
:'kratos_courier_templates_verification_invalid_email_subject' => :'String',
|
368
|
+
:'kratos_courier_templates_verification_valid_email_body_html' => :'String',
|
369
|
+
:'kratos_courier_templates_verification_valid_email_body_plaintext' => :'String',
|
370
|
+
:'kratos_courier_templates_verification_valid_email_subject' => :'String',
|
371
|
+
:'kratos_identity_schemas' => :'Array<NormalizedProjectRevisionIdentitySchema>',
|
286
372
|
:'kratos_secrets_cipher' => :'Array<String>',
|
287
373
|
:'kratos_secrets_cookie' => :'Array<String>',
|
288
374
|
:'kratos_secrets_default' => :'Array<String>',
|
289
375
|
:'kratos_selfservice_allowed_return_urls' => :'Array<String>',
|
290
376
|
:'kratos_selfservice_default_browser_return_url' => :'String',
|
291
377
|
:'kratos_selfservice_flows_error_ui_url' => :'String',
|
292
|
-
:'kratos_selfservice_flows_hooks' => :'Array<
|
378
|
+
:'kratos_selfservice_flows_hooks' => :'Array<NormalizedProjectRevisionHook>',
|
293
379
|
:'kratos_selfservice_flows_login_after_default_browser_return_url' => :'String',
|
294
380
|
:'kratos_selfservice_flows_login_after_oidc_default_browser_return_url' => :'String',
|
295
381
|
:'kratos_selfservice_flows_login_after_password_default_browser_return_url' => :'String',
|
382
|
+
:'kratos_selfservice_flows_login_after_webauthn_default_browser_return_url' => :'String',
|
296
383
|
:'kratos_selfservice_flows_login_lifespan' => :'String',
|
297
384
|
:'kratos_selfservice_flows_login_ui_url' => :'String',
|
298
385
|
:'kratos_selfservice_flows_logout_after_default_browser_return_url' => :'String',
|
@@ -303,6 +390,8 @@ module OryClient
|
|
303
390
|
:'kratos_selfservice_flows_registration_after_default_browser_return_url' => :'String',
|
304
391
|
:'kratos_selfservice_flows_registration_after_oidc_default_browser_return_url' => :'String',
|
305
392
|
:'kratos_selfservice_flows_registration_after_password_default_browser_return_url' => :'String',
|
393
|
+
:'kratos_selfservice_flows_registration_after_webauthn_default_browser_return_url' => :'String',
|
394
|
+
:'kratos_selfservice_flows_registration_enabled' => :'Boolean',
|
306
395
|
:'kratos_selfservice_flows_registration_lifespan' => :'String',
|
307
396
|
:'kratos_selfservice_flows_registration_ui_url' => :'String',
|
308
397
|
:'kratos_selfservice_flows_settings_after_default_browser_return_url' => :'String',
|
@@ -320,15 +409,19 @@ module OryClient
|
|
320
409
|
:'kratos_selfservice_methods_link_config_lifespan' => :'String',
|
321
410
|
:'kratos_selfservice_methods_link_enabled' => :'Boolean',
|
322
411
|
:'kratos_selfservice_methods_lookup_secret_enabled' => :'Boolean',
|
323
|
-
:'
|
412
|
+
:'kratos_selfservice_methods_oidc_config_base_redirect_uri' => :'String',
|
413
|
+
:'kratos_selfservice_methods_oidc_config_providers' => :'Array<NormalizedProjectRevisionThirdPartyProvider>',
|
324
414
|
:'kratos_selfservice_methods_oidc_enabled' => :'Boolean',
|
325
415
|
:'kratos_selfservice_methods_password_config_haveibeenpwned_enabled' => :'Boolean',
|
416
|
+
:'kratos_selfservice_methods_password_config_identifier_similarity_check_enabled' => :'Boolean',
|
326
417
|
:'kratos_selfservice_methods_password_config_ignore_network_errors' => :'Boolean',
|
327
418
|
:'kratos_selfservice_methods_password_config_max_breaches' => :'Integer',
|
419
|
+
:'kratos_selfservice_methods_password_config_min_password_length' => :'Integer',
|
328
420
|
:'kratos_selfservice_methods_password_enabled' => :'Boolean',
|
329
421
|
:'kratos_selfservice_methods_profile_enabled' => :'Boolean',
|
330
422
|
:'kratos_selfservice_methods_totp_config_issuer' => :'String',
|
331
423
|
:'kratos_selfservice_methods_totp_enabled' => :'Boolean',
|
424
|
+
:'kratos_selfservice_methods_webauthn_config_passwordless' => :'Boolean',
|
332
425
|
:'kratos_selfservice_methods_webauthn_config_rp_display_name' => :'String',
|
333
426
|
:'kratos_selfservice_methods_webauthn_config_rp_icon' => :'String',
|
334
427
|
:'kratos_selfservice_methods_webauthn_config_rp_id' => :'String',
|
@@ -347,9 +440,11 @@ module OryClient
|
|
347
440
|
# List of attributes with nullable: true
|
348
441
|
def self.openapi_nullable
|
349
442
|
Set.new([
|
443
|
+
:'kratos_selfservice_flows_registration_enabled',
|
350
444
|
:'kratos_selfservice_methods_link_enabled',
|
351
445
|
:'kratos_selfservice_methods_lookup_secret_enabled',
|
352
446
|
:'kratos_selfservice_methods_password_config_haveibeenpwned_enabled',
|
447
|
+
:'kratos_selfservice_methods_password_config_identifier_similarity_check_enabled',
|
353
448
|
:'kratos_selfservice_methods_password_config_ignore_network_errors',
|
354
449
|
:'kratos_selfservice_methods_password_enabled',
|
355
450
|
:'kratos_selfservice_methods_profile_enabled',
|
@@ -363,13 +458,13 @@ module OryClient
|
|
363
458
|
# @param [Hash] attributes Model attributes in the form of hash
|
364
459
|
def initialize(attributes = {})
|
365
460
|
if (!attributes.is_a?(Hash))
|
366
|
-
fail ArgumentError, "The input argument (attributes) must be a hash in `OryClient::
|
461
|
+
fail ArgumentError, "The input argument (attributes) must be a hash in `OryClient::NormalizedProjectRevision` initialize method"
|
367
462
|
end
|
368
463
|
|
369
464
|
# check to see if the attribute exists and convert string to symbol for hash key
|
370
465
|
attributes = attributes.each_with_object({}) { |(k, v), h|
|
371
466
|
if (!self.class.attribute_map.key?(k.to_sym))
|
372
|
-
fail ArgumentError, "`#{k}` is not a valid attribute in `OryClient::
|
467
|
+
fail ArgumentError, "`#{k}` is not a valid attribute in `OryClient::NormalizedProjectRevision`. Please check the name to make sure it's valid. List of attributes: " + self.class.attribute_map.keys.inspect
|
373
468
|
end
|
374
469
|
h[k.to_sym] = v
|
375
470
|
}
|
@@ -402,6 +497,54 @@ module OryClient
|
|
402
497
|
self.kratos_courier_smtp_headers = attributes[:'kratos_courier_smtp_headers']
|
403
498
|
end
|
404
499
|
|
500
|
+
if attributes.key?(:'kratos_courier_templates_recovery_invalid_email_body_html')
|
501
|
+
self.kratos_courier_templates_recovery_invalid_email_body_html = attributes[:'kratos_courier_templates_recovery_invalid_email_body_html']
|
502
|
+
end
|
503
|
+
|
504
|
+
if attributes.key?(:'kratos_courier_templates_recovery_invalid_email_body_plaintext')
|
505
|
+
self.kratos_courier_templates_recovery_invalid_email_body_plaintext = attributes[:'kratos_courier_templates_recovery_invalid_email_body_plaintext']
|
506
|
+
end
|
507
|
+
|
508
|
+
if attributes.key?(:'kratos_courier_templates_recovery_invalid_email_subject')
|
509
|
+
self.kratos_courier_templates_recovery_invalid_email_subject = attributes[:'kratos_courier_templates_recovery_invalid_email_subject']
|
510
|
+
end
|
511
|
+
|
512
|
+
if attributes.key?(:'kratos_courier_templates_recovery_valid_email_body_html')
|
513
|
+
self.kratos_courier_templates_recovery_valid_email_body_html = attributes[:'kratos_courier_templates_recovery_valid_email_body_html']
|
514
|
+
end
|
515
|
+
|
516
|
+
if attributes.key?(:'kratos_courier_templates_recovery_valid_email_body_plaintext')
|
517
|
+
self.kratos_courier_templates_recovery_valid_email_body_plaintext = attributes[:'kratos_courier_templates_recovery_valid_email_body_plaintext']
|
518
|
+
end
|
519
|
+
|
520
|
+
if attributes.key?(:'kratos_courier_templates_recovery_valid_email_subject')
|
521
|
+
self.kratos_courier_templates_recovery_valid_email_subject = attributes[:'kratos_courier_templates_recovery_valid_email_subject']
|
522
|
+
end
|
523
|
+
|
524
|
+
if attributes.key?(:'kratos_courier_templates_verification_invalid_email_body_html')
|
525
|
+
self.kratos_courier_templates_verification_invalid_email_body_html = attributes[:'kratos_courier_templates_verification_invalid_email_body_html']
|
526
|
+
end
|
527
|
+
|
528
|
+
if attributes.key?(:'kratos_courier_templates_verification_invalid_email_body_plaintext')
|
529
|
+
self.kratos_courier_templates_verification_invalid_email_body_plaintext = attributes[:'kratos_courier_templates_verification_invalid_email_body_plaintext']
|
530
|
+
end
|
531
|
+
|
532
|
+
if attributes.key?(:'kratos_courier_templates_verification_invalid_email_subject')
|
533
|
+
self.kratos_courier_templates_verification_invalid_email_subject = attributes[:'kratos_courier_templates_verification_invalid_email_subject']
|
534
|
+
end
|
535
|
+
|
536
|
+
if attributes.key?(:'kratos_courier_templates_verification_valid_email_body_html')
|
537
|
+
self.kratos_courier_templates_verification_valid_email_body_html = attributes[:'kratos_courier_templates_verification_valid_email_body_html']
|
538
|
+
end
|
539
|
+
|
540
|
+
if attributes.key?(:'kratos_courier_templates_verification_valid_email_body_plaintext')
|
541
|
+
self.kratos_courier_templates_verification_valid_email_body_plaintext = attributes[:'kratos_courier_templates_verification_valid_email_body_plaintext']
|
542
|
+
end
|
543
|
+
|
544
|
+
if attributes.key?(:'kratos_courier_templates_verification_valid_email_subject')
|
545
|
+
self.kratos_courier_templates_verification_valid_email_subject = attributes[:'kratos_courier_templates_verification_valid_email_subject']
|
546
|
+
end
|
547
|
+
|
405
548
|
if attributes.key?(:'kratos_identity_schemas')
|
406
549
|
if (value = attributes[:'kratos_identity_schemas']).is_a?(Array)
|
407
550
|
self.kratos_identity_schemas = value
|
@@ -458,6 +601,10 @@ module OryClient
|
|
458
601
|
self.kratos_selfservice_flows_login_after_password_default_browser_return_url = attributes[:'kratos_selfservice_flows_login_after_password_default_browser_return_url']
|
459
602
|
end
|
460
603
|
|
604
|
+
if attributes.key?(:'kratos_selfservice_flows_login_after_webauthn_default_browser_return_url')
|
605
|
+
self.kratos_selfservice_flows_login_after_webauthn_default_browser_return_url = attributes[:'kratos_selfservice_flows_login_after_webauthn_default_browser_return_url']
|
606
|
+
end
|
607
|
+
|
461
608
|
if attributes.key?(:'kratos_selfservice_flows_login_lifespan')
|
462
609
|
self.kratos_selfservice_flows_login_lifespan = attributes[:'kratos_selfservice_flows_login_lifespan']
|
463
610
|
end
|
@@ -498,6 +645,14 @@ module OryClient
|
|
498
645
|
self.kratos_selfservice_flows_registration_after_password_default_browser_return_url = attributes[:'kratos_selfservice_flows_registration_after_password_default_browser_return_url']
|
499
646
|
end
|
500
647
|
|
648
|
+
if attributes.key?(:'kratos_selfservice_flows_registration_after_webauthn_default_browser_return_url')
|
649
|
+
self.kratos_selfservice_flows_registration_after_webauthn_default_browser_return_url = attributes[:'kratos_selfservice_flows_registration_after_webauthn_default_browser_return_url']
|
650
|
+
end
|
651
|
+
|
652
|
+
if attributes.key?(:'kratos_selfservice_flows_registration_enabled')
|
653
|
+
self.kratos_selfservice_flows_registration_enabled = attributes[:'kratos_selfservice_flows_registration_enabled']
|
654
|
+
end
|
655
|
+
|
501
656
|
if attributes.key?(:'kratos_selfservice_flows_registration_lifespan')
|
502
657
|
self.kratos_selfservice_flows_registration_lifespan = attributes[:'kratos_selfservice_flows_registration_lifespan']
|
503
658
|
end
|
@@ -566,6 +721,10 @@ module OryClient
|
|
566
721
|
self.kratos_selfservice_methods_lookup_secret_enabled = attributes[:'kratos_selfservice_methods_lookup_secret_enabled']
|
567
722
|
end
|
568
723
|
|
724
|
+
if attributes.key?(:'kratos_selfservice_methods_oidc_config_base_redirect_uri')
|
725
|
+
self.kratos_selfservice_methods_oidc_config_base_redirect_uri = attributes[:'kratos_selfservice_methods_oidc_config_base_redirect_uri']
|
726
|
+
end
|
727
|
+
|
569
728
|
if attributes.key?(:'kratos_selfservice_methods_oidc_config_providers')
|
570
729
|
if (value = attributes[:'kratos_selfservice_methods_oidc_config_providers']).is_a?(Array)
|
571
730
|
self.kratos_selfservice_methods_oidc_config_providers = value
|
@@ -580,6 +739,10 @@ module OryClient
|
|
580
739
|
self.kratos_selfservice_methods_password_config_haveibeenpwned_enabled = attributes[:'kratos_selfservice_methods_password_config_haveibeenpwned_enabled']
|
581
740
|
end
|
582
741
|
|
742
|
+
if attributes.key?(:'kratos_selfservice_methods_password_config_identifier_similarity_check_enabled')
|
743
|
+
self.kratos_selfservice_methods_password_config_identifier_similarity_check_enabled = attributes[:'kratos_selfservice_methods_password_config_identifier_similarity_check_enabled']
|
744
|
+
end
|
745
|
+
|
583
746
|
if attributes.key?(:'kratos_selfservice_methods_password_config_ignore_network_errors')
|
584
747
|
self.kratos_selfservice_methods_password_config_ignore_network_errors = attributes[:'kratos_selfservice_methods_password_config_ignore_network_errors']
|
585
748
|
end
|
@@ -588,6 +751,10 @@ module OryClient
|
|
588
751
|
self.kratos_selfservice_methods_password_config_max_breaches = attributes[:'kratos_selfservice_methods_password_config_max_breaches']
|
589
752
|
end
|
590
753
|
|
754
|
+
if attributes.key?(:'kratos_selfservice_methods_password_config_min_password_length')
|
755
|
+
self.kratos_selfservice_methods_password_config_min_password_length = attributes[:'kratos_selfservice_methods_password_config_min_password_length']
|
756
|
+
end
|
757
|
+
|
591
758
|
if attributes.key?(:'kratos_selfservice_methods_password_enabled')
|
592
759
|
self.kratos_selfservice_methods_password_enabled = attributes[:'kratos_selfservice_methods_password_enabled']
|
593
760
|
end
|
@@ -604,6 +771,10 @@ module OryClient
|
|
604
771
|
self.kratos_selfservice_methods_totp_enabled = attributes[:'kratos_selfservice_methods_totp_enabled']
|
605
772
|
end
|
606
773
|
|
774
|
+
if attributes.key?(:'kratos_selfservice_methods_webauthn_config_passwordless')
|
775
|
+
self.kratos_selfservice_methods_webauthn_config_passwordless = attributes[:'kratos_selfservice_methods_webauthn_config_passwordless']
|
776
|
+
end
|
777
|
+
|
607
778
|
if attributes.key?(:'kratos_selfservice_methods_webauthn_config_rp_display_name')
|
608
779
|
self.kratos_selfservice_methods_webauthn_config_rp_display_name = attributes[:'kratos_selfservice_methods_webauthn_config_rp_display_name']
|
609
780
|
end
|
@@ -683,6 +854,18 @@ module OryClient
|
|
683
854
|
kratos_courier_smtp_from_address == o.kratos_courier_smtp_from_address &&
|
684
855
|
kratos_courier_smtp_from_name == o.kratos_courier_smtp_from_name &&
|
685
856
|
kratos_courier_smtp_headers == o.kratos_courier_smtp_headers &&
|
857
|
+
kratos_courier_templates_recovery_invalid_email_body_html == o.kratos_courier_templates_recovery_invalid_email_body_html &&
|
858
|
+
kratos_courier_templates_recovery_invalid_email_body_plaintext == o.kratos_courier_templates_recovery_invalid_email_body_plaintext &&
|
859
|
+
kratos_courier_templates_recovery_invalid_email_subject == o.kratos_courier_templates_recovery_invalid_email_subject &&
|
860
|
+
kratos_courier_templates_recovery_valid_email_body_html == o.kratos_courier_templates_recovery_valid_email_body_html &&
|
861
|
+
kratos_courier_templates_recovery_valid_email_body_plaintext == o.kratos_courier_templates_recovery_valid_email_body_plaintext &&
|
862
|
+
kratos_courier_templates_recovery_valid_email_subject == o.kratos_courier_templates_recovery_valid_email_subject &&
|
863
|
+
kratos_courier_templates_verification_invalid_email_body_html == o.kratos_courier_templates_verification_invalid_email_body_html &&
|
864
|
+
kratos_courier_templates_verification_invalid_email_body_plaintext == o.kratos_courier_templates_verification_invalid_email_body_plaintext &&
|
865
|
+
kratos_courier_templates_verification_invalid_email_subject == o.kratos_courier_templates_verification_invalid_email_subject &&
|
866
|
+
kratos_courier_templates_verification_valid_email_body_html == o.kratos_courier_templates_verification_valid_email_body_html &&
|
867
|
+
kratos_courier_templates_verification_valid_email_body_plaintext == o.kratos_courier_templates_verification_valid_email_body_plaintext &&
|
868
|
+
kratos_courier_templates_verification_valid_email_subject == o.kratos_courier_templates_verification_valid_email_subject &&
|
686
869
|
kratos_identity_schemas == o.kratos_identity_schemas &&
|
687
870
|
kratos_secrets_cipher == o.kratos_secrets_cipher &&
|
688
871
|
kratos_secrets_cookie == o.kratos_secrets_cookie &&
|
@@ -694,6 +877,7 @@ module OryClient
|
|
694
877
|
kratos_selfservice_flows_login_after_default_browser_return_url == o.kratos_selfservice_flows_login_after_default_browser_return_url &&
|
695
878
|
kratos_selfservice_flows_login_after_oidc_default_browser_return_url == o.kratos_selfservice_flows_login_after_oidc_default_browser_return_url &&
|
696
879
|
kratos_selfservice_flows_login_after_password_default_browser_return_url == o.kratos_selfservice_flows_login_after_password_default_browser_return_url &&
|
880
|
+
kratos_selfservice_flows_login_after_webauthn_default_browser_return_url == o.kratos_selfservice_flows_login_after_webauthn_default_browser_return_url &&
|
697
881
|
kratos_selfservice_flows_login_lifespan == o.kratos_selfservice_flows_login_lifespan &&
|
698
882
|
kratos_selfservice_flows_login_ui_url == o.kratos_selfservice_flows_login_ui_url &&
|
699
883
|
kratos_selfservice_flows_logout_after_default_browser_return_url == o.kratos_selfservice_flows_logout_after_default_browser_return_url &&
|
@@ -704,6 +888,8 @@ module OryClient
|
|
704
888
|
kratos_selfservice_flows_registration_after_default_browser_return_url == o.kratos_selfservice_flows_registration_after_default_browser_return_url &&
|
705
889
|
kratos_selfservice_flows_registration_after_oidc_default_browser_return_url == o.kratos_selfservice_flows_registration_after_oidc_default_browser_return_url &&
|
706
890
|
kratos_selfservice_flows_registration_after_password_default_browser_return_url == o.kratos_selfservice_flows_registration_after_password_default_browser_return_url &&
|
891
|
+
kratos_selfservice_flows_registration_after_webauthn_default_browser_return_url == o.kratos_selfservice_flows_registration_after_webauthn_default_browser_return_url &&
|
892
|
+
kratos_selfservice_flows_registration_enabled == o.kratos_selfservice_flows_registration_enabled &&
|
707
893
|
kratos_selfservice_flows_registration_lifespan == o.kratos_selfservice_flows_registration_lifespan &&
|
708
894
|
kratos_selfservice_flows_registration_ui_url == o.kratos_selfservice_flows_registration_ui_url &&
|
709
895
|
kratos_selfservice_flows_settings_after_default_browser_return_url == o.kratos_selfservice_flows_settings_after_default_browser_return_url &&
|
@@ -721,15 +907,19 @@ module OryClient
|
|
721
907
|
kratos_selfservice_methods_link_config_lifespan == o.kratos_selfservice_methods_link_config_lifespan &&
|
722
908
|
kratos_selfservice_methods_link_enabled == o.kratos_selfservice_methods_link_enabled &&
|
723
909
|
kratos_selfservice_methods_lookup_secret_enabled == o.kratos_selfservice_methods_lookup_secret_enabled &&
|
910
|
+
kratos_selfservice_methods_oidc_config_base_redirect_uri == o.kratos_selfservice_methods_oidc_config_base_redirect_uri &&
|
724
911
|
kratos_selfservice_methods_oidc_config_providers == o.kratos_selfservice_methods_oidc_config_providers &&
|
725
912
|
kratos_selfservice_methods_oidc_enabled == o.kratos_selfservice_methods_oidc_enabled &&
|
726
913
|
kratos_selfservice_methods_password_config_haveibeenpwned_enabled == o.kratos_selfservice_methods_password_config_haveibeenpwned_enabled &&
|
914
|
+
kratos_selfservice_methods_password_config_identifier_similarity_check_enabled == o.kratos_selfservice_methods_password_config_identifier_similarity_check_enabled &&
|
727
915
|
kratos_selfservice_methods_password_config_ignore_network_errors == o.kratos_selfservice_methods_password_config_ignore_network_errors &&
|
728
916
|
kratos_selfservice_methods_password_config_max_breaches == o.kratos_selfservice_methods_password_config_max_breaches &&
|
917
|
+
kratos_selfservice_methods_password_config_min_password_length == o.kratos_selfservice_methods_password_config_min_password_length &&
|
729
918
|
kratos_selfservice_methods_password_enabled == o.kratos_selfservice_methods_password_enabled &&
|
730
919
|
kratos_selfservice_methods_profile_enabled == o.kratos_selfservice_methods_profile_enabled &&
|
731
920
|
kratos_selfservice_methods_totp_config_issuer == o.kratos_selfservice_methods_totp_config_issuer &&
|
732
921
|
kratos_selfservice_methods_totp_enabled == o.kratos_selfservice_methods_totp_enabled &&
|
922
|
+
kratos_selfservice_methods_webauthn_config_passwordless == o.kratos_selfservice_methods_webauthn_config_passwordless &&
|
733
923
|
kratos_selfservice_methods_webauthn_config_rp_display_name == o.kratos_selfservice_methods_webauthn_config_rp_display_name &&
|
734
924
|
kratos_selfservice_methods_webauthn_config_rp_icon == o.kratos_selfservice_methods_webauthn_config_rp_icon &&
|
735
925
|
kratos_selfservice_methods_webauthn_config_rp_id == o.kratos_selfservice_methods_webauthn_config_rp_id &&
|
@@ -753,7 +943,7 @@ module OryClient
|
|
753
943
|
# Calculates hash code according to all attributes.
|
754
944
|
# @return [Integer] Hash code
|
755
945
|
def hash
|
756
|
-
[created_at, id, kratos_cookies_same_site, kratos_courier_smtp_connection_uri, kratos_courier_smtp_from_address, kratos_courier_smtp_from_name, kratos_courier_smtp_headers, kratos_identity_schemas, kratos_secrets_cipher, kratos_secrets_cookie, kratos_secrets_default, kratos_selfservice_allowed_return_urls, kratos_selfservice_default_browser_return_url, kratos_selfservice_flows_error_ui_url, kratos_selfservice_flows_hooks, kratos_selfservice_flows_login_after_default_browser_return_url, kratos_selfservice_flows_login_after_oidc_default_browser_return_url, kratos_selfservice_flows_login_after_password_default_browser_return_url, kratos_selfservice_flows_login_lifespan, kratos_selfservice_flows_login_ui_url, kratos_selfservice_flows_logout_after_default_browser_return_url, kratos_selfservice_flows_recovery_after_default_browser_return_url, kratos_selfservice_flows_recovery_enabled, kratos_selfservice_flows_recovery_lifespan, kratos_selfservice_flows_recovery_ui_url, kratos_selfservice_flows_registration_after_default_browser_return_url, kratos_selfservice_flows_registration_after_oidc_default_browser_return_url, kratos_selfservice_flows_registration_after_password_default_browser_return_url, kratos_selfservice_flows_registration_lifespan, kratos_selfservice_flows_registration_ui_url, kratos_selfservice_flows_settings_after_default_browser_return_url, kratos_selfservice_flows_settings_after_password_default_browser_return_url, kratos_selfservice_flows_settings_after_profile_default_browser_return_url, kratos_selfservice_flows_settings_lifespan, kratos_selfservice_flows_settings_privileged_session_max_age, kratos_selfservice_flows_settings_required_aal, kratos_selfservice_flows_settings_ui_url, kratos_selfservice_flows_verification_after_default_browser_return_url, kratos_selfservice_flows_verification_enabled, kratos_selfservice_flows_verification_lifespan, kratos_selfservice_flows_verification_ui_url, kratos_selfservice_methods_link_config_base_url, kratos_selfservice_methods_link_config_lifespan, kratos_selfservice_methods_link_enabled, kratos_selfservice_methods_lookup_secret_enabled, kratos_selfservice_methods_oidc_config_providers, kratos_selfservice_methods_oidc_enabled, kratos_selfservice_methods_password_config_haveibeenpwned_enabled, kratos_selfservice_methods_password_config_ignore_network_errors, kratos_selfservice_methods_password_config_max_breaches, kratos_selfservice_methods_password_enabled, kratos_selfservice_methods_profile_enabled, kratos_selfservice_methods_totp_config_issuer, kratos_selfservice_methods_totp_enabled, kratos_selfservice_methods_webauthn_config_rp_display_name, kratos_selfservice_methods_webauthn_config_rp_icon, kratos_selfservice_methods_webauthn_config_rp_id, kratos_selfservice_methods_webauthn_config_rp_origin, kratos_selfservice_methods_webauthn_enabled, kratos_session_cookie_persistent, kratos_session_cookie_same_site, kratos_session_lifespan, kratos_session_whoami_required_aal, name, project_id, updated_at].hash
|
946
|
+
[created_at, id, kratos_cookies_same_site, kratos_courier_smtp_connection_uri, kratos_courier_smtp_from_address, kratos_courier_smtp_from_name, kratos_courier_smtp_headers, kratos_courier_templates_recovery_invalid_email_body_html, kratos_courier_templates_recovery_invalid_email_body_plaintext, kratos_courier_templates_recovery_invalid_email_subject, kratos_courier_templates_recovery_valid_email_body_html, kratos_courier_templates_recovery_valid_email_body_plaintext, kratos_courier_templates_recovery_valid_email_subject, kratos_courier_templates_verification_invalid_email_body_html, kratos_courier_templates_verification_invalid_email_body_plaintext, kratos_courier_templates_verification_invalid_email_subject, kratos_courier_templates_verification_valid_email_body_html, kratos_courier_templates_verification_valid_email_body_plaintext, kratos_courier_templates_verification_valid_email_subject, kratos_identity_schemas, kratos_secrets_cipher, kratos_secrets_cookie, kratos_secrets_default, kratos_selfservice_allowed_return_urls, kratos_selfservice_default_browser_return_url, kratos_selfservice_flows_error_ui_url, kratos_selfservice_flows_hooks, kratos_selfservice_flows_login_after_default_browser_return_url, kratos_selfservice_flows_login_after_oidc_default_browser_return_url, kratos_selfservice_flows_login_after_password_default_browser_return_url, kratos_selfservice_flows_login_after_webauthn_default_browser_return_url, kratos_selfservice_flows_login_lifespan, kratos_selfservice_flows_login_ui_url, kratos_selfservice_flows_logout_after_default_browser_return_url, kratos_selfservice_flows_recovery_after_default_browser_return_url, kratos_selfservice_flows_recovery_enabled, kratos_selfservice_flows_recovery_lifespan, kratos_selfservice_flows_recovery_ui_url, kratos_selfservice_flows_registration_after_default_browser_return_url, kratos_selfservice_flows_registration_after_oidc_default_browser_return_url, kratos_selfservice_flows_registration_after_password_default_browser_return_url, kratos_selfservice_flows_registration_after_webauthn_default_browser_return_url, kratos_selfservice_flows_registration_enabled, kratos_selfservice_flows_registration_lifespan, kratos_selfservice_flows_registration_ui_url, kratos_selfservice_flows_settings_after_default_browser_return_url, kratos_selfservice_flows_settings_after_password_default_browser_return_url, kratos_selfservice_flows_settings_after_profile_default_browser_return_url, kratos_selfservice_flows_settings_lifespan, kratos_selfservice_flows_settings_privileged_session_max_age, kratos_selfservice_flows_settings_required_aal, kratos_selfservice_flows_settings_ui_url, kratos_selfservice_flows_verification_after_default_browser_return_url, kratos_selfservice_flows_verification_enabled, kratos_selfservice_flows_verification_lifespan, kratos_selfservice_flows_verification_ui_url, kratos_selfservice_methods_link_config_base_url, kratos_selfservice_methods_link_config_lifespan, kratos_selfservice_methods_link_enabled, kratos_selfservice_methods_lookup_secret_enabled, kratos_selfservice_methods_oidc_config_base_redirect_uri, kratos_selfservice_methods_oidc_config_providers, kratos_selfservice_methods_oidc_enabled, kratos_selfservice_methods_password_config_haveibeenpwned_enabled, kratos_selfservice_methods_password_config_identifier_similarity_check_enabled, kratos_selfservice_methods_password_config_ignore_network_errors, kratos_selfservice_methods_password_config_max_breaches, kratos_selfservice_methods_password_config_min_password_length, kratos_selfservice_methods_password_enabled, kratos_selfservice_methods_profile_enabled, kratos_selfservice_methods_totp_config_issuer, kratos_selfservice_methods_totp_enabled, kratos_selfservice_methods_webauthn_config_passwordless, kratos_selfservice_methods_webauthn_config_rp_display_name, kratos_selfservice_methods_webauthn_config_rp_icon, kratos_selfservice_methods_webauthn_config_rp_id, kratos_selfservice_methods_webauthn_config_rp_origin, kratos_selfservice_methods_webauthn_enabled, kratos_session_cookie_persistent, kratos_session_cookie_same_site, kratos_session_lifespan, kratos_session_whoami_required_aal, name, project_id, updated_at].hash
|
757
947
|
end
|
758
948
|
|
759
949
|
# Builds the object from hash
|
@@ -3,7 +3,7 @@
|
|
3
3
|
|
4
4
|
#Documentation for all public and administrative Ory APIs. Administrative APIs can only be accessed with a valid Personal Access Token. Public APIs are mostly used in browsers.
|
5
5
|
|
6
|
-
The version of the OpenAPI document: v0.0.1-alpha.
|
6
|
+
The version of the OpenAPI document: v0.0.1-alpha.132
|
7
7
|
Contact: support@ory.sh
|
8
8
|
Generated by: https://openapi-generator.tech
|
9
9
|
OpenAPI Generator version: 5.4.0
|
@@ -14,7 +14,7 @@ require 'date'
|
|
14
14
|
require 'time'
|
15
15
|
|
16
16
|
module OryClient
|
17
|
-
class
|
17
|
+
class NormalizedProjectRevisionHook
|
18
18
|
# The Hooks Config Key
|
19
19
|
attr_accessor :config_key
|
20
20
|
|
@@ -55,6 +55,9 @@ module OryClient
|
|
55
55
|
# The HTTP method to use (GET, POST, etc) for the Web-Hook
|
56
56
|
attr_accessor :web_hook_config_method
|
57
57
|
|
58
|
+
# Whether to ignore the Web Hook response
|
59
|
+
attr_accessor :web_hook_config_response_ignore
|
60
|
+
|
58
61
|
# The URL the Web-Hook should call
|
59
62
|
attr_accessor :web_hook_config_url
|
60
63
|
|
@@ -75,6 +78,7 @@ module OryClient
|
|
75
78
|
:'web_hook_config_auth_type' => :'web_hook_config_auth_type',
|
76
79
|
:'web_hook_config_body' => :'web_hook_config_body',
|
77
80
|
:'web_hook_config_method' => :'web_hook_config_method',
|
81
|
+
:'web_hook_config_response_ignore' => :'web_hook_config_response_ignore',
|
78
82
|
:'web_hook_config_url' => :'web_hook_config_url'
|
79
83
|
}
|
80
84
|
end
|
@@ -101,6 +105,7 @@ module OryClient
|
|
101
105
|
:'web_hook_config_auth_type' => :'String',
|
102
106
|
:'web_hook_config_body' => :'String',
|
103
107
|
:'web_hook_config_method' => :'String',
|
108
|
+
:'web_hook_config_response_ignore' => :'Boolean',
|
104
109
|
:'web_hook_config_url' => :'String'
|
105
110
|
}
|
106
111
|
end
|
@@ -115,13 +120,13 @@ module OryClient
|
|
115
120
|
# @param [Hash] attributes Model attributes in the form of hash
|
116
121
|
def initialize(attributes = {})
|
117
122
|
if (!attributes.is_a?(Hash))
|
118
|
-
fail ArgumentError, "The input argument (attributes) must be a hash in `OryClient::
|
123
|
+
fail ArgumentError, "The input argument (attributes) must be a hash in `OryClient::NormalizedProjectRevisionHook` initialize method"
|
119
124
|
end
|
120
125
|
|
121
126
|
# check to see if the attribute exists and convert string to symbol for hash key
|
122
127
|
attributes = attributes.each_with_object({}) { |(k, v), h|
|
123
128
|
if (!self.class.attribute_map.key?(k.to_sym))
|
124
|
-
fail ArgumentError, "`#{k}` is not a valid attribute in `OryClient::
|
129
|
+
fail ArgumentError, "`#{k}` is not a valid attribute in `OryClient::NormalizedProjectRevisionHook`. Please check the name to make sure it's valid. List of attributes: " + self.class.attribute_map.keys.inspect
|
125
130
|
end
|
126
131
|
h[k.to_sym] = v
|
127
132
|
}
|
@@ -182,6 +187,10 @@ module OryClient
|
|
182
187
|
self.web_hook_config_method = attributes[:'web_hook_config_method']
|
183
188
|
end
|
184
189
|
|
190
|
+
if attributes.key?(:'web_hook_config_response_ignore')
|
191
|
+
self.web_hook_config_response_ignore = attributes[:'web_hook_config_response_ignore']
|
192
|
+
end
|
193
|
+
|
185
194
|
if attributes.key?(:'web_hook_config_url')
|
186
195
|
self.web_hook_config_url = attributes[:'web_hook_config_url']
|
187
196
|
end
|
@@ -229,6 +238,7 @@ module OryClient
|
|
229
238
|
web_hook_config_auth_type == o.web_hook_config_auth_type &&
|
230
239
|
web_hook_config_body == o.web_hook_config_body &&
|
231
240
|
web_hook_config_method == o.web_hook_config_method &&
|
241
|
+
web_hook_config_response_ignore == o.web_hook_config_response_ignore &&
|
232
242
|
web_hook_config_url == o.web_hook_config_url
|
233
243
|
end
|
234
244
|
|
@@ -241,7 +251,7 @@ module OryClient
|
|
241
251
|
# Calculates hash code according to all attributes.
|
242
252
|
# @return [Integer] Hash code
|
243
253
|
def hash
|
244
|
-
[config_key, created_at, hook, id, project_revision_id, updated_at, web_hook_config_auth_api_key_in, web_hook_config_auth_api_key_name, web_hook_config_auth_api_key_value, web_hook_config_auth_basic_auth_password, web_hook_config_auth_basic_auth_user, web_hook_config_auth_type, web_hook_config_body, web_hook_config_method, web_hook_config_url].hash
|
254
|
+
[config_key, created_at, hook, id, project_revision_id, updated_at, web_hook_config_auth_api_key_in, web_hook_config_auth_api_key_name, web_hook_config_auth_api_key_value, web_hook_config_auth_basic_auth_password, web_hook_config_auth_basic_auth_user, web_hook_config_auth_type, web_hook_config_body, web_hook_config_method, web_hook_config_response_ignore, web_hook_config_url].hash
|
245
255
|
end
|
246
256
|
|
247
257
|
# Builds the object from hash
|
@@ -3,7 +3,7 @@
|
|
3
3
|
|
4
4
|
#Documentation for all public and administrative Ory APIs. Administrative APIs can only be accessed with a valid Personal Access Token. Public APIs are mostly used in browsers.
|
5
5
|
|
6
|
-
The version of the OpenAPI document: v0.0.1-alpha.
|
6
|
+
The version of the OpenAPI document: v0.0.1-alpha.132
|
7
7
|
Contact: support@ory.sh
|
8
8
|
Generated by: https://openapi-generator.tech
|
9
9
|
OpenAPI Generator version: 5.4.0
|
@@ -14,7 +14,7 @@ require 'date'
|
|
14
14
|
require 'time'
|
15
15
|
|
16
16
|
module OryClient
|
17
|
-
class
|
17
|
+
class NormalizedProjectRevisionIdentitySchema
|
18
18
|
# The Project's Revision Creation Date
|
19
19
|
attr_accessor :created_at
|
20
20
|
|
@@ -88,13 +88,13 @@ module OryClient
|
|
88
88
|
# @param [Hash] attributes Model attributes in the form of hash
|
89
89
|
def initialize(attributes = {})
|
90
90
|
if (!attributes.is_a?(Hash))
|
91
|
-
fail ArgumentError, "The input argument (attributes) must be a hash in `OryClient::
|
91
|
+
fail ArgumentError, "The input argument (attributes) must be a hash in `OryClient::NormalizedProjectRevisionIdentitySchema` initialize method"
|
92
92
|
end
|
93
93
|
|
94
94
|
# check to see if the attribute exists and convert string to symbol for hash key
|
95
95
|
attributes = attributes.each_with_object({}) { |(k, v), h|
|
96
96
|
if (!self.class.attribute_map.key?(k.to_sym))
|
97
|
-
fail ArgumentError, "`#{k}` is not a valid attribute in `OryClient::
|
97
|
+
fail ArgumentError, "`#{k}` is not a valid attribute in `OryClient::NormalizedProjectRevisionIdentitySchema`. Please check the name to make sure it's valid. List of attributes: " + self.class.attribute_map.keys.inspect
|
98
98
|
end
|
99
99
|
h[k.to_sym] = v
|
100
100
|
}
|
@@ -3,7 +3,7 @@
|
|
3
3
|
|
4
4
|
#Documentation for all public and administrative Ory APIs. Administrative APIs can only be accessed with a valid Personal Access Token. Public APIs are mostly used in browsers.
|
5
5
|
|
6
|
-
The version of the OpenAPI document: v0.0.1-alpha.
|
6
|
+
The version of the OpenAPI document: v0.0.1-alpha.132
|
7
7
|
Contact: support@ory.sh
|
8
8
|
Generated by: https://openapi-generator.tech
|
9
9
|
OpenAPI Generator version: 5.4.0
|
@@ -14,7 +14,7 @@ require 'date'
|
|
14
14
|
require 'time'
|
15
15
|
|
16
16
|
module OryClient
|
17
|
-
class
|
17
|
+
class NormalizedProjectRevisionThirdPartyProvider
|
18
18
|
attr_accessor :apple_private_key
|
19
19
|
|
20
20
|
# Apple Private Key Identifier Sign In with Apple Private Key Identifier needed for generating a JWT token for client secret
|
@@ -133,13 +133,13 @@ module OryClient
|
|
133
133
|
# @param [Hash] attributes Model attributes in the form of hash
|
134
134
|
def initialize(attributes = {})
|
135
135
|
if (!attributes.is_a?(Hash))
|
136
|
-
fail ArgumentError, "The input argument (attributes) must be a hash in `OryClient::
|
136
|
+
fail ArgumentError, "The input argument (attributes) must be a hash in `OryClient::NormalizedProjectRevisionThirdPartyProvider` initialize method"
|
137
137
|
end
|
138
138
|
|
139
139
|
# check to see if the attribute exists and convert string to symbol for hash key
|
140
140
|
attributes = attributes.each_with_object({}) { |(k, v), h|
|
141
141
|
if (!self.class.attribute_map.key?(k.to_sym))
|
142
|
-
fail ArgumentError, "`#{k}` is not a valid attribute in `OryClient::
|
142
|
+
fail ArgumentError, "`#{k}` is not a valid attribute in `OryClient::NormalizedProjectRevisionThirdPartyProvider`. Please check the name to make sure it's valid. List of attributes: " + self.class.attribute_map.keys.inspect
|
143
143
|
end
|
144
144
|
h[k.to_sym] = v
|
145
145
|
}
|