auth0 5.8.1 → 5.10.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.
Files changed (35) hide show
  1. checksums.yaml +4 -4
  2. data/.bundle/config +2 -1
  3. data/.circleci/config.yml +6 -4
  4. data/.devcontainer/Dockerfile +19 -0
  5. data/.devcontainer/devcontainer.json +37 -0
  6. data/CHANGELOG.md +24 -0
  7. data/Gemfile +2 -2
  8. data/Gemfile.lock +52 -80
  9. data/auth0.gemspec +2 -2
  10. data/examples/ruby-api/Gemfile +3 -2
  11. data/examples/ruby-api/Gemfile.lock +32 -0
  12. data/examples/ruby-api/README.md +2 -2
  13. data/lib/auth0/api/authentication_endpoints.rb +0 -2
  14. data/lib/auth0/api/v2/connections.rb +6 -3
  15. data/lib/auth0/api/v2/device_credentials.rb +1 -1
  16. data/lib/auth0/api/v2/jobs.rb +15 -4
  17. data/lib/auth0/api/v2/organizations.rb +1 -1
  18. data/lib/auth0/api/v2/users.rb +10 -1
  19. data/lib/auth0/mixins/httpproxy.rb +11 -12
  20. data/lib/auth0/mixins/token_management.rb +1 -1
  21. data/lib/auth0/version.rb +1 -1
  22. data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Clients/_patch_client/should_update_the_client_with_the_correct_attributes.yml +2 -1
  23. data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Connections/_update_connection/should_update_the_connection.yml +1 -1
  24. data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Rules/_update_rule/should_update_the_disabled_rule_to_be_enabled.yml +1 -1
  25. data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Tenants/_update_tenant_settings/should_revert_the_tenant_name.yml +1 -1
  26. data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Tenants/_update_tenant_settings/should_update_the_tenant_settings_with_a_new_tenant_name.yml +1 -1
  27. data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Users/_add_user_roles/should_add_a_Role_to_a_User_successfully.yml +1 -1
  28. data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Users/_patch_user/should_patch_the_User_successfully.yml +1 -1
  29. data/spec/lib/auth0/api/v2/connections_spec.rb +24 -4
  30. data/spec/lib/auth0/api/v2/jobs_spec.rb +18 -0
  31. data/spec/lib/auth0/api/v2/users_spec.rb +15 -0
  32. data/spec/lib/auth0/mixins/httpproxy_spec.rb +53 -17
  33. data/spec/lib/auth0/mixins/token_management_spec.rb +2 -7
  34. data/spec/spec_helper.rb +6 -2
  35. metadata +14 -241
metadata CHANGED
@@ -1,17 +1,17 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: auth0
3
3
  version: !ruby/object:Gem::Version
4
- version: 5.8.1
4
+ version: 5.10.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Auth0
8
8
  - Jose Romaniello
9
9
  - Ivan Petroe
10
10
  - Patrik Ragnarsson
11
- autorequire:
11
+ autorequire:
12
12
  bindir: bin
13
13
  cert_chain: []
14
- date: 2022-06-30 00:00:00.000000000 Z
14
+ date: 2022-10-10 00:00:00.000000000 Z
15
15
  dependencies:
16
16
  - !ruby/object:Gem::Dependency
17
17
  name: rest-client
@@ -33,14 +33,14 @@ dependencies:
33
33
  requirements:
34
34
  - - "~>"
35
35
  - !ruby/object:Gem::Version
36
- version: 2.3.0
36
+ version: '2.5'
37
37
  type: :runtime
38
38
  prerelease: false
39
39
  version_requirements: !ruby/object:Gem::Requirement
40
40
  requirements:
41
41
  - - "~>"
42
42
  - !ruby/object:Gem::Version
43
- version: 2.3.0
43
+ version: '2.5'
44
44
  - !ruby/object:Gem::Dependency
45
45
  name: zache
46
46
  requirement: !ruby/object:Gem::Requirement
@@ -125,20 +125,6 @@ dependencies:
125
125
  - - "~>"
126
126
  - !ruby/object:Gem::Version
127
127
  version: '2.0'
128
- - !ruby/object:Gem::Dependency
129
- name: guard-rspec
130
- requirement: !ruby/object:Gem::Requirement
131
- requirements:
132
- - - "~>"
133
- - !ruby/object:Gem::Version
134
- version: '4.5'
135
- type: :development
136
- prerelease: false
137
- version_requirements: !ruby/object:Gem::Requirement
138
- requirements:
139
- - - "~>"
140
- - !ruby/object:Gem::Version
141
- version: '4.5'
142
128
  - !ruby/object:Gem::Dependency
