seam 2.55.0 → 2.57.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: e8fef8d6607094ea4373130a244ddfd91903cb09f7bdbbcfdcc8df92757bf111
4
- data.tar.gz: 3d2ab582ab4e6f2fce9a967f5d4f89ae6b7ce1fcb9af6551d4e3632b9707d494
3
+ metadata.gz: 1981ccfed9656e42d8653e9d568a89f73b107ba0b089f2a8142e32da6ce8efe1
4
+ data.tar.gz: bd530c3d03f0e722aebeeda9b07058bd5e6d89bff818159a4727adcf0b1f0337
5
5
  SHA512:
6
- metadata.gz: 427787f532cd471601df2bc1751726947c7ead9b46454eca21a99d04f9397c4784187cc6798971b28287e466437df7c66ee5fc0ff320e26ec46c9bb12fc552f8
7
- data.tar.gz: 699d2b449ca67e922dbd01082f5e496d4b6c8e132c5f8c2dc84ad1b8fec0a9f40858775797d0631ff47f3a74c49746b67069f71a2f357e7b0202ff3c128fd5ab
6
+ metadata.gz: de30831c3ff79957fb8c844889a43cf60560e41a2def4f658b82ff46edfda50210f52ba6d818d7a8e65c3724ac89eeae735204762c8cb1caa3e6b416f0dae6ce
7
+ data.tar.gz: '094fb635cbb5a9fc73f1c19f9273659c7b7e79808333ef9f1db75445db8dc8f438a6e575705e21b79c57072558d44b669c8bf64618af67946cc9c2b46b49142d'
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- seam (2.55.0)
4
+ seam (2.57.0)
5
5
  faraday (~> 2.7)
6
6
  faraday-retry (~> 2.2)
7
7
  svix (~> 1.30)
@@ -32,8 +32,8 @@ module Seam
32
32
  Seam::Resources::AcsCredential.load_from_response(res.body["acs_credential"])
33
33
  end
34
34
 
35
- def list(acs_user_id: nil, acs_system_id: nil, user_identity_id: nil, created_before: nil, is_multi_phone_sync_credential: nil, limit: nil)
36
- res = @client.post("/acs/credentials/list", {acs_user_id: acs_user_id, acs_system_id: acs_system_id, user_identity_id: user_identity_id, created_before: created_before, is_multi_phone_sync_credential: is_multi_phone_sync_credential, limit: limit}.compact)
35
+ def list(acs_user_id: nil, acs_system_id: nil, user_identity_id: nil, created_before: nil, is_multi_phone_sync_credential: nil, limit: nil, page_cursor: nil)
36
+ res = @client.post("/acs/credentials/list", {acs_user_id: acs_user_id, acs_system_id: acs_system_id, user_identity_id: user_identity_id, created_before: created_before, is_multi_phone_sync_credential: is_multi_phone_sync_credential, limit: limit, page_cursor: page_cursor}.compact)
37
37
 
38
38
  Seam::Resources::AcsCredential.load_from_response(res.body["acs_credentials"])
39
39
  end
@@ -26,8 +26,8 @@ module Seam
26
26
  nil
27
27
  end
28
28
 
29
- def generate_instant_key(user_identity_id:, max_use_count: nil)
30
- res = @client.post("/user_identities/generate_instant_key", {user_identity_id: user_identity_id, max_use_count: max_use_count}.compact)
29
+ def generate_instant_key(user_identity_id:, customization_profile_id: nil, max_use_count: nil)
30
+ res = @client.post("/user_identities/generate_instant_key", {user_identity_id: user_identity_id, customization_profile_id: customization_profile_id, max_use_count: max_use_count}.compact)
31
31
 
32
32
  Seam::Resources::InstantKey.load_from_response(res.body["instant_key"])
33
33
  end
@@ -3,7 +3,7 @@
3
3
  module Seam
4
4
  module Resources
5
5
  class InstantKey < BaseResource
6
- attr_accessor :client_session_id, :instant_key_id, :instant_key_url, :user_identity_id, :workspace_id
6
+ attr_accessor :client_session_id, :customization, :customization_profile_id, :instant_key_id, :instant_key_url, :user_identity_id, :workspace_id
7
7
 
8
8
  date_accessor :created_at, :expires_at
9
9
  end
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.55.0"
4
+ VERSION = "2.57.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.55.0
4
+ version: 2.57.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-07-28 00:00:00.000000000 Z
11
+ date: 2025-08-01 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: faraday