ory-client 1.20.10__py3-none-any.whl → 1.20.22__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 (319) hide show
  1. ory_client/__init__.py +15 -4
  2. ory_client/api/courier_api.py +1 -1
  3. ory_client/api/events_api.py +1 -1
  4. ory_client/api/frontend_api.py +1 -1
  5. ory_client/api/identity_api.py +19 -19
  6. ory_client/api/jwk_api.py +1 -1
  7. ory_client/api/metadata_api.py +1 -1
  8. ory_client/api/o_auth2_api.py +824 -41
  9. ory_client/api/oidc_api.py +1 -1
  10. ory_client/api/permission_api.py +1 -1
  11. ory_client/api/project_api.py +1941 -723
  12. ory_client/api/relationship_api.py +1 -1
  13. ory_client/api/wellknown_api.py +1 -1
  14. ory_client/api/workspace_api.py +1 -1
  15. ory_client/api_client.py +2 -2
  16. ory_client/configuration.py +4 -4
  17. ory_client/exceptions.py +1 -1
  18. ory_client/models/__init__.py +14 -3
  19. ory_client/models/accept_device_user_code_request.py +101 -0
  20. ory_client/models/accept_o_auth2_consent_request.py +1 -1
  21. ory_client/models/accept_o_auth2_consent_request_session.py +1 -1
  22. ory_client/models/accept_o_auth2_login_request.py +1 -1
  23. ory_client/models/account_experience_colors.py +4 -2
  24. ory_client/models/account_experience_configuration.py +1 -1
  25. ory_client/models/account_experience_theme_variables.py +1 -1
  26. ory_client/models/active_project_in_console.py +1 -1
  27. ory_client/models/add_project_to_workspace_body.py +1 -1
  28. ory_client/models/attribute.py +1 -1
  29. ory_client/models/attribute_filter.py +1 -1
  30. ory_client/models/attributes_count_datapoint.py +1 -1
  31. ory_client/models/authenticator_assurance_level.py +1 -1
  32. ory_client/models/{pagination_headers.py → basic_organization.py} +13 -11
  33. ory_client/models/batch_check_permission_body.py +1 -1
  34. ory_client/models/batch_check_permission_result.py +1 -1
  35. ory_client/models/batch_patch_identities_response.py +1 -1
  36. ory_client/models/billing_period_bucket.py +1 -1
  37. ory_client/models/check_opl_syntax_result.py +1 -1
  38. ory_client/models/check_permission_result.py +1 -1
  39. ory_client/models/check_permission_result_with_error.py +1 -1
  40. ory_client/models/cloud_account.py +1 -1
  41. ory_client/models/consistency_request_parameters.py +1 -1
  42. ory_client/models/continue_with.py +1 -1
  43. ory_client/models/continue_with_recovery_ui.py +1 -1
  44. ory_client/models/continue_with_recovery_ui_flow.py +1 -1
  45. ory_client/models/continue_with_redirect_browser_to.py +1 -1
  46. ory_client/models/continue_with_set_ory_session_token.py +1 -1
  47. ory_client/models/continue_with_settings_ui.py +1 -1
  48. ory_client/models/continue_with_settings_ui_flow.py +1 -1
  49. ory_client/models/continue_with_verification_ui.py +1 -1
  50. ory_client/models/continue_with_verification_ui_flow.py +1 -1
  51. ory_client/models/courier_message_status.py +1 -1
  52. ory_client/models/courier_message_type.py +1 -1
  53. ory_client/models/create_custom_domain_body.py +1 -1
  54. ory_client/models/create_event_stream_body.py +1 -1
  55. ory_client/models/create_fedcm_flow_response.py +1 -1
  56. ory_client/models/create_identity_body.py +1 -1
  57. ory_client/models/create_invite_response.py +1 -1
  58. ory_client/models/create_json_web_key_set.py +1 -1
  59. ory_client/models/create_organization_onboarding_portal_link_body.py +104 -0
  60. ory_client/models/create_project_api_key_request.py +1 -1
  61. ory_client/models/create_project_body.py +1 -1
  62. ory_client/models/create_project_branding.py +1 -1
  63. ory_client/models/create_project_member_invite_body.py +1 -1
  64. ory_client/models/create_project_normalized_payload.py +33 -2
  65. ory_client/models/create_recovery_code_for_identity_body.py +1 -1
  66. ory_client/models/create_recovery_link_for_identity_body.py +1 -1
  67. ory_client/models/create_relationship_body.py +1 -1
  68. ory_client/models/create_subscription_body.py +1 -1
  69. ory_client/models/create_subscription_common.py +1 -1
  70. ory_client/models/create_verifiable_credential_request_body.py +1 -1
  71. ory_client/models/create_workspace_api_key_body.py +1 -1
  72. ory_client/models/create_workspace_body.py +1 -1
  73. ory_client/models/create_workspace_member_invite_body.py +1 -1
  74. ory_client/models/create_workspace_subscription_body.py +1 -1
  75. ory_client/models/credential_supported_draft00.py +1 -1
  76. ory_client/models/custom_domain.py +1 -1
  77. ory_client/models/delete_my_sessions_count.py +1 -1
  78. ory_client/models/device_authorization.py +111 -0
  79. ory_client/models/device_user_auth_request.py +116 -0
  80. ory_client/models/email_template_data.py +1 -1
  81. ory_client/models/email_template_data_body.py +1 -1
  82. ory_client/models/error_authenticator_assurance_level_not_satisfied.py +1 -1
  83. ory_client/models/error_browser_location_change_required.py +1 -1
  84. ory_client/models/error_flow_replaced.py +1 -1
  85. ory_client/models/error_generic.py +1 -1
  86. ory_client/models/error_o_auth2.py +1 -1
  87. ory_client/models/event_stream.py +1 -1
  88. ory_client/models/expanded_permission_tree.py +1 -1
  89. ory_client/models/flow_error.py +1 -1
  90. ory_client/models/generic_error.py +1 -1
  91. ory_client/models/generic_error_content.py +1 -1
  92. ory_client/models/generic_usage.py +1 -1
  93. ory_client/models/get_attributes_count_response.py +1 -1
  94. ory_client/models/get_managed_identity_schema_location.py +1 -1
  95. ory_client/models/get_metrics_event_attributes_response.py +1 -1
  96. ory_client/models/get_metrics_event_types_response.py +1 -1
  97. ory_client/models/get_organization_response.py +1 -1
  98. ory_client/models/get_project_events_body.py +1 -1
  99. ory_client/models/get_project_events_response.py +1 -1
  100. ory_client/models/get_project_metrics_response.py +1 -1
  101. ory_client/models/get_session_activity_response.py +1 -1
  102. ory_client/models/get_version200_response.py +1 -1
  103. ory_client/models/health_not_ready_status.py +1 -1
  104. ory_client/models/health_status.py +1 -1
  105. ory_client/models/identity.py +1 -1
  106. ory_client/models/identity_credentials.py +1 -1
  107. ory_client/models/identity_credentials_code.py +1 -1
  108. ory_client/models/identity_credentials_code_address.py +1 -1
  109. ory_client/models/identity_credentials_oidc.py +1 -1
  110. ory_client/models/identity_credentials_oidc_provider.py +1 -1
  111. ory_client/models/identity_credentials_password.py +1 -1
  112. ory_client/models/identity_patch.py +1 -1
  113. ory_client/models/identity_patch_response.py +1 -1
  114. ory_client/models/identity_schema_container.py +1 -1
  115. ory_client/models/identity_schema_preset.py +1 -1
  116. ory_client/models/identity_with_credentials.py +1 -1
  117. ory_client/models/identity_with_credentials_oidc.py +1 -1
  118. ory_client/models/identity_with_credentials_oidc_config.py +1 -1
  119. ory_client/models/identity_with_credentials_oidc_config_provider.py +1 -1
  120. ory_client/models/identity_with_credentials_password.py +1 -1
  121. ory_client/models/identity_with_credentials_password_config.py +1 -1
  122. ory_client/models/identity_with_credentials_saml.py +1 -1
  123. ory_client/models/identity_with_credentials_saml_config.py +1 -1
  124. ory_client/models/identity_with_credentials_saml_config_provider.py +1 -1
  125. ory_client/models/internal_get_project_branding_body.py +1 -1
  126. ory_client/models/internal_is_ax_welcome_screen_enabled_for_project_body.py +1 -1
  127. ory_client/models/internal_is_owner_for_project_by_slug_body.py +1 -1
  128. ory_client/models/internal_is_owner_for_project_by_slug_response.py +1 -1
  129. ory_client/models/introspected_o_auth2_token.py +1 -1
  130. ory_client/models/invite_token_body.py +1 -1
  131. ory_client/models/invoice.py +1 -1
  132. ory_client/models/invoice_data_v1.py +1 -1
  133. ory_client/models/is_owner_for_project_by_slug.py +1 -1
  134. ory_client/models/json_patch.py +1 -1
  135. ory_client/models/json_web_key.py +1 -1
  136. ory_client/models/json_web_key_set.py +1 -1
  137. ory_client/models/keto_namespace.py +1 -1
  138. ory_client/models/{pagination.py → keyset_pagination_request_parameters.py} +9 -9
  139. ory_client/models/keyset_pagination_response_headers.py +101 -0
  140. ory_client/models/line_item_v1.py +1 -1
  141. ory_client/models/list_event_streams.py +1 -1
  142. ory_client/models/list_invoices_response.py +1 -1
  143. ory_client/models/list_organizations_response.py +1 -1
  144. ory_client/models/list_workspace_projects.py +1 -1
  145. ory_client/models/list_workspaces.py +1 -1
  146. ory_client/models/login_flow.py +1 -1
  147. ory_client/models/login_flow_state.py +1 -1
  148. ory_client/models/logout_flow.py +1 -1
  149. ory_client/models/managed_identity_schema.py +1 -1
  150. ory_client/models/managed_identity_schema_validation_result.py +1 -1
  151. ory_client/models/member_invite.py +1 -1
  152. ory_client/models/message.py +1 -1
  153. ory_client/models/message_dispatch.py +1 -1
  154. ory_client/models/metrics_datapoint.py +1 -1
  155. ory_client/models/money.py +1 -1
  156. ory_client/models/namespace.py +1 -1
  157. ory_client/models/needs_privileged_session_error.py +1 -1
  158. ory_client/models/normalized_project.py +1 -1
  159. ory_client/models/normalized_project_revision.py +33 -2
  160. ory_client/models/normalized_project_revision_courier_channel.py +1 -1
  161. ory_client/models/normalized_project_revision_hook.py +1 -1
  162. ory_client/models/normalized_project_revision_identity_schema.py +1 -1
  163. ory_client/models/normalized_project_revision_saml_provider.py +1 -1
  164. ory_client/models/normalized_project_revision_scim_client.py +1 -1
  165. ory_client/models/normalized_project_revision_third_party_provider.py +1 -1
  166. ory_client/models/normalized_project_revision_tokenizer_template.py +1 -1
  167. ory_client/models/o_auth2_client.py +60 -10
  168. ory_client/models/o_auth2_client_token_lifespans.py +53 -2
  169. ory_client/models/o_auth2_consent_request.py +4 -2
  170. ory_client/models/o_auth2_consent_request_open_id_connect_context.py +1 -1
  171. ory_client/models/o_auth2_consent_session.py +1 -1
  172. ory_client/models/o_auth2_consent_session_expires_at.py +1 -1
  173. ory_client/models/o_auth2_login_request.py +1 -1
  174. ory_client/models/o_auth2_logout_request.py +1 -1
  175. ory_client/models/o_auth2_redirect_to.py +1 -1
  176. ory_client/models/o_auth2_token_exchange.py +1 -1
  177. ory_client/models/oidc_configuration.py +4 -2
  178. ory_client/models/oidc_user_info.py +1 -1
  179. ory_client/models/onboarding_portal_link.py +126 -0
  180. ory_client/models/onboarding_portal_organization.py +127 -0
  181. ory_client/models/organization.py +4 -12
  182. ory_client/models/organization_body.py +1 -1
  183. ory_client/models/organization_onboarding_portal_links_response.py +109 -0
  184. ory_client/models/parse_error.py +1 -1
  185. ory_client/models/patch_identities_body.py +1 -1
  186. ory_client/models/perform_native_logout_body.py +1 -1
  187. ory_client/models/permissions_on_workspace.py +1 -1
  188. ory_client/models/plan.py +1 -1
  189. ory_client/models/plan_details.py +1 -1
  190. ory_client/models/post_check_permission_body.py +1 -1
  191. ory_client/models/post_check_permission_or_error_body.py +1 -1
  192. ory_client/models/project.py +12 -2
  193. ory_client/models/project_api_key.py +1 -1
  194. ory_client/models/project_branding.py +1 -1
  195. ory_client/models/project_branding_colors.py +1 -1
  196. ory_client/models/project_branding_theme.py +1 -1
  197. ory_client/models/project_cors.py +1 -1
  198. ory_client/models/project_events_datapoint.py +1 -1
  199. ory_client/models/project_host.py +1 -1
  200. ory_client/models/project_member.py +1 -1
  201. ory_client/models/project_metadata.py +1 -1
  202. ory_client/models/project_service_identity.py +1 -1
  203. ory_client/models/project_service_o_auth2.py +1 -1
  204. ory_client/models/project_service_permission.py +1 -1
  205. ory_client/models/project_services.py +1 -1
  206. ory_client/models/provider.py +1 -1
  207. ory_client/models/quota_usage.py +4 -4
  208. ory_client/models/recovery_code_for_identity.py +1 -1
  209. ory_client/models/recovery_flow.py +1 -1
  210. ory_client/models/recovery_flow_state.py +1 -1
  211. ory_client/models/recovery_identity_address.py +1 -1
  212. ory_client/models/recovery_link_for_identity.py +1 -1
  213. ory_client/models/registration_flow.py +1 -1
  214. ory_client/models/registration_flow_state.py +1 -1
  215. ory_client/models/reject_o_auth2_request.py +1 -1
  216. ory_client/models/relation_query.py +1 -1
  217. ory_client/models/relationship.py +1 -1
  218. ory_client/models/relationship_namespaces.py +1 -1
  219. ory_client/models/relationship_patch.py +1 -1
  220. ory_client/models/relationships.py +1 -1
  221. ory_client/models/rfc6749_error_json.py +1 -1
  222. ory_client/models/schema_patch.py +1 -1
  223. ory_client/models/self_service_flow_expired_error.py +1 -1
  224. ory_client/models/session.py +1 -1
  225. ory_client/models/session_activity_datapoint.py +1 -1
  226. ory_client/models/session_authentication_method.py +1 -1
  227. ory_client/models/session_device.py +1 -1
  228. ory_client/models/set_active_project_in_console_body.py +1 -1
  229. ory_client/models/set_custom_domain_body.py +1 -1
  230. ory_client/models/set_event_stream_body.py +1 -1
  231. ory_client/models/set_organization_from_onboarding_portal_link_body.py +121 -0
  232. ory_client/models/set_project.py +12 -2
  233. ory_client/models/set_project_branding_theme_body.py +1 -1
  234. ory_client/models/settings_flow.py +1 -1
  235. ory_client/models/settings_flow_state.py +1 -1
  236. ory_client/models/source_position.py +1 -1
  237. ory_client/models/subject_set.py +1 -1
  238. ory_client/models/subscription.py +1 -1
  239. ory_client/models/successful_code_exchange_response.py +1 -1
  240. ory_client/models/successful_native_login.py +1 -1
  241. ory_client/models/successful_native_registration.py +1 -1
  242. ory_client/models/successful_project_update.py +1 -1
  243. ory_client/models/tax_line_item.py +1 -1
  244. ory_client/models/time_interval.py +1 -1
  245. ory_client/models/token_pagination.py +1 -1
  246. ory_client/models/token_pagination_headers.py +1 -1
  247. ory_client/models/token_pagination_request_parameters.py +1 -1
  248. ory_client/models/token_pagination_response_headers.py +1 -1
  249. ory_client/models/trust_o_auth2_jwt_grant_issuer.py +1 -1
  250. ory_client/models/trusted_o_auth2_jwt_grant_issuer.py +1 -1
  251. ory_client/models/trusted_o_auth2_jwt_grant_json_web_key.py +1 -1
  252. ory_client/models/ui_container.py +1 -1
  253. ory_client/models/ui_node.py +1 -1
  254. ory_client/models/ui_node_anchor_attributes.py +3 -3
  255. ory_client/models/ui_node_attributes.py +1 -1
  256. ory_client/models/ui_node_division_attributes.py +5 -5
  257. ory_client/models/ui_node_image_attributes.py +3 -3
  258. ory_client/models/ui_node_input_attributes.py +6 -6
  259. ory_client/models/ui_node_meta.py +1 -1
  260. ory_client/models/ui_node_script_attributes.py +3 -3
  261. ory_client/models/ui_node_text_attributes.py +3 -3
  262. ory_client/models/ui_text.py +1 -1
  263. ory_client/models/update_fedcm_flow_body.py +1 -1
  264. ory_client/models/update_identity_body.py +1 -1
  265. ory_client/models/update_login_flow_body.py +1 -1
  266. ory_client/models/update_login_flow_with_code_method.py +1 -1
  267. ory_client/models/update_login_flow_with_identifier_first_method.py +1 -1
  268. ory_client/models/update_login_flow_with_lookup_secret_method.py +1 -1
  269. ory_client/models/update_login_flow_with_oidc_method.py +1 -1
  270. ory_client/models/update_login_flow_with_passkey_method.py +1 -1
  271. ory_client/models/update_login_flow_with_password_method.py +1 -1
  272. ory_client/models/update_login_flow_with_saml_method.py +1 -1
  273. ory_client/models/update_login_flow_with_totp_method.py +1 -1
  274. ory_client/models/update_login_flow_with_web_authn_method.py +1 -1
  275. ory_client/models/update_organization_onboarding_portal_link_body.py +104 -0
  276. ory_client/models/update_recovery_flow_body.py +1 -1
  277. ory_client/models/update_recovery_flow_with_code_method.py +1 -1
  278. ory_client/models/update_recovery_flow_with_link_method.py +1 -1
  279. ory_client/models/update_registration_flow_body.py +1 -1
  280. ory_client/models/update_registration_flow_with_code_method.py +1 -1
  281. ory_client/models/update_registration_flow_with_oidc_method.py +1 -1
  282. ory_client/models/update_registration_flow_with_passkey_method.py +1 -1
  283. ory_client/models/update_registration_flow_with_password_method.py +1 -1
  284. ory_client/models/update_registration_flow_with_profile_method.py +1 -1
  285. ory_client/models/update_registration_flow_with_saml_method.py +1 -1
  286. ory_client/models/update_registration_flow_with_web_authn_method.py +1 -1
  287. ory_client/models/update_settings_flow_body.py +1 -1
  288. ory_client/models/update_settings_flow_with_lookup_method.py +1 -1
  289. ory_client/models/update_settings_flow_with_oidc_method.py +1 -1
  290. ory_client/models/update_settings_flow_with_passkey_method.py +1 -1
  291. ory_client/models/update_settings_flow_with_password_method.py +1 -1
  292. ory_client/models/update_settings_flow_with_profile_method.py +1 -1
  293. ory_client/models/update_settings_flow_with_saml_method.py +1 -1
  294. ory_client/models/update_settings_flow_with_totp_method.py +1 -1
  295. ory_client/models/update_settings_flow_with_web_authn_method.py +1 -1
  296. ory_client/models/update_subscription_body.py +1 -1
  297. ory_client/models/update_verification_flow_body.py +1 -1
  298. ory_client/models/update_verification_flow_with_code_method.py +1 -1
  299. ory_client/models/update_verification_flow_with_link_method.py +1 -1
  300. ory_client/models/update_workspace_body.py +1 -1
  301. ory_client/models/usage.py +1 -1
  302. ory_client/models/verifiable_credential_priming_response.py +1 -1
  303. ory_client/models/verifiable_credential_proof.py +1 -1
  304. ory_client/models/verifiable_credential_response.py +1 -1
  305. ory_client/models/verifiable_identity_address.py +1 -1
  306. ory_client/models/verification_flow.py +1 -1
  307. ory_client/models/verification_flow_state.py +1 -1
  308. ory_client/models/verify_user_code_request.py +118 -0
  309. ory_client/models/version.py +1 -1
  310. ory_client/models/warning.py +1 -1
  311. ory_client/models/workspace.py +1 -1
  312. ory_client/models/workspace_api_key.py +1 -1
  313. ory_client/rest.py +1 -1
  314. {ory_client-1.20.10.dist-info → ory_client-1.20.22.dist-info}/METADATA +1 -1
  315. ory_client-1.20.22.dist-info/RECORD +321 -0
  316. ory_client-1.20.10.dist-info/RECORD +0 -310
  317. {ory_client-1.20.10.dist-info → ory_client-1.20.22.dist-info}/LICENSE +0 -0
  318. {ory_client-1.20.10.dist-info → ory_client-1.20.22.dist-info}/WHEEL +0 -0
  319. {ory_client-1.20.10.dist-info → ory_client-1.20.22.dist-info}/top_level.txt +0 -0
