ory-client 1.11.7__py3-none-any.whl → 1.11.11__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 (287) hide show
  1. ory_client/__init__.py +19 -9
  2. ory_client/api/__init__.py +1 -0
  3. ory_client/api/courier_api.py +1 -1
  4. ory_client/api/events_api.py +33 -21
  5. ory_client/api/frontend_api.py +1 -1
  6. ory_client/api/identity_api.py +7 -4
  7. ory_client/api/jwk_api.py +1 -1
  8. ory_client/api/metadata_api.py +1 -1
  9. ory_client/api/o_auth2_api.py +1 -1
  10. ory_client/api/oidc_api.py +1 -1
  11. ory_client/api/permission_api.py +1 -1
  12. ory_client/api/project_api.py +201 -967
  13. ory_client/api/relationship_api.py +1 -1
  14. ory_client/api/wellknown_api.py +1 -1
  15. ory_client/api/workspace_api.py +1463 -0
  16. ory_client/api_client.py +2 -2
  17. ory_client/configuration.py +34 -6
  18. ory_client/exceptions.py +1 -1
  19. ory_client/models/__init__.py +17 -8
  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_configuration.py +109 -0
  24. ory_client/models/account_experience_theme_variables.py +282 -0
  25. ory_client/models/active_project_in_console.py +1 -1
  26. ory_client/models/{migration_options.py → add_project_to_workspace_body.py} +5 -5
  27. ory_client/models/attribute.py +1 -1
  28. ory_client/models/attribute_filter.py +1 -1
  29. ory_client/models/attributes_count_datapoint.py +1 -1
  30. ory_client/models/authenticator_assurance_level.py +1 -1
  31. ory_client/models/batch_patch_identities_response.py +1 -1
  32. ory_client/models/billing_period_bucket.py +120 -0
  33. ory_client/models/check_opl_syntax_result.py +1 -1
  34. ory_client/models/check_permission_result.py +1 -1
  35. ory_client/models/cloud_account.py +1 -1
  36. ory_client/models/consistency_request_parameters.py +1 -1
  37. ory_client/models/continue_with.py +1 -1
  38. ory_client/models/continue_with_recovery_ui.py +1 -1
  39. ory_client/models/continue_with_recovery_ui_flow.py +1 -1
  40. ory_client/models/continue_with_set_ory_session_token.py +1 -1
  41. ory_client/models/continue_with_settings_ui.py +1 -1
  42. ory_client/models/continue_with_settings_ui_flow.py +1 -1
  43. ory_client/models/continue_with_verification_ui.py +1 -1
  44. ory_client/models/continue_with_verification_ui_flow.py +1 -1
  45. ory_client/models/courier_message_status.py +1 -1
  46. ory_client/models/courier_message_type.py +1 -1
  47. ory_client/models/create_custom_domain_body.py +1 -1
  48. ory_client/models/create_event_stream_body.py +1 -1
  49. ory_client/models/create_identity_body.py +1 -1
  50. ory_client/models/create_invite_response.py +1 -1
  51. ory_client/models/create_json_web_key_set.py +1 -1
  52. ory_client/models/create_project_api_key_request.py +1 -1
  53. ory_client/models/create_project_body.py +14 -2
  54. ory_client/models/create_project_branding.py +1 -1
  55. ory_client/models/create_project_member_invite_body.py +1 -1
  56. ory_client/models/create_project_normalized_payload.py +27 -3
  57. ory_client/models/create_recovery_code_for_identity_body.py +4 -2
  58. ory_client/models/create_recovery_link_for_identity_body.py +1 -1
  59. ory_client/models/create_relationship_body.py +1 -1
  60. ory_client/models/create_subscription_body.py +1 -1
  61. ory_client/models/create_subscription_common.py +1 -1
  62. ory_client/models/create_verifiable_credential_request_body.py +1 -1
  63. ory_client/models/{create_workspace_payload.py → create_workspace_body.py} +5 -5
  64. ory_client/models/create_workspace_member_invite_body.py +1 -1
  65. ory_client/models/create_workspace_subscription_body.py +1 -1
  66. ory_client/models/credential_supported_draft00.py +1 -1
  67. ory_client/models/custom_domain.py +1 -1
  68. ory_client/models/delete_my_sessions_count.py +1 -1
  69. ory_client/models/email_template_data.py +1 -1
  70. ory_client/models/email_template_data_body.py +1 -1
  71. ory_client/models/error_authenticator_assurance_level_not_satisfied.py +1 -1
  72. ory_client/models/error_browser_location_change_required.py +1 -1
  73. ory_client/models/error_flow_replaced.py +1 -1
  74. ory_client/models/error_generic.py +1 -1
  75. ory_client/models/error_o_auth2.py +1 -1
  76. ory_client/models/event_stream.py +1 -1
  77. ory_client/models/expanded_permission_tree.py +1 -1
  78. ory_client/models/flow_error.py +1 -1
  79. ory_client/models/generic_error.py +1 -1
  80. ory_client/models/generic_error_content.py +1 -1
  81. ory_client/models/generic_usage.py +7 -3
  82. ory_client/models/get_attributes_count_response.py +1 -1
  83. ory_client/models/get_managed_identity_schema_location.py +1 -1
  84. ory_client/models/get_metrics_event_attributes_response.py +1 -1
  85. ory_client/models/get_metrics_event_types_response.py +1 -1
  86. ory_client/models/get_organization_response.py +1 -1
  87. ory_client/models/get_project_events_body.py +1 -1
  88. ory_client/models/get_project_events_response.py +1 -1
  89. ory_client/models/get_project_metrics_response.py +1 -1
  90. ory_client/models/get_session_activity_response.py +1 -1
  91. ory_client/models/get_version200_response.py +1 -1
  92. ory_client/models/health_not_ready_status.py +1 -1
  93. ory_client/models/health_status.py +1 -1
  94. ory_client/models/identity.py +1 -1
  95. ory_client/models/identity_credentials.py +1 -1
  96. ory_client/models/identity_credentials_code.py +1 -1
  97. ory_client/models/identity_credentials_oidc.py +1 -1
  98. ory_client/models/identity_credentials_oidc_provider.py +1 -1
  99. ory_client/models/identity_credentials_password.py +1 -1
  100. ory_client/models/identity_patch.py +1 -1
  101. ory_client/models/identity_patch_response.py +1 -1
  102. ory_client/models/identity_schema_container.py +1 -1
  103. ory_client/models/identity_schema_preset.py +1 -1
  104. ory_client/models/identity_with_credentials.py +1 -1
  105. ory_client/models/identity_with_credentials_oidc.py +1 -1
  106. ory_client/models/identity_with_credentials_oidc_config.py +1 -1
  107. ory_client/models/identity_with_credentials_oidc_config_provider.py +1 -1
  108. ory_client/models/identity_with_credentials_password.py +1 -1
  109. ory_client/models/identity_with_credentials_password_config.py +1 -1
  110. ory_client/models/internal_get_project_branding_body.py +1 -1
  111. ory_client/models/internal_is_ax_welcome_screen_enabled_for_project_body.py +1 -1
  112. ory_client/models/internal_is_owner_for_project_by_slug_body.py +1 -1
  113. ory_client/models/internal_is_owner_for_project_by_slug_response.py +1 -1
  114. ory_client/models/introspected_o_auth2_token.py +1 -1
  115. ory_client/models/{workspace_meta.py → invoice.py} +31 -28
  116. ory_client/models/invoice_data_v1.py +149 -0
  117. ory_client/models/is_owner_for_project_by_slug.py +1 -1
  118. ory_client/models/json_patch.py +1 -1
  119. ory_client/models/json_web_key.py +1 -1
  120. ory_client/models/json_web_key_set.py +1 -1
  121. ory_client/models/keto_namespace.py +1 -1
  122. ory_client/models/line_item_v1.py +120 -0
  123. ory_client/models/list_event_streams.py +1 -1
  124. ory_client/models/list_invoices_response.py +113 -0
  125. ory_client/models/list_organizations_response.py +8 -4
  126. ory_client/models/{list_workspace_projects_response.py → list_workspace_projects.py} +5 -5
  127. ory_client/models/{list_my_workspaces_response.py → list_workspaces.py} +8 -8
  128. ory_client/models/login_flow.py +1 -1
  129. ory_client/models/login_flow_state.py +1 -1
  130. ory_client/models/logout_flow.py +1 -1
  131. ory_client/models/managed_identity_schema.py +1 -1
  132. ory_client/models/managed_identity_schema_validation_result.py +1 -1
  133. ory_client/models/member_invite.py +1 -1
  134. ory_client/models/message.py +1 -1
  135. ory_client/models/message_dispatch.py +1 -1
  136. ory_client/models/metrics_datapoint.py +1 -1
  137. ory_client/models/money.py +105 -0
  138. ory_client/models/namespace.py +1 -1
  139. ory_client/models/needs_privileged_session_error.py +1 -1
  140. ory_client/models/normalized_project.py +13 -2
  141. ory_client/models/normalized_project_revision.py +15 -3
  142. ory_client/models/normalized_project_revision_courier_channel.py +1 -1
  143. ory_client/models/normalized_project_revision_hook.py +1 -1
  144. ory_client/models/normalized_project_revision_identity_schema.py +1 -1
  145. ory_client/models/normalized_project_revision_third_party_provider.py +1 -1
  146. ory_client/models/normalized_project_revision_tokenizer_template.py +1 -1
  147. ory_client/models/o_auth2_client.py +1 -1
  148. ory_client/models/o_auth2_client_token_lifespans.py +1 -1
  149. ory_client/models/o_auth2_consent_request.py +1 -1
  150. ory_client/models/o_auth2_consent_request_open_id_connect_context.py +1 -1
  151. ory_client/models/o_auth2_consent_session.py +1 -1
  152. ory_client/models/o_auth2_consent_session_expires_at.py +1 -1
  153. ory_client/models/o_auth2_login_request.py +1 -1
  154. ory_client/models/o_auth2_logout_request.py +1 -1
  155. ory_client/models/o_auth2_redirect_to.py +1 -1
  156. ory_client/models/o_auth2_token_exchange.py +1 -1
  157. ory_client/models/oidc_configuration.py +1 -1
  158. ory_client/models/oidc_user_info.py +1 -1
  159. ory_client/models/organization.py +1 -1
  160. ory_client/models/organization_body.py +1 -1
  161. ory_client/models/pagination.py +1 -1
  162. ory_client/models/pagination_headers.py +1 -1
  163. ory_client/models/parse_error.py +1 -1
  164. ory_client/models/patch_identities_body.py +1 -1
  165. ory_client/models/perform_native_logout_body.py +1 -1
  166. ory_client/models/{permissions_on_workpace_response.py → permissions_on_workspace.py} +4 -4
  167. ory_client/models/plan.py +1 -1
  168. ory_client/models/plan_details.py +1 -1
  169. ory_client/models/post_check_permission_body.py +1 -1
  170. ory_client/models/post_check_permission_or_error_body.py +1 -1
  171. ory_client/models/project.py +20 -2
  172. ory_client/models/project_api_key.py +1 -1
  173. ory_client/models/project_branding.py +1 -1
  174. ory_client/models/project_branding_colors.py +1 -1
  175. ory_client/models/project_branding_theme.py +14 -2
  176. ory_client/models/project_cors.py +1 -1
  177. ory_client/models/project_events_datapoint.py +1 -1
  178. ory_client/models/project_host.py +1 -1
  179. ory_client/models/project_member.py +1 -1
  180. ory_client/models/project_metadata.py +12 -3
  181. ory_client/models/project_service_identity.py +1 -1
  182. ory_client/models/project_service_o_auth2.py +1 -1
  183. ory_client/models/project_service_permission.py +1 -1
  184. ory_client/models/project_services.py +1 -1
  185. ory_client/models/quota_usage.py +5 -5
  186. ory_client/models/recovery_code_for_identity.py +1 -1
  187. ory_client/models/recovery_flow.py +1 -1
  188. ory_client/models/recovery_flow_state.py +1 -1
  189. ory_client/models/recovery_identity_address.py +1 -1
  190. ory_client/models/recovery_link_for_identity.py +1 -1
  191. ory_client/models/registration_flow.py +1 -1
  192. ory_client/models/registration_flow_state.py +1 -1
  193. ory_client/models/reject_o_auth2_request.py +1 -1
  194. ory_client/models/relation_query.py +1 -1
  195. ory_client/models/relationship.py +1 -1
  196. ory_client/models/relationship_namespaces.py +1 -1
  197. ory_client/models/relationship_patch.py +1 -1
  198. ory_client/models/relationships.py +1 -1
  199. ory_client/models/rfc6749_error_json.py +1 -1
  200. ory_client/models/schema_patch.py +1 -1
  201. ory_client/models/self_service_flow_expired_error.py +1 -1
  202. ory_client/models/session.py +1 -1
  203. ory_client/models/session_activity_datapoint.py +1 -1
  204. ory_client/models/session_authentication_method.py +1 -1
  205. ory_client/models/session_device.py +1 -1
  206. ory_client/models/set_active_project_in_console_body.py +1 -1
  207. ory_client/models/set_custom_domain_body.py +1 -1
  208. ory_client/models/set_event_stream_body.py +1 -1
  209. ory_client/models/set_project.py +1 -1
  210. ory_client/models/set_project_branding_theme_body.py +1 -1
  211. ory_client/models/settings_flow.py +1 -1
  212. ory_client/models/settings_flow_state.py +1 -1
  213. ory_client/models/source_position.py +1 -1
  214. ory_client/models/subject_set.py +1 -1
  215. ory_client/models/subscription.py +1 -1
  216. ory_client/models/successful_code_exchange_response.py +1 -1
  217. ory_client/models/successful_native_login.py +1 -1
  218. ory_client/models/successful_native_registration.py +1 -1
  219. ory_client/models/successful_project_update.py +1 -1
  220. ory_client/models/tax_line_item.py +103 -0
  221. ory_client/models/time_interval.py +104 -0
  222. ory_client/models/token_pagination.py +1 -1
  223. ory_client/models/token_pagination_headers.py +1 -1
  224. ory_client/models/token_pagination_request_parameters.py +1 -1
  225. ory_client/models/token_pagination_response_headers.py +1 -1
  226. ory_client/models/trust_o_auth2_jwt_grant_issuer.py +1 -1
  227. ory_client/models/trusted_o_auth2_jwt_grant_issuer.py +1 -1
  228. ory_client/models/trusted_o_auth2_jwt_grant_json_web_key.py +1 -1
  229. ory_client/models/ui_container.py +1 -1
  230. ory_client/models/ui_node.py +1 -1
  231. ory_client/models/ui_node_anchor_attributes.py +1 -1
  232. ory_client/models/ui_node_attributes.py +1 -1
  233. ory_client/models/ui_node_image_attributes.py +1 -1
  234. ory_client/models/ui_node_input_attributes.py +1 -1
  235. ory_client/models/ui_node_meta.py +1 -1
  236. ory_client/models/ui_node_script_attributes.py +1 -1
  237. ory_client/models/ui_node_text_attributes.py +1 -1
  238. ory_client/models/ui_text.py +1 -1
  239. ory_client/models/update_identity_body.py +1 -1
  240. ory_client/models/update_login_flow_body.py +1 -1
  241. ory_client/models/update_login_flow_with_code_method.py +1 -1
  242. ory_client/models/update_login_flow_with_lookup_secret_method.py +1 -1
  243. ory_client/models/update_login_flow_with_oidc_method.py +1 -1
  244. ory_client/models/update_login_flow_with_passkey_method.py +1 -1
  245. ory_client/models/update_login_flow_with_password_method.py +1 -1
  246. ory_client/models/update_login_flow_with_totp_method.py +1 -1
  247. ory_client/models/update_login_flow_with_web_authn_method.py +1 -1
  248. ory_client/models/update_recovery_flow_body.py +1 -1
  249. ory_client/models/update_recovery_flow_with_code_method.py +1 -1
  250. ory_client/models/update_recovery_flow_with_link_method.py +1 -1
  251. ory_client/models/update_registration_flow_body.py +1 -1
  252. ory_client/models/update_registration_flow_with_code_method.py +1 -1
  253. ory_client/models/update_registration_flow_with_oidc_method.py +1 -1
  254. ory_client/models/update_registration_flow_with_passkey_method.py +1 -1
  255. ory_client/models/update_registration_flow_with_password_method.py +1 -1
  256. ory_client/models/update_registration_flow_with_profile_method.py +1 -1
  257. ory_client/models/update_registration_flow_with_web_authn_method.py +1 -1
  258. ory_client/models/update_settings_flow_body.py +1 -1
  259. ory_client/models/update_settings_flow_with_lookup_method.py +1 -1
  260. ory_client/models/update_settings_flow_with_oidc_method.py +1 -1
  261. ory_client/models/update_settings_flow_with_passkey_method.py +1 -1
  262. ory_client/models/update_settings_flow_with_password_method.py +1 -1
  263. ory_client/models/update_settings_flow_with_profile_method.py +1 -1
  264. ory_client/models/update_settings_flow_with_totp_method.py +1 -1
  265. ory_client/models/update_settings_flow_with_web_authn_method.py +1 -1
  266. ory_client/models/update_subscription_body.py +1 -1
  267. ory_client/models/update_verification_flow_body.py +1 -1
  268. ory_client/models/update_verification_flow_with_code_method.py +1 -1
  269. ory_client/models/update_verification_flow_with_link_method.py +1 -1
  270. ory_client/models/{update_workspace_payload.py → update_workspace_body.py} +5 -5
  271. ory_client/models/usage.py +1 -1
  272. ory_client/models/verifiable_credential_priming_response.py +1 -1
  273. ory_client/models/verifiable_credential_proof.py +1 -1
  274. ory_client/models/verifiable_credential_response.py +1 -1
  275. ory_client/models/verifiable_identity_address.py +1 -1
  276. ory_client/models/verification_flow.py +1 -1
  277. ory_client/models/verification_flow_state.py +1 -1
  278. ory_client/models/version.py +1 -1
  279. ory_client/models/warning.py +1 -1
  280. ory_client/models/workspace.py +9 -2
  281. ory_client/rest.py +1 -1
  282. {ory_client-1.11.7.dist-info → ory_client-1.11.11.dist-info}/METADATA +1 -1
  283. ory_client-1.11.11.dist-info/RECORD +288 -0
  284. ory_client-1.11.7.dist-info/RECORD +0 -278
  285. {ory_client-1.11.7.dist-info → ory_client-1.11.11.dist-info}/LICENSE +0 -0
  286. {ory_client-1.11.7.dist-info → ory_client-1.11.11.dist-info}/WHEEL +0 -0
  287. {ory_client-1.11.7.dist-info → ory_client-1.11.11.dist-info}/top_level.txt +0 -0
