seam 2.118.0 → 2.119.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: c7019835f5c141e3bb030a8620dc419b0d1ee51f8cb19f211b125a0547c2f560
4
- data.tar.gz: f8d43bccb8746065ad3287ae79acb6c80dc25cd8d68d725fcb7405d5ff792d84
3
+ metadata.gz: 19672c177cf6ef6aea8b637ed245c9ff0f8e1356cb922ea26ca7ff9fa536fc50
4
+ data.tar.gz: b6a75537240ffbc0b8b357619f7c76854bc3ef6b6e1af4f61c3c75987a1c3b4e
5
5
  SHA512:
6
- metadata.gz: d4c1a4a390c9b63bd47c7f1bb9ac9c775231a28b8561878adebb3ff1c9a2a5be6fd23e8f6c0c74e4d0b7cb0ee1c2d0a3a4441bd3fa051021c751e8853887a253
7
- data.tar.gz: fd729b20861c501d362f78ff9580d5293bb4f21c7c6a422aaffc82ba98e123106cf35f8a4d5e99a9d7fd99f2c1376ff2f4e666ba0a97e24240fdc4b108ccf11d
6
+ metadata.gz: 77d25053ac3c58631946ea82f8f527561f9c6472a2674747073f0e8529ae72c44dd588dbb8933c189be6fb5cc97295ed94113db3d799de392eaf6dae7e1aad89
7
+ data.tar.gz: fe15085256395657b77e6bfa3ca2e9cddca50ff7531e5fe3c4b680a0f264ccefe56a677702bb2b8f8cb7c51dff113b7bc6a4c9e57f4c46287717c3c1e0c2d7dc
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- seam (2.118.0)
4
+ seam (2.119.0)
5
5
  faraday (~> 2.7)
6
6
  faraday-retry (~> 2.2)
7
7
  svix (~> 1.30)
@@ -26,8 +26,8 @@ module Seam
26
26
  nil
27
27
  end
28
28
 
29
- def create(name:, acs_entrance_ids: nil, customer_data: nil, customer_key: nil, device_ids: nil, space_key: nil)
30
- res = @client.post("/spaces/create", {name: name, acs_entrance_ids: acs_entrance_ids, customer_data: customer_data, customer_key: customer_key, device_ids: device_ids, space_key: space_key}.compact)
29
+ def create(name:, acs_entrance_ids: nil, connected_account_ids: nil, customer_data: nil, customer_key: nil, device_ids: nil, space_key: nil)
30
+ res = @client.post("/spaces/create", {name: name, acs_entrance_ids: acs_entrance_ids, connected_account_ids: connected_account_ids, customer_data: customer_data, customer_key: customer_key, device_ids: device_ids, space_key: space_key}.compact)
31
31
 
32
32
  Seam::Resources::Space.load_from_response(res.body["space"])
33
33
  end
@@ -3,7 +3,7 @@
3
3
  module Seam
4
4
  module Resources
5
5
  class ConnectedAccount < BaseResource
6
- attr_accessor :accepted_capabilities, :account_type, :account_type_display_name, :automatically_manage_new_devices, :connected_account_id, :custom_metadata, :customer_key, :display_name, :image_url, :user_identifier
6
+ attr_accessor :accepted_capabilities, :account_type, :account_type_display_name, :automatically_manage_new_devices, :connected_account_id, :custom_metadata, :customer_key, :default_checkin_time, :default_checkout_time, :display_name, :image_url, :time_zone, :user_identifier
7
7
 
8
8
  date_accessor :created_at
9
9
 
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.118.0"
4
+ VERSION = "2.119.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.118.0
4
+ version: 2.119.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-05-13 00:00:00.000000000 Z
11
+ date: 2026-05-19 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: faraday