auth0 6.0.0.beta.4 → 6.0.0.beta.5

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 (100) hide show
  1. checksums.yaml +4 -4
  2. data/.fern/metadata.json +1 -1
  3. data/.fern/replay.lock +7 -1
  4. data/.version +1 -1
  5. data/CHANGELOG.md +6 -0
  6. data/lib/auth0/agents/client.rb +201 -0
  7. data/lib/auth0/agents/types/create_agent_request_content.rb +17 -0
  8. data/lib/auth0/agents/types/list_agents_request_parameters.rb +13 -0
  9. data/lib/auth0/agents/types/patch_agent_request_parameters.rb +15 -0
  10. data/lib/auth0/client.rb +5 -0
  11. data/lib/auth0/client_grants/client.rb +2 -0
  12. data/lib/auth0/client_grants/organizations/client.rb +2 -0
  13. data/lib/auth0/client_grants/organizations/types/list_client_grant_organizations_request_parameters.rb +2 -0
  14. data/lib/auth0/client_grants/types/list_client_grants_request_parameters.rb +2 -0
  15. data/lib/auth0/connections/client.rb +2 -0
  16. data/lib/auth0/connections/directory_provisioning/client.rb +76 -0
  17. data/lib/auth0/connections/directory_provisioning/types/add_synchronized_groups_request_content.rb +15 -0
  18. data/lib/auth0/connections/directory_provisioning/types/delete_synchronized_groups_request_content.rb +15 -0
  19. data/lib/auth0/connections/directory_provisioning/types/list_synchronized_groups_request_parameters.rb +2 -0
  20. data/lib/auth0/connections/types/list_connections_query_parameters.rb +2 -0
  21. data/lib/auth0/event_streams/deliveries/client.rb +27 -17
  22. data/lib/auth0/flows/executions/client.rb +2 -0
  23. data/lib/auth0/flows/executions/types/list_flow_executions_request_parameters.rb +2 -0
  24. data/lib/auth0/groups/client.rb +2 -0
  25. data/lib/auth0/groups/types/list_groups_request_parameters.rb +2 -0
  26. data/lib/auth0/organizations/client.rb +9 -0
  27. data/lib/auth0/organizations/clients/client.rb +223 -0
  28. data/lib/auth0/organizations/clients/types/create_organization_clients_request_content.rb +15 -0
  29. data/lib/auth0/organizations/clients/types/delete_organization_clients_request_content.rb +15 -0
  30. data/lib/auth0/organizations/clients/types/list_organization_clients_request_parameters.rb +17 -0
  31. data/lib/auth0/organizations/clients/types/update_organization_client_request_content.rb +17 -0
  32. data/lib/auth0/organizations/members/client.rb +5 -1
  33. data/lib/auth0/organizations/members/roles/client.rb +3 -0
  34. data/lib/auth0/organizations/members/types/list_organization_members_request_parameters.rb +2 -0
  35. data/lib/auth0/organizations/roles/client.rb +5 -0
  36. data/lib/auth0/organizations/roles/groups/client.rb +68 -0
  37. data/lib/auth0/organizations/roles/groups/types/list_organization_role_groups_request_parameters.rb +21 -0
  38. data/lib/auth0/organizations/roles/members/client.rb +6 -0
  39. data/lib/auth0/organizations/types/create_organization_request_content.rb +2 -0
  40. data/lib/auth0/organizations/types/list_organizations_request_parameters.rb +4 -0
  41. data/lib/auth0/organizations/types/update_organization_request_content.rb +2 -0
  42. data/lib/auth0/roles/client.rb +4 -0
  43. data/lib/auth0/roles/types/create_role_request_content.rb +4 -0
  44. data/lib/auth0/roles/types/list_roles_request_parameters.rb +4 -0
  45. data/lib/auth0/roles/users/client.rb +5 -0
  46. data/lib/auth0/roles/users/types/list_role_users_request_parameters.rb +2 -0
  47. data/lib/auth0/types/acul_context_enum.rb +1 -0
  48. data/lib/auth0/types/agent_metadata.rb +23 -0
  49. data/lib/auth0/types/agent_response_content.rb +19 -0
  50. data/lib/auth0/types/conflict_schema.rb +14 -0
  51. data/lib/auth0/types/conflict_schema_error.rb +11 -0
  52. data/lib/auth0/types/connection_connected_accounts_purpose.rb +2 -0
  53. data/lib/auth0/types/connection_connected_accounts_purpose_xaa.rb +2 -0
  54. data/lib/auth0/types/create_organization_client_request_item.rb +11 -0
  55. data/lib/auth0/types/create_organization_clients_response_content.rb +23 -0
  56. data/lib/auth0/types/create_organization_response_content.rb +4 -0
  57. data/lib/auth0/types/create_role_response_content.rb +4 -0
  58. data/lib/auth0/types/event_stream_cloud_event.rb +1 -1
  59. data/lib/auth0/types/event_stream_cloud_event_data.rb +23 -0
  60. data/lib/auth0/types/event_stream_delivery_attempt.rb +2 -0
  61. data/lib/auth0/types/get_organization_by_name_response_content.rb +4 -0
  62. data/lib/auth0/types/get_organization_client_response_content.rb +13 -0
  63. data/lib/auth0/types/get_organization_response_content.rb +4 -0
  64. data/lib/auth0/types/get_role_response_content.rb +4 -0
  65. data/lib/auth0/types/guardian_factor.rb +2 -0
  66. data/lib/auth0/types/guardian_factor_settings.rb +12 -0
  67. data/lib/auth0/types/list_agents_response_content.rb +11 -0
  68. data/lib/auth0/types/list_event_stream_deliveries_response_content.rb +11 -0
  69. data/lib/auth0/types/list_organization_clients_response_content.rb +11 -0
  70. data/lib/auth0/types/list_organization_role_groups_response_content.rb +12 -0
  71. data/lib/auth0/types/not_found_schema.rb +14 -0
  72. data/lib/auth0/types/not_found_schema_error.rb +11 -0
  73. data/lib/auth0/types/oauth_scope.rb +8 -0
  74. data/lib/auth0/types/organization.rb +4 -0
  75. data/lib/auth0/types/organization_client.rb +13 -0
  76. data/lib/auth0/types/organization_client_association.rb +11 -0
  77. data/lib/auth0/types/organization_client_metadata.rb +20 -0
  78. data/lib/auth0/types/organization_client_metadata_organization_usage_enum.rb +13 -0
  79. data/lib/auth0/types/role.rb +4 -0
  80. data/lib/auth0/types/role_group.rb +26 -0
  81. data/lib/auth0/types/role_type_enum.rb +12 -0
  82. data/lib/auth0/types/self_service_profile_sso_ticket_google_workspace_config.rb +2 -0
  83. data/lib/auth0/types/synchronized_group_payload.rb +6 -0
  84. data/lib/auth0/types/synchronized_group_selection_id.rb +9 -0
  85. data/lib/auth0/types/update_organization_client_response_content.rb +13 -0
  86. data/lib/auth0/types/update_organization_response_content.rb +4 -0
  87. data/lib/auth0/types/update_role_response_content.rb +4 -0
  88. data/lib/auth0/types/user_effective_permission_role_source_response_content.rb +4 -0
  89. data/lib/auth0/users/groups/client.rb +2 -0
  90. data/lib/auth0/users/groups/types/get_user_groups_request_parameters.rb +2 -0
  91. data/lib/auth0/users/permissions/client.rb +3 -0
  92. data/lib/auth0/users/refresh_token/client.rb +2 -0
  93. data/lib/auth0/users/refresh_token/types/list_refresh_tokens_request_parameters.rb +2 -0
  94. data/lib/auth0/users/roles/client.rb +3 -0
  95. data/lib/auth0/users/sessions/client.rb +2 -0
  96. data/lib/auth0/users/sessions/types/list_user_sessions_request_parameters.rb +2 -0
  97. data/lib/auth0/version.rb +1 -1
  98. data/lib/auth0.rb +38 -2
  99. data/wiremock/wiremock-mappings.json +592 -55
  100. metadata +38 -2
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: auth0
3
3
  version: !ruby/object:Gem::Version
