workos 0.10.0 → 0.11.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/.rubocop.yml +1 -1
- data/.ruby-version +1 -1
- data/.semaphore/semaphore.yml +8 -2
- data/Gemfile.lock +49 -36
- data/lib/workos/client.rb +3 -3
- data/lib/workos/connection.rb +8 -1
- data/lib/workos/directory.rb +53 -0
- data/lib/workos/directory_group.rb +44 -0
- data/lib/workos/directory_sync.rb +63 -7
- data/lib/workos/directory_user.rb +60 -0
- data/lib/workos/portal.rb +1 -1
- data/lib/workos/profile.rb +1 -2
- data/lib/workos/sso.rb +33 -6
- data/lib/workos/types/connection_struct.rb +2 -0
- data/lib/workos/types/directory_group_struct.rb +13 -0
- data/lib/workos/types/directory_struct.rb +16 -0
- data/lib/workos/types/directory_user_struct.rb +18 -0
- data/lib/workos/types/intent_enum.rb +1 -0
- data/lib/workos/types.rb +3 -0
- data/lib/workos/version.rb +1 -1
- data/lib/workos.rb +3 -0
- data/sorbet/rbi/gems/addressable.rbi +199 -0
- data/sorbet/rbi/gems/ast.rbi +49 -0
- data/sorbet/rbi/gems/codecov.rbi +37 -0
- data/sorbet/rbi/gems/crack.rbi +62 -0
- data/sorbet/rbi/gems/docile.rbi +36 -0
- data/sorbet/rbi/gems/hashdiff.rbi +66 -0
- data/sorbet/rbi/gems/parallel.rbi +83 -0
- data/sorbet/rbi/gems/parser.rbi +1429 -0
- data/sorbet/rbi/gems/public_suffix.rbi +104 -0
- data/sorbet/rbi/gems/rainbow.rbi +118 -0
- data/sorbet/rbi/gems/rake.rbi +644 -0
- data/sorbet/rbi/gems/regexp_parser.rbi +926 -0
- data/sorbet/rbi/gems/rexml.rbi +628 -0
- data/sorbet/rbi/gems/rspec-core.rbi +1898 -0
- data/sorbet/rbi/gems/rspec-expectations.rbi +1127 -0
- data/sorbet/rbi/gems/rspec-mocks.rbi +1099 -0
- data/sorbet/rbi/gems/rspec-support.rbi +280 -0
- data/sorbet/rbi/gems/rspec.rbi +15 -0
- data/sorbet/rbi/gems/rubocop-ast.rbi +1355 -0
- data/sorbet/rbi/gems/rubocop.rbi +7253 -0
- data/sorbet/rbi/gems/ruby-progressbar.rbi +304 -0
- data/sorbet/rbi/gems/simplecov-html.rbi +35 -0
- data/sorbet/rbi/gems/simplecov.rbi +406 -0
- data/sorbet/rbi/gems/unicode-display_width.rbi +17 -0
- data/sorbet/rbi/gems/vcr.rbi +572 -0
- data/sorbet/rbi/gems/webmock.rbi +556 -0
- data/sorbet/rbi/gems/yard.rbi +1165 -0
- data/sorbet/rbi/sorbet-typed/lib/rake/all/rake.rbi +645 -0
- data/sorbet/rbi/sorbet-typed/lib/rspec-core/all/rspec-core.rbi +1891 -0
- data/sorbet/rbi/sorbet-typed/lib/rubocop/~>0.85/rubocop.rbi +2072 -0
- data/sorbet/rbi/sorbet-typed/lib/yard/all/yard.rbi +1214 -0
- data/sorbet/rbi/todo.rbi +1 -3
- data/spec/lib/workos/audit_trail_spec.rb +0 -8
- data/spec/lib/workos/directory_sync_spec.rb +347 -40
- data/spec/lib/workos/passwordless_spec.rb +0 -8
- data/spec/lib/workos/portal_spec.rb +18 -11
- data/spec/lib/workos/sso_spec.rb +150 -71
- data/spec/spec_helper.rb +2 -1
- data/spec/support/fixtures/vcr_cassettes/directory_sync/delete_directory.yml +72 -0
- data/spec/support/fixtures/vcr_cassettes/{sso/list_connections.yml → directory_sync/list_directories/with_after.yml} +7 -7
- data/spec/support/fixtures/vcr_cassettes/{sso/list_connections_with_limit_param.yml → directory_sync/list_directories/with_before.yml} +8 -8
- data/spec/support/fixtures/vcr_cassettes/{sso/list_connections_with_connection_type_param.yml → directory_sync/list_directories/with_domain.yml} +11 -10
- data/spec/support/fixtures/vcr_cassettes/directory_sync/list_directories/with_limit.yml +74 -0
- data/spec/support/fixtures/vcr_cassettes/directory_sync/{list_directories.yml → list_directories/with_no_options.yml} +1 -1
- data/spec/support/fixtures/vcr_cassettes/directory_sync/list_directories/with_search.yml +73 -0
- data/spec/support/fixtures/vcr_cassettes/directory_sync/list_groups/with_after.yml +76 -0
- data/spec/support/fixtures/vcr_cassettes/directory_sync/list_groups/with_before.yml +74 -0
- data/spec/support/fixtures/vcr_cassettes/directory_sync/list_groups/with_directory.yml +78 -0
- data/spec/support/fixtures/vcr_cassettes/directory_sync/list_groups/with_limit.yml +74 -0
- data/spec/support/fixtures/vcr_cassettes/directory_sync/{list_groups.yml → list_groups/with_no_options.yml} +16 -6
- data/spec/support/fixtures/vcr_cassettes/directory_sync/list_groups/with_user.yml +72 -0
- data/spec/support/fixtures/vcr_cassettes/directory_sync/list_users/with_after.yml +86 -0
- data/spec/support/fixtures/vcr_cassettes/directory_sync/list_users/with_before.yml +75 -0
- data/spec/support/fixtures/vcr_cassettes/directory_sync/list_users/with_directory.yml +93 -0
- data/spec/support/fixtures/vcr_cassettes/directory_sync/list_users/with_group.yml +76 -0
- data/spec/support/fixtures/vcr_cassettes/directory_sync/list_users/with_limit.yml +75 -0
- data/spec/support/fixtures/vcr_cassettes/directory_sync/{list_users.yml → list_users/with_no_options.yml} +16 -6
- data/spec/support/fixtures/vcr_cassettes/portal/generate_link_dsync.yml +72 -0
- data/spec/support/fixtures/vcr_cassettes/portal/{generate_link.yml → generate_link_sso.yml} +1 -1
- data/spec/support/fixtures/vcr_cassettes/sso/create_connection_with_valid_source.yml +3 -3
- data/spec/support/fixtures/vcr_cassettes/sso/list_connections/with_after.yml +73 -0
- data/spec/support/fixtures/vcr_cassettes/sso/list_connections/with_before.yml +73 -0
- data/spec/support/fixtures/vcr_cassettes/sso/list_connections/with_connection_type.yml +73 -0
- data/spec/support/fixtures/vcr_cassettes/sso/{list_connections_with_domain_param.yml → list_connections/with_domain.yml} +6 -6
- data/spec/support/fixtures/vcr_cassettes/sso/list_connections/with_limit.yml +74 -0
- data/spec/support/fixtures/vcr_cassettes/sso/list_connections/with_no_options.yml +73 -0
- data/spec/support/fixtures/vcr_cassettes/sso/{list_connections_with_before_param.yml → list_connections/with_organization_id.yml} +7 -8
- data/workos.gemspec +2 -0
- metadata +101 -40
- data/sorbet/rbi/hidden-definitions/errors.txt +0 -24896
- data/sorbet/rbi/hidden-definitions/hidden.rbi +0 -38411
- data/sorbet/rbi/sorbet-typed/lib/bundler/all/bundler.rbi +0 -8684
- data/sorbet/rbi/sorbet-typed/lib/ruby/all/gem.rbi +0 -4222
- data/sorbet/rbi/sorbet-typed/lib/ruby/all/open3.rbi +0 -111
- data/sorbet/rbi/sorbet-typed/lib/ruby/all/resolv.rbi +0 -543
- data/spec/support/fixtures/vcr_cassettes/directory_sync/list_directories_with_domain_param.yml +0 -63
- data/spec/support/fixtures/vcr_cassettes/directory_sync/list_groups_with_directory_param.yml +0 -62
- data/spec/support/fixtures/vcr_cassettes/directory_sync/list_users_with_directory_param.yml +0 -62
- data/spec/support/fixtures/vcr_cassettes/sso/list_connections_with_after_param.yml +0 -72
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: workos
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.11.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- WorkOS
|
|
8
|
-
autorequire:
|
|
8
|
+
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2021-
|
|
11
|
+
date: 2021-04-27 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: sorbet-runtime
|
|
@@ -211,7 +211,10 @@ files:
|
|
|
211
211
|
- lib/workos/base.rb
|
|
212
212
|
- lib/workos/client.rb
|
|
213
213
|
- lib/workos/connection.rb
|
|
214
|
+
- lib/workos/directory.rb
|
|
215
|
+
- lib/workos/directory_group.rb
|
|
214
216
|
- lib/workos/directory_sync.rb
|
|
217
|
+
- lib/workos/directory_user.rb
|
|
215
218
|
- lib/workos/errors.rb
|
|
216
219
|
- lib/workos/organization.rb
|
|
217
220
|
- lib/workos/passwordless.rb
|
|
@@ -220,6 +223,9 @@ files:
|
|
|
220
223
|
- lib/workos/sso.rb
|
|
221
224
|
- lib/workos/types.rb
|
|
222
225
|
- lib/workos/types/connection_struct.rb
|
|
226
|
+
- lib/workos/types/directory_group_struct.rb
|
|
227
|
+
- lib/workos/types/directory_struct.rb
|
|
228
|
+
- lib/workos/types/directory_user_struct.rb
|
|
223
229
|
- lib/workos/types/intent_enum.rb
|
|
224
230
|
- lib/workos/types/list_struct.rb
|
|
225
231
|
- lib/workos/types/organization_struct.rb
|
|
@@ -228,13 +234,38 @@ files:
|
|
|
228
234
|
- lib/workos/types/provider_enum.rb
|
|
229
235
|
- lib/workos/version.rb
|
|
230
236
|
- sorbet/config
|
|
231
|
-
- sorbet/rbi/
|
|
232
|
-
- sorbet/rbi/
|
|
233
|
-
- sorbet/rbi/
|
|
237
|
+
- sorbet/rbi/gems/addressable.rbi
|
|
238
|
+
- sorbet/rbi/gems/ast.rbi
|
|
239
|
+
- sorbet/rbi/gems/codecov.rbi
|
|
240
|
+
- sorbet/rbi/gems/crack.rbi
|
|
241
|
+
- sorbet/rbi/gems/docile.rbi
|
|
242
|
+
- sorbet/rbi/gems/hashdiff.rbi
|
|
243
|
+
- sorbet/rbi/gems/parallel.rbi
|
|
244
|
+
- sorbet/rbi/gems/parser.rbi
|
|
245
|
+
- sorbet/rbi/gems/public_suffix.rbi
|
|
246
|
+
- sorbet/rbi/gems/rainbow.rbi
|
|
247
|
+
- sorbet/rbi/gems/rake.rbi
|
|
248
|
+
- sorbet/rbi/gems/regexp_parser.rbi
|
|
249
|
+
- sorbet/rbi/gems/rexml.rbi
|
|
250
|
+
- sorbet/rbi/gems/rspec-core.rbi
|
|
251
|
+
- sorbet/rbi/gems/rspec-expectations.rbi
|
|
252
|
+
- sorbet/rbi/gems/rspec-mocks.rbi
|
|
253
|
+
- sorbet/rbi/gems/rspec-support.rbi
|
|
254
|
+
- sorbet/rbi/gems/rspec.rbi
|
|
255
|
+
- sorbet/rbi/gems/rubocop-ast.rbi
|
|
256
|
+
- sorbet/rbi/gems/rubocop.rbi
|
|
257
|
+
- sorbet/rbi/gems/ruby-progressbar.rbi
|
|
258
|
+
- sorbet/rbi/gems/simplecov-html.rbi
|
|
259
|
+
- sorbet/rbi/gems/simplecov.rbi
|
|
260
|
+
- sorbet/rbi/gems/unicode-display_width.rbi
|
|
261
|
+
- sorbet/rbi/gems/vcr.rbi
|
|
262
|
+
- sorbet/rbi/gems/webmock.rbi
|
|
263
|
+
- sorbet/rbi/gems/yard.rbi
|
|
234
264
|
- sorbet/rbi/sorbet-typed/lib/rainbow/all/rainbow.rbi
|
|
235
|
-
- sorbet/rbi/sorbet-typed/lib/
|
|
236
|
-
- sorbet/rbi/sorbet-typed/lib/
|
|
237
|
-
- sorbet/rbi/sorbet-typed/lib/
|
|
265
|
+
- sorbet/rbi/sorbet-typed/lib/rake/all/rake.rbi
|
|
266
|
+
- sorbet/rbi/sorbet-typed/lib/rspec-core/all/rspec-core.rbi
|
|
267
|
+
- sorbet/rbi/sorbet-typed/lib/rubocop/~>0.85/rubocop.rbi
|
|
268
|
+
- sorbet/rbi/sorbet-typed/lib/yard/all/yard.rbi
|
|
238
269
|
- sorbet/rbi/todo.rbi
|
|
239
270
|
- spec/lib/workos/audit_trail_spec.rb
|
|
240
271
|
- spec/lib/workos/base_spec.rb
|
|
@@ -250,16 +281,29 @@ files:
|
|
|
250
281
|
- spec/support/fixtures/vcr_cassettes/audit_trail/create_events_duplicate_idempotency_key_different_payload.yml
|
|
251
282
|
- spec/support/fixtures/vcr_cassettes/audit_trail/get_events.yml
|
|
252
283
|
- spec/support/fixtures/vcr_cassettes/base/execute_request_unauthenticated.yml
|
|
284
|
+
- spec/support/fixtures/vcr_cassettes/directory_sync/delete_directory.yml
|
|
253
285
|
- spec/support/fixtures/vcr_cassettes/directory_sync/get_group.yml
|
|
254
286
|
- spec/support/fixtures/vcr_cassettes/directory_sync/get_group_with_invalid_id.yml
|
|
255
287
|
- spec/support/fixtures/vcr_cassettes/directory_sync/get_user.yml
|
|
256
288
|
- spec/support/fixtures/vcr_cassettes/directory_sync/get_user_with_invalid_id.yml
|
|
257
|
-
- spec/support/fixtures/vcr_cassettes/directory_sync/list_directories.yml
|
|
258
|
-
- spec/support/fixtures/vcr_cassettes/directory_sync/
|
|
259
|
-
- spec/support/fixtures/vcr_cassettes/directory_sync/
|
|
260
|
-
- spec/support/fixtures/vcr_cassettes/directory_sync/
|
|
261
|
-
- spec/support/fixtures/vcr_cassettes/directory_sync/
|
|
262
|
-
- spec/support/fixtures/vcr_cassettes/directory_sync/
|
|
289
|
+
- spec/support/fixtures/vcr_cassettes/directory_sync/list_directories/with_after.yml
|
|
290
|
+
- spec/support/fixtures/vcr_cassettes/directory_sync/list_directories/with_before.yml
|
|
291
|
+
- spec/support/fixtures/vcr_cassettes/directory_sync/list_directories/with_domain.yml
|
|
292
|
+
- spec/support/fixtures/vcr_cassettes/directory_sync/list_directories/with_limit.yml
|
|
293
|
+
- spec/support/fixtures/vcr_cassettes/directory_sync/list_directories/with_no_options.yml
|
|
294
|
+
- spec/support/fixtures/vcr_cassettes/directory_sync/list_directories/with_search.yml
|
|
295
|
+
- spec/support/fixtures/vcr_cassettes/directory_sync/list_groups/with_after.yml
|
|
296
|
+
- spec/support/fixtures/vcr_cassettes/directory_sync/list_groups/with_before.yml
|
|
297
|
+
- spec/support/fixtures/vcr_cassettes/directory_sync/list_groups/with_directory.yml
|
|
298
|
+
- spec/support/fixtures/vcr_cassettes/directory_sync/list_groups/with_limit.yml
|
|
299
|
+
- spec/support/fixtures/vcr_cassettes/directory_sync/list_groups/with_no_options.yml
|
|
300
|
+
- spec/support/fixtures/vcr_cassettes/directory_sync/list_groups/with_user.yml
|
|
301
|
+
- spec/support/fixtures/vcr_cassettes/directory_sync/list_users/with_after.yml
|
|
302
|
+
- spec/support/fixtures/vcr_cassettes/directory_sync/list_users/with_before.yml
|
|
303
|
+
- spec/support/fixtures/vcr_cassettes/directory_sync/list_users/with_directory.yml
|
|
304
|
+
- spec/support/fixtures/vcr_cassettes/directory_sync/list_users/with_group.yml
|
|
305
|
+
- spec/support/fixtures/vcr_cassettes/directory_sync/list_users/with_limit.yml
|
|
306
|
+
- spec/support/fixtures/vcr_cassettes/directory_sync/list_users/with_no_options.yml
|
|
263
307
|
- spec/support/fixtures/vcr_cassettes/organization/create.yml
|
|
264
308
|
- spec/support/fixtures/vcr_cassettes/organization/create_invalid.yml
|
|
265
309
|
- spec/support/fixtures/vcr_cassettes/organization/list.yml
|
|
@@ -267,20 +311,22 @@ files:
|
|
|
267
311
|
- spec/support/fixtures/vcr_cassettes/passwordless/create_session_invalid.yml
|
|
268
312
|
- spec/support/fixtures/vcr_cassettes/passwordless/send_session.yml
|
|
269
313
|
- spec/support/fixtures/vcr_cassettes/passwordless/send_session_invalid.yml
|
|
270
|
-
- spec/support/fixtures/vcr_cassettes/portal/
|
|
314
|
+
- spec/support/fixtures/vcr_cassettes/portal/generate_link_dsync.yml
|
|
271
315
|
- spec/support/fixtures/vcr_cassettes/portal/generate_link_invalid.yml
|
|
316
|
+
- spec/support/fixtures/vcr_cassettes/portal/generate_link_sso.yml
|
|
272
317
|
- spec/support/fixtures/vcr_cassettes/sso/create_connection_with_invalid_source.yml
|
|
273
318
|
- spec/support/fixtures/vcr_cassettes/sso/create_connection_with_valid_source.yml
|
|
274
319
|
- spec/support/fixtures/vcr_cassettes/sso/delete_connection_with_invalid_id.yml
|
|
275
320
|
- spec/support/fixtures/vcr_cassettes/sso/delete_connection_with_valid_id.yml
|
|
276
321
|
- spec/support/fixtures/vcr_cassettes/sso/get_connection_with_invalid_id.yml
|
|
277
322
|
- spec/support/fixtures/vcr_cassettes/sso/get_connection_with_valid_id.yml
|
|
278
|
-
- spec/support/fixtures/vcr_cassettes/sso/list_connections.yml
|
|
279
|
-
- spec/support/fixtures/vcr_cassettes/sso/
|
|
280
|
-
- spec/support/fixtures/vcr_cassettes/sso/
|
|
281
|
-
- spec/support/fixtures/vcr_cassettes/sso/
|
|
282
|
-
- spec/support/fixtures/vcr_cassettes/sso/
|
|
283
|
-
- spec/support/fixtures/vcr_cassettes/sso/
|
|
323
|
+
- spec/support/fixtures/vcr_cassettes/sso/list_connections/with_after.yml
|
|
324
|
+
- spec/support/fixtures/vcr_cassettes/sso/list_connections/with_before.yml
|
|
325
|
+
- spec/support/fixtures/vcr_cassettes/sso/list_connections/with_connection_type.yml
|
|
326
|
+
- spec/support/fixtures/vcr_cassettes/sso/list_connections/with_domain.yml
|
|
327
|
+
- spec/support/fixtures/vcr_cassettes/sso/list_connections/with_limit.yml
|
|
328
|
+
- spec/support/fixtures/vcr_cassettes/sso/list_connections/with_no_options.yml
|
|
329
|
+
- spec/support/fixtures/vcr_cassettes/sso/list_connections/with_organization_id.yml
|
|
284
330
|
- spec/support/profile.txt
|
|
285
331
|
- workos.gemspec
|
|
286
332
|
homepage: https://github.com/workos-inc/workos-ruby
|
|
@@ -288,23 +334,23 @@ licenses:
|
|
|
288
334
|
- MIT
|
|
289
335
|
metadata:
|
|
290
336
|
documentation_uri: https://docs.workos.com/sdk/ruby
|
|
291
|
-
post_install_message:
|
|
337
|
+
post_install_message:
|
|
292
338
|
rdoc_options: []
|
|
293
339
|
require_paths:
|
|
294
340
|
- lib
|
|
295
341
|
required_ruby_version: !ruby/object:Gem::Requirement
|
|
296
342
|
requirements:
|
|
297
|
-
- - "
|
|
343
|
+
- - "~>"
|
|
298
344
|
- !ruby/object:Gem::Version
|
|
299
|
-
version: '0'
|
|
345
|
+
version: '3.0'
|
|
300
346
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
301
347
|
requirements:
|
|
302
348
|
- - ">="
|
|
303
349
|
- !ruby/object:Gem::Version
|
|
304
350
|
version: '0'
|
|
305
351
|
requirements: []
|
|
306
|
-
rubygems_version: 3.2.
|
|
307
|
-
signing_key:
|
|
352
|
+
rubygems_version: 3.2.16
|
|
353
|
+
signing_key:
|
|
308
354
|
specification_version: 4
|
|
309
355
|
summary: API client for WorkOS
|
|
310
356
|
test_files:
|
|
@@ -322,16 +368,29 @@ test_files:
|
|
|
322
368
|
- spec/support/fixtures/vcr_cassettes/audit_trail/create_events_duplicate_idempotency_key_different_payload.yml
|
|
323
369
|
- spec/support/fixtures/vcr_cassettes/audit_trail/get_events.yml
|
|
324
370
|
- spec/support/fixtures/vcr_cassettes/base/execute_request_unauthenticated.yml
|
|
371
|
+
- spec/support/fixtures/vcr_cassettes/directory_sync/delete_directory.yml
|
|
325
372
|
- spec/support/fixtures/vcr_cassettes/directory_sync/get_group.yml
|
|
326
373
|
- spec/support/fixtures/vcr_cassettes/directory_sync/get_group_with_invalid_id.yml
|
|
327
374
|
- spec/support/fixtures/vcr_cassettes/directory_sync/get_user.yml
|
|
328
375
|
- spec/support/fixtures/vcr_cassettes/directory_sync/get_user_with_invalid_id.yml
|
|
329
|
-
- spec/support/fixtures/vcr_cassettes/directory_sync/list_directories.yml
|
|
330
|
-
- spec/support/fixtures/vcr_cassettes/directory_sync/
|
|
331
|
-
- spec/support/fixtures/vcr_cassettes/directory_sync/
|
|
332
|
-
- spec/support/fixtures/vcr_cassettes/directory_sync/
|
|
333
|
-
- spec/support/fixtures/vcr_cassettes/directory_sync/
|
|
334
|
-
- spec/support/fixtures/vcr_cassettes/directory_sync/
|
|
376
|
+
- spec/support/fixtures/vcr_cassettes/directory_sync/list_directories/with_after.yml
|
|
377
|
+
- spec/support/fixtures/vcr_cassettes/directory_sync/list_directories/with_before.yml
|
|
378
|
+
- spec/support/fixtures/vcr_cassettes/directory_sync/list_directories/with_domain.yml
|
|
379
|
+
- spec/support/fixtures/vcr_cassettes/directory_sync/list_directories/with_limit.yml
|
|
380
|
+
- spec/support/fixtures/vcr_cassettes/directory_sync/list_directories/with_no_options.yml
|
|
381
|
+
- spec/support/fixtures/vcr_cassettes/directory_sync/list_directories/with_search.yml
|
|
382
|
+
- spec/support/fixtures/vcr_cassettes/directory_sync/list_groups/with_after.yml
|
|
383
|
+
- spec/support/fixtures/vcr_cassettes/directory_sync/list_groups/with_before.yml
|
|
384
|
+
- spec/support/fixtures/vcr_cassettes/directory_sync/list_groups/with_directory.yml
|
|
385
|
+
- spec/support/fixtures/vcr_cassettes/directory_sync/list_groups/with_limit.yml
|
|
386
|
+
- spec/support/fixtures/vcr_cassettes/directory_sync/list_groups/with_no_options.yml
|
|
387
|
+
- spec/support/fixtures/vcr_cassettes/directory_sync/list_groups/with_user.yml
|
|
388
|
+
- spec/support/fixtures/vcr_cassettes/directory_sync/list_users/with_after.yml
|
|
389
|
+
- spec/support/fixtures/vcr_cassettes/directory_sync/list_users/with_before.yml
|
|
390
|
+
- spec/support/fixtures/vcr_cassettes/directory_sync/list_users/with_directory.yml
|
|
391
|
+
- spec/support/fixtures/vcr_cassettes/directory_sync/list_users/with_group.yml
|
|
392
|
+
- spec/support/fixtures/vcr_cassettes/directory_sync/list_users/with_limit.yml
|
|
393
|
+
- spec/support/fixtures/vcr_cassettes/directory_sync/list_users/with_no_options.yml
|
|
335
394
|
- spec/support/fixtures/vcr_cassettes/organization/create.yml
|
|
336
395
|
- spec/support/fixtures/vcr_cassettes/organization/create_invalid.yml
|
|
337
396
|
- spec/support/fixtures/vcr_cassettes/organization/list.yml
|
|
@@ -339,18 +398,20 @@ test_files:
|
|
|
339
398
|
- spec/support/fixtures/vcr_cassettes/passwordless/create_session_invalid.yml
|
|
340
399
|
- spec/support/fixtures/vcr_cassettes/passwordless/send_session.yml
|
|
341
400
|
- spec/support/fixtures/vcr_cassettes/passwordless/send_session_invalid.yml
|
|
342
|
-
- spec/support/fixtures/vcr_cassettes/portal/
|
|
401
|
+
- spec/support/fixtures/vcr_cassettes/portal/generate_link_dsync.yml
|
|
343
402
|
- spec/support/fixtures/vcr_cassettes/portal/generate_link_invalid.yml
|
|
403
|
+
- spec/support/fixtures/vcr_cassettes/portal/generate_link_sso.yml
|
|
344
404
|
- spec/support/fixtures/vcr_cassettes/sso/create_connection_with_invalid_source.yml
|
|
345
405
|
- spec/support/fixtures/vcr_cassettes/sso/create_connection_with_valid_source.yml
|
|
346
406
|
- spec/support/fixtures/vcr_cassettes/sso/delete_connection_with_invalid_id.yml
|
|
347
407
|
- spec/support/fixtures/vcr_cassettes/sso/delete_connection_with_valid_id.yml
|
|
348
408
|
- spec/support/fixtures/vcr_cassettes/sso/get_connection_with_invalid_id.yml
|
|
349
409
|
- spec/support/fixtures/vcr_cassettes/sso/get_connection_with_valid_id.yml
|
|
350
|
-
- spec/support/fixtures/vcr_cassettes/sso/list_connections.yml
|
|
351
|
-
- spec/support/fixtures/vcr_cassettes/sso/
|
|
352
|
-
- spec/support/fixtures/vcr_cassettes/sso/
|
|
353
|
-
- spec/support/fixtures/vcr_cassettes/sso/
|
|
354
|
-
- spec/support/fixtures/vcr_cassettes/sso/
|
|
355
|
-
- spec/support/fixtures/vcr_cassettes/sso/
|
|
410
|
+
- spec/support/fixtures/vcr_cassettes/sso/list_connections/with_after.yml
|
|
411
|
+
- spec/support/fixtures/vcr_cassettes/sso/list_connections/with_before.yml
|
|
412
|
+
- spec/support/fixtures/vcr_cassettes/sso/list_connections/with_connection_type.yml
|
|
413
|
+
- spec/support/fixtures/vcr_cassettes/sso/list_connections/with_domain.yml
|
|
414
|
+
- spec/support/fixtures/vcr_cassettes/sso/list_connections/with_limit.yml
|
|
415
|
+
- spec/support/fixtures/vcr_cassettes/sso/list_connections/with_no_options.yml
|
|
416
|
+
- spec/support/fixtures/vcr_cassettes/sso/list_connections/with_organization_id.yml
|
|
356
417
|
- spec/support/profile.txt
|