auth0 6.0.0 → 6.1.0
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.
- checksums.yaml +4 -4
- data/.fern/metadata.json +5 -6
- data/.fern/replay.lock +7 -1
- data/.version +1 -1
- data/CHANGELOG.md +6 -0
- data/examples/ruby-api/Gemfile.lock +1 -1
- data/lib/auth0/clients/client.rb +2 -2
- data/lib/auth0/connection_profiles/types/create_connection_profile_request_content.rb +2 -0
- data/lib/auth0/connection_profiles/types/update_connection_profile_request_content.rb +2 -0
- data/lib/auth0/connections/client.rb +2 -1
- data/lib/auth0/keys/client.rb +5 -0
- data/lib/auth0/keys/network_acls/client.rb +149 -0
- data/lib/auth0/keys/network_acls/types/create_keys_network_acls_request_content.rb +17 -0
- data/lib/auth0/types/client_my_organization_configuration_third_party_client_access_allowed_values_enum.rb +12 -0
- data/lib/auth0/types/client_my_organization_configuration_third_party_client_access_default_value_enum.rb +11 -0
- data/lib/auth0/types/client_my_organization_patch_configuration.rb +2 -0
- data/lib/auth0/types/client_my_organization_post_configuration.rb +2 -0
- data/lib/auth0/types/client_my_organization_response_configuration.rb +2 -0
- data/lib/auth0/types/client_my_organization_third_party_client_access_configuration.rb +12 -0
- data/lib/auth0/types/connection_identity_provider_enum.rb +1 -0
- data/lib/auth0/types/connection_options_common_oidc.rb +2 -0
- data/lib/auth0/types/connection_options_oidc.rb +2 -0
- data/lib/auth0/types/connection_options_okta.rb +2 -0
- data/lib/auth0/types/connection_profile.rb +2 -0
- data/lib/auth0/types/connection_profile_cross_app_access_resource_app.rb +10 -0
- data/lib/auth0/types/connection_profile_cross_app_access_resource_app_status.rb +12 -0
- data/lib/auth0/types/connection_profile_cross_app_access_resource_app_status_allowed_values_enum.rb +23 -0
- data/lib/auth0/types/connection_profile_cross_app_access_resource_app_status_default_value_enum.rb +12 -0
- data/lib/auth0/types/connection_profile_cross_app_access_resource_app_status_value_enum.rb +12 -0
- data/lib/auth0/types/connection_properties_options.rb +2 -0
- data/lib/auth0/types/connection_strategy_enum.rb +1 -0
- data/lib/auth0/types/connection_use_oauth_spec_scope.rb +23 -0
- data/lib/auth0/types/create_connection_profile_response_content.rb +2 -0
- data/lib/auth0/types/create_keys_network_acls_response_content.rb +19 -0
- data/lib/auth0/types/get_all_keys_network_acls_response_content.rb +9 -0
- data/lib/auth0/types/get_connection_profile_response_content.rb +2 -0
- data/lib/auth0/types/network_acl_key.rb +19 -0
- data/lib/auth0/types/network_acl_key_algorithm_enum.rb +11 -0
- data/lib/auth0/types/network_acl_rule.rb +2 -0
- data/lib/auth0/types/network_acl_rule_match_all_enum.rb +23 -0
- data/lib/auth0/types/oauth_scope.rb +3 -0
- data/lib/auth0/types/update_connection_options.rb +2 -0
- data/lib/auth0/types/update_connection_profile_response_content.rb +2 -0
- data/lib/auth0/version.rb +1 -1
- data/lib/auth0.rb +18 -2
- data/wiremock/wiremock-mappings.json +147 -12
- metadata +18 -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.
|
|
4
|
+
version: 6.1.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Auth0
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2026-08-
|
|
11
|
+
date: 2026-08-19 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rest-client
|
|
@@ -377,6 +377,8 @@ files:
|
|
|
377
377
|
- lib/auth0/keys/encryption/types/create_encryption_key_request_content.rb
|
|
378
378
|
- lib/auth0/keys/encryption/types/import_encryption_key_request_content.rb
|
|
379
379
|
- lib/auth0/keys/encryption/types/list_encryption_keys_request_parameters.rb
|
|
380
|
+
- lib/auth0/keys/network_acls/client.rb
|
|
381
|
+
- lib/auth0/keys/network_acls/types/create_keys_network_acls_request_content.rb
|
|
380
382
|
- lib/auth0/keys/signing/client.rb
|
|
381
383
|
- lib/auth0/log_streams/client.rb
|
|
382
384
|
- lib/auth0/log_streams/types/update_log_stream_request_content.rb
|
|
@@ -727,10 +729,13 @@ files:
|
|
|
727
729
|
- lib/auth0/types/client_mobile_android.rb
|
|
728
730
|
- lib/auth0/types/client_mobilei_os.rb
|
|
729
731
|
- lib/auth0/types/client_my_organization_configuration_allowed_strategies_enum.rb
|
|
732
|
+
- lib/auth0/types/client_my_organization_configuration_third_party_client_access_allowed_values_enum.rb
|
|
733
|
+
- lib/auth0/types/client_my_organization_configuration_third_party_client_access_default_value_enum.rb
|
|
730
734
|
- lib/auth0/types/client_my_organization_deletion_behavior_enum.rb
|
|
731
735
|
- lib/auth0/types/client_my_organization_patch_configuration.rb
|
|
732
736
|
- lib/auth0/types/client_my_organization_post_configuration.rb
|
|
733
737
|
- lib/auth0/types/client_my_organization_response_configuration.rb
|
|
738
|
+
- lib/auth0/types/client_my_organization_third_party_client_access_configuration.rb
|
|
734
739
|
- lib/auth0/types/client_oidc_backchannel_logout_initiators.rb
|
|
735
740
|
- lib/auth0/types/client_oidc_backchannel_logout_initiators_enum.rb
|
|
736
741
|
- lib/auth0/types/client_oidc_backchannel_logout_initiators_mode_enum.rb
|
|
@@ -1045,6 +1050,11 @@ files:
|
|
|
1045
1050
|
- lib/auth0/types/connection_profile.rb
|
|
1046
1051
|
- lib/auth0/types/connection_profile_bitbucket.rb
|
|
1047
1052
|
- lib/auth0/types/connection_profile_config.rb
|
|
1053
|
+
- lib/auth0/types/connection_profile_cross_app_access_resource_app.rb
|
|
1054
|
+
- lib/auth0/types/connection_profile_cross_app_access_resource_app_status.rb
|
|
1055
|
+
- lib/auth0/types/connection_profile_cross_app_access_resource_app_status_allowed_values_enum.rb
|
|
1056
|
+
- lib/auth0/types/connection_profile_cross_app_access_resource_app_status_default_value_enum.rb
|
|
1057
|
+
- lib/auth0/types/connection_profile_cross_app_access_resource_app_status_value_enum.rb
|
|
1048
1058
|
- lib/auth0/types/connection_profile_enabled_features.rb
|
|
1049
1059
|
- lib/auth0/types/connection_profile_id.rb
|
|
1050
1060
|
- lib/auth0/types/connection_profile_name.rb
|
|
@@ -1269,6 +1279,7 @@ files:
|
|
|
1269
1279
|
- lib/auth0/types/connection_upstream_params_facebook.rb
|
|
1270
1280
|
- lib/auth0/types/connection_upstream_value.rb
|
|
1271
1281
|
- lib/auth0/types/connection_use_common_endpoint_azure_ad.rb
|
|
1282
|
+
- lib/auth0/types/connection_use_oauth_spec_scope.rb
|
|
1272
1283
|
- lib/auth0/types/connection_user_authorization_urlo_auth1.rb
|
|
1273
1284
|
- lib/auth0/types/connection_user_id_attribute_saml.rb
|
|
1274
1285
|
- lib/auth0/types/connection_userid_attribute_azure_ad.rb
|
|
@@ -1505,6 +1516,7 @@ files:
|
|
|
1505
1516
|
- lib/auth0/types/create_hook_secret_request_content.rb
|
|
1506
1517
|
- lib/auth0/types/create_identity_assertion_authorization_grant.rb
|
|
1507
1518
|
- lib/auth0/types/create_import_users_response_content.rb
|
|
1519
|
+
- lib/auth0/types/create_keys_network_acls_response_content.rb
|
|
1508
1520
|
- lib/auth0/types/create_log_stream_datadog_request_body.rb
|
|
1509
1521
|
- lib/auth0/types/create_log_stream_event_bridge_request_body.rb
|
|
1510
1522
|
- lib/auth0/types/create_log_stream_event_grid_request_body.rb
|
|
@@ -2932,6 +2944,7 @@ files:
|
|
|
2932
2944
|
- lib/auth0/types/get_action_version_response_content.rb
|
|
2933
2945
|
- lib/auth0/types/get_active_users_count_stats_response_content.rb
|
|
2934
2946
|
- lib/auth0/types/get_acul_response_content.rb
|
|
2947
|
+
- lib/auth0/types/get_all_keys_network_acls_response_content.rb
|
|
2935
2948
|
- lib/auth0/types/get_attack_protection_captcha_response_content.rb
|
|
2936
2949
|
- lib/auth0/types/get_bot_detection_settings_response_content.rb
|
|
2937
2950
|
- lib/auth0/types/get_branding_default_theme_response_content.rb
|
|
@@ -3202,12 +3215,15 @@ files:
|
|
|
3202
3215
|
- lib/auth0/types/network_acl_action_block_enum.rb
|
|
3203
3216
|
- lib/auth0/types/network_acl_action_log_enum.rb
|
|
3204
3217
|
- lib/auth0/types/network_acl_action_redirect_enum.rb
|
|
3218
|
+
- lib/auth0/types/network_acl_key.rb
|
|
3219
|
+
- lib/auth0/types/network_acl_key_algorithm_enum.rb
|
|
3205
3220
|
- lib/auth0/types/network_acl_match.rb
|
|
3206
3221
|
- lib/auth0/types/network_acl_match_connecting_ipv4cidr.rb
|
|
3207
3222
|
- lib/auth0/types/network_acl_match_connecting_ipv6cidr.rb
|
|
3208
3223
|
- lib/auth0/types/network_acl_match_ipv4cidr.rb
|
|
3209
3224
|
- lib/auth0/types/network_acl_match_ipv6cidr.rb
|
|
3210
3225
|
- lib/auth0/types/network_acl_rule.rb
|
|
3226
|
+
- lib/auth0/types/network_acl_rule_match_all_enum.rb
|
|
3211
3227
|
- lib/auth0/types/network_acl_rule_scope_enum.rb
|
|
3212
3228
|
- lib/auth0/types/network_acls_response_content.rb
|
|
3213
3229
|
- lib/auth0/types/not_found_error_body.rb
|