workos 10.3.0 → 10.4.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 (96) hide show
  1. checksums.yaml +4 -4
  2. data/.github/workflows/ci.yml +2 -2
  3. data/.github/workflows/docs.yml +3 -3
  4. data/.github/workflows/lint.yml +2 -2
  5. data/.github/workflows/release-please.yml +3 -3
  6. data/.github/workflows/release.yml +2 -2
  7. data/.last-synced-sha +1 -1
  8. data/.oagen-manifest.json +234 -156
  9. data/.release-please-manifest.json +1 -1
  10. data/.ruby-version +1 -1
  11. data/CHANGELOG.md +174 -0
  12. data/Gemfile.lock +14 -14
  13. data/README.md +23 -0
  14. data/lib/workos/admin_portal.rb +2 -2
  15. data/lib/workos/agents.rb +5 -1
  16. data/lib/workos/api_keys/validate_api_key.rb +12 -1
  17. data/lib/workos/base_client.rb +6 -2
  18. data/lib/workos/configuration.rb +3 -2
  19. data/lib/workos/inflections.rb +2 -0
  20. data/lib/workos/multi_factor_auth.rb +1 -1
  21. data/lib/workos/pipes/connected_account.rb +9 -0
  22. data/lib/workos/pipes/create_data_integration.rb +3 -0
  23. data/lib/workos/pipes/data_integration.rb +3 -0
  24. data/lib/workos/pipes/data_integration_installation.rb +9 -0
  25. data/lib/workos/pipes/data_integrations_get_data_integration_authorize_url_request.rb +3 -0
  26. data/lib/workos/pipes/data_integrations_get_user_token_request.rb +11 -2
  27. data/lib/workos/pipes/data_integrations_list_response_data.rb +18 -3
  28. data/lib/workos/pipes/data_integrations_list_response_data_connected_account.rb +9 -0
  29. data/lib/workos/pipes/data_integrations_upsert_api_key_request.rb +25 -1
  30. data/lib/workos/pipes/data_integrations_upsert_client_credentials_request.rb +6 -0
  31. data/lib/workos/pipes/data_integrations_vend_credentials_request.rb +11 -2
  32. data/lib/workos/pipes.rb +324 -17
  33. data/lib/workos/session_manager.rb +11 -6
  34. data/lib/workos/shared/account_selection_required_error.rb +22 -0
  35. data/lib/workos/shared/pipe_connected_account.rb +15 -0
  36. data/lib/workos/shared/pipes_account_connection_add_failed.rb +34 -0
  37. data/lib/workos/shared/pipes_account_connection_add_failed_data.rb +49 -0
  38. data/lib/workos/shared/pipes_account_connection_connected.rb +34 -0
  39. data/lib/workos/shared/pipes_account_connection_connection_failed.rb +34 -0
  40. data/lib/workos/shared/pipes_account_connection_connection_failed_data.rb +7 -0
  41. data/lib/workos/shared/pipes_account_connection_disconnected.rb +34 -0
  42. data/lib/workos/shared/pipes_account_connection_reauthorization_needed.rb +34 -0
  43. data/lib/workos/shared/pipes_connected_account_connection_failed_data.rb +1 -40
  44. data/lib/workos/types/connected_account_connection_role.rb +13 -0
  45. data/lib/workos/types/create_data_integration_ownership.rb +13 -0
  46. data/lib/workos/types/create_webhook_endpoint_events.rb +6 -1
  47. data/lib/workos/types/data_integration_installation_connection_role.rb +9 -0
  48. data/lib/workos/types/data_integration_ownership.rb +9 -0
  49. data/lib/workos/types/data_integrations_get_data_integration_authorize_url_request_connection_owner.rb +9 -0
  50. data/lib/workos/types/data_integrations_get_user_token_request_connection_owner.rb +9 -0
  51. data/lib/workos/types/data_integrations_list_response_data_connected_account_connection_role.rb +9 -0
  52. data/lib/workos/types/data_integrations_list_response_data_connection_owner.rb +9 -0
  53. data/lib/workos/types/data_integrations_upsert_api_key_request_connection_owner.rb +9 -0
  54. data/lib/workos/types/data_integrations_upsert_client_credentials_request_connection_owner.rb +9 -0
  55. data/lib/workos/types/data_integrations_vend_credentials_request_connection_owner.rb +9 -0
  56. data/lib/workos/types/pipe_connected_account_auth_method.rb +9 -0
  57. data/lib/workos/types/pipe_connected_account_connection_role.rb +9 -0
  58. data/lib/workos/types/pipes_ownership.rb +9 -0
  59. data/lib/workos/types/resource_export_completed_data_resource_type.rb +3 -1
  60. data/lib/workos/user_management/authkit_oauth_resource.rb +34 -0
  61. data/lib/workos/user_management/create_authkit_oauth_resource.rb +22 -0
  62. data/lib/workos/user_management.rb +87 -0
  63. data/lib/workos/version.rb +1 -1
  64. data/rbi/workos/account_selection_required_error.rbi +30 -0
  65. data/rbi/workos/agents.rbi +2 -1
  66. data/rbi/workos/authkit_oauth_resource.rbi +54 -0
  67. data/rbi/workos/connected_account.rbi +18 -0
  68. data/rbi/workos/create_authkit_oauth_resource.rbi +30 -0
  69. data/rbi/workos/create_data_integration.rbi +6 -0
  70. data/rbi/workos/data_integration.rbi +6 -0
  71. data/rbi/workos/data_integration_installation.rbi +19 -1
  72. data/rbi/workos/data_integrations_get_data_integration_authorize_url_request.rbi +6 -0
  73. data/rbi/workos/data_integrations_get_user_token_request.rbi +18 -0
  74. data/rbi/workos/data_integrations_list_response_data.rbi +12 -0
  75. data/rbi/workos/data_integrations_list_response_data_connected_account.rbi +18 -0
  76. data/rbi/workos/data_integrations_upsert_api_key_request.rbi +12 -0
  77. data/rbi/workos/data_integrations_upsert_client_credentials_request.rbi +12 -0
  78. data/rbi/workos/data_integrations_vend_credentials_request.rbi +18 -0
  79. data/rbi/workos/pipe_connected_account.rbi +30 -0
  80. data/rbi/workos/pipes.rbi +122 -11
  81. data/rbi/workos/pipes_account_connection_add_failed.rbi +54 -0
  82. data/rbi/workos/pipes_account_connection_add_failed_data.rbi +84 -0
  83. data/rbi/workos/pipes_account_connection_connected.rbi +54 -0
  84. data/rbi/workos/pipes_account_connection_connection_failed.rbi +54 -0
  85. data/rbi/workos/pipes_account_connection_connection_failed_data.rbi +84 -0
  86. data/rbi/workos/pipes_account_connection_disconnected.rbi +54 -0
  87. data/rbi/workos/pipes_account_connection_reauthorization_needed.rbi +54 -0
  88. data/rbi/workos/pipes_connected_account_connection_failed_data.rbi +6 -0
  89. data/rbi/workos/user_management.rbi +28 -0
  90. data/test/workos/test_pipes.rb +64 -0
  91. data/test/workos/test_pipes_model_round_trip.rb +35 -5
  92. data/test/workos/test_session.rb +63 -0
  93. data/test/workos/test_shared_model_round_trip.rb +161 -0
  94. data/test/workos/test_user_management.rb +24 -0
  95. data/test/workos/test_user_management_model_round_trip.rb +32 -0
  96. metadata +35 -1
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: b11c529bc0ccad98b5d2673f1a4418ecc0c16bb0f8853d31710a05284f3e5057
4
- data.tar.gz: e61ed07475746367f32c38679ca20370604f4bbf8b8745751a650a9ed5ba5bb0
3
+ metadata.gz: 2854bfddf4d3e4d43973040402f06da675bb4e9822795e92fd4f3afb507a1104
4
+ data.tar.gz: '0809446c0eefbbb5eebb3eb959a8686a13bf688033f57ad80361712ee9c532f2'
5
5
  SHA512:
6
- metadata.gz: a5400bb7f9b56099600fcfe73ccbb9275a79dd58dfd3744c9785db3bf116f0f3ca7259b625fbcc081f537e3754ccfb3e530390c4efed4d20d9841f98fc92967b
7
- data.tar.gz: b3f0aa44d338fd95cd25d85ea422d31373c897adff105a58b3085f0c321338a23707a1546e1ace4ff9099f97461be568f50734d6c60bfe4e5be4601a49af5e68
6
+ metadata.gz: 98db8408947e90d5cdea108276a74776a44be618f43f5cda9246d874fcf4c6101bfb35bf31276b07a0991e7c8d08e7a57c95c6e723c83d0df0b22b572909dd1a
7
+ data.tar.gz: e8c52e2f219ace96c2cd8eabd76a911d7842284617ca31f5794bff4379e8bad958e01674decca4f02861f9896160cf85b863e20616dd4a6055f287a6500ffe06
@@ -21,8 +21,8 @@ jobs:
21
21
  - '3.4'
22
22
  - '4.0'
23
23
  steps:
24
- - uses: actions/checkout@d23441a48e516b6c34aea4fa41551a30e30af803 # 6.1.0
25
- - uses: ruby/setup-ruby@95ef2b042f9d7a56d8268cba8559e2842e2ad01b # 1.321.0
24
+ - uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
25
+ - uses: ruby/setup-ruby@a0102e0972be65f351c307e2d64b9314a57c8073 # v1.324.0
26
26
  with:
27
27
  ruby-version: ${{ matrix.ruby }}
28
28
  bundler-cache: true
@@ -14,8 +14,8 @@ jobs:
14
14
  permissions:
15
15
  contents: read
16
16
  steps:
17
- - uses: actions/checkout@d23441a48e516b6c34aea4fa41551a30e30af803 # 6.1.0
18
- - uses: ruby/setup-ruby@95ef2b042f9d7a56d8268cba8559e2842e2ad01b # 1.321.0
17
+ - uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
18
+ - uses: ruby/setup-ruby@a0102e0972be65f351c307e2d64b9314a57c8073 # v1.324.0
19
19
  with:
20
20
  bundler-cache: true
21
21
  - run: ./script/docs
@@ -45,5 +45,5 @@ jobs:
45
45
  url: ${{ steps.deployment.outputs.page_url }}
46
46
  runs-on: ubuntu-latest
47
47
  steps:
48
- - uses: actions/deploy-pages@cd2ce8fcbc39b97be8ca5fce6e763baed58fa128 # v5.0.0
48
+ - uses: actions/deploy-pages@368f82528645a54fb793d4d04e342629a3f51346 # v5.0.1
49
49
  id: deployment
@@ -15,8 +15,8 @@ jobs:
15
15
  name: Lint
16
16
  runs-on: ubuntu-latest
17
17
  steps:
18
- - uses: actions/checkout@d23441a48e516b6c34aea4fa41551a30e30af803 # 6.1.0
19
- - uses: ruby/setup-ruby@95ef2b042f9d7a56d8268cba8559e2842e2ad01b # 1.321.0
18
+ - uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
19
+ - uses: ruby/setup-ruby@a0102e0972be65f351c307e2d64b9314a57c8073 # v1.324.0
20
20
  with:
21
21
  bundler-cache: true
22
22
 
@@ -61,7 +61,7 @@ jobs:
61
61
  permission-pull-requests: write
62
62
 
63
63
  - name: Checkout release PR branch
64
- uses: actions/checkout@d23441a48e516b6c34aea4fa41551a30e30af803 # 6.1.0
64
+ uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
65
65
  with:
66
66
  ref: ${{ fromJSON(needs.release-please.outputs.pr).headBranchName }}
67
67
  token: ${{ steps.generate-token.outputs.token }}
@@ -155,7 +155,7 @@ jobs:
155
155
  git push
156
156
 
157
157
  - name: Set up Ruby
158
- uses: ruby/setup-ruby@95ef2b042f9d7a56d8268cba8559e2842e2ad01b # 1.321.0
158
+ uses: ruby/setup-ruby@a0102e0972be65f351c307e2d64b9314a57c8073 # v1.324.0
159
159
  with:
160
160
  ruby-version: ruby
161
161
 
@@ -190,7 +190,7 @@ jobs:
190
190
  permission-contents: write
191
191
  permission-pull-requests: write
192
192
 
193
- - uses: actions/checkout@d23441a48e516b6c34aea4fa41551a30e30af803 # 6.1.0
193
+ - uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
194
194
  with:
195
195
  token: ${{ steps.generate-token.outputs.token }}
196
196
 
@@ -22,10 +22,10 @@ jobs:
22
22
  role-to-assume: rg_oidc_akr_fn8dx45asckvmsnd2kka
23
23
 
24
24
  - name: Checkout
25
- uses: actions/checkout@d23441a48e516b6c34aea4fa41551a30e30af803 # 6.1.0
25
+ uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
26
26
 
27
27
  - name: Setup Ruby
28
- uses: ruby/setup-ruby@95ef2b042f9d7a56d8268cba8559e2842e2ad01b # 1.321.0
28
+ uses: ruby/setup-ruby@a0102e0972be65f351c307e2d64b9314a57c8073 # v1.324.0
29
29
  with:
30
30
  bundler-cache: true
31
31
 
data/.last-synced-sha CHANGED
@@ -1 +1 @@
1
- edb560e2be3f54b668ea8d11fa5a060c87ab5087
1
+ 13ba15b32754d2d635b7799ab779867df2b611d6
data/.oagen-manifest.json CHANGED
@@ -318,6 +318,7 @@
318
318
  "lib/workos/radar/radar_standalone_update_radar_attempt_request.rb",
319
319
  "lib/workos/radar/radar_standalone_update_radar_list_request.rb",
320
320
  "lib/workos/shared/access_token_agent_registration_credential_issued_data_detail.rb",
321
+ "lib/workos/shared/account_selection_required_error.rb",
321
322
  "lib/workos/shared/agent_blueprint_created.rb",
322
323
  "lib/workos/shared/agent_blueprint_created_data.rb",
323
324
  "lib/workos/shared/agent_blueprint_created_data_invocable_by.rb",
@@ -373,6 +374,13 @@
373
374
  "lib/workos/shared/group_member_removed_data.rb",
374
375
  "lib/workos/shared/group_updated.rb",
375
376
  "lib/workos/shared/pipe_connected_account.rb",
377
+ "lib/workos/shared/pipes_account_connection_add_failed.rb",
378
+ "lib/workos/shared/pipes_account_connection_add_failed_data.rb",
379
+ "lib/workos/shared/pipes_account_connection_connected.rb",
380
+ "lib/workos/shared/pipes_account_connection_connection_failed.rb",
381
+ "lib/workos/shared/pipes_account_connection_connection_failed_data.rb",
382
+ "lib/workos/shared/pipes_account_connection_disconnected.rb",
383
+ "lib/workos/shared/pipes_account_connection_reauthorization_needed.rb",
376
384
  "lib/workos/shared/pipes_connected_account_connected.rb",
377
385
  "lib/workos/shared/pipes_connected_account_connection_failed.rb",
378
386
  "lib/workos/shared/pipes_connected_account_connection_failed_data.rb",
@@ -459,6 +467,7 @@
459
467
  "lib/workos/types/authorization_assignment.rb",
460
468
  "lib/workos/types/claim_view_response_status.rb",
461
469
  "lib/workos/types/connected_account_auth_method.rb",
470
+ "lib/workos/types/connected_account_connection_role.rb",
462
471
  "lib/workos/types/connected_account_input_state.rb",
463
472
  "lib/workos/types/connected_account_state.rb",
464
473
  "lib/workos/types/connection_activated_data_connection_type.rb",
