auth0 5.8.1 → 5.9.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: e54c493b04d5d9dcae2e7f60a12a209f772b032bbc2b301d02653fb47562df76
4
- data.tar.gz: f1c6e009ac351743fea12e8d75c95eb0998fadf0b8bdabf27def1d8f930a5a57
3
+ metadata.gz: 6d736435ce7655dc7910482e66b43a316a198b6b48ffa0b620830b7b55329dcb
4
+ data.tar.gz: 1b653fb372276036ecc11df764317d5b2dbc08249dd5eaf78181b0982c8d1d84
5
5
  SHA512:
6
- metadata.gz: 0aa658cbecc69ea43c1016287ebff0e3c5fe048f1ddde87580548a4ae475198e1a8637479007e4e5340d101d2b69a949dd6bccdf5065b10c3cad1f76459d575c
7
- data.tar.gz: a27dc61f747d7e777b45bbb707724eb58e7a73317403dab70b6eb590d8661cb14a05a7a1761d510fd8b6d41596845689c07abb98d71ba8be853b648c10bfb5f3
6
+ metadata.gz: 84c07d47e830c171210764f6cdf392f0a513b78a0996a9e9763d4a4aa069b8a56f4dab5930330e84efcefc68b16125d68e00c65c71cabbf82bc27bd0e5e56a56
7
+ data.tar.gz: 27e7dce713e1859455806f9d1a90d86e9b3f9b2fdee1872ff1d1295924e162815995e9299b2d0e111d81622d6884b32b916d02b44ceff65ce13429963c87c336
data/.bundle/config CHANGED
@@ -1,4 +1,5 @@
1
1
  ---
2
2
  BUNDLE_JOBS: "3"
3
3
  BUNDLE_BIN: "bin"
4
- BUNDLE_RETRY: "3"
4
+ BUNDLE_RETRY: "3"
5
+ BUNDLE_PATH: "vendor/bundle"
data/.circleci/config.yml CHANGED
@@ -1,6 +1,7 @@
1
1
  version: 2.1
2
2
  orbs:
3
- ship: auth0/ship@0.4.0
3
+ ship: auth0/ship@dev:alpha
4
+ codecov: codecov/codecov@3
4
5
 
5
6
  matrix_ruby_versions: &matrix_ruby_versions
6
7
  matrix:
@@ -40,6 +41,7 @@ jobs:
40
41
  - vendor/bundle
41
42
  # Must define DOMAIN, CLIENT_ID, CLIENT_SECRET and MASTER_JWT env
42
43
  - run: bundle exec rake test
44
+ - codecov/upload
43
45
 
44
46
  workflows:
45
47
  tests:
data/CHANGELOG.md CHANGED
@@ -1,5 +1,18 @@
1
1
  # Change Log
2
2
 
