seam 2.61.0 → 2.62.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: ff47efbf244e24d6f1e1844c7c41baca32ffb4b42aee2702457a9dd57020a306
4
- data.tar.gz: 2261ae655f191788ad9f7e1d4baa1058b2f59bd305b618aa735e61e88ff5c1ae
3
+ metadata.gz: eec58e6c4f77ef85fefb359dfc3635030760c59f423e7da9c04e50d2d2f39bc8
4
+ data.tar.gz: 8965b2edb89a3a8cabef0c5a83a2f91b4392f752a35ea4cdbc00a93a9dd93d86
5
5
  SHA512:
6
- metadata.gz: 4dedf81c8309587d3a7593d6388e0d1f26e4fdea66591877329d2394736a8c83c2b8d68ce373fd62315ad811b3e1fc4ea1cc20001239f93ef8bf28e53330dea3
7
- data.tar.gz: 93ac1c0709ea89760a1a41c63b33d9596505a51c0448757dea1bd576d8e1006f91550459a4bc76d1708d15d4c191616e5c87d6134384f4dc211103989ea84079
6
+ metadata.gz: 80c4596787a97b66ac3e531c802e84293592715ebe349ed1fcc03f110831928e6374c8e51da5ef90da5842b4bdd451483eaee4ff814f645da4fadfa9842807bc
7
+ data.tar.gz: a8330c14bbe79c099fe40c7158325d46b0c1ddf1b6f9a9d91611511e7958d6eda4d88e227cff9ad469b3311e1081fc9edda0c7a361fbb0098064783800fab5dc
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- seam (2.61.0)
4
+ seam (2.62.0)
5
5
  faraday (~> 2.7)
6
6
  faraday-retry (~> 2.2)
7
7
  svix (~> 1.30)
@@ -32,8 +32,8 @@ module Seam
32
32
  nil
33
33
  end
34
34
 
35
- def list(access_grant_key: nil, acs_entrance_id: nil, acs_system_id: nil, location_id: nil, space_id: nil, user_identity_id: nil)
36
- res = @client.post("/access_grants/list", {access_grant_key: access_grant_key, acs_entrance_id: acs_entrance_id, acs_system_id: acs_system_id, location_id: location_id, space_id: space_id, user_identity_id: user_identity_id}.compact)
35
+ def list(access_grant_key: nil, acs_entrance_id: nil, acs_system_id: nil, customer_key: nil, location_id: nil, space_id: nil, user_identity_id: nil)
36
+ res = @client.post("/access_grants/list", {access_grant_key: access_grant_key, acs_entrance_id: acs_entrance_id, acs_system_id: acs_system_id, customer_key: customer_key, location_id: location_id, space_id: space_id, user_identity_id: user_identity_id}.compact)
37
37
 
38
38
  Seam::Resources::AccessGrant.load_from_response(res.body["access_grants"])
39
39
  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_ids: 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_ids: customer_ids, 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_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)
19
19
 
20
20
  Seam::Resources::SeamEvent.load_from_response(res.body["events"])
21
21
  end
@@ -44,8 +44,8 @@ module Seam
44
44
  nil
45
45
  end
46
46
 
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)
47
+ def list(connected_account_id: nil, customer_key: nil, search: nil, space_key: nil)
48
+ res = @client.post("/spaces/list", {connected_account_id: connected_account_id, customer_key: customer_key, search: search, space_key: space_key}.compact)
49
49
 
50
50
  Seam::Resources::Space.load_from_response(res.body["spaces"])
51
51
  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.61.0"
4
+ VERSION = "2.62.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.61.0
4
+ version: 2.62.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-08-08 00:00:00.000000000 Z
11
+ date: 2025-08-11 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: faraday