ory-client 1.11.10__tar.gz → 1.11.11__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1125) hide show
  1. ory-client-1.11.11/PKG-INFO +13 -0
  2. ory-client-1.11.11/README.md +540 -0
  3. ory-client-1.11.11/ory_client/__init__.py +307 -0
  4. ory-client-1.11.11/ory_client/api/courier_api.py +616 -0
  5. ory-client-1.11.11/ory_client/api/events_api.py +1197 -0
  6. ory-client-1.11.11/ory_client/api/frontend_api.py +8844 -0
  7. ory-client-1.11.11/ory_client/api/identity_api.py +5292 -0
  8. ory-client-1.11.11/ory_client/api/jwk_api.py +1977 -0
  9. ory-client-1.11.11/ory_client/api/metadata_api.py +280 -0
  10. ory-client-1.11.11/ory_client/api/o_auth2_api.py +7870 -0
  11. ory-client-1.11.11/ory_client/api/oidc_api.py +2116 -0
  12. ory-client-1.11.11/ory_client/api/permission_api.py +1712 -0
  13. ory-client-1.11.11/ory_client/api/project_api.py +4607 -0
  14. ory-client-1.11.11/ory_client/api/relationship_api.py +1878 -0
  15. ory-client-1.11.11/ory_client/api/wellknown_api.py +279 -0
  16. ory-client-1.11.11/ory_client/api/workspace_api.py +1463 -0
  17. ory-client-1.11.11/ory_client/api_client.py +759 -0
  18. ory-client-1.11.11/ory_client/configuration.py +516 -0
  19. ory-client-1.11.11/ory_client/exceptions.py +200 -0
  20. ory-client-1.11.11/ory_client/models/__init__.py +278 -0
  21. ory-client-1.11.11/ory_client/models/accept_o_auth2_consent_request.py +118 -0
  22. ory-client-1.11.11/ory_client/models/accept_o_auth2_consent_request_session.py +113 -0
  23. ory-client-1.11.11/ory_client/models/accept_o_auth2_login_request.py +117 -0
  24. ory-client-1.11.11/ory_client/models/account_experience_configuration.py +109 -0
  25. ory-client-1.11.11/ory_client/models/account_experience_theme_variables.py +282 -0
  26. ory-client-1.11.11/ory_client/models/active_project_in_console.py +101 -0
  27. ory-client-1.11.11/ory_client/models/add_project_to_workspace_body.py +117 -0
  28. ory-client-1.11.11/ory_client/models/attribute.py +103 -0
  29. ory-client-1.11.11/ory_client/models/attribute_filter.py +115 -0
  30. ory-client-1.11.11/ory_client/models/attributes_count_datapoint.py +103 -0
  31. ory-client-1.11.11/ory_client/models/authenticator_assurance_level.py +40 -0
  32. ory-client-1.11.11/ory_client/models/batch_patch_identities_response.py +109 -0
  33. ory-client-1.11.11/ory_client/models/billing_period_bucket.py +120 -0
  34. ory-client-1.11.11/ory_client/models/check_opl_syntax_result.py +109 -0
  35. ory-client-1.11.11/ory_client/models/check_permission_result.py +101 -0
  36. ory-client-1.11.11/ory_client/models/cloud_account.py +105 -0
  37. ory-client-1.11.11/ory_client/models/consistency_request_parameters.py +111 -0
  38. ory-client-1.11.11/ory_client/models/continue_with.py +214 -0
  39. ory-client-1.11.11/ory_client/models/continue_with_recovery_ui.py +114 -0
  40. ory-client-1.11.11/ory_client/models/continue_with_recovery_ui_flow.py +103 -0
  41. ory-client-1.11.11/ory_client/models/continue_with_set_ory_session_token.py +110 -0
  42. ory-client-1.11.11/ory_client/models/continue_with_settings_ui.py +114 -0
  43. ory-client-1.11.11/ory_client/models/continue_with_settings_ui_flow.py +101 -0
  44. ory-client-1.11.11/ory_client/models/continue_with_verification_ui.py +114 -0
  45. ory-client-1.11.11/ory_client/models/continue_with_verification_ui_flow.py +105 -0
  46. ory-client-1.11.11/ory_client/models/courier_message_status.py +40 -0
  47. ory-client-1.11.11/ory_client/models/courier_message_type.py +38 -0
  48. ory-client-1.11.11/ory_client/models/create_custom_domain_body.py +109 -0
  49. ory-client-1.11.11/ory_client/models/create_event_stream_body.py +112 -0
  50. ory-client-1.11.11/ory_client/models/create_identity_body.py +155 -0
  51. ory-client-1.11.11/ory_client/models/create_invite_response.py +114 -0
  52. ory-client-1.11.11/ory_client/models/create_json_web_key_set.py +105 -0
  53. ory-client-1.11.11/ory_client/models/create_project_api_key_request.py +101 -0
  54. ory-client-1.11.11/ory_client/models/create_project_body.py +124 -0
  55. ory-client-1.11.11/ory_client/models/create_project_branding.py +115 -0
  56. ory-client-1.11.11/ory_client/models/create_project_member_invite_body.py +101 -0
  57. ory-client-1.11.11/ory_client/models/create_project_normalized_payload.py +709 -0
  58. ory-client-1.11.11/ory_client/models/create_recovery_code_for_identity_body.py +116 -0
  59. ory-client-1.11.11/ory_client/models/create_recovery_link_for_identity_body.py +114 -0
  60. ory-client-1.11.11/ory_client/models/create_relationship_body.py +113 -0
  61. ory-client-1.11.11/ory_client/models/create_subscription_body.py +126 -0
  62. ory-client-1.11.11/ory_client/models/create_subscription_common.py +124 -0
  63. ory-client-1.11.11/ory_client/models/create_verifiable_credential_request_body.py +109 -0
  64. ory-client-1.11.11/ory_client/models/create_workspace_body.py +101 -0
  65. ory-client-1.11.11/ory_client/models/create_workspace_member_invite_body.py +101 -0
  66. ory-client-1.11.11/ory_client/models/create_workspace_subscription_body.py +124 -0
  67. ory-client-1.11.11/ory_client/models/credential_supported_draft00.py +107 -0
  68. ory-client-1.11.11/ory_client/models/custom_domain.py +132 -0
  69. ory-client-1.11.11/ory_client/models/delete_my_sessions_count.py +101 -0
  70. ory-client-1.11.11/ory_client/models/email_template_data.py +107 -0
  71. ory-client-1.11.11/ory_client/models/email_template_data_body.py +103 -0
  72. ory-client-1.11.11/ory_client/models/error_authenticator_assurance_level_not_satisfied.py +107 -0
  73. ory-client-1.11.11/ory_client/models/error_browser_location_change_required.py +107 -0
  74. ory-client-1.11.11/ory_client/models/error_flow_replaced.py +107 -0
  75. ory-client-1.11.11/ory_client/models/error_generic.py +105 -0
  76. ory-client-1.11.11/ory_client/models/error_o_auth2.py +109 -0
  77. ory-client-1.11.11/ory_client/models/event_stream.py +112 -0
  78. ory-client-1.11.11/ory_client/models/expanded_permission_tree.py +125 -0
  79. ory-client-1.11.11/ory_client/models/flow_error.py +108 -0
  80. ory-client-1.11.11/ory_client/models/generic_error.py +126 -0
  81. ory-client-1.11.11/ory_client/models/generic_error_content.py +109 -0
  82. ory-client-1.11.11/ory_client/models/generic_usage.py +107 -0
  83. ory-client-1.11.11/ory_client/models/get_attributes_count_response.py +111 -0
  84. ory-client-1.11.11/ory_client/models/get_managed_identity_schema_location.py +101 -0
  85. ory-client-1.11.11/ory_client/models/get_metrics_event_attributes_response.py +103 -0
  86. ory-client-1.11.11/ory_client/models/get_metrics_event_types_response.py +103 -0
  87. ory-client-1.11.11/ory_client/models/get_organization_response.py +105 -0
  88. ory-client-1.11.11/ory_client/models/get_project_events_body.py +120 -0
  89. ory-client-1.11.11/ory_client/models/get_project_events_response.py +115 -0
  90. ory-client-1.11.11/ory_client/models/get_project_metrics_response.py +111 -0
  91. ory-client-1.11.11/ory_client/models/get_session_activity_response.py +111 -0
  92. ory-client-1.11.11/ory_client/models/get_version200_response.py +101 -0
  93. ory-client-1.11.11/ory_client/models/health_not_ready_status.py +101 -0
  94. ory-client-1.11.11/ory_client/models/health_status.py +101 -0
  95. ory-client-1.11.11/ory_client/models/identity.py +187 -0
  96. ory-client-1.11.11/ory_client/models/identity_credentials.py +122 -0
  97. ory-client-1.11.11/ory_client/models/identity_credentials_code.py +109 -0
  98. ory-client-1.11.11/ory_client/models/identity_credentials_oidc.py +109 -0
  99. ory-client-1.11.11/ory_client/models/identity_credentials_oidc_provider.py +111 -0
  100. ory-client-1.11.11/ory_client/models/identity_credentials_password.py +101 -0
  101. ory-client-1.11.11/ory_client/models/identity_patch.py +107 -0
  102. ory-client-1.11.11/ory_client/models/identity_patch_response.py +115 -0
  103. ory-client-1.11.11/ory_client/models/identity_schema_container.py +103 -0
  104. ory-client-1.11.11/ory_client/models/identity_schema_preset.py +103 -0
  105. ory-client-1.11.11/ory_client/models/identity_with_credentials.py +111 -0
  106. ory-client-1.11.11/ory_client/models/identity_with_credentials_oidc.py +105 -0
  107. ory-client-1.11.11/ory_client/models/identity_with_credentials_oidc_config.py +115 -0
  108. ory-client-1.11.11/ory_client/models/identity_with_credentials_oidc_config_provider.py +103 -0
  109. ory-client-1.11.11/ory_client/models/identity_with_credentials_password.py +105 -0
  110. ory-client-1.11.11/ory_client/models/identity_with_credentials_password_config.py +103 -0
  111. ory-client-1.11.11/ory_client/models/internal_get_project_branding_body.py +101 -0
  112. ory-client-1.11.11/ory_client/models/internal_is_ax_welcome_screen_enabled_for_project_body.py +103 -0
  113. ory-client-1.11.11/ory_client/models/internal_is_owner_for_project_by_slug_body.py +114 -0
  114. ory-client-1.11.11/ory_client/models/internal_is_owner_for_project_by_slug_response.py +101 -0
  115. ory-client-1.11.11/ory_client/models/introspected_o_auth2_token.py +127 -0
  116. ory-client-1.11.11/ory_client/models/invoice.py +125 -0
  117. ory-client-1.11.11/ory_client/models/invoice_data_v1.py +149 -0
  118. ory-client-1.11.11/ory_client/models/is_owner_for_project_by_slug.py +103 -0
  119. ory-client-1.11.11/ory_client/models/json_patch.py +119 -0
  120. ory-client-1.11.11/ory_client/models/json_web_key.py +133 -0
  121. ory-client-1.11.11/ory_client/models/json_web_key_set.py +109 -0
  122. ory-client-1.11.11/ory_client/models/keto_namespace.py +103 -0
  123. ory-client-1.11.11/ory_client/models/line_item_v1.py +120 -0
  124. ory-client-1.11.11/ory_client/models/list_event_streams.py +109 -0
  125. ory-client-1.11.11/ory_client/models/list_invoices_response.py +113 -0
  126. ory-client-1.11.11/ory_client/models/list_organizations_response.py +113 -0
  127. ory-client-1.11.11/ory_client/models/list_workspace_projects.py +113 -0
  128. ory-client-1.11.11/ory_client/models/list_workspaces.py +113 -0
  129. ory-client-1.11.11/ory_client/models/login_flow.py +165 -0
  130. ory-client-1.11.11/ory_client/models/login_flow_state.py +39 -0
  131. ory-client-1.11.11/ory_client/models/logout_flow.py +103 -0
  132. ory-client-1.11.11/ory_client/models/managed_identity_schema.py +120 -0
  133. ory-client-1.11.11/ory_client/models/managed_identity_schema_validation_result.py +103 -0
  134. ory-client-1.11.11/ory_client/models/member_invite.py +148 -0
  135. ory-client-1.11.11/ory_client/models/message.py +141 -0
  136. ory-client-1.11.11/ory_client/models/message_dispatch.py +119 -0
  137. ory-client-1.11.11/ory_client/models/metrics_datapoint.py +104 -0
  138. ory-client-1.11.11/ory_client/models/money.py +105 -0
  139. ory-client-1.11.11/ory_client/models/namespace.py +101 -0
  140. ory-client-1.11.11/ory_client/models/needs_privileged_session_error.py +107 -0
  141. ory-client-1.11.11/ory_client/models/normalized_project.py +182 -0
  142. ory-client-1.11.11/ory_client/models/normalized_project_revision.py +686 -0
  143. ory-client-1.11.11/ory_client/models/normalized_project_revision_courier_channel.py +145 -0
  144. ory-client-1.11.11/ory_client/models/normalized_project_revision_hook.py +140 -0
  145. ory-client-1.11.11/ory_client/models/normalized_project_revision_identity_schema.py +133 -0
  146. ory-client-1.11.11/ory_client/models/normalized_project_revision_third_party_provider.py +187 -0
  147. ory-client-1.11.11/ory_client/models/normalized_project_revision_tokenizer_template.py +133 -0
  148. ory-client-1.11.11/ory_client/models/o_auth2_client.py +352 -0
  149. ory-client-1.11.11/ory_client/models/o_auth2_client_token_lifespans.py +270 -0
  150. ory-client-1.11.11/ory_client/models/o_auth2_consent_request.py +133 -0
  151. ory-client-1.11.11/ory_client/models/o_auth2_consent_request_open_id_connect_context.py +109 -0
  152. ory-client-1.11.11/ory_client/models/o_auth2_consent_session.py +130 -0
  153. ory-client-1.11.11/ory_client/models/o_auth2_consent_session_expires_at.py +110 -0
  154. ory-client-1.11.11/ory_client/models/o_auth2_login_request.py +125 -0
  155. ory-client-1.11.11/ory_client/models/o_auth2_logout_request.py +115 -0
  156. ory-client-1.11.11/ory_client/models/o_auth2_redirect_to.py +101 -0
  157. ory-client-1.11.11/ory_client/models/o_auth2_token_exchange.py +111 -0
  158. ory-client-1.11.11/ory_client/models/oidc_configuration.py +169 -0
  159. ory-client-1.11.11/ory_client/models/oidc_user_info.py +137 -0
  160. ory-client-1.11.11/ory_client/models/organization.py +116 -0
  161. ory-client-1.11.11/ory_client/models/organization_body.py +103 -0
  162. ory-client-1.11.11/ory_client/models/pagination.py +104 -0
  163. ory-client-1.11.11/ory_client/models/pagination_headers.py +103 -0
  164. ory-client-1.11.11/ory_client/models/parse_error.py +112 -0
  165. ory-client-1.11.11/ory_client/models/patch_identities_body.py +109 -0
  166. ory-client-1.11.11/ory_client/models/perform_native_logout_body.py +101 -0
  167. ory-client-1.11.11/ory_client/models/permissions_on_workspace.py +101 -0
  168. ory-client-1.11.11/ory_client/models/plan.py +103 -0
  169. ory-client-1.11.11/ory_client/models/plan_details.py +128 -0
  170. ory-client-1.11.11/ory_client/models/post_check_permission_body.py +113 -0
  171. ory-client-1.11.11/ory_client/models/post_check_permission_or_error_body.py +113 -0
  172. ory-client-1.11.11/ory_client/models/project.py +166 -0
  173. ory-client-1.11.11/ory_client/models/project_api_key.py +126 -0
  174. ory-client-1.11.11/ory_client/models/project_branding.py +129 -0
  175. ory-client-1.11.11/ory_client/models/project_branding_colors.py +157 -0
  176. ory-client-1.11.11/ory_client/models/project_branding_theme.py +194 -0
  177. ory-client-1.11.11/ory_client/models/project_cors.py +103 -0
  178. ory-client-1.11.11/ory_client/models/project_events_datapoint.py +114 -0
  179. ory-client-1.11.11/ory_client/models/project_host.py +107 -0
  180. ory-client-1.11.11/ory_client/models/project_member.py +107 -0
  181. ory-client-1.11.11/ory_client/models/project_metadata.py +170 -0
  182. ory-client-1.11.11/ory_client/models/project_service_identity.py +101 -0
  183. ory-client-1.11.11/ory_client/models/project_service_o_auth2.py +101 -0
  184. ory-client-1.11.11/ory_client/models/project_service_permission.py +101 -0
  185. ory-client-1.11.11/ory_client/models/project_services.py +117 -0
  186. ory-client-1.11.11/ory_client/models/quota_usage.py +118 -0
  187. ory-client-1.11.11/ory_client/models/recovery_code_for_identity.py +106 -0
  188. ory-client-1.11.11/ory_client/models/recovery_flow.py +139 -0
  189. ory-client-1.11.11/ory_client/models/recovery_flow_state.py +39 -0
  190. ory-client-1.11.11/ory_client/models/recovery_identity_address.py +110 -0
  191. ory-client-1.11.11/ory_client/models/recovery_link_for_identity.py +104 -0
  192. ory-client-1.11.11/ory_client/models/registration_flow.py +156 -0
  193. ory-client-1.11.11/ory_client/models/registration_flow_state.py +39 -0
  194. ory-client-1.11.11/ory_client/models/reject_o_auth2_request.py +109 -0
  195. ory-client-1.11.11/ory_client/models/relation_query.py +113 -0
  196. ory-client-1.11.11/ory_client/models/relationship.py +113 -0
  197. ory-client-1.11.11/ory_client/models/relationship_namespaces.py +109 -0
  198. ory-client-1.11.11/ory_client/models/relationship_patch.py +117 -0
  199. ory-client-1.11.11/ory_client/models/relationships.py +111 -0
  200. ory-client-1.11.11/ory_client/models/rfc6749_error_json.py +109 -0
  201. ory-client-1.11.11/ory_client/models/schema_patch.py +103 -0
  202. ory-client-1.11.11/ory_client/models/self_service_flow_expired_error.py +112 -0
  203. ory-client-1.11.11/ory_client/models/session.py +141 -0
  204. ory-client-1.11.11/ory_client/models/session_activity_datapoint.py +105 -0
  205. ory-client-1.11.11/ory_client/models/session_authentication_method.py +121 -0
  206. ory-client-1.11.11/ory_client/models/session_device.py +107 -0
  207. ory-client-1.11.11/ory_client/models/set_active_project_in_console_body.py +101 -0
  208. ory-client-1.11.11/ory_client/models/set_custom_domain_body.py +109 -0
  209. ory-client-1.11.11/ory_client/models/set_event_stream_body.py +112 -0
  210. ory-client-1.11.11/ory_client/models/set_project.py +118 -0
  211. ory-client-1.11.11/ory_client/models/set_project_branding_theme_body.py +115 -0
  212. ory-client-1.11.11/ory_client/models/settings_flow.py +145 -0
  213. ory-client-1.11.11/ory_client/models/settings_flow_state.py +38 -0
  214. ory-client-1.11.11/ory_client/models/source_position.py +103 -0
  215. ory-client-1.11.11/ory_client/models/subject_set.py +105 -0
  216. ory-client-1.11.11/ory_client/models/subscription.py +179 -0
  217. ory-client-1.11.11/ory_client/models/successful_code_exchange_response.py +107 -0
  218. ory-client-1.11.11/ory_client/models/successful_native_login.py +117 -0
  219. ory-client-1.11.11/ory_client/models/successful_native_registration.py +123 -0
  220. ory-client-1.11.11/ory_client/models/successful_project_update.py +115 -0
  221. ory-client-1.11.11/ory_client/models/tax_line_item.py +103 -0
  222. ory-client-1.11.11/ory_client/models/time_interval.py +104 -0
  223. ory-client-1.11.11/ory_client/models/token_pagination.py +104 -0
  224. ory-client-1.11.11/ory_client/models/token_pagination_headers.py +103 -0
  225. ory-client-1.11.11/ory_client/models/token_pagination_request_parameters.py +104 -0
  226. ory-client-1.11.11/ory_client/models/token_pagination_response_headers.py +103 -0
  227. ory-client-1.11.11/ory_client/models/trust_o_auth2_jwt_grant_issuer.py +116 -0
  228. ory-client-1.11.11/ory_client/models/trusted_o_auth2_jwt_grant_issuer.py +120 -0
  229. ory-client-1.11.11/ory_client/models/trusted_o_auth2_jwt_grant_json_web_key.py +103 -0
  230. ory-client-1.11.11/ory_client/models/ui_container.py +123 -0
  231. ory-client-1.11.11/ory_client/models/ui_node.py +139 -0
  232. ory-client-1.11.11/ory_client/models/ui_node_anchor_attributes.py +118 -0
  233. ory-client-1.11.11/ory_client/models/ui_node_attributes.py +238 -0
  234. ory-client-1.11.11/ory_client/models/ui_node_image_attributes.py +116 -0
  235. ory-client-1.11.11/ory_client/models/ui_node_input_attributes.py +154 -0
  236. ory-client-1.11.11/ory_client/models/ui_node_meta.py +105 -0
  237. ory-client-1.11.11/ory_client/models/ui_node_script_attributes.py +124 -0
  238. ory-client-1.11.11/ory_client/models/ui_node_text_attributes.py +116 -0
  239. ory-client-1.11.11/ory_client/models/ui_text.py +114 -0
  240. ory-client-1.11.11/ory_client/models/update_identity_body.py +132 -0
  241. ory-client-1.11.11/ory_client/models/update_login_flow_body.py +286 -0
  242. ory-client-1.11.11/ory_client/models/update_login_flow_with_code_method.py +111 -0
  243. ory-client-1.11.11/ory_client/models/update_login_flow_with_lookup_secret_method.py +105 -0
  244. ory-client-1.11.11/ory_client/models/update_login_flow_with_oidc_method.py +115 -0
  245. ory-client-1.11.11/ory_client/models/update_login_flow_with_passkey_method.py +105 -0
  246. ory-client-1.11.11/ory_client/models/update_login_flow_with_password_method.py +111 -0
  247. ory-client-1.11.11/ory_client/models/update_login_flow_with_totp_method.py +107 -0
  248. ory-client-1.11.11/ory_client/models/update_login_flow_with_web_authn_method.py +109 -0
  249. ory-client-1.11.11/ory_client/models/update_recovery_flow_body.py +166 -0
  250. ory-client-1.11.11/ory_client/models/update_recovery_flow_with_code_method.py +116 -0
  251. ory-client-1.11.11/ory_client/models/update_recovery_flow_with_link_method.py +114 -0
  252. ory-client-1.11.11/ory_client/models/update_registration_flow_body.py +238 -0
  253. ory-client-1.11.11/ory_client/models/update_registration_flow_with_code_method.py +111 -0
  254. ory-client-1.11.11/ory_client/models/update_registration_flow_with_oidc_method.py +115 -0
  255. ory-client-1.11.11/ory_client/models/update_registration_flow_with_passkey_method.py +109 -0
  256. ory-client-1.11.11/ory_client/models/update_registration_flow_with_password_method.py +109 -0
  257. ory-client-1.11.11/ory_client/models/update_registration_flow_with_profile_method.py +109 -0
  258. ory-client-1.11.11/ory_client/models/update_registration_flow_with_web_authn_method.py +111 -0
  259. ory-client-1.11.11/ory_client/models/update_settings_flow_body.py +286 -0
  260. ory-client-1.11.11/ory_client/models/update_settings_flow_with_lookup_method.py +113 -0
  261. ory-client-1.11.11/ory_client/models/update_settings_flow_with_oidc_method.py +113 -0
  262. ory-client-1.11.11/ory_client/models/update_settings_flow_with_passkey_method.py +107 -0
  263. ory-client-1.11.11/ory_client/models/update_settings_flow_with_password_method.py +107 -0
  264. ory-client-1.11.11/ory_client/models/update_settings_flow_with_profile_method.py +107 -0
  265. ory-client-1.11.11/ory_client/models/update_settings_flow_with_totp_method.py +109 -0
  266. ory-client-1.11.11/ory_client/models/update_settings_flow_with_web_authn_method.py +111 -0
  267. ory-client-1.11.11/ory_client/models/update_subscription_body.py +112 -0
  268. ory-client-1.11.11/ory_client/models/update_verification_flow_body.py +166 -0
  269. ory-client-1.11.11/ory_client/models/update_verification_flow_with_code_method.py +116 -0
  270. ory-client-1.11.11/ory_client/models/update_verification_flow_with_link_method.py +114 -0
  271. ory-client-1.11.11/ory_client/models/update_workspace_body.py +101 -0
  272. ory-client-1.11.11/ory_client/models/usage.py +105 -0
  273. ory-client-1.11.11/ory_client/models/verifiable_credential_priming_response.py +115 -0
  274. ory-client-1.11.11/ory_client/models/verifiable_credential_proof.py +103 -0
  275. ory-client-1.11.11/ory_client/models/verifiable_credential_response.py +103 -0
  276. ory-client-1.11.11/ory_client/models/verifiable_identity_address.py +123 -0
  277. ory-client-1.11.11/ory_client/models/verification_flow.py +129 -0
  278. ory-client-1.11.11/ory_client/models/verification_flow_state.py +39 -0
  279. ory-client-1.11.11/ory_client/models/version.py +101 -0
  280. ory-client-1.11.11/ory_client/models/warning.py +103 -0
  281. ory-client-1.11.11/ory_client/models/workspace.py +122 -0
  282. ory-client-1.11.11/ory_client/rest.py +256 -0
  283. ory-client-1.11.11/ory_client.egg-info/PKG-INFO +13 -0
  284. ory-client-1.11.11/pyproject.toml +71 -0
  285. ory-client-1.11.11/setup.py +51 -0
  286. ory-client-1.11.11/test/test_accept_o_auth2_consent_request.py +64 -0
  287. ory-client-1.11.11/test/test_accept_o_auth2_consent_request_session.py +53 -0
  288. ory-client-1.11.11/test/test_accept_o_auth2_login_request.py +63 -0
  289. ory-client-1.11.11/test/test_account_experience_configuration.py +58 -0
  290. ory-client-1.11.11/test/test_account_experience_theme_variables.py +142 -0
  291. ory-client-1.11.11/test/test_active_project_in_console.py +52 -0
  292. ory-client-1.11.11/test/test_add_project_to_workspace_body.py +55 -0
  293. ory-client-1.11.11/test/test_attribute.py +53 -0
  294. ory-client-1.11.11/test/test_attribute_filter.py +54 -0
  295. ory-client-1.11.11/test/test_attributes_count_datapoint.py +55 -0
  296. ory-client-1.11.11/test/test_authenticator_assurance_level.py +34 -0
  297. ory-client-1.11.11/test/test_batch_patch_identities_response.py +57 -0
  298. ory-client-1.11.11/test/test_billing_period_bucket.py +110 -0
  299. ory-client-1.11.11/test/test_check_opl_syntax_result.py +61 -0
  300. ory-client-1.11.11/test/test_check_permission_result.py +53 -0
  301. ory-client-1.11.11/test/test_cloud_account.py +57 -0
  302. ory-client-1.11.11/test/test_consistency_request_parameters.py +52 -0
  303. ory-client-1.11.11/test/test_continue_with.py +61 -0
  304. ory-client-1.11.11/test/test_continue_with_recovery_ui.py +59 -0
  305. ory-client-1.11.11/test/test_continue_with_recovery_ui_flow.py +54 -0
  306. ory-client-1.11.11/test/test_continue_with_set_ory_session_token.py +55 -0
  307. ory-client-1.11.11/test/test_continue_with_settings_ui.py +57 -0
  308. ory-client-1.11.11/test/test_continue_with_settings_ui_flow.py +53 -0
  309. ory-client-1.11.11/test/test_continue_with_verification_ui.py +61 -0
  310. ory-client-1.11.11/test/test_continue_with_verification_ui_flow.py +56 -0
  311. ory-client-1.11.11/test/test_courier_api.py +46 -0
  312. ory-client-1.11.11/test/test_courier_message_status.py +34 -0
  313. ory-client-1.11.11/test/test_courier_message_type.py +34 -0
  314. ory-client-1.11.11/test/test_create_custom_domain_body.py +58 -0
  315. ory-client-1.11.11/test/test_create_event_stream_body.py +57 -0
  316. ory-client-1.11.11/test/test_create_identity_body.py +86 -0
  317. ory-client-1.11.11/test/test_create_invite_response.py +99 -0
  318. ory-client-1.11.11/test/test_create_json_web_key_set.py +57 -0
  319. ory-client-1.11.11/test/test_create_project_api_key_request.py +53 -0
  320. ory-client-1.11.11/test/test_create_project_body.py +57 -0
  321. ory-client-1.11.11/test/test_create_project_branding.py +86 -0
  322. ory-client-1.11.11/test/test_create_project_member_invite_body.py +52 -0
  323. ory-client-1.11.11/test/test_create_project_normalized_payload.py +389 -0
  324. ory-client-1.11.11/test/test_create_recovery_code_for_identity_body.py +55 -0
  325. ory-client-1.11.11/test/test_create_recovery_link_for_identity_body.py +54 -0
  326. ory-client-1.11.11/test/test_create_relationship_body.py +59 -0
  327. ory-client-1.11.11/test/test_create_subscription_body.py +59 -0
  328. ory-client-1.11.11/test/test_create_subscription_common.py +57 -0
  329. ory-client-1.11.11/test/test_create_verifiable_credential_request_body.py +58 -0
  330. ory-client-1.11.11/test/test_create_workspace_body.py +53 -0
  331. ory-client-1.11.11/test/test_create_workspace_member_invite_body.py +52 -0
  332. ory-client-1.11.11/test/test_create_workspace_subscription_body.py +57 -0
  333. ory-client-1.11.11/test/test_credential_supported_draft00.py +61 -0
  334. ory-client-1.11.11/test/test_custom_domain.py +66 -0
  335. ory-client-1.11.11/test/test_delete_my_sessions_count.py +52 -0
  336. ory-client-1.11.11/test/test_email_template_data.py +59 -0
  337. ory-client-1.11.11/test/test_email_template_data_body.py +55 -0
  338. ory-client-1.11.11/test/test_error_authenticator_assurance_level_not_satisfied.py +66 -0
  339. ory-client-1.11.11/test/test_error_browser_location_change_required.py +58 -0
  340. ory-client-1.11.11/test/test_error_flow_replaced.py +66 -0
  341. ory-client-1.11.11/test/test_error_generic.py +61 -0
  342. ory-client-1.11.11/test/test_error_o_auth2.py +56 -0
  343. ory-client-1.11.11/test/test_event_stream.py +57 -0
  344. ory-client-1.11.11/test/test_events_api.py +60 -0
  345. ory-client-1.11.11/test/test_expanded_permission_tree.py +84 -0
  346. ory-client-1.11.11/test/test_flow_error.py +56 -0
  347. ory-client-1.11.11/test/test_frontend_api.py +242 -0
  348. ory-client-1.11.11/test/test_generic_error.py +65 -0
  349. ory-client-1.11.11/test/test_generic_error_content.py +56 -0
  350. ory-client-1.11.11/test/test_generic_usage.py +61 -0
  351. ory-client-1.11.11/test/test_get_attributes_count_response.py +61 -0
  352. ory-client-1.11.11/test/test_get_managed_identity_schema_location.py +52 -0
  353. ory-client-1.11.11/test/test_get_metrics_event_attributes_response.py +57 -0
  354. ory-client-1.11.11/test/test_get_metrics_event_types_response.py +57 -0
  355. ory-client-1.11.11/test/test_get_organization_response.py +69 -0
  356. ory-client-1.11.11/test/test_get_project_events_body.py +64 -0
  357. ory-client-1.11.11/test/test_get_project_events_response.py +72 -0
  358. ory-client-1.11.11/test/test_get_project_metrics_response.py +61 -0
  359. ory-client-1.11.11/test/test_get_session_activity_response.py +63 -0
  360. ory-client-1.11.11/test/test_get_version200_response.py +53 -0
  361. ory-client-1.11.11/test/test_health_not_ready_status.py +54 -0
  362. ory-client-1.11.11/test/test_health_status.py +52 -0
  363. ory-client-1.11.11/test/test_identity.py +96 -0
  364. ory-client-1.11.11/test/test_identity_api.py +158 -0
  365. ory-client-1.11.11/test/test_identity_credentials.py +59 -0
  366. ory-client-1.11.11/test/test_identity_credentials_code.py +53 -0
  367. ory-client-1.11.11/test/test_identity_credentials_oidc.py +60 -0
  368. ory-client-1.11.11/test/test_identity_credentials_oidc_provider.py +57 -0
  369. ory-client-1.11.11/test/test_identity_credentials_password.py +52 -0
  370. ory-client-1.11.11/test/test_identity_patch.py +86 -0
  371. ory-client-1.11.11/test/test_identity_patch_response.py +54 -0
  372. ory-client-1.11.11/test/test_identity_schema_container.py +53 -0
  373. ory-client-1.11.11/test/test_identity_schema_preset.py +55 -0
  374. ory-client-1.11.11/test/test_identity_with_credentials.py +61 -0
  375. ory-client-1.11.11/test/test_identity_with_credentials_oidc.py +57 -0
  376. ory-client-1.11.11/test/test_identity_with_credentials_oidc_config.py +59 -0
  377. ory-client-1.11.11/test/test_identity_with_credentials_oidc_config_provider.py +55 -0
  378. ory-client-1.11.11/test/test_identity_with_credentials_password.py +54 -0
  379. ory-client-1.11.11/test/test_identity_with_credentials_password_config.py +53 -0
  380. ory-client-1.11.11/test/test_internal_get_project_branding_body.py +52 -0
  381. ory-client-1.11.11/test/test_internal_is_ax_welcome_screen_enabled_for_project_body.py +55 -0
  382. ory-client-1.11.11/test/test_internal_is_owner_for_project_by_slug_body.py +58 -0
  383. ory-client-1.11.11/test/test_internal_is_owner_for_project_by_slug_response.py +53 -0
  384. ory-client-1.11.11/test/test_introspected_o_auth2_token.py +70 -0
  385. ory-client-1.11.11/test/test_invoice.py +81 -0
  386. ory-client-1.11.11/test/test_invoice_data_v1.py +87 -0
  387. ory-client-1.11.11/test/test_is_owner_for_project_by_slug.py +55 -0
  388. ory-client-1.11.11/test/test_json_patch.py +57 -0
  389. ory-client-1.11.11/test/test_json_web_key.py +74 -0
  390. ory-client-1.11.11/test/test_json_web_key_set.py +73 -0
  391. ory-client-1.11.11/test/test_jwk_api.py +81 -0
  392. ory-client-1.11.11/test/test_keto_namespace.py +53 -0
  393. ory-client-1.11.11/test/test_line_item_v1.py +64 -0
  394. ory-client-1.11.11/test/test_list_event_streams.py +60 -0
  395. ory-client-1.11.11/test/test_list_invoices_response.py +137 -0
  396. ory-client-1.11.11/test/test_list_organizations_response.py +77 -0
  397. ory-client-1.11.11/test/test_list_workspace_projects.py +99 -0
  398. ory-client-1.11.11/test/test_list_workspaces.py +73 -0
  399. ory-client-1.11.11/test/test_login_flow.py +196 -0
  400. ory-client-1.11.11/test/test_login_flow_state.py +34 -0
  401. ory-client-1.11.11/test/test_logout_flow.py +55 -0
  402. ory-client-1.11.11/test/test_managed_identity_schema.py +64 -0
  403. ory-client-1.11.11/test/test_managed_identity_schema_validation_result.py +53 -0
  404. ory-client-1.11.11/test/test_member_invite.py +68 -0
  405. ory-client-1.11.11/test/test_message.py +81 -0
  406. ory-client-1.11.11/test/test_message_dispatch.py +62 -0
  407. ory-client-1.11.11/test/test_metadata_api.py +39 -0
  408. ory-client-1.11.11/test/test_metrics_datapoint.py +55 -0
  409. ory-client-1.11.11/test/test_money.py +54 -0
  410. ory-client-1.11.11/test/test_namespace.py +52 -0
  411. ory-client-1.11.11/test/test_needs_privileged_session_error.py +67 -0
  412. ory-client-1.11.11/test/test_normalized_project.py +686 -0
  413. ory-client-1.11.11/test/test_normalized_project_revision.py +385 -0
  414. ory-client-1.11.11/test/test_normalized_project_revision_courier_channel.py +67 -0
  415. ory-client-1.11.11/test/test_normalized_project_revision_hook.py +71 -0
  416. ory-client-1.11.11/test/test_normalized_project_revision_identity_schema.py +68 -0
  417. ory-client-1.11.11/test/test_normalized_project_revision_third_party_provider.py +79 -0
  418. ory-client-1.11.11/test/test_normalized_project_revision_tokenizer_template.py +59 -0
  419. ory-client-1.11.11/test/test_o_auth2_api.py +228 -0
  420. ory-client-1.11.11/test/test_o_auth2_client.py +115 -0
  421. ory-client-1.11.11/test/test_o_auth2_client_token_lifespans.py +61 -0
  422. ory-client-1.11.11/test/test_o_auth2_consent_request.py +134 -0
  423. ory-client-1.11.11/test/test_o_auth2_consent_request_open_id_connect_context.py +62 -0
  424. ory-client-1.11.11/test/test_o_auth2_consent_session.py +147 -0
  425. ory-client-1.11.11/test/test_o_auth2_consent_session_expires_at.py +56 -0
  426. ory-client-1.11.11/test/test_o_auth2_login_request.py +184 -0
  427. ory-client-1.11.11/test/test_o_auth2_logout_request.py +109 -0
  428. ory-client-1.11.11/test/test_o_auth2_redirect_to.py +53 -0
  429. ory-client-1.11.11/test/test_o_auth2_token_exchange.py +57 -0
  430. ory-client-1.11.11/test/test_oidc_api.py +88 -0
  431. ory-client-1.11.11/test/test_oidc_configuration.py +139 -0
  432. ory-client-1.11.11/test/test_oidc_user_info.py +70 -0
  433. ory-client-1.11.11/test/test_organization.py +67 -0
  434. ory-client-1.11.11/test/test_organization_body.py +55 -0
  435. ory-client-1.11.11/test/test_pagination.py +53 -0
  436. ory-client-1.11.11/test/test_pagination_headers.py +53 -0
  437. ory-client-1.11.11/test/test_parse_error.py +58 -0
  438. ory-client-1.11.11/test/test_patch_identities_body.py +89 -0
  439. ory-client-1.11.11/test/test_perform_native_logout_body.py +53 -0
  440. ory-client-1.11.11/test/test_permission_api.py +67 -0
  441. ory-client-1.11.11/test/test_permissions_on_workspace.py +54 -0
  442. ory-client-1.11.11/test/test_plan.py +55 -0
  443. ory-client-1.11.11/test/test_plan_details.py +80 -0
  444. ory-client-1.11.11/test/test_post_check_permission_body.py +59 -0
  445. ory-client-1.11.11/test/test_post_check_permission_or_error_body.py +59 -0
  446. ory-client-1.11.11/test/test_project.py +90 -0
  447. ory-client-1.11.11/test/test_project_api.py +140 -0
  448. ory-client-1.11.11/test/test_project_api_key.py +61 -0
  449. ory-client-1.11.11/test/test_project_branding.py +599 -0
  450. ory-client-1.11.11/test/test_project_branding_colors.py +80 -0
  451. ory-client-1.11.11/test/test_project_branding_theme.py +189 -0
  452. ory-client-1.11.11/test/test_project_cors.py +55 -0
  453. ory-client-1.11.11/test/test_project_events_datapoint.py +65 -0
  454. ory-client-1.11.11/test/test_project_host.py +57 -0
  455. ory-client-1.11.11/test/test_project_member.py +59 -0
  456. ory-client-1.11.11/test/test_project_metadata.py +83 -0
  457. ory-client-1.11.11/test/test_project_service_identity.py +53 -0
  458. ory-client-1.11.11/test/test_project_service_o_auth2.py +53 -0
  459. ory-client-1.11.11/test/test_project_service_permission.py +53 -0
  460. ory-client-1.11.11/test/test_project_services.py +57 -0
  461. ory-client-1.11.11/test/test_quota_usage.py +63 -0
  462. ory-client-1.11.11/test/test_recovery_code_for_identity.py +56 -0
  463. ory-client-1.11.11/test/test_recovery_flow.py +119 -0
  464. ory-client-1.11.11/test/test_recovery_flow_state.py +34 -0
  465. ory-client-1.11.11/test/test_recovery_identity_address.py +59 -0
  466. ory-client-1.11.11/test/test_recovery_link_for_identity.py +54 -0
  467. ory-client-1.11.11/test/test_registration_flow.py +192 -0
  468. ory-client-1.11.11/test/test_registration_flow_state.py +34 -0
  469. ory-client-1.11.11/test/test_reject_o_auth2_request.py +56 -0
  470. ory-client-1.11.11/test/test_relation_query.py +59 -0
  471. ory-client-1.11.11/test/test_relationship.py +62 -0
  472. ory-client-1.11.11/test/test_relationship_api.py +74 -0
  473. ory-client-1.11.11/test/test_relationship_namespaces.py +55 -0
  474. ory-client-1.11.11/test/test_relationship_patch.py +61 -0
  475. ory-client-1.11.11/test/test_relationships.py +63 -0
  476. ory-client-1.11.11/test/test_rfc6749_error_json.py +56 -0
  477. ory-client-1.11.11/test/test_schema_patch.py +55 -0
  478. ory-client-1.11.11/test/test_self_service_flow_expired_error.py +68 -0
  479. ory-client-1.11.11/test/test_session.py +116 -0
  480. ory-client-1.11.11/test/test_session_activity_datapoint.py +57 -0
  481. ory-client-1.11.11/test/test_session_authentication_method.py +56 -0
  482. ory-client-1.11.11/test/test_session_device.py +56 -0
  483. ory-client-1.11.11/test/test_set_active_project_in_console_body.py +53 -0
  484. ory-client-1.11.11/test/test_set_custom_domain_body.py +58 -0
  485. ory-client-1.11.11/test/test_set_event_stream_body.py +57 -0
  486. ory-client-1.11.11/test/test_set_project.py +87 -0
  487. ory-client-1.11.11/test/test_set_project_branding_theme_body.py +86 -0
  488. ory-client-1.11.11/test/test_settings_flow.py +203 -0
  489. ory-client-1.11.11/test/test_settings_flow_state.py +34 -0
  490. ory-client-1.11.11/test/test_source_position.py +53 -0
  491. ory-client-1.11.11/test/test_subject_set.py +57 -0
  492. ory-client-1.11.11/test/test_subscription.py +92 -0
  493. ory-client-1.11.11/test/test_successful_code_exchange_response.py +182 -0
  494. ory-client-1.11.11/test/test_successful_native_login.py +185 -0
  495. ory-client-1.11.11/test/test_successful_native_registration.py +204 -0
  496. ory-client-1.11.11/test/test_successful_project_update.py +107 -0
  497. ory-client-1.11.11/test/test_tax_line_item.py +53 -0
  498. ory-client-1.11.11/test/test_time_interval.py +55 -0
  499. ory-client-1.11.11/test/test_token_pagination.py +53 -0
  500. ory-client-1.11.11/test/test_token_pagination_headers.py +53 -0
  501. ory-client-1.11.11/test/test_token_pagination_request_parameters.py +53 -0
  502. ory-client-1.11.11/test/test_token_pagination_response_headers.py +53 -0
  503. ory-client-1.11.11/test/test_trust_o_auth2_jwt_grant_issuer.py +99 -0
  504. ory-client-1.11.11/test/test_trusted_o_auth2_jwt_grant_issuer.py +61 -0
  505. ory-client-1.11.11/test/test_trusted_o_auth2_jwt_grant_json_web_key.py +53 -0
  506. ory-client-1.11.11/test/test_ui_container.py +100 -0
  507. ory-client-1.11.11/test/test_ui_node.py +83 -0
  508. ory-client-1.11.11/test/test_ui_node_anchor_attributes.py +67 -0
  509. ory-client-1.11.11/test/test_ui_node_attributes.py +110 -0
  510. ory-client-1.11.11/test/test_ui_node_image_attributes.py +61 -0
  511. ory-client-1.11.11/test/test_ui_node_input_attributes.py +70 -0
  512. ory-client-1.11.11/test/test_ui_node_meta.py +56 -0
  513. ory-client-1.11.11/test/test_ui_node_script_attributes.py +69 -0
  514. ory-client-1.11.11/test/test_ui_node_text_attributes.py +65 -0
  515. ory-client-1.11.11/test/test_ui_text.py +58 -0
  516. ory-client-1.11.11/test/test_update_identity_body.py +68 -0
  517. ory-client-1.11.11/test/test_update_login_flow_body.py +75 -0
  518. ory-client-1.11.11/test/test_update_login_flow_with_code_method.py +59 -0
  519. ory-client-1.11.11/test/test_update_login_flow_with_lookup_secret_method.py +56 -0
  520. ory-client-1.11.11/test/test_update_login_flow_with_oidc_method.py +61 -0
  521. ory-client-1.11.11/test/test_update_login_flow_with_passkey_method.py +55 -0
  522. ory-client-1.11.11/test/test_update_login_flow_with_password_method.py +60 -0
  523. ory-client-1.11.11/test/test_update_login_flow_with_totp_method.py +57 -0
  524. ory-client-1.11.11/test/test_update_login_flow_with_web_authn_method.py +58 -0
  525. ory-client-1.11.11/test/test_update_recovery_flow_body.py +58 -0
  526. ory-client-1.11.11/test/test_update_recovery_flow_with_code_method.py +57 -0
  527. ory-client-1.11.11/test/test_update_recovery_flow_with_link_method.py +57 -0
  528. ory-client-1.11.11/test/test_update_registration_flow_body.py +69 -0
  529. ory-client-1.11.11/test/test_update_registration_flow_with_code_method.py +59 -0
  530. ory-client-1.11.11/test/test_update_registration_flow_with_oidc_method.py +61 -0
  531. ory-client-1.11.11/test/test_update_registration_flow_with_passkey_method.py +58 -0
  532. ory-client-1.11.11/test/test_update_registration_flow_with_password_method.py +59 -0
  533. ory-client-1.11.11/test/test_update_registration_flow_with_profile_method.py +58 -0
  534. ory-client-1.11.11/test/test_update_registration_flow_with_web_authn_method.py +59 -0
  535. ory-client-1.11.11/test/test_update_settings_flow_body.py +74 -0
  536. ory-client-1.11.11/test/test_update_settings_flow_with_lookup_method.py +59 -0
  537. ory-client-1.11.11/test/test_update_settings_flow_with_oidc_method.py +59 -0
  538. ory-client-1.11.11/test/test_update_settings_flow_with_passkey_method.py +56 -0
  539. ory-client-1.11.11/test/test_update_settings_flow_with_password_method.py +57 -0
  540. ory-client-1.11.11/test/test_update_settings_flow_with_profile_method.py +57 -0
  541. ory-client-1.11.11/test/test_update_settings_flow_with_totp_method.py +57 -0
  542. ory-client-1.11.11/test/test_update_settings_flow_with_web_authn_method.py +58 -0
  543. ory-client-1.11.11/test/test_update_subscription_body.py +56 -0
  544. ory-client-1.11.11/test/test_update_verification_flow_body.py +58 -0
  545. ory-client-1.11.11/test/test_update_verification_flow_with_code_method.py +57 -0
  546. ory-client-1.11.11/test/test_update_verification_flow_with_link_method.py +57 -0
  547. ory-client-1.11.11/test/test_update_workspace_body.py +53 -0
  548. ory-client-1.11.11/test/test_usage.py +57 -0
  549. ory-client-1.11.11/test/test_verifiable_credential_priming_response.py +59 -0
  550. ory-client-1.11.11/test/test_verifiable_credential_proof.py +53 -0
  551. ory-client-1.11.11/test/test_verifiable_credential_response.py +53 -0
  552. ory-client-1.11.11/test/test_verifiable_identity_address.py +63 -0
  553. ory-client-1.11.11/test/test_verification_flow.py +113 -0
  554. ory-client-1.11.11/test/test_verification_flow_state.py +34 -0
  555. ory-client-1.11.11/test/test_version.py +52 -0
  556. ory-client-1.11.11/test/test_warning.py +53 -0
  557. ory-client-1.11.11/test/test_wellknown_api.py +39 -0
  558. ory-client-1.11.11/test/test_workspace.py +61 -0
  559. ory-client-1.11.11/test/test_workspace_api.py +67 -0
  560. ory-client-1.11.10/PKG-INFO +0 -13
  561. ory-client-1.11.10/README.md +0 -540
  562. ory-client-1.11.10/ory_client/__init__.py +0 -307
  563. ory-client-1.11.10/ory_client/api/courier_api.py +0 -616
  564. ory-client-1.11.10/ory_client/api/events_api.py +0 -1197
  565. ory-client-1.11.10/ory_client/api/frontend_api.py +0 -8844
  566. ory-client-1.11.10/ory_client/api/identity_api.py +0 -5292
  567. ory-client-1.11.10/ory_client/api/jwk_api.py +0 -1977
  568. ory-client-1.11.10/ory_client/api/metadata_api.py +0 -280
  569. ory-client-1.11.10/ory_client/api/o_auth2_api.py +0 -7870
  570. ory-client-1.11.10/ory_client/api/oidc_api.py +0 -2116
  571. ory-client-1.11.10/ory_client/api/permission_api.py +0 -1712
  572. ory-client-1.11.10/ory_client/api/project_api.py +0 -4556
  573. ory-client-1.11.10/ory_client/api/relationship_api.py +0 -1878
  574. ory-client-1.11.10/ory_client/api/wellknown_api.py +0 -279
  575. ory-client-1.11.10/ory_client/api/workspace_api.py +0 -1463
  576. ory-client-1.11.10/ory_client/api_client.py +0 -759
  577. ory-client-1.11.10/ory_client/configuration.py +0 -516
  578. ory-client-1.11.10/ory_client/exceptions.py +0 -200
  579. ory-client-1.11.10/ory_client/models/__init__.py +0 -278
  580. ory-client-1.11.10/ory_client/models/accept_o_auth2_consent_request.py +0 -118
  581. ory-client-1.11.10/ory_client/models/accept_o_auth2_consent_request_session.py +0 -113
  582. ory-client-1.11.10/ory_client/models/accept_o_auth2_login_request.py +0 -117
  583. ory-client-1.11.10/ory_client/models/account_experience_configuration.py +0 -109
  584. ory-client-1.11.10/ory_client/models/account_experience_theme_variables.py +0 -282
  585. ory-client-1.11.10/ory_client/models/active_project_in_console.py +0 -101
  586. ory-client-1.11.10/ory_client/models/add_project_to_workspace_body.py +0 -117
  587. ory-client-1.11.10/ory_client/models/attribute.py +0 -103
  588. ory-client-1.11.10/ory_client/models/attribute_filter.py +0 -115
  589. ory-client-1.11.10/ory_client/models/attributes_count_datapoint.py +0 -103
  590. ory-client-1.11.10/ory_client/models/authenticator_assurance_level.py +0 -40
  591. ory-client-1.11.10/ory_client/models/batch_patch_identities_response.py +0 -109
  592. ory-client-1.11.10/ory_client/models/billing_period_bucket.py +0 -120
  593. ory-client-1.11.10/ory_client/models/check_opl_syntax_result.py +0 -109
  594. ory-client-1.11.10/ory_client/models/check_permission_result.py +0 -101
  595. ory-client-1.11.10/ory_client/models/cloud_account.py +0 -105
  596. ory-client-1.11.10/ory_client/models/consistency_request_parameters.py +0 -111
  597. ory-client-1.11.10/ory_client/models/continue_with.py +0 -214
  598. ory-client-1.11.10/ory_client/models/continue_with_recovery_ui.py +0 -114
  599. ory-client-1.11.10/ory_client/models/continue_with_recovery_ui_flow.py +0 -103
  600. ory-client-1.11.10/ory_client/models/continue_with_set_ory_session_token.py +0 -110
  601. ory-client-1.11.10/ory_client/models/continue_with_settings_ui.py +0 -114
  602. ory-client-1.11.10/ory_client/models/continue_with_settings_ui_flow.py +0 -101
  603. ory-client-1.11.10/ory_client/models/continue_with_verification_ui.py +0 -114
  604. ory-client-1.11.10/ory_client/models/continue_with_verification_ui_flow.py +0 -105
  605. ory-client-1.11.10/ory_client/models/courier_message_status.py +0 -40
  606. ory-client-1.11.10/ory_client/models/courier_message_type.py +0 -38
  607. ory-client-1.11.10/ory_client/models/create_custom_domain_body.py +0 -109
  608. ory-client-1.11.10/ory_client/models/create_event_stream_body.py +0 -112
  609. ory-client-1.11.10/ory_client/models/create_identity_body.py +0 -155
  610. ory-client-1.11.10/ory_client/models/create_invite_response.py +0 -114
  611. ory-client-1.11.10/ory_client/models/create_json_web_key_set.py +0 -105
  612. ory-client-1.11.10/ory_client/models/create_project_api_key_request.py +0 -101
  613. ory-client-1.11.10/ory_client/models/create_project_body.py +0 -112
  614. ory-client-1.11.10/ory_client/models/create_project_branding.py +0 -115
  615. ory-client-1.11.10/ory_client/models/create_project_member_invite_body.py +0 -101
  616. ory-client-1.11.10/ory_client/models/create_project_normalized_payload.py +0 -697
  617. ory-client-1.11.10/ory_client/models/create_recovery_code_for_identity_body.py +0 -116
  618. ory-client-1.11.10/ory_client/models/create_recovery_link_for_identity_body.py +0 -114
  619. ory-client-1.11.10/ory_client/models/create_relationship_body.py +0 -113
  620. ory-client-1.11.10/ory_client/models/create_subscription_body.py +0 -126
  621. ory-client-1.11.10/ory_client/models/create_subscription_common.py +0 -124
  622. ory-client-1.11.10/ory_client/models/create_verifiable_credential_request_body.py +0 -109
  623. ory-client-1.11.10/ory_client/models/create_workspace_body.py +0 -101
  624. ory-client-1.11.10/ory_client/models/create_workspace_member_invite_body.py +0 -101
  625. ory-client-1.11.10/ory_client/models/create_workspace_subscription_body.py +0 -124
  626. ory-client-1.11.10/ory_client/models/credential_supported_draft00.py +0 -107
  627. ory-client-1.11.10/ory_client/models/custom_domain.py +0 -132
  628. ory-client-1.11.10/ory_client/models/delete_my_sessions_count.py +0 -101
  629. ory-client-1.11.10/ory_client/models/email_template_data.py +0 -107
  630. ory-client-1.11.10/ory_client/models/email_template_data_body.py +0 -103
  631. ory-client-1.11.10/ory_client/models/error_authenticator_assurance_level_not_satisfied.py +0 -107
  632. ory-client-1.11.10/ory_client/models/error_browser_location_change_required.py +0 -107
  633. ory-client-1.11.10/ory_client/models/error_flow_replaced.py +0 -107
  634. ory-client-1.11.10/ory_client/models/error_generic.py +0 -105
  635. ory-client-1.11.10/ory_client/models/error_o_auth2.py +0 -109
  636. ory-client-1.11.10/ory_client/models/event_stream.py +0 -112
  637. ory-client-1.11.10/ory_client/models/expanded_permission_tree.py +0 -125
  638. ory-client-1.11.10/ory_client/models/flow_error.py +0 -108
  639. ory-client-1.11.10/ory_client/models/generic_error.py +0 -126
  640. ory-client-1.11.10/ory_client/models/generic_error_content.py +0 -109
  641. ory-client-1.11.10/ory_client/models/generic_usage.py +0 -107
  642. ory-client-1.11.10/ory_client/models/get_attributes_count_response.py +0 -111
  643. ory-client-1.11.10/ory_client/models/get_managed_identity_schema_location.py +0 -101
  644. ory-client-1.11.10/ory_client/models/get_metrics_event_attributes_response.py +0 -103
  645. ory-client-1.11.10/ory_client/models/get_metrics_event_types_response.py +0 -103
  646. ory-client-1.11.10/ory_client/models/get_organization_response.py +0 -105
  647. ory-client-1.11.10/ory_client/models/get_project_events_body.py +0 -120
  648. ory-client-1.11.10/ory_client/models/get_project_events_response.py +0 -115
  649. ory-client-1.11.10/ory_client/models/get_project_metrics_response.py +0 -111
  650. ory-client-1.11.10/ory_client/models/get_session_activity_response.py +0 -111
  651. ory-client-1.11.10/ory_client/models/get_version200_response.py +0 -101
  652. ory-client-1.11.10/ory_client/models/health_not_ready_status.py +0 -101
  653. ory-client-1.11.10/ory_client/models/health_status.py +0 -101
  654. ory-client-1.11.10/ory_client/models/identity.py +0 -187
  655. ory-client-1.11.10/ory_client/models/identity_credentials.py +0 -122
  656. ory-client-1.11.10/ory_client/models/identity_credentials_code.py +0 -109
  657. ory-client-1.11.10/ory_client/models/identity_credentials_oidc.py +0 -109
  658. ory-client-1.11.10/ory_client/models/identity_credentials_oidc_provider.py +0 -111
  659. ory-client-1.11.10/ory_client/models/identity_credentials_password.py +0 -101
  660. ory-client-1.11.10/ory_client/models/identity_patch.py +0 -107
  661. ory-client-1.11.10/ory_client/models/identity_patch_response.py +0 -115
  662. ory-client-1.11.10/ory_client/models/identity_schema_container.py +0 -103
  663. ory-client-1.11.10/ory_client/models/identity_schema_preset.py +0 -103
  664. ory-client-1.11.10/ory_client/models/identity_with_credentials.py +0 -111
  665. ory-client-1.11.10/ory_client/models/identity_with_credentials_oidc.py +0 -105
  666. ory-client-1.11.10/ory_client/models/identity_with_credentials_oidc_config.py +0 -115
  667. ory-client-1.11.10/ory_client/models/identity_with_credentials_oidc_config_provider.py +0 -103
  668. ory-client-1.11.10/ory_client/models/identity_with_credentials_password.py +0 -105
  669. ory-client-1.11.10/ory_client/models/identity_with_credentials_password_config.py +0 -103
  670. ory-client-1.11.10/ory_client/models/internal_get_project_branding_body.py +0 -101
  671. ory-client-1.11.10/ory_client/models/internal_is_ax_welcome_screen_enabled_for_project_body.py +0 -103
  672. ory-client-1.11.10/ory_client/models/internal_is_owner_for_project_by_slug_body.py +0 -114
  673. ory-client-1.11.10/ory_client/models/internal_is_owner_for_project_by_slug_response.py +0 -101
  674. ory-client-1.11.10/ory_client/models/introspected_o_auth2_token.py +0 -127
  675. ory-client-1.11.10/ory_client/models/invoice.py +0 -125
  676. ory-client-1.11.10/ory_client/models/invoice_data_v1.py +0 -149
  677. ory-client-1.11.10/ory_client/models/is_owner_for_project_by_slug.py +0 -103
  678. ory-client-1.11.10/ory_client/models/json_patch.py +0 -119
  679. ory-client-1.11.10/ory_client/models/json_web_key.py +0 -133
  680. ory-client-1.11.10/ory_client/models/json_web_key_set.py +0 -109
  681. ory-client-1.11.10/ory_client/models/keto_namespace.py +0 -103
  682. ory-client-1.11.10/ory_client/models/line_item_v1.py +0 -120
  683. ory-client-1.11.10/ory_client/models/list_event_streams.py +0 -109
  684. ory-client-1.11.10/ory_client/models/list_invoices_response.py +0 -113
  685. ory-client-1.11.10/ory_client/models/list_organizations_response.py +0 -109
  686. ory-client-1.11.10/ory_client/models/list_workspace_projects.py +0 -113
  687. ory-client-1.11.10/ory_client/models/list_workspaces.py +0 -113
  688. ory-client-1.11.10/ory_client/models/login_flow.py +0 -165
  689. ory-client-1.11.10/ory_client/models/login_flow_state.py +0 -39
  690. ory-client-1.11.10/ory_client/models/logout_flow.py +0 -103
  691. ory-client-1.11.10/ory_client/models/managed_identity_schema.py +0 -120
  692. ory-client-1.11.10/ory_client/models/managed_identity_schema_validation_result.py +0 -103
  693. ory-client-1.11.10/ory_client/models/member_invite.py +0 -148
  694. ory-client-1.11.10/ory_client/models/message.py +0 -141
  695. ory-client-1.11.10/ory_client/models/message_dispatch.py +0 -119
  696. ory-client-1.11.10/ory_client/models/metrics_datapoint.py +0 -104
  697. ory-client-1.11.10/ory_client/models/money.py +0 -105
  698. ory-client-1.11.10/ory_client/models/namespace.py +0 -101
  699. ory-client-1.11.10/ory_client/models/needs_privileged_session_error.py +0 -107
  700. ory-client-1.11.10/ory_client/models/normalized_project.py +0 -171
  701. ory-client-1.11.10/ory_client/models/normalized_project_revision.py +0 -686
  702. ory-client-1.11.10/ory_client/models/normalized_project_revision_courier_channel.py +0 -145
  703. ory-client-1.11.10/ory_client/models/normalized_project_revision_hook.py +0 -140
  704. ory-client-1.11.10/ory_client/models/normalized_project_revision_identity_schema.py +0 -133
  705. ory-client-1.11.10/ory_client/models/normalized_project_revision_third_party_provider.py +0 -187
  706. ory-client-1.11.10/ory_client/models/normalized_project_revision_tokenizer_template.py +0 -133
  707. ory-client-1.11.10/ory_client/models/o_auth2_client.py +0 -352
  708. ory-client-1.11.10/ory_client/models/o_auth2_client_token_lifespans.py +0 -270
  709. ory-client-1.11.10/ory_client/models/o_auth2_consent_request.py +0 -133
  710. ory-client-1.11.10/ory_client/models/o_auth2_consent_request_open_id_connect_context.py +0 -109
  711. ory-client-1.11.10/ory_client/models/o_auth2_consent_session.py +0 -130
  712. ory-client-1.11.10/ory_client/models/o_auth2_consent_session_expires_at.py +0 -110
  713. ory-client-1.11.10/ory_client/models/o_auth2_login_request.py +0 -125
  714. ory-client-1.11.10/ory_client/models/o_auth2_logout_request.py +0 -115
  715. ory-client-1.11.10/ory_client/models/o_auth2_redirect_to.py +0 -101
  716. ory-client-1.11.10/ory_client/models/o_auth2_token_exchange.py +0 -111
  717. ory-client-1.11.10/ory_client/models/oidc_configuration.py +0 -169
  718. ory-client-1.11.10/ory_client/models/oidc_user_info.py +0 -137
  719. ory-client-1.11.10/ory_client/models/organization.py +0 -116
  720. ory-client-1.11.10/ory_client/models/organization_body.py +0 -103
  721. ory-client-1.11.10/ory_client/models/pagination.py +0 -104
  722. ory-client-1.11.10/ory_client/models/pagination_headers.py +0 -103
  723. ory-client-1.11.10/ory_client/models/parse_error.py +0 -112
  724. ory-client-1.11.10/ory_client/models/patch_identities_body.py +0 -109
  725. ory-client-1.11.10/ory_client/models/perform_native_logout_body.py +0 -101
  726. ory-client-1.11.10/ory_client/models/permissions_on_workspace.py +0 -101
  727. ory-client-1.11.10/ory_client/models/plan.py +0 -103
  728. ory-client-1.11.10/ory_client/models/plan_details.py +0 -128
  729. ory-client-1.11.10/ory_client/models/post_check_permission_body.py +0 -113
  730. ory-client-1.11.10/ory_client/models/post_check_permission_or_error_body.py +0 -113
  731. ory-client-1.11.10/ory_client/models/project.py +0 -157
  732. ory-client-1.11.10/ory_client/models/project_api_key.py +0 -126
  733. ory-client-1.11.10/ory_client/models/project_branding.py +0 -129
  734. ory-client-1.11.10/ory_client/models/project_branding_colors.py +0 -157
  735. ory-client-1.11.10/ory_client/models/project_branding_theme.py +0 -194
  736. ory-client-1.11.10/ory_client/models/project_cors.py +0 -103
  737. ory-client-1.11.10/ory_client/models/project_events_datapoint.py +0 -114
  738. ory-client-1.11.10/ory_client/models/project_host.py +0 -107
  739. ory-client-1.11.10/ory_client/models/project_member.py +0 -107
  740. ory-client-1.11.10/ory_client/models/project_metadata.py +0 -161
  741. ory-client-1.11.10/ory_client/models/project_service_identity.py +0 -101
  742. ory-client-1.11.10/ory_client/models/project_service_o_auth2.py +0 -101
  743. ory-client-1.11.10/ory_client/models/project_service_permission.py +0 -101
  744. ory-client-1.11.10/ory_client/models/project_services.py +0 -117
  745. ory-client-1.11.10/ory_client/models/quota_usage.py +0 -118
  746. ory-client-1.11.10/ory_client/models/recovery_code_for_identity.py +0 -106
  747. ory-client-1.11.10/ory_client/models/recovery_flow.py +0 -139
  748. ory-client-1.11.10/ory_client/models/recovery_flow_state.py +0 -39
  749. ory-client-1.11.10/ory_client/models/recovery_identity_address.py +0 -110
  750. ory-client-1.11.10/ory_client/models/recovery_link_for_identity.py +0 -104
  751. ory-client-1.11.10/ory_client/models/registration_flow.py +0 -156
  752. ory-client-1.11.10/ory_client/models/registration_flow_state.py +0 -39
  753. ory-client-1.11.10/ory_client/models/reject_o_auth2_request.py +0 -109
  754. ory-client-1.11.10/ory_client/models/relation_query.py +0 -113
  755. ory-client-1.11.10/ory_client/models/relationship.py +0 -113
  756. ory-client-1.11.10/ory_client/models/relationship_namespaces.py +0 -109
  757. ory-client-1.11.10/ory_client/models/relationship_patch.py +0 -117
  758. ory-client-1.11.10/ory_client/models/relationships.py +0 -111
  759. ory-client-1.11.10/ory_client/models/rfc6749_error_json.py +0 -109
  760. ory-client-1.11.10/ory_client/models/schema_patch.py +0 -103
  761. ory-client-1.11.10/ory_client/models/self_service_flow_expired_error.py +0 -112
  762. ory-client-1.11.10/ory_client/models/session.py +0 -141
  763. ory-client-1.11.10/ory_client/models/session_activity_datapoint.py +0 -105
  764. ory-client-1.11.10/ory_client/models/session_authentication_method.py +0 -121
  765. ory-client-1.11.10/ory_client/models/session_device.py +0 -107
  766. ory-client-1.11.10/ory_client/models/set_active_project_in_console_body.py +0 -101
  767. ory-client-1.11.10/ory_client/models/set_custom_domain_body.py +0 -109
  768. ory-client-1.11.10/ory_client/models/set_event_stream_body.py +0 -112
  769. ory-client-1.11.10/ory_client/models/set_project.py +0 -118
  770. ory-client-1.11.10/ory_client/models/set_project_branding_theme_body.py +0 -115
  771. ory-client-1.11.10/ory_client/models/settings_flow.py +0 -145
  772. ory-client-1.11.10/ory_client/models/settings_flow_state.py +0 -38
  773. ory-client-1.11.10/ory_client/models/source_position.py +0 -103
  774. ory-client-1.11.10/ory_client/models/subject_set.py +0 -105
  775. ory-client-1.11.10/ory_client/models/subscription.py +0 -179
  776. ory-client-1.11.10/ory_client/models/successful_code_exchange_response.py +0 -107
  777. ory-client-1.11.10/ory_client/models/successful_native_login.py +0 -117
  778. ory-client-1.11.10/ory_client/models/successful_native_registration.py +0 -123
  779. ory-client-1.11.10/ory_client/models/successful_project_update.py +0 -115
  780. ory-client-1.11.10/ory_client/models/tax_line_item.py +0 -103
  781. ory-client-1.11.10/ory_client/models/time_interval.py +0 -104
  782. ory-client-1.11.10/ory_client/models/token_pagination.py +0 -104
  783. ory-client-1.11.10/ory_client/models/token_pagination_headers.py +0 -103
  784. ory-client-1.11.10/ory_client/models/token_pagination_request_parameters.py +0 -104
  785. ory-client-1.11.10/ory_client/models/token_pagination_response_headers.py +0 -103
  786. ory-client-1.11.10/ory_client/models/trust_o_auth2_jwt_grant_issuer.py +0 -116
  787. ory-client-1.11.10/ory_client/models/trusted_o_auth2_jwt_grant_issuer.py +0 -120
  788. ory-client-1.11.10/ory_client/models/trusted_o_auth2_jwt_grant_json_web_key.py +0 -103
  789. ory-client-1.11.10/ory_client/models/ui_container.py +0 -123
  790. ory-client-1.11.10/ory_client/models/ui_node.py +0 -139
  791. ory-client-1.11.10/ory_client/models/ui_node_anchor_attributes.py +0 -118
  792. ory-client-1.11.10/ory_client/models/ui_node_attributes.py +0 -238
  793. ory-client-1.11.10/ory_client/models/ui_node_image_attributes.py +0 -116
  794. ory-client-1.11.10/ory_client/models/ui_node_input_attributes.py +0 -154
  795. ory-client-1.11.10/ory_client/models/ui_node_meta.py +0 -105
  796. ory-client-1.11.10/ory_client/models/ui_node_script_attributes.py +0 -124
  797. ory-client-1.11.10/ory_client/models/ui_node_text_attributes.py +0 -116
  798. ory-client-1.11.10/ory_client/models/ui_text.py +0 -114
  799. ory-client-1.11.10/ory_client/models/update_identity_body.py +0 -132
  800. ory-client-1.11.10/ory_client/models/update_login_flow_body.py +0 -286
  801. ory-client-1.11.10/ory_client/models/update_login_flow_with_code_method.py +0 -111
  802. ory-client-1.11.10/ory_client/models/update_login_flow_with_lookup_secret_method.py +0 -105
  803. ory-client-1.11.10/ory_client/models/update_login_flow_with_oidc_method.py +0 -115
  804. ory-client-1.11.10/ory_client/models/update_login_flow_with_passkey_method.py +0 -105
  805. ory-client-1.11.10/ory_client/models/update_login_flow_with_password_method.py +0 -111
  806. ory-client-1.11.10/ory_client/models/update_login_flow_with_totp_method.py +0 -107
  807. ory-client-1.11.10/ory_client/models/update_login_flow_with_web_authn_method.py +0 -109
  808. ory-client-1.11.10/ory_client/models/update_recovery_flow_body.py +0 -166
  809. ory-client-1.11.10/ory_client/models/update_recovery_flow_with_code_method.py +0 -116
  810. ory-client-1.11.10/ory_client/models/update_recovery_flow_with_link_method.py +0 -114
  811. ory-client-1.11.10/ory_client/models/update_registration_flow_body.py +0 -238
  812. ory-client-1.11.10/ory_client/models/update_registration_flow_with_code_method.py +0 -111
  813. ory-client-1.11.10/ory_client/models/update_registration_flow_with_oidc_method.py +0 -115
  814. ory-client-1.11.10/ory_client/models/update_registration_flow_with_passkey_method.py +0 -109
  815. ory-client-1.11.10/ory_client/models/update_registration_flow_with_password_method.py +0 -109
  816. ory-client-1.11.10/ory_client/models/update_registration_flow_with_profile_method.py +0 -109
  817. ory-client-1.11.10/ory_client/models/update_registration_flow_with_web_authn_method.py +0 -111
  818. ory-client-1.11.10/ory_client/models/update_settings_flow_body.py +0 -286
  819. ory-client-1.11.10/ory_client/models/update_settings_flow_with_lookup_method.py +0 -113
  820. ory-client-1.11.10/ory_client/models/update_settings_flow_with_oidc_method.py +0 -113
  821. ory-client-1.11.10/ory_client/models/update_settings_flow_with_passkey_method.py +0 -107
  822. ory-client-1.11.10/ory_client/models/update_settings_flow_with_password_method.py +0 -107
  823. ory-client-1.11.10/ory_client/models/update_settings_flow_with_profile_method.py +0 -107
  824. ory-client-1.11.10/ory_client/models/update_settings_flow_with_totp_method.py +0 -109
  825. ory-client-1.11.10/ory_client/models/update_settings_flow_with_web_authn_method.py +0 -111
  826. ory-client-1.11.10/ory_client/models/update_subscription_body.py +0 -112
  827. ory-client-1.11.10/ory_client/models/update_verification_flow_body.py +0 -166
  828. ory-client-1.11.10/ory_client/models/update_verification_flow_with_code_method.py +0 -116
  829. ory-client-1.11.10/ory_client/models/update_verification_flow_with_link_method.py +0 -114
  830. ory-client-1.11.10/ory_client/models/update_workspace_body.py +0 -101
  831. ory-client-1.11.10/ory_client/models/usage.py +0 -105
  832. ory-client-1.11.10/ory_client/models/verifiable_credential_priming_response.py +0 -115
  833. ory-client-1.11.10/ory_client/models/verifiable_credential_proof.py +0 -103
  834. ory-client-1.11.10/ory_client/models/verifiable_credential_response.py +0 -103
  835. ory-client-1.11.10/ory_client/models/verifiable_identity_address.py +0 -123
  836. ory-client-1.11.10/ory_client/models/verification_flow.py +0 -129
  837. ory-client-1.11.10/ory_client/models/verification_flow_state.py +0 -39
  838. ory-client-1.11.10/ory_client/models/version.py +0 -101
  839. ory-client-1.11.10/ory_client/models/warning.py +0 -103
  840. ory-client-1.11.10/ory_client/models/workspace.py +0 -122
  841. ory-client-1.11.10/ory_client/rest.py +0 -256
  842. ory-client-1.11.10/ory_client.egg-info/PKG-INFO +0 -13
  843. ory-client-1.11.10/pyproject.toml +0 -71
  844. ory-client-1.11.10/setup.py +0 -51
  845. ory-client-1.11.10/test/test_accept_o_auth2_consent_request.py +0 -64
  846. ory-client-1.11.10/test/test_accept_o_auth2_consent_request_session.py +0 -53
  847. ory-client-1.11.10/test/test_accept_o_auth2_login_request.py +0 -63
  848. ory-client-1.11.10/test/test_account_experience_configuration.py +0 -58
  849. ory-client-1.11.10/test/test_account_experience_theme_variables.py +0 -142
  850. ory-client-1.11.10/test/test_active_project_in_console.py +0 -52
  851. ory-client-1.11.10/test/test_add_project_to_workspace_body.py +0 -55
  852. ory-client-1.11.10/test/test_attribute.py +0 -53
  853. ory-client-1.11.10/test/test_attribute_filter.py +0 -54
  854. ory-client-1.11.10/test/test_attributes_count_datapoint.py +0 -55
  855. ory-client-1.11.10/test/test_authenticator_assurance_level.py +0 -34
  856. ory-client-1.11.10/test/test_batch_patch_identities_response.py +0 -57
  857. ory-client-1.11.10/test/test_billing_period_bucket.py +0 -110
  858. ory-client-1.11.10/test/test_check_opl_syntax_result.py +0 -61
  859. ory-client-1.11.10/test/test_check_permission_result.py +0 -53
  860. ory-client-1.11.10/test/test_cloud_account.py +0 -57
  861. ory-client-1.11.10/test/test_consistency_request_parameters.py +0 -52
  862. ory-client-1.11.10/test/test_continue_with.py +0 -61
  863. ory-client-1.11.10/test/test_continue_with_recovery_ui.py +0 -59
  864. ory-client-1.11.10/test/test_continue_with_recovery_ui_flow.py +0 -54
  865. ory-client-1.11.10/test/test_continue_with_set_ory_session_token.py +0 -55
  866. ory-client-1.11.10/test/test_continue_with_settings_ui.py +0 -57
  867. ory-client-1.11.10/test/test_continue_with_settings_ui_flow.py +0 -53
  868. ory-client-1.11.10/test/test_continue_with_verification_ui.py +0 -61
  869. ory-client-1.11.10/test/test_continue_with_verification_ui_flow.py +0 -56
  870. ory-client-1.11.10/test/test_courier_api.py +0 -46
  871. ory-client-1.11.10/test/test_courier_message_status.py +0 -34
  872. ory-client-1.11.10/test/test_courier_message_type.py +0 -34
  873. ory-client-1.11.10/test/test_create_custom_domain_body.py +0 -58
  874. ory-client-1.11.10/test/test_create_event_stream_body.py +0 -57
  875. ory-client-1.11.10/test/test_create_identity_body.py +0 -86
  876. ory-client-1.11.10/test/test_create_invite_response.py +0 -99
  877. ory-client-1.11.10/test/test_create_json_web_key_set.py +0 -57
  878. ory-client-1.11.10/test/test_create_project_api_key_request.py +0 -53
  879. ory-client-1.11.10/test/test_create_project_body.py +0 -56
  880. ory-client-1.11.10/test/test_create_project_branding.py +0 -86
  881. ory-client-1.11.10/test/test_create_project_member_invite_body.py +0 -52
  882. ory-client-1.11.10/test/test_create_project_normalized_payload.py +0 -388
  883. ory-client-1.11.10/test/test_create_recovery_code_for_identity_body.py +0 -55
  884. ory-client-1.11.10/test/test_create_recovery_link_for_identity_body.py +0 -54
  885. ory-client-1.11.10/test/test_create_relationship_body.py +0 -59
  886. ory-client-1.11.10/test/test_create_subscription_body.py +0 -59
  887. ory-client-1.11.10/test/test_create_subscription_common.py +0 -57
  888. ory-client-1.11.10/test/test_create_verifiable_credential_request_body.py +0 -58
  889. ory-client-1.11.10/test/test_create_workspace_body.py +0 -53
  890. ory-client-1.11.10/test/test_create_workspace_member_invite_body.py +0 -52
  891. ory-client-1.11.10/test/test_create_workspace_subscription_body.py +0 -57
  892. ory-client-1.11.10/test/test_credential_supported_draft00.py +0 -61
  893. ory-client-1.11.10/test/test_custom_domain.py +0 -66
  894. ory-client-1.11.10/test/test_delete_my_sessions_count.py +0 -52
  895. ory-client-1.11.10/test/test_email_template_data.py +0 -59
  896. ory-client-1.11.10/test/test_email_template_data_body.py +0 -55
  897. ory-client-1.11.10/test/test_error_authenticator_assurance_level_not_satisfied.py +0 -66
  898. ory-client-1.11.10/test/test_error_browser_location_change_required.py +0 -58
  899. ory-client-1.11.10/test/test_error_flow_replaced.py +0 -66
  900. ory-client-1.11.10/test/test_error_generic.py +0 -61
  901. ory-client-1.11.10/test/test_error_o_auth2.py +0 -56
  902. ory-client-1.11.10/test/test_event_stream.py +0 -57
  903. ory-client-1.11.10/test/test_events_api.py +0 -60
  904. ory-client-1.11.10/test/test_expanded_permission_tree.py +0 -84
  905. ory-client-1.11.10/test/test_flow_error.py +0 -56
  906. ory-client-1.11.10/test/test_frontend_api.py +0 -242
  907. ory-client-1.11.10/test/test_generic_error.py +0 -65
  908. ory-client-1.11.10/test/test_generic_error_content.py +0 -56
  909. ory-client-1.11.10/test/test_generic_usage.py +0 -61
  910. ory-client-1.11.10/test/test_get_attributes_count_response.py +0 -61
  911. ory-client-1.11.10/test/test_get_managed_identity_schema_location.py +0 -52
  912. ory-client-1.11.10/test/test_get_metrics_event_attributes_response.py +0 -57
  913. ory-client-1.11.10/test/test_get_metrics_event_types_response.py +0 -57
  914. ory-client-1.11.10/test/test_get_organization_response.py +0 -69
  915. ory-client-1.11.10/test/test_get_project_events_body.py +0 -64
  916. ory-client-1.11.10/test/test_get_project_events_response.py +0 -72
  917. ory-client-1.11.10/test/test_get_project_metrics_response.py +0 -61
  918. ory-client-1.11.10/test/test_get_session_activity_response.py +0 -63
  919. ory-client-1.11.10/test/test_get_version200_response.py +0 -53
  920. ory-client-1.11.10/test/test_health_not_ready_status.py +0 -54
  921. ory-client-1.11.10/test/test_health_status.py +0 -52
  922. ory-client-1.11.10/test/test_identity.py +0 -96
  923. ory-client-1.11.10/test/test_identity_api.py +0 -158
  924. ory-client-1.11.10/test/test_identity_credentials.py +0 -59
  925. ory-client-1.11.10/test/test_identity_credentials_code.py +0 -53
  926. ory-client-1.11.10/test/test_identity_credentials_oidc.py +0 -60
  927. ory-client-1.11.10/test/test_identity_credentials_oidc_provider.py +0 -57
  928. ory-client-1.11.10/test/test_identity_credentials_password.py +0 -52
  929. ory-client-1.11.10/test/test_identity_patch.py +0 -86
  930. ory-client-1.11.10/test/test_identity_patch_response.py +0 -54
  931. ory-client-1.11.10/test/test_identity_schema_container.py +0 -53
  932. ory-client-1.11.10/test/test_identity_schema_preset.py +0 -55
  933. ory-client-1.11.10/test/test_identity_with_credentials.py +0 -61
  934. ory-client-1.11.10/test/test_identity_with_credentials_oidc.py +0 -57
  935. ory-client-1.11.10/test/test_identity_with_credentials_oidc_config.py +0 -59
  936. ory-client-1.11.10/test/test_identity_with_credentials_oidc_config_provider.py +0 -55
  937. ory-client-1.11.10/test/test_identity_with_credentials_password.py +0 -54
  938. ory-client-1.11.10/test/test_identity_with_credentials_password_config.py +0 -53
  939. ory-client-1.11.10/test/test_internal_get_project_branding_body.py +0 -52
  940. ory-client-1.11.10/test/test_internal_is_ax_welcome_screen_enabled_for_project_body.py +0 -55
  941. ory-client-1.11.10/test/test_internal_is_owner_for_project_by_slug_body.py +0 -58
  942. ory-client-1.11.10/test/test_internal_is_owner_for_project_by_slug_response.py +0 -53
  943. ory-client-1.11.10/test/test_introspected_o_auth2_token.py +0 -70
  944. ory-client-1.11.10/test/test_invoice.py +0 -81
  945. ory-client-1.11.10/test/test_invoice_data_v1.py +0 -87
  946. ory-client-1.11.10/test/test_is_owner_for_project_by_slug.py +0 -55
  947. ory-client-1.11.10/test/test_json_patch.py +0 -57
  948. ory-client-1.11.10/test/test_json_web_key.py +0 -74
  949. ory-client-1.11.10/test/test_json_web_key_set.py +0 -73
  950. ory-client-1.11.10/test/test_jwk_api.py +0 -81
  951. ory-client-1.11.10/test/test_keto_namespace.py +0 -53
  952. ory-client-1.11.10/test/test_line_item_v1.py +0 -64
  953. ory-client-1.11.10/test/test_list_event_streams.py +0 -60
  954. ory-client-1.11.10/test/test_list_invoices_response.py +0 -137
  955. ory-client-1.11.10/test/test_list_organizations_response.py +0 -73
  956. ory-client-1.11.10/test/test_list_workspace_projects.py +0 -97
  957. ory-client-1.11.10/test/test_list_workspaces.py +0 -73
  958. ory-client-1.11.10/test/test_login_flow.py +0 -196
  959. ory-client-1.11.10/test/test_login_flow_state.py +0 -34
  960. ory-client-1.11.10/test/test_logout_flow.py +0 -55
  961. ory-client-1.11.10/test/test_managed_identity_schema.py +0 -64
  962. ory-client-1.11.10/test/test_managed_identity_schema_validation_result.py +0 -53
  963. ory-client-1.11.10/test/test_member_invite.py +0 -68
  964. ory-client-1.11.10/test/test_message.py +0 -81
  965. ory-client-1.11.10/test/test_message_dispatch.py +0 -62
  966. ory-client-1.11.10/test/test_metadata_api.py +0 -39
  967. ory-client-1.11.10/test/test_metrics_datapoint.py +0 -55
  968. ory-client-1.11.10/test/test_money.py +0 -54
  969. ory-client-1.11.10/test/test_namespace.py +0 -52
  970. ory-client-1.11.10/test/test_needs_privileged_session_error.py +0 -67
  971. ory-client-1.11.10/test/test_normalized_project.py +0 -684
  972. ory-client-1.11.10/test/test_normalized_project_revision.py +0 -385
  973. ory-client-1.11.10/test/test_normalized_project_revision_courier_channel.py +0 -67
  974. ory-client-1.11.10/test/test_normalized_project_revision_hook.py +0 -71
  975. ory-client-1.11.10/test/test_normalized_project_revision_identity_schema.py +0 -68
  976. ory-client-1.11.10/test/test_normalized_project_revision_third_party_provider.py +0 -79
  977. ory-client-1.11.10/test/test_normalized_project_revision_tokenizer_template.py +0 -59
  978. ory-client-1.11.10/test/test_o_auth2_api.py +0 -228
  979. ory-client-1.11.10/test/test_o_auth2_client.py +0 -115
  980. ory-client-1.11.10/test/test_o_auth2_client_token_lifespans.py +0 -61
  981. ory-client-1.11.10/test/test_o_auth2_consent_request.py +0 -134
  982. ory-client-1.11.10/test/test_o_auth2_consent_request_open_id_connect_context.py +0 -62
  983. ory-client-1.11.10/test/test_o_auth2_consent_session.py +0 -147
  984. ory-client-1.11.10/test/test_o_auth2_consent_session_expires_at.py +0 -56
  985. ory-client-1.11.10/test/test_o_auth2_login_request.py +0 -184
  986. ory-client-1.11.10/test/test_o_auth2_logout_request.py +0 -109
  987. ory-client-1.11.10/test/test_o_auth2_redirect_to.py +0 -53
  988. ory-client-1.11.10/test/test_o_auth2_token_exchange.py +0 -57
  989. ory-client-1.11.10/test/test_oidc_api.py +0 -88
  990. ory-client-1.11.10/test/test_oidc_configuration.py +0 -139
  991. ory-client-1.11.10/test/test_oidc_user_info.py +0 -70
  992. ory-client-1.11.10/test/test_organization.py +0 -67
  993. ory-client-1.11.10/test/test_organization_body.py +0 -55
  994. ory-client-1.11.10/test/test_pagination.py +0 -53
  995. ory-client-1.11.10/test/test_pagination_headers.py +0 -53
  996. ory-client-1.11.10/test/test_parse_error.py +0 -58
  997. ory-client-1.11.10/test/test_patch_identities_body.py +0 -89
  998. ory-client-1.11.10/test/test_perform_native_logout_body.py +0 -53
  999. ory-client-1.11.10/test/test_permission_api.py +0 -67
  1000. ory-client-1.11.10/test/test_permissions_on_workspace.py +0 -54
  1001. ory-client-1.11.10/test/test_plan.py +0 -55
  1002. ory-client-1.11.10/test/test_plan_details.py +0 -80
  1003. ory-client-1.11.10/test/test_post_check_permission_body.py +0 -59
  1004. ory-client-1.11.10/test/test_post_check_permission_or_error_body.py +0 -59
  1005. ory-client-1.11.10/test/test_project.py +0 -88
  1006. ory-client-1.11.10/test/test_project_api.py +0 -140
  1007. ory-client-1.11.10/test/test_project_api_key.py +0 -61
  1008. ory-client-1.11.10/test/test_project_branding.py +0 -599
  1009. ory-client-1.11.10/test/test_project_branding_colors.py +0 -80
  1010. ory-client-1.11.10/test/test_project_branding_theme.py +0 -189
  1011. ory-client-1.11.10/test/test_project_cors.py +0 -55
  1012. ory-client-1.11.10/test/test_project_events_datapoint.py +0 -65
  1013. ory-client-1.11.10/test/test_project_host.py +0 -57
  1014. ory-client-1.11.10/test/test_project_member.py +0 -59
  1015. ory-client-1.11.10/test/test_project_metadata.py +0 -81
  1016. ory-client-1.11.10/test/test_project_service_identity.py +0 -53
  1017. ory-client-1.11.10/test/test_project_service_o_auth2.py +0 -53
  1018. ory-client-1.11.10/test/test_project_service_permission.py +0 -53
  1019. ory-client-1.11.10/test/test_project_services.py +0 -57
  1020. ory-client-1.11.10/test/test_quota_usage.py +0 -63
  1021. ory-client-1.11.10/test/test_recovery_code_for_identity.py +0 -56
  1022. ory-client-1.11.10/test/test_recovery_flow.py +0 -119
  1023. ory-client-1.11.10/test/test_recovery_flow_state.py +0 -34
  1024. ory-client-1.11.10/test/test_recovery_identity_address.py +0 -59
  1025. ory-client-1.11.10/test/test_recovery_link_for_identity.py +0 -54
  1026. ory-client-1.11.10/test/test_registration_flow.py +0 -192
  1027. ory-client-1.11.10/test/test_registration_flow_state.py +0 -34
  1028. ory-client-1.11.10/test/test_reject_o_auth2_request.py +0 -56
  1029. ory-client-1.11.10/test/test_relation_query.py +0 -59
  1030. ory-client-1.11.10/test/test_relationship.py +0 -62
  1031. ory-client-1.11.10/test/test_relationship_api.py +0 -74
  1032. ory-client-1.11.10/test/test_relationship_namespaces.py +0 -55
  1033. ory-client-1.11.10/test/test_relationship_patch.py +0 -61
  1034. ory-client-1.11.10/test/test_relationships.py +0 -63
  1035. ory-client-1.11.10/test/test_rfc6749_error_json.py +0 -56
  1036. ory-client-1.11.10/test/test_schema_patch.py +0 -55
  1037. ory-client-1.11.10/test/test_self_service_flow_expired_error.py +0 -68
  1038. ory-client-1.11.10/test/test_session.py +0 -116
  1039. ory-client-1.11.10/test/test_session_activity_datapoint.py +0 -57
  1040. ory-client-1.11.10/test/test_session_authentication_method.py +0 -56
  1041. ory-client-1.11.10/test/test_session_device.py +0 -56
  1042. ory-client-1.11.10/test/test_set_active_project_in_console_body.py +0 -53
  1043. ory-client-1.11.10/test/test_set_custom_domain_body.py +0 -58
  1044. ory-client-1.11.10/test/test_set_event_stream_body.py +0 -57
  1045. ory-client-1.11.10/test/test_set_project.py +0 -87
  1046. ory-client-1.11.10/test/test_set_project_branding_theme_body.py +0 -86
  1047. ory-client-1.11.10/test/test_settings_flow.py +0 -203
  1048. ory-client-1.11.10/test/test_settings_flow_state.py +0 -34
  1049. ory-client-1.11.10/test/test_source_position.py +0 -53
  1050. ory-client-1.11.10/test/test_subject_set.py +0 -57
  1051. ory-client-1.11.10/test/test_subscription.py +0 -92
  1052. ory-client-1.11.10/test/test_successful_code_exchange_response.py +0 -182
  1053. ory-client-1.11.10/test/test_successful_native_login.py +0 -185
  1054. ory-client-1.11.10/test/test_successful_native_registration.py +0 -204
  1055. ory-client-1.11.10/test/test_successful_project_update.py +0 -105
  1056. ory-client-1.11.10/test/test_tax_line_item.py +0 -53
  1057. ory-client-1.11.10/test/test_time_interval.py +0 -55
  1058. ory-client-1.11.10/test/test_token_pagination.py +0 -53
  1059. ory-client-1.11.10/test/test_token_pagination_headers.py +0 -53
  1060. ory-client-1.11.10/test/test_token_pagination_request_parameters.py +0 -53
  1061. ory-client-1.11.10/test/test_token_pagination_response_headers.py +0 -53
  1062. ory-client-1.11.10/test/test_trust_o_auth2_jwt_grant_issuer.py +0 -99
  1063. ory-client-1.11.10/test/test_trusted_o_auth2_jwt_grant_issuer.py +0 -61
  1064. ory-client-1.11.10/test/test_trusted_o_auth2_jwt_grant_json_web_key.py +0 -53
  1065. ory-client-1.11.10/test/test_ui_container.py +0 -100
  1066. ory-client-1.11.10/test/test_ui_node.py +0 -83
  1067. ory-client-1.11.10/test/test_ui_node_anchor_attributes.py +0 -67
  1068. ory-client-1.11.10/test/test_ui_node_attributes.py +0 -110
  1069. ory-client-1.11.10/test/test_ui_node_image_attributes.py +0 -61
  1070. ory-client-1.11.10/test/test_ui_node_input_attributes.py +0 -70
  1071. ory-client-1.11.10/test/test_ui_node_meta.py +0 -56
  1072. ory-client-1.11.10/test/test_ui_node_script_attributes.py +0 -69
  1073. ory-client-1.11.10/test/test_ui_node_text_attributes.py +0 -65
  1074. ory-client-1.11.10/test/test_ui_text.py +0 -58
  1075. ory-client-1.11.10/test/test_update_identity_body.py +0 -68
  1076. ory-client-1.11.10/test/test_update_login_flow_body.py +0 -75
  1077. ory-client-1.11.10/test/test_update_login_flow_with_code_method.py +0 -59
  1078. ory-client-1.11.10/test/test_update_login_flow_with_lookup_secret_method.py +0 -56
  1079. ory-client-1.11.10/test/test_update_login_flow_with_oidc_method.py +0 -61
  1080. ory-client-1.11.10/test/test_update_login_flow_with_passkey_method.py +0 -55
  1081. ory-client-1.11.10/test/test_update_login_flow_with_password_method.py +0 -60
  1082. ory-client-1.11.10/test/test_update_login_flow_with_totp_method.py +0 -57
  1083. ory-client-1.11.10/test/test_update_login_flow_with_web_authn_method.py +0 -58
  1084. ory-client-1.11.10/test/test_update_recovery_flow_body.py +0 -58
  1085. ory-client-1.11.10/test/test_update_recovery_flow_with_code_method.py +0 -57
  1086. ory-client-1.11.10/test/test_update_recovery_flow_with_link_method.py +0 -57
  1087. ory-client-1.11.10/test/test_update_registration_flow_body.py +0 -69
  1088. ory-client-1.11.10/test/test_update_registration_flow_with_code_method.py +0 -59
  1089. ory-client-1.11.10/test/test_update_registration_flow_with_oidc_method.py +0 -61
  1090. ory-client-1.11.10/test/test_update_registration_flow_with_passkey_method.py +0 -58
  1091. ory-client-1.11.10/test/test_update_registration_flow_with_password_method.py +0 -59
  1092. ory-client-1.11.10/test/test_update_registration_flow_with_profile_method.py +0 -58
  1093. ory-client-1.11.10/test/test_update_registration_flow_with_web_authn_method.py +0 -59
  1094. ory-client-1.11.10/test/test_update_settings_flow_body.py +0 -74
  1095. ory-client-1.11.10/test/test_update_settings_flow_with_lookup_method.py +0 -59
  1096. ory-client-1.11.10/test/test_update_settings_flow_with_oidc_method.py +0 -59
  1097. ory-client-1.11.10/test/test_update_settings_flow_with_passkey_method.py +0 -56
  1098. ory-client-1.11.10/test/test_update_settings_flow_with_password_method.py +0 -57
  1099. ory-client-1.11.10/test/test_update_settings_flow_with_profile_method.py +0 -57
  1100. ory-client-1.11.10/test/test_update_settings_flow_with_totp_method.py +0 -57
  1101. ory-client-1.11.10/test/test_update_settings_flow_with_web_authn_method.py +0 -58
  1102. ory-client-1.11.10/test/test_update_subscription_body.py +0 -56
  1103. ory-client-1.11.10/test/test_update_verification_flow_body.py +0 -58
  1104. ory-client-1.11.10/test/test_update_verification_flow_with_code_method.py +0 -57
  1105. ory-client-1.11.10/test/test_update_verification_flow_with_link_method.py +0 -57
  1106. ory-client-1.11.10/test/test_update_workspace_body.py +0 -53
  1107. ory-client-1.11.10/test/test_usage.py +0 -57
  1108. ory-client-1.11.10/test/test_verifiable_credential_priming_response.py +0 -59
  1109. ory-client-1.11.10/test/test_verifiable_credential_proof.py +0 -53
  1110. ory-client-1.11.10/test/test_verifiable_credential_response.py +0 -53
  1111. ory-client-1.11.10/test/test_verifiable_identity_address.py +0 -63
  1112. ory-client-1.11.10/test/test_verification_flow.py +0 -113
  1113. ory-client-1.11.10/test/test_verification_flow_state.py +0 -34
  1114. ory-client-1.11.10/test/test_version.py +0 -52
  1115. ory-client-1.11.10/test/test_warning.py +0 -53
  1116. ory-client-1.11.10/test/test_wellknown_api.py +0 -39
  1117. ory-client-1.11.10/test/test_workspace.py +0 -61
  1118. ory-client-1.11.10/test/test_workspace_api.py +0 -67
  1119. {ory-client-1.11.10 → ory-client-1.11.11}/ory_client/api/__init__.py +0 -0
  1120. {ory-client-1.11.10 → ory-client-1.11.11}/ory_client/api_response.py +0 -0
  1121. {ory-client-1.11.10 → ory-client-1.11.11}/ory_client.egg-info/SOURCES.txt +0 -0
  1122. {ory-client-1.11.10 → ory-client-1.11.11}/ory_client.egg-info/dependency_links.txt +0 -0
  1123. {ory-client-1.11.10 → ory-client-1.11.11}/ory_client.egg-info/requires.txt +0 -0
  1124. {ory-client-1.11.10 → ory-client-1.11.11}/ory_client.egg-info/top_level.txt +0 -0
  1125. {ory-client-1.11.10 → ory-client-1.11.11}/setup.cfg +0 -0