4
- version: 6.0.0.beta.4
4
+ version: 6.0.0.beta.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Auth0
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2026-07-22 00:00:00.000000000 Z
11
+ date: 2026-08-05 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rest-client
@@ -149,6 +149,10 @@ files:
149
149
  - lib/auth0/actions/types/update_action_request_content.rb
150
150
  - lib/auth0/actions/versions/client.rb
151
151
  - lib/auth0/actions/versions/types/list_action_versions_request_parameters.rb
152
+ - lib/auth0/agents/client.rb
153
+ - lib/auth0/agents/types/create_agent_request_content.rb
154
+ - lib/auth0/agents/types/list_agents_request_parameters.rb
155
+ - lib/auth0/agents/types/patch_agent_request_parameters.rb
152
156
  - lib/auth0/algorithm.rb
153
157
  - lib/auth0/anomaly/blocks/client.rb
154
158
  - lib/auth0/anomaly/client.rb
@@ -213,6 +217,8 @@ files:
213
217
  - lib/auth0/connections/clients/types/get_connection_enabled_clients_request_parameters.rb
214
218
  - lib/auth0/connections/directory_provisioning/client.rb
215
219
  - lib/auth0/connections/directory_provisioning/synchronizations/client.rb
220
+ - lib/auth0/connections/directory_provisioning/types/add_synchronized_groups_request_content.rb
221
+ - lib/auth0/connections/directory_provisioning/types/delete_synchronized_groups_request_content.rb
216
222
  - lib/auth0/connections/directory_provisioning/types/list_directory_provisionings_request_parameters.rb
