seam 2.88.0 → 2.90.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:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: e62826ed67ab728593e29f2839f6bfe6cbd119bca32812078f1c09892bece1b0
|
|
4
|
+
data.tar.gz: daa8bfc22e74eb5f4efcad4699fc80f71dfa1dae85a28b9e0312ac9ad7864afe
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 1e81b4d26191333758c1e2f9262aa41819d2a74fcd02466ace932af79b65e6224b588c0bebf26ebaa2fa56f4fa3dfceb2610fe5130945e054eab2c415f2a3609
|
|
7
|
+
data.tar.gz: 7c7006d4479be57c7342999accc16451f00513ed311ffc9af7b9371820e6c3edfc41dc8009c624fa75c6977c0485f7b62ea6b844b3cb58d6bcf9de79986269a8
|
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
|
|
@@ -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.90.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-
|
|
11
|
+
date: 2025-12-05 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: faraday
|