3
+ ## [v5.9.0](https://github.com/auth0/ruby-auth0/tree/v5.9.0) (2022-08-24)
4
+ [Full Changelog](https://github.com/auth0/ruby-auth0/compare/v5.8.1...v5.9.0)
5
+
6
+ **Added**
7
+ - Add Delete All Authenticators API for Users [\#375](https://github.com/auth0/ruby-auth0/pull/375) ([phongnh](https://github.com/phongnh))
8
+
9
+ **Changed**
10
+ - Add include_totals to get connections options [\#357](https://github.com/auth0/ruby-auth0/pull/357) ([stevehobbsdev](https://github.com/stevehobbsdev))
11
+
12
+ **Fixed**
13
+ - Fix typo and remove param that is not used [\#365](https://github.com/auth0/ruby-auth0/pull/365) ([MatthewRDodds](https://github.com/MatthewRDodds))
14
+ - correct remove_user_roles doc: roles param is ids, not names [\#359](https://github.com/auth0/ruby-auth0/pull/359) ([gbirchmeier](https://github.com/gbirchmeier))
15
+
3
16
  ## [v5.8.1](https://github.com/auth0/ruby-auth0/tree/v5.8.1) (2022-06-30)
4
17
 
5
18
  [Full Changelog](https://github.com/auth0/ruby-auth0/compare/v5.8.0...v5.8.1)
data/Gemfile CHANGED
@@ -14,7 +14,6 @@ end
14
14
  group :test do
15
15
  gem 'webmock', require: false
16
16
  gem 'vcr', require: false
17
- gem 'codecov', require: false
18
- gem 'simplecov'
17
+ gem 'simplecov-cobertura'
19
18
  gem 'timecop', require: false
20
19
  end
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- auth0 (5.8.1)
4
+ auth0 (5.9.0)
5
5
  addressable (~> 2.8)
6
6
  jwt (~> 2.3.0)
7
7
  rest-client (~> 2.1)
@@ -11,30 +11,28 @@ PATH
11
11
  GEM
12
12
  remote: https://rubygems.org/
13
13
  specs:
14
- actionpack (7.0.3)
15
- actionview (= 7.0.3)
16
- activesupport (= 7.0.3)
14
+ actionpack (7.0.3.1)
15
+ actionview (= 7.0.3.1)
16
+ activesupport (= 7.0.3.1)
17
17
  rack (~> 2.0, >= 2.2.0)
18
18
  rack-test (>= 0.6.3)
19
19
  rails-dom-testing (~> 2.0)
20
20
  rails-html-sanitizer (~> 1.0, >= 1.2.0)
21
- actionview (7.0.3)
22
- activesupport (= 7.0.3)
21
+ actionview (7.0.3.1)
22
+ activesupport (= 7.0.3.1)
23
23
  builder (~> 3.1)
24
24
  erubi (~> 1.4)
25
25
  rails-dom-testing (~> 2.0)
26
26
  rails-html-sanitizer (~> 1.1, >= 1.2.0)
27
- activesupport (7.0.3)
27
+ activesupport (7.0.3.1)
28
28
  concurrent-ruby (~> 1.0, >= 1.0.2)
29
29
  i18n (>= 1.6, < 2)
30
30
  minitest (>= 5.1)
31
31
  tzinfo (~> 2.0)
32
- addressable (2.8.0)
33
- public_suffix (>= 2.0.2, < 5.0)
32
+ addressable (2.8.1)
33
+ public_suffix (>= 2.0.2, < 6.0)
34
34
  ast (2.4.2)
35
35
  builder (3.2.4)
36
- codecov (0.6.0)
37
- simplecov (>= 0.15, < 0.22)
38
36
  coderay (1.1.3)
39
37
  concurrent-ruby (1.1.10)
40
38
  coveralls (0.7.1)
@@ -50,77 +48,51 @@ GEM
50
48
  docile (1.4.0)
51
49
  domain_name (0.5.20190701)
52
50
  unf (>= 0.0.5, < 1.0.0)
53
- dotenv (2.7.6)
54
- dotenv-rails (2.7.6)
55
- dotenv (= 2.7.6)
51
+ dotenv (2.8.1)
52
+ dotenv-rails (2.8.1)
53
+ dotenv (= 2.8.1)
56
54
  railties (>= 3.2)
57
- erubi (1.10.0)
58
- faker (2.21.0)
55
+ erubi (1.11.0)
56
+ faker (2.22.0)
59
57
  i18n (>= 1.8.11, < 2)
60
- ffi (1.15.5)
61
- formatador (1.1.0)
62
58
  fuubar (2.5.1)
63
59
  rspec-core (~> 3.0)
64
60
  ruby-progressbar (~> 1.4)
65
61
  gem-release (0.7.4)
66
- guard (2.17.0)
67
- formatador (>= 0.2.4)
68
- listen (>= 2.7, < 4.0)
69
- lumberjack (>= 1.0.12, < 2.0)
70
- nenv (~> 0.1)
71
- notiffany (~> 0.0)
72
- pry (>= 0.9.12)
73
- shellany (~> 0.0)
74
- thor (>= 0.18.1)
75
- guard-compat (1.2.1)
76
- guard-rspec (4.7.3)
77
- guard (~> 2.1)
78
- guard-compat (~> 1.1)
79
- rspec (>= 2.99.0, < 4.0)
80
62
  hashdiff (1.0.1)
81
63
  http-accept (1.7.0)
82
64
  http-cookie (1.0.5)
83
65
  domain_name (~> 0.5)
84
- i18n (1.10.0)
66
+ i18n (1.12.0)
85
67
  concurrent-ruby (~> 1.0)
86
68
  io-console (0.5.11)
87
69
  irb (1.4.1)
88
70
  reline (>= 0.3.0)
89
71
  json (2.6.2)
90
72
  jwt (2.3.0)
91
- listen (3.7.1)
92
- rb-fsevent (~> 0.10, >= 0.10.3)
93
- rb-inotify (~> 0.9, >= 0.9.10)
94
73
  loofah (2.18.0)
95
74
  crass (~> 1.0.2)
96
75
  nokogiri (>= 1.5.9)
97
- lumberjack (1.2.8)
98
76
  method_source (0.9.2)
99
77
  mime-types (3.4.1)
100
78
  mime-types-data (~> 3.2015)
101
79
  mime-types-data (3.2022.0105)
102
- mini_portile2 (2.8.0)
103
- minitest (5.16.1)
80
+ minitest (5.16.3)
104
81
  multi_json (1.15.0)
105
- nenv (0.3.0)
106
82
  netrc (0.11.0)
107
- nokogiri (1.13.6)
108
- mini_portile2 (~> 2.8.0)
83
+ nokogiri (1.13.8-x86_64-linux)
109
84
  racc (~> 1.4)
110
- notiffany (0.1.3)
111
- nenv (~> 0.1)
112
- shellany (~> 0.0)
113
85
  parallel (1.22.1)
114
- parser (3.1.2.0)
86
+ parser (3.1.2.1)
115
87
  ast (~> 2.4.1)
116
88
  pry (0.12.2)
117
89
  coderay (~> 1.1.0)
118
90
  method_source (~> 0.9.0)
119
91
  pry-nav (0.3.0)
120
92
  pry (>= 0.9.10, < 0.13.0)
121
- public_suffix (4.0.7)
93
+ public_suffix (5.0.0)
122
94
  racc (1.6.0)
123
- rack (2.2.3.1)
95
+ rack (2.2.4)
124
96
  rack-test (0.8.3)
125
97
  rack (>= 1.0, < 3)
126
98
  rails-dom-testing (2.0.3)
@@ -128,18 +100,15 @@ GEM
128
100
  nokogiri (>= 1.6)
129
101
  rails-html-sanitizer (1.4.3)
130
102
  loofah (~> 2.3)
131
- railties (7.0.3)
132
- actionpack (= 7.0.3)
133
- activesupport (= 7.0.3)
103
+ railties (7.0.3.1)
104
+ actionpack (= 7.0.3.1)
105
+ activesupport (= 7.0.3.1)
134
106
  method_source
135
107
  rake (>= 12.2)
136
108
  thor (~> 1.0)
137
109
  zeitwerk (~> 2.5)
138
110
  rainbow (3.1.1)
139
111
  rake (13.0.6)
140
- rb-fsevent (0.11.1)
141
- rb-inotify (0.10.1)
142
- ffi (~> 1.0)
143
112
  regexp_parser (2.5.0)
144
113
  reline (0.3.1)
145
114
  io-console (~> 0.5)
@@ -163,46 +132,47 @@ GEM
163
132
  diff-lcs (>= 1.2.0, < 2.0)
164
133
  rspec-support (~> 3.11.0)
165
134
  rspec-support (3.11.0)
166
- rubocop (1.31.1)
135
+ rubocop (1.35.1)
167
136
  json (~> 2.3)
168
137
  parallel (~> 1.10)
169
- parser (>= 3.1.0.0)
138
+ parser (>= 3.1.2.1)
170
139
  rainbow (>= 2.2.2, < 4.0)
171
140
  regexp_parser (>= 1.8, < 3.0)
172
141
  rexml (>= 3.2.5, < 4.0)
173
- rubocop-ast (>= 1.18.0, < 2.0)
142
+ rubocop-ast (>= 1.20.1, < 2.0)
174
143
  ruby-progressbar (~> 1.7)
175
144
  unicode-display_width (>= 1.4.0, < 3.0)
176
- rubocop-ast (1.18.0)
145
+ rubocop-ast (1.21.0)
177
146
  parser (>= 3.1.1.0)
178
- rubocop-rails (2.15.1)
147
+ rubocop-rails (2.15.2)
179
148
  activesupport (>= 4.2.0)
180
149
  rack (>= 1.1)
181
150
  rubocop (>= 1.7.0, < 2.0)
182
151
  ruby-progressbar (1.11.0)
183
- shellany (0.0.1)
184
152
  simplecov (0.21.2)
185
153
  docile (~> 1.1)
186
154
  simplecov-html (~> 0.11)
187
155
  simplecov_json_formatter (~> 0.1)
156
+ simplecov-cobertura (2.1.0)
157
+ rexml
158
+ simplecov (~> 0.19)
188
159
  simplecov-html (0.12.3)
189
160
  simplecov_json_formatter (0.1.4)
190
161
  sync (0.5.0)
191
162
  term-ansicolor (1.7.1)
192
163
  tins (~> 1.0)
193
- terminal-notifier-guard (1.7.0)
194
164
  thor (1.2.1)
195
165
  timecop (0.9.5)
196
166
  tins (1.31.1)
197
167
  sync
198
- tzinfo (2.0.4)
168
+ tzinfo (2.0.5)
199
169
  concurrent-ruby (~> 1.0)
200
170
  unf (0.1.4)
201
171
  unf_ext
202
172
  unf_ext (0.0.8.2)
203
173
  unicode-display_width (2.2.0)
204
174
  vcr (6.1.0)
205
- webmock (3.14.0)
175
+ webmock (3.18.1)
206
176
  addressable (>= 2.8.0)
207
177
  crack (>= 0.3.2)
208
178
  hashdiff (>= 0.4.0, < 2.0.0)
@@ -210,18 +180,16 @@ GEM
210
180
  zeitwerk (2.6.0)
211
181
 
212
182
  PLATFORMS
213
- ruby
183
+ x86_64-linux
214
184
 
215
185
  DEPENDENCIES
216
186
  auth0!
217
187
  bundler
218
- codecov
219
188
  coveralls
220
189
  dotenv-rails (~> 2.0)
221
190
  faker (~> 2.0)
222
191
  fuubar (~> 2.0)
223
192
  gem-release (~> 0.7)
224
- guard-rspec (~> 4.5)
225
193
  irb
226
194
  pry (~> 0.10)
227
195
  pry-nav (~> 0.2)
@@ -231,11 +199,11 @@ DEPENDENCIES
231
199
  rspec (~> 3.5)
232
200
  rubocop
233
201
  rubocop-rails
234
- simplecov
235
- terminal-notifier-guard
202
+ simplecov (~> 0.9)
203
+ simplecov-cobertura
236
204
  timecop
237
205
  vcr
238
206
  webmock
239
207
 
240
208
  BUNDLED WITH
241
- 1.17.2
209
+ 2.3.11
@@ -170,8 +170,6 @@ module Auth0
170
170
  # @see https://auth0.com/docs/api/authentication#change-password
171
171
  # @see https://auth0.com/docs/connections/database/password-change
172
172
  # @param email [string] User's current email
173
- # @param password [string] User's new password; empty to trigger a
174
- # password reset email
175
173
  # @param connection_name [string] Database connection name
176
174
  # @param client_id [string] Client ID override (to allow forwarding
177
175
  # to a different application's login URI on password reset success page)
@@ -14,6 +14,7 @@ module Auth0
14
14
  # @param include_fields [boolean] True if the fields specified are to be included in the result, false otherwise.
15
15
  # @param page [int] Page number to get, 0-based.
16
16
  # @param per_page [int] Results per page if also passing a page number.
17
+ # @param include_totals [boolean] True if query totals should be included in the result. Defaults to false.
17
18
  # @return [json] Returns the existing connections matching the strategy.
18
19
  def connections(
19
20
  strategy: nil,
@@ -21,7 +22,8 @@ module Auth0
21
22
  fields: nil,
22
23
  include_fields: nil,
23
24
  page: nil,
24
- per_page: nil
25
+ per_page: nil,
26
+ include_totals: nil
25
27
  )
26
28
  include_fields = true if !fields.nil? && include_fields.nil?
27
29
  request_params = {
@@ -30,7 +32,8 @@ module Auth0
30
32
  fields: fields.is_a?(Array) ? fields.join(',') : fields,
31
33
  include_fields: include_fields,
32
34
  page: !page.nil? ? page.to_i : nil,
33
- per_page: !page.nil? && !per_page.nil? ? per_page.to_i : nil
35
+ per_page: !page.nil? && !per_page.nil? ? per_page.to_i : nil,
36
+ include_totals: include_totals
34
37
  }
35
38
  get(connections_path, request_params)
36
39
  end
@@ -38,7 +41,7 @@ module Auth0
38
41
 
39
42
  # Creates a new connection according to the JSON object received in body.
40
43
  # @see https://auth0.com/docs/api/v2#!/Connections/post_connections
41
- # @param body [hash] The Hash options used to define the conecctions's properties.
44
+ # @param body [hash] The Hash options used to define the connections's properties.
42
45
  #
43
46
  # @return [json] Returns the created connection.
44
47
  def create_connection(body)
@@ -1,7 +1,7 @@
1
1
  module Auth0
2
2
  module Api
3
3
  module V2
4
- # Methods to use the device crenditials endpoints
4
+ # Methods to use the device credentials endpoints
5
5
  module DeviceCredentials
6
6
  attr_reader :device_credentials_path
7
7
 
@@ -111,6 +111,15 @@ module Auth0
111
111
  end
112
112
  alias update_user patch_user
113
113
 
114
+ # Delete all authenticators
115
+ # @see https://auth0.com/docs/api/management/v2#!/Users/delete_authenticators
116
+ # @param user_id [string] The user_id of the user to delete all authenticators
117
+ def delete_user_authenticators(user_id)
118
+ raise Auth0::MissingUserId, 'Must supply a valid user_id' if user_id.to_s.empty?
119
+ path = "#{users_path}/#{user_id}/authenticators"
120
+ delete(path)
121
+ end
122
+
114
123
  # Delete a user's multifactor provider
115
124
  # @see https://auth0.com/docs/api/v2#!/Users/delete_multifactor_by_provider
116
125
  # @param user_id [string] The user_id of the user to delete the multifactor provider from.
@@ -215,7 +224,7 @@ module Auth0
215
224
  # @see https://auth0.com/docs/api/management/v2#!/Users/delete_user_roles
216
225
  #
217
226
  # @param user_id [string] The user_id of the roles to remove.
218
- # @param roles [array] An array of role names to remove.
227
+ # @param roles [array] An array of role ids to remove.
219
228
  def remove_user_roles(user_id, roles)
220
229
  raise Auth0::MissingUserId, 'Must supply a valid user_id' if user_id.to_s.empty?
221
230
  validate_strings_array roles
data/lib/auth0/version.rb CHANGED
@@ -1,4 +1,4 @@
1
1
  # current version of gem
2
2
  module Auth0
3
- VERSION = '5.8.1'.freeze
3
+ VERSION = '5.9.0'.freeze
4
4
  end
@@ -18,7 +18,8 @@ describe Auth0::Api::V2::Connections do
18
18
  fields: nil,
19
19
  include_fields: nil,
20
20
  page: nil,
21
- per_page: nil
21
+ per_page: nil,
22
+ include_totals: nil
22
23
  })
23
24
  expect { @instance.connections }.not_to raise_error
24
25
  end
@@ -31,7 +32,8 @@ describe Auth0::Api::V2::Connections do
31
32
  strategy: nil,
32
33
  name: nil,
33
34
  page: nil,
34
- per_page: nil
35
+ per_page: nil,
36
+ include_totals: nil
35
37
  })
36
38
  expect {
37
39
  @instance.connections(fields: 'name', include_fields: true)
@@ -46,7 +48,8 @@ describe Auth0::Api::V2::Connections do
46
48
  strategy: nil,
47
49
  name: nil,
48
50
  page: nil,
49
- per_page: nil
51
+ per_page: nil,
52
+ include_totals: nil
50
53
  })
51
54
  expect {
52
55
  @instance.connections(fields: ['name','strategy'], include_fields: true)
@@ -61,12 +64,29 @@ describe Auth0::Api::V2::Connections do
61
64
  strategy: nil,
62
65
  name: nil,
63
66
  fields: nil,
64
- include_fields: nil
67
+ include_fields: nil,
68
+ include_totals: nil
65
69
  })