217
223
  - lib/auth0/connections/directory_provisioning/types/list_synchronized_groups_request_parameters.rb
218
224
  - lib/auth0/connections/directory_provisioning/types/replace_synchronized_groups_request_content.rb
@@ -388,6 +394,11 @@ files:
388
394
  - lib/auth0/organizations/client_grants/client.rb
389
395
  - lib/auth0/organizations/client_grants/types/associate_organization_client_grant_request_content.rb
390
396
  - lib/auth0/organizations/client_grants/types/list_organization_client_grants_request_parameters.rb
397
+ - lib/auth0/organizations/clients/client.rb
398
+ - lib/auth0/organizations/clients/types/create_organization_clients_request_content.rb
399
+ - lib/auth0/organizations/clients/types/delete_organization_clients_request_content.rb
400
+ - lib/auth0/organizations/clients/types/list_organization_clients_request_parameters.rb
401
+ - lib/auth0/organizations/clients/types/update_organization_client_request_content.rb
391
402
  - lib/auth0/organizations/connections/client.rb
392
403
  - lib/auth0/organizations/connections/types/create_organization_all_connection_request_parameters.rb
393
404
  - lib/auth0/organizations/connections/types/list_organization_all_connections_request_parameters.rb
@@ -424,6 +435,8 @@ files:
424
435
  - lib/auth0/organizations/members/types/delete_organization_members_request_content.rb
425
436
  - lib/auth0/organizations/members/types/list_organization_members_request_parameters.rb
426
437
  - lib/auth0/organizations/roles/client.rb
438
+ - lib/auth0/organizations/roles/groups/client.rb
439
+ - lib/auth0/organizations/roles/groups/types/list_organization_role_groups_request_parameters.rb
427
440
  - lib/auth0/organizations/roles/members/client.rb
428
441
  - lib/auth0/organizations/roles/members/types/list_organization_role_members_request_parameters.rb
429
442
  - lib/auth0/organizations/types/create_organization_request_content.rb
@@ -554,6 +567,8 @@ files:
554
567
  - lib/auth0/types/acul_organization_metadata.rb
555
568
  - lib/auth0/types/acul_rendering_mode_enum.rb
556
569
  - lib/auth0/types/add_organization_connection_response_content.rb
570
+ - lib/auth0/types/agent_metadata.rb
571
+ - lib/auth0/types/agent_response_content.rb
557
572
  - lib/auth0/types/anomaly_ip_format.rb
558
573
  - lib/auth0/types/app_metadata.rb
559
574
  - lib/auth0/types/assessors_type_enum.rb
@@ -740,6 +755,8 @@ files:
740
755
  - lib/auth0/types/client_token_exchange_type_enum.rb
741
756
  - lib/auth0/types/client_token_vault_privileged_access_with_credential_id.rb
742
757
  - lib/auth0/types/client_token_vault_privileged_access_with_public_key.rb
758
+ - lib/auth0/types/conflict_schema.rb
759
+ - lib/auth0/types/conflict_schema_error.rb
743
760
  - lib/auth0/types/connected_account.rb
744
761
  - lib/auth0/types/connected_account_access_type_enum.rb
745
762
  - lib/auth0/types/connection_access_token_urlo_auth1.rb
