workos 0.10.0 → 1.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/.rubocop.yml +3 -1
- data/.ruby-version +1 -1
- data/.semaphore/semaphore.yml +10 -4
- data/Gemfile.lock +49 -36
- data/LICENSE +1 -1
- data/README.md +13 -230
- data/lib/workos/client.rb +24 -6
- data/lib/workos/connection.rb +12 -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 +63 -0
- data/lib/workos/organizations.rb +150 -0
- data/lib/workos/passwordless.rb +4 -0
- data/lib/workos/portal.rb +1 -81
- data/lib/workos/profile.rb +9 -12
- data/lib/workos/profile_and_token.rb +28 -0
- data/lib/workos/sso.rb +56 -104
- data/lib/workos/types/connection_struct.rb +3 -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 +19 -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 +5 -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/organizations_spec.rb +164 -0
- data/spec/lib/workos/passwordless_spec.rb +0 -8
- data/spec/lib/workos/portal_spec.rb +17 -123
- data/spec/lib/workos/sso_spec.rb +172 -173
- 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/organization/get.yml +73 -0
- data/spec/support/fixtures/vcr_cassettes/organization/get_invalid.yml +72 -0
- data/spec/support/fixtures/vcr_cassettes/organization/update.yml +73 -0
- data/spec/support/fixtures/vcr_cassettes/organization/update_invalid.yml +73 -0
- 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/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/spec/support/fixtures/vcr_cassettes/sso/profile.yml +74 -0
- data/workos.gemspec +2 -0
- metadata +114 -43
- 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/create_connection_with_invalid_source.yml +0 -58
- data/spec/support/fixtures/vcr_cassettes/sso/create_connection_with_valid_source.yml +0 -63
- 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:
|
|
4
|
+
version: 1.1.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-05-24 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: sorbet-runtime
|
|
@@ -211,15 +211,23 @@ 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
|
|
220
|
+
- lib/workos/organizations.rb
|
|
217
221
|
- lib/workos/passwordless.rb
|
|
218
222
|
- lib/workos/portal.rb
|
|
219
223
|
- lib/workos/profile.rb
|
|
224
|
+
- lib/workos/profile_and_token.rb
|
|
220
225
|
- lib/workos/sso.rb
|
|
221
226
|
- lib/workos/types.rb
|
|
222
227
|
- lib/workos/types/connection_struct.rb
|
|
228
|
+
- lib/workos/types/directory_group_struct.rb
|
|
229
|
+
- lib/workos/types/directory_struct.rb
|
|
230
|
+
- lib/workos/types/directory_user_struct.rb
|
|
223
231
|
- lib/workos/types/intent_enum.rb
|
|
224
232
|
- lib/workos/types/list_struct.rb
|
|
225
233
|
- lib/workos/types/organization_struct.rb
|
|
@@ -228,17 +236,43 @@ files:
|
|
|
228
236
|
- lib/workos/types/provider_enum.rb
|
|
229
237
|
- lib/workos/version.rb
|
|
230
238
|
- sorbet/config
|
|
231
|
-
- sorbet/rbi/
|
|
232
|
-
- sorbet/rbi/
|
|
233
|
-
- sorbet/rbi/
|
|
239
|
+
- sorbet/rbi/gems/addressable.rbi
|
|
240
|
+
- sorbet/rbi/gems/ast.rbi
|
|
241
|
+
- sorbet/rbi/gems/codecov.rbi
|
|
242
|
+
- sorbet/rbi/gems/crack.rbi
|
|
243
|
+
- sorbet/rbi/gems/docile.rbi
|
|
244
|
+
- sorbet/rbi/gems/hashdiff.rbi
|
|
245
|
+
- sorbet/rbi/gems/parallel.rbi
|
|
246
|
+
- sorbet/rbi/gems/parser.rbi
|
|
247
|
+
- sorbet/rbi/gems/public_suffix.rbi
|
|
248
|
+
- sorbet/rbi/gems/rainbow.rbi
|
|
249
|
+
- sorbet/rbi/gems/rake.rbi
|
|
250
|
+
- sorbet/rbi/gems/regexp_parser.rbi
|
|
251
|
+
- sorbet/rbi/gems/rexml.rbi
|
|
252
|
+
- sorbet/rbi/gems/rspec-core.rbi
|
|
253
|
+
- sorbet/rbi/gems/rspec-expectations.rbi
|
|
254
|
+
- sorbet/rbi/gems/rspec-mocks.rbi
|
|
255
|
+
- sorbet/rbi/gems/rspec-support.rbi
|
|
256
|
+
- sorbet/rbi/gems/rspec.rbi
|
|
257
|
+
- sorbet/rbi/gems/rubocop-ast.rbi
|
|
258
|
+
- sorbet/rbi/gems/rubocop.rbi
|
|
259
|
+
- sorbet/rbi/gems/ruby-progressbar.rbi
|
|
260
|
+
- sorbet/rbi/gems/simplecov-html.rbi
|
|
261
|
+
- sorbet/rbi/gems/simplecov.rbi
|
|
262
|
+
- sorbet/rbi/gems/unicode-display_width.rbi
|
|
263
|
+
- sorbet/rbi/gems/vcr.rbi
|
|
264
|
+
- sorbet/rbi/gems/webmock.rbi
|
|
265
|
+
- sorbet/rbi/gems/yard.rbi
|
|
234
266
|
- 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/
|
|
267
|
+
- sorbet/rbi/sorbet-typed/lib/rake/all/rake.rbi
|
|
268
|
+
- sorbet/rbi/sorbet-typed/lib/rspec-core/all/rspec-core.rbi
|
|
269
|
+
- sorbet/rbi/sorbet-typed/lib/rubocop/~>0.85/rubocop.rbi
|
|
270
|
+
- sorbet/rbi/sorbet-typed/lib/yard/all/yard.rbi
|
|
238
271
|
- sorbet/rbi/todo.rbi
|
|
239
272
|
- spec/lib/workos/audit_trail_spec.rb
|
|
240
273
|
- spec/lib/workos/base_spec.rb
|
|
241
274
|
- spec/lib/workos/directory_sync_spec.rb
|
|
275
|
+
- spec/lib/workos/organizations_spec.rb
|
|
242
276
|
- spec/lib/workos/passwordless_spec.rb
|
|
243
277
|
- spec/lib/workos/portal_spec.rb
|
|
244
278
|
- spec/lib/workos/sso_spec.rb
|
|
@@ -250,37 +284,55 @@ files:
|
|
|
250
284
|
- spec/support/fixtures/vcr_cassettes/audit_trail/create_events_duplicate_idempotency_key_different_payload.yml
|
|
251
285
|
- spec/support/fixtures/vcr_cassettes/audit_trail/get_events.yml
|
|
252
286
|
- spec/support/fixtures/vcr_cassettes/base/execute_request_unauthenticated.yml
|
|
287
|
+
- spec/support/fixtures/vcr_cassettes/directory_sync/delete_directory.yml
|
|
253
288
|
- spec/support/fixtures/vcr_cassettes/directory_sync/get_group.yml
|
|
254
289
|
- spec/support/fixtures/vcr_cassettes/directory_sync/get_group_with_invalid_id.yml
|
|
255
290
|
- spec/support/fixtures/vcr_cassettes/directory_sync/get_user.yml
|
|
256
291
|
- 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/
|
|
292
|
+
- spec/support/fixtures/vcr_cassettes/directory_sync/list_directories/with_after.yml
|
|
293
|
+
- spec/support/fixtures/vcr_cassettes/directory_sync/list_directories/with_before.yml
|
|
294
|
+
- spec/support/fixtures/vcr_cassettes/directory_sync/list_directories/with_domain.yml
|
|
295
|
+
- spec/support/fixtures/vcr_cassettes/directory_sync/list_directories/with_limit.yml
|
|
296
|
+
- spec/support/fixtures/vcr_cassettes/directory_sync/list_directories/with_no_options.yml
|
|
297
|
+
- spec/support/fixtures/vcr_cassettes/directory_sync/list_directories/with_search.yml
|
|
298
|
+
- spec/support/fixtures/vcr_cassettes/directory_sync/list_groups/with_after.yml
|
|
299
|
+
- spec/support/fixtures/vcr_cassettes/directory_sync/list_groups/with_before.yml
|
|
300
|
+
- spec/support/fixtures/vcr_cassettes/directory_sync/list_groups/with_directory.yml
|
|
301
|
+
- spec/support/fixtures/vcr_cassettes/directory_sync/list_groups/with_limit.yml
|
|
302
|
+
- spec/support/fixtures/vcr_cassettes/directory_sync/list_groups/with_no_options.yml
|
|
303
|
+
- spec/support/fixtures/vcr_cassettes/directory_sync/list_groups/with_user.yml
|
|
304
|
+
- spec/support/fixtures/vcr_cassettes/directory_sync/list_users/with_after.yml
|
|
305
|
+
- spec/support/fixtures/vcr_cassettes/directory_sync/list_users/with_before.yml
|
|
306
|
+
- spec/support/fixtures/vcr_cassettes/directory_sync/list_users/with_directory.yml
|
|
307
|
+
- spec/support/fixtures/vcr_cassettes/directory_sync/list_users/with_group.yml
|
|
308
|
+
- spec/support/fixtures/vcr_cassettes/directory_sync/list_users/with_limit.yml
|
|
309
|
+
- spec/support/fixtures/vcr_cassettes/directory_sync/list_users/with_no_options.yml
|
|
263
310
|
- spec/support/fixtures/vcr_cassettes/organization/create.yml
|
|
264
311
|
- spec/support/fixtures/vcr_cassettes/organization/create_invalid.yml
|
|
312
|
+
- spec/support/fixtures/vcr_cassettes/organization/get.yml
|
|
313
|
+
- spec/support/fixtures/vcr_cassettes/organization/get_invalid.yml
|
|
265
314
|
- spec/support/fixtures/vcr_cassettes/organization/list.yml
|
|
315
|
+
- spec/support/fixtures/vcr_cassettes/organization/update.yml
|
|
316
|
+
- spec/support/fixtures/vcr_cassettes/organization/update_invalid.yml
|
|
266
317
|
- spec/support/fixtures/vcr_cassettes/passwordless/create_session.yml
|
|
267
318
|
- spec/support/fixtures/vcr_cassettes/passwordless/create_session_invalid.yml
|
|
268
319
|
- spec/support/fixtures/vcr_cassettes/passwordless/send_session.yml
|
|
269
320
|
- spec/support/fixtures/vcr_cassettes/passwordless/send_session_invalid.yml
|
|
270
|
-
- spec/support/fixtures/vcr_cassettes/portal/
|
|
321
|
+
- spec/support/fixtures/vcr_cassettes/portal/generate_link_dsync.yml
|
|
271
322
|
- spec/support/fixtures/vcr_cassettes/portal/generate_link_invalid.yml
|
|
272
|
-
- spec/support/fixtures/vcr_cassettes/
|
|
273
|
-
- spec/support/fixtures/vcr_cassettes/sso/create_connection_with_valid_source.yml
|
|
323
|
+
- spec/support/fixtures/vcr_cassettes/portal/generate_link_sso.yml
|
|
274
324
|
- spec/support/fixtures/vcr_cassettes/sso/delete_connection_with_invalid_id.yml
|
|
275
325
|
- spec/support/fixtures/vcr_cassettes/sso/delete_connection_with_valid_id.yml
|
|
276
326
|
- spec/support/fixtures/vcr_cassettes/sso/get_connection_with_invalid_id.yml
|
|
277
327
|
- 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/
|
|
328
|
+
- spec/support/fixtures/vcr_cassettes/sso/list_connections/with_after.yml
|
|
329
|
+
- spec/support/fixtures/vcr_cassettes/sso/list_connections/with_before.yml
|
|
330
|
+
- spec/support/fixtures/vcr_cassettes/sso/list_connections/with_connection_type.yml
|
|
331
|
+
- spec/support/fixtures/vcr_cassettes/sso/list_connections/with_domain.yml
|
|
332
|
+
- spec/support/fixtures/vcr_cassettes/sso/list_connections/with_limit.yml
|
|
333
|
+
- spec/support/fixtures/vcr_cassettes/sso/list_connections/with_no_options.yml
|
|
334
|
+
- spec/support/fixtures/vcr_cassettes/sso/list_connections/with_organization_id.yml
|
|
335
|
+
- spec/support/fixtures/vcr_cassettes/sso/profile.yml
|
|
284
336
|
- spec/support/profile.txt
|
|
285
337
|
- workos.gemspec
|
|
286
338
|
homepage: https://github.com/workos-inc/workos-ruby
|
|
@@ -288,7 +340,7 @@ licenses:
|
|
|
288
340
|
- MIT
|
|
289
341
|
metadata:
|
|
290
342
|
documentation_uri: https://docs.workos.com/sdk/ruby
|
|
291
|
-
post_install_message:
|
|
343
|
+
post_install_message:
|
|
292
344
|
rdoc_options: []
|
|
293
345
|
require_paths:
|
|
294
346
|
- lib
|
|
@@ -296,21 +348,22 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
296
348
|
requirements:
|
|
297
349
|
- - ">="
|
|
298
350
|
- !ruby/object:Gem::Version
|
|
299
|
-
version: '
|
|
351
|
+
version: '2.5'
|
|
300
352
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
301
353
|
requirements:
|
|
302
354
|
- - ">="
|
|
303
355
|
- !ruby/object:Gem::Version
|
|
304
356
|
version: '0'
|
|
305
357
|
requirements: []
|
|
306
|
-
rubygems_version: 3.2.
|
|
307
|
-
signing_key:
|
|
358
|
+
rubygems_version: 3.2.17
|
|
359
|
+
signing_key:
|
|
308
360
|
specification_version: 4
|
|
309
361
|
summary: API client for WorkOS
|
|
310
362
|
test_files:
|
|
311
363
|
- spec/lib/workos/audit_trail_spec.rb
|
|
312
364
|
- spec/lib/workos/base_spec.rb
|
|
313
365
|
- spec/lib/workos/directory_sync_spec.rb
|
|
366
|
+
- spec/lib/workos/organizations_spec.rb
|
|
314
367
|
- spec/lib/workos/passwordless_spec.rb
|
|
315
368
|
- spec/lib/workos/portal_spec.rb
|
|
316
369
|
- spec/lib/workos/sso_spec.rb
|
|
@@ -322,35 +375,53 @@ test_files:
|
|
|
322
375
|
- spec/support/fixtures/vcr_cassettes/audit_trail/create_events_duplicate_idempotency_key_different_payload.yml
|
|
323
376
|
- spec/support/fixtures/vcr_cassettes/audit_trail/get_events.yml
|
|
324
377
|
- spec/support/fixtures/vcr_cassettes/base/execute_request_unauthenticated.yml
|
|
378
|
+
- spec/support/fixtures/vcr_cassettes/directory_sync/delete_directory.yml
|
|
325
379
|
- spec/support/fixtures/vcr_cassettes/directory_sync/get_group.yml
|
|
326
380
|
- spec/support/fixtures/vcr_cassettes/directory_sync/get_group_with_invalid_id.yml
|
|
327
381
|
- spec/support/fixtures/vcr_cassettes/directory_sync/get_user.yml
|
|
328
382
|
- 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/
|
|
383
|
+
- spec/support/fixtures/vcr_cassettes/directory_sync/list_directories/with_after.yml
|
|
384
|
+
- spec/support/fixtures/vcr_cassettes/directory_sync/list_directories/with_before.yml
|
|
385
|
+
- spec/support/fixtures/vcr_cassettes/directory_sync/list_directories/with_domain.yml
|
|
386
|
+
- spec/support/fixtures/vcr_cassettes/directory_sync/list_directories/with_limit.yml
|
|
387
|
+
- spec/support/fixtures/vcr_cassettes/directory_sync/list_directories/with_no_options.yml
|
|
388
|
+
- spec/support/fixtures/vcr_cassettes/directory_sync/list_directories/with_search.yml
|
|
389
|
+
- spec/support/fixtures/vcr_cassettes/directory_sync/list_groups/with_after.yml
|
|
390
|
+
- spec/support/fixtures/vcr_cassettes/directory_sync/list_groups/with_before.yml
|
|
391
|
+
- spec/support/fixtures/vcr_cassettes/directory_sync/list_groups/with_directory.yml
|
|
392
|
+
- spec/support/fixtures/vcr_cassettes/directory_sync/list_groups/with_limit.yml
|
|
393
|
+
- spec/support/fixtures/vcr_cassettes/directory_sync/list_groups/with_no_options.yml
|
|
394
|
+
- spec/support/fixtures/vcr_cassettes/directory_sync/list_groups/with_user.yml
|
|
395
|
+
- spec/support/fixtures/vcr_cassettes/directory_sync/list_users/with_after.yml
|
|
396
|
+
- spec/support/fixtures/vcr_cassettes/directory_sync/list_users/with_before.yml
|
|
397
|
+
- spec/support/fixtures/vcr_cassettes/directory_sync/list_users/with_directory.yml
|
|
398
|
+
- spec/support/fixtures/vcr_cassettes/directory_sync/list_users/with_group.yml
|
|
399
|
+
- spec/support/fixtures/vcr_cassettes/directory_sync/list_users/with_limit.yml
|
|
400
|
+
- spec/support/fixtures/vcr_cassettes/directory_sync/list_users/with_no_options.yml
|
|
335
401
|
- spec/support/fixtures/vcr_cassettes/organization/create.yml
|
|
336
402
|
- spec/support/fixtures/vcr_cassettes/organization/create_invalid.yml
|
|
403
|
+
- spec/support/fixtures/vcr_cassettes/organization/get.yml
|
|
404
|
+
- spec/support/fixtures/vcr_cassettes/organization/get_invalid.yml
|
|
337
405
|
- spec/support/fixtures/vcr_cassettes/organization/list.yml
|
|
406
|
+
- spec/support/fixtures/vcr_cassettes/organization/update.yml
|
|
407
|
+
- spec/support/fixtures/vcr_cassettes/organization/update_invalid.yml
|
|
338
408
|
- spec/support/fixtures/vcr_cassettes/passwordless/create_session.yml
|
|
339
409
|
- spec/support/fixtures/vcr_cassettes/passwordless/create_session_invalid.yml
|
|
340
410
|
- spec/support/fixtures/vcr_cassettes/passwordless/send_session.yml
|
|
341
411
|
- spec/support/fixtures/vcr_cassettes/passwordless/send_session_invalid.yml
|
|
342
|
-
- spec/support/fixtures/vcr_cassettes/portal/
|
|
412
|
+
- spec/support/fixtures/vcr_cassettes/portal/generate_link_dsync.yml
|
|
343
413
|
- spec/support/fixtures/vcr_cassettes/portal/generate_link_invalid.yml
|
|
344
|
-
- spec/support/fixtures/vcr_cassettes/
|
|
345
|
-
- spec/support/fixtures/vcr_cassettes/sso/create_connection_with_valid_source.yml
|
|
414
|
+
- spec/support/fixtures/vcr_cassettes/portal/generate_link_sso.yml
|
|
346
415
|
- spec/support/fixtures/vcr_cassettes/sso/delete_connection_with_invalid_id.yml
|
|
347
416
|
- spec/support/fixtures/vcr_cassettes/sso/delete_connection_with_valid_id.yml
|
|
348
417
|
- spec/support/fixtures/vcr_cassettes/sso/get_connection_with_invalid_id.yml
|
|
349
418
|
- 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/
|
|
419
|
+
- spec/support/fixtures/vcr_cassettes/sso/list_connections/with_after.yml
|
|
420
|
+
- spec/support/fixtures/vcr_cassettes/sso/list_connections/with_before.yml
|
|
421
|
+
- spec/support/fixtures/vcr_cassettes/sso/list_connections/with_connection_type.yml
|
|
422
|
+
- spec/support/fixtures/vcr_cassettes/sso/list_connections/with_domain.yml
|
|
423
|
+
- spec/support/fixtures/vcr_cassettes/sso/list_connections/with_limit.yml
|
|
424
|
+
- spec/support/fixtures/vcr_cassettes/sso/list_connections/with_no_options.yml
|
|
425
|
+
- spec/support/fixtures/vcr_cassettes/sso/list_connections/with_organization_id.yml
|
|
426
|
+
- spec/support/fixtures/vcr_cassettes/sso/profile.yml
|
|
356
427
|
- spec/support/profile.txt
|