seam 2.90.0 → 2.92.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: e62826ed67ab728593e29f2839f6bfe6cbd119bca32812078f1c09892bece1b0
4
- data.tar.gz: daa8bfc22e74eb5f4efcad4699fc80f71dfa1dae85a28b9e0312ac9ad7864afe
3
+ metadata.gz: 4e1c1527f36d529bfa26d83057a4bc454ba6d4a0be03afacb31773bfd11561ba
4
+ data.tar.gz: 2d22ec6ec0f6761da2cec0425e0e098165779b07b15808addb1ac15d20d2675c
5
5
  SHA512:
6
- metadata.gz: 1e81b4d26191333758c1e2f9262aa41819d2a74fcd02466ace932af79b65e6224b588c0bebf26ebaa2fa56f4fa3dfceb2610fe5130945e054eab2c415f2a3609
7
- data.tar.gz: 7c7006d4479be57c7342999accc16451f00513ed311ffc9af7b9371820e6c3edfc41dc8009c624fa75c6977c0485f7b62ea6b844b3cb58d6bcf9de79986269a8
6
+ metadata.gz: a2f8c17a15343b8967beba75afc8f791735b4372d5b5d560542551668f9dabfdf791cf398d0dcbcc1ffa374e194601058b7e02b538f3d3daa7188069da48c004
7
+ data.tar.gz: b8b5bfa10355dc45b045be7c485ae275ab7e95545766b1018247de99737255b171c98a26af115ff29812c019d4bafa3049ccd0c0f8f1f122a784dc24eca291f1
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- seam (2.90.0)
4
+ seam (2.92.0)
5
5
  faraday (~> 2.7)
6
6
  faraday-retry (~> 2.2)
7
7
  svix (~> 1.30)
@@ -8,8 +8,8 @@ module Seam
8
8
  @defaults = defaults
9
9
  end
10
10
 
11
- def create_portal(customization_profile_id: nil, features: nil, is_embedded: nil, landing_page: nil, locale: nil, customer_data: nil)
12
- res = @client.post("/customers/create_portal", {customization_profile_id: customization_profile_id, features: features, is_embedded: is_embedded, landing_page: landing_page, locale: locale, customer_data: customer_data}.compact)
11
+ def create_portal(customization_profile_id: nil, features: nil, is_embedded: nil, landing_page: nil, locale: nil, property_listing_filter: nil, customer_data: nil)
12
+ res = @client.post("/customers/create_portal", {customization_profile_id: customization_profile_id, features: features, is_embedded: is_embedded, landing_page: landing_page, locale: locale, property_listing_filter: property_listing_filter, customer_data: customer_data}.compact)
13
13
 
14
14
  Seam::Resources::MagicLink.load_from_response(res.body["magic_link"])
15
15
  end
@@ -34,6 +34,12 @@ module Seam
34
34
  Seam::Resources::DeviceProvider.load_from_response(res.body["device_providers"])
35
35
  end
36
36
 
37
+ def report_provider_metadata(devices:)
38
+ @client.post("/devices/report_provider_metadata", {devices: devices}.compact)
39
+
40
+ nil
41
+ end
42
+
37
43
  def update(device_id:, custom_metadata: nil, is_managed: nil, name: nil, properties: nil)
38
44
  @client.post("/devices/update", {device_id: device_id, custom_metadata: custom_metadata, is_managed: is_managed, name: name, properties: properties}.compact)
39
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.90.0"
4
+ VERSION = "2.92.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.90.0
4
+ version: 2.92.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-12-05 00:00:00.000000000 Z
11
+ date: 2025-12-12 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: faraday