seam 2.89.0 → 2.91.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 +4 -4
- data/Gemfile.lock +1 -1
- data/lib/seam/routes/clients/action_attempts.rb +2 -2
- data/lib/seam/routes/clients/customers.rb +2 -2
- data/lib/seam/routes/clients/events.rb +2 -2
- data/lib/seam/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 2dbfdfca129b9506474fbeaca64818234451fc925cab8b699bc28aa4b373d354
|
|
4
|
+
data.tar.gz: 5738b79395d6b74d4247fa5376c0fecb3083e6621bf4ba868bcb6f245f97cea8
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 7e13116b4fdc2c5ac7ceef954057534ddb1bd14f533a51e87718285628ad408bb5bdb6d5a9177965bc1c74d4594d772976450f36801e05ffc4fd7a83756b3161
|
|
7
|
+
data.tar.gz: 9459774a82b847c8f7e007328d9831b96fd872b2cf9098747eb42a3f419d6f6f07717d488c11a4086910e932e98dd4d1e341b8c5c101391bf6852fe291101a10
|
data/Gemfile.lock
CHANGED
|
@@ -18,8 +18,8 @@ module Seam
|
|
|
18
18
|
Helpers::ActionAttempt.decide_and_wait(Seam::Resources::ActionAttempt.load_from_response(res.body["action_attempt"]), @client, wait_for_action_attempt)
|
|
19
19
|
end
|
|
20
20
|
|
|
21
|
-
def list(action_attempt_ids:)
|
|
22
|
-
res = @client.post("/action_attempts/list", {action_attempt_ids: action_attempt_ids}.compact)
|
|
21
|
+
def list(action_attempt_ids: nil, device_id: nil, limit: nil, page_cursor: nil)
|
|
22
|
+
res = @client.post("/action_attempts/list", {action_attempt_ids: action_attempt_ids, device_id: device_id, limit: limit, page_cursor: page_cursor}.compact)
|
|
23
23
|
|
|
24
24
|
Seam::Resources::ActionAttempt.load_from_response(res.body["action_attempts"])
|
|
25
25
|
end
|
|
@@ -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
|
|
@@ -14,8 +14,8 @@ module Seam
|
|
|
14
14
|
Seam::Resources::SeamEvent.load_from_response(res.body["event"])
|
|
15
15
|
end
|
|
16
16
|
|
|
17
|
-
def list(access_code_id: nil, access_code_ids: nil, acs_system_id: nil, acs_system_ids: nil, between: nil, connect_webview_id: nil, connected_account_id: nil, customer_key: nil, device_id: nil, device_ids: nil, event_ids: nil, event_type: nil, event_types: nil, limit: nil, since: nil, unstable_offset: nil)
|
|
18
|
-
res = @client.post("/events/list", {access_code_id: access_code_id, access_code_ids: access_code_ids, acs_system_id: acs_system_id, acs_system_ids: acs_system_ids, between: between, connect_webview_id: connect_webview_id, connected_account_id: connected_account_id, customer_key: customer_key, device_id: device_id, device_ids: device_ids, event_ids: event_ids, event_type: event_type, event_types: event_types, limit: limit, since: since, unstable_offset: unstable_offset}.compact)
|
|
17
|
+
def list(access_code_id: nil, access_code_ids: nil, acs_entrance_id: nil, acs_system_id: nil, acs_system_ids: nil, acs_user_id: nil, between: nil, connect_webview_id: nil, connected_account_id: nil, customer_key: nil, device_id: nil, device_ids: nil, event_ids: nil, event_type: nil, event_types: nil, limit: nil, since: nil, unstable_offset: nil, user_identity_id: nil)
|
|
18
|
+
res = @client.post("/events/list", {access_code_id: access_code_id, access_code_ids: access_code_ids, acs_entrance_id: acs_entrance_id, acs_system_id: acs_system_id, acs_system_ids: acs_system_ids, acs_user_id: acs_user_id, between: between, connect_webview_id: connect_webview_id, connected_account_id: connected_account_id, customer_key: customer_key, device_id: device_id, device_ids: device_ids, event_ids: event_ids, event_type: event_type, event_types: event_types, limit: limit, since: since, unstable_offset: unstable_offset, user_identity_id: user_identity_id}.compact)
|
|
19
19
|
|
|
20
20
|
Seam::Resources::SeamEvent.load_from_response(res.body["events"])
|
|
21
21
|
end
|
data/lib/seam/version.rb
CHANGED
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.
|
|
4
|
+
version: 2.91.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-
|
|
11
|
+
date: 2025-12-10 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: faraday
|