auth0-python 5.0.0b0__py3-none-any.whl → 5.2.0__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 (1455) hide show
  1. auth0/authentication/base.py +8 -3
  2. auth0/authentication/rest.py +16 -5
  3. auth0/management/__init__.py +3 -0
  4. auth0/management/actions/__init__.py +3 -2
  5. auth0/management/actions/client.py +54 -14
  6. auth0/management/{attack_protection/brute_force_protection/types → actions/modules}/__init__.py +3 -9
  7. auth0/management/actions/modules/client.py +757 -0
  8. auth0/management/actions/modules/raw_client.py +1635 -0
  9. auth0/management/{types/connection_provisioning_ticket.py → actions/modules/versions/__init__.py} +2 -1
  10. auth0/management/actions/modules/versions/client.py +309 -0
  11. auth0/management/actions/modules/versions/raw_client.py +678 -0
  12. auth0/management/actions/raw_client.py +45 -16
  13. auth0/management/actions/triggers/bindings/raw_client.py +2 -2
  14. auth0/management/actions/versions/client.py +4 -4
  15. auth0/management/actions/versions/raw_client.py +4 -4
  16. auth0/management/attack_protection/__init__.py +0 -8
  17. auth0/management/attack_protection/breached_password_detection/client.py +2 -2
  18. auth0/management/attack_protection/breached_password_detection/raw_client.py +2 -2
  19. auth0/management/attack_protection/brute_force_protection/__init__.py +0 -33
  20. auth0/management/attack_protection/brute_force_protection/client.py +12 -18
  21. auth0/management/attack_protection/brute_force_protection/raw_client.py +12 -18
  22. auth0/management/branding/phone/templates/client.py +6 -4
  23. auth0/management/branding/phone/templates/raw_client.py +6 -4
  24. auth0/management/client.py +44 -0
  25. auth0/management/client_grants/client.py +113 -20
  26. auth0/management/client_grants/raw_client.py +205 -16
  27. auth0/management/clients/client.py +36 -26
  28. auth0/management/clients/credentials/client.py +16 -6
  29. auth0/management/clients/credentials/raw_client.py +16 -6
  30. auth0/management/clients/raw_client.py +38 -28
  31. auth0/management/connections/client.py +46 -38
  32. auth0/management/connections/directory_provisioning/client.py +102 -0
  33. auth0/management/connections/directory_provisioning/raw_client.py +210 -0
  34. auth0/management/connections/keys/client.py +90 -0
  35. auth0/management/connections/keys/raw_client.py +239 -0
  36. auth0/management/connections/raw_client.py +10 -2
  37. auth0/management/connections/scim_configuration/client.py +102 -0
  38. auth0/management/connections/scim_configuration/raw_client.py +213 -0
  39. auth0/management/core/__init__.py +13 -5
  40. auth0/management/core/client_wrapper.py +23 -3
  41. auth0/management/core/http_client.py +191 -44
  42. auth0/management/core/http_response.py +5 -1
  43. auth0/management/core/jsonable_encoder.py +8 -0
  44. auth0/management/core/logging.py +107 -0
  45. auth0/management/core/pydantic_utilities.py +327 -10
  46. auth0/management/custom_domains/client.py +166 -36
  47. auth0/management/custom_domains/raw_client.py +300 -22
  48. auth0/management/device_credentials/client.py +11 -0
  49. auth0/management/device_credentials/raw_client.py +11 -4
  50. auth0/management/email_templates/client.py +12 -12
  51. auth0/management/email_templates/raw_client.py +12 -12
  52. auth0/management/emails/provider/client.py +2 -2
  53. auth0/management/emails/provider/raw_client.py +2 -2
  54. auth0/management/errors/__init__.py +3 -0
  55. auth0/management/errors/precondition_failed_error.py +10 -0
  56. auth0/management/event_streams/client.py +25 -10
  57. auth0/management/event_streams/raw_client.py +33 -12
  58. auth0/management/flows/client.py +5 -4
  59. auth0/management/flows/executions/client.py +11 -4
  60. auth0/management/flows/executions/raw_client.py +11 -4
  61. auth0/management/flows/raw_client.py +9 -8
  62. auth0/management/flows/vault/connections/client.py +4 -0
  63. auth0/management/flows/vault/connections/raw_client.py +2 -2
  64. auth0/management/forms/raw_client.py +2 -2
  65. auth0/management/{tenants/settings/types → groups}/__init__.py +3 -7
  66. auth0/management/groups/client.py +305 -0
  67. auth0/management/{types/connection_strategy_version_enum_azure_ad.py → groups/members/__init__.py} +2 -1
  68. auth0/management/groups/members/client.py +175 -0
  69. auth0/management/groups/members/raw_client.py +268 -0
  70. auth0/management/groups/raw_client.py +485 -0
  71. auth0/management/guardian/factors/phone/client.py +12 -12
  72. auth0/management/guardian/factors/phone/raw_client.py +12 -12
  73. auth0/management/guardian/factors/push_notification/client.py +267 -22
  74. auth0/management/guardian/factors/push_notification/raw_client.py +533 -28
  75. auth0/management/guardian/factors/sms/client.py +12 -12
  76. auth0/management/guardian/factors/sms/raw_client.py +12 -12
  77. auth0/management/hooks/client.py +14 -16
  78. auth0/management/hooks/raw_client.py +16 -18
  79. auth0/management/jobs/users_exports/client.py +4 -4
  80. auth0/management/jobs/users_exports/raw_client.py +4 -4
  81. auth0/management/jobs/verification_email/client.py +4 -4
  82. auth0/management/jobs/verification_email/raw_client.py +4 -4
  83. auth0/management/keys/encryption/raw_client.py +2 -2
  84. auth0/management/log_streams/client.py +2 -0
  85. auth0/management/logs/raw_client.py +2 -2
  86. auth0/management/management_client.py +27 -1
  87. auth0/management/network_acls/raw_client.py +2 -2
  88. auth0/management/organizations/client.py +8 -8
  89. auth0/management/organizations/client_grants/raw_client.py +2 -2
  90. auth0/management/organizations/discovery_domains/client.py +137 -8
  91. auth0/management/organizations/discovery_domains/raw_client.py +227 -4
  92. auth0/management/organizations/enabled_connections/raw_client.py +2 -2
  93. auth0/management/organizations/invitations/client.py +6 -6
  94. auth0/management/organizations/invitations/raw_client.py +8 -8
  95. auth0/management/organizations/members/roles/raw_client.py +2 -2
  96. auth0/management/organizations/raw_client.py +8 -8
  97. auth0/management/prompts/rendering/client.py +11 -9
  98. auth0/management/prompts/rendering/raw_client.py +21 -15
  99. auth0/management/refresh_tokens/client.py +97 -0
  100. auth0/management/refresh_tokens/raw_client.py +221 -0
  101. auth0/management/resource_servers/raw_client.py +2 -2
  102. auth0/management/roles/permissions/raw_client.py +2 -2
  103. auth0/management/roles/raw_client.py +25 -2
  104. auth0/management/rules/client.py +16 -16
  105. auth0/management/rules/raw_client.py +18 -18
  106. auth0/management/rules_configs/client.py +2 -2
  107. auth0/management/rules_configs/raw_client.py +2 -2
  108. auth0/management/self_service_profiles/client.py +4 -4
  109. auth0/management/self_service_profiles/custom_text/client.py +54 -6
  110. auth0/management/self_service_profiles/custom_text/raw_client.py +46 -6
  111. auth0/management/self_service_profiles/raw_client.py +6 -6
  112. auth0/management/self_service_profiles/sso_ticket/client.py +10 -0
  113. auth0/management/self_service_profiles/sso_ticket/raw_client.py +10 -0
  114. auth0/management/sessions/client.py +2 -0
  115. auth0/management/sessions/raw_client.py +2 -0
  116. auth0/management/tenants/__init__.py +2 -6
  117. auth0/management/tenants/settings/__init__.py +0 -30
  118. auth0/management/tenants/settings/client.py +57 -37
  119. auth0/management/tenants/settings/raw_client.py +57 -37
  120. auth0/management/tickets/client.py +16 -16
  121. auth0/management/tickets/raw_client.py +16 -16
  122. auth0/management/token_exchange_profiles/client.py +23 -6
  123. auth0/management/token_exchange_profiles/raw_client.py +13 -6
  124. auth0/management/types/__init__.py +1712 -116
  125. auth0/management/types/action.py +13 -7
  126. auth0/management/types/action_base.py +3 -3
  127. auth0/management/types/action_binding.py +2 -2
  128. auth0/management/types/action_binding_ref.py +1 -1
  129. auth0/management/types/action_binding_with_ref.py +1 -1
  130. auth0/management/types/action_deployed_version.py +12 -6
  131. auth0/management/types/action_execution_result.py +1 -1
  132. auth0/management/types/action_module_action.py +43 -0
  133. auth0/management/types/action_module_dependency.py +27 -0
  134. auth0/management/types/action_module_dependency_request.py +27 -0
  135. auth0/management/types/action_module_list_item.py +70 -0
  136. auth0/management/types/action_module_reference.py +41 -0
  137. auth0/management/types/action_module_secret.py +28 -0
  138. auth0/management/types/{deploy_action_version_request_body_params.py → action_module_secret_request.py} +8 -3
  139. auth0/management/types/action_module_version.py +55 -0
  140. auth0/management/types/action_module_version_reference.py +54 -0
  141. auth0/management/types/action_secret_request.py +2 -2
  142. auth0/management/types/action_secret_response.py +1 -1
  143. auth0/management/types/action_version.py +12 -6
  144. auth0/management/types/acul_configs_item.py +21 -7
  145. auth0/management/types/acul_context_configuration.py +1 -1
  146. auth0/management/types/assessors_type_enum.py +1 -1
  147. auth0/management/types/breached_password_detection_stage.py +6 -2
  148. auth0/management/types/{get_brute_force_settings_response_content_mode.py → brute_force_protection_mode_enum.py} +1 -1
  149. auth0/management/types/brute_force_protection_shields_enum.py +5 -0
  150. auth0/management/types/certificate_subject_dn_credential.py +34 -0
  151. auth0/management/types/certificate_subject_dn_credential_type_enum.py +5 -0
  152. auth0/management/types/change_password_ticket_identity.py +2 -2
  153. auth0/management/types/change_password_ticket_response_content.py +1 -3
  154. auth0/management/types/client.py +24 -25
  155. auth0/management/types/client_addon_azure_blob.py +34 -35
  156. auth0/management/types/client_addon_azure_sb.py +17 -21
  157. auth0/management/types/client_addon_layer.py +15 -15
  158. auth0/management/types/client_addon_salesforce_api.py +5 -7
  159. auth0/management/types/client_addon_salesforce_sandbox_api.py +5 -7
  160. auth0/management/types/client_addon_saml.py +25 -13
  161. auth0/management/types/client_addon_sapapi.py +28 -26
  162. auth0/management/types/client_addon_zendesk.py +8 -6
  163. auth0/management/types/client_addons.py +3 -3
  164. auth0/management/types/client_async_approval_notifications_channels_api_patch_configuration.py +3 -1
  165. auth0/management/types/client_authentication_method.py +2 -2
  166. auth0/management/types/{private_key_jwt.py → client_authentication_method_private_key_jwt.py} +3 -3
  167. auth0/management/types/{private_key_jwt_credentials.py → client_authentication_method_private_key_jwt_credentials.py} +1 -1
  168. auth0/management/types/client_authentication_method_self_signed_tls_client_auth.py +4 -5
  169. auth0/management/types/client_authentication_method_self_signed_tls_client_auth_credentials.py +7 -0
  170. auth0/management/types/client_authentication_method_tls_client_auth.py +2 -5
  171. auth0/management/types/client_authentication_method_tls_client_auth_credentials.py +7 -0
  172. auth0/management/types/client_create_authentication_method.py +8 -6
  173. auth0/management/types/client_create_authentication_method_private_key_jwt.py +26 -0
  174. auth0/management/types/client_create_authentication_method_private_key_jwt_credentials.py +7 -0
  175. auth0/management/types/client_create_authentication_method_tls_client_auth.py +26 -0
  176. auth0/management/types/client_create_authentication_method_tls_client_auth_credentials.py +7 -0
  177. auth0/management/types/client_credential.py +8 -10
  178. auth0/management/types/client_default_organization_flows_enum.py +1 -1
  179. auth0/management/types/client_grant_response_content.py +6 -1
  180. auth0/management/types/client_jwt_configuration.py +2 -2
  181. auth0/management/types/client_mobile_android.py +8 -6
  182. auth0/management/types/client_mobilei_os.py +2 -2
  183. auth0/management/types/client_refresh_token_configuration.py +8 -2
  184. auth0/management/types/client_refresh_token_policy.py +27 -0
  185. auth0/management/types/client_session_transfer_configuration.py +9 -9
  186. auth0/management/types/client_signed_request_object_with_credential_id.py +1 -1
  187. auth0/management/types/client_signed_request_object_with_public_key.py +1 -1
  188. auth0/management/types/client_signing_key.py +7 -7
  189. auth0/management/types/client_signing_keys.py +1 -1
  190. auth0/management/types/client_token_exchange_type_enum.py +3 -1
  191. auth0/management/types/connected_account.py +1 -1
  192. auth0/management/types/connected_account_access_type_enum.py +1 -1
  193. auth0/management/types/connection_access_token_urlo_auth_1.py +5 -0
  194. auth0/management/types/connection_admin_access_token_expires_in_google_apps.py +5 -0
  195. auth0/management/types/connection_admin_access_token_google_apps.py +3 -0
  196. auth0/management/types/connection_admin_refresh_token_google_apps.py +3 -0
  197. auth0/management/types/connection_agent_ipad.py +3 -0
  198. auth0/management/types/connection_agent_mode_ad.py +3 -0
  199. auth0/management/types/connection_agent_version_ad.py +3 -0
  200. auth0/management/types/connection_api_behavior_enum.py +5 -0
  201. auth0/management/types/connection_api_enable_groups.py +3 -0
  202. auth0/management/types/connection_api_enable_groups_google_apps.py +5 -0
  203. auth0/management/types/connection_api_enable_users.py +3 -0
  204. auth0/management/types/connection_api_enable_users_google_apps.py +5 -0
  205. auth0/management/types/connection_attribute_identifier.py +3 -0
  206. auth0/management/types/connection_attribute_map_oidc.py +1 -1
  207. auth0/management/types/connection_auth_params_email.py +3 -0
  208. auth0/management/types/connection_authentication_methods.py +4 -0
  209. auth0/management/types/connection_base_url_exact.py +5 -0
  210. auth0/management/types/connection_calculated_thumbprint_saml.py +5 -0
  211. auth0/management/types/{acul_use_page_template.py → connection_certs_ad.py} +1 -1
  212. auth0/management/types/connection_client_id_amazon.py +5 -0
  213. auth0/management/types/connection_client_id_bitbucket.py +3 -0
  214. auth0/management/types/connection_client_id_exact.py +5 -0
  215. auth0/management/types/connection_client_id_facebook.py +5 -0
  216. auth0/management/types/connection_client_id_google_apps.py +5 -0
  217. auth0/management/types/connection_client_id_google_o_auth_2.py +1 -3
  218. auth0/management/types/connection_client_id_line.py +3 -0
  219. auth0/management/types/connection_client_id_linkedin.py +3 -0
  220. auth0/management/types/connection_client_id_o_auth_1.py +5 -0
  221. auth0/management/types/connection_client_id_paypal.py +5 -0
  222. auth0/management/types/connection_client_id_salesforce.py +3 -0
  223. auth0/management/types/connection_client_id_windows_live.py +3 -0
  224. auth0/management/types/connection_client_protocol_saml.py +7 -0
  225. auth0/management/types/connection_client_secret_amazon.py +5 -0
  226. auth0/management/types/connection_client_secret_bitbucket.py +5 -0
  227. auth0/management/types/connection_client_secret_exact.py +5 -0
  228. auth0/management/types/connection_client_secret_facebook.py +5 -0
  229. auth0/management/types/connection_client_secret_google_apps.py +5 -0
  230. auth0/management/types/connection_client_secret_google_o_auth_2.py +1 -3
  231. auth0/management/types/connection_client_secret_line.py +3 -0
  232. auth0/management/types/connection_client_secret_linkedin.py +3 -0
  233. auth0/management/types/connection_client_secret_o_auth_1.py +5 -0
  234. auth0/management/types/connection_client_secret_paypal.py +5 -0
  235. auth0/management/types/connection_client_secret_salesforce.py +3 -0
  236. auth0/management/types/connection_client_secret_windows_live.py +5 -0
  237. auth0/management/types/connection_common.py +0 -8
  238. auth0/management/types/connection_community_base_url_salesforce.py +5 -0
  239. auth0/management/types/connection_connected_accounts_purpose_xaa.py +24 -0
  240. auth0/management/types/connection_connection_settings.py +1 -1
  241. auth0/management/types/connection_debug_saml.py +3 -0
  242. auth0/management/types/connection_decryption_key_saml.py +7 -0
  243. auth0/management/types/connection_decryption_key_saml_cert.py +31 -0
  244. auth0/management/types/connection_destination_url_saml.py +5 -0
  245. auth0/management/types/connection_digest_algorithm_enum_saml.py +5 -0
  246. auth0/management/types/connection_digest_algorithm_saml.py +5 -0
  247. auth0/management/types/connection_disable_signup_sms.py +5 -0
  248. auth0/management/types/connection_discovery_url.py +3 -1
  249. auth0/management/types/connection_domain_aliases.py +7 -0
  250. auth0/management/types/{connection_domain_aliases_one.py → connection_domain_aliases_ad.py} +1 -1
  251. auth0/management/types/connection_domain_aliases_items_one.py +3 -0
  252. auth0/management/types/connection_domain_aliases_saml.py +7 -0
  253. auth0/management/types/connection_domain_google_apps.py +3 -0
  254. auth0/management/types/{connection_options_evernote_common.py → connection_dpop_signing_alg_values_supported.py} +1 -1
  255. auth0/management/types/connection_email_body_email.py +3 -0
  256. auth0/management/types/connection_email_email.py +37 -0
  257. auth0/management/types/{acul_head_tags.py → connection_email_email_syntax.py} +1 -3
  258. auth0/management/types/connection_email_from_email.py +3 -0
  259. auth0/management/types/connection_email_otp_authentication_method.py +26 -0
  260. auth0/management/types/connection_email_subject_email.py +3 -0
  261. auth0/management/types/connection_entity_id_saml.py +3 -0
  262. auth0/management/types/connection_ext_agreed_terms_google_apps.py +5 -0
  263. auth0/management/types/connection_ext_groups_azure_ad.py +5 -0
  264. auth0/management/types/connection_ext_groups_google_apps.py +5 -0
  265. auth0/management/types/connection_ext_is_admin_google_apps.py +5 -0
  266. auth0/management/types/connection_ext_is_suspended_google_apps.py +5 -0
  267. auth0/management/types/connection_fields_map_saml.py +7 -0
  268. auth0/management/types/connection_fields_map_saml_value.py +5 -0
  269. auth0/management/types/connection_for_list.py +3 -3
  270. auth0/management/types/connection_forward_req_info_sms.py +3 -0
  271. auth0/management/types/connection_freeform_scopes_amazon.py +5 -0
  272. auth0/management/types/connection_freeform_scopes_linkedin.py +5 -0
  273. auth0/management/types/connection_freeform_scopes_paypal.py +5 -0
  274. auth0/management/types/connection_freeform_scopes_salesforce.py +5 -0
  275. auth0/management/types/connection_freeform_scopes_windows_live.py +5 -0
  276. auth0/management/types/connection_from_sms.py +3 -0
  277. auth0/management/types/connection_gateway_authentication.py +6 -5
  278. auth0/management/types/connection_gateway_authentication_audience_sms.py +3 -0
  279. auth0/management/types/connection_gateway_authentication_method_sms.py +3 -0
  280. auth0/management/types/connection_gateway_authentication_sms.py +40 -0
  281. auth0/management/types/connection_gateway_authentication_subject_sms.py +3 -0
  282. auth0/management/types/connection_gateway_url_sms.py +5 -0
  283. auth0/management/types/connection_global_token_revocation_jwt_iss_saml.py +3 -0
  284. auth0/management/types/connection_global_token_revocation_jwt_sub_saml.py +3 -0
  285. auth0/management/types/connection_handle_login_from_social_google_apps.py +3 -0
  286. auth0/management/types/connection_https_url_with_http_fallback_2048.py +5 -0
  287. auth0/management/types/connection_https_url_with_http_fallback_255.py +5 -0
  288. auth0/management/types/connection_icon_url_adfs.py +5 -0
  289. auth0/management/types/connection_icon_url_google_apps.py +5 -0
  290. auth0/management/types/connection_icon_url_saml.py +5 -0
  291. auth0/management/types/connection_id_token_signed_response_alg_enum.py +3 -1
  292. auth0/management/types/{acul_default_head_tags_disabled.py → connection_ips_ad.py} +1 -1
  293. auth0/management/types/connection_issuer.py +2 -2
  294. auth0/management/types/connection_jwks_uri.py +2 -2
  295. auth0/management/types/connection_key.py +5 -9
  296. auth0/management/types/connection_messaging_service_sid_sms.py +3 -0
  297. auth0/management/types/connection_metadata_url_saml.py +5 -0
  298. auth0/management/types/connection_metadata_xml.py +3 -0
  299. auth0/management/types/connection_metadata_xml_adfs.py +5 -0
  300. auth0/management/types/connection_metadata_xml_saml.py +5 -0
  301. auth0/management/types/connection_op_policy_uri.py +2 -2
  302. auth0/management/types/connection_op_tos_uri.py +2 -2
  303. auth0/management/types/connection_options_ad.py +82 -1
  304. auth0/management/types/connection_options_adfs.py +65 -1
  305. auth0/management/types/connection_options_amazon.py +42 -2
  306. auth0/management/types/connection_options_aol.py +18 -1
  307. auth0/management/types/connection_options_auth_0.py +9 -3
  308. auth0/management/types/connection_options_auth_0_oidc.py +22 -1
  309. auth0/management/types/connection_options_azure_ad.py +16 -13
  310. auth0/management/types/connection_options_baidu.py +18 -1
  311. auth0/management/types/connection_options_bitbucket.py +31 -2
  312. auth0/management/types/connection_options_bitly.py +18 -1
  313. auth0/management/types/connection_options_box.py +18 -1
  314. auth0/management/types/connection_options_client_id_github.py +3 -0
  315. auth0/management/types/connection_options_client_id_twitter.py +3 -0
  316. auth0/management/types/connection_options_client_secret_github.py +3 -0
  317. auth0/management/types/connection_options_client_secret_twitter.py +3 -0
  318. auth0/management/types/connection_options_common.py +1 -1
  319. auth0/management/types/connection_options_common_oidc.py +4 -4
  320. auth0/management/types/connection_options_common_saml.py +80 -0
  321. auth0/management/types/connection_options_daccount.py +18 -1
  322. auth0/management/types/connection_options_deflate_saml.py +3 -0
  323. auth0/management/types/connection_options_dropbox.py +18 -1
  324. auth0/management/types/connection_options_dwolla.py +18 -1
  325. auth0/management/types/connection_options_email.py +40 -1
  326. auth0/management/types/connection_options_evernote.py +19 -2
  327. auth0/management/types/connection_options_exact.py +39 -2
  328. auth0/management/types/connection_options_facebook.py +235 -1
  329. auth0/management/types/connection_options_fitbit.py +18 -1
  330. auth0/management/types/connection_options_flickr.py +18 -1
  331. auth0/management/types/connection_options_freeform_scopes_github.py +5 -0
  332. auth0/management/types/connection_options_git_hub.py +130 -1
  333. auth0/management/types/connection_options_google_apps.py +84 -1
  334. auth0/management/types/connection_options_google_o_auth_2.py +8 -8
  335. auth0/management/types/connection_options_idp_initiated_client_protocol_enum_saml.py +5 -0
  336. auth0/management/types/connection_options_idpinitiated_saml.py +38 -0
  337. auth0/management/types/connection_options_instagram.py +18 -1
  338. auth0/management/types/connection_options_line.py +40 -2
  339. auth0/management/types/connection_options_linkedin.py +66 -1
  340. auth0/management/types/connection_options_o_auth_1.py +53 -1
  341. auth0/management/types/connection_options_o_auth_1_common.py +33 -0
  342. auth0/management/types/connection_options_o_auth_2.py +28 -14
  343. auth0/management/types/connection_options_o_auth_2_common.py +3 -1
  344. auth0/management/types/connection_options_office_365.py +22 -1
  345. auth0/management/types/connection_options_oidc_metadata.py +2 -0
  346. auth0/management/types/connection_options_okta.py +1 -1
  347. auth0/management/types/connection_options_paypal.py +49 -2
  348. auth0/management/types/connection_options_ping_federate.py +34 -1
  349. auth0/management/types/connection_options_planning_center.py +18 -1
  350. auth0/management/types/connection_options_protocol_enum_twitter.py +5 -0
  351. auth0/management/types/connection_options_salesforce.py +37 -2
  352. auth0/management/types/connection_options_salesforce_community.py +22 -2
  353. auth0/management/types/connection_options_saml.py +88 -1
  354. auth0/management/types/connection_options_scope_github.py +5 -0
  355. auth0/management/types/connection_options_scope_twitter.py +5 -0
  356. auth0/management/types/connection_options_sharepoint.py +18 -1
  357. auth0/management/types/connection_options_shop.py +18 -1
  358. auth0/management/types/connection_options_shopify.py +18 -1
  359. auth0/management/types/connection_options_sms.py +57 -1
  360. auth0/management/types/connection_options_soundcloud.py +18 -1
  361. auth0/management/types/connection_options_thirty_seven_signals.py +18 -1
  362. auth0/management/types/connection_options_twitter.py +52 -1
  363. auth0/management/types/connection_options_untappd.py +18 -1
  364. auth0/management/types/connection_options_vkontakte.py +18 -1
  365. auth0/management/types/connection_options_weibo.py +18 -1
  366. auth0/management/types/connection_options_windows_live.py +322 -1
  367. auth0/management/types/connection_options_wordpress.py +18 -1
  368. auth0/management/types/connection_options_yahoo.py +18 -1
  369. auth0/management/types/connection_options_yammer.py +18 -1
  370. auth0/management/types/connection_options_yandex.py +18 -1
  371. auth0/management/types/connection_password_authentication_method.py +5 -0
  372. auth0/management/types/connection_phone_otp_authentication_method.py +26 -0
  373. auth0/management/types/connection_ping_federate_base_url.py +5 -0
  374. auth0/management/types/connection_ping_federate_base_url_ping_federate.py +5 -0
  375. auth0/management/types/connection_profile_bitbucket.py +3 -0
  376. auth0/management/types/connection_profile_strategy_overrides.py +3 -1
  377. auth0/management/types/connection_properties_options.py +14 -7
  378. auth0/management/types/connection_protocol_binding_enum_saml.py +10 -0
  379. auth0/management/types/connection_protocol_binding_saml.py +5 -0
  380. auth0/management/types/connection_provider_enum_sms.py +5 -0
  381. auth0/management/types/connection_provider_sms.py +5 -0
  382. auth0/management/types/connection_purposes.py +26 -0
  383. auth0/management/types/connection_recipient_url_saml.py +5 -0
  384. auth0/management/types/connection_registration_endpoint.py +2 -2
  385. auth0/management/types/connection_request_template_saml.py +3 -0
  386. auth0/management/types/connection_request_token_urlo_auth_1.py +5 -0
  387. auth0/management/types/connection_response_common.py +2 -0
  388. auth0/management/types/connection_response_content_ad.py +6 -2
  389. auth0/management/types/connection_response_content_ad_strategy.py +5 -0
  390. auth0/management/types/connection_response_content_adfs.py +8 -2
  391. auth0/management/types/connection_response_content_adfs_strategy.py +5 -0
  392. auth0/management/types/connection_response_content_amazon.py +4 -2
  393. auth0/management/types/connection_response_content_amazon_strategy.py +5 -0
  394. auth0/management/types/connection_response_content_aol.py +4 -2
  395. auth0/management/types/connection_response_content_aol_strategy.py +5 -0
  396. auth0/management/types/connection_response_content_apple.py +4 -2
  397. auth0/management/types/connection_response_content_apple_strategy.py +5 -0
  398. auth0/management/types/connection_response_content_auth_0.py +4 -2
  399. auth0/management/types/connection_response_content_auth_0_oidc.py +4 -2
  400. auth0/management/types/connection_response_content_auth_0_oidc_strategy.py +5 -0
  401. auth0/management/types/connection_response_content_auth_0_strategy.py +5 -0
  402. auth0/management/types/connection_response_content_azure_ad.py +6 -6
  403. auth0/management/types/connection_response_content_azure_ad_strategy.py +5 -0
  404. auth0/management/types/connection_response_content_baidu.py +4 -2
  405. auth0/management/types/connection_response_content_baidu_strategy.py +5 -0
  406. auth0/management/types/connection_response_content_bitbucket.py +4 -2
  407. auth0/management/types/connection_response_content_bitbucket_strategy.py +5 -0
  408. auth0/management/types/connection_response_content_bitly.py +4 -2
  409. auth0/management/types/connection_response_content_bitly_strategy.py +5 -0
  410. auth0/management/types/connection_response_content_box.py +4 -2
  411. auth0/management/types/connection_response_content_box_strategy.py +5 -0
  412. auth0/management/types/connection_response_content_custom.py +6 -2
  413. auth0/management/types/connection_response_content_custom_strategy.py +5 -0
  414. auth0/management/types/connection_response_content_daccount.py +4 -2
  415. auth0/management/types/connection_response_content_daccount_strategy.py +5 -0
  416. auth0/management/types/connection_response_content_dropbox.py +4 -2
  417. auth0/management/types/connection_response_content_dropbox_strategy.py +5 -0
  418. auth0/management/types/connection_response_content_dwolla.py +4 -2
  419. auth0/management/types/connection_response_content_dwolla_strategy.py +5 -0
  420. auth0/management/types/connection_response_content_email.py +4 -2
  421. auth0/management/types/connection_response_content_email_strategy.py +5 -0
  422. auth0/management/types/connection_response_content_evernote.py +4 -2
  423. auth0/management/types/connection_response_content_evernote_sandbox.py +6 -4
  424. auth0/management/types/connection_response_content_evernote_sandbox_strategy.py +5 -0
  425. auth0/management/types/connection_response_content_evernote_strategy.py +5 -0
  426. auth0/management/types/connection_response_content_exact.py +4 -2
  427. auth0/management/types/connection_response_content_exact_strategy.py +5 -0
  428. auth0/management/types/connection_response_content_facebook.py +4 -2
  429. auth0/management/types/connection_response_content_facebook_strategy.py +5 -0
  430. auth0/management/types/connection_response_content_fitbit.py +4 -2
  431. auth0/management/types/connection_response_content_fitbit_strategy.py +5 -0
  432. auth0/management/types/connection_response_content_flickr.py +4 -2
  433. auth0/management/types/connection_response_content_flickr_strategy.py +5 -0
  434. auth0/management/types/connection_response_content_git_hub.py +4 -2
  435. auth0/management/types/connection_response_content_git_hub_strategy.py +5 -0
  436. auth0/management/types/connection_response_content_google_apps.py +8 -2
  437. auth0/management/types/connection_response_content_google_apps_strategy.py +5 -0
  438. auth0/management/types/connection_response_content_google_o_auth_2.py +4 -2
  439. auth0/management/types/connection_response_content_google_o_auth_2_strategy.py +5 -0
  440. auth0/management/types/connection_response_content_instagram.py +4 -2
  441. auth0/management/types/connection_response_content_instagram_strategy.py +5 -0
  442. auth0/management/types/connection_response_content_ip.py +6 -2
  443. auth0/management/types/connection_response_content_ip_strategy.py +5 -0
  444. auth0/management/types/connection_response_content_line.py +4 -2
  445. auth0/management/types/connection_response_content_line_strategy.py +5 -0
  446. auth0/management/types/connection_response_content_linkedin.py +4 -2
  447. auth0/management/types/connection_response_content_linkedin_strategy.py +5 -0
  448. auth0/management/types/connection_response_content_o_auth_1.py +4 -2
  449. auth0/management/types/connection_response_content_o_auth_1_strategy.py +5 -0
  450. auth0/management/types/connection_response_content_o_auth_2.py +4 -2
  451. auth0/management/types/connection_response_content_o_auth_2_strategy.py +5 -0
  452. auth0/management/types/connection_response_content_office_365.py +8 -2
  453. auth0/management/types/connection_response_content_office_365_strategy.py +5 -0
  454. auth0/management/types/connection_response_content_oidc.py +8 -1
  455. auth0/management/types/connection_response_content_oidc_strategy.py +5 -0
  456. auth0/management/types/connection_response_content_okta.py +6 -2
  457. auth0/management/types/connection_response_content_okta_strategy.py +5 -0
  458. auth0/management/types/connection_response_content_paypal.py +4 -2
  459. auth0/management/types/connection_response_content_paypal_sandbox.py +6 -4
  460. auth0/management/types/connection_response_content_paypal_sandbox_strategy.py +5 -0
  461. auth0/management/types/connection_response_content_paypal_strategy.py +5 -0
  462. auth0/management/types/connection_response_content_ping_federate.py +8 -2
  463. auth0/management/types/connection_response_content_ping_federate_strategy.py +5 -0
  464. auth0/management/types/connection_response_content_planning_center.py +4 -2
  465. auth0/management/types/connection_response_content_planning_center_strategy.py +5 -0
  466. auth0/management/types/connection_response_content_salesforce.py +4 -2
  467. auth0/management/types/connection_response_content_salesforce_community.py +6 -2
  468. auth0/management/types/connection_response_content_salesforce_community_strategy.py +5 -0
  469. auth0/management/types/connection_response_content_salesforce_sandbox.py +6 -4
  470. auth0/management/types/connection_response_content_salesforce_sandbox_strategy.py +5 -0
  471. auth0/management/types/connection_response_content_salesforce_strategy.py +5 -0
  472. auth0/management/types/connection_response_content_saml.py +8 -2
  473. auth0/management/types/connection_response_content_saml_strategy.py +5 -0
  474. auth0/management/types/connection_response_content_sharepoint.py +6 -2
  475. auth0/management/types/connection_response_content_sharepoint_strategy.py +5 -0
  476. auth0/management/types/connection_response_content_shop.py +4 -2
  477. auth0/management/types/connection_response_content_shop_strategy.py +5 -0
  478. auth0/management/types/connection_response_content_shopify.py +4 -2
  479. auth0/management/types/connection_response_content_shopify_strategy.py +5 -0
  480. auth0/management/types/connection_response_content_sms.py +4 -2
  481. auth0/management/types/connection_response_content_sms_strategy.py +5 -0
  482. auth0/management/types/connection_response_content_soundcloud.py +4 -2
  483. auth0/management/types/connection_response_content_soundcloud_strategy.py +5 -0
  484. auth0/management/types/connection_response_content_thirty_seven_signals.py +6 -2
  485. auth0/management/types/connection_response_content_thirty_seven_signals_strategy.py +5 -0
  486. auth0/management/types/connection_response_content_twitter.py +4 -2
  487. auth0/management/types/connection_response_content_twitter_strategy.py +5 -0
  488. auth0/management/types/connection_response_content_untappd.py +4 -2
  489. auth0/management/types/connection_response_content_untappd_strategy.py +5 -0
  490. auth0/management/types/connection_response_content_vkontakte.py +4 -2
  491. auth0/management/types/connection_response_content_vkontakte_strategy.py +5 -0
  492. auth0/management/types/connection_response_content_weibo.py +4 -2
  493. auth0/management/types/connection_response_content_weibo_strategy.py +5 -0
  494. auth0/management/types/connection_response_content_windows_live.py +4 -2
  495. auth0/management/types/connection_response_content_windows_live_strategy.py +5 -0
  496. auth0/management/types/connection_response_content_wordpress.py +4 -2
  497. auth0/management/types/connection_response_content_wordpress_strategy.py +5 -0
  498. auth0/management/types/connection_response_content_yahoo.py +4 -2
  499. auth0/management/types/connection_response_content_yahoo_strategy.py +5 -0
  500. auth0/management/types/connection_response_content_yammer.py +4 -2
  501. auth0/management/types/connection_response_content_yammer_strategy.py +5 -0
  502. auth0/management/types/connection_response_content_yandex.py +4 -2
  503. auth0/management/types/connection_response_content_yandex_strategy.py +5 -0
  504. auth0/management/types/connection_scope_amazon.py +5 -0
  505. auth0/management/types/connection_scope_array_facebook.py +7 -0
  506. auth0/management/types/connection_scope_array_windows_live.py +5 -0
  507. auth0/management/types/connection_scope_facebook.py +3 -0
  508. auth0/management/types/connection_scope_google_apps.py +7 -0
  509. auth0/management/types/connection_scope_item_google_apps.py +3 -0
  510. auth0/management/types/connection_scope_linkedin.py +5 -0
  511. auth0/management/types/connection_scope_paypal.py +5 -0
  512. auth0/management/types/connection_scope_salesforce.py +5 -0
  513. auth0/management/types/connection_scripts_o_auth_1.py +32 -0
  514. auth0/management/types/connection_scripts_o_auth_2.py +16 -13
  515. auth0/management/types/connection_service_documentation.py +2 -2
  516. auth0/management/types/connection_sha_1_thumbprint.py +3 -0
  517. auth0/management/types/connection_sign_in_endpoint_ad.py +5 -0
  518. auth0/management/types/connection_sign_in_endpoint_adfs.py +5 -0
  519. auth0/management/types/connection_sign_in_endpoint_saml.py +5 -0
  520. auth0/management/types/connection_sign_out_endpoint_saml.py +5 -0
  521. auth0/management/types/connection_sign_saml_request_saml.py +3 -0
  522. auth0/management/types/connection_signature_algorithm_enum_saml.py +5 -0
  523. auth0/management/types/connection_signature_algorithm_saml.py +5 -0
  524. auth0/management/types/connection_signature_method_o_auth_1.py +5 -0
  525. auth0/management/types/connection_signing_cert_saml.py +5 -0
  526. auth0/management/types/connection_signing_certificate_der_saml.py +3 -0
  527. auth0/management/types/connection_signing_certificate_pem_ping_federate.py +3 -0
  528. auth0/management/types/connection_signing_certificate_pem_saml.py +3 -0
  529. auth0/management/types/connection_signing_key_saml.py +31 -0
  530. auth0/management/types/connection_signup_behavior_enum.py +5 -0
  531. auth0/management/types/connection_strategy_version_enum_linkedin.py +3 -0
  532. auth0/management/types/connection_strategy_version_enum_windows_live.py +3 -0
  533. auth0/management/types/connection_template_sms.py +3 -0
  534. auth0/management/types/connection_template_syntax_enum_sms.py +5 -0
  535. auth0/management/types/connection_tenant_domain.py +1 -3
  536. auth0/management/types/connection_tenant_domain_ad.py +3 -0
  537. auth0/management/types/connection_tenant_domain_google_apps.py +5 -0
  538. auth0/management/types/connection_tenant_domain_saml.py +5 -0
  539. auth0/management/types/connection_thumbprints_ad.py +7 -0
  540. auth0/management/types/connection_thumbprints_saml.py +7 -0
  541. auth0/management/types/connection_token_endpoint.py +2 -2
  542. auth0/management/types/connection_token_endpoint_auth_signing_alg_enum.py +3 -1
  543. auth0/management/types/connection_totp_email.py +22 -0
  544. auth0/management/types/connection_totp_length_email.py +5 -0
  545. auth0/management/types/connection_totp_length_passwordless.py +3 -0
  546. auth0/management/types/connection_totp_length_sms.py +5 -0
  547. auth0/management/types/connection_totp_sms.py +26 -0
  548. auth0/management/types/connection_totp_time_step_email.py +5 -0
  549. auth0/management/types/connection_totp_time_step_passwordless.py +3 -0
  550. auth0/management/types/connection_totp_time_step_sms.py +5 -0
  551. auth0/management/types/connection_twilio_sid_sms.py +3 -0
  552. auth0/management/types/connection_twilio_token_sms.py +3 -0
  553. auth0/management/types/connection_type_enum_okta.py +1 -1
  554. auth0/management/types/{connection_upstream_params_oidc.py → connection_upstream_params_adfs.py} +1 -1
  555. auth0/management/types/connection_upstream_params_facebook.py +7 -0
  556. auth0/management/types/connection_user_authorization_urlo_auth_1.py +5 -0
  557. auth0/management/types/connection_user_id_attribute_saml.py +3 -0
  558. auth0/management/types/connection_userinfo_endpoint.py +2 -2
  559. auth0/management/types/create_action_module_response_content.py +73 -0
  560. auth0/management/types/create_action_module_version_response_content.py +55 -0
  561. auth0/management/types/create_action_response_content.py +13 -7
  562. auth0/management/types/create_branding_theme_response_content.py +6 -10
  563. auth0/management/types/create_client_authentication_method_self_signed_tls_client_auth.py +26 -0
  564. auth0/management/types/create_client_authentication_method_self_signed_tls_client_auth_credentials.py +7 -0
  565. auth0/management/types/create_client_grant_response_content.py +6 -1
  566. auth0/management/types/create_client_response_content.py +24 -25
  567. auth0/management/types/create_connection_request_content_ad.py +2 -1
  568. auth0/management/types/create_connection_request_content_ad_strategy.py +5 -0
  569. auth0/management/types/create_connection_request_content_adfs.py +4 -1
  570. auth0/management/types/create_connection_request_content_adfs_strategy.py +5 -0
  571. auth0/management/types/create_connection_request_content_amazon.py +2 -1
  572. auth0/management/types/create_connection_request_content_amazon_strategy.py +5 -0
  573. auth0/management/types/create_connection_request_content_aol.py +2 -1
  574. auth0/management/types/create_connection_request_content_aol_strategy.py +5 -0
  575. auth0/management/types/create_connection_request_content_apple.py +2 -1
  576. auth0/management/types/create_connection_request_content_apple_strategy.py +5 -0
  577. auth0/management/types/create_connection_request_content_auth_0.py +4 -1
  578. auth0/management/types/create_connection_request_content_auth_0_oidc.py +2 -1
  579. auth0/management/types/create_connection_request_content_auth_0_oidc_strategy.py +5 -0
  580. auth0/management/types/create_connection_request_content_auth_0_strategy.py +5 -0
  581. auth0/management/types/create_connection_request_content_azure_ad.py +4 -5
  582. auth0/management/types/create_connection_request_content_azure_ad_strategy.py +5 -0
  583. auth0/management/types/create_connection_request_content_baidu.py +2 -1
  584. auth0/management/types/create_connection_request_content_baidu_strategy.py +5 -0
  585. auth0/management/types/create_connection_request_content_bitbucket.py +2 -1
  586. auth0/management/types/create_connection_request_content_bitbucket_strategy.py +5 -0
  587. auth0/management/types/create_connection_request_content_bitly.py +2 -1
  588. auth0/management/types/create_connection_request_content_bitly_strategy.py +5 -0
  589. auth0/management/types/create_connection_request_content_box.py +4 -2
  590. auth0/management/types/create_connection_request_content_box_strategy.py +5 -0
  591. auth0/management/types/create_connection_request_content_custom.py +2 -1
  592. auth0/management/types/create_connection_request_content_custom_strategy.py +5 -0
  593. auth0/management/types/create_connection_request_content_daccount.py +2 -1
  594. auth0/management/types/create_connection_request_content_daccount_strategy.py +5 -0
  595. auth0/management/types/create_connection_request_content_dropbox.py +2 -1
  596. auth0/management/types/create_connection_request_content_dropbox_strategy.py +5 -0
  597. auth0/management/types/create_connection_request_content_dwolla.py +2 -1
  598. auth0/management/types/create_connection_request_content_dwolla_strategy.py +5 -0
  599. auth0/management/types/create_connection_request_content_email.py +2 -1
  600. auth0/management/types/create_connection_request_content_email_strategy.py +5 -0
  601. auth0/management/types/create_connection_request_content_evernote.py +2 -1
  602. auth0/management/types/create_connection_request_content_evernote_sandbox.py +6 -3
  603. auth0/management/types/create_connection_request_content_evernote_sandbox_strategy.py +5 -0
  604. auth0/management/types/create_connection_request_content_evernote_strategy.py +5 -0
  605. auth0/management/types/create_connection_request_content_exact.py +2 -1
  606. auth0/management/types/create_connection_request_content_exact_strategy.py +5 -0
  607. auth0/management/types/create_connection_request_content_facebook.py +2 -1
  608. auth0/management/types/create_connection_request_content_facebook_strategy.py +5 -0
  609. auth0/management/types/create_connection_request_content_fitbit.py +2 -1
  610. auth0/management/types/create_connection_request_content_fitbit_strategy.py +5 -0
  611. auth0/management/types/create_connection_request_content_flickr.py +2 -1
  612. auth0/management/types/create_connection_request_content_flickr_strategy.py +5 -0
  613. auth0/management/types/create_connection_request_content_git_hub.py +4 -2
  614. auth0/management/types/create_connection_request_content_git_hub_strategy.py +5 -0
  615. auth0/management/types/create_connection_request_content_google_apps.py +4 -1
  616. auth0/management/types/create_connection_request_content_google_apps_strategy.py +5 -0
  617. auth0/management/types/create_connection_request_content_google_o_auth_2.py +6 -2
  618. auth0/management/types/create_connection_request_content_google_o_auth_2_strategy.py +5 -0
  619. auth0/management/types/create_connection_request_content_instagram.py +2 -1
  620. auth0/management/types/create_connection_request_content_instagram_strategy.py +5 -0
  621. auth0/management/types/create_connection_request_content_ip.py +4 -1
  622. auth0/management/types/create_connection_request_content_ip_strategy.py +5 -0
  623. auth0/management/types/create_connection_request_content_line.py +2 -1
  624. auth0/management/types/create_connection_request_content_line_strategy.py +5 -0
  625. auth0/management/types/create_connection_request_content_linkedin.py +2 -1
  626. auth0/management/types/create_connection_request_content_linkedin_strategy.py +5 -0
  627. auth0/management/types/create_connection_request_content_o_auth_1.py +2 -1
  628. auth0/management/types/create_connection_request_content_o_auth_1_strategy.py +5 -0
  629. auth0/management/types/create_connection_request_content_o_auth_2.py +4 -2
  630. auth0/management/types/create_connection_request_content_o_auth_2_strategy.py +5 -0
  631. auth0/management/types/create_connection_request_content_office_365.py +4 -1
  632. auth0/management/types/create_connection_request_content_office_365_strategy.py +5 -0
  633. auth0/management/types/create_connection_request_content_oidc.py +8 -1
  634. auth0/management/types/create_connection_request_content_oidc_strategy.py +5 -0
  635. auth0/management/types/create_connection_request_content_okta.py +4 -1
  636. auth0/management/types/create_connection_request_content_okta_strategy.py +5 -0
  637. auth0/management/types/create_connection_request_content_paypal.py +2 -1
  638. auth0/management/types/create_connection_request_content_paypal_sandbox.py +6 -3
  639. auth0/management/types/create_connection_request_content_paypal_sandbox_strategy.py +5 -0
  640. auth0/management/types/create_connection_request_content_paypal_strategy.py +5 -0
  641. auth0/management/types/create_connection_request_content_ping_federate.py +4 -1
  642. auth0/management/types/create_connection_request_content_ping_federate_strategy.py +5 -0
  643. auth0/management/types/create_connection_request_content_planning_center.py +4 -1
  644. auth0/management/types/create_connection_request_content_planning_center_strategy.py +5 -0
  645. auth0/management/types/create_connection_request_content_salesforce.py +2 -1
  646. auth0/management/types/create_connection_request_content_salesforce_community.py +4 -1
  647. auth0/management/types/create_connection_request_content_salesforce_community_strategy.py +7 -0
  648. auth0/management/types/create_connection_request_content_salesforce_sandbox.py +6 -3
  649. auth0/management/types/create_connection_request_content_salesforce_sandbox_strategy.py +5 -0
  650. auth0/management/types/create_connection_request_content_salesforce_strategy.py +5 -0
  651. auth0/management/types/create_connection_request_content_saml.py +4 -1
  652. auth0/management/types/create_connection_request_content_saml_strategy.py +5 -0
  653. auth0/management/types/create_connection_request_content_sharepoint.py +4 -1
  654. auth0/management/types/create_connection_request_content_sharepoint_strategy.py +5 -0
  655. auth0/management/types/create_connection_request_content_shop.py +2 -1
  656. auth0/management/types/create_connection_request_content_shop_strategy.py +5 -0
  657. auth0/management/types/create_connection_request_content_shopify.py +2 -1
  658. auth0/management/types/create_connection_request_content_shopify_strategy.py +5 -0
  659. auth0/management/types/create_connection_request_content_sms.py +2 -1
  660. auth0/management/types/create_connection_request_content_sms_strategy.py +5 -0
  661. auth0/management/types/create_connection_request_content_soundcloud.py +2 -1
  662. auth0/management/types/create_connection_request_content_soundcloud_strategy.py +5 -0
  663. auth0/management/types/create_connection_request_content_thirty_seven_signals.py +4 -1
  664. auth0/management/types/create_connection_request_content_thirty_seven_signals_strategy.py +7 -0
  665. auth0/management/types/create_connection_request_content_twitter.py +2 -1
  666. auth0/management/types/create_connection_request_content_twitter_strategy.py +5 -0
  667. auth0/management/types/create_connection_request_content_untappd.py +2 -1
  668. auth0/management/types/create_connection_request_content_untappd_strategy.py +5 -0
  669. auth0/management/types/create_connection_request_content_vkontakte.py +2 -1
  670. auth0/management/types/create_connection_request_content_vkontakte_strategy.py +5 -0
  671. auth0/management/types/create_connection_request_content_weibo.py +2 -1
  672. auth0/management/types/create_connection_request_content_weibo_strategy.py +5 -0
  673. auth0/management/types/create_connection_request_content_windows_live.py +4 -2
  674. auth0/management/types/create_connection_request_content_windows_live_strategy.py +5 -0
  675. auth0/management/types/create_connection_request_content_wordpress.py +2 -1
  676. auth0/management/types/create_connection_request_content_wordpress_strategy.py +5 -0
  677. auth0/management/types/create_connection_request_content_yahoo.py +2 -1
  678. auth0/management/types/create_connection_request_content_yahoo_strategy.py +5 -0
  679. auth0/management/types/create_connection_request_content_yammer.py +2 -1
  680. auth0/management/types/create_connection_request_content_yammer_strategy.py +5 -0
  681. auth0/management/types/create_connection_request_content_yandex.py +2 -1
  682. auth0/management/types/create_connection_request_content_yandex_strategy.py +5 -0
  683. auth0/management/types/create_connection_response_content.py +3 -3
  684. auth0/management/types/create_custom_domain_response_content.py +13 -4
  685. auth0/management/types/create_directory_provisioning_request_content.py +3 -0
  686. auth0/management/types/create_directory_provisioning_response_content.py +2 -0
  687. auth0/management/types/create_email_provider_response_content.py +2 -2
  688. auth0/management/types/create_email_template_response_content.py +25 -27
  689. auth0/management/types/create_encryption_key_public_wrapping_response_content.py +1 -1
  690. auth0/management/types/create_encryption_key_response_content.py +1 -1
  691. auth0/management/types/create_event_stream_test_event_response_content.py +1 -1
  692. auth0/management/types/create_export_users_response_content.py +5 -5
  693. auth0/management/types/create_flows_vault_connection_activecampaign_api_key.py +1 -1
  694. auth0/management/types/create_flows_vault_connection_activecampaign_uninitialized.py +1 -1
  695. auth0/management/types/create_flows_vault_connection_airtable_api_key.py +1 -1
  696. auth0/management/types/create_flows_vault_connection_airtable_uninitialized.py +1 -1
  697. auth0/management/types/create_flows_vault_connection_auth_0_oauth_app.py +1 -1
  698. auth0/management/types/create_flows_vault_connection_auth_0_uninitialized.py +1 -1
  699. auth0/management/types/create_flows_vault_connection_bigquery_jwt.py +1 -1
  700. auth0/management/types/create_flows_vault_connection_bigquery_uninitialized.py +1 -1
  701. auth0/management/types/create_flows_vault_connection_clearbit_api_key.py +1 -1
  702. auth0/management/types/create_flows_vault_connection_clearbit_uninitialized.py +1 -1
  703. auth0/management/types/create_flows_vault_connection_docusign_oauth_code.py +1 -1
  704. auth0/management/types/create_flows_vault_connection_docusign_uninitialized.py +1 -1
  705. auth0/management/types/create_flows_vault_connection_google_sheets_oauth_code.py +1 -1
  706. auth0/management/types/create_flows_vault_connection_google_sheets_uninitialized.py +1 -1
  707. auth0/management/types/create_flows_vault_connection_http.py +10 -1
  708. auth0/management/types/create_flows_vault_connection_http_api_key.py +27 -0
  709. auth0/management/types/create_flows_vault_connection_http_basic_auth.py +27 -0
  710. auth0/management/types/create_flows_vault_connection_http_bearer.py +1 -1
  711. auth0/management/types/create_flows_vault_connection_http_oauth_client_credentials.py +29 -0
  712. auth0/management/types/create_flows_vault_connection_http_uninitialized.py +1 -1
  713. auth0/management/types/create_flows_vault_connection_hubspot_api_key.py +1 -1
  714. auth0/management/types/create_flows_vault_connection_hubspot_oauth_code.py +1 -1
  715. auth0/management/types/create_flows_vault_connection_hubspot_uninitialized.py +1 -1
  716. auth0/management/types/create_flows_vault_connection_jwt_jwt.py +1 -1
  717. auth0/management/types/create_flows_vault_connection_jwt_uninitialized.py +1 -1
  718. auth0/management/types/create_flows_vault_connection_mailchimp_api_key.py +1 -1
  719. auth0/management/types/create_flows_vault_connection_mailchimp_oauth_code.py +1 -1
  720. auth0/management/types/create_flows_vault_connection_mailchimp_uninitialized.py +1 -1
  721. auth0/management/types/create_flows_vault_connection_mailjet_api_key.py +1 -1
  722. auth0/management/types/create_flows_vault_connection_mailjet_uninitialized.py +1 -1
  723. auth0/management/types/create_flows_vault_connection_pipedrive_oauth_code.py +1 -1
  724. auth0/management/types/create_flows_vault_connection_pipedrive_token.py +1 -1
  725. auth0/management/types/create_flows_vault_connection_pipedrive_uninitialized.py +1 -1
  726. auth0/management/types/create_flows_vault_connection_salesforce_oauth_code.py +1 -1
  727. auth0/management/types/create_flows_vault_connection_salesforce_uninitialized.py +1 -1
  728. auth0/management/types/create_flows_vault_connection_sendgrid_api_key.py +1 -1
  729. auth0/management/types/create_flows_vault_connection_sendgrid_uninitialized.py +1 -1
  730. auth0/management/types/create_flows_vault_connection_slack_oauth_code.py +1 -1
  731. auth0/management/types/create_flows_vault_connection_slack_uninitialized.py +1 -1
  732. auth0/management/types/create_flows_vault_connection_slack_webhook.py +1 -1
  733. auth0/management/types/create_flows_vault_connection_stripe_key_pair.py +1 -1
  734. auth0/management/types/create_flows_vault_connection_stripe_oauth_code.py +1 -1
  735. auth0/management/types/create_flows_vault_connection_stripe_uninitialized.py +1 -1
  736. auth0/management/types/create_flows_vault_connection_telegram_token.py +1 -1
  737. auth0/management/types/create_flows_vault_connection_telegram_uninitialized.py +1 -1
  738. auth0/management/types/create_flows_vault_connection_twilio_api_key.py +1 -1
  739. auth0/management/types/create_flows_vault_connection_twilio_uninitialized.py +1 -1
  740. auth0/management/types/create_flows_vault_connection_whatsapp_token.py +1 -1
  741. auth0/management/types/create_flows_vault_connection_whatsapp_uninitialized.py +1 -1
  742. auth0/management/types/create_flows_vault_connection_zapier_uninitialized.py +1 -1
  743. auth0/management/types/create_flows_vault_connection_zapier_webhook.py +1 -1
  744. auth0/management/types/create_guardian_enrollment_ticket_response_content.py +1 -1
  745. auth0/management/types/create_hook_response_content.py +9 -13
  746. auth0/management/types/create_import_users_response_content.py +4 -4
  747. auth0/management/types/create_log_stream_datadog_request_body.py +11 -14
  748. auth0/management/types/create_log_stream_event_bridge_request_body.py +11 -14
  749. auth0/management/types/create_log_stream_event_grid_request_body.py +11 -14
  750. auth0/management/types/create_log_stream_http_request_body.py +11 -14
  751. auth0/management/types/create_log_stream_mixpanel_request_body.py +11 -14
  752. auth0/management/types/create_log_stream_segment_request_body.py +11 -14
  753. auth0/management/types/create_log_stream_splunk_request_body.py +11 -14
  754. auth0/management/types/create_log_stream_sumo_request_body.py +11 -14
  755. auth0/management/types/create_organization_discovery_domain_response_content.py +5 -0
  756. auth0/management/types/create_organization_invitation_response_content.py +4 -6
  757. auth0/management/types/create_organization_response_content.py +2 -2
  758. auth0/management/types/create_phone_template_response_content.py +1 -1
  759. auth0/management/types/create_public_key_device_credential_response_content.py +1 -1
  760. auth0/management/types/create_rule_response_content.py +6 -8
  761. auth0/management/types/create_scim_configuration_response_content.py +12 -11
  762. auth0/management/types/create_self_service_profile_response_content.py +2 -2
  763. auth0/management/types/create_token_exchange_profile_response_content.py +1 -1
  764. auth0/management/types/create_user_authentication_method_response_content.py +5 -1
  765. auth0/management/types/create_user_response_content.py +6 -6
  766. auth0/management/types/create_verifiable_credential_template_response_content.py +3 -3
  767. auth0/management/types/create_verification_email_response_content.py +3 -3
  768. auth0/management/types/custom_domain.py +14 -7
  769. auth0/management/types/custom_domain_tls_policy_enum.py +1 -1
  770. auth0/management/types/custom_domain_verification_method_enum.py +1 -1
  771. auth0/management/types/custom_signing_key_jwk.py +18 -23
  772. auth0/management/types/custom_signing_key_operation_enum.py +1 -1
  773. auth0/management/types/custom_signing_key_use_enum.py +1 -1
  774. auth0/management/types/daily_stats.py +6 -6
  775. auth0/management/types/default_method_email_identifier_enum.py +5 -0
  776. auth0/management/types/delete_user_identity_response_content_item.py +14 -13
  777. auth0/management/types/deploy_action_response_content.py +12 -6
  778. auth0/management/types/deploy_action_version_request_content.py +17 -2
  779. auth0/management/types/deploy_action_version_response_content.py +12 -6
  780. auth0/management/types/device_credential.py +10 -6
  781. auth0/management/types/device_credential_public_key_type_enum.py +1 -1
  782. auth0/management/types/directory_provisioning.py +71 -0
  783. auth0/management/types/directory_provisioning_mapping_item.py +5 -5
  784. auth0/management/types/domain_verification_method.py +2 -2
  785. auth0/management/types/email_mailgun_region_enum.py +1 -1
  786. auth0/management/types/email_provider_credentials_schema_access_key_id.py +10 -14
  787. auth0/management/types/email_provider_credentials_schema_client_id.py +15 -20
  788. auth0/management/types/email_provider_credentials_schema_connection_string.py +5 -6
  789. auth0/management/types/email_spark_post_region_enum.py +1 -1
  790. auth0/management/types/encryption_key.py +1 -1
  791. auth0/management/types/encryption_key_public_wrapping_algorithm.py +1 -1
  792. auth0/management/types/event_stream_action_destination.py +1 -1
  793. auth0/management/types/event_stream_action_destination_type_enum.py +1 -1
  794. auth0/management/types/event_stream_delivery.py +1 -1
  795. auth0/management/types/event_stream_delivery_attempt.py +1 -1
  796. auth0/management/types/event_stream_delivery_status_enum.py +1 -1
  797. auth0/management/types/event_stream_event_bridge_destination.py +1 -1
  798. auth0/management/types/event_stream_event_bridge_destination_type_enum.py +1 -1
  799. auth0/management/types/event_stream_webhook_basic_auth.py +1 -1
  800. auth0/management/types/event_stream_webhook_basic_auth_method_enum.py +1 -1
  801. auth0/management/types/event_stream_webhook_bearer_auth.py +1 -1
  802. auth0/management/types/event_stream_webhook_bearer_auth_method_enum.py +1 -1
  803. auth0/management/types/event_stream_webhook_destination.py +1 -1
  804. auth0/management/types/event_stream_webhook_destination_type_enum.py +1 -1
  805. auth0/management/types/flow_action_activecampaign_list_contacts.py +4 -2
  806. auth0/management/types/flow_action_activecampaign_list_contacts_action.py +5 -0
  807. auth0/management/types/flow_action_activecampaign_list_contacts_type.py +5 -0
  808. auth0/management/types/flow_action_activecampaign_upsert_contact.py +4 -2
  809. auth0/management/types/flow_action_activecampaign_upsert_contact_action.py +5 -0
  810. auth0/management/types/flow_action_activecampaign_upsert_contact_type.py +5 -0
  811. auth0/management/types/flow_action_airtable_create_record.py +4 -2
  812. auth0/management/types/flow_action_airtable_create_record_action.py +5 -0
  813. auth0/management/types/flow_action_airtable_create_record_type.py +5 -0
  814. auth0/management/types/flow_action_airtable_list_records.py +4 -2
  815. auth0/management/types/flow_action_airtable_list_records_action.py +5 -0
  816. auth0/management/types/flow_action_airtable_list_records_type.py +5 -0
  817. auth0/management/types/flow_action_airtable_update_record.py +4 -2
  818. auth0/management/types/flow_action_airtable_update_record_action.py +5 -0
  819. auth0/management/types/flow_action_airtable_update_record_type.py +5 -0
  820. auth0/management/types/flow_action_auth_0.py +4 -0
  821. auth0/management/types/flow_action_auth_0_create_user.py +4 -2
  822. auth0/management/types/flow_action_auth_0_create_user_action.py +5 -0
  823. auth0/management/types/flow_action_auth_0_create_user_type.py +5 -0
  824. auth0/management/types/flow_action_auth_0_get_user.py +4 -2
  825. auth0/management/types/flow_action_auth_0_get_user_action.py +5 -0
  826. auth0/management/types/flow_action_auth_0_get_user_type.py +5 -0
  827. auth0/management/types/flow_action_auth_0_make_call.py +28 -0
  828. auth0/management/types/flow_action_auth_0_make_call_action.py +5 -0
  829. auth0/management/types/flow_action_auth_0_make_call_params.py +27 -0
  830. auth0/management/types/flow_action_auth_0_make_call_params_custom_vars.py +5 -0
  831. auth0/management/types/flow_action_auth_0_make_call_type.py +5 -0
  832. auth0/management/types/flow_action_auth_0_send_email.py +4 -2
  833. auth0/management/types/flow_action_auth_0_send_email_action.py +5 -0
  834. auth0/management/types/flow_action_auth_0_send_email_params.py +1 -1
  835. auth0/management/types/flow_action_auth_0_send_email_type.py +5 -0
  836. auth0/management/types/flow_action_auth_0_send_request.py +4 -2
  837. auth0/management/types/flow_action_auth_0_send_request_action.py +5 -0
  838. auth0/management/types/flow_action_auth_0_send_request_type.py +5 -0
  839. auth0/management/types/flow_action_auth_0_send_sms.py +28 -0
  840. auth0/management/types/flow_action_auth_0_send_sms_action.py +5 -0
  841. auth0/management/types/flow_action_auth_0_send_sms_params.py +27 -0
  842. auth0/management/types/flow_action_auth_0_send_sms_params_custom_vars.py +5 -0
  843. auth0/management/types/flow_action_auth_0_send_sms_type.py +5 -0
  844. auth0/management/types/flow_action_auth_0_update_user.py +4 -2
  845. auth0/management/types/flow_action_auth_0_update_user_action.py +5 -0
  846. auth0/management/types/flow_action_auth_0_update_user_type.py +5 -0
  847. auth0/management/types/flow_action_bigquery_insert_rows.py +4 -2
  848. auth0/management/types/flow_action_bigquery_insert_rows_action.py +5 -0
  849. auth0/management/types/flow_action_bigquery_insert_rows_type.py +5 -0
  850. auth0/management/types/flow_action_clearbit_find_company.py +4 -2
  851. auth0/management/types/flow_action_clearbit_find_company_action.py +5 -0
  852. auth0/management/types/flow_action_clearbit_find_company_type.py +5 -0
  853. auth0/management/types/flow_action_clearbit_find_person.py +4 -2
  854. auth0/management/types/flow_action_clearbit_find_person_action.py +5 -0
  855. auth0/management/types/flow_action_clearbit_find_person_type.py +5 -0
  856. auth0/management/types/flow_action_email_verify_email.py +4 -2
  857. auth0/management/types/flow_action_email_verify_email_action.py +5 -0
  858. auth0/management/types/flow_action_email_verify_email_type.py +5 -0
  859. auth0/management/types/flow_action_flow_boolean_condition.py +4 -2
  860. auth0/management/types/flow_action_flow_boolean_condition_action.py +5 -0
  861. auth0/management/types/flow_action_flow_boolean_condition_params.py +3 -1
  862. auth0/management/types/flow_action_flow_boolean_condition_type.py +5 -0
  863. auth0/management/types/flow_action_flow_delay_flow.py +4 -2
  864. auth0/management/types/flow_action_flow_delay_flow_action.py +5 -0
  865. auth0/management/types/flow_action_flow_delay_flow_type.py +5 -0
  866. auth0/management/types/flow_action_flow_do_nothing.py +4 -2
  867. auth0/management/types/flow_action_flow_do_nothing_action.py +5 -0
  868. auth0/management/types/flow_action_flow_do_nothing_type.py +5 -0
  869. auth0/management/types/flow_action_flow_error_message.py +4 -2
  870. auth0/management/types/flow_action_flow_error_message_action.py +5 -0
  871. auth0/management/types/flow_action_flow_error_message_type.py +5 -0
  872. auth0/management/types/flow_action_flow_map_value.py +4 -2
  873. auth0/management/types/flow_action_flow_map_value_action.py +5 -0
  874. auth0/management/types/flow_action_flow_map_value_type.py +5 -0
  875. auth0/management/types/flow_action_flow_return_json.py +4 -2
  876. auth0/management/types/flow_action_flow_return_json_action.py +5 -0
  877. auth0/management/types/flow_action_flow_return_json_type.py +5 -0
  878. auth0/management/types/flow_action_flow_store_vars.py +4 -2
  879. auth0/management/types/flow_action_flow_store_vars_action.py +5 -0
  880. auth0/management/types/flow_action_flow_store_vars_type.py +5 -0
  881. auth0/management/types/flow_action_google_sheets_add_row.py +4 -2
  882. auth0/management/types/flow_action_google_sheets_add_row_action.py +5 -0
  883. auth0/management/types/flow_action_google_sheets_add_row_type.py +5 -0
  884. auth0/management/types/flow_action_http_send_request.py +4 -2
  885. auth0/management/types/flow_action_http_send_request_action.py +5 -0
  886. auth0/management/types/flow_action_http_send_request_type.py +5 -0
  887. auth0/management/types/flow_action_hubspot_enroll_contact.py +4 -2
  888. auth0/management/types/flow_action_hubspot_enroll_contact_action.py +5 -0
  889. auth0/management/types/flow_action_hubspot_enroll_contact_type.py +5 -0
  890. auth0/management/types/flow_action_hubspot_get_contact.py +4 -2
  891. auth0/management/types/flow_action_hubspot_get_contact_action.py +5 -0
  892. auth0/management/types/flow_action_hubspot_get_contact_type.py +5 -0
  893. auth0/management/types/flow_action_hubspot_upsert_contact.py +4 -2
  894. auth0/management/types/flow_action_hubspot_upsert_contact_action.py +5 -0
  895. auth0/management/types/flow_action_hubspot_upsert_contact_type.py +5 -0
  896. auth0/management/types/flow_action_json_create_json.py +4 -2
  897. auth0/management/types/flow_action_json_create_json_action.py +5 -0
  898. auth0/management/types/flow_action_json_create_json_type.py +5 -0
  899. auth0/management/types/flow_action_json_parse_json.py +4 -2
  900. auth0/management/types/flow_action_json_parse_json_action.py +5 -0
  901. auth0/management/types/flow_action_json_parse_json_params.py +1 -1
  902. auth0/management/types/flow_action_json_parse_json_type.py +5 -0
  903. auth0/management/types/flow_action_json_serialize_json.py +4 -2
  904. auth0/management/types/flow_action_json_serialize_json_action.py +5 -0
  905. auth0/management/types/flow_action_json_serialize_json_type.py +5 -0
  906. auth0/management/types/flow_action_jwt_decode_jwt.py +4 -2
  907. auth0/management/types/flow_action_jwt_decode_jwt_action.py +5 -0
  908. auth0/management/types/flow_action_jwt_decode_jwt_type.py +5 -0
  909. auth0/management/types/flow_action_jwt_sign_jwt.py +4 -2
  910. auth0/management/types/flow_action_jwt_sign_jwt_action.py +5 -0
  911. auth0/management/types/flow_action_jwt_sign_jwt_type.py +5 -0
  912. auth0/management/types/flow_action_jwt_verify_jwt.py +4 -2
  913. auth0/management/types/flow_action_jwt_verify_jwt_action.py +5 -0
  914. auth0/management/types/flow_action_jwt_verify_jwt_type.py +5 -0
  915. auth0/management/types/flow_action_mailchimp_upsert_member.py +4 -2
  916. auth0/management/types/flow_action_mailchimp_upsert_member_action.py +5 -0
  917. auth0/management/types/flow_action_mailchimp_upsert_member_type.py +5 -0
  918. auth0/management/types/flow_action_mailjet_send_email.py +4 -2
  919. auth0/management/types/flow_action_mailjet_send_email_action.py +5 -0
  920. auth0/management/types/flow_action_mailjet_send_email_type.py +5 -0
  921. auth0/management/types/flow_action_otp_generate_code.py +4 -2
  922. auth0/management/types/flow_action_otp_generate_code_action.py +5 -0
  923. auth0/management/types/flow_action_otp_generate_code_type.py +5 -0
  924. auth0/management/types/flow_action_otp_verify_code.py +4 -2
  925. auth0/management/types/flow_action_otp_verify_code_action.py +5 -0
  926. auth0/management/types/flow_action_otp_verify_code_type.py +5 -0
  927. auth0/management/types/flow_action_pipedrive_add_deal.py +4 -2
  928. auth0/management/types/flow_action_pipedrive_add_deal_action.py +5 -0
  929. auth0/management/types/flow_action_pipedrive_add_deal_type.py +5 -0
  930. auth0/management/types/flow_action_pipedrive_add_organization.py +4 -2
  931. auth0/management/types/flow_action_pipedrive_add_organization_action.py +5 -0
  932. auth0/management/types/flow_action_pipedrive_add_organization_type.py +5 -0
  933. auth0/management/types/flow_action_pipedrive_add_person.py +4 -2
  934. auth0/management/types/flow_action_pipedrive_add_person_action.py +5 -0
  935. auth0/management/types/flow_action_pipedrive_add_person_type.py +5 -0
  936. auth0/management/types/flow_action_salesforce_create_lead.py +4 -2
  937. auth0/management/types/flow_action_salesforce_create_lead_action.py +5 -0
  938. auth0/management/types/flow_action_salesforce_create_lead_type.py +5 -0
  939. auth0/management/types/flow_action_salesforce_get_lead.py +4 -2
  940. auth0/management/types/flow_action_salesforce_get_lead_action.py +5 -0
  941. auth0/management/types/flow_action_salesforce_get_lead_type.py +5 -0
  942. auth0/management/types/flow_action_salesforce_search_leads.py +4 -2
  943. auth0/management/types/flow_action_salesforce_search_leads_action.py +5 -0
  944. auth0/management/types/flow_action_salesforce_search_leads_type.py +5 -0
  945. auth0/management/types/flow_action_salesforce_update_lead.py +4 -2
  946. auth0/management/types/flow_action_salesforce_update_lead_action.py +5 -0
  947. auth0/management/types/flow_action_salesforce_update_lead_type.py +5 -0
  948. auth0/management/types/flow_action_sendgrid_send_email.py +4 -2
  949. auth0/management/types/flow_action_sendgrid_send_email_action.py +5 -0
  950. auth0/management/types/flow_action_sendgrid_send_email_params.py +3 -1
  951. auth0/management/types/flow_action_sendgrid_send_email_type.py +5 -0
  952. auth0/management/types/flow_action_slack_post_message.py +4 -2
  953. auth0/management/types/flow_action_slack_post_message_action.py +5 -0
  954. auth0/management/types/flow_action_slack_post_message_type.py +5 -0
  955. auth0/management/types/flow_action_stripe_add_tax_id.py +4 -2
  956. auth0/management/types/flow_action_stripe_add_tax_id_action.py +5 -0
  957. auth0/management/types/flow_action_stripe_add_tax_id_type.py +5 -0
  958. auth0/management/types/flow_action_stripe_address.py +9 -3
  959. auth0/management/types/flow_action_stripe_create_customer.py +4 -2
  960. auth0/management/types/flow_action_stripe_create_customer_action.py +5 -0
  961. auth0/management/types/flow_action_stripe_create_customer_type.py +5 -0
  962. auth0/management/types/flow_action_stripe_create_portal_session.py +4 -2
  963. auth0/management/types/flow_action_stripe_create_portal_session_action.py +5 -0
  964. auth0/management/types/flow_action_stripe_create_portal_session_type.py +5 -0
  965. auth0/management/types/flow_action_stripe_delete_tax_id.py +4 -2
  966. auth0/management/types/flow_action_stripe_delete_tax_id_action.py +5 -0
  967. auth0/management/types/flow_action_stripe_delete_tax_id_type.py +5 -0
  968. auth0/management/types/flow_action_stripe_find_customers.py +4 -2
  969. auth0/management/types/flow_action_stripe_find_customers_action.py +5 -0
  970. auth0/management/types/flow_action_stripe_find_customers_type.py +5 -0
  971. auth0/management/types/flow_action_stripe_get_customer.py +4 -2
  972. auth0/management/types/flow_action_stripe_get_customer_action.py +5 -0
  973. auth0/management/types/flow_action_stripe_get_customer_type.py +5 -0
  974. auth0/management/types/flow_action_stripe_update_customer.py +4 -2
  975. auth0/management/types/flow_action_stripe_update_customer_action.py +5 -0
  976. auth0/management/types/flow_action_stripe_update_customer_type.py +5 -0
  977. auth0/management/types/flow_action_telegram_send_message.py +4 -2
  978. auth0/management/types/flow_action_telegram_send_message_action.py +5 -0
  979. auth0/management/types/flow_action_telegram_send_message_type.py +5 -0
  980. auth0/management/types/flow_action_twilio_make_call.py +4 -2
  981. auth0/management/types/flow_action_twilio_make_call_action.py +5 -0
  982. auth0/management/types/flow_action_twilio_make_call_params.py +1 -1
  983. auth0/management/types/flow_action_twilio_make_call_type.py +5 -0
  984. auth0/management/types/flow_action_twilio_send_sms.py +4 -2
  985. auth0/management/types/flow_action_twilio_send_sms_action.py +5 -0
  986. auth0/management/types/flow_action_twilio_send_sms_params.py +1 -1
  987. auth0/management/types/flow_action_twilio_send_sms_type.py +5 -0
  988. auth0/management/types/flow_action_whatsapp_send_message.py +4 -2
  989. auth0/management/types/flow_action_whatsapp_send_message_action.py +5 -0
  990. auth0/management/types/flow_action_whatsapp_send_message_type.py +5 -0
  991. auth0/management/types/flow_action_xml_parse_xml.py +4 -2
  992. auth0/management/types/flow_action_xml_parse_xml_action.py +5 -0
  993. auth0/management/types/flow_action_xml_parse_xml_type.py +5 -0
  994. auth0/management/types/flow_action_xml_serialize_xml.py +4 -2
  995. auth0/management/types/flow_action_xml_serialize_xml_action.py +5 -0
  996. auth0/management/types/flow_action_xml_serialize_xml_type.py +5 -0
  997. auth0/management/types/flow_action_zapier_trigger_webhook.py +4 -2
  998. auth0/management/types/flow_action_zapier_trigger_webhook_action.py +5 -0
  999. auth0/management/types/flow_action_zapier_trigger_webhook_type.py +5 -0
  1000. auth0/management/types/flows_vault_connectio_setup_api_key.py +1 -1
  1001. auth0/management/types/flows_vault_connectio_setup_api_key_with_base_url.py +1 -1
  1002. auth0/management/types/flows_vault_connectio_setup_http_bearer.py +1 -1
  1003. auth0/management/types/flows_vault_connectio_setup_jwt.py +1 -1
  1004. auth0/management/types/flows_vault_connectio_setup_mailjet_api_key.py +1 -1
  1005. auth0/management/types/flows_vault_connectio_setup_oauth_app.py +1 -1
  1006. auth0/management/types/flows_vault_connectio_setup_secret_api_key.py +1 -1
  1007. auth0/management/types/flows_vault_connectio_setup_stripe_key_pair.py +1 -1
  1008. auth0/management/types/flows_vault_connectio_setup_token.py +1 -1
  1009. auth0/management/types/flows_vault_connectio_setup_twilio_api_key.py +1 -1
  1010. auth0/management/types/flows_vault_connectio_setup_type_api_key_enum.py +1 -1
  1011. auth0/management/types/flows_vault_connectio_setup_type_bearer_enum.py +1 -1
  1012. auth0/management/types/flows_vault_connectio_setup_type_jwt_enum.py +1 -1
  1013. auth0/management/types/flows_vault_connectio_setup_type_key_pair_enum.py +1 -1
  1014. auth0/management/types/flows_vault_connectio_setup_type_oauth_app_enum.py +1 -1
  1015. auth0/management/types/flows_vault_connectio_setup_type_oauth_code_enum.py +1 -1
  1016. auth0/management/types/flows_vault_connectio_setup_type_oauth_jwt_enum.py +1 -1
  1017. auth0/management/types/flows_vault_connectio_setup_type_token_enum.py +1 -1
  1018. auth0/management/types/flows_vault_connectio_setup_type_webhook_enum.py +1 -1
  1019. auth0/management/types/flows_vault_connectio_setup_webhook.py +1 -1
  1020. auth0/management/types/flows_vault_connection_app_id_activecampaign_enum.py +1 -1
  1021. auth0/management/types/flows_vault_connection_app_id_airtable_enum.py +1 -1
  1022. auth0/management/types/flows_vault_connection_app_id_auth_0_enum.py +1 -1
  1023. auth0/management/types/flows_vault_connection_app_id_bigquery_enum.py +1 -1
  1024. auth0/management/types/flows_vault_connection_app_id_clearbit_enum.py +1 -1
  1025. auth0/management/types/flows_vault_connection_app_id_docusign_enum.py +1 -1
  1026. auth0/management/types/flows_vault_connection_app_id_google_sheets_enum.py +1 -1
  1027. auth0/management/types/flows_vault_connection_app_id_http_enum.py +1 -1
  1028. auth0/management/types/flows_vault_connection_app_id_hubspot_enum.py +1 -1
  1029. auth0/management/types/flows_vault_connection_app_id_jwt_enum.py +1 -1
  1030. auth0/management/types/flows_vault_connection_app_id_mailchimp_enum.py +1 -1
  1031. auth0/management/types/flows_vault_connection_app_id_mailjet_enum.py +1 -1
  1032. auth0/management/types/flows_vault_connection_app_id_pipedrive_enum.py +1 -1
  1033. auth0/management/types/flows_vault_connection_app_id_salesforce_enum.py +1 -1
  1034. auth0/management/types/flows_vault_connection_app_id_sendgrid_enum.py +1 -1
  1035. auth0/management/types/flows_vault_connection_app_id_slack_enum.py +1 -1
  1036. auth0/management/types/flows_vault_connection_app_id_stripe_enum.py +1 -1
  1037. auth0/management/types/flows_vault_connection_app_id_telegram_enum.py +1 -1
  1038. auth0/management/types/flows_vault_connection_app_id_twilio_enum.py +1 -1
  1039. auth0/management/types/flows_vault_connection_app_id_whatsapp_enum.py +1 -1
  1040. auth0/management/types/flows_vault_connection_app_id_zapier_enum.py +1 -1
  1041. auth0/management/types/flows_vault_connection_http_api_key_setup.py +28 -0
  1042. auth0/management/types/flows_vault_connection_http_api_key_setup_in_enum.py +5 -0
  1043. auth0/management/types/flows_vault_connection_http_basic_auth_setup.py +22 -0
  1044. auth0/management/types/flows_vault_connection_http_oauth_client_credentials_setup.py +28 -0
  1045. auth0/management/types/flows_vault_connection_setup_type_api_key_enum.py +5 -0
  1046. auth0/management/types/flows_vault_connection_setup_type_basic_auth_enum.py +5 -0
  1047. auth0/management/types/flows_vault_connection_setup_type_oauth_client_credentials_enum.py +7 -0
  1048. auth0/management/types/form_block_divider.py +2 -2
  1049. auth0/management/types/form_block_html.py +2 -2
  1050. auth0/management/types/form_block_image.py +2 -2
  1051. auth0/management/types/form_block_jump_button.py +2 -2
  1052. auth0/management/types/form_block_next_button.py +2 -2
  1053. auth0/management/types/form_block_previous_button.py +2 -2
  1054. auth0/management/types/form_block_resend_button.py +2 -2
  1055. auth0/management/types/form_block_rich_text.py +2 -2
  1056. auth0/management/types/form_block_type_divider_const.py +1 -1
  1057. auth0/management/types/form_block_type_html_const.py +1 -1
  1058. auth0/management/types/form_block_type_image_const.py +1 -1
  1059. auth0/management/types/form_block_type_jump_button_const.py +1 -1
  1060. auth0/management/types/form_block_type_next_button_const.py +1 -1
  1061. auth0/management/types/form_block_type_previous_button_const.py +1 -1
  1062. auth0/management/types/form_block_type_resend_button_const.py +1 -1
  1063. auth0/management/types/form_block_type_rich_text_const.py +1 -1
  1064. auth0/management/types/form_component_category_block_const.py +1 -1
  1065. auth0/management/types/form_component_category_field_const.py +1 -1
  1066. auth0/management/types/form_component_category_widget_const.py +1 -1
  1067. auth0/management/types/form_ending_node_id.py +1 -1
  1068. auth0/management/types/form_field_boolean.py +2 -2
  1069. auth0/management/types/form_field_cards.py +2 -2
  1070. auth0/management/types/form_field_choice.py +2 -2
  1071. auth0/management/types/form_field_custom.py +2 -2
  1072. auth0/management/types/form_field_custom_config.py +3 -1
  1073. auth0/management/types/form_field_date.py +2 -2
  1074. auth0/management/types/form_field_dropdown.py +2 -2
  1075. auth0/management/types/form_field_email.py +2 -2
  1076. auth0/management/types/form_field_file.py +2 -2
  1077. auth0/management/types/form_field_file_config.py +6 -2
  1078. auth0/management/types/form_field_legal.py +2 -2
  1079. auth0/management/types/form_field_number.py +2 -2
  1080. auth0/management/types/form_field_password.py +2 -2
  1081. auth0/management/types/form_field_payment.py +2 -2
  1082. auth0/management/types/form_field_payment_config_charge_one_off.py +1 -1
  1083. auth0/management/types/form_field_payment_config_charge_subscription.py +1 -1
  1084. auth0/management/types/form_field_payment_config_charge_type_one_off_const.py +1 -1
  1085. auth0/management/types/form_field_payment_config_charge_type_subscription_const.py +1 -1
  1086. auth0/management/types/form_field_payment_config_provider_enum.py +1 -1
  1087. auth0/management/types/form_field_social.py +2 -2
  1088. auth0/management/types/form_field_tel.py +2 -2
  1089. auth0/management/types/form_field_text.py +2 -2
  1090. auth0/management/types/form_field_type_boolean_const.py +1 -1
  1091. auth0/management/types/form_field_type_cards_const.py +1 -1
  1092. auth0/management/types/form_field_type_choice_const.py +1 -1
  1093. auth0/management/types/form_field_type_custom_const.py +1 -1
  1094. auth0/management/types/form_field_type_date_const.py +1 -1
  1095. auth0/management/types/form_field_type_dropdown_const.py +1 -1
  1096. auth0/management/types/form_field_type_email_const.py +1 -1
  1097. auth0/management/types/form_field_type_file_const.py +1 -1
  1098. auth0/management/types/form_field_type_legal_const.py +1 -1
  1099. auth0/management/types/form_field_type_number_const.py +1 -1
  1100. auth0/management/types/form_field_type_password_const.py +1 -1
  1101. auth0/management/types/form_field_type_payment_const.py +1 -1
  1102. auth0/management/types/form_field_type_social_const.py +1 -1
  1103. auth0/management/types/form_field_type_tel_const.py +1 -1
  1104. auth0/management/types/form_field_type_text_const.py +1 -1
  1105. auth0/management/types/form_field_type_url_const.py +1 -1
  1106. auth0/management/types/form_field_url.py +2 -2
  1107. auth0/management/types/form_flow.py +1 -1
  1108. auth0/management/types/form_node_type_flow_const.py +1 -1
  1109. auth0/management/types/form_node_type_router_const.py +1 -1
  1110. auth0/management/types/form_node_type_step_const.py +1 -1
  1111. auth0/management/types/form_router.py +1 -1
  1112. auth0/management/types/form_step.py +1 -1
  1113. auth0/management/types/form_widget_auth_0_verifiable_credentials.py +2 -2
  1114. auth0/management/types/form_widget_g_maps_address.py +2 -2
  1115. auth0/management/types/form_widget_recaptcha.py +2 -2
  1116. auth0/management/types/form_widget_type_auth_0_verifiable_credentials_const.py +1 -1
  1117. auth0/management/types/form_widget_type_g_maps_address_const.py +1 -1
  1118. auth0/management/types/form_widget_type_recaptcha_const.py +1 -1
  1119. auth0/management/types/get_action_execution_response_content.py +1 -1
  1120. auth0/management/types/get_action_module_actions_response_content.py +38 -0
  1121. auth0/management/types/get_action_module_response_content.py +73 -0
  1122. auth0/management/types/get_action_module_version_response_content.py +55 -0
  1123. auth0/management/types/get_action_module_versions_response_content.py +38 -0
  1124. auth0/management/types/get_action_modules_response_content.py +38 -0
  1125. auth0/management/types/get_action_response_content.py +13 -7
  1126. auth0/management/types/get_action_version_response_content.py +12 -6
  1127. auth0/management/types/get_acul_response_content.py +5 -4
  1128. auth0/management/types/get_attack_protection_captcha_response_content.py +3 -1
  1129. auth0/management/types/get_branding_default_theme_response_content.py +6 -10
  1130. auth0/management/types/get_branding_theme_response_content.py +6 -10
  1131. auth0/management/types/get_breached_password_detection_settings_response_content.py +1 -1
  1132. auth0/management/types/get_brute_force_settings_response_content.py +5 -12
  1133. auth0/management/types/get_client_credential_response_content.py +8 -10
  1134. auth0/management/types/get_client_grant_response_content.py +61 -0
  1135. auth0/management/types/get_client_response_content.py +24 -25
  1136. auth0/management/types/get_connection_response_content.py +3 -3
  1137. auth0/management/types/get_custom_domain_response_content.py +14 -7
  1138. auth0/management/types/{set_guardian_factors_provider_push_notification_fcm_request_content.py → get_default_canonical_domain_response_content.py} +5 -2
  1139. auth0/management/types/get_default_custom_domain_response_content.py +67 -0
  1140. auth0/management/types/get_default_domain_response_content.py +10 -0
  1141. auth0/management/types/get_directory_provisioning_response_content.py +2 -0
  1142. auth0/management/types/get_email_provider_response_content.py +2 -2
  1143. auth0/management/types/get_email_template_response_content.py +25 -27
  1144. auth0/management/types/get_encryption_key_response_content.py +1 -1
  1145. auth0/management/types/get_event_stream_delivery_history_response_content.py +1 -1
  1146. auth0/management/types/get_flow_execution_request_parameters_hydrate_enum.py +5 -0
  1147. auth0/management/types/get_group_members_response_content.py +24 -0
  1148. auth0/management/types/get_group_response_content.py +57 -0
  1149. auth0/management/types/get_guardian_enrollment_response_content.py +4 -4
  1150. auth0/management/types/get_guardian_factor_phone_templates_response_content.py +2 -6
  1151. auth0/management/types/get_guardian_factor_sms_templates_response_content.py +2 -6
  1152. auth0/management/types/get_guardian_factors_provider_phone_twilio_response_content.py +6 -10
  1153. auth0/management/types/get_guardian_factors_provider_sms_twilio_response_content.py +6 -10
  1154. auth0/management/types/get_guardian_factors_provider_sns_response_content.py +4 -4
  1155. auth0/management/types/get_hook_response_content.py +9 -13
  1156. auth0/management/types/get_job_generic_error_response_content.py +4 -4
  1157. auth0/management/types/get_job_response_content.py +7 -4
  1158. auth0/management/types/get_job_summary.py +41 -0
  1159. auth0/management/types/get_log_response_content.py +15 -14
  1160. auth0/management/types/get_organization_by_name_response_content.py +2 -2
  1161. auth0/management/types/get_organization_discovery_domain_by_name_response_content.py +44 -0
  1162. auth0/management/types/get_organization_discovery_domain_response_content.py +5 -0
  1163. auth0/management/types/get_organization_invitation_response_content.py +4 -6
  1164. auth0/management/types/get_organization_response_content.py +2 -2
  1165. auth0/management/types/get_phone_template_response_content.py +1 -1
  1166. auth0/management/types/get_refresh_token_response_content.py +3 -1
  1167. auth0/management/types/get_rule_response_content.py +6 -8
  1168. auth0/management/types/get_scim_configuration_response_content.py +12 -11
  1169. auth0/management/types/get_self_service_profile_response_content.py +2 -2
  1170. auth0/management/types/get_signing_keys_response_content.py +10 -14
  1171. auth0/management/types/get_tenant_settings_response_content.py +25 -16
  1172. auth0/management/types/get_token_exchange_profile_response_content.py +1 -1
  1173. auth0/management/types/get_user_groups_paginated_response_content.py +28 -0
  1174. auth0/management/types/get_user_response_content.py +6 -6
  1175. auth0/management/types/get_verifiable_credential_template_response_content.py +3 -3
  1176. auth0/management/types/group.py +1 -7
  1177. auth0/management/types/group_member.py +41 -0
  1178. auth0/management/types/group_member_type_enum.py +5 -0
  1179. auth0/management/types/group_type_enum.py +5 -0
  1180. auth0/management/types/guardian_factor.py +2 -2
  1181. auth0/management/types/hook.py +9 -13
  1182. auth0/management/types/identity.py +1 -1
  1183. auth0/management/types/identity_provider_only_auth_0_enum.py +1 -1
  1184. auth0/management/types/import_encryption_key_response_content.py +1 -1
  1185. auth0/management/types/integration.py +7 -7
  1186. auth0/management/types/integration_sem_ver.py +2 -2
  1187. auth0/management/types/list_action_bindings_paginated_response_content.py +3 -3
  1188. auth0/management/types/list_action_versions_paginated_response_content.py +3 -3
  1189. auth0/management/types/list_actions_paginated_response_content.py +3 -3
  1190. auth0/management/types/list_aculs_offset_paginated_response_content.py +2 -2
  1191. auth0/management/types/{acul_response_content.py → list_aculs_response_content_item.py} +20 -4
  1192. auth0/management/types/list_directory_provisionings_response_content.py +28 -0
  1193. auth0/management/types/list_event_streams_response_content.py +30 -0
  1194. auth0/management/types/list_flows_request_parameters_hydrate_enum.py +5 -0
  1195. auth0/management/types/list_groups_paginated_response_content.py +28 -0
  1196. auth0/management/types/list_scim_configurations_response_content.py +28 -0
  1197. auth0/management/types/log.py +15 -14
  1198. auth0/management/types/log_location_info.py +10 -9
  1199. auth0/management/types/log_security_context.py +10 -9
  1200. auth0/management/types/log_stream_datadog_enum.py +1 -1
  1201. auth0/management/types/log_stream_datadog_response_schema.py +5 -7
  1202. auth0/management/types/log_stream_datadog_sink.py +6 -6
  1203. auth0/management/types/log_stream_event_bridge_enum.py +1 -1
  1204. auth0/management/types/log_stream_event_bridge_response_schema.py +5 -7
  1205. auth0/management/types/log_stream_event_bridge_sink.py +10 -11
  1206. auth0/management/types/log_stream_event_grid_enum.py +1 -1
  1207. auth0/management/types/log_stream_event_grid_response_schema.py +5 -7
  1208. auth0/management/types/log_stream_event_grid_sink.py +18 -19
  1209. auth0/management/types/log_stream_filter_type_enum.py +1 -1
  1210. auth0/management/types/log_stream_http_enum.py +1 -1
  1211. auth0/management/types/log_stream_http_response_schema.py +5 -7
  1212. auth0/management/types/log_stream_http_sink.py +20 -25
  1213. auth0/management/types/log_stream_mixpanel_enum.py +1 -1
  1214. auth0/management/types/log_stream_mixpanel_response_schema.py +5 -7
  1215. auth0/management/types/log_stream_mixpanel_sink.py +16 -17
  1216. auth0/management/types/log_stream_mixpanel_sink_patch.py +16 -17
  1217. auth0/management/types/log_stream_pii_algorithm_enum.py +1 -1
  1218. auth0/management/types/log_stream_segment_enum.py +1 -1
  1219. auth0/management/types/log_stream_segment_response_schema.py +5 -7
  1220. auth0/management/types/log_stream_segment_sink.py +5 -6
  1221. auth0/management/types/log_stream_segment_sink_write_key.py +5 -4
  1222. auth0/management/types/log_stream_splunk_enum.py +1 -1
  1223. auth0/management/types/log_stream_splunk_response_schema.py +5 -7
  1224. auth0/management/types/log_stream_splunk_sink.py +16 -19
  1225. auth0/management/types/log_stream_sumo_enum.py +1 -1
  1226. auth0/management/types/log_stream_sumo_response_schema.py +5 -7
  1227. auth0/management/types/log_stream_sumo_sink.py +5 -4
  1228. auth0/management/types/mdl_presentation_request.py +3 -1
  1229. auth0/management/types/mdl_presentation_request_properties.py +3 -1
  1230. auth0/management/types/native_social_login_apple.py +1 -1
  1231. auth0/management/types/native_social_login_facebook.py +1 -1
  1232. auth0/management/types/native_social_login_google.py +1 -1
  1233. auth0/management/types/network_acl_match.py +15 -4
  1234. auth0/management/types/oauth_scope.py +114 -145
  1235. auth0/management/types/organization.py +2 -2
  1236. auth0/management/types/organization_discovery_domain.py +5 -0
  1237. auth0/management/types/organization_invitation.py +4 -6
  1238. auth0/management/types/organization_invitation_invitee.py +1 -1
  1239. auth0/management/types/organization_invitation_inviter.py +1 -1
  1240. auth0/management/types/organization_member.py +1 -1
  1241. auth0/management/types/partial_groups_enum.py +1 -0
  1242. auth0/management/types/partial_phone_template_content.py +7 -5
  1243. auth0/management/types/patch_client_credential_response_content.py +8 -10
  1244. auth0/management/types/phone_provider_channel_enum.py +1 -1
  1245. auth0/management/types/phone_template.py +1 -1
  1246. auth0/management/types/phone_template_content.py +7 -5
  1247. auth0/management/types/post_client_credential_response_content.py +8 -10
  1248. auth0/management/types/post_connection_keys_alg_enum.py +7 -0
  1249. auth0/management/types/post_connection_keys_request_content.py +20 -0
  1250. auth0/management/types/post_connections_keys_response_content.py +7 -0
  1251. auth0/management/types/post_connections_keys_response_content_item.py +66 -0
  1252. auth0/management/types/prompt_language_enum.py +1 -0
  1253. auth0/management/types/public_key_credential.py +9 -4
  1254. auth0/management/types/public_key_credential_type_enum.py +1 -1
  1255. auth0/management/types/refresh_token_metadata.py +5 -0
  1256. auth0/management/types/refresh_token_response_content.py +3 -1
  1257. auth0/management/types/reset_phone_template_response_content.py +1 -1
  1258. auth0/management/types/resource_server_consent_policy_enum.py +1 -1
  1259. auth0/management/types/resource_server_proof_of_possession.py +3 -0
  1260. auth0/management/types/resource_server_proof_of_possession_required_for_enum.py +7 -0
  1261. auth0/management/types/resource_server_subject_type_authorization.py +1 -1
  1262. auth0/management/types/resource_server_token_encryption.py +1 -1
  1263. auth0/management/types/resource_server_token_encryption_format_enum.py +1 -1
  1264. auth0/management/types/resource_server_token_encryption_key.py +1 -1
  1265. auth0/management/types/revoked_signing_keys_response_content.py +2 -4
  1266. auth0/management/types/role_user.py +1 -1
  1267. auth0/management/types/rollback_action_module_response_content.py +73 -0
  1268. auth0/management/types/rotate_client_secret_response_content.py +24 -25
  1269. auth0/management/types/rotate_connection_keys_signing_alg_enum.py +3 -1
  1270. auth0/management/types/rotate_connections_keys_response_content.py +4 -8
  1271. auth0/management/types/rotate_signing_keys_response_content.py +2 -4
  1272. auth0/management/types/rule.py +6 -8
  1273. auth0/management/types/rules_config.py +1 -1
  1274. auth0/management/types/scim_configuration.py +59 -0
  1275. auth0/management/types/scim_mapping_item.py +5 -7
  1276. auth0/management/types/screen_group_name_enum.py +1 -1
  1277. auth0/management/types/self_service_profile.py +2 -2
  1278. auth0/management/types/self_service_profile_allowed_strategy_enum.py +13 -1
  1279. auth0/management/types/self_service_profile_custom_text_language_enum.py +1 -1
  1280. auth0/management/types/self_service_profile_custom_text_page_enum.py +1 -1
  1281. auth0/management/types/self_service_profile_sso_ticket_connection_config.py +1 -1
  1282. auth0/management/types/self_service_profile_sso_ticket_provisioning_scope_enum.py +13 -1
  1283. auth0/management/types/session_authentication_signal.py +1 -5
  1284. auth0/management/types/set_email_template_response_content.py +25 -27
  1285. auth0/management/types/set_guardian_factor_phone_templates_response_content.py +2 -6
  1286. auth0/management/types/set_guardian_factor_sms_templates_response_content.py +2 -6
  1287. auth0/management/types/set_guardian_factors_provider_phone_twilio_response_content.py +6 -10
  1288. auth0/management/types/set_guardian_factors_provider_push_notification_sns_response_content.py +4 -4
  1289. auth0/management/types/set_guardian_factors_provider_sms_twilio_response_content.py +6 -10
  1290. auth0/management/types/set_rules_config_response_content.py +2 -2
  1291. auth0/management/types/set_user_authentication_method_response_content.py +5 -1
  1292. auth0/management/types/signing_keys.py +10 -14
  1293. auth0/management/types/supported_locales.py +1 -0
  1294. auth0/management/types/suspicious_ip_throttling_pre_login_stage.py +2 -2
  1295. auth0/management/types/suspicious_ip_throttling_pre_user_registration_stage.py +2 -2
  1296. auth0/management/types/suspicious_ip_throttling_stage.py +6 -2
  1297. auth0/management/types/synchronize_groups_ea_enum.py +5 -0
  1298. auth0/management/types/synchronize_groups_enum.py +3 -0
  1299. auth0/management/types/tenant_oidc_logout_settings.py +1 -1
  1300. auth0/management/types/tenant_settings_device_flow.py +1 -1
  1301. auth0/management/types/tenant_settings_error_page.py +3 -3
  1302. auth0/management/types/tenant_settings_flags.py +29 -26
  1303. auth0/management/types/tenant_settings_guardian_page.py +2 -2
  1304. auth0/management/types/tenant_settings_mtls.py +1 -1
  1305. auth0/management/types/tenant_settings_password_page.py +2 -2
  1306. auth0/management/types/tenant_settings_sessions.py +1 -1
  1307. auth0/management/{tenants/settings/types/update_tenant_settings_request_content_enabled_locales_item.py → types/tenant_settings_supported_locales_enum.py} +2 -1
  1308. auth0/management/types/token_exchange_profile_response_content.py +1 -1
  1309. auth0/management/types/token_exchange_profile_type_enum.py +1 -1
  1310. auth0/management/types/update_action_module_response_content.py +73 -0
  1311. auth0/management/types/update_action_response_content.py +13 -7
  1312. auth0/management/types/update_acul_response_content.py +4 -3
  1313. auth0/management/types/update_attack_protection_captcha_response_content.py +3 -1
  1314. auth0/management/types/update_branding_theme_response_content.py +6 -10
  1315. auth0/management/types/update_breached_password_detection_settings_response_content.py +1 -1
  1316. auth0/management/types/update_brute_force_settings_response_content.py +5 -14
  1317. auth0/management/types/update_client_grant_response_content.py +6 -1
  1318. auth0/management/types/update_client_response_content.py +24 -25
  1319. auth0/management/types/update_connection_options.py +14 -7
  1320. auth0/management/types/{create_connection_request_content_renren.py → update_connection_request_content_ad.py} +5 -6
  1321. auth0/management/types/update_connection_request_content_adfs.py +27 -0
  1322. auth0/management/types/{create_connection_request_content_the_city.py → update_connection_request_content_amazon.py} +5 -6
  1323. auth0/management/types/update_connection_request_content_aol.py +25 -0
  1324. auth0/management/types/update_connection_request_content_apple.py +25 -0
  1325. auth0/management/types/{connection_response_content_the_city.py → update_connection_request_content_auth_0.py} +7 -6
  1326. auth0/management/types/{connection_response_content_renren.py → update_connection_request_content_auth_0_oidc.py} +5 -6
  1327. auth0/management/types/update_connection_request_content_azure_ad.py +27 -0
  1328. auth0/management/types/update_connection_request_content_baidu.py +25 -0
  1329. auth0/management/types/update_connection_request_content_bitbucket.py +25 -0
  1330. auth0/management/types/update_connection_request_content_bitly.py +25 -0
  1331. auth0/management/types/update_connection_request_content_box.py +26 -0
  1332. auth0/management/types/update_connection_request_content_custom.py +25 -0
  1333. auth0/management/types/update_connection_request_content_daccount.py +25 -0
  1334. auth0/management/types/update_connection_request_content_dropbox.py +25 -0
  1335. auth0/management/types/update_connection_request_content_dwolla.py +25 -0
  1336. auth0/management/types/update_connection_request_content_email.py +25 -0
  1337. auth0/management/types/update_connection_request_content_evernote.py +25 -0
  1338. auth0/management/types/update_connection_request_content_evernote_sandbox.py +25 -0
  1339. auth0/management/types/update_connection_request_content_exact.py +25 -0
  1340. auth0/management/types/update_connection_request_content_facebook.py +25 -0
  1341. auth0/management/types/update_connection_request_content_fitbit.py +25 -0
  1342. auth0/management/types/update_connection_request_content_flickr.py +25 -0
  1343. auth0/management/types/update_connection_request_content_git_hub.py +26 -0
  1344. auth0/management/types/update_connection_request_content_google_apps.py +27 -0
  1345. auth0/management/types/update_connection_request_content_google_o_auth_2.py +26 -0
  1346. auth0/management/types/update_connection_request_content_instagram.py +25 -0
  1347. auth0/management/types/update_connection_request_content_ip.py +27 -0
  1348. auth0/management/types/update_connection_request_content_line.py +25 -0
  1349. auth0/management/types/update_connection_request_content_linkedin.py +25 -0
  1350. auth0/management/types/update_connection_request_content_o_auth_1.py +25 -0
  1351. auth0/management/types/update_connection_request_content_o_auth_2.py +26 -0
  1352. auth0/management/types/{connection_response_content_the_city_sandbox.py → update_connection_request_content_office_365.py} +7 -6
  1353. auth0/management/types/update_connection_request_content_oidc.py +31 -0
  1354. auth0/management/types/update_connection_request_content_okta.py +27 -0
  1355. auth0/management/types/update_connection_request_content_paypal.py +25 -0
  1356. auth0/management/types/{create_connection_request_content_miicard.py → update_connection_request_content_paypal_sandbox.py} +5 -6
  1357. auth0/management/types/update_connection_request_content_ping_federate.py +27 -0
  1358. auth0/management/types/update_connection_request_content_planning_center.py +25 -0
  1359. auth0/management/types/{connection_response_content_miicard.py → update_connection_request_content_salesforce.py} +5 -6
  1360. auth0/management/types/update_connection_request_content_salesforce_community.py +25 -0
  1361. auth0/management/types/update_connection_request_content_salesforce_sandbox.py +25 -0
  1362. auth0/management/types/update_connection_request_content_saml.py +27 -0
  1363. auth0/management/types/update_connection_request_content_sharepoint.py +27 -0
  1364. auth0/management/types/update_connection_request_content_shop.py +25 -0
  1365. auth0/management/types/update_connection_request_content_shopify.py +25 -0
  1366. auth0/management/types/update_connection_request_content_sms.py +25 -0
  1367. auth0/management/types/update_connection_request_content_soundcloud.py +25 -0
  1368. auth0/management/types/update_connection_request_content_thirty_seven_signals.py +25 -0
  1369. auth0/management/types/update_connection_request_content_twitter.py +25 -0
  1370. auth0/management/types/update_connection_request_content_untappd.py +25 -0
  1371. auth0/management/types/update_connection_request_content_vkontakte.py +25 -0
  1372. auth0/management/types/update_connection_request_content_weibo.py +25 -0
  1373. auth0/management/types/update_connection_request_content_windows_live.py +26 -0
  1374. auth0/management/types/update_connection_request_content_wordpress.py +25 -0
  1375. auth0/management/types/update_connection_request_content_yahoo.py +25 -0
  1376. auth0/management/types/update_connection_request_content_yammer.py +25 -0
  1377. auth0/management/types/update_connection_request_content_yandex.py +25 -0
  1378. auth0/management/types/update_connection_response_content.py +3 -3
  1379. auth0/management/types/update_custom_domain_response_content.py +13 -4
  1380. auth0/management/types/{set_guardian_factors_provider_push_notification_fcmv_1_request_content.py → update_default_canonical_domain_response_content.py} +5 -2
  1381. auth0/management/types/update_default_custom_domain_response_content.py +67 -0
  1382. auth0/management/types/update_default_domain_response_content.py +10 -0
  1383. auth0/management/types/update_directory_provisioning_request_content.py +3 -0
  1384. auth0/management/types/update_directory_provisioning_response_content.py +2 -0
  1385. auth0/management/types/update_email_provider_response_content.py +2 -2
  1386. auth0/management/types/update_email_template_response_content.py +25 -27
  1387. auth0/management/types/update_enabled_client_connections_request_content_item.py +1 -1
  1388. auth0/management/types/update_flows_vault_connection_setup.py +8 -0
  1389. auth0/management/types/{set_guardian_factors_provider_push_notification_apns_request_content.py → update_guardian_factors_provider_push_notification_apns_response_content.py} +1 -4
  1390. auth0/management/types/update_guardian_factors_provider_push_notification_fcm_response_content.py +5 -0
  1391. auth0/management/types/update_guardian_factors_provider_push_notification_fcmv_1_response_content.py +5 -0
  1392. auth0/management/types/update_guardian_factors_provider_push_notification_sns_response_content.py +4 -4
  1393. auth0/management/types/update_hook_response_content.py +9 -13
  1394. auth0/management/types/update_organization_discovery_domain_response_content.py +5 -0
  1395. auth0/management/types/update_organization_response_content.py +2 -2
  1396. auth0/management/types/update_phone_template_response_content.py +1 -1
  1397. auth0/management/types/update_refresh_token_response_content.py +55 -0
  1398. auth0/management/types/update_rule_response_content.py +6 -8
  1399. auth0/management/types/update_scim_configuration_response_content.py +12 -11
  1400. auth0/management/types/update_self_service_profile_response_content.py +2 -2
  1401. auth0/management/types/update_tenant_settings_response_content.py +25 -16
  1402. auth0/management/types/update_user_response_content.py +6 -6
  1403. auth0/management/types/update_verifiable_credential_template_response_content.py +3 -3
  1404. auth0/management/types/user_attribute_profile_strategy_overrides.py +3 -1
  1405. auth0/management/types/user_attribute_profile_strategy_overrides_mapping.py +5 -1
  1406. auth0/management/types/user_attribute_profile_strategy_overrides_user_id.py +3 -1
  1407. auth0/management/types/user_attribute_profile_user_attribute_additional_properties.py +8 -4
  1408. auth0/management/types/user_attribute_profile_user_id_oidc_mapping_enum.py +1 -1
  1409. auth0/management/types/user_block_identifier.py +2 -2
  1410. auth0/management/types/user_grant.py +5 -7
  1411. auth0/management/types/user_identity.py +15 -11
  1412. auth0/management/types/user_identity_schema.py +10 -10
  1413. auth0/management/types/user_profile_data.py +1 -1
  1414. auth0/management/types/user_response_schema.py +6 -6
  1415. auth0/management/types/verifiable_credential_template_response.py +3 -3
  1416. auth0/management/types/verify_custom_domain_response_content.py +6 -8
  1417. auth0/management/types/verify_email_ticket_response_content.py +1 -3
  1418. auth0/management/types/x_509_certificate_credential.py +29 -0
  1419. auth0/management/types/x_509_certificate_credential_type_enum.py +5 -0
  1420. auth0/management/user_grants/raw_client.py +2 -2
  1421. auth0/management/users/__init__.py +3 -0
  1422. auth0/management/users/authentication_methods/client.py +2 -0
  1423. auth0/management/users/authentication_methods/raw_client.py +4 -2
  1424. auth0/management/users/client.py +89 -74
  1425. auth0/management/users/groups/__init__.py +4 -0
  1426. auth0/management/users/groups/client.py +175 -0
  1427. auth0/management/users/groups/raw_client.py +268 -0
  1428. auth0/management/users/identities/client.py +4 -2
  1429. auth0/management/users/identities/raw_client.py +4 -2
  1430. auth0/management/users/logs/raw_client.py +2 -2
  1431. auth0/management/users/organizations/raw_client.py +2 -2
  1432. auth0/management/users/permissions/raw_client.py +2 -2
  1433. auth0/management/users/raw_client.py +72 -76
  1434. auth0/management/users/risk_assessments/client.py +2 -2
  1435. auth0/management/users/roles/raw_client.py +2 -2
  1436. {auth0_python-5.0.0b0.dist-info → auth0_python-5.2.0.dist-info}/METADATA +9 -15
  1437. {auth0_python-5.0.0b0.dist-info → auth0_python-5.2.0.dist-info}/RECORD +1439 -912
  1438. auth0/management/attack_protection/brute_force_protection/types/update_brute_force_settings_request_content_mode.py +0 -7
  1439. auth0/management/attack_protection/brute_force_protection/types/update_brute_force_settings_request_content_shields_item.py +0 -7
  1440. auth0/management/core/custom_pagination.py +0 -152
  1441. auth0/management/types/connection_options_evernote_sandbox.py +0 -5
  1442. auth0/management/types/connection_options_miicard.py +0 -5
  1443. auth0/management/types/connection_options_paypal_sandbox.py +0 -5
  1444. auth0/management/types/connection_options_renren.py +0 -5
  1445. auth0/management/types/connection_options_salesforce_common.py +0 -5
  1446. auth0/management/types/connection_options_salesforce_sandbox.py +0 -5
  1447. auth0/management/types/connection_options_the_city.py +0 -5
  1448. auth0/management/types/connection_options_the_city_sandbox.py +0 -5
  1449. auth0/management/types/connection_upstream_params_azure_ad.py +0 -7
  1450. auth0/management/types/create_connection_request_content_the_city_sandbox.py +0 -26
  1451. auth0/management/types/get_brute_force_settings_response_content_shields_item.py +0 -5
  1452. auth0/management/types/update_brute_force_settings_response_content_mode.py +0 -7
  1453. auth0/management/types/update_brute_force_settings_response_content_shields_item.py +0 -7
  1454. {auth0_python-5.0.0b0.dist-info → auth0_python-5.2.0.dist-info}/WHEEL +0 -0
  1455. {auth0_python-5.0.0b0.dist-info → auth0_python-5.2.0.dist-info}/licenses/LICENSE +0 -0