@@ -478,6 +487,7 @@
478
487
  "lib/workos/types/create_connection_oidc_options_id_token_signature_algorithm.rb",
479
488
  "lib/workos/types/create_connection_oidc_options_token_authentication_method.rb",
480
489
  "lib/workos/types/create_data_integration_auth_methods.rb",
490
+ "lib/workos/types/create_data_integration_ownership.rb",
481
491
  "lib/workos/types/create_user_invite_options_locale.rb",
482
492
  "lib/workos/types/create_user_password_hash_type.rb",
483
493
  "lib/workos/types/create_user_password_salt_position.rb",
@@ -490,11 +500,20 @@
490
500
  "lib/workos/types/data_integration_credentials_input_type.rb",
491
501
  "lib/workos/types/data_integration_credentials_response_error.rb",
492
502
  "lib/workos/types/data_integration_custom_provider_authenticate_via.rb",
503
+ "lib/workos/types/data_integration_installation_connection_role.rb",
504
+ "lib/workos/types/data_integration_ownership.rb",
493
505
  "lib/workos/types/data_integration_state.rb",
506
+ "lib/workos/types/data_integrations_get_data_integration_authorize_url_request_connection_owner.rb",
507
+ "lib/workos/types/data_integrations_get_user_token_request_connection_owner.rb",
494
508
  "lib/workos/types/data_integrations_list_response_data_auth_methods.rb",
495
509
  "lib/workos/types/data_integrations_list_response_data_connected_account_auth_method.rb",
510
+ "lib/workos/types/data_integrations_list_response_data_connected_account_connection_role.rb",
496
511
  "lib/workos/types/data_integrations_list_response_data_connected_account_state.rb",
512
+ "lib/workos/types/data_integrations_list_response_data_connection_owner.rb",
497
513
  "lib/workos/types/data_integrations_list_response_data_ownership.rb",
514
+ "lib/workos/types/data_integrations_upsert_api_key_request_connection_owner.rb",
515
+ "lib/workos/types/data_integrations_upsert_client_credentials_request_connection_owner.rb",
516
+ "lib/workos/types/data_integrations_vend_credentials_request_connection_owner.rb",
498
517
  "lib/workos/types/directory_state.rb",
499
518
  "lib/workos/types/directory_type.rb",
500
519
  "lib/workos/types/directory_user_state.rb",
@@ -545,7 +564,10 @@
545
564
  "lib/workos/types/pagination_order.rb",
546
565
  "lib/workos/types/patch_connection_oidc_options_id_token_signature_algorithm.rb",
547
566
  "lib/workos/types/patch_connection_oidc_options_token_authentication_method.rb",
567
+ "lib/workos/types/pipe_connected_account_auth_method.rb",
568
+ "lib/workos/types/pipe_connected_account_connection_role.rb",
548
569
  "lib/workos/types/pipe_connected_account_state.rb",
570
+ "lib/workos/types/pipes_ownership.rb",
549
571
  "lib/workos/types/profile_connection_type.rb",
550
572
  "lib/workos/types/radar_list_action.rb",
551
573
  "lib/workos/types/radar_list_type.rb",
@@ -657,10 +679,12 @@
657
679
  "lib/workos/user_management/authentication_sso_timed_out_data.rb",
658
680
  "lib/workos/user_management/authentication_sso_timed_out_data_error.rb",
659
681
  "lib/workos/user_management/authentication_sso_timed_out_data_sso.rb",
682
+ "lib/workos/user_management/authkit_oauth_resource.rb",
660
683
  "lib/workos/user_management/authorization_code_session_authenticate_request.rb",
661
684
  "lib/workos/user_management/authorized_connect_application_list_data.rb",
662
685
  "lib/workos/user_management/confirm_email_change.rb",
663
686
  "lib/workos/user_management/cors_origin_response.rb",
687
+ "lib/workos/user_management/create_authkit_oauth_resource.rb",
664
688
  "lib/workos/user_management/create_cors_origin.rb",
665
689
  "lib/workos/user_management/create_magic_code_and_return.rb",
666
690
  "lib/workos/user_management/create_password_reset.rb",
@@ -794,6 +818,7 @@
794
818
  "lib/workos/widgets/widget_session_token.rb",
795
819
  "lib/workos/widgets/widget_session_token_response.rb",
796
820
  "rbi/workos/access_token_agent_registration_credential_issued_data_detail.rbi",
821
+ "rbi/workos/account_selection_required_error.rbi",
797
822
  "rbi/workos/action_authentication_denied.rbi",
798
823
  "rbi/workos/action_authentication_denied_data.rbi",
799
824
  "rbi/workos/action_user_registration_denied.rbi",
@@ -962,6 +987,7 @@
962
987
  "rbi/workos/authentication_sso_timed_out_data.rbi",
963
988
  "rbi/workos/authentication_sso_timed_out_data_error.rbi",
964
989
  "rbi/workos/authentication_sso_timed_out_data_sso.rbi",
990
+ "rbi/workos/authkit_oauth_resource.rbi",
965
991
  "rbi/workos/authorization.rbi",
966
992
  "rbi/workos/authorization_check.rbi",
967
993
  "rbi/workos/authorization_code_session_authenticate_request.rbi",
