ory-client 1.4.7__tar.gz → 1.4.8__tar.gz

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