@@ -2,11 +2,10 @@ from __future__ import annotations
2
2
 
3
3
  from typing import Any
4
4
 
5
+ from .client_authentication import add_client_authentication
5
6
  from .rest import RestClient, RestClientOptions
6
7
  from .types import RequestData, TimeoutType
7
8
 
8
- from .client_authentication import add_client_authentication
9
-
10
9
  UNKNOWN_ERROR = "a0.sdk.internal.unknown"
11
10
 
12
11
 
@@ -22,6 +21,9 @@ class AuthenticationBase:
22
21
  telemetry (bool, optional): Enable or disable telemetry (defaults to True)
23
22
  timeout (float or tuple, optional): Change the requests connect and read timeout. Pass a tuple to specify both values separately or a float to set both to it. (defaults to 5.0 for both)
24
23
  protocol (str, optional): Useful for testing. (defaults to 'https')
24
+ client_info (dict, optional): Custom telemetry data for the Auth0-Client header.
25
+ When provided, overrides the default SDK telemetry. Useful for wrapper
26
+ SDKs that need to identify themselves. Ignored when telemetry is False.
25
27
  """
26
28
 
27
29
  def __init__(
@@ -34,6 +36,7 @@ class AuthenticationBase:
34
36
  telemetry: bool = True,
35
37
  timeout: TimeoutType = 5.0,
36
38
  protocol: str = "https",
39
+ client_info: dict[str, Any] | None = None,
37
40
  ) -> None:
38
41
  self.domain = domain
39
42
  self.client_id = client_id
@@ -43,7 +46,9 @@ class AuthenticationBase:
43
46
  self.protocol = protocol
44
47
  self.client = RestClient(
45
48
  None,
46
- options=RestClientOptions(telemetry=telemetry, timeout=timeout, retries=0),
49
+ options=RestClientOptions(
50
+ telemetry=telemetry, timeout=timeout, retries=0, client_info=client_info
51
+ ),
47
52
  )
48
53
 
49
54
  def _add_client_authentication(self, payload: dict[str, Any]) -> dict[str, Any]:
@@ -10,7 +10,6 @@ from typing import TYPE_CHECKING, Any, Mapping
10
10
  from urllib.parse import urlencode
11
11
 
12
12
  import requests
13
-
14
13
  from .exceptions import Auth0Error, RateLimitError
15
14
  from .types import RequestData, TimeoutType
16
15
 
@@ -38,6 +37,13 @@ class RestClientOptions:
38
37
  times using an exponential backoff strategy, before
39
38
  raising a RateLimitError exception. 10 retries max.
40
39
  (defaults to 3)
40
+ client_info (dict, optional): Custom telemetry data to send
41
+ in the Auth0-Client header instead of the default SDK
42
+ info. Useful for wrapper SDKs that need to identify
43
+ themselves. When provided, this dict is JSON-encoded
44
+ and base64-encoded as the header value. Ignored when
45
+ telemetry is False.
46
+ (defaults to None)
41
47
  """