@@ -1493,6 +1510,8 @@ files:
1493
1510
  - lib/auth0/types/create_log_stream_splunk_request_body.rb
1494
1511
  - lib/auth0/types/create_log_stream_sumo_request_body.rb
1495
1512
  - lib/auth0/types/create_organization_all_connection_response_content.rb
1513
+ - lib/auth0/types/create_organization_client_request_item.rb
1514
+ - lib/auth0/types/create_organization_clients_response_content.rb
1496
1515
  - lib/auth0/types/create_organization_discovery_domain_response_content.rb
1497
1516
  - lib/auth0/types/create_organization_invitation_response_content.rb
1498
1517
  - lib/auth0/types/create_organization_response_content.rb
@@ -1980,6 +1999,7 @@ files:
1980
1999
  - lib/auth0/types/event_stream_cloud_event_context_request.rb
1981
2000
  - lib/auth0/types/event_stream_cloud_event_context_request_geo.rb
1982
2001
  - lib/auth0/types/event_stream_cloud_event_context_tenant.rb
2002
+ - lib/auth0/types/event_stream_cloud_event_data.rb
1983
2003
  - lib/auth0/types/event_stream_cloud_event_error_code_enum.rb
1984
2004
  - lib/auth0/types/event_stream_cloud_event_error_detail.rb
1985
2005
  - lib/auth0/types/event_stream_cloud_event_error_message.rb
@@ -2967,6 +2987,7 @@ files:
2967
2987
  - lib/auth0/types/get_network_acls_response_content.rb
2968
2988
  - lib/auth0/types/get_organization_all_connection_response_content.rb
2969
2989
  - lib/auth0/types/get_organization_by_name_response_content.rb
2990
+ - lib/auth0/types/get_organization_client_response_content.rb
2970
2991
  - lib/auth0/types/get_organization_connection_response_content.rb
2971
2992
  - lib/auth0/types/get_organization_discovery_domain_by_name_response_content.rb
2972
2993
  - lib/auth0/types/get_organization_discovery_domain_response_content.rb
@@ -3012,6 +3033,7 @@ files:
3012
3033
  - lib/auth0/types/guardian_factor.rb
3013
3034
  - lib/auth0/types/guardian_factor_name_enum.rb
3014
3035
  - lib/auth0/types/guardian_factor_phone_factor_message_type_enum.rb
3036
+ - lib/auth0/types/guardian_factor_settings.rb
3015
3037
  - lib/auth0/types/guardian_factors_provider_push_notification_provider_data_enum.rb
3016
3038
  - lib/auth0/types/guardian_factors_provider_sms_provider_enum.rb
3017
3039
  - lib/auth0/types/hook.rb
@@ -3038,6 +3060,7 @@ files:
3038
3060
  - lib/auth0/types/list_actions_paginated_response_content.rb
3039
3061
  - lib/auth0/types/list_aculs_offset_paginated_response_content.rb
3040
3062
  - lib/auth0/types/list_aculs_response_content_item.rb
3063
+ - lib/auth0/types/list_agents_response_content.rb
3041
3064
  - lib/auth0/types/list_branding_phone_providers_response_content.rb
3042
3065
  - lib/auth0/types/list_client_connections_response_content.rb
3043
3066
  - lib/auth0/types/list_client_grant_organizations_paginated_response_content.rb
@@ -3050,6 +3073,7 @@ files:
3050
3073
  - lib/auth0/types/list_device_credentials_offset_paginated_response_content.rb
3051
3074
  - lib/auth0/types/list_directory_provisionings_response_content.rb
3052
3075
  - lib/auth0/types/list_encryption_key_offset_paginated_response_content.rb
3076
+ - lib/auth0/types/list_event_stream_deliveries_response_content.rb
3053
3077
  - lib/auth0/types/list_event_streams_response_content.rb
3054
3078
  - lib/auth0/types/list_flow_executions_paginated_response_content.rb
3055
3079
  - lib/auth0/types/list_flows_offset_paginated_response_content.rb
@@ -3064,6 +3088,7 @@ files:
3064
3088
  - lib/auth0/types/list_network_acls_offset_paginated_response_content.rb
3065
3089
  - lib/auth0/types/list_organization_all_connections_offset_paginated_response_content.rb
3066
3090
  - lib/auth0/types/list_organization_client_grants_offset_paginated_response_content.rb