@@ -5,7 +5,7 @@
5
5
 
6
6
  Documentation for all public and administrative Ory APIs. Administrative APIs can only be accessed with a valid Personal Access Token. Public APIs are mostly used in browsers.
7
7
 
8
- The version of the OpenAPI document: v1.11.7
8
+ The version of the OpenAPI document: v1.11.11
9
9
  Contact: support@ory.sh
10
10
  Generated by OpenAPI Generator (https://openapi-generator.tech)
11
11
 
@@ -24,9 +24,9 @@ from ory_client.models.project_metadata import ProjectMetadata
24
24
  from typing import Optional, Set
25
25
  from typing_extensions import Self
26
26
 
27
- class ListWorkspaceProjectsResponse(BaseModel):
27
+ class ListWorkspaceProjects(BaseModel):
28
28
  """
29
- ListWorkspaceProjectsResponse
29
+ ListWorkspaceProjects
30
30
  """ # noqa: E501
31
31
  has_next_page: StrictBool
32
32
  next_page: StrictStr
@@ -52,7 +52,7 @@ class ListWorkspaceProjectsResponse(BaseModel):
52
52
 
53
53
  @classmethod
54
54
  def from_json(cls, json_str: str) -> Optional[Self]:
55
- """Create an instance of ListWorkspaceProjectsResponse from a JSON string"""
55
+ """Create an instance of ListWorkspaceProjects from a JSON string"""
56
56
  return cls.from_dict(json.loads(json_str))
57
57
 
58
58
  def to_dict(self) -> Dict[str, Any]:
@@ -91,7 +91,7 @@ class ListWorkspaceProjectsResponse(BaseModel):
91
91
 
92
92
  @classmethod
93
93
  def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]:
94
- """Create an instance of ListWorkspaceProjectsResponse from a dict"""
94
+ """Create an instance of ListWorkspaceProjects from a dict"""
95
95
  if obj is None:
96
96
  return None
97
97
 
@@ -5,7 +5,7 @@
5
5
 
6
6
  Documentation for all public and administrative Ory APIs. Administrative APIs can only be accessed with a valid Personal Access Token. Public APIs are mostly used in browsers.
7
7
 
8
- The version of the OpenAPI document: v1.11.7
8
+ The version of the OpenAPI document: v1.11.11
9
9
  Contact: support@ory.sh
10
10
  Generated by OpenAPI Generator (https://openapi-generator.tech)
11
11
 
@@ -20,17 +20,17 @@ import json
20
20
 
21
21
  from pydantic import BaseModel, ConfigDict, StrictBool, StrictStr
22
22
  from typing import Any, ClassVar, Dict, List
23
- from ory_client.models.workspace_meta import WorkspaceMeta
23
+ from ory_client.models.workspace import Workspace
24
24
  from typing import Optional, Set
25
25
  from typing_extensions import Self
26
26
 
27
- class ListMyWorkspacesResponse(BaseModel):
27
+ class ListWorkspaces(BaseModel):
28
28
  """
29
- ListMyWorkspacesResponse
29
+ ListWorkspaces
30
30
  """ # noqa: E501
31
31
  has_next_page: StrictBool
32
32
  next_page_token: StrictStr
33
- workspaces: List[WorkspaceMeta]
33
+ workspaces: List[Workspace]
34
34
  additional_properties: Dict[str, Any] = {}
35
35
  __properties: ClassVar[List[str]] = ["has_next_page", "next_page_token", "workspaces"]
36
36
 
@@ -52,7 +52,7 @@ class ListMyWorkspacesResponse(BaseModel):
52
52
 
53
53
  @classmethod
54
54
  def from_json(cls, json_str: str) -> Optional[Self]:
55
- """Create an instance of ListMyWorkspacesResponse from a JSON string"""
55
+ """Create an instance of ListWorkspaces from a JSON string"""
56
56
  return cls.from_dict(json.loads(json_str))
57
57
 
58
58
  def to_dict(self) -> Dict[str, Any]:
@@ -91,7 +91,7 @@ class ListMyWorkspacesResponse(BaseModel):
91
91
 
92
92
  @classmethod
93
93
  def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]:
94
- """Create an instance of ListMyWorkspacesResponse from a dict"""
94
+ """Create an instance of ListWorkspaces from a dict"""
95
95
  if obj is None:
96
96
  return None
97
97
 
@@ -101,7 +101,7 @@ class ListMyWorkspacesResponse(BaseModel):
101
101
  _obj = cls.model_validate({
102
102
  "has_next_page": obj.get("has_next_page"),
103
103
  "next_page_token": obj.get("next_page_token"),
104
- "workspaces": [WorkspaceMeta.from_dict(_item) for _item in obj["workspaces"]] if obj.get("workspaces") is not None else None
104
+ "workspaces": [Workspace.from_dict(_item) for _item in obj["workspaces"]] if obj.get("workspaces") is not None else None
105
105
  })
106
106
  # store additional fields in additional_properties
107
107
  for _key in obj.keys():
@@ -5,7 +5,7 @@
5
5
 
6
6
  Documentation for all public and administrative Ory APIs. Administrative APIs can only be accessed with a valid Personal Access Token. Public APIs are mostly used in browsers.
7
7
 
8
- The version of the OpenAPI document: v1.11.7
8
+ The version of the OpenAPI document: v1.11.11
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
  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.
7
7
 
8
- The version of the OpenAPI document: v1.11.7
8
+ The version of the OpenAPI document: v1.11.11
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
  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.
