seam 2.46.0 → 2.47.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: 48c69fa631e7de029b9aa09cdfbc1e77b26406de6bb800f3171e0c5957777dfd
4
- data.tar.gz: 67c289e0d315cecf90420e4e19fc84e74eeca2a000f09106fcd5305b27319a1e
3
+ metadata.gz: 17b2a85d4abd44b7199da530e5c2d7593f7f0c9b8a2c656f29e3f42078d34e50
4
+ data.tar.gz: f36dc78fcccc4bf9889a901d57bce8ffb5a0f585031a78652cfb7c55cd3607e5
5
5
  SHA512:
6
- metadata.gz: a5d8eec52c9129fce74a9c38a085e588fb188dbb5fea1aba54c3f8256cc0d9b0d22f86475e407464bf9196f6a31a307b716ad99c9170fa82fcf22cb4190d23b7
7
- data.tar.gz: 5b40d9f53ebe038530120e151cb014c1b103e9b9b1191fadc29c363e68fc3b54fe85fa34ffc106feeabc8cb6742e0ca14ed5797b810f206a5ed9756e901fc487
6
+ metadata.gz: 23f24b968018d68e2975f998bbda7418d41fc600af9b7a605e35cf3d649d49808a11788e6ff95dbfcfd3c549b3bc0cc4f11df1298e5dda0162bfeba0cb9fa56b
7
+ data.tar.gz: 27069e189e4d21ad2d42ce3f1e037b56a4d765904d48ac3e159ee3db048d183cb5845cf7eedfda22ec57b8f358f2d3eb1cbb85b686f32f6ed3601b987a555c29
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- seam (2.46.0)
4
+ seam (2.47.0)
5
5
  faraday (~> 2.7)
6
6
  faraday-retry (~> 2.2)
7
7
  svix (~> 1.30)
@@ -20,8 +20,8 @@ module Seam
20
20
  Seam::Resources::ConnectedAccount.load_from_response(res.body["connected_account"])
21
21
  end
22
22
 
23
- def list(custom_metadata_has: nil, customer_ids: nil, limit: nil, page_cursor: nil, search: nil, user_identifier_key: nil)
24
- res = @client.post("/connected_accounts/list", {custom_metadata_has: custom_metadata_has, customer_ids: customer_ids, limit: limit, page_cursor: page_cursor, search: search, user_identifier_key: user_identifier_key}.compact)
23
+ def list(custom_metadata_has: nil, customer_key: nil, limit: nil, page_cursor: nil, search: nil, user_identifier_key: nil)
24
+ res = @client.post("/connected_accounts/list", {custom_metadata_has: custom_metadata_has, customer_key: customer_key, limit: limit, page_cursor: page_cursor, search: search, user_identifier_key: user_identifier_key}.compact)
25
25
 
26
26
  Seam::Resources::ConnectedAccount.load_from_response(res.body["connected_accounts"])
27
27
  end
@@ -32,8 +32,8 @@ module Seam
32
32
  nil
33
33
  end
34
34
 
35
- def update(connected_account_id:, automatically_manage_new_devices: nil, custom_metadata: nil)
36
- @client.post("/connected_accounts/update", {connected_account_id: connected_account_id, automatically_manage_new_devices: automatically_manage_new_devices, custom_metadata: custom_metadata}.compact)
35
+ def update(connected_account_id:, accepted_capabilities: nil, automatically_manage_new_devices: nil, custom_metadata: nil)
36
+ @client.post("/connected_accounts/update", {connected_account_id: connected_account_id, accepted_capabilities: accepted_capabilities, automatically_manage_new_devices: automatically_manage_new_devices, custom_metadata: custom_metadata}.compact)
37
37
 
38
38
  nil
39
39
  end
@@ -44,8 +44,8 @@ module Seam
44
44
  nil
45
45
  end
46
46
 
47
- def list(search: nil, space_key: nil)
48
- res = @client.post("/spaces/list", {search: search, space_key: space_key}.compact)
47
+ def list(connected_account_id: nil, search: nil, space_key: nil)
48
+ res = @client.post("/spaces/list", {connected_account_id: connected_account_id, search: search, space_key: space_key}.compact)
49
49
 
50
50
  Seam::Resources::Space.load_from_response(res.body["spaces"])
51
51
  end
@@ -3,7 +3,7 @@
3
3
  module Seam
4
4
  module Resources
5
5
  class AccessGrant < BaseResource
6
- attr_accessor :access_grant_id, :access_grant_key, :access_method_ids, :display_name, :instant_key_url, :location_ids, :requested_access_methods, :space_ids, :user_identity_id, :workspace_id
6
+ attr_accessor :access_grant_id, :access_grant_key, :access_method_ids, :client_session_token, :display_name, :instant_key_url, :location_ids, :requested_access_methods, :space_ids, :user_identity_id, :workspace_id
7
7
 
8
8
  date_accessor :created_at, :ends_at, :starts_at
9
9
  end
@@ -3,7 +3,7 @@
3
3
  module Seam
4
4
  module Resources
5
5
  class AccessMethod < BaseResource
6
- attr_accessor :access_method_id, :code, :display_name, :instant_key_url, :is_encoding_required, :mode, :workspace_id
6
+ attr_accessor :access_method_id, :client_session_token, :code, :display_name, :instant_key_url, :is_encoding_required, :mode, :workspace_id
7
7
 
8
8
  date_accessor :created_at, :issued_at
9
9
  end
data/lib/seam/version.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Seam
4
- VERSION = "2.46.0"
4
+ VERSION = "2.47.0"
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: seam
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.46.0
4
+ version: 2.47.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Seam Labs, Inc.
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2025-07-11 00:00:00.000000000 Z
11
+ date: 2025-07-14 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: faraday