3091
+ - lib/auth0/types/list_organization_clients_response_content.rb
3067
3092
  - lib/auth0/types/list_organization_connections_offset_paginated_response_content.rb
3068
3093
  - lib/auth0/types/list_organization_discovery_domains_response_content.rb
3069
3094
  - lib/auth0/types/list_organization_group_roles_response_content.rb
@@ -3073,6 +3098,7 @@ files:
3073
3098
  - lib/auth0/types/list_organization_member_role_source_groups_response_content.rb
3074
3099
  - lib/auth0/types/list_organization_member_roles_offset_paginated_response_content.rb
3075
3100
  - lib/auth0/types/list_organization_members_paginated_response_content.rb
3101
+ - lib/auth0/types/list_organization_role_groups_response_content.rb
3076
3102
  - lib/auth0/types/list_organization_role_members_response_content.rb
3077
3103
  - lib/auth0/types/list_organizations_paginated_response_content.rb
3078
3104
  - lib/auth0/types/list_phone_templates_response_content.rb
@@ -3180,6 +3206,8 @@ files:
3180
3206
  - lib/auth0/types/network_acls_response_content.rb
3181
3207
  - lib/auth0/types/not_found_error_body.rb
3182
3208
  - lib/auth0/types/not_found_error_body_error.rb
3209
+ - lib/auth0/types/not_found_schema.rb
3210
+ - lib/auth0/types/not_found_schema_error.rb
3183
3211
  - lib/auth0/types/oauth_scope.rb
3184
3212
  - lib/auth0/types/organization.rb
3185
3213
  - lib/auth0/types/organization_access_level_enum.rb
@@ -3187,7 +3215,11 @@ files:
3187
3215
  - lib/auth0/types/organization_all_connection_post.rb
3188
3216
  - lib/auth0/types/organization_branding.rb
3189
3217
  - lib/auth0/types/organization_branding_colors.rb
3218
+ - lib/auth0/types/organization_client.rb
3219
+ - lib/auth0/types/organization_client_association.rb
3190
3220
  - lib/auth0/types/organization_client_grant.rb
3221
+ - lib/auth0/types/organization_client_metadata.rb
3222
+ - lib/auth0/types/organization_client_metadata_organization_usage_enum.rb
3191
3223
  - lib/auth0/types/organization_connection.rb
3192
3224
  - lib/auth0/types/organization_connection_information.rb
3193
3225
  - lib/auth0/types/organization_discovery_domain.rb
@@ -3292,7 +3324,9 @@ files:
3292
3324
  - lib/auth0/types/resource_server_verification_key_pem_certificate.rb
3293
3325
  - lib/auth0/types/revoked_signing_keys_response_content.rb
3294
3326
  - lib/auth0/types/role.rb
3327
+ - lib/auth0/types/role_group.rb
3295
3328
  - lib/auth0/types/role_member.rb
3329
+ - lib/auth0/types/role_type_enum.rb
3296
3330
  - lib/auth0/types/role_user.rb
3297
3331
  - lib/auth0/types/rollback_action_module_response_content.rb
3298
3332
  - lib/auth0/types/rotate_client_secret_response_content.rb
@@ -3386,6 +3420,7 @@ files:
3386
3420
  - lib/auth0/types/suspicious_ip_throttling_stage.rb
3387
3421
  - lib/auth0/types/synchronize_groups_enum.rb
3388
3422
  - lib/auth0/types/synchronized_group_payload.rb
3423
+ - lib/auth0/types/synchronized_group_selection_id.rb
3389
3424
  - lib/auth0/types/tenant_oidc_logout_settings.rb
3390
3425
  - lib/auth0/types/tenant_settings_country_codes.rb
3391
3426
  - lib/auth0/types/tenant_settings_country_codes_mode.rb
@@ -3527,6 +3562,7 @@ files:
3527
3562
  - lib/auth0/types/update_log_stream_response_content.rb
3528
3563
  - lib/auth0/types/update_network_acl_response_content.rb
3529
3564
  - lib/auth0/types/update_organization_all_connection_response_content.rb
3565
+ - lib/auth0/types/update_organization_client_response_content.rb
3530
3566
  - lib/auth0/types/update_organization_connection_response_content.rb
3531
3567
  - lib/auth0/types/update_organization_discovery_domain_response_content.rb
3532
3568
  - lib/auth0/types/update_organization_response_content.rb