ory-client 1.4.6__tar.gz → 1.4.8__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.4.8/PKG-INFO +14 -0
- ory-client-1.4.8/README.md +552 -0
- ory-client-1.4.8/ory_client/__init__.py +28 -0
- ory-client-1.4.8/ory_client/api/courier_api.py +327 -0
- ory-client-1.4.8/ory_client/api/frontend_api.py +4241 -0
- ory-client-1.4.8/ory_client/api/identity_api.py +2655 -0
- ory-client-1.4.8/ory_client/api/jwk_api.py +1035 -0
- ory-client-1.4.8/ory_client/api/metadata_api.py +411 -0
- ory-client-1.4.8/ory_client/api/o_auth2_api.py +3965 -0
- ory-client-1.4.8/ory_client/api/oidc_api.py +1079 -0
- ory-client-1.4.8/ory_client/api/permission_api.py +813 -0
- ory-client-1.4.8/ory_client/api/project_api.py +2697 -0
- ory-client-1.4.8/ory_client/api/relationship_api.py +894 -0
- ory-client-1.4.8/ory_client/api/wellknown_api.py +160 -0
- ory-client-1.4.8/ory_client/api_client.py +897 -0
- ory-client-1.4.8/ory_client/configuration.py +498 -0
- ory-client-1.4.8/ory_client/exceptions.py +159 -0
- ory-client-1.4.8/ory_client/model/accept_o_auth2_consent_request.py +292 -0
- ory-client-1.4.8/ory_client/model/accept_o_auth2_consent_request_session.py +268 -0
- ory-client-1.4.8/ory_client/model/accept_o_auth2_login_request.py +308 -0
- ory-client-1.4.8/ory_client/model/active_project_in_console.py +264 -0
- ory-client-1.4.8/ory_client/model/attribute.py +268 -0
- ory-client-1.4.8/ory_client/model/attribute_filter.py +282 -0
- ory-client-1.4.8/ory_client/model/attributes_count_datapoint.py +276 -0
- ory-client-1.4.8/ory_client/model/authenticator_assurance_level.py +293 -0
- ory-client-1.4.8/ory_client/model/batch_patch_identities_response.py +270 -0
- ory-client-1.4.8/ory_client/model/check_opl_syntax_result.py +270 -0
- ory-client-1.4.8/ory_client/model/check_permission_result.py +270 -0
- ory-client-1.4.8/ory_client/model/cloud_account.py +272 -0
- ory-client-1.4.8/ory_client/model/consistency_request_parameters.py +269 -0
- ory-client-1.4.8/ory_client/model/continue_with.py +356 -0
- ory-client-1.4.8/ory_client/model/continue_with_recovery_ui.py +287 -0
- ory-client-1.4.8/ory_client/model/continue_with_recovery_ui_flow.py +274 -0
- ory-client-1.4.8/ory_client/model/continue_with_set_ory_session_token.py +281 -0
- ory-client-1.4.8/ory_client/model/continue_with_settings_ui.py +287 -0
- ory-client-1.4.8/ory_client/model/continue_with_settings_ui_flow.py +270 -0
- ory-client-1.4.8/ory_client/model/continue_with_verification_ui.py +287 -0
- ory-client-1.4.8/ory_client/model/continue_with_verification_ui_flow.py +280 -0
- ory-client-1.4.8/ory_client/model/courier_message_status.py +293 -0
- ory-client-1.4.8/ory_client/model/courier_message_type.py +291 -0
- ory-client-1.4.8/ory_client/model/create_custom_domain_body.py +280 -0
- ory-client-1.4.8/ory_client/model/create_identity_body.py +312 -0
- ory-client-1.4.8/ory_client/model/create_invite_response.py +282 -0
- ory-client-1.4.8/ory_client/model/create_json_web_key_set.py +282 -0
- ory-client-1.4.8/ory_client/model/create_member_invite_response.py +287 -0
- ory-client-1.4.8/ory_client/model/create_project_api_key_request.py +270 -0
- ory-client-1.4.8/ory_client/model/create_project_body.py +274 -0
- ory-client-1.4.8/ory_client/model/create_project_branding.py +290 -0
- ory-client-1.4.8/ory_client/model/create_project_member_invite_body.py +264 -0
- ory-client-1.4.8/ory_client/model/create_project_normalized_payload.py +1079 -0
- ory-client-1.4.8/ory_client/model/create_recovery_code_for_identity_body.py +279 -0
- ory-client-1.4.8/ory_client/model/create_recovery_link_for_identity_body.py +279 -0
- ory-client-1.4.8/ory_client/model/create_relationship_body.py +286 -0
- ory-client-1.4.8/ory_client/model/create_subscription_body.py +300 -0
- ory-client-1.4.8/ory_client/model/create_verifiable_credential_request_body.py +278 -0
- ory-client-1.4.8/ory_client/model/create_workspace_member_invite_body.py +264 -0
- ory-client-1.4.8/ory_client/model/credential_supported_draft00.py +276 -0
- ory-client-1.4.8/ory_client/model/custom_domain.py +334 -0
- ory-client-1.4.8/ory_client/model/delete_my_sessions_count.py +264 -0
- ory-client-1.4.8/ory_client/model/email_template_data.py +282 -0
- ory-client-1.4.8/ory_client/model/email_template_data_body.py +276 -0
- ory-client-1.4.8/ory_client/model/error_authenticator_assurance_level_not_satisfied.py +274 -0
- ory-client-1.4.8/ory_client/model/error_browser_location_change_required.py +274 -0
- ory-client-1.4.8/ory_client/model/error_flow_replaced.py +274 -0
- ory-client-1.4.8/ory_client/model/error_generic.py +276 -0
- ory-client-1.4.8/ory_client/model/error_o_auth2.py +280 -0
- ory-client-1.4.8/ory_client/model/expanded_permission_tree.py +294 -0
- ory-client-1.4.8/ory_client/model/flow_error.py +282 -0
- ory-client-1.4.8/ory_client/model/generic_error.py +308 -0
- ory-client-1.4.8/ory_client/model/generic_error_content.py +280 -0
- ory-client-1.4.8/ory_client/model/generic_usage.py +276 -0
- ory-client-1.4.8/ory_client/model/get_attributes_count_response.py +273 -0
- ory-client-1.4.8/ory_client/model/get_managed_identity_schema_location.py +264 -0
- ory-client-1.4.8/ory_client/model/get_metrics_event_attributes_response.py +267 -0
- ory-client-1.4.8/ory_client/model/get_metrics_event_types_response.py +267 -0
- ory-client-1.4.8/ory_client/model/get_organization_response.py +276 -0
- ory-client-1.4.8/ory_client/model/get_project_events_body.py +298 -0
- ory-client-1.4.8/ory_client/model/get_project_events_response.py +278 -0
- ory-client-1.4.8/ory_client/model/get_project_metrics_response.py +273 -0
- ory-client-1.4.8/ory_client/model/get_session_activity_response.py +273 -0
- ory-client-1.4.8/ory_client/model/get_version200_response.py +270 -0
- ory-client-1.4.8/ory_client/model/health_not_ready_status.py +264 -0
- ory-client-1.4.8/ory_client/model/health_status.py +264 -0
- ory-client-1.4.8/ory_client/model/identity.py +340 -0
- ory-client-1.4.8/ory_client/model/identity_credentials.py +290 -0
- ory-client-1.4.8/ory_client/model/identity_credentials_code.py +268 -0
- ory-client-1.4.8/ory_client/model/identity_credentials_oidc.py +270 -0
- ory-client-1.4.8/ory_client/model/identity_credentials_oidc_provider.py +284 -0
- ory-client-1.4.8/ory_client/model/identity_credentials_password.py +264 -0
- ory-client-1.4.8/ory_client/model/identity_credentials_type.py +295 -0
- ory-client-1.4.8/ory_client/model/identity_patch.py +274 -0
- ory-client-1.4.8/ory_client/model/identity_patch_response.py +275 -0
- ory-client-1.4.8/ory_client/model/identity_schema_container.py +268 -0
- ory-client-1.4.8/ory_client/model/identity_schema_preset.py +276 -0
- ory-client-1.4.8/ory_client/model/identity_schema_presets.py +292 -0
- ory-client-1.4.8/ory_client/model/identity_schemas.py +292 -0
- ory-client-1.4.8/ory_client/model/identity_state.py +291 -0
- ory-client-1.4.8/ory_client/model/identity_with_credentials.py +276 -0
- ory-client-1.4.8/ory_client/model/identity_with_credentials_oidc.py +270 -0
- ory-client-1.4.8/ory_client/model/identity_with_credentials_oidc_config.py +276 -0
- ory-client-1.4.8/ory_client/model/identity_with_credentials_oidc_config_provider.py +276 -0
- ory-client-1.4.8/ory_client/model/identity_with_credentials_password.py +270 -0
- ory-client-1.4.8/ory_client/model/identity_with_credentials_password_config.py +268 -0
- ory-client-1.4.8/ory_client/model/internal_get_project_branding_body.py +264 -0
- ory-client-1.4.8/ory_client/model/internal_is_ax_welcome_screen_enabled_for_project_body.py +276 -0
- ory-client-1.4.8/ory_client/model/internal_is_owner_for_project_by_slug_body.py +290 -0
- ory-client-1.4.8/ory_client/model/internal_is_owner_for_project_by_slug_response.py +270 -0
- ory-client-1.4.8/ory_client/model/internal_provision_mock_subscription.py +296 -0
- ory-client-1.4.8/ory_client/model/introspected_o_auth2_token.py +322 -0
- ory-client-1.4.8/ory_client/model/is_owner_for_project_by_slug.py +276 -0
- ory-client-1.4.8/ory_client/model/is_ready200_response.py +270 -0
- ory-client-1.4.8/ory_client/model/is_ready503_response.py +270 -0
- ory-client-1.4.8/ory_client/model/json_patch.py +292 -0
- ory-client-1.4.8/ory_client/model/json_patch_document.py +292 -0
- ory-client-1.4.8/ory_client/model/json_web_key.py +340 -0
- ory-client-1.4.8/ory_client/model/json_web_key_set.py +270 -0
- ory-client-1.4.8/ory_client/model/keto_namespace.py +268 -0
- ory-client-1.4.8/ory_client/model/keto_namespaces.py +292 -0
- ory-client-1.4.8/ory_client/model/list_custom_domains.py +292 -0
- ory-client-1.4.8/ory_client/model/list_my_workspaces_response.py +288 -0
- ory-client-1.4.8/ory_client/model/list_organizations_response.py +276 -0
- ory-client-1.4.8/ory_client/model/login_flow.py +358 -0
- ory-client-1.4.8/ory_client/model/login_flow_state.py +292 -0
- ory-client-1.4.8/ory_client/model/logout_flow.py +276 -0
- ory-client-1.4.8/ory_client/model/managed_identity_schema.py +300 -0
- ory-client-1.4.8/ory_client/model/managed_identity_schema_validation_result.py +268 -0
- ory-client-1.4.8/ory_client/model/managed_identity_schemas.py +292 -0
- ory-client-1.4.8/ory_client/model/member_invite.py +321 -0
- ory-client-1.4.8/ory_client/model/member_invites.py +292 -0
- ory-client-1.4.8/ory_client/model/message.py +352 -0
- ory-client-1.4.8/ory_client/model/message_dispatch.py +302 -0
- ory-client-1.4.8/ory_client/model/metrics_datapoint.py +276 -0
- ory-client-1.4.8/ory_client/model/namespace.py +264 -0
- ory-client-1.4.8/ory_client/model/needs_privileged_session_error.py +280 -0
- ory-client-1.4.8/ory_client/model/normalized_project.py +337 -0
- ory-client-1.4.8/ory_client/model/normalized_project_revision.py +1075 -0
- ory-client-1.4.8/ory_client/model/normalized_project_revision_hook.py +342 -0
- ory-client-1.4.8/ory_client/model/normalized_project_revision_identity_schema.py +308 -0
- ory-client-1.4.8/ory_client/model/normalized_project_revision_identity_schemas.py +292 -0
- ory-client-1.4.8/ory_client/model/normalized_project_revision_third_party_provider.py +364 -0
- ory-client-1.4.8/ory_client/model/normalized_project_revision_tokenizer_template.py +300 -0
- ory-client-1.4.8/ory_client/model/normalized_project_revision_tokenizer_templates.py +292 -0
- ory-client-1.4.8/ory_client/model/normalized_projects.py +292 -0
- ory-client-1.4.8/ory_client/model/null_duration.py +292 -0
- ory-client-1.4.8/ory_client/model/o_auth2_client.py +456 -0
- ory-client-1.4.8/ory_client/model/o_auth2_client_token_lifespans.py +306 -0
- ory-client-1.4.8/ory_client/model/o_auth2_consent_request.py +328 -0
- ory-client-1.4.8/ory_client/model/o_auth2_consent_request_open_id_connect_context.py +280 -0
- ory-client-1.4.8/ory_client/model/o_auth2_consent_session.py +304 -0
- ory-client-1.4.8/ory_client/model/o_auth2_consent_session_expires_at.py +280 -0
- ory-client-1.4.8/ory_client/model/o_auth2_consent_sessions.py +292 -0
- ory-client-1.4.8/ory_client/model/o_auth2_login_request.py +324 -0
- ory-client-1.4.8/ory_client/model/o_auth2_logout_request.py +290 -0
- ory-client-1.4.8/ory_client/model/o_auth2_redirect_to.py +270 -0
- ory-client-1.4.8/ory_client/model/o_auth2_token_exchange.py +284 -0
- ory-client-1.4.8/ory_client/model/oidc_configuration.py +412 -0
- ory-client-1.4.8/ory_client/model/oidc_user_info.py +336 -0
- ory-client-1.4.8/ory_client/model/organization.py +302 -0
- ory-client-1.4.8/ory_client/model/organization_body.py +268 -0
- ory-client-1.4.8/ory_client/model/pagination.py +274 -0
- ory-client-1.4.8/ory_client/model/pagination_headers.py +268 -0
- ory-client-1.4.8/ory_client/model/parse_error.py +278 -0
- ory-client-1.4.8/ory_client/model/patch_identities_body.py +270 -0
- ory-client-1.4.8/ory_client/model/perform_native_logout_body.py +270 -0
- ory-client-1.4.8/ory_client/model/permissions_on_project.py +260 -0
- ory-client-1.4.8/ory_client/model/plan.py +276 -0
- ory-client-1.4.8/ory_client/model/plan_details.py +312 -0
- ory-client-1.4.8/ory_client/model/plans.py +287 -0
- ory-client-1.4.8/ory_client/model/post_check_permission_body.py +286 -0
- ory-client-1.4.8/ory_client/model/post_check_permission_or_error_body.py +286 -0
- ory-client-1.4.8/ory_client/model/pricing.py +292 -0
- ory-client-1.4.8/ory_client/model/project.py +319 -0
- ory-client-1.4.8/ory_client/model/project_api_key.py +298 -0
- ory-client-1.4.8/ory_client/model/project_api_keys.py +292 -0
- ory-client-1.4.8/ory_client/model/project_branding.py +303 -0
- ory-client-1.4.8/ory_client/model/project_branding_colors.py +376 -0
- ory-client-1.4.8/ory_client/model/project_branding_theme.py +421 -0
- ory-client-1.4.8/ory_client/model/project_branding_themes.py +292 -0
- ory-client-1.4.8/ory_client/model/project_cors.py +268 -0
- ory-client-1.4.8/ory_client/model/project_events_datapoint.py +288 -0
- ory-client-1.4.8/ory_client/model/project_host.py +281 -0
- ory-client-1.4.8/ory_client/model/project_member.py +287 -0
- ory-client-1.4.8/ory_client/model/project_members.py +292 -0
- ory-client-1.4.8/ory_client/model/project_metadata.py +327 -0
- ory-client-1.4.8/ory_client/model/project_metadata_list.py +292 -0
- ory-client-1.4.8/ory_client/model/project_revision_hooks.py +292 -0
- ory-client-1.4.8/ory_client/model/project_revision_identity_schemas.py +292 -0
- ory-client-1.4.8/ory_client/model/project_revision_third_party_login_providers.py +292 -0
- ory-client-1.4.8/ory_client/model/project_revisions.py +292 -0
- ory-client-1.4.8/ory_client/model/project_service_identity.py +270 -0
- ory-client-1.4.8/ory_client/model/project_service_o_auth2.py +270 -0
- ory-client-1.4.8/ory_client/model/project_service_permission.py +270 -0
- ory-client-1.4.8/ory_client/model/project_services.py +282 -0
- ory-client-1.4.8/ory_client/model/projects.py +292 -0
- ory-client-1.4.8/ory_client/model/quota_usage.py +322 -0
- ory-client-1.4.8/ory_client/model/recovery_code_for_identity.py +280 -0
- ory-client-1.4.8/ory_client/model/recovery_flow.py +326 -0
- ory-client-1.4.8/ory_client/model/recovery_flow_state.py +292 -0
- ory-client-1.4.8/ory_client/model/recovery_identity_address.py +290 -0
- ory-client-1.4.8/ory_client/model/recovery_link_for_identity.py +274 -0
- ory-client-1.4.8/ory_client/model/registration_flow.py +344 -0
- ory-client-1.4.8/ory_client/model/registration_flow_state.py +292 -0
- ory-client-1.4.8/ory_client/model/reject_o_auth2_request.py +280 -0
- ory-client-1.4.8/ory_client/model/relation_query.py +286 -0
- ory-client-1.4.8/ory_client/model/relationship.py +296 -0
- ory-client-1.4.8/ory_client/model/relationship_namespaces.py +270 -0
- ory-client-1.4.8/ory_client/model/relationship_patch.py +278 -0
- ory-client-1.4.8/ory_client/model/relationships.py +274 -0
- ory-client-1.4.8/ory_client/model/rfc6749_error_json.py +280 -0
- ory-client-1.4.8/ory_client/model/schema_patch.py +276 -0
- ory-client-1.4.8/ory_client/model/self_service_flow_expired_error.py +282 -0
- ory-client-1.4.8/ory_client/model/session.py +318 -0
- ory-client-1.4.8/ory_client/model/session_activity_datapoint.py +282 -0
- ory-client-1.4.8/ory_client/model/session_authentication_method.py +297 -0
- ory-client-1.4.8/ory_client/model/session_authentication_methods.py +292 -0
- ory-client-1.4.8/ory_client/model/session_device.py +282 -0
- ory-client-1.4.8/ory_client/model/set_active_project_in_console_body.py +270 -0
- ory-client-1.4.8/ory_client/model/set_custom_domain_body.py +280 -0
- ory-client-1.4.8/ory_client/model/set_project.py +296 -0
- ory-client-1.4.8/ory_client/model/set_project_branding_theme_body.py +290 -0
- ory-client-1.4.8/ory_client/model/settings_flow.py +334 -0
- ory-client-1.4.8/ory_client/model/settings_flow_state.py +291 -0
- ory-client-1.4.8/ory_client/model/source_position.py +268 -0
- ory-client-1.4.8/ory_client/model/string_slice_json_format.py +287 -0
- ory-client-1.4.8/ory_client/model/stripe_customer.py +264 -0
- ory-client-1.4.8/ory_client/model/subject_set.py +282 -0
- ory-client-1.4.8/ory_client/model/subscription.py +336 -0
- ory-client-1.4.8/ory_client/model/successful_code_exchange_response.py +280 -0
- ory-client-1.4.8/ory_client/model/successful_native_login.py +280 -0
- ory-client-1.4.8/ory_client/model/successful_native_registration.py +292 -0
- ory-client-1.4.8/ory_client/model/successful_project_update.py +284 -0
- ory-client-1.4.8/ory_client/model/token_pagination.py +274 -0
- ory-client-1.4.8/ory_client/model/token_pagination_headers.py +268 -0
- ory-client-1.4.8/ory_client/model/token_pagination_request_parameters.py +274 -0
- ory-client-1.4.8/ory_client/model/token_pagination_response_headers.py +268 -0
- ory-client-1.4.8/ory_client/model/trust_o_auth2_jwt_grant_issuer.py +302 -0
- ory-client-1.4.8/ory_client/model/trusted_o_auth2_jwt_grant_issuer.py +298 -0
- ory-client-1.4.8/ory_client/model/trusted_o_auth2_jwt_grant_issuers.py +292 -0
- ory-client-1.4.8/ory_client/model/trusted_o_auth2_jwt_grant_json_web_key.py +268 -0
- ory-client-1.4.8/ory_client/model/ui_container.py +294 -0
- ory-client-1.4.8/ory_client/model/ui_node.py +322 -0
- ory-client-1.4.8/ory_client/model/ui_node_anchor_attributes.py +294 -0
- ory-client-1.4.8/ory_client/model/ui_node_attributes.py +440 -0
- ory-client-1.4.8/ory_client/model/ui_node_image_attributes.py +294 -0
- ory-client-1.4.8/ory_client/model/ui_node_input_attributes.py +340 -0
- ory-client-1.4.8/ory_client/model/ui_node_meta.py +270 -0
- ory-client-1.4.8/ory_client/model/ui_node_script_attributes.py +318 -0
- ory-client-1.4.8/ory_client/model/ui_node_text_attributes.py +288 -0
- ory-client-1.4.8/ory_client/model/ui_nodes.py +292 -0
- ory-client-1.4.8/ory_client/model/ui_text.py +291 -0
- ory-client-1.4.8/ory_client/model/ui_texts.py +292 -0
- ory-client-1.4.8/ory_client/model/update_identity_body.py +302 -0
- ory-client-1.4.8/ory_client/model/update_login_flow_body.py +407 -0
- ory-client-1.4.8/ory_client/model/update_login_flow_with_code_method.py +288 -0
- ory-client-1.4.8/ory_client/model/update_login_flow_with_lookup_secret_method.py +280 -0
- ory-client-1.4.8/ory_client/model/update_login_flow_with_oidc_method.py +296 -0
- ory-client-1.4.8/ory_client/model/update_login_flow_with_password_method.py +290 -0
- ory-client-1.4.8/ory_client/model/update_login_flow_with_totp_method.py +280 -0
- ory-client-1.4.8/ory_client/model/update_login_flow_with_web_authn_method.py +284 -0
- ory-client-1.4.8/ory_client/model/update_recovery_flow_body.py +347 -0
- ory-client-1.4.8/ory_client/model/update_recovery_flow_with_code_method.py +286 -0
- ory-client-1.4.8/ory_client/model/update_recovery_flow_with_link_method.py +284 -0
- ory-client-1.4.8/ory_client/model/update_registration_flow_body.py +389 -0
- ory-client-1.4.8/ory_client/model/update_registration_flow_with_code_method.py +292 -0
- ory-client-1.4.8/ory_client/model/update_registration_flow_with_oidc_method.py +300 -0
- ory-client-1.4.8/ory_client/model/update_registration_flow_with_password_method.py +290 -0
- ory-client-1.4.8/ory_client/model/update_registration_flow_with_web_authn_method.py +292 -0
- ory-client-1.4.8/ory_client/model/update_settings_flow_body.py +415 -0
- ory-client-1.4.8/ory_client/model/update_settings_flow_with_lookup_method.py +290 -0
- ory-client-1.4.8/ory_client/model/update_settings_flow_with_oidc_method.py +290 -0
- ory-client-1.4.8/ory_client/model/update_settings_flow_with_password_method.py +280 -0
- ory-client-1.4.8/ory_client/model/update_settings_flow_with_profile_method.py +280 -0
- ory-client-1.4.8/ory_client/model/update_settings_flow_with_totp_method.py +282 -0
- ory-client-1.4.8/ory_client/model/update_settings_flow_with_web_authn_method.py +286 -0
- ory-client-1.4.8/ory_client/model/update_subscription_body.py +284 -0
- ory-client-1.4.8/ory_client/model/update_verification_flow_body.py +347 -0
- ory-client-1.4.8/ory_client/model/update_verification_flow_with_code_method.py +286 -0
- ory-client-1.4.8/ory_client/model/update_verification_flow_with_link_method.py +284 -0
- ory-client-1.4.8/ory_client/model/usage.py +270 -0
- ory-client-1.4.8/ory_client/model/verifiable_credential_priming_response.py +292 -0
- ory-client-1.4.8/ory_client/model/verifiable_credential_proof.py +268 -0
- ory-client-1.4.8/ory_client/model/verifiable_credential_response.py +268 -0
- ory-client-1.4.8/ory_client/model/verifiable_identity_address.py +304 -0
- ory-client-1.4.8/ory_client/model/verification_flow.py +314 -0
- ory-client-1.4.8/ory_client/model/verification_flow_state.py +292 -0
- ory-client-1.4.8/ory_client/model/version.py +264 -0
- ory-client-1.4.8/ory_client/model/warning.py +268 -0
- ory-client-1.4.8/ory_client/model/workspace.py +292 -0
- ory-client-1.4.8/ory_client/model/workspaces.py +292 -0
- ory-client-1.4.8/ory_client/model_utils.py +2059 -0
- ory-client-1.4.8/ory_client/models/__init__.py +283 -0
- ory-client-1.4.8/ory_client/rest.py +353 -0
- ory-client-1.4.8/ory_client.egg-info/PKG-INFO +14 -0
- ory-client-1.4.8/ory_client.egg-info/SOURCES.txt +585 -0
- ory-client-1.4.8/setup.py +44 -0
- ory-client-1.4.8/test/test_accept_o_auth2_consent_request.py +40 -0
- ory-client-1.4.8/test/test_accept_o_auth2_consent_request_session.py +36 -0
- ory-client-1.4.8/test/test_accept_o_auth2_login_request.py +38 -0
- ory-client-1.4.8/test/test_active_project_in_console.py +36 -0
- ory-client-1.4.8/test/test_attribute.py +36 -0
- ory-client-1.4.8/test/test_attribute_filter.py +36 -0
- ory-client-1.4.8/test/test_attributes_count_datapoint.py +36 -0
- ory-client-1.4.8/test/test_authenticator_assurance_level.py +36 -0
- ory-client-1.4.8/test/test_batch_patch_identities_response.py +38 -0
- ory-client-1.4.8/test/test_check_opl_syntax_result.py +38 -0
- ory-client-1.4.8/test/test_check_permission_result.py +36 -0
- ory-client-1.4.8/test/test_cloud_account.py +36 -0
- ory-client-1.4.8/test/test_consistency_request_parameters.py +36 -0
- ory-client-1.4.8/test/test_continue_with.py +46 -0
- ory-client-1.4.8/test/test_continue_with_recovery_ui.py +38 -0
- ory-client-1.4.8/test/test_continue_with_recovery_ui_flow.py +36 -0
- ory-client-1.4.8/test/test_continue_with_set_ory_session_token.py +36 -0
- ory-client-1.4.8/test/test_continue_with_settings_ui.py +38 -0
- ory-client-1.4.8/test/test_continue_with_settings_ui_flow.py +36 -0
- ory-client-1.4.8/test/test_continue_with_verification_ui.py +38 -0
- ory-client-1.4.8/test/test_continue_with_verification_ui_flow.py +36 -0
- ory-client-1.4.8/test/test_courier_api.py +43 -0
- ory-client-1.4.8/test/test_courier_message_status.py +36 -0
- ory-client-1.4.8/test/test_courier_message_type.py +36 -0
- ory-client-1.4.8/test/test_create_custom_domain_body.py +36 -0
- ory-client-1.4.8/test/test_create_identity_body.py +44 -0
- ory-client-1.4.8/test/test_create_invite_response.py +38 -0
- ory-client-1.4.8/test/test_create_json_web_key_set.py +36 -0
- ory-client-1.4.8/test/test_create_member_invite_response.py +36 -0
- ory-client-1.4.8/test/test_create_project_api_key_request.py +36 -0
- ory-client-1.4.8/test/test_create_project_body.py +36 -0
- ory-client-1.4.8/test/test_create_project_branding.py +38 -0
- ory-client-1.4.8/test/test_create_project_member_invite_body.py +36 -0
- ory-client-1.4.8/test/test_create_project_normalized_payload.py +48 -0
- ory-client-1.4.8/test/test_create_recovery_code_for_identity_body.py +36 -0
- ory-client-1.4.8/test/test_create_recovery_link_for_identity_body.py +36 -0
- ory-client-1.4.8/test/test_create_relationship_body.py +38 -0
- ory-client-1.4.8/test/test_create_subscription_body.py +36 -0
- ory-client-1.4.8/test/test_create_verifiable_credential_request_body.py +38 -0
- ory-client-1.4.8/test/test_create_workspace_member_invite_body.py +36 -0
- ory-client-1.4.8/test/test_credential_supported_draft00.py +36 -0
- ory-client-1.4.8/test/test_custom_domain.py +38 -0
- ory-client-1.4.8/test/test_delete_my_sessions_count.py +36 -0
- ory-client-1.4.8/test/test_email_template_data.py +38 -0
- ory-client-1.4.8/test/test_email_template_data_body.py +36 -0
- ory-client-1.4.8/test/test_error_authenticator_assurance_level_not_satisfied.py +38 -0
- ory-client-1.4.8/test/test_error_browser_location_change_required.py +38 -0
- ory-client-1.4.8/test/test_error_flow_replaced.py +38 -0
- ory-client-1.4.8/test/test_error_generic.py +38 -0
- ory-client-1.4.8/test/test_error_o_auth2.py +36 -0
- ory-client-1.4.8/test/test_expanded_permission_tree.py +38 -0
- ory-client-1.4.8/test/test_flow_error.py +36 -0
- ory-client-1.4.8/test/test_frontend_api.py +239 -0
- ory-client-1.4.8/test/test_generic_error.py +38 -0
- ory-client-1.4.8/test/test_generic_error_content.py +36 -0
- ory-client-1.4.8/test/test_generic_usage.py +36 -0
- ory-client-1.4.8/test/test_get_attributes_count_response.py +38 -0
- ory-client-1.4.8/test/test_get_managed_identity_schema_location.py +36 -0
- ory-client-1.4.8/test/test_get_metrics_event_attributes_response.py +36 -0
- ory-client-1.4.8/test/test_get_metrics_event_types_response.py +36 -0
- ory-client-1.4.8/test/test_get_organization_response.py +38 -0
- ory-client-1.4.8/test/test_get_project_events_body.py +38 -0
- ory-client-1.4.8/test/test_get_project_events_response.py +38 -0
- ory-client-1.4.8/test/test_get_project_metrics_response.py +38 -0
- ory-client-1.4.8/test/test_get_session_activity_response.py +38 -0
- ory-client-1.4.8/test/test_get_version200_response.py +36 -0
- ory-client-1.4.8/test/test_health_not_ready_status.py +36 -0
- ory-client-1.4.8/test/test_health_status.py +36 -0
- ory-client-1.4.8/test/test_identity.py +44 -0
- ory-client-1.4.8/test/test_identity_api.py +155 -0
- ory-client-1.4.8/test/test_identity_credentials.py +38 -0
- ory-client-1.4.8/test/test_identity_credentials_code.py +36 -0
- ory-client-1.4.8/test/test_identity_credentials_oidc.py +38 -0
- ory-client-1.4.8/test/test_identity_credentials_oidc_provider.py +36 -0
- ory-client-1.4.8/test/test_identity_credentials_password.py +36 -0
- ory-client-1.4.8/test/test_identity_credentials_type.py +36 -0
- ory-client-1.4.8/test/test_identity_patch.py +38 -0
- ory-client-1.4.8/test/test_identity_patch_response.py +36 -0
- ory-client-1.4.8/test/test_identity_schema_container.py +36 -0
- ory-client-1.4.8/test/test_identity_schema_preset.py +36 -0
- ory-client-1.4.8/test/test_identity_schema_presets.py +38 -0
- ory-client-1.4.8/test/test_identity_schemas.py +38 -0
- ory-client-1.4.8/test/test_identity_state.py +36 -0
- ory-client-1.4.8/test/test_identity_with_credentials.py +40 -0
- ory-client-1.4.8/test/test_identity_with_credentials_oidc.py +38 -0
- ory-client-1.4.8/test/test_identity_with_credentials_oidc_config.py +40 -0
- ory-client-1.4.8/test/test_identity_with_credentials_oidc_config_provider.py +36 -0
- ory-client-1.4.8/test/test_identity_with_credentials_password.py +38 -0
- ory-client-1.4.8/test/test_identity_with_credentials_password_config.py +36 -0
- ory-client-1.4.8/test/test_internal_get_project_branding_body.py +36 -0
- ory-client-1.4.8/test/test_internal_is_ax_welcome_screen_enabled_for_project_body.py +36 -0
- ory-client-1.4.8/test/test_internal_is_owner_for_project_by_slug_body.py +36 -0
- ory-client-1.4.8/test/test_internal_is_owner_for_project_by_slug_response.py +36 -0
- ory-client-1.4.8/test/test_internal_provision_mock_subscription.py +36 -0
- ory-client-1.4.8/test/test_introspected_o_auth2_token.py +36 -0
- ory-client-1.4.8/test/test_is_owner_for_project_by_slug.py +36 -0
- ory-client-1.4.8/test/test_is_ready200_response.py +36 -0
- ory-client-1.4.8/test/test_is_ready503_response.py +36 -0
- ory-client-1.4.8/test/test_json_patch.py +36 -0
- ory-client-1.4.8/test/test_json_patch_document.py +38 -0
- ory-client-1.4.8/test/test_json_web_key.py +36 -0
- ory-client-1.4.8/test/test_json_web_key_set.py +38 -0
- ory-client-1.4.8/test/test_jwk_api.py +78 -0
- ory-client-1.4.8/test/test_keto_namespace.py +36 -0
- ory-client-1.4.8/test/test_keto_namespaces.py +38 -0
- ory-client-1.4.8/test/test_list_custom_domains.py +38 -0
- ory-client-1.4.8/test/test_list_my_workspaces_response.py +38 -0
- ory-client-1.4.8/test/test_list_organizations_response.py +38 -0
- ory-client-1.4.8/test/test_login_flow.py +44 -0
- ory-client-1.4.8/test/test_login_flow_state.py +36 -0
- ory-client-1.4.8/test/test_logout_flow.py +36 -0
- ory-client-1.4.8/test/test_managed_identity_schema.py +36 -0
- ory-client-1.4.8/test/test_managed_identity_schema_validation_result.py +36 -0
- ory-client-1.4.8/test/test_managed_identity_schemas.py +38 -0
- ory-client-1.4.8/test/test_member_invite.py +36 -0
- ory-client-1.4.8/test/test_member_invites.py +38 -0
- ory-client-1.4.8/test/test_message.py +42 -0
- ory-client-1.4.8/test/test_message_dispatch.py +36 -0
- ory-client-1.4.8/test/test_metadata_api.py +50 -0
- ory-client-1.4.8/test/test_metrics_datapoint.py +36 -0
- ory-client-1.4.8/test/test_namespace.py +36 -0
- ory-client-1.4.8/test/test_needs_privileged_session_error.py +38 -0
- ory-client-1.4.8/test/test_normalized_project.py +40 -0
- ory-client-1.4.8/test/test_normalized_project_revision.py +48 -0
- ory-client-1.4.8/test/test_normalized_project_revision_hook.py +36 -0
- ory-client-1.4.8/test/test_normalized_project_revision_identity_schema.py +38 -0
- ory-client-1.4.8/test/test_normalized_project_revision_identity_schemas.py +38 -0
- ory-client-1.4.8/test/test_normalized_project_revision_third_party_provider.py +38 -0
- ory-client-1.4.8/test/test_normalized_project_revision_tokenizer_template.py +36 -0
- ory-client-1.4.8/test/test_normalized_project_revision_tokenizer_templates.py +38 -0
- ory-client-1.4.8/test/test_normalized_projects.py +38 -0
- ory-client-1.4.8/test/test_null_duration.py +36 -0
- ory-client-1.4.8/test/test_o_auth2_api.py +225 -0
- ory-client-1.4.8/test/test_o_auth2_client.py +40 -0
- ory-client-1.4.8/test/test_o_auth2_client_token_lifespans.py +38 -0
- ory-client-1.4.8/test/test_o_auth2_consent_request.py +42 -0
- ory-client-1.4.8/test/test_o_auth2_consent_request_open_id_connect_context.py +36 -0
- ory-client-1.4.8/test/test_o_auth2_consent_session.py +44 -0
- ory-client-1.4.8/test/test_o_auth2_consent_session_expires_at.py +36 -0
- ory-client-1.4.8/test/test_o_auth2_consent_sessions.py +38 -0
- ory-client-1.4.8/test/test_o_auth2_login_request.py +42 -0
- ory-client-1.4.8/test/test_o_auth2_logout_request.py +38 -0
- ory-client-1.4.8/test/test_o_auth2_redirect_to.py +36 -0
- ory-client-1.4.8/test/test_o_auth2_token_exchange.py +36 -0
- ory-client-1.4.8/test/test_oidc_api.py +85 -0
- ory-client-1.4.8/test/test_oidc_configuration.py +38 -0
- ory-client-1.4.8/test/test_oidc_user_info.py +36 -0
- ory-client-1.4.8/test/test_organization.py +38 -0
- ory-client-1.4.8/test/test_organization_body.py +36 -0
- ory-client-1.4.8/test/test_pagination.py +36 -0
- ory-client-1.4.8/test/test_pagination_headers.py +36 -0
- ory-client-1.4.8/test/test_parse_error.py +38 -0
- ory-client-1.4.8/test/test_patch_identities_body.py +38 -0
- ory-client-1.4.8/test/test_perform_native_logout_body.py +36 -0
- ory-client-1.4.8/test/test_permission_api.py +64 -0
- ory-client-1.4.8/test/test_permissions_on_project.py +36 -0
- ory-client-1.4.8/test/test_plan.py +36 -0
- ory-client-1.4.8/test/test_plan_details.py +38 -0
- ory-client-1.4.8/test/test_plans.py +36 -0
- ory-client-1.4.8/test/test_post_check_permission_body.py +38 -0
- ory-client-1.4.8/test/test_post_check_permission_or_error_body.py +38 -0
- ory-client-1.4.8/test/test_pricing.py +38 -0
- ory-client-1.4.8/test/test_project.py +40 -0
- ory-client-1.4.8/test/test_project_api.py +159 -0
- ory-client-1.4.8/test/test_project_api_key.py +36 -0
- ory-client-1.4.8/test/test_project_api_keys.py +38 -0
- ory-client-1.4.8/test/test_project_branding.py +40 -0
- ory-client-1.4.8/test/test_project_branding_colors.py +36 -0
- ory-client-1.4.8/test/test_project_branding_theme.py +36 -0
- ory-client-1.4.8/test/test_project_branding_themes.py +38 -0
- ory-client-1.4.8/test/test_project_cors.py +36 -0
- ory-client-1.4.8/test/test_project_events_datapoint.py +38 -0
- ory-client-1.4.8/test/test_project_host.py +36 -0
- ory-client-1.4.8/test/test_project_member.py +36 -0
- ory-client-1.4.8/test/test_project_members.py +38 -0
- ory-client-1.4.8/test/test_project_metadata.py +38 -0
- ory-client-1.4.8/test/test_project_metadata_list.py +38 -0
- ory-client-1.4.8/test/test_project_revision_hooks.py +38 -0
- ory-client-1.4.8/test/test_project_revision_identity_schemas.py +38 -0
- ory-client-1.4.8/test/test_project_revision_third_party_login_providers.py +38 -0
- ory-client-1.4.8/test/test_project_revisions.py +38 -0
- ory-client-1.4.8/test/test_project_service_identity.py +36 -0
- ory-client-1.4.8/test/test_project_service_o_auth2.py +36 -0
- ory-client-1.4.8/test/test_project_service_permission.py +36 -0
- ory-client-1.4.8/test/test_project_services.py +42 -0
- ory-client-1.4.8/test/test_projects.py +38 -0
- ory-client-1.4.8/test/test_quota_usage.py +36 -0
- ory-client-1.4.8/test/test_recovery_code_for_identity.py +36 -0
- ory-client-1.4.8/test/test_recovery_flow.py +40 -0
- ory-client-1.4.8/test/test_recovery_flow_state.py +36 -0
- ory-client-1.4.8/test/test_recovery_identity_address.py +36 -0
- ory-client-1.4.8/test/test_recovery_link_for_identity.py +36 -0
- ory-client-1.4.8/test/test_registration_flow.py +42 -0
- ory-client-1.4.8/test/test_registration_flow_state.py +36 -0
- ory-client-1.4.8/test/test_reject_o_auth2_request.py +36 -0
- ory-client-1.4.8/test/test_relation_query.py +38 -0
- ory-client-1.4.8/test/test_relationship.py +38 -0
- ory-client-1.4.8/test/test_relationship_api.py +71 -0
- ory-client-1.4.8/test/test_relationship_namespaces.py +38 -0
- ory-client-1.4.8/test/test_relationship_patch.py +38 -0
- ory-client-1.4.8/test/test_relationships.py +38 -0
- ory-client-1.4.8/test/test_rfc6749_error_json.py +36 -0
- ory-client-1.4.8/test/test_schema_patch.py +36 -0
- ory-client-1.4.8/test/test_self_service_flow_expired_error.py +38 -0
- ory-client-1.4.8/test/test_session.py +44 -0
- ory-client-1.4.8/test/test_session_activity_datapoint.py +36 -0
- ory-client-1.4.8/test/test_session_authentication_method.py +38 -0
- ory-client-1.4.8/test/test_session_authentication_methods.py +38 -0
- ory-client-1.4.8/test/test_session_device.py +36 -0
- ory-client-1.4.8/test/test_set_active_project_in_console_body.py +36 -0
- ory-client-1.4.8/test/test_set_custom_domain_body.py +36 -0
- ory-client-1.4.8/test/test_set_project.py +40 -0
- ory-client-1.4.8/test/test_set_project_branding_theme_body.py +38 -0
- ory-client-1.4.8/test/test_settings_flow.py +42 -0
- ory-client-1.4.8/test/test_settings_flow_state.py +36 -0
- ory-client-1.4.8/test/test_source_position.py +36 -0
- ory-client-1.4.8/test/test_string_slice_json_format.py +36 -0
- ory-client-1.4.8/test/test_stripe_customer.py +36 -0
- ory-client-1.4.8/test/test_subject_set.py +36 -0
- ory-client-1.4.8/test/test_subscription.py +36 -0
- ory-client-1.4.8/test/test_successful_code_exchange_response.py +38 -0
- ory-client-1.4.8/test/test_successful_native_login.py +38 -0
- ory-client-1.4.8/test/test_successful_native_registration.py +42 -0
- ory-client-1.4.8/test/test_successful_project_update.py +40 -0
- ory-client-1.4.8/test/test_token_pagination.py +36 -0
- ory-client-1.4.8/test/test_token_pagination_headers.py +36 -0
- ory-client-1.4.8/test/test_token_pagination_request_parameters.py +36 -0
- ory-client-1.4.8/test/test_token_pagination_response_headers.py +36 -0
- ory-client-1.4.8/test/test_trust_o_auth2_jwt_grant_issuer.py +38 -0
- ory-client-1.4.8/test/test_trusted_o_auth2_jwt_grant_issuer.py +38 -0
- ory-client-1.4.8/test/test_trusted_o_auth2_jwt_grant_issuers.py +38 -0
- ory-client-1.4.8/test/test_trusted_o_auth2_jwt_grant_json_web_key.py +36 -0
- ory-client-1.4.8/test/test_ui_container.py +40 -0
- ory-client-1.4.8/test/test_ui_node.py +42 -0
- ory-client-1.4.8/test/test_ui_node_anchor_attributes.py +38 -0
- ory-client-1.4.8/test/test_ui_node_attributes.py +48 -0
- ory-client-1.4.8/test/test_ui_node_image_attributes.py +36 -0
- ory-client-1.4.8/test/test_ui_node_input_attributes.py +38 -0
- ory-client-1.4.8/test/test_ui_node_meta.py +38 -0
- ory-client-1.4.8/test/test_ui_node_script_attributes.py +36 -0
- ory-client-1.4.8/test/test_ui_node_text_attributes.py +38 -0
- ory-client-1.4.8/test/test_ui_nodes.py +38 -0
- ory-client-1.4.8/test/test_ui_text.py +36 -0
- ory-client-1.4.8/test/test_ui_texts.py +38 -0
- ory-client-1.4.8/test/test_update_identity_body.py +40 -0
- ory-client-1.4.8/test/test_update_login_flow_body.py +48 -0
- ory-client-1.4.8/test/test_update_login_flow_with_code_method.py +36 -0
- ory-client-1.4.8/test/test_update_login_flow_with_lookup_secret_method.py +36 -0
- ory-client-1.4.8/test/test_update_login_flow_with_oidc_method.py +36 -0
- ory-client-1.4.8/test/test_update_login_flow_with_password_method.py +36 -0
- ory-client-1.4.8/test/test_update_login_flow_with_totp_method.py +36 -0
- ory-client-1.4.8/test/test_update_login_flow_with_web_authn_method.py +36 -0
- ory-client-1.4.8/test/test_update_recovery_flow_body.py +40 -0
- ory-client-1.4.8/test/test_update_recovery_flow_with_code_method.py +36 -0
- ory-client-1.4.8/test/test_update_recovery_flow_with_link_method.py +36 -0
- ory-client-1.4.8/test/test_update_registration_flow_body.py +44 -0
- ory-client-1.4.8/test/test_update_registration_flow_with_code_method.py +36 -0
- ory-client-1.4.8/test/test_update_registration_flow_with_oidc_method.py +36 -0
- ory-client-1.4.8/test/test_update_registration_flow_with_password_method.py +36 -0
- ory-client-1.4.8/test/test_update_registration_flow_with_web_authn_method.py +36 -0
- ory-client-1.4.8/test/test_update_settings_flow_body.py +48 -0
- ory-client-1.4.8/test/test_update_settings_flow_with_lookup_method.py +36 -0
- ory-client-1.4.8/test/test_update_settings_flow_with_oidc_method.py +36 -0
- ory-client-1.4.8/test/test_update_settings_flow_with_password_method.py +36 -0
- ory-client-1.4.8/test/test_update_settings_flow_with_profile_method.py +36 -0
- ory-client-1.4.8/test/test_update_settings_flow_with_totp_method.py +36 -0
- ory-client-1.4.8/test/test_update_settings_flow_with_web_authn_method.py +36 -0
- ory-client-1.4.8/test/test_update_subscription_body.py +36 -0
- ory-client-1.4.8/test/test_update_verification_flow_body.py +40 -0
- ory-client-1.4.8/test/test_update_verification_flow_with_code_method.py +36 -0
- ory-client-1.4.8/test/test_update_verification_flow_with_link_method.py +36 -0
- ory-client-1.4.8/test/test_usage.py +38 -0
- ory-client-1.4.8/test/test_verifiable_credential_priming_response.py +36 -0
- ory-client-1.4.8/test/test_verifiable_credential_proof.py +36 -0
- ory-client-1.4.8/test/test_verifiable_credential_response.py +36 -0
- ory-client-1.4.8/test/test_verifiable_identity_address.py +36 -0
- ory-client-1.4.8/test/test_verification_flow.py +38 -0
- ory-client-1.4.8/test/test_verification_flow_state.py +36 -0
- ory-client-1.4.8/test/test_version.py +36 -0
- ory-client-1.4.8/test/test_warning.py +36 -0
- ory-client-1.4.8/test/test_wellknown_api.py +36 -0
- ory-client-1.4.8/test/test_workspace.py +36 -0
- ory-client-1.4.8/test/test_workspaces.py +38 -0
- ory-client-1.4.6/PKG-INFO +0 -14
- ory-client-1.4.6/README.md +0 -544
- ory-client-1.4.6/ory_client/__init__.py +0 -28
- ory-client-1.4.6/ory_client/api/courier_api.py +0 -327
- ory-client-1.4.6/ory_client/api/frontend_api.py +0 -4241
- ory-client-1.4.6/ory_client/api/identity_api.py +0 -2655
- ory-client-1.4.6/ory_client/api/jwk_api.py +0 -1035
- ory-client-1.4.6/ory_client/api/metadata_api.py +0 -411
- ory-client-1.4.6/ory_client/api/o_auth2_api.py +0 -3965
- ory-client-1.4.6/ory_client/api/oidc_api.py +0 -1079
- ory-client-1.4.6/ory_client/api/permission_api.py +0 -813
- ory-client-1.4.6/ory_client/api/project_api.py +0 -2697
- ory-client-1.4.6/ory_client/api/relationship_api.py +0 -894
- ory-client-1.4.6/ory_client/api/wellknown_api.py +0 -160
- ory-client-1.4.6/ory_client/api_client.py +0 -897
- ory-client-1.4.6/ory_client/configuration.py +0 -498
- ory-client-1.4.6/ory_client/exceptions.py +0 -159
- ory-client-1.4.6/ory_client/model/accept_o_auth2_consent_request.py +0 -292
- ory-client-1.4.6/ory_client/model/accept_o_auth2_consent_request_session.py +0 -268
- ory-client-1.4.6/ory_client/model/accept_o_auth2_login_request.py +0 -308
- ory-client-1.4.6/ory_client/model/active_project_in_console.py +0 -264
- ory-client-1.4.6/ory_client/model/attributes_count_datapoint.py +0 -276
- ory-client-1.4.6/ory_client/model/authenticator_assurance_level.py +0 -293
- ory-client-1.4.6/ory_client/model/batch_patch_identities_response.py +0 -270
- ory-client-1.4.6/ory_client/model/check_opl_syntax_result.py +0 -270
- ory-client-1.4.6/ory_client/model/check_permission_result.py +0 -270
- ory-client-1.4.6/ory_client/model/cloud_account.py +0 -272
- ory-client-1.4.6/ory_client/model/consistency_request_parameters.py +0 -269
- ory-client-1.4.6/ory_client/model/continue_with.py +0 -356
- ory-client-1.4.6/ory_client/model/continue_with_recovery_ui.py +0 -287
- ory-client-1.4.6/ory_client/model/continue_with_recovery_ui_flow.py +0 -274
- ory-client-1.4.6/ory_client/model/continue_with_set_ory_session_token.py +0 -281
- ory-client-1.4.6/ory_client/model/continue_with_settings_ui.py +0 -287
- ory-client-1.4.6/ory_client/model/continue_with_settings_ui_flow.py +0 -270
- ory-client-1.4.6/ory_client/model/continue_with_verification_ui.py +0 -287
- ory-client-1.4.6/ory_client/model/continue_with_verification_ui_flow.py +0 -280
- ory-client-1.4.6/ory_client/model/courier_message_status.py +0 -293
- ory-client-1.4.6/ory_client/model/courier_message_type.py +0 -291
- ory-client-1.4.6/ory_client/model/create_custom_domain_body.py +0 -280
- ory-client-1.4.6/ory_client/model/create_identity_body.py +0 -312
- ory-client-1.4.6/ory_client/model/create_invite_response.py +0 -282
- ory-client-1.4.6/ory_client/model/create_json_web_key_set.py +0 -282
- ory-client-1.4.6/ory_client/model/create_project_api_key_request.py +0 -270
- ory-client-1.4.6/ory_client/model/create_project_body.py +0 -274
- ory-client-1.4.6/ory_client/model/create_project_branding.py +0 -290
- ory-client-1.4.6/ory_client/model/create_project_member_invite_body.py +0 -264
- ory-client-1.4.6/ory_client/model/create_project_member_invite_response.py +0 -287
- ory-client-1.4.6/ory_client/model/create_project_normalized_payload.py +0 -1079
- ory-client-1.4.6/ory_client/model/create_recovery_code_for_identity_body.py +0 -279
- ory-client-1.4.6/ory_client/model/create_recovery_link_for_identity_body.py +0 -279
- ory-client-1.4.6/ory_client/model/create_relationship_body.py +0 -286
- ory-client-1.4.6/ory_client/model/create_subscription_body.py +0 -300
- ory-client-1.4.6/ory_client/model/create_verifiable_credential_request_body.py +0 -278
- ory-client-1.4.6/ory_client/model/credential_supported_draft00.py +0 -276
- ory-client-1.4.6/ory_client/model/custom_domain.py +0 -334
- ory-client-1.4.6/ory_client/model/delete_my_sessions_count.py +0 -264
- ory-client-1.4.6/ory_client/model/email_template_data.py +0 -282
- ory-client-1.4.6/ory_client/model/email_template_data_body.py +0 -276
- ory-client-1.4.6/ory_client/model/error_authenticator_assurance_level_not_satisfied.py +0 -274
- ory-client-1.4.6/ory_client/model/error_browser_location_change_required.py +0 -274
- ory-client-1.4.6/ory_client/model/error_flow_replaced.py +0 -274
- ory-client-1.4.6/ory_client/model/error_generic.py +0 -276
- ory-client-1.4.6/ory_client/model/error_o_auth2.py +0 -280
- ory-client-1.4.6/ory_client/model/expanded_permission_tree.py +0 -294
- ory-client-1.4.6/ory_client/model/flow_error.py +0 -282
- ory-client-1.4.6/ory_client/model/generic_error.py +0 -308
- ory-client-1.4.6/ory_client/model/generic_error_content.py +0 -280
- ory-client-1.4.6/ory_client/model/generic_usage.py +0 -276
- ory-client-1.4.6/ory_client/model/get_attributes_count_response.py +0 -273
- ory-client-1.4.6/ory_client/model/get_managed_identity_schema_location.py +0 -264
- ory-client-1.4.6/ory_client/model/get_organization_response.py +0 -276
- ory-client-1.4.6/ory_client/model/get_project_metrics_response.py +0 -273
- ory-client-1.4.6/ory_client/model/get_session_activity_response.py +0 -273
- ory-client-1.4.6/ory_client/model/get_version200_response.py +0 -270
- ory-client-1.4.6/ory_client/model/health_not_ready_status.py +0 -264
- ory-client-1.4.6/ory_client/model/health_status.py +0 -264
- ory-client-1.4.6/ory_client/model/identity.py +0 -340
- ory-client-1.4.6/ory_client/model/identity_credentials.py +0 -290
- ory-client-1.4.6/ory_client/model/identity_credentials_code.py +0 -268
- ory-client-1.4.6/ory_client/model/identity_credentials_oidc.py +0 -270
- ory-client-1.4.6/ory_client/model/identity_credentials_oidc_provider.py +0 -284
- ory-client-1.4.6/ory_client/model/identity_credentials_password.py +0 -264
- ory-client-1.4.6/ory_client/model/identity_credentials_type.py +0 -295
- ory-client-1.4.6/ory_client/model/identity_patch.py +0 -274
- ory-client-1.4.6/ory_client/model/identity_patch_response.py +0 -275
- ory-client-1.4.6/ory_client/model/identity_schema_container.py +0 -268
- ory-client-1.4.6/ory_client/model/identity_schema_preset.py +0 -276
- ory-client-1.4.6/ory_client/model/identity_schema_presets.py +0 -292
- ory-client-1.4.6/ory_client/model/identity_schemas.py +0 -292
- ory-client-1.4.6/ory_client/model/identity_state.py +0 -291
- ory-client-1.4.6/ory_client/model/identity_with_credentials.py +0 -276
- ory-client-1.4.6/ory_client/model/identity_with_credentials_oidc.py +0 -270
- ory-client-1.4.6/ory_client/model/identity_with_credentials_oidc_config.py +0 -276
- ory-client-1.4.6/ory_client/model/identity_with_credentials_oidc_config_provider.py +0 -276
- ory-client-1.4.6/ory_client/model/identity_with_credentials_password.py +0 -270
- ory-client-1.4.6/ory_client/model/identity_with_credentials_password_config.py +0 -268
- ory-client-1.4.6/ory_client/model/internal_get_project_branding_body.py +0 -264
- ory-client-1.4.6/ory_client/model/internal_is_ax_welcome_screen_enabled_for_project_body.py +0 -276
- ory-client-1.4.6/ory_client/model/internal_is_owner_for_project_by_slug_body.py +0 -290
- ory-client-1.4.6/ory_client/model/internal_is_owner_for_project_by_slug_response.py +0 -270
- ory-client-1.4.6/ory_client/model/internal_provision_mock_subscription.py +0 -296
- ory-client-1.4.6/ory_client/model/introspected_o_auth2_token.py +0 -322
- ory-client-1.4.6/ory_client/model/is_owner_for_project_by_slug.py +0 -276
- ory-client-1.4.6/ory_client/model/is_ready200_response.py +0 -270
- ory-client-1.4.6/ory_client/model/is_ready503_response.py +0 -270
- ory-client-1.4.6/ory_client/model/json_patch.py +0 -292
- ory-client-1.4.6/ory_client/model/json_patch_document.py +0 -292
- ory-client-1.4.6/ory_client/model/json_web_key.py +0 -340
- ory-client-1.4.6/ory_client/model/json_web_key_set.py +0 -270
- ory-client-1.4.6/ory_client/model/keto_namespace.py +0 -268
- ory-client-1.4.6/ory_client/model/keto_namespaces.py +0 -292
- ory-client-1.4.6/ory_client/model/list_custom_domains.py +0 -292
- ory-client-1.4.6/ory_client/model/list_my_workspaces_response.py +0 -288
- ory-client-1.4.6/ory_client/model/list_organizations_response.py +0 -276
- ory-client-1.4.6/ory_client/model/login_flow.py +0 -358
- ory-client-1.4.6/ory_client/model/login_flow_state.py +0 -292
- ory-client-1.4.6/ory_client/model/logout_flow.py +0 -276
- ory-client-1.4.6/ory_client/model/managed_identity_schema.py +0 -300
- ory-client-1.4.6/ory_client/model/managed_identity_schema_validation_result.py +0 -268
- ory-client-1.4.6/ory_client/model/managed_identity_schemas.py +0 -292
- ory-client-1.4.6/ory_client/model/member_invite.py +0 -319
- ory-client-1.4.6/ory_client/model/member_invites.py +0 -292
- ory-client-1.4.6/ory_client/model/message.py +0 -352
- ory-client-1.4.6/ory_client/model/message_dispatch.py +0 -302
- ory-client-1.4.6/ory_client/model/metrics_datapoint.py +0 -276
- ory-client-1.4.6/ory_client/model/namespace.py +0 -264
- ory-client-1.4.6/ory_client/model/needs_privileged_session_error.py +0 -280
- ory-client-1.4.6/ory_client/model/normalized_project.py +0 -337
- ory-client-1.4.6/ory_client/model/normalized_project_revision.py +0 -1075
- ory-client-1.4.6/ory_client/model/normalized_project_revision_hook.py +0 -342
- ory-client-1.4.6/ory_client/model/normalized_project_revision_identity_schema.py +0 -308
- ory-client-1.4.6/ory_client/model/normalized_project_revision_identity_schemas.py +0 -292
- ory-client-1.4.6/ory_client/model/normalized_project_revision_third_party_provider.py +0 -364
- ory-client-1.4.6/ory_client/model/normalized_project_revision_tokenizer_template.py +0 -300
- ory-client-1.4.6/ory_client/model/normalized_project_revision_tokenizer_templates.py +0 -292
- ory-client-1.4.6/ory_client/model/normalized_projects.py +0 -292
- ory-client-1.4.6/ory_client/model/null_duration.py +0 -292
- ory-client-1.4.6/ory_client/model/o_auth2_client.py +0 -456
- ory-client-1.4.6/ory_client/model/o_auth2_client_token_lifespans.py +0 -306
- ory-client-1.4.6/ory_client/model/o_auth2_consent_request.py +0 -328
- ory-client-1.4.6/ory_client/model/o_auth2_consent_request_open_id_connect_context.py +0 -280
- ory-client-1.4.6/ory_client/model/o_auth2_consent_session.py +0 -304
- ory-client-1.4.6/ory_client/model/o_auth2_consent_session_expires_at.py +0 -280
- ory-client-1.4.6/ory_client/model/o_auth2_consent_sessions.py +0 -292
- ory-client-1.4.6/ory_client/model/o_auth2_login_request.py +0 -324
- ory-client-1.4.6/ory_client/model/o_auth2_logout_request.py +0 -290
- ory-client-1.4.6/ory_client/model/o_auth2_redirect_to.py +0 -270
- ory-client-1.4.6/ory_client/model/o_auth2_token_exchange.py +0 -284
- ory-client-1.4.6/ory_client/model/oidc_configuration.py +0 -412
- ory-client-1.4.6/ory_client/model/oidc_user_info.py +0 -336
- ory-client-1.4.6/ory_client/model/organization.py +0 -302
- ory-client-1.4.6/ory_client/model/organization_body.py +0 -268
- ory-client-1.4.6/ory_client/model/pagination.py +0 -274
- ory-client-1.4.6/ory_client/model/pagination_headers.py +0 -268
- ory-client-1.4.6/ory_client/model/parse_error.py +0 -278
- ory-client-1.4.6/ory_client/model/patch_identities_body.py +0 -270
- ory-client-1.4.6/ory_client/model/perform_native_logout_body.py +0 -270
- ory-client-1.4.6/ory_client/model/permissions_on_project.py +0 -260
- ory-client-1.4.6/ory_client/model/plan.py +0 -276
- ory-client-1.4.6/ory_client/model/plan_details.py +0 -312
- ory-client-1.4.6/ory_client/model/plans.py +0 -287
- ory-client-1.4.6/ory_client/model/post_check_permission_body.py +0 -286
- ory-client-1.4.6/ory_client/model/post_check_permission_or_error_body.py +0 -286
- ory-client-1.4.6/ory_client/model/pricing.py +0 -292
- ory-client-1.4.6/ory_client/model/project.py +0 -319
- ory-client-1.4.6/ory_client/model/project_api_key.py +0 -298
- ory-client-1.4.6/ory_client/model/project_api_keys.py +0 -292
- ory-client-1.4.6/ory_client/model/project_branding.py +0 -303
- ory-client-1.4.6/ory_client/model/project_branding_colors.py +0 -376
- ory-client-1.4.6/ory_client/model/project_branding_theme.py +0 -421
- ory-client-1.4.6/ory_client/model/project_branding_themes.py +0 -292
- ory-client-1.4.6/ory_client/model/project_cors.py +0 -268
- ory-client-1.4.6/ory_client/model/project_host.py +0 -281
- ory-client-1.4.6/ory_client/model/project_member.py +0 -287
- ory-client-1.4.6/ory_client/model/project_members.py +0 -292
- ory-client-1.4.6/ory_client/model/project_metadata.py +0 -327
- ory-client-1.4.6/ory_client/model/project_metadata_list.py +0 -292
- ory-client-1.4.6/ory_client/model/project_revision_hooks.py +0 -292
- ory-client-1.4.6/ory_client/model/project_revision_identity_schemas.py +0 -292
- ory-client-1.4.6/ory_client/model/project_revision_third_party_login_providers.py +0 -292
- ory-client-1.4.6/ory_client/model/project_revisions.py +0 -292
- ory-client-1.4.6/ory_client/model/project_service_identity.py +0 -270
- ory-client-1.4.6/ory_client/model/project_service_o_auth2.py +0 -270
- ory-client-1.4.6/ory_client/model/project_service_permission.py +0 -270
- ory-client-1.4.6/ory_client/model/project_services.py +0 -282
- ory-client-1.4.6/ory_client/model/projects.py +0 -292
- ory-client-1.4.6/ory_client/model/quota_usage.py +0 -321
- ory-client-1.4.6/ory_client/model/recovery_code_for_identity.py +0 -280
- ory-client-1.4.6/ory_client/model/recovery_flow.py +0 -326
- ory-client-1.4.6/ory_client/model/recovery_flow_state.py +0 -292
- ory-client-1.4.6/ory_client/model/recovery_identity_address.py +0 -290
- ory-client-1.4.6/ory_client/model/recovery_link_for_identity.py +0 -274
- ory-client-1.4.6/ory_client/model/registration_flow.py +0 -344
- ory-client-1.4.6/ory_client/model/registration_flow_state.py +0 -292
- ory-client-1.4.6/ory_client/model/reject_o_auth2_request.py +0 -280
- ory-client-1.4.6/ory_client/model/relation_query.py +0 -286
- ory-client-1.4.6/ory_client/model/relationship.py +0 -296
- ory-client-1.4.6/ory_client/model/relationship_namespaces.py +0 -270
- ory-client-1.4.6/ory_client/model/relationship_patch.py +0 -278
- ory-client-1.4.6/ory_client/model/relationships.py +0 -274
- ory-client-1.4.6/ory_client/model/rfc6749_error_json.py +0 -280
- ory-client-1.4.6/ory_client/model/schema_patch.py +0 -276
- ory-client-1.4.6/ory_client/model/self_service_flow_expired_error.py +0 -282
- ory-client-1.4.6/ory_client/model/session.py +0 -318
- ory-client-1.4.6/ory_client/model/session_activity_datapoint.py +0 -282
- ory-client-1.4.6/ory_client/model/session_authentication_method.py +0 -297
- ory-client-1.4.6/ory_client/model/session_authentication_methods.py +0 -292
- ory-client-1.4.6/ory_client/model/session_device.py +0 -282
- ory-client-1.4.6/ory_client/model/set_active_project_in_console_body.py +0 -270
- ory-client-1.4.6/ory_client/model/set_custom_domain_body.py +0 -280
- ory-client-1.4.6/ory_client/model/set_project.py +0 -296
- ory-client-1.4.6/ory_client/model/set_project_branding_theme_body.py +0 -290
- ory-client-1.4.6/ory_client/model/settings_flow.py +0 -334
- ory-client-1.4.6/ory_client/model/settings_flow_state.py +0 -291
- ory-client-1.4.6/ory_client/model/source_position.py +0 -268
- ory-client-1.4.6/ory_client/model/string_slice_json_format.py +0 -287
- ory-client-1.4.6/ory_client/model/stripe_customer.py +0 -264
- ory-client-1.4.6/ory_client/model/subject_set.py +0 -282
- ory-client-1.4.6/ory_client/model/subscription.py +0 -336
- ory-client-1.4.6/ory_client/model/successful_code_exchange_response.py +0 -280
- ory-client-1.4.6/ory_client/model/successful_native_login.py +0 -280
- ory-client-1.4.6/ory_client/model/successful_native_registration.py +0 -292
- ory-client-1.4.6/ory_client/model/successful_project_update.py +0 -284
- ory-client-1.4.6/ory_client/model/token_pagination.py +0 -274
- ory-client-1.4.6/ory_client/model/token_pagination_headers.py +0 -268
- ory-client-1.4.6/ory_client/model/token_pagination_request_parameters.py +0 -274
- ory-client-1.4.6/ory_client/model/token_pagination_response_headers.py +0 -268
- ory-client-1.4.6/ory_client/model/trust_o_auth2_jwt_grant_issuer.py +0 -302
- ory-client-1.4.6/ory_client/model/trusted_o_auth2_jwt_grant_issuer.py +0 -298
- ory-client-1.4.6/ory_client/model/trusted_o_auth2_jwt_grant_issuers.py +0 -292
- ory-client-1.4.6/ory_client/model/trusted_o_auth2_jwt_grant_json_web_key.py +0 -268
- ory-client-1.4.6/ory_client/model/ui_container.py +0 -294
- ory-client-1.4.6/ory_client/model/ui_node.py +0 -322
- ory-client-1.4.6/ory_client/model/ui_node_anchor_attributes.py +0 -294
- ory-client-1.4.6/ory_client/model/ui_node_attributes.py +0 -440
- ory-client-1.4.6/ory_client/model/ui_node_image_attributes.py +0 -294
- ory-client-1.4.6/ory_client/model/ui_node_input_attributes.py +0 -340
- ory-client-1.4.6/ory_client/model/ui_node_meta.py +0 -270
- ory-client-1.4.6/ory_client/model/ui_node_script_attributes.py +0 -318
- ory-client-1.4.6/ory_client/model/ui_node_text_attributes.py +0 -288
- ory-client-1.4.6/ory_client/model/ui_nodes.py +0 -292
- ory-client-1.4.6/ory_client/model/ui_text.py +0 -291
- ory-client-1.4.6/ory_client/model/ui_texts.py +0 -292
- ory-client-1.4.6/ory_client/model/update_identity_body.py +0 -302
- ory-client-1.4.6/ory_client/model/update_login_flow_body.py +0 -407
- ory-client-1.4.6/ory_client/model/update_login_flow_with_code_method.py +0 -288
- ory-client-1.4.6/ory_client/model/update_login_flow_with_lookup_secret_method.py +0 -280
- ory-client-1.4.6/ory_client/model/update_login_flow_with_oidc_method.py +0 -296
- ory-client-1.4.6/ory_client/model/update_login_flow_with_password_method.py +0 -290
- ory-client-1.4.6/ory_client/model/update_login_flow_with_totp_method.py +0 -280
- ory-client-1.4.6/ory_client/model/update_login_flow_with_web_authn_method.py +0 -284
- ory-client-1.4.6/ory_client/model/update_recovery_flow_body.py +0 -347
- ory-client-1.4.6/ory_client/model/update_recovery_flow_with_code_method.py +0 -286
- ory-client-1.4.6/ory_client/model/update_recovery_flow_with_link_method.py +0 -284
- ory-client-1.4.6/ory_client/model/update_registration_flow_body.py +0 -389
- ory-client-1.4.6/ory_client/model/update_registration_flow_with_code_method.py +0 -292
- ory-client-1.4.6/ory_client/model/update_registration_flow_with_oidc_method.py +0 -300
- ory-client-1.4.6/ory_client/model/update_registration_flow_with_password_method.py +0 -290
- ory-client-1.4.6/ory_client/model/update_registration_flow_with_web_authn_method.py +0 -292
- ory-client-1.4.6/ory_client/model/update_settings_flow_body.py +0 -415
- ory-client-1.4.6/ory_client/model/update_settings_flow_with_lookup_method.py +0 -290
- ory-client-1.4.6/ory_client/model/update_settings_flow_with_oidc_method.py +0 -290
- ory-client-1.4.6/ory_client/model/update_settings_flow_with_password_method.py +0 -280
- ory-client-1.4.6/ory_client/model/update_settings_flow_with_profile_method.py +0 -280
- ory-client-1.4.6/ory_client/model/update_settings_flow_with_totp_method.py +0 -282
- ory-client-1.4.6/ory_client/model/update_settings_flow_with_web_authn_method.py +0 -286
- ory-client-1.4.6/ory_client/model/update_subscription_body.py +0 -284
- ory-client-1.4.6/ory_client/model/update_verification_flow_body.py +0 -347
- ory-client-1.4.6/ory_client/model/update_verification_flow_with_code_method.py +0 -286
- ory-client-1.4.6/ory_client/model/update_verification_flow_with_link_method.py +0 -284
- ory-client-1.4.6/ory_client/model/usage.py +0 -270
- ory-client-1.4.6/ory_client/model/verifiable_credential_priming_response.py +0 -292
- ory-client-1.4.6/ory_client/model/verifiable_credential_proof.py +0 -268
- ory-client-1.4.6/ory_client/model/verifiable_credential_response.py +0 -268
- ory-client-1.4.6/ory_client/model/verifiable_identity_address.py +0 -304
- ory-client-1.4.6/ory_client/model/verification_flow.py +0 -314
- ory-client-1.4.6/ory_client/model/verification_flow_state.py +0 -292
- ory-client-1.4.6/ory_client/model/version.py +0 -264
- ory-client-1.4.6/ory_client/model/warning.py +0 -268
- ory-client-1.4.6/ory_client/model/workspace.py +0 -292
- ory-client-1.4.6/ory_client/model/workspaces.py +0 -292
- ory-client-1.4.6/ory_client/model_utils.py +0 -2059
- ory-client-1.4.6/ory_client/models/__init__.py +0 -275
- ory-client-1.4.6/ory_client/rest.py +0 -353
- ory-client-1.4.6/ory_client.egg-info/PKG-INFO +0 -14
- ory-client-1.4.6/ory_client.egg-info/SOURCES.txt +0 -569
- ory-client-1.4.6/setup.py +0 -44
- ory-client-1.4.6/test/test_accept_o_auth2_consent_request.py +0 -40
- ory-client-1.4.6/test/test_accept_o_auth2_consent_request_session.py +0 -36
- ory-client-1.4.6/test/test_accept_o_auth2_login_request.py +0 -38
- ory-client-1.4.6/test/test_active_project_in_console.py +0 -36
- ory-client-1.4.6/test/test_attributes_count_datapoint.py +0 -36
- ory-client-1.4.6/test/test_authenticator_assurance_level.py +0 -36
- ory-client-1.4.6/test/test_batch_patch_identities_response.py +0 -38
- ory-client-1.4.6/test/test_check_opl_syntax_result.py +0 -38
- ory-client-1.4.6/test/test_check_permission_result.py +0 -36
- ory-client-1.4.6/test/test_cloud_account.py +0 -36
- ory-client-1.4.6/test/test_consistency_request_parameters.py +0 -36
- ory-client-1.4.6/test/test_continue_with.py +0 -46
- ory-client-1.4.6/test/test_continue_with_recovery_ui.py +0 -38
- ory-client-1.4.6/test/test_continue_with_recovery_ui_flow.py +0 -36
- ory-client-1.4.6/test/test_continue_with_set_ory_session_token.py +0 -36
- ory-client-1.4.6/test/test_continue_with_settings_ui.py +0 -38
- ory-client-1.4.6/test/test_continue_with_settings_ui_flow.py +0 -36
- ory-client-1.4.6/test/test_continue_with_verification_ui.py +0 -38
- ory-client-1.4.6/test/test_continue_with_verification_ui_flow.py +0 -36
- ory-client-1.4.6/test/test_courier_api.py +0 -43
- ory-client-1.4.6/test/test_courier_message_status.py +0 -36
- ory-client-1.4.6/test/test_courier_message_type.py +0 -36
- ory-client-1.4.6/test/test_create_custom_domain_body.py +0 -36
- ory-client-1.4.6/test/test_create_identity_body.py +0 -44
- ory-client-1.4.6/test/test_create_invite_response.py +0 -38
- ory-client-1.4.6/test/test_create_json_web_key_set.py +0 -36
- ory-client-1.4.6/test/test_create_project_api_key_request.py +0 -36
- ory-client-1.4.6/test/test_create_project_body.py +0 -36
- ory-client-1.4.6/test/test_create_project_branding.py +0 -38
- ory-client-1.4.6/test/test_create_project_member_invite_body.py +0 -36
- ory-client-1.4.6/test/test_create_project_member_invite_response.py +0 -36
- ory-client-1.4.6/test/test_create_project_normalized_payload.py +0 -48
- ory-client-1.4.6/test/test_create_recovery_code_for_identity_body.py +0 -36
- ory-client-1.4.6/test/test_create_recovery_link_for_identity_body.py +0 -36
- ory-client-1.4.6/test/test_create_relationship_body.py +0 -38
- ory-client-1.4.6/test/test_create_subscription_body.py +0 -36
- ory-client-1.4.6/test/test_create_verifiable_credential_request_body.py +0 -38
- ory-client-1.4.6/test/test_credential_supported_draft00.py +0 -36
- ory-client-1.4.6/test/test_custom_domain.py +0 -38
- ory-client-1.4.6/test/test_delete_my_sessions_count.py +0 -36
- ory-client-1.4.6/test/test_email_template_data.py +0 -38
- ory-client-1.4.6/test/test_email_template_data_body.py +0 -36
- ory-client-1.4.6/test/test_error_authenticator_assurance_level_not_satisfied.py +0 -38
- ory-client-1.4.6/test/test_error_browser_location_change_required.py +0 -38
- ory-client-1.4.6/test/test_error_flow_replaced.py +0 -38
- ory-client-1.4.6/test/test_error_generic.py +0 -38
- ory-client-1.4.6/test/test_error_o_auth2.py +0 -36
- ory-client-1.4.6/test/test_expanded_permission_tree.py +0 -38
- ory-client-1.4.6/test/test_flow_error.py +0 -36
- ory-client-1.4.6/test/test_frontend_api.py +0 -239
- ory-client-1.4.6/test/test_generic_error.py +0 -38
- ory-client-1.4.6/test/test_generic_error_content.py +0 -36
- ory-client-1.4.6/test/test_generic_usage.py +0 -36
- ory-client-1.4.6/test/test_get_attributes_count_response.py +0 -38
- ory-client-1.4.6/test/test_get_managed_identity_schema_location.py +0 -36
- ory-client-1.4.6/test/test_get_organization_response.py +0 -38
- ory-client-1.4.6/test/test_get_project_metrics_response.py +0 -38
- ory-client-1.4.6/test/test_get_session_activity_response.py +0 -38
- ory-client-1.4.6/test/test_get_version200_response.py +0 -36
- ory-client-1.4.6/test/test_health_not_ready_status.py +0 -36
- ory-client-1.4.6/test/test_health_status.py +0 -36
- ory-client-1.4.6/test/test_identity.py +0 -44
- ory-client-1.4.6/test/test_identity_api.py +0 -155
- ory-client-1.4.6/test/test_identity_credentials.py +0 -38
- ory-client-1.4.6/test/test_identity_credentials_code.py +0 -36
- ory-client-1.4.6/test/test_identity_credentials_oidc.py +0 -38
- ory-client-1.4.6/test/test_identity_credentials_oidc_provider.py +0 -36
- ory-client-1.4.6/test/test_identity_credentials_password.py +0 -36
- ory-client-1.4.6/test/test_identity_credentials_type.py +0 -36
- ory-client-1.4.6/test/test_identity_patch.py +0 -38
- ory-client-1.4.6/test/test_identity_patch_response.py +0 -36
- ory-client-1.4.6/test/test_identity_schema_container.py +0 -36
- ory-client-1.4.6/test/test_identity_schema_preset.py +0 -36
- ory-client-1.4.6/test/test_identity_schema_presets.py +0 -38
- ory-client-1.4.6/test/test_identity_schemas.py +0 -38
- ory-client-1.4.6/test/test_identity_state.py +0 -36
- ory-client-1.4.6/test/test_identity_with_credentials.py +0 -40
- ory-client-1.4.6/test/test_identity_with_credentials_oidc.py +0 -38
- ory-client-1.4.6/test/test_identity_with_credentials_oidc_config.py +0 -40
- ory-client-1.4.6/test/test_identity_with_credentials_oidc_config_provider.py +0 -36
- ory-client-1.4.6/test/test_identity_with_credentials_password.py +0 -38
- ory-client-1.4.6/test/test_identity_with_credentials_password_config.py +0 -36
- ory-client-1.4.6/test/test_internal_get_project_branding_body.py +0 -36
- ory-client-1.4.6/test/test_internal_is_ax_welcome_screen_enabled_for_project_body.py +0 -36
- ory-client-1.4.6/test/test_internal_is_owner_for_project_by_slug_body.py +0 -36
- ory-client-1.4.6/test/test_internal_is_owner_for_project_by_slug_response.py +0 -36
- ory-client-1.4.6/test/test_internal_provision_mock_subscription.py +0 -36
- ory-client-1.4.6/test/test_introspected_o_auth2_token.py +0 -36
- ory-client-1.4.6/test/test_is_owner_for_project_by_slug.py +0 -36
- ory-client-1.4.6/test/test_is_ready200_response.py +0 -36
- ory-client-1.4.6/test/test_is_ready503_response.py +0 -36
- ory-client-1.4.6/test/test_json_patch.py +0 -36
- ory-client-1.4.6/test/test_json_patch_document.py +0 -38
- ory-client-1.4.6/test/test_json_web_key.py +0 -36
- ory-client-1.4.6/test/test_json_web_key_set.py +0 -38
- ory-client-1.4.6/test/test_jwk_api.py +0 -78
- ory-client-1.4.6/test/test_keto_namespace.py +0 -36
- ory-client-1.4.6/test/test_keto_namespaces.py +0 -38
- ory-client-1.4.6/test/test_list_custom_domains.py +0 -38
- ory-client-1.4.6/test/test_list_my_workspaces_response.py +0 -38
- ory-client-1.4.6/test/test_list_organizations_response.py +0 -38
- ory-client-1.4.6/test/test_login_flow.py +0 -44
- ory-client-1.4.6/test/test_login_flow_state.py +0 -36
- ory-client-1.4.6/test/test_logout_flow.py +0 -36
- ory-client-1.4.6/test/test_managed_identity_schema.py +0 -36
- ory-client-1.4.6/test/test_managed_identity_schema_validation_result.py +0 -36
- ory-client-1.4.6/test/test_managed_identity_schemas.py +0 -38
- ory-client-1.4.6/test/test_member_invite.py +0 -36
- ory-client-1.4.6/test/test_member_invites.py +0 -38
- ory-client-1.4.6/test/test_message.py +0 -42
- ory-client-1.4.6/test/test_message_dispatch.py +0 -36
- ory-client-1.4.6/test/test_metadata_api.py +0 -50
- ory-client-1.4.6/test/test_metrics_datapoint.py +0 -36
- ory-client-1.4.6/test/test_namespace.py +0 -36
- ory-client-1.4.6/test/test_needs_privileged_session_error.py +0 -38
- ory-client-1.4.6/test/test_normalized_project.py +0 -40
- ory-client-1.4.6/test/test_normalized_project_revision.py +0 -48
- ory-client-1.4.6/test/test_normalized_project_revision_hook.py +0 -36
- ory-client-1.4.6/test/test_normalized_project_revision_identity_schema.py +0 -38
- ory-client-1.4.6/test/test_normalized_project_revision_identity_schemas.py +0 -38
- ory-client-1.4.6/test/test_normalized_project_revision_third_party_provider.py +0 -38
- ory-client-1.4.6/test/test_normalized_project_revision_tokenizer_template.py +0 -36
- ory-client-1.4.6/test/test_normalized_project_revision_tokenizer_templates.py +0 -38
- ory-client-1.4.6/test/test_normalized_projects.py +0 -38
- ory-client-1.4.6/test/test_null_duration.py +0 -36
- ory-client-1.4.6/test/test_o_auth2_api.py +0 -225
- ory-client-1.4.6/test/test_o_auth2_client.py +0 -40
- ory-client-1.4.6/test/test_o_auth2_client_token_lifespans.py +0 -38
- ory-client-1.4.6/test/test_o_auth2_consent_request.py +0 -42
- ory-client-1.4.6/test/test_o_auth2_consent_request_open_id_connect_context.py +0 -36
- ory-client-1.4.6/test/test_o_auth2_consent_session.py +0 -44
- ory-client-1.4.6/test/test_o_auth2_consent_session_expires_at.py +0 -36
- ory-client-1.4.6/test/test_o_auth2_consent_sessions.py +0 -38
- ory-client-1.4.6/test/test_o_auth2_login_request.py +0 -42
- ory-client-1.4.6/test/test_o_auth2_logout_request.py +0 -38
- ory-client-1.4.6/test/test_o_auth2_redirect_to.py +0 -36
- ory-client-1.4.6/test/test_o_auth2_token_exchange.py +0 -36
- ory-client-1.4.6/test/test_oidc_api.py +0 -85
- ory-client-1.4.6/test/test_oidc_configuration.py +0 -38
- ory-client-1.4.6/test/test_oidc_user_info.py +0 -36
- ory-client-1.4.6/test/test_organization.py +0 -38
- ory-client-1.4.6/test/test_organization_body.py +0 -36
- ory-client-1.4.6/test/test_pagination.py +0 -36
- ory-client-1.4.6/test/test_pagination_headers.py +0 -36
- ory-client-1.4.6/test/test_parse_error.py +0 -38
- ory-client-1.4.6/test/test_patch_identities_body.py +0 -38
- ory-client-1.4.6/test/test_perform_native_logout_body.py +0 -36
- ory-client-1.4.6/test/test_permission_api.py +0 -64
- ory-client-1.4.6/test/test_permissions_on_project.py +0 -36
- ory-client-1.4.6/test/test_plan.py +0 -36
- ory-client-1.4.6/test/test_plan_details.py +0 -38
- ory-client-1.4.6/test/test_plans.py +0 -36
- ory-client-1.4.6/test/test_post_check_permission_body.py +0 -38
- ory-client-1.4.6/test/test_post_check_permission_or_error_body.py +0 -38
- ory-client-1.4.6/test/test_pricing.py +0 -38
- ory-client-1.4.6/test/test_project.py +0 -40
- ory-client-1.4.6/test/test_project_api.py +0 -159
- ory-client-1.4.6/test/test_project_api_key.py +0 -36
- ory-client-1.4.6/test/test_project_api_keys.py +0 -38
- ory-client-1.4.6/test/test_project_branding.py +0 -40
- ory-client-1.4.6/test/test_project_branding_colors.py +0 -36
- ory-client-1.4.6/test/test_project_branding_theme.py +0 -36
- ory-client-1.4.6/test/test_project_branding_themes.py +0 -38
- ory-client-1.4.6/test/test_project_cors.py +0 -36
- ory-client-1.4.6/test/test_project_host.py +0 -36
- ory-client-1.4.6/test/test_project_member.py +0 -36
- ory-client-1.4.6/test/test_project_members.py +0 -38
- ory-client-1.4.6/test/test_project_metadata.py +0 -38
- ory-client-1.4.6/test/test_project_metadata_list.py +0 -38
- ory-client-1.4.6/test/test_project_revision_hooks.py +0 -38
- ory-client-1.4.6/test/test_project_revision_identity_schemas.py +0 -38
- ory-client-1.4.6/test/test_project_revision_third_party_login_providers.py +0 -38
- ory-client-1.4.6/test/test_project_revisions.py +0 -38
- ory-client-1.4.6/test/test_project_service_identity.py +0 -36
- ory-client-1.4.6/test/test_project_service_o_auth2.py +0 -36
- ory-client-1.4.6/test/test_project_service_permission.py +0 -36
- ory-client-1.4.6/test/test_project_services.py +0 -42
- ory-client-1.4.6/test/test_projects.py +0 -38
- ory-client-1.4.6/test/test_quota_usage.py +0 -36
- ory-client-1.4.6/test/test_recovery_code_for_identity.py +0 -36
- ory-client-1.4.6/test/test_recovery_flow.py +0 -40
- ory-client-1.4.6/test/test_recovery_flow_state.py +0 -36
- ory-client-1.4.6/test/test_recovery_identity_address.py +0 -36
- ory-client-1.4.6/test/test_recovery_link_for_identity.py +0 -36
- ory-client-1.4.6/test/test_registration_flow.py +0 -42
- ory-client-1.4.6/test/test_registration_flow_state.py +0 -36
- ory-client-1.4.6/test/test_reject_o_auth2_request.py +0 -36
- ory-client-1.4.6/test/test_relation_query.py +0 -38
- ory-client-1.4.6/test/test_relationship.py +0 -38
- ory-client-1.4.6/test/test_relationship_api.py +0 -71
- ory-client-1.4.6/test/test_relationship_namespaces.py +0 -38
- ory-client-1.4.6/test/test_relationship_patch.py +0 -38
- ory-client-1.4.6/test/test_relationships.py +0 -38
- ory-client-1.4.6/test/test_rfc6749_error_json.py +0 -36
- ory-client-1.4.6/test/test_schema_patch.py +0 -36
- ory-client-1.4.6/test/test_self_service_flow_expired_error.py +0 -38
- ory-client-1.4.6/test/test_session.py +0 -44
- ory-client-1.4.6/test/test_session_activity_datapoint.py +0 -36
- ory-client-1.4.6/test/test_session_authentication_method.py +0 -38
- ory-client-1.4.6/test/test_session_authentication_methods.py +0 -38
- ory-client-1.4.6/test/test_session_device.py +0 -36
- ory-client-1.4.6/test/test_set_active_project_in_console_body.py +0 -36
- ory-client-1.4.6/test/test_set_custom_domain_body.py +0 -36
- ory-client-1.4.6/test/test_set_project.py +0 -40
- ory-client-1.4.6/test/test_set_project_branding_theme_body.py +0 -38
- ory-client-1.4.6/test/test_settings_flow.py +0 -42
- ory-client-1.4.6/test/test_settings_flow_state.py +0 -36
- ory-client-1.4.6/test/test_source_position.py +0 -36
- ory-client-1.4.6/test/test_string_slice_json_format.py +0 -36
- ory-client-1.4.6/test/test_stripe_customer.py +0 -36
- ory-client-1.4.6/test/test_subject_set.py +0 -36
- ory-client-1.4.6/test/test_subscription.py +0 -36
- ory-client-1.4.6/test/test_successful_code_exchange_response.py +0 -38
- ory-client-1.4.6/test/test_successful_native_login.py +0 -38
- ory-client-1.4.6/test/test_successful_native_registration.py +0 -42
- ory-client-1.4.6/test/test_successful_project_update.py +0 -40
- ory-client-1.4.6/test/test_token_pagination.py +0 -36
- ory-client-1.4.6/test/test_token_pagination_headers.py +0 -36
- ory-client-1.4.6/test/test_token_pagination_request_parameters.py +0 -36
- ory-client-1.4.6/test/test_token_pagination_response_headers.py +0 -36
- ory-client-1.4.6/test/test_trust_o_auth2_jwt_grant_issuer.py +0 -38
- ory-client-1.4.6/test/test_trusted_o_auth2_jwt_grant_issuer.py +0 -38
- ory-client-1.4.6/test/test_trusted_o_auth2_jwt_grant_issuers.py +0 -38
- ory-client-1.4.6/test/test_trusted_o_auth2_jwt_grant_json_web_key.py +0 -36
- ory-client-1.4.6/test/test_ui_container.py +0 -40
- ory-client-1.4.6/test/test_ui_node.py +0 -42
- ory-client-1.4.6/test/test_ui_node_anchor_attributes.py +0 -38
- ory-client-1.4.6/test/test_ui_node_attributes.py +0 -48
- ory-client-1.4.6/test/test_ui_node_image_attributes.py +0 -36
- ory-client-1.4.6/test/test_ui_node_input_attributes.py +0 -38
- ory-client-1.4.6/test/test_ui_node_meta.py +0 -38
- ory-client-1.4.6/test/test_ui_node_script_attributes.py +0 -36
- ory-client-1.4.6/test/test_ui_node_text_attributes.py +0 -38
- ory-client-1.4.6/test/test_ui_nodes.py +0 -38
- ory-client-1.4.6/test/test_ui_text.py +0 -36
- ory-client-1.4.6/test/test_ui_texts.py +0 -38
- ory-client-1.4.6/test/test_update_identity_body.py +0 -40
- ory-client-1.4.6/test/test_update_login_flow_body.py +0 -48
- ory-client-1.4.6/test/test_update_login_flow_with_code_method.py +0 -36
- ory-client-1.4.6/test/test_update_login_flow_with_lookup_secret_method.py +0 -36
- ory-client-1.4.6/test/test_update_login_flow_with_oidc_method.py +0 -36
- ory-client-1.4.6/test/test_update_login_flow_with_password_method.py +0 -36
- ory-client-1.4.6/test/test_update_login_flow_with_totp_method.py +0 -36
- ory-client-1.4.6/test/test_update_login_flow_with_web_authn_method.py +0 -36
- ory-client-1.4.6/test/test_update_recovery_flow_body.py +0 -40
- ory-client-1.4.6/test/test_update_recovery_flow_with_code_method.py +0 -36
- ory-client-1.4.6/test/test_update_recovery_flow_with_link_method.py +0 -36
- ory-client-1.4.6/test/test_update_registration_flow_body.py +0 -44
- ory-client-1.4.6/test/test_update_registration_flow_with_code_method.py +0 -36
- ory-client-1.4.6/test/test_update_registration_flow_with_oidc_method.py +0 -36
- ory-client-1.4.6/test/test_update_registration_flow_with_password_method.py +0 -36
- ory-client-1.4.6/test/test_update_registration_flow_with_web_authn_method.py +0 -36
- ory-client-1.4.6/test/test_update_settings_flow_body.py +0 -48
- ory-client-1.4.6/test/test_update_settings_flow_with_lookup_method.py +0 -36
- ory-client-1.4.6/test/test_update_settings_flow_with_oidc_method.py +0 -36
- ory-client-1.4.6/test/test_update_settings_flow_with_password_method.py +0 -36
- ory-client-1.4.6/test/test_update_settings_flow_with_profile_method.py +0 -36
- ory-client-1.4.6/test/test_update_settings_flow_with_totp_method.py +0 -36
- ory-client-1.4.6/test/test_update_settings_flow_with_web_authn_method.py +0 -36
- ory-client-1.4.6/test/test_update_subscription_body.py +0 -36
- ory-client-1.4.6/test/test_update_verification_flow_body.py +0 -40
- ory-client-1.4.6/test/test_update_verification_flow_with_code_method.py +0 -36
- ory-client-1.4.6/test/test_update_verification_flow_with_link_method.py +0 -36
- ory-client-1.4.6/test/test_usage.py +0 -38
- ory-client-1.4.6/test/test_verifiable_credential_priming_response.py +0 -36
- ory-client-1.4.6/test/test_verifiable_credential_proof.py +0 -36
- ory-client-1.4.6/test/test_verifiable_credential_response.py +0 -36
- ory-client-1.4.6/test/test_verifiable_identity_address.py +0 -36
- ory-client-1.4.6/test/test_verification_flow.py +0 -38
- ory-client-1.4.6/test/test_verification_flow_state.py +0 -36
- ory-client-1.4.6/test/test_version.py +0 -36
- ory-client-1.4.6/test/test_warning.py +0 -36
- ory-client-1.4.6/test/test_wellknown_api.py +0 -36
- ory-client-1.4.6/test/test_workspace.py +0 -36
- ory-client-1.4.6/test/test_workspaces.py +0 -38
- {ory-client-1.4.6 → ory-client-1.4.8}/LICENSE +0 -0
- {ory-client-1.4.6 → ory-client-1.4.8}/ory_client/api/__init__.py +0 -0
- {ory-client-1.4.6 → ory-client-1.4.8}/ory_client/apis/__init__.py +0 -0
- {ory-client-1.4.6 → ory-client-1.4.8}/ory_client/model/__init__.py +0 -0
- {ory-client-1.4.6 → ory-client-1.4.8}/ory_client.egg-info/dependency_links.txt +0 -0
- {ory-client-1.4.6 → ory-client-1.4.8}/ory_client.egg-info/requires.txt +0 -0
- {ory-client-1.4.6 → ory-client-1.4.8}/ory_client.egg-info/top_level.txt +0 -0
- {ory-client-1.4.6 → ory-client-1.4.8}/setup.cfg +0 -0
@@ -0,0 +1,14 @@
|
|
1
|
+
Metadata-Version: 2.1
|
2
|
+
Name: ory-client
|
3
|
+
Version: 1.4.8
|
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
|
+
Requires-Python: >=3.6
|
11
|
+
License-File: LICENSE
|
12
|
+
|
13
|
+
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. # noqa: E501
|
14
|
+
|
@@ -0,0 +1,552 @@
|
|
1
|
+
# ory-client
|
2
|
+
Documentation for all public and administrative Ory APIs. Administrative APIs can only be accessed
|
3
|
+
with a valid Personal Access Token. Public APIs are mostly used in browsers.
|
4
|
+
|
5
|
+
|
6
|
+
This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
|
7
|
+
|
8
|
+
- API version: v1.4.8
|
9
|
+
- Package version: v1.4.8
|
10
|
+
- Build package: org.openapitools.codegen.languages.PythonClientCodegen
|
11
|
+
|
12
|
+
## Requirements.
|
13
|
+
|
14
|
+
Python >=3.6
|
15
|
+
|
16
|
+
## Installation & Usage
|
17
|
+
### pip install
|
18
|
+
|
19
|
+
If the python package is hosted on a repository, you can install directly using:
|
20
|
+
|
21
|
+
```sh
|
22
|
+
pip install git+https://github.com/ory/sdk.git
|
23
|
+
```
|
24
|
+
(you may need to run `pip` with root permission: `sudo pip install git+https://github.com/ory/sdk.git`)
|
25
|
+
|
26
|
+
Then import the package:
|
27
|
+
```python
|
28
|
+
import ory_client
|
29
|
+
```
|
30
|
+
|
31
|
+
### Setuptools
|
32
|
+
|
33
|
+
Install via [Setuptools](http://pypi.python.org/pypi/setuptools).
|
34
|
+
|
35
|
+
```sh
|
36
|
+
python setup.py install --user
|
37
|
+
```
|
38
|
+
(or `sudo python setup.py install` to install the package for all users)
|
39
|
+
|
40
|
+
Then import the package:
|
41
|
+
```python
|
42
|
+
import ory_client
|
43
|
+
```
|
44
|
+
|
45
|
+
## Getting Started
|
46
|
+
|
47
|
+
Please follow the [installation procedure](#installation--usage) and then run the following:
|
48
|
+
|
49
|
+
```python
|
50
|
+
|
51
|
+
import time
|
52
|
+
import ory_client
|
53
|
+
from pprint import pprint
|
54
|
+
from ory_client.api import courier_api
|
55
|
+
from ory_client.model.courier_message_status import CourierMessageStatus
|
56
|
+
from ory_client.model.error_generic import ErrorGeneric
|
57
|
+
from ory_client.model.message import Message
|
58
|
+
# Defining the host is optional and defaults to https://playground.projects.oryapis.com
|
59
|
+
# See configuration.py for a list of all supported configuration parameters.
|
60
|
+
configuration = ory_client.Configuration(
|
61
|
+
host = "https://playground.projects.oryapis.com"
|
62
|
+
)
|
63
|
+
|
64
|
+
# The client must configure the authentication and authorization parameters
|
65
|
+
# in accordance with the API server security policy.
|
66
|
+
# Examples for each auth method are provided below, use the example that
|
67
|
+
# satisfies your auth use case.
|
68
|
+
|
69
|
+
# Configure Bearer authorization: oryAccessToken
|
70
|
+
configuration = ory_client.Configuration(
|
71
|
+
access_token = 'YOUR_BEARER_TOKEN'
|
72
|
+
)
|
73
|
+
|
74
|
+
|
75
|
+
# Enter a context with an instance of the API client
|
76
|
+
with ory_client.ApiClient(configuration) as api_client:
|
77
|
+
# Create an instance of the API class
|
78
|
+
api_instance = courier_api.CourierApi(api_client)
|
79
|
+
id = "id_example" # str | MessageID is the ID of the message.
|
80
|
+
|
81
|
+
try:
|
82
|
+
# Get a Message
|
83
|
+
api_response = api_instance.get_courier_message(id)
|
84
|
+
pprint(api_response)
|
85
|
+
except ory_client.ApiException as e:
|
86
|
+
print("Exception when calling CourierApi->get_courier_message: %s\n" % e)
|
87
|
+
```
|
88
|
+
|
89
|
+
## Documentation for API Endpoints
|
90
|
+
|
91
|
+
All URIs are relative to *https://playground.projects.oryapis.com*
|
92
|
+
|
93
|
+
Class | Method | HTTP request | Description
|
94
|
+
------------ | ------------- | ------------- | -------------
|
95
|
+
*CourierApi* | [**get_courier_message**](docs/CourierApi.md#get_courier_message) | **GET** /admin/courier/messages/{id} | Get a Message
|
96
|
+
*CourierApi* | [**list_courier_messages**](docs/CourierApi.md#list_courier_messages) | **GET** /admin/courier/messages | List Messages
|
97
|
+
*FrontendApi* | [**create_browser_login_flow**](docs/FrontendApi.md#create_browser_login_flow) | **GET** /self-service/login/browser | Create Login Flow for Browsers
|
98
|
+
*FrontendApi* | [**create_browser_logout_flow**](docs/FrontendApi.md#create_browser_logout_flow) | **GET** /self-service/logout/browser | Create a Logout URL for Browsers
|
99
|
+
*FrontendApi* | [**create_browser_recovery_flow**](docs/FrontendApi.md#create_browser_recovery_flow) | **GET** /self-service/recovery/browser | Create Recovery Flow for Browsers
|
100
|
+
*FrontendApi* | [**create_browser_registration_flow**](docs/FrontendApi.md#create_browser_registration_flow) | **GET** /self-service/registration/browser | Create Registration Flow for Browsers
|
101
|
+
*FrontendApi* | [**create_browser_settings_flow**](docs/FrontendApi.md#create_browser_settings_flow) | **GET** /self-service/settings/browser | Create Settings Flow for Browsers
|
102
|
+
*FrontendApi* | [**create_browser_verification_flow**](docs/FrontendApi.md#create_browser_verification_flow) | **GET** /self-service/verification/browser | Create Verification Flow for Browser Clients
|
103
|
+
*FrontendApi* | [**create_native_login_flow**](docs/FrontendApi.md#create_native_login_flow) | **GET** /self-service/login/api | Create Login Flow for Native Apps
|
104
|
+
*FrontendApi* | [**create_native_recovery_flow**](docs/FrontendApi.md#create_native_recovery_flow) | **GET** /self-service/recovery/api | Create Recovery Flow for Native Apps
|
105
|
+
*FrontendApi* | [**create_native_registration_flow**](docs/FrontendApi.md#create_native_registration_flow) | **GET** /self-service/registration/api | Create Registration Flow for Native Apps
|
106
|
+
*FrontendApi* | [**create_native_settings_flow**](docs/FrontendApi.md#create_native_settings_flow) | **GET** /self-service/settings/api | Create Settings Flow for Native Apps
|
107
|
+
*FrontendApi* | [**create_native_verification_flow**](docs/FrontendApi.md#create_native_verification_flow) | **GET** /self-service/verification/api | Create Verification Flow for Native Apps
|
108
|
+
*FrontendApi* | [**disable_my_other_sessions**](docs/FrontendApi.md#disable_my_other_sessions) | **DELETE** /sessions | Disable my other sessions
|
109
|
+
*FrontendApi* | [**disable_my_session**](docs/FrontendApi.md#disable_my_session) | **DELETE** /sessions/{id} | Disable one of my sessions
|
110
|
+
*FrontendApi* | [**exchange_session_token**](docs/FrontendApi.md#exchange_session_token) | **GET** /sessions/token-exchange | Exchange Session Token
|
111
|
+
*FrontendApi* | [**get_flow_error**](docs/FrontendApi.md#get_flow_error) | **GET** /self-service/errors | Get User-Flow Errors
|
112
|
+
*FrontendApi* | [**get_login_flow**](docs/FrontendApi.md#get_login_flow) | **GET** /self-service/login/flows | Get Login Flow
|
113
|
+
*FrontendApi* | [**get_recovery_flow**](docs/FrontendApi.md#get_recovery_flow) | **GET** /self-service/recovery/flows | Get Recovery Flow
|
114
|
+
*FrontendApi* | [**get_registration_flow**](docs/FrontendApi.md#get_registration_flow) | **GET** /self-service/registration/flows | Get Registration Flow
|
115
|
+
*FrontendApi* | [**get_settings_flow**](docs/FrontendApi.md#get_settings_flow) | **GET** /self-service/settings/flows | Get Settings Flow
|
116
|
+
*FrontendApi* | [**get_verification_flow**](docs/FrontendApi.md#get_verification_flow) | **GET** /self-service/verification/flows | Get Verification Flow
|
117
|
+
*FrontendApi* | [**get_web_authn_java_script**](docs/FrontendApi.md#get_web_authn_java_script) | **GET** /.well-known/ory/webauthn.js | Get WebAuthn JavaScript
|
118
|
+
*FrontendApi* | [**list_my_sessions**](docs/FrontendApi.md#list_my_sessions) | **GET** /sessions | Get My Active Sessions
|
119
|
+
*FrontendApi* | [**perform_native_logout**](docs/FrontendApi.md#perform_native_logout) | **DELETE** /self-service/logout/api | Perform Logout for Native Apps
|
120
|
+
*FrontendApi* | [**to_session**](docs/FrontendApi.md#to_session) | **GET** /sessions/whoami | Check Who the Current HTTP Session Belongs To
|
121
|
+
*FrontendApi* | [**update_login_flow**](docs/FrontendApi.md#update_login_flow) | **POST** /self-service/login | Submit a Login Flow
|
122
|
+
*FrontendApi* | [**update_logout_flow**](docs/FrontendApi.md#update_logout_flow) | **GET** /self-service/logout | Update Logout Flow
|
123
|
+
*FrontendApi* | [**update_recovery_flow**](docs/FrontendApi.md#update_recovery_flow) | **POST** /self-service/recovery | Update Recovery Flow
|
124
|
+
*FrontendApi* | [**update_registration_flow**](docs/FrontendApi.md#update_registration_flow) | **POST** /self-service/registration | Update Registration Flow
|
125
|
+
*FrontendApi* | [**update_settings_flow**](docs/FrontendApi.md#update_settings_flow) | **POST** /self-service/settings | Complete Settings Flow
|
126
|
+
*FrontendApi* | [**update_verification_flow**](docs/FrontendApi.md#update_verification_flow) | **POST** /self-service/verification | Complete Verification Flow
|
127
|
+
*IdentityApi* | [**batch_patch_identities**](docs/IdentityApi.md#batch_patch_identities) | **PATCH** /admin/identities | Create and deletes multiple identities
|
128
|
+
*IdentityApi* | [**create_identity**](docs/IdentityApi.md#create_identity) | **POST** /admin/identities | Create an Identity
|
129
|
+
*IdentityApi* | [**create_recovery_code_for_identity**](docs/IdentityApi.md#create_recovery_code_for_identity) | **POST** /admin/recovery/code | Create a Recovery Code
|
130
|
+
*IdentityApi* | [**create_recovery_link_for_identity**](docs/IdentityApi.md#create_recovery_link_for_identity) | **POST** /admin/recovery/link | Create a Recovery Link
|
131
|
+
*IdentityApi* | [**delete_identity**](docs/IdentityApi.md#delete_identity) | **DELETE** /admin/identities/{id} | Delete an Identity
|
132
|
+
*IdentityApi* | [**delete_identity_credentials**](docs/IdentityApi.md#delete_identity_credentials) | **DELETE** /admin/identities/{id}/credentials/{type} | Delete a credential for a specific identity
|
133
|
+
*IdentityApi* | [**delete_identity_sessions**](docs/IdentityApi.md#delete_identity_sessions) | **DELETE** /admin/identities/{id}/sessions | Delete & Invalidate an Identity's Sessions
|
134
|
+
*IdentityApi* | [**disable_session**](docs/IdentityApi.md#disable_session) | **DELETE** /admin/sessions/{id} | Deactivate a Session
|
135
|
+
*IdentityApi* | [**extend_session**](docs/IdentityApi.md#extend_session) | **PATCH** /admin/sessions/{id}/extend | Extend a Session
|
136
|
+
*IdentityApi* | [**get_identity**](docs/IdentityApi.md#get_identity) | **GET** /admin/identities/{id} | Get an Identity
|
137
|
+
*IdentityApi* | [**get_identity_schema**](docs/IdentityApi.md#get_identity_schema) | **GET** /schemas/{id} | Get Identity JSON Schema
|
138
|
+
*IdentityApi* | [**get_session**](docs/IdentityApi.md#get_session) | **GET** /admin/sessions/{id} | Get Session
|
139
|
+
*IdentityApi* | [**list_identities**](docs/IdentityApi.md#list_identities) | **GET** /admin/identities | List Identities
|
140
|
+
*IdentityApi* | [**list_identity_schemas**](docs/IdentityApi.md#list_identity_schemas) | **GET** /schemas | Get all Identity Schemas
|
141
|
+
*IdentityApi* | [**list_identity_sessions**](docs/IdentityApi.md#list_identity_sessions) | **GET** /admin/identities/{id}/sessions | List an Identity's Sessions
|
142
|
+
*IdentityApi* | [**list_sessions**](docs/IdentityApi.md#list_sessions) | **GET** /admin/sessions | List All Sessions
|
143
|
+
*IdentityApi* | [**patch_identity**](docs/IdentityApi.md#patch_identity) | **PATCH** /admin/identities/{id} | Patch an Identity
|
144
|
+
*IdentityApi* | [**update_identity**](docs/IdentityApi.md#update_identity) | **PUT** /admin/identities/{id} | Update an Identity
|
145
|
+
*JwkApi* | [**create_json_web_key_set**](docs/JwkApi.md#create_json_web_key_set) | **POST** /admin/keys/{set} | Create JSON Web Key
|
146
|
+
*JwkApi* | [**delete_json_web_key**](docs/JwkApi.md#delete_json_web_key) | **DELETE** /admin/keys/{set}/{kid} | Delete JSON Web Key
|
147
|
+
*JwkApi* | [**delete_json_web_key_set**](docs/JwkApi.md#delete_json_web_key_set) | **DELETE** /admin/keys/{set} | Delete JSON Web Key Set
|
148
|
+
*JwkApi* | [**get_json_web_key**](docs/JwkApi.md#get_json_web_key) | **GET** /admin/keys/{set}/{kid} | Get JSON Web Key
|
149
|
+
*JwkApi* | [**get_json_web_key_set**](docs/JwkApi.md#get_json_web_key_set) | **GET** /admin/keys/{set} | Retrieve a JSON Web Key Set
|
150
|
+
*JwkApi* | [**set_json_web_key**](docs/JwkApi.md#set_json_web_key) | **PUT** /admin/keys/{set}/{kid} | Set JSON Web Key
|
151
|
+
*JwkApi* | [**set_json_web_key_set**](docs/JwkApi.md#set_json_web_key_set) | **PUT** /admin/keys/{set} | Update a JSON Web Key Set
|
152
|
+
*MetadataApi* | [**get_version**](docs/MetadataApi.md#get_version) | **GET** /version | Return Running Software Version.
|
153
|
+
*MetadataApi* | [**is_alive**](docs/MetadataApi.md#is_alive) | **GET** /health/alive | Check HTTP Server Status
|
154
|
+
*MetadataApi* | [**is_ready**](docs/MetadataApi.md#is_ready) | **GET** /health/ready | Check HTTP Server and Database Status
|
155
|
+
*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
|
156
|
+
*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
|
157
|
+
*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
|
158
|
+
*OAuth2Api* | [**create_o_auth2_client**](docs/OAuth2Api.md#create_o_auth2_client) | **POST** /admin/clients | Create OAuth 2.0 Client
|
159
|
+
*OAuth2Api* | [**delete_o_auth2_client**](docs/OAuth2Api.md#delete_o_auth2_client) | **DELETE** /admin/clients/{id} | Delete OAuth 2.0 Client
|
160
|
+
*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
|
161
|
+
*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
|
162
|
+
*OAuth2Api* | [**get_o_auth2_client**](docs/OAuth2Api.md#get_o_auth2_client) | **GET** /admin/clients/{id} | Get an OAuth 2.0 Client
|
163
|
+
*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
|
164
|
+
*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
|
165
|
+
*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
|
166
|
+
*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
|
167
|
+
*OAuth2Api* | [**introspect_o_auth2_token**](docs/OAuth2Api.md#introspect_o_auth2_token) | **POST** /admin/oauth2/introspect | Introspect OAuth2 Access and Refresh Tokens
|
168
|
+
*OAuth2Api* | [**list_o_auth2_clients**](docs/OAuth2Api.md#list_o_auth2_clients) | **GET** /admin/clients | List OAuth 2.0 Clients
|
169
|
+
*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
|
170
|
+
*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
|
171
|
+
*OAuth2Api* | [**o_auth2_authorize**](docs/OAuth2Api.md#o_auth2_authorize) | **GET** /oauth2/auth | OAuth 2.0 Authorize Endpoint
|
172
|
+
*OAuth2Api* | [**oauth2_token_exchange**](docs/OAuth2Api.md#oauth2_token_exchange) | **POST** /oauth2/token | The OAuth 2.0 Token Endpoint
|
173
|
+
*OAuth2Api* | [**patch_o_auth2_client**](docs/OAuth2Api.md#patch_o_auth2_client) | **PATCH** /admin/clients/{id} | Patch OAuth 2.0 Client
|
174
|
+
*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
|
175
|
+
*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
|
176
|
+
*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
|
177
|
+
*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
|
178
|
+
*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
|
179
|
+
*OAuth2Api* | [**revoke_o_auth2_token**](docs/OAuth2Api.md#revoke_o_auth2_token) | **POST** /oauth2/revoke | Revoke OAuth 2.0 Access or Refresh Token
|
180
|
+
*OAuth2Api* | [**set_o_auth2_client**](docs/OAuth2Api.md#set_o_auth2_client) | **PUT** /admin/clients/{id} | Set OAuth 2.0 Client
|
181
|
+
*OAuth2Api* | [**set_o_auth2_client_lifespans**](docs/OAuth2Api.md#set_o_auth2_client_lifespans) | **PUT** /admin/clients/{id}/lifespans | Set OAuth2 Client Token Lifespans
|
182
|
+
*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
|
183
|
+
*OidcApi* | [**create_oidc_dynamic_client**](docs/OidcApi.md#create_oidc_dynamic_client) | **POST** /oauth2/register | Register OAuth2 Client using OpenID Dynamic Client Registration
|
184
|
+
*OidcApi* | [**create_verifiable_credential**](docs/OidcApi.md#create_verifiable_credential) | **POST** /credentials | Issues a Verifiable Credential
|
185
|
+
*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
|
186
|
+
*OidcApi* | [**discover_oidc_configuration**](docs/OidcApi.md#discover_oidc_configuration) | **GET** /.well-known/openid-configuration | OpenID Connect Discovery
|
187
|
+
*OidcApi* | [**get_oidc_dynamic_client**](docs/OidcApi.md#get_oidc_dynamic_client) | **GET** /oauth2/register/{id} | Get OAuth2 Client using OpenID Dynamic Client Registration
|
188
|
+
*OidcApi* | [**get_oidc_user_info**](docs/OidcApi.md#get_oidc_user_info) | **GET** /userinfo | OpenID Connect Userinfo
|
189
|
+
*OidcApi* | [**revoke_oidc_session**](docs/OidcApi.md#revoke_oidc_session) | **GET** /oauth2/sessions/logout | OpenID Connect Front- and Back-channel Enabled Logout
|
190
|
+
*OidcApi* | [**set_oidc_dynamic_client**](docs/OidcApi.md#set_oidc_dynamic_client) | **PUT** /oauth2/register/{id} | Set OAuth2 Client using OpenID Dynamic Client Registration
|
191
|
+
*PermissionApi* | [**check_permission**](docs/PermissionApi.md#check_permission) | **GET** /relation-tuples/check/openapi | Check a permission
|
192
|
+
*PermissionApi* | [**check_permission_or_error**](docs/PermissionApi.md#check_permission_or_error) | **GET** /relation-tuples/check | Check a permission
|
193
|
+
*PermissionApi* | [**expand_permissions**](docs/PermissionApi.md#expand_permissions) | **GET** /relation-tuples/expand | Expand a Relationship into permissions.
|
194
|
+
*PermissionApi* | [**post_check_permission**](docs/PermissionApi.md#post_check_permission) | **POST** /relation-tuples/check/openapi | Check a permission
|
195
|
+
*PermissionApi* | [**post_check_permission_or_error**](docs/PermissionApi.md#post_check_permission_or_error) | **POST** /relation-tuples/check | Check a permission
|
196
|
+
*ProjectApi* | [**create_organization**](docs/ProjectApi.md#create_organization) | **POST** /projects/{project_id}/organizations |
|
197
|
+
*ProjectApi* | [**create_project**](docs/ProjectApi.md#create_project) | **POST** /projects | Create a Project
|
198
|
+
*ProjectApi* | [**create_project_api_key**](docs/ProjectApi.md#create_project_api_key) | **POST** /projects/{project}/tokens | Create project API token
|
199
|
+
*ProjectApi* | [**delete_organization**](docs/ProjectApi.md#delete_organization) | **DELETE** /projects/{project_id}/organizations/{organization_id} | Delete a B2B SSO Organization for a project.
|
200
|
+
*ProjectApi* | [**delete_project_api_key**](docs/ProjectApi.md#delete_project_api_key) | **DELETE** /projects/{project}/tokens/{token_id} | Delete project API token
|
201
|
+
*ProjectApi* | [**get_active_project_in_console**](docs/ProjectApi.md#get_active_project_in_console) | **GET** /console/active/project | Returns the Ory Network Project selected in the Ory Network Console
|
202
|
+
*ProjectApi* | [**get_organization**](docs/ProjectApi.md#get_organization) | **GET** /projects/{project_id}/organizations/{organization_id} | Returns a B2B SSO Organization for a project by it's ID.
|
203
|
+
*ProjectApi* | [**get_project**](docs/ProjectApi.md#get_project) | **GET** /projects/{project_id} | Get a Project
|
204
|
+
*ProjectApi* | [**get_project_members**](docs/ProjectApi.md#get_project_members) | **GET** /projects/{project}/members | Get all members associated with this project
|
205
|
+
*ProjectApi* | [**get_project_metrics**](docs/ProjectApi.md#get_project_metrics) | **GET** /projects/{project_id}/metrics |
|
206
|
+
*ProjectApi* | [**list_organizations**](docs/ProjectApi.md#list_organizations) | **GET** /projects/{project_id}/organizations |
|
207
|
+
*ProjectApi* | [**list_project_api_keys**](docs/ProjectApi.md#list_project_api_keys) | **GET** /projects/{project}/tokens | List a project's API Tokens
|
208
|
+
*ProjectApi* | [**list_projects**](docs/ProjectApi.md#list_projects) | **GET** /projects | List All Projects
|
209
|
+
*ProjectApi* | [**patch_project**](docs/ProjectApi.md#patch_project) | **PATCH** /projects/{project_id} | Patch an Ory Network Project Configuration
|
210
|
+
*ProjectApi* | [**purge_project**](docs/ProjectApi.md#purge_project) | **DELETE** /projects/{project_id} | Irrecoverably purge a project
|
211
|
+
*ProjectApi* | [**remove_project_member**](docs/ProjectApi.md#remove_project_member) | **DELETE** /projects/{project}/members/{member} | Remove a member associated with this project
|
212
|
+
*ProjectApi* | [**set_active_project_in_console**](docs/ProjectApi.md#set_active_project_in_console) | **PUT** /console/active/project | Sets the Ory Network Project active in the Ory Network Console
|
213
|
+
*ProjectApi* | [**set_project**](docs/ProjectApi.md#set_project) | **PUT** /projects/{project_id} | Update an Ory Network Project Configuration
|
214
|
+
*ProjectApi* | [**update_organization**](docs/ProjectApi.md#update_organization) | **PUT** /projects/{project_id}/organizations/{organization_id} | Update a B2B SSO Organization for a project.
|
215
|
+
*RelationshipApi* | [**check_opl_syntax**](docs/RelationshipApi.md#check_opl_syntax) | **POST** /opl/syntax/check | Check the syntax of an OPL file
|
216
|
+
*RelationshipApi* | [**create_relationship**](docs/RelationshipApi.md#create_relationship) | **PUT** /admin/relation-tuples | Create a Relationship
|
217
|
+
*RelationshipApi* | [**delete_relationships**](docs/RelationshipApi.md#delete_relationships) | **DELETE** /admin/relation-tuples | Delete Relationships
|
218
|
+
*RelationshipApi* | [**get_relationships**](docs/RelationshipApi.md#get_relationships) | **GET** /relation-tuples | Query relationships
|
219
|
+
*RelationshipApi* | [**list_relationship_namespaces**](docs/RelationshipApi.md#list_relationship_namespaces) | **GET** /namespaces | Query namespaces
|
220
|
+
*RelationshipApi* | [**patch_relationships**](docs/RelationshipApi.md#patch_relationships) | **PATCH** /admin/relation-tuples | Patch Multiple Relationships
|
221
|
+
*WellknownApi* | [**discover_json_web_keys**](docs/WellknownApi.md#discover_json_web_keys) | **GET** /.well-known/jwks.json | Discover Well-Known JSON Web Keys
|
222
|
+
|
223
|
+
|
224
|
+
## Documentation For Models
|
225
|
+
|
226
|
+
- [AcceptOAuth2ConsentRequest](docs/AcceptOAuth2ConsentRequest.md)
|
227
|
+
- [AcceptOAuth2ConsentRequestSession](docs/AcceptOAuth2ConsentRequestSession.md)
|
228
|
+
- [AcceptOAuth2LoginRequest](docs/AcceptOAuth2LoginRequest.md)
|
229
|
+
- [ActiveProjectInConsole](docs/ActiveProjectInConsole.md)
|
230
|
+
- [Attribute](docs/Attribute.md)
|
231
|
+
- [AttributeFilter](docs/AttributeFilter.md)
|
232
|
+
- [AttributesCountDatapoint](docs/AttributesCountDatapoint.md)
|
233
|
+
- [AuthenticatorAssuranceLevel](docs/AuthenticatorAssuranceLevel.md)
|
234
|
+
- [BatchPatchIdentitiesResponse](docs/BatchPatchIdentitiesResponse.md)
|
235
|
+
- [CheckOplSyntaxResult](docs/CheckOplSyntaxResult.md)
|
236
|
+
- [CheckPermissionResult](docs/CheckPermissionResult.md)
|
237
|
+
- [CloudAccount](docs/CloudAccount.md)
|
238
|
+
- [ConsistencyRequestParameters](docs/ConsistencyRequestParameters.md)
|
239
|
+
- [ContinueWith](docs/ContinueWith.md)
|
240
|
+
- [ContinueWithRecoveryUi](docs/ContinueWithRecoveryUi.md)
|
241
|
+
- [ContinueWithRecoveryUiFlow](docs/ContinueWithRecoveryUiFlow.md)
|
242
|
+
- [ContinueWithSetOrySessionToken](docs/ContinueWithSetOrySessionToken.md)
|
243
|
+
- [ContinueWithSettingsUi](docs/ContinueWithSettingsUi.md)
|
244
|
+
- [ContinueWithSettingsUiFlow](docs/ContinueWithSettingsUiFlow.md)
|
245
|
+
- [ContinueWithVerificationUi](docs/ContinueWithVerificationUi.md)
|
246
|
+
- [ContinueWithVerificationUiFlow](docs/ContinueWithVerificationUiFlow.md)
|
247
|
+
- [CourierMessageStatus](docs/CourierMessageStatus.md)
|
248
|
+
- [CourierMessageType](docs/CourierMessageType.md)
|
249
|
+
- [CreateCustomDomainBody](docs/CreateCustomDomainBody.md)
|
250
|
+
- [CreateIdentityBody](docs/CreateIdentityBody.md)
|
251
|
+
- [CreateInviteResponse](docs/CreateInviteResponse.md)
|
252
|
+
- [CreateJsonWebKeySet](docs/CreateJsonWebKeySet.md)
|
253
|
+
- [CreateMemberInviteResponse](docs/CreateMemberInviteResponse.md)
|
254
|
+
- [CreateProjectApiKeyRequest](docs/CreateProjectApiKeyRequest.md)
|
255
|
+
- [CreateProjectBody](docs/CreateProjectBody.md)
|
256
|
+
- [CreateProjectBranding](docs/CreateProjectBranding.md)
|
257
|
+
- [CreateProjectMemberInviteBody](docs/CreateProjectMemberInviteBody.md)
|
258
|
+
- [CreateProjectNormalizedPayload](docs/CreateProjectNormalizedPayload.md)
|
259
|
+
- [CreateRecoveryCodeForIdentityBody](docs/CreateRecoveryCodeForIdentityBody.md)
|
260
|
+
- [CreateRecoveryLinkForIdentityBody](docs/CreateRecoveryLinkForIdentityBody.md)
|
261
|
+
- [CreateRelationshipBody](docs/CreateRelationshipBody.md)
|
262
|
+
- [CreateSubscriptionBody](docs/CreateSubscriptionBody.md)
|
263
|
+
- [CreateVerifiableCredentialRequestBody](docs/CreateVerifiableCredentialRequestBody.md)
|
264
|
+
- [CreateWorkspaceMemberInviteBody](docs/CreateWorkspaceMemberInviteBody.md)
|
265
|
+
- [CredentialSupportedDraft00](docs/CredentialSupportedDraft00.md)
|
266
|
+
- [CustomDomain](docs/CustomDomain.md)
|
267
|
+
- [DeleteMySessionsCount](docs/DeleteMySessionsCount.md)
|
268
|
+
- [EmailTemplateData](docs/EmailTemplateData.md)
|
269
|
+
- [EmailTemplateDataBody](docs/EmailTemplateDataBody.md)
|
270
|
+
- [ErrorAuthenticatorAssuranceLevelNotSatisfied](docs/ErrorAuthenticatorAssuranceLevelNotSatisfied.md)
|
271
|
+
- [ErrorBrowserLocationChangeRequired](docs/ErrorBrowserLocationChangeRequired.md)
|
272
|
+
- [ErrorFlowReplaced](docs/ErrorFlowReplaced.md)
|
273
|
+
- [ErrorGeneric](docs/ErrorGeneric.md)
|
274
|
+
- [ErrorOAuth2](docs/ErrorOAuth2.md)
|
275
|
+
- [ExpandedPermissionTree](docs/ExpandedPermissionTree.md)
|
276
|
+
- [FlowError](docs/FlowError.md)
|
277
|
+
- [GenericError](docs/GenericError.md)
|
278
|
+
- [GenericErrorContent](docs/GenericErrorContent.md)
|
279
|
+
- [GenericUsage](docs/GenericUsage.md)
|
280
|
+
- [GetAttributesCountResponse](docs/GetAttributesCountResponse.md)
|
281
|
+
- [GetManagedIdentitySchemaLocation](docs/GetManagedIdentitySchemaLocation.md)
|
282
|
+
- [GetMetricsEventAttributesResponse](docs/GetMetricsEventAttributesResponse.md)
|
283
|
+
- [GetMetricsEventTypesResponse](docs/GetMetricsEventTypesResponse.md)
|
284
|
+
- [GetOrganizationResponse](docs/GetOrganizationResponse.md)
|
285
|
+
- [GetProjectEventsBody](docs/GetProjectEventsBody.md)
|
286
|
+
- [GetProjectEventsResponse](docs/GetProjectEventsResponse.md)
|
287
|
+
- [GetProjectMetricsResponse](docs/GetProjectMetricsResponse.md)
|
288
|
+
- [GetSessionActivityResponse](docs/GetSessionActivityResponse.md)
|
289
|
+
- [GetVersion200Response](docs/GetVersion200Response.md)
|
290
|
+
- [HealthNotReadyStatus](docs/HealthNotReadyStatus.md)
|
291
|
+
- [HealthStatus](docs/HealthStatus.md)
|
292
|
+
- [Identity](docs/Identity.md)
|
293
|
+
- [IdentityCredentials](docs/IdentityCredentials.md)
|
294
|
+
- [IdentityCredentialsCode](docs/IdentityCredentialsCode.md)
|
295
|
+
- [IdentityCredentialsOidc](docs/IdentityCredentialsOidc.md)
|
296
|
+
- [IdentityCredentialsOidcProvider](docs/IdentityCredentialsOidcProvider.md)
|
297
|
+
- [IdentityCredentialsPassword](docs/IdentityCredentialsPassword.md)
|
298
|
+
- [IdentityCredentialsType](docs/IdentityCredentialsType.md)
|
299
|
+
- [IdentityPatch](docs/IdentityPatch.md)
|
300
|
+
- [IdentityPatchResponse](docs/IdentityPatchResponse.md)
|
301
|
+
- [IdentitySchemaContainer](docs/IdentitySchemaContainer.md)
|
302
|
+
- [IdentitySchemaPreset](docs/IdentitySchemaPreset.md)
|
303
|
+
- [IdentitySchemaPresets](docs/IdentitySchemaPresets.md)
|
304
|
+
- [IdentitySchemas](docs/IdentitySchemas.md)
|
305
|
+
- [IdentityState](docs/IdentityState.md)
|
306
|
+
- [IdentityWithCredentials](docs/IdentityWithCredentials.md)
|
307
|
+
- [IdentityWithCredentialsOidc](docs/IdentityWithCredentialsOidc.md)
|
308
|
+
- [IdentityWithCredentialsOidcConfig](docs/IdentityWithCredentialsOidcConfig.md)
|
309
|
+
- [IdentityWithCredentialsOidcConfigProvider](docs/IdentityWithCredentialsOidcConfigProvider.md)
|
310
|
+
- [IdentityWithCredentialsPassword](docs/IdentityWithCredentialsPassword.md)
|
311
|
+
- [IdentityWithCredentialsPasswordConfig](docs/IdentityWithCredentialsPasswordConfig.md)
|
312
|
+
- [InternalGetProjectBrandingBody](docs/InternalGetProjectBrandingBody.md)
|
313
|
+
- [InternalIsAXWelcomeScreenEnabledForProjectBody](docs/InternalIsAXWelcomeScreenEnabledForProjectBody.md)
|
314
|
+
- [InternalIsOwnerForProjectBySlugBody](docs/InternalIsOwnerForProjectBySlugBody.md)
|
315
|
+
- [InternalIsOwnerForProjectBySlugResponse](docs/InternalIsOwnerForProjectBySlugResponse.md)
|
316
|
+
- [InternalProvisionMockSubscription](docs/InternalProvisionMockSubscription.md)
|
317
|
+
- [IntrospectedOAuth2Token](docs/IntrospectedOAuth2Token.md)
|
318
|
+
- [IsOwnerForProjectBySlug](docs/IsOwnerForProjectBySlug.md)
|
319
|
+
- [IsReady200Response](docs/IsReady200Response.md)
|
320
|
+
- [IsReady503Response](docs/IsReady503Response.md)
|
321
|
+
- [JsonPatch](docs/JsonPatch.md)
|
322
|
+
- [JsonPatchDocument](docs/JsonPatchDocument.md)
|
323
|
+
- [JsonWebKey](docs/JsonWebKey.md)
|
324
|
+
- [JsonWebKeySet](docs/JsonWebKeySet.md)
|
325
|
+
- [KetoNamespace](docs/KetoNamespace.md)
|
326
|
+
- [KetoNamespaces](docs/KetoNamespaces.md)
|
327
|
+
- [ListCustomDomains](docs/ListCustomDomains.md)
|
328
|
+
- [ListMyWorkspacesResponse](docs/ListMyWorkspacesResponse.md)
|
329
|
+
- [ListOrganizationsResponse](docs/ListOrganizationsResponse.md)
|
330
|
+
- [LoginFlow](docs/LoginFlow.md)
|
331
|
+
- [LoginFlowState](docs/LoginFlowState.md)
|
332
|
+
- [LogoutFlow](docs/LogoutFlow.md)
|
333
|
+
- [ManagedIdentitySchema](docs/ManagedIdentitySchema.md)
|
334
|
+
- [ManagedIdentitySchemaValidationResult](docs/ManagedIdentitySchemaValidationResult.md)
|
335
|
+
- [ManagedIdentitySchemas](docs/ManagedIdentitySchemas.md)
|
336
|
+
- [MemberInvite](docs/MemberInvite.md)
|
337
|
+
- [MemberInvites](docs/MemberInvites.md)
|
338
|
+
- [Message](docs/Message.md)
|
339
|
+
- [MessageDispatch](docs/MessageDispatch.md)
|
340
|
+
- [MetricsDatapoint](docs/MetricsDatapoint.md)
|
341
|
+
- [Namespace](docs/Namespace.md)
|
342
|
+
- [NeedsPrivilegedSessionError](docs/NeedsPrivilegedSessionError.md)
|
343
|
+
- [NormalizedProject](docs/NormalizedProject.md)
|
344
|
+
- [NormalizedProjectRevision](docs/NormalizedProjectRevision.md)
|
345
|
+
- [NormalizedProjectRevisionHook](docs/NormalizedProjectRevisionHook.md)
|
346
|
+
- [NormalizedProjectRevisionIdentitySchema](docs/NormalizedProjectRevisionIdentitySchema.md)
|
347
|
+
- [NormalizedProjectRevisionIdentitySchemas](docs/NormalizedProjectRevisionIdentitySchemas.md)
|
348
|
+
- [NormalizedProjectRevisionThirdPartyProvider](docs/NormalizedProjectRevisionThirdPartyProvider.md)
|
349
|
+
- [NormalizedProjectRevisionTokenizerTemplate](docs/NormalizedProjectRevisionTokenizerTemplate.md)
|
350
|
+
- [NormalizedProjectRevisionTokenizerTemplates](docs/NormalizedProjectRevisionTokenizerTemplates.md)
|
351
|
+
- [NormalizedProjects](docs/NormalizedProjects.md)
|
352
|
+
- [NullDuration](docs/NullDuration.md)
|
353
|
+
- [OAuth2Client](docs/OAuth2Client.md)
|
354
|
+
- [OAuth2ClientTokenLifespans](docs/OAuth2ClientTokenLifespans.md)
|
355
|
+
- [OAuth2ConsentRequest](docs/OAuth2ConsentRequest.md)
|
356
|
+
- [OAuth2ConsentRequestOpenIDConnectContext](docs/OAuth2ConsentRequestOpenIDConnectContext.md)
|
357
|
+
- [OAuth2ConsentSession](docs/OAuth2ConsentSession.md)
|
358
|
+
- [OAuth2ConsentSessionExpiresAt](docs/OAuth2ConsentSessionExpiresAt.md)
|
359
|
+
- [OAuth2ConsentSessions](docs/OAuth2ConsentSessions.md)
|
360
|
+
- [OAuth2LoginRequest](docs/OAuth2LoginRequest.md)
|
361
|
+
- [OAuth2LogoutRequest](docs/OAuth2LogoutRequest.md)
|
362
|
+
- [OAuth2RedirectTo](docs/OAuth2RedirectTo.md)
|
363
|
+
- [OAuth2TokenExchange](docs/OAuth2TokenExchange.md)
|
364
|
+
- [OidcConfiguration](docs/OidcConfiguration.md)
|
365
|
+
- [OidcUserInfo](docs/OidcUserInfo.md)
|
366
|
+
- [Organization](docs/Organization.md)
|
367
|
+
- [OrganizationBody](docs/OrganizationBody.md)
|
368
|
+
- [Pagination](docs/Pagination.md)
|
369
|
+
- [PaginationHeaders](docs/PaginationHeaders.md)
|
370
|
+
- [ParseError](docs/ParseError.md)
|
371
|
+
- [PatchIdentitiesBody](docs/PatchIdentitiesBody.md)
|
372
|
+
- [PerformNativeLogoutBody](docs/PerformNativeLogoutBody.md)
|
373
|
+
- [PermissionsOnProject](docs/PermissionsOnProject.md)
|
374
|
+
- [Plan](docs/Plan.md)
|
375
|
+
- [PlanDetails](docs/PlanDetails.md)
|
376
|
+
- [Plans](docs/Plans.md)
|
377
|
+
- [PostCheckPermissionBody](docs/PostCheckPermissionBody.md)
|
378
|
+
- [PostCheckPermissionOrErrorBody](docs/PostCheckPermissionOrErrorBody.md)
|
379
|
+
- [Pricing](docs/Pricing.md)
|
380
|
+
- [Project](docs/Project.md)
|
381
|
+
- [ProjectApiKey](docs/ProjectApiKey.md)
|
382
|
+
- [ProjectApiKeys](docs/ProjectApiKeys.md)
|
383
|
+
- [ProjectBranding](docs/ProjectBranding.md)
|
384
|
+
- [ProjectBrandingColors](docs/ProjectBrandingColors.md)
|
385
|
+
- [ProjectBrandingTheme](docs/ProjectBrandingTheme.md)
|
386
|
+
- [ProjectBrandingThemes](docs/ProjectBrandingThemes.md)
|
387
|
+
- [ProjectCors](docs/ProjectCors.md)
|
388
|
+
- [ProjectEventsDatapoint](docs/ProjectEventsDatapoint.md)
|
389
|
+
- [ProjectHost](docs/ProjectHost.md)
|
390
|
+
- [ProjectMember](docs/ProjectMember.md)
|
391
|
+
- [ProjectMembers](docs/ProjectMembers.md)
|
392
|
+
- [ProjectMetadata](docs/ProjectMetadata.md)
|
393
|
+
- [ProjectMetadataList](docs/ProjectMetadataList.md)
|
394
|
+
- [ProjectRevisionHooks](docs/ProjectRevisionHooks.md)
|
395
|
+
- [ProjectRevisionIdentitySchemas](docs/ProjectRevisionIdentitySchemas.md)
|
396
|
+
- [ProjectRevisionThirdPartyLoginProviders](docs/ProjectRevisionThirdPartyLoginProviders.md)
|
397
|
+
- [ProjectRevisions](docs/ProjectRevisions.md)
|
398
|
+
- [ProjectServiceIdentity](docs/ProjectServiceIdentity.md)
|
399
|
+
- [ProjectServiceOAuth2](docs/ProjectServiceOAuth2.md)
|
400
|
+
- [ProjectServicePermission](docs/ProjectServicePermission.md)
|
401
|
+
- [ProjectServices](docs/ProjectServices.md)
|
402
|
+
- [Projects](docs/Projects.md)
|
403
|
+
- [QuotaUsage](docs/QuotaUsage.md)
|
404
|
+
- [RFC6749ErrorJson](docs/RFC6749ErrorJson.md)
|
405
|
+
- [RecoveryCodeForIdentity](docs/RecoveryCodeForIdentity.md)
|
406
|
+
- [RecoveryFlow](docs/RecoveryFlow.md)
|
407
|
+
- [RecoveryFlowState](docs/RecoveryFlowState.md)
|
408
|
+
- [RecoveryIdentityAddress](docs/RecoveryIdentityAddress.md)
|
409
|
+
- [RecoveryLinkForIdentity](docs/RecoveryLinkForIdentity.md)
|
410
|
+
- [RegistrationFlow](docs/RegistrationFlow.md)
|
411
|
+
- [RegistrationFlowState](docs/RegistrationFlowState.md)
|
412
|
+
- [RejectOAuth2Request](docs/RejectOAuth2Request.md)
|
413
|
+
- [RelationQuery](docs/RelationQuery.md)
|
414
|
+
- [Relationship](docs/Relationship.md)
|
415
|
+
- [RelationshipNamespaces](docs/RelationshipNamespaces.md)
|
416
|
+
- [RelationshipPatch](docs/RelationshipPatch.md)
|
417
|
+
- [Relationships](docs/Relationships.md)
|
418
|
+
- [SchemaPatch](docs/SchemaPatch.md)
|
419
|
+
- [SelfServiceFlowExpiredError](docs/SelfServiceFlowExpiredError.md)
|
420
|
+
- [Session](docs/Session.md)
|
421
|
+
- [SessionActivityDatapoint](docs/SessionActivityDatapoint.md)
|
422
|
+
- [SessionAuthenticationMethod](docs/SessionAuthenticationMethod.md)
|
423
|
+
- [SessionAuthenticationMethods](docs/SessionAuthenticationMethods.md)
|
424
|
+
- [SessionDevice](docs/SessionDevice.md)
|
425
|
+
- [SetActiveProjectInConsoleBody](docs/SetActiveProjectInConsoleBody.md)
|
426
|
+
- [SetCustomDomainBody](docs/SetCustomDomainBody.md)
|
427
|
+
- [SetProject](docs/SetProject.md)
|
428
|
+
- [SetProjectBrandingThemeBody](docs/SetProjectBrandingThemeBody.md)
|
429
|
+
- [SettingsFlow](docs/SettingsFlow.md)
|
430
|
+
- [SettingsFlowState](docs/SettingsFlowState.md)
|
431
|
+
- [SourcePosition](docs/SourcePosition.md)
|
432
|
+
- [StringSliceJSONFormat](docs/StringSliceJSONFormat.md)
|
433
|
+
- [StripeCustomer](docs/StripeCustomer.md)
|
434
|
+
- [SubjectSet](docs/SubjectSet.md)
|
435
|
+
- [Subscription](docs/Subscription.md)
|
436
|
+
- [SuccessfulCodeExchangeResponse](docs/SuccessfulCodeExchangeResponse.md)
|
437
|
+
- [SuccessfulNativeLogin](docs/SuccessfulNativeLogin.md)
|
438
|
+
- [SuccessfulNativeRegistration](docs/SuccessfulNativeRegistration.md)
|
439
|
+
- [SuccessfulProjectUpdate](docs/SuccessfulProjectUpdate.md)
|
440
|
+
- [TokenPagination](docs/TokenPagination.md)
|
441
|
+
- [TokenPaginationHeaders](docs/TokenPaginationHeaders.md)
|
442
|
+
- [TokenPaginationRequestParameters](docs/TokenPaginationRequestParameters.md)
|
443
|
+
- [TokenPaginationResponseHeaders](docs/TokenPaginationResponseHeaders.md)
|
444
|
+
- [TrustOAuth2JwtGrantIssuer](docs/TrustOAuth2JwtGrantIssuer.md)
|
445
|
+
- [TrustedOAuth2JwtGrantIssuer](docs/TrustedOAuth2JwtGrantIssuer.md)
|
446
|
+
- [TrustedOAuth2JwtGrantIssuers](docs/TrustedOAuth2JwtGrantIssuers.md)
|
447
|
+
- [TrustedOAuth2JwtGrantJsonWebKey](docs/TrustedOAuth2JwtGrantJsonWebKey.md)
|
448
|
+
- [UiContainer](docs/UiContainer.md)
|
449
|
+
- [UiNode](docs/UiNode.md)
|
450
|
+
- [UiNodeAnchorAttributes](docs/UiNodeAnchorAttributes.md)
|
451
|
+
- [UiNodeAttributes](docs/UiNodeAttributes.md)
|
452
|
+
- [UiNodeImageAttributes](docs/UiNodeImageAttributes.md)
|
453
|
+
- [UiNodeInputAttributes](docs/UiNodeInputAttributes.md)
|
454
|
+
- [UiNodeMeta](docs/UiNodeMeta.md)
|
455
|
+
- [UiNodeScriptAttributes](docs/UiNodeScriptAttributes.md)
|
456
|
+
- [UiNodeTextAttributes](docs/UiNodeTextAttributes.md)
|
457
|
+
- [UiNodes](docs/UiNodes.md)
|
458
|
+
- [UiText](docs/UiText.md)
|
459
|
+
- [UiTexts](docs/UiTexts.md)
|
460
|
+
- [UpdateIdentityBody](docs/UpdateIdentityBody.md)
|
461
|
+
- [UpdateLoginFlowBody](docs/UpdateLoginFlowBody.md)
|
462
|
+
- [UpdateLoginFlowWithCodeMethod](docs/UpdateLoginFlowWithCodeMethod.md)
|
463
|
+
- [UpdateLoginFlowWithLookupSecretMethod](docs/UpdateLoginFlowWithLookupSecretMethod.md)
|
464
|
+
- [UpdateLoginFlowWithOidcMethod](docs/UpdateLoginFlowWithOidcMethod.md)
|
465
|
+
- [UpdateLoginFlowWithPasswordMethod](docs/UpdateLoginFlowWithPasswordMethod.md)
|
466
|
+
- [UpdateLoginFlowWithTotpMethod](docs/UpdateLoginFlowWithTotpMethod.md)
|
467
|
+
- [UpdateLoginFlowWithWebAuthnMethod](docs/UpdateLoginFlowWithWebAuthnMethod.md)
|
468
|
+
- [UpdateRecoveryFlowBody](docs/UpdateRecoveryFlowBody.md)
|
469
|
+
- [UpdateRecoveryFlowWithCodeMethod](docs/UpdateRecoveryFlowWithCodeMethod.md)
|
470
|
+
- [UpdateRecoveryFlowWithLinkMethod](docs/UpdateRecoveryFlowWithLinkMethod.md)
|
471
|
+
- [UpdateRegistrationFlowBody](docs/UpdateRegistrationFlowBody.md)
|
472
|
+
- [UpdateRegistrationFlowWithCodeMethod](docs/UpdateRegistrationFlowWithCodeMethod.md)
|
473
|
+
- [UpdateRegistrationFlowWithOidcMethod](docs/UpdateRegistrationFlowWithOidcMethod.md)
|
474
|
+
- [UpdateRegistrationFlowWithPasswordMethod](docs/UpdateRegistrationFlowWithPasswordMethod.md)
|
475
|
+
- [UpdateRegistrationFlowWithWebAuthnMethod](docs/UpdateRegistrationFlowWithWebAuthnMethod.md)
|
476
|
+
- [UpdateSettingsFlowBody](docs/UpdateSettingsFlowBody.md)
|
477
|
+
- [UpdateSettingsFlowWithLookupMethod](docs/UpdateSettingsFlowWithLookupMethod.md)
|
478
|
+
- [UpdateSettingsFlowWithOidcMethod](docs/UpdateSettingsFlowWithOidcMethod.md)
|
479
|
+
- [UpdateSettingsFlowWithPasswordMethod](docs/UpdateSettingsFlowWithPasswordMethod.md)
|
480
|
+
- [UpdateSettingsFlowWithProfileMethod](docs/UpdateSettingsFlowWithProfileMethod.md)
|
481
|
+
- [UpdateSettingsFlowWithTotpMethod](docs/UpdateSettingsFlowWithTotpMethod.md)
|
482
|
+
- [UpdateSettingsFlowWithWebAuthnMethod](docs/UpdateSettingsFlowWithWebAuthnMethod.md)
|
483
|
+
- [UpdateSubscriptionBody](docs/UpdateSubscriptionBody.md)
|
484
|
+
- [UpdateVerificationFlowBody](docs/UpdateVerificationFlowBody.md)
|
485
|
+
- [UpdateVerificationFlowWithCodeMethod](docs/UpdateVerificationFlowWithCodeMethod.md)
|
486
|
+
- [UpdateVerificationFlowWithLinkMethod](docs/UpdateVerificationFlowWithLinkMethod.md)
|
487
|
+
- [Usage](docs/Usage.md)
|
488
|
+
- [VerifiableCredentialPrimingResponse](docs/VerifiableCredentialPrimingResponse.md)
|
489
|
+
- [VerifiableCredentialProof](docs/VerifiableCredentialProof.md)
|
490
|
+
- [VerifiableCredentialResponse](docs/VerifiableCredentialResponse.md)
|
491
|
+
- [VerifiableIdentityAddress](docs/VerifiableIdentityAddress.md)
|
492
|
+
- [VerificationFlow](docs/VerificationFlow.md)
|
493
|
+
- [VerificationFlowState](docs/VerificationFlowState.md)
|
494
|
+
- [Version](docs/Version.md)
|
495
|
+
- [Warning](docs/Warning.md)
|
496
|
+
- [Workspace](docs/Workspace.md)
|
497
|
+
- [Workspaces](docs/Workspaces.md)
|
498
|
+
|
499
|
+
|
500
|
+
## Documentation For Authorization
|
501
|
+
|
502
|
+
|
503
|
+
## basic
|
504
|
+
|
505
|
+
- **Type**: HTTP basic authentication
|
506
|
+
|
507
|
+
|
508
|
+
## bearer
|
509
|
+
|
510
|
+
- **Type**: Bearer authentication
|
511
|
+
|
512
|
+
|
513
|
+
## oauth2
|
514
|
+
|
515
|
+
- **Type**: OAuth
|
516
|
+
- **Flow**: accessCode
|
517
|
+
- **Authorization URL**: https://hydra.demo.ory.sh/oauth2/auth
|
518
|
+
- **Scopes**:
|
519
|
+
- **offline**: A scope required when requesting refresh tokens (alias for `offline_access`)
|
520
|
+
- **offline_access**: A scope required when requesting refresh tokens
|
521
|
+
- **openid**: Request an OpenID Connect ID Token
|
522
|
+
|
523
|
+
|
524
|
+
## oryAccessToken
|
525
|
+
|
526
|
+
- **Type**: Bearer authentication
|
527
|
+
|
528
|
+
|
529
|
+
## Author
|
530
|
+
|
531
|
+
support@ory.sh
|
532
|
+
|
533
|
+
|
534
|
+
## Notes for Large OpenAPI documents
|
535
|
+
If the OpenAPI document is large, imports in ory_client.apis and ory_client.models may fail with a
|
536
|
+
RecursionError indicating the maximum recursion limit has been exceeded. In that case, there are a couple of solutions:
|
537
|
+
|
538
|
+
Solution 1:
|
539
|
+
Use specific imports for apis and models like:
|
540
|
+
- `from ory_client.api.default_api import DefaultApi`
|
541
|
+
- `from ory_client.model.pet import Pet`
|
542
|
+
|
543
|
+
Solution 2:
|
544
|
+
Before importing the package, adjust the maximum recursion limit as shown below:
|
545
|
+
```
|
546
|
+
import sys
|
547
|
+
sys.setrecursionlimit(1500)
|
548
|
+
import ory_client
|
549
|
+
from ory_client.apis import *
|
550
|
+
from ory_client.models import *
|
551
|
+
```
|
552
|
+
|
@@ -0,0 +1,28 @@
|
|
1
|
+
# flake8: noqa
|
2
|
+
|
3
|
+
"""
|
4
|
+
Ory APIs
|
5
|
+
|
6
|
+
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. # noqa: E501
|
7
|
+
|
8
|
+
The version of the OpenAPI document: v1.4.8
|
9
|
+
Contact: support@ory.sh
|
10
|
+
Generated by: https://openapi-generator.tech
|
11
|
+
"""
|
12
|
+
|
13
|
+
|
14
|
+
__version__ = "v1.4.8"
|
15
|
+
|
16
|
+
# import ApiClient
|
17
|
+
from ory_client.api_client import ApiClient
|
18
|
+
|
19
|
+
# import Configuration
|
20
|
+
from ory_client.configuration import Configuration
|
21
|
+
|
22
|
+
# import exceptions
|
23
|
+
from ory_client.exceptions import OpenApiException
|
24
|
+
from ory_client.exceptions import ApiAttributeError
|
25
|
+
from ory_client.exceptions import ApiTypeError
|
26
|
+
from ory_client.exceptions import ApiValueError
|
27
|
+
from ory_client.exceptions import ApiKeyError
|
28
|
+
from ory_client.exceptions import ApiException
|