@@ -0,0 +1,13 @@
1
+ Metadata-Version: 2.1
2
+ Name: ory-client
3
+ Version: 1.11.11
4
+ Summary: Ory APIs
5
+ Home-page: https://github.com/ory/sdk
6
+ Author: API Support
7
+ Author-email: support@ory.sh
8
+ License: Apache 2.0
9
+ Description: 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.
10
+
11
+ Keywords: OpenAPI,OpenAPI-Generator,Ory APIs
12
+ Platform: UNKNOWN
13
+ Description-Content-Type: text/markdown
@@ -0,0 +1,540 @@
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.11.11
9
+ - Package version: v1.11.11
10
+ - Generator version: 7.4.0
11
+ - Build package: org.openapitools.codegen.languages.PythonClientCodegen
12
+
13
+ ## Requirements.
14
+
15
+ Python 3.7+
16
+
17
+ ## Installation & Usage
18
+ ### pip install
19
+
20
+ If the python package is hosted on a repository, you can install directly using:
21
+
22
+ ```sh
23
+ pip install git+https://github.com/ory/sdk.git
24
+ ```
25
+ (you may need to run `pip` with root permission: `sudo pip install git+https://github.com/ory/sdk.git`)
26
+
27
+ Then import the package:
28
+ ```python
29
+ import ory_client
30
+ ```
31
+
32
+ ### Setuptools
33
+
34
+ Install via [Setuptools](http://pypi.python.org/pypi/setuptools).
35
+
36
+ ```sh
37
+ python setup.py install --user
38
+ ```
39
+ (or `sudo python setup.py install` to install the package for all users)
40
+
41
+ Then import the package:
42
+ ```python
43
+ import ory_client
44
+ ```
45
+
46
+ ### Tests
47
+
48
+ Execute `pytest` to run the tests.
49
+
50
+ ## Getting Started
51
+
52
+ Please follow the [installation procedure](#installation--usage) and then run the following:
53
+
54
+ ```python
55
+
56
+ import ory_client
57
+ from ory_client.rest import ApiException
58
+ from pprint import pprint
59
+
60
+ # Defining the host is optional and defaults to https://.projects.oryapis.com
61
+ # See configuration.py for a list of all supported configuration parameters.
62
+ configuration = ory_client.Configuration(
63
+ host = "https://.projects.oryapis.com"
64
+ )
65
+
66
+ # The client must configure the authentication and authorization parameters
67
+ # in accordance with the API server security policy.
68
+ # Examples for each auth method are provided below, use the example that
69
+ # satisfies your auth use case.
70
+
71
+ # Configure Bearer authorization: oryAccessToken
72
+ configuration = ory_client.Configuration(
73
+ access_token = os.environ["BEARER_TOKEN"]
74
+ )
75
+
76
+
77
+ # Enter a context with an instance of the API client
78
+ with ory_client.ApiClient(configuration) as api_client:
79
+ # Create an instance of the API class
80
+ api_instance = ory_client.CourierApi(api_client)
81
+ id = 'id_example' # str | MessageID is the ID of the message.
82
+
83
+ try:
84
+ # Get a Message
85
+ api_response = api_instance.get_courier_message(id)
86
+ print("The response of CourierApi->get_courier_message:\n")
87
+ pprint(api_response)
88
+ except ApiException as e:
89
+ print("Exception when calling CourierApi->get_courier_message: %s\n" % e)
90
+
91
+ ```
92
+
93
+ ## Documentation for API Endpoints
94
+
95
+ All URIs are relative to *https://.projects.oryapis.com*
96
+
97
+ Class | Method | HTTP request | Description
98
+ ------------ | ------------- | ------------- | -------------
99
+ *CourierApi* | [**get_courier_message**](docs/CourierApi.md#get_courier_message) | **GET** /admin/courier/messages/{id} | Get a Message
100
+ *CourierApi* | [**list_courier_messages**](docs/CourierApi.md#list_courier_messages) | **GET** /admin/courier/messages | List Messages
101
+ *EventsApi* | [**create_event_stream**](docs/EventsApi.md#create_event_stream) | **POST** /projects/{project_id}/eventstreams | Create an event stream for your project.
102
+ *EventsApi* | [**delete_event_stream**](docs/EventsApi.md#delete_event_stream) | **DELETE** /projects/{project_id}/eventstreams/{event_stream_id} | Remove an event stream from a project
103
+ *EventsApi* | [**list_event_streams**](docs/EventsApi.md#list_event_streams) | **GET** /projects/{project_id}/eventstreams | List all event streams for the project. This endpoint is not paginated.
104
+ *EventsApi* | [**set_event_stream**](docs/EventsApi.md#set_event_stream) | **PUT** /projects/{project_id}/eventstreams/{event_stream_id} | Update an event stream for a project.
105
+ *FrontendApi* | [**create_browser_login_flow**](docs/FrontendApi.md#create_browser_login_flow) | **GET** /self-service/login/browser | Create Login Flow for Browsers
106
+ *FrontendApi* | [**create_browser_logout_flow**](docs/FrontendApi.md#create_browser_logout_flow) | **GET** /self-service/logout/browser | Create a Logout URL for Browsers
107
+ *FrontendApi* | [**create_browser_recovery_flow**](docs/FrontendApi.md#create_browser_recovery_flow) | **GET** /self-service/recovery/browser | Create Recovery Flow for Browsers
108
+ *FrontendApi* | [**create_browser_registration_flow**](docs/FrontendApi.md#create_browser_registration_flow) | **GET** /self-service/registration/browser | Create Registration Flow for Browsers
109
+ *FrontendApi* | [**create_browser_settings_flow**](docs/FrontendApi.md#create_browser_settings_flow) | **GET** /self-service/settings/browser | Create Settings Flow for Browsers
110
+ *FrontendApi* | [**create_browser_verification_flow**](docs/FrontendApi.md#create_browser_verification_flow) | **GET** /self-service/verification/browser | Create Verification Flow for Browser Clients
111
+ *FrontendApi* | [**create_native_login_flow**](docs/FrontendApi.md#create_native_login_flow) | **GET** /self-service/login/api | Create Login Flow for Native Apps
112
+ *FrontendApi* | [**create_native_recovery_flow**](docs/FrontendApi.md#create_native_recovery_flow) | **GET** /self-service/recovery/api | Create Recovery Flow for Native Apps
113
+ *FrontendApi* | [**create_native_registration_flow**](docs/FrontendApi.md#create_native_registration_flow) | **GET** /self-service/registration/api | Create Registration Flow for Native Apps
114
+ *FrontendApi* | [**create_native_settings_flow**](docs/FrontendApi.md#create_native_settings_flow) | **GET** /self-service/settings/api | Create Settings Flow for Native Apps
115
+ *FrontendApi* | [**create_native_verification_flow**](docs/FrontendApi.md#create_native_verification_flow) | **GET** /self-service/verification/api | Create Verification Flow for Native Apps
116
+ *FrontendApi* | [**disable_my_other_sessions**](docs/FrontendApi.md#disable_my_other_sessions) | **DELETE** /sessions | Disable my other sessions
117
+ *FrontendApi* | [**disable_my_session**](docs/FrontendApi.md#disable_my_session) | **DELETE** /sessions/{id} | Disable one of my sessions
118
+ *FrontendApi* | [**exchange_session_token**](docs/FrontendApi.md#exchange_session_token) | **GET** /sessions/token-exchange | Exchange Session Token
119
+ *FrontendApi* | [**get_flow_error**](docs/FrontendApi.md#get_flow_error) | **GET** /self-service/errors | Get User-Flow Errors
120
+ *FrontendApi* | [**get_login_flow**](docs/FrontendApi.md#get_login_flow) | **GET** /self-service/login/flows | Get Login Flow
121
+ *FrontendApi* | [**get_recovery_flow**](docs/FrontendApi.md#get_recovery_flow) | **GET** /self-service/recovery/flows | Get Recovery Flow
122
+ *FrontendApi* | [**get_registration_flow**](docs/FrontendApi.md#get_registration_flow) | **GET** /self-service/registration/flows | Get Registration Flow
123
+ *FrontendApi* | [**get_settings_flow**](docs/FrontendApi.md#get_settings_flow) | **GET** /self-service/settings/flows | Get Settings Flow
124
+ *FrontendApi* | [**get_verification_flow**](docs/FrontendApi.md#get_verification_flow) | **GET** /self-service/verification/flows | Get Verification Flow
125
+ *FrontendApi* | [**get_web_authn_java_script**](docs/FrontendApi.md#get_web_authn_java_script) | **GET** /.well-known/ory/webauthn.js | Get WebAuthn JavaScript
126
+ *FrontendApi* | [**list_my_sessions**](docs/FrontendApi.md#list_my_sessions) | **GET** /sessions | Get My Active Sessions
127
+ *FrontendApi* | [**perform_native_logout**](docs/FrontendApi.md#perform_native_logout) | **DELETE** /self-service/logout/api | Perform Logout for Native Apps
128
+ *FrontendApi* | [**to_session**](docs/FrontendApi.md#to_session) | **GET** /sessions/whoami | Check Who the Current HTTP Session Belongs To
129
+ *FrontendApi* | [**update_login_flow**](docs/FrontendApi.md#update_login_flow) | **POST** /self-service/login | Submit a Login Flow
130
+ *FrontendApi* | [**update_logout_flow**](docs/FrontendApi.md#update_logout_flow) | **GET** /self-service/logout | Update Logout Flow
131
+ *FrontendApi* | [**update_recovery_flow**](docs/FrontendApi.md#update_recovery_flow) | **POST** /self-service/recovery | Update Recovery Flow
132
+ *FrontendApi* | [**update_registration_flow**](docs/FrontendApi.md#update_registration_flow) | **POST** /self-service/registration | Update Registration Flow
133
+ *FrontendApi* | [**update_settings_flow**](docs/FrontendApi.md#update_settings_flow) | **POST** /self-service/settings | Complete Settings Flow
134
+ *FrontendApi* | [**update_verification_flow**](docs/FrontendApi.md#update_verification_flow) | **POST** /self-service/verification | Complete Verification Flow
135
+ *IdentityApi* | [**batch_patch_identities**](docs/IdentityApi.md#batch_patch_identities) | **PATCH** /admin/identities | Create multiple identities
136
+ *IdentityApi* | [**create_identity**](docs/IdentityApi.md#create_identity) | **POST** /admin/identities | Create an Identity
137
+ *IdentityApi* | [**create_recovery_code_for_identity**](docs/IdentityApi.md#create_recovery_code_for_identity) | **POST** /admin/recovery/code | Create a Recovery Code
138
+ *IdentityApi* | [**create_recovery_link_for_identity**](docs/IdentityApi.md#create_recovery_link_for_identity) | **POST** /admin/recovery/link | Create a Recovery Link
139
+ *IdentityApi* | [**delete_identity**](docs/IdentityApi.md#delete_identity) | **DELETE** /admin/identities/{id} | Delete an Identity
140
+ *IdentityApi* | [**delete_identity_credentials**](docs/IdentityApi.md#delete_identity_credentials) | **DELETE** /admin/identities/{id}/credentials/{type} | Delete a credential for a specific identity
141
+ *IdentityApi* | [**delete_identity_sessions**](docs/IdentityApi.md#delete_identity_sessions) | **DELETE** /admin/identities/{id}/sessions | Delete & Invalidate an Identity's Sessions
142
+ *IdentityApi* | [**disable_session**](docs/IdentityApi.md#disable_session) | **DELETE** /admin/sessions/{id} | Deactivate a Session
143
+ *IdentityApi* | [**extend_session**](docs/IdentityApi.md#extend_session) | **PATCH** /admin/sessions/{id}/extend | Extend a Session
144
+ *IdentityApi* | [**get_identity**](docs/IdentityApi.md#get_identity) | **GET** /admin/identities/{id} | Get an Identity
145
+ *IdentityApi* | [**get_identity_schema**](docs/IdentityApi.md#get_identity_schema) | **GET** /schemas/{id} | Get Identity JSON Schema
146
+ *IdentityApi* | [**get_session**](docs/IdentityApi.md#get_session) | **GET** /admin/sessions/{id} | Get Session
147
+ *IdentityApi* | [**list_identities**](docs/IdentityApi.md#list_identities) | **GET** /admin/identities | List Identities
148
+ *IdentityApi* | [**list_identity_schemas**](docs/IdentityApi.md#list_identity_schemas) | **GET** /schemas | Get all Identity Schemas
149
+ *IdentityApi* | [**list_identity_sessions**](docs/IdentityApi.md#list_identity_sessions) | **GET** /admin/identities/{id}/sessions | List an Identity's Sessions
150
+ *IdentityApi* | [**list_sessions**](docs/IdentityApi.md#list_sessions) | **GET** /admin/sessions | List All Sessions
151
+ *IdentityApi* | [**patch_identity**](docs/IdentityApi.md#patch_identity) | **PATCH** /admin/identities/{id} | Patch an Identity
152
+ *IdentityApi* | [**update_identity**](docs/IdentityApi.md#update_identity) | **PUT** /admin/identities/{id} | Update an Identity
153
+ *JwkApi* | [**create_json_web_key_set**](docs/JwkApi.md#create_json_web_key_set) | **POST** /admin/keys/{set} | Create JSON Web Key
154
+ *JwkApi* | [**delete_json_web_key**](docs/JwkApi.md#delete_json_web_key) | **DELETE** /admin/keys/{set}/{kid} | Delete JSON Web Key
155
+ *JwkApi* | [**delete_json_web_key_set**](docs/JwkApi.md#delete_json_web_key_set) | **DELETE** /admin/keys/{set} | Delete JSON Web Key Set
156
+ *JwkApi* | [**get_json_web_key**](docs/JwkApi.md#get_json_web_key) | **GET** /admin/keys/{set}/{kid} | Get JSON Web Key
157
+ *JwkApi* | [**get_json_web_key_set**](docs/JwkApi.md#get_json_web_key_set) | **GET** /admin/keys/{set} | Retrieve a JSON Web Key Set
158
+ *JwkApi* | [**set_json_web_key**](docs/JwkApi.md#set_json_web_key) | **PUT** /admin/keys/{set}/{kid} | Set JSON Web Key
159
+ *JwkApi* | [**set_json_web_key_set**](docs/JwkApi.md#set_json_web_key_set) | **PUT** /admin/keys/{set} | Update a JSON Web Key Set
160
+ *MetadataApi* | [**get_version**](docs/MetadataApi.md#get_version) | **GET** /version | Return Running Software Version.
161
+ *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
162
+ *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
163
+ *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
164
+ *OAuth2Api* | [**create_o_auth2_client**](docs/OAuth2Api.md#create_o_auth2_client) | **POST** /admin/clients | Create OAuth 2.0 Client
165
+ *OAuth2Api* | [**delete_o_auth2_client**](docs/OAuth2Api.md#delete_o_auth2_client) | **DELETE** /admin/clients/{id} | Delete OAuth 2.0 Client
166
+ *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
167
+ *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
168
+ *OAuth2Api* | [**get_o_auth2_client**](docs/OAuth2Api.md#get_o_auth2_client) | **GET** /admin/clients/{id} | Get an OAuth 2.0 Client
169
+ *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
170
+ *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
171
+ *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
172
+ *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
173
+ *OAuth2Api* | [**introspect_o_auth2_token**](docs/OAuth2Api.md#introspect_o_auth2_token) | **POST** /admin/oauth2/introspect | Introspect OAuth2 Access and Refresh Tokens
174
+ *OAuth2Api* | [**list_o_auth2_clients**](docs/OAuth2Api.md#list_o_auth2_clients) | **GET** /admin/clients | List OAuth 2.0 Clients
175
+ *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
176
+ *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
177
+ *OAuth2Api* | [**o_auth2_authorize**](docs/OAuth2Api.md#o_auth2_authorize) | **GET** /oauth2/auth | OAuth 2.0 Authorize Endpoint
178
+ *OAuth2Api* | [**oauth2_token_exchange**](docs/OAuth2Api.md#oauth2_token_exchange) | **POST** /oauth2/token | The OAuth 2.0 Token Endpoint
179
+ *OAuth2Api* | [**patch_o_auth2_client**](docs/OAuth2Api.md#patch_o_auth2_client) | **PATCH** /admin/clients/{id} | Patch OAuth 2.0 Client
180
+ *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
181
+ *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
182
+ *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
183
+ *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
184
+ *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
185
+ *OAuth2Api* | [**revoke_o_auth2_token**](docs/OAuth2Api.md#revoke_o_auth2_token) | **POST** /oauth2/revoke | Revoke OAuth 2.0 Access or Refresh Token
186
+ *OAuth2Api* | [**set_o_auth2_client**](docs/OAuth2Api.md#set_o_auth2_client) | **PUT** /admin/clients/{id} | Set OAuth 2.0 Client
187
+ *OAuth2Api* | [**set_o_auth2_client_lifespans**](docs/OAuth2Api.md#set_o_auth2_client_lifespans) | **PUT** /admin/clients/{id}/lifespans | Set OAuth2 Client Token Lifespans
188
+ *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
189
+ *OidcApi* | [**create_oidc_dynamic_client**](docs/OidcApi.md#create_oidc_dynamic_client) | **POST** /oauth2/register | Register OAuth2 Client using OpenID Dynamic Client Registration
190
+ *OidcApi* | [**create_verifiable_credential**](docs/OidcApi.md#create_verifiable_credential) | **POST** /credentials | Issues a Verifiable Credential
191
+ *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
192
+ *OidcApi* | [**discover_oidc_configuration**](docs/OidcApi.md#discover_oidc_configuration) | **GET** /.well-known/openid-configuration | OpenID Connect Discovery
193
+ *OidcApi* | [**get_oidc_dynamic_client**](docs/OidcApi.md#get_oidc_dynamic_client) | **GET** /oauth2/register/{id} | Get OAuth2 Client using OpenID Dynamic Client Registration
194
+ *OidcApi* | [**get_oidc_user_info**](docs/OidcApi.md#get_oidc_user_info) | **GET** /userinfo | OpenID Connect Userinfo
195
+ *OidcApi* | [**revoke_oidc_session**](docs/OidcApi.md#revoke_oidc_session) | **GET** /oauth2/sessions/logout | OpenID Connect Front- and Back-channel Enabled Logout
196
+ *OidcApi* | [**set_oidc_dynamic_client**](docs/OidcApi.md#set_oidc_dynamic_client) | **PUT** /oauth2/register/{id} | Set OAuth2 Client using OpenID Dynamic Client Registration
197
+ *PermissionApi* | [**check_permission**](docs/PermissionApi.md#check_permission) | **GET** /relation-tuples/check/openapi | Check a permission
198
+ *PermissionApi* | [**check_permission_or_error**](docs/PermissionApi.md#check_permission_or_error) | **GET** /relation-tuples/check | Check a permission
199
+ *PermissionApi* | [**expand_permissions**](docs/PermissionApi.md#expand_permissions) | **GET** /relation-tuples/expand | Expand a Relationship into permissions.
200
+ *PermissionApi* | [**post_check_permission**](docs/PermissionApi.md#post_check_permission) | **POST** /relation-tuples/check/openapi | Check a permission
201
+ *PermissionApi* | [**post_check_permission_or_error**](docs/PermissionApi.md#post_check_permission_or_error) | **POST** /relation-tuples/check | Check a permission
202
+ *ProjectApi* | [**create_organization**](docs/ProjectApi.md#create_organization) | **POST** /projects/{project_id}/organizations |
203
+ *ProjectApi* | [**create_project**](docs/ProjectApi.md#create_project) | **POST** /projects | Create a Project
204
+ *ProjectApi* | [**create_project_api_key**](docs/ProjectApi.md#create_project_api_key) | **POST** /projects/{project}/tokens | Create project API token
205
+ *ProjectApi* | [**delete_organization**](docs/ProjectApi.md#delete_organization) | **DELETE** /projects/{project_id}/organizations/{organization_id} |
206
+ *ProjectApi* | [**delete_project_api_key**](docs/ProjectApi.md#delete_project_api_key) | **DELETE** /projects/{project}/tokens/{token_id} | Delete project API token
207
+ *ProjectApi* | [**get_organization**](docs/ProjectApi.md#get_organization) | **GET** /projects/{project_id}/organizations/{organization_id} | Returns a B2B SSO Organization for a project by its ID
208
+ *ProjectApi* | [**get_project**](docs/ProjectApi.md#get_project) | **GET** /projects/{project_id} | Get a Project
209
+ *ProjectApi* | [**get_project_members**](docs/ProjectApi.md#get_project_members) | **GET** /projects/{project}/members | Get all members associated with this project
210
+ *ProjectApi* | [**list_organizations**](docs/ProjectApi.md#list_organizations) | **GET** /projects/{project_id}/organizations |
211
+ *ProjectApi* | [**list_project_api_keys**](docs/ProjectApi.md#list_project_api_keys) | **GET** /projects/{project}/tokens | List a project's API Tokens
212
+ *ProjectApi* | [**list_projects**](docs/ProjectApi.md#list_projects) | **GET** /projects | List All Projects
213
+ *ProjectApi* | [**patch_project**](docs/ProjectApi.md#patch_project) | **PATCH** /projects/{project_id} | Patch an Ory Network Project Configuration
214
+ *ProjectApi* | [**purge_project**](docs/ProjectApi.md#purge_project) | **DELETE** /projects/{project_id} | Irrecoverably purge a project
215
+ *ProjectApi* | [**remove_project_member**](docs/ProjectApi.md#remove_project_member) | **DELETE** /projects/{project}/members/{member} | Remove a member associated with this project
216
+ *ProjectApi* | [**set_project**](docs/ProjectApi.md#set_project) | **PUT** /projects/{project_id} | Update an Ory Network Project Configuration
217
+ *ProjectApi* | [**update_organization**](docs/ProjectApi.md#update_organization) | **PUT** /projects/{project_id}/organizations/{organization_id} |
218
+ *RelationshipApi* | [**check_opl_syntax**](docs/RelationshipApi.md#check_opl_syntax) | **POST** /opl/syntax/check | Check the syntax of an OPL file
219
+ *RelationshipApi* | [**create_relationship**](docs/RelationshipApi.md#create_relationship) | **PUT** /admin/relation-tuples | Create a Relationship
220
+ *RelationshipApi* | [**delete_relationships**](docs/RelationshipApi.md#delete_relationships) | **DELETE** /admin/relation-tuples | Delete Relationships
221
+ *RelationshipApi* | [**get_relationships**](docs/RelationshipApi.md#get_relationships) | **GET** /relation-tuples | Query relationships
222
+ *RelationshipApi* | [**list_relationship_namespaces**](docs/RelationshipApi.md#list_relationship_namespaces) | **GET** /namespaces | Query namespaces
223
+ *RelationshipApi* | [**patch_relationships**](docs/RelationshipApi.md#patch_relationships) | **PATCH** /admin/relation-tuples | Patch Multiple Relationships
224
+ *WellknownApi* | [**discover_json_web_keys**](docs/WellknownApi.md#discover_json_web_keys) | **GET** /.well-known/jwks.json | Discover Well-Known JSON Web Keys
225
+ *WorkspaceApi* | [**create_workspace**](docs/WorkspaceApi.md#create_workspace) | **POST** /workspaces | Create a new workspace
226
+ *WorkspaceApi* | [**get_workspace**](docs/WorkspaceApi.md#get_workspace) | **GET** /workspaces/{workspace} | Get a workspace
227
+ *WorkspaceApi* | [**list_workspace_projects**](docs/WorkspaceApi.md#list_workspace_projects) | **GET** /workspaces/{workspace}/projects | List all projects of a workspace
228
+ *WorkspaceApi* | [**list_workspaces**](docs/WorkspaceApi.md#list_workspaces) | **GET** /workspaces | List workspaces the user is a member of
229
+ *WorkspaceApi* | [**update_workspace**](docs/WorkspaceApi.md#update_workspace) | **PUT** /workspaces/{workspace} | Update an workspace
230
+
231
+
232
+ ## Documentation For Models
233
+
234
+ - [AcceptOAuth2ConsentRequest](docs/AcceptOAuth2ConsentRequest.md)
235
+ - [AcceptOAuth2ConsentRequestSession](docs/AcceptOAuth2ConsentRequestSession.md)
236
+ - [AcceptOAuth2LoginRequest](docs/AcceptOAuth2LoginRequest.md)
237
+ - [AccountExperienceConfiguration](docs/AccountExperienceConfiguration.md)
238
+ - [AccountExperienceThemeVariables](docs/AccountExperienceThemeVariables.md)
239
+ - [ActiveProjectInConsole](docs/ActiveProjectInConsole.md)
240
+ - [AddProjectToWorkspaceBody](docs/AddProjectToWorkspaceBody.md)
241
+ - [Attribute](docs/Attribute.md)
242
+ - [AttributeFilter](docs/AttributeFilter.md)
243
+ - [AttributesCountDatapoint](docs/AttributesCountDatapoint.md)
244
+ - [AuthenticatorAssuranceLevel](docs/AuthenticatorAssuranceLevel.md)
245
+ - [BatchPatchIdentitiesResponse](docs/BatchPatchIdentitiesResponse.md)
246
+ - [BillingPeriodBucket](docs/BillingPeriodBucket.md)
247
+ - [CheckOplSyntaxResult](docs/CheckOplSyntaxResult.md)
248
+ - [CheckPermissionResult](docs/CheckPermissionResult.md)
249
+ - [CloudAccount](docs/CloudAccount.md)
250
+ - [ConsistencyRequestParameters](docs/ConsistencyRequestParameters.md)
251
+ - [ContinueWith](docs/ContinueWith.md)
252
+ - [ContinueWithRecoveryUi](docs/ContinueWithRecoveryUi.md)
253
+ - [ContinueWithRecoveryUiFlow](docs/ContinueWithRecoveryUiFlow.md)
254
+ - [ContinueWithSetOrySessionToken](docs/ContinueWithSetOrySessionToken.md)
255
+ - [ContinueWithSettingsUi](docs/ContinueWithSettingsUi.md)
256
+ - [ContinueWithSettingsUiFlow](docs/ContinueWithSettingsUiFlow.md)
257
+ - [ContinueWithVerificationUi](docs/ContinueWithVerificationUi.md)
258
+ - [ContinueWithVerificationUiFlow](docs/ContinueWithVerificationUiFlow.md)
259
+ - [CourierMessageStatus](docs/CourierMessageStatus.md)
260
+ - [CourierMessageType](docs/CourierMessageType.md)
261
+ - [CreateCustomDomainBody](docs/CreateCustomDomainBody.md)
262
+ - [CreateEventStreamBody](docs/CreateEventStreamBody.md)
263
+ - [CreateIdentityBody](docs/CreateIdentityBody.md)
264
+ - [CreateInviteResponse](docs/CreateInviteResponse.md)
265
+ - [CreateJsonWebKeySet](docs/CreateJsonWebKeySet.md)
266
+ - [CreateProjectApiKeyRequest](docs/CreateProjectApiKeyRequest.md)
267
+ - [CreateProjectBody](docs/CreateProjectBody.md)
268
+ - [CreateProjectBranding](docs/CreateProjectBranding.md)
269
+ - [CreateProjectMemberInviteBody](docs/CreateProjectMemberInviteBody.md)
270
+ - [CreateProjectNormalizedPayload](docs/CreateProjectNormalizedPayload.md)
271
+ - [CreateRecoveryCodeForIdentityBody](docs/CreateRecoveryCodeForIdentityBody.md)
272
+ - [CreateRecoveryLinkForIdentityBody](docs/CreateRecoveryLinkForIdentityBody.md)
273
+ - [CreateRelationshipBody](docs/CreateRelationshipBody.md)
274
+ - [CreateSubscriptionBody](docs/CreateSubscriptionBody.md)
275
+ - [CreateSubscriptionCommon](docs/CreateSubscriptionCommon.md)
276
+ - [CreateVerifiableCredentialRequestBody](docs/CreateVerifiableCredentialRequestBody.md)
277
+ - [CreateWorkspaceBody](docs/CreateWorkspaceBody.md)
278
+ - [CreateWorkspaceMemberInviteBody](docs/CreateWorkspaceMemberInviteBody.md)
279
+ - [CreateWorkspaceSubscriptionBody](docs/CreateWorkspaceSubscriptionBody.md)
280
+ - [CredentialSupportedDraft00](docs/CredentialSupportedDraft00.md)
281
+ - [CustomDomain](docs/CustomDomain.md)
282
+ - [DeleteMySessionsCount](docs/DeleteMySessionsCount.md)
283
+ - [EmailTemplateData](docs/EmailTemplateData.md)
284
+ - [EmailTemplateDataBody](docs/EmailTemplateDataBody.md)
285
+ - [ErrorAuthenticatorAssuranceLevelNotSatisfied](docs/ErrorAuthenticatorAssuranceLevelNotSatisfied.md)
286
+ - [ErrorBrowserLocationChangeRequired](docs/ErrorBrowserLocationChangeRequired.md)
287
+ - [ErrorFlowReplaced](docs/ErrorFlowReplaced.md)
288
+ - [ErrorGeneric](docs/ErrorGeneric.md)
289
+ - [ErrorOAuth2](docs/ErrorOAuth2.md)
290
+ - [EventStream](docs/EventStream.md)
291
+ - [ExpandedPermissionTree](docs/ExpandedPermissionTree.md)
292
+ - [FlowError](docs/FlowError.md)
293
+ - [GenericError](docs/GenericError.md)
294
+ - [GenericErrorContent](docs/GenericErrorContent.md)
295
+ - [GenericUsage](docs/GenericUsage.md)
296
+ - [GetAttributesCountResponse](docs/GetAttributesCountResponse.md)
297
+ - [GetManagedIdentitySchemaLocation](docs/GetManagedIdentitySchemaLocation.md)
298
+ - [GetMetricsEventAttributesResponse](docs/GetMetricsEventAttributesResponse.md)
299
+ - [GetMetricsEventTypesResponse](docs/GetMetricsEventTypesResponse.md)
300
+ - [GetOrganizationResponse](docs/GetOrganizationResponse.md)
301
+ - [GetProjectEventsBody](docs/GetProjectEventsBody.md)
302
+ - [GetProjectEventsResponse](docs/GetProjectEventsResponse.md)
303
+ - [GetProjectMetricsResponse](docs/GetProjectMetricsResponse.md)
304
+ - [GetSessionActivityResponse](docs/GetSessionActivityResponse.md)
305
+ - [GetVersion200Response](docs/GetVersion200Response.md)
306
+ - [HealthNotReadyStatus](docs/HealthNotReadyStatus.md)
307
+ - [HealthStatus](docs/HealthStatus.md)
308
+ - [Identity](docs/Identity.md)
309
+ - [IdentityCredentials](docs/IdentityCredentials.md)
310
+ - [IdentityCredentialsCode](docs/IdentityCredentialsCode.md)
311
+ - [IdentityCredentialsOidc](docs/IdentityCredentialsOidc.md)
312
+ - [IdentityCredentialsOidcProvider](docs/IdentityCredentialsOidcProvider.md)
313
+ - [IdentityCredentialsPassword](docs/IdentityCredentialsPassword.md)
314
+ - [IdentityPatch](docs/IdentityPatch.md)
315
+ - [IdentityPatchResponse](docs/IdentityPatchResponse.md)
316
+ - [IdentitySchemaContainer](docs/IdentitySchemaContainer.md)
317
+ - [IdentitySchemaPreset](docs/IdentitySchemaPreset.md)
318
+ - [IdentityWithCredentials](docs/IdentityWithCredentials.md)
319
+ - [IdentityWithCredentialsOidc](docs/IdentityWithCredentialsOidc.md)
320
+ - [IdentityWithCredentialsOidcConfig](docs/IdentityWithCredentialsOidcConfig.md)
321
+ - [IdentityWithCredentialsOidcConfigProvider](docs/IdentityWithCredentialsOidcConfigProvider.md)
322
+ - [IdentityWithCredentialsPassword](docs/IdentityWithCredentialsPassword.md)
323
+ - [IdentityWithCredentialsPasswordConfig](docs/IdentityWithCredentialsPasswordConfig.md)
324
+ - [InternalGetProjectBrandingBody](docs/InternalGetProjectBrandingBody.md)
325
+ - [InternalIsAXWelcomeScreenEnabledForProjectBody](docs/InternalIsAXWelcomeScreenEnabledForProjectBody.md)
326
+ - [InternalIsOwnerForProjectBySlugBody](docs/InternalIsOwnerForProjectBySlugBody.md)
327
+ - [InternalIsOwnerForProjectBySlugResponse](docs/InternalIsOwnerForProjectBySlugResponse.md)
328
+ - [IntrospectedOAuth2Token](docs/IntrospectedOAuth2Token.md)
329
+ - [Invoice](docs/Invoice.md)
330
+ - [InvoiceDataV1](docs/InvoiceDataV1.md)
331
+ - [IsOwnerForProjectBySlug](docs/IsOwnerForProjectBySlug.md)
332
+ - [JsonPatch](docs/JsonPatch.md)
333
+ - [JsonWebKey](docs/JsonWebKey.md)
334
+ - [JsonWebKeySet](docs/JsonWebKeySet.md)
335
+ - [KetoNamespace](docs/KetoNamespace.md)
336
+ - [LineItemV1](docs/LineItemV1.md)
337
+ - [ListEventStreams](docs/ListEventStreams.md)
338
+ - [ListInvoicesResponse](docs/ListInvoicesResponse.md)
339
+ - [ListOrganizationsResponse](docs/ListOrganizationsResponse.md)
340
+ - [ListWorkspaceProjects](docs/ListWorkspaceProjects.md)
341
+ - [ListWorkspaces](docs/ListWorkspaces.md)
342
+ - [LoginFlow](docs/LoginFlow.md)
343
+ - [LoginFlowState](docs/LoginFlowState.md)
344
+ - [LogoutFlow](docs/LogoutFlow.md)
345
+ - [ManagedIdentitySchema](docs/ManagedIdentitySchema.md)
346
+ - [ManagedIdentitySchemaValidationResult](docs/ManagedIdentitySchemaValidationResult.md)
347
+ - [MemberInvite](docs/MemberInvite.md)
348
+ - [Message](docs/Message.md)
349
+ - [MessageDispatch](docs/MessageDispatch.md)
350
+ - [MetricsDatapoint](docs/MetricsDatapoint.md)
351
+ - [Money](docs/Money.md)
352
+ - [Namespace](docs/Namespace.md)
353
+ - [NeedsPrivilegedSessionError](docs/NeedsPrivilegedSessionError.md)
354
+ - [NormalizedProject](docs/NormalizedProject.md)
355
+ - [NormalizedProjectRevision](docs/NormalizedProjectRevision.md)
356
+ - [NormalizedProjectRevisionCourierChannel](docs/NormalizedProjectRevisionCourierChannel.md)
357
+ - [NormalizedProjectRevisionHook](docs/NormalizedProjectRevisionHook.md)
358
+ - [NormalizedProjectRevisionIdentitySchema](docs/NormalizedProjectRevisionIdentitySchema.md)
359
+ - [NormalizedProjectRevisionThirdPartyProvider](docs/NormalizedProjectRevisionThirdPartyProvider.md)
360
+ - [NormalizedProjectRevisionTokenizerTemplate](docs/NormalizedProjectRevisionTokenizerTemplate.md)
361
+ - [OAuth2Client](docs/OAuth2Client.md)
362
+ - [OAuth2ClientTokenLifespans](docs/OAuth2ClientTokenLifespans.md)
363
+ - [OAuth2ConsentRequest](docs/OAuth2ConsentRequest.md)
364
+ - [OAuth2ConsentRequestOpenIDConnectContext](docs/OAuth2ConsentRequestOpenIDConnectContext.md)
365
+ - [OAuth2ConsentSession](docs/OAuth2ConsentSession.md)
366
+ - [OAuth2ConsentSessionExpiresAt](docs/OAuth2ConsentSessionExpiresAt.md)
367
+ - [OAuth2LoginRequest](docs/OAuth2LoginRequest.md)
368
+ - [OAuth2LogoutRequest](docs/OAuth2LogoutRequest.md)
369
+ - [OAuth2RedirectTo](docs/OAuth2RedirectTo.md)
370
+ - [OAuth2TokenExchange](docs/OAuth2TokenExchange.md)
371
+ - [OidcConfiguration](docs/OidcConfiguration.md)
372
+ - [OidcUserInfo](docs/OidcUserInfo.md)
373
+ - [Organization](docs/Organization.md)
374
+ - [OrganizationBody](docs/OrganizationBody.md)
375
+ - [Pagination](docs/Pagination.md)
376
+ - [PaginationHeaders](docs/PaginationHeaders.md)
377
+ - [ParseError](docs/ParseError.md)
378
+ - [PatchIdentitiesBody](docs/PatchIdentitiesBody.md)
379
+ - [PerformNativeLogoutBody](docs/PerformNativeLogoutBody.md)
380
+ - [PermissionsOnWorkspace](docs/PermissionsOnWorkspace.md)
381
+ - [Plan](docs/Plan.md)
382
+ - [PlanDetails](docs/PlanDetails.md)
383
+ - [PostCheckPermissionBody](docs/PostCheckPermissionBody.md)
384
+ - [PostCheckPermissionOrErrorBody](docs/PostCheckPermissionOrErrorBody.md)
385
+ - [Project](docs/Project.md)
386
+ - [ProjectApiKey](docs/ProjectApiKey.md)
387
+ - [ProjectBranding](docs/ProjectBranding.md)
388
+ - [ProjectBrandingColors](docs/ProjectBrandingColors.md)
389
+ - [ProjectBrandingTheme](docs/ProjectBrandingTheme.md)
390
+ - [ProjectCors](docs/ProjectCors.md)
391
+ - [ProjectEventsDatapoint](docs/ProjectEventsDatapoint.md)
392
+ - [ProjectHost](docs/ProjectHost.md)
393
+ - [ProjectMember](docs/ProjectMember.md)
394
+ - [ProjectMetadata](docs/ProjectMetadata.md)
395
+ - [ProjectServiceIdentity](docs/ProjectServiceIdentity.md)
396
+ - [ProjectServiceOAuth2](docs/ProjectServiceOAuth2.md)
397
+ - [ProjectServicePermission](docs/ProjectServicePermission.md)
398
+ - [ProjectServices](docs/ProjectServices.md)
399
+ - [QuotaUsage](docs/QuotaUsage.md)
400
+ - [RFC6749ErrorJson](docs/RFC6749ErrorJson.md)
401
+ - [RecoveryCodeForIdentity](docs/RecoveryCodeForIdentity.md)
402
+ - [RecoveryFlow](docs/RecoveryFlow.md)
403
+ - [RecoveryFlowState](docs/RecoveryFlowState.md)
404
+ - [RecoveryIdentityAddress](docs/RecoveryIdentityAddress.md)
405
+ - [RecoveryLinkForIdentity](docs/RecoveryLinkForIdentity.md)
406
+ - [RegistrationFlow](docs/RegistrationFlow.md)
407
+ - [RegistrationFlowState](docs/RegistrationFlowState.md)
408
+ - [RejectOAuth2Request](docs/RejectOAuth2Request.md)
409
+ - [RelationQuery](docs/RelationQuery.md)
410
+ - [Relationship](docs/Relationship.md)
411
+ - [RelationshipNamespaces](docs/RelationshipNamespaces.md)
412
+ - [RelationshipPatch](docs/RelationshipPatch.md)
413
+ - [Relationships](docs/Relationships.md)
414
+ - [SchemaPatch](docs/SchemaPatch.md)
415
+ - [SelfServiceFlowExpiredError](docs/SelfServiceFlowExpiredError.md)
416
+ - [Session](docs/Session.md)
417
+ - [SessionActivityDatapoint](docs/SessionActivityDatapoint.md)
418
+ - [SessionAuthenticationMethod](docs/SessionAuthenticationMethod.md)
419
+ - [SessionDevice](docs/SessionDevice.md)
420
+ - [SetActiveProjectInConsoleBody](docs/SetActiveProjectInConsoleBody.md)
421
+ - [SetCustomDomainBody](docs/SetCustomDomainBody.md)
422
+ - [SetEventStreamBody](docs/SetEventStreamBody.md)
423
+ - [SetProject](docs/SetProject.md)
424
+ - [SetProjectBrandingThemeBody](docs/SetProjectBrandingThemeBody.md)
425
+ - [SettingsFlow](docs/SettingsFlow.md)
426
+ - [SettingsFlowState](docs/SettingsFlowState.md)
427
+ - [SourcePosition](docs/SourcePosition.md)
428
+ - [SubjectSet](docs/SubjectSet.md)
429
+ - [Subscription](docs/Subscription.md)
430
+ - [SuccessfulCodeExchangeResponse](docs/SuccessfulCodeExchangeResponse.md)
431
+ - [SuccessfulNativeLogin](docs/SuccessfulNativeLogin.md)
432
+ - [SuccessfulNativeRegistration](docs/SuccessfulNativeRegistration.md)
433
+ - [SuccessfulProjectUpdate](docs/SuccessfulProjectUpdate.md)
434
+ - [TaxLineItem](docs/TaxLineItem.md)
435
+ - [TimeInterval](docs/TimeInterval.md)
436
+ - [TokenPagination](docs/TokenPagination.md)
437
+ - [TokenPaginationHeaders](docs/TokenPaginationHeaders.md)
438
+ - [TokenPaginationRequestParameters](docs/TokenPaginationRequestParameters.md)
439
+ - [TokenPaginationResponseHeaders](docs/TokenPaginationResponseHeaders.md)
440
+ - [TrustOAuth2JwtGrantIssuer](docs/TrustOAuth2JwtGrantIssuer.md)
441
+ - [TrustedOAuth2JwtGrantIssuer](docs/TrustedOAuth2JwtGrantIssuer.md)
442
+ - [TrustedOAuth2JwtGrantJsonWebKey](docs/TrustedOAuth2JwtGrantJsonWebKey.md)
443
+ - [UiContainer](docs/UiContainer.md)
444
+ - [UiNode](docs/UiNode.md)
445
+ - [UiNodeAnchorAttributes](docs/UiNodeAnchorAttributes.md)
446
+ - [UiNodeAttributes](docs/UiNodeAttributes.md)
447
+ - [UiNodeImageAttributes](docs/UiNodeImageAttributes.md)
448
+ - [UiNodeInputAttributes](docs/UiNodeInputAttributes.md)
449
+ - [UiNodeMeta](docs/UiNodeMeta.md)
450
+ - [UiNodeScriptAttributes](docs/UiNodeScriptAttributes.md)
451
+ - [UiNodeTextAttributes](docs/UiNodeTextAttributes.md)
452
+ - [UiText](docs/UiText.md)
453
+ - [UpdateIdentityBody](docs/UpdateIdentityBody.md)
454
+ - [UpdateLoginFlowBody](docs/UpdateLoginFlowBody.md)
455
+ - [UpdateLoginFlowWithCodeMethod](docs/UpdateLoginFlowWithCodeMethod.md)
456
+ - [UpdateLoginFlowWithLookupSecretMethod](docs/UpdateLoginFlowWithLookupSecretMethod.md)
457
+ - [UpdateLoginFlowWithOidcMethod](docs/UpdateLoginFlowWithOidcMethod.md)
458
+ - [UpdateLoginFlowWithPasskeyMethod](docs/UpdateLoginFlowWithPasskeyMethod.md)
459
+ - [UpdateLoginFlowWithPasswordMethod](docs/UpdateLoginFlowWithPasswordMethod.md)
460
+ - [UpdateLoginFlowWithTotpMethod](docs/UpdateLoginFlowWithTotpMethod.md)
461
+ - [UpdateLoginFlowWithWebAuthnMethod](docs/UpdateLoginFlowWithWebAuthnMethod.md)
462
+ - [UpdateRecoveryFlowBody](docs/UpdateRecoveryFlowBody.md)
463
+ - [UpdateRecoveryFlowWithCodeMethod](docs/UpdateRecoveryFlowWithCodeMethod.md)
464
+ - [UpdateRecoveryFlowWithLinkMethod](docs/UpdateRecoveryFlowWithLinkMethod.md)
465
+ - [UpdateRegistrationFlowBody](docs/UpdateRegistrationFlowBody.md)
466
+ - [UpdateRegistrationFlowWithCodeMethod](docs/UpdateRegistrationFlowWithCodeMethod.md)
467
+ - [UpdateRegistrationFlowWithOidcMethod](docs/UpdateRegistrationFlowWithOidcMethod.md)
468
+ - [UpdateRegistrationFlowWithPasskeyMethod](docs/UpdateRegistrationFlowWithPasskeyMethod.md)
469
+ - [UpdateRegistrationFlowWithPasswordMethod](docs/UpdateRegistrationFlowWithPasswordMethod.md)
470
+ - [UpdateRegistrationFlowWithProfileMethod](docs/UpdateRegistrationFlowWithProfileMethod.md)
471
+ - [UpdateRegistrationFlowWithWebAuthnMethod](docs/UpdateRegistrationFlowWithWebAuthnMethod.md)
472
+ - [UpdateSettingsFlowBody](docs/UpdateSettingsFlowBody.md)
473
+ - [UpdateSettingsFlowWithLookupMethod](docs/UpdateSettingsFlowWithLookupMethod.md)
474
+ - [UpdateSettingsFlowWithOidcMethod](docs/UpdateSettingsFlowWithOidcMethod.md)
475
+ - [UpdateSettingsFlowWithPasskeyMethod](docs/UpdateSettingsFlowWithPasskeyMethod.md)
476
+ - [UpdateSettingsFlowWithPasswordMethod](docs/UpdateSettingsFlowWithPasswordMethod.md)
477
+ - [UpdateSettingsFlowWithProfileMethod](docs/UpdateSettingsFlowWithProfileMethod.md)
478
+ - [UpdateSettingsFlowWithTotpMethod](docs/UpdateSettingsFlowWithTotpMethod.md)
479
+ - [UpdateSettingsFlowWithWebAuthnMethod](docs/UpdateSettingsFlowWithWebAuthnMethod.md)
480
+ - [UpdateSubscriptionBody](docs/UpdateSubscriptionBody.md)
481
+ - [UpdateVerificationFlowBody](docs/UpdateVerificationFlowBody.md)
482
+ - [UpdateVerificationFlowWithCodeMethod](docs/UpdateVerificationFlowWithCodeMethod.md)
483
+ - [UpdateVerificationFlowWithLinkMethod](docs/UpdateVerificationFlowWithLinkMethod.md)
484
+ - [UpdateWorkspaceBody](docs/UpdateWorkspaceBody.md)
485
+ - [Usage](docs/Usage.md)
486
+ - [VerifiableCredentialPrimingResponse](docs/VerifiableCredentialPrimingResponse.md)
487
+ - [VerifiableCredentialProof](docs/VerifiableCredentialProof.md)
488
+ - [VerifiableCredentialResponse](docs/VerifiableCredentialResponse.md)
489
+ - [VerifiableIdentityAddress](docs/VerifiableIdentityAddress.md)
490
+ - [VerificationFlow](docs/VerificationFlow.md)
491
+ - [VerificationFlowState](docs/VerificationFlowState.md)
492
+ - [Version](docs/Version.md)
493
+ - [Warning](docs/Warning.md)
494
+ - [Workspace](docs/Workspace.md)
495
+
496
+
497
+ <a id="documentation-for-authorization"></a>
498
+ ## Documentation For Authorization
499
+
500
+
501
+ Authentication schemes defined for the API:
502
+ <a id="basic"></a>
503
+ ### basic
504
+
505
+ - **Type**: HTTP basic authentication
506
+
507
+ <a id="bearer"></a>
508
+ ### bearer
509
+
510
+ - **Type**: Bearer authentication
511
+
512
+ <a id="oauth2"></a>
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
+ <a id="oryAccessToken"></a>
524
+ ### oryAccessToken
525
+
526
+ - **Type**: Bearer authentication
527
+
528
+ <a id="oryNetworkCookie"></a>
529
+ ### oryNetworkCookie
530
+
531
+ - **Type**: API key
532
+ - **API key parameter name**: ory_session_ory
533
+ - **Location**:
534
+
535
+
536
+ ## Author
537
+
538
+ support@ory.sh
539
+
540
+