seam 2.108.0 → 2.109.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: 954ba7cca9acd088b5328d527ab770e84740196882b178f3fed965dcb98bf507
4
- data.tar.gz: 49187ca25de0fd9de6d26cb2ddb7d7ca40738ded5142eb73f7b1029e3d3292bd
3
+ metadata.gz: 12954cc17c51445d51f1e9679387facf61b9fd9d775c6738c7b3daaad6ade69c
4
+ data.tar.gz: 8b427a1499195283807db953f7b084a4bacd0c8ea032784c1f8808bfd22831cf
5
5
  SHA512:
6
- metadata.gz: 8a433ebe356ea66434f783d83945575a257013a5922d7064cbc0c9c36b488b85ac67427199c7cd6d7ce20455ad3debfa0ae2f8e426d0569266be52caf6a8e446
7
- data.tar.gz: e25c0a9d246631b3e32aec25094b59731124fba06320f6e64464c5d349cc9d7ae1b38719af6f6ba0bcfb5c40c3040e210e70ba9df83f9dff4f9a61d4eede6f00
6
+ metadata.gz: 12422e688bb5a3d086d1367855e95c6fad71cb9679e0f5c83ebf3fcabb80ef3236e2eabbf720592f8959c67cd211c56c5af1425cf2c944638f617a721a9c1a9b
7
+ data.tar.gz: 43f35752f146946a60f08d2f69f55e18ffb906af5a82df8a2fd43294e85ca8bf4240bf7f0164c8808d0b79f5c2f83c94f80718860ad74970dd57cbffece772ed
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- seam (2.108.0)
4
+ seam (2.109.0)
5
5
  faraday (~> 2.7)
6
6
  faraday-retry (~> 2.2)
7
7
  svix (~> 1.30)
@@ -44,8 +44,8 @@ module Seam
44
44
  Seam::Resources::Batch.load_from_response(res.body["batch"])
45
45
  end
46
46
 
47
- def list(customer_key: nil, search: nil, space_key: nil)
48
- res = @client.post("/spaces/list", {customer_key: customer_key, search: search, space_key: space_key}.compact)
47
+ def list(customer_key: nil, limit: nil, page_cursor: nil, search: nil, space_key: nil)
48
+ res = @client.post("/spaces/list", {customer_key: customer_key, limit: limit, page_cursor: page_cursor, 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 Space < BaseResource
6
- attr_accessor :acs_entrance_count, :device_count, :display_name, :name, :parent_space_id, :parent_space_key, :space_id, :space_key, :workspace_id
6
+ attr_accessor :acs_entrance_count, :customer_key, :device_count, :display_name, :name, :parent_space_id, :parent_space_key, :space_id, :space_key, :workspace_id
7
7
 
8
8
  date_accessor :created_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.108.0"
4
+ VERSION = "2.109.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.108.0
4
+ version: 2.109.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: 2026-04-07 00:00:00.000000000 Z
11
+ date: 2026-04-08 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: faraday