seam 2.112.0 → 2.113.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: c423d9979b2f40d57d78012efb21193deb3de6e6c1bb07bfc67ae066a067f779
4
- data.tar.gz: b2aafeab888a142581d3e06f6d12721307d244c77f89dcae4bcc2c8afaaa102b
3
+ metadata.gz: 8641ed5a0e6f4b7b31e4aeafbd2ccd3a10d71344f894b4d53049f9a95548b066
4
+ data.tar.gz: 5fe909c5d9edaf1c693923b1e4e8a157d2eb22ae484db49fa364d7df97a71b1a
5
5
  SHA512:
6
- metadata.gz: f5fbb58a7d9f87d4683140e65c8916e6eda1b9a67486018e44077e8f122e243a748bd5588a713b983ce8072c3692da71e43063e0983d4f8577b286d6386a228a
7
- data.tar.gz: 6ce93ae300c6ab27ecb0566daa97bedbf604545f47063fa6722593b2d53e7f58da9d21ad0077403a5a1b03bba7f38d6531681f8f9292a37255ee993c0ab1f03c
6
+ metadata.gz: c9b7385a07c9b1be74ce9cab13af51c947bbc0d875a46045c32b3f93f66f93f3313ec363b3b3abca401cfb07488f533a33e74a8be4c3f2721d633d63e274257e
7
+ data.tar.gz: bd90991c5c823c9b823aa47d296b378e134725aef64890b170d2073ac872b7db0678a7ad73ca520d0c841a298b1ce251be438bf8c5f38209e06a007c0cd3c886
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- seam (2.112.0)
4
+ seam (2.113.0)
5
5
  faraday (~> 2.7)
6
6
  faraday-retry (~> 2.2)
7
7
  svix (~> 1.30)
@@ -22,8 +22,8 @@ module Seam
22
22
  Seam::Resources::AccessCode.load_from_response(res.body["access_code"])
23
23
  end
24
24
 
25
- def create_multiple(device_ids:, allow_external_modification: nil, attempt_for_offline_device: nil, behavior_when_code_cannot_be_shared: nil, code: nil, ends_at: nil, is_external_modification_allowed: nil, name: nil, prefer_native_scheduling: nil, preferred_code_length: nil, starts_at: nil)
26
- res = @client.post("/access_codes/create_multiple", {device_ids: device_ids, allow_external_modification: allow_external_modification, attempt_for_offline_device: attempt_for_offline_device, behavior_when_code_cannot_be_shared: behavior_when_code_cannot_be_shared, code: code, ends_at: ends_at, is_external_modification_allowed: is_external_modification_allowed, name: name, prefer_native_scheduling: prefer_native_scheduling, preferred_code_length: preferred_code_length, starts_at: starts_at}.compact)
25
+ def create_multiple(device_ids:, allow_external_modification: nil, attempt_for_offline_device: nil, behavior_when_code_cannot_be_shared: nil, code: nil, ends_at: nil, is_external_modification_allowed: nil, name: nil, prefer_native_scheduling: nil, preferred_code_length: nil, starts_at: nil, use_backup_access_code_pool: nil)
26
+ res = @client.post("/access_codes/create_multiple", {device_ids: device_ids, allow_external_modification: allow_external_modification, attempt_for_offline_device: attempt_for_offline_device, behavior_when_code_cannot_be_shared: behavior_when_code_cannot_be_shared, code: code, ends_at: ends_at, is_external_modification_allowed: is_external_modification_allowed, name: name, prefer_native_scheduling: prefer_native_scheduling, preferred_code_length: preferred_code_length, starts_at: starts_at, use_backup_access_code_pool: use_backup_access_code_pool}.compact)
27
27
 
28
28
  Seam::Resources::AccessCode.load_from_response(res.body["access_codes"])
29
29
  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.112.0"
4
+ VERSION = "2.113.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.112.0
4
+ version: 2.113.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-22 00:00:00.000000000 Z
11
+ date: 2026-04-24 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: faraday