ory-client 1.20.10__tar.gz → 1.20.11__tar.gz
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.
- ory-client-1.20.11/PKG-INFO +14 -0
- ory-client-1.20.11/README.md +585 -0
- ory-client-1.20.11/ory_client/__init__.py +329 -0
- ory-client-1.20.11/ory_client/api/courier_api.py +622 -0
- ory-client-1.20.11/ory_client/api/events_api.py +1209 -0
- ory-client-1.20.11/ory_client/api/frontend_api.py +9521 -0
- ory-client-1.20.11/ory_client/api/identity_api.py +5380 -0
- ory-client-1.20.11/ory_client/api/jwk_api.py +1998 -0
- ory-client-1.20.11/ory_client/api/metadata_api.py +283 -0
- ory-client-1.20.11/ory_client/api/o_auth2_api.py +7971 -0
- ory-client-1.20.11/ory_client/api/oidc_api.py +2139 -0
- ory-client-1.20.11/ory_client/api/permission_api.py +2023 -0
- ory-client-1.20.11/ory_client/api/project_api.py +4978 -0
- ory-client-1.20.11/ory_client/api/relationship_api.py +1896 -0
- ory-client-1.20.11/ory_client/api/wellknown_api.py +282 -0
- ory-client-1.20.11/ory_client/api/workspace_api.py +2315 -0
- ory-client-1.20.11/ory_client/api_client.py +798 -0
- ory-client-1.20.11/ory_client/configuration.py +636 -0
- ory-client-1.20.11/ory_client/exceptions.py +217 -0
- ory-client-1.20.11/ory_client/models/__init__.py +300 -0
- ory-client-1.20.11/ory_client/models/accept_o_auth2_consent_request.py +118 -0
- ory-client-1.20.11/ory_client/models/accept_o_auth2_consent_request_session.py +113 -0
- ory-client-1.20.11/ory_client/models/accept_o_auth2_login_request.py +117 -0
- ory-client-1.20.11/ory_client/models/account_experience_colors.py +385 -0
- ory-client-1.20.11/ory_client/models/account_experience_configuration.py +142 -0
- ory-client-1.20.11/ory_client/models/account_experience_theme_variables.py +282 -0
- ory-client-1.20.11/ory_client/models/active_project_in_console.py +101 -0
- ory-client-1.20.11/ory_client/models/add_project_to_workspace_body.py +117 -0
- ory-client-1.20.11/ory_client/models/attribute.py +103 -0
- ory-client-1.20.11/ory_client/models/attribute_filter.py +115 -0
- ory-client-1.20.11/ory_client/models/attributes_count_datapoint.py +103 -0
- ory-client-1.20.11/ory_client/models/authenticator_assurance_level.py +40 -0
- ory-client-1.20.11/ory_client/models/batch_check_permission_body.py +109 -0
- ory-client-1.20.11/ory_client/models/batch_check_permission_result.py +109 -0
- ory-client-1.20.11/ory_client/models/batch_patch_identities_response.py +109 -0
- ory-client-1.20.11/ory_client/models/billing_period_bucket.py +120 -0
- ory-client-1.20.11/ory_client/models/check_opl_syntax_result.py +109 -0
- ory-client-1.20.11/ory_client/models/check_permission_result.py +101 -0
- ory-client-1.20.11/ory_client/models/check_permission_result_with_error.py +103 -0
- ory-client-1.20.11/ory_client/models/cloud_account.py +107 -0
- ory-client-1.20.11/ory_client/models/consistency_request_parameters.py +111 -0
- ory-client-1.20.11/ory_client/models/continue_with.py +238 -0
- ory-client-1.20.11/ory_client/models/continue_with_recovery_ui.py +114 -0
- ory-client-1.20.11/ory_client/models/continue_with_recovery_ui_flow.py +103 -0
- ory-client-1.20.11/ory_client/models/continue_with_redirect_browser_to.py +110 -0
- ory-client-1.20.11/ory_client/models/continue_with_set_ory_session_token.py +110 -0
- ory-client-1.20.11/ory_client/models/continue_with_settings_ui.py +114 -0
- ory-client-1.20.11/ory_client/models/continue_with_settings_ui_flow.py +103 -0
- ory-client-1.20.11/ory_client/models/continue_with_verification_ui.py +114 -0
- ory-client-1.20.11/ory_client/models/continue_with_verification_ui_flow.py +105 -0
- ory-client-1.20.11/ory_client/models/courier_message_status.py +40 -0
- ory-client-1.20.11/ory_client/models/courier_message_type.py +38 -0
- ory-client-1.20.11/ory_client/models/create_custom_domain_body.py +109 -0
- ory-client-1.20.11/ory_client/models/create_event_stream_body.py +112 -0
- ory-client-1.20.11/ory_client/models/create_fedcm_flow_response.py +111 -0
- ory-client-1.20.11/ory_client/models/create_identity_body.py +162 -0
- ory-client-1.20.11/ory_client/models/create_invite_response.py +114 -0
- ory-client-1.20.11/ory_client/models/create_json_web_key_set.py +105 -0
- ory-client-1.20.11/ory_client/models/create_project_api_key_request.py +104 -0
- ory-client-1.20.11/ory_client/models/create_project_body.py +124 -0
- ory-client-1.20.11/ory_client/models/create_project_branding.py +115 -0
- ory-client-1.20.11/ory_client/models/create_project_member_invite_body.py +101 -0
- ory-client-1.20.11/ory_client/models/create_project_normalized_payload.py +765 -0
- ory-client-1.20.11/ory_client/models/create_recovery_code_for_identity_body.py +116 -0
- ory-client-1.20.11/ory_client/models/create_recovery_link_for_identity_body.py +114 -0
- ory-client-1.20.11/ory_client/models/create_relationship_body.py +113 -0
- ory-client-1.20.11/ory_client/models/create_subscription_body.py +126 -0
- ory-client-1.20.11/ory_client/models/create_subscription_common.py +124 -0
- ory-client-1.20.11/ory_client/models/create_verifiable_credential_request_body.py +109 -0
- ory-client-1.20.11/ory_client/models/create_workspace_api_key_body.py +104 -0
- ory-client-1.20.11/ory_client/models/create_workspace_body.py +101 -0
- ory-client-1.20.11/ory_client/models/create_workspace_member_invite_body.py +110 -0
- ory-client-1.20.11/ory_client/models/create_workspace_subscription_body.py +124 -0
- ory-client-1.20.11/ory_client/models/credential_supported_draft00.py +107 -0
- ory-client-1.20.11/ory_client/models/custom_domain.py +132 -0
- ory-client-1.20.11/ory_client/models/delete_my_sessions_count.py +101 -0
- ory-client-1.20.11/ory_client/models/email_template_data.py +107 -0
- ory-client-1.20.11/ory_client/models/email_template_data_body.py +103 -0
- ory-client-1.20.11/ory_client/models/error_authenticator_assurance_level_not_satisfied.py +107 -0
- ory-client-1.20.11/ory_client/models/error_browser_location_change_required.py +107 -0
- ory-client-1.20.11/ory_client/models/error_flow_replaced.py +107 -0
- ory-client-1.20.11/ory_client/models/error_generic.py +105 -0
- ory-client-1.20.11/ory_client/models/error_o_auth2.py +109 -0
- ory-client-1.20.11/ory_client/models/event_stream.py +112 -0
- ory-client-1.20.11/ory_client/models/expanded_permission_tree.py +125 -0
- ory-client-1.20.11/ory_client/models/flow_error.py +108 -0
- ory-client-1.20.11/ory_client/models/generic_error.py +126 -0
- ory-client-1.20.11/ory_client/models/generic_error_content.py +121 -0
- ory-client-1.20.11/ory_client/models/generic_usage.py +107 -0
- ory-client-1.20.11/ory_client/models/get_attributes_count_response.py +111 -0
- ory-client-1.20.11/ory_client/models/get_managed_identity_schema_location.py +101 -0
- ory-client-1.20.11/ory_client/models/get_metrics_event_attributes_response.py +103 -0
- ory-client-1.20.11/ory_client/models/get_metrics_event_types_response.py +103 -0
- ory-client-1.20.11/ory_client/models/get_organization_response.py +105 -0
- ory-client-1.20.11/ory_client/models/get_project_events_body.py +120 -0
- ory-client-1.20.11/ory_client/models/get_project_events_response.py +115 -0
- ory-client-1.20.11/ory_client/models/get_project_metrics_response.py +111 -0
- ory-client-1.20.11/ory_client/models/get_session_activity_response.py +111 -0
- ory-client-1.20.11/ory_client/models/get_version200_response.py +101 -0
- ory-client-1.20.11/ory_client/models/health_not_ready_status.py +101 -0
- ory-client-1.20.11/ory_client/models/health_status.py +101 -0
- ory-client-1.20.11/ory_client/models/identity.py +187 -0
- ory-client-1.20.11/ory_client/models/identity_credentials.py +122 -0
- ory-client-1.20.11/ory_client/models/identity_credentials_code.py +109 -0
- ory-client-1.20.11/ory_client/models/identity_credentials_code_address.py +103 -0
- ory-client-1.20.11/ory_client/models/identity_credentials_oidc.py +109 -0
- ory-client-1.20.11/ory_client/models/identity_credentials_oidc_provider.py +113 -0
- ory-client-1.20.11/ory_client/models/identity_credentials_password.py +103 -0
- ory-client-1.20.11/ory_client/models/identity_patch.py +107 -0
- ory-client-1.20.11/ory_client/models/identity_patch_response.py +122 -0
- ory-client-1.20.11/ory_client/models/identity_schema_container.py +103 -0
- ory-client-1.20.11/ory_client/models/identity_schema_preset.py +103 -0
- ory-client-1.20.11/ory_client/models/identity_with_credentials.py +117 -0
- ory-client-1.20.11/ory_client/models/identity_with_credentials_oidc.py +105 -0
- ory-client-1.20.11/ory_client/models/identity_with_credentials_oidc_config.py +109 -0
- ory-client-1.20.11/ory_client/models/identity_with_credentials_oidc_config_provider.py +112 -0
- ory-client-1.20.11/ory_client/models/identity_with_credentials_password.py +105 -0
- ory-client-1.20.11/ory_client/models/identity_with_credentials_password_config.py +105 -0
- ory-client-1.20.11/ory_client/models/identity_with_credentials_saml.py +105 -0
- ory-client-1.20.11/ory_client/models/identity_with_credentials_saml_config.py +109 -0
- ory-client-1.20.11/ory_client/models/identity_with_credentials_saml_config_provider.py +110 -0
- ory-client-1.20.11/ory_client/models/internal_get_project_branding_body.py +101 -0
- ory-client-1.20.11/ory_client/models/internal_is_ax_welcome_screen_enabled_for_project_body.py +103 -0
- ory-client-1.20.11/ory_client/models/internal_is_owner_for_project_by_slug_body.py +114 -0
- ory-client-1.20.11/ory_client/models/internal_is_owner_for_project_by_slug_response.py +101 -0
- ory-client-1.20.11/ory_client/models/introspected_o_auth2_token.py +127 -0
- ory-client-1.20.11/ory_client/models/invite_token_body.py +101 -0
- ory-client-1.20.11/ory_client/models/invoice.py +125 -0
- ory-client-1.20.11/ory_client/models/invoice_data_v1.py +153 -0
- ory-client-1.20.11/ory_client/models/is_owner_for_project_by_slug.py +103 -0
- ory-client-1.20.11/ory_client/models/json_patch.py +119 -0
- ory-client-1.20.11/ory_client/models/json_web_key.py +133 -0
- ory-client-1.20.11/ory_client/models/json_web_key_set.py +109 -0
- ory-client-1.20.11/ory_client/models/keto_namespace.py +103 -0
- ory-client-1.20.11/ory_client/models/line_item_v1.py +120 -0
- ory-client-1.20.11/ory_client/models/list_event_streams.py +109 -0
- ory-client-1.20.11/ory_client/models/list_invoices_response.py +113 -0
- ory-client-1.20.11/ory_client/models/list_organizations_response.py +113 -0
- ory-client-1.20.11/ory_client/models/list_workspace_projects.py +113 -0
- ory-client-1.20.11/ory_client/models/list_workspaces.py +113 -0
- ory-client-1.20.11/ory_client/models/login_flow.py +165 -0
- ory-client-1.20.11/ory_client/models/login_flow_state.py +39 -0
- ory-client-1.20.11/ory_client/models/logout_flow.py +103 -0
- ory-client-1.20.11/ory_client/models/managed_identity_schema.py +120 -0
- ory-client-1.20.11/ory_client/models/managed_identity_schema_validation_result.py +103 -0
- ory-client-1.20.11/ory_client/models/member_invite.py +155 -0
- ory-client-1.20.11/ory_client/models/message.py +141 -0
- ory-client-1.20.11/ory_client/models/message_dispatch.py +119 -0
- ory-client-1.20.11/ory_client/models/metrics_datapoint.py +104 -0
- ory-client-1.20.11/ory_client/models/money.py +105 -0
- ory-client-1.20.11/ory_client/models/namespace.py +101 -0
- ory-client-1.20.11/ory_client/models/needs_privileged_session_error.py +107 -0
- ory-client-1.20.11/ory_client/models/normalized_project.py +182 -0
- ory-client-1.20.11/ory_client/models/normalized_project_revision.py +742 -0
- ory-client-1.20.11/ory_client/models/normalized_project_revision_courier_channel.py +145 -0
- ory-client-1.20.11/ory_client/models/normalized_project_revision_hook.py +140 -0
- ory-client-1.20.11/ory_client/models/normalized_project_revision_identity_schema.py +133 -0
- ory-client-1.20.11/ory_client/models/normalized_project_revision_saml_provider.py +139 -0
- ory-client-1.20.11/ory_client/models/normalized_project_revision_scim_client.py +130 -0
- ory-client-1.20.11/ory_client/models/normalized_project_revision_third_party_provider.py +218 -0
- ory-client-1.20.11/ory_client/models/normalized_project_revision_tokenizer_template.py +133 -0
- ory-client-1.20.11/ory_client/models/o_auth2_client.py +352 -0
- ory-client-1.20.11/ory_client/models/o_auth2_client_token_lifespans.py +270 -0
- ory-client-1.20.11/ory_client/models/o_auth2_consent_request.py +135 -0
- ory-client-1.20.11/ory_client/models/o_auth2_consent_request_open_id_connect_context.py +109 -0
- ory-client-1.20.11/ory_client/models/o_auth2_consent_session.py +132 -0
- ory-client-1.20.11/ory_client/models/o_auth2_consent_session_expires_at.py +110 -0
- ory-client-1.20.11/ory_client/models/o_auth2_login_request.py +125 -0
- ory-client-1.20.11/ory_client/models/o_auth2_logout_request.py +120 -0
- ory-client-1.20.11/ory_client/models/o_auth2_redirect_to.py +101 -0
- ory-client-1.20.11/ory_client/models/o_auth2_token_exchange.py +111 -0
- ory-client-1.20.11/ory_client/models/oidc_configuration.py +169 -0
- ory-client-1.20.11/ory_client/models/oidc_user_info.py +137 -0
- ory-client-1.20.11/ory_client/models/organization.py +116 -0
- ory-client-1.20.11/ory_client/models/organization_body.py +103 -0
- ory-client-1.20.11/ory_client/models/pagination.py +104 -0
- ory-client-1.20.11/ory_client/models/pagination_headers.py +103 -0
- ory-client-1.20.11/ory_client/models/parse_error.py +112 -0
- ory-client-1.20.11/ory_client/models/patch_identities_body.py +109 -0
- ory-client-1.20.11/ory_client/models/perform_native_logout_body.py +101 -0
- ory-client-1.20.11/ory_client/models/permissions_on_workspace.py +101 -0
- ory-client-1.20.11/ory_client/models/plan.py +103 -0
- ory-client-1.20.11/ory_client/models/plan_details.py +128 -0
- ory-client-1.20.11/ory_client/models/post_check_permission_body.py +113 -0
- ory-client-1.20.11/ory_client/models/post_check_permission_or_error_body.py +113 -0
- ory-client-1.20.11/ory_client/models/project.py +166 -0
- ory-client-1.20.11/ory_client/models/project_api_key.py +128 -0
- ory-client-1.20.11/ory_client/models/project_branding.py +129 -0
- ory-client-1.20.11/ory_client/models/project_branding_colors.py +157 -0
- ory-client-1.20.11/ory_client/models/project_branding_theme.py +194 -0
- ory-client-1.20.11/ory_client/models/project_cors.py +103 -0
- ory-client-1.20.11/ory_client/models/project_events_datapoint.py +114 -0
- ory-client-1.20.11/ory_client/models/project_host.py +107 -0
- ory-client-1.20.11/ory_client/models/project_member.py +109 -0
- ory-client-1.20.11/ory_client/models/project_metadata.py +170 -0
- ory-client-1.20.11/ory_client/models/project_service_identity.py +101 -0
- ory-client-1.20.11/ory_client/models/project_service_o_auth2.py +101 -0
- ory-client-1.20.11/ory_client/models/project_service_permission.py +101 -0
- ory-client-1.20.11/ory_client/models/project_services.py +117 -0
- ory-client-1.20.11/ory_client/models/provider.py +113 -0
- ory-client-1.20.11/ory_client/models/quota_usage.py +120 -0
- ory-client-1.20.11/ory_client/models/recovery_code_for_identity.py +106 -0
- ory-client-1.20.11/ory_client/models/recovery_flow.py +139 -0
- ory-client-1.20.11/ory_client/models/recovery_flow_state.py +39 -0
- ory-client-1.20.11/ory_client/models/recovery_identity_address.py +110 -0
- ory-client-1.20.11/ory_client/models/recovery_link_for_identity.py +104 -0
- ory-client-1.20.11/ory_client/models/registration_flow.py +156 -0
- ory-client-1.20.11/ory_client/models/registration_flow_state.py +39 -0
- ory-client-1.20.11/ory_client/models/reject_o_auth2_request.py +109 -0
- ory-client-1.20.11/ory_client/models/relation_query.py +113 -0
- ory-client-1.20.11/ory_client/models/relationship.py +113 -0
- ory-client-1.20.11/ory_client/models/relationship_namespaces.py +109 -0
- ory-client-1.20.11/ory_client/models/relationship_patch.py +117 -0
- ory-client-1.20.11/ory_client/models/relationships.py +111 -0
- ory-client-1.20.11/ory_client/models/rfc6749_error_json.py +109 -0
- ory-client-1.20.11/ory_client/models/schema_patch.py +103 -0
- ory-client-1.20.11/ory_client/models/self_service_flow_expired_error.py +112 -0
- ory-client-1.20.11/ory_client/models/session.py +141 -0
- ory-client-1.20.11/ory_client/models/session_activity_datapoint.py +105 -0
- ory-client-1.20.11/ory_client/models/session_authentication_method.py +121 -0
- ory-client-1.20.11/ory_client/models/session_device.py +107 -0
- ory-client-1.20.11/ory_client/models/set_active_project_in_console_body.py +101 -0
- ory-client-1.20.11/ory_client/models/set_custom_domain_body.py +109 -0
- ory-client-1.20.11/ory_client/models/set_event_stream_body.py +112 -0
- ory-client-1.20.11/ory_client/models/set_project.py +118 -0
- ory-client-1.20.11/ory_client/models/set_project_branding_theme_body.py +115 -0
- ory-client-1.20.11/ory_client/models/settings_flow.py +145 -0
- ory-client-1.20.11/ory_client/models/settings_flow_state.py +38 -0
- ory-client-1.20.11/ory_client/models/source_position.py +103 -0
- ory-client-1.20.11/ory_client/models/subject_set.py +105 -0
- ory-client-1.20.11/ory_client/models/subscription.py +179 -0
- ory-client-1.20.11/ory_client/models/successful_code_exchange_response.py +107 -0
- ory-client-1.20.11/ory_client/models/successful_native_login.py +117 -0
- ory-client-1.20.11/ory_client/models/successful_native_registration.py +123 -0
- ory-client-1.20.11/ory_client/models/successful_project_update.py +115 -0
- ory-client-1.20.11/ory_client/models/tax_line_item.py +103 -0
- ory-client-1.20.11/ory_client/models/time_interval.py +104 -0
- ory-client-1.20.11/ory_client/models/token_pagination.py +104 -0
- ory-client-1.20.11/ory_client/models/token_pagination_headers.py +103 -0
- ory-client-1.20.11/ory_client/models/token_pagination_request_parameters.py +104 -0
- ory-client-1.20.11/ory_client/models/token_pagination_response_headers.py +103 -0
- ory-client-1.20.11/ory_client/models/trust_o_auth2_jwt_grant_issuer.py +116 -0
- ory-client-1.20.11/ory_client/models/trusted_o_auth2_jwt_grant_issuer.py +120 -0
- ory-client-1.20.11/ory_client/models/trusted_o_auth2_jwt_grant_json_web_key.py +103 -0
- ory-client-1.20.11/ory_client/models/ui_container.py +123 -0
- ory-client-1.20.11/ory_client/models/ui_node.py +139 -0
- ory-client-1.20.11/ory_client/models/ui_node_anchor_attributes.py +118 -0
- ory-client-1.20.11/ory_client/models/ui_node_attributes.py +262 -0
- ory-client-1.20.11/ory_client/models/ui_node_division_attributes.py +114 -0
- ory-client-1.20.11/ory_client/models/ui_node_image_attributes.py +116 -0
- ory-client-1.20.11/ory_client/models/ui_node_input_attributes.py +180 -0
- ory-client-1.20.11/ory_client/models/ui_node_meta.py +105 -0
- ory-client-1.20.11/ory_client/models/ui_node_script_attributes.py +124 -0
- ory-client-1.20.11/ory_client/models/ui_node_text_attributes.py +116 -0
- ory-client-1.20.11/ory_client/models/ui_text.py +114 -0
- ory-client-1.20.11/ory_client/models/update_fedcm_flow_body.py +107 -0
- ory-client-1.20.11/ory_client/models/update_identity_body.py +132 -0
- ory-client-1.20.11/ory_client/models/update_login_flow_body.py +334 -0
- ory-client-1.20.11/ory_client/models/update_login_flow_with_code_method.py +113 -0
- ory-client-1.20.11/ory_client/models/update_login_flow_with_identifier_first_method.py +107 -0
- ory-client-1.20.11/ory_client/models/update_login_flow_with_lookup_secret_method.py +105 -0
- ory-client-1.20.11/ory_client/models/update_login_flow_with_oidc_method.py +115 -0
- ory-client-1.20.11/ory_client/models/update_login_flow_with_passkey_method.py +105 -0
- ory-client-1.20.11/ory_client/models/update_login_flow_with_password_method.py +111 -0
- ory-client-1.20.11/ory_client/models/update_login_flow_with_saml_method.py +107 -0
- ory-client-1.20.11/ory_client/models/update_login_flow_with_totp_method.py +107 -0
- ory-client-1.20.11/ory_client/models/update_login_flow_with_web_authn_method.py +109 -0
- ory-client-1.20.11/ory_client/models/update_recovery_flow_body.py +166 -0
- ory-client-1.20.11/ory_client/models/update_recovery_flow_with_code_method.py +116 -0
- ory-client-1.20.11/ory_client/models/update_recovery_flow_with_link_method.py +114 -0
- ory-client-1.20.11/ory_client/models/update_registration_flow_body.py +286 -0
- ory-client-1.20.11/ory_client/models/update_registration_flow_with_code_method.py +111 -0
- ory-client-1.20.11/ory_client/models/update_registration_flow_with_oidc_method.py +115 -0
- ory-client-1.20.11/ory_client/models/update_registration_flow_with_passkey_method.py +109 -0
- ory-client-1.20.11/ory_client/models/update_registration_flow_with_password_method.py +109 -0
- ory-client-1.20.11/ory_client/models/update_registration_flow_with_profile_method.py +119 -0
- ory-client-1.20.11/ory_client/models/update_registration_flow_with_saml_method.py +109 -0
- ory-client-1.20.11/ory_client/models/update_registration_flow_with_web_authn_method.py +111 -0
- ory-client-1.20.11/ory_client/models/update_settings_flow_body.py +310 -0
- ory-client-1.20.11/ory_client/models/update_settings_flow_with_lookup_method.py +113 -0
- ory-client-1.20.11/ory_client/models/update_settings_flow_with_oidc_method.py +113 -0
- ory-client-1.20.11/ory_client/models/update_settings_flow_with_passkey_method.py +107 -0
- ory-client-1.20.11/ory_client/models/update_settings_flow_with_password_method.py +107 -0
- ory-client-1.20.11/ory_client/models/update_settings_flow_with_profile_method.py +107 -0
- ory-client-1.20.11/ory_client/models/update_settings_flow_with_saml_method.py +113 -0
- ory-client-1.20.11/ory_client/models/update_settings_flow_with_totp_method.py +109 -0
- ory-client-1.20.11/ory_client/models/update_settings_flow_with_web_authn_method.py +111 -0
- ory-client-1.20.11/ory_client/models/update_subscription_body.py +112 -0
- ory-client-1.20.11/ory_client/models/update_verification_flow_body.py +166 -0
- ory-client-1.20.11/ory_client/models/update_verification_flow_with_code_method.py +116 -0
- ory-client-1.20.11/ory_client/models/update_verification_flow_with_link_method.py +114 -0
- ory-client-1.20.11/ory_client/models/update_workspace_body.py +101 -0
- ory-client-1.20.11/ory_client/models/usage.py +105 -0
- ory-client-1.20.11/ory_client/models/verifiable_credential_priming_response.py +115 -0
- ory-client-1.20.11/ory_client/models/verifiable_credential_proof.py +103 -0
- ory-client-1.20.11/ory_client/models/verifiable_credential_response.py +103 -0
- ory-client-1.20.11/ory_client/models/verifiable_identity_address.py +123 -0
- ory-client-1.20.11/ory_client/models/verification_flow.py +129 -0
- ory-client-1.20.11/ory_client/models/verification_flow_state.py +39 -0
- ory-client-1.20.11/ory_client/models/version.py +101 -0
- ory-client-1.20.11/ory_client/models/warning.py +103 -0
- ory-client-1.20.11/ory_client/models/workspace.py +122 -0
- ory-client-1.20.11/ory_client/models/workspace_api_key.py +128 -0
- ory-client-1.20.11/ory_client/rest.py +259 -0
- ory-client-1.20.11/ory_client.egg-info/PKG-INFO +14 -0
- ory-client-1.20.11/pyproject.toml +89 -0
- ory-client-1.20.11/setup.py +51 -0
- ory-client-1.20.11/test/test_accept_o_auth2_consent_request.py +64 -0
- ory-client-1.20.11/test/test_accept_o_auth2_consent_request_session.py +53 -0
- ory-client-1.20.11/test/test_accept_o_auth2_login_request.py +63 -0
- ory-client-1.20.11/test/test_account_experience_colors.py +194 -0
- ory-client-1.20.11/test/test_account_experience_configuration.py +82 -0
- ory-client-1.20.11/test/test_account_experience_theme_variables.py +142 -0
- ory-client-1.20.11/test/test_active_project_in_console.py +52 -0
- ory-client-1.20.11/test/test_add_project_to_workspace_body.py +55 -0
- ory-client-1.20.11/test/test_attribute.py +53 -0
- ory-client-1.20.11/test/test_attribute_filter.py +54 -0
- ory-client-1.20.11/test/test_attributes_count_datapoint.py +55 -0
- ory-client-1.20.11/test/test_authenticator_assurance_level.py +34 -0
- ory-client-1.20.11/test/test_batch_check_permission_body.py +62 -0
- ory-client-1.20.11/test/test_batch_check_permission_result.py +61 -0
- ory-client-1.20.11/test/test_batch_patch_identities_response.py +58 -0
- ory-client-1.20.11/test/test_billing_period_bucket.py +112 -0
- ory-client-1.20.11/test/test_check_opl_syntax_result.py +61 -0
- ory-client-1.20.11/test/test_check_permission_result.py +53 -0
- ory-client-1.20.11/test/test_check_permission_result_with_error.py +54 -0
- ory-client-1.20.11/test/test_cloud_account.py +59 -0
- ory-client-1.20.11/test/test_consistency_request_parameters.py +52 -0
- ory-client-1.20.11/test/test_continue_with.py +63 -0
- ory-client-1.20.11/test/test_continue_with_recovery_ui.py +59 -0
- ory-client-1.20.11/test/test_continue_with_recovery_ui_flow.py +54 -0
- ory-client-1.20.11/test/test_continue_with_redirect_browser_to.py +55 -0
- ory-client-1.20.11/test/test_continue_with_set_ory_session_token.py +55 -0
- ory-client-1.20.11/test/test_continue_with_settings_ui.py +59 -0
- ory-client-1.20.11/test/test_continue_with_settings_ui_flow.py +54 -0
- ory-client-1.20.11/test/test_continue_with_verification_ui.py +61 -0
- ory-client-1.20.11/test/test_continue_with_verification_ui_flow.py +56 -0
- ory-client-1.20.11/test/test_courier_api.py +46 -0
- ory-client-1.20.11/test/test_courier_message_status.py +34 -0
- ory-client-1.20.11/test/test_courier_message_type.py +34 -0
- ory-client-1.20.11/test/test_create_custom_domain_body.py +58 -0
- ory-client-1.20.11/test/test_create_event_stream_body.py +57 -0
- ory-client-1.20.11/test/test_create_fedcm_flow_response.py +66 -0
- ory-client-1.20.11/test/test_create_identity_body.py +90 -0
- ory-client-1.20.11/test/test_create_invite_response.py +103 -0
- ory-client-1.20.11/test/test_create_json_web_key_set.py +57 -0
- ory-client-1.20.11/test/test_create_project_api_key_request.py +54 -0
- ory-client-1.20.11/test/test_create_project_body.py +57 -0
- ory-client-1.20.11/test/test_create_project_branding.py +86 -0
- ory-client-1.20.11/test/test_create_project_member_invite_body.py +52 -0
- ory-client-1.20.11/test/test_create_project_normalized_payload.py +434 -0
- ory-client-1.20.11/test/test_create_recovery_code_for_identity_body.py +55 -0
- ory-client-1.20.11/test/test_create_recovery_link_for_identity_body.py +54 -0
- ory-client-1.20.11/test/test_create_relationship_body.py +59 -0
- ory-client-1.20.11/test/test_create_subscription_body.py +59 -0
- ory-client-1.20.11/test/test_create_subscription_common.py +57 -0
- ory-client-1.20.11/test/test_create_verifiable_credential_request_body.py +58 -0
- ory-client-1.20.11/test/test_create_workspace_api_key_body.py +54 -0
- ory-client-1.20.11/test/test_create_workspace_body.py +53 -0
- ory-client-1.20.11/test/test_create_workspace_member_invite_body.py +55 -0
- ory-client-1.20.11/test/test_create_workspace_subscription_body.py +57 -0
- ory-client-1.20.11/test/test_credential_supported_draft00.py +61 -0
- ory-client-1.20.11/test/test_custom_domain.py +66 -0
- ory-client-1.20.11/test/test_delete_my_sessions_count.py +52 -0
- ory-client-1.20.11/test/test_email_template_data.py +59 -0
- ory-client-1.20.11/test/test_email_template_data_body.py +55 -0
- ory-client-1.20.11/test/test_error_authenticator_assurance_level_not_satisfied.py +67 -0
- ory-client-1.20.11/test/test_error_browser_location_change_required.py +59 -0
- ory-client-1.20.11/test/test_error_flow_replaced.py +67 -0
- ory-client-1.20.11/test/test_error_generic.py +63 -0
- ory-client-1.20.11/test/test_error_o_auth2.py +56 -0
- ory-client-1.20.11/test/test_event_stream.py +57 -0
- ory-client-1.20.11/test/test_events_api.py +60 -0
- ory-client-1.20.11/test/test_expanded_permission_tree.py +84 -0
- ory-client-1.20.11/test/test_flow_error.py +56 -0
- ory-client-1.20.11/test/test_frontend_api.py +256 -0
- ory-client-1.20.11/test/test_generic_error.py +66 -0
- ory-client-1.20.11/test/test_generic_error_content.py +57 -0
- ory-client-1.20.11/test/test_generic_usage.py +61 -0
- ory-client-1.20.11/test/test_get_attributes_count_response.py +61 -0
- ory-client-1.20.11/test/test_get_managed_identity_schema_location.py +52 -0
- ory-client-1.20.11/test/test_get_metrics_event_attributes_response.py +57 -0
- ory-client-1.20.11/test/test_get_metrics_event_types_response.py +57 -0
- ory-client-1.20.11/test/test_get_organization_response.py +69 -0
- ory-client-1.20.11/test/test_get_project_events_body.py +64 -0
- ory-client-1.20.11/test/test_get_project_events_response.py +72 -0
- ory-client-1.20.11/test/test_get_project_metrics_response.py +61 -0
- ory-client-1.20.11/test/test_get_session_activity_response.py +63 -0
- ory-client-1.20.11/test/test_get_version200_response.py +53 -0
- ory-client-1.20.11/test/test_health_not_ready_status.py +54 -0
- ory-client-1.20.11/test/test_health_status.py +52 -0
- ory-client-1.20.11/test/test_identity.py +96 -0
- ory-client-1.20.11/test/test_identity_api.py +158 -0
- ory-client-1.20.11/test/test_identity_credentials.py +59 -0
- ory-client-1.20.11/test/test_identity_credentials_code.py +56 -0
- ory-client-1.20.11/test/test_identity_credentials_code_address.py +53 -0
- ory-client-1.20.11/test/test_identity_credentials_oidc.py +61 -0
- ory-client-1.20.11/test/test_identity_credentials_oidc_provider.py +58 -0
- ory-client-1.20.11/test/test_identity_credentials_password.py +53 -0
- ory-client-1.20.11/test/test_identity_patch.py +90 -0
- ory-client-1.20.11/test/test_identity_patch_response.py +55 -0
- ory-client-1.20.11/test/test_identity_schema_container.py +53 -0
- ory-client-1.20.11/test/test_identity_schema_preset.py +55 -0
- ory-client-1.20.11/test/test_identity_with_credentials.py +72 -0
- ory-client-1.20.11/test/test_identity_with_credentials_oidc.py +59 -0
- ory-client-1.20.11/test/test_identity_with_credentials_oidc_config.py +58 -0
- ory-client-1.20.11/test/test_identity_with_credentials_oidc_config_provider.py +57 -0
- ory-client-1.20.11/test/test_identity_with_credentials_password.py +55 -0
- ory-client-1.20.11/test/test_identity_with_credentials_password_config.py +54 -0
- ory-client-1.20.11/test/test_identity_with_credentials_saml.py +58 -0
- ory-client-1.20.11/test/test_identity_with_credentials_saml_config.py +57 -0
- ory-client-1.20.11/test/test_identity_with_credentials_saml_config_provider.py +56 -0
- ory-client-1.20.11/test/test_internal_get_project_branding_body.py +52 -0
- ory-client-1.20.11/test/test_internal_is_ax_welcome_screen_enabled_for_project_body.py +55 -0
- ory-client-1.20.11/test/test_internal_is_owner_for_project_by_slug_body.py +58 -0
- ory-client-1.20.11/test/test_internal_is_owner_for_project_by_slug_response.py +53 -0
- ory-client-1.20.11/test/test_introspected_o_auth2_token.py +70 -0
- ory-client-1.20.11/test/test_invite_token_body.py +53 -0
- ory-client-1.20.11/test/test_invoice.py +82 -0
- ory-client-1.20.11/test/test_invoice_data_v1.py +88 -0
- ory-client-1.20.11/test/test_is_owner_for_project_by_slug.py +55 -0
- ory-client-1.20.11/test/test_json_patch.py +57 -0
- ory-client-1.20.11/test/test_json_web_key.py +74 -0
- ory-client-1.20.11/test/test_json_web_key_set.py +73 -0
- ory-client-1.20.11/test/test_jwk_api.py +81 -0
- ory-client-1.20.11/test/test_keto_namespace.py +53 -0
- ory-client-1.20.11/test/test_line_item_v1.py +64 -0
- ory-client-1.20.11/test/test_list_event_streams.py +60 -0
- ory-client-1.20.11/test/test_list_invoices_response.py +139 -0
- ory-client-1.20.11/test/test_list_organizations_response.py +77 -0
- ory-client-1.20.11/test/test_list_workspace_projects.py +99 -0
- ory-client-1.20.11/test/test_list_workspaces.py +73 -0
- ory-client-1.20.11/test/test_login_flow.py +196 -0
- ory-client-1.20.11/test/test_login_flow_state.py +34 -0
- ory-client-1.20.11/test/test_logout_flow.py +55 -0
- ory-client-1.20.11/test/test_managed_identity_schema.py +64 -0
- ory-client-1.20.11/test/test_managed_identity_schema_validation_result.py +53 -0
- ory-client-1.20.11/test/test_member_invite.py +69 -0
- ory-client-1.20.11/test/test_message.py +81 -0
- ory-client-1.20.11/test/test_message_dispatch.py +62 -0
- ory-client-1.20.11/test/test_metadata_api.py +39 -0
- ory-client-1.20.11/test/test_metrics_datapoint.py +55 -0
- ory-client-1.20.11/test/test_money.py +54 -0
- ory-client-1.20.11/test/test_namespace.py +52 -0
- ory-client-1.20.11/test/test_needs_privileged_session_error.py +68 -0
- ory-client-1.20.11/test/test_normalized_project.py +774 -0
- ory-client-1.20.11/test/test_normalized_project_revision.py +430 -0
- ory-client-1.20.11/test/test_normalized_project_revision_courier_channel.py +67 -0
- ory-client-1.20.11/test/test_normalized_project_revision_hook.py +71 -0
- ory-client-1.20.11/test/test_normalized_project_revision_identity_schema.py +68 -0
- ory-client-1.20.11/test/test_normalized_project_revision_saml_provider.py +61 -0
- ory-client-1.20.11/test/test_normalized_project_revision_scim_client.py +64 -0
- ory-client-1.20.11/test/test_normalized_project_revision_third_party_provider.py +82 -0
- ory-client-1.20.11/test/test_normalized_project_revision_tokenizer_template.py +59 -0
- ory-client-1.20.11/test/test_o_auth2_api.py +228 -0
- ory-client-1.20.11/test/test_o_auth2_client.py +115 -0
- ory-client-1.20.11/test/test_o_auth2_client_token_lifespans.py +61 -0
- ory-client-1.20.11/test/test_o_auth2_consent_request.py +135 -0
- ory-client-1.20.11/test/test_o_auth2_consent_request_open_id_connect_context.py +62 -0
- ory-client-1.20.11/test/test_o_auth2_consent_session.py +149 -0
- ory-client-1.20.11/test/test_o_auth2_consent_session_expires_at.py +56 -0
- ory-client-1.20.11/test/test_o_auth2_login_request.py +184 -0
- ory-client-1.20.11/test/test_o_auth2_logout_request.py +111 -0
- ory-client-1.20.11/test/test_o_auth2_redirect_to.py +53 -0
- ory-client-1.20.11/test/test_o_auth2_token_exchange.py +57 -0
- ory-client-1.20.11/test/test_oidc_api.py +88 -0
- ory-client-1.20.11/test/test_oidc_configuration.py +139 -0
- ory-client-1.20.11/test/test_oidc_user_info.py +70 -0
- ory-client-1.20.11/test/test_organization.py +67 -0
- ory-client-1.20.11/test/test_organization_body.py +55 -0
- ory-client-1.20.11/test/test_pagination.py +53 -0
- ory-client-1.20.11/test/test_pagination_headers.py +53 -0
- ory-client-1.20.11/test/test_parse_error.py +58 -0
- ory-client-1.20.11/test/test_patch_identities_body.py +93 -0
- ory-client-1.20.11/test/test_perform_native_logout_body.py +53 -0
- ory-client-1.20.11/test/test_permission_api.py +74 -0
- ory-client-1.20.11/test/test_permissions_on_workspace.py +54 -0
- ory-client-1.20.11/test/test_plan.py +55 -0
- ory-client-1.20.11/test/test_plan_details.py +80 -0
- ory-client-1.20.11/test/test_post_check_permission_body.py +59 -0
- ory-client-1.20.11/test/test_post_check_permission_or_error_body.py +59 -0
- ory-client-1.20.11/test/test_project.py +90 -0
- ory-client-1.20.11/test/test_project_api.py +151 -0
- ory-client-1.20.11/test/test_project_api_key.py +62 -0
- ory-client-1.20.11/test/test_project_branding.py +599 -0
- ory-client-1.20.11/test/test_project_branding_colors.py +80 -0
- ory-client-1.20.11/test/test_project_branding_theme.py +189 -0
- ory-client-1.20.11/test/test_project_cors.py +55 -0
- ory-client-1.20.11/test/test_project_events_datapoint.py +65 -0
- ory-client-1.20.11/test/test_project_host.py +57 -0
- ory-client-1.20.11/test/test_project_member.py +61 -0
- ory-client-1.20.11/test/test_project_metadata.py +83 -0
- ory-client-1.20.11/test/test_project_service_identity.py +53 -0
- ory-client-1.20.11/test/test_project_service_o_auth2.py +53 -0
- ory-client-1.20.11/test/test_project_service_permission.py +53 -0
- ory-client-1.20.11/test/test_project_services.py +57 -0
- ory-client-1.20.11/test/test_provider.py +62 -0
- ory-client-1.20.11/test/test_quota_usage.py +65 -0
- ory-client-1.20.11/test/test_recovery_code_for_identity.py +56 -0
- ory-client-1.20.11/test/test_recovery_flow.py +119 -0
- ory-client-1.20.11/test/test_recovery_flow_state.py +34 -0
- ory-client-1.20.11/test/test_recovery_identity_address.py +59 -0
- ory-client-1.20.11/test/test_recovery_link_for_identity.py +54 -0
- ory-client-1.20.11/test/test_registration_flow.py +192 -0
- ory-client-1.20.11/test/test_registration_flow_state.py +34 -0
- ory-client-1.20.11/test/test_reject_o_auth2_request.py +56 -0
- ory-client-1.20.11/test/test_relation_query.py +59 -0
- ory-client-1.20.11/test/test_relationship.py +62 -0
- ory-client-1.20.11/test/test_relationship_api.py +74 -0
- ory-client-1.20.11/test/test_relationship_namespaces.py +55 -0
- ory-client-1.20.11/test/test_relationship_patch.py +61 -0
- ory-client-1.20.11/test/test_relationships.py +63 -0
- ory-client-1.20.11/test/test_rfc6749_error_json.py +56 -0
- ory-client-1.20.11/test/test_schema_patch.py +55 -0
- ory-client-1.20.11/test/test_self_service_flow_expired_error.py +69 -0
- ory-client-1.20.11/test/test_session.py +116 -0
- ory-client-1.20.11/test/test_session_activity_datapoint.py +57 -0
- ory-client-1.20.11/test/test_session_authentication_method.py +56 -0
- ory-client-1.20.11/test/test_session_device.py +56 -0
- ory-client-1.20.11/test/test_set_active_project_in_console_body.py +53 -0
- ory-client-1.20.11/test/test_set_custom_domain_body.py +58 -0
- ory-client-1.20.11/test/test_set_event_stream_body.py +57 -0
- ory-client-1.20.11/test/test_set_project.py +87 -0
- ory-client-1.20.11/test/test_set_project_branding_theme_body.py +86 -0
- ory-client-1.20.11/test/test_settings_flow.py +203 -0
- ory-client-1.20.11/test/test_settings_flow_state.py +34 -0
- ory-client-1.20.11/test/test_source_position.py +53 -0
- ory-client-1.20.11/test/test_subject_set.py +57 -0
- ory-client-1.20.11/test/test_subscription.py +92 -0
- ory-client-1.20.11/test/test_successful_code_exchange_response.py +182 -0
- ory-client-1.20.11/test/test_successful_native_login.py +185 -0
- ory-client-1.20.11/test/test_successful_native_registration.py +204 -0
- ory-client-1.20.11/test/test_successful_project_update.py +107 -0
- ory-client-1.20.11/test/test_tax_line_item.py +53 -0
- ory-client-1.20.11/test/test_time_interval.py +55 -0
- ory-client-1.20.11/test/test_token_pagination.py +53 -0
- ory-client-1.20.11/test/test_token_pagination_headers.py +53 -0
- ory-client-1.20.11/test/test_token_pagination_request_parameters.py +53 -0
- ory-client-1.20.11/test/test_token_pagination_response_headers.py +53 -0
- ory-client-1.20.11/test/test_trust_o_auth2_jwt_grant_issuer.py +99 -0
- ory-client-1.20.11/test/test_trusted_o_auth2_jwt_grant_issuer.py +61 -0
- ory-client-1.20.11/test/test_trusted_o_auth2_jwt_grant_json_web_key.py +53 -0
- ory-client-1.20.11/test/test_ui_container.py +100 -0
- ory-client-1.20.11/test/test_ui_node.py +83 -0
- ory-client-1.20.11/test/test_ui_node_anchor_attributes.py +67 -0
- ory-client-1.20.11/test/test_ui_node_attributes.py +117 -0
- ory-client-1.20.11/test/test_ui_node_division_attributes.py +59 -0
- ory-client-1.20.11/test/test_ui_node_image_attributes.py +61 -0
- ory-client-1.20.11/test/test_ui_node_input_attributes.py +73 -0
- ory-client-1.20.11/test/test_ui_node_meta.py +56 -0
- ory-client-1.20.11/test/test_ui_node_script_attributes.py +69 -0
- ory-client-1.20.11/test/test_ui_node_text_attributes.py +65 -0
- ory-client-1.20.11/test/test_ui_text.py +58 -0
- ory-client-1.20.11/test/test_update_fedcm_flow_body.py +57 -0
- ory-client-1.20.11/test/test_update_identity_body.py +71 -0
- ory-client-1.20.11/test/test_update_login_flow_body.py +76 -0
- ory-client-1.20.11/test/test_update_login_flow_with_code_method.py +60 -0
- ory-client-1.20.11/test/test_update_login_flow_with_identifier_first_method.py +57 -0
- ory-client-1.20.11/test/test_update_login_flow_with_lookup_secret_method.py +56 -0
- ory-client-1.20.11/test/test_update_login_flow_with_oidc_method.py +61 -0
- ory-client-1.20.11/test/test_update_login_flow_with_passkey_method.py +55 -0
- ory-client-1.20.11/test/test_update_login_flow_with_password_method.py +60 -0
- ory-client-1.20.11/test/test_update_login_flow_with_saml_method.py +57 -0
- ory-client-1.20.11/test/test_update_login_flow_with_totp_method.py +57 -0
- ory-client-1.20.11/test/test_update_login_flow_with_web_authn_method.py +58 -0
- ory-client-1.20.11/test/test_update_recovery_flow_body.py +58 -0
- ory-client-1.20.11/test/test_update_recovery_flow_with_code_method.py +57 -0
- ory-client-1.20.11/test/test_update_recovery_flow_with_link_method.py +57 -0
- ory-client-1.20.11/test/test_update_registration_flow_body.py +70 -0
- ory-client-1.20.11/test/test_update_registration_flow_with_code_method.py +59 -0
- ory-client-1.20.11/test/test_update_registration_flow_with_oidc_method.py +61 -0
- ory-client-1.20.11/test/test_update_registration_flow_with_passkey_method.py +58 -0
- ory-client-1.20.11/test/test_update_registration_flow_with_password_method.py +59 -0
- ory-client-1.20.11/test/test_update_registration_flow_with_profile_method.py +58 -0
- ory-client-1.20.11/test/test_update_registration_flow_with_saml_method.py +58 -0
- ory-client-1.20.11/test/test_update_registration_flow_with_web_authn_method.py +59 -0
- ory-client-1.20.11/test/test_update_settings_flow_body.py +74 -0
- ory-client-1.20.11/test/test_update_settings_flow_with_lookup_method.py +59 -0
- ory-client-1.20.11/test/test_update_settings_flow_with_oidc_method.py +59 -0
- ory-client-1.20.11/test/test_update_settings_flow_with_passkey_method.py +56 -0
- ory-client-1.20.11/test/test_update_settings_flow_with_password_method.py +57 -0
- ory-client-1.20.11/test/test_update_settings_flow_with_profile_method.py +57 -0
- ory-client-1.20.11/test/test_update_settings_flow_with_saml_method.py +59 -0
- ory-client-1.20.11/test/test_update_settings_flow_with_totp_method.py +57 -0
- ory-client-1.20.11/test/test_update_settings_flow_with_web_authn_method.py +58 -0
- ory-client-1.20.11/test/test_update_subscription_body.py +56 -0
- ory-client-1.20.11/test/test_update_verification_flow_body.py +58 -0
- ory-client-1.20.11/test/test_update_verification_flow_with_code_method.py +57 -0
- ory-client-1.20.11/test/test_update_verification_flow_with_link_method.py +57 -0
- ory-client-1.20.11/test/test_update_workspace_body.py +53 -0
- ory-client-1.20.11/test/test_usage.py +57 -0
- ory-client-1.20.11/test/test_verifiable_credential_priming_response.py +59 -0
- ory-client-1.20.11/test/test_verifiable_credential_proof.py +53 -0
- ory-client-1.20.11/test/test_verifiable_credential_response.py +53 -0
- ory-client-1.20.11/test/test_verifiable_identity_address.py +63 -0
- ory-client-1.20.11/test/test_verification_flow.py +113 -0
- ory-client-1.20.11/test/test_verification_flow_state.py +34 -0
- ory-client-1.20.11/test/test_version.py +52 -0
- ory-client-1.20.11/test/test_warning.py +53 -0
- ory-client-1.20.11/test/test_wellknown_api.py +39 -0
- ory-client-1.20.11/test/test_workspace.py +61 -0
- ory-client-1.20.11/test/test_workspace_api.py +88 -0
- ory-client-1.20.11/test/test_workspace_api_key.py +62 -0
- ory-client-1.20.10/PKG-INFO +0 -14
- ory-client-1.20.10/README.md +0 -585
- ory-client-1.20.10/ory_client/__init__.py +0 -329
- ory-client-1.20.10/ory_client/api/courier_api.py +0 -622
- ory-client-1.20.10/ory_client/api/events_api.py +0 -1209
- ory-client-1.20.10/ory_client/api/frontend_api.py +0 -9521
- ory-client-1.20.10/ory_client/api/identity_api.py +0 -5380
- ory-client-1.20.10/ory_client/api/jwk_api.py +0 -1998
- ory-client-1.20.10/ory_client/api/metadata_api.py +0 -283
- ory-client-1.20.10/ory_client/api/o_auth2_api.py +0 -7971
- ory-client-1.20.10/ory_client/api/oidc_api.py +0 -2139
- ory-client-1.20.10/ory_client/api/permission_api.py +0 -2023
- ory-client-1.20.10/ory_client/api/project_api.py +0 -4978
- ory-client-1.20.10/ory_client/api/relationship_api.py +0 -1896
- ory-client-1.20.10/ory_client/api/wellknown_api.py +0 -282
- ory-client-1.20.10/ory_client/api/workspace_api.py +0 -2315
- ory-client-1.20.10/ory_client/api_client.py +0 -798
- ory-client-1.20.10/ory_client/configuration.py +0 -636
- ory-client-1.20.10/ory_client/exceptions.py +0 -217
- ory-client-1.20.10/ory_client/models/__init__.py +0 -300
- ory-client-1.20.10/ory_client/models/accept_o_auth2_consent_request.py +0 -118
- ory-client-1.20.10/ory_client/models/accept_o_auth2_consent_request_session.py +0 -113
- ory-client-1.20.10/ory_client/models/accept_o_auth2_login_request.py +0 -117
- ory-client-1.20.10/ory_client/models/account_experience_colors.py +0 -385
- ory-client-1.20.10/ory_client/models/account_experience_configuration.py +0 -142
- ory-client-1.20.10/ory_client/models/account_experience_theme_variables.py +0 -282
- ory-client-1.20.10/ory_client/models/active_project_in_console.py +0 -101
- ory-client-1.20.10/ory_client/models/add_project_to_workspace_body.py +0 -117
- ory-client-1.20.10/ory_client/models/attribute.py +0 -103
- ory-client-1.20.10/ory_client/models/attribute_filter.py +0 -115
- ory-client-1.20.10/ory_client/models/attributes_count_datapoint.py +0 -103
- ory-client-1.20.10/ory_client/models/authenticator_assurance_level.py +0 -40
- ory-client-1.20.10/ory_client/models/batch_check_permission_body.py +0 -109
- ory-client-1.20.10/ory_client/models/batch_check_permission_result.py +0 -109
- ory-client-1.20.10/ory_client/models/batch_patch_identities_response.py +0 -109
- ory-client-1.20.10/ory_client/models/billing_period_bucket.py +0 -120
- ory-client-1.20.10/ory_client/models/check_opl_syntax_result.py +0 -109
- ory-client-1.20.10/ory_client/models/check_permission_result.py +0 -101
- ory-client-1.20.10/ory_client/models/check_permission_result_with_error.py +0 -103
- ory-client-1.20.10/ory_client/models/cloud_account.py +0 -107
- ory-client-1.20.10/ory_client/models/consistency_request_parameters.py +0 -111
- ory-client-1.20.10/ory_client/models/continue_with.py +0 -238
- ory-client-1.20.10/ory_client/models/continue_with_recovery_ui.py +0 -114
- ory-client-1.20.10/ory_client/models/continue_with_recovery_ui_flow.py +0 -103
- ory-client-1.20.10/ory_client/models/continue_with_redirect_browser_to.py +0 -110
- ory-client-1.20.10/ory_client/models/continue_with_set_ory_session_token.py +0 -110
- ory-client-1.20.10/ory_client/models/continue_with_settings_ui.py +0 -114
- ory-client-1.20.10/ory_client/models/continue_with_settings_ui_flow.py +0 -103
- ory-client-1.20.10/ory_client/models/continue_with_verification_ui.py +0 -114
- ory-client-1.20.10/ory_client/models/continue_with_verification_ui_flow.py +0 -105
- ory-client-1.20.10/ory_client/models/courier_message_status.py +0 -40
- ory-client-1.20.10/ory_client/models/courier_message_type.py +0 -38
- ory-client-1.20.10/ory_client/models/create_custom_domain_body.py +0 -109
- ory-client-1.20.10/ory_client/models/create_event_stream_body.py +0 -112
- ory-client-1.20.10/ory_client/models/create_fedcm_flow_response.py +0 -111
- ory-client-1.20.10/ory_client/models/create_identity_body.py +0 -162
- ory-client-1.20.10/ory_client/models/create_invite_response.py +0 -114
- ory-client-1.20.10/ory_client/models/create_json_web_key_set.py +0 -105
- ory-client-1.20.10/ory_client/models/create_project_api_key_request.py +0 -104
- ory-client-1.20.10/ory_client/models/create_project_body.py +0 -124
- ory-client-1.20.10/ory_client/models/create_project_branding.py +0 -115
- ory-client-1.20.10/ory_client/models/create_project_member_invite_body.py +0 -101
- ory-client-1.20.10/ory_client/models/create_project_normalized_payload.py +0 -763
- ory-client-1.20.10/ory_client/models/create_recovery_code_for_identity_body.py +0 -116
- ory-client-1.20.10/ory_client/models/create_recovery_link_for_identity_body.py +0 -114
- ory-client-1.20.10/ory_client/models/create_relationship_body.py +0 -113
- ory-client-1.20.10/ory_client/models/create_subscription_body.py +0 -126
- ory-client-1.20.10/ory_client/models/create_subscription_common.py +0 -124
- ory-client-1.20.10/ory_client/models/create_verifiable_credential_request_body.py +0 -109
- ory-client-1.20.10/ory_client/models/create_workspace_api_key_body.py +0 -104
- ory-client-1.20.10/ory_client/models/create_workspace_body.py +0 -101
- ory-client-1.20.10/ory_client/models/create_workspace_member_invite_body.py +0 -110
- ory-client-1.20.10/ory_client/models/create_workspace_subscription_body.py +0 -124
- ory-client-1.20.10/ory_client/models/credential_supported_draft00.py +0 -107
- ory-client-1.20.10/ory_client/models/custom_domain.py +0 -132
- ory-client-1.20.10/ory_client/models/delete_my_sessions_count.py +0 -101
- ory-client-1.20.10/ory_client/models/email_template_data.py +0 -107
- ory-client-1.20.10/ory_client/models/email_template_data_body.py +0 -103
- ory-client-1.20.10/ory_client/models/error_authenticator_assurance_level_not_satisfied.py +0 -107
- ory-client-1.20.10/ory_client/models/error_browser_location_change_required.py +0 -107
- ory-client-1.20.10/ory_client/models/error_flow_replaced.py +0 -107
- ory-client-1.20.10/ory_client/models/error_generic.py +0 -105
- ory-client-1.20.10/ory_client/models/error_o_auth2.py +0 -109
- ory-client-1.20.10/ory_client/models/event_stream.py +0 -112
- ory-client-1.20.10/ory_client/models/expanded_permission_tree.py +0 -125
- ory-client-1.20.10/ory_client/models/flow_error.py +0 -108
- ory-client-1.20.10/ory_client/models/generic_error.py +0 -126
- ory-client-1.20.10/ory_client/models/generic_error_content.py +0 -121
- ory-client-1.20.10/ory_client/models/generic_usage.py +0 -107
- ory-client-1.20.10/ory_client/models/get_attributes_count_response.py +0 -111
- ory-client-1.20.10/ory_client/models/get_managed_identity_schema_location.py +0 -101
- ory-client-1.20.10/ory_client/models/get_metrics_event_attributes_response.py +0 -103
- ory-client-1.20.10/ory_client/models/get_metrics_event_types_response.py +0 -103
- ory-client-1.20.10/ory_client/models/get_organization_response.py +0 -105
- ory-client-1.20.10/ory_client/models/get_project_events_body.py +0 -120
- ory-client-1.20.10/ory_client/models/get_project_events_response.py +0 -115
- ory-client-1.20.10/ory_client/models/get_project_metrics_response.py +0 -111
- ory-client-1.20.10/ory_client/models/get_session_activity_response.py +0 -111
- ory-client-1.20.10/ory_client/models/get_version200_response.py +0 -101
- ory-client-1.20.10/ory_client/models/health_not_ready_status.py +0 -101
- ory-client-1.20.10/ory_client/models/health_status.py +0 -101
- ory-client-1.20.10/ory_client/models/identity.py +0 -187
- ory-client-1.20.10/ory_client/models/identity_credentials.py +0 -122
- ory-client-1.20.10/ory_client/models/identity_credentials_code.py +0 -109
- ory-client-1.20.10/ory_client/models/identity_credentials_code_address.py +0 -103
- ory-client-1.20.10/ory_client/models/identity_credentials_oidc.py +0 -109
- ory-client-1.20.10/ory_client/models/identity_credentials_oidc_provider.py +0 -113
- ory-client-1.20.10/ory_client/models/identity_credentials_password.py +0 -103
- ory-client-1.20.10/ory_client/models/identity_patch.py +0 -107
- ory-client-1.20.10/ory_client/models/identity_patch_response.py +0 -122
- ory-client-1.20.10/ory_client/models/identity_schema_container.py +0 -103
- ory-client-1.20.10/ory_client/models/identity_schema_preset.py +0 -103
- ory-client-1.20.10/ory_client/models/identity_with_credentials.py +0 -117
- ory-client-1.20.10/ory_client/models/identity_with_credentials_oidc.py +0 -105
- ory-client-1.20.10/ory_client/models/identity_with_credentials_oidc_config.py +0 -109
- ory-client-1.20.10/ory_client/models/identity_with_credentials_oidc_config_provider.py +0 -112
- ory-client-1.20.10/ory_client/models/identity_with_credentials_password.py +0 -105
- ory-client-1.20.10/ory_client/models/identity_with_credentials_password_config.py +0 -105
- ory-client-1.20.10/ory_client/models/identity_with_credentials_saml.py +0 -105
- ory-client-1.20.10/ory_client/models/identity_with_credentials_saml_config.py +0 -109
- ory-client-1.20.10/ory_client/models/identity_with_credentials_saml_config_provider.py +0 -110
- ory-client-1.20.10/ory_client/models/internal_get_project_branding_body.py +0 -101
- ory-client-1.20.10/ory_client/models/internal_is_ax_welcome_screen_enabled_for_project_body.py +0 -103
- ory-client-1.20.10/ory_client/models/internal_is_owner_for_project_by_slug_body.py +0 -114
- ory-client-1.20.10/ory_client/models/internal_is_owner_for_project_by_slug_response.py +0 -101
- ory-client-1.20.10/ory_client/models/introspected_o_auth2_token.py +0 -127
- ory-client-1.20.10/ory_client/models/invite_token_body.py +0 -101
- ory-client-1.20.10/ory_client/models/invoice.py +0 -125
- ory-client-1.20.10/ory_client/models/invoice_data_v1.py +0 -153
- ory-client-1.20.10/ory_client/models/is_owner_for_project_by_slug.py +0 -103
- ory-client-1.20.10/ory_client/models/json_patch.py +0 -119
- ory-client-1.20.10/ory_client/models/json_web_key.py +0 -133
- ory-client-1.20.10/ory_client/models/json_web_key_set.py +0 -109
- ory-client-1.20.10/ory_client/models/keto_namespace.py +0 -103
- ory-client-1.20.10/ory_client/models/line_item_v1.py +0 -120
- ory-client-1.20.10/ory_client/models/list_event_streams.py +0 -109
- ory-client-1.20.10/ory_client/models/list_invoices_response.py +0 -113
- ory-client-1.20.10/ory_client/models/list_organizations_response.py +0 -113
- ory-client-1.20.10/ory_client/models/list_workspace_projects.py +0 -113
- ory-client-1.20.10/ory_client/models/list_workspaces.py +0 -113
- ory-client-1.20.10/ory_client/models/login_flow.py +0 -165
- ory-client-1.20.10/ory_client/models/login_flow_state.py +0 -39
- ory-client-1.20.10/ory_client/models/logout_flow.py +0 -103
- ory-client-1.20.10/ory_client/models/managed_identity_schema.py +0 -120
- ory-client-1.20.10/ory_client/models/managed_identity_schema_validation_result.py +0 -103
- ory-client-1.20.10/ory_client/models/member_invite.py +0 -155
- ory-client-1.20.10/ory_client/models/message.py +0 -141
- ory-client-1.20.10/ory_client/models/message_dispatch.py +0 -119
- ory-client-1.20.10/ory_client/models/metrics_datapoint.py +0 -104
- ory-client-1.20.10/ory_client/models/money.py +0 -105
- ory-client-1.20.10/ory_client/models/namespace.py +0 -101
- ory-client-1.20.10/ory_client/models/needs_privileged_session_error.py +0 -107
- ory-client-1.20.10/ory_client/models/normalized_project.py +0 -182
- ory-client-1.20.10/ory_client/models/normalized_project_revision.py +0 -740
- ory-client-1.20.10/ory_client/models/normalized_project_revision_courier_channel.py +0 -145
- ory-client-1.20.10/ory_client/models/normalized_project_revision_hook.py +0 -140
- ory-client-1.20.10/ory_client/models/normalized_project_revision_identity_schema.py +0 -133
- ory-client-1.20.10/ory_client/models/normalized_project_revision_saml_provider.py +0 -139
- ory-client-1.20.10/ory_client/models/normalized_project_revision_scim_client.py +0 -130
- ory-client-1.20.10/ory_client/models/normalized_project_revision_third_party_provider.py +0 -218
- ory-client-1.20.10/ory_client/models/normalized_project_revision_tokenizer_template.py +0 -133
- ory-client-1.20.10/ory_client/models/o_auth2_client.py +0 -352
- ory-client-1.20.10/ory_client/models/o_auth2_client_token_lifespans.py +0 -270
- ory-client-1.20.10/ory_client/models/o_auth2_consent_request.py +0 -135
- ory-client-1.20.10/ory_client/models/o_auth2_consent_request_open_id_connect_context.py +0 -109
- ory-client-1.20.10/ory_client/models/o_auth2_consent_session.py +0 -132
- ory-client-1.20.10/ory_client/models/o_auth2_consent_session_expires_at.py +0 -110
- ory-client-1.20.10/ory_client/models/o_auth2_login_request.py +0 -125
- ory-client-1.20.10/ory_client/models/o_auth2_logout_request.py +0 -120
- ory-client-1.20.10/ory_client/models/o_auth2_redirect_to.py +0 -101
- ory-client-1.20.10/ory_client/models/o_auth2_token_exchange.py +0 -111
- ory-client-1.20.10/ory_client/models/oidc_configuration.py +0 -169
- ory-client-1.20.10/ory_client/models/oidc_user_info.py +0 -137
- ory-client-1.20.10/ory_client/models/organization.py +0 -116
- ory-client-1.20.10/ory_client/models/organization_body.py +0 -103
- ory-client-1.20.10/ory_client/models/pagination.py +0 -104
- ory-client-1.20.10/ory_client/models/pagination_headers.py +0 -103
- ory-client-1.20.10/ory_client/models/parse_error.py +0 -112
- ory-client-1.20.10/ory_client/models/patch_identities_body.py +0 -109
- ory-client-1.20.10/ory_client/models/perform_native_logout_body.py +0 -101
- ory-client-1.20.10/ory_client/models/permissions_on_workspace.py +0 -101
- ory-client-1.20.10/ory_client/models/plan.py +0 -103
- ory-client-1.20.10/ory_client/models/plan_details.py +0 -128
- ory-client-1.20.10/ory_client/models/post_check_permission_body.py +0 -113
- ory-client-1.20.10/ory_client/models/post_check_permission_or_error_body.py +0 -113
- ory-client-1.20.10/ory_client/models/project.py +0 -166
- ory-client-1.20.10/ory_client/models/project_api_key.py +0 -128
- ory-client-1.20.10/ory_client/models/project_branding.py +0 -129
- ory-client-1.20.10/ory_client/models/project_branding_colors.py +0 -157
- ory-client-1.20.10/ory_client/models/project_branding_theme.py +0 -194
- ory-client-1.20.10/ory_client/models/project_cors.py +0 -103
- ory-client-1.20.10/ory_client/models/project_events_datapoint.py +0 -114
- ory-client-1.20.10/ory_client/models/project_host.py +0 -107
- ory-client-1.20.10/ory_client/models/project_member.py +0 -109
- ory-client-1.20.10/ory_client/models/project_metadata.py +0 -170
- ory-client-1.20.10/ory_client/models/project_service_identity.py +0 -101
- ory-client-1.20.10/ory_client/models/project_service_o_auth2.py +0 -101
- ory-client-1.20.10/ory_client/models/project_service_permission.py +0 -101
- ory-client-1.20.10/ory_client/models/project_services.py +0 -117
- ory-client-1.20.10/ory_client/models/provider.py +0 -113
- ory-client-1.20.10/ory_client/models/quota_usage.py +0 -120
- ory-client-1.20.10/ory_client/models/recovery_code_for_identity.py +0 -106
- ory-client-1.20.10/ory_client/models/recovery_flow.py +0 -139
- ory-client-1.20.10/ory_client/models/recovery_flow_state.py +0 -39
- ory-client-1.20.10/ory_client/models/recovery_identity_address.py +0 -110
- ory-client-1.20.10/ory_client/models/recovery_link_for_identity.py +0 -104
- ory-client-1.20.10/ory_client/models/registration_flow.py +0 -156
- ory-client-1.20.10/ory_client/models/registration_flow_state.py +0 -39
- ory-client-1.20.10/ory_client/models/reject_o_auth2_request.py +0 -109
- ory-client-1.20.10/ory_client/models/relation_query.py +0 -113
- ory-client-1.20.10/ory_client/models/relationship.py +0 -113
- ory-client-1.20.10/ory_client/models/relationship_namespaces.py +0 -109
- ory-client-1.20.10/ory_client/models/relationship_patch.py +0 -117
- ory-client-1.20.10/ory_client/models/relationships.py +0 -111
- ory-client-1.20.10/ory_client/models/rfc6749_error_json.py +0 -109
- ory-client-1.20.10/ory_client/models/schema_patch.py +0 -103
- ory-client-1.20.10/ory_client/models/self_service_flow_expired_error.py +0 -112
- ory-client-1.20.10/ory_client/models/session.py +0 -141
- ory-client-1.20.10/ory_client/models/session_activity_datapoint.py +0 -105
- ory-client-1.20.10/ory_client/models/session_authentication_method.py +0 -121
- ory-client-1.20.10/ory_client/models/session_device.py +0 -107
- ory-client-1.20.10/ory_client/models/set_active_project_in_console_body.py +0 -101
- ory-client-1.20.10/ory_client/models/set_custom_domain_body.py +0 -109
- ory-client-1.20.10/ory_client/models/set_event_stream_body.py +0 -112
- ory-client-1.20.10/ory_client/models/set_project.py +0 -118
- ory-client-1.20.10/ory_client/models/set_project_branding_theme_body.py +0 -115
- ory-client-1.20.10/ory_client/models/settings_flow.py +0 -145
- ory-client-1.20.10/ory_client/models/settings_flow_state.py +0 -38
- ory-client-1.20.10/ory_client/models/source_position.py +0 -103
- ory-client-1.20.10/ory_client/models/subject_set.py +0 -105
- ory-client-1.20.10/ory_client/models/subscription.py +0 -179
- ory-client-1.20.10/ory_client/models/successful_code_exchange_response.py +0 -107
- ory-client-1.20.10/ory_client/models/successful_native_login.py +0 -117
- ory-client-1.20.10/ory_client/models/successful_native_registration.py +0 -123
- ory-client-1.20.10/ory_client/models/successful_project_update.py +0 -115
- ory-client-1.20.10/ory_client/models/tax_line_item.py +0 -103
- ory-client-1.20.10/ory_client/models/time_interval.py +0 -104
- ory-client-1.20.10/ory_client/models/token_pagination.py +0 -104
- ory-client-1.20.10/ory_client/models/token_pagination_headers.py +0 -103
- ory-client-1.20.10/ory_client/models/token_pagination_request_parameters.py +0 -104
- ory-client-1.20.10/ory_client/models/token_pagination_response_headers.py +0 -103
- ory-client-1.20.10/ory_client/models/trust_o_auth2_jwt_grant_issuer.py +0 -116
- ory-client-1.20.10/ory_client/models/trusted_o_auth2_jwt_grant_issuer.py +0 -120
- ory-client-1.20.10/ory_client/models/trusted_o_auth2_jwt_grant_json_web_key.py +0 -103
- ory-client-1.20.10/ory_client/models/ui_container.py +0 -123
- ory-client-1.20.10/ory_client/models/ui_node.py +0 -139
- ory-client-1.20.10/ory_client/models/ui_node_anchor_attributes.py +0 -118
- ory-client-1.20.10/ory_client/models/ui_node_attributes.py +0 -262
- ory-client-1.20.10/ory_client/models/ui_node_division_attributes.py +0 -114
- ory-client-1.20.10/ory_client/models/ui_node_image_attributes.py +0 -116
- ory-client-1.20.10/ory_client/models/ui_node_input_attributes.py +0 -180
- ory-client-1.20.10/ory_client/models/ui_node_meta.py +0 -105
- ory-client-1.20.10/ory_client/models/ui_node_script_attributes.py +0 -124
- ory-client-1.20.10/ory_client/models/ui_node_text_attributes.py +0 -116
- ory-client-1.20.10/ory_client/models/ui_text.py +0 -114
- ory-client-1.20.10/ory_client/models/update_fedcm_flow_body.py +0 -107
- ory-client-1.20.10/ory_client/models/update_identity_body.py +0 -132
- ory-client-1.20.10/ory_client/models/update_login_flow_body.py +0 -334
- ory-client-1.20.10/ory_client/models/update_login_flow_with_code_method.py +0 -113
- ory-client-1.20.10/ory_client/models/update_login_flow_with_identifier_first_method.py +0 -107
- ory-client-1.20.10/ory_client/models/update_login_flow_with_lookup_secret_method.py +0 -105
- ory-client-1.20.10/ory_client/models/update_login_flow_with_oidc_method.py +0 -115
- ory-client-1.20.10/ory_client/models/update_login_flow_with_passkey_method.py +0 -105
- ory-client-1.20.10/ory_client/models/update_login_flow_with_password_method.py +0 -111
- ory-client-1.20.10/ory_client/models/update_login_flow_with_saml_method.py +0 -107
- ory-client-1.20.10/ory_client/models/update_login_flow_with_totp_method.py +0 -107
- ory-client-1.20.10/ory_client/models/update_login_flow_with_web_authn_method.py +0 -109
- ory-client-1.20.10/ory_client/models/update_recovery_flow_body.py +0 -166
- ory-client-1.20.10/ory_client/models/update_recovery_flow_with_code_method.py +0 -116
- ory-client-1.20.10/ory_client/models/update_recovery_flow_with_link_method.py +0 -114
- ory-client-1.20.10/ory_client/models/update_registration_flow_body.py +0 -286
- ory-client-1.20.10/ory_client/models/update_registration_flow_with_code_method.py +0 -111
- ory-client-1.20.10/ory_client/models/update_registration_flow_with_oidc_method.py +0 -115
- ory-client-1.20.10/ory_client/models/update_registration_flow_with_passkey_method.py +0 -109
- ory-client-1.20.10/ory_client/models/update_registration_flow_with_password_method.py +0 -109
- ory-client-1.20.10/ory_client/models/update_registration_flow_with_profile_method.py +0 -119
- ory-client-1.20.10/ory_client/models/update_registration_flow_with_saml_method.py +0 -109
- ory-client-1.20.10/ory_client/models/update_registration_flow_with_web_authn_method.py +0 -111
- ory-client-1.20.10/ory_client/models/update_settings_flow_body.py +0 -310
- ory-client-1.20.10/ory_client/models/update_settings_flow_with_lookup_method.py +0 -113
- ory-client-1.20.10/ory_client/models/update_settings_flow_with_oidc_method.py +0 -113
- ory-client-1.20.10/ory_client/models/update_settings_flow_with_passkey_method.py +0 -107
- ory-client-1.20.10/ory_client/models/update_settings_flow_with_password_method.py +0 -107
- ory-client-1.20.10/ory_client/models/update_settings_flow_with_profile_method.py +0 -107
- ory-client-1.20.10/ory_client/models/update_settings_flow_with_saml_method.py +0 -113
- ory-client-1.20.10/ory_client/models/update_settings_flow_with_totp_method.py +0 -109
- ory-client-1.20.10/ory_client/models/update_settings_flow_with_web_authn_method.py +0 -111
- ory-client-1.20.10/ory_client/models/update_subscription_body.py +0 -112
- ory-client-1.20.10/ory_client/models/update_verification_flow_body.py +0 -166
- ory-client-1.20.10/ory_client/models/update_verification_flow_with_code_method.py +0 -116
- ory-client-1.20.10/ory_client/models/update_verification_flow_with_link_method.py +0 -114
- ory-client-1.20.10/ory_client/models/update_workspace_body.py +0 -101
- ory-client-1.20.10/ory_client/models/usage.py +0 -105
- ory-client-1.20.10/ory_client/models/verifiable_credential_priming_response.py +0 -115
- ory-client-1.20.10/ory_client/models/verifiable_credential_proof.py +0 -103
- ory-client-1.20.10/ory_client/models/verifiable_credential_response.py +0 -103
- ory-client-1.20.10/ory_client/models/verifiable_identity_address.py +0 -123
- ory-client-1.20.10/ory_client/models/verification_flow.py +0 -129
- ory-client-1.20.10/ory_client/models/verification_flow_state.py +0 -39
- ory-client-1.20.10/ory_client/models/version.py +0 -101
- ory-client-1.20.10/ory_client/models/warning.py +0 -103
- ory-client-1.20.10/ory_client/models/workspace.py +0 -122
- ory-client-1.20.10/ory_client/models/workspace_api_key.py +0 -128
- ory-client-1.20.10/ory_client/rest.py +0 -259
- ory-client-1.20.10/ory_client.egg-info/PKG-INFO +0 -14
- ory-client-1.20.10/pyproject.toml +0 -89
- ory-client-1.20.10/setup.py +0 -51
- ory-client-1.20.10/test/test_accept_o_auth2_consent_request.py +0 -64
- ory-client-1.20.10/test/test_accept_o_auth2_consent_request_session.py +0 -53
- ory-client-1.20.10/test/test_accept_o_auth2_login_request.py +0 -63
- ory-client-1.20.10/test/test_account_experience_colors.py +0 -194
- ory-client-1.20.10/test/test_account_experience_configuration.py +0 -82
- ory-client-1.20.10/test/test_account_experience_theme_variables.py +0 -142
- ory-client-1.20.10/test/test_active_project_in_console.py +0 -52
- ory-client-1.20.10/test/test_add_project_to_workspace_body.py +0 -55
- ory-client-1.20.10/test/test_attribute.py +0 -53
- ory-client-1.20.10/test/test_attribute_filter.py +0 -54
- ory-client-1.20.10/test/test_attributes_count_datapoint.py +0 -55
- ory-client-1.20.10/test/test_authenticator_assurance_level.py +0 -34
- ory-client-1.20.10/test/test_batch_check_permission_body.py +0 -62
- ory-client-1.20.10/test/test_batch_check_permission_result.py +0 -61
- ory-client-1.20.10/test/test_batch_patch_identities_response.py +0 -58
- ory-client-1.20.10/test/test_billing_period_bucket.py +0 -112
- ory-client-1.20.10/test/test_check_opl_syntax_result.py +0 -61
- ory-client-1.20.10/test/test_check_permission_result.py +0 -53
- ory-client-1.20.10/test/test_check_permission_result_with_error.py +0 -54
- ory-client-1.20.10/test/test_cloud_account.py +0 -59
- ory-client-1.20.10/test/test_consistency_request_parameters.py +0 -52
- ory-client-1.20.10/test/test_continue_with.py +0 -63
- ory-client-1.20.10/test/test_continue_with_recovery_ui.py +0 -59
- ory-client-1.20.10/test/test_continue_with_recovery_ui_flow.py +0 -54
- ory-client-1.20.10/test/test_continue_with_redirect_browser_to.py +0 -55
- ory-client-1.20.10/test/test_continue_with_set_ory_session_token.py +0 -55
- ory-client-1.20.10/test/test_continue_with_settings_ui.py +0 -59
- ory-client-1.20.10/test/test_continue_with_settings_ui_flow.py +0 -54
- ory-client-1.20.10/test/test_continue_with_verification_ui.py +0 -61
- ory-client-1.20.10/test/test_continue_with_verification_ui_flow.py +0 -56
- ory-client-1.20.10/test/test_courier_api.py +0 -46
- ory-client-1.20.10/test/test_courier_message_status.py +0 -34
- ory-client-1.20.10/test/test_courier_message_type.py +0 -34
- ory-client-1.20.10/test/test_create_custom_domain_body.py +0 -58
- ory-client-1.20.10/test/test_create_event_stream_body.py +0 -57
- ory-client-1.20.10/test/test_create_fedcm_flow_response.py +0 -66
- ory-client-1.20.10/test/test_create_identity_body.py +0 -90
- ory-client-1.20.10/test/test_create_invite_response.py +0 -103
- ory-client-1.20.10/test/test_create_json_web_key_set.py +0 -57
- ory-client-1.20.10/test/test_create_project_api_key_request.py +0 -54
- ory-client-1.20.10/test/test_create_project_body.py +0 -57
- ory-client-1.20.10/test/test_create_project_branding.py +0 -86
- ory-client-1.20.10/test/test_create_project_member_invite_body.py +0 -52
- ory-client-1.20.10/test/test_create_project_normalized_payload.py +0 -433
- ory-client-1.20.10/test/test_create_recovery_code_for_identity_body.py +0 -55
- ory-client-1.20.10/test/test_create_recovery_link_for_identity_body.py +0 -54
- ory-client-1.20.10/test/test_create_relationship_body.py +0 -59
- ory-client-1.20.10/test/test_create_subscription_body.py +0 -59
- ory-client-1.20.10/test/test_create_subscription_common.py +0 -57
- ory-client-1.20.10/test/test_create_verifiable_credential_request_body.py +0 -58
- ory-client-1.20.10/test/test_create_workspace_api_key_body.py +0 -54
- ory-client-1.20.10/test/test_create_workspace_body.py +0 -53
- ory-client-1.20.10/test/test_create_workspace_member_invite_body.py +0 -55
- ory-client-1.20.10/test/test_create_workspace_subscription_body.py +0 -57
- ory-client-1.20.10/test/test_credential_supported_draft00.py +0 -61
- ory-client-1.20.10/test/test_custom_domain.py +0 -66
- ory-client-1.20.10/test/test_delete_my_sessions_count.py +0 -52
- ory-client-1.20.10/test/test_email_template_data.py +0 -59
- ory-client-1.20.10/test/test_email_template_data_body.py +0 -55
- ory-client-1.20.10/test/test_error_authenticator_assurance_level_not_satisfied.py +0 -67
- ory-client-1.20.10/test/test_error_browser_location_change_required.py +0 -59
- ory-client-1.20.10/test/test_error_flow_replaced.py +0 -67
- ory-client-1.20.10/test/test_error_generic.py +0 -63
- ory-client-1.20.10/test/test_error_o_auth2.py +0 -56
- ory-client-1.20.10/test/test_event_stream.py +0 -57
- ory-client-1.20.10/test/test_events_api.py +0 -60
- ory-client-1.20.10/test/test_expanded_permission_tree.py +0 -84
- ory-client-1.20.10/test/test_flow_error.py +0 -56
- ory-client-1.20.10/test/test_frontend_api.py +0 -256
- ory-client-1.20.10/test/test_generic_error.py +0 -66
- ory-client-1.20.10/test/test_generic_error_content.py +0 -57
- ory-client-1.20.10/test/test_generic_usage.py +0 -61
- ory-client-1.20.10/test/test_get_attributes_count_response.py +0 -61
- ory-client-1.20.10/test/test_get_managed_identity_schema_location.py +0 -52
- ory-client-1.20.10/test/test_get_metrics_event_attributes_response.py +0 -57
- ory-client-1.20.10/test/test_get_metrics_event_types_response.py +0 -57
- ory-client-1.20.10/test/test_get_organization_response.py +0 -69
- ory-client-1.20.10/test/test_get_project_events_body.py +0 -64
- ory-client-1.20.10/test/test_get_project_events_response.py +0 -72
- ory-client-1.20.10/test/test_get_project_metrics_response.py +0 -61
- ory-client-1.20.10/test/test_get_session_activity_response.py +0 -63
- ory-client-1.20.10/test/test_get_version200_response.py +0 -53
- ory-client-1.20.10/test/test_health_not_ready_status.py +0 -54
- ory-client-1.20.10/test/test_health_status.py +0 -52
- ory-client-1.20.10/test/test_identity.py +0 -96
- ory-client-1.20.10/test/test_identity_api.py +0 -158
- ory-client-1.20.10/test/test_identity_credentials.py +0 -59
- ory-client-1.20.10/test/test_identity_credentials_code.py +0 -56
- ory-client-1.20.10/test/test_identity_credentials_code_address.py +0 -53
- ory-client-1.20.10/test/test_identity_credentials_oidc.py +0 -61
- ory-client-1.20.10/test/test_identity_credentials_oidc_provider.py +0 -58
- ory-client-1.20.10/test/test_identity_credentials_password.py +0 -53
- ory-client-1.20.10/test/test_identity_patch.py +0 -90
- ory-client-1.20.10/test/test_identity_patch_response.py +0 -55
- ory-client-1.20.10/test/test_identity_schema_container.py +0 -53
- ory-client-1.20.10/test/test_identity_schema_preset.py +0 -55
- ory-client-1.20.10/test/test_identity_with_credentials.py +0 -72
- ory-client-1.20.10/test/test_identity_with_credentials_oidc.py +0 -59
- ory-client-1.20.10/test/test_identity_with_credentials_oidc_config.py +0 -58
- ory-client-1.20.10/test/test_identity_with_credentials_oidc_config_provider.py +0 -57
- ory-client-1.20.10/test/test_identity_with_credentials_password.py +0 -55
- ory-client-1.20.10/test/test_identity_with_credentials_password_config.py +0 -54
- ory-client-1.20.10/test/test_identity_with_credentials_saml.py +0 -58
- ory-client-1.20.10/test/test_identity_with_credentials_saml_config.py +0 -57
- ory-client-1.20.10/test/test_identity_with_credentials_saml_config_provider.py +0 -56
- ory-client-1.20.10/test/test_internal_get_project_branding_body.py +0 -52
- ory-client-1.20.10/test/test_internal_is_ax_welcome_screen_enabled_for_project_body.py +0 -55
- ory-client-1.20.10/test/test_internal_is_owner_for_project_by_slug_body.py +0 -58
- ory-client-1.20.10/test/test_internal_is_owner_for_project_by_slug_response.py +0 -53
- ory-client-1.20.10/test/test_introspected_o_auth2_token.py +0 -70
- ory-client-1.20.10/test/test_invite_token_body.py +0 -53
- ory-client-1.20.10/test/test_invoice.py +0 -82
- ory-client-1.20.10/test/test_invoice_data_v1.py +0 -88
- ory-client-1.20.10/test/test_is_owner_for_project_by_slug.py +0 -55
- ory-client-1.20.10/test/test_json_patch.py +0 -57
- ory-client-1.20.10/test/test_json_web_key.py +0 -74
- ory-client-1.20.10/test/test_json_web_key_set.py +0 -73
- ory-client-1.20.10/test/test_jwk_api.py +0 -81
- ory-client-1.20.10/test/test_keto_namespace.py +0 -53
- ory-client-1.20.10/test/test_line_item_v1.py +0 -64
- ory-client-1.20.10/test/test_list_event_streams.py +0 -60
- ory-client-1.20.10/test/test_list_invoices_response.py +0 -139
- ory-client-1.20.10/test/test_list_organizations_response.py +0 -77
- ory-client-1.20.10/test/test_list_workspace_projects.py +0 -99
- ory-client-1.20.10/test/test_list_workspaces.py +0 -73
- ory-client-1.20.10/test/test_login_flow.py +0 -196
- ory-client-1.20.10/test/test_login_flow_state.py +0 -34
- ory-client-1.20.10/test/test_logout_flow.py +0 -55
- ory-client-1.20.10/test/test_managed_identity_schema.py +0 -64
- ory-client-1.20.10/test/test_managed_identity_schema_validation_result.py +0 -53
- ory-client-1.20.10/test/test_member_invite.py +0 -69
- ory-client-1.20.10/test/test_message.py +0 -81
- ory-client-1.20.10/test/test_message_dispatch.py +0 -62
- ory-client-1.20.10/test/test_metadata_api.py +0 -39
- ory-client-1.20.10/test/test_metrics_datapoint.py +0 -55
- ory-client-1.20.10/test/test_money.py +0 -54
- ory-client-1.20.10/test/test_namespace.py +0 -52
- ory-client-1.20.10/test/test_needs_privileged_session_error.py +0 -68
- ory-client-1.20.10/test/test_normalized_project.py +0 -772
- ory-client-1.20.10/test/test_normalized_project_revision.py +0 -429
- ory-client-1.20.10/test/test_normalized_project_revision_courier_channel.py +0 -67
- ory-client-1.20.10/test/test_normalized_project_revision_hook.py +0 -71
- ory-client-1.20.10/test/test_normalized_project_revision_identity_schema.py +0 -68
- ory-client-1.20.10/test/test_normalized_project_revision_saml_provider.py +0 -61
- ory-client-1.20.10/test/test_normalized_project_revision_scim_client.py +0 -64
- ory-client-1.20.10/test/test_normalized_project_revision_third_party_provider.py +0 -82
- ory-client-1.20.10/test/test_normalized_project_revision_tokenizer_template.py +0 -59
- ory-client-1.20.10/test/test_o_auth2_api.py +0 -228
- ory-client-1.20.10/test/test_o_auth2_client.py +0 -115
- ory-client-1.20.10/test/test_o_auth2_client_token_lifespans.py +0 -61
- ory-client-1.20.10/test/test_o_auth2_consent_request.py +0 -135
- ory-client-1.20.10/test/test_o_auth2_consent_request_open_id_connect_context.py +0 -62
- ory-client-1.20.10/test/test_o_auth2_consent_session.py +0 -149
- ory-client-1.20.10/test/test_o_auth2_consent_session_expires_at.py +0 -56
- ory-client-1.20.10/test/test_o_auth2_login_request.py +0 -184
- ory-client-1.20.10/test/test_o_auth2_logout_request.py +0 -111
- ory-client-1.20.10/test/test_o_auth2_redirect_to.py +0 -53
- ory-client-1.20.10/test/test_o_auth2_token_exchange.py +0 -57
- ory-client-1.20.10/test/test_oidc_api.py +0 -88
- ory-client-1.20.10/test/test_oidc_configuration.py +0 -139
- ory-client-1.20.10/test/test_oidc_user_info.py +0 -70
- ory-client-1.20.10/test/test_organization.py +0 -67
- ory-client-1.20.10/test/test_organization_body.py +0 -55
- ory-client-1.20.10/test/test_pagination.py +0 -53
- ory-client-1.20.10/test/test_pagination_headers.py +0 -53
- ory-client-1.20.10/test/test_parse_error.py +0 -58
- ory-client-1.20.10/test/test_patch_identities_body.py +0 -93
- ory-client-1.20.10/test/test_perform_native_logout_body.py +0 -53
- ory-client-1.20.10/test/test_permission_api.py +0 -74
- ory-client-1.20.10/test/test_permissions_on_workspace.py +0 -54
- ory-client-1.20.10/test/test_plan.py +0 -55
- ory-client-1.20.10/test/test_plan_details.py +0 -80
- ory-client-1.20.10/test/test_post_check_permission_body.py +0 -59
- ory-client-1.20.10/test/test_post_check_permission_or_error_body.py +0 -59
- ory-client-1.20.10/test/test_project.py +0 -90
- ory-client-1.20.10/test/test_project_api.py +0 -151
- ory-client-1.20.10/test/test_project_api_key.py +0 -62
- ory-client-1.20.10/test/test_project_branding.py +0 -599
- ory-client-1.20.10/test/test_project_branding_colors.py +0 -80
- ory-client-1.20.10/test/test_project_branding_theme.py +0 -189
- ory-client-1.20.10/test/test_project_cors.py +0 -55
- ory-client-1.20.10/test/test_project_events_datapoint.py +0 -65
- ory-client-1.20.10/test/test_project_host.py +0 -57
- ory-client-1.20.10/test/test_project_member.py +0 -61
- ory-client-1.20.10/test/test_project_metadata.py +0 -83
- ory-client-1.20.10/test/test_project_service_identity.py +0 -53
- ory-client-1.20.10/test/test_project_service_o_auth2.py +0 -53
- ory-client-1.20.10/test/test_project_service_permission.py +0 -53
- ory-client-1.20.10/test/test_project_services.py +0 -57
- ory-client-1.20.10/test/test_provider.py +0 -62
- ory-client-1.20.10/test/test_quota_usage.py +0 -65
- ory-client-1.20.10/test/test_recovery_code_for_identity.py +0 -56
- ory-client-1.20.10/test/test_recovery_flow.py +0 -119
- ory-client-1.20.10/test/test_recovery_flow_state.py +0 -34
- ory-client-1.20.10/test/test_recovery_identity_address.py +0 -59
- ory-client-1.20.10/test/test_recovery_link_for_identity.py +0 -54
- ory-client-1.20.10/test/test_registration_flow.py +0 -192
- ory-client-1.20.10/test/test_registration_flow_state.py +0 -34
- ory-client-1.20.10/test/test_reject_o_auth2_request.py +0 -56
- ory-client-1.20.10/test/test_relation_query.py +0 -59
- ory-client-1.20.10/test/test_relationship.py +0 -62
- ory-client-1.20.10/test/test_relationship_api.py +0 -74
- ory-client-1.20.10/test/test_relationship_namespaces.py +0 -55
- ory-client-1.20.10/test/test_relationship_patch.py +0 -61
- ory-client-1.20.10/test/test_relationships.py +0 -63
- ory-client-1.20.10/test/test_rfc6749_error_json.py +0 -56
- ory-client-1.20.10/test/test_schema_patch.py +0 -55
- ory-client-1.20.10/test/test_self_service_flow_expired_error.py +0 -69
- ory-client-1.20.10/test/test_session.py +0 -116
- ory-client-1.20.10/test/test_session_activity_datapoint.py +0 -57
- ory-client-1.20.10/test/test_session_authentication_method.py +0 -56
- ory-client-1.20.10/test/test_session_device.py +0 -56
- ory-client-1.20.10/test/test_set_active_project_in_console_body.py +0 -53
- ory-client-1.20.10/test/test_set_custom_domain_body.py +0 -58
- ory-client-1.20.10/test/test_set_event_stream_body.py +0 -57
- ory-client-1.20.10/test/test_set_project.py +0 -87
- ory-client-1.20.10/test/test_set_project_branding_theme_body.py +0 -86
- ory-client-1.20.10/test/test_settings_flow.py +0 -203
- ory-client-1.20.10/test/test_settings_flow_state.py +0 -34
- ory-client-1.20.10/test/test_source_position.py +0 -53
- ory-client-1.20.10/test/test_subject_set.py +0 -57
- ory-client-1.20.10/test/test_subscription.py +0 -92
- ory-client-1.20.10/test/test_successful_code_exchange_response.py +0 -182
- ory-client-1.20.10/test/test_successful_native_login.py +0 -185
- ory-client-1.20.10/test/test_successful_native_registration.py +0 -204
- ory-client-1.20.10/test/test_successful_project_update.py +0 -107
- ory-client-1.20.10/test/test_tax_line_item.py +0 -53
- ory-client-1.20.10/test/test_time_interval.py +0 -55
- ory-client-1.20.10/test/test_token_pagination.py +0 -53
- ory-client-1.20.10/test/test_token_pagination_headers.py +0 -53
- ory-client-1.20.10/test/test_token_pagination_request_parameters.py +0 -53
- ory-client-1.20.10/test/test_token_pagination_response_headers.py +0 -53
- ory-client-1.20.10/test/test_trust_o_auth2_jwt_grant_issuer.py +0 -99
- ory-client-1.20.10/test/test_trusted_o_auth2_jwt_grant_issuer.py +0 -61
- ory-client-1.20.10/test/test_trusted_o_auth2_jwt_grant_json_web_key.py +0 -53
- ory-client-1.20.10/test/test_ui_container.py +0 -100
- ory-client-1.20.10/test/test_ui_node.py +0 -83
- ory-client-1.20.10/test/test_ui_node_anchor_attributes.py +0 -67
- ory-client-1.20.10/test/test_ui_node_attributes.py +0 -117
- ory-client-1.20.10/test/test_ui_node_division_attributes.py +0 -59
- ory-client-1.20.10/test/test_ui_node_image_attributes.py +0 -61
- ory-client-1.20.10/test/test_ui_node_input_attributes.py +0 -73
- ory-client-1.20.10/test/test_ui_node_meta.py +0 -56
- ory-client-1.20.10/test/test_ui_node_script_attributes.py +0 -69
- ory-client-1.20.10/test/test_ui_node_text_attributes.py +0 -65
- ory-client-1.20.10/test/test_ui_text.py +0 -58
- ory-client-1.20.10/test/test_update_fedcm_flow_body.py +0 -57
- ory-client-1.20.10/test/test_update_identity_body.py +0 -71
- ory-client-1.20.10/test/test_update_login_flow_body.py +0 -76
- ory-client-1.20.10/test/test_update_login_flow_with_code_method.py +0 -60
- ory-client-1.20.10/test/test_update_login_flow_with_identifier_first_method.py +0 -57
- ory-client-1.20.10/test/test_update_login_flow_with_lookup_secret_method.py +0 -56
- ory-client-1.20.10/test/test_update_login_flow_with_oidc_method.py +0 -61
- ory-client-1.20.10/test/test_update_login_flow_with_passkey_method.py +0 -55
- ory-client-1.20.10/test/test_update_login_flow_with_password_method.py +0 -60
- ory-client-1.20.10/test/test_update_login_flow_with_saml_method.py +0 -57
- ory-client-1.20.10/test/test_update_login_flow_with_totp_method.py +0 -57
- ory-client-1.20.10/test/test_update_login_flow_with_web_authn_method.py +0 -58
- ory-client-1.20.10/test/test_update_recovery_flow_body.py +0 -58
- ory-client-1.20.10/test/test_update_recovery_flow_with_code_method.py +0 -57
- ory-client-1.20.10/test/test_update_recovery_flow_with_link_method.py +0 -57
- ory-client-1.20.10/test/test_update_registration_flow_body.py +0 -70
- ory-client-1.20.10/test/test_update_registration_flow_with_code_method.py +0 -59
- ory-client-1.20.10/test/test_update_registration_flow_with_oidc_method.py +0 -61
- ory-client-1.20.10/test/test_update_registration_flow_with_passkey_method.py +0 -58
- ory-client-1.20.10/test/test_update_registration_flow_with_password_method.py +0 -59
- ory-client-1.20.10/test/test_update_registration_flow_with_profile_method.py +0 -58
- ory-client-1.20.10/test/test_update_registration_flow_with_saml_method.py +0 -58
- ory-client-1.20.10/test/test_update_registration_flow_with_web_authn_method.py +0 -59
- ory-client-1.20.10/test/test_update_settings_flow_body.py +0 -74
- ory-client-1.20.10/test/test_update_settings_flow_with_lookup_method.py +0 -59
- ory-client-1.20.10/test/test_update_settings_flow_with_oidc_method.py +0 -59
- ory-client-1.20.10/test/test_update_settings_flow_with_passkey_method.py +0 -56
- ory-client-1.20.10/test/test_update_settings_flow_with_password_method.py +0 -57
- ory-client-1.20.10/test/test_update_settings_flow_with_profile_method.py +0 -57
- ory-client-1.20.10/test/test_update_settings_flow_with_saml_method.py +0 -59
- ory-client-1.20.10/test/test_update_settings_flow_with_totp_method.py +0 -57
- ory-client-1.20.10/test/test_update_settings_flow_with_web_authn_method.py +0 -58
- ory-client-1.20.10/test/test_update_subscription_body.py +0 -56
- ory-client-1.20.10/test/test_update_verification_flow_body.py +0 -58
- ory-client-1.20.10/test/test_update_verification_flow_with_code_method.py +0 -57
- ory-client-1.20.10/test/test_update_verification_flow_with_link_method.py +0 -57
- ory-client-1.20.10/test/test_update_workspace_body.py +0 -53
- ory-client-1.20.10/test/test_usage.py +0 -57
- ory-client-1.20.10/test/test_verifiable_credential_priming_response.py +0 -59
- ory-client-1.20.10/test/test_verifiable_credential_proof.py +0 -53
- ory-client-1.20.10/test/test_verifiable_credential_response.py +0 -53
- ory-client-1.20.10/test/test_verifiable_identity_address.py +0 -63
- ory-client-1.20.10/test/test_verification_flow.py +0 -113
- ory-client-1.20.10/test/test_verification_flow_state.py +0 -34
- ory-client-1.20.10/test/test_version.py +0 -52
- ory-client-1.20.10/test/test_warning.py +0 -53
- ory-client-1.20.10/test/test_wellknown_api.py +0 -39
- ory-client-1.20.10/test/test_workspace.py +0 -61
- ory-client-1.20.10/test/test_workspace_api.py +0 -88
- ory-client-1.20.10/test/test_workspace_api_key.py +0 -62
- {ory-client-1.20.10 → ory-client-1.20.11}/LICENSE +0 -0
- {ory-client-1.20.10 → ory-client-1.20.11}/ory_client/api/__init__.py +0 -0
- {ory-client-1.20.10 → ory-client-1.20.11}/ory_client/api_response.py +0 -0
- {ory-client-1.20.10 → ory-client-1.20.11}/ory_client/py.typed +0 -0
- {ory-client-1.20.10 → ory-client-1.20.11}/ory_client.egg-info/SOURCES.txt +0 -0
- {ory-client-1.20.10 → ory-client-1.20.11}/ory_client.egg-info/dependency_links.txt +0 -0
- {ory-client-1.20.10 → ory-client-1.20.11}/ory_client.egg-info/requires.txt +0 -0
- {ory-client-1.20.10 → ory-client-1.20.11}/ory_client.egg-info/top_level.txt +0 -0
- {ory-client-1.20.10 → ory-client-1.20.11}/setup.cfg +0 -0
@@ -0,0 +1,14 @@
|
|
1
|
+
Metadata-Version: 2.1
|
2
|
+
Name: ory-client
|
3
|
+
Version: 1.20.11
|
4
|
+
Summary: Ory APIs
|
5
|
+
Home-page: https://github.com/ory/sdk
|
6
|
+
Author: API Support
|
7
|
+
Author-email: support@ory.sh
|
8
|
+
License: Apache 2.0
|
9
|
+
Keywords: OpenAPI,OpenAPI-Generator,Ory APIs
|
10
|
+
Description-Content-Type: text/markdown
|
11
|
+
License-File: LICENSE
|
12
|
+
|
13
|
+
# Introduction 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. ## SDKs This document describes the APIs available in the Ory Network. The APIs are available as SDKs for the following languages: | Language | Download SDK | Documentation | | -------------- | ---------------------------------------------------------------- | ------------------------------------------------------------------------------------ | | Dart | [pub.dev](https://pub.dev/packages/ory_client) | [README](https://github.com/ory/sdk/blob/master/clients/client/dart/README.md) | | .NET | [nuget.org](https://www.nuget.org/packages/Ory.Client/) | [README](https://github.com/ory/sdk/blob/master/clients/client/dotnet/README.md) | | Elixir | [hex.pm](https://hex.pm/packages/ory_client) | [README](https://github.com/ory/sdk/blob/master/clients/client/elixir/README.md) | | Go | [github.com](https://github.com/ory/client-go) | [README](https://github.com/ory/sdk/blob/master/clients/client/go/README.md) | | Java | [maven.org](https://search.maven.org/artifact/sh.ory/ory-client) | [README](https://github.com/ory/sdk/blob/master/clients/client/java/README.md) | | JavaScript | [npmjs.com](https://www.npmjs.com/package/@ory/client) | [README](https://github.com/ory/sdk/blob/master/clients/client/typescript/README.md) | | JavaScript (With fetch) | [npmjs.com](https://www.npmjs.com/package/@ory/client-fetch) | [README](https://github.com/ory/sdk/blob/master/clients/client/typescript-fetch/README.md) | | PHP | [packagist.org](https://packagist.org/packages/ory/client) | [README](https://github.com/ory/sdk/blob/master/clients/client/php/README.md) | | Python | [pypi.org](https://pypi.org/project/ory-client/) | [README](https://github.com/ory/sdk/blob/master/clients/client/python/README.md) | | Ruby | [rubygems.org](https://rubygems.org/gems/ory-client) | [README](https://github.com/ory/sdk/blob/master/clients/client/ruby/README.md) | | Rust | [crates.io](https://crates.io/crates/ory-client) | [README](https://github.com/ory/sdk/blob/master/clients/client/rust/README.md) |
|
14
|
+
|
@@ -0,0 +1,585 @@
|
|
1
|
+
# ory-client
|
2
|
+
# Introduction
|
3
|
+
Documentation for all public and administrative Ory APIs. Administrative APIs can only be accessed
|
4
|
+
with a valid Personal Access Token. Public APIs are mostly used in browsers.
|
5
|
+
|
6
|
+
## SDKs
|
7
|
+
This document describes the APIs available in the Ory Network. The APIs are available as SDKs for the following languages:
|
8
|
+
|
9
|
+
| Language | Download SDK | Documentation |
|
10
|
+
| -------------- | ---------------------------------------------------------------- | ------------------------------------------------------------------------------------ |
|
11
|
+
| Dart | [pub.dev](https://pub.dev/packages/ory_client) | [README](https://github.com/ory/sdk/blob/master/clients/client/dart/README.md) |
|
12
|
+
| .NET | [nuget.org](https://www.nuget.org/packages/Ory.Client/) | [README](https://github.com/ory/sdk/blob/master/clients/client/dotnet/README.md) |
|
13
|
+
| Elixir | [hex.pm](https://hex.pm/packages/ory_client) | [README](https://github.com/ory/sdk/blob/master/clients/client/elixir/README.md) |
|
14
|
+
| Go | [github.com](https://github.com/ory/client-go) | [README](https://github.com/ory/sdk/blob/master/clients/client/go/README.md) |
|
15
|
+
| Java | [maven.org](https://search.maven.org/artifact/sh.ory/ory-client) | [README](https://github.com/ory/sdk/blob/master/clients/client/java/README.md) |
|
16
|
+
| JavaScript | [npmjs.com](https://www.npmjs.com/package/@ory/client) | [README](https://github.com/ory/sdk/blob/master/clients/client/typescript/README.md) |
|
17
|
+
| JavaScript (With fetch) | [npmjs.com](https://www.npmjs.com/package/@ory/client-fetch) | [README](https://github.com/ory/sdk/blob/master/clients/client/typescript-fetch/README.md) |
|
18
|
+
| PHP | [packagist.org](https://packagist.org/packages/ory/client) | [README](https://github.com/ory/sdk/blob/master/clients/client/php/README.md) |
|
19
|
+
| Python | [pypi.org](https://pypi.org/project/ory-client/) | [README](https://github.com/ory/sdk/blob/master/clients/client/python/README.md) |
|
20
|
+
| Ruby | [rubygems.org](https://rubygems.org/gems/ory-client) | [README](https://github.com/ory/sdk/blob/master/clients/client/ruby/README.md) |
|
21
|
+
| Rust | [crates.io](https://crates.io/crates/ory-client) | [README](https://github.com/ory/sdk/blob/master/clients/client/rust/README.md) |
|
22
|
+
|
23
|
+
|
24
|
+
This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
|
25
|
+
|
26
|
+
- API version: v1.20.11
|
27
|
+
- Package version: v1.20.11
|
28
|
+
- Generator version: 7.12.0
|
29
|
+
- Build package: org.openapitools.codegen.languages.PythonClientCodegen
|
30
|
+
|
31
|
+
## Requirements.
|
32
|
+
|
33
|
+
Python 3.8+
|
34
|
+
|
35
|
+
## Installation & Usage
|
36
|
+
### pip install
|
37
|
+
|
38
|
+
If the python package is hosted on a repository, you can install directly using:
|
39
|
+
|
40
|
+
```sh
|
41
|
+
pip install git+https://github.com/ory/sdk.git
|
42
|
+
```
|
43
|
+
(you may need to run `pip` with root permission: `sudo pip install git+https://github.com/ory/sdk.git`)
|
44
|
+
|
45
|
+
Then import the package:
|
46
|
+
```python
|
47
|
+
import ory_client
|
48
|
+
```
|
49
|
+
|
50
|
+
### Setuptools
|
51
|
+
|
52
|
+
Install via [Setuptools](http://pypi.python.org/pypi/setuptools).
|
53
|
+
|
54
|
+
```sh
|
55
|
+
python setup.py install --user
|
56
|
+
```
|
57
|
+
(or `sudo python setup.py install` to install the package for all users)
|
58
|
+
|
59
|
+
Then import the package:
|
60
|
+
```python
|
61
|
+
import ory_client
|
62
|
+
```
|
63
|
+
|
64
|
+
### Tests
|
65
|
+
|
66
|
+
Execute `pytest` to run the tests.
|
67
|
+
|
68
|
+
## Getting Started
|
69
|
+
|
70
|
+
Please follow the [installation procedure](#installation--usage) and then run the following:
|
71
|
+
|
72
|
+
```python
|
73
|
+
|
74
|
+
import ory_client
|
75
|
+
from ory_client.rest import ApiException
|
76
|
+
from pprint import pprint
|
77
|
+
|
78
|
+
# Defining the host is optional and defaults to https://playground.projects.oryapis.com
|
79
|
+
# See configuration.py for a list of all supported configuration parameters.
|
80
|
+
configuration = ory_client.Configuration(
|
81
|
+
host = "https://playground.projects.oryapis.com"
|
82
|
+
)
|
83
|
+
|
84
|
+
# The client must configure the authentication and authorization parameters
|
85
|
+
# in accordance with the API server security policy.
|
86
|
+
# Examples for each auth method are provided below, use the example that
|
87
|
+
# satisfies your auth use case.
|
88
|
+
|
89
|
+
# Configure Bearer authorization: oryAccessToken
|
90
|
+
configuration = ory_client.Configuration(
|
91
|
+
access_token = os.environ["BEARER_TOKEN"]
|
92
|
+
)
|
93
|
+
|
94
|
+
|
95
|
+
# Enter a context with an instance of the API client
|
96
|
+
with ory_client.ApiClient(configuration) as api_client:
|
97
|
+
# Create an instance of the API class
|
98
|
+
api_instance = ory_client.CourierApi(api_client)
|
99
|
+
id = 'id_example' # str | MessageID is the ID of the message.
|
100
|
+
|
101
|
+
try:
|
102
|
+
# Get a Message
|
103
|
+
api_response = api_instance.get_courier_message(id)
|
104
|
+
print("The response of CourierApi->get_courier_message:\n")
|
105
|
+
pprint(api_response)
|
106
|
+
except ApiException as e:
|
107
|
+
print("Exception when calling CourierApi->get_courier_message: %s\n" % e)
|
108
|
+
|
109
|
+
```
|
110
|
+
|
111
|
+
## Documentation for API Endpoints
|
112
|
+
|
113
|
+
All URIs are relative to *https://playground.projects.oryapis.com*
|
114
|
+
|
115
|
+
Class | Method | HTTP request | Description
|
116
|
+
------------ | ------------- | ------------- | -------------
|
117
|
+
*CourierApi* | [**get_courier_message**](docs/CourierApi.md#get_courier_message) | **GET** /admin/courier/messages/{id} | Get a Message
|
118
|
+
*CourierApi* | [**list_courier_messages**](docs/CourierApi.md#list_courier_messages) | **GET** /admin/courier/messages | List Messages
|
119
|
+
*EventsApi* | [**create_event_stream**](docs/EventsApi.md#create_event_stream) | **POST** /projects/{project_id}/eventstreams | Create an event stream for your project.
|
120
|
+
*EventsApi* | [**delete_event_stream**](docs/EventsApi.md#delete_event_stream) | **DELETE** /projects/{project_id}/eventstreams/{event_stream_id} | Remove an event stream from a project
|
121
|
+
*EventsApi* | [**list_event_streams**](docs/EventsApi.md#list_event_streams) | **GET** /projects/{project_id}/eventstreams | List all event streams for the project. This endpoint is not paginated.
|
122
|
+
*EventsApi* | [**set_event_stream**](docs/EventsApi.md#set_event_stream) | **PUT** /projects/{project_id}/eventstreams/{event_stream_id} | Update an event stream for a project.
|
123
|
+
*FrontendApi* | [**create_browser_login_flow**](docs/FrontendApi.md#create_browser_login_flow) | **GET** /self-service/login/browser | Create Login Flow for Browsers
|
124
|
+
*FrontendApi* | [**create_browser_logout_flow**](docs/FrontendApi.md#create_browser_logout_flow) | **GET** /self-service/logout/browser | Create a Logout URL for Browsers
|
125
|
+
*FrontendApi* | [**create_browser_recovery_flow**](docs/FrontendApi.md#create_browser_recovery_flow) | **GET** /self-service/recovery/browser | Create Recovery Flow for Browsers
|
126
|
+
*FrontendApi* | [**create_browser_registration_flow**](docs/FrontendApi.md#create_browser_registration_flow) | **GET** /self-service/registration/browser | Create Registration Flow for Browsers
|
127
|
+
*FrontendApi* | [**create_browser_settings_flow**](docs/FrontendApi.md#create_browser_settings_flow) | **GET** /self-service/settings/browser | Create Settings Flow for Browsers
|
128
|
+
*FrontendApi* | [**create_browser_verification_flow**](docs/FrontendApi.md#create_browser_verification_flow) | **GET** /self-service/verification/browser | Create Verification Flow for Browser Clients
|
129
|
+
*FrontendApi* | [**create_fedcm_flow**](docs/FrontendApi.md#create_fedcm_flow) | **GET** /self-service/fed-cm/parameters | Get FedCM Parameters
|
130
|
+
*FrontendApi* | [**create_native_login_flow**](docs/FrontendApi.md#create_native_login_flow) | **GET** /self-service/login/api | Create Login Flow for Native Apps
|
131
|
+
*FrontendApi* | [**create_native_recovery_flow**](docs/FrontendApi.md#create_native_recovery_flow) | **GET** /self-service/recovery/api | Create Recovery Flow for Native Apps
|
132
|
+
*FrontendApi* | [**create_native_registration_flow**](docs/FrontendApi.md#create_native_registration_flow) | **GET** /self-service/registration/api | Create Registration Flow for Native Apps
|
133
|
+
*FrontendApi* | [**create_native_settings_flow**](docs/FrontendApi.md#create_native_settings_flow) | **GET** /self-service/settings/api | Create Settings Flow for Native Apps
|
134
|
+
*FrontendApi* | [**create_native_verification_flow**](docs/FrontendApi.md#create_native_verification_flow) | **GET** /self-service/verification/api | Create Verification Flow for Native Apps
|
135
|
+
*FrontendApi* | [**disable_my_other_sessions**](docs/FrontendApi.md#disable_my_other_sessions) | **DELETE** /sessions | Disable my other sessions
|
136
|
+
*FrontendApi* | [**disable_my_session**](docs/FrontendApi.md#disable_my_session) | **DELETE** /sessions/{id} | Disable one of my sessions
|
137
|
+
*FrontendApi* | [**exchange_session_token**](docs/FrontendApi.md#exchange_session_token) | **GET** /sessions/token-exchange | Exchange Session Token
|
138
|
+
*FrontendApi* | [**get_flow_error**](docs/FrontendApi.md#get_flow_error) | **GET** /self-service/errors | Get User-Flow Errors
|
139
|
+
*FrontendApi* | [**get_login_flow**](docs/FrontendApi.md#get_login_flow) | **GET** /self-service/login/flows | Get Login Flow
|
140
|
+
*FrontendApi* | [**get_recovery_flow**](docs/FrontendApi.md#get_recovery_flow) | **GET** /self-service/recovery/flows | Get Recovery Flow
|
141
|
+
*FrontendApi* | [**get_registration_flow**](docs/FrontendApi.md#get_registration_flow) | **GET** /self-service/registration/flows | Get Registration Flow
|
142
|
+
*FrontendApi* | [**get_settings_flow**](docs/FrontendApi.md#get_settings_flow) | **GET** /self-service/settings/flows | Get Settings Flow
|
143
|
+
*FrontendApi* | [**get_verification_flow**](docs/FrontendApi.md#get_verification_flow) | **GET** /self-service/verification/flows | Get Verification Flow
|
144
|
+
*FrontendApi* | [**get_web_authn_java_script**](docs/FrontendApi.md#get_web_authn_java_script) | **GET** /.well-known/ory/webauthn.js | Get WebAuthn JavaScript
|
145
|
+
*FrontendApi* | [**list_my_sessions**](docs/FrontendApi.md#list_my_sessions) | **GET** /sessions | Get My Active Sessions
|
146
|
+
*FrontendApi* | [**perform_native_logout**](docs/FrontendApi.md#perform_native_logout) | **DELETE** /self-service/logout/api | Perform Logout for Native Apps
|
147
|
+
*FrontendApi* | [**to_session**](docs/FrontendApi.md#to_session) | **GET** /sessions/whoami | Check Who the Current HTTP Session Belongs To
|
148
|
+
*FrontendApi* | [**update_fedcm_flow**](docs/FrontendApi.md#update_fedcm_flow) | **POST** /self-service/fed-cm/token | Submit a FedCM token
|
149
|
+
*FrontendApi* | [**update_login_flow**](docs/FrontendApi.md#update_login_flow) | **POST** /self-service/login | Submit a Login Flow
|
150
|
+
*FrontendApi* | [**update_logout_flow**](docs/FrontendApi.md#update_logout_flow) | **GET** /self-service/logout | Update Logout Flow
|
151
|
+
*FrontendApi* | [**update_recovery_flow**](docs/FrontendApi.md#update_recovery_flow) | **POST** /self-service/recovery | Update Recovery Flow
|
152
|
+
*FrontendApi* | [**update_registration_flow**](docs/FrontendApi.md#update_registration_flow) | **POST** /self-service/registration | Update Registration Flow
|
153
|
+
*FrontendApi* | [**update_settings_flow**](docs/FrontendApi.md#update_settings_flow) | **POST** /self-service/settings | Complete Settings Flow
|
154
|
+
*FrontendApi* | [**update_verification_flow**](docs/FrontendApi.md#update_verification_flow) | **POST** /self-service/verification | Complete Verification Flow
|
155
|
+
*IdentityApi* | [**batch_patch_identities**](docs/IdentityApi.md#batch_patch_identities) | **PATCH** /admin/identities | Create multiple identities
|
156
|
+
*IdentityApi* | [**create_identity**](docs/IdentityApi.md#create_identity) | **POST** /admin/identities | Create an Identity
|
157
|
+
*IdentityApi* | [**create_recovery_code_for_identity**](docs/IdentityApi.md#create_recovery_code_for_identity) | **POST** /admin/recovery/code | Create a Recovery Code
|
158
|
+
*IdentityApi* | [**create_recovery_link_for_identity**](docs/IdentityApi.md#create_recovery_link_for_identity) | **POST** /admin/recovery/link | Create a Recovery Link
|
159
|
+
*IdentityApi* | [**delete_identity**](docs/IdentityApi.md#delete_identity) | **DELETE** /admin/identities/{id} | Delete an Identity
|
160
|
+
*IdentityApi* | [**delete_identity_credentials**](docs/IdentityApi.md#delete_identity_credentials) | **DELETE** /admin/identities/{id}/credentials/{type} | Delete a credential for a specific identity
|
161
|
+
*IdentityApi* | [**delete_identity_sessions**](docs/IdentityApi.md#delete_identity_sessions) | **DELETE** /admin/identities/{id}/sessions | Delete & Invalidate an Identity's Sessions
|
162
|
+
*IdentityApi* | [**disable_session**](docs/IdentityApi.md#disable_session) | **DELETE** /admin/sessions/{id} | Deactivate a Session
|
163
|
+
*IdentityApi* | [**extend_session**](docs/IdentityApi.md#extend_session) | **PATCH** /admin/sessions/{id}/extend | Extend a Session
|
164
|
+
*IdentityApi* | [**get_identity**](docs/IdentityApi.md#get_identity) | **GET** /admin/identities/{id} | Get an Identity
|
165
|
+
*IdentityApi* | [**get_identity_schema**](docs/IdentityApi.md#get_identity_schema) | **GET** /schemas/{id} | Get Identity JSON Schema
|
166
|
+
*IdentityApi* | [**get_session**](docs/IdentityApi.md#get_session) | **GET** /admin/sessions/{id} | Get Session
|
167
|
+
*IdentityApi* | [**list_identities**](docs/IdentityApi.md#list_identities) | **GET** /admin/identities | List Identities
|
168
|
+
*IdentityApi* | [**list_identity_schemas**](docs/IdentityApi.md#list_identity_schemas) | **GET** /schemas | Get all Identity Schemas
|
169
|
+
*IdentityApi* | [**list_identity_sessions**](docs/IdentityApi.md#list_identity_sessions) | **GET** /admin/identities/{id}/sessions | List an Identity's Sessions
|
170
|
+
*IdentityApi* | [**list_sessions**](docs/IdentityApi.md#list_sessions) | **GET** /admin/sessions | List All Sessions
|
171
|
+
*IdentityApi* | [**patch_identity**](docs/IdentityApi.md#patch_identity) | **PATCH** /admin/identities/{id} | Patch an Identity
|
172
|
+
*IdentityApi* | [**update_identity**](docs/IdentityApi.md#update_identity) | **PUT** /admin/identities/{id} | Update an Identity
|
173
|
+
*JwkApi* | [**create_json_web_key_set**](docs/JwkApi.md#create_json_web_key_set) | **POST** /admin/keys/{set} | Create JSON Web Key
|
174
|
+
*JwkApi* | [**delete_json_web_key**](docs/JwkApi.md#delete_json_web_key) | **DELETE** /admin/keys/{set}/{kid} | Delete JSON Web Key
|
175
|
+
*JwkApi* | [**delete_json_web_key_set**](docs/JwkApi.md#delete_json_web_key_set) | **DELETE** /admin/keys/{set} | Delete JSON Web Key Set
|
176
|
+
*JwkApi* | [**get_json_web_key**](docs/JwkApi.md#get_json_web_key) | **GET** /admin/keys/{set}/{kid} | Get JSON Web Key
|
177
|
+
*JwkApi* | [**get_json_web_key_set**](docs/JwkApi.md#get_json_web_key_set) | **GET** /admin/keys/{set} | Retrieve a JSON Web Key Set
|
178
|
+
*JwkApi* | [**set_json_web_key**](docs/JwkApi.md#set_json_web_key) | **PUT** /admin/keys/{set}/{kid} | Set JSON Web Key
|
179
|
+
*JwkApi* | [**set_json_web_key_set**](docs/JwkApi.md#set_json_web_key_set) | **PUT** /admin/keys/{set} | Update a JSON Web Key Set
|
180
|
+
*MetadataApi* | [**get_version**](docs/MetadataApi.md#get_version) | **GET** /version | Return Running Software Version.
|
181
|
+
*OAuth2Api* | [**accept_o_auth2_consent_request**](docs/OAuth2Api.md#accept_o_auth2_consent_request) | **PUT** /admin/oauth2/auth/requests/consent/accept | Accept OAuth 2.0 Consent Request
|
182
|
+
*OAuth2Api* | [**accept_o_auth2_login_request**](docs/OAuth2Api.md#accept_o_auth2_login_request) | **PUT** /admin/oauth2/auth/requests/login/accept | Accept OAuth 2.0 Login Request
|
183
|
+
*OAuth2Api* | [**accept_o_auth2_logout_request**](docs/OAuth2Api.md#accept_o_auth2_logout_request) | **PUT** /admin/oauth2/auth/requests/logout/accept | Accept OAuth 2.0 Session Logout Request
|
184
|
+
*OAuth2Api* | [**create_o_auth2_client**](docs/OAuth2Api.md#create_o_auth2_client) | **POST** /admin/clients | Create OAuth 2.0 Client
|
185
|
+
*OAuth2Api* | [**delete_o_auth2_client**](docs/OAuth2Api.md#delete_o_auth2_client) | **DELETE** /admin/clients/{id} | Delete OAuth 2.0 Client
|
186
|
+
*OAuth2Api* | [**delete_o_auth2_token**](docs/OAuth2Api.md#delete_o_auth2_token) | **DELETE** /admin/oauth2/tokens | Delete OAuth 2.0 Access Tokens from specific OAuth 2.0 Client
|
187
|
+
*OAuth2Api* | [**delete_trusted_o_auth2_jwt_grant_issuer**](docs/OAuth2Api.md#delete_trusted_o_auth2_jwt_grant_issuer) | **DELETE** /admin/trust/grants/jwt-bearer/issuers/{id} | Delete Trusted OAuth2 JWT Bearer Grant Type Issuer
|
188
|
+
*OAuth2Api* | [**get_o_auth2_client**](docs/OAuth2Api.md#get_o_auth2_client) | **GET** /admin/clients/{id} | Get an OAuth 2.0 Client
|
189
|
+
*OAuth2Api* | [**get_o_auth2_consent_request**](docs/OAuth2Api.md#get_o_auth2_consent_request) | **GET** /admin/oauth2/auth/requests/consent | Get OAuth 2.0 Consent Request
|
190
|
+
*OAuth2Api* | [**get_o_auth2_login_request**](docs/OAuth2Api.md#get_o_auth2_login_request) | **GET** /admin/oauth2/auth/requests/login | Get OAuth 2.0 Login Request
|
191
|
+
*OAuth2Api* | [**get_o_auth2_logout_request**](docs/OAuth2Api.md#get_o_auth2_logout_request) | **GET** /admin/oauth2/auth/requests/logout | Get OAuth 2.0 Session Logout Request
|
192
|
+
*OAuth2Api* | [**get_trusted_o_auth2_jwt_grant_issuer**](docs/OAuth2Api.md#get_trusted_o_auth2_jwt_grant_issuer) | **GET** /admin/trust/grants/jwt-bearer/issuers/{id} | Get Trusted OAuth2 JWT Bearer Grant Type Issuer
|
193
|
+
*OAuth2Api* | [**introspect_o_auth2_token**](docs/OAuth2Api.md#introspect_o_auth2_token) | **POST** /admin/oauth2/introspect | Introspect OAuth2 Access and Refresh Tokens
|
194
|
+
*OAuth2Api* | [**list_o_auth2_clients**](docs/OAuth2Api.md#list_o_auth2_clients) | **GET** /admin/clients | List OAuth 2.0 Clients
|
195
|
+
*OAuth2Api* | [**list_o_auth2_consent_sessions**](docs/OAuth2Api.md#list_o_auth2_consent_sessions) | **GET** /admin/oauth2/auth/sessions/consent | List OAuth 2.0 Consent Sessions of a Subject
|
196
|
+
*OAuth2Api* | [**list_trusted_o_auth2_jwt_grant_issuers**](docs/OAuth2Api.md#list_trusted_o_auth2_jwt_grant_issuers) | **GET** /admin/trust/grants/jwt-bearer/issuers | List Trusted OAuth2 JWT Bearer Grant Type Issuers
|
197
|
+
*OAuth2Api* | [**o_auth2_authorize**](docs/OAuth2Api.md#o_auth2_authorize) | **GET** /oauth2/auth | OAuth 2.0 Authorize Endpoint
|
198
|
+
*OAuth2Api* | [**oauth2_token_exchange**](docs/OAuth2Api.md#oauth2_token_exchange) | **POST** /oauth2/token | The OAuth 2.0 Token Endpoint
|
199
|
+
*OAuth2Api* | [**patch_o_auth2_client**](docs/OAuth2Api.md#patch_o_auth2_client) | **PATCH** /admin/clients/{id} | Patch OAuth 2.0 Client
|
200
|
+
*OAuth2Api* | [**reject_o_auth2_consent_request**](docs/OAuth2Api.md#reject_o_auth2_consent_request) | **PUT** /admin/oauth2/auth/requests/consent/reject | Reject OAuth 2.0 Consent Request
|
201
|
+
*OAuth2Api* | [**reject_o_auth2_login_request**](docs/OAuth2Api.md#reject_o_auth2_login_request) | **PUT** /admin/oauth2/auth/requests/login/reject | Reject OAuth 2.0 Login Request
|
202
|
+
*OAuth2Api* | [**reject_o_auth2_logout_request**](docs/OAuth2Api.md#reject_o_auth2_logout_request) | **PUT** /admin/oauth2/auth/requests/logout/reject | Reject OAuth 2.0 Session Logout Request
|
203
|
+
*OAuth2Api* | [**revoke_o_auth2_consent_sessions**](docs/OAuth2Api.md#revoke_o_auth2_consent_sessions) | **DELETE** /admin/oauth2/auth/sessions/consent | Revoke OAuth 2.0 Consent Sessions of a Subject
|
204
|
+
*OAuth2Api* | [**revoke_o_auth2_login_sessions**](docs/OAuth2Api.md#revoke_o_auth2_login_sessions) | **DELETE** /admin/oauth2/auth/sessions/login | Revokes OAuth 2.0 Login Sessions by either a Subject or a SessionID
|
205
|
+
*OAuth2Api* | [**revoke_o_auth2_token**](docs/OAuth2Api.md#revoke_o_auth2_token) | **POST** /oauth2/revoke | Revoke OAuth 2.0 Access or Refresh Token
|
206
|
+
*OAuth2Api* | [**set_o_auth2_client**](docs/OAuth2Api.md#set_o_auth2_client) | **PUT** /admin/clients/{id} | Set OAuth 2.0 Client
|
207
|
+
*OAuth2Api* | [**set_o_auth2_client_lifespans**](docs/OAuth2Api.md#set_o_auth2_client_lifespans) | **PUT** /admin/clients/{id}/lifespans | Set OAuth2 Client Token Lifespans
|
208
|
+
*OAuth2Api* | [**trust_o_auth2_jwt_grant_issuer**](docs/OAuth2Api.md#trust_o_auth2_jwt_grant_issuer) | **POST** /admin/trust/grants/jwt-bearer/issuers | Trust OAuth2 JWT Bearer Grant Type Issuer
|
209
|
+
*OidcApi* | [**create_oidc_dynamic_client**](docs/OidcApi.md#create_oidc_dynamic_client) | **POST** /oauth2/register | Register OAuth2 Client using OpenID Dynamic Client Registration
|
210
|
+
*OidcApi* | [**create_verifiable_credential**](docs/OidcApi.md#create_verifiable_credential) | **POST** /credentials | Issues a Verifiable Credential
|
211
|
+
*OidcApi* | [**delete_oidc_dynamic_client**](docs/OidcApi.md#delete_oidc_dynamic_client) | **DELETE** /oauth2/register/{id} | Delete OAuth 2.0 Client using the OpenID Dynamic Client Registration Management Protocol
|
212
|
+
*OidcApi* | [**discover_oidc_configuration**](docs/OidcApi.md#discover_oidc_configuration) | **GET** /.well-known/openid-configuration | OpenID Connect Discovery
|
213
|
+
*OidcApi* | [**get_oidc_dynamic_client**](docs/OidcApi.md#get_oidc_dynamic_client) | **GET** /oauth2/register/{id} | Get OAuth2 Client using OpenID Dynamic Client Registration
|
214
|
+
*OidcApi* | [**get_oidc_user_info**](docs/OidcApi.md#get_oidc_user_info) | **GET** /userinfo | OpenID Connect Userinfo
|
215
|
+
*OidcApi* | [**revoke_oidc_session**](docs/OidcApi.md#revoke_oidc_session) | **GET** /oauth2/sessions/logout | OpenID Connect Front- and Back-channel Enabled Logout
|
216
|
+
*OidcApi* | [**set_oidc_dynamic_client**](docs/OidcApi.md#set_oidc_dynamic_client) | **PUT** /oauth2/register/{id} | Set OAuth2 Client using OpenID Dynamic Client Registration
|
217
|
+
*PermissionApi* | [**batch_check_permission**](docs/PermissionApi.md#batch_check_permission) | **POST** /relation-tuples/batch/check | Batch check permissions
|
218
|
+
*PermissionApi* | [**check_permission**](docs/PermissionApi.md#check_permission) | **GET** /relation-tuples/check/openapi | Check a permission
|
219
|
+
*PermissionApi* | [**check_permission_or_error**](docs/PermissionApi.md#check_permission_or_error) | **GET** /relation-tuples/check | Check a permission
|
220
|
+
*PermissionApi* | [**expand_permissions**](docs/PermissionApi.md#expand_permissions) | **GET** /relation-tuples/expand | Expand a Relationship into permissions.
|
221
|
+
*PermissionApi* | [**post_check_permission**](docs/PermissionApi.md#post_check_permission) | **POST** /relation-tuples/check/openapi | Check a permission
|
222
|
+
*PermissionApi* | [**post_check_permission_or_error**](docs/PermissionApi.md#post_check_permission_or_error) | **POST** /relation-tuples/check | Check a permission
|
223
|
+
*ProjectApi* | [**create_organization**](docs/ProjectApi.md#create_organization) | **POST** /projects/{project_id}/organizations | Create an Enterprise SSO Organization
|
224
|
+
*ProjectApi* | [**create_project**](docs/ProjectApi.md#create_project) | **POST** /projects | Create a Project
|
225
|
+
*ProjectApi* | [**create_project_api_key**](docs/ProjectApi.md#create_project_api_key) | **POST** /projects/{project}/tokens | Create project API key
|
226
|
+
*ProjectApi* | [**delete_organization**](docs/ProjectApi.md#delete_organization) | **DELETE** /projects/{project_id}/organizations/{organization_id} | Delete Enterprise SSO Organization
|
227
|
+
*ProjectApi* | [**delete_project_api_key**](docs/ProjectApi.md#delete_project_api_key) | **DELETE** /projects/{project}/tokens/{token_id} | Delete project API key
|
228
|
+
*ProjectApi* | [**get_organization**](docs/ProjectApi.md#get_organization) | **GET** /projects/{project_id}/organizations/{organization_id} | Get Enterprise SSO Organization by ID
|
229
|
+
*ProjectApi* | [**get_project**](docs/ProjectApi.md#get_project) | **GET** /projects/{project_id} | Get a Project
|
230
|
+
*ProjectApi* | [**get_project_members**](docs/ProjectApi.md#get_project_members) | **GET** /projects/{project}/members | Get all members associated with this project
|
231
|
+
*ProjectApi* | [**list_organizations**](docs/ProjectApi.md#list_organizations) | **GET** /projects/{project_id}/organizations | List all Enterprise SSO organizations
|
232
|
+
*ProjectApi* | [**list_project_api_keys**](docs/ProjectApi.md#list_project_api_keys) | **GET** /projects/{project}/tokens | List a project's API keys
|
233
|
+
*ProjectApi* | [**list_projects**](docs/ProjectApi.md#list_projects) | **GET** /projects | List All Projects
|
234
|
+
*ProjectApi* | [**patch_project**](docs/ProjectApi.md#patch_project) | **PATCH** /projects/{project_id} | Patch an Ory Network Project Configuration
|
235
|
+
*ProjectApi* | [**patch_project_with_revision**](docs/ProjectApi.md#patch_project_with_revision) | **PATCH** /projects/{project_id}/revision/{revision_id} | Patch an Ory Network Project Configuration based on a revision ID
|
236
|
+
*ProjectApi* | [**purge_project**](docs/ProjectApi.md#purge_project) | **DELETE** /projects/{project_id} | Irrecoverably purge a project
|
237
|
+
*ProjectApi* | [**remove_project_member**](docs/ProjectApi.md#remove_project_member) | **DELETE** /projects/{project}/members/{member} | Remove a member associated with this project
|
238
|
+
*ProjectApi* | [**set_project**](docs/ProjectApi.md#set_project) | **PUT** /projects/{project_id} | Update an Ory Network Project Configuration
|
239
|
+
*ProjectApi* | [**update_organization**](docs/ProjectApi.md#update_organization) | **PUT** /projects/{project_id}/organizations/{organization_id} | Update an Enterprise SSO Organization
|
240
|
+
*RelationshipApi* | [**check_opl_syntax**](docs/RelationshipApi.md#check_opl_syntax) | **POST** /opl/syntax/check | Check the syntax of an OPL file
|
241
|
+
*RelationshipApi* | [**create_relationship**](docs/RelationshipApi.md#create_relationship) | **PUT** /admin/relation-tuples | Create a Relationship
|
242
|
+
*RelationshipApi* | [**delete_relationships**](docs/RelationshipApi.md#delete_relationships) | **DELETE** /admin/relation-tuples | Delete Relationships
|
243
|
+
*RelationshipApi* | [**get_relationships**](docs/RelationshipApi.md#get_relationships) | **GET** /relation-tuples | Query relationships
|
244
|
+
*RelationshipApi* | [**list_relationship_namespaces**](docs/RelationshipApi.md#list_relationship_namespaces) | **GET** /namespaces | Query namespaces
|
245
|
+
*RelationshipApi* | [**patch_relationships**](docs/RelationshipApi.md#patch_relationships) | **PATCH** /admin/relation-tuples | Patch Multiple Relationships
|
246
|
+
*WellknownApi* | [**discover_json_web_keys**](docs/WellknownApi.md#discover_json_web_keys) | **GET** /.well-known/jwks.json | Discover Well-Known JSON Web Keys
|
247
|
+
*WorkspaceApi* | [**create_workspace**](docs/WorkspaceApi.md#create_workspace) | **POST** /workspaces | Create a new workspace
|
248
|
+
*WorkspaceApi* | [**create_workspace_api_key**](docs/WorkspaceApi.md#create_workspace_api_key) | **POST** /workspaces/{workspace}/tokens | Create workspace API key
|
249
|
+
*WorkspaceApi* | [**delete_workspace_api_key**](docs/WorkspaceApi.md#delete_workspace_api_key) | **DELETE** /workspaces/{workspace}/tokens/{token_id} | Delete workspace API key
|
250
|
+
*WorkspaceApi* | [**get_workspace**](docs/WorkspaceApi.md#get_workspace) | **GET** /workspaces/{workspace} | Get a workspace
|
251
|
+
*WorkspaceApi* | [**list_workspace_api_keys**](docs/WorkspaceApi.md#list_workspace_api_keys) | **GET** /workspaces/{workspace}/tokens | List a workspace's API keys
|
252
|
+
*WorkspaceApi* | [**list_workspace_projects**](docs/WorkspaceApi.md#list_workspace_projects) | **GET** /workspaces/{workspace}/projects | List all projects of a workspace
|
253
|
+
*WorkspaceApi* | [**list_workspaces**](docs/WorkspaceApi.md#list_workspaces) | **GET** /workspaces | List workspaces the user is a member of
|
254
|
+
*WorkspaceApi* | [**update_workspace**](docs/WorkspaceApi.md#update_workspace) | **PUT** /workspaces/{workspace} | Update an workspace
|
255
|
+
|
256
|
+
|
257
|
+
## Documentation For Models
|
258
|
+
|
259
|
+
- [AcceptOAuth2ConsentRequest](docs/AcceptOAuth2ConsentRequest.md)
|
260
|
+
- [AcceptOAuth2ConsentRequestSession](docs/AcceptOAuth2ConsentRequestSession.md)
|
261
|
+
- [AcceptOAuth2LoginRequest](docs/AcceptOAuth2LoginRequest.md)
|
262
|
+
- [AccountExperienceColors](docs/AccountExperienceColors.md)
|
263
|
+
- [AccountExperienceConfiguration](docs/AccountExperienceConfiguration.md)
|
264
|
+
- [AccountExperienceThemeVariables](docs/AccountExperienceThemeVariables.md)
|
265
|
+
- [ActiveProjectInConsole](docs/ActiveProjectInConsole.md)
|
266
|
+
- [AddProjectToWorkspaceBody](docs/AddProjectToWorkspaceBody.md)
|
267
|
+
- [Attribute](docs/Attribute.md)
|
268
|
+
- [AttributeFilter](docs/AttributeFilter.md)
|
269
|
+
- [AttributesCountDatapoint](docs/AttributesCountDatapoint.md)
|
270
|
+
- [AuthenticatorAssuranceLevel](docs/AuthenticatorAssuranceLevel.md)
|
271
|
+
- [BatchCheckPermissionBody](docs/BatchCheckPermissionBody.md)
|
272
|
+
- [BatchCheckPermissionResult](docs/BatchCheckPermissionResult.md)
|
273
|
+
- [BatchPatchIdentitiesResponse](docs/BatchPatchIdentitiesResponse.md)
|
274
|
+
- [BillingPeriodBucket](docs/BillingPeriodBucket.md)
|
275
|
+
- [CheckOplSyntaxResult](docs/CheckOplSyntaxResult.md)
|
276
|
+
- [CheckPermissionResult](docs/CheckPermissionResult.md)
|
277
|
+
- [CheckPermissionResultWithError](docs/CheckPermissionResultWithError.md)
|
278
|
+
- [CloudAccount](docs/CloudAccount.md)
|
279
|
+
- [ConsistencyRequestParameters](docs/ConsistencyRequestParameters.md)
|
280
|
+
- [ContinueWith](docs/ContinueWith.md)
|
281
|
+
- [ContinueWithRecoveryUi](docs/ContinueWithRecoveryUi.md)
|
282
|
+
- [ContinueWithRecoveryUiFlow](docs/ContinueWithRecoveryUiFlow.md)
|
283
|
+
- [ContinueWithRedirectBrowserTo](docs/ContinueWithRedirectBrowserTo.md)
|
284
|
+
- [ContinueWithSetOrySessionToken](docs/ContinueWithSetOrySessionToken.md)
|
285
|
+
- [ContinueWithSettingsUi](docs/ContinueWithSettingsUi.md)
|
286
|
+
- [ContinueWithSettingsUiFlow](docs/ContinueWithSettingsUiFlow.md)
|
287
|
+
- [ContinueWithVerificationUi](docs/ContinueWithVerificationUi.md)
|
288
|
+
- [ContinueWithVerificationUiFlow](docs/ContinueWithVerificationUiFlow.md)
|
289
|
+
- [CourierMessageStatus](docs/CourierMessageStatus.md)
|
290
|
+
- [CourierMessageType](docs/CourierMessageType.md)
|
291
|
+
- [CreateCustomDomainBody](docs/CreateCustomDomainBody.md)
|
292
|
+
- [CreateEventStreamBody](docs/CreateEventStreamBody.md)
|
293
|
+
- [CreateFedcmFlowResponse](docs/CreateFedcmFlowResponse.md)
|
294
|
+
- [CreateIdentityBody](docs/CreateIdentityBody.md)
|
295
|
+
- [CreateInviteResponse](docs/CreateInviteResponse.md)
|
296
|
+
- [CreateJsonWebKeySet](docs/CreateJsonWebKeySet.md)
|
297
|
+
- [CreateProjectApiKeyRequest](docs/CreateProjectApiKeyRequest.md)
|
298
|
+
- [CreateProjectBody](docs/CreateProjectBody.md)
|
299
|
+
- [CreateProjectBranding](docs/CreateProjectBranding.md)
|
300
|
+
- [CreateProjectMemberInviteBody](docs/CreateProjectMemberInviteBody.md)
|
301
|
+
- [CreateProjectNormalizedPayload](docs/CreateProjectNormalizedPayload.md)
|
302
|
+
- [CreateRecoveryCodeForIdentityBody](docs/CreateRecoveryCodeForIdentityBody.md)
|
303
|
+
- [CreateRecoveryLinkForIdentityBody](docs/CreateRecoveryLinkForIdentityBody.md)
|
304
|
+
- [CreateRelationshipBody](docs/CreateRelationshipBody.md)
|
305
|
+
- [CreateSubscriptionBody](docs/CreateSubscriptionBody.md)
|
306
|
+
- [CreateSubscriptionCommon](docs/CreateSubscriptionCommon.md)
|
307
|
+
- [CreateVerifiableCredentialRequestBody](docs/CreateVerifiableCredentialRequestBody.md)
|
308
|
+
- [CreateWorkspaceApiKeyBody](docs/CreateWorkspaceApiKeyBody.md)
|
309
|
+
- [CreateWorkspaceBody](docs/CreateWorkspaceBody.md)
|
310
|
+
- [CreateWorkspaceMemberInviteBody](docs/CreateWorkspaceMemberInviteBody.md)
|
311
|
+
- [CreateWorkspaceSubscriptionBody](docs/CreateWorkspaceSubscriptionBody.md)
|
312
|
+
- [CredentialSupportedDraft00](docs/CredentialSupportedDraft00.md)
|
313
|
+
- [CustomDomain](docs/CustomDomain.md)
|
314
|
+
- [DeleteMySessionsCount](docs/DeleteMySessionsCount.md)
|
315
|
+
- [EmailTemplateData](docs/EmailTemplateData.md)
|
316
|
+
- [EmailTemplateDataBody](docs/EmailTemplateDataBody.md)
|
317
|
+
- [ErrorAuthenticatorAssuranceLevelNotSatisfied](docs/ErrorAuthenticatorAssuranceLevelNotSatisfied.md)
|
318
|
+
- [ErrorBrowserLocationChangeRequired](docs/ErrorBrowserLocationChangeRequired.md)
|
319
|
+
- [ErrorFlowReplaced](docs/ErrorFlowReplaced.md)
|
320
|
+
- [ErrorGeneric](docs/ErrorGeneric.md)
|
321
|
+
- [ErrorOAuth2](docs/ErrorOAuth2.md)
|
322
|
+
- [EventStream](docs/EventStream.md)
|
323
|
+
- [ExpandedPermissionTree](docs/ExpandedPermissionTree.md)
|
324
|
+
- [FlowError](docs/FlowError.md)
|
325
|
+
- [GenericError](docs/GenericError.md)
|
326
|
+
- [GenericErrorContent](docs/GenericErrorContent.md)
|
327
|
+
- [GenericUsage](docs/GenericUsage.md)
|
328
|
+
- [GetAttributesCountResponse](docs/GetAttributesCountResponse.md)
|
329
|
+
- [GetManagedIdentitySchemaLocation](docs/GetManagedIdentitySchemaLocation.md)
|
330
|
+
- [GetMetricsEventAttributesResponse](docs/GetMetricsEventAttributesResponse.md)
|
331
|
+
- [GetMetricsEventTypesResponse](docs/GetMetricsEventTypesResponse.md)
|
332
|
+
- [GetOrganizationResponse](docs/GetOrganizationResponse.md)
|
333
|
+
- [GetProjectEventsBody](docs/GetProjectEventsBody.md)
|
334
|
+
- [GetProjectEventsResponse](docs/GetProjectEventsResponse.md)
|
335
|
+
- [GetProjectMetricsResponse](docs/GetProjectMetricsResponse.md)
|
336
|
+
- [GetSessionActivityResponse](docs/GetSessionActivityResponse.md)
|
337
|
+
- [GetVersion200Response](docs/GetVersion200Response.md)
|
338
|
+
- [HealthNotReadyStatus](docs/HealthNotReadyStatus.md)
|
339
|
+
- [HealthStatus](docs/HealthStatus.md)
|
340
|
+
- [Identity](docs/Identity.md)
|
341
|
+
- [IdentityCredentials](docs/IdentityCredentials.md)
|
342
|
+
- [IdentityCredentialsCode](docs/IdentityCredentialsCode.md)
|
343
|
+
- [IdentityCredentialsCodeAddress](docs/IdentityCredentialsCodeAddress.md)
|
344
|
+
- [IdentityCredentialsOidc](docs/IdentityCredentialsOidc.md)
|
345
|
+
- [IdentityCredentialsOidcProvider](docs/IdentityCredentialsOidcProvider.md)
|
346
|
+
- [IdentityCredentialsPassword](docs/IdentityCredentialsPassword.md)
|
347
|
+
- [IdentityPatch](docs/IdentityPatch.md)
|
348
|
+
- [IdentityPatchResponse](docs/IdentityPatchResponse.md)
|
349
|
+
- [IdentitySchemaContainer](docs/IdentitySchemaContainer.md)
|
350
|
+
- [IdentitySchemaPreset](docs/IdentitySchemaPreset.md)
|
351
|
+
- [IdentityWithCredentials](docs/IdentityWithCredentials.md)
|
352
|
+
- [IdentityWithCredentialsOidc](docs/IdentityWithCredentialsOidc.md)
|
353
|
+
- [IdentityWithCredentialsOidcConfig](docs/IdentityWithCredentialsOidcConfig.md)
|
354
|
+
- [IdentityWithCredentialsOidcConfigProvider](docs/IdentityWithCredentialsOidcConfigProvider.md)
|
355
|
+
- [IdentityWithCredentialsPassword](docs/IdentityWithCredentialsPassword.md)
|
356
|
+
- [IdentityWithCredentialsPasswordConfig](docs/IdentityWithCredentialsPasswordConfig.md)
|
357
|
+
- [IdentityWithCredentialsSaml](docs/IdentityWithCredentialsSaml.md)
|
358
|
+
- [IdentityWithCredentialsSamlConfig](docs/IdentityWithCredentialsSamlConfig.md)
|
359
|
+
- [IdentityWithCredentialsSamlConfigProvider](docs/IdentityWithCredentialsSamlConfigProvider.md)
|
360
|
+
- [InternalGetProjectBrandingBody](docs/InternalGetProjectBrandingBody.md)
|
361
|
+
- [InternalIsAXWelcomeScreenEnabledForProjectBody](docs/InternalIsAXWelcomeScreenEnabledForProjectBody.md)
|
362
|
+
- [InternalIsOwnerForProjectBySlugBody](docs/InternalIsOwnerForProjectBySlugBody.md)
|
363
|
+
- [InternalIsOwnerForProjectBySlugResponse](docs/InternalIsOwnerForProjectBySlugResponse.md)
|
364
|
+
- [IntrospectedOAuth2Token](docs/IntrospectedOAuth2Token.md)
|
365
|
+
- [InviteTokenBody](docs/InviteTokenBody.md)
|
366
|
+
- [Invoice](docs/Invoice.md)
|
367
|
+
- [InvoiceDataV1](docs/InvoiceDataV1.md)
|
368
|
+
- [IsOwnerForProjectBySlug](docs/IsOwnerForProjectBySlug.md)
|
369
|
+
- [JsonPatch](docs/JsonPatch.md)
|
370
|
+
- [JsonWebKey](docs/JsonWebKey.md)
|
371
|
+
- [JsonWebKeySet](docs/JsonWebKeySet.md)
|
372
|
+
- [KetoNamespace](docs/KetoNamespace.md)
|
373
|
+
- [LineItemV1](docs/LineItemV1.md)
|
374
|
+
- [ListEventStreams](docs/ListEventStreams.md)
|
375
|
+
- [ListInvoicesResponse](docs/ListInvoicesResponse.md)
|
376
|
+
- [ListOrganizationsResponse](docs/ListOrganizationsResponse.md)
|
377
|
+
- [ListWorkspaceProjects](docs/ListWorkspaceProjects.md)
|
378
|
+
- [ListWorkspaces](docs/ListWorkspaces.md)
|
379
|
+
- [LoginFlow](docs/LoginFlow.md)
|
380
|
+
- [LoginFlowState](docs/LoginFlowState.md)
|
381
|
+
- [LogoutFlow](docs/LogoutFlow.md)
|
382
|
+
- [ManagedIdentitySchema](docs/ManagedIdentitySchema.md)
|
383
|
+
- [ManagedIdentitySchemaValidationResult](docs/ManagedIdentitySchemaValidationResult.md)
|
384
|
+
- [MemberInvite](docs/MemberInvite.md)
|
385
|
+
- [Message](docs/Message.md)
|
386
|
+
- [MessageDispatch](docs/MessageDispatch.md)
|
387
|
+
- [MetricsDatapoint](docs/MetricsDatapoint.md)
|
388
|
+
- [Money](docs/Money.md)
|
389
|
+
- [Namespace](docs/Namespace.md)
|
390
|
+
- [NeedsPrivilegedSessionError](docs/NeedsPrivilegedSessionError.md)
|
391
|
+
- [NormalizedProject](docs/NormalizedProject.md)
|
392
|
+
- [NormalizedProjectRevision](docs/NormalizedProjectRevision.md)
|
393
|
+
- [NormalizedProjectRevisionCourierChannel](docs/NormalizedProjectRevisionCourierChannel.md)
|
394
|
+
- [NormalizedProjectRevisionHook](docs/NormalizedProjectRevisionHook.md)
|
395
|
+
- [NormalizedProjectRevisionIdentitySchema](docs/NormalizedProjectRevisionIdentitySchema.md)
|
396
|
+
- [NormalizedProjectRevisionSAMLProvider](docs/NormalizedProjectRevisionSAMLProvider.md)
|
397
|
+
- [NormalizedProjectRevisionScimClient](docs/NormalizedProjectRevisionScimClient.md)
|
398
|
+
- [NormalizedProjectRevisionThirdPartyProvider](docs/NormalizedProjectRevisionThirdPartyProvider.md)
|
399
|
+
- [NormalizedProjectRevisionTokenizerTemplate](docs/NormalizedProjectRevisionTokenizerTemplate.md)
|
400
|
+
- [OAuth2Client](docs/OAuth2Client.md)
|
401
|
+
- [OAuth2ClientTokenLifespans](docs/OAuth2ClientTokenLifespans.md)
|
402
|
+
- [OAuth2ConsentRequest](docs/OAuth2ConsentRequest.md)
|
403
|
+
- [OAuth2ConsentRequestOpenIDConnectContext](docs/OAuth2ConsentRequestOpenIDConnectContext.md)
|
404
|
+
- [OAuth2ConsentSession](docs/OAuth2ConsentSession.md)
|
405
|
+
- [OAuth2ConsentSessionExpiresAt](docs/OAuth2ConsentSessionExpiresAt.md)
|
406
|
+
- [OAuth2LoginRequest](docs/OAuth2LoginRequest.md)
|
407
|
+
- [OAuth2LogoutRequest](docs/OAuth2LogoutRequest.md)
|
408
|
+
- [OAuth2RedirectTo](docs/OAuth2RedirectTo.md)
|
409
|
+
- [OAuth2TokenExchange](docs/OAuth2TokenExchange.md)
|
410
|
+
- [OidcConfiguration](docs/OidcConfiguration.md)
|
411
|
+
- [OidcUserInfo](docs/OidcUserInfo.md)
|
412
|
+
- [Organization](docs/Organization.md)
|
413
|
+
- [OrganizationBody](docs/OrganizationBody.md)
|
414
|
+
- [Pagination](docs/Pagination.md)
|
415
|
+
- [PaginationHeaders](docs/PaginationHeaders.md)
|
416
|
+
- [ParseError](docs/ParseError.md)
|
417
|
+
- [PatchIdentitiesBody](docs/PatchIdentitiesBody.md)
|
418
|
+
- [PerformNativeLogoutBody](docs/PerformNativeLogoutBody.md)
|
419
|
+
- [PermissionsOnWorkspace](docs/PermissionsOnWorkspace.md)
|
420
|
+
- [Plan](docs/Plan.md)
|
421
|
+
- [PlanDetails](docs/PlanDetails.md)
|
422
|
+
- [PostCheckPermissionBody](docs/PostCheckPermissionBody.md)
|
423
|
+
- [PostCheckPermissionOrErrorBody](docs/PostCheckPermissionOrErrorBody.md)
|
424
|
+
- [Project](docs/Project.md)
|
425
|
+
- [ProjectApiKey](docs/ProjectApiKey.md)
|
426
|
+
- [ProjectBranding](docs/ProjectBranding.md)
|
427
|
+
- [ProjectBrandingColors](docs/ProjectBrandingColors.md)
|
428
|
+
- [ProjectBrandingTheme](docs/ProjectBrandingTheme.md)
|
429
|
+
- [ProjectCors](docs/ProjectCors.md)
|
430
|
+
- [ProjectEventsDatapoint](docs/ProjectEventsDatapoint.md)
|
431
|
+
- [ProjectHost](docs/ProjectHost.md)
|
432
|
+
- [ProjectMember](docs/ProjectMember.md)
|
433
|
+
- [ProjectMetadata](docs/ProjectMetadata.md)
|
434
|
+
- [ProjectServiceIdentity](docs/ProjectServiceIdentity.md)
|
435
|
+
- [ProjectServiceOAuth2](docs/ProjectServiceOAuth2.md)
|
436
|
+
- [ProjectServicePermission](docs/ProjectServicePermission.md)
|
437
|
+
- [ProjectServices](docs/ProjectServices.md)
|
438
|
+
- [Provider](docs/Provider.md)
|
439
|
+
- [QuotaUsage](docs/QuotaUsage.md)
|
440
|
+
- [RFC6749ErrorJson](docs/RFC6749ErrorJson.md)
|
441
|
+
- [RecoveryCodeForIdentity](docs/RecoveryCodeForIdentity.md)
|
442
|
+
- [RecoveryFlow](docs/RecoveryFlow.md)
|
443
|
+
- [RecoveryFlowState](docs/RecoveryFlowState.md)
|
444
|
+
- [RecoveryIdentityAddress](docs/RecoveryIdentityAddress.md)
|
445
|
+
- [RecoveryLinkForIdentity](docs/RecoveryLinkForIdentity.md)
|
446
|
+
- [RegistrationFlow](docs/RegistrationFlow.md)
|
447
|
+
- [RegistrationFlowState](docs/RegistrationFlowState.md)
|
448
|
+
- [RejectOAuth2Request](docs/RejectOAuth2Request.md)
|
449
|
+
- [RelationQuery](docs/RelationQuery.md)
|
450
|
+
- [Relationship](docs/Relationship.md)
|
451
|
+
- [RelationshipNamespaces](docs/RelationshipNamespaces.md)
|
452
|
+
- [RelationshipPatch](docs/RelationshipPatch.md)
|
453
|
+
- [Relationships](docs/Relationships.md)
|
454
|
+
- [SchemaPatch](docs/SchemaPatch.md)
|
455
|
+
- [SelfServiceFlowExpiredError](docs/SelfServiceFlowExpiredError.md)
|
456
|
+
- [Session](docs/Session.md)
|
457
|
+
- [SessionActivityDatapoint](docs/SessionActivityDatapoint.md)
|
458
|
+
- [SessionAuthenticationMethod](docs/SessionAuthenticationMethod.md)
|
459
|
+
- [SessionDevice](docs/SessionDevice.md)
|
460
|
+
- [SetActiveProjectInConsoleBody](docs/SetActiveProjectInConsoleBody.md)
|
461
|
+
- [SetCustomDomainBody](docs/SetCustomDomainBody.md)
|
462
|
+
- [SetEventStreamBody](docs/SetEventStreamBody.md)
|
463
|
+
- [SetProject](docs/SetProject.md)
|
464
|
+
- [SetProjectBrandingThemeBody](docs/SetProjectBrandingThemeBody.md)
|
465
|
+
- [SettingsFlow](docs/SettingsFlow.md)
|
466
|
+
- [SettingsFlowState](docs/SettingsFlowState.md)
|
467
|
+
- [SourcePosition](docs/SourcePosition.md)
|
468
|
+
- [SubjectSet](docs/SubjectSet.md)
|
469
|
+
- [Subscription](docs/Subscription.md)
|
470
|
+
- [SuccessfulCodeExchangeResponse](docs/SuccessfulCodeExchangeResponse.md)
|
471
|
+
- [SuccessfulNativeLogin](docs/SuccessfulNativeLogin.md)
|
472
|
+
- [SuccessfulNativeRegistration](docs/SuccessfulNativeRegistration.md)
|
473
|
+
- [SuccessfulProjectUpdate](docs/SuccessfulProjectUpdate.md)
|
474
|
+
- [TaxLineItem](docs/TaxLineItem.md)
|
475
|
+
- [TimeInterval](docs/TimeInterval.md)
|
476
|
+
- [TokenPagination](docs/TokenPagination.md)
|
477
|
+
- [TokenPaginationHeaders](docs/TokenPaginationHeaders.md)
|
478
|
+
- [TokenPaginationRequestParameters](docs/TokenPaginationRequestParameters.md)
|
479
|
+
- [TokenPaginationResponseHeaders](docs/TokenPaginationResponseHeaders.md)
|
480
|
+
- [TrustOAuth2JwtGrantIssuer](docs/TrustOAuth2JwtGrantIssuer.md)
|
481
|
+
- [TrustedOAuth2JwtGrantIssuer](docs/TrustedOAuth2JwtGrantIssuer.md)
|
482
|
+
- [TrustedOAuth2JwtGrantJsonWebKey](docs/TrustedOAuth2JwtGrantJsonWebKey.md)
|
483
|
+
- [UiContainer](docs/UiContainer.md)
|
484
|
+
- [UiNode](docs/UiNode.md)
|
485
|
+
- [UiNodeAnchorAttributes](docs/UiNodeAnchorAttributes.md)
|
486
|
+
- [UiNodeAttributes](docs/UiNodeAttributes.md)
|
487
|
+
- [UiNodeDivisionAttributes](docs/UiNodeDivisionAttributes.md)
|
488
|
+
- [UiNodeImageAttributes](docs/UiNodeImageAttributes.md)
|
489
|
+
- [UiNodeInputAttributes](docs/UiNodeInputAttributes.md)
|
490
|
+
- [UiNodeMeta](docs/UiNodeMeta.md)
|
491
|
+
- [UiNodeScriptAttributes](docs/UiNodeScriptAttributes.md)
|
492
|
+
- [UiNodeTextAttributes](docs/UiNodeTextAttributes.md)
|
493
|
+
- [UiText](docs/UiText.md)
|
494
|
+
- [UpdateFedcmFlowBody](docs/UpdateFedcmFlowBody.md)
|
495
|
+
- [UpdateIdentityBody](docs/UpdateIdentityBody.md)
|
496
|
+
- [UpdateLoginFlowBody](docs/UpdateLoginFlowBody.md)
|
497
|
+
- [UpdateLoginFlowWithCodeMethod](docs/UpdateLoginFlowWithCodeMethod.md)
|
498
|
+
- [UpdateLoginFlowWithIdentifierFirstMethod](docs/UpdateLoginFlowWithIdentifierFirstMethod.md)
|
499
|
+
- [UpdateLoginFlowWithLookupSecretMethod](docs/UpdateLoginFlowWithLookupSecretMethod.md)
|
500
|
+
- [UpdateLoginFlowWithOidcMethod](docs/UpdateLoginFlowWithOidcMethod.md)
|
501
|
+
- [UpdateLoginFlowWithPasskeyMethod](docs/UpdateLoginFlowWithPasskeyMethod.md)
|
502
|
+
- [UpdateLoginFlowWithPasswordMethod](docs/UpdateLoginFlowWithPasswordMethod.md)
|
503
|
+
- [UpdateLoginFlowWithSamlMethod](docs/UpdateLoginFlowWithSamlMethod.md)
|
504
|
+
- [UpdateLoginFlowWithTotpMethod](docs/UpdateLoginFlowWithTotpMethod.md)
|
505
|
+
- [UpdateLoginFlowWithWebAuthnMethod](docs/UpdateLoginFlowWithWebAuthnMethod.md)
|
506
|
+
- [UpdateRecoveryFlowBody](docs/UpdateRecoveryFlowBody.md)
|
507
|
+
- [UpdateRecoveryFlowWithCodeMethod](docs/UpdateRecoveryFlowWithCodeMethod.md)
|
508
|
+
- [UpdateRecoveryFlowWithLinkMethod](docs/UpdateRecoveryFlowWithLinkMethod.md)
|
509
|
+
- [UpdateRegistrationFlowBody](docs/UpdateRegistrationFlowBody.md)
|
510
|
+
- [UpdateRegistrationFlowWithCodeMethod](docs/UpdateRegistrationFlowWithCodeMethod.md)
|
511
|
+
- [UpdateRegistrationFlowWithOidcMethod](docs/UpdateRegistrationFlowWithOidcMethod.md)
|
512
|
+
- [UpdateRegistrationFlowWithPasskeyMethod](docs/UpdateRegistrationFlowWithPasskeyMethod.md)
|
513
|
+
- [UpdateRegistrationFlowWithPasswordMethod](docs/UpdateRegistrationFlowWithPasswordMethod.md)
|
514
|
+
- [UpdateRegistrationFlowWithProfileMethod](docs/UpdateRegistrationFlowWithProfileMethod.md)
|
515
|
+
- [UpdateRegistrationFlowWithSamlMethod](docs/UpdateRegistrationFlowWithSamlMethod.md)
|
516
|
+
- [UpdateRegistrationFlowWithWebAuthnMethod](docs/UpdateRegistrationFlowWithWebAuthnMethod.md)
|
517
|
+
- [UpdateSettingsFlowBody](docs/UpdateSettingsFlowBody.md)
|
518
|
+
- [UpdateSettingsFlowWithLookupMethod](docs/UpdateSettingsFlowWithLookupMethod.md)
|
519
|
+
- [UpdateSettingsFlowWithOidcMethod](docs/UpdateSettingsFlowWithOidcMethod.md)
|
520
|
+
- [UpdateSettingsFlowWithPasskeyMethod](docs/UpdateSettingsFlowWithPasskeyMethod.md)
|
521
|
+
- [UpdateSettingsFlowWithPasswordMethod](docs/UpdateSettingsFlowWithPasswordMethod.md)
|
522
|
+
- [UpdateSettingsFlowWithProfileMethod](docs/UpdateSettingsFlowWithProfileMethod.md)
|
523
|
+
- [UpdateSettingsFlowWithSamlMethod](docs/UpdateSettingsFlowWithSamlMethod.md)
|
524
|
+
- [UpdateSettingsFlowWithTotpMethod](docs/UpdateSettingsFlowWithTotpMethod.md)
|
525
|
+
- [UpdateSettingsFlowWithWebAuthnMethod](docs/UpdateSettingsFlowWithWebAuthnMethod.md)
|
526
|
+
- [UpdateSubscriptionBody](docs/UpdateSubscriptionBody.md)
|
527
|
+
- [UpdateVerificationFlowBody](docs/UpdateVerificationFlowBody.md)
|
528
|
+
- [UpdateVerificationFlowWithCodeMethod](docs/UpdateVerificationFlowWithCodeMethod.md)
|
529
|
+
- [UpdateVerificationFlowWithLinkMethod](docs/UpdateVerificationFlowWithLinkMethod.md)
|
530
|
+
- [UpdateWorkspaceBody](docs/UpdateWorkspaceBody.md)
|
531
|
+
- [Usage](docs/Usage.md)
|
532
|
+
- [VerifiableCredentialPrimingResponse](docs/VerifiableCredentialPrimingResponse.md)
|
533
|
+
- [VerifiableCredentialProof](docs/VerifiableCredentialProof.md)
|
534
|
+
- [VerifiableCredentialResponse](docs/VerifiableCredentialResponse.md)
|
535
|
+
- [VerifiableIdentityAddress](docs/VerifiableIdentityAddress.md)
|
536
|
+
- [VerificationFlow](docs/VerificationFlow.md)
|
537
|
+
- [VerificationFlowState](docs/VerificationFlowState.md)
|
538
|
+
- [Version](docs/Version.md)
|
539
|
+
- [Warning](docs/Warning.md)
|
540
|
+
- [Workspace](docs/Workspace.md)
|
541
|
+
- [WorkspaceApiKey](docs/WorkspaceApiKey.md)
|
542
|
+
|
543
|
+
|
544
|
+
<a id="documentation-for-authorization"></a>
|
545
|
+
## Documentation For Authorization
|
546
|
+
|
547
|
+
|
548
|
+
Authentication schemes defined for the API:
|
549
|
+
<a id="basic"></a>
|
550
|
+
### basic
|
551
|
+
|
552
|
+
- **Type**: HTTP basic authentication
|
553
|
+
|
554
|
+
<a id="bearer"></a>
|
555
|
+
### bearer
|
556
|
+
|
557
|
+
- **Type**: Bearer authentication
|
558
|
+
|
559
|
+
<a id="oauth2"></a>
|
560
|
+
### oauth2
|
561
|
+
|
562
|
+
- **Type**: OAuth
|
563
|
+
- **Flow**: accessCode
|
564
|
+
- **Authorization URL**: https://hydra.demo.ory.sh/oauth2/auth
|
565
|
+
- **Scopes**:
|
566
|
+
- **offline**: A scope required when requesting refresh tokens (alias for `offline_access`)
|
567
|
+
- **offline_access**: A scope required when requesting refresh tokens
|
568
|
+
- **openid**: Request an OpenID Connect ID Token
|
569
|
+
|
570
|
+
<a id="oryAccessToken"></a>
|
571
|
+
### oryAccessToken
|
572
|
+
|
573
|
+
- **Type**: Bearer authentication
|
574
|
+
|
575
|
+
<a id="oryWorkspaceApiKey"></a>
|
576
|
+
### oryWorkspaceApiKey
|
577
|
+
|
578
|
+
- **Type**: Bearer authentication
|
579
|
+
|
580
|
+
|
581
|
+
## Author
|
582
|
+
|
583
|
+
support@ory.sh
|
584
|
+
|
585
|
+
|