seam 2.31.0 → 2.32.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: 76ac79853d1857a2f2fbc62aa1a9b36404691e64826e0f8858fed24ed86dd571
4
+ data.tar.gz: 3ab880234eb27414c7a0b5dca773f9f9df9635fc715e0a67a6e83b3622b1a75e
5
5
  SHA512:
6
- metadata.gz: 2e21d0f5e725af6b56f298a90a034ca468cc3199e96b4a86847264e3a62656998aae608b895b38cdb05636309b1f6a5084001b8931d266355e689577c077654c
7
- data.tar.gz: 2910b747a34e3cb55ff656155153e76834029b763a1e808088892a6996a0ed929dd4d06972cc84e44405cf4fc355d0dd9e265135150749c5791aa5c5346eba7f
6
+ metadata.gz: ccd47fec4be31e400ee84c1b4a38d0b5c41dc1b83ec5754f0e799c89d4a04462cd4507d22905b0fc7fad6bf194204de2a2645b0388e4e72e97e0a3fa025108fd
7
+ data.tar.gz: 4d1e76a56b234e2d39a3d358b1fb66afa8e455f5710b9c882fc145d1b75bda5128e8a1aeb149a17efda0046ad3b585e165770ee8115f413a04b4c378c53792bf
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.32.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 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.32.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.32.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-17 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: faraday