@@ -1005,6 +1031,7 @@
1005
1031
  "rbi/workos/connection_saml_certificate_renewed_data_connection.rbi",
1006
1032
  "rbi/workos/cors_origin_response.rbi",
1007
1033
  "rbi/workos/create_application_secret.rbi",
1034
+ "rbi/workos/create_authkit_oauth_resource.rbi",
1008
1035
  "rbi/workos/create_authorization_permission.rbi",
1009
1036
  "rbi/workos/create_authorization_resource.rbi",
1010
1037
  "rbi/workos/create_connection.rbi",
@@ -1257,6 +1284,13 @@
1257
1284
  "rbi/workos/permission_updated_data.rbi",
1258
1285
  "rbi/workos/pipe_connected_account.rbi",
1259
1286
  "rbi/workos/pipes.rbi",
1287
+ "rbi/workos/pipes_account_connection_add_failed.rbi",
1288
+ "rbi/workos/pipes_account_connection_add_failed_data.rbi",
1289
+ "rbi/workos/pipes_account_connection_connected.rbi",
1290
+ "rbi/workos/pipes_account_connection_connection_failed.rbi",
1291
+ "rbi/workos/pipes_account_connection_connection_failed_data.rbi",
1292
+ "rbi/workos/pipes_account_connection_disconnected.rbi",
1293
+ "rbi/workos/pipes_account_connection_reauthorization_needed.rbi",
1260
1294
  "rbi/workos/pipes_connected_account_connected.rbi",
1261
1295
  "rbi/workos/pipes_connected_account_connection_failed.rbi",
1262
1296
  "rbi/workos/pipes_connected_account_connection_failed_data.rbi",
@@ -1462,6 +1496,34 @@
1462
1496
  "test/workos/test_widgets_model_round_trip.rb"
1463
1497
  ],