42
48
 
43
49
  def __init__(
@@ -45,10 +51,12 @@ class RestClientOptions:
45
51
  telemetry: bool = True,
46
52
  timeout: TimeoutType = 5.0,
47
53
  retries: int = 3,
54
+ client_info: dict[str, Any] | None = None,
48
55
  ) -> None:
49
56
  self.telemetry = telemetry
50
57
  self.timeout = timeout
51
58
  self.retries = retries
59
+ self.client_info = client_info
52
60
 
53
61
 
54
62
  class RestClient:
@@ -94,17 +102,20 @@ class RestClient:
94
102
 
95
103
  if options.telemetry:
96
104
  py_version = platform.python_version()
97
- version = sys.modules["auth0"].__version__
98
105
 
99
- auth0_client = dumps(
100
- {
106
+ if options.client_info is not None:
107
+ auth0_client_dict = options.client_info
108
+ else:
109
+ version = sys.modules["auth0"].__version__
110
+ auth0_client_dict = {
101
111
  "name": "auth0-python",
102
112
  "version": version,
103
113
  "env": {
104
114
  "python": py_version,
105
115
  },
106
116
  }
107
- ).encode("utf-8")
117
+
118
+ auth0_client = dumps(auth0_client_dict).encode("utf-8")
108
119
 
109
120
  self.base_headers.update(
110
121
  {
@@ -1215,6 +1215,7 @@ if typing.TYPE_CHECKING:
1215
1215
  from .client import AsyncAuth0, Auth0
1216
1216
  from .environment import Auth0Environment
1217
1217
  from .event_streams import EventStreamsCreateRequest
1218
+ from .management_client import AsyncManagementClient, ManagementClient
1218
1219
  from .version import __version__
1219
1220
  _dynamic_imports: typing.Dict[str, str] = {
1220
1221
  "Action": ".types",
@@ -3340,6 +3341,8 @@ __all__ = [
3340
3341
  "LogStreamSumoEnum",
3341
3342
  "LogStreamSumoResponseSchema",
3342
3343
  "LogStreamSumoSink",
3344
+ "ManagementClient",
3345
+ "AsyncManagementClient",
3343
3346
  "MdlPresentationProperties",
3344
3347
  "MdlPresentationRequest",
3345
3348
  "MdlPresentationRequestProperties",
@@ -6,9 +6,10 @@ import typing
6
6
  from importlib import import_module
7
7
 
8
8
  if typing.TYPE_CHECKING:
9
- from . import executions, triggers, versions
9
+ from . import executions, modules, triggers, versions
10
10
  _dynamic_imports: typing.Dict[str, str] = {
11
11
  "executions": ".executions",
12
+ "modules": ".modules",
12
13
  "triggers": ".triggers",
13
14
  "versions": ".versions",
14
15
  }
@@ -35,4 +36,4 @@ def __dir__():
35
36
  return sorted(lazy_attrs)
36
37
 
37
38
 
38
- __all__ = ["executions", "triggers", "versions"]
39
+ __all__ = ["executions", "modules", "triggers", "versions"]
@@ -8,6 +8,7 @@ from ..core.client_wrapper import AsyncClientWrapper, SyncClientWrapper
8
8
  from ..core.pagination import AsyncPager, SyncPager
9
9
  from ..core.request_options import RequestOptions
10
10
  from ..types.action import Action
11
+ from ..types.action_module_reference import ActionModuleReference
11
12
  from ..types.action_secret_request import ActionSecretRequest
12
13
  from ..types.action_trigger import ActionTrigger
13
14
  from ..types.action_trigger_type_enum import ActionTriggerTypeEnum
@@ -23,6 +24,7 @@ from .raw_client import AsyncRawActionsClient, RawActionsClient
23
24
 
24
25
  if typing.TYPE_CHECKING:
25
26
  from .executions.client import AsyncExecutionsClient, ExecutionsClient
27
+ from .modules.client import AsyncModulesClient, ModulesClient
26
28
  from .triggers.client import AsyncTriggersClient, TriggersClient
27
29
  from .versions.client import AsyncVersionsClient, VersionsClient
28
30
  # this is used as the default value for optional parameters
@@ -35,6 +37,7 @@ class ActionsClient:
35
37
  self._client_wrapper = client_wrapper
36
38
  self._versions: typing.Optional[VersionsClient] = None
37
39
  self._executions: typing.Optional[ExecutionsClient] = None
40
+ self._modules: typing.Optional[ModulesClient] = None
38
41
  self._triggers: typing.Optional[TriggersClient] = None
39
42
 
40
43
  @property
@@ -124,13 +127,14 @@ class ActionsClient:
124
127
  def create(
125
128
  self,
126
129
  *,
127
- name: str = "my-action",
130
+ name: str,
128
131
  supported_triggers: typing.Sequence[ActionTrigger],
129
- code: typing.Optional[str] = "module.exports = () => {}",
132
+ code: typing.Optional[str] = OMIT,
130
133
  dependencies: typing.Optional[typing.Sequence[ActionVersionDependency]] = OMIT,
131
- runtime: typing.Optional[str] = "node22",
134
+ runtime: typing.Optional[str] = OMIT,
132
135
  secrets: typing.Optional[typing.Sequence[ActionSecretRequest]] = OMIT,
133
- deploy: typing.Optional[bool] = False,
136
+ modules: typing.Optional[typing.Sequence[ActionModuleReference]] = OMIT,
137
+ deploy: typing.Optional[bool] = OMIT,
134
138
  request_options: typing.Optional[RequestOptions] = None,
135
139
  ) -> CreateActionResponseContent:
136
140
  """
@@ -156,6 +160,9 @@ class ActionsClient:
156
160
  secrets : typing.Optional[typing.Sequence[ActionSecretRequest]]
157
161
  The list of secrets that are included in an action or a version of an action.
158
162
 
163
+ modules : typing.Optional[typing.Sequence[ActionModuleReference]]
164
+ The list of action modules and their versions used by this action.
165
+
159
166
  deploy : typing.Optional[bool]
160
167
  True if the action should be deployed after creation.
161
168
 
@@ -190,6 +197,7 @@ class ActionsClient:
190
197
  dependencies=dependencies,
191
198
  runtime=runtime,
192
199
  secrets=secrets,
200
+ modules=modules,
193
201
  deploy=deploy,
194
202
  request_options=request_options,
195
203
  )
@@ -266,12 +274,13 @@ class ActionsClient:
266
274
  self,
267
275
  id: str,
268
276
  *,
269
- name: typing.Optional[str] = "my-action",
277
+ name: typing.Optional[str] = OMIT,
270
278
  supported_triggers: typing.Optional[typing.Sequence[ActionTrigger]] = OMIT,
271
- code: typing.Optional[str] = "module.exports = () => {}",
279
+ code: typing.Optional[str] = OMIT,
272
280
  dependencies: typing.Optional[typing.Sequence[ActionVersionDependency]] = OMIT,
273
- runtime: typing.Optional[str] = "node22",
281
+ runtime: typing.Optional[str] = OMIT,
274
282
  secrets: typing.Optional[typing.Sequence[ActionSecretRequest]] = OMIT,
283
+ modules: typing.Optional[typing.Sequence[ActionModuleReference]] = OMIT,
275
284
  request_options: typing.Optional[RequestOptions] = None,
276
285
  ) -> UpdateActionResponseContent:
277
286
  """
@@ -300,6 +309,9 @@ class ActionsClient:
300
309
  secrets : typing.Optional[typing.Sequence[ActionSecretRequest]]
301
310
  The list of secrets that are included in an action or a version of an action.
302
311
 
312
+ modules : typing.Optional[typing.Sequence[ActionModuleReference]]
313
+ The list of action modules and their versions used by this action.
314
+
303
315
  request_options : typing.Optional[RequestOptions]
304
316
  Request-specific configuration.
305
317
 
@@ -327,6 +339,7 @@ class ActionsClient:
327
339
  dependencies=dependencies,
328
340
  runtime=runtime,
329
341
  secrets=secrets,
342
+ modules=modules,
330
343
  request_options=request_options,
331
344
  )
332
345
  return _response.data
@@ -416,6 +429,14 @@ class ActionsClient:
416
429
  self._executions = ExecutionsClient(client_wrapper=self._client_wrapper)
417
430
  return self._executions
418
431
 
432
+ @property
433
+ def modules(self):
434
+ if self._modules is None:
435
+ from .modules.client import ModulesClient # noqa: E402
436
+
437
+ self._modules = ModulesClient(client_wrapper=self._client_wrapper)
438
+ return self._modules
439
+
419
440
  @property
420
441
  def triggers(self):
421
442
  if self._triggers is None:
@@ -431,6 +452,7 @@ class AsyncActionsClient:
431
452
  self._client_wrapper = client_wrapper
432
453
  self._versions: typing.Optional[AsyncVersionsClient] = None
433
454
  self._executions: typing.Optional[AsyncExecutionsClient] = None
455
+ self._modules: typing.Optional[AsyncModulesClient] = None
434
456
  self._triggers: typing.Optional[AsyncTriggersClient] = None
435
457
 
436
458
  @property
@@ -529,13 +551,14 @@ class AsyncActionsClient:
529
551
  async def create(
530
552
  self,
531
553
  *,
532
- name: str = "my-action",
554
+ name: str,
533
555
  supported_triggers: typing.Sequence[ActionTrigger],
534
- code: typing.Optional[str] = "module.exports = () => {}",
556
+ code: typing.Optional[str] = OMIT,
535
557
  dependencies: typing.Optional[typing.Sequence[ActionVersionDependency]] = OMIT,
536
- runtime: typing.Optional[str] = "node22",
558
+ runtime: typing.Optional[str] = OMIT,
537
559
  secrets: typing.Optional[typing.Sequence[ActionSecretRequest]] = OMIT,
538
- deploy: typing.Optional[bool] = False,
560
+ modules: typing.Optional[typing.Sequence[ActionModuleReference]] = OMIT,
561
+ deploy: typing.Optional[bool] = OMIT,
539
562
  request_options: typing.Optional[RequestOptions] = None,
540
563
  ) -> CreateActionResponseContent:
541
564
  """
@@ -561,6 +584,9 @@ class AsyncActionsClient:
561
584
  secrets : typing.Optional[typing.Sequence[ActionSecretRequest]]
562
585
  The list of secrets that are included in an action or a version of an action.
563
586
 
587
+ modules : typing.Optional[typing.Sequence[ActionModuleReference]]
588
+ The list of action modules and their versions used by this action.
589
+
564
590
  deploy : typing.Optional[bool]
565
591
  True if the action should be deployed after creation.
566
592
 
@@ -603,6 +629,7 @@ class AsyncActionsClient:
603
629
  dependencies=dependencies,
604
630
  runtime=runtime,
605
631
  secrets=secrets,
632
+ modules=modules,
606
633
  deploy=deploy,
607
634
  request_options=request_options,
608
635
  )
@@ -697,12 +724,13 @@ class AsyncActionsClient:
697
724
  self,
698
725
  id: str,
699
726
  *,
700
- name: typing.Optional[str] = "my-action",
727
+ name: typing.Optional[str] = OMIT,
701
728
  supported_triggers: typing.Optional[typing.Sequence[ActionTrigger]] = OMIT,
702
- code: typing.Optional[str] = "module.exports = () => {}",
729
+ code: typing.Optional[str] = OMIT,
703
730
  dependencies: typing.Optional[typing.Sequence[ActionVersionDependency]] = OMIT,
704
- runtime: typing.Optional[str] = "node22",
731
+ runtime: typing.Optional[str] = OMIT,
705
732
  secrets: typing.Optional[typing.Sequence[ActionSecretRequest]] = OMIT,
733
+ modules: typing.Optional[typing.Sequence[ActionModuleReference]] = OMIT,
706
734
  request_options: typing.Optional[RequestOptions] = None,
707
735
  ) -> UpdateActionResponseContent:
708
736
  """
@@ -731,6 +759,9 @@ class AsyncActionsClient:
731
759
  secrets : typing.Optional[typing.Sequence[ActionSecretRequest]]
732
760
  The list of secrets that are included in an action or a version of an action.
733
761
 
762
+ modules : typing.Optional[typing.Sequence[ActionModuleReference]]
763
+ The list of action modules and their versions used by this action.
764
+
734
765
  request_options : typing.Optional[RequestOptions]
735
766
  Request-specific configuration.
736
767
 
@@ -766,6 +797,7 @@ class AsyncActionsClient:
766
797
  dependencies=dependencies,
767
798
  runtime=runtime,
768
799
  secrets=secrets,
800
+ modules=modules,
769
801
  request_options=request_options,
770
802
  )
771
803
  return _response.data
@@ -871,6 +903,14 @@ class AsyncActionsClient:
871
903
  self._executions = AsyncExecutionsClient(client_wrapper=self._client_wrapper)
872
904
  return self._executions
873
905
 
906
+ @property
907
+ def modules(self):
908
+ if self._modules is None:
909
+ from .modules.client import AsyncModulesClient # noqa: E402
910
+
911
+ self._modules = AsyncModulesClient(client_wrapper=self._client_wrapper)
912
+ return self._modules
913
+
874
914
  @property
875
915
  def triggers(self):
876
916
  if self._triggers is None:
@@ -6,14 +6,8 @@ import typing
6
6
  from importlib import import_module
7
7
 
8
8
  if typing.TYPE_CHECKING:
9
- from .update_brute_force_settings_request_content_mode import UpdateBruteForceSettingsRequestContentMode
10
- from .update_brute_force_settings_request_content_shields_item import (
11
- UpdateBruteForceSettingsRequestContentShieldsItem,
12
- )
13
- _dynamic_imports: typing.Dict[str, str] = {
14
- "UpdateBruteForceSettingsRequestContentMode": ".update_brute_force_settings_request_content_mode",
15
- "UpdateBruteForceSettingsRequestContentShieldsItem": ".update_brute_force_settings_request_content_shields_item",
16
- }
9
+ from . import versions
10
+ _dynamic_imports: typing.Dict[str, str] = {"versions": ".versions"}
17
11
 
18
12
 
19
13
  def __getattr__(attr_name: str) -> typing.Any:
@@ -37,4 +31,4 @@ def __dir__():
37
31
  return sorted(lazy_attrs)
38
32
 
39
33
 
40
- __all__ = ["UpdateBruteForceSettingsRequestContentMode", "UpdateBruteForceSettingsRequestContentShieldsItem"]
34
+ __all__ = ["versions"]