auth0-python 4.12.0__tar.gz → 5.0.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2774) hide show
  1. auth0_python-5.0.0/PKG-INFO +389 -0
  2. auth0_python-5.0.0/README.md +347 -0
  3. auth0_python-5.0.0/pyproject.toml +101 -0
  4. auth0_python-5.0.0/src/auth0/__init__.py +7 -0
  5. auth0_python-5.0.0/src/auth0/authentication/async_token_verifier.py +200 -0
  6. auth0_python-5.0.0/src/auth0/authentication/base.py +83 -0
  7. auth0_python-5.0.0/src/auth0/authentication/exceptions.py +32 -0
  8. auth0_python-5.0.0/src/auth0/authentication/rest.py +366 -0
  9. auth0_python-5.0.0/src/auth0/authentication/rest_async.py +163 -0
  10. auth0_python-5.0.0/src/auth0/authentication/token_verifier.py +459 -0
  11. auth0_python-5.0.0/src/auth0/authentication/users.py +53 -0
  12. auth0_python-5.0.0/src/auth0/management/__init__.py +3659 -0
  13. auth0_python-5.0.0/src/auth0/management/actions/__init__.py +39 -0
  14. auth0_python-5.0.0/src/auth0/management/actions/client.py +920 -0
  15. auth0_python-5.0.0/src/auth0/management/actions/executions/__init__.py +4 -0
  16. auth0_python-5.0.0/src/auth0/management/actions/executions/client.py +114 -0
  17. auth0_python-5.0.0/src/auth0/management/actions/executions/raw_client.py +215 -0
  18. auth0_python-5.0.0/src/auth0/management/actions/modules/__init__.py +34 -0
  19. auth0_python-5.0.0/src/auth0/management/actions/modules/client.py +757 -0
  20. auth0_python-5.0.0/src/auth0/management/actions/modules/raw_client.py +1635 -0
  21. auth0_python-5.0.0/src/auth0/management/actions/modules/versions/__init__.py +4 -0
  22. auth0_python-5.0.0/src/auth0/management/actions/modules/versions/client.py +272 -0
  23. auth0_python-5.0.0/src/auth0/management/actions/modules/versions/raw_client.py +623 -0
  24. auth0_python-5.0.0/src/auth0/management/actions/raw_client.py +1587 -0
  25. auth0_python-5.0.0/src/auth0/management/actions/triggers/__init__.py +34 -0
  26. auth0_python-5.0.0/src/auth0/management/actions/triggers/bindings/__init__.py +4 -0
  27. auth0_python-5.0.0/src/auth0/management/actions/triggers/bindings/client.py +245 -0
  28. auth0_python-5.0.0/src/auth0/management/actions/triggers/bindings/raw_client.py +452 -0
  29. auth0_python-5.0.0/src/auth0/management/actions/triggers/client.py +127 -0
  30. auth0_python-5.0.0/src/auth0/management/actions/triggers/raw_client.py +185 -0
  31. auth0_python-5.0.0/src/auth0/management/actions/versions/__init__.py +4 -0
  32. auth0_python-5.0.0/src/auth0/management/actions/versions/client.py +337 -0
  33. auth0_python-5.0.0/src/auth0/management/actions/versions/raw_client.py +649 -0
  34. auth0_python-5.0.0/src/auth0/management/anomaly/__init__.py +34 -0
  35. auth0_python-5.0.0/src/auth0/management/anomaly/blocks/__init__.py +4 -0
  36. auth0_python-5.0.0/src/auth0/management/anomaly/blocks/client.py +176 -0
  37. auth0_python-5.0.0/src/auth0/management/anomaly/blocks/raw_client.py +349 -0
  38. auth0_python-5.0.0/src/auth0/management/anomaly/client.py +63 -0
  39. auth0_python-5.0.0/src/auth0/management/anomaly/raw_client.py +13 -0
  40. auth0_python-5.0.0/src/auth0/management/attack_protection/__init__.py +46 -0
  41. auth0_python-5.0.0/src/auth0/management/attack_protection/bot_detection/__init__.py +4 -0
  42. auth0_python-5.0.0/src/auth0/management/attack_protection/bot_detection/client.py +236 -0
  43. auth0_python-5.0.0/src/auth0/management/attack_protection/bot_detection/raw_client.py +446 -0
  44. auth0_python-5.0.0/src/auth0/management/attack_protection/breached_password_detection/__init__.py +4 -0
  45. auth0_python-5.0.0/src/auth0/management/attack_protection/breached_password_detection/client.py +244 -0
  46. auth0_python-5.0.0/src/auth0/management/attack_protection/breached_password_detection/raw_client.py +412 -0
  47. auth0_python-5.0.0/src/auth0/management/attack_protection/brute_force_protection/__init__.py +4 -0
  48. auth0_python-5.0.0/src/auth0/management/attack_protection/brute_force_protection/client.py +230 -0
  49. auth0_python-5.0.0/src/auth0/management/attack_protection/brute_force_protection/raw_client.py +395 -0
  50. auth0_python-5.0.0/src/auth0/management/attack_protection/captcha/__init__.py +4 -0
  51. auth0_python-5.0.0/src/auth0/management/attack_protection/captcha/client.py +256 -0
  52. auth0_python-5.0.0/src/auth0/management/attack_protection/captcha/raw_client.py +470 -0
  53. auth0_python-5.0.0/src/auth0/management/attack_protection/client.py +144 -0
  54. auth0_python-5.0.0/src/auth0/management/attack_protection/raw_client.py +13 -0
  55. auth0_python-5.0.0/src/auth0/management/attack_protection/suspicious_ip_throttling/__init__.py +4 -0
  56. auth0_python-5.0.0/src/auth0/management/attack_protection/suspicious_ip_throttling/client.py +217 -0
  57. auth0_python-5.0.0/src/auth0/management/attack_protection/suspicious_ip_throttling/raw_client.py +393 -0
  58. auth0_python-5.0.0/src/auth0/management/branding/__init__.py +34 -0
  59. auth0_python-5.0.0/src/auth0/management/branding/client.py +268 -0
  60. auth0_python-5.0.0/src/auth0/management/branding/phone/__init__.py +34 -0
  61. auth0_python-5.0.0/src/auth0/management/branding/phone/client.py +82 -0
  62. auth0_python-5.0.0/src/auth0/management/branding/phone/providers/__init__.py +4 -0
  63. auth0_python-5.0.0/src/auth0/management/branding/phone/providers/client.py +593 -0
  64. auth0_python-5.0.0/src/auth0/management/branding/phone/providers/raw_client.py +1296 -0
  65. auth0_python-5.0.0/src/auth0/management/branding/phone/raw_client.py +13 -0
  66. auth0_python-5.0.0/src/auth0/management/branding/phone/templates/__init__.py +4 -0
  67. auth0_python-5.0.0/src/auth0/management/branding/phone/templates/client.py +607 -0
  68. auth0_python-5.0.0/src/auth0/management/branding/phone/templates/raw_client.py +1404 -0
  69. auth0_python-5.0.0/src/auth0/management/branding/raw_client.py +390 -0
  70. auth0_python-5.0.0/src/auth0/management/branding/templates/__init__.py +4 -0
  71. auth0_python-5.0.0/src/auth0/management/branding/templates/client.py +280 -0
  72. auth0_python-5.0.0/src/auth0/management/branding/templates/raw_client.py +607 -0
  73. auth0_python-5.0.0/src/auth0/management/branding/themes/__init__.py +4 -0
  74. auth0_python-5.0.0/src/auth0/management/branding/themes/client.py +849 -0
  75. auth0_python-5.0.0/src/auth0/management/branding/themes/raw_client.py +1058 -0
  76. auth0_python-5.0.0/src/auth0/management/client.py +971 -0
  77. auth0_python-5.0.0/src/auth0/management/client_grants/__init__.py +34 -0
  78. auth0_python-5.0.0/src/auth0/management/client_grants/client.py +661 -0
  79. auth0_python-5.0.0/src/auth0/management/client_grants/organizations/__init__.py +4 -0
  80. auth0_python-5.0.0/src/auth0/management/client_grants/organizations/client.py +149 -0
  81. auth0_python-5.0.0/src/auth0/management/client_grants/organizations/raw_client.py +242 -0
  82. auth0_python-5.0.0/src/auth0/management/client_grants/raw_client.py +1139 -0
  83. auth0_python-5.0.0/src/auth0/management/clients/__init__.py +34 -0
  84. auth0_python-5.0.0/src/auth0/management/clients/client.py +1826 -0
  85. auth0_python-5.0.0/src/auth0/management/clients/connections/__init__.py +4 -0
  86. auth0_python-5.0.0/src/auth0/management/clients/connections/client.py +212 -0
  87. auth0_python-5.0.0/src/auth0/management/clients/connections/raw_client.py +320 -0
  88. auth0_python-5.0.0/src/auth0/management/clients/credentials/__init__.py +4 -0
  89. auth0_python-5.0.0/src/auth0/management/clients/credentials/client.py +613 -0
  90. auth0_python-5.0.0/src/auth0/management/clients/credentials/raw_client.py +1098 -0
  91. auth0_python-5.0.0/src/auth0/management/clients/raw_client.py +2588 -0
  92. auth0_python-5.0.0/src/auth0/management/connection_profiles/__init__.py +4 -0
  93. auth0_python-5.0.0/src/auth0/management/connection_profiles/client.py +693 -0
  94. auth0_python-5.0.0/src/auth0/management/connection_profiles/raw_client.py +1350 -0
  95. auth0_python-5.0.0/src/auth0/management/connections/__init__.py +40 -0
  96. auth0_python-5.0.0/src/auth0/management/connections/client.py +944 -0
  97. auth0_python-5.0.0/src/auth0/management/connections/clients/__init__.py +4 -0
  98. auth0_python-5.0.0/src/auth0/management/connections/clients/client.py +251 -0
  99. auth0_python-5.0.0/src/auth0/management/connections/clients/raw_client.py +471 -0
  100. auth0_python-5.0.0/src/auth0/management/connections/directory_provisioning/__init__.py +34 -0
  101. auth0_python-5.0.0/src/auth0/management/connections/directory_provisioning/client.py +568 -0
  102. auth0_python-5.0.0/src/auth0/management/connections/directory_provisioning/raw_client.py +1253 -0
  103. auth0_python-5.0.0/src/auth0/management/connections/directory_provisioning/synchronizations/__init__.py +4 -0
  104. auth0_python-5.0.0/src/auth0/management/connections/directory_provisioning/synchronizations/client.py +114 -0
  105. auth0_python-5.0.0/src/auth0/management/connections/directory_provisioning/synchronizations/raw_client.py +238 -0
  106. auth0_python-5.0.0/src/auth0/management/connections/keys/__init__.py +4 -0
  107. auth0_python-5.0.0/src/auth0/management/connections/keys/client.py +205 -0
  108. auth0_python-5.0.0/src/auth0/management/connections/keys/raw_client.py +435 -0
  109. auth0_python-5.0.0/src/auth0/management/connections/raw_client.py +1517 -0
  110. auth0_python-5.0.0/src/auth0/management/connections/scim_configuration/__init__.py +34 -0
  111. auth0_python-5.0.0/src/auth0/management/connections/scim_configuration/client.py +482 -0
  112. auth0_python-5.0.0/src/auth0/management/connections/scim_configuration/raw_client.py +695 -0
  113. auth0_python-5.0.0/src/auth0/management/connections/scim_configuration/tokens/__init__.py +4 -0
  114. auth0_python-5.0.0/src/auth0/management/connections/scim_configuration/tokens/client.py +292 -0
  115. auth0_python-5.0.0/src/auth0/management/connections/scim_configuration/tokens/raw_client.py +445 -0
  116. auth0_python-5.0.0/src/auth0/management/connections/users/__init__.py +4 -0
  117. auth0_python-5.0.0/src/auth0/management/connections/users/client.py +117 -0
  118. auth0_python-5.0.0/src/auth0/management/connections/users/raw_client.py +187 -0
  119. auth0_python-5.0.0/src/auth0/management/core/__init__.py +115 -0
  120. auth0_python-5.0.0/src/auth0/management/core/api_error.py +23 -0
  121. auth0_python-5.0.0/src/auth0/management/core/client_wrapper.py +109 -0
  122. auth0_python-5.0.0/src/auth0/management/core/custom_pagination.py +152 -0
  123. auth0_python-5.0.0/src/auth0/management/core/datetime_utils.py +28 -0
  124. auth0_python-5.0.0/src/auth0/management/core/file.py +67 -0
  125. auth0_python-5.0.0/src/auth0/management/core/force_multipart.py +18 -0
  126. auth0_python-5.0.0/src/auth0/management/core/http_client.py +663 -0
  127. auth0_python-5.0.0/src/auth0/management/core/http_response.py +55 -0
  128. auth0_python-5.0.0/src/auth0/management/core/http_sse/__init__.py +42 -0
  129. auth0_python-5.0.0/src/auth0/management/core/http_sse/_api.py +112 -0
  130. auth0_python-5.0.0/src/auth0/management/core/http_sse/_decoders.py +61 -0
  131. auth0_python-5.0.0/src/auth0/management/core/http_sse/_exceptions.py +7 -0
  132. auth0_python-5.0.0/src/auth0/management/core/http_sse/_models.py +17 -0
  133. auth0_python-5.0.0/src/auth0/management/core/jsonable_encoder.py +108 -0
  134. auth0_python-5.0.0/src/auth0/management/core/pagination.py +82 -0
  135. auth0_python-5.0.0/src/auth0/management/core/pydantic_utilities.py +361 -0
  136. auth0_python-5.0.0/src/auth0/management/core/query_encoder.py +58 -0
  137. auth0_python-5.0.0/src/auth0/management/core/remove_none_from_dict.py +11 -0
  138. auth0_python-5.0.0/src/auth0/management/core/request_options.py +35 -0
  139. auth0_python-5.0.0/src/auth0/management/core/serialization.py +276 -0
  140. auth0_python-5.0.0/src/auth0/management/custom_domains/__init__.py +4 -0
  141. auth0_python-5.0.0/src/auth0/management/custom_domains/client.py +801 -0
  142. auth0_python-5.0.0/src/auth0/management/custom_domains/raw_client.py +1501 -0
  143. auth0_python-5.0.0/src/auth0/management/device_credentials/__init__.py +4 -0
  144. auth0_python-5.0.0/src/auth0/management/device_credentials/client.py +431 -0
  145. auth0_python-5.0.0/src/auth0/management/device_credentials/raw_client.py +716 -0
  146. auth0_python-5.0.0/src/auth0/management/email_templates/__init__.py +4 -0
  147. auth0_python-5.0.0/src/auth0/management/email_templates/client.py +635 -0
  148. auth0_python-5.0.0/src/auth0/management/email_templates/raw_client.py +1075 -0
  149. auth0_python-5.0.0/src/auth0/management/emails/__init__.py +34 -0
  150. auth0_python-5.0.0/src/auth0/management/emails/client.py +63 -0
  151. auth0_python-5.0.0/src/auth0/management/emails/provider/__init__.py +4 -0
  152. auth0_python-5.0.0/src/auth0/management/emails/provider/client.py +602 -0
  153. auth0_python-5.0.0/src/auth0/management/emails/provider/raw_client.py +1084 -0
  154. auth0_python-5.0.0/src/auth0/management/emails/raw_client.py +13 -0
  155. auth0_python-5.0.0/src/auth0/management/environment.py +7 -0
  156. auth0_python-5.0.0/src/auth0/management/errors/__init__.py +68 -0
  157. auth0_python-5.0.0/src/auth0/management/errors/bad_request_error.py +10 -0
  158. auth0_python-5.0.0/src/auth0/management/errors/conflict_error.py +10 -0
  159. auth0_python-5.0.0/src/auth0/management/errors/content_too_large_error.py +10 -0
  160. auth0_python-5.0.0/src/auth0/management/errors/forbidden_error.py +10 -0
  161. auth0_python-5.0.0/src/auth0/management/errors/internal_server_error.py +10 -0
  162. auth0_python-5.0.0/src/auth0/management/errors/not_found_error.py +10 -0
  163. auth0_python-5.0.0/src/auth0/management/errors/payment_required_error.py +10 -0
  164. auth0_python-5.0.0/src/auth0/management/errors/precondition_failed_error.py +10 -0
  165. auth0_python-5.0.0/src/auth0/management/errors/service_unavailable_error.py +10 -0
  166. auth0_python-5.0.0/src/auth0/management/errors/too_many_requests_error.py +10 -0
  167. auth0_python-5.0.0/src/auth0/management/errors/unauthorized_error.py +10 -0
  168. auth0_python-5.0.0/src/auth0/management/event_streams/__init__.py +39 -0
  169. auth0_python-5.0.0/src/auth0/management/event_streams/client.py +635 -0
  170. auth0_python-5.0.0/src/auth0/management/event_streams/deliveries/__init__.py +4 -0
  171. auth0_python-5.0.0/src/auth0/management/event_streams/deliveries/client.py +273 -0
  172. auth0_python-5.0.0/src/auth0/management/event_streams/deliveries/raw_client.py +450 -0
  173. auth0_python-5.0.0/src/auth0/management/event_streams/raw_client.py +1147 -0
  174. auth0_python-5.0.0/src/auth0/management/event_streams/redeliveries/__init__.py +4 -0
  175. auth0_python-5.0.0/src/auth0/management/event_streams/redeliveries/client.py +242 -0
  176. auth0_python-5.0.0/src/auth0/management/event_streams/redeliveries/raw_client.py +449 -0
  177. auth0_python-5.0.0/src/auth0/management/event_streams/types/__init__.py +34 -0
  178. auth0_python-5.0.0/src/auth0/management/event_streams/types/event_streams_create_request.py +13 -0
  179. auth0_python-5.0.0/src/auth0/management/flows/__init__.py +34 -0
  180. auth0_python-5.0.0/src/auth0/management/flows/client.py +555 -0
  181. auth0_python-5.0.0/src/auth0/management/flows/executions/__init__.py +4 -0
  182. auth0_python-5.0.0/src/auth0/management/flows/executions/client.py +329 -0
  183. auth0_python-5.0.0/src/auth0/management/flows/executions/raw_client.py +595 -0
  184. auth0_python-5.0.0/src/auth0/management/flows/raw_client.py +1050 -0
  185. auth0_python-5.0.0/src/auth0/management/flows/vault/__init__.py +34 -0
  186. auth0_python-5.0.0/src/auth0/management/flows/vault/client.py +63 -0
  187. auth0_python-5.0.0/src/auth0/management/flows/vault/connections/__init__.py +4 -0
  188. auth0_python-5.0.0/src/auth0/management/flows/vault/connections/client.py +483 -0
  189. auth0_python-5.0.0/src/auth0/management/flows/vault/connections/raw_client.py +989 -0
  190. auth0_python-5.0.0/src/auth0/management/flows/vault/raw_client.py +13 -0
  191. auth0_python-5.0.0/src/auth0/management/forms/__init__.py +4 -0
  192. auth0_python-5.0.0/src/auth0/management/forms/client.py +626 -0
  193. auth0_python-5.0.0/src/auth0/management/forms/raw_client.py +1142 -0
  194. auth0_python-5.0.0/src/auth0/management/groups/__init__.py +34 -0
  195. auth0_python-5.0.0/src/auth0/management/groups/client.py +305 -0
  196. auth0_python-5.0.0/src/auth0/management/groups/members/__init__.py +4 -0
  197. auth0_python-5.0.0/src/auth0/management/groups/members/client.py +175 -0
  198. auth0_python-5.0.0/src/auth0/management/groups/members/raw_client.py +268 -0
  199. auth0_python-5.0.0/src/auth0/management/groups/raw_client.py +485 -0
  200. auth0_python-5.0.0/src/auth0/management/guardian/__init__.py +38 -0
  201. auth0_python-5.0.0/src/auth0/management/guardian/client.py +101 -0
  202. auth0_python-5.0.0/src/auth0/management/guardian/enrollments/__init__.py +4 -0
  203. auth0_python-5.0.0/src/auth0/management/guardian/enrollments/client.py +327 -0
  204. auth0_python-5.0.0/src/auth0/management/guardian/enrollments/raw_client.py +541 -0
  205. auth0_python-5.0.0/src/auth0/management/guardian/factors/__init__.py +39 -0
  206. auth0_python-5.0.0/src/auth0/management/guardian/factors/client.py +268 -0
  207. auth0_python-5.0.0/src/auth0/management/guardian/factors/duo/__init__.py +34 -0
  208. auth0_python-5.0.0/src/auth0/management/guardian/factors/duo/client.py +63 -0
  209. auth0_python-5.0.0/src/auth0/management/guardian/factors/duo/raw_client.py +13 -0
  210. auth0_python-5.0.0/src/auth0/management/guardian/factors/duo/settings/__init__.py +4 -0
  211. auth0_python-5.0.0/src/auth0/management/guardian/factors/duo/settings/client.py +279 -0
  212. auth0_python-5.0.0/src/auth0/management/guardian/factors/duo/settings/raw_client.py +521 -0
  213. auth0_python-5.0.0/src/auth0/management/guardian/factors/phone/__init__.py +4 -0
  214. auth0_python-5.0.0/src/auth0/management/guardian/factors/phone/client.py +690 -0
  215. auth0_python-5.0.0/src/auth0/management/guardian/factors/phone/raw_client.py +1317 -0
  216. auth0_python-5.0.0/src/auth0/management/guardian/factors/push_notification/__init__.py +4 -0
  217. auth0_python-5.0.0/src/auth0/management/guardian/factors/push_notification/client.py +1043 -0
  218. auth0_python-5.0.0/src/auth0/management/guardian/factors/push_notification/raw_client.py +2017 -0
  219. auth0_python-5.0.0/src/auth0/management/guardian/factors/raw_client.py +332 -0
  220. auth0_python-5.0.0/src/auth0/management/guardian/factors/sms/__init__.py +4 -0
  221. auth0_python-5.0.0/src/auth0/management/guardian/factors/sms/client.py +557 -0
  222. auth0_python-5.0.0/src/auth0/management/guardian/factors/sms/raw_client.py +1005 -0
  223. auth0_python-5.0.0/src/auth0/management/guardian/policies/__init__.py +4 -0
  224. auth0_python-5.0.0/src/auth0/management/guardian/policies/client.py +211 -0
  225. auth0_python-5.0.0/src/auth0/management/guardian/policies/raw_client.py +351 -0
  226. auth0_python-5.0.0/src/auth0/management/guardian/raw_client.py +13 -0
  227. auth0_python-5.0.0/src/auth0/management/hooks/__init__.py +34 -0
  228. auth0_python-5.0.0/src/auth0/management/hooks/client.py +623 -0
  229. auth0_python-5.0.0/src/auth0/management/hooks/raw_client.py +1179 -0
  230. auth0_python-5.0.0/src/auth0/management/hooks/secrets/__init__.py +4 -0
  231. auth0_python-5.0.0/src/auth0/management/hooks/secrets/client.py +376 -0
  232. auth0_python-5.0.0/src/auth0/management/hooks/secrets/raw_client.py +804 -0
  233. auth0_python-5.0.0/src/auth0/management/jobs/__init__.py +41 -0
  234. auth0_python-5.0.0/src/auth0/management/jobs/client.py +192 -0
  235. auth0_python-5.0.0/src/auth0/management/jobs/errors/__init__.py +34 -0
  236. auth0_python-5.0.0/src/auth0/management/jobs/errors/client.py +110 -0
  237. auth0_python-5.0.0/src/auth0/management/jobs/errors/raw_client.py +215 -0
  238. auth0_python-5.0.0/src/auth0/management/jobs/errors/types/__init__.py +34 -0
  239. auth0_python-5.0.0/src/auth0/management/jobs/errors/types/errors_get_response.py +8 -0
  240. auth0_python-5.0.0/src/auth0/management/jobs/raw_client.py +215 -0
  241. auth0_python-5.0.0/src/auth0/management/jobs/users_exports/__init__.py +4 -0
  242. auth0_python-5.0.0/src/auth0/management/jobs/users_exports/client.py +147 -0
  243. auth0_python-5.0.0/src/auth0/management/jobs/users_exports/raw_client.py +249 -0
  244. auth0_python-5.0.0/src/auth0/management/jobs/users_imports/__init__.py +4 -0
  245. auth0_python-5.0.0/src/auth0/management/jobs/users_imports/client.py +170 -0
  246. auth0_python-5.0.0/src/auth0/management/jobs/users_imports/raw_client.py +301 -0
  247. auth0_python-5.0.0/src/auth0/management/jobs/verification_email/__init__.py +4 -0
  248. auth0_python-5.0.0/src/auth0/management/jobs/verification_email/client.py +162 -0
  249. auth0_python-5.0.0/src/auth0/management/jobs/verification_email/raw_client.py +252 -0
  250. auth0_python-5.0.0/src/auth0/management/keys/__init__.py +38 -0
  251. auth0_python-5.0.0/src/auth0/management/keys/client.py +101 -0
  252. auth0_python-5.0.0/src/auth0/management/keys/custom_signing/__init__.py +4 -0
  253. auth0_python-5.0.0/src/auth0/management/keys/custom_signing/client.py +247 -0
  254. auth0_python-5.0.0/src/auth0/management/keys/custom_signing/raw_client.py +494 -0
  255. auth0_python-5.0.0/src/auth0/management/keys/encryption/__init__.py +4 -0
  256. auth0_python-5.0.0/src/auth0/management/keys/encryption/client.py +595 -0
  257. auth0_python-5.0.0/src/auth0/management/keys/encryption/raw_client.py +1313 -0
  258. auth0_python-5.0.0/src/auth0/management/keys/raw_client.py +13 -0
  259. auth0_python-5.0.0/src/auth0/management/keys/signing/__init__.py +4 -0
  260. auth0_python-5.0.0/src/auth0/management/keys/signing/client.py +313 -0
  261. auth0_python-5.0.0/src/auth0/management/keys/signing/raw_client.py +660 -0
  262. auth0_python-5.0.0/src/auth0/management/log_streams/__init__.py +4 -0
  263. auth0_python-5.0.0/src/auth0/management/log_streams/client.py +1125 -0
  264. auth0_python-5.0.0/src/auth0/management/log_streams/raw_client.py +1636 -0
  265. auth0_python-5.0.0/src/auth0/management/logs/__init__.py +4 -0
  266. auth0_python-5.0.0/src/auth0/management/logs/client.py +340 -0
  267. auth0_python-5.0.0/src/auth0/management/logs/raw_client.py +547 -0
  268. auth0_python-5.0.0/src/auth0/management/management_client.py +545 -0
  269. auth0_python-5.0.0/src/auth0/management/network_acls/__init__.py +4 -0
  270. auth0_python-5.0.0/src/auth0/management/network_acls/client.py +654 -0
  271. auth0_python-5.0.0/src/auth0/management/network_acls/raw_client.py +1332 -0
  272. auth0_python-5.0.0/src/auth0/management/organizations/__init__.py +40 -0
  273. auth0_python-5.0.0/src/auth0/management/organizations/client.py +779 -0
  274. auth0_python-5.0.0/src/auth0/management/organizations/client_grants/__init__.py +4 -0
  275. auth0_python-5.0.0/src/auth0/management/organizations/client_grants/client.py +361 -0
  276. auth0_python-5.0.0/src/auth0/management/organizations/client_grants/raw_client.py +701 -0
  277. auth0_python-5.0.0/src/auth0/management/organizations/discovery_domains/__init__.py +4 -0
  278. auth0_python-5.0.0/src/auth0/management/organizations/discovery_domains/client.py +643 -0
  279. auth0_python-5.0.0/src/auth0/management/organizations/discovery_domains/raw_client.py +1251 -0
  280. auth0_python-5.0.0/src/auth0/management/organizations/enabled_connections/__init__.py +4 -0
  281. auth0_python-5.0.0/src/auth0/management/organizations/enabled_connections/client.py +597 -0
  282. auth0_python-5.0.0/src/auth0/management/organizations/enabled_connections/raw_client.py +1027 -0
  283. auth0_python-5.0.0/src/auth0/management/organizations/invitations/__init__.py +4 -0
  284. auth0_python-5.0.0/src/auth0/management/organizations/invitations/client.py +594 -0
  285. auth0_python-5.0.0/src/auth0/management/organizations/invitations/raw_client.py +1000 -0
  286. auth0_python-5.0.0/src/auth0/management/organizations/members/__init__.py +34 -0
  287. auth0_python-5.0.0/src/auth0/management/organizations/members/client.py +406 -0
  288. auth0_python-5.0.0/src/auth0/management/organizations/members/raw_client.py +656 -0
  289. auth0_python-5.0.0/src/auth0/management/organizations/members/roles/__init__.py +4 -0
  290. auth0_python-5.0.0/src/auth0/management/organizations/members/roles/client.py +388 -0
  291. auth0_python-5.0.0/src/auth0/management/organizations/members/roles/raw_client.py +681 -0
  292. auth0_python-5.0.0/src/auth0/management/organizations/raw_client.py +1308 -0
  293. auth0_python-5.0.0/src/auth0/management/prompts/__init__.py +38 -0
  294. auth0_python-5.0.0/src/auth0/management/prompts/client.py +269 -0
  295. auth0_python-5.0.0/src/auth0/management/prompts/custom_text/__init__.py +4 -0
  296. auth0_python-5.0.0/src/auth0/management/prompts/custom_text/client.py +232 -0
  297. auth0_python-5.0.0/src/auth0/management/prompts/custom_text/raw_client.py +415 -0
  298. auth0_python-5.0.0/src/auth0/management/prompts/partials/__init__.py +4 -0
  299. auth0_python-5.0.0/src/auth0/management/prompts/partials/client.py +205 -0
  300. auth0_python-5.0.0/src/auth0/management/prompts/partials/raw_client.py +392 -0
  301. auth0_python-5.0.0/src/auth0/management/prompts/raw_client.py +372 -0
  302. auth0_python-5.0.0/src/auth0/management/prompts/rendering/__init__.py +4 -0
  303. auth0_python-5.0.0/src/auth0/management/prompts/rendering/client.py +558 -0
  304. auth0_python-5.0.0/src/auth0/management/prompts/rendering/raw_client.py +1055 -0
  305. auth0_python-5.0.0/src/auth0/management/refresh_tokens/__init__.py +4 -0
  306. auth0_python-5.0.0/src/auth0/management/refresh_tokens/client.py +277 -0
  307. auth0_python-5.0.0/src/auth0/management/refresh_tokens/raw_client.py +560 -0
  308. auth0_python-5.0.0/src/auth0/management/resource_servers/__init__.py +4 -0
  309. auth0_python-5.0.0/src/auth0/management/resource_servers/client.py +780 -0
  310. auth0_python-5.0.0/src/auth0/management/resource_servers/raw_client.py +1369 -0
  311. auth0_python-5.0.0/src/auth0/management/risk_assessments/__init__.py +34 -0
  312. auth0_python-5.0.0/src/auth0/management/risk_assessments/client.py +63 -0
  313. auth0_python-5.0.0/src/auth0/management/risk_assessments/raw_client.py +13 -0
  314. auth0_python-5.0.0/src/auth0/management/risk_assessments/settings/__init__.py +34 -0
  315. auth0_python-5.0.0/src/auth0/management/risk_assessments/settings/client.py +206 -0
  316. auth0_python-5.0.0/src/auth0/management/risk_assessments/settings/new_device/__init__.py +4 -0
  317. auth0_python-5.0.0/src/auth0/management/risk_assessments/settings/new_device/client.py +186 -0
  318. auth0_python-5.0.0/src/auth0/management/risk_assessments/settings/new_device/raw_client.py +396 -0
  319. auth0_python-5.0.0/src/auth0/management/risk_assessments/settings/raw_client.py +392 -0
  320. auth0_python-5.0.0/src/auth0/management/roles/__init__.py +34 -0
  321. auth0_python-5.0.0/src/auth0/management/roles/client.py +554 -0
  322. auth0_python-5.0.0/src/auth0/management/roles/permissions/__init__.py +4 -0
  323. auth0_python-5.0.0/src/auth0/management/roles/permissions/client.py +367 -0
  324. auth0_python-5.0.0/src/auth0/management/roles/permissions/raw_client.py +653 -0
  325. auth0_python-5.0.0/src/auth0/management/roles/raw_client.py +1057 -0
  326. auth0_python-5.0.0/src/auth0/management/roles/users/__init__.py +4 -0
  327. auth0_python-5.0.0/src/auth0/management/roles/users/client.py +274 -0
  328. auth0_python-5.0.0/src/auth0/management/roles/users/raw_client.py +503 -0
  329. auth0_python-5.0.0/src/auth0/management/rules/__init__.py +4 -0
  330. auth0_python-5.0.0/src/auth0/management/rules/client.py +605 -0
  331. auth0_python-5.0.0/src/auth0/management/rules/raw_client.py +1191 -0
  332. auth0_python-5.0.0/src/auth0/management/rules_configs/__init__.py +4 -0
  333. auth0_python-5.0.0/src/auth0/management/rules_configs/client.py +258 -0
  334. auth0_python-5.0.0/src/auth0/management/rules_configs/raw_client.py +461 -0
  335. auth0_python-5.0.0/src/auth0/management/self_service_profiles/__init__.py +34 -0
  336. auth0_python-5.0.0/src/auth0/management/self_service_profiles/client.py +628 -0
  337. auth0_python-5.0.0/src/auth0/management/self_service_profiles/custom_text/__init__.py +4 -0
  338. auth0_python-5.0.0/src/auth0/management/self_service_profiles/custom_text/client.py +259 -0
  339. auth0_python-5.0.0/src/auth0/management/self_service_profiles/custom_text/raw_client.py +429 -0
  340. auth0_python-5.0.0/src/auth0/management/self_service_profiles/raw_client.py +1231 -0
  341. auth0_python-5.0.0/src/auth0/management/self_service_profiles/sso_ticket/__init__.py +4 -0
  342. auth0_python-5.0.0/src/auth0/management/self_service_profiles/sso_ticket/client.py +291 -0
  343. auth0_python-5.0.0/src/auth0/management/self_service_profiles/sso_ticket/raw_client.py +460 -0
  344. auth0_python-5.0.0/src/auth0/management/sessions/__init__.py +4 -0
  345. auth0_python-5.0.0/src/auth0/management/sessions/client.py +341 -0
  346. auth0_python-5.0.0/src/auth0/management/sessions/raw_client.py +730 -0
  347. auth0_python-5.0.0/src/auth0/management/stats/__init__.py +4 -0
  348. auth0_python-5.0.0/src/auth0/management/stats/client.py +195 -0
  349. auth0_python-5.0.0/src/auth0/management/stats/raw_client.py +352 -0
  350. auth0_python-5.0.0/src/auth0/management/supplemental_signals/__init__.py +4 -0
  351. auth0_python-5.0.0/src/auth0/management/supplemental_signals/client.py +180 -0
  352. auth0_python-5.0.0/src/auth0/management/supplemental_signals/raw_client.py +369 -0
  353. auth0_python-5.0.0/src/auth0/management/tenants/__init__.py +34 -0
  354. auth0_python-5.0.0/src/auth0/management/tenants/client.py +63 -0
  355. auth0_python-5.0.0/src/auth0/management/tenants/raw_client.py +13 -0
  356. auth0_python-5.0.0/src/auth0/management/tenants/settings/__init__.py +4 -0
  357. auth0_python-5.0.0/src/auth0/management/tenants/settings/client.py +542 -0
  358. auth0_python-5.0.0/src/auth0/management/tenants/settings/raw_client.py +768 -0
  359. auth0_python-5.0.0/src/auth0/management/tickets/__init__.py +4 -0
  360. auth0_python-5.0.0/src/auth0/management/tickets/client.py +364 -0
  361. auth0_python-5.0.0/src/auth0/management/tickets/raw_client.py +607 -0
  362. auth0_python-5.0.0/src/auth0/management/token_exchange_profiles/__init__.py +4 -0
  363. auth0_python-5.0.0/src/auth0/management/token_exchange_profiles/client.py +543 -0
  364. auth0_python-5.0.0/src/auth0/management/token_exchange_profiles/raw_client.py +1039 -0
  365. auth0_python-5.0.0/src/auth0/management/token_provider.py +142 -0
  366. auth0_python-5.0.0/src/auth0/management/types/__init__.py +6928 -0
  367. auth0_python-5.0.0/src/auth0/management/types/action.py +98 -0
  368. auth0_python-5.0.0/src/auth0/management/types/action_base.py +53 -0
  369. auth0_python-5.0.0/src/auth0/management/types/action_binding.py +46 -0
  370. auth0_python-5.0.0/src/auth0/management/types/action_binding_ref.py +28 -0
  371. auth0_python-5.0.0/src/auth0/management/types/action_binding_ref_type_enum.py +5 -0
  372. auth0_python-5.0.0/src/auth0/management/types/action_binding_type_enum.py +5 -0
  373. auth0_python-5.0.0/src/auth0/management/types/action_binding_with_ref.py +30 -0
  374. auth0_python-5.0.0/src/auth0/management/types/action_build_status_enum.py +7 -0
  375. auth0_python-5.0.0/src/auth0/management/types/action_deployed_version.py +101 -0
  376. auth0_python-5.0.0/src/auth0/management/types/action_error.py +25 -0
  377. auth0_python-5.0.0/src/auth0/management/types/action_execution_result.py +39 -0
  378. auth0_python-5.0.0/src/auth0/management/types/action_execution_status_enum.py +7 -0
  379. auth0_python-5.0.0/src/auth0/management/types/action_module_action.py +43 -0
  380. auth0_python-5.0.0/src/auth0/management/types/action_module_dependency.py +27 -0
  381. auth0_python-5.0.0/src/auth0/management/types/action_module_dependency_request.py +27 -0
  382. auth0_python-5.0.0/src/auth0/management/types/action_module_list_item.py +70 -0
  383. auth0_python-5.0.0/src/auth0/management/types/action_module_reference.py +41 -0
  384. auth0_python-5.0.0/src/auth0/management/types/action_module_secret.py +28 -0
  385. auth0_python-5.0.0/src/auth0/management/types/action_module_secret_request.py +27 -0
  386. auth0_python-5.0.0/src/auth0/management/types/action_module_version.py +55 -0
  387. auth0_python-5.0.0/src/auth0/management/types/action_module_version_reference.py +54 -0
  388. auth0_python-5.0.0/src/auth0/management/types/action_secret_request.py +27 -0
  389. auth0_python-5.0.0/src/auth0/management/types/action_secret_response.py +28 -0
  390. auth0_python-5.0.0/src/auth0/management/types/action_trigger.py +48 -0
  391. auth0_python-5.0.0/src/auth0/management/types/action_trigger_compatible_trigger.py +24 -0
  392. auth0_python-5.0.0/src/auth0/management/types/action_trigger_type_enum.py +3 -0
  393. auth0_python-5.0.0/src/auth0/management/types/action_version.py +97 -0
  394. auth0_python-5.0.0/src/auth0/management/types/action_version_build_status_enum.py +7 -0
  395. auth0_python-5.0.0/src/auth0/management/types/action_version_dependency.py +36 -0
  396. auth0_python-5.0.0/src/auth0/management/types/acul_client_filter.py +8 -0
  397. auth0_python-5.0.0/src/auth0/management/types/acul_client_filter_by_id.py +22 -0
  398. auth0_python-5.0.0/src/auth0/management/types/acul_client_filter_by_metadata.py +20 -0
  399. auth0_python-5.0.0/src/auth0/management/types/acul_client_metadata.py +5 -0
  400. auth0_python-5.0.0/src/auth0/management/types/acul_configs.py +7 -0
  401. auth0_python-5.0.0/src/auth0/management/types/acul_configs_item.py +44 -0
  402. auth0_python-5.0.0/src/auth0/management/types/acul_context_configuration.py +7 -0
  403. auth0_python-5.0.0/src/auth0/management/types/acul_context_configuration_item.py +7 -0
  404. auth0_python-5.0.0/src/auth0/management/types/acul_context_enum.py +26 -0
  405. auth0_python-5.0.0/src/auth0/management/types/acul_domain_filter.py +8 -0
  406. auth0_python-5.0.0/src/auth0/management/types/acul_domain_filter_by_id.py +22 -0
  407. auth0_python-5.0.0/src/auth0/management/types/acul_domain_filter_by_metadata.py +20 -0
  408. auth0_python-5.0.0/src/auth0/management/types/acul_domain_metadata.py +5 -0
  409. auth0_python-5.0.0/src/auth0/management/types/acul_filters.py +41 -0
  410. auth0_python-5.0.0/src/auth0/management/types/acul_head_tag.py +27 -0
  411. auth0_python-5.0.0/src/auth0/management/types/acul_head_tag_attributes.py +5 -0
  412. auth0_python-5.0.0/src/auth0/management/types/acul_head_tag_content.py +3 -0
  413. auth0_python-5.0.0/src/auth0/management/types/acul_match_type_enum.py +5 -0
  414. auth0_python-5.0.0/src/auth0/management/types/acul_organization_filter.py +8 -0
  415. auth0_python-5.0.0/src/auth0/management/types/acul_organization_filter_by_id.py +22 -0
  416. auth0_python-5.0.0/src/auth0/management/types/acul_organization_filter_by_metadata.py +20 -0
  417. auth0_python-5.0.0/src/auth0/management/types/acul_organization_metadata.py +5 -0
  418. auth0_python-5.0.0/src/auth0/management/types/acul_rendering_mode_enum.py +5 -0
  419. auth0_python-5.0.0/src/auth0/management/types/add_organization_connection_response_content.py +40 -0
  420. auth0_python-5.0.0/src/auth0/management/types/anomaly_ip_format.py +3 -0
  421. auth0_python-5.0.0/src/auth0/management/types/app_metadata.py +5 -0
  422. auth0_python-5.0.0/src/auth0/management/types/assessors_type_enum.py +5 -0
  423. auth0_python-5.0.0/src/auth0/management/types/associate_organization_client_grant_response_content.py +44 -0
  424. auth0_python-5.0.0/src/auth0/management/types/async_approval_notifications_channels_enum.py +5 -0
  425. auth0_python-5.0.0/src/auth0/management/types/attack_protection_captcha_arkose_response_content.py +37 -0
  426. auth0_python-5.0.0/src/auth0/management/types/attack_protection_captcha_auth_challenge_request.py +22 -0
  427. auth0_python-5.0.0/src/auth0/management/types/attack_protection_captcha_auth_challenge_response_content.py +22 -0
  428. auth0_python-5.0.0/src/auth0/management/types/attack_protection_captcha_friendly_captcha_response_content.py +22 -0
  429. auth0_python-5.0.0/src/auth0/management/types/attack_protection_captcha_hcaptcha_response_content.py +22 -0
  430. auth0_python-5.0.0/src/auth0/management/types/attack_protection_captcha_provider_id.py +16 -0
  431. auth0_python-5.0.0/src/auth0/management/types/attack_protection_captcha_recaptcha_enterprise_response_content.py +27 -0
  432. auth0_python-5.0.0/src/auth0/management/types/attack_protection_captcha_recaptcha_v_2_response_content.py +22 -0
  433. auth0_python-5.0.0/src/auth0/management/types/attack_protection_captcha_simple_captcha_response_content.py +5 -0
  434. auth0_python-5.0.0/src/auth0/management/types/attack_protection_update_captcha_arkose.py +42 -0
  435. auth0_python-5.0.0/src/auth0/management/types/attack_protection_update_captcha_friendly_captcha.py +27 -0
  436. auth0_python-5.0.0/src/auth0/management/types/attack_protection_update_captcha_hcaptcha.py +27 -0
  437. auth0_python-5.0.0/src/auth0/management/types/attack_protection_update_captcha_recaptcha_enterprise.py +32 -0
  438. auth0_python-5.0.0/src/auth0/management/types/attack_protection_update_captcha_recaptcha_v_2.py +27 -0
  439. auth0_python-5.0.0/src/auth0/management/types/authentication_method_type_enum.py +20 -0
  440. auth0_python-5.0.0/src/auth0/management/types/authentication_type_enum.py +5 -0
  441. auth0_python-5.0.0/src/auth0/management/types/bot_detection_allowlist.py +7 -0
  442. auth0_python-5.0.0/src/auth0/management/types/bot_detection_challenge_policy_password_flow_enum.py +5 -0
  443. auth0_python-5.0.0/src/auth0/management/types/bot_detection_challenge_policy_password_reset_flow_enum.py +7 -0
  444. auth0_python-5.0.0/src/auth0/management/types/bot_detection_challenge_policy_passwordless_flow_enum.py +7 -0
  445. auth0_python-5.0.0/src/auth0/management/types/bot_detection_cidr_block.py +3 -0
  446. auth0_python-5.0.0/src/auth0/management/types/bot_detection_i_pv_4.py +3 -0
  447. auth0_python-5.0.0/src/auth0/management/types/bot_detection_i_pv_6.py +3 -0
  448. auth0_python-5.0.0/src/auth0/management/types/bot_detection_i_pv_6_cidr_block.py +3 -0
  449. auth0_python-5.0.0/src/auth0/management/types/bot_detection_ip_address_or_cidr_block.py +3 -0
  450. auth0_python-5.0.0/src/auth0/management/types/bot_detection_level_enum.py +5 -0
  451. auth0_python-5.0.0/src/auth0/management/types/bot_detection_monitoring_mode_enabled.py +3 -0
  452. auth0_python-5.0.0/src/auth0/management/types/branding_colors.py +29 -0
  453. auth0_python-5.0.0/src/auth0/management/types/branding_font.py +26 -0
  454. auth0_python-5.0.0/src/auth0/management/types/branding_page_background.py +5 -0
  455. auth0_python-5.0.0/src/auth0/management/types/branding_theme_borders.py +56 -0
  456. auth0_python-5.0.0/src/auth0/management/types/branding_theme_borders_buttons_style_enum.py +5 -0
  457. auth0_python-5.0.0/src/auth0/management/types/branding_theme_borders_inputs_style_enum.py +5 -0
  458. auth0_python-5.0.0/src/auth0/management/types/branding_theme_colors.py +114 -0
  459. auth0_python-5.0.0/src/auth0/management/types/branding_theme_colors_captcha_widget_theme_enum.py +5 -0
  460. auth0_python-5.0.0/src/auth0/management/types/branding_theme_font_body_text.py +31 -0
  461. auth0_python-5.0.0/src/auth0/management/types/branding_theme_font_buttons_text.py +31 -0
  462. auth0_python-5.0.0/src/auth0/management/types/branding_theme_font_input_labels.py +31 -0
  463. auth0_python-5.0.0/src/auth0/management/types/branding_theme_font_links.py +31 -0
  464. auth0_python-5.0.0/src/auth0/management/types/branding_theme_font_links_style_enum.py +5 -0
  465. auth0_python-5.0.0/src/auth0/management/types/branding_theme_font_subtitle.py +31 -0
  466. auth0_python-5.0.0/src/auth0/management/types/branding_theme_font_title.py +31 -0
  467. auth0_python-5.0.0/src/auth0/management/types/branding_theme_fonts.py +42 -0
  468. auth0_python-5.0.0/src/auth0/management/types/branding_theme_page_background.py +30 -0
  469. auth0_python-5.0.0/src/auth0/management/types/branding_theme_page_background_page_layout_enum.py +5 -0
  470. auth0_python-5.0.0/src/auth0/management/types/branding_theme_widget.py +34 -0
  471. auth0_python-5.0.0/src/auth0/management/types/branding_theme_widget_header_text_alignment_enum.py +5 -0
  472. auth0_python-5.0.0/src/auth0/management/types/branding_theme_widget_logo_position_enum.py +5 -0
  473. auth0_python-5.0.0/src/auth0/management/types/branding_theme_widget_social_buttons_layout_enum.py +5 -0
  474. auth0_python-5.0.0/src/auth0/management/types/breached_password_detection_admin_notification_frequency_enum.py +7 -0
  475. auth0_python-5.0.0/src/auth0/management/types/breached_password_detection_method_enum.py +5 -0
  476. auth0_python-5.0.0/src/auth0/management/types/breached_password_detection_pre_change_password_shields_enum.py +7 -0
  477. auth0_python-5.0.0/src/auth0/management/types/breached_password_detection_pre_change_password_stage.py +28 -0
  478. auth0_python-5.0.0/src/auth0/management/types/breached_password_detection_pre_user_registration_shields_enum.py +7 -0
  479. auth0_python-5.0.0/src/auth0/management/types/breached_password_detection_pre_user_registration_stage.py +28 -0
  480. auth0_python-5.0.0/src/auth0/management/types/breached_password_detection_shields_enum.py +7 -0
  481. auth0_python-5.0.0/src/auth0/management/types/breached_password_detection_stage.py +28 -0
  482. auth0_python-5.0.0/src/auth0/management/types/brute_force_protection_mode_enum.py +7 -0
  483. auth0_python-5.0.0/src/auth0/management/types/brute_force_protection_shields_enum.py +5 -0
  484. auth0_python-5.0.0/src/auth0/management/types/bulk_update_acul_response_content.py +20 -0
  485. auth0_python-5.0.0/src/auth0/management/types/certificate_subject_dn_credential.py +36 -0
  486. auth0_python-5.0.0/src/auth0/management/types/certificate_subject_dn_credential_type_enum.py +5 -0
  487. auth0_python-5.0.0/src/auth0/management/types/change_password_ticket_identity.py +33 -0
  488. auth0_python-5.0.0/src/auth0/management/types/change_password_ticket_response_content.py +24 -0
  489. auth0_python-5.0.0/src/auth0/management/types/client.py +235 -0
  490. auth0_python-5.0.0/src/auth0/management/types/client_addon_aws.py +36 -0
  491. auth0_python-5.0.0/src/auth0/management/types/client_addon_azure_blob.py +98 -0
  492. auth0_python-5.0.0/src/auth0/management/types/client_addon_azure_sb.py +54 -0
  493. auth0_python-5.0.0/src/auth0/management/types/client_addon_box.py +5 -0
  494. auth0_python-5.0.0/src/auth0/management/types/client_addon_cloud_bees.py +5 -0
  495. auth0_python-5.0.0/src/auth0/management/types/client_addon_concur.py +5 -0
  496. auth0_python-5.0.0/src/auth0/management/types/client_addon_dropbox.py +5 -0
  497. auth0_python-5.0.0/src/auth0/management/types/client_addon_echo_sign.py +26 -0
  498. auth0_python-5.0.0/src/auth0/management/types/client_addon_egnyte.py +26 -0
  499. auth0_python-5.0.0/src/auth0/management/types/client_addon_firebase.py +46 -0
  500. auth0_python-5.0.0/src/auth0/management/types/client_addon_layer.py +52 -0
  501. auth0_python-5.0.0/src/auth0/management/types/client_addon_mscrm.py +26 -0
  502. auth0_python-5.0.0/src/auth0/management/types/client_addon_new_relic.py +26 -0
  503. auth0_python-5.0.0/src/auth0/management/types/client_addon_oag.py +21 -0
  504. auth0_python-5.0.0/src/auth0/management/types/client_addon_office_365.py +31 -0
  505. auth0_python-5.0.0/src/auth0/management/types/client_addon_rms.py +26 -0
  506. auth0_python-5.0.0/src/auth0/management/types/client_addon_salesforce.py +26 -0
  507. auth0_python-5.0.0/src/auth0/management/types/client_addon_salesforce_api.py +45 -0
  508. auth0_python-5.0.0/src/auth0/management/types/client_addon_salesforce_sandbox_api.py +45 -0
  509. auth0_python-5.0.0/src/auth0/management/types/client_addon_saml.py +63 -0
  510. auth0_python-5.0.0/src/auth0/management/types/client_addon_saml_mapping.py +5 -0
  511. auth0_python-5.0.0/src/auth0/management/types/client_addon_sapapi.py +61 -0
  512. auth0_python-5.0.0/src/auth0/management/types/client_addon_sentry.py +31 -0
  513. auth0_python-5.0.0/src/auth0/management/types/client_addon_share_point.py +29 -0
  514. auth0_python-5.0.0/src/auth0/management/types/client_addon_share_point_external_url.py +5 -0
  515. auth0_python-5.0.0/src/auth0/management/types/client_addon_slack.py +26 -0
  516. auth0_python-5.0.0/src/auth0/management/types/client_addon_spring_cm.py +26 -0
  517. auth0_python-5.0.0/src/auth0/management/types/client_addon_sso_integration.py +27 -0
  518. auth0_python-5.0.0/src/auth0/management/types/client_addon_wams.py +26 -0
  519. auth0_python-5.0.0/src/auth0/management/types/client_addon_ws_fed.py +5 -0
  520. auth0_python-5.0.0/src/auth0/management/types/client_addon_zendesk.py +30 -0
  521. auth0_python-5.0.0/src/auth0/management/types/client_addon_zoom.py +26 -0
  522. auth0_python-5.0.0/src/auth0/management/types/client_addons.py +86 -0
  523. auth0_python-5.0.0/src/auth0/management/types/client_app_type_enum.py +34 -0
  524. auth0_python-5.0.0/src/auth0/management/types/client_async_approval_notifications_channels_api_patch_configuration.py +7 -0
  525. auth0_python-5.0.0/src/auth0/management/types/client_async_approval_notifications_channels_api_post_configuration.py +7 -0
  526. auth0_python-5.0.0/src/auth0/management/types/client_authentication_method.py +28 -0
  527. auth0_python-5.0.0/src/auth0/management/types/client_authentication_method_private_key_jwt.py +24 -0
  528. auth0_python-5.0.0/src/auth0/management/types/client_authentication_method_private_key_jwt_credentials.py +7 -0
  529. auth0_python-5.0.0/src/auth0/management/types/client_authentication_method_self_signed_tls_client_auth.py +26 -0
  530. auth0_python-5.0.0/src/auth0/management/types/client_authentication_method_self_signed_tls_client_auth_credentials.py +7 -0
  531. auth0_python-5.0.0/src/auth0/management/types/client_authentication_method_tls_client_auth.py +24 -0
  532. auth0_python-5.0.0/src/auth0/management/types/client_authentication_method_tls_client_auth_credentials.py +7 -0
  533. auth0_python-5.0.0/src/auth0/management/types/client_compliance_level_enum.py +8 -0
  534. auth0_python-5.0.0/src/auth0/management/types/client_create_authentication_method.py +30 -0
  535. auth0_python-5.0.0/src/auth0/management/types/client_create_authentication_method_private_key_jwt.py +26 -0
  536. auth0_python-5.0.0/src/auth0/management/types/client_create_authentication_method_private_key_jwt_credentials.py +7 -0
  537. auth0_python-5.0.0/src/auth0/management/types/client_create_authentication_method_tls_client_auth.py +26 -0
  538. auth0_python-5.0.0/src/auth0/management/types/client_create_authentication_method_tls_client_auth_credentials.py +7 -0
  539. auth0_python-5.0.0/src/auth0/management/types/client_credential.py +66 -0
  540. auth0_python-5.0.0/src/auth0/management/types/client_credential_algorithm_enum.py +5 -0
  541. auth0_python-5.0.0/src/auth0/management/types/client_credential_type_enum.py +5 -0
  542. auth0_python-5.0.0/src/auth0/management/types/client_default_organization.py +32 -0
  543. auth0_python-5.0.0/src/auth0/management/types/client_default_organization_flows_enum.py +5 -0
  544. auth0_python-5.0.0/src/auth0/management/types/client_encryption_key.py +36 -0
  545. auth0_python-5.0.0/src/auth0/management/types/client_grant_allow_any_organization_enum.py +3 -0
  546. auth0_python-5.0.0/src/auth0/management/types/client_grant_organization_nullable_usage_enum.py +5 -0
  547. auth0_python-5.0.0/src/auth0/management/types/client_grant_organization_usage_enum.py +5 -0
  548. auth0_python-5.0.0/src/auth0/management/types/client_grant_response_content.py +61 -0
  549. auth0_python-5.0.0/src/auth0/management/types/client_grant_subject_type_enum.py +5 -0
  550. auth0_python-5.0.0/src/auth0/management/types/client_jwt_configuration.py +36 -0
  551. auth0_python-5.0.0/src/auth0/management/types/client_jwt_configuration_scopes.py +5 -0
  552. auth0_python-5.0.0/src/auth0/management/types/client_metadata.py +5 -0
  553. auth0_python-5.0.0/src/auth0/management/types/client_mobile.py +26 -0
  554. auth0_python-5.0.0/src/auth0/management/types/client_mobile_android.py +35 -0
  555. auth0_python-5.0.0/src/auth0/management/types/client_mobilei_os.py +31 -0
  556. auth0_python-5.0.0/src/auth0/management/types/client_oidc_backchannel_logout_initiators.py +26 -0
  557. auth0_python-5.0.0/src/auth0/management/types/client_oidc_backchannel_logout_initiators_enum.py +18 -0
  558. auth0_python-5.0.0/src/auth0/management/types/client_oidc_backchannel_logout_initiators_mode_enum.py +5 -0
  559. auth0_python-5.0.0/src/auth0/management/types/client_oidc_backchannel_logout_session_metadata.py +26 -0
  560. auth0_python-5.0.0/src/auth0/management/types/client_oidc_backchannel_logout_settings.py +31 -0
  561. auth0_python-5.0.0/src/auth0/management/types/client_organization_discovery_enum.py +5 -0
  562. auth0_python-5.0.0/src/auth0/management/types/client_organization_require_behavior_enum.py +7 -0
  563. auth0_python-5.0.0/src/auth0/management/types/client_organization_require_behavior_patch_enum.py +7 -0
  564. auth0_python-5.0.0/src/auth0/management/types/client_organization_usage_enum.py +5 -0
  565. auth0_python-5.0.0/src/auth0/management/types/client_organization_usage_patch_enum.py +5 -0
  566. auth0_python-5.0.0/src/auth0/management/types/client_refresh_token_configuration.py +56 -0
  567. auth0_python-5.0.0/src/auth0/management/types/client_refresh_token_policy.py +27 -0
  568. auth0_python-5.0.0/src/auth0/management/types/client_session_transfer_allowed_authentication_methods_enum.py +5 -0
  569. auth0_python-5.0.0/src/auth0/management/types/client_session_transfer_configuration.py +53 -0
  570. auth0_python-5.0.0/src/auth0/management/types/client_session_transfer_device_binding_enum.py +5 -0
  571. auth0_python-5.0.0/src/auth0/management/types/client_signed_request_object_with_credential_id.py +29 -0
  572. auth0_python-5.0.0/src/auth0/management/types/client_signed_request_object_with_public_key.py +29 -0
  573. auth0_python-5.0.0/src/auth0/management/types/client_signing_key.py +36 -0
  574. auth0_python-5.0.0/src/auth0/management/types/client_signing_keys.py +7 -0
  575. auth0_python-5.0.0/src/auth0/management/types/client_token_endpoint_auth_method_enum.py +7 -0
  576. auth0_python-5.0.0/src/auth0/management/types/client_token_endpoint_auth_method_or_null_enum.py +7 -0
  577. auth0_python-5.0.0/src/auth0/management/types/client_token_exchange_configuration.py +27 -0
  578. auth0_python-5.0.0/src/auth0/management/types/client_token_exchange_configuration_or_null.py +27 -0
  579. auth0_python-5.0.0/src/auth0/management/types/client_token_exchange_type_enum.py +5 -0
  580. auth0_python-5.0.0/src/auth0/management/types/connected_account.py +55 -0
  581. auth0_python-5.0.0/src/auth0/management/types/connected_account_access_type_enum.py +5 -0
  582. auth0_python-5.0.0/src/auth0/management/types/connection_acr_values_supported.py +5 -0
  583. auth0_python-5.0.0/src/auth0/management/types/connection_admin_access_token_expires_in_google_apps.py +5 -0
  584. auth0_python-5.0.0/src/auth0/management/types/connection_admin_access_token_google_apps.py +3 -0
  585. auth0_python-5.0.0/src/auth0/management/types/connection_admin_refresh_token_google_apps.py +3 -0
  586. auth0_python-5.0.0/src/auth0/management/types/connection_agent_ipad.py +3 -0
  587. auth0_python-5.0.0/src/auth0/management/types/connection_agent_mode_ad.py +3 -0
  588. auth0_python-5.0.0/src/auth0/management/types/connection_agent_version_ad.py +3 -0
  589. auth0_python-5.0.0/src/auth0/management/types/connection_allowed_audiences_google_o_auth_2.py +5 -0
  590. auth0_python-5.0.0/src/auth0/management/types/connection_api_behavior_enum.py +5 -0
  591. auth0_python-5.0.0/src/auth0/management/types/connection_api_enable_users.py +3 -0
  592. auth0_python-5.0.0/src/auth0/management/types/connection_api_enable_users_google_apps.py +5 -0
  593. auth0_python-5.0.0/src/auth0/management/types/connection_app_domain_azure_ad.py +3 -0
  594. auth0_python-5.0.0/src/auth0/management/types/connection_attribute_identifier.py +25 -0
  595. auth0_python-5.0.0/src/auth0/management/types/connection_attribute_map_attributes.py +5 -0
  596. auth0_python-5.0.0/src/auth0/management/types/connection_attribute_map_oidc.py +28 -0
  597. auth0_python-5.0.0/src/auth0/management/types/connection_attribute_map_okta.py +28 -0
  598. auth0_python-5.0.0/src/auth0/management/types/connection_attribute_map_userinfo_scope.py +3 -0
  599. auth0_python-5.0.0/src/auth0/management/types/connection_attributes.py +28 -0
  600. auth0_python-5.0.0/src/auth0/management/types/connection_auth_params_additional_properties_o_auth_2.py +3 -0
  601. auth0_python-5.0.0/src/auth0/management/types/connection_auth_params_email.py +3 -0
  602. auth0_python-5.0.0/src/auth0/management/types/connection_auth_params_map.py +5 -0
  603. auth0_python-5.0.0/src/auth0/management/types/connection_auth_params_o_auth_2.py +7 -0
  604. auth0_python-5.0.0/src/auth0/management/types/connection_authentication_methods.py +30 -0
  605. auth0_python-5.0.0/src/auth0/management/types/connection_authentication_purpose.py +23 -0
  606. auth0_python-5.0.0/src/auth0/management/types/connection_authorization_endpoint.py +3 -0
  607. auth0_python-5.0.0/src/auth0/management/types/connection_authorization_endpoint_o_auth_2.py +5 -0
  608. auth0_python-5.0.0/src/auth0/management/types/connection_brute_force_protection.py +3 -0
  609. auth0_python-5.0.0/src/auth0/management/types/connection_calculated_thumbprint_saml.py +5 -0
  610. auth0_python-5.0.0/src/auth0/management/types/connection_certs_ad.py +5 -0
  611. auth0_python-5.0.0/src/auth0/management/types/connection_claim_types_supported.py +5 -0
  612. auth0_python-5.0.0/src/auth0/management/types/connection_claims_locales_supported.py +5 -0
  613. auth0_python-5.0.0/src/auth0/management/types/connection_claims_parameter_supported.py +3 -0
  614. auth0_python-5.0.0/src/auth0/management/types/connection_claims_supported.py +5 -0
  615. auth0_python-5.0.0/src/auth0/management/types/connection_client_id.py +3 -0
  616. auth0_python-5.0.0/src/auth0/management/types/connection_client_id_azure_ad.py +5 -0
  617. auth0_python-5.0.0/src/auth0/management/types/connection_client_id_facebook.py +5 -0
  618. auth0_python-5.0.0/src/auth0/management/types/connection_client_id_google_apps.py +5 -0
  619. auth0_python-5.0.0/src/auth0/management/types/connection_client_id_google_o_auth_2.py +3 -0
  620. auth0_python-5.0.0/src/auth0/management/types/connection_client_id_o_auth_2.py +5 -0
  621. auth0_python-5.0.0/src/auth0/management/types/connection_client_id_oidc.py +5 -0
  622. auth0_python-5.0.0/src/auth0/management/types/connection_client_protocol_saml.py +7 -0
  623. auth0_python-5.0.0/src/auth0/management/types/connection_client_secret.py +3 -0
  624. auth0_python-5.0.0/src/auth0/management/types/connection_client_secret_azure_ad.py +3 -0
  625. auth0_python-5.0.0/src/auth0/management/types/connection_client_secret_facebook.py +5 -0
  626. auth0_python-5.0.0/src/auth0/management/types/connection_client_secret_google_apps.py +5 -0
  627. auth0_python-5.0.0/src/auth0/management/types/connection_client_secret_google_o_auth_2.py +3 -0
  628. auth0_python-5.0.0/src/auth0/management/types/connection_client_secret_o_auth_2.py +5 -0
  629. auth0_python-5.0.0/src/auth0/management/types/connection_client_secret_oidc.py +5 -0
  630. auth0_python-5.0.0/src/auth0/management/types/connection_common.py +26 -0
  631. auth0_python-5.0.0/src/auth0/management/types/connection_configuration.py +5 -0
  632. auth0_python-5.0.0/src/auth0/management/types/connection_connected_accounts_purpose.py +24 -0
  633. auth0_python-5.0.0/src/auth0/management/types/connection_connected_accounts_purpose_xaa.py +24 -0
  634. auth0_python-5.0.0/src/auth0/management/types/connection_connection_settings.py +24 -0
  635. auth0_python-5.0.0/src/auth0/management/types/connection_connection_settings_pkce_enum.py +5 -0
  636. auth0_python-5.0.0/src/auth0/management/types/connection_custom_headers_o_auth_2.py +5 -0
  637. auth0_python-5.0.0/src/auth0/management/types/connection_custom_scripts.py +31 -0
  638. auth0_python-5.0.0/src/auth0/management/types/connection_debug_saml.py +3 -0
  639. auth0_python-5.0.0/src/auth0/management/types/connection_decryption_key_saml.py +7 -0
  640. auth0_python-5.0.0/src/auth0/management/types/connection_decryption_key_saml_cert.py +31 -0
  641. auth0_python-5.0.0/src/auth0/management/types/connection_destination_url_saml.py +5 -0
  642. auth0_python-5.0.0/src/auth0/management/types/connection_digest_algorithm_enum_saml.py +5 -0
  643. auth0_python-5.0.0/src/auth0/management/types/connection_digest_algorithm_saml.py +5 -0
  644. auth0_python-5.0.0/src/auth0/management/types/connection_disable_self_service_change_password.py +3 -0
  645. auth0_python-5.0.0/src/auth0/management/types/connection_disable_signup.py +3 -0
  646. auth0_python-5.0.0/src/auth0/management/types/connection_disable_signup_sms.py +5 -0
  647. auth0_python-5.0.0/src/auth0/management/types/connection_discovery_url.py +5 -0
  648. auth0_python-5.0.0/src/auth0/management/types/connection_display_name.py +3 -0
  649. auth0_python-5.0.0/src/auth0/management/types/connection_display_values_supported.py +5 -0
  650. auth0_python-5.0.0/src/auth0/management/types/connection_domain_aliases.py +7 -0
  651. auth0_python-5.0.0/src/auth0/management/types/connection_domain_aliases_ad.py +5 -0
  652. auth0_python-5.0.0/src/auth0/management/types/connection_domain_aliases_azure_ad.py +5 -0
  653. auth0_python-5.0.0/src/auth0/management/types/connection_domain_aliases_items_one.py +3 -0
  654. auth0_python-5.0.0/src/auth0/management/types/connection_domain_aliases_saml.py +7 -0
  655. auth0_python-5.0.0/src/auth0/management/types/connection_domain_google_apps.py +3 -0
  656. auth0_python-5.0.0/src/auth0/management/types/connection_domain_okta.py +3 -0
  657. auth0_python-5.0.0/src/auth0/management/types/connection_email_body_email.py +3 -0
  658. auth0_python-5.0.0/src/auth0/management/types/connection_email_email.py +37 -0
  659. auth0_python-5.0.0/src/auth0/management/types/connection_email_email_syntax.py +5 -0
  660. auth0_python-5.0.0/src/auth0/management/types/connection_email_from_email.py +3 -0
  661. auth0_python-5.0.0/src/auth0/management/types/connection_email_otp_authentication_method.py +26 -0
  662. auth0_python-5.0.0/src/auth0/management/types/connection_email_subject_email.py +3 -0
  663. auth0_python-5.0.0/src/auth0/management/types/connection_enable_script_context.py +3 -0
  664. auth0_python-5.0.0/src/auth0/management/types/connection_enabled_client.py +22 -0
  665. auth0_python-5.0.0/src/auth0/management/types/connection_enabled_clients.py +5 -0
  666. auth0_python-5.0.0/src/auth0/management/types/connection_enabled_database_customization.py +3 -0
  667. auth0_python-5.0.0/src/auth0/management/types/connection_end_session_endpoint.py +3 -0
  668. auth0_python-5.0.0/src/auth0/management/types/connection_end_session_endpoint_o_auth_2.py +5 -0
  669. auth0_python-5.0.0/src/auth0/management/types/connection_entity_id_saml.py +3 -0
  670. auth0_python-5.0.0/src/auth0/management/types/connection_ext_admin.py +3 -0
  671. auth0_python-5.0.0/src/auth0/management/types/connection_ext_agreed_terms.py +3 -0
  672. auth0_python-5.0.0/src/auth0/management/types/connection_ext_agreed_terms_google_apps.py +5 -0
  673. auth0_python-5.0.0/src/auth0/management/types/connection_ext_assigned_plans.py +3 -0
  674. auth0_python-5.0.0/src/auth0/management/types/connection_ext_groups.py +3 -0
  675. auth0_python-5.0.0/src/auth0/management/types/connection_ext_groups_azure_ad.py +5 -0
  676. auth0_python-5.0.0/src/auth0/management/types/connection_ext_groups_google_apps.py +5 -0
  677. auth0_python-5.0.0/src/auth0/management/types/connection_ext_is_admin_google_apps.py +5 -0
  678. auth0_python-5.0.0/src/auth0/management/types/connection_ext_is_suspended.py +3 -0
  679. auth0_python-5.0.0/src/auth0/management/types/connection_ext_is_suspended_google_apps.py +5 -0
  680. auth0_python-5.0.0/src/auth0/management/types/connection_ext_profile.py +3 -0
  681. auth0_python-5.0.0/src/auth0/management/types/connection_federated_connections_access_tokens.py +26 -0
  682. auth0_python-5.0.0/src/auth0/management/types/connection_fields_map.py +5 -0
  683. auth0_python-5.0.0/src/auth0/management/types/connection_fields_map_saml.py +7 -0
  684. auth0_python-5.0.0/src/auth0/management/types/connection_fields_map_saml_value.py +5 -0
  685. auth0_python-5.0.0/src/auth0/management/types/connection_for_list.py +61 -0
  686. auth0_python-5.0.0/src/auth0/management/types/connection_for_organization.py +41 -0
  687. auth0_python-5.0.0/src/auth0/management/types/connection_forward_req_info_sms.py +3 -0
  688. auth0_python-5.0.0/src/auth0/management/types/connection_freeform_scopes_google_o_auth_2.py +5 -0
  689. auth0_python-5.0.0/src/auth0/management/types/connection_from_sms.py +3 -0
  690. auth0_python-5.0.0/src/auth0/management/types/connection_gateway_authentication.py +50 -0
  691. auth0_python-5.0.0/src/auth0/management/types/connection_gateway_authentication_audience_sms.py +3 -0
  692. auth0_python-5.0.0/src/auth0/management/types/connection_gateway_authentication_method_sms.py +3 -0
  693. auth0_python-5.0.0/src/auth0/management/types/connection_gateway_authentication_sms.py +42 -0
  694. auth0_python-5.0.0/src/auth0/management/types/connection_gateway_authentication_subject_sms.py +3 -0
  695. auth0_python-5.0.0/src/auth0/management/types/connection_gateway_url_sms.py +5 -0
  696. auth0_python-5.0.0/src/auth0/management/types/connection_global_token_revocation_jwt_iss_saml.py +3 -0
  697. auth0_python-5.0.0/src/auth0/management/types/connection_global_token_revocation_jwt_sub_saml.py +3 -0
  698. auth0_python-5.0.0/src/auth0/management/types/connection_grant_types_supported.py +5 -0
  699. auth0_python-5.0.0/src/auth0/management/types/connection_handle_login_from_social_google_apps.py +3 -0
  700. auth0_python-5.0.0/src/auth0/management/types/connection_https_url_with_http_fallback.py +3 -0
  701. auth0_python-5.0.0/src/auth0/management/types/connection_https_url_with_http_fallback_2048.py +5 -0
  702. auth0_python-5.0.0/src/auth0/management/types/connection_https_url_with_http_fallback_255.py +5 -0
  703. auth0_python-5.0.0/src/auth0/management/types/connection_icon_url.py +3 -0
  704. auth0_python-5.0.0/src/auth0/management/types/connection_icon_url_adfs.py +5 -0
  705. auth0_python-5.0.0/src/auth0/management/types/connection_icon_url_azure_ad.py +5 -0
  706. auth0_python-5.0.0/src/auth0/management/types/connection_icon_url_google_apps.py +5 -0
  707. auth0_python-5.0.0/src/auth0/management/types/connection_icon_url_google_o_auth_2.py +5 -0
  708. auth0_python-5.0.0/src/auth0/management/types/connection_icon_url_saml.py +5 -0
  709. auth0_python-5.0.0/src/auth0/management/types/connection_id.py +3 -0
  710. auth0_python-5.0.0/src/auth0/management/types/connection_id_token_encryption_alg_values_supported.py +5 -0
  711. auth0_python-5.0.0/src/auth0/management/types/connection_id_token_encryption_enc_values_supported.py +5 -0
  712. auth0_python-5.0.0/src/auth0/management/types/connection_id_token_signed_response_alg_enum.py +5 -0
  713. auth0_python-5.0.0/src/auth0/management/types/connection_id_token_signed_response_algs.py +7 -0
  714. auth0_python-5.0.0/src/auth0/management/types/connection_id_token_signing_alg_values_supported.py +5 -0
  715. auth0_python-5.0.0/src/auth0/management/types/connection_identifier_precedence.py +7 -0
  716. auth0_python-5.0.0/src/auth0/management/types/connection_identifier_precedence_enum.py +5 -0
  717. auth0_python-5.0.0/src/auth0/management/types/connection_identity_api_azure_ad.py +5 -0
  718. auth0_python-5.0.0/src/auth0/management/types/connection_identity_api_enum_azure_ad.py +7 -0
  719. auth0_python-5.0.0/src/auth0/management/types/connection_identity_provider_enum.py +71 -0
  720. auth0_python-5.0.0/src/auth0/management/types/connection_import_mode.py +3 -0
  721. auth0_python-5.0.0/src/auth0/management/types/connection_ips_ad.py +5 -0
  722. auth0_python-5.0.0/src/auth0/management/types/connection_is_domain_connection.py +3 -0
  723. auth0_python-5.0.0/src/auth0/management/types/connection_issuer.py +5 -0
  724. auth0_python-5.0.0/src/auth0/management/types/connection_jwks_uri.py +5 -0
  725. auth0_python-5.0.0/src/auth0/management/types/connection_key.py +75 -0
  726. auth0_python-5.0.0/src/auth0/management/types/connection_key_use_enum.py +5 -0
  727. auth0_python-5.0.0/src/auth0/management/types/connection_mapping_mode_enum_oidc.py +5 -0
  728. auth0_python-5.0.0/src/auth0/management/types/connection_mapping_mode_enum_okta.py +5 -0
  729. auth0_python-5.0.0/src/auth0/management/types/connection_max_groups_to_retrieve.py +3 -0
  730. auth0_python-5.0.0/src/auth0/management/types/connection_messaging_service_sid_sms.py +3 -0
  731. auth0_python-5.0.0/src/auth0/management/types/connection_metadata_url_saml.py +5 -0
  732. auth0_python-5.0.0/src/auth0/management/types/connection_metadata_xml.py +3 -0
  733. auth0_python-5.0.0/src/auth0/management/types/connection_metadata_xml_adfs.py +5 -0
  734. auth0_python-5.0.0/src/auth0/management/types/connection_metadata_xml_saml.py +5 -0
  735. auth0_python-5.0.0/src/auth0/management/types/connection_mfa.py +31 -0
  736. auth0_python-5.0.0/src/auth0/management/types/connection_name.py +3 -0
  737. auth0_python-5.0.0/src/auth0/management/types/connection_name_prefix_template.py +3 -0
  738. auth0_python-5.0.0/src/auth0/management/types/connection_non_persistent_attrs.py +5 -0
  739. auth0_python-5.0.0/src/auth0/management/types/connection_op_policy_uri.py +5 -0
  740. auth0_python-5.0.0/src/auth0/management/types/connection_op_tos_uri.py +5 -0
  741. auth0_python-5.0.0/src/auth0/management/types/connection_options.py +5 -0
  742. auth0_python-5.0.0/src/auth0/management/types/connection_options_ad.py +81 -0
  743. auth0_python-5.0.0/src/auth0/management/types/connection_options_adfs.py +64 -0
  744. auth0_python-5.0.0/src/auth0/management/types/connection_options_amazon.py +22 -0
  745. auth0_python-5.0.0/src/auth0/management/types/connection_options_aol.py +22 -0
  746. auth0_python-5.0.0/src/auth0/management/types/connection_options_apple.py +67 -0
  747. auth0_python-5.0.0/src/auth0/management/types/connection_options_auth_0.py +73 -0
  748. auth0_python-5.0.0/src/auth0/management/types/connection_options_auth_0_oidc.py +26 -0
  749. auth0_python-5.0.0/src/auth0/management/types/connection_options_azure_ad.py +294 -0
  750. auth0_python-5.0.0/src/auth0/management/types/connection_options_baidu.py +22 -0
  751. auth0_python-5.0.0/src/auth0/management/types/connection_options_bitbucket.py +22 -0
  752. auth0_python-5.0.0/src/auth0/management/types/connection_options_bitly.py +22 -0
  753. auth0_python-5.0.0/src/auth0/management/types/connection_options_box.py +22 -0
  754. auth0_python-5.0.0/src/auth0/management/types/connection_options_client_id_github.py +3 -0
  755. auth0_python-5.0.0/src/auth0/management/types/connection_options_client_id_twitter.py +3 -0
  756. auth0_python-5.0.0/src/auth0/management/types/connection_options_client_secret_github.py +3 -0
  757. auth0_python-5.0.0/src/auth0/management/types/connection_options_client_secret_twitter.py +3 -0
  758. auth0_python-5.0.0/src/auth0/management/types/connection_options_common.py +24 -0
  759. auth0_python-5.0.0/src/auth0/management/types/connection_options_common_oidc.py +62 -0
  760. auth0_python-5.0.0/src/auth0/management/types/connection_options_common_saml.py +68 -0
  761. auth0_python-5.0.0/src/auth0/management/types/connection_options_custom.py +5 -0
  762. auth0_python-5.0.0/src/auth0/management/types/connection_options_daccount.py +22 -0
  763. auth0_python-5.0.0/src/auth0/management/types/connection_options_deflate_saml.py +3 -0
  764. auth0_python-5.0.0/src/auth0/management/types/connection_options_dropbox.py +22 -0
  765. auth0_python-5.0.0/src/auth0/management/types/connection_options_dwolla.py +22 -0
  766. auth0_python-5.0.0/src/auth0/management/types/connection_options_email.py +42 -0
  767. auth0_python-5.0.0/src/auth0/management/types/connection_options_evernote.py +22 -0
  768. auth0_python-5.0.0/src/auth0/management/types/connection_options_exact.py +22 -0
  769. auth0_python-5.0.0/src/auth0/management/types/connection_options_facebook.py +239 -0
  770. auth0_python-5.0.0/src/auth0/management/types/connection_options_fitbit.py +22 -0
  771. auth0_python-5.0.0/src/auth0/management/types/connection_options_flickr.py +22 -0
  772. auth0_python-5.0.0/src/auth0/management/types/connection_options_freeform_scopes_github.py +5 -0
  773. auth0_python-5.0.0/src/auth0/management/types/connection_options_git_hub.py +134 -0
  774. auth0_python-5.0.0/src/auth0/management/types/connection_options_google_apps.py +86 -0
  775. auth0_python-5.0.0/src/auth0/management/types/connection_options_google_o_auth_2.py +363 -0
  776. auth0_python-5.0.0/src/auth0/management/types/connection_options_idp_initiated_client_protocol_enum_saml.py +5 -0
  777. auth0_python-5.0.0/src/auth0/management/types/connection_options_idpinitiated_saml.py +38 -0
  778. auth0_python-5.0.0/src/auth0/management/types/connection_options_instagram.py +22 -0
  779. auth0_python-5.0.0/src/auth0/management/types/connection_options_ip.py +5 -0
  780. auth0_python-5.0.0/src/auth0/management/types/connection_options_line.py +22 -0
  781. auth0_python-5.0.0/src/auth0/management/types/connection_options_linkedin.py +39 -0
  782. auth0_python-5.0.0/src/auth0/management/types/connection_options_miicard.py +22 -0
  783. auth0_python-5.0.0/src/auth0/management/types/connection_options_o_auth_1.py +26 -0
  784. auth0_python-5.0.0/src/auth0/management/types/connection_options_o_auth_1_common.py +33 -0
  785. auth0_python-5.0.0/src/auth0/management/types/connection_options_o_auth_2.py +78 -0
  786. auth0_python-5.0.0/src/auth0/management/types/connection_options_o_auth_2_common.py +29 -0
  787. auth0_python-5.0.0/src/auth0/management/types/connection_options_office_365.py +26 -0
  788. auth0_python-5.0.0/src/auth0/management/types/connection_options_oidc.py +30 -0
  789. auth0_python-5.0.0/src/auth0/management/types/connection_options_oidc_metadata.py +108 -0
  790. auth0_python-5.0.0/src/auth0/management/types/connection_options_okta.py +30 -0
  791. auth0_python-5.0.0/src/auth0/management/types/connection_options_paypal.py +22 -0
  792. auth0_python-5.0.0/src/auth0/management/types/connection_options_ping_federate.py +34 -0
  793. auth0_python-5.0.0/src/auth0/management/types/connection_options_planning_center.py +22 -0
  794. auth0_python-5.0.0/src/auth0/management/types/connection_options_protocol_enum_twitter.py +5 -0
  795. auth0_python-5.0.0/src/auth0/management/types/connection_options_renren.py +22 -0
  796. auth0_python-5.0.0/src/auth0/management/types/connection_options_salesforce.py +32 -0
  797. auth0_python-5.0.0/src/auth0/management/types/connection_options_saml.py +77 -0
  798. auth0_python-5.0.0/src/auth0/management/types/connection_options_scope_github.py +5 -0
  799. auth0_python-5.0.0/src/auth0/management/types/connection_options_scope_twitter.py +5 -0
  800. auth0_python-5.0.0/src/auth0/management/types/connection_options_sharepoint.py +22 -0
  801. auth0_python-5.0.0/src/auth0/management/types/connection_options_shop.py +22 -0
  802. auth0_python-5.0.0/src/auth0/management/types/connection_options_shopify.py +22 -0
  803. auth0_python-5.0.0/src/auth0/management/types/connection_options_sms.py +61 -0
  804. auth0_python-5.0.0/src/auth0/management/types/connection_options_soundcloud.py +22 -0
  805. auth0_python-5.0.0/src/auth0/management/types/connection_options_thirty_seven_signals.py +22 -0
  806. auth0_python-5.0.0/src/auth0/management/types/connection_options_twitter.py +55 -0
  807. auth0_python-5.0.0/src/auth0/management/types/connection_options_untappd.py +22 -0
  808. auth0_python-5.0.0/src/auth0/management/types/connection_options_vkontakte.py +22 -0
  809. auth0_python-5.0.0/src/auth0/management/types/connection_options_weibo.py +22 -0
  810. auth0_python-5.0.0/src/auth0/management/types/connection_options_windows_live.py +134 -0
  811. auth0_python-5.0.0/src/auth0/management/types/connection_options_wordpress.py +22 -0
  812. auth0_python-5.0.0/src/auth0/management/types/connection_options_yahoo.py +22 -0
  813. auth0_python-5.0.0/src/auth0/management/types/connection_options_yammer.py +22 -0
  814. auth0_python-5.0.0/src/auth0/management/types/connection_options_yandex.py +22 -0
  815. auth0_python-5.0.0/src/auth0/management/types/connection_passkey_authentication_method.py +26 -0
  816. auth0_python-5.0.0/src/auth0/management/types/connection_passkey_challenge_ui_enum.py +5 -0
  817. auth0_python-5.0.0/src/auth0/management/types/connection_passkey_options.py +33 -0
  818. auth0_python-5.0.0/src/auth0/management/types/connection_password_authentication_method.py +31 -0
  819. auth0_python-5.0.0/src/auth0/management/types/connection_password_complexity_options.py +26 -0
  820. auth0_python-5.0.0/src/auth0/management/types/connection_password_dictionary_options.py +27 -0
  821. auth0_python-5.0.0/src/auth0/management/types/connection_password_history_options.py +24 -0
  822. auth0_python-5.0.0/src/auth0/management/types/connection_password_no_personal_info_options.py +23 -0
  823. auth0_python-5.0.0/src/auth0/management/types/connection_password_policy_enum.py +5 -0
  824. auth0_python-5.0.0/src/auth0/management/types/connection_phone_otp_authentication_method.py +26 -0
  825. auth0_python-5.0.0/src/auth0/management/types/connection_ping_federate_base_url.py +5 -0
  826. auth0_python-5.0.0/src/auth0/management/types/connection_ping_federate_base_url_ping_federate.py +5 -0
  827. auth0_python-5.0.0/src/auth0/management/types/connection_profile.py +32 -0
  828. auth0_python-5.0.0/src/auth0/management/types/connection_profile_config.py +21 -0
  829. auth0_python-5.0.0/src/auth0/management/types/connection_profile_enabled_features.py +7 -0
  830. auth0_python-5.0.0/src/auth0/management/types/connection_profile_id.py +3 -0
  831. auth0_python-5.0.0/src/auth0/management/types/connection_profile_name.py +3 -0
  832. auth0_python-5.0.0/src/auth0/management/types/connection_profile_organization.py +28 -0
  833. auth0_python-5.0.0/src/auth0/management/types/connection_profile_organization_assign_membership_on_login_enum.py +7 -0
  834. auth0_python-5.0.0/src/auth0/management/types/connection_profile_organization_show_as_button_enum.py +5 -0
  835. auth0_python-5.0.0/src/auth0/management/types/connection_profile_strategy_override.py +26 -0
  836. auth0_python-5.0.0/src/auth0/management/types/connection_profile_strategy_overrides.py +35 -0
  837. auth0_python-5.0.0/src/auth0/management/types/connection_profile_strategy_overrides_connection_config.py +21 -0
  838. auth0_python-5.0.0/src/auth0/management/types/connection_profile_strategy_overrides_enabled_features.py +7 -0
  839. auth0_python-5.0.0/src/auth0/management/types/connection_profile_template.py +34 -0
  840. auth0_python-5.0.0/src/auth0/management/types/connection_profile_template_item.py +30 -0
  841. auth0_python-5.0.0/src/auth0/management/types/connection_properties_options.py +93 -0
  842. auth0_python-5.0.0/src/auth0/management/types/connection_protocol_binding_enum_saml.py +10 -0
  843. auth0_python-5.0.0/src/auth0/management/types/connection_protocol_binding_saml.py +5 -0
  844. auth0_python-5.0.0/src/auth0/management/types/connection_provider_enum_sms.py +5 -0
  845. auth0_python-5.0.0/src/auth0/management/types/connection_provider_sms.py +5 -0
  846. auth0_python-5.0.0/src/auth0/management/types/connection_provisioning_ticket_url.py +3 -0
  847. auth0_python-5.0.0/src/auth0/management/types/connection_purposes.py +26 -0
  848. auth0_python-5.0.0/src/auth0/management/types/connection_realm_fallback.py +3 -0
  849. auth0_python-5.0.0/src/auth0/management/types/connection_realms.py +5 -0
  850. auth0_python-5.0.0/src/auth0/management/types/connection_recipient_url_saml.py +5 -0
  851. auth0_python-5.0.0/src/auth0/management/types/connection_registration_endpoint.py +5 -0
  852. auth0_python-5.0.0/src/auth0/management/types/connection_request_object_encryption_alg_values_supported.py +5 -0
  853. auth0_python-5.0.0/src/auth0/management/types/connection_request_object_encryption_enc_values_supported.py +5 -0
  854. auth0_python-5.0.0/src/auth0/management/types/connection_request_object_signing_alg_values_supported.py +5 -0
  855. auth0_python-5.0.0/src/auth0/management/types/connection_request_parameter_supported.py +3 -0
  856. auth0_python-5.0.0/src/auth0/management/types/connection_request_template_saml.py +3 -0
  857. auth0_python-5.0.0/src/auth0/management/types/connection_request_uri_parameter_supported.py +3 -0
  858. auth0_python-5.0.0/src/auth0/management/types/connection_require_request_uri_registration.py +3 -0
  859. auth0_python-5.0.0/src/auth0/management/types/connection_requires_username.py +3 -0
  860. auth0_python-5.0.0/src/auth0/management/types/connection_response_common.py +23 -0
  861. auth0_python-5.0.0/src/auth0/management/types/connection_response_content_ad.py +30 -0
  862. auth0_python-5.0.0/src/auth0/management/types/connection_response_content_ad_strategy.py +5 -0
  863. auth0_python-5.0.0/src/auth0/management/types/connection_response_content_adfs.py +32 -0
  864. auth0_python-5.0.0/src/auth0/management/types/connection_response_content_adfs_strategy.py +5 -0
  865. auth0_python-5.0.0/src/auth0/management/types/connection_response_content_amazon.py +28 -0
  866. auth0_python-5.0.0/src/auth0/management/types/connection_response_content_amazon_strategy.py +5 -0
  867. auth0_python-5.0.0/src/auth0/management/types/connection_response_content_aol.py +28 -0
  868. auth0_python-5.0.0/src/auth0/management/types/connection_response_content_aol_strategy.py +5 -0
  869. auth0_python-5.0.0/src/auth0/management/types/connection_response_content_apple.py +28 -0
  870. auth0_python-5.0.0/src/auth0/management/types/connection_response_content_apple_strategy.py +5 -0
  871. auth0_python-5.0.0/src/auth0/management/types/connection_response_content_auth_0.py +28 -0
  872. auth0_python-5.0.0/src/auth0/management/types/connection_response_content_auth_0_oidc.py +28 -0
  873. auth0_python-5.0.0/src/auth0/management/types/connection_response_content_auth_0_oidc_strategy.py +5 -0
  874. auth0_python-5.0.0/src/auth0/management/types/connection_response_content_auth_0_strategy.py +5 -0
  875. auth0_python-5.0.0/src/auth0/management/types/connection_response_content_azure_ad.py +32 -0
  876. auth0_python-5.0.0/src/auth0/management/types/connection_response_content_azure_ad_strategy.py +5 -0
  877. auth0_python-5.0.0/src/auth0/management/types/connection_response_content_baidu.py +28 -0
  878. auth0_python-5.0.0/src/auth0/management/types/connection_response_content_baidu_strategy.py +5 -0
  879. auth0_python-5.0.0/src/auth0/management/types/connection_response_content_bitbucket.py +28 -0
  880. auth0_python-5.0.0/src/auth0/management/types/connection_response_content_bitbucket_strategy.py +5 -0
  881. auth0_python-5.0.0/src/auth0/management/types/connection_response_content_bitly.py +28 -0
  882. auth0_python-5.0.0/src/auth0/management/types/connection_response_content_bitly_strategy.py +5 -0
  883. auth0_python-5.0.0/src/auth0/management/types/connection_response_content_box.py +28 -0
  884. auth0_python-5.0.0/src/auth0/management/types/connection_response_content_box_strategy.py +5 -0
  885. auth0_python-5.0.0/src/auth0/management/types/connection_response_content_custom.py +30 -0
  886. auth0_python-5.0.0/src/auth0/management/types/connection_response_content_custom_strategy.py +5 -0
  887. auth0_python-5.0.0/src/auth0/management/types/connection_response_content_daccount.py +28 -0
  888. auth0_python-5.0.0/src/auth0/management/types/connection_response_content_daccount_strategy.py +5 -0
  889. auth0_python-5.0.0/src/auth0/management/types/connection_response_content_dropbox.py +28 -0
  890. auth0_python-5.0.0/src/auth0/management/types/connection_response_content_dropbox_strategy.py +5 -0
  891. auth0_python-5.0.0/src/auth0/management/types/connection_response_content_dwolla.py +28 -0
  892. auth0_python-5.0.0/src/auth0/management/types/connection_response_content_dwolla_strategy.py +5 -0
  893. auth0_python-5.0.0/src/auth0/management/types/connection_response_content_email.py +28 -0
  894. auth0_python-5.0.0/src/auth0/management/types/connection_response_content_email_strategy.py +5 -0
  895. auth0_python-5.0.0/src/auth0/management/types/connection_response_content_evernote.py +28 -0
  896. auth0_python-5.0.0/src/auth0/management/types/connection_response_content_evernote_sandbox.py +28 -0
  897. auth0_python-5.0.0/src/auth0/management/types/connection_response_content_evernote_sandbox_strategy.py +5 -0
  898. auth0_python-5.0.0/src/auth0/management/types/connection_response_content_evernote_strategy.py +5 -0
  899. auth0_python-5.0.0/src/auth0/management/types/connection_response_content_exact.py +28 -0
  900. auth0_python-5.0.0/src/auth0/management/types/connection_response_content_exact_strategy.py +5 -0
  901. auth0_python-5.0.0/src/auth0/management/types/connection_response_content_facebook.py +28 -0
  902. auth0_python-5.0.0/src/auth0/management/types/connection_response_content_facebook_strategy.py +5 -0
  903. auth0_python-5.0.0/src/auth0/management/types/connection_response_content_fitbit.py +28 -0
  904. auth0_python-5.0.0/src/auth0/management/types/connection_response_content_fitbit_strategy.py +5 -0
  905. auth0_python-5.0.0/src/auth0/management/types/connection_response_content_flickr.py +28 -0
  906. auth0_python-5.0.0/src/auth0/management/types/connection_response_content_flickr_strategy.py +5 -0
  907. auth0_python-5.0.0/src/auth0/management/types/connection_response_content_git_hub.py +28 -0
  908. auth0_python-5.0.0/src/auth0/management/types/connection_response_content_git_hub_strategy.py +5 -0
  909. auth0_python-5.0.0/src/auth0/management/types/connection_response_content_google_apps.py +32 -0
  910. auth0_python-5.0.0/src/auth0/management/types/connection_response_content_google_apps_strategy.py +5 -0
  911. auth0_python-5.0.0/src/auth0/management/types/connection_response_content_google_o_auth_2.py +28 -0
  912. auth0_python-5.0.0/src/auth0/management/types/connection_response_content_google_o_auth_2_strategy.py +5 -0
  913. auth0_python-5.0.0/src/auth0/management/types/connection_response_content_instagram.py +28 -0
  914. auth0_python-5.0.0/src/auth0/management/types/connection_response_content_instagram_strategy.py +5 -0
  915. auth0_python-5.0.0/src/auth0/management/types/connection_response_content_ip.py +30 -0
  916. auth0_python-5.0.0/src/auth0/management/types/connection_response_content_ip_strategy.py +5 -0
  917. auth0_python-5.0.0/src/auth0/management/types/connection_response_content_line.py +28 -0
  918. auth0_python-5.0.0/src/auth0/management/types/connection_response_content_line_strategy.py +5 -0
  919. auth0_python-5.0.0/src/auth0/management/types/connection_response_content_linkedin.py +28 -0
  920. auth0_python-5.0.0/src/auth0/management/types/connection_response_content_linkedin_strategy.py +5 -0
  921. auth0_python-5.0.0/src/auth0/management/types/connection_response_content_miicard.py +28 -0
  922. auth0_python-5.0.0/src/auth0/management/types/connection_response_content_miicard_strategy.py +5 -0
  923. auth0_python-5.0.0/src/auth0/management/types/connection_response_content_o_auth_1.py +28 -0
  924. auth0_python-5.0.0/src/auth0/management/types/connection_response_content_o_auth_1_strategy.py +5 -0
  925. auth0_python-5.0.0/src/auth0/management/types/connection_response_content_o_auth_2.py +28 -0
  926. auth0_python-5.0.0/src/auth0/management/types/connection_response_content_o_auth_2_strategy.py +5 -0
  927. auth0_python-5.0.0/src/auth0/management/types/connection_response_content_office_365.py +32 -0
  928. auth0_python-5.0.0/src/auth0/management/types/connection_response_content_office_365_strategy.py +5 -0
  929. auth0_python-5.0.0/src/auth0/management/types/connection_response_content_oidc.py +33 -0
  930. auth0_python-5.0.0/src/auth0/management/types/connection_response_content_oidc_strategy.py +5 -0
  931. auth0_python-5.0.0/src/auth0/management/types/connection_response_content_okta.py +30 -0
  932. auth0_python-5.0.0/src/auth0/management/types/connection_response_content_okta_strategy.py +5 -0
  933. auth0_python-5.0.0/src/auth0/management/types/connection_response_content_paypal.py +28 -0
  934. auth0_python-5.0.0/src/auth0/management/types/connection_response_content_paypal_sandbox.py +28 -0
  935. auth0_python-5.0.0/src/auth0/management/types/connection_response_content_paypal_sandbox_strategy.py +5 -0
  936. auth0_python-5.0.0/src/auth0/management/types/connection_response_content_paypal_strategy.py +5 -0
  937. auth0_python-5.0.0/src/auth0/management/types/connection_response_content_ping_federate.py +32 -0
  938. auth0_python-5.0.0/src/auth0/management/types/connection_response_content_ping_federate_strategy.py +5 -0
  939. auth0_python-5.0.0/src/auth0/management/types/connection_response_content_planning_center.py +28 -0
  940. auth0_python-5.0.0/src/auth0/management/types/connection_response_content_planning_center_strategy.py +5 -0
  941. auth0_python-5.0.0/src/auth0/management/types/connection_response_content_renren.py +28 -0
  942. auth0_python-5.0.0/src/auth0/management/types/connection_response_content_renren_strategy.py +5 -0
  943. auth0_python-5.0.0/src/auth0/management/types/connection_response_content_salesforce.py +28 -0
  944. auth0_python-5.0.0/src/auth0/management/types/connection_response_content_salesforce_community.py +30 -0
  945. auth0_python-5.0.0/src/auth0/management/types/connection_response_content_salesforce_community_strategy.py +5 -0
  946. auth0_python-5.0.0/src/auth0/management/types/connection_response_content_salesforce_sandbox.py +28 -0
  947. auth0_python-5.0.0/src/auth0/management/types/connection_response_content_salesforce_sandbox_strategy.py +5 -0
  948. auth0_python-5.0.0/src/auth0/management/types/connection_response_content_salesforce_strategy.py +5 -0
  949. auth0_python-5.0.0/src/auth0/management/types/connection_response_content_saml.py +32 -0
  950. auth0_python-5.0.0/src/auth0/management/types/connection_response_content_saml_strategy.py +5 -0
  951. auth0_python-5.0.0/src/auth0/management/types/connection_response_content_sharepoint.py +30 -0
  952. auth0_python-5.0.0/src/auth0/management/types/connection_response_content_sharepoint_strategy.py +5 -0
  953. auth0_python-5.0.0/src/auth0/management/types/connection_response_content_shop.py +28 -0
  954. auth0_python-5.0.0/src/auth0/management/types/connection_response_content_shop_strategy.py +5 -0
  955. auth0_python-5.0.0/src/auth0/management/types/connection_response_content_shopify.py +28 -0
  956. auth0_python-5.0.0/src/auth0/management/types/connection_response_content_shopify_strategy.py +5 -0
  957. auth0_python-5.0.0/src/auth0/management/types/connection_response_content_sms.py +28 -0
  958. auth0_python-5.0.0/src/auth0/management/types/connection_response_content_sms_strategy.py +5 -0
  959. auth0_python-5.0.0/src/auth0/management/types/connection_response_content_soundcloud.py +28 -0
  960. auth0_python-5.0.0/src/auth0/management/types/connection_response_content_soundcloud_strategy.py +5 -0
  961. auth0_python-5.0.0/src/auth0/management/types/connection_response_content_thirty_seven_signals.py +30 -0
  962. auth0_python-5.0.0/src/auth0/management/types/connection_response_content_thirty_seven_signals_strategy.py +5 -0
  963. auth0_python-5.0.0/src/auth0/management/types/connection_response_content_twitter.py +28 -0
  964. auth0_python-5.0.0/src/auth0/management/types/connection_response_content_twitter_strategy.py +5 -0
  965. auth0_python-5.0.0/src/auth0/management/types/connection_response_content_untappd.py +28 -0
  966. auth0_python-5.0.0/src/auth0/management/types/connection_response_content_untappd_strategy.py +5 -0
  967. auth0_python-5.0.0/src/auth0/management/types/connection_response_content_vkontakte.py +28 -0
  968. auth0_python-5.0.0/src/auth0/management/types/connection_response_content_vkontakte_strategy.py +5 -0
  969. auth0_python-5.0.0/src/auth0/management/types/connection_response_content_weibo.py +28 -0
  970. auth0_python-5.0.0/src/auth0/management/types/connection_response_content_weibo_strategy.py +5 -0
  971. auth0_python-5.0.0/src/auth0/management/types/connection_response_content_windows_live.py +28 -0
  972. auth0_python-5.0.0/src/auth0/management/types/connection_response_content_windows_live_strategy.py +5 -0
  973. auth0_python-5.0.0/src/auth0/management/types/connection_response_content_wordpress.py +28 -0
  974. auth0_python-5.0.0/src/auth0/management/types/connection_response_content_wordpress_strategy.py +5 -0
  975. auth0_python-5.0.0/src/auth0/management/types/connection_response_content_yahoo.py +28 -0
  976. auth0_python-5.0.0/src/auth0/management/types/connection_response_content_yahoo_strategy.py +5 -0
  977. auth0_python-5.0.0/src/auth0/management/types/connection_response_content_yammer.py +28 -0
  978. auth0_python-5.0.0/src/auth0/management/types/connection_response_content_yammer_strategy.py +5 -0
  979. auth0_python-5.0.0/src/auth0/management/types/connection_response_content_yandex.py +28 -0
  980. auth0_python-5.0.0/src/auth0/management/types/connection_response_content_yandex_strategy.py +5 -0
  981. auth0_python-5.0.0/src/auth0/management/types/connection_response_modes_supported.py +5 -0
  982. auth0_python-5.0.0/src/auth0/management/types/connection_response_types_supported.py +5 -0
  983. auth0_python-5.0.0/src/auth0/management/types/connection_scope_array.py +7 -0
  984. auth0_python-5.0.0/src/auth0/management/types/connection_scope_array_facebook.py +7 -0
  985. auth0_python-5.0.0/src/auth0/management/types/connection_scope_azure_ad.py +5 -0
  986. auth0_python-5.0.0/src/auth0/management/types/connection_scope_facebook.py +3 -0
  987. auth0_python-5.0.0/src/auth0/management/types/connection_scope_google_apps.py +7 -0
  988. auth0_python-5.0.0/src/auth0/management/types/connection_scope_google_o_auth_2.py +5 -0
  989. auth0_python-5.0.0/src/auth0/management/types/connection_scope_item.py +3 -0
  990. auth0_python-5.0.0/src/auth0/management/types/connection_scope_item_google_apps.py +3 -0
  991. auth0_python-5.0.0/src/auth0/management/types/connection_scope_o_auth_2.py +5 -0
  992. auth0_python-5.0.0/src/auth0/management/types/connection_scope_oidc.py +3 -0
  993. auth0_python-5.0.0/src/auth0/management/types/connection_scopes_supported.py +5 -0
  994. auth0_python-5.0.0/src/auth0/management/types/connection_scripts_o_auth_2.py +37 -0
  995. auth0_python-5.0.0/src/auth0/management/types/connection_send_back_channel_nonce.py +3 -0
  996. auth0_python-5.0.0/src/auth0/management/types/connection_service_documentation.py +5 -0
  997. auth0_python-5.0.0/src/auth0/management/types/connection_set_user_root_attributes_enum.py +7 -0
  998. auth0_python-5.0.0/src/auth0/management/types/connection_sha_1_thumbprint.py +3 -0
  999. auth0_python-5.0.0/src/auth0/management/types/connection_should_trust_email_verified_connection_enum.py +7 -0
  1000. auth0_python-5.0.0/src/auth0/management/types/connection_show_as_button.py +3 -0
  1001. auth0_python-5.0.0/src/auth0/management/types/connection_sign_in_endpoint_ad.py +5 -0
  1002. auth0_python-5.0.0/src/auth0/management/types/connection_sign_in_endpoint_adfs.py +5 -0
  1003. auth0_python-5.0.0/src/auth0/management/types/connection_sign_in_endpoint_saml.py +5 -0
  1004. auth0_python-5.0.0/src/auth0/management/types/connection_sign_out_endpoint_saml.py +5 -0
  1005. auth0_python-5.0.0/src/auth0/management/types/connection_sign_saml_request_saml.py +3 -0
  1006. auth0_python-5.0.0/src/auth0/management/types/connection_signature_algorithm_enum_saml.py +5 -0
  1007. auth0_python-5.0.0/src/auth0/management/types/connection_signature_algorithm_saml.py +5 -0
  1008. auth0_python-5.0.0/src/auth0/management/types/connection_signing_cert_saml.py +5 -0
  1009. auth0_python-5.0.0/src/auth0/management/types/connection_signing_certificate_der_saml.py +3 -0
  1010. auth0_python-5.0.0/src/auth0/management/types/connection_signing_certificate_pem_ping_federate.py +3 -0
  1011. auth0_python-5.0.0/src/auth0/management/types/connection_signing_certificate_pem_saml.py +3 -0
  1012. auth0_python-5.0.0/src/auth0/management/types/connection_signing_key_saml.py +31 -0
  1013. auth0_python-5.0.0/src/auth0/management/types/connection_signup_behavior_enum.py +5 -0
  1014. auth0_python-5.0.0/src/auth0/management/types/connection_strategy_enum.py +72 -0
  1015. auth0_python-5.0.0/src/auth0/management/types/connection_strategy_version_enum_linkedin.py +3 -0
  1016. auth0_python-5.0.0/src/auth0/management/types/connection_strategy_version_enum_windows_live.py +3 -0
  1017. auth0_python-5.0.0/src/auth0/management/types/connection_subject_types_supported.py +5 -0
  1018. auth0_python-5.0.0/src/auth0/management/types/connection_template_sms.py +3 -0
  1019. auth0_python-5.0.0/src/auth0/management/types/connection_template_syntax_enum_sms.py +5 -0
  1020. auth0_python-5.0.0/src/auth0/management/types/connection_tenant_domain.py +3 -0
  1021. auth0_python-5.0.0/src/auth0/management/types/connection_tenant_domain_ad.py +3 -0
  1022. auth0_python-5.0.0/src/auth0/management/types/connection_tenant_domain_azure_ad_one.py +3 -0
  1023. auth0_python-5.0.0/src/auth0/management/types/connection_tenant_domain_google_apps.py +5 -0
  1024. auth0_python-5.0.0/src/auth0/management/types/connection_tenant_domain_saml.py +5 -0
  1025. auth0_python-5.0.0/src/auth0/management/types/connection_tenant_id_azure_ad.py +3 -0
  1026. auth0_python-5.0.0/src/auth0/management/types/connection_thumbprints.py +5 -0
  1027. auth0_python-5.0.0/src/auth0/management/types/connection_thumbprints_ad.py +7 -0
  1028. auth0_python-5.0.0/src/auth0/management/types/connection_thumbprints_saml.py +7 -0
  1029. auth0_python-5.0.0/src/auth0/management/types/connection_token_endpoint.py +5 -0
  1030. auth0_python-5.0.0/src/auth0/management/types/connection_token_endpoint_auth_method_enum.py +7 -0
  1031. auth0_python-5.0.0/src/auth0/management/types/connection_token_endpoint_auth_methods_supported.py +5 -0
  1032. auth0_python-5.0.0/src/auth0/management/types/connection_token_endpoint_auth_signing_alg_enum.py +5 -0
  1033. auth0_python-5.0.0/src/auth0/management/types/connection_token_endpoint_auth_signing_alg_values_supported.py +5 -0
  1034. auth0_python-5.0.0/src/auth0/management/types/connection_token_endpoint_o_auth_2.py +5 -0
  1035. auth0_python-5.0.0/src/auth0/management/types/connection_token_endpoint_oidc.py +5 -0
  1036. auth0_python-5.0.0/src/auth0/management/types/connection_totp_email.py +22 -0
  1037. auth0_python-5.0.0/src/auth0/management/types/connection_totp_length_email.py +5 -0
  1038. auth0_python-5.0.0/src/auth0/management/types/connection_totp_length_passwordless.py +3 -0
  1039. auth0_python-5.0.0/src/auth0/management/types/connection_totp_length_sms.py +5 -0
  1040. auth0_python-5.0.0/src/auth0/management/types/connection_totp_sms.py +26 -0
  1041. auth0_python-5.0.0/src/auth0/management/types/connection_totp_time_step_email.py +5 -0
  1042. auth0_python-5.0.0/src/auth0/management/types/connection_totp_time_step_passwordless.py +3 -0
  1043. auth0_python-5.0.0/src/auth0/management/types/connection_totp_time_step_sms.py +5 -0
  1044. auth0_python-5.0.0/src/auth0/management/types/connection_twilio_sid_sms.py +3 -0
  1045. auth0_python-5.0.0/src/auth0/management/types/connection_twilio_token_sms.py +3 -0
  1046. auth0_python-5.0.0/src/auth0/management/types/connection_type_enum_oidc.py +5 -0
  1047. auth0_python-5.0.0/src/auth0/management/types/connection_type_enum_okta.py +5 -0
  1048. auth0_python-5.0.0/src/auth0/management/types/connection_ui_locales_supported.py +5 -0
  1049. auth0_python-5.0.0/src/auth0/management/types/connection_upstream_additional_properties.py +8 -0
  1050. auth0_python-5.0.0/src/auth0/management/types/connection_upstream_alias.py +20 -0
  1051. auth0_python-5.0.0/src/auth0/management/types/connection_upstream_alias_enum.py +21 -0
  1052. auth0_python-5.0.0/src/auth0/management/types/connection_upstream_params.py +7 -0
  1053. auth0_python-5.0.0/src/auth0/management/types/connection_upstream_params_adfs.py +7 -0
  1054. auth0_python-5.0.0/src/auth0/management/types/connection_upstream_params_facebook.py +7 -0
  1055. auth0_python-5.0.0/src/auth0/management/types/connection_upstream_value.py +19 -0
  1056. auth0_python-5.0.0/src/auth0/management/types/connection_use_common_endpoint_azure_ad.py +3 -0
  1057. auth0_python-5.0.0/src/auth0/management/types/connection_user_id_attribute_saml.py +3 -0
  1058. auth0_python-5.0.0/src/auth0/management/types/connection_userid_attribute_azure_ad.py +5 -0
  1059. auth0_python-5.0.0/src/auth0/management/types/connection_userid_attribute_enum_azure_ad.py +5 -0
  1060. auth0_python-5.0.0/src/auth0/management/types/connection_userinfo_encryption_alg_values_supported.py +5 -0
  1061. auth0_python-5.0.0/src/auth0/management/types/connection_userinfo_encryption_enc_values_supported.py +5 -0
  1062. auth0_python-5.0.0/src/auth0/management/types/connection_userinfo_endpoint.py +5 -0
  1063. auth0_python-5.0.0/src/auth0/management/types/connection_userinfo_endpoint_oidc.py +5 -0
  1064. auth0_python-5.0.0/src/auth0/management/types/connection_userinfo_signing_alg_values_supported.py +5 -0
  1065. auth0_python-5.0.0/src/auth0/management/types/connection_username_validation_options.py +20 -0
  1066. auth0_python-5.0.0/src/auth0/management/types/connection_validation_options.py +24 -0
  1067. auth0_python-5.0.0/src/auth0/management/types/connection_waad_protocol.py +5 -0
  1068. auth0_python-5.0.0/src/auth0/management/types/connection_waad_protocol_enum_azure_ad.py +5 -0
  1069. auth0_python-5.0.0/src/auth0/management/types/connections_metadata.py +5 -0
  1070. auth0_python-5.0.0/src/auth0/management/types/create_action_module_response_content.py +73 -0
  1071. auth0_python-5.0.0/src/auth0/management/types/create_action_module_version_response_content.py +55 -0
  1072. auth0_python-5.0.0/src/auth0/management/types/create_action_response_content.py +98 -0
  1073. auth0_python-5.0.0/src/auth0/management/types/create_branding_phone_provider_response_content.py +49 -0
  1074. auth0_python-5.0.0/src/auth0/management/types/create_branding_theme_response_content.py +42 -0
  1075. auth0_python-5.0.0/src/auth0/management/types/create_client_authentication_method_self_signed_tls_client_auth.py +26 -0
  1076. auth0_python-5.0.0/src/auth0/management/types/create_client_authentication_method_self_signed_tls_client_auth_credentials.py +7 -0
  1077. auth0_python-5.0.0/src/auth0/management/types/create_client_grant_response_content.py +61 -0
  1078. auth0_python-5.0.0/src/auth0/management/types/create_client_response_content.py +235 -0
  1079. auth0_python-5.0.0/src/auth0/management/types/create_connection_common.py +21 -0
  1080. auth0_python-5.0.0/src/auth0/management/types/create_connection_profile_response_content.py +32 -0
  1081. auth0_python-5.0.0/src/auth0/management/types/create_connection_request_content_ad.py +27 -0
  1082. auth0_python-5.0.0/src/auth0/management/types/create_connection_request_content_ad_strategy.py +5 -0
  1083. auth0_python-5.0.0/src/auth0/management/types/create_connection_request_content_adfs.py +29 -0
  1084. auth0_python-5.0.0/src/auth0/management/types/create_connection_request_content_adfs_strategy.py +5 -0
  1085. auth0_python-5.0.0/src/auth0/management/types/create_connection_request_content_amazon.py +27 -0
  1086. auth0_python-5.0.0/src/auth0/management/types/create_connection_request_content_amazon_strategy.py +5 -0
  1087. auth0_python-5.0.0/src/auth0/management/types/create_connection_request_content_aol.py +27 -0
  1088. auth0_python-5.0.0/src/auth0/management/types/create_connection_request_content_aol_strategy.py +5 -0
  1089. auth0_python-5.0.0/src/auth0/management/types/create_connection_request_content_apple.py +27 -0
  1090. auth0_python-5.0.0/src/auth0/management/types/create_connection_request_content_apple_strategy.py +5 -0
  1091. auth0_python-5.0.0/src/auth0/management/types/create_connection_request_content_auth_0.py +29 -0
  1092. auth0_python-5.0.0/src/auth0/management/types/create_connection_request_content_auth_0_oidc.py +27 -0
  1093. auth0_python-5.0.0/src/auth0/management/types/create_connection_request_content_auth_0_oidc_strategy.py +5 -0
  1094. auth0_python-5.0.0/src/auth0/management/types/create_connection_request_content_auth_0_strategy.py +5 -0
  1095. auth0_python-5.0.0/src/auth0/management/types/create_connection_request_content_azure_ad.py +29 -0
  1096. auth0_python-5.0.0/src/auth0/management/types/create_connection_request_content_azure_ad_strategy.py +5 -0
  1097. auth0_python-5.0.0/src/auth0/management/types/create_connection_request_content_baidu.py +27 -0
  1098. auth0_python-5.0.0/src/auth0/management/types/create_connection_request_content_baidu_strategy.py +5 -0
  1099. auth0_python-5.0.0/src/auth0/management/types/create_connection_request_content_bitbucket.py +27 -0
  1100. auth0_python-5.0.0/src/auth0/management/types/create_connection_request_content_bitbucket_strategy.py +5 -0
  1101. auth0_python-5.0.0/src/auth0/management/types/create_connection_request_content_bitly.py +27 -0
  1102. auth0_python-5.0.0/src/auth0/management/types/create_connection_request_content_bitly_strategy.py +5 -0
  1103. auth0_python-5.0.0/src/auth0/management/types/create_connection_request_content_box.py +28 -0
  1104. auth0_python-5.0.0/src/auth0/management/types/create_connection_request_content_box_strategy.py +5 -0
  1105. auth0_python-5.0.0/src/auth0/management/types/create_connection_request_content_custom.py +27 -0
  1106. auth0_python-5.0.0/src/auth0/management/types/create_connection_request_content_custom_strategy.py +5 -0
  1107. auth0_python-5.0.0/src/auth0/management/types/create_connection_request_content_daccount.py +27 -0
  1108. auth0_python-5.0.0/src/auth0/management/types/create_connection_request_content_daccount_strategy.py +5 -0
  1109. auth0_python-5.0.0/src/auth0/management/types/create_connection_request_content_dropbox.py +27 -0
  1110. auth0_python-5.0.0/src/auth0/management/types/create_connection_request_content_dropbox_strategy.py +5 -0
  1111. auth0_python-5.0.0/src/auth0/management/types/create_connection_request_content_dwolla.py +27 -0
  1112. auth0_python-5.0.0/src/auth0/management/types/create_connection_request_content_dwolla_strategy.py +5 -0
  1113. auth0_python-5.0.0/src/auth0/management/types/create_connection_request_content_email.py +27 -0
  1114. auth0_python-5.0.0/src/auth0/management/types/create_connection_request_content_email_strategy.py +5 -0
  1115. auth0_python-5.0.0/src/auth0/management/types/create_connection_request_content_evernote.py +27 -0
  1116. auth0_python-5.0.0/src/auth0/management/types/create_connection_request_content_evernote_sandbox.py +29 -0
  1117. auth0_python-5.0.0/src/auth0/management/types/create_connection_request_content_evernote_sandbox_strategy.py +5 -0
  1118. auth0_python-5.0.0/src/auth0/management/types/create_connection_request_content_evernote_strategy.py +5 -0
  1119. auth0_python-5.0.0/src/auth0/management/types/create_connection_request_content_exact.py +27 -0
  1120. auth0_python-5.0.0/src/auth0/management/types/create_connection_request_content_exact_strategy.py +5 -0
  1121. auth0_python-5.0.0/src/auth0/management/types/create_connection_request_content_facebook.py +27 -0
  1122. auth0_python-5.0.0/src/auth0/management/types/create_connection_request_content_facebook_strategy.py +5 -0
  1123. auth0_python-5.0.0/src/auth0/management/types/create_connection_request_content_fitbit.py +27 -0
  1124. auth0_python-5.0.0/src/auth0/management/types/create_connection_request_content_fitbit_strategy.py +5 -0
  1125. auth0_python-5.0.0/src/auth0/management/types/create_connection_request_content_flickr.py +27 -0
  1126. auth0_python-5.0.0/src/auth0/management/types/create_connection_request_content_flickr_strategy.py +5 -0
  1127. auth0_python-5.0.0/src/auth0/management/types/create_connection_request_content_git_hub.py +28 -0
  1128. auth0_python-5.0.0/src/auth0/management/types/create_connection_request_content_git_hub_strategy.py +5 -0
  1129. auth0_python-5.0.0/src/auth0/management/types/create_connection_request_content_google_apps.py +29 -0
  1130. auth0_python-5.0.0/src/auth0/management/types/create_connection_request_content_google_apps_strategy.py +5 -0
  1131. auth0_python-5.0.0/src/auth0/management/types/create_connection_request_content_google_o_auth_2.py +30 -0
  1132. auth0_python-5.0.0/src/auth0/management/types/create_connection_request_content_google_o_auth_2_strategy.py +5 -0
  1133. auth0_python-5.0.0/src/auth0/management/types/create_connection_request_content_instagram.py +27 -0
  1134. auth0_python-5.0.0/src/auth0/management/types/create_connection_request_content_instagram_strategy.py +5 -0
  1135. auth0_python-5.0.0/src/auth0/management/types/create_connection_request_content_ip.py +29 -0
  1136. auth0_python-5.0.0/src/auth0/management/types/create_connection_request_content_ip_strategy.py +5 -0
  1137. auth0_python-5.0.0/src/auth0/management/types/create_connection_request_content_line.py +27 -0
  1138. auth0_python-5.0.0/src/auth0/management/types/create_connection_request_content_line_strategy.py +5 -0
  1139. auth0_python-5.0.0/src/auth0/management/types/create_connection_request_content_linkedin.py +27 -0
  1140. auth0_python-5.0.0/src/auth0/management/types/create_connection_request_content_linkedin_strategy.py +5 -0
  1141. auth0_python-5.0.0/src/auth0/management/types/create_connection_request_content_miicard.py +27 -0
  1142. auth0_python-5.0.0/src/auth0/management/types/create_connection_request_content_miicard_strategy.py +5 -0
  1143. auth0_python-5.0.0/src/auth0/management/types/create_connection_request_content_o_auth_1.py +27 -0
  1144. auth0_python-5.0.0/src/auth0/management/types/create_connection_request_content_o_auth_1_strategy.py +5 -0
  1145. auth0_python-5.0.0/src/auth0/management/types/create_connection_request_content_o_auth_2.py +28 -0
  1146. auth0_python-5.0.0/src/auth0/management/types/create_connection_request_content_o_auth_2_strategy.py +5 -0
  1147. auth0_python-5.0.0/src/auth0/management/types/create_connection_request_content_office_365.py +29 -0
  1148. auth0_python-5.0.0/src/auth0/management/types/create_connection_request_content_office_365_strategy.py +5 -0
  1149. auth0_python-5.0.0/src/auth0/management/types/create_connection_request_content_oidc.py +33 -0
  1150. auth0_python-5.0.0/src/auth0/management/types/create_connection_request_content_oidc_strategy.py +5 -0
  1151. auth0_python-5.0.0/src/auth0/management/types/create_connection_request_content_okta.py +29 -0
  1152. auth0_python-5.0.0/src/auth0/management/types/create_connection_request_content_okta_strategy.py +5 -0
  1153. auth0_python-5.0.0/src/auth0/management/types/create_connection_request_content_paypal.py +27 -0
  1154. auth0_python-5.0.0/src/auth0/management/types/create_connection_request_content_paypal_sandbox.py +29 -0
  1155. auth0_python-5.0.0/src/auth0/management/types/create_connection_request_content_paypal_sandbox_strategy.py +5 -0
  1156. auth0_python-5.0.0/src/auth0/management/types/create_connection_request_content_paypal_strategy.py +5 -0
  1157. auth0_python-5.0.0/src/auth0/management/types/create_connection_request_content_ping_federate.py +29 -0
  1158. auth0_python-5.0.0/src/auth0/management/types/create_connection_request_content_ping_federate_strategy.py +5 -0
  1159. auth0_python-5.0.0/src/auth0/management/types/create_connection_request_content_planning_center.py +29 -0
  1160. auth0_python-5.0.0/src/auth0/management/types/create_connection_request_content_planning_center_strategy.py +5 -0
  1161. auth0_python-5.0.0/src/auth0/management/types/create_connection_request_content_renren.py +27 -0
  1162. auth0_python-5.0.0/src/auth0/management/types/create_connection_request_content_renren_strategy.py +5 -0
  1163. auth0_python-5.0.0/src/auth0/management/types/create_connection_request_content_salesforce.py +27 -0
  1164. auth0_python-5.0.0/src/auth0/management/types/create_connection_request_content_salesforce_community.py +29 -0
  1165. auth0_python-5.0.0/src/auth0/management/types/create_connection_request_content_salesforce_community_strategy.py +7 -0
  1166. auth0_python-5.0.0/src/auth0/management/types/create_connection_request_content_salesforce_sandbox.py +29 -0
  1167. auth0_python-5.0.0/src/auth0/management/types/create_connection_request_content_salesforce_sandbox_strategy.py +5 -0
  1168. auth0_python-5.0.0/src/auth0/management/types/create_connection_request_content_salesforce_strategy.py +5 -0
  1169. auth0_python-5.0.0/src/auth0/management/types/create_connection_request_content_saml.py +29 -0
  1170. auth0_python-5.0.0/src/auth0/management/types/create_connection_request_content_saml_strategy.py +5 -0
  1171. auth0_python-5.0.0/src/auth0/management/types/create_connection_request_content_sharepoint.py +29 -0
  1172. auth0_python-5.0.0/src/auth0/management/types/create_connection_request_content_sharepoint_strategy.py +5 -0
  1173. auth0_python-5.0.0/src/auth0/management/types/create_connection_request_content_shop.py +27 -0
  1174. auth0_python-5.0.0/src/auth0/management/types/create_connection_request_content_shop_strategy.py +5 -0
  1175. auth0_python-5.0.0/src/auth0/management/types/create_connection_request_content_shopify.py +27 -0
  1176. auth0_python-5.0.0/src/auth0/management/types/create_connection_request_content_shopify_strategy.py +5 -0
  1177. auth0_python-5.0.0/src/auth0/management/types/create_connection_request_content_sms.py +27 -0
  1178. auth0_python-5.0.0/src/auth0/management/types/create_connection_request_content_sms_strategy.py +5 -0
  1179. auth0_python-5.0.0/src/auth0/management/types/create_connection_request_content_soundcloud.py +27 -0
  1180. auth0_python-5.0.0/src/auth0/management/types/create_connection_request_content_soundcloud_strategy.py +5 -0
  1181. auth0_python-5.0.0/src/auth0/management/types/create_connection_request_content_thirty_seven_signals.py +29 -0
  1182. auth0_python-5.0.0/src/auth0/management/types/create_connection_request_content_thirty_seven_signals_strategy.py +7 -0
  1183. auth0_python-5.0.0/src/auth0/management/types/create_connection_request_content_twitter.py +27 -0
  1184. auth0_python-5.0.0/src/auth0/management/types/create_connection_request_content_twitter_strategy.py +5 -0
  1185. auth0_python-5.0.0/src/auth0/management/types/create_connection_request_content_untappd.py +27 -0
  1186. auth0_python-5.0.0/src/auth0/management/types/create_connection_request_content_untappd_strategy.py +5 -0
  1187. auth0_python-5.0.0/src/auth0/management/types/create_connection_request_content_vkontakte.py +27 -0
  1188. auth0_python-5.0.0/src/auth0/management/types/create_connection_request_content_vkontakte_strategy.py +5 -0
  1189. auth0_python-5.0.0/src/auth0/management/types/create_connection_request_content_weibo.py +27 -0
  1190. auth0_python-5.0.0/src/auth0/management/types/create_connection_request_content_weibo_strategy.py +5 -0
  1191. auth0_python-5.0.0/src/auth0/management/types/create_connection_request_content_windows_live.py +28 -0
  1192. auth0_python-5.0.0/src/auth0/management/types/create_connection_request_content_windows_live_strategy.py +5 -0
  1193. auth0_python-5.0.0/src/auth0/management/types/create_connection_request_content_wordpress.py +27 -0
  1194. auth0_python-5.0.0/src/auth0/management/types/create_connection_request_content_wordpress_strategy.py +5 -0
  1195. auth0_python-5.0.0/src/auth0/management/types/create_connection_request_content_yahoo.py +27 -0
  1196. auth0_python-5.0.0/src/auth0/management/types/create_connection_request_content_yahoo_strategy.py +5 -0
  1197. auth0_python-5.0.0/src/auth0/management/types/create_connection_request_content_yammer.py +27 -0
  1198. auth0_python-5.0.0/src/auth0/management/types/create_connection_request_content_yammer_strategy.py +5 -0
  1199. auth0_python-5.0.0/src/auth0/management/types/create_connection_request_content_yandex.py +27 -0
  1200. auth0_python-5.0.0/src/auth0/management/types/create_connection_request_content_yandex_strategy.py +5 -0
  1201. auth0_python-5.0.0/src/auth0/management/types/create_connection_response_content.py +66 -0
  1202. auth0_python-5.0.0/src/auth0/management/types/create_custom_domain_response_content.py +62 -0
  1203. auth0_python-5.0.0/src/auth0/management/types/create_directory_provisioning_request_content.py +28 -0
  1204. auth0_python-5.0.0/src/auth0/management/types/create_directory_provisioning_response_content.py +69 -0
  1205. auth0_python-5.0.0/src/auth0/management/types/create_directory_synchronization_response_content.py +32 -0
  1206. auth0_python-5.0.0/src/auth0/management/types/create_email_provider_response_content.py +37 -0
  1207. auth0_python-5.0.0/src/auth0/management/types/create_email_template_response_content.py +69 -0
  1208. auth0_python-5.0.0/src/auth0/management/types/create_encryption_key_public_wrapping_response_content.py +25 -0
  1209. auth0_python-5.0.0/src/auth0/management/types/create_encryption_key_response_content.py +51 -0
  1210. auth0_python-5.0.0/src/auth0/management/types/create_encryption_key_type.py +7 -0
  1211. auth0_python-5.0.0/src/auth0/management/types/create_event_stream_action_request_content.py +33 -0
  1212. auth0_python-5.0.0/src/auth0/management/types/create_event_stream_event_bridge_request_content.py +33 -0
  1213. auth0_python-5.0.0/src/auth0/management/types/create_event_stream_redelivery_response_content.py +40 -0
  1214. auth0_python-5.0.0/src/auth0/management/types/create_event_stream_response_content.py +11 -0
  1215. auth0_python-5.0.0/src/auth0/management/types/create_event_stream_test_event_response_content.py +44 -0
  1216. auth0_python-5.0.0/src/auth0/management/types/create_event_stream_web_hook_request_content.py +33 -0
  1217. auth0_python-5.0.0/src/auth0/management/types/create_export_users_fields.py +27 -0
  1218. auth0_python-5.0.0/src/auth0/management/types/create_export_users_response_content.py +55 -0
  1219. auth0_python-5.0.0/src/auth0/management/types/create_flow_response_content.py +41 -0
  1220. auth0_python-5.0.0/src/auth0/management/types/create_flows_vault_connection_activecampaign.py +12 -0
  1221. auth0_python-5.0.0/src/auth0/management/types/create_flows_vault_connection_activecampaign_api_key.py +27 -0
  1222. auth0_python-5.0.0/src/auth0/management/types/create_flows_vault_connection_activecampaign_uninitialized.py +25 -0
  1223. auth0_python-5.0.0/src/auth0/management/types/create_flows_vault_connection_airtable.py +10 -0
  1224. auth0_python-5.0.0/src/auth0/management/types/create_flows_vault_connection_airtable_api_key.py +27 -0
  1225. auth0_python-5.0.0/src/auth0/management/types/create_flows_vault_connection_airtable_uninitialized.py +25 -0
  1226. auth0_python-5.0.0/src/auth0/management/types/create_flows_vault_connection_auth_0.py +10 -0
  1227. auth0_python-5.0.0/src/auth0/management/types/create_flows_vault_connection_auth_0_oauth_app.py +27 -0
  1228. auth0_python-5.0.0/src/auth0/management/types/create_flows_vault_connection_auth_0_uninitialized.py +25 -0
  1229. auth0_python-5.0.0/src/auth0/management/types/create_flows_vault_connection_bigquery.py +10 -0
  1230. auth0_python-5.0.0/src/auth0/management/types/create_flows_vault_connection_bigquery_jwt.py +27 -0
  1231. auth0_python-5.0.0/src/auth0/management/types/create_flows_vault_connection_bigquery_uninitialized.py +25 -0
  1232. auth0_python-5.0.0/src/auth0/management/types/create_flows_vault_connection_clearbit.py +10 -0
  1233. auth0_python-5.0.0/src/auth0/management/types/create_flows_vault_connection_clearbit_api_key.py +27 -0
  1234. auth0_python-5.0.0/src/auth0/management/types/create_flows_vault_connection_clearbit_uninitialized.py +25 -0
  1235. auth0_python-5.0.0/src/auth0/management/types/create_flows_vault_connection_docusign.py +10 -0
  1236. auth0_python-5.0.0/src/auth0/management/types/create_flows_vault_connection_docusign_oauth_code.py +27 -0
  1237. auth0_python-5.0.0/src/auth0/management/types/create_flows_vault_connection_docusign_uninitialized.py +25 -0
  1238. auth0_python-5.0.0/src/auth0/management/types/create_flows_vault_connection_google_sheets.py +12 -0
  1239. auth0_python-5.0.0/src/auth0/management/types/create_flows_vault_connection_google_sheets_oauth_code.py +27 -0
  1240. auth0_python-5.0.0/src/auth0/management/types/create_flows_vault_connection_google_sheets_uninitialized.py +25 -0
  1241. auth0_python-5.0.0/src/auth0/management/types/create_flows_vault_connection_http.py +19 -0
  1242. auth0_python-5.0.0/src/auth0/management/types/create_flows_vault_connection_http_api_key.py +27 -0
  1243. auth0_python-5.0.0/src/auth0/management/types/create_flows_vault_connection_http_basic_auth.py +27 -0
  1244. auth0_python-5.0.0/src/auth0/management/types/create_flows_vault_connection_http_bearer.py +27 -0
  1245. auth0_python-5.0.0/src/auth0/management/types/create_flows_vault_connection_http_oauth_client_credentials.py +29 -0
  1246. auth0_python-5.0.0/src/auth0/management/types/create_flows_vault_connection_http_uninitialized.py +25 -0
  1247. auth0_python-5.0.0/src/auth0/management/types/create_flows_vault_connection_hubspot.py +13 -0
  1248. auth0_python-5.0.0/src/auth0/management/types/create_flows_vault_connection_hubspot_api_key.py +27 -0
  1249. auth0_python-5.0.0/src/auth0/management/types/create_flows_vault_connection_hubspot_oauth_code.py +27 -0
  1250. auth0_python-5.0.0/src/auth0/management/types/create_flows_vault_connection_hubspot_uninitialized.py +25 -0
  1251. auth0_python-5.0.0/src/auth0/management/types/create_flows_vault_connection_jwt.py +10 -0
  1252. auth0_python-5.0.0/src/auth0/management/types/create_flows_vault_connection_jwt_jwt.py +27 -0
  1253. auth0_python-5.0.0/src/auth0/management/types/create_flows_vault_connection_jwt_uninitialized.py +25 -0
  1254. auth0_python-5.0.0/src/auth0/management/types/create_flows_vault_connection_mailchimp.py +13 -0
  1255. auth0_python-5.0.0/src/auth0/management/types/create_flows_vault_connection_mailchimp_api_key.py +27 -0
  1256. auth0_python-5.0.0/src/auth0/management/types/create_flows_vault_connection_mailchimp_oauth_code.py +27 -0
  1257. auth0_python-5.0.0/src/auth0/management/types/create_flows_vault_connection_mailchimp_uninitialized.py +25 -0
  1258. auth0_python-5.0.0/src/auth0/management/types/create_flows_vault_connection_mailjet.py +10 -0
  1259. auth0_python-5.0.0/src/auth0/management/types/create_flows_vault_connection_mailjet_api_key.py +27 -0
  1260. auth0_python-5.0.0/src/auth0/management/types/create_flows_vault_connection_mailjet_uninitialized.py +25 -0
  1261. auth0_python-5.0.0/src/auth0/management/types/create_flows_vault_connection_pipedrive.py +13 -0
  1262. auth0_python-5.0.0/src/auth0/management/types/create_flows_vault_connection_pipedrive_oauth_code.py +27 -0
  1263. auth0_python-5.0.0/src/auth0/management/types/create_flows_vault_connection_pipedrive_token.py +27 -0
  1264. auth0_python-5.0.0/src/auth0/management/types/create_flows_vault_connection_pipedrive_uninitialized.py +25 -0
  1265. auth0_python-5.0.0/src/auth0/management/types/create_flows_vault_connection_request_content.py +49 -0
  1266. auth0_python-5.0.0/src/auth0/management/types/create_flows_vault_connection_response_content.py +65 -0
  1267. auth0_python-5.0.0/src/auth0/management/types/create_flows_vault_connection_salesforce.py +10 -0
  1268. auth0_python-5.0.0/src/auth0/management/types/create_flows_vault_connection_salesforce_oauth_code.py +27 -0
  1269. auth0_python-5.0.0/src/auth0/management/types/create_flows_vault_connection_salesforce_uninitialized.py +25 -0
  1270. auth0_python-5.0.0/src/auth0/management/types/create_flows_vault_connection_sendgrid.py +10 -0
  1271. auth0_python-5.0.0/src/auth0/management/types/create_flows_vault_connection_sendgrid_api_key.py +27 -0
  1272. auth0_python-5.0.0/src/auth0/management/types/create_flows_vault_connection_sendgrid_uninitialized.py +25 -0
  1273. auth0_python-5.0.0/src/auth0/management/types/create_flows_vault_connection_slack.py +13 -0
  1274. auth0_python-5.0.0/src/auth0/management/types/create_flows_vault_connection_slack_oauth_code.py +27 -0
  1275. auth0_python-5.0.0/src/auth0/management/types/create_flows_vault_connection_slack_uninitialized.py +25 -0
  1276. auth0_python-5.0.0/src/auth0/management/types/create_flows_vault_connection_slack_webhook.py +27 -0
  1277. auth0_python-5.0.0/src/auth0/management/types/create_flows_vault_connection_stripe.py +13 -0
  1278. auth0_python-5.0.0/src/auth0/management/types/create_flows_vault_connection_stripe_key_pair.py +27 -0
  1279. auth0_python-5.0.0/src/auth0/management/types/create_flows_vault_connection_stripe_oauth_code.py +27 -0
  1280. auth0_python-5.0.0/src/auth0/management/types/create_flows_vault_connection_stripe_uninitialized.py +25 -0
  1281. auth0_python-5.0.0/src/auth0/management/types/create_flows_vault_connection_telegram.py +10 -0
  1282. auth0_python-5.0.0/src/auth0/management/types/create_flows_vault_connection_telegram_token.py +27 -0
  1283. auth0_python-5.0.0/src/auth0/management/types/create_flows_vault_connection_telegram_uninitialized.py +25 -0
  1284. auth0_python-5.0.0/src/auth0/management/types/create_flows_vault_connection_twilio.py +10 -0
  1285. auth0_python-5.0.0/src/auth0/management/types/create_flows_vault_connection_twilio_api_key.py +27 -0
  1286. auth0_python-5.0.0/src/auth0/management/types/create_flows_vault_connection_twilio_uninitialized.py +25 -0
  1287. auth0_python-5.0.0/src/auth0/management/types/create_flows_vault_connection_whatsapp.py +10 -0
  1288. auth0_python-5.0.0/src/auth0/management/types/create_flows_vault_connection_whatsapp_token.py +27 -0
  1289. auth0_python-5.0.0/src/auth0/management/types/create_flows_vault_connection_whatsapp_uninitialized.py +25 -0
  1290. auth0_python-5.0.0/src/auth0/management/types/create_flows_vault_connection_zapier.py +10 -0
  1291. auth0_python-5.0.0/src/auth0/management/types/create_flows_vault_connection_zapier_uninitialized.py +25 -0
  1292. auth0_python-5.0.0/src/auth0/management/types/create_flows_vault_connection_zapier_webhook.py +27 -0
  1293. auth0_python-5.0.0/src/auth0/management/types/create_form_response_content.py +39 -0
  1294. auth0_python-5.0.0/src/auth0/management/types/create_guardian_enrollment_ticket_response_content.py +27 -0
  1295. auth0_python-5.0.0/src/auth0/management/types/create_hook_response_content.py +51 -0
  1296. auth0_python-5.0.0/src/auth0/management/types/create_hook_secret_request_content.py +5 -0
  1297. auth0_python-5.0.0/src/auth0/management/types/create_import_users_response_content.py +47 -0
  1298. auth0_python-5.0.0/src/auth0/management/types/create_log_stream_datadog_request_body.py +50 -0
  1299. auth0_python-5.0.0/src/auth0/management/types/create_log_stream_event_bridge_request_body.py +50 -0
  1300. auth0_python-5.0.0/src/auth0/management/types/create_log_stream_event_grid_request_body.py +50 -0
  1301. auth0_python-5.0.0/src/auth0/management/types/create_log_stream_http_request_body.py +50 -0
  1302. auth0_python-5.0.0/src/auth0/management/types/create_log_stream_mixpanel_request_body.py +50 -0
  1303. auth0_python-5.0.0/src/auth0/management/types/create_log_stream_request_content.py +23 -0
  1304. auth0_python-5.0.0/src/auth0/management/types/create_log_stream_response_content.py +23 -0
  1305. auth0_python-5.0.0/src/auth0/management/types/create_log_stream_segment_request_body.py +50 -0
  1306. auth0_python-5.0.0/src/auth0/management/types/create_log_stream_splunk_request_body.py +50 -0
  1307. auth0_python-5.0.0/src/auth0/management/types/create_log_stream_sumo_request_body.py +50 -0
  1308. auth0_python-5.0.0/src/auth0/management/types/create_organization_discovery_domain_response_content.py +44 -0
  1309. auth0_python-5.0.0/src/auth0/management/types/create_organization_invitation_response_content.py +73 -0
  1310. auth0_python-5.0.0/src/auth0/management/types/create_organization_response_content.py +41 -0
  1311. auth0_python-5.0.0/src/auth0/management/types/create_phone_provider_send_test_response_content.py +27 -0
  1312. auth0_python-5.0.0/src/auth0/management/types/create_phone_template_response_content.py +30 -0
  1313. auth0_python-5.0.0/src/auth0/management/types/create_phone_template_test_notification_response_content.py +19 -0
  1314. auth0_python-5.0.0/src/auth0/management/types/create_public_key_device_credential_response_content.py +22 -0
  1315. auth0_python-5.0.0/src/auth0/management/types/create_resource_server_response_content.py +91 -0
  1316. auth0_python-5.0.0/src/auth0/management/types/create_role_response_content.py +32 -0
  1317. auth0_python-5.0.0/src/auth0/management/types/create_rule_response_content.py +49 -0
  1318. auth0_python-5.0.0/src/auth0/management/types/create_scim_configuration_request_content.py +28 -0
  1319. auth0_python-5.0.0/src/auth0/management/types/create_scim_configuration_response_content.py +58 -0
  1320. auth0_python-5.0.0/src/auth0/management/types/create_scim_token_response_content.py +42 -0
  1321. auth0_python-5.0.0/src/auth0/management/types/create_self_service_profile_response_content.py +64 -0
  1322. auth0_python-5.0.0/src/auth0/management/types/create_self_service_profile_sso_ticket_response_content.py +22 -0
  1323. auth0_python-5.0.0/src/auth0/management/types/create_token_exchange_profile_response_content.py +50 -0
  1324. auth0_python-5.0.0/src/auth0/management/types/create_token_quota.py +20 -0
  1325. auth0_python-5.0.0/src/auth0/management/types/create_user_attribute_profile_response_content.py +26 -0
  1326. auth0_python-5.0.0/src/auth0/management/types/create_user_authentication_method_response_content.py +78 -0
  1327. auth0_python-5.0.0/src/auth0/management/types/create_user_response_content.py +106 -0
  1328. auth0_python-5.0.0/src/auth0/management/types/create_verifiable_credential_template_response_content.py +60 -0
  1329. auth0_python-5.0.0/src/auth0/management/types/create_verification_email_response_content.py +37 -0
  1330. auth0_python-5.0.0/src/auth0/management/types/created_authentication_method_type_enum.py +7 -0
  1331. auth0_python-5.0.0/src/auth0/management/types/created_user_authentication_method_type_enum.py +7 -0
  1332. auth0_python-5.0.0/src/auth0/management/types/credential_id.py +22 -0
  1333. auth0_python-5.0.0/src/auth0/management/types/custom_domain.py +69 -0
  1334. auth0_python-5.0.0/src/auth0/management/types/custom_domain_custom_client_ip_header.py +7 -0
  1335. auth0_python-5.0.0/src/auth0/management/types/custom_domain_custom_client_ip_header_enum.py +7 -0
  1336. auth0_python-5.0.0/src/auth0/management/types/custom_domain_provisioning_type_enum.py +5 -0
  1337. auth0_python-5.0.0/src/auth0/management/types/custom_domain_status_filter_enum.py +5 -0
  1338. auth0_python-5.0.0/src/auth0/management/types/custom_domain_tls_policy_enum.py +5 -0
  1339. auth0_python-5.0.0/src/auth0/management/types/custom_domain_type_enum.py +5 -0
  1340. auth0_python-5.0.0/src/auth0/management/types/custom_domain_verification_method_enum.py +5 -0
  1341. auth0_python-5.0.0/src/auth0/management/types/custom_provider_configuration.py +20 -0
  1342. auth0_python-5.0.0/src/auth0/management/types/custom_provider_credentials.py +17 -0
  1343. auth0_python-5.0.0/src/auth0/management/types/custom_provider_delivery_method_enum.py +5 -0
  1344. auth0_python-5.0.0/src/auth0/management/types/custom_signing_key_algorithm_enum.py +7 -0
  1345. auth0_python-5.0.0/src/auth0/management/types/custom_signing_key_curve_enum.py +5 -0
  1346. auth0_python-5.0.0/src/auth0/management/types/custom_signing_key_jwk.py +90 -0
  1347. auth0_python-5.0.0/src/auth0/management/types/custom_signing_key_operation_enum.py +5 -0
  1348. auth0_python-5.0.0/src/auth0/management/types/custom_signing_key_type_enum.py +5 -0
  1349. auth0_python-5.0.0/src/auth0/management/types/custom_signing_key_use_enum.py +5 -0
  1350. auth0_python-5.0.0/src/auth0/management/types/daily_stats.py +47 -0
  1351. auth0_python-5.0.0/src/auth0/management/types/default_method_email_identifier_enum.py +5 -0
  1352. auth0_python-5.0.0/src/auth0/management/types/default_token_quota.py +25 -0
  1353. auth0_python-5.0.0/src/auth0/management/types/delete_hook_secret_request_content.py +5 -0
  1354. auth0_python-5.0.0/src/auth0/management/types/delete_user_identity_response_content.py +7 -0
  1355. auth0_python-5.0.0/src/auth0/management/types/delete_user_identity_response_content_item.py +61 -0
  1356. auth0_python-5.0.0/src/auth0/management/types/deploy_action_response_content.py +97 -0
  1357. auth0_python-5.0.0/src/auth0/management/types/deploy_action_version_request_content.py +22 -0
  1358. auth0_python-5.0.0/src/auth0/management/types/deploy_action_version_response_content.py +97 -0
  1359. auth0_python-5.0.0/src/auth0/management/types/device_credential.py +44 -0
  1360. auth0_python-5.0.0/src/auth0/management/types/device_credential_public_key_type_enum.py +5 -0
  1361. auth0_python-5.0.0/src/auth0/management/types/device_credential_type_enum.py +7 -0
  1362. auth0_python-5.0.0/src/auth0/management/types/directory_provisioning.py +69 -0
  1363. auth0_python-5.0.0/src/auth0/management/types/directory_provisioning_mapping_item.py +29 -0
  1364. auth0_python-5.0.0/src/auth0/management/types/domain_certificate.py +35 -0
  1365. auth0_python-5.0.0/src/auth0/management/types/domain_certificate_authority_enum.py +5 -0
  1366. auth0_python-5.0.0/src/auth0/management/types/domain_certificate_status_enum.py +7 -0
  1367. auth0_python-5.0.0/src/auth0/management/types/domain_metadata.py +5 -0
  1368. auth0_python-5.0.0/src/auth0/management/types/domain_verification.py +39 -0
  1369. auth0_python-5.0.0/src/auth0/management/types/domain_verification_method.py +29 -0
  1370. auth0_python-5.0.0/src/auth0/management/types/domain_verification_method_name_enum.py +5 -0
  1371. auth0_python-5.0.0/src/auth0/management/types/domain_verification_status_enum.py +5 -0
  1372. auth0_python-5.0.0/src/auth0/management/types/email_attribute.py +38 -0
  1373. auth0_python-5.0.0/src/auth0/management/types/email_mailgun_region_enum.py +5 -0
  1374. auth0_python-5.0.0/src/auth0/management/types/email_provider_credentials.py +46 -0
  1375. auth0_python-5.0.0/src/auth0/management/types/email_provider_credentials_schema.py +23 -0
  1376. auth0_python-5.0.0/src/auth0/management/types/email_provider_credentials_schema_access_key_id.py +38 -0
  1377. auth0_python-5.0.0/src/auth0/management/types/email_provider_credentials_schema_api_key.py +30 -0
  1378. auth0_python-5.0.0/src/auth0/management/types/email_provider_credentials_schema_client_id.py +40 -0
  1379. auth0_python-5.0.0/src/auth0/management/types/email_provider_credentials_schema_connection_string.py +26 -0
  1380. auth0_python-5.0.0/src/auth0/management/types/email_provider_credentials_schema_smtp_host.py +34 -0
  1381. auth0_python-5.0.0/src/auth0/management/types/email_provider_credentials_schema_three.py +25 -0
  1382. auth0_python-5.0.0/src/auth0/management/types/email_provider_credentials_schema_zero.py +22 -0
  1383. auth0_python-5.0.0/src/auth0/management/types/email_provider_name_enum.py +8 -0
  1384. auth0_python-5.0.0/src/auth0/management/types/email_provider_settings.py +5 -0
  1385. auth0_python-5.0.0/src/auth0/management/types/email_smtp_host.py +3 -0
  1386. auth0_python-5.0.0/src/auth0/management/types/email_spark_post_region_enum.py +5 -0
  1387. auth0_python-5.0.0/src/auth0/management/types/email_specific_provider_settings_with_additional_properties.py +5 -0
  1388. auth0_python-5.0.0/src/auth0/management/types/email_template_name_enum.py +22 -0
  1389. auth0_python-5.0.0/src/auth0/management/types/enabled_features_enum.py +5 -0
  1390. auth0_python-5.0.0/src/auth0/management/types/encryption_key.py +51 -0
  1391. auth0_python-5.0.0/src/auth0/management/types/encryption_key_public_wrapping_algorithm.py +5 -0
  1392. auth0_python-5.0.0/src/auth0/management/types/encryption_key_state.py +5 -0
  1393. auth0_python-5.0.0/src/auth0/management/types/encryption_key_type.py +8 -0
  1394. auth0_python-5.0.0/src/auth0/management/types/event_stream_action_configuration.py +26 -0
  1395. auth0_python-5.0.0/src/auth0/management/types/event_stream_action_destination.py +22 -0
  1396. auth0_python-5.0.0/src/auth0/management/types/event_stream_action_destination_type_enum.py +5 -0
  1397. auth0_python-5.0.0/src/auth0/management/types/event_stream_action_response_content.py +48 -0
  1398. auth0_python-5.0.0/src/auth0/management/types/event_stream_cloud_event.py +52 -0
  1399. auth0_python-5.0.0/src/auth0/management/types/event_stream_delivery.py +44 -0
  1400. auth0_python-5.0.0/src/auth0/management/types/event_stream_delivery_attempt.py +30 -0
  1401. auth0_python-5.0.0/src/auth0/management/types/event_stream_delivery_event_type_enum.py +27 -0
  1402. auth0_python-5.0.0/src/auth0/management/types/event_stream_delivery_status_enum.py +5 -0
  1403. auth0_python-5.0.0/src/auth0/management/types/event_stream_destination_patch.py +8 -0
  1404. auth0_python-5.0.0/src/auth0/management/types/event_stream_event_bridge_aws_region_enum.py +45 -0
  1405. auth0_python-5.0.0/src/auth0/management/types/event_stream_event_bridge_configuration.py +33 -0
  1406. auth0_python-5.0.0/src/auth0/management/types/event_stream_event_bridge_destination.py +22 -0
  1407. auth0_python-5.0.0/src/auth0/management/types/event_stream_event_bridge_destination_type_enum.py +5 -0
  1408. auth0_python-5.0.0/src/auth0/management/types/event_stream_event_bridge_response_content.py +48 -0
  1409. auth0_python-5.0.0/src/auth0/management/types/event_stream_event_type_enum.py +27 -0
  1410. auth0_python-5.0.0/src/auth0/management/types/event_stream_response_content.py +11 -0
  1411. auth0_python-5.0.0/src/auth0/management/types/event_stream_status_enum.py +5 -0
  1412. auth0_python-5.0.0/src/auth0/management/types/event_stream_subscription.py +23 -0
  1413. auth0_python-5.0.0/src/auth0/management/types/event_stream_test_event_type_enum.py +27 -0
  1414. auth0_python-5.0.0/src/auth0/management/types/event_stream_webhook_authorization_response.py +8 -0
  1415. auth0_python-5.0.0/src/auth0/management/types/event_stream_webhook_basic_auth.py +28 -0
  1416. auth0_python-5.0.0/src/auth0/management/types/event_stream_webhook_basic_auth_method_enum.py +5 -0
  1417. auth0_python-5.0.0/src/auth0/management/types/event_stream_webhook_bearer_auth.py +24 -0
  1418. auth0_python-5.0.0/src/auth0/management/types/event_stream_webhook_bearer_auth_method_enum.py +5 -0
  1419. auth0_python-5.0.0/src/auth0/management/types/event_stream_webhook_configuration.py +29 -0
  1420. auth0_python-5.0.0/src/auth0/management/types/event_stream_webhook_destination.py +22 -0
  1421. auth0_python-5.0.0/src/auth0/management/types/event_stream_webhook_destination_type_enum.py +5 -0
  1422. auth0_python-5.0.0/src/auth0/management/types/event_stream_webhook_response_content.py +48 -0
  1423. auth0_python-5.0.0/src/auth0/management/types/express_configuration.py +67 -0
  1424. auth0_python-5.0.0/src/auth0/management/types/express_configuration_or_null.py +67 -0
  1425. auth0_python-5.0.0/src/auth0/management/types/extensibility_email_provider_credentials.py +17 -0
  1426. auth0_python-5.0.0/src/auth0/management/types/federated_connection_token_set.py +25 -0
  1427. auth0_python-5.0.0/src/auth0/management/types/flow_action.py +60 -0
  1428. auth0_python-5.0.0/src/auth0/management/types/flow_action_activecampaign.py +8 -0
  1429. auth0_python-5.0.0/src/auth0/management/types/flow_action_activecampaign_list_contacts.py +28 -0
  1430. auth0_python-5.0.0/src/auth0/management/types/flow_action_activecampaign_list_contacts_action.py +5 -0
  1431. auth0_python-5.0.0/src/auth0/management/types/flow_action_activecampaign_list_contacts_params.py +20 -0
  1432. auth0_python-5.0.0/src/auth0/management/types/flow_action_activecampaign_list_contacts_type.py +5 -0
  1433. auth0_python-5.0.0/src/auth0/management/types/flow_action_activecampaign_upsert_contact.py +28 -0
  1434. auth0_python-5.0.0/src/auth0/management/types/flow_action_activecampaign_upsert_contact_action.py +5 -0
  1435. auth0_python-5.0.0/src/auth0/management/types/flow_action_activecampaign_upsert_contact_params.py +27 -0
  1436. auth0_python-5.0.0/src/auth0/management/types/flow_action_activecampaign_upsert_contact_params_custom_fields.py +5 -0
  1437. auth0_python-5.0.0/src/auth0/management/types/flow_action_activecampaign_upsert_contact_type.py +5 -0
  1438. auth0_python-5.0.0/src/auth0/management/types/flow_action_airtable.py +11 -0
  1439. auth0_python-5.0.0/src/auth0/management/types/flow_action_airtable_create_record.py +28 -0
  1440. auth0_python-5.0.0/src/auth0/management/types/flow_action_airtable_create_record_action.py +5 -0
  1441. auth0_python-5.0.0/src/auth0/management/types/flow_action_airtable_create_record_params.py +23 -0
  1442. auth0_python-5.0.0/src/auth0/management/types/flow_action_airtable_create_record_params_fields.py +5 -0
  1443. auth0_python-5.0.0/src/auth0/management/types/flow_action_airtable_create_record_type.py +5 -0
  1444. auth0_python-5.0.0/src/auth0/management/types/flow_action_airtable_list_records.py +28 -0
  1445. auth0_python-5.0.0/src/auth0/management/types/flow_action_airtable_list_records_action.py +5 -0
  1446. auth0_python-5.0.0/src/auth0/management/types/flow_action_airtable_list_records_params.py +23 -0
  1447. auth0_python-5.0.0/src/auth0/management/types/flow_action_airtable_list_records_type.py +5 -0
  1448. auth0_python-5.0.0/src/auth0/management/types/flow_action_airtable_update_record.py +28 -0
  1449. auth0_python-5.0.0/src/auth0/management/types/flow_action_airtable_update_record_action.py +5 -0
  1450. auth0_python-5.0.0/src/auth0/management/types/flow_action_airtable_update_record_params.py +24 -0
  1451. auth0_python-5.0.0/src/auth0/management/types/flow_action_airtable_update_record_params_fields.py +5 -0
  1452. auth0_python-5.0.0/src/auth0/management/types/flow_action_airtable_update_record_type.py +5 -0
  1453. auth0_python-5.0.0/src/auth0/management/types/flow_action_auth_0.py +21 -0
  1454. auth0_python-5.0.0/src/auth0/management/types/flow_action_auth_0_create_user.py +28 -0
  1455. auth0_python-5.0.0/src/auth0/management/types/flow_action_auth_0_create_user_action.py +5 -0
  1456. auth0_python-5.0.0/src/auth0/management/types/flow_action_auth_0_create_user_params.py +21 -0
  1457. auth0_python-5.0.0/src/auth0/management/types/flow_action_auth_0_create_user_params_payload.py +5 -0
  1458. auth0_python-5.0.0/src/auth0/management/types/flow_action_auth_0_create_user_type.py +5 -0
  1459. auth0_python-5.0.0/src/auth0/management/types/flow_action_auth_0_get_user.py +28 -0
  1460. auth0_python-5.0.0/src/auth0/management/types/flow_action_auth_0_get_user_action.py +5 -0
  1461. auth0_python-5.0.0/src/auth0/management/types/flow_action_auth_0_get_user_params.py +20 -0
  1462. auth0_python-5.0.0/src/auth0/management/types/flow_action_auth_0_get_user_type.py +5 -0
  1463. auth0_python-5.0.0/src/auth0/management/types/flow_action_auth_0_make_call.py +28 -0
  1464. auth0_python-5.0.0/src/auth0/management/types/flow_action_auth_0_make_call_action.py +5 -0
  1465. auth0_python-5.0.0/src/auth0/management/types/flow_action_auth_0_make_call_params.py +27 -0
  1466. auth0_python-5.0.0/src/auth0/management/types/flow_action_auth_0_make_call_params_custom_vars.py +5 -0
  1467. auth0_python-5.0.0/src/auth0/management/types/flow_action_auth_0_make_call_type.py +5 -0
  1468. auth0_python-5.0.0/src/auth0/management/types/flow_action_auth_0_send_email.py +28 -0
  1469. auth0_python-5.0.0/src/auth0/management/types/flow_action_auth_0_send_email_action.py +5 -0
  1470. auth0_python-5.0.0/src/auth0/management/types/flow_action_auth_0_send_email_params.py +30 -0
  1471. auth0_python-5.0.0/src/auth0/management/types/flow_action_auth_0_send_email_params_from.py +21 -0
  1472. auth0_python-5.0.0/src/auth0/management/types/flow_action_auth_0_send_email_params_from_email.py +3 -0
  1473. auth0_python-5.0.0/src/auth0/management/types/flow_action_auth_0_send_email_params_to.py +3 -0
  1474. auth0_python-5.0.0/src/auth0/management/types/flow_action_auth_0_send_email_type.py +5 -0
  1475. auth0_python-5.0.0/src/auth0/management/types/flow_action_auth_0_send_request.py +28 -0
  1476. auth0_python-5.0.0/src/auth0/management/types/flow_action_auth_0_send_request_action.py +5 -0
  1477. auth0_python-5.0.0/src/auth0/management/types/flow_action_auth_0_send_request_params.py +28 -0
  1478. auth0_python-5.0.0/src/auth0/management/types/flow_action_auth_0_send_request_params_custom_vars.py +5 -0
  1479. auth0_python-5.0.0/src/auth0/management/types/flow_action_auth_0_send_request_params_headers.py +5 -0
  1480. auth0_python-5.0.0/src/auth0/management/types/flow_action_auth_0_send_request_params_method.py +7 -0
  1481. auth0_python-5.0.0/src/auth0/management/types/flow_action_auth_0_send_request_params_payload.py +9 -0
  1482. auth0_python-5.0.0/src/auth0/management/types/flow_action_auth_0_send_request_params_payload_object.py +5 -0
  1483. auth0_python-5.0.0/src/auth0/management/types/flow_action_auth_0_send_request_params_query_params.py +9 -0
  1484. auth0_python-5.0.0/src/auth0/management/types/flow_action_auth_0_send_request_params_query_params_value.py +5 -0
  1485. auth0_python-5.0.0/src/auth0/management/types/flow_action_auth_0_send_request_type.py +5 -0
  1486. auth0_python-5.0.0/src/auth0/management/types/flow_action_auth_0_send_sms.py +28 -0
  1487. auth0_python-5.0.0/src/auth0/management/types/flow_action_auth_0_send_sms_action.py +5 -0
  1488. auth0_python-5.0.0/src/auth0/management/types/flow_action_auth_0_send_sms_params.py +27 -0
  1489. auth0_python-5.0.0/src/auth0/management/types/flow_action_auth_0_send_sms_params_custom_vars.py +5 -0
  1490. auth0_python-5.0.0/src/auth0/management/types/flow_action_auth_0_send_sms_type.py +5 -0
  1491. auth0_python-5.0.0/src/auth0/management/types/flow_action_auth_0_update_user.py +28 -0
  1492. auth0_python-5.0.0/src/auth0/management/types/flow_action_auth_0_update_user_action.py +5 -0
  1493. auth0_python-5.0.0/src/auth0/management/types/flow_action_auth_0_update_user_params.py +22 -0
  1494. auth0_python-5.0.0/src/auth0/management/types/flow_action_auth_0_update_user_params_changes.py +5 -0
  1495. auth0_python-5.0.0/src/auth0/management/types/flow_action_auth_0_update_user_type.py +5 -0
  1496. auth0_python-5.0.0/src/auth0/management/types/flow_action_bigquery.py +5 -0
  1497. auth0_python-5.0.0/src/auth0/management/types/flow_action_bigquery_insert_rows.py +28 -0
  1498. auth0_python-5.0.0/src/auth0/management/types/flow_action_bigquery_insert_rows_action.py +5 -0
  1499. auth0_python-5.0.0/src/auth0/management/types/flow_action_bigquery_insert_rows_params.py +23 -0
  1500. auth0_python-5.0.0/src/auth0/management/types/flow_action_bigquery_insert_rows_params_data.py +5 -0
  1501. auth0_python-5.0.0/src/auth0/management/types/flow_action_bigquery_insert_rows_type.py +5 -0
  1502. auth0_python-5.0.0/src/auth0/management/types/flow_action_clearbit.py +8 -0
  1503. auth0_python-5.0.0/src/auth0/management/types/flow_action_clearbit_find_company.py +28 -0
  1504. auth0_python-5.0.0/src/auth0/management/types/flow_action_clearbit_find_company_action.py +5 -0
  1505. auth0_python-5.0.0/src/auth0/management/types/flow_action_clearbit_find_company_params.py +20 -0
  1506. auth0_python-5.0.0/src/auth0/management/types/flow_action_clearbit_find_company_type.py +5 -0
  1507. auth0_python-5.0.0/src/auth0/management/types/flow_action_clearbit_find_person.py +28 -0
  1508. auth0_python-5.0.0/src/auth0/management/types/flow_action_clearbit_find_person_action.py +5 -0
  1509. auth0_python-5.0.0/src/auth0/management/types/flow_action_clearbit_find_person_params.py +20 -0
  1510. auth0_python-5.0.0/src/auth0/management/types/flow_action_clearbit_find_person_type.py +5 -0
  1511. auth0_python-5.0.0/src/auth0/management/types/flow_action_email.py +5 -0
  1512. auth0_python-5.0.0/src/auth0/management/types/flow_action_email_verify_email.py +28 -0
  1513. auth0_python-5.0.0/src/auth0/management/types/flow_action_email_verify_email_action.py +5 -0
  1514. auth0_python-5.0.0/src/auth0/management/types/flow_action_email_verify_email_params.py +21 -0
  1515. auth0_python-5.0.0/src/auth0/management/types/flow_action_email_verify_email_params_rules.py +24 -0
  1516. auth0_python-5.0.0/src/auth0/management/types/flow_action_email_verify_email_type.py +5 -0
  1517. auth0_python-5.0.0/src/auth0/management/types/flow_action_flow.py +24 -0
  1518. auth0_python-5.0.0/src/auth0/management/types/flow_action_flow_boolean_condition.py +41 -0
  1519. auth0_python-5.0.0/src/auth0/management/types/flow_action_flow_boolean_condition_action.py +5 -0
  1520. auth0_python-5.0.0/src/auth0/management/types/flow_action_flow_boolean_condition_params.py +38 -0
  1521. auth0_python-5.0.0/src/auth0/management/types/flow_action_flow_boolean_condition_type.py +5 -0
  1522. auth0_python-5.0.0/src/auth0/management/types/flow_action_flow_delay_flow.py +28 -0
  1523. auth0_python-5.0.0/src/auth0/management/types/flow_action_flow_delay_flow_action.py +5 -0
  1524. auth0_python-5.0.0/src/auth0/management/types/flow_action_flow_delay_flow_params.py +22 -0
  1525. auth0_python-5.0.0/src/auth0/management/types/flow_action_flow_delay_flow_params_number.py +5 -0
  1526. auth0_python-5.0.0/src/auth0/management/types/flow_action_flow_delay_flow_params_units.py +5 -0
  1527. auth0_python-5.0.0/src/auth0/management/types/flow_action_flow_delay_flow_type.py +5 -0
  1528. auth0_python-5.0.0/src/auth0/management/types/flow_action_flow_do_nothing.py +28 -0
  1529. auth0_python-5.0.0/src/auth0/management/types/flow_action_flow_do_nothing_action.py +5 -0
  1530. auth0_python-5.0.0/src/auth0/management/types/flow_action_flow_do_nothing_params.py +17 -0
  1531. auth0_python-5.0.0/src/auth0/management/types/flow_action_flow_do_nothing_type.py +5 -0
  1532. auth0_python-5.0.0/src/auth0/management/types/flow_action_flow_error_message.py +28 -0
  1533. auth0_python-5.0.0/src/auth0/management/types/flow_action_flow_error_message_action.py +5 -0
  1534. auth0_python-5.0.0/src/auth0/management/types/flow_action_flow_error_message_params.py +19 -0
  1535. auth0_python-5.0.0/src/auth0/management/types/flow_action_flow_error_message_type.py +5 -0
  1536. auth0_python-5.0.0/src/auth0/management/types/flow_action_flow_map_value.py +28 -0
  1537. auth0_python-5.0.0/src/auth0/management/types/flow_action_flow_map_value_action.py +5 -0
  1538. auth0_python-5.0.0/src/auth0/management/types/flow_action_flow_map_value_params.py +24 -0
  1539. auth0_python-5.0.0/src/auth0/management/types/flow_action_flow_map_value_params_cases.py +5 -0
  1540. auth0_python-5.0.0/src/auth0/management/types/flow_action_flow_map_value_params_fallback.py +9 -0
  1541. auth0_python-5.0.0/src/auth0/management/types/flow_action_flow_map_value_params_fallback_object.py +5 -0
  1542. auth0_python-5.0.0/src/auth0/management/types/flow_action_flow_map_value_params_input.py +5 -0
  1543. auth0_python-5.0.0/src/auth0/management/types/flow_action_flow_map_value_type.py +5 -0
  1544. auth0_python-5.0.0/src/auth0/management/types/flow_action_flow_return_json.py +28 -0
  1545. auth0_python-5.0.0/src/auth0/management/types/flow_action_flow_return_json_action.py +5 -0
  1546. auth0_python-5.0.0/src/auth0/management/types/flow_action_flow_return_json_params.py +20 -0
  1547. auth0_python-5.0.0/src/auth0/management/types/flow_action_flow_return_json_params_payload.py +7 -0
  1548. auth0_python-5.0.0/src/auth0/management/types/flow_action_flow_return_json_params_payload_object.py +5 -0
  1549. auth0_python-5.0.0/src/auth0/management/types/flow_action_flow_return_json_type.py +5 -0
  1550. auth0_python-5.0.0/src/auth0/management/types/flow_action_flow_store_vars.py +28 -0
  1551. auth0_python-5.0.0/src/auth0/management/types/flow_action_flow_store_vars_action.py +5 -0
  1552. auth0_python-5.0.0/src/auth0/management/types/flow_action_flow_store_vars_params.py +20 -0
  1553. auth0_python-5.0.0/src/auth0/management/types/flow_action_flow_store_vars_params_vars.py +5 -0
  1554. auth0_python-5.0.0/src/auth0/management/types/flow_action_flow_store_vars_type.py +5 -0
  1555. auth0_python-5.0.0/src/auth0/management/types/flow_action_google_sheets.py +5 -0
  1556. auth0_python-5.0.0/src/auth0/management/types/flow_action_google_sheets_add_row.py +28 -0
  1557. auth0_python-5.0.0/src/auth0/management/types/flow_action_google_sheets_add_row_action.py +5 -0
  1558. auth0_python-5.0.0/src/auth0/management/types/flow_action_google_sheets_add_row_params.py +24 -0
  1559. auth0_python-5.0.0/src/auth0/management/types/flow_action_google_sheets_add_row_params_sheet_id.py +5 -0
  1560. auth0_python-5.0.0/src/auth0/management/types/flow_action_google_sheets_add_row_params_values.py +5 -0
  1561. auth0_python-5.0.0/src/auth0/management/types/flow_action_google_sheets_add_row_type.py +5 -0
  1562. auth0_python-5.0.0/src/auth0/management/types/flow_action_http.py +5 -0
  1563. auth0_python-5.0.0/src/auth0/management/types/flow_action_http_send_request.py +28 -0
  1564. auth0_python-5.0.0/src/auth0/management/types/flow_action_http_send_request_action.py +5 -0
  1565. auth0_python-5.0.0/src/auth0/management/types/flow_action_http_send_request_params.py +32 -0
  1566. auth0_python-5.0.0/src/auth0/management/types/flow_action_http_send_request_params_basic_auth.py +20 -0
  1567. auth0_python-5.0.0/src/auth0/management/types/flow_action_http_send_request_params_content_type.py +5 -0
  1568. auth0_python-5.0.0/src/auth0/management/types/flow_action_http_send_request_params_headers.py +5 -0
  1569. auth0_python-5.0.0/src/auth0/management/types/flow_action_http_send_request_params_method.py +7 -0
  1570. auth0_python-5.0.0/src/auth0/management/types/flow_action_http_send_request_params_payload.py +9 -0
  1571. auth0_python-5.0.0/src/auth0/management/types/flow_action_http_send_request_params_payload_object.py +5 -0
  1572. auth0_python-5.0.0/src/auth0/management/types/flow_action_http_send_request_params_query_params.py +9 -0
  1573. auth0_python-5.0.0/src/auth0/management/types/flow_action_http_send_request_params_query_params_value.py +5 -0
  1574. auth0_python-5.0.0/src/auth0/management/types/flow_action_http_send_request_type.py +5 -0
  1575. auth0_python-5.0.0/src/auth0/management/types/flow_action_hubspot.py +11 -0
  1576. auth0_python-5.0.0/src/auth0/management/types/flow_action_hubspot_enroll_contact.py +28 -0
  1577. auth0_python-5.0.0/src/auth0/management/types/flow_action_hubspot_enroll_contact_action.py +5 -0
  1578. auth0_python-5.0.0/src/auth0/management/types/flow_action_hubspot_enroll_contact_params.py +22 -0
  1579. auth0_python-5.0.0/src/auth0/management/types/flow_action_hubspot_enroll_contact_params_workflow_id.py +5 -0
  1580. auth0_python-5.0.0/src/auth0/management/types/flow_action_hubspot_enroll_contact_type.py +5 -0
  1581. auth0_python-5.0.0/src/auth0/management/types/flow_action_hubspot_get_contact.py +28 -0
  1582. auth0_python-5.0.0/src/auth0/management/types/flow_action_hubspot_get_contact_action.py +5 -0
  1583. auth0_python-5.0.0/src/auth0/management/types/flow_action_hubspot_get_contact_params.py +20 -0
  1584. auth0_python-5.0.0/src/auth0/management/types/flow_action_hubspot_get_contact_type.py +5 -0
  1585. auth0_python-5.0.0/src/auth0/management/types/flow_action_hubspot_upsert_contact.py +28 -0
  1586. auth0_python-5.0.0/src/auth0/management/types/flow_action_hubspot_upsert_contact_action.py +5 -0
  1587. auth0_python-5.0.0/src/auth0/management/types/flow_action_hubspot_upsert_contact_params.py +22 -0
  1588. auth0_python-5.0.0/src/auth0/management/types/flow_action_hubspot_upsert_contact_params_property.py +19 -0
  1589. auth0_python-5.0.0/src/auth0/management/types/flow_action_hubspot_upsert_contact_type.py +5 -0
  1590. auth0_python-5.0.0/src/auth0/management/types/flow_action_json.py +9 -0
  1591. auth0_python-5.0.0/src/auth0/management/types/flow_action_json_create_json.py +28 -0
  1592. auth0_python-5.0.0/src/auth0/management/types/flow_action_json_create_json_action.py +5 -0
  1593. auth0_python-5.0.0/src/auth0/management/types/flow_action_json_create_json_params.py +20 -0
  1594. auth0_python-5.0.0/src/auth0/management/types/flow_action_json_create_json_params_object.py +5 -0
  1595. auth0_python-5.0.0/src/auth0/management/types/flow_action_json_create_json_type.py +5 -0
  1596. auth0_python-5.0.0/src/auth0/management/types/flow_action_json_parse_json.py +28 -0
  1597. auth0_python-5.0.0/src/auth0/management/types/flow_action_json_parse_json_action.py +5 -0
  1598. auth0_python-5.0.0/src/auth0/management/types/flow_action_json_parse_json_params.py +21 -0
  1599. auth0_python-5.0.0/src/auth0/management/types/flow_action_json_parse_json_type.py +5 -0
  1600. auth0_python-5.0.0/src/auth0/management/types/flow_action_json_serialize_json.py +28 -0
  1601. auth0_python-5.0.0/src/auth0/management/types/flow_action_json_serialize_json_action.py +5 -0
  1602. auth0_python-5.0.0/src/auth0/management/types/flow_action_json_serialize_json_params.py +20 -0
  1603. auth0_python-5.0.0/src/auth0/management/types/flow_action_json_serialize_json_params_object.py +7 -0
  1604. auth0_python-5.0.0/src/auth0/management/types/flow_action_json_serialize_json_params_object_object.py +5 -0
  1605. auth0_python-5.0.0/src/auth0/management/types/flow_action_json_serialize_json_type.py +5 -0
  1606. auth0_python-5.0.0/src/auth0/management/types/flow_action_jwt.py +9 -0
  1607. auth0_python-5.0.0/src/auth0/management/types/flow_action_jwt_decode_jwt.py +28 -0
  1608. auth0_python-5.0.0/src/auth0/management/types/flow_action_jwt_decode_jwt_action.py +5 -0
  1609. auth0_python-5.0.0/src/auth0/management/types/flow_action_jwt_decode_jwt_params.py +19 -0
  1610. auth0_python-5.0.0/src/auth0/management/types/flow_action_jwt_decode_jwt_type.py +5 -0
  1611. auth0_python-5.0.0/src/auth0/management/types/flow_action_jwt_sign_jwt.py +28 -0
  1612. auth0_python-5.0.0/src/auth0/management/types/flow_action_jwt_sign_jwt_action.py +5 -0
  1613. auth0_python-5.0.0/src/auth0/management/types/flow_action_jwt_sign_jwt_params.py +25 -0
  1614. auth0_python-5.0.0/src/auth0/management/types/flow_action_jwt_sign_jwt_params_payload.py +5 -0
  1615. auth0_python-5.0.0/src/auth0/management/types/flow_action_jwt_sign_jwt_type.py +5 -0
  1616. auth0_python-5.0.0/src/auth0/management/types/flow_action_jwt_verify_jwt.py +28 -0
  1617. auth0_python-5.0.0/src/auth0/management/types/flow_action_jwt_verify_jwt_action.py +5 -0
  1618. auth0_python-5.0.0/src/auth0/management/types/flow_action_jwt_verify_jwt_params.py +22 -0
  1619. auth0_python-5.0.0/src/auth0/management/types/flow_action_jwt_verify_jwt_type.py +5 -0
  1620. auth0_python-5.0.0/src/auth0/management/types/flow_action_mailchimp.py +5 -0
  1621. auth0_python-5.0.0/src/auth0/management/types/flow_action_mailchimp_upsert_member.py +28 -0
  1622. auth0_python-5.0.0/src/auth0/management/types/flow_action_mailchimp_upsert_member_action.py +5 -0
  1623. auth0_python-5.0.0/src/auth0/management/types/flow_action_mailchimp_upsert_member_params.py +22 -0
  1624. auth0_python-5.0.0/src/auth0/management/types/flow_action_mailchimp_upsert_member_params_member.py +24 -0
  1625. auth0_python-5.0.0/src/auth0/management/types/flow_action_mailchimp_upsert_member_params_member_merge_fields.py +5 -0
  1626. auth0_python-5.0.0/src/auth0/management/types/flow_action_mailchimp_upsert_member_type.py +5 -0
  1627. auth0_python-5.0.0/src/auth0/management/types/flow_action_mailjet.py +5 -0
  1628. auth0_python-5.0.0/src/auth0/management/types/flow_action_mailjet_send_email.py +28 -0
  1629. auth0_python-5.0.0/src/auth0/management/types/flow_action_mailjet_send_email_action.py +5 -0
  1630. auth0_python-5.0.0/src/auth0/management/types/flow_action_mailjet_send_email_params.py +10 -0
  1631. auth0_python-5.0.0/src/auth0/management/types/flow_action_mailjet_send_email_params_content.py +19 -0
  1632. auth0_python-5.0.0/src/auth0/management/types/flow_action_mailjet_send_email_params_template_id.py +20 -0
  1633. auth0_python-5.0.0/src/auth0/management/types/flow_action_mailjet_send_email_type.py +5 -0
  1634. auth0_python-5.0.0/src/auth0/management/types/flow_action_otp.py +8 -0
  1635. auth0_python-5.0.0/src/auth0/management/types/flow_action_otp_generate_code.py +28 -0
  1636. auth0_python-5.0.0/src/auth0/management/types/flow_action_otp_generate_code_action.py +5 -0
  1637. auth0_python-5.0.0/src/auth0/management/types/flow_action_otp_generate_code_params.py +20 -0
  1638. auth0_python-5.0.0/src/auth0/management/types/flow_action_otp_generate_code_type.py +5 -0
  1639. auth0_python-5.0.0/src/auth0/management/types/flow_action_otp_verify_code.py +28 -0
  1640. auth0_python-5.0.0/src/auth0/management/types/flow_action_otp_verify_code_action.py +5 -0
  1641. auth0_python-5.0.0/src/auth0/management/types/flow_action_otp_verify_code_params.py +21 -0
  1642. auth0_python-5.0.0/src/auth0/management/types/flow_action_otp_verify_code_params_code.py +5 -0
  1643. auth0_python-5.0.0/src/auth0/management/types/flow_action_otp_verify_code_type.py +5 -0
  1644. auth0_python-5.0.0/src/auth0/management/types/flow_action_pipedrive.py +11 -0
  1645. auth0_python-5.0.0/src/auth0/management/types/flow_action_pipedrive_add_deal.py +28 -0
  1646. auth0_python-5.0.0/src/auth0/management/types/flow_action_pipedrive_add_deal_action.py +5 -0
  1647. auth0_python-5.0.0/src/auth0/management/types/flow_action_pipedrive_add_deal_params.py +31 -0
  1648. auth0_python-5.0.0/src/auth0/management/types/flow_action_pipedrive_add_deal_params_fields.py +5 -0
  1649. auth0_python-5.0.0/src/auth0/management/types/flow_action_pipedrive_add_deal_params_organization_id.py +5 -0
  1650. auth0_python-5.0.0/src/auth0/management/types/flow_action_pipedrive_add_deal_params_person_id.py +5 -0
  1651. auth0_python-5.0.0/src/auth0/management/types/flow_action_pipedrive_add_deal_params_stage_id.py +5 -0
  1652. auth0_python-5.0.0/src/auth0/management/types/flow_action_pipedrive_add_deal_params_user_id.py +5 -0
  1653. auth0_python-5.0.0/src/auth0/management/types/flow_action_pipedrive_add_deal_type.py +5 -0
  1654. auth0_python-5.0.0/src/auth0/management/types/flow_action_pipedrive_add_organization.py +28 -0
  1655. auth0_python-5.0.0/src/auth0/management/types/flow_action_pipedrive_add_organization_action.py +5 -0
  1656. auth0_python-5.0.0/src/auth0/management/types/flow_action_pipedrive_add_organization_params.py +24 -0
  1657. auth0_python-5.0.0/src/auth0/management/types/flow_action_pipedrive_add_organization_params_fields.py +5 -0
  1658. auth0_python-5.0.0/src/auth0/management/types/flow_action_pipedrive_add_organization_params_owner_id.py +5 -0
  1659. auth0_python-5.0.0/src/auth0/management/types/flow_action_pipedrive_add_organization_type.py +5 -0
  1660. auth0_python-5.0.0/src/auth0/management/types/flow_action_pipedrive_add_person.py +28 -0
  1661. auth0_python-5.0.0/src/auth0/management/types/flow_action_pipedrive_add_person_action.py +5 -0
  1662. auth0_python-5.0.0/src/auth0/management/types/flow_action_pipedrive_add_person_params.py +28 -0
  1663. auth0_python-5.0.0/src/auth0/management/types/flow_action_pipedrive_add_person_params_fields.py +5 -0
  1664. auth0_python-5.0.0/src/auth0/management/types/flow_action_pipedrive_add_person_params_organization_id.py +5 -0
  1665. auth0_python-5.0.0/src/auth0/management/types/flow_action_pipedrive_add_person_params_owner_id.py +5 -0
  1666. auth0_python-5.0.0/src/auth0/management/types/flow_action_pipedrive_add_person_type.py +5 -0
  1667. auth0_python-5.0.0/src/auth0/management/types/flow_action_salesforce.py +15 -0
  1668. auth0_python-5.0.0/src/auth0/management/types/flow_action_salesforce_create_lead.py +28 -0
  1669. auth0_python-5.0.0/src/auth0/management/types/flow_action_salesforce_create_lead_action.py +5 -0
  1670. auth0_python-5.0.0/src/auth0/management/types/flow_action_salesforce_create_lead_params.py +26 -0
  1671. auth0_python-5.0.0/src/auth0/management/types/flow_action_salesforce_create_lead_params_payload.py +5 -0
  1672. auth0_python-5.0.0/src/auth0/management/types/flow_action_salesforce_create_lead_type.py +5 -0
  1673. auth0_python-5.0.0/src/auth0/management/types/flow_action_salesforce_get_lead.py +28 -0
  1674. auth0_python-5.0.0/src/auth0/management/types/flow_action_salesforce_get_lead_action.py +5 -0
  1675. auth0_python-5.0.0/src/auth0/management/types/flow_action_salesforce_get_lead_params.py +20 -0
  1676. auth0_python-5.0.0/src/auth0/management/types/flow_action_salesforce_get_lead_type.py +5 -0
  1677. auth0_python-5.0.0/src/auth0/management/types/flow_action_salesforce_search_leads.py +28 -0
  1678. auth0_python-5.0.0/src/auth0/management/types/flow_action_salesforce_search_leads_action.py +5 -0
  1679. auth0_python-5.0.0/src/auth0/management/types/flow_action_salesforce_search_leads_params.py +23 -0
  1680. auth0_python-5.0.0/src/auth0/management/types/flow_action_salesforce_search_leads_params_search_field.py +7 -0
  1681. auth0_python-5.0.0/src/auth0/management/types/flow_action_salesforce_search_leads_type.py +5 -0
  1682. auth0_python-5.0.0/src/auth0/management/types/flow_action_salesforce_update_lead.py +28 -0
  1683. auth0_python-5.0.0/src/auth0/management/types/flow_action_salesforce_update_lead_action.py +5 -0
  1684. auth0_python-5.0.0/src/auth0/management/types/flow_action_salesforce_update_lead_params.py +22 -0
  1685. auth0_python-5.0.0/src/auth0/management/types/flow_action_salesforce_update_lead_params_payload.py +5 -0
  1686. auth0_python-5.0.0/src/auth0/management/types/flow_action_salesforce_update_lead_type.py +5 -0
  1687. auth0_python-5.0.0/src/auth0/management/types/flow_action_sendgrid.py +5 -0
  1688. auth0_python-5.0.0/src/auth0/management/types/flow_action_sendgrid_send_email.py +28 -0
  1689. auth0_python-5.0.0/src/auth0/management/types/flow_action_sendgrid_send_email_action.py +5 -0
  1690. auth0_python-5.0.0/src/auth0/management/types/flow_action_sendgrid_send_email_params.py +26 -0
  1691. auth0_python-5.0.0/src/auth0/management/types/flow_action_sendgrid_send_email_params_person.py +20 -0
  1692. auth0_python-5.0.0/src/auth0/management/types/flow_action_sendgrid_send_email_type.py +5 -0
  1693. auth0_python-5.0.0/src/auth0/management/types/flow_action_slack.py +5 -0
  1694. auth0_python-5.0.0/src/auth0/management/types/flow_action_slack_post_message.py +28 -0
  1695. auth0_python-5.0.0/src/auth0/management/types/flow_action_slack_post_message_action.py +5 -0
  1696. auth0_python-5.0.0/src/auth0/management/types/flow_action_slack_post_message_params.py +22 -0
  1697. auth0_python-5.0.0/src/auth0/management/types/flow_action_slack_post_message_params_attachment.py +24 -0
  1698. auth0_python-5.0.0/src/auth0/management/types/flow_action_slack_post_message_params_attachment_color.py +5 -0
  1699. auth0_python-5.0.0/src/auth0/management/types/flow_action_slack_post_message_params_attachment_field.py +21 -0
  1700. auth0_python-5.0.0/src/auth0/management/types/flow_action_slack_post_message_type.py +5 -0
  1701. auth0_python-5.0.0/src/auth0/management/types/flow_action_stripe.py +21 -0
  1702. auth0_python-5.0.0/src/auth0/management/types/flow_action_stripe_add_tax_id.py +28 -0
  1703. auth0_python-5.0.0/src/auth0/management/types/flow_action_stripe_add_tax_id_action.py +5 -0
  1704. auth0_python-5.0.0/src/auth0/management/types/flow_action_stripe_add_tax_id_params.py +22 -0
  1705. auth0_python-5.0.0/src/auth0/management/types/flow_action_stripe_add_tax_id_type.py +5 -0
  1706. auth0_python-5.0.0/src/auth0/management/types/flow_action_stripe_address.py +32 -0
  1707. auth0_python-5.0.0/src/auth0/management/types/flow_action_stripe_create_customer.py +28 -0
  1708. auth0_python-5.0.0/src/auth0/management/types/flow_action_stripe_create_customer_action.py +5 -0
  1709. auth0_python-5.0.0/src/auth0/management/types/flow_action_stripe_create_customer_params.py +30 -0
  1710. auth0_python-5.0.0/src/auth0/management/types/flow_action_stripe_create_customer_type.py +5 -0
  1711. auth0_python-5.0.0/src/auth0/management/types/flow_action_stripe_create_portal_session.py +28 -0
  1712. auth0_python-5.0.0/src/auth0/management/types/flow_action_stripe_create_portal_session_action.py +5 -0
  1713. auth0_python-5.0.0/src/auth0/management/types/flow_action_stripe_create_portal_session_params.py +21 -0
  1714. auth0_python-5.0.0/src/auth0/management/types/flow_action_stripe_create_portal_session_type.py +5 -0
  1715. auth0_python-5.0.0/src/auth0/management/types/flow_action_stripe_delete_tax_id.py +28 -0
  1716. auth0_python-5.0.0/src/auth0/management/types/flow_action_stripe_delete_tax_id_action.py +5 -0
  1717. auth0_python-5.0.0/src/auth0/management/types/flow_action_stripe_delete_tax_id_params.py +21 -0
  1718. auth0_python-5.0.0/src/auth0/management/types/flow_action_stripe_delete_tax_id_type.py +5 -0
  1719. auth0_python-5.0.0/src/auth0/management/types/flow_action_stripe_find_customers.py +28 -0
  1720. auth0_python-5.0.0/src/auth0/management/types/flow_action_stripe_find_customers_action.py +5 -0
  1721. auth0_python-5.0.0/src/auth0/management/types/flow_action_stripe_find_customers_params.py +20 -0
  1722. auth0_python-5.0.0/src/auth0/management/types/flow_action_stripe_find_customers_type.py +5 -0
  1723. auth0_python-5.0.0/src/auth0/management/types/flow_action_stripe_get_customer.py +28 -0
  1724. auth0_python-5.0.0/src/auth0/management/types/flow_action_stripe_get_customer_action.py +5 -0
  1725. auth0_python-5.0.0/src/auth0/management/types/flow_action_stripe_get_customer_params.py +20 -0
  1726. auth0_python-5.0.0/src/auth0/management/types/flow_action_stripe_get_customer_type.py +5 -0
  1727. auth0_python-5.0.0/src/auth0/management/types/flow_action_stripe_metadata.py +5 -0
  1728. auth0_python-5.0.0/src/auth0/management/types/flow_action_stripe_tax_id.py +20 -0
  1729. auth0_python-5.0.0/src/auth0/management/types/flow_action_stripe_update_customer.py +28 -0
  1730. auth0_python-5.0.0/src/auth0/management/types/flow_action_stripe_update_customer_action.py +5 -0
  1731. auth0_python-5.0.0/src/auth0/management/types/flow_action_stripe_update_customer_params.py +29 -0
  1732. auth0_python-5.0.0/src/auth0/management/types/flow_action_stripe_update_customer_type.py +5 -0
  1733. auth0_python-5.0.0/src/auth0/management/types/flow_action_telegram.py +5 -0
  1734. auth0_python-5.0.0/src/auth0/management/types/flow_action_telegram_send_message.py +28 -0
  1735. auth0_python-5.0.0/src/auth0/management/types/flow_action_telegram_send_message_action.py +5 -0
  1736. auth0_python-5.0.0/src/auth0/management/types/flow_action_telegram_send_message_params.py +21 -0
  1737. auth0_python-5.0.0/src/auth0/management/types/flow_action_telegram_send_message_type.py +5 -0
  1738. auth0_python-5.0.0/src/auth0/management/types/flow_action_twilio.py +8 -0
  1739. auth0_python-5.0.0/src/auth0/management/types/flow_action_twilio_make_call.py +28 -0
  1740. auth0_python-5.0.0/src/auth0/management/types/flow_action_twilio_make_call_action.py +5 -0
  1741. auth0_python-5.0.0/src/auth0/management/types/flow_action_twilio_make_call_params.py +24 -0
  1742. auth0_python-5.0.0/src/auth0/management/types/flow_action_twilio_make_call_type.py +5 -0
  1743. auth0_python-5.0.0/src/auth0/management/types/flow_action_twilio_send_sms.py +28 -0
  1744. auth0_python-5.0.0/src/auth0/management/types/flow_action_twilio_send_sms_action.py +5 -0
  1745. auth0_python-5.0.0/src/auth0/management/types/flow_action_twilio_send_sms_params.py +24 -0
  1746. auth0_python-5.0.0/src/auth0/management/types/flow_action_twilio_send_sms_type.py +5 -0
  1747. auth0_python-5.0.0/src/auth0/management/types/flow_action_whatsapp.py +5 -0
  1748. auth0_python-5.0.0/src/auth0/management/types/flow_action_whatsapp_send_message.py +28 -0
  1749. auth0_python-5.0.0/src/auth0/management/types/flow_action_whatsapp_send_message_action.py +5 -0
  1750. auth0_python-5.0.0/src/auth0/management/types/flow_action_whatsapp_send_message_params.py +25 -0
  1751. auth0_python-5.0.0/src/auth0/management/types/flow_action_whatsapp_send_message_params_payload.py +7 -0
  1752. auth0_python-5.0.0/src/auth0/management/types/flow_action_whatsapp_send_message_params_payload_object.py +5 -0
  1753. auth0_python-5.0.0/src/auth0/management/types/flow_action_whatsapp_send_message_params_type.py +8 -0
  1754. auth0_python-5.0.0/src/auth0/management/types/flow_action_whatsapp_send_message_type.py +5 -0
  1755. auth0_python-5.0.0/src/auth0/management/types/flow_action_xml.py +8 -0
  1756. auth0_python-5.0.0/src/auth0/management/types/flow_action_xml_parse_xml.py +28 -0
  1757. auth0_python-5.0.0/src/auth0/management/types/flow_action_xml_parse_xml_action.py +5 -0
  1758. auth0_python-5.0.0/src/auth0/management/types/flow_action_xml_parse_xml_params.py +19 -0
  1759. auth0_python-5.0.0/src/auth0/management/types/flow_action_xml_parse_xml_type.py +5 -0
  1760. auth0_python-5.0.0/src/auth0/management/types/flow_action_xml_serialize_xml.py +28 -0
  1761. auth0_python-5.0.0/src/auth0/management/types/flow_action_xml_serialize_xml_action.py +5 -0
  1762. auth0_python-5.0.0/src/auth0/management/types/flow_action_xml_serialize_xml_params.py +20 -0
  1763. auth0_python-5.0.0/src/auth0/management/types/flow_action_xml_serialize_xml_params_object.py +7 -0
  1764. auth0_python-5.0.0/src/auth0/management/types/flow_action_xml_serialize_xml_params_object_object.py +5 -0
  1765. auth0_python-5.0.0/src/auth0/management/types/flow_action_xml_serialize_xml_type.py +5 -0
  1766. auth0_python-5.0.0/src/auth0/management/types/flow_action_zapier.py +5 -0
  1767. auth0_python-5.0.0/src/auth0/management/types/flow_action_zapier_trigger_webhook.py +28 -0
  1768. auth0_python-5.0.0/src/auth0/management/types/flow_action_zapier_trigger_webhook_action.py +5 -0
  1769. auth0_python-5.0.0/src/auth0/management/types/flow_action_zapier_trigger_webhook_params.py +21 -0
  1770. auth0_python-5.0.0/src/auth0/management/types/flow_action_zapier_trigger_webhook_params_method.py +5 -0
  1771. auth0_python-5.0.0/src/auth0/management/types/flow_action_zapier_trigger_webhook_type.py +5 -0
  1772. auth0_python-5.0.0/src/auth0/management/types/flow_execution_debug.py +5 -0
  1773. auth0_python-5.0.0/src/auth0/management/types/flow_execution_summary.py +58 -0
  1774. auth0_python-5.0.0/src/auth0/management/types/flow_summary.py +24 -0
  1775. auth0_python-5.0.0/src/auth0/management/types/flows_vault_connectio_setup_api_key.py +21 -0
  1776. auth0_python-5.0.0/src/auth0/management/types/flows_vault_connectio_setup_api_key_with_base_url.py +22 -0
  1777. auth0_python-5.0.0/src/auth0/management/types/flows_vault_connectio_setup_bigquery_oauth_jwt.py +23 -0
  1778. auth0_python-5.0.0/src/auth0/management/types/flows_vault_connectio_setup_http_bearer.py +21 -0
  1779. auth0_python-5.0.0/src/auth0/management/types/flows_vault_connectio_setup_jwt.py +22 -0
  1780. auth0_python-5.0.0/src/auth0/management/types/flows_vault_connectio_setup_jwt_algorithm_enum.py +10 -0
  1781. auth0_python-5.0.0/src/auth0/management/types/flows_vault_connectio_setup_mailjet_api_key.py +22 -0
  1782. auth0_python-5.0.0/src/auth0/management/types/flows_vault_connectio_setup_oauth_app.py +24 -0
  1783. auth0_python-5.0.0/src/auth0/management/types/flows_vault_connectio_setup_oauth_code.py +21 -0
  1784. auth0_python-5.0.0/src/auth0/management/types/flows_vault_connectio_setup_secret_api_key.py +21 -0
  1785. auth0_python-5.0.0/src/auth0/management/types/flows_vault_connectio_setup_stripe_key_pair.py +22 -0
  1786. auth0_python-5.0.0/src/auth0/management/types/flows_vault_connectio_setup_token.py +21 -0
  1787. auth0_python-5.0.0/src/auth0/management/types/flows_vault_connectio_setup_twilio_api_key.py +22 -0
  1788. auth0_python-5.0.0/src/auth0/management/types/flows_vault_connectio_setup_type_api_key_enum.py +5 -0
  1789. auth0_python-5.0.0/src/auth0/management/types/flows_vault_connectio_setup_type_bearer_enum.py +5 -0
  1790. auth0_python-5.0.0/src/auth0/management/types/flows_vault_connectio_setup_type_jwt_enum.py +5 -0
  1791. auth0_python-5.0.0/src/auth0/management/types/flows_vault_connectio_setup_type_key_pair_enum.py +5 -0
  1792. auth0_python-5.0.0/src/auth0/management/types/flows_vault_connectio_setup_type_oauth_app_enum.py +5 -0
  1793. auth0_python-5.0.0/src/auth0/management/types/flows_vault_connectio_setup_type_oauth_code_enum.py +5 -0
  1794. auth0_python-5.0.0/src/auth0/management/types/flows_vault_connectio_setup_type_oauth_jwt_enum.py +5 -0
  1795. auth0_python-5.0.0/src/auth0/management/types/flows_vault_connectio_setup_type_token_enum.py +5 -0
  1796. auth0_python-5.0.0/src/auth0/management/types/flows_vault_connectio_setup_type_webhook_enum.py +5 -0
  1797. auth0_python-5.0.0/src/auth0/management/types/flows_vault_connectio_setup_webhook.py +21 -0
  1798. auth0_python-5.0.0/src/auth0/management/types/flows_vault_connection_app_id_activecampaign_enum.py +5 -0
  1799. auth0_python-5.0.0/src/auth0/management/types/flows_vault_connection_app_id_airtable_enum.py +5 -0
  1800. auth0_python-5.0.0/src/auth0/management/types/flows_vault_connection_app_id_auth_0_enum.py +5 -0
  1801. auth0_python-5.0.0/src/auth0/management/types/flows_vault_connection_app_id_bigquery_enum.py +5 -0
  1802. auth0_python-5.0.0/src/auth0/management/types/flows_vault_connection_app_id_clearbit_enum.py +5 -0
  1803. auth0_python-5.0.0/src/auth0/management/types/flows_vault_connection_app_id_docusign_enum.py +5 -0
  1804. auth0_python-5.0.0/src/auth0/management/types/flows_vault_connection_app_id_google_sheets_enum.py +5 -0
  1805. auth0_python-5.0.0/src/auth0/management/types/flows_vault_connection_app_id_http_enum.py +5 -0
  1806. auth0_python-5.0.0/src/auth0/management/types/flows_vault_connection_app_id_hubspot_enum.py +5 -0
  1807. auth0_python-5.0.0/src/auth0/management/types/flows_vault_connection_app_id_jwt_enum.py +5 -0
  1808. auth0_python-5.0.0/src/auth0/management/types/flows_vault_connection_app_id_mailchimp_enum.py +5 -0
  1809. auth0_python-5.0.0/src/auth0/management/types/flows_vault_connection_app_id_mailjet_enum.py +5 -0
  1810. auth0_python-5.0.0/src/auth0/management/types/flows_vault_connection_app_id_pipedrive_enum.py +5 -0
  1811. auth0_python-5.0.0/src/auth0/management/types/flows_vault_connection_app_id_salesforce_enum.py +5 -0
  1812. auth0_python-5.0.0/src/auth0/management/types/flows_vault_connection_app_id_sendgrid_enum.py +5 -0
  1813. auth0_python-5.0.0/src/auth0/management/types/flows_vault_connection_app_id_slack_enum.py +5 -0
  1814. auth0_python-5.0.0/src/auth0/management/types/flows_vault_connection_app_id_stripe_enum.py +5 -0
  1815. auth0_python-5.0.0/src/auth0/management/types/flows_vault_connection_app_id_telegram_enum.py +5 -0
  1816. auth0_python-5.0.0/src/auth0/management/types/flows_vault_connection_app_id_twilio_enum.py +5 -0
  1817. auth0_python-5.0.0/src/auth0/management/types/flows_vault_connection_app_id_whatsapp_enum.py +5 -0
  1818. auth0_python-5.0.0/src/auth0/management/types/flows_vault_connection_app_id_zapier_enum.py +5 -0
  1819. auth0_python-5.0.0/src/auth0/management/types/flows_vault_connection_http_api_key_setup.py +28 -0
  1820. auth0_python-5.0.0/src/auth0/management/types/flows_vault_connection_http_api_key_setup_in_enum.py +5 -0
  1821. auth0_python-5.0.0/src/auth0/management/types/flows_vault_connection_http_basic_auth_setup.py +22 -0
  1822. auth0_python-5.0.0/src/auth0/management/types/flows_vault_connection_http_oauth_client_credentials_setup.py +28 -0
  1823. auth0_python-5.0.0/src/auth0/management/types/flows_vault_connection_setup_type_api_key_enum.py +5 -0
  1824. auth0_python-5.0.0/src/auth0/management/types/flows_vault_connection_setup_type_basic_auth_enum.py +5 -0
  1825. auth0_python-5.0.0/src/auth0/management/types/flows_vault_connection_setup_type_oauth_client_credentials_enum.py +7 -0
  1826. auth0_python-5.0.0/src/auth0/management/types/flows_vault_connection_summary.py +60 -0
  1827. auth0_python-5.0.0/src/auth0/management/types/form_block.py +23 -0
  1828. auth0_python-5.0.0/src/auth0/management/types/form_block_divider.py +25 -0
  1829. auth0_python-5.0.0/src/auth0/management/types/form_block_divider_config.py +19 -0
  1830. auth0_python-5.0.0/src/auth0/management/types/form_block_html.py +25 -0
  1831. auth0_python-5.0.0/src/auth0/management/types/form_block_html_config.py +19 -0
  1832. auth0_python-5.0.0/src/auth0/management/types/form_block_image.py +25 -0
  1833. auth0_python-5.0.0/src/auth0/management/types/form_block_image_config.py +22 -0
  1834. auth0_python-5.0.0/src/auth0/management/types/form_block_image_config_position_enum.py +5 -0
  1835. auth0_python-5.0.0/src/auth0/management/types/form_block_jump_button.py +25 -0
  1836. auth0_python-5.0.0/src/auth0/management/types/form_block_jump_button_config.py +23 -0
  1837. auth0_python-5.0.0/src/auth0/management/types/form_block_jump_button_config_style.py +19 -0
  1838. auth0_python-5.0.0/src/auth0/management/types/form_block_next_button.py +25 -0
  1839. auth0_python-5.0.0/src/auth0/management/types/form_block_next_button_config.py +19 -0
  1840. auth0_python-5.0.0/src/auth0/management/types/form_block_previous_button.py +25 -0
  1841. auth0_python-5.0.0/src/auth0/management/types/form_block_previous_button_config.py +19 -0
  1842. auth0_python-5.0.0/src/auth0/management/types/form_block_resend_button.py +25 -0
  1843. auth0_python-5.0.0/src/auth0/management/types/form_block_resend_button_config.py +26 -0
  1844. auth0_python-5.0.0/src/auth0/management/types/form_block_resend_button_config_text_alignment_enum.py +5 -0
  1845. auth0_python-5.0.0/src/auth0/management/types/form_block_rich_text.py +25 -0
  1846. auth0_python-5.0.0/src/auth0/management/types/form_block_rich_text_config.py +19 -0
  1847. auth0_python-5.0.0/src/auth0/management/types/form_block_type_divider_const.py +5 -0
  1848. auth0_python-5.0.0/src/auth0/management/types/form_block_type_html_const.py +5 -0
  1849. auth0_python-5.0.0/src/auth0/management/types/form_block_type_image_const.py +5 -0
  1850. auth0_python-5.0.0/src/auth0/management/types/form_block_type_jump_button_const.py +5 -0
  1851. auth0_python-5.0.0/src/auth0/management/types/form_block_type_next_button_const.py +5 -0
  1852. auth0_python-5.0.0/src/auth0/management/types/form_block_type_previous_button_const.py +5 -0
  1853. auth0_python-5.0.0/src/auth0/management/types/form_block_type_resend_button_const.py +5 -0
  1854. auth0_python-5.0.0/src/auth0/management/types/form_block_type_rich_text_const.py +5 -0
  1855. auth0_python-5.0.0/src/auth0/management/types/form_component.py +9 -0
  1856. auth0_python-5.0.0/src/auth0/management/types/form_component_category_block_const.py +5 -0
  1857. auth0_python-5.0.0/src/auth0/management/types/form_component_category_field_const.py +5 -0
  1858. auth0_python-5.0.0/src/auth0/management/types/form_component_category_widget_const.py +5 -0
  1859. auth0_python-5.0.0/src/auth0/management/types/form_ending_node.py +26 -0
  1860. auth0_python-5.0.0/src/auth0/management/types/form_ending_node_after_submit.py +19 -0
  1861. auth0_python-5.0.0/src/auth0/management/types/form_ending_node_id.py +5 -0
  1862. auth0_python-5.0.0/src/auth0/management/types/form_ending_node_nullable.py +7 -0
  1863. auth0_python-5.0.0/src/auth0/management/types/form_ending_node_redirection.py +20 -0
  1864. auth0_python-5.0.0/src/auth0/management/types/form_ending_node_resume_flow_true_const.py +3 -0
  1865. auth0_python-5.0.0/src/auth0/management/types/form_field.py +39 -0
  1866. auth0_python-5.0.0/src/auth0/management/types/form_field_boolean.py +29 -0
  1867. auth0_python-5.0.0/src/auth0/management/types/form_field_boolean_config.py +21 -0
  1868. auth0_python-5.0.0/src/auth0/management/types/form_field_boolean_config_options.py +20 -0
  1869. auth0_python-5.0.0/src/auth0/management/types/form_field_cards.py +29 -0
  1870. auth0_python-5.0.0/src/auth0/management/types/form_field_cards_config.py +22 -0
  1871. auth0_python-5.0.0/src/auth0/management/types/form_field_cards_config_option.py +21 -0
  1872. auth0_python-5.0.0/src/auth0/management/types/form_field_choice.py +29 -0
  1873. auth0_python-5.0.0/src/auth0/management/types/form_field_choice_config.py +23 -0
  1874. auth0_python-5.0.0/src/auth0/management/types/form_field_choice_config_allow_other.py +22 -0
  1875. auth0_python-5.0.0/src/auth0/management/types/form_field_choice_config_allow_other_enabled_true_enum.py +3 -0
  1876. auth0_python-5.0.0/src/auth0/management/types/form_field_choice_config_option.py +20 -0
  1877. auth0_python-5.0.0/src/auth0/management/types/form_field_custom.py +29 -0
  1878. auth0_python-5.0.0/src/auth0/management/types/form_field_custom_config.py +28 -0
  1879. auth0_python-5.0.0/src/auth0/management/types/form_field_custom_config_params.py +5 -0
  1880. auth0_python-5.0.0/src/auth0/management/types/form_field_custom_config_schema.py +5 -0
  1881. auth0_python-5.0.0/src/auth0/management/types/form_field_date.py +29 -0
  1882. auth0_python-5.0.0/src/auth0/management/types/form_field_date_config.py +21 -0
  1883. auth0_python-5.0.0/src/auth0/management/types/form_field_date_config_format_enum.py +5 -0
  1884. auth0_python-5.0.0/src/auth0/management/types/form_field_dropdown.py +29 -0
  1885. auth0_python-5.0.0/src/auth0/management/types/form_field_dropdown_config.py +22 -0
  1886. auth0_python-5.0.0/src/auth0/management/types/form_field_dropdown_config_option.py +20 -0
  1887. auth0_python-5.0.0/src/auth0/management/types/form_field_email.py +29 -0
  1888. auth0_python-5.0.0/src/auth0/management/types/form_field_email_config.py +20 -0
  1889. auth0_python-5.0.0/src/auth0/management/types/form_field_file.py +29 -0
  1890. auth0_python-5.0.0/src/auth0/management/types/form_field_file_config.py +32 -0
  1891. auth0_python-5.0.0/src/auth0/management/types/form_field_file_config_category_enum.py +7 -0
  1892. auth0_python-5.0.0/src/auth0/management/types/form_field_file_config_storage.py +20 -0
  1893. auth0_python-5.0.0/src/auth0/management/types/form_field_file_config_storage_type_enum.py +5 -0
  1894. auth0_python-5.0.0/src/auth0/management/types/form_field_legal.py +29 -0
  1895. auth0_python-5.0.0/src/auth0/management/types/form_field_legal_config.py +19 -0
  1896. auth0_python-5.0.0/src/auth0/management/types/form_field_number.py +29 -0
  1897. auth0_python-5.0.0/src/auth0/management/types/form_field_number_config.py +22 -0
  1898. auth0_python-5.0.0/src/auth0/management/types/form_field_password.py +29 -0
  1899. auth0_python-5.0.0/src/auth0/management/types/form_field_password_config.py +26 -0
  1900. auth0_python-5.0.0/src/auth0/management/types/form_field_password_config_hash_enum.py +5 -0
  1901. auth0_python-5.0.0/src/auth0/management/types/form_field_payment.py +29 -0
  1902. auth0_python-5.0.0/src/auth0/management/types/form_field_payment_config.py +28 -0
  1903. auth0_python-5.0.0/src/auth0/management/types/form_field_payment_config_charge.py +10 -0
  1904. auth0_python-5.0.0/src/auth0/management/types/form_field_payment_config_charge_one_off.py +22 -0
  1905. auth0_python-5.0.0/src/auth0/management/types/form_field_payment_config_charge_one_off_currency_enum.py +7 -0
  1906. auth0_python-5.0.0/src/auth0/management/types/form_field_payment_config_charge_one_off_one_off.py +22 -0
  1907. auth0_python-5.0.0/src/auth0/management/types/form_field_payment_config_charge_one_off_one_off_amount.py +5 -0
  1908. auth0_python-5.0.0/src/auth0/management/types/form_field_payment_config_charge_subscription.py +22 -0
  1909. auth0_python-5.0.0/src/auth0/management/types/form_field_payment_config_charge_type_one_off_const.py +5 -0
  1910. auth0_python-5.0.0/src/auth0/management/types/form_field_payment_config_charge_type_subscription_const.py +5 -0
  1911. auth0_python-5.0.0/src/auth0/management/types/form_field_payment_config_credentials.py +20 -0
  1912. auth0_python-5.0.0/src/auth0/management/types/form_field_payment_config_customer.py +5 -0
  1913. auth0_python-5.0.0/src/auth0/management/types/form_field_payment_config_field_properties.py +20 -0
  1914. auth0_python-5.0.0/src/auth0/management/types/form_field_payment_config_fields.py +23 -0
  1915. auth0_python-5.0.0/src/auth0/management/types/form_field_payment_config_provider_enum.py +5 -0
  1916. auth0_python-5.0.0/src/auth0/management/types/form_field_payment_config_subscription.py +5 -0
  1917. auth0_python-5.0.0/src/auth0/management/types/form_field_social.py +29 -0
  1918. auth0_python-5.0.0/src/auth0/management/types/form_field_social_config.py +17 -0
  1919. auth0_python-5.0.0/src/auth0/management/types/form_field_tel.py +29 -0
  1920. auth0_python-5.0.0/src/auth0/management/types/form_field_tel_config.py +25 -0
  1921. auth0_python-5.0.0/src/auth0/management/types/form_field_tel_config_strings.py +19 -0
  1922. auth0_python-5.0.0/src/auth0/management/types/form_field_text.py +29 -0
  1923. auth0_python-5.0.0/src/auth0/management/types/form_field_text_config.py +23 -0
  1924. auth0_python-5.0.0/src/auth0/management/types/form_field_type_boolean_const.py +5 -0
  1925. auth0_python-5.0.0/src/auth0/management/types/form_field_type_cards_const.py +5 -0
  1926. auth0_python-5.0.0/src/auth0/management/types/form_field_type_choice_const.py +5 -0
  1927. auth0_python-5.0.0/src/auth0/management/types/form_field_type_custom_const.py +5 -0
  1928. auth0_python-5.0.0/src/auth0/management/types/form_field_type_date_const.py +5 -0
  1929. auth0_python-5.0.0/src/auth0/management/types/form_field_type_dropdown_const.py +5 -0
  1930. auth0_python-5.0.0/src/auth0/management/types/form_field_type_email_const.py +5 -0
  1931. auth0_python-5.0.0/src/auth0/management/types/form_field_type_file_const.py +5 -0
  1932. auth0_python-5.0.0/src/auth0/management/types/form_field_type_legal_const.py +5 -0
  1933. auth0_python-5.0.0/src/auth0/management/types/form_field_type_number_const.py +5 -0
  1934. auth0_python-5.0.0/src/auth0/management/types/form_field_type_password_const.py +5 -0
  1935. auth0_python-5.0.0/src/auth0/management/types/form_field_type_payment_const.py +5 -0
  1936. auth0_python-5.0.0/src/auth0/management/types/form_field_type_social_const.py +5 -0
  1937. auth0_python-5.0.0/src/auth0/management/types/form_field_type_tel_const.py +5 -0
  1938. auth0_python-5.0.0/src/auth0/management/types/form_field_type_text_const.py +5 -0
  1939. auth0_python-5.0.0/src/auth0/management/types/form_field_type_url_const.py +5 -0
  1940. auth0_python-5.0.0/src/auth0/management/types/form_field_url.py +29 -0
  1941. auth0_python-5.0.0/src/auth0/management/types/form_field_url_config.py +20 -0
  1942. auth0_python-5.0.0/src/auth0/management/types/form_flow.py +26 -0
  1943. auth0_python-5.0.0/src/auth0/management/types/form_flow_config.py +21 -0
  1944. auth0_python-5.0.0/src/auth0/management/types/form_hidden_field.py +20 -0
  1945. auth0_python-5.0.0/src/auth0/management/types/form_languages.py +20 -0
  1946. auth0_python-5.0.0/src/auth0/management/types/form_languages_nullable.py +7 -0
  1947. auth0_python-5.0.0/src/auth0/management/types/form_messages.py +22 -0
  1948. auth0_python-5.0.0/src/auth0/management/types/form_messages_custom.py +5 -0
  1949. auth0_python-5.0.0/src/auth0/management/types/form_messages_error.py +5 -0
  1950. auth0_python-5.0.0/src/auth0/management/types/form_messages_nullable.py +7 -0
  1951. auth0_python-5.0.0/src/auth0/management/types/form_node.py +9 -0
  1952. auth0_python-5.0.0/src/auth0/management/types/form_node_coordinates.py +20 -0
  1953. auth0_python-5.0.0/src/auth0/management/types/form_node_list.py +7 -0
  1954. auth0_python-5.0.0/src/auth0/management/types/form_node_list_nullable.py +7 -0
  1955. auth0_python-5.0.0/src/auth0/management/types/form_node_pointer.py +7 -0
  1956. auth0_python-5.0.0/src/auth0/management/types/form_node_type_flow_const.py +5 -0
  1957. auth0_python-5.0.0/src/auth0/management/types/form_node_type_router_const.py +5 -0
  1958. auth0_python-5.0.0/src/auth0/management/types/form_node_type_step_const.py +5 -0
  1959. auth0_python-5.0.0/src/auth0/management/types/form_router.py +26 -0
  1960. auth0_python-5.0.0/src/auth0/management/types/form_router_config.py +22 -0
  1961. auth0_python-5.0.0/src/auth0/management/types/form_router_rule.py +22 -0
  1962. auth0_python-5.0.0/src/auth0/management/types/form_start_node.py +24 -0
  1963. auth0_python-5.0.0/src/auth0/management/types/form_start_node_nullable.py +7 -0
  1964. auth0_python-5.0.0/src/auth0/management/types/form_step.py +26 -0
  1965. auth0_python-5.0.0/src/auth0/management/types/form_step_component_list.py +7 -0
  1966. auth0_python-5.0.0/src/auth0/management/types/form_step_config.py +22 -0
  1967. auth0_python-5.0.0/src/auth0/management/types/form_style.py +19 -0
  1968. auth0_python-5.0.0/src/auth0/management/types/form_style_nullable.py +7 -0
  1969. auth0_python-5.0.0/src/auth0/management/types/form_summary.py +25 -0
  1970. auth0_python-5.0.0/src/auth0/management/types/form_translations.py +5 -0
  1971. auth0_python-5.0.0/src/auth0/management/types/form_translations_nullable.py +7 -0
  1972. auth0_python-5.0.0/src/auth0/management/types/form_widget.py +9 -0
  1973. auth0_python-5.0.0/src/auth0/management/types/form_widget_auth_0_verifiable_credentials.py +29 -0
  1974. auth0_python-5.0.0/src/auth0/management/types/form_widget_auth_0_verifiable_credentials_config.py +24 -0
  1975. auth0_python-5.0.0/src/auth0/management/types/form_widget_g_maps_address.py +29 -0
  1976. auth0_python-5.0.0/src/auth0/management/types/form_widget_g_maps_address_config.py +19 -0
  1977. auth0_python-5.0.0/src/auth0/management/types/form_widget_recaptcha.py +29 -0
  1978. auth0_python-5.0.0/src/auth0/management/types/form_widget_recaptcha_config.py +20 -0
  1979. auth0_python-5.0.0/src/auth0/management/types/form_widget_type_auth_0_verifiable_credentials_const.py +5 -0
  1980. auth0_python-5.0.0/src/auth0/management/types/form_widget_type_g_maps_address_const.py +5 -0
  1981. auth0_python-5.0.0/src/auth0/management/types/form_widget_type_recaptcha_const.py +5 -0
  1982. auth0_python-5.0.0/src/auth0/management/types/forms_request_parameters_hydrate_enum.py +5 -0
  1983. auth0_python-5.0.0/src/auth0/management/types/get_action_execution_response_content.py +43 -0
  1984. auth0_python-5.0.0/src/auth0/management/types/get_action_module_actions_response_content.py +38 -0
  1985. auth0_python-5.0.0/src/auth0/management/types/get_action_module_response_content.py +73 -0
  1986. auth0_python-5.0.0/src/auth0/management/types/get_action_module_version_response_content.py +55 -0
  1987. auth0_python-5.0.0/src/auth0/management/types/get_action_module_versions_response_content.py +23 -0
  1988. auth0_python-5.0.0/src/auth0/management/types/get_action_modules_response_content.py +38 -0
  1989. auth0_python-5.0.0/src/auth0/management/types/get_action_response_content.py +98 -0
  1990. auth0_python-5.0.0/src/auth0/management/types/get_action_version_response_content.py +97 -0
  1991. auth0_python-5.0.0/src/auth0/management/types/get_active_users_count_stats_response_content.py +3 -0
  1992. auth0_python-5.0.0/src/auth0/management/types/get_acul_response_content.py +55 -0
  1993. auth0_python-5.0.0/src/auth0/management/types/get_attack_protection_captcha_response_content.py +45 -0
  1994. auth0_python-5.0.0/src/auth0/management/types/get_bot_detection_settings_response_content.py +30 -0
  1995. auth0_python-5.0.0/src/auth0/management/types/get_branding_default_theme_response_content.py +42 -0
  1996. auth0_python-5.0.0/src/auth0/management/types/get_branding_phone_provider_response_content.py +49 -0
  1997. auth0_python-5.0.0/src/auth0/management/types/get_branding_response_content.py +32 -0
  1998. auth0_python-5.0.0/src/auth0/management/types/get_branding_theme_response_content.py +42 -0
  1999. auth0_python-5.0.0/src/auth0/management/types/get_breached_password_detection_settings_response_content.py +45 -0
  2000. auth0_python-5.0.0/src/auth0/management/types/get_brute_force_settings_response_content.py +41 -0
  2001. auth0_python-5.0.0/src/auth0/management/types/get_client_credential_response_content.py +66 -0
  2002. auth0_python-5.0.0/src/auth0/management/types/get_client_grant_response_content.py +61 -0
  2003. auth0_python-5.0.0/src/auth0/management/types/get_client_response_content.py +235 -0
  2004. auth0_python-5.0.0/src/auth0/management/types/get_connection_enabled_clients_response_content.py +28 -0
  2005. auth0_python-5.0.0/src/auth0/management/types/get_connection_profile_response_content.py +32 -0
  2006. auth0_python-5.0.0/src/auth0/management/types/get_connection_profile_template_response_content.py +30 -0
  2007. auth0_python-5.0.0/src/auth0/management/types/get_connection_response_content.py +66 -0
  2008. auth0_python-5.0.0/src/auth0/management/types/get_custom_domain_response_content.py +69 -0
  2009. auth0_python-5.0.0/src/auth0/management/types/get_custom_signing_keys_response_content.py +27 -0
  2010. auth0_python-5.0.0/src/auth0/management/types/get_custom_texts_by_language_response_content.py +5 -0
  2011. auth0_python-5.0.0/src/auth0/management/types/get_directory_provisioning_default_mapping_response_content.py +23 -0
  2012. auth0_python-5.0.0/src/auth0/management/types/get_directory_provisioning_response_content.py +69 -0
  2013. auth0_python-5.0.0/src/auth0/management/types/get_email_provider_response_content.py +37 -0
  2014. auth0_python-5.0.0/src/auth0/management/types/get_email_template_response_content.py +69 -0
  2015. auth0_python-5.0.0/src/auth0/management/types/get_encryption_key_response_content.py +51 -0
  2016. auth0_python-5.0.0/src/auth0/management/types/get_event_stream_delivery_history_response_content.py +44 -0
  2017. auth0_python-5.0.0/src/auth0/management/types/get_event_stream_response_content.py +11 -0
  2018. auth0_python-5.0.0/src/auth0/management/types/get_flow_execution_request_parameters_hydrate_enum.py +5 -0
  2019. auth0_python-5.0.0/src/auth0/management/types/get_flow_execution_response_content.py +60 -0
  2020. auth0_python-5.0.0/src/auth0/management/types/get_flow_request_parameters_hydrate_enum.py +5 -0
  2021. auth0_python-5.0.0/src/auth0/management/types/get_flow_response_content.py +41 -0
  2022. auth0_python-5.0.0/src/auth0/management/types/get_flows_vault_connection_response_content.py +65 -0
  2023. auth0_python-5.0.0/src/auth0/management/types/get_form_response_content.py +39 -0
  2024. auth0_python-5.0.0/src/auth0/management/types/get_group_members_response_content.py +24 -0
  2025. auth0_python-5.0.0/src/auth0/management/types/get_group_response_content.py +63 -0
  2026. auth0_python-5.0.0/src/auth0/management/types/get_guardian_enrollment_response_content.py +43 -0
  2027. auth0_python-5.0.0/src/auth0/management/types/get_guardian_factor_duo_settings_response_content.py +21 -0
  2028. auth0_python-5.0.0/src/auth0/management/types/get_guardian_factor_phone_message_types_response_content.py +23 -0
  2029. auth0_python-5.0.0/src/auth0/management/types/get_guardian_factor_phone_templates_response_content.py +31 -0
  2030. auth0_python-5.0.0/src/auth0/management/types/get_guardian_factor_sms_templates_response_content.py +31 -0
  2031. auth0_python-5.0.0/src/auth0/management/types/get_guardian_factors_provider_apns_response_content.py +21 -0
  2032. auth0_python-5.0.0/src/auth0/management/types/get_guardian_factors_provider_phone_response_content.py +20 -0
  2033. auth0_python-5.0.0/src/auth0/management/types/get_guardian_factors_provider_phone_twilio_response_content.py +41 -0
  2034. auth0_python-5.0.0/src/auth0/management/types/get_guardian_factors_provider_push_notification_response_content.py +22 -0
  2035. auth0_python-5.0.0/src/auth0/management/types/get_guardian_factors_provider_sms_response_content.py +20 -0
  2036. auth0_python-5.0.0/src/auth0/management/types/get_guardian_factors_provider_sms_twilio_response_content.py +41 -0
  2037. auth0_python-5.0.0/src/auth0/management/types/get_guardian_factors_provider_sns_response_content.py +23 -0
  2038. auth0_python-5.0.0/src/auth0/management/types/get_hook_response_content.py +51 -0
  2039. auth0_python-5.0.0/src/auth0/management/types/get_hook_secret_response_content.py +5 -0
  2040. auth0_python-5.0.0/src/auth0/management/types/get_job_error_response_content.py +25 -0
  2041. auth0_python-5.0.0/src/auth0/management/types/get_job_generic_error_response_content.py +47 -0
  2042. auth0_python-5.0.0/src/auth0/management/types/get_job_import_user_error.py +32 -0
  2043. auth0_python-5.0.0/src/auth0/management/types/get_job_response_content.py +67 -0
  2044. auth0_python-5.0.0/src/auth0/management/types/get_job_summary.py +41 -0
  2045. auth0_python-5.0.0/src/auth0/management/types/get_job_user_error.py +5 -0
  2046. auth0_python-5.0.0/src/auth0/management/types/get_log_response_content.py +115 -0
  2047. auth0_python-5.0.0/src/auth0/management/types/get_log_stream_response_content.py +23 -0
  2048. auth0_python-5.0.0/src/auth0/management/types/get_network_acls_response_content.py +33 -0
  2049. auth0_python-5.0.0/src/auth0/management/types/get_organization_by_name_response_content.py +39 -0
  2050. auth0_python-5.0.0/src/auth0/management/types/get_organization_connection_response_content.py +40 -0
  2051. auth0_python-5.0.0/src/auth0/management/types/get_organization_discovery_domain_by_name_response_content.py +44 -0
  2052. auth0_python-5.0.0/src/auth0/management/types/get_organization_discovery_domain_response_content.py +44 -0
  2053. auth0_python-5.0.0/src/auth0/management/types/get_organization_invitation_response_content.py +73 -0
  2054. auth0_python-5.0.0/src/auth0/management/types/get_organization_response_content.py +39 -0
  2055. auth0_python-5.0.0/src/auth0/management/types/get_partials_response_content.py +5 -0
  2056. auth0_python-5.0.0/src/auth0/management/types/get_phone_template_response_content.py +30 -0
  2057. auth0_python-5.0.0/src/auth0/management/types/get_refresh_token_response_content.py +55 -0
  2058. auth0_python-5.0.0/src/auth0/management/types/get_resource_server_response_content.py +91 -0
  2059. auth0_python-5.0.0/src/auth0/management/types/get_risk_assessments_settings_new_device_response_content.py +22 -0
  2060. auth0_python-5.0.0/src/auth0/management/types/get_risk_assessments_settings_response_content.py +22 -0
  2061. auth0_python-5.0.0/src/auth0/management/types/get_role_response_content.py +32 -0
  2062. auth0_python-5.0.0/src/auth0/management/types/get_rule_response_content.py +49 -0
  2063. auth0_python-5.0.0/src/auth0/management/types/get_scim_configuration_default_mapping_response_content.py +23 -0
  2064. auth0_python-5.0.0/src/auth0/management/types/get_scim_configuration_response_content.py +58 -0
  2065. auth0_python-5.0.0/src/auth0/management/types/get_scim_tokens_response_content.py +7 -0
  2066. auth0_python-5.0.0/src/auth0/management/types/get_self_service_profile_response_content.py +64 -0
  2067. auth0_python-5.0.0/src/auth0/management/types/get_session_response_content.py +49 -0
  2068. auth0_python-5.0.0/src/auth0/management/types/get_settings_response_content.py +29 -0
  2069. auth0_python-5.0.0/src/auth0/management/types/get_signing_keys_response_content.py +73 -0
  2070. auth0_python-5.0.0/src/auth0/management/types/get_supplemental_signals_response_content.py +22 -0
  2071. auth0_python-5.0.0/src/auth0/management/types/get_suspicious_ip_throttling_settings_response_content.py +34 -0
  2072. auth0_python-5.0.0/src/auth0/management/types/get_tenant_settings_response_content.py +162 -0
  2073. auth0_python-5.0.0/src/auth0/management/types/get_token_exchange_profile_response_content.py +50 -0
  2074. auth0_python-5.0.0/src/auth0/management/types/get_universal_login_template.py +22 -0
  2075. auth0_python-5.0.0/src/auth0/management/types/get_universal_login_template_response_content.py +7 -0
  2076. auth0_python-5.0.0/src/auth0/management/types/get_user_attribute_profile_response_content.py +26 -0
  2077. auth0_python-5.0.0/src/auth0/management/types/get_user_attribute_profile_template_response_content.py +30 -0
  2078. auth0_python-5.0.0/src/auth0/management/types/get_user_authentication_method_response_content.py +109 -0
  2079. auth0_python-5.0.0/src/auth0/management/types/get_user_groups_paginated_response_content.py +28 -0
  2080. auth0_python-5.0.0/src/auth0/management/types/get_user_response_content.py +106 -0
  2081. auth0_python-5.0.0/src/auth0/management/types/get_verifiable_credential_template_response_content.py +60 -0
  2082. auth0_python-5.0.0/src/auth0/management/types/group.py +63 -0
  2083. auth0_python-5.0.0/src/auth0/management/types/group_member.py +41 -0
  2084. auth0_python-5.0.0/src/auth0/management/types/group_member_type_enum.py +5 -0
  2085. auth0_python-5.0.0/src/auth0/management/types/group_type_enum.py +5 -0
  2086. auth0_python-5.0.0/src/auth0/management/types/guardian_enrollment_date.py +3 -0
  2087. auth0_python-5.0.0/src/auth0/management/types/guardian_enrollment_factor_enum.py +7 -0
  2088. auth0_python-5.0.0/src/auth0/management/types/guardian_enrollment_status.py +5 -0
  2089. auth0_python-5.0.0/src/auth0/management/types/guardian_factor.py +30 -0
  2090. auth0_python-5.0.0/src/auth0/management/types/guardian_factor_name_enum.py +10 -0
  2091. auth0_python-5.0.0/src/auth0/management/types/guardian_factor_phone_factor_message_type_enum.py +5 -0
  2092. auth0_python-5.0.0/src/auth0/management/types/guardian_factors_provider_push_notification_provider_data_enum.py +7 -0
  2093. auth0_python-5.0.0/src/auth0/management/types/guardian_factors_provider_sms_provider_enum.py +7 -0
  2094. auth0_python-5.0.0/src/auth0/management/types/hook.py +51 -0
  2095. auth0_python-5.0.0/src/auth0/management/types/hook_dependencies.py +5 -0
  2096. auth0_python-5.0.0/src/auth0/management/types/hook_trigger_id_enum.py +14 -0
  2097. auth0_python-5.0.0/src/auth0/management/types/http_custom_header.py +27 -0
  2098. auth0_python-5.0.0/src/auth0/management/types/identity.py +33 -0
  2099. auth0_python-5.0.0/src/auth0/management/types/identity_provider_enum.py +71 -0
  2100. auth0_python-5.0.0/src/auth0/management/types/identity_provider_only_auth_0_enum.py +5 -0
  2101. auth0_python-5.0.0/src/auth0/management/types/import_encryption_key_response_content.py +51 -0
  2102. auth0_python-5.0.0/src/auth0/management/types/integration.py +76 -0
  2103. auth0_python-5.0.0/src/auth0/management/types/integration_feature_type_enum.py +8 -0
  2104. auth0_python-5.0.0/src/auth0/management/types/integration_release.py +38 -0
  2105. auth0_python-5.0.0/src/auth0/management/types/integration_required_param.py +69 -0
  2106. auth0_python-5.0.0/src/auth0/management/types/integration_required_param_option.py +27 -0
  2107. auth0_python-5.0.0/src/auth0/management/types/integration_required_param_type_enum.py +5 -0
  2108. auth0_python-5.0.0/src/auth0/management/types/integration_sem_ver.py +31 -0
  2109. auth0_python-5.0.0/src/auth0/management/types/job_file_format_enum.py +5 -0
  2110. auth0_python-5.0.0/src/auth0/management/types/linked_client_configuration.py +26 -0
  2111. auth0_python-5.0.0/src/auth0/management/types/list_action_bindings_paginated_response_content.py +38 -0
  2112. auth0_python-5.0.0/src/auth0/management/types/list_action_triggers_response_content.py +20 -0
  2113. auth0_python-5.0.0/src/auth0/management/types/list_action_versions_paginated_response_content.py +35 -0
  2114. auth0_python-5.0.0/src/auth0/management/types/list_actions_paginated_response_content.py +38 -0
  2115. auth0_python-5.0.0/src/auth0/management/types/list_aculs_offset_paginated_response_content.py +34 -0
  2116. auth0_python-5.0.0/src/auth0/management/types/list_aculs_response_content_item.py +55 -0
  2117. auth0_python-5.0.0/src/auth0/management/types/list_branding_phone_providers_response_content.py +20 -0
  2118. auth0_python-5.0.0/src/auth0/management/types/list_client_connections_response_content.py +24 -0
  2119. auth0_python-5.0.0/src/auth0/management/types/list_client_grant_organizations_paginated_response_content.py +25 -0
  2120. auth0_python-5.0.0/src/auth0/management/types/list_client_grant_paginated_response_content.py +25 -0
  2121. auth0_python-5.0.0/src/auth0/management/types/list_clients_offset_paginated_response_content.py +23 -0
  2122. auth0_python-5.0.0/src/auth0/management/types/list_connection_profile_template_response_content.py +20 -0
  2123. auth0_python-5.0.0/src/auth0/management/types/list_connection_profiles_paginated_response_content.py +25 -0
  2124. auth0_python-5.0.0/src/auth0/management/types/list_connections_checkpoint_paginated_response_content.py +25 -0
  2125. auth0_python-5.0.0/src/auth0/management/types/list_custom_domains_response_content.py +7 -0
  2126. auth0_python-5.0.0/src/auth0/management/types/list_device_credentials_offset_paginated_response_content.py +23 -0
  2127. auth0_python-5.0.0/src/auth0/management/types/list_directory_provisionings_response_content.py +28 -0
  2128. auth0_python-5.0.0/src/auth0/management/types/list_encryption_key_offset_paginated_response_content.py +38 -0
  2129. auth0_python-5.0.0/src/auth0/management/types/list_event_streams_response_content.py +28 -0
  2130. auth0_python-5.0.0/src/auth0/management/types/list_flow_executions_paginated_response_content.py +25 -0
  2131. auth0_python-5.0.0/src/auth0/management/types/list_flows_offset_paginated_response_content.py +23 -0
  2132. auth0_python-5.0.0/src/auth0/management/types/list_flows_request_parameters_hydrate_enum.py +5 -0
  2133. auth0_python-5.0.0/src/auth0/management/types/list_flows_vault_connections_offset_paginated_response_content.py +23 -0
  2134. auth0_python-5.0.0/src/auth0/management/types/list_forms_offset_paginated_response_content.py +23 -0
  2135. auth0_python-5.0.0/src/auth0/management/types/list_groups_paginated_response_content.py +28 -0
  2136. auth0_python-5.0.0/src/auth0/management/types/list_guardian_policies_response_content.py +7 -0
  2137. auth0_python-5.0.0/src/auth0/management/types/list_hooks_offset_paginated_response_content.py +23 -0
  2138. auth0_python-5.0.0/src/auth0/management/types/list_log_offset_paginated_response_content.py +24 -0
  2139. auth0_python-5.0.0/src/auth0/management/types/list_network_acls_offset_paginated_response_content.py +23 -0
  2140. auth0_python-5.0.0/src/auth0/management/types/list_organization_client_grants_offset_paginated_response_content.py +23 -0
  2141. auth0_python-5.0.0/src/auth0/management/types/list_organization_connections_offset_paginated_response_content.py +23 -0
  2142. auth0_python-5.0.0/src/auth0/management/types/list_organization_discovery_domains_response_content.py +21 -0
  2143. auth0_python-5.0.0/src/auth0/management/types/list_organization_invitations_offset_paginated_response_content.py +22 -0
  2144. auth0_python-5.0.0/src/auth0/management/types/list_organization_member_roles_offset_paginated_response_content.py +23 -0
  2145. auth0_python-5.0.0/src/auth0/management/types/list_organization_members_paginated_response_content.py +21 -0
  2146. auth0_python-5.0.0/src/auth0/management/types/list_organizations_paginated_response_content.py +21 -0
  2147. auth0_python-5.0.0/src/auth0/management/types/list_phone_templates_response_content.py +20 -0
  2148. auth0_python-5.0.0/src/auth0/management/types/list_refresh_tokens_paginated_response_content.py +24 -0
  2149. auth0_python-5.0.0/src/auth0/management/types/list_resource_server_offset_paginated_response_content.py +23 -0
  2150. auth0_python-5.0.0/src/auth0/management/types/list_role_permissions_offset_paginated_response_content.py +23 -0
  2151. auth0_python-5.0.0/src/auth0/management/types/list_role_users_paginated_response_content.py +21 -0
  2152. auth0_python-5.0.0/src/auth0/management/types/list_roles_offset_paginated_response_content.py +23 -0
  2153. auth0_python-5.0.0/src/auth0/management/types/list_rules_offset_paginated_response_content.py +23 -0
  2154. auth0_python-5.0.0/src/auth0/management/types/list_self_service_profile_custom_text_response_content.py +5 -0
  2155. auth0_python-5.0.0/src/auth0/management/types/list_self_service_profiles_paginated_response_content.py +23 -0
  2156. auth0_python-5.0.0/src/auth0/management/types/list_token_exchange_profile_response_content.py +25 -0
  2157. auth0_python-5.0.0/src/auth0/management/types/list_user_attribute_profile_template_response_content.py +20 -0
  2158. auth0_python-5.0.0/src/auth0/management/types/list_user_attribute_profiles_paginated_response_content.py +25 -0
  2159. auth0_python-5.0.0/src/auth0/management/types/list_user_authentication_methods_offset_paginated_response_content.py +38 -0
  2160. auth0_python-5.0.0/src/auth0/management/types/list_user_blocks_by_identifier_response_content.py +23 -0
  2161. auth0_python-5.0.0/src/auth0/management/types/list_user_blocks_response_content.py +23 -0
  2162. auth0_python-5.0.0/src/auth0/management/types/list_user_connected_accounts_response_content.py +24 -0
  2163. auth0_python-5.0.0/src/auth0/management/types/list_user_grants_offset_paginated_response_content.py +23 -0
  2164. auth0_python-5.0.0/src/auth0/management/types/list_user_organizations_offset_paginated_response_content.py +23 -0
  2165. auth0_python-5.0.0/src/auth0/management/types/list_user_permissions_offset_paginated_response_content.py +23 -0
  2166. auth0_python-5.0.0/src/auth0/management/types/list_user_roles_offset_paginated_response_content.py +23 -0
  2167. auth0_python-5.0.0/src/auth0/management/types/list_user_sessions_paginated_response_content.py +24 -0
  2168. auth0_python-5.0.0/src/auth0/management/types/list_users_offset_paginated_response_content.py +24 -0
  2169. auth0_python-5.0.0/src/auth0/management/types/list_verifiable_credential_templates_paginated_response_content.py +25 -0
  2170. auth0_python-5.0.0/src/auth0/management/types/log.py +115 -0
  2171. auth0_python-5.0.0/src/auth0/management/types/log_date.py +7 -0
  2172. auth0_python-5.0.0/src/auth0/management/types/log_date_object.py +5 -0
  2173. auth0_python-5.0.0/src/auth0/management/types/log_details.py +5 -0
  2174. auth0_python-5.0.0/src/auth0/management/types/log_location_info.py +65 -0
  2175. auth0_python-5.0.0/src/auth0/management/types/log_security_context.py +37 -0
  2176. auth0_python-5.0.0/src/auth0/management/types/log_stream_datadog_enum.py +5 -0
  2177. auth0_python-5.0.0/src/auth0/management/types/log_stream_datadog_region_enum.py +5 -0
  2178. auth0_python-5.0.0/src/auth0/management/types/log_stream_datadog_response_schema.py +51 -0
  2179. auth0_python-5.0.0/src/auth0/management/types/log_stream_datadog_sink.py +31 -0
  2180. auth0_python-5.0.0/src/auth0/management/types/log_stream_event_bridge_enum.py +5 -0
  2181. auth0_python-5.0.0/src/auth0/management/types/log_stream_event_bridge_response_schema.py +51 -0
  2182. auth0_python-5.0.0/src/auth0/management/types/log_stream_event_bridge_sink.py +37 -0
  2183. auth0_python-5.0.0/src/auth0/management/types/log_stream_event_bridge_sink_region_enum.py +45 -0
  2184. auth0_python-5.0.0/src/auth0/management/types/log_stream_event_grid_enum.py +5 -0
  2185. auth0_python-5.0.0/src/auth0/management/types/log_stream_event_grid_region_enum.py +43 -0
  2186. auth0_python-5.0.0/src/auth0/management/types/log_stream_event_grid_response_schema.py +51 -0
  2187. auth0_python-5.0.0/src/auth0/management/types/log_stream_event_grid_sink.py +44 -0
  2188. auth0_python-5.0.0/src/auth0/management/types/log_stream_filter.py +22 -0
  2189. auth0_python-5.0.0/src/auth0/management/types/log_stream_filter_group_name_enum.py +29 -0
  2190. auth0_python-5.0.0/src/auth0/management/types/log_stream_filter_type_enum.py +5 -0
  2191. auth0_python-5.0.0/src/auth0/management/types/log_stream_http_content_format_enum.py +5 -0
  2192. auth0_python-5.0.0/src/auth0/management/types/log_stream_http_enum.py +5 -0
  2193. auth0_python-5.0.0/src/auth0/management/types/log_stream_http_response_schema.py +51 -0
  2194. auth0_python-5.0.0/src/auth0/management/types/log_stream_http_sink.py +52 -0
  2195. auth0_python-5.0.0/src/auth0/management/types/log_stream_mixpanel_enum.py +5 -0
  2196. auth0_python-5.0.0/src/auth0/management/types/log_stream_mixpanel_region_enum.py +5 -0
  2197. auth0_python-5.0.0/src/auth0/management/types/log_stream_mixpanel_response_schema.py +51 -0
  2198. auth0_python-5.0.0/src/auth0/management/types/log_stream_mixpanel_sink.py +44 -0
  2199. auth0_python-5.0.0/src/auth0/management/types/log_stream_mixpanel_sink_patch.py +44 -0
  2200. auth0_python-5.0.0/src/auth0/management/types/log_stream_pii_algorithm_enum.py +5 -0
  2201. auth0_python-5.0.0/src/auth0/management/types/log_stream_pii_config.py +24 -0
  2202. auth0_python-5.0.0/src/auth0/management/types/log_stream_pii_log_fields_enum.py +7 -0
  2203. auth0_python-5.0.0/src/auth0/management/types/log_stream_pii_method_enum.py +5 -0
  2204. auth0_python-5.0.0/src/auth0/management/types/log_stream_response_schema.py +23 -0
  2205. auth0_python-5.0.0/src/auth0/management/types/log_stream_segment_enum.py +5 -0
  2206. auth0_python-5.0.0/src/auth0/management/types/log_stream_segment_response_schema.py +51 -0
  2207. auth0_python-5.0.0/src/auth0/management/types/log_stream_segment_sink.py +26 -0
  2208. auth0_python-5.0.0/src/auth0/management/types/log_stream_segment_sink_write_key.py +26 -0
  2209. auth0_python-5.0.0/src/auth0/management/types/log_stream_sink_patch.py +19 -0
  2210. auth0_python-5.0.0/src/auth0/management/types/log_stream_splunk_enum.py +5 -0
  2211. auth0_python-5.0.0/src/auth0/management/types/log_stream_splunk_response_schema.py +51 -0
  2212. auth0_python-5.0.0/src/auth0/management/types/log_stream_splunk_sink.py +47 -0
  2213. auth0_python-5.0.0/src/auth0/management/types/log_stream_status_enum.py +5 -0
  2214. auth0_python-5.0.0/src/auth0/management/types/log_stream_sumo_enum.py +5 -0
  2215. auth0_python-5.0.0/src/auth0/management/types/log_stream_sumo_response_schema.py +51 -0
  2216. auth0_python-5.0.0/src/auth0/management/types/log_stream_sumo_sink.py +26 -0
  2217. auth0_python-5.0.0/src/auth0/management/types/mdl_presentation_properties.py +122 -0
  2218. auth0_python-5.0.0/src/auth0/management/types/mdl_presentation_request.py +28 -0
  2219. auth0_python-5.0.0/src/auth0/management/types/mdl_presentation_request_properties.py +24 -0
  2220. auth0_python-5.0.0/src/auth0/management/types/mfa_policy_enum.py +5 -0
  2221. auth0_python-5.0.0/src/auth0/management/types/native_social_login.py +28 -0
  2222. auth0_python-5.0.0/src/auth0/management/types/native_social_login_apple.py +26 -0
  2223. auth0_python-5.0.0/src/auth0/management/types/native_social_login_facebook.py +26 -0
  2224. auth0_python-5.0.0/src/auth0/management/types/native_social_login_google.py +26 -0
  2225. auth0_python-5.0.0/src/auth0/management/types/network_acl_action.py +30 -0
  2226. auth0_python-5.0.0/src/auth0/management/types/network_acl_action_allow_enum.py +3 -0
  2227. auth0_python-5.0.0/src/auth0/management/types/network_acl_action_block_enum.py +3 -0
  2228. auth0_python-5.0.0/src/auth0/management/types/network_acl_action_log_enum.py +3 -0
  2229. auth0_python-5.0.0/src/auth0/management/types/network_acl_action_redirect_enum.py +3 -0
  2230. auth0_python-5.0.0/src/auth0/management/types/network_acl_match.py +38 -0
  2231. auth0_python-5.0.0/src/auth0/management/types/network_acl_match_ipv_4_cidr.py +3 -0
  2232. auth0_python-5.0.0/src/auth0/management/types/network_acl_match_ipv_6_cidr.py +3 -0
  2233. auth0_python-5.0.0/src/auth0/management/types/network_acl_rule.py +25 -0
  2234. auth0_python-5.0.0/src/auth0/management/types/network_acl_rule_scope_enum.py +7 -0
  2235. auth0_python-5.0.0/src/auth0/management/types/network_acls_response_content.py +33 -0
  2236. auth0_python-5.0.0/src/auth0/management/types/oauth_scope.py +228 -0
  2237. auth0_python-5.0.0/src/auth0/management/types/organization.py +39 -0
  2238. auth0_python-5.0.0/src/auth0/management/types/organization_branding.py +29 -0
  2239. auth0_python-5.0.0/src/auth0/management/types/organization_branding_colors.py +31 -0
  2240. auth0_python-5.0.0/src/auth0/management/types/organization_client_grant.py +44 -0
  2241. auth0_python-5.0.0/src/auth0/management/types/organization_connection.py +40 -0
  2242. auth0_python-5.0.0/src/auth0/management/types/organization_connection_information.py +27 -0
  2243. auth0_python-5.0.0/src/auth0/management/types/organization_discovery_domain.py +44 -0
  2244. auth0_python-5.0.0/src/auth0/management/types/organization_discovery_domain_status.py +5 -0
  2245. auth0_python-5.0.0/src/auth0/management/types/organization_enabled_connection.py +40 -0
  2246. auth0_python-5.0.0/src/auth0/management/types/organization_invitation.py +73 -0
  2247. auth0_python-5.0.0/src/auth0/management/types/organization_invitation_invitee.py +22 -0
  2248. auth0_python-5.0.0/src/auth0/management/types/organization_invitation_inviter.py +22 -0
  2249. auth0_python-5.0.0/src/auth0/management/types/organization_member.py +40 -0
  2250. auth0_python-5.0.0/src/auth0/management/types/organization_member_role.py +27 -0
  2251. auth0_python-5.0.0/src/auth0/management/types/organization_metadata.py +5 -0
  2252. auth0_python-5.0.0/src/auth0/management/types/organization_usage_enum.py +5 -0
  2253. auth0_python-5.0.0/src/auth0/management/types/partial_groups_enum.py +18 -0
  2254. auth0_python-5.0.0/src/auth0/management/types/partial_phone_template_content.py +29 -0
  2255. auth0_python-5.0.0/src/auth0/management/types/patch_client_credential_response_content.py +66 -0
  2256. auth0_python-5.0.0/src/auth0/management/types/patch_supplemental_signals_response_content.py +22 -0
  2257. auth0_python-5.0.0/src/auth0/management/types/permission_request_payload.py +27 -0
  2258. auth0_python-5.0.0/src/auth0/management/types/permissions_response_payload.py +37 -0
  2259. auth0_python-5.0.0/src/auth0/management/types/phone_attribute.py +31 -0
  2260. auth0_python-5.0.0/src/auth0/management/types/phone_provider_channel_enum.py +5 -0
  2261. auth0_python-5.0.0/src/auth0/management/types/phone_provider_configuration.py +8 -0
  2262. auth0_python-5.0.0/src/auth0/management/types/phone_provider_credentials.py +8 -0
  2263. auth0_python-5.0.0/src/auth0/management/types/phone_provider_delivery_method_enum.py +5 -0
  2264. auth0_python-5.0.0/src/auth0/management/types/phone_provider_name_enum.py +5 -0
  2265. auth0_python-5.0.0/src/auth0/management/types/phone_provider_schema_masked.py +49 -0
  2266. auth0_python-5.0.0/src/auth0/management/types/phone_template.py +30 -0
  2267. auth0_python-5.0.0/src/auth0/management/types/phone_template_body.py +27 -0
  2268. auth0_python-5.0.0/src/auth0/management/types/phone_template_content.py +30 -0
  2269. auth0_python-5.0.0/src/auth0/management/types/phone_template_notification_type_enum.py +7 -0
  2270. auth0_python-5.0.0/src/auth0/management/types/post_client_credential_response_content.py +66 -0
  2271. auth0_python-5.0.0/src/auth0/management/types/preferred_authentication_method_enum.py +5 -0
  2272. auth0_python-5.0.0/src/auth0/management/types/prompt_group_name_enum.py +45 -0
  2273. auth0_python-5.0.0/src/auth0/management/types/prompt_language_enum.py +90 -0
  2274. auth0_python-5.0.0/src/auth0/management/types/public_key_credential.py +42 -0
  2275. auth0_python-5.0.0/src/auth0/management/types/public_key_credential_algorithm_enum.py +5 -0
  2276. auth0_python-5.0.0/src/auth0/management/types/public_key_credential_type_enum.py +5 -0
  2277. auth0_python-5.0.0/src/auth0/management/types/refresh_token_date.py +8 -0
  2278. auth0_python-5.0.0/src/auth0/management/types/refresh_token_date_object.py +5 -0
  2279. auth0_python-5.0.0/src/auth0/management/types/refresh_token_device.py +51 -0
  2280. auth0_python-5.0.0/src/auth0/management/types/refresh_token_expiration_type_enum.py +5 -0
  2281. auth0_python-5.0.0/src/auth0/management/types/refresh_token_metadata.py +5 -0
  2282. auth0_python-5.0.0/src/auth0/management/types/refresh_token_resource_server.py +27 -0
  2283. auth0_python-5.0.0/src/auth0/management/types/refresh_token_response_content.py +55 -0
  2284. auth0_python-5.0.0/src/auth0/management/types/refresh_token_rotation_type_enum.py +5 -0
  2285. auth0_python-5.0.0/src/auth0/management/types/refresh_token_session_id.py +5 -0
  2286. auth0_python-5.0.0/src/auth0/management/types/regenerate_users_recovery_code_response_content.py +22 -0
  2287. auth0_python-5.0.0/src/auth0/management/types/reset_phone_template_request_content.py +5 -0
  2288. auth0_python-5.0.0/src/auth0/management/types/reset_phone_template_response_content.py +30 -0
  2289. auth0_python-5.0.0/src/auth0/management/types/resource_server.py +91 -0
  2290. auth0_python-5.0.0/src/auth0/management/types/resource_server_consent_policy_enum.py +5 -0
  2291. auth0_python-5.0.0/src/auth0/management/types/resource_server_proof_of_possession.py +31 -0
  2292. auth0_python-5.0.0/src/auth0/management/types/resource_server_proof_of_possession_mechanism_enum.py +5 -0
  2293. auth0_python-5.0.0/src/auth0/management/types/resource_server_proof_of_possession_required_for_enum.py +7 -0
  2294. auth0_python-5.0.0/src/auth0/management/types/resource_server_scope.py +27 -0
  2295. auth0_python-5.0.0/src/auth0/management/types/resource_server_subject_type_authorization.py +26 -0
  2296. auth0_python-5.0.0/src/auth0/management/types/resource_server_subject_type_authorization_client.py +26 -0
  2297. auth0_python-5.0.0/src/auth0/management/types/resource_server_subject_type_authorization_client_policy_enum.py +7 -0
  2298. auth0_python-5.0.0/src/auth0/management/types/resource_server_subject_type_authorization_user.py +26 -0
  2299. auth0_python-5.0.0/src/auth0/management/types/resource_server_subject_type_authorization_user_policy_enum.py +7 -0
  2300. auth0_python-5.0.0/src/auth0/management/types/resource_server_token_dialect_response_enum.py +7 -0
  2301. auth0_python-5.0.0/src/auth0/management/types/resource_server_token_dialect_schema_enum.py +7 -0
  2302. auth0_python-5.0.0/src/auth0/management/types/resource_server_token_encryption.py +22 -0
  2303. auth0_python-5.0.0/src/auth0/management/types/resource_server_token_encryption_algorithm_enum.py +7 -0
  2304. auth0_python-5.0.0/src/auth0/management/types/resource_server_token_encryption_format_enum.py +5 -0
  2305. auth0_python-5.0.0/src/auth0/management/types/resource_server_token_encryption_key.py +34 -0
  2306. auth0_python-5.0.0/src/auth0/management/types/resource_server_verification_key_pem_certificate.py +3 -0
  2307. auth0_python-5.0.0/src/auth0/management/types/revoked_signing_keys_response_content.py +29 -0
  2308. auth0_python-5.0.0/src/auth0/management/types/role.py +32 -0
  2309. auth0_python-5.0.0/src/auth0/management/types/role_user.py +37 -0
  2310. auth0_python-5.0.0/src/auth0/management/types/rollback_action_module_response_content.py +73 -0
  2311. auth0_python-5.0.0/src/auth0/management/types/rotate_client_secret_response_content.py +235 -0
  2312. auth0_python-5.0.0/src/auth0/management/types/rotate_connection_keys_request_content.py +20 -0
  2313. auth0_python-5.0.0/src/auth0/management/types/rotate_connection_keys_signing_alg_enum.py +5 -0
  2314. auth0_python-5.0.0/src/auth0/management/types/rotate_connections_keys_response_content.py +60 -0
  2315. auth0_python-5.0.0/src/auth0/management/types/rotate_signing_keys_response_content.py +29 -0
  2316. auth0_python-5.0.0/src/auth0/management/types/rule.py +49 -0
  2317. auth0_python-5.0.0/src/auth0/management/types/rules_config.py +22 -0
  2318. auth0_python-5.0.0/src/auth0/management/types/scim_mapping_item.py +31 -0
  2319. auth0_python-5.0.0/src/auth0/management/types/scim_token_item.py +42 -0
  2320. auth0_python-5.0.0/src/auth0/management/types/screen_group_name_enum.py +98 -0
  2321. auth0_python-5.0.0/src/auth0/management/types/search_engine_versions_enum.py +5 -0
  2322. auth0_python-5.0.0/src/auth0/management/types/self_service_profile.py +64 -0
  2323. auth0_python-5.0.0/src/auth0/management/types/self_service_profile_allowed_strategy_enum.py +19 -0
  2324. auth0_python-5.0.0/src/auth0/management/types/self_service_profile_branding.py +7 -0
  2325. auth0_python-5.0.0/src/auth0/management/types/self_service_profile_branding_colors.py +19 -0
  2326. auth0_python-5.0.0/src/auth0/management/types/self_service_profile_branding_properties.py +21 -0
  2327. auth0_python-5.0.0/src/auth0/management/types/self_service_profile_custom_text_language_enum.py +5 -0
  2328. auth0_python-5.0.0/src/auth0/management/types/self_service_profile_custom_text_page_enum.py +5 -0
  2329. auth0_python-5.0.0/src/auth0/management/types/self_service_profile_description.py +5 -0
  2330. auth0_python-5.0.0/src/auth0/management/types/self_service_profile_sso_ticket_connection_config.py +46 -0
  2331. auth0_python-5.0.0/src/auth0/management/types/self_service_profile_sso_ticket_connection_options.py +34 -0
  2332. auth0_python-5.0.0/src/auth0/management/types/self_service_profile_sso_ticket_domain_aliases_config.py +24 -0
  2333. auth0_python-5.0.0/src/auth0/management/types/self_service_profile_sso_ticket_domain_verification_enum.py +7 -0
  2334. auth0_python-5.0.0/src/auth0/management/types/self_service_profile_sso_ticket_enabled_organization.py +32 -0
  2335. auth0_python-5.0.0/src/auth0/management/types/self_service_profile_sso_ticket_google_workspace_config.py +26 -0
  2336. auth0_python-5.0.0/src/auth0/management/types/self_service_profile_sso_ticket_idp_initiated_client_protocol_enum.py +7 -0
  2337. auth0_python-5.0.0/src/auth0/management/types/self_service_profile_sso_ticket_idp_initiated_options.py +40 -0
  2338. auth0_python-5.0.0/src/auth0/management/types/self_service_profile_sso_ticket_provisioning_config.py +36 -0
  2339. auth0_python-5.0.0/src/auth0/management/types/self_service_profile_sso_ticket_provisioning_scope_enum.py +7 -0
  2340. auth0_python-5.0.0/src/auth0/management/types/self_service_profile_user_attribute.py +32 -0
  2341. auth0_python-5.0.0/src/auth0/management/types/self_service_profile_user_attributes.py +7 -0
  2342. auth0_python-5.0.0/src/auth0/management/types/session_authentication_signal.py +37 -0
  2343. auth0_python-5.0.0/src/auth0/management/types/session_authentication_signals.py +27 -0
  2344. auth0_python-5.0.0/src/auth0/management/types/session_client_metadata.py +26 -0
  2345. auth0_python-5.0.0/src/auth0/management/types/session_cookie_metadata.py +24 -0
  2346. auth0_python-5.0.0/src/auth0/management/types/session_cookie_metadata_mode_enum.py +5 -0
  2347. auth0_python-5.0.0/src/auth0/management/types/session_cookie_mode_enum.py +5 -0
  2348. auth0_python-5.0.0/src/auth0/management/types/session_cookie_schema.py +24 -0
  2349. auth0_python-5.0.0/src/auth0/management/types/session_date.py +6 -0
  2350. auth0_python-5.0.0/src/auth0/management/types/session_device_metadata.py +44 -0
  2351. auth0_python-5.0.0/src/auth0/management/types/session_ip.py +5 -0
  2352. auth0_python-5.0.0/src/auth0/management/types/session_metadata.py +5 -0
  2353. auth0_python-5.0.0/src/auth0/management/types/session_response_content.py +49 -0
  2354. auth0_python-5.0.0/src/auth0/management/types/set_custom_signing_keys_response_content.py +27 -0
  2355. auth0_python-5.0.0/src/auth0/management/types/set_email_template_response_content.py +69 -0
  2356. auth0_python-5.0.0/src/auth0/management/types/set_guardian_factor_duo_settings_response_content.py +21 -0
  2357. auth0_python-5.0.0/src/auth0/management/types/set_guardian_factor_phone_message_types_response_content.py +23 -0
  2358. auth0_python-5.0.0/src/auth0/management/types/set_guardian_factor_phone_templates_response_content.py +31 -0
  2359. auth0_python-5.0.0/src/auth0/management/types/set_guardian_factor_response_content.py +22 -0
  2360. auth0_python-5.0.0/src/auth0/management/types/set_guardian_factor_sms_templates_response_content.py +31 -0
  2361. auth0_python-5.0.0/src/auth0/management/types/set_guardian_factors_provider_phone_response_content.py +20 -0
  2362. auth0_python-5.0.0/src/auth0/management/types/set_guardian_factors_provider_phone_twilio_response_content.py +41 -0
  2363. auth0_python-5.0.0/src/auth0/management/types/set_guardian_factors_provider_push_notification_apns_response_content.py +20 -0
  2364. auth0_python-5.0.0/src/auth0/management/types/set_guardian_factors_provider_push_notification_fcm_response_content.py +5 -0
  2365. auth0_python-5.0.0/src/auth0/management/types/set_guardian_factors_provider_push_notification_fcmv_1_response_content.py +5 -0
  2366. auth0_python-5.0.0/src/auth0/management/types/set_guardian_factors_provider_push_notification_response_content.py +22 -0
  2367. auth0_python-5.0.0/src/auth0/management/types/set_guardian_factors_provider_push_notification_sns_response_content.py +23 -0
  2368. auth0_python-5.0.0/src/auth0/management/types/set_guardian_factors_provider_sms_response_content.py +20 -0
  2369. auth0_python-5.0.0/src/auth0/management/types/set_guardian_factors_provider_sms_twilio_response_content.py +41 -0
  2370. auth0_python-5.0.0/src/auth0/management/types/set_guardian_policies_request_content.py +7 -0
  2371. auth0_python-5.0.0/src/auth0/management/types/set_guardian_policies_response_content.py +7 -0
  2372. auth0_python-5.0.0/src/auth0/management/types/set_network_acls_response_content.py +33 -0
  2373. auth0_python-5.0.0/src/auth0/management/types/set_partials_request_content.py +5 -0
  2374. auth0_python-5.0.0/src/auth0/management/types/set_rules_config_response_content.py +27 -0
  2375. auth0_python-5.0.0/src/auth0/management/types/set_self_service_profile_custom_text_request_content.py +5 -0
  2376. auth0_python-5.0.0/src/auth0/management/types/set_self_service_profile_custom_text_response_content.py +5 -0
  2377. auth0_python-5.0.0/src/auth0/management/types/set_user_authentication_method_response_content.py +78 -0
  2378. auth0_python-5.0.0/src/auth0/management/types/set_user_authentication_methods.py +41 -0
  2379. auth0_python-5.0.0/src/auth0/management/types/set_user_authentication_methods_request_content.py +7 -0
  2380. auth0_python-5.0.0/src/auth0/management/types/sets_custom_texts_by_language_request_content.py +5 -0
  2381. auth0_python-5.0.0/src/auth0/management/types/signing_algorithm_enum.py +5 -0
  2382. auth0_python-5.0.0/src/auth0/management/types/signing_keys.py +73 -0
  2383. auth0_python-5.0.0/src/auth0/management/types/signing_keys_date.py +5 -0
  2384. auth0_python-5.0.0/src/auth0/management/types/signup_schema.py +20 -0
  2385. auth0_python-5.0.0/src/auth0/management/types/signup_status_enum.py +5 -0
  2386. auth0_python-5.0.0/src/auth0/management/types/signup_verification.py +19 -0
  2387. auth0_python-5.0.0/src/auth0/management/types/signup_verified.py +22 -0
  2388. auth0_python-5.0.0/src/auth0/management/types/supported_locales.py +90 -0
  2389. auth0_python-5.0.0/src/auth0/management/types/suspicious_ip_throttling_allowlist.py +7 -0
  2390. auth0_python-5.0.0/src/auth0/management/types/suspicious_ip_throttling_allowlist_item.py +3 -0
  2391. auth0_python-5.0.0/src/auth0/management/types/suspicious_ip_throttling_pre_login_stage.py +31 -0
  2392. auth0_python-5.0.0/src/auth0/management/types/suspicious_ip_throttling_pre_user_registration_stage.py +31 -0
  2393. auth0_python-5.0.0/src/auth0/management/types/suspicious_ip_throttling_shields_enum.py +5 -0
  2394. auth0_python-5.0.0/src/auth0/management/types/suspicious_ip_throttling_stage.py +32 -0
  2395. auth0_python-5.0.0/src/auth0/management/types/tenant_oidc_logout_settings.py +26 -0
  2396. auth0_python-5.0.0/src/auth0/management/types/tenant_settings_device_flow.py +28 -0
  2397. auth0_python-5.0.0/src/auth0/management/types/tenant_settings_device_flow_charset.py +5 -0
  2398. auth0_python-5.0.0/src/auth0/management/types/tenant_settings_error_page.py +36 -0
  2399. auth0_python-5.0.0/src/auth0/management/types/tenant_settings_flags.py +174 -0
  2400. auth0_python-5.0.0/src/auth0/management/types/tenant_settings_guardian_page.py +31 -0
  2401. auth0_python-5.0.0/src/auth0/management/types/tenant_settings_mtls.py +26 -0
  2402. auth0_python-5.0.0/src/auth0/management/types/tenant_settings_password_page.py +31 -0
  2403. auth0_python-5.0.0/src/auth0/management/types/tenant_settings_resource_parameter_profile.py +5 -0
  2404. auth0_python-5.0.0/src/auth0/management/types/tenant_settings_sessions.py +26 -0
  2405. auth0_python-5.0.0/src/auth0/management/types/tenant_settings_supported_locales_enum.py +90 -0
  2406. auth0_python-5.0.0/src/auth0/management/types/test_action_payload.py +5 -0
  2407. auth0_python-5.0.0/src/auth0/management/types/test_action_response_content.py +20 -0
  2408. auth0_python-5.0.0/src/auth0/management/types/test_action_result_payload.py +5 -0
  2409. auth0_python-5.0.0/src/auth0/management/types/test_custom_domain_response_content.py +27 -0
  2410. auth0_python-5.0.0/src/auth0/management/types/test_event_data_content.py +5 -0
  2411. auth0_python-5.0.0/src/auth0/management/types/token_exchange_profile_response_content.py +50 -0
  2412. auth0_python-5.0.0/src/auth0/management/types/token_exchange_profile_type_enum.py +5 -0
  2413. auth0_python-5.0.0/src/auth0/management/types/token_quota.py +20 -0
  2414. auth0_python-5.0.0/src/auth0/management/types/token_quota_client_credentials.py +36 -0
  2415. auth0_python-5.0.0/src/auth0/management/types/token_quota_configuration.py +20 -0
  2416. auth0_python-5.0.0/src/auth0/management/types/twilio_provider_configuration.py +23 -0
  2417. auth0_python-5.0.0/src/auth0/management/types/twilio_provider_credentials.py +19 -0
  2418. auth0_python-5.0.0/src/auth0/management/types/twilio_provider_delivery_method_enum.py +5 -0
  2419. auth0_python-5.0.0/src/auth0/management/types/universal_login_experience_enum.py +5 -0
  2420. auth0_python-5.0.0/src/auth0/management/types/update_action_bindings_response_content.py +20 -0
  2421. auth0_python-5.0.0/src/auth0/management/types/update_action_module_response_content.py +73 -0
  2422. auth0_python-5.0.0/src/auth0/management/types/update_action_response_content.py +98 -0
  2423. auth0_python-5.0.0/src/auth0/management/types/update_acul_response_content.py +40 -0
  2424. auth0_python-5.0.0/src/auth0/management/types/update_attack_protection_captcha_response_content.py +45 -0
  2425. auth0_python-5.0.0/src/auth0/management/types/update_bot_detection_settings_response_content.py +30 -0
  2426. auth0_python-5.0.0/src/auth0/management/types/update_branding_colors.py +29 -0
  2427. auth0_python-5.0.0/src/auth0/management/types/update_branding_font.py +26 -0
  2428. auth0_python-5.0.0/src/auth0/management/types/update_branding_page_background.py +5 -0
  2429. auth0_python-5.0.0/src/auth0/management/types/update_branding_phone_provider_response_content.py +49 -0
  2430. auth0_python-5.0.0/src/auth0/management/types/update_branding_response_content.py +32 -0
  2431. auth0_python-5.0.0/src/auth0/management/types/update_branding_theme_response_content.py +42 -0
  2432. auth0_python-5.0.0/src/auth0/management/types/update_breached_password_detection_settings_response_content.py +45 -0
  2433. auth0_python-5.0.0/src/auth0/management/types/update_brute_force_settings_response_content.py +41 -0
  2434. auth0_python-5.0.0/src/auth0/management/types/update_client_grant_response_content.py +61 -0
  2435. auth0_python-5.0.0/src/auth0/management/types/update_client_response_content.py +235 -0
  2436. auth0_python-5.0.0/src/auth0/management/types/update_connection_options.py +93 -0
  2437. auth0_python-5.0.0/src/auth0/management/types/update_connection_profile_response_content.py +32 -0
  2438. auth0_python-5.0.0/src/auth0/management/types/update_connection_request_content_ad.py +25 -0
  2439. auth0_python-5.0.0/src/auth0/management/types/update_connection_request_content_adfs.py +27 -0
  2440. auth0_python-5.0.0/src/auth0/management/types/update_connection_request_content_amazon.py +25 -0
  2441. auth0_python-5.0.0/src/auth0/management/types/update_connection_request_content_aol.py +25 -0
  2442. auth0_python-5.0.0/src/auth0/management/types/update_connection_request_content_apple.py +25 -0
  2443. auth0_python-5.0.0/src/auth0/management/types/update_connection_request_content_auth_0.py +27 -0
  2444. auth0_python-5.0.0/src/auth0/management/types/update_connection_request_content_auth_0_oidc.py +25 -0
  2445. auth0_python-5.0.0/src/auth0/management/types/update_connection_request_content_azure_ad.py +27 -0
  2446. auth0_python-5.0.0/src/auth0/management/types/update_connection_request_content_baidu.py +25 -0
  2447. auth0_python-5.0.0/src/auth0/management/types/update_connection_request_content_bitbucket.py +25 -0
  2448. auth0_python-5.0.0/src/auth0/management/types/update_connection_request_content_bitly.py +25 -0
  2449. auth0_python-5.0.0/src/auth0/management/types/update_connection_request_content_box.py +26 -0
  2450. auth0_python-5.0.0/src/auth0/management/types/update_connection_request_content_custom.py +25 -0
  2451. auth0_python-5.0.0/src/auth0/management/types/update_connection_request_content_daccount.py +25 -0
  2452. auth0_python-5.0.0/src/auth0/management/types/update_connection_request_content_dropbox.py +25 -0
  2453. auth0_python-5.0.0/src/auth0/management/types/update_connection_request_content_dwolla.py +25 -0
  2454. auth0_python-5.0.0/src/auth0/management/types/update_connection_request_content_email.py +25 -0
  2455. auth0_python-5.0.0/src/auth0/management/types/update_connection_request_content_evernote.py +25 -0
  2456. auth0_python-5.0.0/src/auth0/management/types/update_connection_request_content_evernote_sandbox.py +25 -0
  2457. auth0_python-5.0.0/src/auth0/management/types/update_connection_request_content_exact.py +25 -0
  2458. auth0_python-5.0.0/src/auth0/management/types/update_connection_request_content_facebook.py +25 -0
  2459. auth0_python-5.0.0/src/auth0/management/types/update_connection_request_content_fitbit.py +25 -0
  2460. auth0_python-5.0.0/src/auth0/management/types/update_connection_request_content_flickr.py +25 -0
  2461. auth0_python-5.0.0/src/auth0/management/types/update_connection_request_content_git_hub.py +26 -0
  2462. auth0_python-5.0.0/src/auth0/management/types/update_connection_request_content_google_apps.py +27 -0
  2463. auth0_python-5.0.0/src/auth0/management/types/update_connection_request_content_google_o_auth_2.py +26 -0
  2464. auth0_python-5.0.0/src/auth0/management/types/update_connection_request_content_instagram.py +25 -0
  2465. auth0_python-5.0.0/src/auth0/management/types/update_connection_request_content_ip.py +27 -0
  2466. auth0_python-5.0.0/src/auth0/management/types/update_connection_request_content_line.py +25 -0
  2467. auth0_python-5.0.0/src/auth0/management/types/update_connection_request_content_linkedin.py +25 -0
  2468. auth0_python-5.0.0/src/auth0/management/types/update_connection_request_content_miicard.py +25 -0
  2469. auth0_python-5.0.0/src/auth0/management/types/update_connection_request_content_o_auth_1.py +25 -0
  2470. auth0_python-5.0.0/src/auth0/management/types/update_connection_request_content_o_auth_2.py +26 -0
  2471. auth0_python-5.0.0/src/auth0/management/types/update_connection_request_content_office_365.py +27 -0
  2472. auth0_python-5.0.0/src/auth0/management/types/update_connection_request_content_oidc.py +31 -0
  2473. auth0_python-5.0.0/src/auth0/management/types/update_connection_request_content_okta.py +27 -0
  2474. auth0_python-5.0.0/src/auth0/management/types/update_connection_request_content_paypal.py +25 -0
  2475. auth0_python-5.0.0/src/auth0/management/types/update_connection_request_content_paypal_sandbox.py +25 -0
  2476. auth0_python-5.0.0/src/auth0/management/types/update_connection_request_content_ping_federate.py +27 -0
  2477. auth0_python-5.0.0/src/auth0/management/types/update_connection_request_content_planning_center.py +25 -0
  2478. auth0_python-5.0.0/src/auth0/management/types/update_connection_request_content_renren.py +25 -0
  2479. auth0_python-5.0.0/src/auth0/management/types/update_connection_request_content_salesforce.py +25 -0
  2480. auth0_python-5.0.0/src/auth0/management/types/update_connection_request_content_salesforce_community.py +25 -0
  2481. auth0_python-5.0.0/src/auth0/management/types/update_connection_request_content_salesforce_sandbox.py +25 -0
  2482. auth0_python-5.0.0/src/auth0/management/types/update_connection_request_content_saml.py +27 -0
  2483. auth0_python-5.0.0/src/auth0/management/types/update_connection_request_content_sharepoint.py +27 -0
  2484. auth0_python-5.0.0/src/auth0/management/types/update_connection_request_content_shop.py +25 -0
  2485. auth0_python-5.0.0/src/auth0/management/types/update_connection_request_content_shopify.py +25 -0
  2486. auth0_python-5.0.0/src/auth0/management/types/update_connection_request_content_sms.py +25 -0
  2487. auth0_python-5.0.0/src/auth0/management/types/update_connection_request_content_soundcloud.py +25 -0
  2488. auth0_python-5.0.0/src/auth0/management/types/update_connection_request_content_thirty_seven_signals.py +25 -0
  2489. auth0_python-5.0.0/src/auth0/management/types/update_connection_request_content_twitter.py +25 -0
  2490. auth0_python-5.0.0/src/auth0/management/types/update_connection_request_content_untappd.py +25 -0
  2491. auth0_python-5.0.0/src/auth0/management/types/update_connection_request_content_vkontakte.py +25 -0
  2492. auth0_python-5.0.0/src/auth0/management/types/update_connection_request_content_weibo.py +25 -0
  2493. auth0_python-5.0.0/src/auth0/management/types/update_connection_request_content_windows_live.py +26 -0
  2494. auth0_python-5.0.0/src/auth0/management/types/update_connection_request_content_wordpress.py +25 -0
  2495. auth0_python-5.0.0/src/auth0/management/types/update_connection_request_content_yahoo.py +25 -0
  2496. auth0_python-5.0.0/src/auth0/management/types/update_connection_request_content_yammer.py +25 -0
  2497. auth0_python-5.0.0/src/auth0/management/types/update_connection_request_content_yandex.py +25 -0
  2498. auth0_python-5.0.0/src/auth0/management/types/update_connection_response_content.py +66 -0
  2499. auth0_python-5.0.0/src/auth0/management/types/update_custom_domain_response_content.py +62 -0
  2500. auth0_python-5.0.0/src/auth0/management/types/update_directory_provisioning_request_content.py +28 -0
  2501. auth0_python-5.0.0/src/auth0/management/types/update_directory_provisioning_response_content.py +69 -0
  2502. auth0_python-5.0.0/src/auth0/management/types/update_email_provider_response_content.py +37 -0
  2503. auth0_python-5.0.0/src/auth0/management/types/update_email_template_response_content.py +69 -0
  2504. auth0_python-5.0.0/src/auth0/management/types/update_enabled_client_connections_request_content.py +7 -0
  2505. auth0_python-5.0.0/src/auth0/management/types/update_enabled_client_connections_request_content_item.py +27 -0
  2506. auth0_python-5.0.0/src/auth0/management/types/update_event_stream_response_content.py +11 -0
  2507. auth0_python-5.0.0/src/auth0/management/types/update_flow_response_content.py +41 -0
  2508. auth0_python-5.0.0/src/auth0/management/types/update_flows_vault_connection_response_content.py +65 -0
  2509. auth0_python-5.0.0/src/auth0/management/types/update_flows_vault_connection_setup.py +41 -0
  2510. auth0_python-5.0.0/src/auth0/management/types/update_form_response_content.py +39 -0
  2511. auth0_python-5.0.0/src/auth0/management/types/update_guardian_factor_duo_settings_response_content.py +21 -0
  2512. auth0_python-5.0.0/src/auth0/management/types/update_guardian_factors_provider_push_notification_apns_response_content.py +20 -0
  2513. auth0_python-5.0.0/src/auth0/management/types/update_guardian_factors_provider_push_notification_fcm_response_content.py +5 -0
  2514. auth0_python-5.0.0/src/auth0/management/types/update_guardian_factors_provider_push_notification_fcmv_1_response_content.py +5 -0
  2515. auth0_python-5.0.0/src/auth0/management/types/update_guardian_factors_provider_push_notification_sns_response_content.py +23 -0
  2516. auth0_python-5.0.0/src/auth0/management/types/update_hook_response_content.py +51 -0
  2517. auth0_python-5.0.0/src/auth0/management/types/update_hook_secret_request_content.py +5 -0
  2518. auth0_python-5.0.0/src/auth0/management/types/update_log_stream_response_content.py +23 -0
  2519. auth0_python-5.0.0/src/auth0/management/types/update_network_acl_response_content.py +33 -0
  2520. auth0_python-5.0.0/src/auth0/management/types/update_organization_connection_response_content.py +40 -0
  2521. auth0_python-5.0.0/src/auth0/management/types/update_organization_discovery_domain_response_content.py +44 -0
  2522. auth0_python-5.0.0/src/auth0/management/types/update_organization_response_content.py +39 -0
  2523. auth0_python-5.0.0/src/auth0/management/types/update_phone_template_response_content.py +30 -0
  2524. auth0_python-5.0.0/src/auth0/management/types/update_refresh_token_response_content.py +55 -0
  2525. auth0_python-5.0.0/src/auth0/management/types/update_resource_server_response_content.py +91 -0
  2526. auth0_python-5.0.0/src/auth0/management/types/update_risk_assessments_settings_new_device_response_content.py +22 -0
  2527. auth0_python-5.0.0/src/auth0/management/types/update_risk_assessments_settings_response_content.py +22 -0
  2528. auth0_python-5.0.0/src/auth0/management/types/update_role_response_content.py +32 -0
  2529. auth0_python-5.0.0/src/auth0/management/types/update_rule_response_content.py +49 -0
  2530. auth0_python-5.0.0/src/auth0/management/types/update_scim_configuration_response_content.py +58 -0
  2531. auth0_python-5.0.0/src/auth0/management/types/update_self_service_profile_response_content.py +64 -0
  2532. auth0_python-5.0.0/src/auth0/management/types/update_session_response_content.py +49 -0
  2533. auth0_python-5.0.0/src/auth0/management/types/update_settings_response_content.py +29 -0
  2534. auth0_python-5.0.0/src/auth0/management/types/update_suspicious_ip_throttling_settings_response_content.py +34 -0
  2535. auth0_python-5.0.0/src/auth0/management/types/update_tenant_settings_response_content.py +162 -0
  2536. auth0_python-5.0.0/src/auth0/management/types/update_token_quota.py +20 -0
  2537. auth0_python-5.0.0/src/auth0/management/types/update_universal_login_template_request_content.py +7 -0
  2538. auth0_python-5.0.0/src/auth0/management/types/update_universal_login_template_request_content_template.py +19 -0
  2539. auth0_python-5.0.0/src/auth0/management/types/update_user_attribute_profile_response_content.py +26 -0
  2540. auth0_python-5.0.0/src/auth0/management/types/update_user_authentication_method_response_content.py +78 -0
  2541. auth0_python-5.0.0/src/auth0/management/types/update_user_response_content.py +106 -0
  2542. auth0_python-5.0.0/src/auth0/management/types/update_verifiable_credential_template_response_content.py +60 -0
  2543. auth0_python-5.0.0/src/auth0/management/types/user_app_metadata_schema.py +5 -0
  2544. auth0_python-5.0.0/src/auth0/management/types/user_attribute_profile.py +26 -0
  2545. auth0_python-5.0.0/src/auth0/management/types/user_attribute_profile_id.py +3 -0
  2546. auth0_python-5.0.0/src/auth0/management/types/user_attribute_profile_name.py +3 -0
  2547. auth0_python-5.0.0/src/auth0/management/types/user_attribute_profile_oidc_mapping.py +31 -0
  2548. auth0_python-5.0.0/src/auth0/management/types/user_attribute_profile_patch_user_id.py +7 -0
  2549. auth0_python-5.0.0/src/auth0/management/types/user_attribute_profile_saml_mapping.py +5 -0
  2550. auth0_python-5.0.0/src/auth0/management/types/user_attribute_profile_strategy_overrides.py +35 -0
  2551. auth0_python-5.0.0/src/auth0/management/types/user_attribute_profile_strategy_overrides_mapping.py +26 -0
  2552. auth0_python-5.0.0/src/auth0/management/types/user_attribute_profile_strategy_overrides_user_id.py +37 -0
  2553. auth0_python-5.0.0/src/auth0/management/types/user_attribute_profile_strategy_overrides_user_id_mapping.py +28 -0
  2554. auth0_python-5.0.0/src/auth0/management/types/user_attribute_profile_template.py +28 -0
  2555. auth0_python-5.0.0/src/auth0/management/types/user_attribute_profile_template_item.py +30 -0
  2556. auth0_python-5.0.0/src/auth0/management/types/user_attribute_profile_user_attribute_additional_properties.py +53 -0
  2557. auth0_python-5.0.0/src/auth0/management/types/user_attribute_profile_user_attributes.py +9 -0
  2558. auth0_python-5.0.0/src/auth0/management/types/user_attribute_profile_user_id.py +33 -0
  2559. auth0_python-5.0.0/src/auth0/management/types/user_attribute_profile_user_id_oidc_mapping_enum.py +5 -0
  2560. auth0_python-5.0.0/src/auth0/management/types/user_attribute_profile_user_id_oidc_strategy_override_mapping.py +5 -0
  2561. auth0_python-5.0.0/src/auth0/management/types/user_attribute_profile_user_id_saml_mapping.py +5 -0
  2562. auth0_python-5.0.0/src/auth0/management/types/user_authentication_method.py +109 -0
  2563. auth0_python-5.0.0/src/auth0/management/types/user_authentication_method_properties.py +21 -0
  2564. auth0_python-5.0.0/src/auth0/management/types/user_authentication_method_properties_enum.py +5 -0
  2565. auth0_python-5.0.0/src/auth0/management/types/user_block_identifier.py +32 -0
  2566. auth0_python-5.0.0/src/auth0/management/types/user_date_schema.py +5 -0
  2567. auth0_python-5.0.0/src/auth0/management/types/user_enrollment_auth_method_enum.py +7 -0
  2568. auth0_python-5.0.0/src/auth0/management/types/user_enrollment_status_enum.py +5 -0
  2569. auth0_python-5.0.0/src/auth0/management/types/user_grant.py +46 -0
  2570. auth0_python-5.0.0/src/auth0/management/types/user_groups_response_schema.py +24 -0
  2571. auth0_python-5.0.0/src/auth0/management/types/user_id.py +5 -0
  2572. auth0_python-5.0.0/src/auth0/management/types/user_identity.py +57 -0
  2573. auth0_python-5.0.0/src/auth0/management/types/user_identity_provider_enum.py +71 -0
  2574. auth0_python-5.0.0/src/auth0/management/types/user_identity_schema.py +58 -0
  2575. auth0_python-5.0.0/src/auth0/management/types/user_list_log_offset_paginated_response_content.py +24 -0
  2576. auth0_python-5.0.0/src/auth0/management/types/user_metadata.py +5 -0
  2577. auth0_python-5.0.0/src/auth0/management/types/user_metadata_schema.py +5 -0
  2578. auth0_python-5.0.0/src/auth0/management/types/user_multifactor_provider_enum.py +5 -0
  2579. auth0_python-5.0.0/src/auth0/management/types/user_permission_schema.py +37 -0
  2580. auth0_python-5.0.0/src/auth0/management/types/user_profile_data.py +57 -0
  2581. auth0_python-5.0.0/src/auth0/management/types/user_response_schema.py +106 -0
  2582. auth0_python-5.0.0/src/auth0/management/types/username_allowed_types.py +20 -0
  2583. auth0_python-5.0.0/src/auth0/management/types/username_attribute.py +33 -0
  2584. auth0_python-5.0.0/src/auth0/management/types/username_validation.py +30 -0
  2585. auth0_python-5.0.0/src/auth0/management/types/users_enrollment.py +57 -0
  2586. auth0_python-5.0.0/src/auth0/management/types/verifiable_credential_template_response.py +60 -0
  2587. auth0_python-5.0.0/src/auth0/management/types/verification_method_enum.py +5 -0
  2588. auth0_python-5.0.0/src/auth0/management/types/verify_custom_domain_response_content.py +65 -0
  2589. auth0_python-5.0.0/src/auth0/management/types/verify_email_ticket_response_content.py +24 -0
  2590. auth0_python-5.0.0/src/auth0/management/types/x_509_certificate_credential.py +29 -0
  2591. auth0_python-5.0.0/src/auth0/management/types/x_509_certificate_credential_type_enum.py +5 -0
  2592. auth0_python-5.0.0/src/auth0/management/user_attribute_profiles/__init__.py +4 -0
  2593. auth0_python-5.0.0/src/auth0/management/user_attribute_profiles/client.py +652 -0
  2594. auth0_python-5.0.0/src/auth0/management/user_attribute_profiles/raw_client.py +1296 -0
  2595. auth0_python-5.0.0/src/auth0/management/user_blocks/__init__.py +4 -0
  2596. auth0_python-5.0.0/src/auth0/management/user_blocks/client.py +391 -0
  2597. auth0_python-5.0.0/src/auth0/management/user_blocks/raw_client.py +770 -0
  2598. auth0_python-5.0.0/src/auth0/management/user_grants/__init__.py +4 -0
  2599. auth0_python-5.0.0/src/auth0/management/user_grants/client.py +333 -0
  2600. auth0_python-5.0.0/src/auth0/management/user_grants/raw_client.py +522 -0
  2601. auth0_python-5.0.0/src/auth0/management/users/__init__.py +82 -0
  2602. auth0_python-5.0.0/src/auth0/management/users/authentication_methods/__init__.py +4 -0
  2603. auth0_python-5.0.0/src/auth0/management/users/authentication_methods/client.py +793 -0
  2604. auth0_python-5.0.0/src/auth0/management/users/authentication_methods/raw_client.py +1576 -0
  2605. auth0_python-5.0.0/src/auth0/management/users/authenticators/__init__.py +4 -0
  2606. auth0_python-5.0.0/src/auth0/management/users/authenticators/client.py +107 -0
  2607. auth0_python-5.0.0/src/auth0/management/users/authenticators/raw_client.py +173 -0
  2608. auth0_python-5.0.0/src/auth0/management/users/client.py +1688 -0
  2609. auth0_python-5.0.0/src/auth0/management/users/connected_accounts/__init__.py +4 -0
  2610. auth0_python-5.0.0/src/auth0/management/users/connected_accounts/client.py +151 -0
  2611. auth0_python-5.0.0/src/auth0/management/users/connected_accounts/raw_client.py +244 -0
  2612. auth0_python-5.0.0/src/auth0/management/users/enrollments/__init__.py +4 -0
  2613. auth0_python-5.0.0/src/auth0/management/users/enrollments/client.py +112 -0
  2614. auth0_python-5.0.0/src/auth0/management/users/enrollments/raw_client.py +215 -0
  2615. auth0_python-5.0.0/src/auth0/management/users/federated_connections_tokensets/__init__.py +4 -0
  2616. auth0_python-5.0.0/src/auth0/management/users/federated_connections_tokensets/client.py +188 -0
  2617. auth0_python-5.0.0/src/auth0/management/users/federated_connections_tokensets/raw_client.py +345 -0
  2618. auth0_python-5.0.0/src/auth0/management/users/groups/__init__.py +4 -0
  2619. auth0_python-5.0.0/src/auth0/management/users/groups/client.py +175 -0
  2620. auth0_python-5.0.0/src/auth0/management/users/groups/raw_client.py +268 -0
  2621. auth0_python-5.0.0/src/auth0/management/users/identities/__init__.py +4 -0
  2622. auth0_python-5.0.0/src/auth0/management/users/identities/client.py +326 -0
  2623. auth0_python-5.0.0/src/auth0/management/users/identities/raw_client.py +526 -0
  2624. auth0_python-5.0.0/src/auth0/management/users/logs/__init__.py +4 -0
  2625. auth0_python-5.0.0/src/auth0/management/users/logs/client.py +187 -0
  2626. auth0_python-5.0.0/src/auth0/management/users/logs/raw_client.py +282 -0
  2627. auth0_python-5.0.0/src/auth0/management/users/multifactor/__init__.py +4 -0
  2628. auth0_python-5.0.0/src/auth0/management/users/multifactor/client.py +190 -0
  2629. auth0_python-5.0.0/src/auth0/management/users/multifactor/raw_client.py +333 -0
  2630. auth0_python-5.0.0/src/auth0/management/users/organizations/__init__.py +4 -0
  2631. auth0_python-5.0.0/src/auth0/management/users/organizations/client.py +167 -0
  2632. auth0_python-5.0.0/src/auth0/management/users/organizations/raw_client.py +237 -0
  2633. auth0_python-5.0.0/src/auth0/management/users/permissions/__init__.py +4 -0
  2634. auth0_python-5.0.0/src/auth0/management/users/permissions/client.py +367 -0
  2635. auth0_python-5.0.0/src/auth0/management/users/permissions/raw_client.py +653 -0
  2636. auth0_python-5.0.0/src/auth0/management/users/raw_client.py +2216 -0
  2637. auth0_python-5.0.0/src/auth0/management/users/refresh_token/__init__.py +4 -0
  2638. auth0_python-5.0.0/src/auth0/management/users/refresh_token/client.py +219 -0
  2639. auth0_python-5.0.0/src/auth0/management/users/refresh_token/raw_client.py +416 -0
  2640. auth0_python-5.0.0/src/auth0/management/users/risk_assessments/__init__.py +4 -0
  2641. auth0_python-5.0.0/src/auth0/management/users/risk_assessments/client.py +145 -0
  2642. auth0_python-5.0.0/src/auth0/management/users/risk_assessments/raw_client.py +217 -0
  2643. auth0_python-5.0.0/src/auth0/management/users/roles/__init__.py +4 -0
  2644. auth0_python-5.0.0/src/auth0/management/users/roles/client.py +340 -0
  2645. auth0_python-5.0.0/src/auth0/management/users/roles/raw_client.py +570 -0
  2646. auth0_python-5.0.0/src/auth0/management/users/sessions/__init__.py +4 -0
  2647. auth0_python-5.0.0/src/auth0/management/users/sessions/client.py +219 -0
  2648. auth0_python-5.0.0/src/auth0/management/users/sessions/raw_client.py +416 -0
  2649. auth0_python-5.0.0/src/auth0/management/verifiable_credentials/__init__.py +34 -0
  2650. auth0_python-5.0.0/src/auth0/management/verifiable_credentials/client.py +63 -0
  2651. auth0_python-5.0.0/src/auth0/management/verifiable_credentials/raw_client.py +13 -0
  2652. auth0_python-5.0.0/src/auth0/management/verifiable_credentials/verification/__init__.py +34 -0
  2653. auth0_python-5.0.0/src/auth0/management/verifiable_credentials/verification/client.py +63 -0
  2654. auth0_python-5.0.0/src/auth0/management/verifiable_credentials/verification/raw_client.py +13 -0
  2655. auth0_python-5.0.0/src/auth0/management/verifiable_credentials/verification/templates/__init__.py +4 -0
  2656. auth0_python-5.0.0/src/auth0/management/verifiable_credentials/verification/templates/client.py +580 -0
  2657. auth0_python-5.0.0/src/auth0/management/verifiable_credentials/verification/templates/raw_client.py +1095 -0
  2658. auth0_python-5.0.0/src/auth0/management/version.py +3 -0
  2659. auth0_python-4.12.0/PKG-INFO +0 -217
  2660. auth0_python-4.12.0/README.md +0 -189
  2661. auth0_python-4.12.0/auth0/__init__.py +0 -6
  2662. auth0_python-4.12.0/auth0/asyncify.py +0 -115
  2663. auth0_python-4.12.0/auth0/authentication/async_token_verifier.py +0 -200
  2664. auth0_python-4.12.0/auth0/authentication/base.py +0 -83
  2665. auth0_python-4.12.0/auth0/authentication/token_verifier.py +0 -459
  2666. auth0_python-4.12.0/auth0/authentication/users.py +0 -53
  2667. auth0_python-4.12.0/auth0/exceptions.py +0 -32
  2668. auth0_python-4.12.0/auth0/management/__init__.py +0 -72
  2669. auth0_python-4.12.0/auth0/management/actions.py +0 -264
  2670. auth0_python-4.12.0/auth0/management/async_auth0.py +0 -67
  2671. auth0_python-4.12.0/auth0/management/attack_protection.py +0 -126
  2672. auth0_python-4.12.0/auth0/management/auth0.py +0 -100
  2673. auth0_python-4.12.0/auth0/management/blacklists.py +0 -79
  2674. auth0_python-4.12.0/auth0/management/branding.py +0 -158
  2675. auth0_python-4.12.0/auth0/management/client_credentials.py +0 -98
  2676. auth0_python-4.12.0/auth0/management/client_grants.py +0 -170
  2677. auth0_python-4.12.0/auth0/management/clients.py +0 -174
  2678. auth0_python-4.12.0/auth0/management/connections.py +0 -189
  2679. auth0_python-4.12.0/auth0/management/custom_domains.py +0 -100
  2680. auth0_python-4.12.0/auth0/management/device_credentials.py +0 -124
  2681. auth0_python-4.12.0/auth0/management/email_templates.py +0 -94
  2682. auth0_python-4.12.0/auth0/management/emails.py +0 -102
  2683. auth0_python-4.12.0/auth0/management/grants.py +0 -100
  2684. auth0_python-4.12.0/auth0/management/guardian.py +0 -173
  2685. auth0_python-4.12.0/auth0/management/hooks.py +0 -196
  2686. auth0_python-4.12.0/auth0/management/jobs.py +0 -141
  2687. auth0_python-4.12.0/auth0/management/log_streams.py +0 -105
  2688. auth0_python-4.12.0/auth0/management/logs.py +0 -122
  2689. auth0_python-4.12.0/auth0/management/network_acls.py +0 -138
  2690. auth0_python-4.12.0/auth0/management/organizations.py +0 -532
  2691. auth0_python-4.12.0/auth0/management/prompts.py +0 -99
  2692. auth0_python-4.12.0/auth0/management/resource_servers.py +0 -131
  2693. auth0_python-4.12.0/auth0/management/roles.py +0 -240
  2694. auth0_python-4.12.0/auth0/management/rules.py +0 -161
  2695. auth0_python-4.12.0/auth0/management/rules_configs.py +0 -84
  2696. auth0_python-4.12.0/auth0/management/self_service_profiles.py +0 -180
  2697. auth0_python-4.12.0/auth0/management/stats.py +0 -79
  2698. auth0_python-4.12.0/auth0/management/tenants.py +0 -83
  2699. auth0_python-4.12.0/auth0/management/tickets.py +0 -70
  2700. auth0_python-4.12.0/auth0/management/user_blocks.py +0 -101
  2701. auth0_python-4.12.0/auth0/management/users.py +0 -583
  2702. auth0_python-4.12.0/auth0/management/users_by_email.py +0 -75
  2703. auth0_python-4.12.0/auth0/rest.py +0 -365
  2704. auth0_python-4.12.0/auth0/rest_async.py +0 -163
  2705. auth0_python-4.12.0/auth0/test/authentication/__init__.py +0 -0
  2706. auth0_python-4.12.0/auth0/test/authentication/test_back_channel_login.py +0 -210
  2707. auth0_python-4.12.0/auth0/test/authentication/test_base.py +0 -317
  2708. auth0_python-4.12.0/auth0/test/authentication/test_database.py +0 -102
  2709. auth0_python-4.12.0/auth0/test/authentication/test_delegated.py +0 -72
  2710. auth0_python-4.12.0/auth0/test/authentication/test_enterprise.py +0 -27
  2711. auth0_python-4.12.0/auth0/test/authentication/test_get_token.py +0 -416
  2712. auth0_python-4.12.0/auth0/test/authentication/test_passwordless.py +0 -102
  2713. auth0_python-4.12.0/auth0/test/authentication/test_pushed_authorization_requests.py +0 -104
  2714. auth0_python-4.12.0/auth0/test/authentication/test_revoke_token.py +0 -29
  2715. auth0_python-4.12.0/auth0/test/authentication/test_social.py +0 -46
  2716. auth0_python-4.12.0/auth0/test/authentication/test_token_verifier.py +0 -594
  2717. auth0_python-4.12.0/auth0/test/authentication/test_users.py +0 -17
  2718. auth0_python-4.12.0/auth0/test/conftest.py +0 -7
  2719. auth0_python-4.12.0/auth0/test/management/__init__.py +0 -0
  2720. auth0_python-4.12.0/auth0/test/management/test_actions.py +0 -249
  2721. auth0_python-4.12.0/auth0/test/management/test_atack_protection.py +0 -96
  2722. auth0_python-4.12.0/auth0/test/management/test_auth0.py +0 -136
  2723. auth0_python-4.12.0/auth0/test/management/test_blacklists.py +0 -47
  2724. auth0_python-4.12.0/auth0/test/management/test_branding.py +0 -138
  2725. auth0_python-4.12.0/auth0/test/management/test_client_credentials.py +0 -50
  2726. auth0_python-4.12.0/auth0/test/management/test_client_grants.py +0 -167
  2727. auth0_python-4.12.0/auth0/test/management/test_clients.py +0 -136
  2728. auth0_python-4.12.0/auth0/test/management/test_connections.py +0 -202
  2729. auth0_python-4.12.0/auth0/test/management/test_custom_domains.py +0 -57
  2730. auth0_python-4.12.0/auth0/test/management/test_device_credentials.py +0 -87
  2731. auth0_python-4.12.0/auth0/test/management/test_email_endpoints.py +0 -48
  2732. auth0_python-4.12.0/auth0/test/management/test_emails.py +0 -64
  2733. auth0_python-4.12.0/auth0/test/management/test_grants.py +0 -44
  2734. auth0_python-4.12.0/auth0/test/management/test_guardian.py +0 -150
  2735. auth0_python-4.12.0/auth0/test/management/test_hooks.py +0 -173
  2736. auth0_python-4.12.0/auth0/test/management/test_jobs.py +0 -107
  2737. auth0_python-4.12.0/auth0/test/management/test_log_streams.py +0 -84
  2738. auth0_python-4.12.0/auth0/test/management/test_logs.py +0 -51
  2739. auth0_python-4.12.0/auth0/test/management/test_network_acls.py +0 -90
  2740. auth0_python-4.12.0/auth0/test/management/test_organizations.py +0 -536
  2741. auth0_python-4.12.0/auth0/test/management/test_prompts.py +0 -64
  2742. auth0_python-4.12.0/auth0/test/management/test_resource_servers.py +0 -86
  2743. auth0_python-4.12.0/auth0/test/management/test_rest.py +0 -825
  2744. auth0_python-4.12.0/auth0/test/management/test_roles.py +0 -196
  2745. auth0_python-4.12.0/auth0/test/management/test_rules.py +0 -127
  2746. auth0_python-4.12.0/auth0/test/management/test_rules_configs.py +0 -47
  2747. auth0_python-4.12.0/auth0/test/management/test_self_service_profiles.py +0 -124
  2748. auth0_python-4.12.0/auth0/test/management/test_stats.py +0 -42
  2749. auth0_python-4.12.0/auth0/test/management/test_tenants.py +0 -51
  2750. auth0_python-4.12.0/auth0/test/management/test_tickets.py +0 -35
  2751. auth0_python-4.12.0/auth0/test/management/test_user_blocks.py +0 -63
  2752. auth0_python-4.12.0/auth0/test/management/test_users.py +0 -438
  2753. auth0_python-4.12.0/auth0/test/management/test_users_by_email.py +0 -41
  2754. auth0_python-4.12.0/auth0/test_async/__init__.py +0 -0
  2755. auth0_python-4.12.0/auth0/test_async/conftest.py +0 -7
  2756. auth0_python-4.12.0/auth0/test_async/test_async_auth0.py +0 -75
  2757. auth0_python-4.12.0/auth0/test_async/test_async_token_verifier.py +0 -289
  2758. auth0_python-4.12.0/auth0/test_async/test_asyncify.py +0 -263
  2759. auth0_python-4.12.0/auth0/utils.py +0 -11
  2760. auth0_python-4.12.0/pyproject.toml +0 -44
  2761. {auth0_python-4.12.0 → auth0_python-5.0.0}/LICENSE +0 -0
  2762. {auth0_python-4.12.0 → auth0_python-5.0.0/src}/auth0/authentication/__init__.py +0 -0
  2763. {auth0_python-4.12.0 → auth0_python-5.0.0/src}/auth0/authentication/back_channel_login.py +0 -0
  2764. {auth0_python-4.12.0 → auth0_python-5.0.0/src}/auth0/authentication/client_authentication.py +0 -0
  2765. {auth0_python-4.12.0 → auth0_python-5.0.0/src}/auth0/authentication/database.py +0 -0
  2766. {auth0_python-4.12.0 → auth0_python-5.0.0/src}/auth0/authentication/delegated.py +0 -0
  2767. {auth0_python-4.12.0 → auth0_python-5.0.0/src}/auth0/authentication/enterprise.py +0 -0
  2768. {auth0_python-4.12.0 → auth0_python-5.0.0/src}/auth0/authentication/get_token.py +0 -0
  2769. {auth0_python-4.12.0 → auth0_python-5.0.0/src}/auth0/authentication/passwordless.py +0 -0
  2770. {auth0_python-4.12.0 → auth0_python-5.0.0/src}/auth0/authentication/pushed_authorization_requests.py +0 -0
  2771. {auth0_python-4.12.0 → auth0_python-5.0.0/src}/auth0/authentication/revoke_token.py +0 -0
  2772. {auth0_python-4.12.0 → auth0_python-5.0.0/src}/auth0/authentication/social.py +0 -0
  2773. {auth0_python-4.12.0/auth0 → auth0_python-5.0.0/src/auth0/authentication}/types.py +0 -0
  2774. /auth0_python-4.12.0/auth0/test/__init__.py → /auth0_python-5.0.0/src/auth0/management/py.typed +0 -0
@@ -0,0 +1,389 @@
1
+ Metadata-Version: 2.4
2
+ Name: auth0-python
3
+ Version: 5.0.0
4
+ Summary: Auth0 Python SDK - Management and Authentication APIs
5
+ License: MIT
6
+ License-File: LICENSE
7
+ Keywords: auth0,authentication,authorization,oauth,openid
8
+ Author: Auth0
9
+ Author-email: support@auth0.com
10
+ Requires-Python: >=3.8,<4.0
11
+ Classifier: Intended Audience :: Developers
12
+ Classifier: License :: OSI Approved :: MIT License
13
+ Classifier: Operating System :: MacOS
14
+ Classifier: Operating System :: Microsoft :: Windows
15
+ Classifier: Operating System :: OS Independent
16
+ Classifier: Operating System :: POSIX
17
+ Classifier: Operating System :: POSIX :: Linux
18
+ Classifier: Programming Language :: Python
19
+ Classifier: Programming Language :: Python :: 3
20
+ Classifier: Programming Language :: Python :: 3.8
21
+ Classifier: Programming Language :: Python :: 3.9
22
+ Classifier: Programming Language :: Python :: 3.10
23
+ Classifier: Programming Language :: Python :: 3.11
24
+ Classifier: Programming Language :: Python :: 3.12
25
+ Classifier: Programming Language :: Python :: 3.13
26
+ Classifier: Programming Language :: Python :: 3.14
27
+ Classifier: Topic :: Software Development :: Libraries :: Python Modules
28
+ Classifier: Typing :: Typed
29
+ Requires-Dist: aiohttp (>=3.10.11)
30
+ Requires-Dist: cryptography (>=43.0.1)
31
+ Requires-Dist: httpx (>=0.21.2)
32
+ Requires-Dist: pydantic (>=1.9.2)
33
+ Requires-Dist: pydantic-core (>=2.18.2)
34
+ Requires-Dist: pyjwt (>=2.8.0)
35
+ Requires-Dist: requests (>=2.32.3)
36
+ Requires-Dist: typing_extensions (>=4.0.0)
37
+ Requires-Dist: urllib3 (>=2.2.3)
38
+ Project-URL: Homepage, https://auth0.com
39
+ Project-URL: Repository, https://github.com/auth0/auth0-python
40
+ Description-Content-Type: text/markdown
41
+
42
+ # Auth0 Python Library
43
+
44
+ ![Auth0 SDK for Python](https://cdn.auth0.com/website/sdks/banners/auth0-python-banner.png)
45
+
46
+ ![Release](https://img.shields.io/pypi/v/auth0-python)
47
+ [![Codecov](https://img.shields.io/codecov/c/github/auth0/auth0-python)](https://codecov.io/gh/auth0/auth0-python)
48
+ [![Ask DeepWiki](https://deepwiki.com/badge.svg)](https://deepwiki.com/auth0/auth0-python)
49
+ ![Downloads](https://img.shields.io/pypi/dw/auth0-python)
50
+ [![License](https://img.shields.io/:license-MIT-blue.svg?style=flat)](https://opensource.org/licenses/MIT)
51
+ [![CircleCI](https://img.shields.io/circleci/build/github/auth0/auth0-python)](https://circleci.com/gh/auth0/auth0-python)
52
+ [![fern shield](https://img.shields.io/badge/%F0%9F%8C%BF-Built%20with%20Fern-brightgreen)](https://buildwithfern.com?utm_source=github&utm_medium=github&utm_campaign=readme&utm_source=https%3A%2F%2Fgithub.com%2Fauth0%2Fauth0-python)
53
+
54
+ The Auth0 Python library provides convenient access to the Auth0 APIs from Python.
55
+
56
+ ## Table of Contents
57
+
58
+ - [Installation](#installation)
59
+ - [Reference](#reference)
60
+ - [Authentication API](#authentication-api)
61
+ - [Management API](#management-api)
62
+ - [Async Client](#async-client)
63
+ - [Exception Handling](#exception-handling)
64
+ - [Pagination](#pagination)
65
+ - [Advanced](#advanced)
66
+ - [Access Raw Response Data](#access-raw-response-data)
67
+ - [Retries](#retries)
68
+ - [Timeouts](#timeouts)
69
+ - [Custom Client](#custom-client)
70
+ - [Feedback](#feedback)
71
+
72
+ ## Installation
73
+ ```sh
74
+ pip install auth0-python==5.0.0
75
+ ```
76
+
77
+ **Requirements:**
78
+ - Python ≥3.8 (Python 3.7 support has been dropped)
79
+
80
+ ## Reference
81
+
82
+ A full reference for this library is available [here](https://github.com/auth0/auth0-python/blob/master/reference.md).
83
+
84
+ ## Authentication API
85
+
86
+ The Authentication API is used for authentication flows such as obtaining tokens via client credentials, authorization codes, or resource owner password grants:
87
+
88
+ ```python
89
+ from auth0.authentication import GetToken
90
+
91
+ token_client = GetToken(
92
+ domain="your-tenant.auth0.com",
93
+ client_id="YOUR_CLIENT_ID",
94
+ client_secret="YOUR_CLIENT_SECRET",
95
+ )
96
+
97
+ # Get an access token using client credentials
98
+ token_response = token_client.client_credentials(
99
+ audience="https://your-tenant.auth0.com/api/v2/"
100
+ )
101
+ access_token = token_response["access_token"]
102
+ ```
103
+
104
+ ## Management API
105
+
106
+ ### Recommended: Using ManagementClient
107
+
108
+ The `ManagementClient` is the recommended way to interact with the Auth0 Management API. It provides a simpler interface using just your Auth0 domain, and supports automatic token management with client credentials:
109
+
110
+ ```python
111
+ from auth0.management import ManagementClient
112
+
113
+ # With an existing token
114
+ client = ManagementClient(
115
+ domain="your-tenant.auth0.com",
116
+ token="YOUR_TOKEN",
117
+ )
118
+
119
+ # Or with client credentials (automatic token acquisition and refresh)
120
+ client = ManagementClient(
121
+ domain="your-tenant.auth0.com",
122
+ client_id="YOUR_CLIENT_ID",
123
+ client_secret="YOUR_CLIENT_SECRET",
124
+ )
125
+ ```
126
+
127
+ For async usage:
128
+
129
+ ```python
130
+ import asyncio
131
+ from auth0.management import AsyncManagementClient
132
+
133
+ client = AsyncManagementClient(
134
+ domain="your-tenant.auth0.com",
135
+ token="YOUR_TOKEN",
136
+ )
137
+
138
+ async def main() -> None:
139
+ users = await client.users.list()
140
+ print(users)
141
+
142
+ asyncio.run(main())
143
+ ```
144
+
145
+ ### Using a Token from the Authentication API
146
+
147
+ You can obtain a token using the Authentication API and use it with the Management API client:
148
+
149
+ ```python
150
+ from auth0.authentication import GetToken
151
+ from auth0.management import Auth0
152
+
153
+ domain = "your-tenant.auth0.com"
154
+
155
+ # Get a token using the Authentication API
156
+ token_client = GetToken(
157
+ domain=domain,
158
+ client_id="YOUR_CLIENT_ID",
159
+ client_secret="YOUR_CLIENT_SECRET",
160
+ )
161
+ token_response = token_client.client_credentials(
162
+ audience=f"https://{domain}/api/v2/"
163
+ )
164
+ access_token = token_response["access_token"]
165
+
166
+ # Use the token with the Management API client
167
+ client = Auth0(
168
+ base_url=f"https://{domain}/api/v2",
169
+ token=access_token,
170
+ )
171
+ ```
172
+
173
+ ### Using the Base Client
174
+
175
+ Alternatively, you can use the `Auth0` client directly with a full base URL:
176
+
177
+ ```python
178
+ from auth0.management import ActionTrigger, Auth0
179
+
180
+ client = Auth0(
181
+ base_url="https://YOUR_TENANT.auth0.com/api/v2",
182
+ token="YOUR_TOKEN",
183
+ )
184
+ client.actions.create(
185
+ name="name",
186
+ supported_triggers=[
187
+ ActionTrigger(
188
+ id="id",
189
+ )
190
+ ],
191
+ )
192
+ ```
193
+
194
+ ## Async Client
195
+
196
+ The SDK also exports an `async` client so that you can make non-blocking calls to our API. Note that if you are constructing an Async httpx client class to pass into this client, use `httpx.AsyncClient()` instead of `httpx.Client()` (e.g. for the `httpx_client` parameter of this client).
197
+
198
+ ```python
199
+ import asyncio
200
+
201
+ from auth0.management import ActionTrigger, AsyncAuth0
202
+
203
+ client = AsyncAuth0(
204
+ base_url="https://YOUR_TENANT.auth0.com/api/v2",
205
+ token="YOUR_TOKEN",
206
+ )
207
+
208
+
209
+ async def main() -> None:
210
+ await client.actions.create(
211
+ name="name",
212
+ supported_triggers=[
213
+ ActionTrigger(
214
+ id="id",
215
+ )
216
+ ],
217
+ )
218
+
219
+
220
+ asyncio.run(main())
221
+ ```
222
+
223
+ ## Exception Handling
224
+
225
+ When the API returns a non-success status code (4xx or 5xx response), a subclass of the following error
226
+ will be thrown.
227
+
228
+ ```python
229
+ from auth0.management.core.api_error import ApiError
230
+
231
+ try:
232
+ client.actions.create(...)
233
+ except ApiError as e:
234
+ print(e.status_code)
235
+ print(e.body)
236
+ ```
237
+
238
+ ## Pagination
239
+
240
+ Paginated requests will return a `SyncPager` or `AsyncPager`, which can be used as generators for the underlying object.
241
+
242
+ ```python
243
+ from auth0.management import Auth0
244
+
245
+ client = Auth0(
246
+ base_url="https://YOUR_TENANT.auth0.com/api/v2",
247
+ token="YOUR_TOKEN",
248
+ )
249
+ response = client.actions.list(
250
+ trigger_id="post-login",
251
+ action_name="actionName",
252
+ deployed=True,
253
+ page=1,
254
+ per_page=1,
255
+ installed=True,
256
+ )
257
+ for item in response:
258
+ print(item)
259
+ # alternatively, you can paginate page-by-page
260
+ for page in response.iter_pages():
261
+ print(page)
262
+ ```
263
+
264
+ ```python
265
+ # You can also iterate through pages and access the typed response per page
266
+ pager = client.actions.list(...)
267
+ for page in pager.iter_pages():
268
+ print(page.response) # access the typed response for each page
269
+ for item in page:
270
+ print(item)
271
+ ```
272
+
273
+ ## Advanced
274
+
275
+ ### Access Raw Response Data
276
+
277
+ The SDK provides access to raw response data, including headers, through the `.with_raw_response` property.
278
+ The `.with_raw_response` property returns a "raw" client that can be used to access the `.headers` and `.data` attributes.
279
+
280
+ ```python
281
+ from auth0.management import Auth0
282
+
283
+ client = Auth0(
284
+ base_url="https://YOUR_TENANT.auth0.com/api/v2",
285
+ token="YOUR_TOKEN",
286
+ )
287
+ response = client.actions.with_raw_response.create(...)
288
+ print(response.headers) # access the response headers
289
+ print(response.data) # access the underlying object
290
+ pager = client.actions.list(...)
291
+ print(pager.response) # access the typed response for the first page
292
+ for item in pager:
293
+ print(item) # access the underlying object(s)
294
+ for page in pager.iter_pages():
295
+ print(page.response) # access the typed response for each page
296
+ for item in page:
297
+ print(item) # access the underlying object(s)
298
+ ```
299
+
300
+ ### Retries
301
+
302
+ The SDK is instrumented with automatic retries with exponential backoff. A request will be retried as long
303
+ as the request is deemed retryable and the number of retry attempts has not grown larger than the configured
304
+ retry limit (default: 2).
305
+
306
+ A request is deemed retryable when any of the following HTTP status codes is returned:
307
+
308
+ - [408](https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/408) (Timeout)
309
+ - [429](https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/429) (Too Many Requests)
310
+ - [5XX](https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/500) (Internal Server Errors)
311
+
312
+ Use the `max_retries` request option to configure this behavior.
313
+
314
+ ```python
315
+ client.actions.create(..., request_options={
316
+ "max_retries": 1
317
+ })
318
+ ```
319
+
320
+ ### Timeouts
321
+
322
+ The SDK defaults to a 60 second timeout. You can configure this with a timeout option at the client or request level.
323
+
324
+ ```python
325
+ from auth0.management import Auth0
326
+
327
+ client = Auth0(
328
+ base_url="https://YOUR_TENANT.auth0.com/api/v2",
329
+ token="YOUR_TOKEN",
330
+ timeout=20.0,
331
+ )
332
+
333
+
334
+ # Override timeout for a specific method
335
+ client.actions.create(..., request_options={
336
+ "timeout_in_seconds": 1
337
+ })
338
+ ```
339
+
340
+ ### Custom Client
341
+
342
+ You can override the `httpx` client to customize it for your use-case. Some common use-cases include support for proxies
343
+ and transports.
344
+
345
+ ```python
346
+ import httpx
347
+ from auth0.management import Auth0
348
+
349
+ client = Auth0(
350
+ base_url="https://YOUR_TENANT.auth0.com/api/v2",
351
+ token="YOUR_TOKEN",
352
+ httpx_client=httpx.Client(
353
+ proxy="http://my.test.proxy.example.com",
354
+ transport=httpx.HTTPTransport(local_address="0.0.0.0"),
355
+ ),
356
+ )
357
+ ```
358
+
359
+ ## Feedback
360
+
361
+ ### Contributing
362
+
363
+ We appreciate feedback and contribution to this repo! Before you get started, please see the following:
364
+
365
+ - [Auth0's general contribution guidelines](https://github.com/auth0/open-source-template/blob/master/GENERAL-CONTRIBUTING.md)
366
+ - [Auth0's code of conduct guidelines](https://github.com/auth0/open-source-template/blob/master/CODE-OF-CONDUCT.md)
367
+
368
+ ### Raise an issue
369
+
370
+ To provide feedback or report a bug, please [raise an issue on our issue tracker](https://github.com/auth0/auth0-python/issues).
371
+
372
+ ### Vulnerability Reporting
373
+
374
+ Please do not report security vulnerabilities on the public GitHub issue tracker. The [Responsible Disclosure Program](https://auth0.com/responsible-disclosure-policy) details the procedure for disclosing security issues.
375
+
376
+ ---
377
+
378
+ <p align="center">
379
+ <picture>
380
+ <source media="(prefers-color-scheme: light)" srcset="https://cdn.auth0.com/website/sdks/logos/auth0_light_mode.png" width="150">
381
+ <source media="(prefers-color-scheme: dark)" srcset="https://cdn.auth0.com/website/sdks/logos/auth0_dark_mode.png" width="150">
382
+ <img alt="Auth0 Logo" src="https://cdn.auth0.com/website/sdks/logos/auth0_light_mode.png" width="150">
383
+ </picture>
384
+ </p>
385
+ <p align="center">Auth0 is an easy to implement, adaptable authentication and authorization platform. To learn more checkout <a href="https://auth0.com/why-auth0">Why Auth0</a></p>
386
+ <p align="center">
387
+ This project is licensed under the MIT license. See the <a href="https://github.com/auth0/auth0-python/blob/master/LICENSE"> LICENSE</a> file for more info
388
+ </p>
389
+