seam 2.118.0 → 2.120.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: 8615446fe030320fbd5a61f9a2c595229fb463e248f8f7bf2c9ffaffbbd59ec6
4
+ data.tar.gz: ed943ba2353e1c2bc116ec7d7ef2fb31ce9e88f7eca972d3d3f041238797d508
5
5
  SHA512:
6
- metadata.gz: d4c1a4a390c9b63bd47c7f1bb9ac9c775231a28b8561878adebb3ff1c9a2a5be6fd23e8f6c0c74e4d0b7cb0ee1c2d0a3a4441bd3fa051021c751e8853887a253
7
- data.tar.gz: fd729b20861c501d362f78ff9580d5293bb4f21c7c6a422aaffc82ba98e123106cf35f8a4d5e99a9d7fd99f2c1376ff2f4e666ba0a97e24240fdc4b108ccf11d
6
+ metadata.gz: 7d5b0211560ba29747737cefe400dc113286082a2e9f579de2047be1a86450795448e37bcf7df69e8acf44945625f857ac6c04fb2a52136af1b2637f442b76a4
7
+ data.tar.gz: 2bfd4b1ab971167309b802640b0cf25b8803ab41a83a774fc75d14fcf4f4cbfd07a36e145837d7ba2a75dab13cb8988807dd70083e80a1f235fc219e55c25e5c
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.120.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
@@ -8,6 +8,7 @@ module Seam
8
8
  date_accessor :created_at
9
9
 
10
10
  include Seam::Resources::ResourceErrorsSupport
11
+ include Seam::Resources::ResourceWarningsSupport
11
12
  end
12
13
  end
13
14
  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.120.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.120.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-20 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: faraday