@@ -5,7 +5,7 @@
5
5
 
6
6
  # Introduction 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. ## SDKs This document describes the APIs available in the Ory Network. The APIs are available as SDKs for the following languages: | Language | Download SDK | Documentation | | -------------- | ---------------------------------------------------------------- | ------------------------------------------------------------------------------------ | | Dart | [pub.dev](https://pub.dev/packages/ory_client) | [README](https://github.com/ory/sdk/blob/master/clients/client/dart/README.md) | | .NET | [nuget.org](https://www.nuget.org/packages/Ory.Client/) | [README](https://github.com/ory/sdk/blob/master/clients/client/dotnet/README.md) | | Elixir | [hex.pm](https://hex.pm/packages/ory_client) | [README](https://github.com/ory/sdk/blob/master/clients/client/elixir/README.md) | | Go | [github.com](https://github.com/ory/client-go) | [README](https://github.com/ory/sdk/blob/master/clients/client/go/README.md) | | Java | [maven.org](https://search.maven.org/artifact/sh.ory/ory-client) | [README](https://github.com/ory/sdk/blob/master/clients/client/java/README.md) | | JavaScript | [npmjs.com](https://www.npmjs.com/package/@ory/client) | [README](https://github.com/ory/sdk/blob/master/clients/client/typescript/README.md) | | JavaScript (With fetch) | [npmjs.com](https://www.npmjs.com/package/@ory/client-fetch) | [README](https://github.com/ory/sdk/blob/master/clients/client/typescript-fetch/README.md) | | PHP | [packagist.org](https://packagist.org/packages/ory/client) | [README](https://github.com/ory/sdk/blob/master/clients/client/php/README.md) | | Python | [pypi.org](https://pypi.org/project/ory-client/) | [README](https://github.com/ory/sdk/blob/master/clients/client/python/README.md) | | Ruby | [rubygems.org](https://rubygems.org/gems/ory-client) | [README](https://github.com/ory/sdk/blob/master/clients/client/ruby/README.md) | | Rust | [crates.io](https://crates.io/crates/ory-client) | [README](https://github.com/ory/sdk/blob/master/clients/client/rust/README.md) |
7
7
 
8
- The version of the OpenAPI document: v1.20.10
8
+ The version of the OpenAPI document: v1.20.22
9
9
  Contact: support@ory.sh
