seam 2.61.0 → 2.62.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/access_grants.rb +2 -2
- data/lib/seam/routes/clients/events.rb +2 -2
- data/lib/seam/routes/clients/spaces.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: eec58e6c4f77ef85fefb359dfc3635030760c59f423e7da9c04e50d2d2f39bc8
|
4
|
+
data.tar.gz: 8965b2edb89a3a8cabef0c5a83a2f91b4392f752a35ea4cdbc00a93a9dd93d86
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 80c4596787a97b66ac3e531c802e84293592715ebe349ed1fcc03f110831928e6374c8e51da5ef90da5842b4bdd451483eaee4ff814f645da4fadfa9842807bc
|
7
|
+
data.tar.gz: a8330c14bbe79c099fe40c7158325d46b0c1ddf1b6f9a9d91611511e7958d6eda4d88e227cff9ad469b3311e1081fc9edda0c7a361fbb0098064783800fab5dc
|
data/Gemfile.lock
CHANGED
@@ -32,8 +32,8 @@ module Seam
|
|
32
32
|
nil
|
33
33
|
end
|
34
34
|
|
35
|
-
def list(access_grant_key: nil, acs_entrance_id: nil, acs_system_id: nil, location_id: nil, space_id: nil, user_identity_id: nil)
|
36
|
-
res = @client.post("/access_grants/list", {access_grant_key: access_grant_key, acs_entrance_id: acs_entrance_id, acs_system_id: acs_system_id, location_id: location_id, space_id: space_id, user_identity_id: user_identity_id}.compact)
|
35
|
+
def list(access_grant_key: nil, acs_entrance_id: nil, acs_system_id: nil, customer_key: nil, location_id: nil, space_id: nil, user_identity_id: nil)
|
36
|
+
res = @client.post("/access_grants/list", {access_grant_key: access_grant_key, acs_entrance_id: acs_entrance_id, acs_system_id: acs_system_id, customer_key: customer_key, location_id: location_id, space_id: space_id, user_identity_id: user_identity_id}.compact)
|
37
37
|
|
38
38
|
Seam::Resources::AccessGrant.load_from_response(res.body["access_grants"])
|
39
39
|
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,
|
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,
|
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)
|
19
19
|
|
20
20
|
Seam::Resources::SeamEvent.load_from_response(res.body["events"])
|
21
21
|
end
|
@@ -44,8 +44,8 @@ module Seam
|
|
44
44
|
nil
|
45
45
|
end
|
46
46
|
|
47
|
-
def list(connected_account_id: nil, search: nil, space_key: nil)
|
48
|
-
res = @client.post("/spaces/list", {connected_account_id: connected_account_id, search: search, space_key: space_key}.compact)
|
47
|
+
def list(connected_account_id: nil, customer_key: nil, search: nil, space_key: nil)
|
48
|
+
res = @client.post("/spaces/list", {connected_account_id: connected_account_id, customer_key: customer_key, search: search, space_key: space_key}.compact)
|
49
49
|
|
50
50
|
Seam::Resources::Space.load_from_response(res.body["spaces"])
|
51
51
|
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.62.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-08-
|
11
|
+
date: 2025-08-11 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: faraday
|