seam 2.17.0 → 2.18.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: 7ed3ad6bc8906de24fe0dfc41f452109e3a6a0a768627b4c18185f1c038d5c8a
4
- data.tar.gz: f3a79ed895866f6a98c28435ad5e865405f69f3b2fa8e923be500aeb0ed0b33c
3
+ metadata.gz: c48c12355ea106daaa28e51b49c82112aa7ad7fd3b763c1c1af67120d307b2bc
4
+ data.tar.gz: 312994eaf8ca41fc60d61cf95e8d61cf17b2c24a7471be1eac25ef3fce58545f
5
5
  SHA512:
6
- metadata.gz: 76f0073c1b9411fe16df246c563cedf93629a5d346bf46267daee387a3b75632476bf06415e88fdcca7bbfa116cbb67c10585c4160e8356cc21a73ea9beefb9b
7
- data.tar.gz: e46e441d2c0ac330024e246e244776242740e9a4faabea11f87431ac228c5ca66853b05d958a7bd142bd0e443970efe10c24f9f5c74e254c15cadc59b844d175
6
+ metadata.gz: 36ec7f4184e8a99af08ed91d731c8f505ca682fc62ca46b0440d24b6c43ab3c7dc79f5952559759234bf0a18490c0d8e37c990f60302a5fd3394af8e5c22c678
7
+ data.tar.gz: 8ffa2babf798509b894ae45a84d3e83bcd51ec19533043430d0a8b57a4fb27c83d50f4697b9cb7de0ca95ad97abd3e13d95c59c1dbfbb2a3770cba787acd3a1f
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- seam (2.17.0)
4
+ seam (2.18.0)
5
5
  faraday (~> 2.7)
6
6
  faraday-retry (~> 2.2)
7
7
  svix (~> 1.30)
@@ -18,6 +18,12 @@ module Seam
18
18
  Helpers::ActionAttempt.decide_and_wait(Seam::Resources::ActionAttempt.load_from_response(res.body["action_attempt"]), @client, wait_for_action_attempt)
19
19
  end
20
20
 
21
+ def get(acs_encoder_id:)
22
+ res = @client.post("/acs/encoders/get", {acs_encoder_id: acs_encoder_id}.compact)
23
+
24
+ Seam::Resources::AcsEncoder.load_from_response(res.body["acs_encoder"])
25
+ end
26
+
21
27
  def list(acs_system_id: nil, limit: nil, acs_system_ids: nil, acs_encoder_ids: nil)
22
28
  res = @client.post("/acs/encoders/list", {acs_system_id: acs_system_id, limit: limit, acs_system_ids: acs_system_ids, acs_encoder_ids: acs_encoder_ids}.compact)
23
29
 
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.17.0"
4
+ VERSION = "2.18.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.17.0
4
+ version: 2.18.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: 2025-04-08 00:00:00.000000000 Z
11
+ date: 2025-04-10 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: faraday