seam 2.31.0 → 2.33.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: 394e263868d708e6c04de580e1aabf2e4202d27b2d48df8babe6d4429f8dec6e
4
- data.tar.gz: 755b9fe7891d71232369bc5bc3f72a6cc68b90b14eecdf827f295bfa8bb2ea3f
3
+ metadata.gz: 8ef9659b6acfaa2b89fb4c0bf5dd1cbc6daf7a9f527b4af3e9bc36175e8d0971
4
+ data.tar.gz: f54c1cc642873c4d6a0de9a0e30b9fb097b2896400f87ea60657eca29c737a72
5
5
  SHA512:
6
- metadata.gz: 2e21d0f5e725af6b56f298a90a034ca468cc3199e96b4a86847264e3a62656998aae608b895b38cdb05636309b1f6a5084001b8931d266355e689577c077654c
7
- data.tar.gz: 2910b747a34e3cb55ff656155153e76834029b763a1e808088892a6996a0ed929dd4d06972cc84e44405cf4fc355d0dd9e265135150749c5791aa5c5346eba7f
6
+ metadata.gz: 1acad9c0e7379f050b83a651dd9278ca515baf7e1e5db8e6ec721a8cfd4b5365a64a09f3ed6e1db7f54a99d2ec990ad2e4d69262784cf32aec48603cd4cf7f75
7
+ data.tar.gz: 21cbb164873aa5bc4f02859ac04c8991bdf19bbdabb08d9869fc7a7828a011b64ef7be0ccd576ca6b815ad1aa60aaa029299ceee4ed3b43a29dd499fe2b27203
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- seam (2.31.0)
4
+ seam (2.33.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
  Seam::Resources::ConnectWebview.load_from_response(res.body["connect_webview"])
27
27
  end
28
28
 
29
- def list(custom_metadata_has: nil, customer_ids: nil, limit: nil, user_identifier_key: nil)
30
- res = @client.post("/connect_webviews/list", {custom_metadata_has: custom_metadata_has, customer_ids: customer_ids, limit: limit, user_identifier_key: user_identifier_key}.compact)
29
+ def list(custom_metadata_has: nil, customer_ids: nil, limit: nil, page_cursor: nil, user_identifier_key: nil)
30
+ res = @client.post("/connect_webviews/list", {custom_metadata_has: custom_metadata_has, customer_ids: customer_ids, limit: limit, page_cursor: page_cursor, user_identifier_key: user_identifier_key}.compact)
31
31
 
32
32
  Seam::Resources::ConnectWebview.load_from_response(res.body["connect_webviews"])
33
33
  end
@@ -3,7 +3,7 @@
3
3
  module Seam
4
4
  module Resources
5
5
  class AcsEntrance < BaseResource
6
- attr_accessor :acs_entrance_id, :acs_system_id, :assa_abloy_vostio_metadata, :display_name, :dormakaba_community_metadata, :latch_metadata, :salto_ks_metadata, :salto_space_metadata, :visionline_metadata
6
+ attr_accessor :acs_entrance_id, :acs_system_id, :assa_abloy_vostio_metadata, :connected_account_id, :display_name, :dormakaba_community_metadata, :latch_metadata, :salto_ks_metadata, :salto_space_metadata, :visionline_metadata
7
7
 
8
8
  date_accessor :created_at
9
9
 
@@ -3,7 +3,7 @@
3
3
  module Seam
4
4
  module Resources
5
5
  class ConnectedAccount < BaseResource
6
- attr_accessor :account_type, :account_type_display_name, :automatically_manage_new_devices, :connected_account_id, :custom_metadata, :user_identifier
6
+ attr_accessor :account_type, :account_type_display_name, :automatically_manage_new_devices, :connected_account_id, :custom_metadata, :customer_key, :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.31.0"
4
+ VERSION = "2.33.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.31.0
4
+ version: 2.33.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-06-16 00:00:00.000000000 Z
11
+ date: 2025-06-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: faraday