seam 2.120.0 → 2.122.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: 8615446fe030320fbd5a61f9a2c595229fb463e248f8f7bf2c9ffaffbbd59ec6
4
- data.tar.gz: ed943ba2353e1c2bc116ec7d7ef2fb31ce9e88f7eca972d3d3f041238797d508
3
+ metadata.gz: c7ed90fdbf47a3379d01b7b50c3806b11281ed88aa6196cfc051b5d9cf1997b7
4
+ data.tar.gz: 0b7965efabd0a28c6fd42ef46d760cdef63173d5605e51a9df70f67c3a4f1a3b
5
5
  SHA512:
6
- metadata.gz: 7d5b0211560ba29747737cefe400dc113286082a2e9f579de2047be1a86450795448e37bcf7df69e8acf44945625f857ac6c04fb2a52136af1b2637f442b76a4
7
- data.tar.gz: 2bfd4b1ab971167309b802640b0cf25b8803ab41a83a774fc75d14fcf4f4cbfd07a36e145837d7ba2a75dab13cb8988807dd70083e80a1f235fc219e55c25e5c
6
+ metadata.gz: 24d48ffb0deaa7dd5bed7b5e4b65b7db43a7854553adcbfe47cdda1e58e73b7187947bbbb29fa6e149c914a9e1c6eaba34094565c978ecdb9d4f6fbf57b7889a
7
+ data.tar.gz: 81e7b3d3b4615e1f0afa7a31fe66792272d887ec0c64219d239cf79e8c47800d87d795932de36d4ba54583c7e42b2678298a0aee5c8e4cbf9982fa8680da2217
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- seam (2.120.0)
4
+ seam (2.122.0)
5
5
  faraday (~> 2.7)
6
6
  faraday-retry (~> 2.2)
7
7
  svix (~> 1.30)
@@ -37,6 +37,14 @@ module Seam
37
37
 
38
38
  Helpers::ActionAttempt.decide_and_wait(Seam::Resources::ActionAttempt.load_from_response(res.body["action_attempt"]), @client, wait_for_action_attempt)
39
39
  end
40
+
41
+ def scan_to_assign_credential(acs_encoder_id:, acs_user_id: nil, user_identity_id: nil, wait_for_action_attempt: nil)
42
+ res = @client.post("/acs/encoders/scan_to_assign_credential", {acs_encoder_id: acs_encoder_id, acs_user_id: acs_user_id, user_identity_id: user_identity_id}.compact)
43
+
44
+ wait_for_action_attempt = wait_for_action_attempt.nil? ? @defaults.wait_for_action_attempt : wait_for_action_attempt
45
+
46
+ Helpers::ActionAttempt.decide_and_wait(Seam::Resources::ActionAttempt.load_from_response(res.body["action_attempt"]), @client, wait_for_action_attempt)
47
+ end
40
48
  end
41
49
  end
42
50
  end
@@ -3,7 +3,7 @@
3
3
  module Seam
4
4
  module Resources
5
5
  class UnmanagedAccessCode < BaseResource
6
- attr_accessor :access_code_id, :code, :device_id, :dormakaba_oracode_metadata, :is_managed, :name, :status, :type, :workspace_id
6
+ attr_accessor :access_code_id, :cannot_be_managed, :cannot_delete_unmanaged_access_code, :code, :device_id, :dormakaba_oracode_metadata, :is_managed, :name, :status, :type, :workspace_id
7
7
 
8
8
  date_accessor :created_at, :ends_at, :starts_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.120.0"
4
+ VERSION = "2.122.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.120.0
4
+ version: 2.122.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-20 00:00:00.000000000 Z
11
+ date: 2026-05-28 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: faraday