seam 2.35.0 → 2.36.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: 7caf82d5f217ac804e727ac5d7249b1b9663261fcce93f8b07be47d576a7771c
4
- data.tar.gz: 22bcafc52de15e5ab28d90f1dba51c1fe2942e9435b52f812ac1235f28966cb9
3
+ metadata.gz: 255f211cd2b618d13e384a8d88e3ccc3e85a4cba904958062499f27be8cf264e
4
+ data.tar.gz: 349ad852421d46d45c88cea4a2d8524ba85815956248349ce203f65c94150f7e
5
5
  SHA512:
6
- metadata.gz: cca0de0839c10ee7a72025a7679b6a589a3d4acbaea5a9c8eb24e3136c9f63428cb943523cf1ab21c54fae2ec4f24bb1c9dbd88efe06695678dd18ded4852341
7
- data.tar.gz: 4f9ed09f69cdc1741ece01da863ec27aa11403666168d88d1ddaef08aed0b2223d2183fa0145d756c30bdd5308e9c472301c1b8779beaea2dab6513a4e15faf7
6
+ metadata.gz: 7082a3da3a6dcc6bc9b0ae420888f5c59bc8f4b0bb2489f88fb7b59af7121da6a561a5e866a000d24443e78454fb69eb93caa9f04a646ab3a88ad8d6439f876c
7
+ data.tar.gz: db6c4e0ef52f14f776e4ed51e26874d8aa25dd339568cda34c78c3d9a286df3a913249e5323cf1c70063c1f1574afb1c1ee958e839ccbf7bc71f180c2be87838
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- seam (2.35.0)
4
+ seam (2.36.0)
5
5
  faraday (~> 2.7)
6
6
  faraday-retry (~> 2.2)
7
7
  svix (~> 1.30)
@@ -8,14 +8,14 @@ module Seam
8
8
  @defaults = defaults
9
9
  end
10
10
 
11
- def create_portal(features: nil, customer_data: nil)
12
- res = @client.post("/customers/create_portal", {features: features, customer_data: customer_data}.compact)
11
+ def create_portal(features: nil, is_embedded: nil, customer_data: nil)
12
+ res = @client.post("/customers/create_portal", {features: features, is_embedded: is_embedded, customer_data: customer_data}.compact)
13
13
 
14
14
  Seam::Resources::MagicLink.load_from_response(res.body["magic_link"])
15
15
  end
16
16
 
17
- def push_data(customer_key:, access_grants: nil, bookings: nil, buildings: nil, common_areas: nil, facilities: nil, guests: nil, listings: nil, properties: nil, reservations: nil, residents: nil, rooms: nil, spaces: nil, tenants: nil, units: nil, user_identities: nil, users: nil)
18
- @client.post("/customers/push_data", {customer_key: customer_key, access_grants: access_grants, bookings: bookings, buildings: buildings, common_areas: common_areas, facilities: facilities, guests: guests, listings: listings, properties: properties, reservations: reservations, residents: residents, rooms: rooms, spaces: spaces, tenants: tenants, units: units, user_identities: user_identities, users: users}.compact)
17
+ def push_data(customer_key:, access_grants: nil, bookings: nil, buildings: nil, common_areas: nil, facilities: nil, guests: nil, listings: nil, properties: nil, property_listings: nil, reservations: nil, residents: nil, rooms: nil, spaces: nil, tenants: nil, units: nil, user_identities: nil, users: nil)
18
+ @client.post("/customers/push_data", {customer_key: customer_key, access_grants: access_grants, bookings: bookings, buildings: buildings, common_areas: common_areas, facilities: facilities, guests: guests, listings: listings, properties: properties, property_listings: property_listings, reservations: reservations, residents: residents, rooms: rooms, spaces: spaces, tenants: tenants, units: units, user_identities: user_identities, users: users}.compact)
19
19
 
20
20
  nil
21
21
  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.35.0"
4
+ VERSION = "2.36.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.35.0
4
+ version: 2.36.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-24 00:00:00.000000000 Z
11
+ date: 2025-06-25 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: faraday