66
70
  expect {
67
71
  @instance.connections(page: 1, per_page: 10)
68
72
  }.not_to raise_error
69
73
  end
74
+
75
+ it 'is expected to include totals' do
76
+ expect(@instance).to receive(:get).with(
77
+ '/api/v2/connections', {
78
+ page: 1,
79
+ per_page: 10,
80
+ strategy: nil,
81
+ name: nil,
82
+ fields: nil,
83
+ include_fields: nil,
84
+ include_totals: true
85
+ })
86
+ expect {
87
+ @instance.connections(page: 1, per_page: 10, include_totals: true)
88
+ }.not_to raise_error
89
+ end
70
90
  end
71
91
 
72
92
  context '.create_connection' do
@@ -139,6 +139,21 @@ describe Auth0::Api::V2::Users do
139
139
  end
140
140
  end
141
141
 
142
+ context '.delete_user_authenticators' do
143
+ it 'is expected to respond to a delete_user_authenticators method' do
144
+ expect(@instance).to respond_to(:delete_user_authenticators)
145
+ end
146
+
147
+ it 'is expected to delete /api/v2/users/userId/authenticators' do
148
+ expect(@instance).to receive(:delete).with('/api/v2/users/USER_ID/authenticators')
149
+ @instance.delete_user_authenticators('USER_ID')
150
+ end
151
+
152
+ it 'is expected to raise an exception when the user ID is empty' do
153
+ expect { @instance.delete_user_authenticators(nil) }.to raise_exception(Auth0::MissingUserId)
154
+ end
155
+ end
156
+
142
157
  context '.delete_user_provider' do