143
129
  name: dotenv-rails
144
130
  requirement: !ruby/object:Gem::Requirement
@@ -187,14 +173,14 @@ dependencies:
187
173
  requirements:
188
174
  - - "~>"
189
175
  - !ruby/object:Gem::Version
190
- version: '3.5'
176
+ version: '3.11'
191
177
  type: :development
192
178
  prerelease: false
193
179
  version_requirements: !ruby/object:Gem::Requirement
194
180
  requirements:
195
181
  - - "~>"
196
182
  - !ruby/object:Gem::Version
197
- version: '3.5'
183
+ version: '3.11'
198
184
  - !ruby/object:Gem::Dependency
199
185
  name: rack-test
200
186
  requirement: !ruby/object:Gem::Requirement
@@ -274,6 +260,8 @@ extra_rdoc_files: []
274
260
  files:
275
261
  - ".bundle/config"
276
262
  - ".circleci/config.yml"
263
+ - ".devcontainer/Dockerfile"
264
+ - ".devcontainer/devcontainer.json"
277
265
  - ".env.example"
278
266
  - ".gemrelease"
279
267
  - ".github/CODEOWNERS"
@@ -305,6 +293,7 @@ files:
305
293
  - examples/ruby-api/.env.example
306
294
  - examples/ruby-api/.gitignore
307
295
  - examples/ruby-api/Gemfile
296
+ - examples/ruby-api/Gemfile.lock
308
297
  - examples/ruby-api/README.md
309
298
  - examples/ruby-api/config.ru
310
299
  - examples/ruby-api/main.rb
@@ -633,7 +622,7 @@ homepage: https://github.com/auth0/ruby-auth0
633
622
  licenses:
634
623
  - MIT
635
624
  metadata: {}
636
- post_install_message:
625
+ post_install_message:
637
626
  rdoc_options: []
638
627
  require_paths:
639
628
  - lib
@@ -648,224 +637,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
648
637
  - !ruby/object:Gem::Version
649
638
  version: '0'
650
639
  requirements: []
651
- rubygems_version: 3.2.22
652
- signing_key:
640
+ rubygems_version: 3.3.11
641
+ signing_key:
653
642
  specification_version: 4
654
643
  summary: Auth0 API Client
