ory-client 1.8.1__py3-none-any.whl → 1.11.6__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (565) hide show
  1. ory_client/__init__.py +279 -10
  2. ory_client/api/__init__.py +16 -3
  3. ory_client/api/courier_api.py +576 -287
  4. ory_client/api/events_api.py +1147 -576
  5. ory_client/api/frontend_api.py +8736 -4145
  6. ory_client/api/identity_api.py +5219 -2605
  7. ory_client/api/jwk_api.py +1881 -939
  8. ory_client/api/metadata_api.py +245 -376
  9. ory_client/api/o_auth2_api.py +7763 -3858
  10. ory_client/api/oidc_api.py +2071 -1034
  11. ory_client/api/permission_api.py +1675 -776
  12. ory_client/api/project_api.py +5314 -2638
  13. ory_client/api/relationship_api.py +1844 -860
  14. ory_client/api/wellknown_api.py +250 -131
  15. ory_client/api_client.py +520 -658
  16. ory_client/api_response.py +21 -0
  17. ory_client/configuration.py +65 -75
  18. ory_client/exceptions.py +73 -32
  19. ory_client/models/__init__.py +266 -291
  20. ory_client/models/accept_o_auth2_consent_request.py +118 -0
  21. ory_client/models/accept_o_auth2_consent_request_session.py +113 -0
  22. ory_client/models/accept_o_auth2_login_request.py +117 -0
  23. ory_client/models/active_project_in_console.py +101 -0
  24. ory_client/models/attribute.py +103 -0
  25. ory_client/models/attribute_filter.py +115 -0
  26. ory_client/models/attributes_count_datapoint.py +103 -0
  27. ory_client/models/authenticator_assurance_level.py +40 -0
  28. ory_client/models/batch_patch_identities_response.py +109 -0
  29. ory_client/models/check_opl_syntax_result.py +109 -0
  30. ory_client/models/check_permission_result.py +101 -0
  31. ory_client/models/cloud_account.py +105 -0
  32. ory_client/models/consistency_request_parameters.py +111 -0
  33. ory_client/models/continue_with.py +214 -0
  34. ory_client/models/continue_with_recovery_ui.py +114 -0
  35. ory_client/models/continue_with_recovery_ui_flow.py +103 -0
  36. ory_client/models/continue_with_set_ory_session_token.py +110 -0
  37. ory_client/models/continue_with_settings_ui.py +114 -0
  38. ory_client/models/continue_with_settings_ui_flow.py +101 -0
  39. ory_client/models/continue_with_verification_ui.py +114 -0
  40. ory_client/models/continue_with_verification_ui_flow.py +105 -0
  41. ory_client/models/courier_message_status.py +40 -0
  42. ory_client/models/courier_message_type.py +38 -0
  43. ory_client/models/create_custom_domain_body.py +109 -0
  44. ory_client/models/create_event_stream_body.py +112 -0
  45. ory_client/models/create_identity_body.py +155 -0
  46. ory_client/models/create_invite_response.py +114 -0
  47. ory_client/models/create_json_web_key_set.py +105 -0
  48. ory_client/models/create_project_api_key_request.py +101 -0
  49. ory_client/models/create_project_body.py +112 -0
  50. ory_client/models/create_project_branding.py +115 -0
  51. ory_client/models/create_project_member_invite_body.py +101 -0
  52. ory_client/models/create_project_normalized_payload.py +685 -0
  53. ory_client/models/create_recovery_code_for_identity_body.py +114 -0
  54. ory_client/models/create_recovery_link_for_identity_body.py +114 -0
  55. ory_client/models/create_relationship_body.py +113 -0
  56. ory_client/models/create_subscription_body.py +126 -0
  57. ory_client/models/create_subscription_common.py +124 -0
  58. ory_client/models/create_verifiable_credential_request_body.py +109 -0
  59. ory_client/models/create_workspace_member_invite_body.py +101 -0
  60. ory_client/models/create_workspace_payload.py +101 -0
  61. ory_client/models/create_workspace_subscription_body.py +124 -0
  62. ory_client/models/credential_supported_draft00.py +107 -0
  63. ory_client/models/custom_domain.py +132 -0
  64. ory_client/models/delete_my_sessions_count.py +101 -0
  65. ory_client/models/email_template_data.py +107 -0
  66. ory_client/models/email_template_data_body.py +103 -0
  67. ory_client/models/error_authenticator_assurance_level_not_satisfied.py +107 -0
  68. ory_client/models/error_browser_location_change_required.py +107 -0
  69. ory_client/models/error_flow_replaced.py +107 -0
  70. ory_client/models/error_generic.py +105 -0
  71. ory_client/models/error_o_auth2.py +109 -0
  72. ory_client/models/event_stream.py +112 -0
  73. ory_client/models/expanded_permission_tree.py +125 -0
  74. ory_client/models/flow_error.py +108 -0
  75. ory_client/models/generic_error.py +126 -0
  76. ory_client/models/generic_error_content.py +109 -0
  77. ory_client/models/generic_usage.py +103 -0
  78. ory_client/models/get_attributes_count_response.py +111 -0
  79. ory_client/models/get_managed_identity_schema_location.py +101 -0
  80. ory_client/models/get_metrics_event_attributes_response.py +103 -0
  81. ory_client/models/get_metrics_event_types_response.py +103 -0
  82. ory_client/models/get_organization_response.py +105 -0
  83. ory_client/models/get_project_events_body.py +120 -0
  84. ory_client/models/get_project_events_response.py +115 -0
  85. ory_client/models/get_project_metrics_response.py +111 -0
  86. ory_client/models/get_session_activity_response.py +111 -0
  87. ory_client/models/get_version200_response.py +101 -0
  88. ory_client/models/health_not_ready_status.py +101 -0
  89. ory_client/models/health_status.py +101 -0
  90. ory_client/models/identity.py +187 -0
  91. ory_client/models/identity_credentials.py +122 -0
  92. ory_client/models/identity_credentials_code.py +109 -0
  93. ory_client/models/identity_credentials_oidc.py +109 -0
  94. ory_client/models/identity_credentials_oidc_provider.py +111 -0
  95. ory_client/models/identity_credentials_password.py +101 -0
  96. ory_client/models/identity_patch.py +107 -0
  97. ory_client/models/identity_patch_response.py +115 -0
  98. ory_client/models/identity_schema_container.py +103 -0
  99. ory_client/models/identity_schema_preset.py +103 -0
  100. ory_client/models/identity_with_credentials.py +111 -0
  101. ory_client/models/identity_with_credentials_oidc.py +105 -0
  102. ory_client/models/identity_with_credentials_oidc_config.py +115 -0
  103. ory_client/models/identity_with_credentials_oidc_config_provider.py +103 -0
  104. ory_client/models/identity_with_credentials_password.py +105 -0
  105. ory_client/models/identity_with_credentials_password_config.py +103 -0
  106. ory_client/models/internal_get_project_branding_body.py +101 -0
  107. ory_client/models/internal_is_ax_welcome_screen_enabled_for_project_body.py +103 -0
  108. ory_client/models/internal_is_owner_for_project_by_slug_body.py +114 -0
  109. ory_client/models/internal_is_owner_for_project_by_slug_response.py +101 -0
  110. ory_client/models/introspected_o_auth2_token.py +127 -0
  111. ory_client/models/is_owner_for_project_by_slug.py +103 -0
  112. ory_client/models/json_patch.py +119 -0
  113. ory_client/models/json_web_key.py +133 -0
  114. ory_client/models/json_web_key_set.py +109 -0
  115. ory_client/models/keto_namespace.py +103 -0
  116. ory_client/models/list_event_streams.py +109 -0
  117. ory_client/models/list_my_workspaces_response.py +113 -0
  118. ory_client/models/list_organizations_response.py +109 -0
  119. ory_client/models/list_workspace_projects_response.py +113 -0
  120. ory_client/models/login_flow.py +165 -0
  121. ory_client/models/login_flow_state.py +39 -0
  122. ory_client/models/logout_flow.py +103 -0
  123. ory_client/models/managed_identity_schema.py +120 -0
  124. ory_client/models/managed_identity_schema_validation_result.py +103 -0
  125. ory_client/models/member_invite.py +148 -0
  126. ory_client/models/message.py +141 -0
  127. ory_client/models/message_dispatch.py +119 -0
  128. ory_client/models/metrics_datapoint.py +104 -0
  129. ory_client/models/migration_options.py +117 -0
  130. ory_client/models/namespace.py +101 -0
  131. ory_client/models/needs_privileged_session_error.py +107 -0
  132. ory_client/models/normalized_project.py +171 -0
  133. ory_client/models/normalized_project_revision.py +674 -0
  134. ory_client/models/normalized_project_revision_courier_channel.py +145 -0
  135. ory_client/models/normalized_project_revision_hook.py +140 -0
  136. ory_client/models/normalized_project_revision_identity_schema.py +133 -0
  137. ory_client/models/normalized_project_revision_third_party_provider.py +187 -0
  138. ory_client/models/normalized_project_revision_tokenizer_template.py +133 -0
  139. ory_client/models/o_auth2_client.py +352 -0
  140. ory_client/models/o_auth2_client_token_lifespans.py +270 -0
  141. ory_client/models/o_auth2_consent_request.py +133 -0
  142. ory_client/models/o_auth2_consent_request_open_id_connect_context.py +109 -0
  143. ory_client/models/o_auth2_consent_session.py +130 -0
  144. ory_client/models/o_auth2_consent_session_expires_at.py +110 -0
  145. ory_client/models/o_auth2_login_request.py +125 -0
  146. ory_client/models/o_auth2_logout_request.py +115 -0
  147. ory_client/models/o_auth2_redirect_to.py +101 -0
  148. ory_client/models/o_auth2_token_exchange.py +111 -0
  149. ory_client/models/oidc_configuration.py +169 -0
  150. ory_client/models/oidc_user_info.py +137 -0
  151. ory_client/models/organization.py +116 -0
  152. ory_client/models/organization_body.py +103 -0
  153. ory_client/models/pagination.py +104 -0
  154. ory_client/models/pagination_headers.py +103 -0
  155. ory_client/models/parse_error.py +112 -0
  156. ory_client/models/patch_identities_body.py +109 -0
  157. ory_client/models/perform_native_logout_body.py +101 -0
  158. ory_client/models/permissions_on_workpace_response.py +101 -0
  159. ory_client/models/plan.py +103 -0
  160. ory_client/models/plan_details.py +128 -0
  161. ory_client/models/post_check_permission_body.py +113 -0
  162. ory_client/models/post_check_permission_or_error_body.py +113 -0
  163. ory_client/models/project.py +148 -0
  164. ory_client/models/project_api_key.py +126 -0
  165. ory_client/models/project_branding.py +129 -0
  166. ory_client/models/project_branding_colors.py +157 -0
  167. ory_client/models/project_branding_theme.py +182 -0
  168. ory_client/models/project_cors.py +103 -0
  169. ory_client/models/project_events_datapoint.py +114 -0
  170. ory_client/models/project_host.py +107 -0
  171. ory_client/models/project_member.py +107 -0
  172. ory_client/models/project_metadata.py +161 -0
  173. ory_client/models/project_service_identity.py +101 -0
  174. ory_client/models/project_service_o_auth2.py +101 -0
  175. ory_client/models/project_service_permission.py +101 -0
  176. ory_client/models/project_services.py +117 -0
  177. ory_client/models/quota_usage.py +118 -0
  178. ory_client/models/recovery_code_for_identity.py +106 -0
  179. ory_client/models/recovery_flow.py +139 -0
  180. ory_client/models/recovery_flow_state.py +39 -0
  181. ory_client/models/recovery_identity_address.py +110 -0
  182. ory_client/models/recovery_link_for_identity.py +104 -0
  183. ory_client/models/registration_flow.py +156 -0
  184. ory_client/models/registration_flow_state.py +39 -0
  185. ory_client/models/reject_o_auth2_request.py +109 -0
  186. ory_client/models/relation_query.py +113 -0
  187. ory_client/models/relationship.py +113 -0
  188. ory_client/models/relationship_namespaces.py +109 -0
  189. ory_client/models/relationship_patch.py +117 -0
  190. ory_client/models/relationships.py +111 -0
  191. ory_client/models/rfc6749_error_json.py +109 -0
  192. ory_client/models/schema_patch.py +103 -0
  193. ory_client/models/self_service_flow_expired_error.py +112 -0
  194. ory_client/models/session.py +141 -0
  195. ory_client/models/session_activity_datapoint.py +105 -0
  196. ory_client/models/session_authentication_method.py +121 -0
  197. ory_client/models/session_device.py +107 -0
  198. ory_client/models/set_active_project_in_console_body.py +101 -0
  199. ory_client/models/set_custom_domain_body.py +109 -0
  200. ory_client/models/set_event_stream_body.py +112 -0
  201. ory_client/models/set_project.py +118 -0
  202. ory_client/models/set_project_branding_theme_body.py +115 -0
  203. ory_client/models/settings_flow.py +145 -0
  204. ory_client/models/settings_flow_state.py +38 -0
  205. ory_client/models/source_position.py +103 -0
  206. ory_client/models/subject_set.py +105 -0
  207. ory_client/models/subscription.py +179 -0
  208. ory_client/models/successful_code_exchange_response.py +107 -0
  209. ory_client/models/successful_native_login.py +117 -0
  210. ory_client/models/successful_native_registration.py +123 -0
  211. ory_client/models/successful_project_update.py +115 -0
  212. ory_client/models/token_pagination.py +104 -0
  213. ory_client/models/token_pagination_headers.py +103 -0
  214. ory_client/models/token_pagination_request_parameters.py +104 -0
  215. ory_client/models/token_pagination_response_headers.py +103 -0
  216. ory_client/models/trust_o_auth2_jwt_grant_issuer.py +116 -0
  217. ory_client/models/trusted_o_auth2_jwt_grant_issuer.py +120 -0
  218. ory_client/models/trusted_o_auth2_jwt_grant_json_web_key.py +103 -0
  219. ory_client/models/ui_container.py +123 -0
  220. ory_client/models/ui_node.py +139 -0
  221. ory_client/models/ui_node_anchor_attributes.py +118 -0
  222. ory_client/models/ui_node_attributes.py +238 -0
  223. ory_client/models/ui_node_image_attributes.py +116 -0
  224. ory_client/models/ui_node_input_attributes.py +154 -0
  225. ory_client/models/ui_node_meta.py +105 -0
  226. ory_client/models/ui_node_script_attributes.py +124 -0
  227. ory_client/models/ui_node_text_attributes.py +116 -0
  228. ory_client/models/ui_text.py +114 -0
  229. ory_client/models/update_identity_body.py +132 -0
  230. ory_client/models/update_login_flow_body.py +286 -0
  231. ory_client/models/update_login_flow_with_code_method.py +111 -0
  232. ory_client/models/update_login_flow_with_lookup_secret_method.py +105 -0
  233. ory_client/models/update_login_flow_with_oidc_method.py +115 -0
  234. ory_client/models/update_login_flow_with_passkey_method.py +105 -0
  235. ory_client/models/update_login_flow_with_password_method.py +111 -0
  236. ory_client/models/update_login_flow_with_totp_method.py +107 -0
  237. ory_client/models/update_login_flow_with_web_authn_method.py +109 -0
  238. ory_client/models/update_recovery_flow_body.py +166 -0
  239. ory_client/models/update_recovery_flow_with_code_method.py +116 -0
  240. ory_client/models/update_recovery_flow_with_link_method.py +114 -0
  241. ory_client/models/update_registration_flow_body.py +238 -0
  242. ory_client/models/update_registration_flow_with_code_method.py +111 -0
  243. ory_client/models/update_registration_flow_with_oidc_method.py +115 -0
  244. ory_client/models/update_registration_flow_with_passkey_method.py +109 -0
  245. ory_client/models/update_registration_flow_with_password_method.py +109 -0
  246. ory_client/models/update_registration_flow_with_profile_method.py +109 -0
  247. ory_client/models/update_registration_flow_with_web_authn_method.py +111 -0
  248. ory_client/models/update_settings_flow_body.py +286 -0
  249. ory_client/models/update_settings_flow_with_lookup_method.py +113 -0
  250. ory_client/models/update_settings_flow_with_oidc_method.py +113 -0
  251. ory_client/models/update_settings_flow_with_passkey_method.py +107 -0
  252. ory_client/models/update_settings_flow_with_password_method.py +107 -0
  253. ory_client/models/update_settings_flow_with_profile_method.py +107 -0
  254. ory_client/models/update_settings_flow_with_totp_method.py +109 -0
  255. ory_client/models/update_settings_flow_with_web_authn_method.py +111 -0
  256. ory_client/models/update_subscription_body.py +112 -0
  257. ory_client/models/update_verification_flow_body.py +166 -0
  258. ory_client/models/update_verification_flow_with_code_method.py +116 -0
  259. ory_client/models/update_verification_flow_with_link_method.py +114 -0
  260. ory_client/models/update_workspace_payload.py +101 -0
  261. ory_client/models/usage.py +105 -0
  262. ory_client/models/verifiable_credential_priming_response.py +115 -0
  263. ory_client/models/verifiable_credential_proof.py +103 -0
  264. ory_client/models/verifiable_credential_response.py +103 -0
  265. ory_client/models/verifiable_identity_address.py +123 -0
  266. ory_client/models/verification_flow.py +129 -0
  267. ory_client/models/verification_flow_state.py +39 -0
  268. ory_client/models/version.py +101 -0
  269. ory_client/models/warning.py +103 -0
  270. ory_client/models/workspace.py +115 -0
  271. ory_client/models/workspace_meta.py +122 -0
  272. ory_client/py.typed +0 -0
  273. ory_client/rest.py +139 -236
  274. {ory_client-1.8.1.dist-info → ory_client-1.11.6.dist-info}/METADATA +6 -4
  275. ory_client-1.11.6.dist-info/RECORD +278 -0
  276. ory_client/apis/__init__.py +0 -28
  277. ory_client/model/__init__.py +0 -5
  278. ory_client/model/accept_o_auth2_consent_request.py +0 -296
  279. ory_client/model/accept_o_auth2_consent_request_session.py +0 -268
  280. ory_client/model/accept_o_auth2_login_request.py +0 -308
  281. ory_client/model/active_project_in_console.py +0 -264
  282. ory_client/model/attribute.py +0 -268
  283. ory_client/model/attribute_filter.py +0 -282
  284. ory_client/model/attributes_count_datapoint.py +0 -276
  285. ory_client/model/authenticator_assurance_level.py +0 -293
  286. ory_client/model/batch_patch_identities_response.py +0 -270
  287. ory_client/model/check_opl_syntax_result.py +0 -270
  288. ory_client/model/check_permission_result.py +0 -270
  289. ory_client/model/cloud_account.py +0 -282
  290. ory_client/model/consistency_request_parameters.py +0 -269
  291. ory_client/model/continue_with.py +0 -356
  292. ory_client/model/continue_with_recovery_ui.py +0 -287
  293. ory_client/model/continue_with_recovery_ui_flow.py +0 -274
  294. ory_client/model/continue_with_set_ory_session_token.py +0 -281
  295. ory_client/model/continue_with_settings_ui.py +0 -287
  296. ory_client/model/continue_with_settings_ui_flow.py +0 -270
  297. ory_client/model/continue_with_verification_ui.py +0 -287
  298. ory_client/model/continue_with_verification_ui_flow.py +0 -280
  299. ory_client/model/courier_message_status.py +0 -293
  300. ory_client/model/courier_message_type.py +0 -291
  301. ory_client/model/create_custom_domain_body.py +0 -280
  302. ory_client/model/create_event_stream_body.py +0 -287
  303. ory_client/model/create_identity_body.py +0 -314
  304. ory_client/model/create_invite_response.py +0 -282
  305. ory_client/model/create_json_web_key_set.py +0 -282
  306. ory_client/model/create_member_invite_response.py +0 -287
  307. ory_client/model/create_project_api_key_request.py +0 -270
  308. ory_client/model/create_project_body.py +0 -284
  309. ory_client/model/create_project_branding.py +0 -290
  310. ory_client/model/create_project_member_invite_body.py +0 -264
  311. ory_client/model/create_project_normalized_payload.py +0 -1115
  312. ory_client/model/create_recovery_code_for_identity_body.py +0 -279
  313. ory_client/model/create_recovery_link_for_identity_body.py +0 -279
  314. ory_client/model/create_relationship_body.py +0 -286
  315. ory_client/model/create_subscription_body.py +0 -298
  316. ory_client/model/create_subscription_common.py +0 -292
  317. ory_client/model/create_verifiable_credential_request_body.py +0 -278
  318. ory_client/model/create_workspace_member_invite_body.py +0 -264
  319. ory_client/model/create_workspace_payload.py +0 -270
  320. ory_client/model/create_workspace_subscription_body.py +0 -292
  321. ory_client/model/credential_supported_draft00.py +0 -276
  322. ory_client/model/custom_domain.py +0 -334
  323. ory_client/model/delete_my_sessions_count.py +0 -264
  324. ory_client/model/email_template_data.py +0 -282
  325. ory_client/model/email_template_data_body.py +0 -276
  326. ory_client/model/error_authenticator_assurance_level_not_satisfied.py +0 -274
  327. ory_client/model/error_browser_location_change_required.py +0 -274
  328. ory_client/model/error_flow_replaced.py +0 -274
  329. ory_client/model/error_generic.py +0 -276
  330. ory_client/model/error_o_auth2.py +0 -280
  331. ory_client/model/event_stream.py +0 -284
  332. ory_client/model/expanded_permission_tree.py +0 -294
  333. ory_client/model/flow_error.py +0 -282
  334. ory_client/model/generic_error.py +0 -308
  335. ory_client/model/generic_error_content.py +0 -280
  336. ory_client/model/generic_usage.py +0 -276
  337. ory_client/model/get_attributes_count_response.py +0 -273
  338. ory_client/model/get_managed_identity_schema_location.py +0 -264
  339. ory_client/model/get_metrics_event_attributes_response.py +0 -267
  340. ory_client/model/get_metrics_event_types_response.py +0 -267
  341. ory_client/model/get_organization_response.py +0 -276
  342. ory_client/model/get_project_events_body.py +0 -298
  343. ory_client/model/get_project_events_response.py +0 -278
  344. ory_client/model/get_project_metrics_response.py +0 -273
  345. ory_client/model/get_session_activity_response.py +0 -273
  346. ory_client/model/get_version200_response.py +0 -270
  347. ory_client/model/health_not_ready_status.py +0 -264
  348. ory_client/model/health_status.py +0 -264
  349. ory_client/model/identity.py +0 -342
  350. ory_client/model/identity_credentials.py +0 -294
  351. ory_client/model/identity_credentials_code.py +0 -268
  352. ory_client/model/identity_credentials_oidc.py +0 -270
  353. ory_client/model/identity_credentials_oidc_provider.py +0 -284
  354. ory_client/model/identity_credentials_password.py +0 -264
  355. ory_client/model/identity_patch.py +0 -274
  356. ory_client/model/identity_patch_response.py +0 -275
  357. ory_client/model/identity_schema_container.py +0 -268
  358. ory_client/model/identity_schema_preset.py +0 -276
  359. ory_client/model/identity_schema_presets.py +0 -292
  360. ory_client/model/identity_schemas.py +0 -292
  361. ory_client/model/identity_with_credentials.py +0 -276
  362. ory_client/model/identity_with_credentials_oidc.py +0 -270
  363. ory_client/model/identity_with_credentials_oidc_config.py +0 -276
  364. ory_client/model/identity_with_credentials_oidc_config_provider.py +0 -276
  365. ory_client/model/identity_with_credentials_password.py +0 -270
  366. ory_client/model/identity_with_credentials_password_config.py +0 -268
  367. ory_client/model/internal_get_project_branding_body.py +0 -264
  368. ory_client/model/internal_is_ax_welcome_screen_enabled_for_project_body.py +0 -276
  369. ory_client/model/internal_is_owner_for_project_by_slug_body.py +0 -290
  370. ory_client/model/internal_is_owner_for_project_by_slug_response.py +0 -270
  371. ory_client/model/introspected_o_auth2_token.py +0 -322
  372. ory_client/model/is_owner_for_project_by_slug.py +0 -276
  373. ory_client/model/is_ready200_response.py +0 -270
  374. ory_client/model/is_ready503_response.py +0 -270
  375. ory_client/model/json_patch.py +0 -292
  376. ory_client/model/json_patch_document.py +0 -292
  377. ory_client/model/json_web_key.py +0 -340
  378. ory_client/model/json_web_key_set.py +0 -270
  379. ory_client/model/keto_namespace.py +0 -268
  380. ory_client/model/keto_namespaces.py +0 -292
  381. ory_client/model/list_custom_domains.py +0 -292
  382. ory_client/model/list_event_streams.py +0 -270
  383. ory_client/model/list_my_workspaces_response.py +0 -288
  384. ory_client/model/list_organizations_response.py +0 -276
  385. ory_client/model/list_workspace_projects_response.py +0 -288
  386. ory_client/model/login_flow.py +0 -370
  387. ory_client/model/login_flow_state.py +0 -292
  388. ory_client/model/logout_flow.py +0 -276
  389. ory_client/model/managed_identity_schema.py +0 -300
  390. ory_client/model/managed_identity_schema_validation_result.py +0 -268
  391. ory_client/model/managed_identity_schemas.py +0 -292
  392. ory_client/model/member_invite.py +0 -321
  393. ory_client/model/member_invites.py +0 -292
  394. ory_client/model/message.py +0 -355
  395. ory_client/model/message_dispatch.py +0 -302
  396. ory_client/model/metrics_datapoint.py +0 -276
  397. ory_client/model/migration_options.py +0 -284
  398. ory_client/model/namespace.py +0 -264
  399. ory_client/model/needs_privileged_session_error.py +0 -280
  400. ory_client/model/normalized_project.py +0 -337
  401. ory_client/model/normalized_project_revision.py +0 -1101
  402. ory_client/model/normalized_project_revision_courier_channel.py +0 -328
  403. ory_client/model/normalized_project_revision_hook.py +0 -342
  404. ory_client/model/normalized_project_revision_identity_schema.py +0 -308
  405. ory_client/model/normalized_project_revision_identity_schemas.py +0 -292
  406. ory_client/model/normalized_project_revision_third_party_provider.py +0 -368
  407. ory_client/model/normalized_project_revision_tokenizer_template.py +0 -300
  408. ory_client/model/normalized_project_revision_tokenizer_templates.py +0 -292
  409. ory_client/model/normalized_projects.py +0 -292
  410. ory_client/model/null_duration.py +0 -292
  411. ory_client/model/o_auth2_client.py +0 -460
  412. ory_client/model/o_auth2_client_token_lifespans.py +0 -306
  413. ory_client/model/o_auth2_consent_request.py +0 -328
  414. ory_client/model/o_auth2_consent_request_open_id_connect_context.py +0 -280
  415. ory_client/model/o_auth2_consent_session.py +0 -308
  416. ory_client/model/o_auth2_consent_session_expires_at.py +0 -280
  417. ory_client/model/o_auth2_consent_sessions.py +0 -292
  418. ory_client/model/o_auth2_login_request.py +0 -320
  419. ory_client/model/o_auth2_logout_request.py +0 -290
  420. ory_client/model/o_auth2_redirect_to.py +0 -270
  421. ory_client/model/o_auth2_token_exchange.py +0 -284
  422. ory_client/model/oidc_configuration.py +0 -412
  423. ory_client/model/oidc_user_info.py +0 -336
  424. ory_client/model/organization.py +0 -302
  425. ory_client/model/organization_body.py +0 -268
  426. ory_client/model/pagination.py +0 -274
  427. ory_client/model/pagination_headers.py +0 -268
  428. ory_client/model/parse_error.py +0 -278
  429. ory_client/model/patch_identities_body.py +0 -270
  430. ory_client/model/perform_native_logout_body.py +0 -270
  431. ory_client/model/permissions_on_project.py +0 -260
  432. ory_client/model/permissions_on_workpace_response.py +0 -264
  433. ory_client/model/plan.py +0 -276
  434. ory_client/model/plan_details.py +0 -312
  435. ory_client/model/plan_features.py +0 -266
  436. ory_client/model/plans.py +0 -287
  437. ory_client/model/post_check_permission_body.py +0 -286
  438. ory_client/model/post_check_permission_or_error_body.py +0 -286
  439. ory_client/model/pricing.py +0 -292
  440. ory_client/model/project.py +0 -319
  441. ory_client/model/project_api_key.py +0 -298
  442. ory_client/model/project_api_keys.py +0 -292
  443. ory_client/model/project_branding.py +0 -303
  444. ory_client/model/project_branding_colors.py +0 -376
  445. ory_client/model/project_branding_theme.py +0 -421
  446. ory_client/model/project_branding_themes.py +0 -292
  447. ory_client/model/project_cors.py +0 -268
  448. ory_client/model/project_events_datapoint.py +0 -288
  449. ory_client/model/project_host.py +0 -281
  450. ory_client/model/project_member.py +0 -288
  451. ory_client/model/project_members.py +0 -292
  452. ory_client/model/project_metadata.py +0 -337
  453. ory_client/model/project_metadata_list.py +0 -292
  454. ory_client/model/project_revision_hooks.py +0 -292
  455. ory_client/model/project_revision_identity_schemas.py +0 -292
  456. ory_client/model/project_revision_third_party_login_providers.py +0 -292
  457. ory_client/model/project_revisions.py +0 -292
  458. ory_client/model/project_service_identity.py +0 -270
  459. ory_client/model/project_service_o_auth2.py +0 -270
  460. ory_client/model/project_service_permission.py +0 -270
  461. ory_client/model/project_services.py +0 -282
  462. ory_client/model/projects.py +0 -292
  463. ory_client/model/quota_usage.py +0 -326
  464. ory_client/model/recovery_code_for_identity.py +0 -280
  465. ory_client/model/recovery_flow.py +0 -330
  466. ory_client/model/recovery_flow_state.py +0 -292
  467. ory_client/model/recovery_identity_address.py +0 -290
  468. ory_client/model/recovery_link_for_identity.py +0 -274
  469. ory_client/model/registration_flow.py +0 -352
  470. ory_client/model/registration_flow_state.py +0 -292
  471. ory_client/model/reject_o_auth2_request.py +0 -280
  472. ory_client/model/relation_query.py +0 -286
  473. ory_client/model/relationship.py +0 -296
  474. ory_client/model/relationship_namespaces.py +0 -270
  475. ory_client/model/relationship_patch.py +0 -278
  476. ory_client/model/relationships.py +0 -274
  477. ory_client/model/revision_courier_channels.py +0 -292
  478. ory_client/model/rfc6749_error_json.py +0 -280
  479. ory_client/model/schema_patch.py +0 -276
  480. ory_client/model/self_service_flow_expired_error.py +0 -282
  481. ory_client/model/session.py +0 -318
  482. ory_client/model/session_activity_datapoint.py +0 -282
  483. ory_client/model/session_authentication_method.py +0 -297
  484. ory_client/model/session_authentication_methods.py +0 -292
  485. ory_client/model/session_device.py +0 -282
  486. ory_client/model/set_active_project_in_console_body.py +0 -270
  487. ory_client/model/set_custom_domain_body.py +0 -280
  488. ory_client/model/set_event_stream_body.py +0 -287
  489. ory_client/model/set_project.py +0 -296
  490. ory_client/model/set_project_branding_theme_body.py +0 -290
  491. ory_client/model/settings_flow.py +0 -338
  492. ory_client/model/settings_flow_state.py +0 -291
  493. ory_client/model/source_position.py +0 -268
  494. ory_client/model/string_slice_json_format.py +0 -287
  495. ory_client/model/subject_set.py +0 -282
  496. ory_client/model/subscription.py +0 -350
  497. ory_client/model/successful_code_exchange_response.py +0 -280
  498. ory_client/model/successful_native_login.py +0 -280
  499. ory_client/model/successful_native_registration.py +0 -292
  500. ory_client/model/successful_project_update.py +0 -284
  501. ory_client/model/token_pagination.py +0 -274
  502. ory_client/model/token_pagination_headers.py +0 -268
  503. ory_client/model/token_pagination_request_parameters.py +0 -274
  504. ory_client/model/token_pagination_response_headers.py +0 -268
  505. ory_client/model/trust_o_auth2_jwt_grant_issuer.py +0 -302
  506. ory_client/model/trusted_o_auth2_jwt_grant_issuer.py +0 -298
  507. ory_client/model/trusted_o_auth2_jwt_grant_issuers.py +0 -292
  508. ory_client/model/trusted_o_auth2_jwt_grant_json_web_key.py +0 -268
  509. ory_client/model/ui_container.py +0 -294
  510. ory_client/model/ui_node.py +0 -322
  511. ory_client/model/ui_node_anchor_attributes.py +0 -294
  512. ory_client/model/ui_node_attributes.py +0 -440
  513. ory_client/model/ui_node_image_attributes.py +0 -294
  514. ory_client/model/ui_node_input_attributes.py +0 -340
  515. ory_client/model/ui_node_meta.py +0 -270
  516. ory_client/model/ui_node_script_attributes.py +0 -318
  517. ory_client/model/ui_node_text_attributes.py +0 -288
  518. ory_client/model/ui_nodes.py +0 -292
  519. ory_client/model/ui_text.py +0 -291
  520. ory_client/model/ui_texts.py +0 -292
  521. ory_client/model/update_identity_body.py +0 -304
  522. ory_client/model/update_login_flow_body.py +0 -411
  523. ory_client/model/update_login_flow_with_code_method.py +0 -292
  524. ory_client/model/update_login_flow_with_lookup_secret_method.py +0 -280
  525. ory_client/model/update_login_flow_with_oidc_method.py +0 -300
  526. ory_client/model/update_login_flow_with_password_method.py +0 -294
  527. ory_client/model/update_login_flow_with_totp_method.py +0 -284
  528. ory_client/model/update_login_flow_with_web_authn_method.py +0 -288
  529. ory_client/model/update_recovery_flow_body.py +0 -351
  530. ory_client/model/update_recovery_flow_with_code_method.py +0 -290
  531. ory_client/model/update_recovery_flow_with_link_method.py +0 -288
  532. ory_client/model/update_registration_flow_body.py +0 -389
  533. ory_client/model/update_registration_flow_with_code_method.py +0 -292
  534. ory_client/model/update_registration_flow_with_oidc_method.py +0 -300
  535. ory_client/model/update_registration_flow_with_password_method.py +0 -290
  536. ory_client/model/update_registration_flow_with_web_authn_method.py +0 -292
  537. ory_client/model/update_settings_flow_body.py +0 -419
  538. ory_client/model/update_settings_flow_with_lookup_method.py +0 -294
  539. ory_client/model/update_settings_flow_with_oidc_method.py +0 -294
  540. ory_client/model/update_settings_flow_with_password_method.py +0 -284
  541. ory_client/model/update_settings_flow_with_profile_method.py +0 -284
  542. ory_client/model/update_settings_flow_with_totp_method.py +0 -286
  543. ory_client/model/update_settings_flow_with_web_authn_method.py +0 -290
  544. ory_client/model/update_subscription_body.py +0 -284
  545. ory_client/model/update_verification_flow_body.py +0 -351
  546. ory_client/model/update_verification_flow_with_code_method.py +0 -290
  547. ory_client/model/update_verification_flow_with_link_method.py +0 -288
  548. ory_client/model/update_workspace_payload.py +0 -270
  549. ory_client/model/usage.py +0 -270
  550. ory_client/model/verifiable_credential_priming_response.py +0 -292
  551. ory_client/model/verifiable_credential_proof.py +0 -268
  552. ory_client/model/verifiable_credential_response.py +0 -268
  553. ory_client/model/verifiable_identity_address.py +0 -308
  554. ory_client/model/verification_flow.py +0 -318
  555. ory_client/model/verification_flow_state.py +0 -292
  556. ory_client/model/version.py +0 -264
  557. ory_client/model/warning.py +0 -268
  558. ory_client/model/workspace.py +0 -292
  559. ory_client/model/workspace_meta.py +0 -296
  560. ory_client/model/workspaces.py +0 -292
  561. ory_client/model_utils.py +0 -2059
  562. ory_client-1.8.1.dist-info/RECORD +0 -310
  563. {ory_client-1.8.1.dist-info → ory_client-1.11.6.dist-info}/LICENSE +0 -0
  564. {ory_client-1.8.1.dist-info → ory_client-1.11.6.dist-info}/WHEEL +0 -0
  565. {ory_client-1.8.1.dist-info → ory_client-1.11.6.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,278 @@
1
+ ory_client/__init__.py,sha256=ozQR66XvE5GBUykfoO9umG0MQCkGA9X1Qf-IESK-MiY,21521
2
+ ory_client/api_client.py,sha256=UoD9mVz2cKuUUJ0BT6dDBpxdCqVKKetkUNmdQg02Kko,25870
3
+ ory_client/api_response.py,sha256=eMxw1mpmJcoGZ3gs9z6jM4oYoZ10Gjk333s9sKxGv7s,652
4
+ ory_client/configuration.py,sha256=RaSQxi_WQxVhnqc51s121gqkwJSBWSP1c3HdK29gZYI,16294
5
+ ory_client/exceptions.py,sha256=I1_qYvXAAXWNg3re2D9ylDnGokKNKGK-SeXtXMYrAqY,6073
6
+ ory_client/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
7
+ ory_client/rest.py,sha256=_SWzIwN3GoSa7jBSaMijHrtoF_G9_Yh_Dd6lBYrjjZ8,9329
8
+ ory_client/api/__init__.py,sha256=cvOL-iT4NsaerPwwyPXFpJBlxr1ePvDeWSh8IQ1x4dA,657
9
+ ory_client/api/courier_api.py,sha256=ezeTqqDnRp3PD-eepEbKTWOMgWAW0h_vQY1JsDzbZ60,26834
10
+ ory_client/api/events_api.py,sha256=XdfFseHU8kXZ8GOHPOcT0STjgQ1FVr5K3WmQhG0wViY,47176
11
+ ory_client/api/frontend_api.py,sha256=Z_NS1GdbzwbYAolpRqFOFX6S1ud_wR0p6jLksTXAHE4,512202
12
+ ory_client/api/identity_api.py,sha256=PbfwhjKM_Els9kpqraRPqbsvqL7jApUnz0Ed6zItK-U,253027
13
+ ory_client/api/jwk_api.py,sha256=p5AnCPh7lx-un0uCcArWWg0cKq8gbQEoDc9RyYZw_Vc,84095
14
+ ory_client/api/metadata_api.py,sha256=xSEe_mU8p1E-80aD1XDj_PmB76EuLKbnkwTeYGg9Tjk,11196
15
+ ory_client/api/o_auth2_api.py,sha256=FXmHWgS03coF2JP1NVqUT8E5SsNf06pV59ZvgywjBJU,346151
16
+ ory_client/api/oidc_api.py,sha256=2libULNo-Mad0pfSUhASQ0DQhNK3gGxeGZ58KtHX1kg,95531
17
+ ory_client/api/permission_api.py,sha256=Q7l12ZWQOkZ46e0khL04qpvEE_uSVHH4JQnYJsV9npQ,70508
18
+ ory_client/api/project_api.py,sha256=9F4BrZxMvehsd5ODZVV3xQ2DxMCh3g8uZXaqdu-eiWw,217043
19
+ ory_client/api/relationship_api.py,sha256=KqNqUrnWKYwxrPJ-6h4VexGd5AJibJl7MIng__LXpXo,74702
20
+ ory_client/api/wellknown_api.py,sha256=LCgTMrlLTt7yLUdNistEzIRmWcodrwndI95z0FIIFLU,11024
21
+ ory_client/models/__init__.py,sha256=4BJu-qHCjeJUeV3FiR-oChP-uhnBDt9APruUKaFAFME,20402
22
+ ory_client/models/accept_o_auth2_consent_request.py,sha256=ACGpgk3A6oh9MfYr7nYAP2LNJyQP-pFphvG3krcwIts,4789
23
+ ory_client/models/accept_o_auth2_consent_request_session.py,sha256=r4-vUpEJJs62IxMS7eg4xLj9P7wxRqj3-rOg4jq5LEw,4510
24
+ ory_client/models/accept_o_auth2_login_request.py,sha256=6c9A2YIdUhDUxuh8n6PxpboyyaV7rnvG51Mu74L92VE,6857
25
+ ory_client/models/active_project_in_console.py,sha256=o3EVZFIyp3t3Njyz6q5HsMjDLQpXbLQvnPOfscnwvoQ,3323
26
+ ory_client/models/attribute.py,sha256=K_KdVRPykIGtrQXal250I22D4H5619FmsLdTP1-Ihqo,3257
27
+ ory_client/models/attribute_filter.py,sha256=GjhXz3l8vIDuAm_PKeHjqaCJp6PFSbKatq9op5cQots,3885
28
+ ory_client/models/attributes_count_datapoint.py,sha256=PqkCWqu25id0uYsCPccDbE2QgZh3XB376YKS-6hPZ50,3426
29
+ ory_client/models/authenticator_assurance_level.py,sha256=3GyOYTGhc4ljsghHUIJoK-xb9KmR3v9L60BrHndKxs4,1310
30
+ ory_client/models/batch_patch_identities_response.py,sha256=83TU1NKjVu2FRVtrLr6ES_x-2fAPrwQYYAYA6FXmq_o,3857
31
+ ory_client/models/check_opl_syntax_result.py,sha256=y7MG7d51F0Nmm_a6gZVqATi1ADZdcWqxgBGvjI7fS-Y,3722
32
+ ory_client/models/check_permission_result.py,sha256=9t_uOgy1LYf-Cu-WmJegwA_j8l6uuuPyU-WQHtahycY,3326
33
+ ory_client/models/cloud_account.py,sha256=DxGICfjVQdLhD5PV3blsW0hApA95AXmtjgfbCRf_q4c,3286
34
+ ory_client/models/consistency_request_parameters.py,sha256=iZdVgW3DHE5keGcwl3RkJgJUjx5cwavWNeMvjqFyS20,4743
35
+ ory_client/models/continue_with.py,sha256=8e2KFzih2JIh6Gvc-oYPIjRInd1Vf0qwIBrNrvmwgwE,9777
36
+ ory_client/models/continue_with_recovery_ui.py,sha256=Zp21HrNcfRTkGpMBsTKwnXx2yOM3i5SsQOKnC9psCgw,4058
37
+ ory_client/models/continue_with_recovery_ui_flow.py,sha256=se5koE42A6VtY7Zfw4Xxu1CVy1QoXiYg_yzQqYpvcl8,3413
38
+ ory_client/models/continue_with_set_ory_session_token.py,sha256=USN6jmgqZpnwIjEMfJnUDwg5jUMt5wvW32pxIm9rwCQ,3916
39
+ ory_client/models/continue_with_settings_ui.py,sha256=yq42550uwKMv_4NsPC78w8bS6hRr8o7Po6_yh-7B7rc,4058
40
+ ory_client/models/continue_with_settings_ui_flow.py,sha256=T2a7p9_LrZTnon4InHQ4l0OJ8Zf9TajMN31YBNk6w-Q,3266
41
+ ory_client/models/continue_with_verification_ui.py,sha256=_F7cIypz9bjqkdDilYRtdt8KyxImFb4pVtxe29A350M,4110
42
+ ory_client/models/continue_with_verification_ui_flow.py,sha256=5gVXHSVHwsSuCLPKryo5r3v5hX-TUwRQhZXyzBgE2OE,3630
43
+ ory_client/models/courier_message_status.py,sha256=EUZGc8GO8t-qUU4lB8dXrgfn-kZit3eUARYOqaz4VPM,926
44
+ ory_client/models/courier_message_type.py,sha256=yOQMutjU0RPmcAevAgxkHgsaivtyb6DrGJuOCi80Jl0,881
45
+ ory_client/models/create_custom_domain_body.py,sha256=JgBL12HkrvkzsjzaTFipoY2SkNgS2Zi0zCXIvRoZKbw,4241
46
+ ory_client/models/create_event_stream_body.py,sha256=gHEMk7PySnDF3uco-Z3jspPB7nB3wbm_AYijDyMbbR4,3841
47
+ ory_client/models/create_identity_body.py,sha256=skwO4Qqkzhnf-MZKPqjU4_q8w5h8hmm46-wPjFo4cTA,7785
48
+ ory_client/models/create_invite_response.py,sha256=fBKCFnEjRLs_tLTAri_WSYEYT3QDhoSSqfLok-cBq1U,4127
49
+ ory_client/models/create_json_web_key_set.py,sha256=zIhXDslHkCvhuelmj3TDGNtamqbqEHT1Wb74j9-QgmQ,3855
50
+ ory_client/models/create_project_api_key_request.py,sha256=ASTMejpmUzkpOGfbsJsQ7RrBaVKdY97Hr-rM_NuJV6U,3306
51
+ ory_client/models/create_project_body.py,sha256=3j8ogzGxzAhPTanaXnKrbAKjKN1ejezYdlVCb71fPRU,3940
52
+ ory_client/models/create_project_branding.py,sha256=OhEh6e4mJk0VSEa0hRptNWGyXlCi-onUhmMCLn_PwcA,4053
53
+ ory_client/models/create_project_member_invite_body.py,sha256=ClYeJiJyadMBxC7xsE_8fMRFgLJbp8d_-SLOpJoDB38,3357
54
+ ory_client/models/create_project_normalized_payload.py,sha256=-EtV7P7qGd1jv1DK8r_VO-AqIMYKFMb8SJEqLTakDh4,98063
55
+ ory_client/models/create_recovery_code_for_identity_body.py,sha256=pkYCVFa3i2oPngE8rCly1cwsKHDQ56T9hEBcT947jrA,4151
56
+ ory_client/models/create_recovery_link_for_identity_body.py,sha256=a-dzF8Ddtr2tGEuLr12e14X8dQEkniYoY4Qs9eLIGas,4145
57
+ ory_client/models/create_relationship_body.py,sha256=Qx0e7cHLVYlXzwOqGbb4cxGaBrVx3KP4GG3GvKTngVM,4210
58
+ ory_client/models/create_subscription_body.py,sha256=M6AD91mXWQT9WZ2qOr9v9QlEsQaE0vxgAM6Zailm7YA,4326
59
+ ory_client/models/create_subscription_common.py,sha256=KPGbX2K6y-SWC-2WkeIqiQBLtCjsXrNn_B8jiH8VKGc,4193
60
+ ory_client/models/create_verifiable_credential_request_body.py,sha256=KYMcCB_J0FZPvIMbApowkGp3qv8PSLW_7oIIryVjKDs,3805
61
+ ory_client/models/create_workspace_member_invite_body.py,sha256=E8k3RGrIqq8cSkR3X509QNP7SAXE3BMQPF1-FFJcYL8,3359
62
+ ory_client/models/create_workspace_payload.py,sha256=ywxXicRXVBQ5RIw-RHr5T-i4hB0qQXPcezDjCG6flyE,3256
63
+ ory_client/models/create_workspace_subscription_body.py,sha256=olSWICBN5pf5R-YHrt3JvCP0-aV_-xn5OqXrOuyFxBs,4221
64
+ ory_client/models/credential_supported_draft00.py,sha256=WchAxijYfVJmr29VzoGaQU-287_jf8JIatoJGLijeXg,4455
65
+ ory_client/models/custom_domain.py,sha256=aYC7Oba22ibDOzP6NjtFPXvFw1_JGSkR_WtMlPkV_-M,5551
66
+ ory_client/models/delete_my_sessions_count.py,sha256=pZKBo5jeQtPeVqKUToKCp4qL-M2sXXPQLKxH9ls1T44,3306
67
+ ory_client/models/email_template_data.py,sha256=O5uNr8u5Rb8Djxv4fUnbJUNegaCpR8PzSCgyk-480oo,3654
68
+ ory_client/models/email_template_data_body.py,sha256=1qp6DsJQBDcEOqD_uY2aUMYu5QttVA9ur6DmpEIsKRI,3281
69
+ ory_client/models/error_authenticator_assurance_level_not_satisfied.py,sha256=YyuuZuWYf3AzVGePFhsiGi9BPz3zRMyqaE3gA6QYEJY,3823
70
+ ory_client/models/error_browser_location_change_required.py,sha256=c6GK4KQK8R5KzWjf25OQxyWip-aGpErb_7p2WdRsCao,3783
71
+ ory_client/models/error_flow_replaced.py,sha256=gzgBQe3hUJVWVA4GOAMZ-PUj_aP9-al-L2hXft7BDCg,3775
72
+ ory_client/models/error_generic.py,sha256=JT-hd6Y8WeNt2TxqFhxVBMZOAToA9PHdeeyUg_kSdLc,3488
73
+ ory_client/models/error_o_auth2.py,sha256=HjiNy6VyKK0K-XP8xsSyIBuuZnOXPvCh_AaDoz-0aWI,3956
74
+ ory_client/models/event_stream.py,sha256=S-r5YRsJDrZnENY5Lgis1hMh9JAdU5lF2LdGw9ZOIT0,3698
75
+ ory_client/models/expanded_permission_tree.py,sha256=OV_vxUEdSWOe8MTIAMcuHVuX56DRyZa98uMfIFKt184,5023
76
+ ory_client/models/flow_error.py,sha256=inLQ_jsYi48YIg8nhynK7O9e1TKRtZ516PQ2Yqv9AIE,3706
77
+ ory_client/models/generic_error.py,sha256=2iKs1xO7VzJqzX1VNccG9tYTSjNhQ-byAakb63BfZbw,5170
78
+ ory_client/models/generic_error_content.py,sha256=K7ra6W4wtrXf2Qmv773h5NTsOrUf0enSHEWHvN4sJHU,4082
79
+ ory_client/models/generic_usage.py,sha256=P8WVsqUnY6hNjMVT1oRPr5zTiKLhW8qFXf0CLPokUxQ,3540
80
+ ory_client/models/get_attributes_count_response.py,sha256=H-6qYnZL1tGZRt7YkljeKuWk20bL66kyKj04PXKPC1Y,3837
81
+ ory_client/models/get_managed_identity_schema_location.py,sha256=LrJVNEacXp1fnhmdCsJtRdLnmEoL83Ll5ldv0KVt374,3279
82
+ ory_client/models/get_metrics_event_attributes_response.py,sha256=Lsgzz55p0YYbiRxW7xILp7aCNctmcpfSJRj0WK_mQA4,3402
83
+ ory_client/models/get_metrics_event_types_response.py,sha256=jjj4xVM8JEARZvx6aCRfCj-adcfT40r1V6dDfayUl3k,3382
84
+ ory_client/models/get_organization_response.py,sha256=paxlfDKUr-iiGfV6lf-szBblK83ztAdS4owb-a0QtRo,3538
85
+ ory_client/models/get_project_events_body.py,sha256=eD6EB6BY8Brwa4PjwEGthYUkx17K4aZrYtqx_rlDy_o,4650
86
+ ory_client/models/get_project_events_response.py,sha256=iZq9gZSuM697ppBw5wGGE9cSdE2l8Q71b--_xxjusD0,4127
87
+ ory_client/models/get_project_metrics_response.py,sha256=wKyP3Nhg0-XzsaFSQPgHVFzhlHQe1olR2KOk3Beafw8,3793
88
+ ory_client/models/get_session_activity_response.py,sha256=vFY-qby938yYn1aAoZgexTTWRDWaq_MLgPMVD7Eg6EA,3837
89
+ ory_client/models/get_version200_response.py,sha256=sSByJHHT0NilPKThdxv5EF-NypunAH7AxofL9kCBO6A,3265
90
+ ory_client/models/health_not_ready_status.py,sha256=AvsLYJ5cZyCa-aG_SO8YzDoY0B2iBeFO3XFpjW6jkFw,3342
91
+ ory_client/models/health_status.py,sha256=VCuzB-iy5dWuqp4ERw5FrFToREOesRd-r_AD3TKyqlw,3263
92
+ ory_client/models/identity.py,sha256=xHAPNdm9ZokDFMK0klpM3PVU-5qqSM7zulzhaR6iYo0,9392
93
+ ory_client/models/identity_credentials.py,sha256=yxvATZHsMYErVC0vwL7U26CqW8hpFMP_ntPZ0AYfuOI,5306
94
+ ory_client/models/identity_credentials_code.py,sha256=H_pHb0PnH8G4-ZyBcubfpzWFpulyleKnzNgd2urLBxs,3710
95
+ ory_client/models/identity_credentials_oidc.py,sha256=aBGq3QI5nBeYnG_yfTUfAmuiuUlokOiW8M6sR_Wrd-A,3784
96
+ ory_client/models/identity_credentials_oidc_provider.py,sha256=KxbHdoR-fZ-VDlvZ4VBa67bKjCe3Hh-N_dYnlhTvhc8,3913
97
+ ory_client/models/identity_credentials_password.py,sha256=Rc84Kv-mX23lhGMchGZyrhYvFvUTByL8Gd1f3KfF-tc,3385
98
+ ory_client/models/identity_patch.py,sha256=2FB5FrL6Z3p06sgvUQDV8DwLPDEifWugtdGRoV67WOE,3834
99
+ ory_client/models/identity_patch_response.py,sha256=vEQ9FKnBIz1YygtbKW4nhWK0haHAjSRXW29Lou2oy2U,4031
100
+ ory_client/models/identity_schema_container.py,sha256=LORpCcjpNifjPeNZFvXpUujEOxsfFMqSReOq9IDtTdY,3482
101
+ ory_client/models/identity_schema_preset.py,sha256=4kF_1Hspsu1eJPmuk4eyQKW8ootgijgIKBhU8AfYcBo,3403
102
+ ory_client/models/identity_with_credentials.py,sha256=4Uf0Ks12IsQD7CR05HYbUHdLEJ-pgWI94sfm3GHWc1E,4041
103
+ ory_client/models/identity_with_credentials_oidc.py,sha256=pmKJYhr5dQZcEABHv3dmRQO9cnAfQFx9xsWQmSQG6Io,3641
104
+ ory_client/models/identity_with_credentials_oidc_config.py,sha256=xKJixikJQXXbyGB9q8tNSDJ7gI6XoMd2SQibjzYI5vI,4415
105
+ ory_client/models/identity_with_credentials_oidc_config_provider.py,sha256=Hq5Znns7e62yCjLMXkwCeovMBfFixw_OG2hbT5IpePc,3640
106
+ ory_client/models/identity_with_credentials_password.py,sha256=FkcEAuABd7GE65ESFY6rftUBhN-3ylIkA2TGwKnd8UI,3663
107
+ ory_client/models/identity_with_credentials_password_config.py,sha256=9VPHVXPhi6EsSD6E1_GXZ1o3lVjK4VbO54UOWjZu-Co,3707
108
+ ory_client/models/internal_get_project_branding_body.py,sha256=PXVV8fijdXt4f8ZcUL2aA1duawMH19HnY-pnR5rh2Ws,3278
109
+ ory_client/models/internal_is_ax_welcome_screen_enabled_for_project_body.py,sha256=sIwrZi9G1tpRrn9iAla2RMSNfsIVP7ezRlKPXa1XM4o,3522
110
+ ory_client/models/internal_is_owner_for_project_by_slug_body.py,sha256=q2XZWdWCn2Ic2teQ6_BdaQdpZYMyynB_B_6iPxMHz_M,4153
111
+ ory_client/models/internal_is_owner_for_project_by_slug_response.py,sha256=DVWP3p6gWcnM_g6vr-uDjn0q3rhfUqmQMu2YYGczhPY,3353
112
+ ory_client/models/introspected_o_auth2_token.py,sha256=pOqnEOYtHIhTh-qOot33-JRjumLbvZe2h_I491jXdNI,6816
113
+ ory_client/models/is_owner_for_project_by_slug.py,sha256=nnYnagcS7FBmQ-wy15-g7_GrNGSFZccd0EoIN3KS-e8,3479
114
+ ory_client/models/json_patch.py,sha256=knbQV3te1NvmI8wE65LJPV5i5p_TCNEh-xPSn_UO1OE,4643
115
+ ory_client/models/json_web_key.py,sha256=HZSmk7Jv0MR-em1p6DbIm3M3PT-iqVo1rkpcwSiejC4,6294
116
+ ory_client/models/json_web_key_set.py,sha256=3IX8WBUES0bXOGo6k_y0JY-QtyhLwxkxlShTR706feA,3972
117
+ ory_client/models/keto_namespace.py,sha256=VHHd5MNvh2yX5vJUq-5jVHvYsjAfuPfdhnt3HPddyP8,3276
118
+ ory_client/models/list_event_streams.py,sha256=s1wSFcp3xFni012wkiIZve8oWIHkeBx1K8aNnsp-Mk4,3711
119
+ ory_client/models/list_my_workspaces_response.py,sha256=qT59mr-TI1nWYzmtIf6u6568UjBg31TkdM13tcyFY1E,3930
120
+ ory_client/models/list_organizations_response.py,sha256=vsyjjr4nKGKMVGjALUSMv9i9yGMGsWSHr8tsqgbRaz8,3722
121
+ ory_client/models/list_workspace_projects_response.py,sha256=rwUgBzEeD9eQd6DNpYp1j3yRR-cGK82dCiX8uH_f7KI,3916
122
+ ory_client/models/login_flow.py,sha256=gwAYkmyJp-5WFxFKxE5pUHI7w4RO2PHil1HLqN12OhA,9529
123
+ ory_client/models/login_flow_state.py,sha256=-nXaKX0Mmrguh_a3z8SAafBvB9-O1S6ej2E6rJIam9A,1163
124
+ ory_client/models/logout_flow.py,sha256=QsDu4LpiPTUMDrmnKmq1MNfxJgv0npU6TBFFNZ5OKYA,3453
125
+ ory_client/models/managed_identity_schema.py,sha256=ot-vfGu5N2uNlPlA7IILAWPt9fHr15yqM3qFw_k4Rik,4697
126
+ ory_client/models/managed_identity_schema_validation_result.py,sha256=vQ6ezWXG8yeZ6JOnPjdOyaaAULWKBbSsPnr3ZWG3_-o,3398
127
+ ory_client/models/member_invite.py,sha256=thJwrq1Gdm48LMO6dYBvRgvrgQCSltd4rdzWzX3sJSw,5910
128
+ ory_client/models/message.py,sha256=EqPM9CcLUl8A524hDI6CvFLgpdzPZ6A3VYe1qh8Uq4U,6303
129
+ ory_client/models/message_dispatch.py,sha256=IQENuI6ccG6JclfZVHOKBXjORzmcGR75QUWK7UErUm0,4500
130
+ ory_client/models/metrics_datapoint.py,sha256=aYJIDDpH8cJXhlqQ0A2GQV4iTajh7frgAXj4pwpSpP0,3433
131
+ ory_client/models/migration_options.py,sha256=d6WDdYIfEpk_k3rl_deT4BYE4nZfbtWdNjqN_xBU69U,4654
132
+ ory_client/models/namespace.py,sha256=qY9Qeg9VP7I2ZcWOYiYlMBb4i08vLXU1mY7jaMtGipo,3235
133
+ ory_client/models/needs_privileged_session_error.py,sha256=rr64asNyflFqJnM71gRb2KgryVAkkP9IFxaItXIz6I4,3731
134
+ ory_client/models/normalized_project.py,sha256=lekCBUylOeyhj4CzZyaP-wps7pYsknqdkav4auIzEMs,6996
135
+ ory_client/models/normalized_project_revision.py,sha256=U8gwcLchR32ZAV1EzJEZy5WLm2EvT7pcIPnA51NedK4,97476
136
+ ory_client/models/normalized_project_revision_courier_channel.py,sha256=-Lwxep7wIHDgcF98JerdQdY6M61FxGdq3KvZuwY9ApI,7293
137
+ ory_client/models/normalized_project_revision_hook.py,sha256=O35z0a3AuCE5hmeyjOOZXGrqUjRYGn-wmEe6et9u70Y,7611
138
+ ory_client/models/normalized_project_revision_identity_schema.py,sha256=wwUMEpvGgSgDIk0cPxnIQpI92ZaUh5eQjLW99VCjNKw,6154
139
+ ory_client/models/normalized_project_revision_third_party_provider.py,sha256=iYI3Q84m6lNBIlf3zB6UNrJDmISu7hbwRaSn72jFBgU,10062
140
+ ory_client/models/normalized_project_revision_tokenizer_template.py,sha256=r4b9NexcoLUSxLGQSXptqybzDrYQqtY5jG0dTmYafhQ,5239
141
+ ory_client/models/o_auth2_client.py,sha256=TtaVA7rbu7JWkgNQW8b5FXNJpfnlw9cGXgJux0-V4hI,26805
142
+ ory_client/models/o_auth2_client_token_lifespans.py,sha256=kv6XVGATQqMPzajfbDCVg5-Yt5nKRVQNh7z-qOumcOQ,13606
143
+ ory_client/models/o_auth2_consent_request.py,sha256=8fsbfWK3e5OOIhBmkRV-MZfnhAB8R23hqA7zA0QMGS8,7136
144
+ ory_client/models/o_auth2_consent_request_open_id_connect_context.py,sha256=jxAucN6gBXkmiFJpHWmtXUAi4imTw97bcWiaROHhxlU,6855
145
+ ory_client/models/o_auth2_consent_session.py,sha256=m2cufuxA0QmX5krMMOI55x3c1CdXMtI7e7awdEwASJU,5794
146
+ ory_client/models/o_auth2_consent_session_expires_at.py,sha256=OkwVUPwZlgB858sYN0XXibZq-Wvqu1r93CvzqUWD43I,3749
147
+ ory_client/models/o_auth2_login_request.py,sha256=7uj6QPwDlvOO_uXB0qlmEXNvlcJlgIHzP_H7yEpDB3U,6339
148
+ ory_client/models/o_auth2_logout_request.py,sha256=tJsbo_0-Av6Zg6iGlAJDoaki_DMPYtTMKs8PJSL-2hE,4584
149
+ ory_client/models/o_auth2_redirect_to.py,sha256=KKXW76agNX1WmlsrE7XeB6VsK7oXSOOty6f6xD9d1TE,3412
150
+ ory_client/models/o_auth2_token_exchange.py,sha256=2TNyO9TsQGE-8ps9PblSBWQVt32oVF2OD1Ll74Hznow,4446
151
+ ory_client/models/oidc_configuration.py,sha256=8LPyVvg3-BomJYxU4jmeNqepHYAYtKcJtzTnXFtVAzY,15948
152
+ ory_client/models/oidc_user_info.py,sha256=3xhYyR1BAR-Z4Idvns2Vsvfr189mgs0e5uQlvhWknrs,10358
153
+ ory_client/models/organization.py,sha256=yTTv3hYiXlM2ETzqdKDPzKOb1VlXLrS5wlURwBMmZBw,4041
154
+ ory_client/models/organization_body.py,sha256=RBzVecpBEEcliolUpRQ1F_RT-wGxRdlqlMTo7PLwKXg,3492
155
+ ory_client/models/pagination.py,sha256=CObUGQ5WBY44QghMRqJOAqytUcrAwoOF9Klji3zLRSg,3927
156
+ ory_client/models/pagination_headers.py,sha256=peOMkHU4NmWMmR60Lit8sZY81MiIuLuRpgi5bsw3Cxk,3647
157
+ ory_client/models/parse_error.py,sha256=eVIrWh2TAZ_GA0bm2X89xZ_rJawPrij5LoMqV0d7wwY,3858
158
+ ory_client/models/patch_identities_body.py,sha256=fVeTmgVZs7Q0kRkaWlEwE-WN6F0TICewJsLCFAm0WS8,3798
159
+ ory_client/models/perform_native_logout_body.py,sha256=O3OeqPDLH1IL4tQmQtpjDAq3NJMawhZqGlsLachkUu4,3331
160
+ ory_client/models/permissions_on_workpace_response.py,sha256=i6nUPpqFE1aYuoD4UzjdsBzstmt1qVgM58Y879MZX4Q,3312
161
+ ory_client/models/plan.py,sha256=xa8XOrQOeIoFXVDMSMXyIU-8g4Ar84fNaCbUEszSGJE,3385
162
+ ory_client/models/plan_details.py,sha256=1pf6ExOIj-2wHpaUD8MEoa-MYIEN1uRtMZbqhUEItBA,5058
163
+ ory_client/models/post_check_permission_body.py,sha256=8rxydHbLJWx-HsF5JSWqcMJWE705a8rvttPYiWQx4e8,4221
164
+ ory_client/models/post_check_permission_or_error_body.py,sha256=6I0BVYs3CpXg8jjKn0EUyfrqM9Omwt8MxxvIoFC9fXc,4237
165
+ ory_client/models/project.py,sha256=TUbNzrvt-o8CCu9qjUEIvz5CHFjaQHZM24KiPJQMuMg,5803
166
+ ory_client/models/project_api_key.py,sha256=xjbqM99qrBY0zwuO_KJEt28cgieyRx1z7bHQIUDuC1U,4598
167
+ ory_client/models/project_branding.py,sha256=I4d05bzxI39rymTmhbvtc_QB8HibBrxjBJ1jW4hM0Mo,4854
168
+ ory_client/models/project_branding_colors.py,sha256=UqNMrXUc4DYEy_vUh_yIu3YsKIpPHuvmDFxUlVBxM6E,10787
169
+ ory_client/models/project_branding_theme.py,sha256=bC9bVimnnPzjwcZCxRrS-nGv89YNzzfwOCOhW__bpy8,12657
170
+ ory_client/models/project_cors.py,sha256=GBoPfXSPCYM51H5AfMcVrrCnnWPqlnSw6n1J2PiUyE0,3603
171
+ ory_client/models/project_events_datapoint.py,sha256=P5EuS70-EY48013PScNxvNnBSGbfcIKEcdGbU8Hnypo,4003
172
+ ory_client/models/project_host.py,sha256=aPVwm7cxxbFQeyWBRFs1DzMRH4rhih3Ac9nIGK2XLnw,3510
173
+ ory_client/models/project_member.py,sha256=mXbb0BWL2608RaofMsDv8XA2CNIMRc1DBkm3vqUdMjo,3355
174
+ ory_client/models/project_metadata.py,sha256=9yUXNCHqPrR3JxEMegTTEGXimVjQcg6WdJ8I48CDo1g,6410
175
+ ory_client/models/project_service_identity.py,sha256=10AKtQKQdW-WIcuc4hF7jJN_CiuFbb2c1Y7v4zUVmGI,3202
176
+ ory_client/models/project_service_o_auth2.py,sha256=di0j_vhNLBZgBxPzPHtmLQN4FiaTjBSDC8VnejYUi6g,3194
177
+ ory_client/models/project_service_permission.py,sha256=vvKlvFUA_RBjItTh1JfH0b12sBTrzFy9SSj8JAJJiCM,3210
178
+ ory_client/models/project_services.py,sha256=WqS1grUCm3-jG_0oEKoothRW5I7pnIizA-gN96gRFSI,4406
179
+ ory_client/models/quota_usage.py,sha256=z3qmsgJOuVsaCpqthhph8UFX7vvaJ_iQLBjtojJCTUw,6074
180
+ ory_client/models/recovery_code_for_identity.py,sha256=9QqE-pVJlGTwPXDLZXO9YGnnhNYs8Fphn3Qdrr_Mc0s,3871
181
+ ory_client/models/recovery_flow.py,sha256=37rTayE6vzTOMygRjEJA9vCquU__oMnGJECD2hfoQ1g,6608
182
+ ory_client/models/recovery_flow_state.py,sha256=ZNneu_W0UNoF9nVYkr9kffYq-2Ykoa0dMuqlTHjzFnk,1177
183
+ ory_client/models/recovery_identity_address.py,sha256=_wNvxxfneHbsyyBySQYkd3lY-4EeILHmSHzit0CXFIQ,3751
184
+ ory_client/models/recovery_link_for_identity.py,sha256=qj-mb2NW8yhLQN1mFDNg-yhHnmNG-xSGYw1GMIJD6Jo,3622
185
+ ory_client/models/registration_flow.py,sha256=tYm-LX1tLhZt0HmsMi6ZQdR401jI0UPftGM0ckpzYw8,8544
186
+ ory_client/models/registration_flow_state.py,sha256=e1wyX4jUCs85zpbXoWK4aKxfvlTMhTeDuJlYBj4Zlmo,1133
187
+ ory_client/models/reject_o_auth2_request.py,sha256=bwyXLcXFFWq1GsV7HaB6sICLb7mjFsbvlTQzu7u4anQ,4269
188
+ ory_client/models/relation_query.py,sha256=dy3hHSF0wsfurdsJb0055pbLhceM1bjUWikL-UnyFIU,4165
189
+ ory_client/models/relationship.py,sha256=2raSGcnDkVoxgjyWBRNLOQCwucCqtdMbXm-3GZm2WwE,4140
190
+ ory_client/models/relationship_namespaces.py,sha256=Vh_QUOIi5eME_8PkTuH0nOFQGYAeZ9-zMa74G63e_uM,3703
191
+ ory_client/models/relationship_patch.py,sha256=x2V1UcfxR87tBTBa8xLVHCP0FjhUqd6l5f794Iw4xco,4006
192
+ ory_client/models/relationships.py,sha256=-SkgQhyyYm_FcGrxgZCEQsJ0GEmlD3MLcQmlXEME-R0,4031
193
+ ory_client/models/rfc6749_error_json.py,sha256=OXsh2MCdnZlY7hymjx1d3KhkqYCMPUlzQ-x27-YEv1Q,3678
194
+ ory_client/models/schema_patch.py,sha256=G1tix3O49D0WZQ8zqVuQzSr6ZnLPx652_q1WsLtQxJw,3324
195
+ ory_client/models/self_service_flow_expired_error.py,sha256=AENOtHOoOKHKzqcQwWuAlJZQ39gddhfjUevFq_yIzb4,4263
196
+ ory_client/models/session.py,sha256=2SHjF3I-mfCezL8ENKY6GxbRjs-gBcUN2JbIw5R1uAI,6685
197
+ ory_client/models/session_activity_datapoint.py,sha256=tQOyrBW5XKC1xwD_krBkSJxCtntOjr3JXgqOUF_Umro,3594
198
+ ory_client/models/session_authentication_method.py,sha256=fYPR2IGxjCFiIEd-tJfjTWImWT6LQqyYXKSY2Ul2tEA,4598
199
+ ory_client/models/session_device.py,sha256=5qz70_Y0eZLBnxKu4p2GQDBkry737u_efUkmHaIJYvw,3726
200
+ ory_client/models/set_active_project_in_console_body.py,sha256=sUJBaqxf_o99Gp8g4wOTCHnYSuVdS8JKcrzAXi7z7Oo,3376
201
+ ory_client/models/set_custom_domain_body.py,sha256=BPxKBkLfQiLXJsL2mNO0wyrp3m61nNsbnH2tn2PsVz8,4215
202
+ ory_client/models/set_event_stream_body.py,sha256=gktHqyzsjgHU-0y_B2dgp5H4P8LxUIFy9qEf_HRFZTY,3824
203
+ ory_client/models/set_project.py,sha256=Zg6pHpq7uga2kMpf_tjqC_Lfxk2oJEsGl4-rF9VfZkQ,4326
204
+ ory_client/models/set_project_branding_theme_body.py,sha256=dcxduQgvbVOiaQl9olcCPbh5GyQRyDfaOGosf4K-xmo,4288
205
+ ory_client/models/settings_flow.py,sha256=E3PZAV5QMwd7WqoIkYtfa4p8qr8NMBI4fzxguF7PzkQ,7279
206
+ ory_client/models/settings_flow_state.py,sha256=j1LiXUQ-j-Q_m8ypblBGRUNb-zqNxHK3M1P-sbui14w,1229
207
+ ory_client/models/source_position.py,sha256=piCkmrBRi5htPhY9Jzn26BBDvXNJO8r2Y0ytLa80w68,3321
208
+ ory_client/models/subject_set.py,sha256=AqbxTjEEqmiDNrli8dHfhNx8792ca-LAL_SDM5i7-go,3485
209
+ ory_client/models/subscription.py,sha256=wYYGGetdnyvus5p5acNLXzGxRyP886lnlrR7Ez_rR5Y,9494
210
+ ory_client/models/successful_code_exchange_response.py,sha256=EXvwrBQazWfcUo54zw3yOm8-5pJyNlnrOVlY-_jWXeM,3925
211
+ ory_client/models/successful_native_login.py,sha256=vzPX14aHPIO-2XlrDPvGJTwb3Zr2526-kgUKs35FT6A,4731
212
+ ory_client/models/successful_native_registration.py,sha256=Bzk_nSqCqW98pvcGnAZfskwGeWLjN0MKxNFAIqd9uPo,5223
213
+ ory_client/models/successful_project_update.py,sha256=w0uvL6rmKjfszksH8awcezdl2F479KKHGGvVhZcJM_Y,4445
214
+ ory_client/models/token_pagination.py,sha256=r8lvxFE-ly6hNtFUTvxIxxn9qKniF-2NqeXIMQjlQL0,3947
215
+ ory_client/models/token_pagination_headers.py,sha256=clqufhTz_ipqRmeW-QNIJ7WdMfmG28RdjjmyYfOFs-U,3667
216
+ ory_client/models/token_pagination_request_parameters.py,sha256=PgPIXepw65mjta-bXn0qbHamPZPpYknRHjekXcHp6i0,4332
217
+ ory_client/models/token_pagination_response_headers.py,sha256=_R79ky7MjD1zpCoPzEPJZmpK6pNdKEOjZlQKKVvBheY,4472
218
+ ory_client/models/trust_o_auth2_jwt_grant_issuer.py,sha256=Lnq6tq6bY4EgMUXjIAKoT5QY2MIPKVx0AWf_g1FFEVU,4657
219
+ ory_client/models/trusted_o_auth2_jwt_grant_issuer.py,sha256=mAyjETbJI3x0m1QhSDYtaGQDatzuaZ7bSbaVKD2LR9Y,5167
220
+ ory_client/models/trusted_o_auth2_jwt_grant_json_web_key.py,sha256=N7bu7TzmCBL4oCGRUoQ06WReqA4LGBejaM3OV-vy0iY,3601
221
+ ory_client/models/ui_container.py,sha256=TmEn_YsxpjTWfqZYs2ycZ_O44mC6fFEH6sCtremjZQE,4543
222
+ ory_client/models/ui_node.py,sha256=JVaMQRXI5uZGZU7SGtHNvKrmmhDx-wWkmVBSfmUgW4c,5771
223
+ ory_client/models/ui_node_anchor_attributes.py,sha256=jrXfUsK2fdaZINZmWlfZtC9Gq_yVjJviCoIDbpjakQo,4365
224
+ ory_client/models/ui_node_attributes.py,sha256=QKiYtk5u-0sPcS-H6pOAUDUilLHPjCKzIu3xvvqoqDs,10718
225
+ ory_client/models/ui_node_image_attributes.py,sha256=2RySo6zuBdg0o6zKfwxhQTSvwYbZIp4wdGIx4BIy0Ug,4262
226
+ ory_client/models/ui_node_input_attributes.py,sha256=3y54Vpf5NXPd9aBYw3rtlNDbO5GjfZ3Lp8EoHVlSlV4,7408
227
+ ory_client/models/ui_node_meta.py,sha256=D9b-MLc4L9IPlfYKKNp1XbmDQjKfC1H7x-sMIo1kEVM,3508
228
+ ory_client/models/ui_node_script_attributes.py,sha256=ZufPChCPXvqNcowNNbgdlu8ccuiTW570UeBKiTsY1Zc,5024
229
+ ory_client/models/ui_node_text_attributes.py,sha256=qh9WOHKMJaU7RXPGxftXPWIQjuKBnWYLAjikHHX32MM,4215
230
+ ory_client/models/ui_text.py,sha256=9Ul7rXEYYgDL-RyE0uRCucXHUfXYueXFw890QAyi4oc,3909
231
+ ory_client/models/update_identity_body.py,sha256=dKD9gR1EsuFw5TTnGvNjLfOo8s4e9BRReZwnvwQb-DA,5685
232
+ ory_client/models/update_login_flow_body.py,sha256=TBrIcHoc-4-RV5uGGRQziOyXuRwjKWAZwRfTaiuIphA,14987
233
+ ory_client/models/update_login_flow_with_code_method.py,sha256=gQ_nxlcN2wbrqd3GZ-wqOD1GZj7dD2TR-dRAsWaOVJ8,4322
234
+ ory_client/models/update_login_flow_with_lookup_secret_method.py,sha256=Ft3sQ5hbXgwMSFU7WqNRepL5EsoiRPI3s1esIy89dqw,3755
235
+ ory_client/models/update_login_flow_with_oidc_method.py,sha256=UjKZYctvobPF9czq4YOC4wpfQaq4RR54dP3EzIue2Ko,5794
236
+ ory_client/models/update_login_flow_with_passkey_method.py,sha256=9mGf-1AsQUzgexQTP3CYiJcMPiflOOthisAvhrjU-e4,3811
237
+ ory_client/models/update_login_flow_with_password_method.py,sha256=4RfJ8pbstoNRhfLZ3-pCOZr1TY-WmvT5FABBfshVN28,4381
238
+ ory_client/models/update_login_flow_with_totp_method.py,sha256=bySoRNQtbZCwOPEEJLPeQ8N0R9SXWmRU9TyhRkNAd70,3898
239
+ ory_client/models/update_login_flow_with_web_authn_method.py,sha256=TiVDc0hmXLhnbspspqBRIBr22WQt-JMzCfJVTXi65Vg,4213
240
+ ory_client/models/update_recovery_flow_body.py,sha256=h-T4Bjr-58kqLmbgGvht8ev3VQl6_7apGrijYXQB1zg,7359
241
+ ory_client/models/update_recovery_flow_with_code_method.py,sha256=jzk-T17c0QfdLzmAE0NGBlh3XxjWADSc6o6tCVPdqoM,4977
242
+ ory_client/models/update_recovery_flow_with_link_method.py,sha256=bvJ8R-M5HuAYS8q8UlrBGd-hCbmedHGFZGxPncilCXA,4464
243
+ ory_client/models/update_registration_flow_body.py,sha256=OE0YFZbuKPwljJas_6sMtH762wsEIix8sKvysedgYD8,12691
244
+ ory_client/models/update_registration_flow_with_code_method.py,sha256=aCwBBB_NR0HnkrOlcByY-mso2iHnk-0Dlo_z2JXvYdE,4176
245
+ ory_client/models/update_registration_flow_with_oidc_method.py,sha256=upa8j1JuUwsvlKmi2x1bg9-jkhGwe5F2pMNC7z2trUE,5775
246
+ ory_client/models/update_registration_flow_with_passkey_method.py,sha256=7n-kjU0bIGxClF1oy0iuIRxIcv9GmEdO2ZHSjbgAvY0,4200
247
+ ory_client/models/update_registration_flow_with_password_method.py,sha256=1j3DVECwGzirhsCWEvdg8pV5LsOLHkLz_ZszTb1gvT0,4035
248
+ ory_client/models/update_registration_flow_with_profile_method.py,sha256=e8EGiY2W0KLiJulUCHyWZV6ijW4zTIDXOI1KhYnUs2M,4207
249
+ ory_client/models/update_registration_flow_with_web_authn_method.py,sha256=pAYIM_p9SASJzn09GKWHHe7Bj7tnql6Ne3TMXDWuOQw,4541
250
+ ory_client/models/update_settings_flow_body.py,sha256=j2sC6m1UhmjIlLwnMSYs9-Dh39QcZZGHomsK76rrNoc,15420
251
+ ory_client/models/update_settings_flow_with_lookup_method.py,sha256=-CqSDgQe6jpuRjUDL1TAhE8lMDHj33a4s4SJlAIMF-c,4702
252
+ ory_client/models/update_settings_flow_with_oidc_method.py,sha256=-m8Ic_XjlGYgD34d-_D3tbNpHWzNpNq2HkvqG4sqsTA,5105
253
+ ory_client/models/update_settings_flow_with_passkey_method.py,sha256=Pype-jF0VYb-JlPRVVF3GQFzUWAh-KVrQUvZKBq3_xU,4129
254
+ ory_client/models/update_settings_flow_with_password_method.py,sha256=xT1kBFF2KEAx84h97ghep4CszNxne24Yg1GQgfE_FiY,3897
255
+ ory_client/models/update_settings_flow_with_profile_method.py,sha256=7citvMuhkiQw4ztFYG12HeQ8-IqrSiOuM5YYHuLxo50,3933
256
+ ory_client/models/update_settings_flow_with_totp_method.py,sha256=gkeQJyBwFxk_P-ZB4oAqAbz5lYdA6hhEZfw71ttqQTo,4235
257
+ ory_client/models/update_settings_flow_with_web_authn_method.py,sha256=9ftsJBPccnhEaGP3j3yOONIWDvG2WEzCORJ1XCTSDS8,4643
258
+ ory_client/models/update_subscription_body.py,sha256=r2qGfcAXBKrscMNnzOHHFyqcygt2L1L74SIiYqwRmwU,3736
259
+ ory_client/models/update_verification_flow_body.py,sha256=4xyYT2KRFVhLhIhkwmbwTjGR81OOStIefFZkwk2lsO8,7567
260
+ ory_client/models/update_verification_flow_with_code_method.py,sha256=4QZ4iGpNy7SWyWBliEraCIl7KB7t0PVEYbmZUMdLllM,4991
261
+ ory_client/models/update_verification_flow_with_link_method.py,sha256=GZDiM9oQZx4LUaTQYBsERJIUQbsCCL7QiWo7apUkgQ0,4499
262
+ ory_client/models/update_workspace_payload.py,sha256=8Iq0p5dsAtLu-6z19DAyBns3gV7z47XYrJ1I4FTFFGw,3257
263
+ ory_client/models/usage.py,sha256=4BKLbAwj0aqLqvtvudrPcIH90ZyqWr3j08wfUwjTjlA,3542
264
+ ory_client/models/verifiable_credential_priming_response.py,sha256=yQUgV3ZRh_QPddtyor_BcmEyDVyzbtFww1GENEvyrX0,4076
265
+ ory_client/models/verifiable_credential_proof.py,sha256=xgcwpdVoVNzlQhGry2Ba9-z7fmDhYCBb9jzpJxqlGTg,3341
266
+ ory_client/models/verifiable_credential_response.py,sha256=ctmoTs9QVA-GoLf5FbvfdhsBXnQ6rUVg-jPlU0PhNTo,3401
267
+ ory_client/models/verifiable_identity_address.py,sha256=_59387s_jIoKAI2WMwLpAwSpxuLo2Ev31DrkxQ6D2Vo,4633
268
+ ory_client/models/verification_flow.py,sha256=7oB63zyqigcDiMWnCHN_vEDS6LBwp5w3UaNmft6Fq8U,6071
269
+ ory_client/models/verification_flow_state.py,sha256=4Aq-mBmJR5sgVy7_6z_RM41GzXYimCKDCC5N4qlwIa0,1189
270
+ ory_client/models/version.py,sha256=BcY43y1gE7eXDdlEqqzF-gS9z0DZex363eNSytLgTNg,3250
271
+ ory_client/models/warning.py,sha256=ABWNVMxJUimmjXzHccQwtuTqj4S9xeeRCfQ5YPmhv1o,3272
272
+ ory_client/models/workspace.py,sha256=IcdhKJR5p_YmLzrKRBQpNn_eeyo70bfKeAy7jwL-b7g,3790
273
+ ory_client/models/workspace_meta.py,sha256=eWGNjaOzNUNJLfjmVRiBT2zbN3z-UBrOeNM0_U-VNPc,4191
274
+ ory_client-1.11.6.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
275
+ ory_client-1.11.6.dist-info/METADATA,sha256=Qh836LLk66bN2BW_U-4JMELerC4e_QHhwTgY1LzDoBI,608
276
+ ory_client-1.11.6.dist-info/WHEEL,sha256=g4nMs7d-Xl9-xC9XovUrsDHGXt-FT0E17Yqo92DEfvY,92
277
+ ory_client-1.11.6.dist-info/top_level.txt,sha256=0De6AV7uRK9cg2KDRdQT-mC1JEQ4oTxArmZm8VX6bBc,11
278
+ ory_client-1.11.6.dist-info/RECORD,,
@@ -1,28 +0,0 @@
1
-
2
- # flake8: noqa
3
-
4
- # Import all APIs into this package.
5
- # If you have many APIs here with many many models used in each API this may
6
- # raise a `RecursionError`.
7
- # In order to avoid this, import only the API that you directly need like:
8
- #
9
- # from ory_client.api.courier_api import CourierApi
10
- #
11
- # or import this package, but before doing it, use:
12
- #
13
- # import sys
14
- # sys.setrecursionlimit(n)
15
-
16
- # Import APIs into API package:
17
- from ory_client.api.courier_api import CourierApi
18
- from ory_client.api.events_api import EventsApi
19
- from ory_client.api.frontend_api import FrontendApi
20
- from ory_client.api.identity_api import IdentityApi
21
- from ory_client.api.jwk_api import JwkApi
22
- from ory_client.api.metadata_api import MetadataApi
23
- from ory_client.api.o_auth2_api import OAuth2Api
24
- from ory_client.api.oidc_api import OidcApi
25
- from ory_client.api.permission_api import PermissionApi
26
- from ory_client.api.project_api import ProjectApi
27
- from ory_client.api.relationship_api import RelationshipApi
28
- from ory_client.api.wellknown_api import WellknownApi
@@ -1,5 +0,0 @@
1
- # we can not import model classes here because that would create a circular
2
- # reference which would not work in python2
3
- # do not import all models into this module because that uses a lot of memory and stack frames
4
- # if you need the ability to import all models from one package, import them with
5
- # from ory_client.models import ModelA, ModelB
@@ -1,296 +0,0 @@
1
- """
2
- Ory APIs
3
-
4
- Documentation for all public and administrative Ory APIs. Administrative APIs can only be accessed with a valid Personal Access Token. Public APIs are mostly used in browsers. # noqa: E501
5
-
6
- The version of the OpenAPI document: v1.8.1
7
- Contact: support@ory.sh
8
- Generated by: https://openapi-generator.tech
9
- """
10
-
11
-
12
- import re # noqa: F401
13
- import sys # noqa: F401
14
-
15
- from ory_client.model_utils import ( # noqa: F401
16
- ApiTypeError,
17
- ModelComposed,
18
- ModelNormal,
19
- ModelSimple,
20
- cached_property,
21
- change_keys_js_to_python,
22
- convert_js_args_to_python_args,
23
- date,
24
- datetime,
25
- file_type,
26
- none_type,
27
- validate_get_composed_info,
28
- OpenApiModel
29
- )
30
- from ory_client.exceptions import ApiAttributeError
31
-
32
-
33
- def lazy_import():
34
- from ory_client.model.accept_o_auth2_consent_request_session import AcceptOAuth2ConsentRequestSession
35
- from ory_client.model.string_slice_json_format import StringSliceJSONFormat
36
- globals()['AcceptOAuth2ConsentRequestSession'] = AcceptOAuth2ConsentRequestSession
37
- globals()['StringSliceJSONFormat'] = StringSliceJSONFormat
38
-
39
-
40
- class AcceptOAuth2ConsentRequest(ModelNormal):
41
- """NOTE: This class is auto generated by OpenAPI Generator.
42
- Ref: https://openapi-generator.tech
43
-
44
- Do not edit the class manually.
45
-
46
- Attributes:
47
- allowed_values (dict): The key is the tuple path to the attribute
48
- and the for var_name this is (var_name,). The value is a dict
49
- with a capitalized key describing the allowed value and an allowed
50
- value. These dicts store the allowed enum values.
51
- attribute_map (dict): The key is attribute name
52
- and the value is json key in definition.
53
- discriminator_value_class_map (dict): A dict to go from the discriminator
54
- variable value to the discriminator class name.
55
- validations (dict): The key is the tuple path to the attribute
56
- and the for var_name this is (var_name,). The value is a dict
57
- that stores validations for max_length, min_length, max_items,
58
- min_items, exclusive_maximum, inclusive_maximum, exclusive_minimum,
59
- inclusive_minimum, and regex.
60
- additional_properties_type (tuple): A tuple of classes accepted
61
- as additional properties values.
62
- """
63
-
64
- allowed_values = {
65
- }
66
-
67
- validations = {
68
- }
69
-
70
- @cached_property
71
- def additional_properties_type():
72
- """
73
- This must be a method because a model may have properties that are
74
- of type self, this must run after the class is loaded
75
- """
76
- lazy_import()
77
- return (bool, date, datetime, dict, float, int, list, str, none_type,) # noqa: E501
78
-
79
- _nullable = False
80
-
81
- @cached_property
82
- def openapi_types():
83
- """
84
- This must be a method because a model may have properties that are
85
- of type self, this must run after the class is loaded
86
-
87
- Returns
88
- openapi_types (dict): The key is attribute name
89
- and the value is attribute type.
90
- """
91
- lazy_import()
92
- return {
93
- 'context': ({str: (bool, date, datetime, dict, float, int, list, str, none_type)},), # noqa: E501
94
- 'grant_access_token_audience': (StringSliceJSONFormat,), # noqa: E501
95
- 'grant_scope': (StringSliceJSONFormat,), # noqa: E501
96
- 'handled_at': (datetime,), # noqa: E501
97
- 'remember': (bool,), # noqa: E501
98
- 'remember_for': (int,), # noqa: E501
99
- 'session': (AcceptOAuth2ConsentRequestSession,), # noqa: E501
100
- }
101
-
102
- @cached_property
103
- def discriminator():
104
- return None
105
-
106
-
107
- attribute_map = {
108
- 'context': 'context', # noqa: E501
109
- 'grant_access_token_audience': 'grant_access_token_audience', # noqa: E501
110
- 'grant_scope': 'grant_scope', # noqa: E501
111
- 'handled_at': 'handled_at', # noqa: E501
112
- 'remember': 'remember', # noqa: E501
113
- 'remember_for': 'remember_for', # noqa: E501
114
- 'session': 'session', # noqa: E501
115
- }
116
-
117
- read_only_vars = {
118
- }
119
-
120
- _composed_schemas = {}
121
-
122
- @classmethod
123
- @convert_js_args_to_python_args
124
- def _from_openapi_data(cls, *args, **kwargs): # noqa: E501
125
- """AcceptOAuth2ConsentRequest - a model defined in OpenAPI
126
-
127
- Keyword Args:
128
- _check_type (bool): if True, values for parameters in openapi_types
129
- will be type checked and a TypeError will be
130
- raised if the wrong type is input.
131
- Defaults to True
132
- _path_to_item (tuple/list): This is a list of keys or values to
133
- drill down to the model in received_data
134
- when deserializing a response
135
- _spec_property_naming (bool): True if the variable names in the input data
136
- are serialized names, as specified in the OpenAPI document.
137
- False if the variable names in the input data
138
- are pythonic names, e.g. snake case (default)
139
- _configuration (Configuration): the instance to use when
140
- deserializing a file_type parameter.
141
- If passed, type conversion is attempted
142
- If omitted no type conversion is done.
143
- _visited_composed_classes (tuple): This stores a tuple of
144
- classes that we have traveled through so that
145
- if we see that class again we will not use its
146
- discriminator again.
147
- When traveling through a discriminator, the
148
- composed schema that is
149
- is traveled through is added to this set.
150
- For example if Animal has a discriminator
151
- petType and we pass in "Dog", and the class Dog
152
- allOf includes Animal, we move through Animal
153
- once using the discriminator, and pick Dog.
154
- Then in Dog, we will make an instance of the
155
- Animal class but this time we won't travel
156
- through its discriminator because we passed in
157
- _visited_composed_classes = (Animal,)
158
- context ({str: (bool, date, datetime, dict, float, int, list, str, none_type)}): [optional] # noqa: E501
159
- grant_access_token_audience (StringSliceJSONFormat): [optional] # noqa: E501
160
- grant_scope (StringSliceJSONFormat): [optional] # noqa: E501
161
- handled_at (datetime): [optional] # noqa: E501
162
- remember (bool): Remember, if set to true, tells ORY Hydra to remember this consent authorization and reuse it if the same client asks the same user for the same, or a subset of, scope.. [optional] # noqa: E501
163
- remember_for (int): RememberFor sets how long the consent authorization should be remembered for in seconds. If set to `0`, the authorization will be remembered indefinitely.. [optional] # noqa: E501
164
- session (AcceptOAuth2ConsentRequestSession): [optional] # noqa: E501
165
- """
166
-
167
- _check_type = kwargs.pop('_check_type', True)
168
- _spec_property_naming = kwargs.pop('_spec_property_naming', True)
169
- _path_to_item = kwargs.pop('_path_to_item', ())
170
- _configuration = kwargs.pop('_configuration', None)
171
- _visited_composed_classes = kwargs.pop('_visited_composed_classes', ())
172
-
173
- self = super(OpenApiModel, cls).__new__(cls)
174
-
175
- if args:
176
- for arg in args:
177
- if isinstance(arg, dict):
178
- kwargs.update(arg)
179
- else:
180
- raise ApiTypeError(
181
- "Invalid positional arguments=%s passed to %s. Remove those invalid positional arguments." % (
182
- args,
183
- self.__class__.__name__,
184
- ),
185
- path_to_item=_path_to_item,
186
- valid_classes=(self.__class__,),
187
- )
188
-
189
- self._data_store = {}
190
- self._check_type = _check_type
191
- self._spec_property_naming = _spec_property_naming
192
- self._path_to_item = _path_to_item
193
- self._configuration = _configuration
194
- self._visited_composed_classes = _visited_composed_classes + (self.__class__,)
195
-
196
- for var_name, var_value in kwargs.items():
197
- if var_name not in self.attribute_map and \
198
- self._configuration is not None and \
199
- self._configuration.discard_unknown_keys and \
200
- self.additional_properties_type is None:
201
- # discard variable.
202
- continue
203
- setattr(self, var_name, var_value)
204
- return self
205
-
206
- required_properties = set([
207
- '_data_store',
208
- '_check_type',
209
- '_spec_property_naming',
210
- '_path_to_item',
211
- '_configuration',
212
- '_visited_composed_classes',
213
- ])
214
-
215
- @convert_js_args_to_python_args
216
- def __init__(self, *args, **kwargs): # noqa: E501
217
- """AcceptOAuth2ConsentRequest - a model defined in OpenAPI
218
-
219
- Keyword Args:
220
- _check_type (bool): if True, values for parameters in openapi_types
221
- will be type checked and a TypeError will be
222
- raised if the wrong type is input.
223
- Defaults to True
224
- _path_to_item (tuple/list): This is a list of keys or values to
225
- drill down to the model in received_data
226
- when deserializing a response
227
- _spec_property_naming (bool): True if the variable names in the input data
228
- are serialized names, as specified in the OpenAPI document.
229
- False if the variable names in the input data
230
- are pythonic names, e.g. snake case (default)
231
- _configuration (Configuration): the instance to use when
232
- deserializing a file_type parameter.
233
- If passed, type conversion is attempted
234
- If omitted no type conversion is done.
235
- _visited_composed_classes (tuple): This stores a tuple of
236
- classes that we have traveled through so that
237
- if we see that class again we will not use its
238
- discriminator again.
239
- When traveling through a discriminator, the
240
- composed schema that is
241
- is traveled through is added to this set.
242
- For example if Animal has a discriminator
243
- petType and we pass in "Dog", and the class Dog
244
- allOf includes Animal, we move through Animal
245
- once using the discriminator, and pick Dog.
246
- Then in Dog, we will make an instance of the
247
- Animal class but this time we won't travel
248
- through its discriminator because we passed in
249
- _visited_composed_classes = (Animal,)
250
- context ({str: (bool, date, datetime, dict, float, int, list, str, none_type)}): [optional] # noqa: E501
251
- grant_access_token_audience (StringSliceJSONFormat): [optional] # noqa: E501
252
- grant_scope (StringSliceJSONFormat): [optional] # noqa: E501
253
- handled_at (datetime): [optional] # noqa: E501
254
- remember (bool): Remember, if set to true, tells ORY Hydra to remember this consent authorization and reuse it if the same client asks the same user for the same, or a subset of, scope.. [optional] # noqa: E501
255
- remember_for (int): RememberFor sets how long the consent authorization should be remembered for in seconds. If set to `0`, the authorization will be remembered indefinitely.. [optional] # noqa: E501
256
- session (AcceptOAuth2ConsentRequestSession): [optional] # noqa: E501
257
- """
258
-
259
- _check_type = kwargs.pop('_check_type', True)
260
- _spec_property_naming = kwargs.pop('_spec_property_naming', False)
261
- _path_to_item = kwargs.pop('_path_to_item', ())
262
- _configuration = kwargs.pop('_configuration', None)
263
- _visited_composed_classes = kwargs.pop('_visited_composed_classes', ())
264
-
265
- if args:
266
- for arg in args:
267
- if isinstance(arg, dict):
268
- kwargs.update(arg)
269
- else:
270
- raise ApiTypeError(
271
- "Invalid positional arguments=%s passed to %s. Remove those invalid positional arguments." % (
272
- args,
273
- self.__class__.__name__,
274
- ),
275
- path_to_item=_path_to_item,
276
- valid_classes=(self.__class__,),
277
- )
278
-
279
- self._data_store = {}
280
- self._check_type = _check_type
281
- self._spec_property_naming = _spec_property_naming
282
- self._path_to_item = _path_to_item
283
- self._configuration = _configuration
284
- self._visited_composed_classes = _visited_composed_classes + (self.__class__,)
285
-
286
- for var_name, var_value in kwargs.items():
287
- if var_name not in self.attribute_map and \
288
- self._configuration is not None and \
289
- self._configuration.discard_unknown_keys and \
290
- self.additional_properties_type is None:
291
- # discard variable.
292
- continue
293
- setattr(self, var_name, var_value)
294
- if var_name in self.read_only_vars:
295
- raise ApiAttributeError(f"`{var_name}` is a read-only attribute. Use `from_openapi_data` to instantiate "
296
- f"class with read only attributes.")