ory-client 1.22.38 → 1.22.40
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/Gemfile.lock +1 -1
- data/README.md +80 -10
- data/docs/APIKeysApi.md +1229 -0
- data/docs/AdminRevokeAPIKeyBody.md +20 -0
- data/docs/AdminRotateIssuedAPIKeyBody.md +28 -0
- data/docs/AdminUpdateImportedAPIKeyRequest.md +44 -0
- data/docs/AdminUpdateIssuedAPIKeyRequest.md +44 -0
- data/docs/Any.md +18 -0
- data/docs/BatchImportAPIKeysRequest.md +18 -0
- data/docs/BatchImportAPIKeysResponse.md +22 -0
- data/docs/BatchImportErrorCode.md +15 -0
- data/docs/BatchImportResult.md +24 -0
- data/docs/BatchVerifyAPIKeysRequest.md +18 -0
- data/docs/BatchVerifyAPIKeysResponse.md +18 -0
- data/docs/CreateTestLoginFlowBody.md +18 -0
- data/docs/DeriveTokenRequest.md +26 -0
- data/docs/DeriveTokenResponse.md +18 -0
- data/docs/DeviceAuthnAndroidAuthorizationList.md +70 -0
- data/docs/DeviceAuthnAndroidKeyDescription.md +28 -0
- data/docs/DeviceAuthnAndroidRootOfTrust.md +24 -0
- data/docs/DeviceAuthnAttestation.md +20 -0
- data/docs/DeviceAuthnIOSAttStmt.md +18 -0
- data/docs/DeviceAuthnIOSAttestation.md +22 -0
- data/docs/DeviceAuthnKey.md +2 -0
- data/docs/FrontendApi.md +68 -0
- data/docs/GetJWKSResponse.md +18 -0
- data/docs/IPRestriction.md +18 -0
- data/docs/IdentityApi.md +142 -2
- data/docs/IdentityCredentials.md +1 -1
- data/docs/ImportAPIKeyRequest.md +36 -0
- data/docs/ImportedAPIKey.md +46 -0
- data/docs/IssueAPIKeyRequest.md +34 -0
- data/docs/IssueAPIKeyResponse.md +20 -0
- data/docs/IssuedAPIKey.md +46 -0
- data/docs/KeyStatus.md +15 -0
- data/docs/KeyVisibility.md +15 -0
- data/docs/ListImportedAPIKeysResponse.md +20 -0
- data/docs/ListIssuedAPIKeysResponse.md +20 -0
- data/docs/LoginFlow.md +3 -1
- data/docs/LoginFlowTestContext.md +20 -0
- data/docs/LoginFlowTestDebugPayload.md +32 -0
- data/docs/LoginFlowTestSchemaValidationError.md +20 -0
- data/docs/LoginFlowTestStepError.md +22 -0
- data/docs/ManageSessionsBody.md +22 -0
- data/docs/ManageSessionsResponse.md +20 -0
- data/docs/Message.md +1 -1
- data/docs/NullValue.md +15 -0
- data/docs/RateLimitPolicy.md +22 -0
- data/docs/RegistrationFlow.md +1 -1
- data/docs/RevocationReason.md +15 -0
- data/docs/RotateIssuedAPIKeyResponse.md +22 -0
- data/docs/SelfRevokeAPIKeyRequest.md +20 -0
- data/docs/SessionAuthenticationMethod.md +1 -1
- data/docs/Status.md +22 -0
- data/docs/Token.md +24 -0
- data/docs/TokenAlgorithm.md +15 -0
- data/docs/ValidateBaseURLRewriteRequest.md +22 -0
- data/docs/ValidateBaseURLRewriteResponse.md +20 -0
- data/docs/VerificationErrorCode.md +15 -0
- data/docs/VerifyAPIKeyRequest.md +18 -0
- data/docs/VerifyAPIKeyResponse.md +44 -0
- data/lib/ory-client/api/api_keys_api.rb +1190 -0
- data/lib/ory-client/api/courier_api.rb +1 -1
- data/lib/ory-client/api/events_api.rb +1 -1
- data/lib/ory-client/api/frontend_api.rb +68 -1
- data/lib/ory-client/api/identity_api.rb +142 -6
- data/lib/ory-client/api/jwk_api.rb +1 -1
- data/lib/ory-client/api/metadata_api.rb +1 -1
- data/lib/ory-client/api/o_auth2_api.rb +1 -1
- data/lib/ory-client/api/oidc_api.rb +1 -1
- data/lib/ory-client/api/permission_api.rb +1 -1
- data/lib/ory-client/api/project_api.rb +1 -1
- data/lib/ory-client/api/relationship_api.rb +1 -1
- data/lib/ory-client/api/wellknown_api.rb +1 -1
- data/lib/ory-client/api/workspace_api.rb +1 -1
- data/lib/ory-client/api_client.rb +1 -1
- data/lib/ory-client/api_error.rb +1 -1
- data/lib/ory-client/api_model_base.rb +1 -1
- data/lib/ory-client/configuration.rb +1 -1
- data/lib/ory-client/models/accept_device_user_code_request.rb +1 -1
- data/lib/ory-client/models/accept_o_auth2_consent_request.rb +1 -1
- data/lib/ory-client/models/accept_o_auth2_consent_request_session.rb +1 -1
- data/lib/ory-client/models/accept_o_auth2_login_request.rb +1 -1
- data/lib/ory-client/models/account_experience_colors.rb +1 -1
- data/lib/ory-client/models/account_experience_configuration.rb +1 -1
- data/lib/ory-client/models/add_project_to_workspace_body.rb +1 -1
- data/lib/ory-client/models/admin_identity_import_credentials_lookup_secret.rb +1 -1
- data/lib/ory-client/models/admin_identity_import_credentials_lookup_secret_config.rb +1 -1
- data/lib/ory-client/models/admin_revoke_api_key_body.rb +181 -0
- data/lib/ory-client/models/admin_rotate_issued_api_key_body.rb +222 -0
- data/lib/ory-client/models/admin_update_imported_api_key_request.rb +297 -0
- data/lib/ory-client/models/admin_update_issued_api_key_request.rb +297 -0
- data/lib/ory-client/models/any.rb +147 -0
- data/lib/ory-client/models/attribute.rb +1 -1
- data/lib/ory-client/models/attribute_filter.rb +1 -1
- data/lib/ory-client/models/attributes_count_datapoint.rb +1 -1
- data/lib/ory-client/models/authenticator_assurance_level.rb +1 -1
- data/lib/ory-client/models/basic_organization.rb +1 -1
- data/lib/ory-client/models/batch_check_permission_body.rb +1 -1
- data/lib/ory-client/models/batch_check_permission_result.rb +1 -1
- data/lib/ory-client/models/batch_import_api_keys_request.rb +150 -0
- data/lib/ory-client/models/batch_import_api_keys_response.rb +168 -0
- data/lib/ory-client/models/batch_import_error_code.rb +43 -0
- data/lib/ory-client/models/batch_import_result.rb +199 -0
- data/lib/ory-client/models/batch_patch_identities_response.rb +1 -1
- data/lib/ory-client/models/batch_verify_api_keys_request.rb +149 -0
- data/lib/ory-client/models/batch_verify_api_keys_response.rb +149 -0
- data/lib/ory-client/models/billing_period_bucket.rb +1 -1
- data/lib/ory-client/models/check_opl_syntax_result.rb +1 -1
- data/lib/ory-client/models/check_permission_result.rb +1 -1
- data/lib/ory-client/models/check_permission_result_with_error.rb +1 -1
- data/lib/ory-client/models/cloud_account.rb +1 -1
- data/lib/ory-client/models/consistency_request_parameters.rb +1 -1
- data/lib/ory-client/models/continue_with.rb +1 -1
- data/lib/ory-client/models/continue_with_recovery_ui.rb +1 -1
- data/lib/ory-client/models/continue_with_recovery_ui_flow.rb +1 -1
- data/lib/ory-client/models/continue_with_redirect_browser_to.rb +1 -1
- data/lib/ory-client/models/continue_with_set_ory_session_token.rb +1 -1
- data/lib/ory-client/models/continue_with_settings_ui.rb +1 -1
- data/lib/ory-client/models/continue_with_settings_ui_flow.rb +1 -1
- data/lib/ory-client/models/continue_with_verification_ui.rb +1 -1
- data/lib/ory-client/models/continue_with_verification_ui_flow.rb +1 -1
- data/lib/ory-client/models/courier_message_status.rb +1 -1
- data/lib/ory-client/models/courier_message_type.rb +1 -1
- data/lib/ory-client/models/create_custom_domain_body.rb +1 -1
- data/lib/ory-client/models/create_event_stream_body.rb +1 -1
- data/lib/ory-client/models/create_fedcm_flow_response.rb +1 -1
- data/lib/ory-client/models/create_identity_body.rb +1 -1
- data/lib/ory-client/models/create_invite_response.rb +1 -1
- data/lib/ory-client/models/create_json_web_key_set.rb +1 -1
- data/lib/ory-client/models/create_onboarding_link_response.rb +1 -1
- data/lib/ory-client/models/create_organization_onboarding_portal_link_body.rb +1 -1
- data/lib/ory-client/models/create_project_api_key_request.rb +1 -1
- data/lib/ory-client/models/create_project_body.rb +1 -1
- data/lib/ory-client/models/create_project_branding.rb +1 -1
- data/lib/ory-client/models/create_project_member_invite_body.rb +1 -1
- data/lib/ory-client/models/create_project_normalized_payload.rb +1 -1
- data/lib/ory-client/models/create_recovery_code_for_identity_body.rb +1 -1
- data/lib/ory-client/models/create_recovery_link_for_identity_body.rb +1 -1
- data/lib/ory-client/models/create_relationship_body.rb +1 -1
- data/lib/ory-client/models/create_subscription_body.rb +1 -1
- data/lib/ory-client/models/create_subscription_common.rb +1 -1
- data/lib/ory-client/models/create_test_login_flow_body.rb +174 -0
- data/lib/ory-client/models/create_verifiable_credential_request_body.rb +1 -1
- data/lib/ory-client/models/create_workspace_api_key_body.rb +1 -1
- data/lib/ory-client/models/create_workspace_body.rb +1 -1
- data/lib/ory-client/models/create_workspace_member_invite_body.rb +1 -1
- data/lib/ory-client/models/create_workspace_organization_body.rb +1 -1
- data/lib/ory-client/models/create_workspace_subscription_body.rb +1 -1
- data/lib/ory-client/models/credential_supported_draft00.rb +1 -1
- data/lib/ory-client/models/custom_domain.rb +1 -1
- data/lib/ory-client/models/customer_portal_availability.rb +1 -1
- data/lib/ory-client/models/delete_my_sessions_count.rb +1 -1
- data/lib/ory-client/models/derive_token_request.rb +211 -0
- data/lib/ory-client/models/derive_token_response.rb +147 -0
- data/lib/ory-client/models/device_authn_android_authorization_list.rb +406 -0
- data/lib/ory-client/models/device_authn_android_key_description.rb +193 -0
- data/lib/ory-client/models/device_authn_android_root_of_trust.rb +178 -0
- data/lib/ory-client/models/device_authn_attestation.rb +157 -0
- data/lib/ory-client/models/device_authn_ios_att_stmt.rb +151 -0
- data/lib/ory-client/models/device_authn_ios_attestation.rb +168 -0
- data/lib/ory-client/models/device_authn_key.rb +11 -2
- data/lib/ory-client/models/device_authorization.rb +1 -1
- data/lib/ory-client/models/device_user_auth_request.rb +1 -1
- data/lib/ory-client/models/email_template_data.rb +1 -1
- data/lib/ory-client/models/email_template_data_body.rb +1 -1
- data/lib/ory-client/models/error_authenticator_assurance_level_not_satisfied.rb +1 -1
- data/lib/ory-client/models/error_browser_location_change_required.rb +1 -1
- data/lib/ory-client/models/error_flow_replaced.rb +1 -1
- data/lib/ory-client/models/error_generic.rb +1 -1
- data/lib/ory-client/models/error_o_auth2.rb +1 -1
- data/lib/ory-client/models/event_stream.rb +1 -1
- data/lib/ory-client/models/expanded_permission_tree.rb +1 -1
- data/lib/ory-client/models/flow_error.rb +1 -1
- data/lib/ory-client/models/generic_error.rb +1 -1
- data/lib/ory-client/models/generic_error_content.rb +1 -1
- data/lib/ory-client/models/generic_oidc_provider.rb +1 -1
- data/lib/ory-client/models/generic_usage.rb +1 -1
- data/lib/ory-client/models/get_attributes_count.rb +1 -1
- data/lib/ory-client/models/get_jwks_response.rb +148 -0
- data/lib/ory-client/models/get_managed_identity_schema_location.rb +1 -1
- data/lib/ory-client/models/get_metrics_count.rb +1 -1
- data/lib/ory-client/models/get_metrics_event_attributes.rb +1 -1
- data/lib/ory-client/models/get_metrics_event_types.rb +1 -1
- data/lib/ory-client/models/get_organization_response.rb +1 -1
- data/lib/ory-client/models/get_project_events.rb +1 -1
- data/lib/ory-client/models/get_project_events_body.rb +1 -1
- data/lib/ory-client/models/get_project_metrics.rb +1 -1
- data/lib/ory-client/models/get_session_activity.rb +1 -1
- data/lib/ory-client/models/get_version200_response.rb +1 -1
- 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 +4 -4
- data/lib/ory-client/models/identity_credentials_code.rb +1 -1
- data/lib/ory-client/models/identity_credentials_code_address.rb +1 -1
- data/lib/ory-client/models/identity_credentials_lookup_secret_code.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_web_authn.rb +1 -1
- data/lib/ory-client/models/identity_credentials_web_authn_attestation.rb +1 -1
- data/lib/ory-client/models/identity_credentials_web_authn_authenticator.rb +1 -1
- data/lib/ory-client/models/identity_credentials_web_authn_flags.rb +1 -1
- data/lib/ory-client/models/identity_patch.rb +1 -1
- data/lib/ory-client/models/identity_patch_response.rb +1 -1
- data/lib/ory-client/models/identity_schema_container.rb +1 -1
- data/lib/ory-client/models/identity_schema_preset.rb +1 -1
- data/lib/ory-client/models/identity_with_credentials.rb +1 -1
- data/lib/ory-client/models/identity_with_credentials_oidc.rb +1 -1
- data/lib/ory-client/models/identity_with_credentials_oidc_config.rb +1 -1
- data/lib/ory-client/models/identity_with_credentials_oidc_config_provider.rb +1 -1
- data/lib/ory-client/models/identity_with_credentials_passkey.rb +1 -1
- data/lib/ory-client/models/identity_with_credentials_passkey_config.rb +1 -1
- data/lib/ory-client/models/identity_with_credentials_password.rb +1 -1
- data/lib/ory-client/models/identity_with_credentials_password_config.rb +1 -1
- data/lib/ory-client/models/identity_with_credentials_saml.rb +1 -1
- data/lib/ory-client/models/identity_with_credentials_saml_config.rb +1 -1
- data/lib/ory-client/models/identity_with_credentials_saml_config_provider.rb +1 -1
- data/lib/ory-client/models/identity_with_credentials_totp.rb +1 -1
- data/lib/ory-client/models/identity_with_credentials_totp_config.rb +1 -1
- data/lib/ory-client/models/identity_with_credentials_web_authn.rb +1 -1
- data/lib/ory-client/models/identity_with_credentials_web_authn_config.rb +1 -1
- data/lib/ory-client/models/import_api_key_request.rb +258 -0
- data/lib/ory-client/models/imported_api_key.rb +306 -0
- data/lib/ory-client/models/internal_get_project_branding_body.rb +1 -1
- data/lib/ory-client/models/internal_is_ax_welcome_screen_enabled_for_project_body.rb +1 -1
- data/lib/ory-client/models/internal_is_owner_for_project_by_slug.rb +1 -1
- data/lib/ory-client/models/internal_is_owner_for_project_by_slug_body.rb +1 -1
- data/lib/ory-client/models/introspected_o_auth2_token.rb +1 -1
- data/lib/ory-client/models/invite_token_body.rb +1 -1
- data/lib/ory-client/models/invoice.rb +1 -1
- data/lib/ory-client/models/invoice_data_v1.rb +1 -1
- data/lib/ory-client/models/ip_restriction.rb +151 -0
- data/lib/ory-client/models/is_owner_for_project_by_slug.rb +1 -1
- data/lib/ory-client/models/issue_api_key_request.rb +247 -0
- data/lib/ory-client/models/issue_api_key_response.rb +156 -0
- data/lib/ory-client/models/issued_api_key.rb +306 -0
- data/lib/ory-client/models/json_patch.rb +1 -1
- data/lib/ory-client/models/json_web_key.rb +1 -1
- data/lib/ory-client/models/json_web_key_set.rb +1 -1
- data/lib/ory-client/models/keto_namespace.rb +1 -1
- data/lib/ory-client/models/key_status.rb +42 -0
- data/lib/ory-client/models/key_visibility.rb +41 -0
- data/lib/ory-client/models/keyset_pagination_request_parameters.rb +1 -1
- data/lib/ory-client/models/keyset_pagination_response_headers.rb +1 -1
- data/lib/ory-client/models/line_item_v1.rb +1 -1
- data/lib/ory-client/models/list_event_streams.rb +1 -1
- data/lib/ory-client/models/list_imported_api_keys_response.rb +158 -0
- data/lib/ory-client/models/list_invoices_response.rb +1 -1
- data/lib/ory-client/models/list_issued_api_keys_response.rb +158 -0
- data/lib/ory-client/models/list_organizations_response.rb +1 -1
- data/lib/ory-client/models/list_workspace_projects.rb +1 -1
- data/lib/ory-client/models/list_workspaces.rb +1 -1
- data/lib/ory-client/models/login_flow.rb +14 -5
- data/lib/ory-client/models/login_flow_state.rb +1 -1
- data/lib/ory-client/models/login_flow_test_context.rb +175 -0
- data/lib/ory-client/models/login_flow_test_debug_payload.rb +228 -0
- data/lib/ory-client/models/login_flow_test_schema_validation_error.rb +159 -0
- data/lib/ory-client/models/login_flow_test_step_error.rb +169 -0
- data/lib/ory-client/models/logout_flow.rb +1 -1
- data/lib/ory-client/models/manage_sessions_body.rb +214 -0
- data/lib/ory-client/models/manage_sessions_response.rb +159 -0
- data/lib/ory-client/models/managed_identity_schema.rb +1 -1
- data/lib/ory-client/models/managed_identity_schema_validation_result.rb +1 -1
- data/lib/ory-client/models/member_invite.rb +1 -1
- data/lib/ory-client/models/message.rb +4 -4
- data/lib/ory-client/models/message_dispatch.rb +1 -1
- data/lib/ory-client/models/metrics_datapoint.rb +1 -1
- data/lib/ory-client/models/money.rb +1 -1
- data/lib/ory-client/models/namespace.rb +1 -1
- data/lib/ory-client/models/needs_privileged_session_error.rb +1 -1
- data/lib/ory-client/models/normalized_project.rb +1 -1
- data/lib/ory-client/models/normalized_project_revision.rb +1 -1
- data/lib/ory-client/models/normalized_project_revision_courier_channel.rb +1 -1
- data/lib/ory-client/models/normalized_project_revision_hook.rb +1 -1
- data/lib/ory-client/models/normalized_project_revision_identity_schema.rb +1 -1
- data/lib/ory-client/models/normalized_project_revision_saml_provider.rb +1 -1
- data/lib/ory-client/models/normalized_project_revision_scim_client.rb +1 -1
- data/lib/ory-client/models/normalized_project_revision_third_party_provider.rb +1 -1
- data/lib/ory-client/models/normalized_project_revision_tokenizer_template.rb +1 -1
- data/lib/ory-client/models/null_value.rb +39 -0
- data/lib/ory-client/models/o_auth2_client.rb +1 -1
- data/lib/ory-client/models/o_auth2_client_token_lifespans.rb +1 -1
- data/lib/ory-client/models/o_auth2_consent_request.rb +1 -1
- data/lib/ory-client/models/o_auth2_consent_request_open_id_connect_context.rb +1 -1
- data/lib/ory-client/models/o_auth2_consent_session.rb +1 -1
- data/lib/ory-client/models/o_auth2_login_request.rb +1 -1
- data/lib/ory-client/models/o_auth2_logout_request.rb +1 -1
- data/lib/ory-client/models/o_auth2_redirect_to.rb +1 -1
- data/lib/ory-client/models/o_auth2_token_exchange.rb +1 -1
- data/lib/ory-client/models/oidc_configuration.rb +1 -1
- data/lib/ory-client/models/oidc_user_info.rb +1 -1
- data/lib/ory-client/models/onboarding_portal_link.rb +1 -1
- data/lib/ory-client/models/onboarding_portal_organization.rb +1 -1
- data/lib/ory-client/models/organization.rb +1 -1
- data/lib/ory-client/models/organization_body.rb +1 -1
- data/lib/ory-client/models/organization_onboarding_portal_links_response.rb +1 -1
- data/lib/ory-client/models/parse_error.rb +1 -1
- data/lib/ory-client/models/patch_identities_body.rb +1 -1
- data/lib/ory-client/models/patch_workspace_member_body.rb +1 -1
- data/lib/ory-client/models/perform_native_logout_body.rb +1 -1
- data/lib/ory-client/models/permissions_on_workspace.rb +1 -1
- data/lib/ory-client/models/plan.rb +1 -1
- data/lib/ory-client/models/plan_details.rb +1 -1
- data/lib/ory-client/models/post_check_permission_body.rb +1 -1
- data/lib/ory-client/models/post_check_permission_or_error_body.rb +1 -1
- data/lib/ory-client/models/project.rb +1 -1
- data/lib/ory-client/models/project_api_key.rb +1 -1
- data/lib/ory-client/models/project_branding.rb +1 -1
- data/lib/ory-client/models/project_branding_colors.rb +1 -1
- data/lib/ory-client/models/project_branding_theme.rb +1 -1
- data/lib/ory-client/models/project_cors.rb +1 -1
- data/lib/ory-client/models/project_events_datapoint.rb +1 -1
- data/lib/ory-client/models/project_host.rb +1 -1
- data/lib/ory-client/models/project_member.rb +1 -1
- data/lib/ory-client/models/project_metadata.rb +1 -1
- data/lib/ory-client/models/project_service_account_experience.rb +1 -1
- data/lib/ory-client/models/project_service_identity.rb +1 -1
- data/lib/ory-client/models/project_service_o_auth2.rb +1 -1
- data/lib/ory-client/models/project_service_permission.rb +1 -1
- data/lib/ory-client/models/project_services.rb +1 -1
- data/lib/ory-client/models/provider.rb +1 -1
- data/lib/ory-client/models/quota_usage.rb +1 -1
- data/lib/ory-client/models/rate_limit_policy.rb +168 -0
- data/lib/ory-client/models/recovery_code_for_identity.rb +1 -1
- data/lib/ory-client/models/recovery_flow.rb +1 -1
- data/lib/ory-client/models/recovery_flow_state.rb +1 -1
- data/lib/ory-client/models/recovery_identity_address.rb +1 -1
- data/lib/ory-client/models/recovery_link_for_identity.rb +1 -1
- data/lib/ory-client/models/registration_flow.rb +4 -4
- data/lib/ory-client/models/registration_flow_state.rb +1 -1
- data/lib/ory-client/models/reject_o_auth2_request.rb +1 -1
- data/lib/ory-client/models/relation_query.rb +1 -1
- data/lib/ory-client/models/relationship.rb +1 -1
- data/lib/ory-client/models/relationship_namespaces.rb +1 -1
- data/lib/ory-client/models/relationship_patch.rb +1 -1
- data/lib/ory-client/models/relationships.rb +1 -1
- data/lib/ory-client/models/revision_account_experience_custom_translation.rb +1 -1
- data/lib/ory-client/models/revocation_reason.rb +43 -0
- data/lib/ory-client/models/rfc6749_error_json.rb +1 -1
- data/lib/ory-client/models/rotate_issued_api_key_response.rb +165 -0
- data/lib/ory-client/models/schema_patch.rb +1 -1
- data/lib/ory-client/models/self_revoke_api_key_request.rb +181 -0
- data/lib/ory-client/models/self_service_flow_expired_error.rb +1 -1
- data/lib/ory-client/models/session.rb +1 -1
- data/lib/ory-client/models/session_activity_datapoint.rb +1 -1
- data/lib/ory-client/models/session_authentication_method.rb +4 -4
- data/lib/ory-client/models/session_device.rb +1 -1
- data/lib/ory-client/models/set_custom_domain_body.rb +1 -1
- data/lib/ory-client/models/set_event_stream_body.rb +1 -1
- data/lib/ory-client/models/set_organization_from_onboarding_portal_link_body.rb +1 -1
- data/lib/ory-client/models/set_project.rb +1 -1
- data/lib/ory-client/models/set_project_branding_theme_body.rb +1 -1
- data/lib/ory-client/models/settings_flow.rb +1 -1
- data/lib/ory-client/models/settings_flow_state.rb +1 -1
- data/lib/ory-client/models/source_position.rb +1 -1
- data/lib/ory-client/models/status.rb +167 -0
- data/lib/ory-client/models/subject_set.rb +1 -1
- data/lib/ory-client/models/subscription.rb +1 -1
- data/lib/ory-client/models/successful_code_exchange_response.rb +1 -1
- data/lib/ory-client/models/successful_native_login.rb +1 -1
- data/lib/ory-client/models/successful_native_registration.rb +1 -1
- data/lib/ory-client/models/successful_project_update.rb +1 -1
- data/lib/ory-client/models/tax_line_item.rb +1 -1
- data/lib/ory-client/models/time_interval.rb +1 -1
- data/lib/ory-client/models/token.rb +178 -0
- data/lib/ory-client/models/token_algorithm.rb +41 -0
- data/lib/ory-client/models/token_pagination.rb +1 -1
- data/lib/ory-client/models/token_pagination_headers.rb +1 -1
- data/lib/ory-client/models/token_pagination_request_parameters.rb +1 -1
- data/lib/ory-client/models/token_pagination_response_headers.rb +1 -1
- data/lib/ory-client/models/trust_o_auth2_jwt_grant_issuer.rb +1 -1
- data/lib/ory-client/models/trusted_o_auth2_jwt_grant_issuer.rb +1 -1
- data/lib/ory-client/models/trusted_o_auth2_jwt_grant_json_web_key.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_division_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_input_attributes_option.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_fedcm_flow_body.rb +1 -1
- data/lib/ory-client/models/update_identity_body.rb +1 -1
- data/lib/ory-client/models/update_login_flow_body.rb +1 -1
- data/lib/ory-client/models/update_login_flow_with_code_method.rb +1 -1
- data/lib/ory-client/models/update_login_flow_with_identifier_first_method.rb +1 -1
- data/lib/ory-client/models/update_login_flow_with_lookup_secret_method.rb +1 -1
- data/lib/ory-client/models/update_login_flow_with_oidc_method.rb +1 -1
- data/lib/ory-client/models/update_login_flow_with_passkey_method.rb +1 -1
- data/lib/ory-client/models/update_login_flow_with_password_method.rb +1 -1
- data/lib/ory-client/models/update_login_flow_with_saml_method.rb +1 -1
- data/lib/ory-client/models/update_login_flow_with_totp_method.rb +1 -1
- data/lib/ory-client/models/update_login_flow_with_web_authn_method.rb +1 -1
- data/lib/ory-client/models/update_organization_onboarding_portal_link_body.rb +1 -1
- data/lib/ory-client/models/update_recovery_flow_body.rb +1 -1
- data/lib/ory-client/models/update_recovery_flow_with_code_method.rb +1 -1
- data/lib/ory-client/models/update_recovery_flow_with_link_method.rb +1 -1
- data/lib/ory-client/models/update_registration_flow_body.rb +1 -1
- data/lib/ory-client/models/update_registration_flow_with_code_method.rb +1 -1
- data/lib/ory-client/models/update_registration_flow_with_oidc_method.rb +1 -1
- data/lib/ory-client/models/update_registration_flow_with_passkey_method.rb +1 -1
- data/lib/ory-client/models/update_registration_flow_with_password_method.rb +1 -1
- data/lib/ory-client/models/update_registration_flow_with_profile_method.rb +1 -1
- data/lib/ory-client/models/update_registration_flow_with_saml_method.rb +1 -1
- data/lib/ory-client/models/update_registration_flow_with_web_authn_method.rb +1 -1
- data/lib/ory-client/models/update_settings_flow_body.rb +1 -1
- data/lib/ory-client/models/update_settings_flow_with_lookup_method.rb +1 -1
- data/lib/ory-client/models/update_settings_flow_with_oidc_method.rb +1 -1
- data/lib/ory-client/models/update_settings_flow_with_passkey_method.rb +1 -1
- data/lib/ory-client/models/update_settings_flow_with_password_method.rb +1 -1
- data/lib/ory-client/models/update_settings_flow_with_profile_method.rb +1 -1
- data/lib/ory-client/models/update_settings_flow_with_saml_method.rb +1 -1
- data/lib/ory-client/models/update_settings_flow_with_totp_method.rb +1 -1
- data/lib/ory-client/models/update_settings_flow_with_web_authn_method.rb +1 -1
- data/lib/ory-client/models/update_subscription_body.rb +1 -1
- data/lib/ory-client/models/update_verification_flow_body.rb +1 -1
- data/lib/ory-client/models/update_verification_flow_with_code_method.rb +1 -1
- data/lib/ory-client/models/update_verification_flow_with_link_method.rb +1 -1
- data/lib/ory-client/models/update_workspace_body.rb +1 -1
- data/lib/ory-client/models/usage.rb +1 -1
- data/lib/ory-client/models/validate_base_url_rewrite_request.rb +220 -0
- data/lib/ory-client/models/validate_base_url_rewrite_response.rb +176 -0
- data/lib/ory-client/models/verifiable_credential_priming_response.rb +1 -1
- data/lib/ory-client/models/verifiable_credential_proof.rb +1 -1
- data/lib/ory-client/models/verifiable_credential_response.rb +1 -1
- data/lib/ory-client/models/verifiable_identity_address.rb +1 -1
- data/lib/ory-client/models/verification_error_code.rb +47 -0
- data/lib/ory-client/models/verification_flow.rb +1 -1
- data/lib/ory-client/models/verification_flow_state.rb +1 -1
- data/lib/ory-client/models/verify_api_key_request.rb +147 -0
- data/lib/ory-client/models/verify_api_key_response.rb +299 -0
- data/lib/ory-client/models/verify_user_code_request.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/models/workspace.rb +1 -1
- data/lib/ory-client/models/workspace_api_key.rb +1 -1
- data/lib/ory-client/models/workspace_organization.rb +1 -1
- data/lib/ory-client/version.rb +2 -2
- data/lib/ory-client.rb +52 -1
- data/ory-client.gemspec +1 -1
- data/spec/api/api_keys_api_spec.rb +252 -0
- data/spec/api/courier_api_spec.rb +1 -1
- data/spec/api/events_api_spec.rb +1 -1
- data/spec/api/frontend_api_spec.rb +14 -1
- data/spec/api/identity_api_spec.rb +26 -2
- data/spec/api/jwk_api_spec.rb +1 -1
- data/spec/api/metadata_api_spec.rb +1 -1
- data/spec/api/o_auth2_api_spec.rb +1 -1
- data/spec/api/oidc_api_spec.rb +1 -1
- data/spec/api/permission_api_spec.rb +1 -1
- data/spec/api/project_api_spec.rb +1 -1
- data/spec/api/relationship_api_spec.rb +1 -1
- data/spec/api/wellknown_api_spec.rb +1 -1
- data/spec/api/workspace_api_spec.rb +1 -1
- data/spec/models/accept_device_user_code_request_spec.rb +1 -1
- data/spec/models/accept_o_auth2_consent_request_session_spec.rb +1 -1
- data/spec/models/accept_o_auth2_consent_request_spec.rb +1 -1
- data/spec/models/accept_o_auth2_login_request_spec.rb +1 -1
- data/spec/models/account_experience_colors_spec.rb +1 -1
- data/spec/models/account_experience_configuration_spec.rb +1 -1
- data/spec/models/add_project_to_workspace_body_spec.rb +1 -1
- data/spec/models/admin_identity_import_credentials_lookup_secret_config_spec.rb +1 -1
- data/spec/models/admin_identity_import_credentials_lookup_secret_spec.rb +1 -1
- data/spec/models/admin_revoke_api_key_body_spec.rb +42 -0
- data/spec/models/admin_rotate_issued_api_key_body_spec.rb +66 -0
- data/spec/models/admin_update_imported_api_key_request_spec.rb +114 -0
- data/spec/models/admin_update_issued_api_key_request_spec.rb +114 -0
- data/spec/models/any_spec.rb +36 -0
- data/spec/models/attribute_filter_spec.rb +1 -1
- data/spec/models/attribute_spec.rb +1 -1
- data/spec/models/attributes_count_datapoint_spec.rb +1 -1
- data/spec/models/authenticator_assurance_level_spec.rb +1 -1
- data/spec/models/basic_organization_spec.rb +1 -1
- data/spec/models/batch_check_permission_body_spec.rb +1 -1
- data/spec/models/batch_check_permission_result_spec.rb +1 -1
- data/spec/models/batch_import_api_keys_request_spec.rb +36 -0
- data/spec/models/batch_import_api_keys_response_spec.rb +48 -0
- data/spec/models/batch_import_error_code_spec.rb +30 -0
- data/spec/models/batch_import_result_spec.rb +54 -0
- data/spec/models/batch_patch_identities_response_spec.rb +1 -1
- data/spec/models/batch_verify_api_keys_request_spec.rb +36 -0
- data/spec/models/batch_verify_api_keys_response_spec.rb +36 -0
- data/spec/models/billing_period_bucket_spec.rb +1 -1
- data/spec/models/check_opl_syntax_result_spec.rb +1 -1
- data/spec/models/check_permission_result_spec.rb +1 -1
- data/spec/models/check_permission_result_with_error_spec.rb +1 -1
- data/spec/models/cloud_account_spec.rb +1 -1
- data/spec/models/consistency_request_parameters_spec.rb +1 -1
- data/spec/models/continue_with_recovery_ui_flow_spec.rb +1 -1
- data/spec/models/continue_with_recovery_ui_spec.rb +1 -1
- data/spec/models/continue_with_redirect_browser_to_spec.rb +1 -1
- data/spec/models/continue_with_set_ory_session_token_spec.rb +1 -1
- data/spec/models/continue_with_settings_ui_flow_spec.rb +1 -1
- data/spec/models/continue_with_settings_ui_spec.rb +1 -1
- data/spec/models/continue_with_spec.rb +1 -1
- data/spec/models/continue_with_verification_ui_flow_spec.rb +1 -1
- data/spec/models/continue_with_verification_ui_spec.rb +1 -1
- data/spec/models/courier_message_status_spec.rb +1 -1
- data/spec/models/courier_message_type_spec.rb +1 -1
- data/spec/models/create_custom_domain_body_spec.rb +1 -1
- data/spec/models/create_event_stream_body_spec.rb +1 -1
- data/spec/models/create_fedcm_flow_response_spec.rb +1 -1
- data/spec/models/create_identity_body_spec.rb +1 -1
- data/spec/models/create_invite_response_spec.rb +1 -1
- data/spec/models/create_json_web_key_set_spec.rb +1 -1
- data/spec/models/create_onboarding_link_response_spec.rb +1 -1
- data/spec/models/create_organization_onboarding_portal_link_body_spec.rb +1 -1
- data/spec/models/create_project_api_key_request_spec.rb +1 -1
- data/spec/models/create_project_body_spec.rb +1 -1
- data/spec/models/create_project_branding_spec.rb +1 -1
- data/spec/models/create_project_member_invite_body_spec.rb +1 -1
- data/spec/models/create_project_normalized_payload_spec.rb +1 -1
- data/spec/models/create_recovery_code_for_identity_body_spec.rb +1 -1
- data/spec/models/create_recovery_link_for_identity_body_spec.rb +1 -1
- data/spec/models/create_relationship_body_spec.rb +1 -1
- data/spec/models/create_subscription_body_spec.rb +1 -1
- data/spec/models/create_subscription_common_spec.rb +1 -1
- data/spec/models/create_test_login_flow_body_spec.rb +36 -0
- data/spec/models/create_verifiable_credential_request_body_spec.rb +1 -1
- data/spec/models/create_workspace_api_key_body_spec.rb +1 -1
- data/spec/models/create_workspace_body_spec.rb +1 -1
- data/spec/models/create_workspace_member_invite_body_spec.rb +1 -1
- data/spec/models/create_workspace_organization_body_spec.rb +1 -1
- data/spec/models/create_workspace_subscription_body_spec.rb +1 -1
- data/spec/models/credential_supported_draft00_spec.rb +1 -1
- data/spec/models/custom_domain_spec.rb +1 -1
- data/spec/models/customer_portal_availability_spec.rb +1 -1
- data/spec/models/delete_my_sessions_count_spec.rb +1 -1
- data/spec/models/derive_token_request_spec.rb +60 -0
- data/spec/models/derive_token_response_spec.rb +36 -0
- data/spec/models/device_authn_android_authorization_list_spec.rb +192 -0
- data/spec/models/device_authn_android_key_description_spec.rb +66 -0
- data/spec/models/device_authn_android_root_of_trust_spec.rb +54 -0
- data/spec/models/device_authn_attestation_spec.rb +42 -0
- data/spec/models/device_authn_ios_att_stmt_spec.rb +36 -0
- data/spec/models/device_authn_ios_attestation_spec.rb +48 -0
- data/spec/models/device_authn_key_spec.rb +7 -1
- data/spec/models/device_authorization_spec.rb +1 -1
- data/spec/models/device_user_auth_request_spec.rb +1 -1
- data/spec/models/email_template_data_body_spec.rb +1 -1
- data/spec/models/email_template_data_spec.rb +1 -1
- data/spec/models/error_authenticator_assurance_level_not_satisfied_spec.rb +1 -1
- data/spec/models/error_browser_location_change_required_spec.rb +1 -1
- data/spec/models/error_flow_replaced_spec.rb +1 -1
- data/spec/models/error_generic_spec.rb +1 -1
- data/spec/models/error_o_auth2_spec.rb +1 -1
- data/spec/models/event_stream_spec.rb +1 -1
- data/spec/models/expanded_permission_tree_spec.rb +1 -1
- data/spec/models/flow_error_spec.rb +1 -1
- data/spec/models/generic_error_content_spec.rb +1 -1
- data/spec/models/generic_error_spec.rb +1 -1
- data/spec/models/generic_oidc_provider_spec.rb +1 -1
- data/spec/models/generic_usage_spec.rb +1 -1
- data/spec/models/get_attributes_count_spec.rb +1 -1
- data/spec/models/get_jwks_response_spec.rb +36 -0
- data/spec/models/get_managed_identity_schema_location_spec.rb +1 -1
- data/spec/models/get_metrics_count_spec.rb +1 -1
- data/spec/models/get_metrics_event_attributes_spec.rb +1 -1
- data/spec/models/get_metrics_event_types_spec.rb +1 -1
- data/spec/models/get_organization_response_spec.rb +1 -1
- data/spec/models/get_project_events_body_spec.rb +1 -1
- data/spec/models/get_project_events_spec.rb +1 -1
- data/spec/models/get_project_metrics_spec.rb +1 -1
- data/spec/models/get_session_activity_spec.rb +1 -1
- data/spec/models/get_version200_response_spec.rb +1 -1
- 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_code_address_spec.rb +1 -1
- data/spec/models/identity_credentials_code_spec.rb +1 -1
- data/spec/models/identity_credentials_lookup_secret_code_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 +2 -2
- data/spec/models/identity_credentials_web_authn_attestation_spec.rb +1 -1
- data/spec/models/identity_credentials_web_authn_authenticator_spec.rb +1 -1
- data/spec/models/identity_credentials_web_authn_flags_spec.rb +1 -1
- data/spec/models/identity_credentials_web_authn_spec.rb +1 -1
- data/spec/models/identity_patch_response_spec.rb +1 -1
- data/spec/models/identity_patch_spec.rb +1 -1
- data/spec/models/identity_schema_container_spec.rb +1 -1
- data/spec/models/identity_schema_preset_spec.rb +1 -1
- data/spec/models/identity_spec.rb +1 -1
- data/spec/models/identity_with_credentials_oidc_config_provider_spec.rb +1 -1
- data/spec/models/identity_with_credentials_oidc_config_spec.rb +1 -1
- data/spec/models/identity_with_credentials_oidc_spec.rb +1 -1
- data/spec/models/identity_with_credentials_passkey_config_spec.rb +1 -1
- data/spec/models/identity_with_credentials_passkey_spec.rb +1 -1
- data/spec/models/identity_with_credentials_password_config_spec.rb +1 -1
- data/spec/models/identity_with_credentials_password_spec.rb +1 -1
- data/spec/models/identity_with_credentials_saml_config_provider_spec.rb +1 -1
- data/spec/models/identity_with_credentials_saml_config_spec.rb +1 -1
- data/spec/models/identity_with_credentials_saml_spec.rb +1 -1
- data/spec/models/identity_with_credentials_spec.rb +1 -1
- data/spec/models/identity_with_credentials_totp_config_spec.rb +1 -1
- data/spec/models/identity_with_credentials_totp_spec.rb +1 -1
- data/spec/models/identity_with_credentials_web_authn_config_spec.rb +1 -1
- data/spec/models/identity_with_credentials_web_authn_spec.rb +1 -1
- data/spec/models/import_api_key_request_spec.rb +90 -0
- data/spec/models/imported_api_key_spec.rb +120 -0
- data/spec/models/internal_get_project_branding_body_spec.rb +1 -1
- data/spec/models/internal_is_ax_welcome_screen_enabled_for_project_body_spec.rb +1 -1
- data/spec/models/internal_is_owner_for_project_by_slug_body_spec.rb +1 -1
- data/spec/models/internal_is_owner_for_project_by_slug_spec.rb +1 -1
- data/spec/models/introspected_o_auth2_token_spec.rb +1 -1
- data/spec/models/invite_token_body_spec.rb +1 -1
- data/spec/models/invoice_data_v1_spec.rb +1 -1
- data/spec/models/invoice_spec.rb +1 -1
- data/spec/models/ip_restriction_spec.rb +36 -0
- data/spec/models/is_owner_for_project_by_slug_spec.rb +1 -1
- data/spec/models/issue_api_key_request_spec.rb +84 -0
- data/spec/models/issue_api_key_response_spec.rb +42 -0
- data/spec/models/issued_api_key_spec.rb +120 -0
- data/spec/models/json_patch_spec.rb +1 -1
- data/spec/models/json_web_key_set_spec.rb +1 -1
- data/spec/models/json_web_key_spec.rb +1 -1
- data/spec/models/keto_namespace_spec.rb +1 -1
- data/spec/models/key_status_spec.rb +30 -0
- data/spec/models/key_visibility_spec.rb +30 -0
- data/spec/models/keyset_pagination_request_parameters_spec.rb +1 -1
- data/spec/models/keyset_pagination_response_headers_spec.rb +1 -1
- data/spec/models/line_item_v1_spec.rb +1 -1
- data/spec/models/list_event_streams_spec.rb +1 -1
- data/spec/models/list_imported_api_keys_response_spec.rb +42 -0
- data/spec/models/list_invoices_response_spec.rb +1 -1
- data/spec/models/list_issued_api_keys_response_spec.rb +42 -0
- data/spec/models/list_organizations_response_spec.rb +1 -1
- data/spec/models/list_workspace_projects_spec.rb +1 -1
- data/spec/models/list_workspaces_spec.rb +1 -1
- data/spec/models/login_flow_spec.rb +8 -2
- data/spec/models/login_flow_state_spec.rb +1 -1
- data/spec/models/login_flow_test_context_spec.rb +42 -0
- data/spec/models/login_flow_test_debug_payload_spec.rb +78 -0
- data/spec/models/login_flow_test_schema_validation_error_spec.rb +42 -0
- data/spec/models/login_flow_test_step_error_spec.rb +48 -0
- data/spec/models/logout_flow_spec.rb +1 -1
- data/spec/models/manage_sessions_body_spec.rb +52 -0
- data/spec/models/manage_sessions_response_spec.rb +42 -0
- data/spec/models/managed_identity_schema_spec.rb +1 -1
- data/spec/models/managed_identity_schema_validation_result_spec.rb +1 -1
- data/spec/models/member_invite_spec.rb +1 -1
- data/spec/models/message_dispatch_spec.rb +1 -1
- data/spec/models/message_spec.rb +2 -2
- data/spec/models/metrics_datapoint_spec.rb +1 -1
- data/spec/models/money_spec.rb +1 -1
- data/spec/models/namespace_spec.rb +1 -1
- data/spec/models/needs_privileged_session_error_spec.rb +1 -1
- data/spec/models/normalized_project_revision_courier_channel_spec.rb +1 -1
- data/spec/models/normalized_project_revision_hook_spec.rb +1 -1
- data/spec/models/normalized_project_revision_identity_schema_spec.rb +1 -1
- data/spec/models/normalized_project_revision_saml_provider_spec.rb +1 -1
- data/spec/models/normalized_project_revision_scim_client_spec.rb +1 -1
- data/spec/models/normalized_project_revision_spec.rb +1 -1
- data/spec/models/normalized_project_revision_third_party_provider_spec.rb +1 -1
- data/spec/models/normalized_project_revision_tokenizer_template_spec.rb +1 -1
- data/spec/models/normalized_project_spec.rb +1 -1
- data/spec/models/null_value_spec.rb +30 -0
- data/spec/models/o_auth2_client_spec.rb +1 -1
- data/spec/models/o_auth2_client_token_lifespans_spec.rb +1 -1
- data/spec/models/o_auth2_consent_request_open_id_connect_context_spec.rb +1 -1
- data/spec/models/o_auth2_consent_request_spec.rb +1 -1
- data/spec/models/o_auth2_consent_session_spec.rb +1 -1
- data/spec/models/o_auth2_login_request_spec.rb +1 -1
- data/spec/models/o_auth2_logout_request_spec.rb +1 -1
- data/spec/models/o_auth2_redirect_to_spec.rb +1 -1
- data/spec/models/o_auth2_token_exchange_spec.rb +1 -1
- data/spec/models/oidc_configuration_spec.rb +1 -1
- data/spec/models/oidc_user_info_spec.rb +1 -1
- data/spec/models/onboarding_portal_link_spec.rb +1 -1
- data/spec/models/onboarding_portal_organization_spec.rb +1 -1
- data/spec/models/organization_body_spec.rb +1 -1
- data/spec/models/organization_onboarding_portal_links_response_spec.rb +1 -1
- data/spec/models/organization_spec.rb +1 -1
- data/spec/models/parse_error_spec.rb +1 -1
- data/spec/models/patch_identities_body_spec.rb +1 -1
- data/spec/models/patch_workspace_member_body_spec.rb +1 -1
- data/spec/models/perform_native_logout_body_spec.rb +1 -1
- data/spec/models/permissions_on_workspace_spec.rb +1 -1
- data/spec/models/plan_details_spec.rb +1 -1
- data/spec/models/plan_spec.rb +1 -1
- data/spec/models/post_check_permission_body_spec.rb +1 -1
- data/spec/models/post_check_permission_or_error_body_spec.rb +1 -1
- data/spec/models/project_api_key_spec.rb +1 -1
- data/spec/models/project_branding_colors_spec.rb +1 -1
- data/spec/models/project_branding_spec.rb +1 -1
- data/spec/models/project_branding_theme_spec.rb +1 -1
- data/spec/models/project_cors_spec.rb +1 -1
- data/spec/models/project_events_datapoint_spec.rb +1 -1
- data/spec/models/project_host_spec.rb +1 -1
- data/spec/models/project_member_spec.rb +1 -1
- data/spec/models/project_metadata_spec.rb +1 -1
- data/spec/models/project_service_account_experience_spec.rb +1 -1
- data/spec/models/project_service_identity_spec.rb +1 -1
- data/spec/models/project_service_o_auth2_spec.rb +1 -1
- data/spec/models/project_service_permission_spec.rb +1 -1
- data/spec/models/project_services_spec.rb +1 -1
- data/spec/models/project_spec.rb +1 -1
- data/spec/models/provider_spec.rb +1 -1
- data/spec/models/quota_usage_spec.rb +1 -1
- data/spec/models/rate_limit_policy_spec.rb +48 -0
- data/spec/models/recovery_code_for_identity_spec.rb +1 -1
- data/spec/models/recovery_flow_spec.rb +1 -1
- data/spec/models/recovery_flow_state_spec.rb +1 -1
- data/spec/models/recovery_identity_address_spec.rb +1 -1
- data/spec/models/recovery_link_for_identity_spec.rb +1 -1
- data/spec/models/registration_flow_spec.rb +2 -2
- data/spec/models/registration_flow_state_spec.rb +1 -1
- data/spec/models/reject_o_auth2_request_spec.rb +1 -1
- data/spec/models/relation_query_spec.rb +1 -1
- data/spec/models/relationship_namespaces_spec.rb +1 -1
- data/spec/models/relationship_patch_spec.rb +1 -1
- data/spec/models/relationship_spec.rb +1 -1
- data/spec/models/relationships_spec.rb +1 -1
- data/spec/models/revision_account_experience_custom_translation_spec.rb +1 -1
- data/spec/models/revocation_reason_spec.rb +30 -0
- data/spec/models/rfc6749_error_json_spec.rb +1 -1
- data/spec/models/rotate_issued_api_key_response_spec.rb +48 -0
- data/spec/models/schema_patch_spec.rb +1 -1
- data/spec/models/self_revoke_api_key_request_spec.rb +42 -0
- data/spec/models/self_service_flow_expired_error_spec.rb +1 -1
- data/spec/models/session_activity_datapoint_spec.rb +1 -1
- data/spec/models/session_authentication_method_spec.rb +2 -2
- data/spec/models/session_device_spec.rb +1 -1
- data/spec/models/session_spec.rb +1 -1
- data/spec/models/set_custom_domain_body_spec.rb +1 -1
- data/spec/models/set_event_stream_body_spec.rb +1 -1
- data/spec/models/set_organization_from_onboarding_portal_link_body_spec.rb +1 -1
- data/spec/models/set_project_branding_theme_body_spec.rb +1 -1
- data/spec/models/set_project_spec.rb +1 -1
- data/spec/models/settings_flow_spec.rb +1 -1
- data/spec/models/settings_flow_state_spec.rb +1 -1
- data/spec/models/source_position_spec.rb +1 -1
- data/spec/models/status_spec.rb +48 -0
- data/spec/models/subject_set_spec.rb +1 -1
- data/spec/models/subscription_spec.rb +1 -1
- data/spec/models/successful_code_exchange_response_spec.rb +1 -1
- data/spec/models/successful_native_login_spec.rb +1 -1
- data/spec/models/successful_native_registration_spec.rb +1 -1
- data/spec/models/successful_project_update_spec.rb +1 -1
- data/spec/models/tax_line_item_spec.rb +1 -1
- data/spec/models/time_interval_spec.rb +1 -1
- data/spec/models/token_algorithm_spec.rb +30 -0
- data/spec/models/token_pagination_headers_spec.rb +1 -1
- data/spec/models/token_pagination_request_parameters_spec.rb +1 -1
- data/spec/models/token_pagination_response_headers_spec.rb +1 -1
- data/spec/models/token_pagination_spec.rb +1 -1
- data/spec/models/token_spec.rb +54 -0
- data/spec/models/trust_o_auth2_jwt_grant_issuer_spec.rb +1 -1
- data/spec/models/trusted_o_auth2_jwt_grant_issuer_spec.rb +1 -1
- data/spec/models/trusted_o_auth2_jwt_grant_json_web_key_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_division_attributes_spec.rb +1 -1
- data/spec/models/ui_node_image_attributes_spec.rb +1 -1
- data/spec/models/ui_node_input_attributes_option_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_fedcm_flow_body_spec.rb +1 -1
- data/spec/models/update_identity_body_spec.rb +1 -1
- data/spec/models/update_login_flow_body_spec.rb +1 -1
- data/spec/models/update_login_flow_with_code_method_spec.rb +1 -1
- data/spec/models/update_login_flow_with_identifier_first_method_spec.rb +1 -1
- data/spec/models/update_login_flow_with_lookup_secret_method_spec.rb +1 -1
- data/spec/models/update_login_flow_with_oidc_method_spec.rb +1 -1
- data/spec/models/update_login_flow_with_passkey_method_spec.rb +1 -1
- data/spec/models/update_login_flow_with_password_method_spec.rb +1 -1
- data/spec/models/update_login_flow_with_saml_method_spec.rb +1 -1
- data/spec/models/update_login_flow_with_totp_method_spec.rb +1 -1
- data/spec/models/update_login_flow_with_web_authn_method_spec.rb +1 -1
- data/spec/models/update_organization_onboarding_portal_link_body_spec.rb +1 -1
- data/spec/models/update_recovery_flow_body_spec.rb +1 -1
- data/spec/models/update_recovery_flow_with_code_method_spec.rb +1 -1
- data/spec/models/update_recovery_flow_with_link_method_spec.rb +1 -1
- data/spec/models/update_registration_flow_body_spec.rb +1 -1
- data/spec/models/update_registration_flow_with_code_method_spec.rb +1 -1
- data/spec/models/update_registration_flow_with_oidc_method_spec.rb +1 -1
- data/spec/models/update_registration_flow_with_passkey_method_spec.rb +1 -1
- data/spec/models/update_registration_flow_with_password_method_spec.rb +1 -1
- data/spec/models/update_registration_flow_with_profile_method_spec.rb +1 -1
- data/spec/models/update_registration_flow_with_saml_method_spec.rb +1 -1
- data/spec/models/update_registration_flow_with_web_authn_method_spec.rb +1 -1
- data/spec/models/update_settings_flow_body_spec.rb +1 -1
- data/spec/models/update_settings_flow_with_lookup_method_spec.rb +1 -1
- data/spec/models/update_settings_flow_with_oidc_method_spec.rb +1 -1
- data/spec/models/update_settings_flow_with_passkey_method_spec.rb +1 -1
- data/spec/models/update_settings_flow_with_password_method_spec.rb +1 -1
- data/spec/models/update_settings_flow_with_profile_method_spec.rb +1 -1
- data/spec/models/update_settings_flow_with_saml_method_spec.rb +1 -1
- data/spec/models/update_settings_flow_with_totp_method_spec.rb +1 -1
- data/spec/models/update_settings_flow_with_web_authn_method_spec.rb +1 -1
- data/spec/models/update_subscription_body_spec.rb +1 -1
- data/spec/models/update_verification_flow_body_spec.rb +1 -1
- data/spec/models/update_verification_flow_with_code_method_spec.rb +1 -1
- data/spec/models/update_verification_flow_with_link_method_spec.rb +1 -1
- data/spec/models/update_workspace_body_spec.rb +1 -1
- data/spec/models/usage_spec.rb +1 -1
- data/spec/models/validate_base_url_rewrite_request_spec.rb +48 -0
- data/spec/models/validate_base_url_rewrite_response_spec.rb +42 -0
- data/spec/models/verifiable_credential_priming_response_spec.rb +1 -1
- data/spec/models/verifiable_credential_proof_spec.rb +1 -1
- data/spec/models/verifiable_credential_response_spec.rb +1 -1
- data/spec/models/verifiable_identity_address_spec.rb +1 -1
- data/spec/models/verification_error_code_spec.rb +30 -0
- data/spec/models/verification_flow_spec.rb +1 -1
- data/spec/models/verification_flow_state_spec.rb +1 -1
- data/spec/models/verify_api_key_request_spec.rb +36 -0
- data/spec/models/verify_api_key_response_spec.rb +114 -0
- data/spec/models/verify_user_code_request_spec.rb +1 -1
- data/spec/models/version_spec.rb +1 -1
- data/spec/models/warning_spec.rb +1 -1
- data/spec/models/workspace_api_key_spec.rb +1 -1
- data/spec/models/workspace_organization_spec.rb +1 -1
- data/spec/models/workspace_spec.rb +1 -1
- data/spec/spec_helper.rb +1 -1
- data/vendor/bundle/ruby/3.2.0/extensions/x86_64-linux-gnu/3.2.0/byebug-13.0.0/gem_make.out +5 -5
- data/vendor/bundle/ruby/3.2.0/extensions/x86_64-linux-gnu/3.2.0/io-console-0.8.2/gem_make.out +5 -5
- data/vendor/bundle/ruby/3.2.0/extensions/x86_64-linux-gnu/3.2.0/io-console-0.8.2/mkmf.log +3 -3
- data/vendor/bundle/ruby/3.2.0/extensions/x86_64-linux-gnu/3.2.0/jaro_winkler-1.5.6/gem_make.out +5 -5
- data/vendor/bundle/ruby/3.2.0/extensions/x86_64-linux-gnu/3.2.0/psych-4.0.6/gem_make.out +5 -5
- data/vendor/bundle/ruby/3.2.0/extensions/x86_64-linux-gnu/3.2.0/racc-1.8.1/gem_make.out +5 -5
- data/vendor/bundle/ruby/3.2.0/extensions/x86_64-linux-gnu/3.2.0/stringio-3.2.0/gem_make.out +5 -5
- metadata +207 -3
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
# OryClient::AdminRevokeAPIKeyBody
|
|
2
|
+
|
|
3
|
+
## Properties
|
|
4
|
+
|
|
5
|
+
| Name | Type | Description | Notes |
|
|
6
|
+
| ---- | ---- | ----------- | ----- |
|
|
7
|
+
| **description** | **String** | Optional free-text explanation. Only allowed when reason is PRIVILEGE_WITHDRAWN. | [optional] |
|
|
8
|
+
| **reason** | [**RevocationReason**](RevocationReason.md) | | [optional][default to 'REVOCATION_REASON_UNSPECIFIED'] |
|
|
9
|
+
|
|
10
|
+
## Example
|
|
11
|
+
|
|
12
|
+
```ruby
|
|
13
|
+
require 'ory-client'
|
|
14
|
+
|
|
15
|
+
instance = OryClient::AdminRevokeAPIKeyBody.new(
|
|
16
|
+
description: null,
|
|
17
|
+
reason: null
|
|
18
|
+
)
|
|
19
|
+
```
|
|
20
|
+
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
# OryClient::AdminRotateIssuedAPIKeyBody
|
|
2
|
+
|
|
3
|
+
## Properties
|
|
4
|
+
|
|
5
|
+
| Name | Type | Description | Notes |
|
|
6
|
+
| ---- | ---- | ----------- | ----- |
|
|
7
|
+
| **ip_restriction** | [**IPRestriction**](IPRestriction.md) | | [optional] |
|
|
8
|
+
| **metadata** | **Object** | metadata for the new API key. Absent (nil) inherits from the old key; present (including empty Struct) overrides. | [optional] |
|
|
9
|
+
| **name** | **String** | name for the new API key. Absent (HasName() == false) inherits from the old key; present (including empty string) overrides. | [optional] |
|
|
10
|
+
| **rate_limit_policy** | [**RateLimitPolicy**](RateLimitPolicy.md) | | [optional] |
|
|
11
|
+
| **scopes** | **Array<String>** | scopes for the new API key. Absent (nil slice) inherits from the old key; present (including empty list) overrides. | [optional] |
|
|
12
|
+
| **visibility** | [**KeyVisibility**](KeyVisibility.md) | | [optional][default to 'KEY_VISIBILITY_UNSPECIFIED'] |
|
|
13
|
+
|
|
14
|
+
## Example
|
|
15
|
+
|
|
16
|
+
```ruby
|
|
17
|
+
require 'ory-client'
|
|
18
|
+
|
|
19
|
+
instance = OryClient::AdminRotateIssuedAPIKeyBody.new(
|
|
20
|
+
ip_restriction: null,
|
|
21
|
+
metadata: null,
|
|
22
|
+
name: null,
|
|
23
|
+
rate_limit_policy: null,
|
|
24
|
+
scopes: null,
|
|
25
|
+
visibility: null
|
|
26
|
+
)
|
|
27
|
+
```
|
|
28
|
+
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
# OryClient::AdminUpdateImportedAPIKeyRequest
|
|
2
|
+
|
|
3
|
+
## Properties
|
|
4
|
+
|
|
5
|
+
| Name | Type | Description | Notes |
|
|
6
|
+
| ---- | ---- | ----------- | ----- |
|
|
7
|
+
| **actor_id** | **String** | | [optional] |
|
|
8
|
+
| **create_time** | **Time** | | [optional] |
|
|
9
|
+
| **expire_time** | **Time** | | [optional] |
|
|
10
|
+
| **ip_restriction** | [**IPRestriction**](IPRestriction.md) | | [optional] |
|
|
11
|
+
| **last_used_time** | **Time** | | [optional] |
|
|
12
|
+
| **metadata** | **Object** | metadata is a free-form JSON object for caller-defined attributes (e.g., source, environment, tags). Values may be strings, numbers, booleans, arrays, objects, or null. Total serialized size is capped at 4KB. AIP-148 metadata field. | [optional] |
|
|
13
|
+
| **name** | **String** | | [optional] |
|
|
14
|
+
| **rate_limit_policy** | [**RateLimitPolicy**](RateLimitPolicy.md) | | [optional] |
|
|
15
|
+
| **revocation_description** | **String** | revocation_description provides free-form context for a revocation. Only set when revocation_reason is PRIVILEGE_WITHDRAWN. JSON API change: field was formerly revocation_reason_text. Field number 13 is unchanged so the change is wire-compatible for binary proto encoding. | [optional] |
|
|
16
|
+
| **revocation_reason** | [**RevocationReason**](RevocationReason.md) | | [optional][default to 'REVOCATION_REASON_UNSPECIFIED'] |
|
|
17
|
+
| **scopes** | **Array<String>** | | [optional] |
|
|
18
|
+
| **status** | [**KeyStatus**](KeyStatus.md) | | [optional][default to 'KEY_STATUS_UNSPECIFIED'] |
|
|
19
|
+
| **update_time** | **Time** | | [optional] |
|
|
20
|
+
| **visibility** | [**KeyVisibility**](KeyVisibility.md) | | [optional][default to 'KEY_VISIBILITY_UNSPECIFIED'] |
|
|
21
|
+
|
|
22
|
+
## Example
|
|
23
|
+
|
|
24
|
+
```ruby
|
|
25
|
+
require 'ory-client'
|
|
26
|
+
|
|
27
|
+
instance = OryClient::AdminUpdateImportedAPIKeyRequest.new(
|
|
28
|
+
actor_id: null,
|
|
29
|
+
create_time: null,
|
|
30
|
+
expire_time: null,
|
|
31
|
+
ip_restriction: null,
|
|
32
|
+
last_used_time: null,
|
|
33
|
+
metadata: null,
|
|
34
|
+
name: null,
|
|
35
|
+
rate_limit_policy: null,
|
|
36
|
+
revocation_description: null,
|
|
37
|
+
revocation_reason: null,
|
|
38
|
+
scopes: null,
|
|
39
|
+
status: null,
|
|
40
|
+
update_time: null,
|
|
41
|
+
visibility: null
|
|
42
|
+
)
|
|
43
|
+
```
|
|
44
|
+
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
# OryClient::AdminUpdateIssuedAPIKeyRequest
|
|
2
|
+
|
|
3
|
+
## Properties
|
|
4
|
+
|
|
5
|
+
| Name | Type | Description | Notes |
|
|
6
|
+
| ---- | ---- | ----------- | ----- |
|
|
7
|
+
| **actor_id** | **String** | | [optional] |
|
|
8
|
+
| **create_time** | **Time** | | [optional] |
|
|
9
|
+
| **expire_time** | **Time** | | [optional] |
|
|
10
|
+
| **ip_restriction** | [**IPRestriction**](IPRestriction.md) | | [optional] |
|
|
11
|
+
| **last_used_time** | **Time** | | [optional] |
|
|
12
|
+
| **metadata** | **Object** | metadata is a free-form JSON object for caller-defined attributes (e.g., source, environment, tags). Values may be strings, numbers, booleans, arrays, objects, or null. Total serialized size is capped at 4KB. AIP-148 metadata field. | [optional] |
|
|
13
|
+
| **name** | **String** | | [optional] |
|
|
14
|
+
| **rate_limit_policy** | [**RateLimitPolicy**](RateLimitPolicy.md) | | [optional] |
|
|
15
|
+
| **revocation_description** | **String** | revocation_description provides free-form context for a revocation. Only set when revocation_reason is PRIVILEGE_WITHDRAWN. JSON API change: field was formerly revocation_reason_text. Field number 13 is unchanged so the change is wire-compatible for binary proto encoding. | [optional] |
|
|
16
|
+
| **revocation_reason** | [**RevocationReason**](RevocationReason.md) | | [optional][default to 'REVOCATION_REASON_UNSPECIFIED'] |
|
|
17
|
+
| **scopes** | **Array<String>** | | [optional] |
|
|
18
|
+
| **status** | [**KeyStatus**](KeyStatus.md) | | [optional][default to 'KEY_STATUS_UNSPECIFIED'] |
|
|
19
|
+
| **update_time** | **Time** | | [optional] |
|
|
20
|
+
| **visibility** | [**KeyVisibility**](KeyVisibility.md) | | [optional][default to 'KEY_VISIBILITY_UNSPECIFIED'] |
|
|
21
|
+
|
|
22
|
+
## Example
|
|
23
|
+
|
|
24
|
+
```ruby
|
|
25
|
+
require 'ory-client'
|
|
26
|
+
|
|
27
|
+
instance = OryClient::AdminUpdateIssuedAPIKeyRequest.new(
|
|
28
|
+
actor_id: null,
|
|
29
|
+
create_time: null,
|
|
30
|
+
expire_time: null,
|
|
31
|
+
ip_restriction: null,
|
|
32
|
+
last_used_time: null,
|
|
33
|
+
metadata: null,
|
|
34
|
+
name: null,
|
|
35
|
+
rate_limit_policy: null,
|
|
36
|
+
revocation_description: null,
|
|
37
|
+
revocation_reason: null,
|
|
38
|
+
scopes: null,
|
|
39
|
+
status: null,
|
|
40
|
+
update_time: null,
|
|
41
|
+
visibility: null
|
|
42
|
+
)
|
|
43
|
+
```
|
|
44
|
+
|
data/docs/Any.md
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
# OryClient::Any
|
|
2
|
+
|
|
3
|
+
## Properties
|
|
4
|
+
|
|
5
|
+
| Name | Type | Description | Notes |
|
|
6
|
+
| ---- | ---- | ----------- | ----- |
|
|
7
|
+
| **type** | **String** | | [optional] |
|
|
8
|
+
|
|
9
|
+
## Example
|
|
10
|
+
|
|
11
|
+
```ruby
|
|
12
|
+
require 'ory-client'
|
|
13
|
+
|
|
14
|
+
instance = OryClient::Any.new(
|
|
15
|
+
type: null
|
|
16
|
+
)
|
|
17
|
+
```
|
|
18
|
+
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
# OryClient::BatchImportAPIKeysRequest
|
|
2
|
+
|
|
3
|
+
## Properties
|
|
4
|
+
|
|
5
|
+
| Name | Type | Description | Notes |
|
|
6
|
+
| ---- | ---- | ----------- | ----- |
|
|
7
|
+
| **requests** | [**Array<ImportAPIKeyRequest>**](ImportAPIKeyRequest.md) | | [optional] |
|
|
8
|
+
|
|
9
|
+
## Example
|
|
10
|
+
|
|
11
|
+
```ruby
|
|
12
|
+
require 'ory-client'
|
|
13
|
+
|
|
14
|
+
instance = OryClient::BatchImportAPIKeysRequest.new(
|
|
15
|
+
requests: null
|
|
16
|
+
)
|
|
17
|
+
```
|
|
18
|
+
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
# OryClient::BatchImportAPIKeysResponse
|
|
2
|
+
|
|
3
|
+
## Properties
|
|
4
|
+
|
|
5
|
+
| Name | Type | Description | Notes |
|
|
6
|
+
| ---- | ---- | ----------- | ----- |
|
|
7
|
+
| **failure_count** | **Integer** | | [optional] |
|
|
8
|
+
| **results** | [**Array<BatchImportResult>**](BatchImportResult.md) | | [optional] |
|
|
9
|
+
| **success_count** | **Integer** | | [optional] |
|
|
10
|
+
|
|
11
|
+
## Example
|
|
12
|
+
|
|
13
|
+
```ruby
|
|
14
|
+
require 'ory-client'
|
|
15
|
+
|
|
16
|
+
instance = OryClient::BatchImportAPIKeysResponse.new(
|
|
17
|
+
failure_count: null,
|
|
18
|
+
results: null,
|
|
19
|
+
success_count: null
|
|
20
|
+
)
|
|
21
|
+
```
|
|
22
|
+
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
# OryClient::BatchImportResult
|
|
2
|
+
|
|
3
|
+
## Properties
|
|
4
|
+
|
|
5
|
+
| Name | Type | Description | Notes |
|
|
6
|
+
| ---- | ---- | ----------- | ----- |
|
|
7
|
+
| **error_code** | [**BatchImportErrorCode**](BatchImportErrorCode.md) | | [optional][default to 'BATCH_IMPORT_ERROR_UNSPECIFIED'] |
|
|
8
|
+
| **error_message** | **String** | | [optional] |
|
|
9
|
+
| **imported_api_key** | [**ImportedAPIKey**](ImportedAPIKey.md) | | [optional] |
|
|
10
|
+
| **index** | **Integer** | | [optional] |
|
|
11
|
+
|
|
12
|
+
## Example
|
|
13
|
+
|
|
14
|
+
```ruby
|
|
15
|
+
require 'ory-client'
|
|
16
|
+
|
|
17
|
+
instance = OryClient::BatchImportResult.new(
|
|
18
|
+
error_code: null,
|
|
19
|
+
error_message: null,
|
|
20
|
+
imported_api_key: null,
|
|
21
|
+
index: null
|
|
22
|
+
)
|
|
23
|
+
```
|
|
24
|
+
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
# OryClient::BatchVerifyAPIKeysRequest
|
|
2
|
+
|
|
3
|
+
## Properties
|
|
4
|
+
|
|
5
|
+
| Name | Type | Description | Notes |
|
|
6
|
+
| ---- | ---- | ----------- | ----- |
|
|
7
|
+
| **requests** | [**Array<VerifyAPIKeyRequest>**](VerifyAPIKeyRequest.md) | | [optional] |
|
|
8
|
+
|
|
9
|
+
## Example
|
|
10
|
+
|
|
11
|
+
```ruby
|
|
12
|
+
require 'ory-client'
|
|
13
|
+
|
|
14
|
+
instance = OryClient::BatchVerifyAPIKeysRequest.new(
|
|
15
|
+
requests: null
|
|
16
|
+
)
|
|
17
|
+
```
|
|
18
|
+
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
# OryClient::BatchVerifyAPIKeysResponse
|
|
2
|
+
|
|
3
|
+
## Properties
|
|
4
|
+
|
|
5
|
+
| Name | Type | Description | Notes |
|
|
6
|
+
| ---- | ---- | ----------- | ----- |
|
|
7
|
+
| **results** | [**Array<VerifyAPIKeyResponse>**](VerifyAPIKeyResponse.md) | | [optional] |
|
|
8
|
+
|
|
9
|
+
## Example
|
|
10
|
+
|
|
11
|
+
```ruby
|
|
12
|
+
require 'ory-client'
|
|
13
|
+
|
|
14
|
+
instance = OryClient::BatchVerifyAPIKeysResponse.new(
|
|
15
|
+
results: null
|
|
16
|
+
)
|
|
17
|
+
```
|
|
18
|
+
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
# OryClient::CreateTestLoginFlowBody
|
|
2
|
+
|
|
3
|
+
## Properties
|
|
4
|
+
|
|
5
|
+
| Name | Type | Description | Notes |
|
|
6
|
+
| ---- | ---- | ----------- | ----- |
|
|
7
|
+
| **provider_id** | **String** | ID of the OIDC provider to test. Must match a provider configured on the project that serves this request. | |
|
|
8
|
+
|
|
9
|
+
## Example
|
|
10
|
+
|
|
11
|
+
```ruby
|
|
12
|
+
require 'ory-client'
|
|
13
|
+
|
|
14
|
+
instance = OryClient::CreateTestLoginFlowBody.new(
|
|
15
|
+
provider_id: null
|
|
16
|
+
)
|
|
17
|
+
```
|
|
18
|
+
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
# OryClient::DeriveTokenRequest
|
|
2
|
+
|
|
3
|
+
## Properties
|
|
4
|
+
|
|
5
|
+
| Name | Type | Description | Notes |
|
|
6
|
+
| ---- | ---- | ----------- | ----- |
|
|
7
|
+
| **algorithm** | [**TokenAlgorithm**](TokenAlgorithm.md) | | [optional][default to 'TOKEN_ALGORITHM_UNSPECIFIED'] |
|
|
8
|
+
| **credential** | **String** | | [optional] |
|
|
9
|
+
| **custom_claims** | **Object** | custom_claims is a JSON object whose entries are merged into the JWT payload (or macaroon caveats) at signing time. Reserved JWT claims (iss, sub, aud, exp, nbf, iat, jti) are rejected. Total serialized size is capped at 4KB. | [optional] |
|
|
10
|
+
| **scopes** | **Array<String>** | | [optional] |
|
|
11
|
+
| **ttl** | **String** | ttl sets the expiry as a duration from now. Encoded as a google.protobuf.Duration (string ending in \"s\", e.g. \"3600s\"). Accepted bounds: 1s to 315360000s (~10 years). If unset or zero, the project default TTL applies. For convenience, the server also accepts Go-style duration strings (\"24h\", \"30m\", \"1h30m\") and an extended unit set (\"1d\", \"1w\", \"1mo\", \"1y\"; approximations: 1mo = 30d, 1y = 365d). Clients should prefer the standard Duration encoding for portability. | [optional] |
|
|
12
|
+
|
|
13
|
+
## Example
|
|
14
|
+
|
|
15
|
+
```ruby
|
|
16
|
+
require 'ory-client'
|
|
17
|
+
|
|
18
|
+
instance = OryClient::DeriveTokenRequest.new(
|
|
19
|
+
algorithm: null,
|
|
20
|
+
credential: null,
|
|
21
|
+
custom_claims: null,
|
|
22
|
+
scopes: null,
|
|
23
|
+
ttl: null
|
|
24
|
+
)
|
|
25
|
+
```
|
|
26
|
+
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
# OryClient::DeriveTokenResponse
|
|
2
|
+
|
|
3
|
+
## Properties
|
|
4
|
+
|
|
5
|
+
| Name | Type | Description | Notes |
|
|
6
|
+
| ---- | ---- | ----------- | ----- |
|
|
7
|
+
| **token** | [**Token**](Token.md) | | [optional] |
|
|
8
|
+
|
|
9
|
+
## Example
|
|
10
|
+
|
|
11
|
+
```ruby
|
|
12
|
+
require 'ory-client'
|
|
13
|
+
|
|
14
|
+
instance = OryClient::DeriveTokenResponse.new(
|
|
15
|
+
token: null
|
|
16
|
+
)
|
|
17
|
+
```
|
|
18
|
+
|
|
@@ -0,0 +1,70 @@
|
|
|
1
|
+
# OryClient::DeviceAuthnAndroidAuthorizationList
|
|
2
|
+
|
|
3
|
+
## Properties
|
|
4
|
+
|
|
5
|
+
| Name | Type | Description | Notes |
|
|
6
|
+
| ---- | ---- | ----------- | ----- |
|
|
7
|
+
| **active_date_time** | **Integer** | | [optional] |
|
|
8
|
+
| **algorithm** | **Integer** | | [optional] |
|
|
9
|
+
| **application_id** | **Array<Integer>** | | [optional] |
|
|
10
|
+
| **attestation_application_id** | **Array<Integer>** | | [optional] |
|
|
11
|
+
| **attestation_id_brand** | **Array<Integer>** | | [optional] |
|
|
12
|
+
| **attestation_id_device** | **Array<Integer>** | | [optional] |
|
|
13
|
+
| **attestation_id_imei** | **Array<Integer>** | | [optional] |
|
|
14
|
+
| **attestation_id_manufacturer** | **Array<Integer>** | | [optional] |
|
|
15
|
+
| **attestation_id_meid** | **Array<Integer>** | | [optional] |
|
|
16
|
+
| **attestation_id_model** | **Array<Integer>** | | [optional] |
|
|
17
|
+
| **attestation_id_product** | **Array<Integer>** | | [optional] |
|
|
18
|
+
| **attestation_id_serial** | **Array<Integer>** | | [optional] |
|
|
19
|
+
| **auth_timeout** | **Integer** | | [optional] |
|
|
20
|
+
| **boot_patch_level** | **Integer** | | [optional] |
|
|
21
|
+
| **creation_date_time** | **Integer** | | [optional] |
|
|
22
|
+
| **digest** | **Array<Integer>** | | [optional] |
|
|
23
|
+
| **ec_curve** | **Integer** | | [optional] |
|
|
24
|
+
| **key_size** | **Integer** | | [optional] |
|
|
25
|
+
| **origin** | **Integer** | | [optional] |
|
|
26
|
+
| **origination_expire_date_time** | **Integer** | | [optional] |
|
|
27
|
+
| **os_patch_level** | **Integer** | | [optional] |
|
|
28
|
+
| **os_version** | **Integer** | | [optional] |
|
|
29
|
+
| **purpose** | **Array<Integer>** | | [optional] |
|
|
30
|
+
| **root_of_trust** | [**DeviceAuthnAndroidRootOfTrust**](DeviceAuthnAndroidRootOfTrust.md) | | [optional] |
|
|
31
|
+
| **usage_expire_date_time** | **Integer** | | [optional] |
|
|
32
|
+
| **user_auth_type** | **Integer** | | [optional] |
|
|
33
|
+
| **vendor_patch_level** | **Integer** | | [optional] |
|
|
34
|
+
|
|
35
|
+
## Example
|
|
36
|
+
|
|
37
|
+
```ruby
|
|
38
|
+
require 'ory-client'
|
|
39
|
+
|
|
40
|
+
instance = OryClient::DeviceAuthnAndroidAuthorizationList.new(
|
|
41
|
+
active_date_time: null,
|
|
42
|
+
algorithm: null,
|
|
43
|
+
application_id: null,
|
|
44
|
+
attestation_application_id: null,
|
|
45
|
+
attestation_id_brand: null,
|
|
46
|
+
attestation_id_device: null,
|
|
47
|
+
attestation_id_imei: null,
|
|
48
|
+
attestation_id_manufacturer: null,
|
|
49
|
+
attestation_id_meid: null,
|
|
50
|
+
attestation_id_model: null,
|
|
51
|
+
attestation_id_product: null,
|
|
52
|
+
attestation_id_serial: null,
|
|
53
|
+
auth_timeout: null,
|
|
54
|
+
boot_patch_level: null,
|
|
55
|
+
creation_date_time: null,
|
|
56
|
+
digest: null,
|
|
57
|
+
ec_curve: null,
|
|
58
|
+
key_size: null,
|
|
59
|
+
origin: null,
|
|
60
|
+
origination_expire_date_time: null,
|
|
61
|
+
os_patch_level: null,
|
|
62
|
+
os_version: null,
|
|
63
|
+
purpose: null,
|
|
64
|
+
root_of_trust: null,
|
|
65
|
+
usage_expire_date_time: null,
|
|
66
|
+
user_auth_type: null,
|
|
67
|
+
vendor_patch_level: null
|
|
68
|
+
)
|
|
69
|
+
```
|
|
70
|
+
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
# OryClient::DeviceAuthnAndroidKeyDescription
|
|
2
|
+
|
|
3
|
+
## Properties
|
|
4
|
+
|
|
5
|
+
| Name | Type | Description | Notes |
|
|
6
|
+
| ---- | ---- | ----------- | ----- |
|
|
7
|
+
| **attestation_security_level** | **Integer** | | [optional] |
|
|
8
|
+
| **attestation_version** | **Integer** | | [optional] |
|
|
9
|
+
| **keymaster_security_level** | **Integer** | | [optional] |
|
|
10
|
+
| **keymaster_version** | **Integer** | | [optional] |
|
|
11
|
+
| **software_enforced** | [**DeviceAuthnAndroidAuthorizationList**](DeviceAuthnAndroidAuthorizationList.md) | | [optional] |
|
|
12
|
+
| **tee_enforced** | [**DeviceAuthnAndroidAuthorizationList**](DeviceAuthnAndroidAuthorizationList.md) | | [optional] |
|
|
13
|
+
|
|
14
|
+
## Example
|
|
15
|
+
|
|
16
|
+
```ruby
|
|
17
|
+
require 'ory-client'
|
|
18
|
+
|
|
19
|
+
instance = OryClient::DeviceAuthnAndroidKeyDescription.new(
|
|
20
|
+
attestation_security_level: null,
|
|
21
|
+
attestation_version: null,
|
|
22
|
+
keymaster_security_level: null,
|
|
23
|
+
keymaster_version: null,
|
|
24
|
+
software_enforced: null,
|
|
25
|
+
tee_enforced: null
|
|
26
|
+
)
|
|
27
|
+
```
|
|
28
|
+
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
# OryClient::DeviceAuthnAndroidRootOfTrust
|
|
2
|
+
|
|
3
|
+
## Properties
|
|
4
|
+
|
|
5
|
+
| Name | Type | Description | Notes |
|
|
6
|
+
| ---- | ---- | ----------- | ----- |
|
|
7
|
+
| **device_locked** | **Boolean** | | [optional] |
|
|
8
|
+
| **verified_boot_hash** | **Array<Integer>** | | [optional] |
|
|
9
|
+
| **verified_boot_key** | **Array<Integer>** | | [optional] |
|
|
10
|
+
| **verified_boot_state** | **Integer** | | [optional] |
|
|
11
|
+
|
|
12
|
+
## Example
|
|
13
|
+
|
|
14
|
+
```ruby
|
|
15
|
+
require 'ory-client'
|
|
16
|
+
|
|
17
|
+
instance = OryClient::DeviceAuthnAndroidRootOfTrust.new(
|
|
18
|
+
device_locked: null,
|
|
19
|
+
verified_boot_hash: null,
|
|
20
|
+
verified_boot_key: null,
|
|
21
|
+
verified_boot_state: null
|
|
22
|
+
)
|
|
23
|
+
```
|
|
24
|
+
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
# OryClient::DeviceAuthnAttestation
|
|
2
|
+
|
|
3
|
+
## Properties
|
|
4
|
+
|
|
5
|
+
| Name | Type | Description | Notes |
|
|
6
|
+
| ---- | ---- | ----------- | ----- |
|
|
7
|
+
| **android** | [**DeviceAuthnAndroidKeyDescription**](DeviceAuthnAndroidKeyDescription.md) | | [optional] |
|
|
8
|
+
| **ios** | [**DeviceAuthnIOSAttestation**](DeviceAuthnIOSAttestation.md) | | [optional] |
|
|
9
|
+
|
|
10
|
+
## Example
|
|
11
|
+
|
|
12
|
+
```ruby
|
|
13
|
+
require 'ory-client'
|
|
14
|
+
|
|
15
|
+
instance = OryClient::DeviceAuthnAttestation.new(
|
|
16
|
+
android: null,
|
|
17
|
+
ios: null
|
|
18
|
+
)
|
|
19
|
+
```
|
|
20
|
+
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
# OryClient::DeviceAuthnIOSAttStmt
|
|
2
|
+
|
|
3
|
+
## Properties
|
|
4
|
+
|
|
5
|
+
| Name | Type | Description | Notes |
|
|
6
|
+
| ---- | ---- | ----------- | ----- |
|
|
7
|
+
| **x5c** | **Array<Array<Integer>>** | X5c is the leaf-first certificate chain encoded as base64(DER), per the JOSE convention defined in RFC 7515 §4.1.6. | [optional] |
|
|
8
|
+
|
|
9
|
+
## Example
|
|
10
|
+
|
|
11
|
+
```ruby
|
|
12
|
+
require 'ory-client'
|
|
13
|
+
|
|
14
|
+
instance = OryClient::DeviceAuthnIOSAttStmt.new(
|
|
15
|
+
x5c: null
|
|
16
|
+
)
|
|
17
|
+
```
|
|
18
|
+
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
# OryClient::DeviceAuthnIOSAttestation
|
|
2
|
+
|
|
3
|
+
## Properties
|
|
4
|
+
|
|
5
|
+
| Name | Type | Description | Notes |
|
|
6
|
+
| ---- | ---- | ----------- | ----- |
|
|
7
|
+
| **att_stmt** | [**DeviceAuthnIOSAttStmt**](DeviceAuthnIOSAttStmt.md) | | [optional] |
|
|
8
|
+
| **auth_data** | **Array<Integer>** | | [optional] |
|
|
9
|
+
| **fmt** | **String** | | [optional] |
|
|
10
|
+
|
|
11
|
+
## Example
|
|
12
|
+
|
|
13
|
+
```ruby
|
|
14
|
+
require 'ory-client'
|
|
15
|
+
|
|
16
|
+
instance = OryClient::DeviceAuthnIOSAttestation.new(
|
|
17
|
+
att_stmt: null,
|
|
18
|
+
auth_data: null,
|
|
19
|
+
fmt: null
|
|
20
|
+
)
|
|
21
|
+
```
|
|
22
|
+
|
data/docs/DeviceAuthnKey.md
CHANGED
|
@@ -4,6 +4,7 @@
|
|
|
4
4
|
|
|
5
5
|
| Name | Type | Description | Notes |
|
|
6
6
|
| ---- | ---- | ----------- | ----- |
|
|
7
|
+
| **attestation** | [**DeviceAuthnAttestation**](DeviceAuthnAttestation.md) | | [optional] |
|
|
7
8
|
| **client_key_id** | **String** | ClientKeyID is a client-chosen id for the key and is unique per identity. | [optional] |
|
|
8
9
|
| **created_at** | **Time** | CreatedAt is the timestamp of when the key was created. Only used for troubleshooting/UI. | [optional] |
|
|
9
10
|
| **device_name** | **String** | DeviceName is a human readable name for the device, helping the user to distinguish it from others. | [optional] |
|
|
@@ -18,6 +19,7 @@
|
|
|
18
19
|
require 'ory-client'
|
|
19
20
|
|
|
20
21
|
instance = OryClient::DeviceAuthnKey.new(
|
|
22
|
+
attestation: null,
|
|
21
23
|
client_key_id: null,
|
|
22
24
|
created_at: null,
|
|
23
25
|
device_name: null,
|
data/docs/FrontendApi.md
CHANGED
|
@@ -16,6 +16,7 @@ All URIs are relative to *https://playground.projects.oryapis.com*
|
|
|
16
16
|
| [**create_native_registration_flow**](FrontendApi.md#create_native_registration_flow) | **GET** /self-service/registration/api | Create Registration Flow for Native Apps |
|
|
17
17
|
| [**create_native_settings_flow**](FrontendApi.md#create_native_settings_flow) | **GET** /self-service/settings/api | Create Settings Flow for Native Apps |
|
|
18
18
|
| [**create_native_verification_flow**](FrontendApi.md#create_native_verification_flow) | **GET** /self-service/verification/api | Create Verification Flow for Native Apps |
|
|
19
|
+
| [**delete_test_login_flow**](FrontendApi.md#delete_test_login_flow) | **DELETE** /self-service/login/test | Delete a test OIDC login flow |
|
|
19
20
|
| [**disable_my_other_sessions**](FrontendApi.md#disable_my_other_sessions) | **DELETE** /sessions | Disable my other sessions |
|
|
20
21
|
| [**disable_my_session**](FrontendApi.md#disable_my_session) | **DELETE** /sessions/{id} | Disable one of my sessions |
|
|
21
22
|
| [**exchange_session_token**](FrontendApi.md#exchange_session_token) | **GET** /sessions/token-exchange | Exchange Session Token |
|
|
@@ -868,6 +869,73 @@ No authorization required
|
|
|
868
869
|
- **Accept**: application/json
|
|
869
870
|
|
|
870
871
|
|
|
872
|
+
## delete_test_login_flow
|
|
873
|
+
|
|
874
|
+
> delete_test_login_flow(id, opts)
|
|
875
|
+
|
|
876
|
+
Delete a test OIDC login flow
|
|
877
|
+
|
|
878
|
+
Deletes a dry-run OIDC test login flow. A flow whose debug payload has been captured requires the HMAC cookie set by the OIDC callback; a flow still in the initial choose-method state is deletable with just the flow ID (it carries no PII, and the admin may want to abandon it).
|
|
879
|
+
|
|
880
|
+
### Examples
|
|
881
|
+
|
|
882
|
+
```ruby
|
|
883
|
+
require 'time'
|
|
884
|
+
require 'ory-client'
|
|
885
|
+
|
|
886
|
+
api_instance = OryClient::FrontendApi.new
|
|
887
|
+
id = 'id_example' # String | ID of the test login flow to delete.
|
|
888
|
+
opts = {
|
|
889
|
+
cookie: 'cookie_example' # String | HTTP Cookies. A captured test flow requires the ory_kratos_test_flow cookie set by the OIDC callback; a flow still in the initial choose-method state does not.
|
|
890
|
+
}
|
|
891
|
+
|
|
892
|
+
begin
|
|
893
|
+
# Delete a test OIDC login flow
|
|
894
|
+
api_instance.delete_test_login_flow(id, opts)
|
|
895
|
+
rescue OryClient::ApiError => e
|
|
896
|
+
puts "Error when calling FrontendApi->delete_test_login_flow: #{e}"
|
|
897
|
+
end
|
|
898
|
+
```
|
|
899
|
+
|
|
900
|
+
#### Using the delete_test_login_flow_with_http_info variant
|
|
901
|
+
|
|
902
|
+
This returns an Array which contains the response data (`nil` in this case), status code and headers.
|
|
903
|
+
|
|
904
|
+
> <Array(nil, Integer, Hash)> delete_test_login_flow_with_http_info(id, opts)
|
|
905
|
+
|
|
906
|
+
```ruby
|
|
907
|
+
begin
|
|
908
|
+
# Delete a test OIDC login flow
|
|
909
|
+
data, status_code, headers = api_instance.delete_test_login_flow_with_http_info(id, opts)
|
|
910
|
+
p status_code # => 2xx
|
|
911
|
+
p headers # => { ... }
|
|
912
|
+
p data # => nil
|
|
913
|
+
rescue OryClient::ApiError => e
|
|
914
|
+
puts "Error when calling FrontendApi->delete_test_login_flow_with_http_info: #{e}"
|
|
915
|
+
end
|
|
916
|
+
```
|
|
917
|
+
|
|
918
|
+
### Parameters
|
|
919
|
+
|
|
920
|
+
| Name | Type | Description | Notes |
|
|
921
|
+
| ---- | ---- | ----------- | ----- |
|
|
922
|
+
| **id** | **String** | ID of the test login flow to delete. | |
|
|
923
|
+
| **cookie** | **String** | HTTP Cookies. A captured test flow requires the ory_kratos_test_flow cookie set by the OIDC callback; a flow still in the initial choose-method state does not. | [optional] |
|
|
924
|
+
|
|
925
|
+
### Return type
|
|
926
|
+
|
|
927
|
+
nil (empty response body)
|
|
928
|
+
|
|
929
|
+
### Authorization
|
|
930
|
+
|
|
931
|
+
No authorization required
|
|
932
|
+
|
|
933
|
+
### HTTP request headers
|
|
934
|
+
|
|
935
|
+
- **Content-Type**: Not defined
|
|
936
|
+
- **Accept**: application/json
|
|
937
|
+
|
|
938
|
+
|
|
871
939
|
## disable_my_other_sessions
|
|
872
940
|
|
|
873
941
|
> <DeleteMySessionsCount> disable_my_other_sessions(opts)
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
# OryClient::GetJWKSResponse
|
|
2
|
+
|
|
3
|
+
## Properties
|
|
4
|
+
|
|
5
|
+
| Name | Type | Description | Notes |
|
|
6
|
+
| ---- | ---- | ----------- | ----- |
|
|
7
|
+
| **jwks** | **Object** | jwks is a JSON Web Key Set (RFC 7517). Always contains a single top-level field \"keys\" whose value is an array of JWK objects. Each JWK has at minimum a \"kty\" (key type), \"kid\" (key ID), and key-type-specific material (e.g., \"x\" and \"crv\" for OKP/Ed25519, \"n\" and \"e\" for RSA). | [optional] |
|
|
8
|
+
|
|
9
|
+
## Example
|
|
10
|
+
|
|
11
|
+
```ruby
|
|
12
|
+
require 'ory-client'
|
|
13
|
+
|
|
14
|
+
instance = OryClient::GetJWKSResponse.new(
|
|
15
|
+
jwks: null
|
|
16
|
+
)
|
|
17
|
+
```
|
|
18
|
+
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
# OryClient::IPRestriction
|
|
2
|
+
|
|
3
|
+
## Properties
|
|
4
|
+
|
|
5
|
+
| Name | Type | Description | Notes |
|
|
6
|
+
| ---- | ---- | ----------- | ----- |
|
|
7
|
+
| **allowed_cidrs** | **Array<String>** | allowed_cidrs is a list of CIDR ranges that are allowed to use this key. Supports both IPv4 (e.g., \"10.0.0.0/8\") and IPv6 (e.g., \"2001:db8::/32\"). If empty, all IPs are allowed (no restriction). | [optional] |
|
|
8
|
+
|
|
9
|
+
## Example
|
|
10
|
+
|
|
11
|
+
```ruby
|
|
12
|
+
require 'ory-client'
|
|
13
|
+
|
|
14
|
+
instance = OryClient::IPRestriction.new(
|
|
15
|
+
allowed_cidrs: null
|
|
16
|
+
)
|
|
17
|
+
```
|
|
18
|
+
|