10
10
  Generated by OpenAPI Generator (https://openapi-generator.tech)
11
11
 
@@ -30,6 +30,7 @@ from ory_client.models.normalized_project_revision_saml_provider import Normaliz
30
30
  from ory_client.models.normalized_project_revision_scim_client import NormalizedProjectRevisionScimClient
31
31
  from ory_client.models.normalized_project_revision_third_party_provider import NormalizedProjectRevisionThirdPartyProvider
32
32
  from ory_client.models.normalized_project_revision_tokenizer_template import NormalizedProjectRevisionTokenizerTemplate
33
+ from ory_client.models.organization import Organization
33
34
  from typing import Optional, Set
34
35
  from typing_extensions import Self
35
36
 
@@ -65,6 +66,7 @@ class NormalizedProjectRevision(BaseModel):
65
66
  hydra_oidc_subject_identifiers_pairwise_salt: Optional[StrictStr] = Field(default=None, description="Configures OpenID Connect Discovery and overwrites the pairwise algorithm This governs the \"oidc.subject_identifiers.pairwise_salt\" setting.")
66
67
  hydra_oidc_subject_identifiers_supported_types: Optional[List[StrictStr]] = None
67
68
  hydra_secrets_cookie: Optional[List[StrictStr]] = None
69
+ hydra_secrets_pagination: Optional[List[StrictStr]] = None
68
70
  hydra_secrets_system: Optional[List[StrictStr]] = None
69
71
  hydra_serve_cookies_same_site_legacy_workaround: Optional[StrictBool] = Field(default=None, description="Configures the Ory Hydra Cookie Same Site Legacy Workaround This governs the \"serve.cookies.same_site_legacy_workaround\" setting.")
70
72
  hydra_serve_cookies_same_site_mode: Optional[StrictStr] = Field(default=None, description="Configures the Ory Hydra Cookie Same Site Mode This governs the \"serve.cookies.same_site_mode\" setting.")
@@ -94,6 +96,7 @@ class NormalizedProjectRevision(BaseModel):
94
96
  id: Optional[StrictStr] = Field(default=None, description="The revision ID.")
95
97
  keto_namespace_configuration: Optional[StrictStr] = Field(default=None, description="The Revisions' Keto Namespace Configuration The string is a URL pointing to an OPL file with the configuration.")
96
98
  keto_namespaces: Optional[List[KetoNamespace]] = None
99
+ keto_secrets_pagination: Optional[List[StrictStr]] = None
97
100
  kratos_cookies_same_site: Optional[StrictStr] = Field(default=None, description="Configures the Ory Kratos Cookie SameSite Attribute This governs the \"cookies.same_site\" setting.")
98
101
  kratos_courier_channels: Optional[List[NormalizedProjectRevisionCourierChannel]] = None
99
102
  kratos_courier_delivery_strategy: Optional[StrictStr] = Field(default='smtp', description="The delivery strategy to use when sending emails `smtp`: Use SMTP server `http`: Use the built in HTTP client to send the email to some remote service")
@@ -148,6 +151,9 @@ class NormalizedProjectRevision(BaseModel):
148
151
  kratos_feature_flags_cacheable_sessions: Optional[StrictBool] = Field(default=None, description="Configures the Ory Kratos Session caching feature flag This governs the \"feature_flags.cacheable_sessions\" setting.")
149
152
  kratos_feature_flags_cacheable_sessions_max_age: Optional[StrictStr] = Field(default=None, description="Configures the Ory Kratos Session caching max-age feature flag This governs the \"feature_flags.cacheable_sessions_max_age\" setting.")
150
153
  kratos_feature_flags_faster_session_extend: Optional[StrictBool] = Field(default=None, description="Configures the Ory Kratos Faster Session Extend setting If enabled allows faster session extension by skipping the session lookup and returning 201 instead of 200. Disabling this feature will be deprecated in the future. This governs the \"feature_flags.faster_session_extend\" setting.")
154
+ kratos_feature_flags_legacy_continue_with_verification_ui: Optional[StrictBool] = Field(default=None, description="Always include show_verification_ui in continue_with If true, restores the legacy behavior of always including `show_verification_ui` in the registration flow's `continue_with` when verification is enabled. If set to false, `show_verification_ui` is only set in `continue_with` if the `show_verification_ui` hook is used. This flag will be removed in the future. This governs the \"feature_flags.legacy_continue_with_verification_ui\" setting.")
155
+ kratos_feature_flags_legacy_oidc_registration_node_group: Optional[StrictBool] = Field(default=None, description="Controls whether the UI nodes in an OIDC registration flow have group \"oidc\" in case required fields are not returned by the OIDC provider. If set to true, the UI nodes will have group \"oidc\" and the flow will be considered successful if the user completes the flow. This is the legacy behavior. This governs the \"feature_flags.legacy_oidc_registration_node_group\" setting.")
156
+ kratos_feature_flags_legacy_require_verified_login_error: Optional[StrictBool] = Field(default=None, description="Return a form error if the login identifier is not verified If true, the login flow will return a form error if the login identifier is not verified, which restores legacy behavior. If this value is false, the `continue_with` array will contain a `show_verification_ui` hook instead. This flag is deprecated and will be removed in the future. This governs the \"feature_flags.legacy_require_verified_login_error\" setting.")
151
157
  kratos_feature_flags_use_continue_with_transitions: Optional[StrictBool] = Field(default=None, description="Configures the Ory Kratos Session use_continue_with_transitions flag This governs the \"feature_flags.use_continue_with_transitions\" setting.")
152
158
  kratos_identity_schemas: Optional[List[NormalizedProjectRevisionIdentitySchema]] = None
153
159
  kratos_oauth2_provider_headers: Optional[Dict[str, Any]] = Field(default=None, description="NullJSONRawMessage represents a json.RawMessage that works well with JSON, SQL, and Swagger and is NULLable-")
@@ -157,6 +163,7 @@ class NormalizedProjectRevision(BaseModel):
157
163
  kratos_secrets_cipher: Optional[List[StrictStr]] = None
158
164
  kratos_secrets_cookie: Optional[List[StrictStr]] = None
159
165
  kratos_secrets_default: Optional[List[StrictStr]] = None
166
+ kratos_security_account_enumeration_mitigate: Optional[StrictBool] = Field(default=None, description="Configures if account enumeration should be mitigated when using identifier first login.")
160
167
  kratos_selfservice_allowed_return_urls: Optional[List[StrictStr]] = None
161
168
  kratos_selfservice_default_browser_return_url: Optional[StrictStr] = Field(default=None, description="Configures the Ory Kratos Default Return URL This governs the \"selfservice.allowed_return_urls\" setting.")
162
169
  kratos_selfservice_flows_error_ui_url: Optional[StrictStr] = Field(default=None, description="Configures the Ory Kratos Error UI URL This governs the \"selfservice.flows.error.ui_url\" setting.")
@@ -208,8 +215,10 @@ class NormalizedProjectRevision(BaseModel):
208
215
  kratos_selfservice_flows_verification_use: Optional[StrictStr] = Field(default=None, description="Configures the Ory Kratos Strategy to use for Verification This governs the \"selfservice.flows.verification.use\" setting. link SelfServiceMessageVerificationStrategyLink code SelfServiceMessageVerificationStrategyCode")
209
216
  kratos_selfservice_methods_captcha_config_cf_turnstile_secret: Optional[StrictStr] = Field(default=None, description="Configures the Cloudflare Turnstile site secret for CAPTCHA protection The site secret is private and will be never be shared with the client. This key is write only and the value will not be returned in response to a read request. Reach out to your account manager to enable this feature.")
210
217
  kratos_selfservice_methods_captcha_config_cf_turnstile_sitekey: Optional[StrictStr] = Field(default=None, description="Configures the Cloudflare Turnstile site key for CAPTCHA protection The site key is public and will be shared with the client. Reach out to your account manager to enable this feature.")
218
+ kratos_selfservice_methods_captcha_config_legacy_inject_node: Optional[StrictBool] = Field(default=None, description="Configures the Ory Kratos Self-Service Methods' Captcha Enabled Setting Reach out to your account manager to enable this feature.")
211
219
  kratos_selfservice_methods_captcha_enabled: Optional[StrictBool] = Field(default=None, description="Configures the Ory Kratos Self-Service Methods' Captcha Enabled Setting Reach out to your account manager to enable this feature.")
212
220
  kratos_selfservice_methods_code_config_lifespan: Optional[StrictStr] = Field(default=None, description="Configures the Ory Kratos Code Method's lifespan This governs the \"selfservice.methods.code.config.lifespan\" setting.")
221
+ kratos_selfservice_methods_code_config_max_submissions: Optional[StrictInt] = None
213
222
  kratos_selfservice_methods_code_config_missing_credential_fallback_enabled: Optional[StrictBool] = Field(default=None, description="Enables a fallback method required in certain legacy use cases. This governs the \"selfservice.methods.code.config.missing_credential_fallback_enabled\" setting.")
214
223
  kratos_selfservice_methods_code_enabled: Optional[StrictBool] = Field(default=None, description="Configures whether Ory Kratos Code Method is enabled This governs the \"selfservice.methods.code.enabled\" setting.")
215
224
  kratos_selfservice_methods_code_mfa_enabled: Optional[StrictBool] = Field(default=None, description="Configures whether the code method can be used to fulfil MFA flows This governs the \"selfservice.methods.code.mfa_enabled\" setting.")
@@ -250,6 +259,7 @@ class NormalizedProjectRevision(BaseModel):
250
259
  kratos_session_whoami_required_aal: Optional[StrictStr] = Field(default=None, description="Configures the Ory Kratos Session Whoami AAL requirement This governs the \"session.whoami.required_aal\" setting.")
251
260
  kratos_session_whoami_tokenizer_templates: Optional[List[NormalizedProjectRevisionTokenizerTemplate]] = None
252
261
  name: StrictStr = Field(description="The project's name.")
262
+ organizations: Optional[List[Organization]] = None
253
263
  project_id: Optional[StrictStr] = Field(default=None, description="The Revision's Project ID")
254
264
  project_revision_hooks: Optional[List[NormalizedProjectRevisionHook]] = None
255
265
  scim_clients: Optional[List[NormalizedProjectRevisionScimClient]] = None
@@ -260,7 +270,7 @@ class NormalizedProjectRevision(BaseModel):
260
270
  strict_security: Optional[StrictBool] = Field(default=None, description="Whether the project should employ strict security measures. Setting this to true is recommended for going into production.")
261
271
  updated_at: Optional[datetime] = Field(default=None, description="Last Time Project's Revision was Updated")
262
272
  additional_properties: Dict[str, Any] = {}
263
- __properties: ClassVar[List[str]] = ["account_experience_default_locale", "account_experience_favicon_dark", "account_experience_favicon_light", "account_experience_locale_behavior", "account_experience_logo_dark", "account_experience_logo_light", "account_experience_theme_variables_dark", "account_experience_theme_variables_light", "created_at", "disable_account_experience_welcome_screen", "enable_ax_v2", "hydra_oauth2_allowed_top_level_claims", "hydra_oauth2_client_credentials_default_grant_allowed_scope", "hydra_oauth2_exclude_not_before_claim", "hydra_oauth2_grant_jwt_iat_optional", "hydra_oauth2_grant_jwt_jti_optional", "hydra_oauth2_grant_jwt_max_ttl", "hydra_oauth2_grant_refresh_token_rotation_grace_period", "hydra_oauth2_mirror_top_level_claims", "hydra_oauth2_pkce_enforced", "hydra_oauth2_pkce_enforced_for_public_clients", "hydra_oauth2_refresh_token_hook", "hydra_oauth2_token_hook", "hydra_oidc_dynamic_client_registration_default_scope", "hydra_oidc_dynamic_client_registration_enabled", "hydra_oidc_subject_identifiers_pairwise_salt", "hydra_oidc_subject_identifiers_supported_types", "hydra_secrets_cookie", "hydra_secrets_system", "hydra_serve_cookies_same_site_legacy_workaround", "hydra_serve_cookies_same_site_mode", "hydra_strategies_access_token", "hydra_strategies_jwt_scope_claim", "hydra_strategies_scope", "hydra_ttl_access_token", "hydra_ttl_auth_code", "hydra_ttl_id_token", "hydra_ttl_login_consent_request", "hydra_ttl_refresh_token", "hydra_urls_consent", "hydra_urls_error", "hydra_urls_login", "hydra_urls_logout", "hydra_urls_post_logout_redirect", "hydra_urls_registration", "hydra_urls_self_issuer", "hydra_webfinger_jwks_broadcast_keys", "hydra_webfinger_oidc_discovery_auth_url", "hydra_webfinger_oidc_discovery_client_registration_url", "hydra_webfinger_oidc_discovery_jwks_url", "hydra_webfinger_oidc_discovery_supported_claims", "hydra_webfinger_oidc_discovery_supported_scope", "hydra_webfinger_oidc_discovery_token_url", "hydra_webfinger_oidc_discovery_userinfo_url", "id", "keto_namespace_configuration", "keto_namespaces", "kratos_cookies_same_site", "kratos_courier_channels", "kratos_courier_delivery_strategy", "kratos_courier_http_request_config_auth_api_key_in", "kratos_courier_http_request_config_auth_api_key_name", "kratos_courier_http_request_config_auth_api_key_value", "kratos_courier_http_request_config_auth_basic_auth_password", "kratos_courier_http_request_config_auth_basic_auth_user", "kratos_courier_http_request_config_auth_type", "kratos_courier_http_request_config_body", "kratos_courier_http_request_config_headers", "kratos_courier_http_request_config_method", "kratos_courier_http_request_config_url", "kratos_courier_smtp_connection_uri", "kratos_courier_smtp_from_address", "kratos_courier_smtp_from_name", "kratos_courier_smtp_headers", "kratos_courier_smtp_local_name", "kratos_courier_templates_login_code_valid_email_body_html", "kratos_courier_templates_login_code_valid_email_body_plaintext", "kratos_courier_templates_login_code_valid_email_subject", "kratos_courier_templates_login_code_valid_sms_body_plaintext", "kratos_courier_templates_recovery_code_invalid_email_body_html", "kratos_courier_templates_recovery_code_invalid_email_body_plaintext", "kratos_courier_templates_recovery_code_invalid_email_subject", "kratos_courier_templates_recovery_code_valid_email_body_html", "kratos_courier_templates_recovery_code_valid_email_body_plaintext", "kratos_courier_templates_recovery_code_valid_email_subject", "kratos_courier_templates_recovery_invalid_email_body_html", "kratos_courier_templates_recovery_invalid_email_body_plaintext", "kratos_courier_templates_recovery_invalid_email_subject", "kratos_courier_templates_recovery_valid_email_body_html", "kratos_courier_templates_recovery_valid_email_body_plaintext", "kratos_courier_templates_recovery_valid_email_subject", "kratos_courier_templates_registration_code_valid_email_body_html", "kratos_courier_templates_registration_code_valid_email_body_plaintext", "kratos_courier_templates_registration_code_valid_email_subject", "kratos_courier_templates_registration_code_valid_sms_body_plaintext", "kratos_courier_templates_verification_code_invalid_email_body_html", "kratos_courier_templates_verification_code_invalid_email_body_plaintext", "kratos_courier_templates_verification_code_invalid_email_subject", "kratos_courier_templates_verification_code_valid_email_body_html", "kratos_courier_templates_verification_code_valid_email_body_plaintext", "kratos_courier_templates_verification_code_valid_email_subject", "kratos_courier_templates_verification_code_valid_sms_body_plaintext", "kratos_courier_templates_verification_invalid_email_body_html", "kratos_courier_templates_verification_invalid_email_body_plaintext", "kratos_courier_templates_verification_invalid_email_subject", "kratos_courier_templates_verification_valid_email_body_html", "kratos_courier_templates_verification_valid_email_body_plaintext", "kratos_courier_templates_verification_valid_email_subject", "kratos_feature_flags_cacheable_sessions", "kratos_feature_flags_cacheable_sessions_max_age", "kratos_feature_flags_faster_session_extend", "kratos_feature_flags_use_continue_with_transitions", "kratos_identity_schemas", "kratos_oauth2_provider_headers", "kratos_oauth2_provider_override_return_to", "kratos_oauth2_provider_url", "kratos_preview_default_read_consistency_level", "kratos_secrets_cipher", "kratos_secrets_cookie", "kratos_secrets_default", "kratos_selfservice_allowed_return_urls", "kratos_selfservice_default_browser_return_url", "kratos_selfservice_flows_error_ui_url", "kratos_selfservice_flows_login_after_code_default_browser_return_url", "kratos_selfservice_flows_login_after_default_browser_return_url", "kratos_selfservice_flows_login_after_lookup_secret_default_browser_return_url", "kratos_selfservice_flows_login_after_oidc_default_browser_return_url", "kratos_selfservice_flows_login_after_passkey_default_browser_return_url", "kratos_selfservice_flows_login_after_password_default_browser_return_url", "kratos_selfservice_flows_login_after_totp_default_browser_return_url", "kratos_selfservice_flows_login_after_webauthn_default_browser_return_url", "kratos_selfservice_flows_login_lifespan", "kratos_selfservice_flows_login_ui_url", "kratos_selfservice_flows_logout_after_default_browser_return_url", "kratos_selfservice_flows_recovery_after_default_browser_return_url", "kratos_selfservice_flows_recovery_enabled", "kratos_selfservice_flows_recovery_lifespan", "kratos_selfservice_flows_recovery_notify_unknown_recipients", "kratos_selfservice_flows_recovery_ui_url", "kratos_selfservice_flows_recovery_use", "kratos_selfservice_flows_registration_after_code_default_browser_return_url", "kratos_selfservice_flows_registration_after_default_browser_return_url", "kratos_selfservice_flows_registration_after_oidc_default_browser_return_url", "kratos_selfservice_flows_registration_after_passkey_default_browser_return_url", "kratos_selfservice_flows_registration_after_password_default_browser_return_url", "kratos_selfservice_flows_registration_after_webauthn_default_browser_return_url", "kratos_selfservice_flows_registration_enable_legacy_one_step", "kratos_selfservice_flows_registration_enabled", "kratos_selfservice_flows_registration_lifespan", "kratos_selfservice_flows_registration_login_hints", "kratos_selfservice_flows_registration_ui_url", "kratos_selfservice_flows_settings_after_default_browser_return_url", "kratos_selfservice_flows_settings_after_lookup_secret_default_browser_return_url", "kratos_selfservice_flows_settings_after_oidc_default_browser_return_url", "kratos_selfservice_flows_settings_after_passkey_default_browser_return_url", "kratos_selfservice_flows_settings_after_password_default_browser_return_url", "kratos_selfservice_flows_settings_after_profile_default_browser_return_url", "kratos_selfservice_flows_settings_after_totp_default_browser_return_url", "kratos_selfservice_flows_settings_after_webauthn_default_browser_return_url", "kratos_selfservice_flows_settings_lifespan", "kratos_selfservice_flows_settings_privileged_session_max_age", "kratos_selfservice_flows_settings_required_aal", "kratos_selfservice_flows_settings_ui_url", "kratos_selfservice_flows_verification_after_default_browser_return_url", "kratos_selfservice_flows_verification_enabled", "kratos_selfservice_flows_verification_lifespan", "kratos_selfservice_flows_verification_notify_unknown_recipients", "kratos_selfservice_flows_verification_ui_url", "kratos_selfservice_flows_verification_use", "kratos_selfservice_methods_captcha_config_cf_turnstile_secret", "kratos_selfservice_methods_captcha_config_cf_turnstile_sitekey", "kratos_selfservice_methods_captcha_enabled", "kratos_selfservice_methods_code_config_lifespan", "kratos_selfservice_methods_code_config_missing_credential_fallback_enabled", "kratos_selfservice_methods_code_enabled", "kratos_selfservice_methods_code_mfa_enabled", "kratos_selfservice_methods_code_passwordless_enabled", "kratos_selfservice_methods_code_passwordless_login_fallback_enabled", "kratos_selfservice_methods_link_config_base_url", "kratos_selfservice_methods_link_config_lifespan", "kratos_selfservice_methods_link_enabled", "kratos_selfservice_methods_lookup_secret_enabled", "kratos_selfservice_methods_oidc_config_base_redirect_uri", "kratos_selfservice_methods_oidc_config_providers", "kratos_selfservice_methods_oidc_enable_auto_link_policy", "kratos_selfservice_methods_oidc_enabled", "kratos_selfservice_methods_passkey_config_rp_display_name", "kratos_selfservice_methods_passkey_config_rp_id", "kratos_selfservice_methods_passkey_config_rp_origins", "kratos_selfservice_methods_passkey_enabled", "kratos_selfservice_methods_password_config_haveibeenpwned_enabled", "kratos_selfservice_methods_password_config_identifier_similarity_check_enabled", "kratos_selfservice_methods_password_config_ignore_network_errors", "kratos_selfservice_methods_password_config_max_breaches", "kratos_selfservice_methods_password_config_min_password_length", "kratos_selfservice_methods_password_enabled", "kratos_selfservice_methods_profile_enabled", "kratos_selfservice_methods_saml_config_providers", "kratos_selfservice_methods_saml_enabled", "kratos_selfservice_methods_totp_config_issuer", "kratos_selfservice_methods_totp_enabled", "kratos_selfservice_methods_webauthn_config_passwordless", "kratos_selfservice_methods_webauthn_config_rp_display_name", "kratos_selfservice_methods_webauthn_config_rp_icon", "kratos_selfservice_methods_webauthn_config_rp_id", "kratos_selfservice_methods_webauthn_config_rp_origins", "kratos_selfservice_methods_webauthn_enabled", "kratos_session_cookie_persistent", "kratos_session_cookie_same_site", "kratos_session_lifespan", "kratos_session_whoami_required_aal", "kratos_session_whoami_tokenizer_templates", "name", "project_id", "project_revision_hooks", "scim_clients", "serve_admin_cors_allowed_origins", "serve_admin_cors_enabled", "serve_public_cors_allowed_origins", "serve_public_cors_enabled", "strict_security", "updated_at"]
273
+ __properties: ClassVar[List[str]] = ["account_experience_default_locale", "account_experience_favicon_dark", "account_experience_favicon_light", "account_experience_locale_behavior", "account_experience_logo_dark", "account_experience_logo_light", "account_experience_theme_variables_dark", "account_experience_theme_variables_light", "created_at", "disable_account_experience_welcome_screen", "enable_ax_v2", "hydra_oauth2_allowed_top_level_claims", "hydra_oauth2_client_credentials_default_grant_allowed_scope", "hydra_oauth2_exclude_not_before_claim", "hydra_oauth2_grant_jwt_iat_optional", "hydra_oauth2_grant_jwt_jti_optional", "hydra_oauth2_grant_jwt_max_ttl", "hydra_oauth2_grant_refresh_token_rotation_grace_period", "hydra_oauth2_mirror_top_level_claims", "hydra_oauth2_pkce_enforced", "hydra_oauth2_pkce_enforced_for_public_clients", "hydra_oauth2_refresh_token_hook", "hydra_oauth2_token_hook", "hydra_oidc_dynamic_client_registration_default_scope", "hydra_oidc_dynamic_client_registration_enabled", "hydra_oidc_subject_identifiers_pairwise_salt", "hydra_oidc_subject_identifiers_supported_types", "hydra_secrets_cookie", "hydra_secrets_pagination", "hydra_secrets_system", "hydra_serve_cookies_same_site_legacy_workaround", "hydra_serve_cookies_same_site_mode", "hydra_strategies_access_token", "hydra_strategies_jwt_scope_claim", "hydra_strategies_scope", "hydra_ttl_access_token", "hydra_ttl_auth_code", "hydra_ttl_id_token", "hydra_ttl_login_consent_request", "hydra_ttl_refresh_token", "hydra_urls_consent", "hydra_urls_error", "hydra_urls_login", "hydra_urls_logout", "hydra_urls_post_logout_redirect", "hydra_urls_registration", "hydra_urls_self_issuer", "hydra_webfinger_jwks_broadcast_keys", "hydra_webfinger_oidc_discovery_auth_url", "hydra_webfinger_oidc_discovery_client_registration_url", "hydra_webfinger_oidc_discovery_jwks_url", "hydra_webfinger_oidc_discovery_supported_claims", "hydra_webfinger_oidc_discovery_supported_scope", "hydra_webfinger_oidc_discovery_token_url", "hydra_webfinger_oidc_discovery_userinfo_url", "id", "keto_namespace_configuration", "keto_namespaces", "keto_secrets_pagination", "kratos_cookies_same_site", "kratos_courier_channels", "kratos_courier_delivery_strategy", "kratos_courier_http_request_config_auth_api_key_in", "kratos_courier_http_request_config_auth_api_key_name", "kratos_courier_http_request_config_auth_api_key_value", "kratos_courier_http_request_config_auth_basic_auth_password", "kratos_courier_http_request_config_auth_basic_auth_user", "kratos_courier_http_request_config_auth_type", "kratos_courier_http_request_config_body", "kratos_courier_http_request_config_headers", "kratos_courier_http_request_config_method", "kratos_courier_http_request_config_url", "kratos_courier_smtp_connection_uri", "kratos_courier_smtp_from_address", "kratos_courier_smtp_from_name", "kratos_courier_smtp_headers", "kratos_courier_smtp_local_name", "kratos_courier_templates_login_code_valid_email_body_html", "kratos_courier_templates_login_code_valid_email_body_plaintext", "kratos_courier_templates_login_code_valid_email_subject", "kratos_courier_templates_login_code_valid_sms_body_plaintext", "kratos_courier_templates_recovery_code_invalid_email_body_html", "kratos_courier_templates_recovery_code_invalid_email_body_plaintext", "kratos_courier_templates_recovery_code_invalid_email_subject", "kratos_courier_templates_recovery_code_valid_email_body_html", "kratos_courier_templates_recovery_code_valid_email_body_plaintext", "kratos_courier_templates_recovery_code_valid_email_subject", "kratos_courier_templates_recovery_invalid_email_body_html", "kratos_courier_templates_recovery_invalid_email_body_plaintext", "kratos_courier_templates_recovery_invalid_email_subject", "kratos_courier_templates_recovery_valid_email_body_html", "kratos_courier_templates_recovery_valid_email_body_plaintext", "kratos_courier_templates_recovery_valid_email_subject", "kratos_courier_templates_registration_code_valid_email_body_html", "kratos_courier_templates_registration_code_valid_email_body_plaintext", "kratos_courier_templates_registration_code_valid_email_subject", "kratos_courier_templates_registration_code_valid_sms_body_plaintext", "kratos_courier_templates_verification_code_invalid_email_body_html", "kratos_courier_templates_verification_code_invalid_email_body_plaintext", "kratos_courier_templates_verification_code_invalid_email_subject", "kratos_courier_templates_verification_code_valid_email_body_html", "kratos_courier_templates_verification_code_valid_email_body_plaintext", "kratos_courier_templates_verification_code_valid_email_subject", "kratos_courier_templates_verification_code_valid_sms_body_plaintext", "kratos_courier_templates_verification_invalid_email_body_html", "kratos_courier_templates_verification_invalid_email_body_plaintext", "kratos_courier_templates_verification_invalid_email_subject", "kratos_courier_templates_verification_valid_email_body_html", "kratos_courier_templates_verification_valid_email_body_plaintext", "kratos_courier_templates_verification_valid_email_subject", "kratos_feature_flags_cacheable_sessions", "kratos_feature_flags_cacheable_sessions_max_age", "kratos_feature_flags_faster_session_extend", "kratos_feature_flags_legacy_continue_with_verification_ui", "kratos_feature_flags_legacy_oidc_registration_node_group", "kratos_feature_flags_legacy_require_verified_login_error", "kratos_feature_flags_use_continue_with_transitions", "kratos_identity_schemas", "kratos_oauth2_provider_headers", "kratos_oauth2_provider_override_return_to", "kratos_oauth2_provider_url", "kratos_preview_default_read_consistency_level", "kratos_secrets_cipher", "kratos_secrets_cookie", "kratos_secrets_default", "kratos_security_account_enumeration_mitigate", "kratos_selfservice_allowed_return_urls", "kratos_selfservice_default_browser_return_url", "kratos_selfservice_flows_error_ui_url", "kratos_selfservice_flows_login_after_code_default_browser_return_url", "kratos_selfservice_flows_login_after_default_browser_return_url", "kratos_selfservice_flows_login_after_lookup_secret_default_browser_return_url", "kratos_selfservice_flows_login_after_oidc_default_browser_return_url", "kratos_selfservice_flows_login_after_passkey_default_browser_return_url", "kratos_selfservice_flows_login_after_password_default_browser_return_url", "kratos_selfservice_flows_login_after_totp_default_browser_return_url", "kratos_selfservice_flows_login_after_webauthn_default_browser_return_url", "kratos_selfservice_flows_login_lifespan", "kratos_selfservice_flows_login_ui_url", "kratos_selfservice_flows_logout_after_default_browser_return_url", "kratos_selfservice_flows_recovery_after_default_browser_return_url", "kratos_selfservice_flows_recovery_enabled", "kratos_selfservice_flows_recovery_lifespan", "kratos_selfservice_flows_recovery_notify_unknown_recipients", "kratos_selfservice_flows_recovery_ui_url", "kratos_selfservice_flows_recovery_use", "kratos_selfservice_flows_registration_after_code_default_browser_return_url", "kratos_selfservice_flows_registration_after_default_browser_return_url", "kratos_selfservice_flows_registration_after_oidc_default_browser_return_url", "kratos_selfservice_flows_registration_after_passkey_default_browser_return_url", "kratos_selfservice_flows_registration_after_password_default_browser_return_url", "kratos_selfservice_flows_registration_after_webauthn_default_browser_return_url", "kratos_selfservice_flows_registration_enable_legacy_one_step", "kratos_selfservice_flows_registration_enabled", "kratos_selfservice_flows_registration_lifespan", "kratos_selfservice_flows_registration_login_hints", "kratos_selfservice_flows_registration_ui_url", "kratos_selfservice_flows_settings_after_default_browser_return_url", "kratos_selfservice_flows_settings_after_lookup_secret_default_browser_return_url", "kratos_selfservice_flows_settings_after_oidc_default_browser_return_url", "kratos_selfservice_flows_settings_after_passkey_default_browser_return_url", "kratos_selfservice_flows_settings_after_password_default_browser_return_url", "kratos_selfservice_flows_settings_after_profile_default_browser_return_url", "kratos_selfservice_flows_settings_after_totp_default_browser_return_url", "kratos_selfservice_flows_settings_after_webauthn_default_browser_return_url", "kratos_selfservice_flows_settings_lifespan", "kratos_selfservice_flows_settings_privileged_session_max_age", "kratos_selfservice_flows_settings_required_aal", "kratos_selfservice_flows_settings_ui_url", "kratos_selfservice_flows_verification_after_default_browser_return_url", "kratos_selfservice_flows_verification_enabled", "kratos_selfservice_flows_verification_lifespan", "kratos_selfservice_flows_verification_notify_unknown_recipients", "kratos_selfservice_flows_verification_ui_url", "kratos_selfservice_flows_verification_use", "kratos_selfservice_methods_captcha_config_cf_turnstile_secret", "kratos_selfservice_methods_captcha_config_cf_turnstile_sitekey", "kratos_selfservice_methods_captcha_config_legacy_inject_node", "kratos_selfservice_methods_captcha_enabled", "kratos_selfservice_methods_code_config_lifespan", "kratos_selfservice_methods_code_config_max_submissions", "kratos_selfservice_methods_code_config_missing_credential_fallback_enabled", "kratos_selfservice_methods_code_enabled", "kratos_selfservice_methods_code_mfa_enabled", "kratos_selfservice_methods_code_passwordless_enabled", "kratos_selfservice_methods_code_passwordless_login_fallback_enabled", "kratos_selfservice_methods_link_config_base_url", "kratos_selfservice_methods_link_config_lifespan", "kratos_selfservice_methods_link_enabled", "kratos_selfservice_methods_lookup_secret_enabled", "kratos_selfservice_methods_oidc_config_base_redirect_uri", "kratos_selfservice_methods_oidc_config_providers", "kratos_selfservice_methods_oidc_enable_auto_link_policy", "kratos_selfservice_methods_oidc_enabled", "kratos_selfservice_methods_passkey_config_rp_display_name", "kratos_selfservice_methods_passkey_config_rp_id", "kratos_selfservice_methods_passkey_config_rp_origins", "kratos_selfservice_methods_passkey_enabled", "kratos_selfservice_methods_password_config_haveibeenpwned_enabled", "kratos_selfservice_methods_password_config_identifier_similarity_check_enabled", "kratos_selfservice_methods_password_config_ignore_network_errors", "kratos_selfservice_methods_password_config_max_breaches", "kratos_selfservice_methods_password_config_min_password_length", "kratos_selfservice_methods_password_enabled", "kratos_selfservice_methods_profile_enabled", "kratos_selfservice_methods_saml_config_providers", "kratos_selfservice_methods_saml_enabled", "kratos_selfservice_methods_totp_config_issuer", "kratos_selfservice_methods_totp_enabled", "kratos_selfservice_methods_webauthn_config_passwordless", "kratos_selfservice_methods_webauthn_config_rp_display_name", "kratos_selfservice_methods_webauthn_config_rp_icon", "kratos_selfservice_methods_webauthn_config_rp_id", "kratos_selfservice_methods_webauthn_config_rp_origins", "kratos_selfservice_methods_webauthn_enabled", "kratos_session_cookie_persistent", "kratos_session_cookie_same_site", "kratos_session_lifespan", "kratos_session_whoami_required_aal", "kratos_session_whoami_tokenizer_templates", "name", "organizations", "project_id", "project_revision_hooks", "scim_clients", "serve_admin_cors_allowed_origins", "serve_admin_cors_enabled", "serve_public_cors_allowed_origins", "serve_public_cors_enabled", "strict_security", "updated_at"]
264
274
 
265
275
  @field_validator('hydra_oauth2_grant_jwt_max_ttl')
266
276
  def hydra_oauth2_grant_jwt_max_ttl_validate_regular_expression(cls, value):
@@ -461,6 +471,13 @@ class NormalizedProjectRevision(BaseModel):
461
471
  if _item_kratos_session_whoami_tokenizer_templates:
462
472
  _items.append(_item_kratos_session_whoami_tokenizer_templates.to_dict())
463
473
  _dict['kratos_session_whoami_tokenizer_templates'] = _items
474
+ # override the default output from pydantic by calling `to_dict()` of each item in organizations (list)
475
+ _items = []
476
+ if self.organizations:
477
+ for _item_organizations in self.organizations:
478
+ if _item_organizations:
479
+ _items.append(_item_organizations.to_dict())
480
+ _dict['organizations'] = _items
464
481
  # override the default output from pydantic by calling `to_dict()` of each item in project_revision_hooks (list)
465
482
  _items = []
466
483
  if self.project_revision_hooks:
@@ -495,6 +512,11 @@ class NormalizedProjectRevision(BaseModel):
495
512
  if self.kratos_oauth2_provider_headers is None and "kratos_oauth2_provider_headers" in self.model_fields_set:
496
513
  _dict['kratos_oauth2_provider_headers'] = None
497
514
 
515
+ # set to None if kratos_selfservice_methods_code_config_max_submissions (nullable) is None
516
+ # and model_fields_set contains the field
517
+ if self.kratos_selfservice_methods_code_config_max_submissions is None and "kratos_selfservice_methods_code_config_max_submissions" in self.model_fields_set:
518
+ _dict['kratos_selfservice_methods_code_config_max_submissions'] = None
519
+
498
520
  return _dict
499
521
 
500
522
  @classmethod
@@ -535,6 +557,7 @@ class NormalizedProjectRevision(BaseModel):
535
557
  "hydra_oidc_subject_identifiers_pairwise_salt": obj.get("hydra_oidc_subject_identifiers_pairwise_salt"),
536
558
  "hydra_oidc_subject_identifiers_supported_types": obj.get("hydra_oidc_subject_identifiers_supported_types"),
537
559
  "hydra_secrets_cookie": obj.get("hydra_secrets_cookie"),
560
+ "hydra_secrets_pagination": obj.get("hydra_secrets_pagination"),
538
561
  "hydra_secrets_system": obj.get("hydra_secrets_system"),
539
562
  "hydra_serve_cookies_same_site_legacy_workaround": obj.get("hydra_serve_cookies_same_site_legacy_workaround"),
540
563
  "hydra_serve_cookies_same_site_mode": obj.get("hydra_serve_cookies_same_site_mode"),
@@ -564,6 +587,7 @@ class NormalizedProjectRevision(BaseModel):
564
587
  "id": obj.get("id"),
565
588
  "keto_namespace_configuration": obj.get("keto_namespace_configuration"),
566
589
  "keto_namespaces": [KetoNamespace.from_dict(_item) for _item in obj["keto_namespaces"]] if obj.get("keto_namespaces") is not None else None,
590
+ "keto_secrets_pagination": obj.get("keto_secrets_pagination"),
567
591
  "kratos_cookies_same_site": obj.get("kratos_cookies_same_site"),
568
592
  "kratos_courier_channels": [NormalizedProjectRevisionCourierChannel.from_dict(_item) for _item in obj["kratos_courier_channels"]] if obj.get("kratos_courier_channels") is not None else None,
569
593
  "kratos_courier_delivery_strategy": obj.get("kratos_courier_delivery_strategy") if obj.get("kratos_courier_delivery_strategy") is not None else 'smtp',
@@ -618,6 +642,9 @@ class NormalizedProjectRevision(BaseModel):
618
642
  "kratos_feature_flags_cacheable_sessions": obj.get("kratos_feature_flags_cacheable_sessions"),
619
643
  "kratos_feature_flags_cacheable_sessions_max_age": obj.get("kratos_feature_flags_cacheable_sessions_max_age"),
620
644
  "kratos_feature_flags_faster_session_extend": obj.get("kratos_feature_flags_faster_session_extend"),
645
+ "kratos_feature_flags_legacy_continue_with_verification_ui": obj.get("kratos_feature_flags_legacy_continue_with_verification_ui"),
646
+ "kratos_feature_flags_legacy_oidc_registration_node_group": obj.get("kratos_feature_flags_legacy_oidc_registration_node_group"),
647
+ "kratos_feature_flags_legacy_require_verified_login_error": obj.get("kratos_feature_flags_legacy_require_verified_login_error"),
621
648
  "kratos_feature_flags_use_continue_with_transitions": obj.get("kratos_feature_flags_use_continue_with_transitions"),
622
649
  "kratos_identity_schemas": [NormalizedProjectRevisionIdentitySchema.from_dict(_item) for _item in obj["kratos_identity_schemas"]] if obj.get("kratos_identity_schemas") is not None else None,
623
650
  "kratos_oauth2_provider_headers": obj.get("kratos_oauth2_provider_headers"),
@@ -627,6 +654,7 @@ class NormalizedProjectRevision(BaseModel):
627
654
  "kratos_secrets_cipher": obj.get("kratos_secrets_cipher"),
628
655
  "kratos_secrets_cookie": obj.get("kratos_secrets_cookie"),
629
656
  "kratos_secrets_default": obj.get("kratos_secrets_default"),
657
+ "kratos_security_account_enumeration_mitigate": obj.get("kratos_security_account_enumeration_mitigate"),
630
658
  "kratos_selfservice_allowed_return_urls": obj.get("kratos_selfservice_allowed_return_urls"),
631
659
  "kratos_selfservice_default_browser_return_url": obj.get("kratos_selfservice_default_browser_return_url"),
632
660
  "kratos_selfservice_flows_error_ui_url": obj.get("kratos_selfservice_flows_error_ui_url"),
@@ -678,8 +706,10 @@ class NormalizedProjectRevision(BaseModel):
678
706
  "kratos_selfservice_flows_verification_use": obj.get("kratos_selfservice_flows_verification_use"),
679
707
  "kratos_selfservice_methods_captcha_config_cf_turnstile_secret": obj.get("kratos_selfservice_methods_captcha_config_cf_turnstile_secret"),
680
708
  "kratos_selfservice_methods_captcha_config_cf_turnstile_sitekey": obj.get("kratos_selfservice_methods_captcha_config_cf_turnstile_sitekey"),
709
+ "kratos_selfservice_methods_captcha_config_legacy_inject_node": obj.get("kratos_selfservice_methods_captcha_config_legacy_inject_node"),
681
710
  "kratos_selfservice_methods_captcha_enabled": obj.get("kratos_selfservice_methods_captcha_enabled"),
682
711
  "kratos_selfservice_methods_code_config_lifespan": obj.get("kratos_selfservice_methods_code_config_lifespan"),
712
+ "kratos_selfservice_methods_code_config_max_submissions": obj.get("kratos_selfservice_methods_code_config_max_submissions"),
683
713
  "kratos_selfservice_methods_code_config_missing_credential_fallback_enabled": obj.get("kratos_selfservice_methods_code_config_missing_credential_fallback_enabled"),
684
714
  "kratos_selfservice_methods_code_enabled": obj.get("kratos_selfservice_methods_code_enabled"),
685
715
  "kratos_selfservice_methods_code_mfa_enabled": obj.get("kratos_selfservice_methods_code_mfa_enabled"),
@@ -720,6 +750,7 @@ class NormalizedProjectRevision(BaseModel):
720
750
  "kratos_session_whoami_required_aal": obj.get("kratos_session_whoami_required_aal"),
721
751
  "kratos_session_whoami_tokenizer_templates": [NormalizedProjectRevisionTokenizerTemplate.from_dict(_item) for _item in obj["kratos_session_whoami_tokenizer_templates"]] if obj.get("kratos_session_whoami_tokenizer_templates") is not None else None,
722
752
  "name": obj.get("name"),
753
+ "organizations": [Organization.from_dict(_item) for _item in obj["organizations"]] if obj.get("organizations") is not None else None,
723
754
  "project_id": obj.get("project_id"),
724
755
  "project_revision_hooks": [NormalizedProjectRevisionHook.from_dict(_item) for _item in obj["project_revision_hooks"]] if obj.get("project_revision_hooks") is not None else None,
725
756
  "scim_clients": [NormalizedProjectRevisionScimClient.from_dict(_item) for _item in obj["scim_clients"]] if obj.get("scim_clients") is not None else None,
@@ -5,7 +5,7 @@
5
5
 
6
6
  # Introduction 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. ## SDKs This document describes the APIs available in the Ory Network. The APIs are available as SDKs for the following languages: | Language | Download SDK | Documentation | | -------------- | ---------------------------------------------------------------- | ------------------------------------------------------------------------------------ | | Dart | [pub.dev](https://pub.dev/packages/ory_client) | [README](https://github.com/ory/sdk/blob/master/clients/client/dart/README.md) | | .NET | [nuget.org](https://www.nuget.org/packages/Ory.Client/) | [README](https://github.com/ory/sdk/blob/master/clients/client/dotnet/README.md) | | Elixir | [hex.pm](https://hex.pm/packages/ory_client) | [README](https://github.com/ory/sdk/blob/master/clients/client/elixir/README.md) | | Go | [github.com](https://github.com/ory/client-go) | [README](https://github.com/ory/sdk/blob/master/clients/client/go/README.md) | | Java | [maven.org](https://search.maven.org/artifact/sh.ory/ory-client) | [README](https://github.com/ory/sdk/blob/master/clients/client/java/README.md) | | JavaScript | [npmjs.com](https://www.npmjs.com/package/@ory/client) | [README](https://github.com/ory/sdk/blob/master/clients/client/typescript/README.md) | | JavaScript (With fetch) | [npmjs.com](https://www.npmjs.com/package/@ory/client-fetch) | [README](https://github.com/ory/sdk/blob/master/clients/client/typescript-fetch/README.md) | | PHP | [packagist.org](https://packagist.org/packages/ory/client) | [README](https://github.com/ory/sdk/blob/master/clients/client/php/README.md) | | Python | [pypi.org](https://pypi.org/project/ory-client/) | [README](https://github.com/ory/sdk/blob/master/clients/client/python/README.md) | | Ruby | [rubygems.org](https://rubygems.org/gems/ory-client) | [README](https://github.com/ory/sdk/blob/master/clients/client/ruby/README.md) | | Rust | [crates.io](https://crates.io/crates/ory-client) | [README](https://github.com/ory/sdk/blob/master/clients/client/rust/README.md) |
7
7
 
8
- The version of the OpenAPI document: v1.20.10
8
+ The version of the OpenAPI document: v1.20.22
9
9
  Contact: support@ory.sh
10
10
  Generated by OpenAPI Generator (https://openapi-generator.tech)
11
11
 
@@ -5,7 +5,7 @@
5
5
 
6
6
  # Introduction 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. ## SDKs This document describes the APIs available in the Ory Network. The APIs are available as SDKs for the following languages: | Language | Download SDK | Documentation | | -------------- | ---------------------------------------------------------------- | ------------------------------------------------------------------------------------ | | Dart | [pub.dev](https://pub.dev/packages/ory_client) | [README](https://github.com/ory/sdk/blob/master/clients/client/dart/README.md) | | .NET | [nuget.org](https://www.nuget.org/packages/Ory.Client/) | [README](https://github.com/ory/sdk/blob/master/clients/client/dotnet/README.md) | | Elixir | [hex.pm](https://hex.pm/packages/ory_client) | [README](https://github.com/ory/sdk/blob/master/clients/client/elixir/README.md) | | Go | [github.com](https://github.com/ory/client-go) | [README](https://github.com/ory/sdk/blob/master/clients/client/go/README.md) | | Java | [maven.org](https://search.maven.org/artifact/sh.ory/ory-client) | [README](https://github.com/ory/sdk/blob/master/clients/client/java/README.md) | | JavaScript | [npmjs.com](https://www.npmjs.com/package/@ory/client) | [README](https://github.com/ory/sdk/blob/master/clients/client/typescript/README.md) | | JavaScript (With fetch) | [npmjs.com](https://www.npmjs.com/package/@ory/client-fetch) | [README](https://github.com/ory/sdk/blob/master/clients/client/typescript-fetch/README.md) | | PHP | [packagist.org](https://packagist.org/packages/ory/client) | [README](https://github.com/ory/sdk/blob/master/clients/client/php/README.md) | | Python | [pypi.org](https://pypi.org/project/ory-client/) | [README](https://github.com/ory/sdk/blob/master/clients/client/python/README.md) | | Ruby | [rubygems.org](https://rubygems.org/gems/ory-client) | [README](https://github.com/ory/sdk/blob/master/clients/client/ruby/README.md) | | Rust | [crates.io](https://crates.io/crates/ory-client) | [README](https://github.com/ory/sdk/blob/master/clients/client/rust/README.md) |
7
7
 
8
- The version of the OpenAPI document: v1.20.10
8
+ The version of the OpenAPI document: v1.20.22
9
9
  Contact: support@ory.sh
10
10
  Generated by OpenAPI Generator (https://openapi-generator.tech)
11
11
 
@@ -5,7 +5,7 @@
5
5
 
6
6
  # Introduction 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. ## SDKs This document describes the APIs available in the Ory Network. The APIs are available as SDKs for the following languages: | Language | Download SDK | Documentation | | -------------- | ---------------------------------------------------------------- | ------------------------------------------------------------------------------------ | | Dart | [pub.dev](https://pub.dev/packages/ory_client) | [README](https://github.com/ory/sdk/blob/master/clients/client/dart/README.md) | | .NET | [nuget.org](https://www.nuget.org/packages/Ory.Client/) | [README](https://github.com/ory/sdk/blob/master/clients/client/dotnet/README.md) | | Elixir | [hex.pm](https://hex.pm/packages/ory_client) | [README](https://github.com/ory/sdk/blob/master/clients/client/elixir/README.md) | | Go | [github.com](https://github.com/ory/client-go) | [README](https://github.com/ory/sdk/blob/master/clients/client/go/README.md) | | Java | [maven.org](https://search.maven.org/artifact/sh.ory/ory-client) | [README](https://github.com/ory/sdk/blob/master/clients/client/java/README.md) | | JavaScript | [npmjs.com](https://www.npmjs.com/package/@ory/client) | [README](https://github.com/ory/sdk/blob/master/clients/client/typescript/README.md) | | JavaScript (With fetch) | [npmjs.com](https://www.npmjs.com/package/@ory/client-fetch) | [README](https://github.com/ory/sdk/blob/master/clients/client/typescript-fetch/README.md) | | PHP | [packagist.org](https://packagist.org/packages/ory/client) | [README](https://github.com/ory/sdk/blob/master/clients/client/php/README.md) | | Python | [pypi.org](https://pypi.org/project/ory-client/) | [README](https://github.com/ory/sdk/blob/master/clients/client/python/README.md) | | Ruby | [rubygems.org](https://rubygems.org/gems/ory-client) | [README](https://github.com/ory/sdk/blob/master/clients/client/ruby/README.md) | | Rust | [crates.io](https://crates.io/crates/ory-client) | [README](https://github.com/ory/sdk/blob/master/clients/client/rust/README.md) |
7
7
 
8
- The version of the OpenAPI document: v1.20.10
8
+ The version of the OpenAPI document: v1.20.22
9
9
  Contact: support@ory.sh
10
10
  Generated by OpenAPI Generator (https://openapi-generator.tech)
11
11
 
@@ -5,7 +5,7 @@
5
5
 
6
6
  # Introduction 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. ## SDKs This document describes the APIs available in the Ory Network. The APIs are available as SDKs for the following languages: | Language | Download SDK | Documentation | | -------------- | ---------------------------------------------------------------- | ------------------------------------------------------------------------------------ | | Dart | [pub.dev](https://pub.dev/packages/ory_client) | [README](https://github.com/ory/sdk/blob/master/clients/client/dart/README.md) | | .NET | [nuget.org](https://www.nuget.org/packages/Ory.Client/) | [README](https://github.com/ory/sdk/blob/master/clients/client/dotnet/README.md) | | Elixir | [hex.pm](https://hex.pm/packages/ory_client) | [README](https://github.com/ory/sdk/blob/master/clients/client/elixir/README.md) | | Go | [github.com](https://github.com/ory/client-go) | [README](https://github.com/ory/sdk/blob/master/clients/client/go/README.md) | | Java | [maven.org](https://search.maven.org/artifact/sh.ory/ory-client) | [README](https://github.com/ory/sdk/blob/master/clients/client/java/README.md) | | JavaScript | [npmjs.com](https://www.npmjs.com/package/@ory/client) | [README](https://github.com/ory/sdk/blob/master/clients/client/typescript/README.md) | | JavaScript (With fetch) | [npmjs.com](https://www.npmjs.com/package/@ory/client-fetch) | [README](https://github.com/ory/sdk/blob/master/clients/client/typescript-fetch/README.md) | | PHP | [packagist.org](https://packagist.org/packages/ory/client) | [README](https://github.com/ory/sdk/blob/master/clients/client/php/README.md) | | Python | [pypi.org](https://pypi.org/project/ory-client/) | [README](https://github.com/ory/sdk/blob/master/clients/client/python/README.md) | | Ruby | [rubygems.org](https://rubygems.org/gems/ory-client) | [README](https://github.com/ory/sdk/blob/master/clients/client/ruby/README.md) | | Rust | [crates.io](https://crates.io/crates/ory-client) | [README](https://github.com/ory/sdk/blob/master/clients/client/rust/README.md) |
7
7
 
8
- The version of the OpenAPI document: v1.20.10
8
+ The version of the OpenAPI document: v1.20.22
9
9
  Contact: support@ory.sh
10
10
  Generated by OpenAPI Generator (https://openapi-generator.tech)
11
11
 
@@ -5,7 +5,7 @@
5
5
 
6
6
  # Introduction 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. ## SDKs This document describes the APIs available in the Ory Network. The APIs are available as SDKs for the following languages: | Language | Download SDK | Documentation | | -------------- | ---------------------------------------------------------------- | ------------------------------------------------------------------------------------ | | Dart | [pub.dev](https://pub.dev/packages/ory_client) | [README](https://github.com/ory/sdk/blob/master/clients/client/dart/README.md) | | .NET | [nuget.org](https://www.nuget.org/packages/Ory.Client/) | [README](https://github.com/ory/sdk/blob/master/clients/client/dotnet/README.md) | | Elixir | [hex.pm](https://hex.pm/packages/ory_client) | [README](https://github.com/ory/sdk/blob/master/clients/client/elixir/README.md) | | Go | [github.com](https://github.com/ory/client-go) | [README](https://github.com/ory/sdk/blob/master/clients/client/go/README.md) | | Java | [maven.org](https://search.maven.org/artifact/sh.ory/ory-client) | [README](https://github.com/ory/sdk/blob/master/clients/client/java/README.md) | | JavaScript | [npmjs.com](https://www.npmjs.com/package/@ory/client) | [README](https://github.com/ory/sdk/blob/master/clients/client/typescript/README.md) | | JavaScript (With fetch) | [npmjs.com](https://www.npmjs.com/package/@ory/client-fetch) | [README](https://github.com/ory/sdk/blob/master/clients/client/typescript-fetch/README.md) | | PHP | [packagist.org](https://packagist.org/packages/ory/client) | [README](https://github.com/ory/sdk/blob/master/clients/client/php/README.md) | | Python | [pypi.org](https://pypi.org/project/ory-client/) | [README](https://github.com/ory/sdk/blob/master/clients/client/python/README.md) | | Ruby | [rubygems.org](https://rubygems.org/gems/ory-client) | [README](https://github.com/ory/sdk/blob/master/clients/client/ruby/README.md) | | Rust | [crates.io](https://crates.io/crates/ory-client) | [README](https://github.com/ory/sdk/blob/master/clients/client/rust/README.md) |
7
7
 
8
- The version of the OpenAPI document: v1.20.10
8
+ The version of the OpenAPI document: v1.20.22
9
9
  Contact: support@ory.sh
10
10
  Generated by OpenAPI Generator (https://openapi-generator.tech)
11
11
 
@@ -5,7 +5,7 @@
5
5
 
6
6
  # Introduction 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. ## SDKs This document describes the APIs available in the Ory Network. The APIs are available as SDKs for the following languages: | Language | Download SDK | Documentation | | -------------- | ---------------------------------------------------------------- | ------------------------------------------------------------------------------------ | | Dart | [pub.dev](https://pub.dev/packages/ory_client) | [README](https://github.com/ory/sdk/blob/master/clients/client/dart/README.md) | | .NET | [nuget.org](https://www.nuget.org/packages/Ory.Client/) | [README](https://github.com/ory/sdk/blob/master/clients/client/dotnet/README.md) | | Elixir | [hex.pm](https://hex.pm/packages/ory_client) | [README](https://github.com/ory/sdk/blob/master/clients/client/elixir/README.md) | | Go | [github.com](https://github.com/ory/client-go) | [README](https://github.com/ory/sdk/blob/master/clients/client/go/README.md) | | Java | [maven.org](https://search.maven.org/artifact/sh.ory/ory-client) | [README](https://github.com/ory/sdk/blob/master/clients/client/java/README.md) | | JavaScript | [npmjs.com](https://www.npmjs.com/package/@ory/client) | [README](https://github.com/ory/sdk/blob/master/clients/client/typescript/README.md) | | JavaScript (With fetch) | [npmjs.com](https://www.npmjs.com/package/@ory/client-fetch) | [README](https://github.com/ory/sdk/blob/master/clients/client/typescript-fetch/README.md) | | PHP | [packagist.org](https://packagist.org/packages/ory/client) | [README](https://github.com/ory/sdk/blob/master/clients/client/php/README.md) | | Python | [pypi.org](https://pypi.org/project/ory-client/) | [README](https://github.com/ory/sdk/blob/master/clients/client/python/README.md) | | Ruby | [rubygems.org](https://rubygems.org/gems/ory-client) | [README](https://github.com/ory/sdk/blob/master/clients/client/ruby/README.md) | | Rust | [crates.io](https://crates.io/crates/ory-client) | [README](https://github.com/ory/sdk/blob/master/clients/client/rust/README.md) |
7
7
 
8
- The version of the OpenAPI document: v1.20.10
8
+ The version of the OpenAPI document: v1.20.22
9
9
  Contact: support@ory.sh
10
10
  Generated by OpenAPI Generator (https://openapi-generator.tech)
11
11
 
@@ -5,7 +5,7 @@
5
5
 
6
6
  # Introduction 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. ## SDKs This document describes the APIs available in the Ory Network. The APIs are available as SDKs for the following languages: | Language | Download SDK | Documentation | | -------------- | ---------------------------------------------------------------- | ------------------------------------------------------------------------------------ | | Dart | [pub.dev](https://pub.dev/packages/ory_client) | [README](https://github.com/ory/sdk/blob/master/clients/client/dart/README.md) | | .NET | [nuget.org](https://www.nuget.org/packages/Ory.Client/) | [README](https://github.com/ory/sdk/blob/master/clients/client/dotnet/README.md) | | Elixir | [hex.pm](https://hex.pm/packages/ory_client) | [README](https://github.com/ory/sdk/blob/master/clients/client/elixir/README.md) | | Go | [github.com](https://github.com/ory/client-go) | [README](https://github.com/ory/sdk/blob/master/clients/client/go/README.md) | | Java | [maven.org](https://search.maven.org/artifact/sh.ory/ory-client) | [README](https://github.com/ory/sdk/blob/master/clients/client/java/README.md) | | JavaScript | [npmjs.com](https://www.npmjs.com/package/@ory/client) | [README](https://github.com/ory/sdk/blob/master/clients/client/typescript/README.md) | | JavaScript (With fetch) | [npmjs.com](https://www.npmjs.com/package/@ory/client-fetch) | [README](https://github.com/ory/sdk/blob/master/clients/client/typescript-fetch/README.md) | | PHP | [packagist.org](https://packagist.org/packages/ory/client) | [README](https://github.com/ory/sdk/blob/master/clients/client/php/README.md) | | Python | [pypi.org](https://pypi.org/project/ory-client/) | [README](https://github.com/ory/sdk/blob/master/clients/client/python/README.md) | | Ruby | [rubygems.org](https://rubygems.org/gems/ory-client) | [README](https://github.com/ory/sdk/blob/master/clients/client/ruby/README.md) | | Rust | [crates.io](https://crates.io/crates/ory-client) | [README](https://github.com/ory/sdk/blob/master/clients/client/rust/README.md) |
7
7
 
8
- The version of the OpenAPI document: v1.20.10
8
+ The version of the OpenAPI document: v1.20.22
9
9
  Contact: support@ory.sh
10
10
  Generated by OpenAPI Generator (https://openapi-generator.tech)
11
11
 
@@ -5,7 +5,7 @@
5
5
 
6
6
  # Introduction 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. ## SDKs This document describes the APIs available in the Ory Network. The APIs are available as SDKs for the following languages: | Language | Download SDK | Documentation | | -------------- | ---------------------------------------------------------------- | ------------------------------------------------------------------------------------ | | Dart | [pub.dev](https://pub.dev/packages/ory_client) | [README](https://github.com/ory/sdk/blob/master/clients/client/dart/README.md) | | .NET | [nuget.org](https://www.nuget.org/packages/Ory.Client/) | [README](https://github.com/ory/sdk/blob/master/clients/client/dotnet/README.md) | | Elixir | [hex.pm](https://hex.pm/packages/ory_client) | [README](https://github.com/ory/sdk/blob/master/clients/client/elixir/README.md) | | Go | [github.com](https://github.com/ory/client-go) | [README](https://github.com/ory/sdk/blob/master/clients/client/go/README.md) | | Java | [maven.org](https://search.maven.org/artifact/sh.ory/ory-client) | [README](https://github.com/ory/sdk/blob/master/clients/client/java/README.md) | | JavaScript | [npmjs.com](https://www.npmjs.com/package/@ory/client) | [README](https://github.com/ory/sdk/blob/master/clients/client/typescript/README.md) | | JavaScript (With fetch) | [npmjs.com](https://www.npmjs.com/package/@ory/client-fetch) | [README](https://github.com/ory/sdk/blob/master/clients/client/typescript-fetch/README.md) | | PHP | [packagist.org](https://packagist.org/packages/ory/client) | [README](https://github.com/ory/sdk/blob/master/clients/client/php/README.md) | | Python | [pypi.org](https://pypi.org/project/ory-client/) | [README](https://github.com/ory/sdk/blob/master/clients/client/python/README.md) | | Ruby | [rubygems.org](https://rubygems.org/gems/ory-client) | [README](https://github.com/ory/sdk/blob/master/clients/client/ruby/README.md) | | Rust | [crates.io](https://crates.io/crates/ory-client) | [README](https://github.com/ory/sdk/blob/master/clients/client/rust/README.md) |
7
7
 
8
- The version of the OpenAPI document: v1.20.10
8
+ The version of the OpenAPI document: v1.20.22
9
9
  Contact: support@ory.sh
10
10
  Generated by OpenAPI Generator (https://openapi-generator.tech)
11
11
 
@@ -22,6 +22,7 @@ from datetime import datetime
22
22
  from pydantic import BaseModel, ConfigDict, Field, StrictBool, StrictInt, StrictStr, field_validator
23
23
  from typing import Any, ClassVar, Dict, List, Optional
24
24
  from typing_extensions import Annotated
25
+ from ory_client.models.json_web_key_set import JsonWebKeySet
25
26
  from typing import Optional, Set
26
27
  from typing_extensions import Self
27
28
 
@@ -29,7 +30,7 @@ class OAuth2Client(BaseModel):
29
30
  """
30
31
  OAuth 2.0 Clients are used to perform OAuth 2.0 and OpenID Connect flows. Usually, OAuth 2.0 clients are generated for applications which want to consume your OAuth 2.0 or OpenID Connect capabilities.
31
32
  """ # noqa: E501
32
- access_token_strategy: Optional[StrictStr] = Field(default=None, description="OAuth 2.0 Access Token Strategy AccessTokenStrategy is the strategy used to generate access tokens. Valid options are `jwt` and `opaque`. `jwt` is a bad idea, see https://www.ory.sh/docs/oauth2-oidc/jwt-access-token Setting the stragegy here overrides the global setting in `strategies.access_token`.")
33
+ access_token_strategy: Optional[StrictStr] = Field(default=None, description="OAuth 2.0 Access Token Strategy AccessTokenStrategy is the strategy used to generate access tokens. Valid options are `jwt` and `opaque`. `jwt` is a bad idea, see https://www.ory.sh/docs/oauth2-oidc/jwt-access-token Setting the strategy here overrides the global setting in `strategies.access_token`.")
33
34
  allowed_cors_origins: Optional[List[StrictStr]] = None
34
35
  audience: Optional[List[StrictStr]] = None
35
36
  authorization_code_grant_access_token_lifespan: Optional[Annotated[str, Field(strict=True)]] = None
@@ -45,12 +46,15 @@ class OAuth2Client(BaseModel):
45
46
  client_uri: Optional[StrictStr] = Field(default=None, description="OAuth 2.0 Client URI ClientURI is a URL string of a web page providing information about the client. If present, the server SHOULD display this URL to the end-user in a clickable fashion.")
46
47
  contacts: Optional[List[StrictStr]] = None
47
48
  created_at: Optional[datetime] = Field(default=None, description="OAuth 2.0 Client Creation Date CreatedAt returns the timestamp of the client's creation.")
49
+ device_authorization_grant_access_token_lifespan: Optional[Annotated[str, Field(strict=True)]] = None
50
+ device_authorization_grant_id_token_lifespan: Optional[Annotated[str, Field(strict=True)]] = None
51
+ device_authorization_grant_refresh_token_lifespan: Optional[Annotated[str, Field(strict=True)]] = None
48
52
  frontchannel_logout_session_required: Optional[StrictBool] = Field(default=None, description="OpenID Connect Front-Channel Logout Session Required Boolean value specifying whether the RP requires that iss (issuer) and sid (session ID) query parameters be included to identify the RP session with the OP when the frontchannel_logout_uri is used. If omitted, the default value is false.")
49
53
  frontchannel_logout_uri: Optional[StrictStr] = Field(default=None, description="OpenID Connect Front-Channel Logout URI RP URL that will cause the RP to log itself out when rendered in an iframe by the OP. An iss (issuer) query parameter and a sid (session ID) query parameter MAY be included by the OP to enable the RP to validate the request and to determine which of the potentially multiple sessions is to be logged out; if either is included, both MUST be.")
50
54
  grant_types: Optional[List[StrictStr]] = None
51
55
  implicit_grant_access_token_lifespan: Optional[Annotated[str, Field(strict=True)]] = None
52
56
  implicit_grant_id_token_lifespan: Optional[Annotated[str, Field(strict=True)]] = None
53
- jwks: Optional[Any] = Field(default=None, description="OAuth 2.0 Client JSON Web Key Set Client's JSON Web Key Set [JWK] document, passed by value. The semantics of the jwks parameter are the same as the jwks_uri parameter, other than that the JWK Set is passed by value, rather than by reference. This parameter is intended only to be used by Clients that, for some reason, are unable to use the jwks_uri parameter, for instance, by native applications that might not have a location to host the contents of the JWK Set. If a Client can use jwks_uri, it MUST NOT use jwks. One significant downside of jwks is that it does not enable key rotation (which jwks_uri does, as described in Section 10 of OpenID Connect Core 1.0 [OpenID.Core]). The jwks_uri and jwks parameters MUST NOT be used together.")
57
+ jwks: Optional[JsonWebKeySet] = None
54
58
  jwks_uri: Optional[StrictStr] = Field(default=None, description="OAuth 2.0 Client JSON Web Key Set URL URL for the Client's JSON Web Key Set [JWK] document. If the Client signs requests to the Server, it contains the signing key(s) the Server uses to validate signatures from the Client. The JWK Set MAY also contain the Client's encryption keys(s), which are used by the Server to encrypt responses to the Client. When both signing and encryption keys are made available, a use (Key Use) parameter value is REQUIRED for all keys in the referenced JWK Set to indicate each key's intended usage. Although some algorithms allow the same key to be used for both signatures and encryption, doing so is NOT RECOMMENDED, as it is less secure. The JWK x5c parameter MAY be used to provide X.509 representations of keys provided. When used, the bare key values MUST still be present and MUST match those in the certificate.")
55
59
  jwt_bearer_grant_access_token_lifespan: Optional[Annotated[str, Field(strict=True)]] = None
56
60
  logo_uri: Optional[StrictStr] = Field(default=None, description="OAuth 2.0 Client Logo URI A URL string referencing the client's logo.")
@@ -78,7 +82,7 @@ class OAuth2Client(BaseModel):
78
82
  updated_at: Optional[datetime] = Field(default=None, description="OAuth 2.0 Client Last Update Date UpdatedAt returns the timestamp of the last update.")
79
83
  userinfo_signed_response_alg: Optional[StrictStr] = Field(default=None, description="OpenID Connect Request Userinfo Signed Response Algorithm JWS alg algorithm [JWA] REQUIRED for signing UserInfo Responses. If this is specified, the response will be JWT [JWT] serialized, and signed using JWS. The default, if omitted, is for the UserInfo Response to return the Claims as a UTF-8 encoded JSON object using the application/json content-type.")
80
84
  additional_properties: Dict[str, Any] = {}
81
- __properties: ClassVar[List[str]] = ["access_token_strategy", "allowed_cors_origins", "audience", "authorization_code_grant_access_token_lifespan", "authorization_code_grant_id_token_lifespan", "authorization_code_grant_refresh_token_lifespan", "backchannel_logout_session_required", "backchannel_logout_uri", "client_credentials_grant_access_token_lifespan", "client_id", "client_name", "client_secret", "client_secret_expires_at", "client_uri", "contacts", "created_at", "frontchannel_logout_session_required", "frontchannel_logout_uri", "grant_types", "implicit_grant_access_token_lifespan", "implicit_grant_id_token_lifespan", "jwks", "jwks_uri", "jwt_bearer_grant_access_token_lifespan", "logo_uri", "metadata", "owner", "policy_uri", "post_logout_redirect_uris", "redirect_uris", "refresh_token_grant_access_token_lifespan", "refresh_token_grant_id_token_lifespan", "refresh_token_grant_refresh_token_lifespan", "registration_access_token", "registration_client_uri", "request_object_signing_alg", "request_uris", "response_types", "scope", "sector_identifier_uri", "skip_consent", "skip_logout_consent", "subject_type", "token_endpoint_auth_method", "token_endpoint_auth_signing_alg", "tos_uri", "updated_at", "userinfo_signed_response_alg"]
85
+ __properties: ClassVar[List[str]] = ["access_token_strategy", "allowed_cors_origins", "audience", "authorization_code_grant_access_token_lifespan", "authorization_code_grant_id_token_lifespan", "authorization_code_grant_refresh_token_lifespan", "backchannel_logout_session_required", "backchannel_logout_uri", "client_credentials_grant_access_token_lifespan", "client_id", "client_name", "client_secret", "client_secret_expires_at", "client_uri", "contacts", "created_at", "device_authorization_grant_access_token_lifespan", "device_authorization_grant_id_token_lifespan", "device_authorization_grant_refresh_token_lifespan", "frontchannel_logout_session_required", "frontchannel_logout_uri", "grant_types", "implicit_grant_access_token_lifespan", "implicit_grant_id_token_lifespan", "jwks", "jwks_uri", "jwt_bearer_grant_access_token_lifespan", "logo_uri", "metadata", "owner", "policy_uri", "post_logout_redirect_uris", "redirect_uris", "refresh_token_grant_access_token_lifespan", "refresh_token_grant_id_token_lifespan", "refresh_token_grant_refresh_token_lifespan", "registration_access_token", "registration_client_uri", "request_object_signing_alg", "request_uris", "response_types", "scope", "sector_identifier_uri", "skip_consent", "skip_logout_consent", "subject_type", "token_endpoint_auth_method", "token_endpoint_auth_signing_alg", "tos_uri", "updated_at", "userinfo_signed_response_alg"]
82
86
 
83
87
  @field_validator('authorization_code_grant_access_token_lifespan')
84
88
  def authorization_code_grant_access_token_lifespan_validate_regular_expression(cls, value):
@@ -120,6 +124,36 @@ class OAuth2Client(BaseModel):
120
124
  raise ValueError(r"must validate the regular expression /^[0-9]+(ns|us|ms|s|m|h)$/")
121
125
  return value
122
126
 
127
+ @field_validator('device_authorization_grant_access_token_lifespan')
128
+ def device_authorization_grant_access_token_lifespan_validate_regular_expression(cls, value):
129
+ """Validates the regular expression"""
130
+ if value is None:
131
+ return value
132
+
133
+ if not re.match(r"^[0-9]+(ns|us|ms|s|m|h)$", value):
134
+ raise ValueError(r"must validate the regular expression /^[0-9]+(ns|us|ms|s|m|h)$/")
135
+ return value
136
+
137
+ @field_validator('device_authorization_grant_id_token_lifespan')
138
+ def device_authorization_grant_id_token_lifespan_validate_regular_expression(cls, value):
139
+ """Validates the regular expression"""
140
+ if value is None:
141
+ return value
142
+
143
+ if not re.match(r"^[0-9]+(ns|us|ms|s|m|h)$", value):
144
+ raise ValueError(r"must validate the regular expression /^[0-9]+(ns|us|ms|s|m|h)$/")
145
+ return value
146
+
147
+ @field_validator('device_authorization_grant_refresh_token_lifespan')
148
+ def device_authorization_grant_refresh_token_lifespan_validate_regular_expression(cls, value):
149
+ """Validates the regular expression"""
150
+ if value is None:
151
+ return value
152
+
153
+ if not re.match(r"^[0-9]+(ns|us|ms|s|m|h)$", value):
154
+ raise ValueError(r"must validate the regular expression /^[0-9]+(ns|us|ms|s|m|h)$/")
155
+ return value
156
+
123
157
  @field_validator('implicit_grant_access_token_lifespan')
124
158
  def implicit_grant_access_token_lifespan_validate_regular_expression(cls, value):
125
159
  """Validates the regular expression"""
@@ -221,6 +255,9 @@ class OAuth2Client(BaseModel):
221
255
  exclude=excluded_fields,
222
256
  exclude_none=True,
223
257
  )
258
+ # override the default output from pydantic by calling `to_dict()` of jwks
259
+ if self.jwks:
260
+ _dict['jwks'] = self.jwks.to_dict()
224
261
  # puts key-value pairs in additional_properties in the top level
225
262
  if self.additional_properties is not None:
226
263
  for _key, _value in self.additional_properties.items():
@@ -246,6 +283,21 @@ class OAuth2Client(BaseModel):
246
283
  if self.client_credentials_grant_access_token_lifespan is None and "client_credentials_grant_access_token_lifespan" in self.model_fields_set:
247
284
  _dict['client_credentials_grant_access_token_lifespan'] = None
248
285
 
286
+ # set to None if device_authorization_grant_access_token_lifespan (nullable) is None
287
+ # and model_fields_set contains the field
288
+ if self.device_authorization_grant_access_token_lifespan is None and "device_authorization_grant_access_token_lifespan" in self.model_fields_set:
289
+ _dict['device_authorization_grant_access_token_lifespan'] = None
290
+
291
+ # set to None if device_authorization_grant_id_token_lifespan (nullable) is None
292
+ # and model_fields_set contains the field
293
+ if self.device_authorization_grant_id_token_lifespan is None and "device_authorization_grant_id_token_lifespan" in self.model_fields_set:
294
+ _dict['device_authorization_grant_id_token_lifespan'] = None
295
+
296
+ # set to None if device_authorization_grant_refresh_token_lifespan (nullable) is None
297
+ # and model_fields_set contains the field
298
+ if self.device_authorization_grant_refresh_token_lifespan is None and "device_authorization_grant_refresh_token_lifespan" in self.model_fields_set:
299
+ _dict['device_authorization_grant_refresh_token_lifespan'] = None
300
+
249
301
  # set to None if implicit_grant_access_token_lifespan (nullable) is None
250
302
  # and model_fields_set contains the field
251
303
  if self.implicit_grant_access_token_lifespan is None and "implicit_grant_access_token_lifespan" in self.model_fields_set:
@@ -256,11 +308,6 @@ class OAuth2Client(BaseModel):
256
308
  if self.implicit_grant_id_token_lifespan is None and "implicit_grant_id_token_lifespan" in self.model_fields_set:
257
309
  _dict['implicit_grant_id_token_lifespan'] = None
258
310
 
259
- # set to None if jwks (nullable) is None
260
- # and model_fields_set contains the field
261
- if self.jwks is None and "jwks" in self.model_fields_set:
262
- _dict['jwks'] = None
263
-
264
311
  # set to None if jwt_bearer_grant_access_token_lifespan (nullable) is None
265
312
  # and model_fields_set contains the field
266
313
  if self.jwt_bearer_grant_access_token_lifespan is None and "jwt_bearer_grant_access_token_lifespan" in self.model_fields_set:
@@ -309,12 +356,15 @@ class OAuth2Client(BaseModel):
309
356
  "client_uri": obj.get("client_uri"),
310
357
  "contacts": obj.get("contacts"),
311
358
  "created_at": obj.get("created_at"),
359
+ "device_authorization_grant_access_token_lifespan": obj.get("device_authorization_grant_access_token_lifespan"),
360
+ "device_authorization_grant_id_token_lifespan": obj.get("device_authorization_grant_id_token_lifespan"),
361
+ "device_authorization_grant_refresh_token_lifespan": obj.get("device_authorization_grant_refresh_token_lifespan"),
312
362
  "frontchannel_logout_session_required": obj.get("frontchannel_logout_session_required"),
313
363
  "frontchannel_logout_uri": obj.get("frontchannel_logout_uri"),
314
364
  "grant_types": obj.get("grant_types"),
315
365
  "implicit_grant_access_token_lifespan": obj.get("implicit_grant_access_token_lifespan"),
316
366
  "implicit_grant_id_token_lifespan": obj.get("implicit_grant_id_token_lifespan"),
317
- "jwks": obj.get("jwks"),
367
+ "jwks": JsonWebKeySet.from_dict(obj["jwks"]) if obj.get("jwks") is not None else None,
318
368
  "jwks_uri": obj.get("jwks_uri"),
319
369
  "jwt_bearer_grant_access_token_lifespan": obj.get("jwt_bearer_grant_access_token_lifespan"),
320
370
  "logo_uri": obj.get("logo_uri"),