seam 2.123.0 → 2.124.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: 8e88ebd229e6b85654fb3d27c89e94a741a54f3f53034e01bf2e710cce40bf03
4
- data.tar.gz: dd498e1a8daa98c17f650b5f94cb2c542c43e572c1042c891aef565cc9a13e5f
3
+ metadata.gz: 2ef7005d4b33e4efeca83d49eb1f636a8c00e4cdaf18bf44ccbd1ccdb6f01407
4
+ data.tar.gz: 3fcfeca1612d7017158e1d8da7dbce05e1ad8aec7fd570428461feaa41b8224c
5
5
  SHA512:
6
- metadata.gz: ca6808cb6053153285967c15af42427c424096f22ef47c627e881c7292e1378d02e1a8acc3472e9e7b0af9eecee11ee127c85d50fef20de80c174d9adfcf577f
7
- data.tar.gz: a4aab6f9a9be81ff48c14331661aeb669a4310c228ea24af1ad10e5e0273ec0118eb4e11a424230a8c5f755a5fa0ae60471899adac12531b6ce0d43de398702e
6
+ metadata.gz: 8500dfa940b069cac5e0bd219dc35fc33e1a4420d992e66a9c0cbf2350d7db389d380932a50c635a7598ad5dcd7802caa34600ce06061844bbc4337c45fb5831
7
+ data.tar.gz: 2ea0e38a86b56b33954c24b6b151ab70eba3947f5ffbc47a4e8ddf29a6d4468d00538cde04d7182ddb991a80822d6bfb82e629bce67c1d9bf36d737f1c547fa2
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- seam (2.123.0)
4
+ seam (2.124.0)
5
5
  faraday (~> 2.7)
6
6
  faraday-retry (~> 2.2)
7
7
  svix (~> 1.30)
@@ -30,16 +30,16 @@ module Seam
30
30
  Seam::Resources::AcsEncoder.load_from_response(res.body["acs_encoders"])
31
31
  end
32
32
 
33
- def scan_credential(acs_encoder_id:, wait_for_action_attempt: nil)
34
- res = @client.post("/acs/encoders/scan_credential", {acs_encoder_id: acs_encoder_id}.compact)
33
+ def scan_credential(acs_encoder_id:, salto_ks_metadata: nil, wait_for_action_attempt: nil)
34
+ res = @client.post("/acs/encoders/scan_credential", {acs_encoder_id: acs_encoder_id, salto_ks_metadata: salto_ks_metadata}.compact)
35
35
 
36
36
  wait_for_action_attempt = wait_for_action_attempt.nil? ? @defaults.wait_for_action_attempt : wait_for_action_attempt
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
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)
41
+ def scan_to_assign_credential(acs_encoder_id:, acs_user_id: nil, salto_ks_metadata: 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, salto_ks_metadata: salto_ks_metadata, user_identity_id: user_identity_id}.compact)
43
43
 
44
44
  wait_for_action_attempt = wait_for_action_attempt.nil? ? @defaults.wait_for_action_attempt : wait_for_action_attempt
45
45
 
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.123.0"
4
+ VERSION = "2.124.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.123.0
4
+ version: 2.124.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-06-03 00:00:00.000000000 Z
11
+ date: 2026-06-04 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: faraday