7
7
 
8
- The version of the OpenAPI document: v1.11.7
8
+ The version of the OpenAPI document: v1.11.11
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
  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.
7
7
 
8
- The version of the OpenAPI document: v1.11.7
8
+ The version of the OpenAPI document: v1.11.11
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
  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.
7
7
 
8
- The version of the OpenAPI document: v1.11.7
8
+ The version of the OpenAPI document: v1.11.11
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
  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.
7
7
 
8
- The version of the OpenAPI document: v1.11.7
8
+ The version of the OpenAPI document: v1.11.11
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
  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.
7
7
 
8
- The version of the OpenAPI document: v1.11.7
8
+ The version of the OpenAPI document: v1.11.11
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
  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.
7
7
 
8
- The version of the OpenAPI document: v1.11.7
8
+ The version of the OpenAPI document: v1.11.11
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
  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.
7
7
 
8
- The version of the OpenAPI document: v1.11.7
8
+ The version of the OpenAPI document: v1.11.11
9
9
  Contact: support@ory.sh
10
10
  Generated by OpenAPI Generator (https://openapi-generator.tech)
11
11
 
@@ -0,0 +1,105 @@
1
+ # coding: utf-8
2
+
3
+ """
4
+ Ory APIs
5
+
6
+ Documentation for all public and administrative Ory APIs. Administrative APIs can only be accessed with a valid Personal Access Token. Public APIs are mostly used in browsers.
7
+
8
+ The version of the OpenAPI document: v1.11.11
9
+ Contact: support@ory.sh
10
+ Generated by OpenAPI Generator (https://openapi-generator.tech)
11
+
12
+ Do not edit the class manually.
13
+ """ # noqa: E501
14
+
15
+
16
+ from __future__ import annotations
17
+ import pprint
18
+ import re # noqa: F401
19
+ import json
20
+
21
+ from pydantic import BaseModel, ConfigDict, Field, StrictInt, StrictStr
22
+ from typing import Any, ClassVar, Dict, List, Optional
23
+ from typing import Optional, Set
24
+ from typing_extensions import Self
25
+
26
+ class Money(BaseModel):
27
+ """
28
+ Money
29
+ """ # noqa: E501
30
+ cents: Optional[StrictInt] = Field(default=None, alias="Cents")
31
+ string: Optional[StrictStr] = Field(default=None, alias="String")
32
+ unit: Optional[StrictStr] = Field(default=None, alias="Unit")
33
+ additional_properties: Dict[str, Any] = {}
34
+ __properties: ClassVar[List[str]] = ["Cents", "String", "Unit"]
35
+
36
+ model_config = ConfigDict(
37
+ populate_by_name=True,
38
+ validate_assignment=True,
39
+ protected_namespaces=(),
40
+ )
41
+
42
+
43
+ def to_str(self) -> str:
44
+ """Returns the string representation of the model using alias"""
45
+ return pprint.pformat(self.model_dump(by_alias=True))
46
+
47
+ def to_json(self) -> str:
48
+ """Returns the JSON representation of the model using alias"""
49
+ # TODO: pydantic v2: use .model_dump_json(by_alias=True, exclude_unset=True) instead
50
+ return json.dumps(self.to_dict())
51
+
52
+ @classmethod
53
+ def from_json(cls, json_str: str) -> Optional[Self]:
54
+ """Create an instance of Money from a JSON string"""
55
+ return cls.from_dict(json.loads(json_str))
56
+
57
+ def to_dict(self) -> Dict[str, Any]:
58
+ """Return the dictionary representation of the model using alias.
59
+
60
+ This has the following differences from calling pydantic's
61
+ `self.model_dump(by_alias=True)`:
62
+
63
+ * `None` is only added to the output dict for nullable fields that
64
+ were set at model initialization. Other fields with value `None`
65
+ are ignored.
66
+ * Fields in `self.additional_properties` are added to the output dict.
67
+ """
68
+ excluded_fields: Set[str] = set([
69
+ "additional_properties",
70
+ ])
71
+
72
+ _dict = self.model_dump(
73
+ by_alias=True,
74
+ exclude=excluded_fields,
75
+ exclude_none=True,
76
+ )
77
+ # puts key-value pairs in additional_properties in the top level
78
+ if self.additional_properties is not None:
79
+ for _key, _value in self.additional_properties.items():
80
+ _dict[_key] = _value
81
+
82
+ return _dict
83
+
84
+ @classmethod
85
+ def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]:
86
+ """Create an instance of Money from a dict"""
87
+ if obj is None:
88
+ return None
89
+
90
+ if not isinstance(obj, dict):
91
+ return cls.model_validate(obj)
92
+
93
+ _obj = cls.model_validate({
94
+ "Cents": obj.get("Cents"),
95
+ "String": obj.get("String"),
96
+ "Unit": obj.get("Unit")
97
+ })
98
+ # store additional fields in additional_properties
99
+ for _key in obj.keys():
100
+ if _key not in cls.__properties:
101
+ _obj.additional_properties[_key] = obj.get(_key)
102
+
103
+ return _obj
104
+
105
+
@@ -5,7 +5,7 @@
5
5
 