1464
1498
  "operations": {
1499
+ "GET /agents/blueprints": {
1500
+ "sdkMethod": "list_blueprints",
1501
+ "service": "agents"
1502
+ },
1503
+ "POST /agents/blueprints": {
1504
+ "sdkMethod": "create_blueprint",
1505
+ "service": "agents"
1506
+ },
1507
+ "GET /agents/blueprints/{agent_blueprint_id}": {
1508
+ "sdkMethod": "get_blueprint",
1509
+ "service": "agents"
1510
+ },
1511
+ "PATCH /agents/blueprints/{agent_blueprint_id}": {
1512
+ "sdkMethod": "update_blueprint",
1513
+ "service": "agents"
1514
+ },
1515
+ "DELETE /agents/blueprints/{agent_blueprint_id}": {
1516
+ "sdkMethod": "delete_blueprint",
1517
+ "service": "agents"
1518
+ },
1519
+ "POST /agents/blueprints/{agent_blueprint_id}/tokens": {
1520
+ "sdkMethod": "create_blueprint_token",
1521
+ "service": "agents"
1522
+ },
1523
+ "POST /agents/blueprints/{agent_blueprint_id}/tokens/validate": {
1524
+ "sdkMethod": "validate_blueprint_token",
1525
+ "service": "agents"
1526
+ },
1465
1527
  "PATCH /agents/claims/attempts": {
1466
1528
  "sdkMethod": "update_attempts",
1467
1529
  "service": "agents"
@@ -1474,6 +1536,30 @@
1474
1536
  "sdkMethod": "get_registration",
1475
1537
  "service": "agents"
1476
1538
  },
1539
+ "GET /agents/instances": {
1540
+ "sdkMethod": "list_instances",
1541
+ "service": "agents"
1542
+ },
1543
+ "GET /agents/instances/{agent_instance_id}": {
1544
+ "sdkMethod": "get_instance",
1545
+ "service": "agents"
1546
+ },
1547
+ "DELETE /agents/instances/{agent_instance_id}": {
1548
+ "sdkMethod": "delete_instance",
1549
+ "service": "agents"
1550
+ },
1551
+ "GET /agents/sessions": {
1552
+ "sdkMethod": "list_sessions",
1553
+ "service": "agents"
1554
+ },
1555
+ "GET /agents/sessions/{agent_instance_session_id}": {
1556
+ "sdkMethod": "get_session",
1557
+ "service": "agents"
1558
+ },
1559
+ "POST /agents/sessions/{agent_instance_session_id}/revoke": {
1560
+ "sdkMethod": "revoke_session",
1561
+ "service": "agents"
1562
+ },
1477
1563
  "POST /auth/challenges/{id}/verify": {
1478
1564
  "sdkMethod": "verify_challenge",
1479
1565
  "service": "multi_factor_auth"
@@ -1726,10 +1812,54 @@
1726
1812
  "sdkMethod": "list_connections",
1727
1813
  "service": "sso"
1728
1814
  },
1815
+ "POST /connections": {
1816
+ "sdkMethod": "create_connection",
1817
+ "service": "sso"
1818
+ },
1819
+ "GET /connections/{connectionId}/saml_idp_signing_certs": {
1820
+ "sdkMethod": "list_connection_saml_idp_signing_certs",
1821
+ "service": "sso"
1822
+ },
1823
+ "POST /connections/{connectionId}/saml_idp_signing_certs": {
1824
+ "sdkMethod": "create_connection_saml_idp_signing_cert",
1825
+ "service": "sso"
1826
+ },
1827
+ "DELETE /connections/{connectionId}/saml_idp_signing_certs/{certificateId}": {
1828
+ "sdkMethod": "delete_connection_saml_idp_signing_cert",
1829
+ "service": "sso"
1830
+ },
1831
+ "GET /connections/{connectionId}/saml_sp_encryption_certs": {
1832
+ "sdkMethod": "list_connection_saml_sp_encryption_certs",
1833
+ "service": "sso"
1834
+ },
1835
+ "POST /connections/{connectionId}/saml_sp_encryption_certs": {
1836
+ "sdkMethod": "create_connection_saml_sp_encryption_cert",
1837
+ "service": "sso"
1838
+ },
1839
+ "DELETE /connections/{connectionId}/saml_sp_encryption_certs/{certificateId}": {
1840
+ "sdkMethod": "delete_connection_saml_sp_encryption_cert",
1841
+ "service": "sso"
1842
+ },
1843
+ "GET /connections/{connectionId}/saml_sp_signing_cert": {
1844
+ "sdkMethod": "list_connection_saml_sp_signing_cert",
1845
+ "service": "sso"
1846
+ },
1847
+ "POST /connections/{connectionId}/saml_sp_signing_cert": {
1848
+ "sdkMethod": "create_connection_saml_sp_signing_cert",
1849
+ "service": "sso"
1850
+ },
1851
+ "DELETE /connections/{connectionId}/saml_sp_signing_cert/{certificateId}": {
1852
+ "sdkMethod": "delete_connection_saml_sp_signing_cert",
1853
+ "service": "sso"
1854
+ },
1729
1855
  "GET /connections/{id}": {
1730
1856
  "sdkMethod": "get_connection",
1731
1857
  "service": "sso"
1732
1858
  },
1859
+ "PATCH /connections/{id}": {
1860
+ "sdkMethod": "update_connection",
1861
+ "service": "sso"
1862
+ },
1733
1863
  "DELETE /connections/{id}": {
1734
1864
  "sdkMethod": "delete_connection",
1735
1865
  "service": "sso"
@@ -1762,10 +1892,26 @@
1762
1892
  "sdkMethod": "authorize_data_integration",
1763
1893
  "service": "pipes"
1764
1894
  },
1895
+ "PUT /data-integrations/{slug}/client-credentials": {
1896
+ "sdkMethod": "update_data_integration_client_credentials",
1897
+ "service": "pipes"
1898
+ },
1765
1899
  "POST /data-integrations/{slug}/credentials": {
1766
1900
  "sdkMethod": "create_data_integration_credential",
1767
1901
  "service": "pipes"
1768
1902
  },
1903
+ "GET /data-integrations/{slug}/organization": {
1904
+ "sdkMethod": "list_data_integration_organization",
1905
+ "service": "pipes"
1906
+ },
1907
+ "PUT /data-integrations/{slug}/organization": {
1908
+ "sdkMethod": "update_data_integration_organization",
1909
+ "service": "pipes"
1910
+ },
1911
+ "DELETE /data-integrations/{slug}/organization": {
1912
+ "sdkMethod": "delete_data_integration_organization",
1913
+ "service": "pipes"
1914
+ },
1769
1915
  "POST /data-integrations/{provider}/token": {
1770
1916
  "sdkMethod": "get_access_token",
1771
1917
  "service": "pipes"
@@ -1934,6 +2080,54 @@
1934
2080
  "sdkMethod": "list_authorized_applications",
1935
2081
  "service": "organizations"
1936
2082
  },
2083
+ "GET /organizations/{organization_id}/connected_accounts/{slug}": {
2084
+ "sdkMethod": "get_organization_connected_account",
2085
+ "service": "pipes"
2086
+ },
2087
+ "POST /organizations/{organization_id}/connected_accounts/{slug}": {
2088
+ "sdkMethod": "create_organization_connected_account",
2089
+ "service": "pipes"
2090
+ },
2091
+ "PUT /organizations/{organization_id}/connected_accounts/{slug}": {
2092
+ "sdkMethod": "update_organization_connected_account",
2093
+ "service": "pipes"
2094
+ },
2095
+ "DELETE /organizations/{organization_id}/connected_accounts/{slug}": {
2096
+ "sdkMethod": "delete_organization_connected_account",
2097
+ "service": "pipes"
2098
+ },
2099
+ "GET /organizations/{organization_id}/data_providers": {
2100
+ "sdkMethod": "list_organization_data_providers",
2101
+ "service": "pipes"
2102
+ },
2103
+ "GET /organizations/{organization_id}/it_contacts": {
2104
+ "sdkMethod": "list_it_contacts",
2105
+ "service": "organizations"
2106
+ },
2107
+ "POST /organizations/{organization_id}/it_contacts": {
2108
+ "sdkMethod": "create_it_contact",
2109
+ "service": "organizations"
2110
+ },
2111
+ "DELETE /organizations/{organization_id}/it_contacts/{contact_id}": {
2112
+ "sdkMethod": "delete_it_contact",
2113
+ "service": "organizations"
2114
+ },
2115
+ "POST /organizations/{organization_id}/it_contacts/{contact_id}/invite": {
2116
+ "sdkMethod": "invite_it_contact",
2117
+ "service": "organizations"
2118
+ },
2119
+ "POST /organizations/{organization_id}/it_contacts/{contact_id}/revoke": {
2120
+ "sdkMethod": "revoke_it_contact",
2121
+ "service": "organizations"
2122
+ },
2123
+ "POST /platform/teams": {
2124
+ "sdkMethod": "create_team",
2125
+ "service": "platform_teams"
2126
+ },
2127
+ "GET /platform/teams/{team_id}": {
2128
+ "sdkMethod": "get_team",
2129
+ "service": "platform_teams"
2130
+ },
1937
2131
  "POST /portal/generate_link": {
1938
2132
  "sdkMethod": "generate_link",
1939
2133
  "service": "admin_portal"
@@ -2046,6 +2240,18 @@
2046
2240
  "sdkMethod": "revoke_session",
2047
2241
  "service": "user_management"
2048
2242
  },
2243
+ "GET /user_management/authkit_oauth_resources": {
2244
+ "sdkMethod": "list_authkit_oauth_resources",
2245
+ "service": "user_management"
2246
+ },
2247
+ "POST /user_management/authkit_oauth_resources": {
2248
+ "sdkMethod": "create_authkit_oauth_resource",
2249
+ "service": "user_management"
2250
+ },
2251
+ "DELETE /user_management/authkit_oauth_resources/{id}": {
2252
+ "sdkMethod": "delete_authkit_oauth_resource",
2253
+ "service": "user_management"
2254
+ },
2049
2255
  "GET /user_management/cors_origins": {
2050
2256
  "sdkMethod": "list_cors_origins",
2051
2257
  "service": "user_management"
@@ -2246,6 +2452,34 @@
2246
2452
  "sdkMethod": "create_user_auth_factor",
2247
2453
  "service": "multi_factor_auth"
2248
2454
  },
2455
+ "DELETE /user_management/waitlist_entries/{id}": {
2456
+ "sdkMethod": "delete_waitlist_entry",
2457
+ "service": "user_management"
2458
+ },
2459
+ "POST /user_management/waitlist_entries/{id}/approve": {
2460
+ "sdkMethod": "create_waitlist_entry_approve",
2461
+ "service": "user_management"
2462
+ },
2463
+ "POST /user_management/waitlist_entries/{id}/deny": {
2464
+ "sdkMethod": "create_waitlist_entry_deny",
2465
+ "service": "user_management"
2466
+ },
2467
+ "GET /user_management/waitlists": {
2468
+ "sdkMethod": "list_waitlists",
2469
+ "service": "user_management"
2470
+ },
2471
+ "GET /user_management/waitlists/{id}": {
2472
+ "sdkMethod": "get_waitlist",
2473
+ "service": "user_management"
2474
+ },
2475
+ "GET /user_management/waitlists/{id}/entries": {
2476
+ "sdkMethod": "list_waitlist_entries",
2477
+ "service": "user_management"
2478
+ },
2479
+ "POST /user_management/waitlists/{id}/entries": {
2480
+ "sdkMethod": "create_waitlist_entry",
2481
+ "service": "user_management"
2482
+ },
2249
2483
  "POST /vault/v1/keys/data-key": {
2250
2484
  "sdkMethod": "create_data_key",
2251
2485
  "service": "vault"
@@ -2353,162 +2587,6 @@
2353
2587
  "GET /audit_logs/exports/{auditLogExportId}": {
2354
2588
  "sdkMethod": "get_export",
2355
2589
  "service": "audit_logs"
2356
- },
2357
- "PUT /data-integrations/{slug}/client-credentials": {
2358
- "sdkMethod": "update_data_integration_client_credentials",
2359
- "service": "pipes"
2360
- },
2361
- "GET /agents/blueprints": {
2362
- "sdkMethod": "list_blueprints",
2363
- "service": "agents"
2364
- },
2365
- "POST /agents/blueprints": {
2366
- "sdkMethod": "create_blueprint",
2367
- "service": "agents"
2368
- },
2369
- "GET /agents/blueprints/{agent_blueprint_id}": {
2370
- "sdkMethod": "get_blueprint",
2371
- "service": "agents"
2372
- },
2373
- "PATCH /agents/blueprints/{agent_blueprint_id}": {
2374
- "sdkMethod": "update_blueprint",
2375
- "service": "agents"
2376
- },
2377
- "DELETE /agents/blueprints/{agent_blueprint_id}": {
2378
- "sdkMethod": "delete_blueprint",
2379
- "service": "agents"
2380
- },
2381
- "POST /agents/blueprints/{agent_blueprint_id}/tokens": {
2382
- "sdkMethod": "create_blueprint_token",
2383
- "service": "agents"
2384
- },
2385
- "GET /agents/instances": {
2386
- "sdkMethod": "list_instances",
2387
- "service": "agents"
2388
- },
2389
- "GET /agents/instances/{agent_instance_id}": {
2390
- "sdkMethod": "get_instance",
2391
- "service": "agents"
2392
- },
2393
- "DELETE /agents/instances/{agent_instance_id}": {
2394
- "sdkMethod": "delete_instance",
2395
- "service": "agents"
2396
- },
2397
- "GET /agents/sessions": {
2398
- "sdkMethod": "list_sessions",
2399
- "service": "agents"
2400
- },
2401
- "GET /agents/sessions/{agent_instance_session_id}": {
2402
- "sdkMethod": "get_session",
2403
- "service": "agents"
2404
- },
2405
- "POST /agents/sessions/{agent_instance_session_id}/revoke": {
2406
- "sdkMethod": "revoke_session",
2407
- "service": "agents"
2408
- },
2409
- "POST /connections": {
2410
- "sdkMethod": "create_connection",
2411
- "service": "sso"
2412
- },
2413
- "GET /connections/{connectionId}/saml_idp_signing_certs": {
2414
- "sdkMethod": "list_connection_saml_idp_signing_certs",
2415
- "service": "sso"
2416
- },
2417
- "POST /connections/{connectionId}/saml_idp_signing_certs": {
2418
- "sdkMethod": "create_connection_saml_idp_signing_cert",
2419
- "service": "sso"
2420
- },
2421
- "DELETE /connections/{connectionId}/saml_idp_signing_certs/{certificateId}": {
2422
- "sdkMethod": "delete_connection_saml_idp_signing_cert",
2423
- "service": "sso"
2424
- },
2425
- "GET /connections/{connectionId}/saml_sp_encryption_certs": {
2426
- "sdkMethod": "list_connection_saml_sp_encryption_certs",
2427
- "service": "sso"
2428
- },
2429
- "POST /connections/{connectionId}/saml_sp_encryption_certs": {
2430
- "sdkMethod": "create_connection_saml_sp_encryption_cert",
2431
- "service": "sso"
2432
- },
2433
- "DELETE /connections/{connectionId}/saml_sp_encryption_certs/{certificateId}": {
2434
- "sdkMethod": "delete_connection_saml_sp_encryption_cert",
2435
- "service": "sso"
2436
- },
2437
- "GET /connections/{connectionId}/saml_sp_signing_cert": {
2438
- "sdkMethod": "list_connection_saml_sp_signing_cert",
2439
- "service": "sso"
2440
- },
2441
- "POST /connections/{connectionId}/saml_sp_signing_cert": {
2442
- "sdkMethod": "create_connection_saml_sp_signing_cert",
2443
- "service": "sso"
2444
- },
2445
- "DELETE /connections/{connectionId}/saml_sp_signing_cert/{certificateId}": {
2446
- "sdkMethod": "delete_connection_saml_sp_signing_cert",
2447
- "service": "sso"
2448
- },
2449
- "PATCH /connections/{id}": {
2450
- "sdkMethod": "update_connection",
2451
- "service": "sso"
2452
- },
2453
- "GET /organizations/{organization_id}/it_contacts": {
2454
- "sdkMethod": "list_it_contacts",
2455
- "service": "organizations"
2456
- },
2457
- "POST /organizations/{organization_id}/it_contacts": {
2458
- "sdkMethod": "create_it_contact",
2459
- "service": "organizations"
2460
- },
2461
- "DELETE /organizations/{organization_id}/it_contacts/{contact_id}": {
2462
- "sdkMethod": "delete_it_contact",
2463
- "service": "organizations"
2464
- },
2465
- "POST /organizations/{organization_id}/it_contacts/{contact_id}/invite": {
2466
- "sdkMethod": "invite_it_contact",
2467
- "service": "organizations"
2468
- },
2469
- "POST /organizations/{organization_id}/it_contacts/{contact_id}/revoke": {
2470
- "sdkMethod": "revoke_it_contact",
2471
- "service": "organizations"
2472
- },
2473
- "POST /platform/teams": {
2474
- "sdkMethod": "create_team",
2475
- "service": "platform_teams"
2476
- },
2477
- "GET /platform/teams/{team_id}": {
2478
- "sdkMethod": "get_team",
2479
- "service": "platform_teams"
2480
- },
2481
- "DELETE /user_management/waitlist_entries/{id}": {
2482
- "sdkMethod": "delete_waitlist_entry",
2483
- "service": "user_management"
2484
- },
2485
- "POST /user_management/waitlist_entries/{id}/approve": {
2486
- "sdkMethod": "create_waitlist_entry_approve",
2487
- "service": "user_management"
2488
- },
2489
- "POST /user_management/waitlist_entries/{id}/deny": {
2490
- "sdkMethod": "create_waitlist_entry_deny",
2491
- "service": "user_management"
2492
- },
2493
- "GET /user_management/waitlists": {
2494
- "sdkMethod": "list_waitlists",
2495
- "service": "user_management"
2496
- },
2497
- "GET /user_management/waitlists/{id}": {
2498
- "sdkMethod": "get_waitlist",
2499
- "service": "user_management"
2500
- },
2501
- "GET /user_management/waitlists/{id}/entries": {
2502
- "sdkMethod": "list_waitlist_entries",
2503
- "service": "user_management"
2504
- },
2505
- "POST /user_management/waitlists/{id}/entries": {
2506
- "sdkMethod": "create_waitlist_entry",
2507
- "service": "user_management"
2508
- },
2509
- "POST /agents/blueprints/{agent_blueprint_id}/tokens/validate": {
2510
- "sdkMethod": "validate_blueprint_token",
2511
- "service": "agents"
2512
2590
  }
2513
2591
  }
2514
2592
  }
@@ -1,3 +1,3 @@
1
1
  {
2
- ".": "10.3.0"
2
+ ".": "10.4.0"
3
3
  }
data/.ruby-version CHANGED
@@ -1 +1 @@
1
- 3.4.9
1
+ 3.4.10