ory-client 1.5.2__py3-none-any.whl → 1.6.2__py3-none-any.whl
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/__init__.py +2 -2
- ory_client/api/courier_api.py +1 -1
- ory_client/api/events_api.py +1 -1
- ory_client/api/frontend_api.py +7 -1
- ory_client/api/identity_api.py +25 -12
- ory_client/api/jwk_api.py +1 -1
- ory_client/api/metadata_api.py +1 -1
- ory_client/api/o_auth2_api.py +1 -1
- ory_client/api/oidc_api.py +1 -1
- ory_client/api/permission_api.py +2 -2
- ory_client/api/project_api.py +1 -1
- ory_client/api/relationship_api.py +1 -1
- ory_client/api/wellknown_api.py +1 -1
- ory_client/api_client.py +2 -2
- ory_client/configuration.py +3 -3
- ory_client/exceptions.py +1 -1
- ory_client/model/accept_o_auth2_consent_request.py +5 -1
- ory_client/model/accept_o_auth2_consent_request_session.py +1 -1
- ory_client/model/accept_o_auth2_login_request.py +1 -1
- ory_client/model/active_project_in_console.py +1 -1
- ory_client/model/attribute.py +1 -1
- ory_client/model/attribute_filter.py +1 -1
- ory_client/model/attributes_count_datapoint.py +1 -1
- ory_client/model/authenticator_assurance_level.py +1 -1
- ory_client/model/batch_patch_identities_response.py +1 -1
- ory_client/model/check_opl_syntax_result.py +1 -1
- ory_client/model/check_permission_result.py +1 -1
- ory_client/model/cloud_account.py +1 -1
- ory_client/model/consistency_request_parameters.py +1 -1
- ory_client/model/continue_with.py +1 -1
- ory_client/model/continue_with_recovery_ui.py +1 -1
- ory_client/model/continue_with_recovery_ui_flow.py +1 -1
- ory_client/model/continue_with_set_ory_session_token.py +1 -1
- ory_client/model/continue_with_settings_ui.py +1 -1
- ory_client/model/continue_with_settings_ui_flow.py +1 -1
- ory_client/model/continue_with_verification_ui.py +1 -1
- ory_client/model/continue_with_verification_ui_flow.py +1 -1
- ory_client/model/courier_message_status.py +1 -1
- ory_client/model/courier_message_type.py +1 -1
- ory_client/model/create_custom_domain_body.py +1 -1
- ory_client/model/create_event_stream_body.py +1 -1
- ory_client/model/create_identity_body.py +8 -6
- ory_client/model/create_invite_response.py +1 -1
- ory_client/model/create_json_web_key_set.py +1 -1
- ory_client/model/create_member_invite_response.py +1 -1
- ory_client/model/create_project_api_key_request.py +1 -1
- ory_client/model/create_project_body.py +13 -3
- ory_client/model/create_project_branding.py +1 -1
- ory_client/model/create_project_member_invite_body.py +1 -1
- ory_client/model/create_project_normalized_payload.py +25 -3
- ory_client/model/create_recovery_code_for_identity_body.py +1 -1
- ory_client/model/create_recovery_link_for_identity_body.py +1 -1
- ory_client/model/create_relationship_body.py +1 -1
- ory_client/model/create_subscription_body.py +9 -11
- ory_client/model/{identity_credentials_type.py → create_subscription_common.py} +85 -88
- ory_client/model/create_verifiable_credential_request_body.py +1 -1
- ory_client/model/create_workspace_member_invite_body.py +1 -1
- ory_client/model/{stripe_customer.py → create_workspace_payload.py} +16 -10
- ory_client/model/create_workspace_subscription_body.py +292 -0
- ory_client/model/credential_supported_draft00.py +1 -1
- ory_client/model/custom_domain.py +1 -1
- ory_client/model/delete_my_sessions_count.py +1 -1
- ory_client/model/email_template_data.py +1 -1
- ory_client/model/email_template_data_body.py +1 -1
- ory_client/model/error_authenticator_assurance_level_not_satisfied.py +1 -1
- ory_client/model/error_browser_location_change_required.py +1 -1
- ory_client/model/error_flow_replaced.py +1 -1
- ory_client/model/error_generic.py +1 -1
- ory_client/model/error_o_auth2.py +1 -1
- ory_client/model/event_stream.py +1 -1
- ory_client/model/expanded_permission_tree.py +1 -1
- ory_client/model/flow_error.py +1 -1
- ory_client/model/generic_error.py +1 -1
- ory_client/model/generic_error_content.py +1 -1
- ory_client/model/generic_usage.py +1 -1
- ory_client/model/get_attributes_count_response.py +1 -1
- ory_client/model/get_managed_identity_schema_location.py +1 -1
- ory_client/model/get_metrics_event_attributes_response.py +1 -1
- ory_client/model/get_metrics_event_types_response.py +1 -1
- ory_client/model/get_organization_response.py +1 -1
- ory_client/model/get_project_events_body.py +1 -1
- ory_client/model/get_project_events_response.py +1 -1
- ory_client/model/get_project_metrics_response.py +1 -1
- ory_client/model/get_session_activity_response.py +1 -1
- ory_client/model/get_version200_response.py +1 -1
- ory_client/model/health_not_ready_status.py +1 -1
- ory_client/model/health_status.py +1 -1
- ory_client/model/identity.py +8 -6
- ory_client/model/identity_credentials.py +14 -10
- ory_client/model/identity_credentials_code.py +3 -3
- ory_client/model/identity_credentials_oidc.py +1 -1
- ory_client/model/identity_credentials_oidc_provider.py +1 -1
- ory_client/model/identity_credentials_password.py +1 -1
- ory_client/model/identity_patch.py +1 -1
- ory_client/model/identity_patch_response.py +1 -1
- ory_client/model/identity_schema_container.py +1 -1
- ory_client/model/identity_schema_preset.py +1 -1
- ory_client/model/identity_schema_presets.py +1 -1
- ory_client/model/identity_schemas.py +1 -1
- ory_client/model/identity_with_credentials.py +1 -1
- ory_client/model/identity_with_credentials_oidc.py +1 -1
- ory_client/model/identity_with_credentials_oidc_config.py +1 -1
- ory_client/model/identity_with_credentials_oidc_config_provider.py +1 -1
- ory_client/model/identity_with_credentials_password.py +1 -1
- ory_client/model/identity_with_credentials_password_config.py +1 -1
- ory_client/model/internal_get_project_branding_body.py +1 -1
- ory_client/model/internal_is_ax_welcome_screen_enabled_for_project_body.py +1 -1
- ory_client/model/internal_is_owner_for_project_by_slug_body.py +1 -1
- ory_client/model/internal_is_owner_for_project_by_slug_response.py +1 -1
- ory_client/model/internal_provision_mock_subscription.py +1 -1
- ory_client/model/introspected_o_auth2_token.py +1 -1
- ory_client/model/is_owner_for_project_by_slug.py +1 -1
- ory_client/model/is_ready200_response.py +1 -1
- ory_client/model/is_ready503_response.py +1 -1
- ory_client/model/json_patch.py +1 -1
- ory_client/model/json_patch_document.py +1 -1
- ory_client/model/json_web_key.py +1 -1
- ory_client/model/json_web_key_set.py +1 -1
- ory_client/model/keto_namespace.py +1 -1
- ory_client/model/keto_namespaces.py +1 -1
- ory_client/model/list_custom_domains.py +1 -1
- ory_client/model/list_event_streams.py +1 -1
- ory_client/model/list_my_workspaces_response.py +6 -6
- ory_client/model/list_organizations_response.py +1 -1
- ory_client/model/{identity_state.py → list_workspace_projects_response.py} +82 -85
- ory_client/model/login_flow.py +14 -6
- ory_client/model/login_flow_state.py +1 -1
- ory_client/model/logout_flow.py +1 -1
- ory_client/model/managed_identity_schema.py +1 -1
- ory_client/model/managed_identity_schema_validation_result.py +1 -1
- ory_client/model/managed_identity_schemas.py +1 -1
- ory_client/model/member_invite.py +1 -1
- ory_client/model/member_invites.py +1 -1
- ory_client/model/message.py +1 -1
- ory_client/model/message_dispatch.py +1 -1
- ory_client/model/metrics_datapoint.py +1 -1
- ory_client/model/migration_options.py +284 -0
- ory_client/model/namespace.py +1 -1
- ory_client/model/needs_privileged_session_error.py +1 -1
- ory_client/model/normalized_project.py +1 -1
- ory_client/model/normalized_project_revision.py +13 -1
- ory_client/model/normalized_project_revision_courier_channel.py +1 -1
- ory_client/model/normalized_project_revision_hook.py +1 -1
- ory_client/model/normalized_project_revision_identity_schema.py +1 -1
- ory_client/model/normalized_project_revision_identity_schemas.py +1 -1
- ory_client/model/normalized_project_revision_third_party_provider.py +5 -1
- ory_client/model/normalized_project_revision_tokenizer_template.py +1 -1
- ory_client/model/normalized_project_revision_tokenizer_templates.py +1 -1
- ory_client/model/normalized_projects.py +1 -1
- ory_client/model/null_duration.py +1 -1
- ory_client/model/o_auth2_client.py +5 -1
- ory_client/model/o_auth2_client_token_lifespans.py +1 -1
- ory_client/model/o_auth2_consent_request.py +1 -1
- ory_client/model/o_auth2_consent_request_open_id_connect_context.py +1 -1
- ory_client/model/o_auth2_consent_session.py +5 -1
- ory_client/model/o_auth2_consent_session_expires_at.py +1 -1
- ory_client/model/o_auth2_consent_sessions.py +1 -1
- ory_client/model/o_auth2_login_request.py +1 -1
- ory_client/model/o_auth2_logout_request.py +1 -1
- ory_client/model/o_auth2_redirect_to.py +1 -1
- ory_client/model/o_auth2_token_exchange.py +1 -1
- ory_client/model/oidc_configuration.py +1 -1
- ory_client/model/oidc_user_info.py +1 -1
- ory_client/model/organization.py +1 -1
- ory_client/model/organization_body.py +1 -1
- ory_client/model/pagination.py +1 -1
- ory_client/model/pagination_headers.py +1 -1
- ory_client/model/parse_error.py +1 -1
- ory_client/model/patch_identities_body.py +1 -1
- ory_client/model/perform_native_logout_body.py +1 -1
- ory_client/model/permissions_on_project.py +1 -1
- ory_client/model/plan.py +1 -1
- ory_client/model/plan_details.py +1 -1
- ory_client/model/plans.py +1 -1
- ory_client/model/post_check_permission_body.py +1 -1
- ory_client/model/post_check_permission_or_error_body.py +1 -1
- ory_client/model/pricing.py +1 -1
- ory_client/model/project.py +1 -1
- ory_client/model/project_api_key.py +1 -1
- ory_client/model/project_api_keys.py +1 -1
- ory_client/model/project_branding.py +1 -1
- ory_client/model/project_branding_colors.py +1 -1
- ory_client/model/project_branding_theme.py +1 -1
- ory_client/model/project_branding_themes.py +1 -1
- ory_client/model/project_cors.py +1 -1
- ory_client/model/project_events_datapoint.py +1 -1
- ory_client/model/project_host.py +1 -1
- ory_client/model/project_member.py +1 -1
- ory_client/model/project_members.py +1 -1
- ory_client/model/project_metadata.py +13 -3
- ory_client/model/project_metadata_list.py +1 -1
- ory_client/model/project_revision_hooks.py +1 -1
- ory_client/model/project_revision_identity_schemas.py +1 -1
- ory_client/model/project_revision_third_party_login_providers.py +1 -1
- ory_client/model/project_revisions.py +1 -1
- ory_client/model/project_service_identity.py +1 -1
- ory_client/model/project_service_o_auth2.py +1 -1
- ory_client/model/project_service_permission.py +1 -1
- ory_client/model/project_services.py +1 -1
- ory_client/model/projects.py +1 -1
- ory_client/model/quota_usage.py +5 -3
- ory_client/model/recovery_code_for_identity.py +1 -1
- ory_client/model/recovery_flow.py +1 -1
- ory_client/model/recovery_flow_state.py +1 -1
- ory_client/model/recovery_identity_address.py +1 -1
- ory_client/model/recovery_link_for_identity.py +1 -1
- ory_client/model/registration_flow.py +14 -6
- ory_client/model/registration_flow_state.py +1 -1
- ory_client/model/reject_o_auth2_request.py +1 -1
- ory_client/model/relation_query.py +1 -1
- ory_client/model/relationship.py +1 -1
- ory_client/model/relationship_namespaces.py +1 -1
- ory_client/model/relationship_patch.py +1 -1
- ory_client/model/relationships.py +1 -1
- ory_client/model/revision_courier_channels.py +1 -1
- ory_client/model/rfc6749_error_json.py +1 -1
- ory_client/model/schema_patch.py +1 -1
- ory_client/model/self_service_flow_expired_error.py +1 -1
- ory_client/model/session.py +1 -1
- ory_client/model/session_activity_datapoint.py +1 -1
- ory_client/model/session_authentication_method.py +1 -1
- ory_client/model/session_authentication_methods.py +1 -1
- ory_client/model/session_device.py +1 -1
- ory_client/model/set_active_project_in_console_body.py +1 -1
- ory_client/model/set_custom_domain_body.py +1 -1
- ory_client/model/set_event_stream_body.py +1 -1
- ory_client/model/set_project.py +1 -1
- ory_client/model/set_project_branding_theme_body.py +1 -1
- ory_client/model/settings_flow.py +1 -1
- ory_client/model/settings_flow_state.py +1 -1
- ory_client/model/source_position.py +1 -1
- ory_client/model/string_slice_json_format.py +1 -1
- ory_client/model/subject_set.py +1 -1
- ory_client/model/subscription.py +1 -1
- ory_client/model/successful_code_exchange_response.py +1 -1
- ory_client/model/successful_native_login.py +1 -1
- ory_client/model/successful_native_registration.py +1 -1
- ory_client/model/successful_project_update.py +1 -1
- ory_client/model/token_pagination.py +1 -1
- ory_client/model/token_pagination_headers.py +1 -1
- ory_client/model/token_pagination_request_parameters.py +1 -1
- ory_client/model/token_pagination_response_headers.py +1 -1
- ory_client/model/trust_o_auth2_jwt_grant_issuer.py +1 -1
- ory_client/model/trusted_o_auth2_jwt_grant_issuer.py +1 -1
- ory_client/model/trusted_o_auth2_jwt_grant_issuers.py +1 -1
- ory_client/model/trusted_o_auth2_jwt_grant_json_web_key.py +1 -1
- ory_client/model/ui_container.py +1 -1
- ory_client/model/ui_node.py +1 -1
- ory_client/model/ui_node_anchor_attributes.py +1 -1
- ory_client/model/ui_node_attributes.py +1 -1
- ory_client/model/ui_node_image_attributes.py +1 -1
- ory_client/model/ui_node_input_attributes.py +1 -1
- ory_client/model/ui_node_meta.py +1 -1
- ory_client/model/ui_node_script_attributes.py +1 -1
- ory_client/model/ui_node_text_attributes.py +1 -1
- ory_client/model/ui_nodes.py +1 -1
- ory_client/model/ui_text.py +1 -1
- ory_client/model/ui_texts.py +1 -1
- ory_client/model/update_identity_body.py +8 -6
- ory_client/model/update_login_flow_body.py +1 -1
- ory_client/model/update_login_flow_with_code_method.py +1 -1
- ory_client/model/update_login_flow_with_lookup_secret_method.py +1 -1
- ory_client/model/update_login_flow_with_oidc_method.py +1 -1
- ory_client/model/update_login_flow_with_password_method.py +1 -1
- ory_client/model/update_login_flow_with_totp_method.py +1 -1
- ory_client/model/update_login_flow_with_web_authn_method.py +1 -1
- ory_client/model/update_recovery_flow_body.py +1 -1
- ory_client/model/update_recovery_flow_with_code_method.py +1 -1
- ory_client/model/update_recovery_flow_with_link_method.py +1 -1
- ory_client/model/update_registration_flow_body.py +1 -1
- ory_client/model/update_registration_flow_with_code_method.py +1 -1
- ory_client/model/update_registration_flow_with_oidc_method.py +1 -1
- ory_client/model/update_registration_flow_with_password_method.py +1 -1
- ory_client/model/update_registration_flow_with_web_authn_method.py +1 -1
- ory_client/model/update_settings_flow_body.py +1 -1
- ory_client/model/update_settings_flow_with_lookup_method.py +1 -1
- ory_client/model/update_settings_flow_with_oidc_method.py +1 -1
- ory_client/model/update_settings_flow_with_password_method.py +1 -1
- ory_client/model/update_settings_flow_with_profile_method.py +1 -1
- ory_client/model/update_settings_flow_with_totp_method.py +1 -1
- ory_client/model/update_settings_flow_with_web_authn_method.py +1 -1
- ory_client/model/update_subscription_body.py +1 -1
- ory_client/model/update_verification_flow_body.py +1 -1
- ory_client/model/update_verification_flow_with_code_method.py +1 -1
- ory_client/model/update_verification_flow_with_link_method.py +1 -1
- ory_client/model/usage.py +1 -1
- ory_client/model/verifiable_credential_priming_response.py +1 -1
- ory_client/model/verifiable_credential_proof.py +1 -1
- ory_client/model/verifiable_credential_response.py +1 -1
- ory_client/model/verifiable_identity_address.py +1 -1
- ory_client/model/verification_flow.py +1 -1
- ory_client/model/verification_flow_state.py +1 -1
- ory_client/model/version.py +1 -1
- ory_client/model/warning.py +1 -1
- ory_client/model/workspace.py +1 -1
- ory_client/model/workspace_meta.py +296 -0
- ory_client/model/workspaces.py +1 -1
- ory_client/model_utils.py +1 -1
- ory_client/models/__init__.py +6 -3
- ory_client/rest.py +1 -1
- {ory_client-1.5.2.dist-info → ory_client-1.6.2.dist-info}/METADATA +1 -1
- ory_client-1.6.2.dist-info/RECORD +308 -0
- ory_client-1.5.2.dist-info/RECORD +0 -305
- {ory_client-1.5.2.dist-info → ory_client-1.6.2.dist-info}/LICENSE +0 -0
- {ory_client-1.5.2.dist-info → ory_client-1.6.2.dist-info}/WHEEL +0 -0
- {ory_client-1.5.2.dist-info → ory_client-1.6.2.dist-info}/top_level.txt +0 -0
ory_client/__init__.py
CHANGED
@@ -5,13 +5,13 @@
|
|
5
5
|
|
6
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
7
|
|
8
|
-
The version of the OpenAPI document: v1.
|
8
|
+
The version of the OpenAPI document: v1.6.2
|
9
9
|
Contact: support@ory.sh
|
10
10
|
Generated by: https://openapi-generator.tech
|
11
11
|
"""
|
12
12
|
|
13
13
|
|
14
|
-
__version__ = "v1.
|
14
|
+
__version__ = "v1.6.2"
|
15
15
|
|
16
16
|
# import ApiClient
|
17
17
|
from ory_client.api_client import ApiClient
|
ory_client/api/courier_api.py
CHANGED
@@ -3,7 +3,7 @@
|
|
3
3
|
|
4
4
|
Documentation for all public and administrative Ory APIs. Administrative APIs can only be accessed with a valid Personal Access Token. Public APIs are mostly used in browsers. # noqa: E501
|
5
5
|
|
6
|
-
The version of the OpenAPI document: v1.
|
6
|
+
The version of the OpenAPI document: v1.6.2
|
7
7
|
Contact: support@ory.sh
|
8
8
|
Generated by: https://openapi-generator.tech
|
9
9
|
"""
|
ory_client/api/events_api.py
CHANGED
@@ -3,7 +3,7 @@
|
|
3
3
|
|
4
4
|
Documentation for all public and administrative Ory APIs. Administrative APIs can only be accessed with a valid Personal Access Token. Public APIs are mostly used in browsers. # noqa: E501
|
5
5
|
|
6
|
-
The version of the OpenAPI document: v1.
|
6
|
+
The version of the OpenAPI document: v1.6.2
|
7
7
|
Contact: support@ory.sh
|
8
8
|
Generated by: https://openapi-generator.tech
|
9
9
|
"""
|
ory_client/api/frontend_api.py
CHANGED
@@ -3,7 +3,7 @@
|
|
3
3
|
|
4
4
|
Documentation for all public and administrative Ory APIs. Administrative APIs can only be accessed with a valid Personal Access Token. Public APIs are mostly used in browsers. # noqa: E501
|
5
5
|
|
6
|
-
The version of the OpenAPI document: v1.
|
6
|
+
The version of the OpenAPI document: v1.6.2
|
7
7
|
Contact: support@ory.sh
|
8
8
|
Generated by: https://openapi-generator.tech
|
9
9
|
"""
|
@@ -402,6 +402,7 @@ class FrontendApi(object):
|
|
402
402
|
'x_session_token',
|
403
403
|
'return_session_token_exchange_code',
|
404
404
|
'return_to',
|
405
|
+
'via',
|
405
406
|
],
|
406
407
|
'required': [],
|
407
408
|
'nullable': [
|
@@ -427,6 +428,8 @@ class FrontendApi(object):
|
|
427
428
|
(bool,),
|
428
429
|
'return_to':
|
429
430
|
(str,),
|
431
|
+
'via':
|
432
|
+
(str,),
|
430
433
|
},
|
431
434
|
'attribute_map': {
|
432
435
|
'refresh': 'refresh',
|
@@ -434,6 +437,7 @@ class FrontendApi(object):
|
|
434
437
|
'x_session_token': 'X-Session-Token',
|
435
438
|
'return_session_token_exchange_code': 'return_session_token_exchange_code',
|
436
439
|
'return_to': 'return_to',
|
440
|
+
'via': 'via',
|
437
441
|
},
|
438
442
|
'location_map': {
|
439
443
|
'refresh': 'query',
|
@@ -441,6 +445,7 @@ class FrontendApi(object):
|
|
441
445
|
'x_session_token': 'header',
|
442
446
|
'return_session_token_exchange_code': 'query',
|
443
447
|
'return_to': 'query',
|
448
|
+
'via': 'query',
|
444
449
|
},
|
445
450
|
'collection_format_map': {
|
446
451
|
}
|
@@ -2255,6 +2260,7 @@ class FrontendApi(object):
|
|
2255
2260
|
x_session_token (str): The Session Token of the Identity performing the settings flow.. [optional]
|
2256
2261
|
return_session_token_exchange_code (bool): EnableSessionTokenExchangeCode requests the login flow to include a code that can be used to retrieve the session token after the login flow has been completed.. [optional]
|
2257
2262
|
return_to (str): The URL to return the browser to after the flow was completed.. [optional]
|
2263
|
+
via (str): Via should contain the identity's credential the code should be sent to. Only relevant in aal2 flows.. [optional]
|
2258
2264
|
_return_http_data_only (bool): response data without head status
|
2259
2265
|
code and headers. Default is True.
|
2260
2266
|
_preload_content (bool): if False, the urllib3.HTTPResponse object
|
ory_client/api/identity_api.py
CHANGED
@@ -3,7 +3,7 @@
|
|
3
3
|
|
4
4
|
Documentation for all public and administrative Ory APIs. Administrative APIs can only be accessed with a valid Personal Access Token. Public APIs are mostly used in browsers. # noqa: E501
|
5
5
|
|
6
|
-
The version of the OpenAPI document: v1.
|
6
|
+
The version of the OpenAPI document: v1.6.2
|
7
7
|
Contact: support@ory.sh
|
8
8
|
Generated by: https://openapi-generator.tech
|
9
9
|
"""
|
@@ -211,6 +211,7 @@ class IdentityApi(object):
|
|
211
211
|
},
|
212
212
|
params_map={
|
213
213
|
'all': [
|
214
|
+
'return_to',
|
214
215
|
'create_recovery_link_for_identity_body',
|
215
216
|
],
|
216
217
|
'required': [],
|
@@ -227,12 +228,16 @@ class IdentityApi(object):
|
|
227
228
|
'allowed_values': {
|
228
229
|
},
|
229
230
|
'openapi_types': {
|
231
|
+
'return_to':
|
232
|
+
(str,),
|
230
233
|
'create_recovery_link_for_identity_body':
|
231
234
|
(CreateRecoveryLinkForIdentityBody,),
|
232
235
|
},
|
233
236
|
'attribute_map': {
|
237
|
+
'return_to': 'return_to',
|
234
238
|
},
|
235
239
|
'location_map': {
|
240
|
+
'return_to': 'query',
|
236
241
|
'create_recovery_link_for_identity_body': 'body',
|
237
242
|
},
|
238
243
|
'collection_format_map': {
|
@@ -333,9 +338,14 @@ class IdentityApi(object):
|
|
333
338
|
'allowed_values': {
|
334
339
|
('type',): {
|
335
340
|
|
341
|
+
"PASSWORD": "password",
|
342
|
+
"OIDC": "oidc",
|
336
343
|
"TOTP": "totp",
|
344
|
+
"LOOKUP_SECRET": "lookup_secret",
|
337
345
|
"WEBAUTHN": "webauthn",
|
338
|
-
"
|
346
|
+
"CODE": "code",
|
347
|
+
"LINK_RECOVERY": "link_recovery",
|
348
|
+
"CODE_RECOVERY": "code_recovery"
|
339
349
|
},
|
340
350
|
},
|
341
351
|
'openapi_types': {
|
@@ -550,11 +560,13 @@ class IdentityApi(object):
|
|
550
560
|
('include_credential',): {
|
551
561
|
|
552
562
|
"PASSWORD": "password",
|
553
|
-
"TOTP": "totp",
|
554
563
|
"OIDC": "oidc",
|
555
|
-
"
|
564
|
+
"TOTP": "totp",
|
556
565
|
"LOOKUP_SECRET": "lookup_secret",
|
557
|
-
"
|
566
|
+
"WEBAUTHN": "webauthn",
|
567
|
+
"CODE": "code",
|
568
|
+
"LINK_RECOVERY": "link_recovery",
|
569
|
+
"CODE_RECOVERY": "code_recovery"
|
558
570
|
},
|
559
571
|
},
|
560
572
|
'openapi_types': {
|
@@ -711,7 +723,7 @@ class IdentityApi(object):
|
|
711
723
|
'page_size',
|
712
724
|
'page_token',
|
713
725
|
'consistency',
|
714
|
-
'
|
726
|
+
'ids',
|
715
727
|
'credentials_identifier',
|
716
728
|
'preview_credentials_identifier_similar',
|
717
729
|
],
|
@@ -762,7 +774,7 @@ class IdentityApi(object):
|
|
762
774
|
(str,),
|
763
775
|
'consistency':
|
764
776
|
(str,),
|
765
|
-
'
|
777
|
+
'ids':
|
766
778
|
([str],),
|
767
779
|
'credentials_identifier':
|
768
780
|
(str,),
|
@@ -775,7 +787,7 @@ class IdentityApi(object):
|
|
775
787
|
'page_size': 'page_size',
|
776
788
|
'page_token': 'page_token',
|
777
789
|
'consistency': 'consistency',
|
778
|
-
'
|
790
|
+
'ids': 'ids',
|
779
791
|
'credentials_identifier': 'credentials_identifier',
|
780
792
|
'preview_credentials_identifier_similar': 'preview_credentials_identifier_similar',
|
781
793
|
},
|
@@ -785,12 +797,12 @@ class IdentityApi(object):
|
|
785
797
|
'page_size': 'query',
|
786
798
|
'page_token': 'query',
|
787
799
|
'consistency': 'query',
|
788
|
-
'
|
800
|
+
'ids': 'query',
|
789
801
|
'credentials_identifier': 'query',
|
790
802
|
'preview_credentials_identifier_similar': 'query',
|
791
803
|
},
|
792
804
|
'collection_format_map': {
|
793
|
-
'
|
805
|
+
'ids': 'multi',
|
794
806
|
}
|
795
807
|
},
|
796
808
|
headers_map={
|
@@ -1413,6 +1425,7 @@ class IdentityApi(object):
|
|
1413
1425
|
|
1414
1426
|
|
1415
1427
|
Keyword Args:
|
1428
|
+
return_to (str): [optional]
|
1416
1429
|
create_recovery_link_for_identity_body (CreateRecoveryLinkForIdentityBody): [optional]
|
1417
1430
|
_return_http_data_only (bool): response data without head status
|
1418
1431
|
code and headers. Default is True.
|
@@ -1577,7 +1590,7 @@ class IdentityApi(object):
|
|
1577
1590
|
|
1578
1591
|
Args:
|
1579
1592
|
id (str): ID is the identity's ID.
|
1580
|
-
type (str): Type is the
|
1593
|
+
type (str): Type is the type of credentials to be deleted. password CredentialsTypePassword oidc CredentialsTypeOIDC totp CredentialsTypeTOTP lookup_secret CredentialsTypeLookup webauthn CredentialsTypeWebAuthn code CredentialsTypeCodeAuth link_recovery CredentialsTypeRecoveryLink CredentialsTypeRecoveryLink is a special credential type linked to the link strategy (recovery flow). It is not used within the credentials object itself. code_recovery CredentialsTypeRecoveryCode
|
1581
1594
|
|
1582
1595
|
Keyword Args:
|
1583
1596
|
_return_http_data_only (bool): response data without head status
|
@@ -2167,7 +2180,7 @@ class IdentityApi(object):
|
|
2167
2180
|
page_size (int): Page Size This is the number of items per page to return. For details on pagination please head over to the [pagination documentation](https://www.ory.sh/docs/ecosystem/api-design#pagination).. [optional] if omitted the server will use the default value of 250
|
2168
2181
|
page_token (str): Next Page Token The next page token. For details on pagination please head over to the [pagination documentation](https://www.ory.sh/docs/ecosystem/api-design#pagination).. [optional] if omitted the server will use the default value of "1"
|
2169
2182
|
consistency (str): Read Consistency Level (preview) The read consistency level determines the consistency guarantee for reads: strong (slow): The read is guaranteed to return the most recent data committed at the start of the read. eventual (very fast): The result will return data that is about 4.8 seconds old. The default consistency guarantee can be changed in the Ory Network Console or using the Ory CLI with `ory patch project --replace '/previews/default_read_consistency_level=\"strong\"'`. Setting the default consistency level to `eventual` may cause regressions in the future as we add consistency controls to more APIs. Currently, the following APIs will be affected by this setting: `GET /admin/identities` This feature is in preview and only available in Ory Network. ConsistencyLevelUnset ConsistencyLevelUnset is the unset / default consistency level. strong ConsistencyLevelStrong ConsistencyLevelStrong is the strong consistency level. eventual ConsistencyLevelEventual ConsistencyLevelEventual is the eventual consistency level using follower read timestamps.. [optional]
|
2170
|
-
|
2183
|
+
ids ([str]): List of ids used to filter identities. If this list is empty, then no filter will be applied.. [optional]
|
2171
2184
|
credentials_identifier (str): CredentialsIdentifier is the identifier (username, email) of the credentials to look up using exact match. Only one of CredentialsIdentifier and CredentialsIdentifierSimilar can be used.. [optional]
|
2172
2185
|
preview_credentials_identifier_similar (str): This is an EXPERIMENTAL parameter that WILL CHANGE. Do NOT rely on consistent, deterministic behavior. THIS PARAMETER WILL BE REMOVED IN AN UPCOMING RELEASE WITHOUT ANY MIGRATION PATH. CredentialsIdentifierSimilar is the (partial) identifier (username, email) of the credentials to look up using similarity search. Only one of CredentialsIdentifier and CredentialsIdentifierSimilar can be used.. [optional]
|
2173
2186
|
_return_http_data_only (bool): response data without head status
|
ory_client/api/jwk_api.py
CHANGED
@@ -3,7 +3,7 @@
|
|
3
3
|
|
4
4
|
Documentation for all public and administrative Ory APIs. Administrative APIs can only be accessed with a valid Personal Access Token. Public APIs are mostly used in browsers. # noqa: E501
|
5
5
|
|
6
|
-
The version of the OpenAPI document: v1.
|
6
|
+
The version of the OpenAPI document: v1.6.2
|
7
7
|
Contact: support@ory.sh
|
8
8
|
Generated by: https://openapi-generator.tech
|
9
9
|
"""
|
ory_client/api/metadata_api.py
CHANGED
@@ -3,7 +3,7 @@
|
|
3
3
|
|
4
4
|
Documentation for all public and administrative Ory APIs. Administrative APIs can only be accessed with a valid Personal Access Token. Public APIs are mostly used in browsers. # noqa: E501
|
5
5
|
|
6
|
-
The version of the OpenAPI document: v1.
|
6
|
+
The version of the OpenAPI document: v1.6.2
|
7
7
|
Contact: support@ory.sh
|
8
8
|
Generated by: https://openapi-generator.tech
|
9
9
|
"""
|
ory_client/api/o_auth2_api.py
CHANGED
@@ -3,7 +3,7 @@
|
|
3
3
|
|
4
4
|
Documentation for all public and administrative Ory APIs. Administrative APIs can only be accessed with a valid Personal Access Token. Public APIs are mostly used in browsers. # noqa: E501
|
5
5
|
|
6
|
-
The version of the OpenAPI document: v1.
|
6
|
+
The version of the OpenAPI document: v1.6.2
|
7
7
|
Contact: support@ory.sh
|
8
8
|
Generated by: https://openapi-generator.tech
|
9
9
|
"""
|
ory_client/api/oidc_api.py
CHANGED
@@ -3,7 +3,7 @@
|
|
3
3
|
|
4
4
|
Documentation for all public and administrative Ory APIs. Administrative APIs can only be accessed with a valid Personal Access Token. Public APIs are mostly used in browsers. # noqa: E501
|
5
5
|
|
6
|
-
The version of the OpenAPI document: v1.
|
6
|
+
The version of the OpenAPI document: v1.6.2
|
7
7
|
Contact: support@ory.sh
|
8
8
|
Generated by: https://openapi-generator.tech
|
9
9
|
"""
|
ory_client/api/permission_api.py
CHANGED
@@ -3,7 +3,7 @@
|
|
3
3
|
|
4
4
|
Documentation for all public and administrative Ory APIs. Administrative APIs can only be accessed with a valid Personal Access Token. Public APIs are mostly used in browsers. # noqa: E501
|
5
5
|
|
6
|
-
The version of the OpenAPI document: v1.
|
6
|
+
The version of the OpenAPI document: v1.6.2
|
7
7
|
Contact: support@ory.sh
|
8
8
|
Generated by: https://openapi-generator.tech
|
9
9
|
"""
|
@@ -746,7 +746,7 @@ class PermissionApi(object):
|
|
746
746
|
|
747
747
|
|
748
748
|
Keyword Args:
|
749
|
-
max_depth (int):
|
749
|
+
max_depth (int): [optional]
|
750
750
|
post_check_permission_or_error_body (PostCheckPermissionOrErrorBody): [optional]
|
751
751
|
_return_http_data_only (bool): response data without head status
|
752
752
|
code and headers. Default is True.
|
ory_client/api/project_api.py
CHANGED
@@ -3,7 +3,7 @@
|
|
3
3
|
|
4
4
|
Documentation for all public and administrative Ory APIs. Administrative APIs can only be accessed with a valid Personal Access Token. Public APIs are mostly used in browsers. # noqa: E501
|
5
5
|
|
6
|
-
The version of the OpenAPI document: v1.
|
6
|
+
The version of the OpenAPI document: v1.6.2
|
7
7
|
Contact: support@ory.sh
|
8
8
|
Generated by: https://openapi-generator.tech
|
9
9
|
"""
|
@@ -3,7 +3,7 @@
|
|
3
3
|
|
4
4
|
Documentation for all public and administrative Ory APIs. Administrative APIs can only be accessed with a valid Personal Access Token. Public APIs are mostly used in browsers. # noqa: E501
|
5
5
|
|
6
|
-
The version of the OpenAPI document: v1.
|
6
|
+
The version of the OpenAPI document: v1.6.2
|
7
7
|
Contact: support@ory.sh
|
8
8
|
Generated by: https://openapi-generator.tech
|
9
9
|
"""
|
ory_client/api/wellknown_api.py
CHANGED
@@ -3,7 +3,7 @@
|
|
3
3
|
|
4
4
|
Documentation for all public and administrative Ory APIs. Administrative APIs can only be accessed with a valid Personal Access Token. Public APIs are mostly used in browsers. # noqa: E501
|
5
5
|
|
6
|
-
The version of the OpenAPI document: v1.
|
6
|
+
The version of the OpenAPI document: v1.6.2
|
7
7
|
Contact: support@ory.sh
|
8
8
|
Generated by: https://openapi-generator.tech
|
9
9
|
"""
|
ory_client/api_client.py
CHANGED
@@ -3,7 +3,7 @@
|
|
3
3
|
|
4
4
|
Documentation for all public and administrative Ory APIs. Administrative APIs can only be accessed with a valid Personal Access Token. Public APIs are mostly used in browsers. # noqa: E501
|
5
5
|
|
6
|
-
The version of the OpenAPI document: v1.
|
6
|
+
The version of the OpenAPI document: v1.6.2
|
7
7
|
Contact: support@ory.sh
|
8
8
|
Generated by: https://openapi-generator.tech
|
9
9
|
"""
|
@@ -77,7 +77,7 @@ class ApiClient(object):
|
|
77
77
|
self.default_headers[header_name] = header_value
|
78
78
|
self.cookie = cookie
|
79
79
|
# Set default User-Agent.
|
80
|
-
self.user_agent = 'OpenAPI-Generator/v1.
|
80
|
+
self.user_agent = 'OpenAPI-Generator/v1.6.2/python'
|
81
81
|
|
82
82
|
def __enter__(self):
|
83
83
|
return self
|
ory_client/configuration.py
CHANGED
@@ -3,7 +3,7 @@
|
|
3
3
|
|
4
4
|
Documentation for all public and administrative Ory APIs. Administrative APIs can only be accessed with a valid Personal Access Token. Public APIs are mostly used in browsers. # noqa: E501
|
5
5
|
|
6
|
-
The version of the OpenAPI document: v1.
|
6
|
+
The version of the OpenAPI document: v1.6.2
|
7
7
|
Contact: support@ory.sh
|
8
8
|
Generated by: https://openapi-generator.tech
|
9
9
|
"""
|
@@ -425,8 +425,8 @@ conf = ory_client.Configuration(
|
|
425
425
|
return "Python SDK Debug Report:\n"\
|
426
426
|
"OS: {env}\n"\
|
427
427
|
"Python Version: {pyversion}\n"\
|
428
|
-
"Version of the API: v1.
|
429
|
-
"SDK Package Version: v1.
|
428
|
+
"Version of the API: v1.6.2\n"\
|
429
|
+
"SDK Package Version: v1.6.2".\
|
430
430
|
format(env=sys.platform, pyversion=sys.version)
|
431
431
|
|
432
432
|
def get_host_settings(self):
|
ory_client/exceptions.py
CHANGED
@@ -3,7 +3,7 @@
|
|
3
3
|
|
4
4
|
Documentation for all public and administrative Ory APIs. Administrative APIs can only be accessed with a valid Personal Access Token. Public APIs are mostly used in browsers. # noqa: E501
|
5
5
|
|
6
|
-
The version of the OpenAPI document: v1.
|
6
|
+
The version of the OpenAPI document: v1.6.2
|
7
7
|
Contact: support@ory.sh
|
8
8
|
Generated by: https://openapi-generator.tech
|
9
9
|
"""
|
@@ -3,7 +3,7 @@
|
|
3
3
|
|
4
4
|
Documentation for all public and administrative Ory APIs. Administrative APIs can only be accessed with a valid Personal Access Token. Public APIs are mostly used in browsers. # noqa: E501
|
5
5
|
|
6
|
-
The version of the OpenAPI document: v1.
|
6
|
+
The version of the OpenAPI document: v1.6.2
|
7
7
|
Contact: support@ory.sh
|
8
8
|
Generated by: https://openapi-generator.tech
|
9
9
|
"""
|
@@ -90,6 +90,7 @@ class AcceptOAuth2ConsentRequest(ModelNormal):
|
|
90
90
|
"""
|
91
91
|
lazy_import()
|
92
92
|
return {
|
93
|
+
'context': ({str: (bool, date, datetime, dict, float, int, list, str, none_type)},), # noqa: E501
|
93
94
|
'grant_access_token_audience': (StringSliceJSONFormat,), # noqa: E501
|
94
95
|
'grant_scope': (StringSliceJSONFormat,), # noqa: E501
|
95
96
|
'handled_at': (datetime,), # noqa: E501
|
@@ -104,6 +105,7 @@ class AcceptOAuth2ConsentRequest(ModelNormal):
|
|
104
105
|
|
105
106
|
|
106
107
|
attribute_map = {
|
108
|
+
'context': 'context', # noqa: E501
|
107
109
|
'grant_access_token_audience': 'grant_access_token_audience', # noqa: E501
|
108
110
|
'grant_scope': 'grant_scope', # noqa: E501
|
109
111
|
'handled_at': 'handled_at', # noqa: E501
|
@@ -153,6 +155,7 @@ class AcceptOAuth2ConsentRequest(ModelNormal):
|
|
153
155
|
Animal class but this time we won't travel
|
154
156
|
through its discriminator because we passed in
|
155
157
|
_visited_composed_classes = (Animal,)
|
158
|
+
context ({str: (bool, date, datetime, dict, float, int, list, str, none_type)}): [optional] # noqa: E501
|
156
159
|
grant_access_token_audience (StringSliceJSONFormat): [optional] # noqa: E501
|
157
160
|
grant_scope (StringSliceJSONFormat): [optional] # noqa: E501
|
158
161
|
handled_at (datetime): [optional] # noqa: E501
|
@@ -244,6 +247,7 @@ class AcceptOAuth2ConsentRequest(ModelNormal):
|
|
244
247
|
Animal class but this time we won't travel
|
245
248
|
through its discriminator because we passed in
|
246
249
|
_visited_composed_classes = (Animal,)
|
250
|
+
context ({str: (bool, date, datetime, dict, float, int, list, str, none_type)}): [optional] # noqa: E501
|
247
251
|
grant_access_token_audience (StringSliceJSONFormat): [optional] # noqa: E501
|
248
252
|
grant_scope (StringSliceJSONFormat): [optional] # noqa: E501
|
249
253
|
handled_at (datetime): [optional] # noqa: E501
|
@@ -3,7 +3,7 @@
|
|
3
3
|
|
4
4
|
Documentation for all public and administrative Ory APIs. Administrative APIs can only be accessed with a valid Personal Access Token. Public APIs are mostly used in browsers. # noqa: E501
|
5
5
|
|
6
|
-
The version of the OpenAPI document: v1.
|
6
|
+
The version of the OpenAPI document: v1.6.2
|
7
7
|
Contact: support@ory.sh
|
8
8
|
Generated by: https://openapi-generator.tech
|
9
9
|
"""
|
@@ -3,7 +3,7 @@
|
|
3
3
|
|
4
4
|
Documentation for all public and administrative Ory APIs. Administrative APIs can only be accessed with a valid Personal Access Token. Public APIs are mostly used in browsers. # noqa: E501
|
5
5
|
|
6
|
-
The version of the OpenAPI document: v1.
|
6
|
+
The version of the OpenAPI document: v1.6.2
|
7
7
|
Contact: support@ory.sh
|
8
8
|
Generated by: https://openapi-generator.tech
|
9
9
|
"""
|
@@ -3,7 +3,7 @@
|
|
3
3
|
|
4
4
|
Documentation for all public and administrative Ory APIs. Administrative APIs can only be accessed with a valid Personal Access Token. Public APIs are mostly used in browsers. # noqa: E501
|
5
5
|
|
6
|
-
The version of the OpenAPI document: v1.
|
6
|
+
The version of the OpenAPI document: v1.6.2
|
7
7
|
Contact: support@ory.sh
|
8
8
|
Generated by: https://openapi-generator.tech
|
9
9
|
"""
|
ory_client/model/attribute.py
CHANGED
@@ -3,7 +3,7 @@
|
|
3
3
|
|
4
4
|
Documentation for all public and administrative Ory APIs. Administrative APIs can only be accessed with a valid Personal Access Token. Public APIs are mostly used in browsers. # noqa: E501
|
5
5
|
|
6
|
-
The version of the OpenAPI document: v1.
|
6
|
+
The version of the OpenAPI document: v1.6.2
|
7
7
|
Contact: support@ory.sh
|
8
8
|
Generated by: https://openapi-generator.tech
|
9
9
|
"""
|
@@ -3,7 +3,7 @@
|
|
3
3
|
|
4
4
|
Documentation for all public and administrative Ory APIs. Administrative APIs can only be accessed with a valid Personal Access Token. Public APIs are mostly used in browsers. # noqa: E501
|
5
5
|
|
6
|
-
The version of the OpenAPI document: v1.
|
6
|
+
The version of the OpenAPI document: v1.6.2
|
7
7
|
Contact: support@ory.sh
|
8
8
|
Generated by: https://openapi-generator.tech
|
9
9
|
"""
|
@@ -3,7 +3,7 @@
|
|
3
3
|
|
4
4
|
Documentation for all public and administrative Ory APIs. Administrative APIs can only be accessed with a valid Personal Access Token. Public APIs are mostly used in browsers. # noqa: E501
|
5
5
|
|
6
|
-
The version of the OpenAPI document: v1.
|
6
|
+
The version of the OpenAPI document: v1.6.2
|
7
7
|
Contact: support@ory.sh
|
8
8
|
Generated by: https://openapi-generator.tech
|
9
9
|
"""
|
@@ -3,7 +3,7 @@
|
|
3
3
|
|
4
4
|
Documentation for all public and administrative Ory APIs. Administrative APIs can only be accessed with a valid Personal Access Token. Public APIs are mostly used in browsers. # noqa: E501
|
5
5
|
|
6
|
-
The version of the OpenAPI document: v1.
|
6
|
+
The version of the OpenAPI document: v1.6.2
|
7
7
|
Contact: support@ory.sh
|
8
8
|
Generated by: https://openapi-generator.tech
|
9
9
|
"""
|
@@ -3,7 +3,7 @@
|
|
3
3
|
|
4
4
|
Documentation for all public and administrative Ory APIs. Administrative APIs can only be accessed with a valid Personal Access Token. Public APIs are mostly used in browsers. # noqa: E501
|
5
5
|
|
6
|
-
The version of the OpenAPI document: v1.
|
6
|
+
The version of the OpenAPI document: v1.6.2
|
7
7
|
Contact: support@ory.sh
|
8
8
|
Generated by: https://openapi-generator.tech
|
9
9
|
"""
|
@@ -3,7 +3,7 @@
|
|
3
3
|
|
4
4
|
Documentation for all public and administrative Ory APIs. Administrative APIs can only be accessed with a valid Personal Access Token. Public APIs are mostly used in browsers. # noqa: E501
|
5
5
|
|
6
|
-
The version of the OpenAPI document: v1.
|
6
|
+
The version of the OpenAPI document: v1.6.2
|
7
7
|
Contact: support@ory.sh
|
8
8
|
Generated by: https://openapi-generator.tech
|
9
9
|
"""
|
@@ -3,7 +3,7 @@
|
|
3
3
|
|
4
4
|
Documentation for all public and administrative Ory APIs. Administrative APIs can only be accessed with a valid Personal Access Token. Public APIs are mostly used in browsers. # noqa: E501
|
5
5
|
|
6
|
-
The version of the OpenAPI document: v1.
|
6
|
+
The version of the OpenAPI document: v1.6.2
|
7
7
|
Contact: support@ory.sh
|
8
8
|
Generated by: https://openapi-generator.tech
|
9
9
|
"""
|
@@ -3,7 +3,7 @@
|
|
3
3
|
|
4
4
|
Documentation for all public and administrative Ory APIs. Administrative APIs can only be accessed with a valid Personal Access Token. Public APIs are mostly used in browsers. # noqa: E501
|
5
5
|
|
6
|
-
The version of the OpenAPI document: v1.
|
6
|
+
The version of the OpenAPI document: v1.6.2
|
7
7
|
Contact: support@ory.sh
|
8
8
|
Generated by: https://openapi-generator.tech
|
9
9
|
"""
|
@@ -3,7 +3,7 @@
|
|
3
3
|
|
4
4
|
Documentation for all public and administrative Ory APIs. Administrative APIs can only be accessed with a valid Personal Access Token. Public APIs are mostly used in browsers. # noqa: E501
|
5
5
|
|
6
|
-
The version of the OpenAPI document: v1.
|
6
|
+
The version of the OpenAPI document: v1.6.2
|
7
7
|
Contact: support@ory.sh
|
8
8
|
Generated by: https://openapi-generator.tech
|
9
9
|
"""
|
@@ -3,7 +3,7 @@
|
|
3
3
|
|
4
4
|
Documentation for all public and administrative Ory APIs. Administrative APIs can only be accessed with a valid Personal Access Token. Public APIs are mostly used in browsers. # noqa: E501
|
5
5
|
|
6
|
-
The version of the OpenAPI document: v1.
|
6
|
+
The version of the OpenAPI document: v1.6.2
|
7
7
|
Contact: support@ory.sh
|
8
8
|
Generated by: https://openapi-generator.tech
|
9
9
|
"""
|
@@ -3,7 +3,7 @@
|
|
3
3
|
|
4
4
|
Documentation for all public and administrative Ory APIs. Administrative APIs can only be accessed with a valid Personal Access Token. Public APIs are mostly used in browsers. # noqa: E501
|
5
5
|
|
6
|
-
The version of the OpenAPI document: v1.
|
6
|
+
The version of the OpenAPI document: v1.6.2
|
7
7
|
Contact: support@ory.sh
|
8
8
|
Generated by: https://openapi-generator.tech
|
9
9
|
"""
|
@@ -3,7 +3,7 @@
|
|
3
3
|
|
4
4
|
Documentation for all public and administrative Ory APIs. Administrative APIs can only be accessed with a valid Personal Access Token. Public APIs are mostly used in browsers. # noqa: E501
|
5
5
|
|
6
|
-
The version of the OpenAPI document: v1.
|
6
|
+
The version of the OpenAPI document: v1.6.2
|
7
7
|
Contact: support@ory.sh
|
8
8
|
Generated by: https://openapi-generator.tech
|
9
9
|
"""
|
@@ -3,7 +3,7 @@
|
|
3
3
|
|
4
4
|
Documentation for all public and administrative Ory APIs. Administrative APIs can only be accessed with a valid Personal Access Token. Public APIs are mostly used in browsers. # noqa: E501
|
5
5
|
|
6
|
-
The version of the OpenAPI document: v1.
|
6
|
+
The version of the OpenAPI document: v1.6.2
|
7
7
|
Contact: support@ory.sh
|
8
8
|
Generated by: https://openapi-generator.tech
|
9
9
|
"""
|
@@ -3,7 +3,7 @@
|
|
3
3
|
|
4
4
|
Documentation for all public and administrative Ory APIs. Administrative APIs can only be accessed with a valid Personal Access Token. Public APIs are mostly used in browsers. # noqa: E501
|
5
5
|
|
6
|
-
The version of the OpenAPI document: v1.
|
6
|
+
The version of the OpenAPI document: v1.6.2
|
7
7
|
Contact: support@ory.sh
|
8
8
|
Generated by: https://openapi-generator.tech
|
9
9
|
"""
|
@@ -3,7 +3,7 @@
|
|
3
3
|
|
4
4
|
Documentation for all public and administrative Ory APIs. Administrative APIs can only be accessed with a valid Personal Access Token. Public APIs are mostly used in browsers. # noqa: E501
|
5
5
|
|
6
|
-
The version of the OpenAPI document: v1.
|
6
|
+
The version of the OpenAPI document: v1.6.2
|
7
7
|
Contact: support@ory.sh
|
8
8
|
Generated by: https://openapi-generator.tech
|
9
9
|
"""
|
@@ -3,7 +3,7 @@
|
|
3
3
|
|
4
4
|
Documentation for all public and administrative Ory APIs. Administrative APIs can only be accessed with a valid Personal Access Token. Public APIs are mostly used in browsers. # noqa: E501
|
5
5
|
|
6
|
-
The version of the OpenAPI document: v1.
|
6
|
+
The version of the OpenAPI document: v1.6.2
|
7
7
|
Contact: support@ory.sh
|
8
8
|
Generated by: https://openapi-generator.tech
|
9
9
|
"""
|
@@ -3,7 +3,7 @@
|
|
3
3
|
|
4
4
|
Documentation for all public and administrative Ory APIs. Administrative APIs can only be accessed with a valid Personal Access Token. Public APIs are mostly used in browsers. # noqa: E501
|
5
5
|
|
6
|
-
The version of the OpenAPI document: v1.
|
6
|
+
The version of the OpenAPI document: v1.6.2
|
7
7
|
Contact: support@ory.sh
|
8
8
|
Generated by: https://openapi-generator.tech
|
9
9
|
"""
|
@@ -3,7 +3,7 @@
|
|
3
3
|
|
4
4
|
Documentation for all public and administrative Ory APIs. Administrative APIs can only be accessed with a valid Personal Access Token. Public APIs are mostly used in browsers. # noqa: E501
|
5
5
|
|
6
|
-
The version of the OpenAPI document: v1.
|
6
|
+
The version of the OpenAPI document: v1.6.2
|
7
7
|
Contact: support@ory.sh
|
8
8
|
Generated by: https://openapi-generator.tech
|
9
9
|
"""
|
@@ -3,7 +3,7 @@
|
|
3
3
|
|
4
4
|
Documentation for all public and administrative Ory APIs. Administrative APIs can only be accessed with a valid Personal Access Token. Public APIs are mostly used in browsers. # noqa: E501
|
5
5
|
|
6
|
-
The version of the OpenAPI document: v1.
|
6
|
+
The version of the OpenAPI document: v1.6.2
|
7
7
|
Contact: support@ory.sh
|
8
8
|
Generated by: https://openapi-generator.tech
|
9
9
|
"""
|
@@ -3,7 +3,7 @@
|
|
3
3
|
|
4
4
|
Documentation for all public and administrative Ory APIs. Administrative APIs can only be accessed with a valid Personal Access Token. Public APIs are mostly used in browsers. # noqa: E501
|
5
5
|
|
6
|
-
The version of the OpenAPI document: v1.
|
6
|
+
The version of the OpenAPI document: v1.6.2
|
7
7
|
Contact: support@ory.sh
|
8
8
|
Generated by: https://openapi-generator.tech
|
9
9
|
"""
|