6
6
  Documentation for all public and administrative Ory APIs. Administrative APIs can only be accessed with a valid Personal Access Token. Public APIs are mostly used in browsers.
7
7
 
8
- The version of the OpenAPI document: v1.11.7
8
+ The version of the OpenAPI document: v1.11.11
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
  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.
7
7
 
8
- The version of the OpenAPI document: v1.11.7
8
+ The version of the OpenAPI document: v1.11.11
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
  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.
7
7
 
8
- The version of the OpenAPI document: v1.11.7
8
+ The version of the OpenAPI document: v1.11.11
9
9
  Contact: support@ory.sh
10
10
  Generated by OpenAPI Generator (https://openapi-generator.tech)
11
11
 
@@ -33,6 +33,7 @@ class NormalizedProject(BaseModel):
33
33
  created_at: datetime = Field(description="The Project's Creation Date")
34
34
  current_revision: NormalizedProjectRevision
35
35
  environment: StrictStr = Field(description="The environment of the project. prod Production stage Staging dev Development")
36
+ home_region: StrictStr = Field(description="The project's data home region. eu-central EUCentral us-east USEast us-west USWest global Global")
36
37
  hosts: List[StrictStr]
37
38
  id: StrictStr = Field(description="The project's ID.")
38
39
  slug: StrictStr = Field(description="The project's slug")
@@ -43,7 +44,7 @@ class NormalizedProject(BaseModel):
43
44
  workspace: Optional[Workspace] = None
44
45
  workspace_id: Optional[StrictStr]
45
46
  additional_properties: Dict[str, Any] = {}
46
- __properties: ClassVar[List[str]] = ["created_at", "current_revision", "environment", "hosts", "id", "slug", "state", "subscription_id", "subscription_plan", "updated_at", "workspace", "workspace_id"]
47
+ __properties: ClassVar[List[str]] = ["created_at", "current_revision", "environment", "home_region", "hosts", "id", "slug", "state", "subscription_id", "subscription_plan", "updated_at", "workspace", "workspace_id"]
47
48
 
48
49
  @field_validator('environment')
49
50
  def environment_validate_enum(cls, value):
@@ -52,6 +53,13 @@ class NormalizedProject(BaseModel):
52
53
  raise ValueError("must be one of enum values ('prod', 'stage', 'dev')")
53
54
  return value
54
55
 
56
+ @field_validator('home_region')
57
+ def home_region_validate_enum(cls, value):
58
+ """Validates the enum"""
59
+ if value not in set(['eu-central', 'us-east', 'us-west', 'global']):
60
+ raise ValueError("must be one of enum values ('eu-central', 'us-east', 'us-west', 'global')")
61
+ return value
62
+
55
63
  @field_validator('state')
56
64
  def state_validate_enum(cls, value):
57
65
  """Validates the enum"""
@@ -94,10 +102,12 @@ class NormalizedProject(BaseModel):
94
102
  * OpenAPI `readOnly` fields are excluded.
95
103
  * OpenAPI `readOnly` fields are excluded.
96
104
  * OpenAPI `readOnly` fields are excluded.
105
+ * OpenAPI `readOnly` fields are excluded.
97
106
  * Fields in `self.additional_properties` are added to the output dict.
98
107
  """
99
108
  excluded_fields: Set[str] = set([
100
109
  "created_at",
110
+ "home_region",
101
111
  "id",
102
112
  "slug",
103
113
  "state",
@@ -151,6 +161,7 @@ class NormalizedProject(BaseModel):
151
161
  "created_at": obj.get("created_at"),
152
162
  "current_revision": NormalizedProjectRevision.from_dict(obj["current_revision"]) if obj.get("current_revision") is not None else None,
153
163
  "environment": obj.get("environment"),
164
+ "home_region": obj.get("home_region"),
154
165
  "hosts": obj.get("hosts"),
155
166
  "id": obj.get("id"),
156
167
  "slug": obj.get("slug"),
@@ -5,7 +5,7 @@
5
5
 
6
6
  Documentation for all public and administrative Ory APIs. Administrative APIs can only be accessed with a valid Personal Access Token. Public APIs are mostly used in browsers.
7
7
 
8
- The version of the OpenAPI document: v1.11.7
8
+ The version of the OpenAPI document: v1.11.11
9
9
  Contact: support@ory.sh
10
10
  Generated by OpenAPI Generator (https://openapi-generator.tech)
11
11
 
@@ -57,7 +57,8 @@ class NormalizedProjectRevision(BaseModel):
57
57
  hydra_secrets_system: Optional[List[StrictStr]] = None
58
58
  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.")
59
59
  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.")
60
- hydra_strategies_access_token: Optional[StrictStr] = Field(default='opaque', description="Defines access token type. jwt is a bad idea, see https://www.ory.sh/docs/hydra/advanced#json-web-tokens This governs the \"strategies.access_token\" setting. opaque Oauth2AccessTokenStrategyOpaque jwt Oauth2AccessTokenStrategyJwt")
60
+ hydra_strategies_access_token: Optional[StrictStr] = Field(default='opaque', description="Defines access token type This governs the \"strategies.access_token\" setting. opaque Oauth2AccessTokenStrategyOpaque jwt Oauth2AccessTokenStrategyJwt")
61
+ hydra_strategies_jwt_scope_claim: Optional[StrictStr] = Field(default='list', description="Define the claim to use as the scope in the access token. This governs the \"strategies.jwt.scope_claim\" setting: list: The scope claim is an array of strings named `scope`: `{ \"scope\": [\"read\", \"write\"] }` string: The scope claim is a space delimited list of strings named `scp`: `{ \"scp\": \"read write\" }` both: The scope claim is both a space delimited list and an array of strings named `scope` and `scp`: `{ \"scope\": [\"read\", \"write\"], \"scp\": \"read write\" }` list OAuth2JWTScopeClaimList string OAuth2JWTScopeClaimString both OAuth2JWTScopeClaimBoth")
61
62
  hydra_strategies_scope: Optional[StrictStr] = Field(default='wildcard', description="Defines how scopes are matched. For more details have a look at https://github.com/ory/fosite#scopes This governs the \"strategies.scope\" setting. exact Oauth2ScopeStrategyExact wildcard Oauth2ScopeStrategyWildcard")
62
63
  hydra_ttl_access_token: Optional[Annotated[str, Field(strict=True)]] = Field(default='30m', description="This governs the \"ttl.access_token\" setting.")
63
64
  hydra_ttl_auth_code: Optional[Annotated[str, Field(strict=True)]] = Field(default='720h', description="Configures how long refresh tokens are valid. Set to -1 for refresh tokens to never expire. This is not recommended! This governs the \"ttl.auth_code\" setting.")
@@ -238,7 +239,7 @@ class NormalizedProjectRevision(BaseModel):
238
239
  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.")
239
240
  updated_at: Optional[datetime] = Field(default=None, description="Last Time Project's Revision was Updated")
240
241
  additional_properties: Dict[str, Any] = {}
241
- __properties: ClassVar[List[str]] = ["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_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_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_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_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_code_config_lifespan", "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_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_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", "serve_admin_cors_allowed_origins", "serve_admin_cors_enabled", "serve_public_cors_allowed_origins", "serve_public_cors_enabled", "strict_security", "updated_at"]
242
+ __properties: ClassVar[List[str]] = ["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_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_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_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_code_config_lifespan", "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_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_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", "serve_admin_cors_allowed_origins", "serve_admin_cors_enabled", "serve_public_cors_allowed_origins", "serve_public_cors_enabled", "strict_security", "updated_at"]
242
243
 
243
244
  @field_validator('hydra_oauth2_grant_jwt_max_ttl')
244
245
  def hydra_oauth2_grant_jwt_max_ttl_validate_regular_expression(cls, value):
@@ -260,6 +261,16 @@ class NormalizedProjectRevision(BaseModel):
260
261
  raise ValueError("must be one of enum values ('opaque', 'jwt')")
261
262
  return value
262
263
 
264
+ @field_validator('hydra_strategies_jwt_scope_claim')
265
+ def hydra_strategies_jwt_scope_claim_validate_enum(cls, value):
266
+ """Validates the enum"""
267
+ if value is None:
268
+ return value
269
+
270
+ if value not in set(['list', 'string', 'both']):
271
+ raise ValueError("must be one of enum values ('list', 'string', 'both')")
272
+ return value
273
+
263
274
  @field_validator('hydra_strategies_scope')
264
275
  def hydra_strategies_scope_validate_enum(cls, value):
265
276
  """Validates the enum"""
@@ -484,6 +495,7 @@ class NormalizedProjectRevision(BaseModel):
484
495
  "hydra_serve_cookies_same_site_legacy_workaround": obj.get("hydra_serve_cookies_same_site_legacy_workaround"),
485
496
  "hydra_serve_cookies_same_site_mode": obj.get("hydra_serve_cookies_same_site_mode"),
486
497
  "hydra_strategies_access_token": obj.get("hydra_strategies_access_token") if obj.get("hydra_strategies_access_token") is not None else 'opaque',
498
+ "hydra_strategies_jwt_scope_claim": obj.get("hydra_strategies_jwt_scope_claim") if obj.get("hydra_strategies_jwt_scope_claim") is not None else 'list',
487
499
  "hydra_strategies_scope": obj.get("hydra_strategies_scope") if obj.get("hydra_strategies_scope") is not None else 'wildcard',
488
500
  "hydra_ttl_access_token": obj.get("hydra_ttl_access_token") if obj.get("hydra_ttl_access_token") is not None else '30m',
489
501
  "hydra_ttl_auth_code": obj.get("hydra_ttl_auth_code") if obj.get("hydra_ttl_auth_code") is not None else '720h',
@@ -5,7 +5,7 @@
5
5
 
6
6
  Documentation for all public and administrative Ory APIs. Administrative APIs can only be accessed with a valid Personal Access Token. Public APIs are mostly used in browsers.
7
7
 
8
- The version of the OpenAPI document: v1.11.7
8
+ The version of the OpenAPI document: v1.11.11
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
  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.
7
7
 
8
- The version of the OpenAPI document: v1.11.7
8
+ The version of the OpenAPI document: v1.11.11
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
  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.
7
7
 
8
- The version of the OpenAPI document: v1.11.7
8
+ The version of the OpenAPI document: v1.11.11
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
  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.
7
7
 
8
- The version of the OpenAPI document: v1.11.7
8
+ The version of the OpenAPI document: v1.11.11
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
  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.
7
7
 
8
- The version of the OpenAPI document: v1.11.7
8
+ The version of the OpenAPI document: v1.11.11
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
  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.
7
7
 
8
- The version of the OpenAPI document: v1.11.7
8
+ The version of the OpenAPI document: v1.11.11
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
  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.
7
7
 
8
- The version of the OpenAPI document: v1.11.7
8
+ The version of the OpenAPI document: v1.11.11
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
  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.
7
7
 
8
- The version of the OpenAPI document: v1.11.7
8
+ The version of the OpenAPI document: v1.11.11
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
  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.
7
7
 
8
- The version of the OpenAPI document: v1.11.7
8
+ The version of the OpenAPI document: v1.11.11
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
  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.
7
7
 
8
- The version of the OpenAPI document: v1.11.7
8
+ The version of the OpenAPI document: v1.11.11
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
  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.
7
7
 
8
- The version of the OpenAPI document: v1.11.7
8
+ The version of the OpenAPI document: v1.11.11
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
  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.
7
7
 
8
- The version of the OpenAPI document: v1.11.7
8
+ The version of the OpenAPI document: v1.11.11
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
  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.
7
7
 
8
- The version of the OpenAPI document: v1.11.7
8
+ The version of the OpenAPI document: v1.11.11
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
  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.
7
7
 
8
- The version of the OpenAPI document: v1.11.7
8
+ The version of the OpenAPI document: v1.11.11
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
  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.
7
7
 
8
- The version of the OpenAPI document: v1.11.7
8
+ The version of the OpenAPI document: v1.11.11
9
9
  Contact: support@ory.sh
10
10
  Generated by OpenAPI Generator (https://openapi-generator.tech)
11
11