seam 2.88.0 → 2.90.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: 2fe247931d62d25a40c47c479ce2d5447a2b1e7447084b6ca3e39a6b1cb9cc3e
4
- data.tar.gz: cfec23482e88731acf8d7feb9f669059b8273f21c444a6901c76dae1f59818ba
3
+ metadata.gz: e62826ed67ab728593e29f2839f6bfe6cbd119bca32812078f1c09892bece1b0
4
+ data.tar.gz: daa8bfc22e74eb5f4efcad4699fc80f71dfa1dae85a28b9e0312ac9ad7864afe
5
5
  SHA512:
6
- metadata.gz: 7d3124e01f64257c86738d12748e56b4a7140b7a5739d686a0a4a36bbca15010ec2cfc7dd03ce4fca6845b14765d40e7af9d49a69b67bb94183e6ae4e415668d
7
- data.tar.gz: 1580a6492219604135377905a68d48966769c2a19b1e69319f75c6053a792c76b69cd17495effaa62afce27de8267fe038e244e86b648df7e1977bff00fec3ef
6
+ metadata.gz: 1e81b4d26191333758c1e2f9262aa41819d2a74fcd02466ace932af79b65e6224b588c0bebf26ebaa2fa56f4fa3dfceb2610fe5130945e054eab2c415f2a3609
7
+ data.tar.gz: 7c7006d4479be57c7342999accc16451f00513ed311ffc9af7b9371820e6c3edfc41dc8009c624fa75c6977c0485f7b62ea6b844b3cb58d6bcf9de79986269a8
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- seam (2.88.0)
4
+ seam (2.90.0)
5
5
  faraday (~> 2.7)
6
6
  faraday-retry (~> 2.2)
7
7
  svix (~> 1.30)
@@ -18,8 +18,8 @@ module Seam
18
18
  Helpers::ActionAttempt.decide_and_wait(Seam::Resources::ActionAttempt.load_from_response(res.body["action_attempt"]), @client, wait_for_action_attempt)
19
19
  end
20
20
 
21
- def list(action_attempt_ids:)
22
- res = @client.post("/action_attempts/list", {action_attempt_ids: action_attempt_ids}.compact)
21
+ def list(action_attempt_ids: nil, device_id: nil, limit: nil, page_cursor: nil)
22
+ res = @client.post("/action_attempts/list", {action_attempt_ids: action_attempt_ids, device_id: device_id, limit: limit, page_cursor: page_cursor}.compact)
23
23
 
24
24
  Seam::Resources::ActionAttempt.load_from_response(res.body["action_attempts"])
25
25
  end
@@ -14,8 +14,8 @@ module Seam
14
14
  Seam::Resources::SeamEvent.load_from_response(res.body["event"])
15
15
  end
16
16
 
17
- def list(access_code_id: nil, access_code_ids: nil, acs_system_id: nil, acs_system_ids: nil, between: nil, connect_webview_id: nil, connected_account_id: nil, customer_key: nil, device_id: nil, device_ids: nil, event_ids: nil, event_type: nil, event_types: nil, limit: nil, since: nil, unstable_offset: nil)
18
- res = @client.post("/events/list", {access_code_id: access_code_id, access_code_ids: access_code_ids, acs_system_id: acs_system_id, acs_system_ids: acs_system_ids, between: between, connect_webview_id: connect_webview_id, connected_account_id: connected_account_id, customer_key: customer_key, device_id: device_id, device_ids: device_ids, event_ids: event_ids, event_type: event_type, event_types: event_types, limit: limit, since: since, unstable_offset: unstable_offset}.compact)
17
+ def list(access_code_id: nil, access_code_ids: nil, acs_entrance_id: nil, acs_system_id: nil, acs_system_ids: nil, acs_user_id: nil, between: nil, connect_webview_id: nil, connected_account_id: nil, customer_key: nil, device_id: nil, device_ids: nil, event_ids: nil, event_type: nil, event_types: nil, limit: nil, since: nil, unstable_offset: nil, user_identity_id: nil)
18
+ res = @client.post("/events/list", {access_code_id: access_code_id, access_code_ids: access_code_ids, acs_entrance_id: acs_entrance_id, acs_system_id: acs_system_id, acs_system_ids: acs_system_ids, acs_user_id: acs_user_id, between: between, connect_webview_id: connect_webview_id, connected_account_id: connected_account_id, customer_key: customer_key, device_id: device_id, device_ids: device_ids, event_ids: event_ids, event_type: event_type, event_types: event_types, limit: limit, since: since, unstable_offset: unstable_offset, user_identity_id: user_identity_id}.compact)
19
19
 
20
20
  Seam::Resources::SeamEvent.load_from_response(res.body["events"])
21
21
  end
@@ -3,7 +3,7 @@
3
3
  module Seam
4
4
  module Resources
5
5
  class PhoneSession < BaseResource
6
- attr_accessor :provider_sessions, :user_identity, :workspace_id
6
+ attr_accessor :is_sandbox_workspace, :provider_sessions, :user_identity, :workspace_id
7
7
  end
8
8
  end
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.88.0"
4
+ VERSION = "2.90.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.88.0
4
+ version: 2.90.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-11-27 00:00:00.000000000 Z
11
+ date: 2025-12-05 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: faraday