655
- test_files:
656
- - spec/fixtures/vcr_cassettes/Auth0_Api_AuthenticationEndpoints/_change_password/should_trigger_a_password_reset.yml
657
- - spec/fixtures/vcr_cassettes/Auth0_Api_AuthenticationEndpoints/_login_with_resource_owner/should_fail_with_an_incorrect_email.yml
658
- - spec/fixtures/vcr_cassettes/Auth0_Api_AuthenticationEndpoints/_login_with_resource_owner/should_fail_with_an_incorrect_password.yml
659
- - spec/fixtures/vcr_cassettes/Auth0_Api_AuthenticationEndpoints/_login_with_resource_owner/should_fail_with_an_invalid_audience.yml
660
- - spec/fixtures/vcr_cassettes/Auth0_Api_AuthenticationEndpoints/_login_with_resource_owner/should_login_successfully_with_a_custom_audience.yml
661
- - spec/fixtures/vcr_cassettes/Auth0_Api_AuthenticationEndpoints/_login_with_resource_owner/should_login_successfully_with_a_default_scope.yml
662
- - spec/fixtures/vcr_cassettes/Auth0_Api_AuthenticationEndpoints/_saml_metadata/should_retrieve_SAML_metadata.yml
663
- - spec/fixtures/vcr_cassettes/Auth0_Api_AuthenticationEndpoints/_userinfo/should_fail_as_not_authorized.yml
664
- - spec/fixtures/vcr_cassettes/Auth0_Api_AuthenticationEndpoints/_userinfo/should_return_the_userinfo.yml
665
- - spec/fixtures/vcr_cassettes/Auth0_Api_AuthenticationEndpoints/_wsfed_metadata/should_retrieve_WSFED_metadata.yml
666
- - spec/fixtures/vcr_cassettes/Auth0_Api_AuthenticationEndpoints/create_test_user.yml
667
- - spec/fixtures/vcr_cassettes/Auth0_Api_AuthenticationEndpoints/delete_test_user.yml
668
- - spec/fixtures/vcr_cassettes/Auth0_Api_V2_Blacklists/_add_token_to_blacklist/should_add_a_token_to_the_blacklist.yml
669
- - spec/fixtures/vcr_cassettes/Auth0_Api_V2_Blacklists/_blacklisted_tokens/should_get_the_added_token_from_the_blacklist.yml
670
- - spec/fixtures/vcr_cassettes/Auth0_Api_V2_ClientGrants/_client_grants/should_return_at_least_1_result.yml
671
- - spec/fixtures/vcr_cassettes/Auth0_Api_V2_ClientGrants/_client_grants/should_return_the_test_client_grant.yml
672
- - spec/fixtures/vcr_cassettes/Auth0_Api_V2_ClientGrants/_delete_client_grant/should_delete_the_test_client_grant.yml
673
- - spec/fixtures/vcr_cassettes/Auth0_Api_V2_ClientGrants/_patch_client_grant/should_update_the_test_client_grant.yml
674
- - spec/fixtures/vcr_cassettes/Auth0_Api_V2_ClientGrants/create_test_client.yml
675
- - spec/fixtures/vcr_cassettes/Auth0_Api_V2_ClientGrants/create_test_client_grant.yml
676
- - spec/fixtures/vcr_cassettes/Auth0_Api_V2_ClientGrants/delete_test_client.yml
677
- - spec/fixtures/vcr_cassettes/Auth0_Api_V2_ClientGrants/delete_test_client_grant.yml
678
- - spec/fixtures/vcr_cassettes/Auth0_Api_V2_Clients/_client/_filters/should_exclude_and_include_fields_properly.yml
679
- - spec/fixtures/vcr_cassettes/Auth0_Api_V2_Clients/_client/_filters/should_include_the_specified_fields.yml
680
- - spec/fixtures/vcr_cassettes/Auth0_Api_V2_Clients/_client/should_get_the_test_client.yml
681
- - spec/fixtures/vcr_cassettes/Auth0_Api_V2_Clients/_clients/_filters/should_exclude_fields_not_specified.yml
682
- - spec/fixtures/vcr_cassettes/Auth0_Api_V2_Clients/_clients/_filters/should_exclude_the_specified_fields.yml
683
- - spec/fixtures/vcr_cassettes/Auth0_Api_V2_Clients/_clients/_filters/should_include_the_specified_fields.yml
684
- - spec/fixtures/vcr_cassettes/Auth0_Api_V2_Clients/_clients/_filters/should_paginate_results.yml
685
- - spec/fixtures/vcr_cassettes/Auth0_Api_V2_Clients/_clients/should_get_at_least_one_client.yml
686
- - spec/fixtures/vcr_cassettes/Auth0_Api_V2_Clients/_delete_client/should_delete_the_test_client_without_an_error.yml
687
- - spec/fixtures/vcr_cassettes/Auth0_Api_V2_Clients/_patch_client/should_update_the_client_with_the_correct_attributes.yml
688
- - spec/fixtures/vcr_cassettes/Auth0_Api_V2_Clients/create_test_client.yml
689
- - spec/fixtures/vcr_cassettes/Auth0_Api_V2_Connections/_connection/_filters/should_exclude_the_fields_indicated.yml
690
- - spec/fixtures/vcr_cassettes/Auth0_Api_V2_Connections/_connection/_filters/should_include_the_fields_indicated.yml
691
- - spec/fixtures/vcr_cassettes/Auth0_Api_V2_Connections/_connection/should_find_the_correct_connection.yml
692
- - spec/fixtures/vcr_cassettes/Auth0_Api_V2_Connections/_connections/_filters/should_include_previously-created_connection_when_filtered.yml
693
- - spec/fixtures/vcr_cassettes/Auth0_Api_V2_Connections/_connections/_filters/should_should_exclude_the_fields_indicated_from_filtered_results.yml
694
- - spec/fixtures/vcr_cassettes/Auth0_Api_V2_Connections/_connections/_filters/should_should_include_the_fields_indicated_from_filtered_results.yml
695
- - spec/fixtures/vcr_cassettes/Auth0_Api_V2_Connections/_connections/should_include_the_previously_created_connection.yml
696
- - spec/fixtures/vcr_cassettes/Auth0_Api_V2_Connections/_connections/should_not_be_empty.yml
697
- - spec/fixtures/vcr_cassettes/Auth0_Api_V2_Connections/_delete_connection/should_delete_the_connection.yml
698
- - spec/fixtures/vcr_cassettes/Auth0_Api_V2_Connections/_delete_connection_user/should_delete_the_user_created.yml
699
- - spec/fixtures/vcr_cassettes/Auth0_Api_V2_Connections/_update_connection/should_update_the_connection.yml
700
- - spec/fixtures/vcr_cassettes/Auth0_Api_V2_Connections/create_test_connection.yml
701
- - spec/fixtures/vcr_cassettes/Auth0_Api_V2_Connections/create_test_user.yml
702
- - spec/fixtures/vcr_cassettes/Auth0_Api_V2_DeviceCredentials/create_test_credential.yml
703
- - spec/fixtures/vcr_cassettes/Auth0_Api_V2_DeviceCredentials/create_test_user.yml
704
- - spec/fixtures/vcr_cassettes/Auth0_Api_V2_DeviceCredentials/delete_test_user.yml
705
- - spec/fixtures/vcr_cassettes/Auth0_Api_V2_Emails/_configure_provider/should_configure_a_new_email_provider.yml
706
- - spec/fixtures/vcr_cassettes/Auth0_Api_V2_Emails/_delete_provider/should_delete_the_existing_email_provider_without_an_error.yml
707
- - spec/fixtures/vcr_cassettes/Auth0_Api_V2_Emails/_delete_provider/should_throw_an_error_trying_to_get_the_email_provider.yml
708
- - spec/fixtures/vcr_cassettes/Auth0_Api_V2_Emails/_get_provider/_filters/should_get_the_existing_email_provider_with_specific_fields.yml
709
- - spec/fixtures/vcr_cassettes/Auth0_Api_V2_Emails/_get_provider/_filters/should_get_the_existing_email_provider_without_specific_fields.yml
710
- - spec/fixtures/vcr_cassettes/Auth0_Api_V2_Emails/_get_provider/should_get_the_existing_email_provider.yml
711
- - spec/fixtures/vcr_cassettes/Auth0_Api_V2_Emails/_update_provider/should_update_the_existing_email_provider.yml
712
- - spec/fixtures/vcr_cassettes/Auth0_Api_V2_Emails/delete_existing_provider.yml
713
- - spec/fixtures/vcr_cassettes/Auth0_Api_V2_Jobs/_export_users_and_get_job/should_create_an_export_users_job_successfully.yml
714
- - spec/fixtures/vcr_cassettes/Auth0_Api_V2_Jobs/_export_users_and_get_job/should_get_the_export_users_job.yml
715
- - spec/fixtures/vcr_cassettes/Auth0_Api_V2_Jobs/_import_users_and_get_job/should_create_an_import_users_job_successfully.yml
716
- - spec/fixtures/vcr_cassettes/Auth0_Api_V2_Jobs/_import_users_and_get_job/should_get_the_import_users_job.yml
717
- - spec/fixtures/vcr_cassettes/Auth0_Api_V2_Jobs/_send_verification_email_and_get_job/should_create_a_new_verification_email_job.yml
718
- - spec/fixtures/vcr_cassettes/Auth0_Api_V2_Jobs/_send_verification_email_and_get_job/should_get_the_completed_verification_email.yml
719
- - spec/fixtures/vcr_cassettes/Auth0_Api_V2_Jobs/_send_verification_email_and_get_job/should_reject_an_invalid_client_id.yml
720
- - spec/fixtures/vcr_cassettes/Auth0_Api_V2_Jobs/delete_imported_user.yml
721
- - spec/fixtures/vcr_cassettes/Auth0_Api_V2_Jobs/search_for_connection_id.yml
722
- - spec/fixtures/vcr_cassettes/Auth0_Api_V2_Logs/_log/should_match_the_created_log_entry.yml
723
- - spec/fixtures/vcr_cassettes/Auth0_Api_V2_Logs/_log/should_not_be_empty.yml
724
- - spec/fixtures/vcr_cassettes/Auth0_Api_V2_Logs/_logs/_filters/should_exclude_fields_not_specified.yml
725
- - spec/fixtures/vcr_cassettes/Auth0_Api_V2_Logs/_logs/_filters/should_exclude_the_specified_fields.yml
726
- - spec/fixtures/vcr_cassettes/Auth0_Api_V2_Logs/_logs/_filters/should_have_one_log_entry.yml
727
- - spec/fixtures/vcr_cassettes/Auth0_Api_V2_Logs/_logs/_filters/should_include_the_specified_fields.yml
728
- - spec/fixtures/vcr_cassettes/Auth0_Api_V2_Logs/_logs/_from/should_take_one_log_entry.yml
729
- - spec/fixtures/vcr_cassettes/Auth0_Api_V2_Logs/create_test_user.yml
730
- - spec/fixtures/vcr_cassettes/Auth0_Api_V2_Logs/delete_test_disabled_rule.yml
731
- - spec/fixtures/vcr_cassettes/Auth0_Api_V2_Logs/delete_test_enabled_rule.yml
732
- - spec/fixtures/vcr_cassettes/Auth0_Api_V2_Logs/delete_test_user.yml
733
- - spec/fixtures/vcr_cassettes/Auth0_Api_V2_ResourceServers/_delete_resource_server/should_delete_the_test_server_without_an_error.yml
734
- - spec/fixtures/vcr_cassettes/Auth0_Api_V2_ResourceServers/_patch_resource_server/should_update_the_resource_server_with_the_correct_attributes.yml
735
- - spec/fixtures/vcr_cassettes/Auth0_Api_V2_ResourceServers/_resource_server/should_get_the_test_server.yml
736
- - spec/fixtures/vcr_cassettes/Auth0_Api_V2_ResourceServers/_resource_servers/should_get_the_test_server.yml
737
- - spec/fixtures/vcr_cassettes/Auth0_Api_V2_ResourceServers/_resource_servers/should_return_at_least_1_result.yml
738
- - spec/fixtures/vcr_cassettes/Auth0_Api_V2_ResourceServers/_resource_servers/should_return_the_first_page_of_one_result.yml
739
- - spec/fixtures/vcr_cassettes/Auth0_Api_V2_ResourceServers/create_test_server.yml
740
- - spec/fixtures/vcr_cassettes/Auth0_Api_V2_ResourceServers/delete_test_server.yml
741
- - spec/fixtures/vcr_cassettes/Auth0_Api_V2_Roles/_add_role_permissions/should_add_a_Permission_to_the_Role_successfully.yml
742
- - spec/fixtures/vcr_cassettes/Auth0_Api_V2_Roles/_add_role_users/should_add_a_User_to_the_Role_successfully.yml
743
- - spec/fixtures/vcr_cassettes/Auth0_Api_V2_Roles/_delete_role/should_delete_the_Role_successfully.yml
744
- - spec/fixtures/vcr_cassettes/Auth0_Api_V2_Roles/_get_role/should_get_the_Role_successfully.yml
745
- - spec/fixtures/vcr_cassettes/Auth0_Api_V2_Roles/_get_role_permissions/should_get_exactly_1_Permission.yml
746
- - spec/fixtures/vcr_cassettes/Auth0_Api_V2_Roles/_get_role_permissions/should_get_the_added_Permission_from_the_Role_successfully.yml
747
- - spec/fixtures/vcr_cassettes/Auth0_Api_V2_Roles/_get_role_users/should_get_exactly_1_User.yml
748
- - spec/fixtures/vcr_cassettes/Auth0_Api_V2_Roles/_get_role_users/should_get_the_added_User_from_the_Role_successfully.yml
749
- - spec/fixtures/vcr_cassettes/Auth0_Api_V2_Roles/_get_roles/should_get_the_Role_successfully.yml
750
- - spec/fixtures/vcr_cassettes/Auth0_Api_V2_Roles/_remove_role_permissions/should_remove_a_Permission_from_the_Role_successfully.yml
751
- - spec/fixtures/vcr_cassettes/Auth0_Api_V2_Roles/_update_role/should_update_the_Role_successfully.yml
752
- - spec/fixtures/vcr_cassettes/Auth0_Api_V2_Roles/create_test_api.yml
753
- - spec/fixtures/vcr_cassettes/Auth0_Api_V2_Roles/create_test_role.yml
754
- - spec/fixtures/vcr_cassettes/Auth0_Api_V2_Roles/create_test_user.yml
755
- - spec/fixtures/vcr_cassettes/Auth0_Api_V2_Roles/delete_test_api.yml
756
- - spec/fixtures/vcr_cassettes/Auth0_Api_V2_Roles/delete_test_user.yml
757
- - spec/fixtures/vcr_cassettes/Auth0_Api_V2_Rules/_delete_rule/should_delete_the_test_disabled_rule_without_an_error.yml
758
- - spec/fixtures/vcr_cassettes/Auth0_Api_V2_Rules/_delete_rule/should_delete_the_test_enabled_rule_without_an_error.yml
759
- - spec/fixtures/vcr_cassettes/Auth0_Api_V2_Rules/_rule/_filters/should_exclude_the_fields_not_specified.yml
760
- - spec/fixtures/vcr_cassettes/Auth0_Api_V2_Rules/_rule/_filters/should_exclude_the_specified_fields.yml
761
- - spec/fixtures/vcr_cassettes/Auth0_Api_V2_Rules/_rule/_filters/should_include_the_specified_fields.yml
762
- - spec/fixtures/vcr_cassettes/Auth0_Api_V2_Rules/_rule/should_get_a_specific_rule.yml
763
- - spec/fixtures/vcr_cassettes/Auth0_Api_V2_Rules/_rules/_filters/should_exclude_fields_not_specified.yml
764
- - spec/fixtures/vcr_cassettes/Auth0_Api_V2_Rules/_rules/_filters/should_include_the_specified_fields.yml
765
- - spec/fixtures/vcr_cassettes/Auth0_Api_V2_Rules/_rules/_filters/should_return_at_least_1_disabled_rule.yml
766
- - spec/fixtures/vcr_cassettes/Auth0_Api_V2_Rules/_rules/_filters/should_return_at_least_1_enabled_rule.yml
767
- - spec/fixtures/vcr_cassettes/Auth0_Api_V2_Rules/_rules/_filters/should_return_paginated_results.yml
768
- - spec/fixtures/vcr_cassettes/Auth0_Api_V2_Rules/_rules/should_return_at_least_1_rule.yml
769
- - spec/fixtures/vcr_cassettes/Auth0_Api_V2_Rules/_update_rule/should_update_the_disabled_rule_to_be_enabled.yml
770
- - spec/fixtures/vcr_cassettes/Auth0_Api_V2_Rules/create_test_disabled_rule.yml
771
- - spec/fixtures/vcr_cassettes/Auth0_Api_V2_Rules/create_test_enabled_rule.yml
772
- - spec/fixtures/vcr_cassettes/Auth0_Api_V2_Stats/_active_users/should_have_at_least_one_active_user.yml
773
- - spec/fixtures/vcr_cassettes/Auth0_Api_V2_Stats/_daily_stats/should_have_at_least_one_stats_entry_for_the_timeframe.yml
774
- - spec/fixtures/vcr_cassettes/Auth0_Api_V2_Tenants/_get_tenant_settings/should_get_the_tenant_settings.yml
775
- - spec/fixtures/vcr_cassettes/Auth0_Api_V2_Tenants/_get_tenant_settings_with_specific_fields/should_exclude_a_field_not_requested.yml
776
- - spec/fixtures/vcr_cassettes/Auth0_Api_V2_Tenants/_get_tenant_settings_with_specific_fields/should_include_the_field_requested.yml
777
- - spec/fixtures/vcr_cassettes/Auth0_Api_V2_Tenants/_update_tenant_settings/should_revert_the_tenant_name.yml
778
- - spec/fixtures/vcr_cassettes/Auth0_Api_V2_Tenants/_update_tenant_settings/should_update_the_tenant_settings_with_a_new_tenant_name.yml
779
- - spec/fixtures/vcr_cassettes/Auth0_Api_V2_Tickets/_post_email_verification/should_create_an_email_verification_ticket.yml
780
- - spec/fixtures/vcr_cassettes/Auth0_Api_V2_Tickets/_post_password_change/should_create_a_password_change_ticket.yml
781
- - spec/fixtures/vcr_cassettes/Auth0_Api_V2_Tickets/create_test_user.yml
782
- - spec/fixtures/vcr_cassettes/Auth0_Api_V2_Tickets/delete_test_user.yml
783
- - spec/fixtures/vcr_cassettes/Auth0_Api_V2_Users/_add_user_permissions/should_add_a_Permissions_for_a_User_successfully.yml
784
- - spec/fixtures/vcr_cassettes/Auth0_Api_V2_Users/_add_user_roles/should_add_a_Role_to_a_User_successfully.yml
785
- - spec/fixtures/vcr_cassettes/Auth0_Api_V2_Users/_delete_user/should_delete_the_User_successfully.yml
786
- - spec/fixtures/vcr_cassettes/Auth0_Api_V2_Users/_delete_user/should_delete_the_secondary_User_successfully.yml
787
- - spec/fixtures/vcr_cassettes/Auth0_Api_V2_Users/_delete_user_provider/should_attempt_to_delete_the_MFA_provider_for_the_User.yml
788
- - spec/fixtures/vcr_cassettes/Auth0_Api_V2_Users/_get_enrollments/should_get_Enrollments_for_a_User_successfully.yml
789
- - spec/fixtures/vcr_cassettes/Auth0_Api_V2_Users/_get_user_permissions/should_get_exactly_1_Permission_for_a_User_successfully.yml
790
- - spec/fixtures/vcr_cassettes/Auth0_Api_V2_Users/_get_user_permissions/should_get_the_correct_Permission_for_a_User_successfully.yml
791
- - spec/fixtures/vcr_cassettes/Auth0_Api_V2_Users/_get_user_roles/should_get_Roles_for_a_User_successfully.yml
792
- - spec/fixtures/vcr_cassettes/Auth0_Api_V2_Users/_invalidate_browsers/should_invalidate_MFA_browsers_for_the_User_successfully.yml
793
- - spec/fixtures/vcr_cassettes/Auth0_Api_V2_Users/_link_user_account/should_link_two_Users_successfully.yml
794
- - spec/fixtures/vcr_cassettes/Auth0_Api_V2_Users/_patch_user/should_patch_the_User_successfully.yml
795
- - spec/fixtures/vcr_cassettes/Auth0_Api_V2_Users/_remove_user_permissions/should_remove_a_Permission_from_a_User_successfully.yml
796
- - spec/fixtures/vcr_cassettes/Auth0_Api_V2_Users/_remove_user_roles/should_remove_a_Role_from_a_User_successfully.yml
797
- - spec/fixtures/vcr_cassettes/Auth0_Api_V2_Users/_unlink_user_account/should_unlink_two_Users_successfully.yml
798
- - spec/fixtures/vcr_cassettes/Auth0_Api_V2_Users/_user/_filters/should_exclude_fields_not_indicated.yml
799
- - spec/fixtures/vcr_cassettes/Auth0_Api_V2_Users/_user/_filters/should_exclude_the_fields_indicated.yml
800
- - spec/fixtures/vcr_cassettes/Auth0_Api_V2_Users/_user/_filters/should_include_the_fields_indicated.yml
801
- - spec/fixtures/vcr_cassettes/Auth0_Api_V2_Users/_user/should_retrieve_the_created_user.yml
802
- - spec/fixtures/vcr_cassettes/Auth0_Api_V2_Users/_user_logs/should_get_Logs_for_a_User_successfully.yml
803
- - spec/fixtures/vcr_cassettes/Auth0_Api_V2_Users/_users/_filters/is_expected_to_find_a_user_with_a_v2_search_engine_query.yml
804
- - spec/fixtures/vcr_cassettes/Auth0_Api_V2_Users/_users/_filters/is_expected_to_find_a_user_with_a_v3_search_engine_query.yml
805
- - spec/fixtures/vcr_cassettes/Auth0_Api_V2_Users/_users/_filters/should_exclude_the_indicated_fields_when_paginated.yml
806
- - spec/fixtures/vcr_cassettes/Auth0_Api_V2_Users/_users/_filters/should_include_the_indicated_fields_when_paginated.yml
807
- - spec/fixtures/vcr_cassettes/Auth0_Api_V2_Users/_users/_filters/should_not_include_other_fields_when_paginated.yml
808
- - spec/fixtures/vcr_cassettes/Auth0_Api_V2_Users/_users/_filters/should_return_the_correct_number_of_results_when_paginated.yml
809
- - spec/fixtures/vcr_cassettes/Auth0_Api_V2_Users/_users/should_have_at_least_one_user.yml
810
- - spec/fixtures/vcr_cassettes/Auth0_Api_V2_Users/create_secondary_test_user.yml
811
- - spec/fixtures/vcr_cassettes/Auth0_Api_V2_Users/create_test_api.yml
812
- - spec/fixtures/vcr_cassettes/Auth0_Api_V2_Users/create_test_role.yml
813
- - spec/fixtures/vcr_cassettes/Auth0_Api_V2_Users/create_test_user.yml
814
- - spec/fixtures/vcr_cassettes/Auth0_Api_V2_Users/delete_test_api.yml
815
- - spec/fixtures/vcr_cassettes/Auth0_Api_V2_Users/delete_test_role.yml
816
- - spec/integration/lib/auth0/api/api_authentication_spec.rb
817
- - spec/integration/lib/auth0/api/v2/api_blacklist_spec.rb
818
- - spec/integration/lib/auth0/api/v2/api_client_grants_spec.rb
819
- - spec/integration/lib/auth0/api/v2/api_clients_spec.rb
820
- - spec/integration/lib/auth0/api/v2/api_connections_spec.rb
821
- - spec/integration/lib/auth0/api/v2/api_email_spec.rb
822
- - spec/integration/lib/auth0/api/v2/api_jobs_spec.rb
823
- - spec/integration/lib/auth0/api/v2/api_logs_spec.rb
824
- - spec/integration/lib/auth0/api/v2/api_resource_servers_spec.rb
825
- - spec/integration/lib/auth0/api/v2/api_roles_spec.rb
826
- - spec/integration/lib/auth0/api/v2/api_rules_spec.rb
827
- - spec/integration/lib/auth0/api/v2/api_stats_spec.rb
828
- - spec/integration/lib/auth0/api/v2/api_tenants_spec.rb
829
- - spec/integration/lib/auth0/api/v2/api_tickets_spec.rb
830
- - spec/integration/lib/auth0/api/v2/api_user_blocks_spec.rb
831
- - spec/integration/lib/auth0/api/v2/api_users_spec.rb
832
- - spec/integration/lib/auth0/auth0_client_spec.rb
833
- - spec/lib/auth0/api/v2/actions_spec.rb
834
- - spec/lib/auth0/api/v2/anomaly_spec.rb
835
- - spec/lib/auth0/api/v2/attack_protection_spec.rb
836
- - spec/lib/auth0/api/v2/blacklists_spec.rb
837
- - spec/lib/auth0/api/v2/branding_spec.rb
838
- - spec/lib/auth0/api/v2/client_grants_spec.rb
839
- - spec/lib/auth0/api/v2/clients_spec.rb
840
- - spec/lib/auth0/api/v2/connections_spec.rb
841
- - spec/lib/auth0/api/v2/device_credentials_spec.rb
842
- - spec/lib/auth0/api/v2/emails_spec.rb
843
- - spec/lib/auth0/api/v2/grants_spec.rb
844
- - spec/lib/auth0/api/v2/guardian_spec.rb
845
- - spec/lib/auth0/api/v2/jobs_spec.rb
846
- - spec/lib/auth0/api/v2/log_streams_spec.rb
847
- - spec/lib/auth0/api/v2/logs_spec.rb
848
- - spec/lib/auth0/api/v2/organizations_spec.rb
849
- - spec/lib/auth0/api/v2/prompts_spec.rb
850
- - spec/lib/auth0/api/v2/resource_servers_spec.rb
851
- - spec/lib/auth0/api/v2/roles_spec.rb
852
- - spec/lib/auth0/api/v2/rules_spec.rb
853
- - spec/lib/auth0/api/v2/stats_spec.rb
854
- - spec/lib/auth0/api/v2/tenants_spec.rb
855
- - spec/lib/auth0/api/v2/tickets_spec.rb
856
- - spec/lib/auth0/api/v2/user_blocks_spec.rb
857
- - spec/lib/auth0/api/v2/users_by_email_spec.rb
858
- - spec/lib/auth0/api/v2/users_spec.rb
859
- - spec/lib/auth0/client_spec.rb
860
- - spec/lib/auth0/mixins/httpproxy_spec.rb
861
- - spec/lib/auth0/mixins/initializer_spec.rb
862
- - spec/lib/auth0/mixins/token_management_spec.rb
863
- - spec/lib/auth0/mixins/validation_spec.rb
864
- - spec/spec_helper.rb
865
- - spec/support/credentials.rb
866
- - spec/support/dummy_class.rb
867
- - spec/support/dummy_class_for_proxy.rb
868
- - spec/support/dummy_class_for_restclient.rb
869
- - spec/support/dummy_class_for_tokens.rb
870
- - spec/support/import_users.json
871
- - spec/support/stub_response.rb
644
+ test_files: []