143
158
  it 'is expected to respond to a delete_user_provider method' do
144
159
  expect(@instance).to respond_to(:delete_user_provider)
data/spec/spec_helper.rb CHANGED
@@ -13,8 +13,8 @@ require 'simplecov'
13
13
  SimpleCov.start
14
14
 
15
15
  if ENV['CI'] == 'true'
16
- require 'codecov'
17
- SimpleCov.formatter = SimpleCov::Formatter::Codecov
16
+ require 'simplecov-cobertura'
17
+ SimpleCov.formatter = SimpleCov::Formatter::CoberturaFormatter
18
18
  end
19
19
 
20
20
  require 'dotenv'
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.9.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-08-24 00:00:00.000000000 Z
15
15
  dependencies:
16
16
  - !ruby/object:Gem::Dependency
17
17
  name: rest-client
@@ -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
@@ -633,7 +619,7 @@ homepage: https://github.com/auth0/ruby-auth0
633
619
  licenses:
634
620
  - MIT
635
621
  metadata: {}
636
- post_install_message:
622
+ post_install_message:
637
623
  rdoc_options: []
638
624
  require_paths:
639
625
  - lib
@@ -648,224 +634,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
648
634
  - !ruby/object:Gem::Version
649
635
  version: '0'
650
636
  requirements: []
651
- rubygems_version: 3.2.22
652
- signing_key:
637
+ rubygems_version: 3.3.11
638
+ signing_key:
653
639
  specification_version: 4
654
640
  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
641
+ test_files: []