seam 2.85.0 → 2.86.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: fe507bf9abf541e3b4527355484ef96cc712360745aa08cc1da3fd1b7912cd8e
4
- data.tar.gz: e80e263f1acb73ea81e6209fdbf5dd7f349ec32c58cc417a2d51be124907316b
3
+ metadata.gz: c68f7196cb125d726bc26eba5cd1795ad079c352ecd481ed75d016a09f7d8e6e
4
+ data.tar.gz: d237302ffc53b764c7a041c6b772e29c6e24735211efb3387952eb9014a0f2a8
5
5
  SHA512:
6
- metadata.gz: 6877dd4255383cf73ff8d0db80d7e6787e1e8881f21496d5ade062d6f7746986e3cf4d73868c26c6712c90b5eae39bba68d1faee8fba64e2d9bc5e262ed9b3e6
7
- data.tar.gz: 8310fc1fc270cb5db1a5658af3028c51241c03d165cc9c45693e7fb73a25ee8db1de1ed80d943396c31a9189caafca8825189b3e2bf263e4c7088589af1cd15f
6
+ metadata.gz: 583862d6403d435fe45d89f4ff2a8727addf9319c4480ab6840b760380c30593d0fe25da7ca8664709f464de9ee57bc54eb9c005f1fad878ea1fb471985fadde
7
+ data.tar.gz: bfd0aa121c0dfac49445655dd85bbc3a647b69c2dc744ccd8a62a29215f15bd5ba37fc612a67afa2426ed243740247461e8de5c263205d1cdc4fb94fbf0a51a0
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- seam (2.85.0)
4
+ seam (2.86.0)
5
5
  faraday (~> 2.7)
6
6
  faraday-retry (~> 2.2)
7
7
  svix (~> 1.30)
@@ -31,9 +31,9 @@ module Seam
31
31
  end
32
32
 
33
33
  def get_related(access_grant_ids:, exclude: nil, include: nil)
34
- @client.post("/access_grants/get_related", {access_grant_ids: access_grant_ids, exclude: exclude, include: include}.compact)
34
+ res = @client.post("/access_grants/get_related", {access_grant_ids: access_grant_ids, exclude: exclude, include: include}.compact)
35
35
 
36
- nil
36
+ Seam::Resources::Batch.load_from_response(res.body["batch"])
37
37
  end
38
38
 
39
39
  def list(access_grant_key: nil, acs_entrance_id: nil, acs_system_id: nil, customer_key: nil, location_id: nil, reservation_key: nil, space_id: nil, user_identity_id: nil)
@@ -35,9 +35,9 @@ module Seam
35
35
  end
36
36
 
37
37
  def get_related(access_method_ids:, exclude: nil, include: nil)
38
- @client.post("/access_methods/get_related", {access_method_ids: access_method_ids, exclude: exclude, include: include}.compact)
38
+ res = @client.post("/access_methods/get_related", {access_method_ids: access_method_ids, exclude: exclude, include: include}.compact)
39
39
 
40
- nil
40
+ Seam::Resources::Batch.load_from_response(res.body["batch"])
41
41
  end
42
42
 
43
43
  def list(access_grant_id:, acs_entrance_id: nil, device_id: nil, space_id: nil)
@@ -39,9 +39,9 @@ module Seam
39
39
  end
40
40
 
41
41
  def get_related(exclude: nil, include: nil, space_ids: nil, space_keys: nil)
42
- @client.post("/spaces/get_related", {exclude: exclude, include: include, space_ids: space_ids, space_keys: space_keys}.compact)
42
+ res = @client.post("/spaces/get_related", {exclude: exclude, include: include, space_ids: space_ids, space_keys: space_keys}.compact)
43
43
 
44
- nil
44
+ Seam::Resources::Batch.load_from_response(res.body["batch"])
45
45
  end
46
46
 
47
47
  def list(connected_account_id: nil, customer_key: nil, search: nil, space_key: nil)
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.85.0"
4
+ VERSION = "2.86.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.85.0
4
+ version: 2.86.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-14 00:00:00.000000000 Z
11
+ date: 2025-11-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: faraday