seam 2.27.0 → 2.29.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 +6 -6
- data/lib/seam/routes/clients/access_methods.rb +4 -4
- data/lib/seam/routes/clients/connect_webviews.rb +2 -2
- data/lib/seam/routes/clients/thermostats.rb +2 -2
- data/lib/seam/routes/resources/access_grant.rb +11 -0
- data/lib/seam/routes/resources/access_method.rb +11 -0
- data/lib/seam/routes/resources/connect_webview.rb +1 -1
- data/lib/seam/routes/resources/index.rb +2 -0
- data/lib/seam/version.rb +1 -1
- metadata +4 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 302049312c2c18f70449e90b73687d5e34dde0537999d371f06897e62871c546
|
4
|
+
data.tar.gz: 1a1033634b5f424689c30aaf716e218951b5e753b75257d088dd53674ca7ce5e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a750f450054b2e5e1181d02d337b9344e38b15b27001099dc36526954a61fcdaa21c3733e2ce9f57fb6892bbf7f1c5927b15c9b23b4c9654be79842296ea477c
|
7
|
+
data.tar.gz: ee9158cfd8e39bbda270b78ae04109d0edeaa7c020fb23921bb0081d2afe7d56a52d945e6d242ddc5e0baa3bb598923b125231057ddedda18d2fb5bd890ec03b
|
data/Gemfile.lock
CHANGED
@@ -9,9 +9,9 @@ module Seam
|
|
9
9
|
end
|
10
10
|
|
11
11
|
def create(requested_access_methods:, user_identity_id: nil, user_identity: nil, acs_entrance_ids: nil, device_ids: nil, ends_at: nil, location: nil, location_ids: nil, space_ids: nil, starts_at: nil)
|
12
|
-
@client.post("/access_grants/create", {requested_access_methods: requested_access_methods, user_identity_id: user_identity_id, user_identity: user_identity, acs_entrance_ids: acs_entrance_ids, device_ids: device_ids, ends_at: ends_at, location: location, location_ids: location_ids, space_ids: space_ids, starts_at: starts_at}.compact)
|
12
|
+
res = @client.post("/access_grants/create", {requested_access_methods: requested_access_methods, user_identity_id: user_identity_id, user_identity: user_identity, acs_entrance_ids: acs_entrance_ids, device_ids: device_ids, ends_at: ends_at, location: location, location_ids: location_ids, space_ids: space_ids, starts_at: starts_at}.compact)
|
13
13
|
|
14
|
-
|
14
|
+
Seam::Resources::AccessGrant.load_from_response(res.body["access_grant"])
|
15
15
|
end
|
16
16
|
|
17
17
|
def delete(access_grant_id:)
|
@@ -21,15 +21,15 @@ module Seam
|
|
21
21
|
end
|
22
22
|
|
23
23
|
def get(access_grant_id:)
|
24
|
-
@client.post("/access_grants/get", {access_grant_id: access_grant_id}.compact)
|
24
|
+
res = @client.post("/access_grants/get", {access_grant_id: access_grant_id}.compact)
|
25
25
|
|
26
|
-
|
26
|
+
Seam::Resources::AccessGrant.load_from_response(res.body["access_grant"])
|
27
27
|
end
|
28
28
|
|
29
29
|
def list(acs_entrance_id: nil, acs_system_id: nil, location_id: nil, space_id: nil, user_identity_id: nil)
|
30
|
-
@client.post("/access_grants/list", {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)
|
30
|
+
res = @client.post("/access_grants/list", {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)
|
31
31
|
|
32
|
-
|
32
|
+
Seam::Resources::AccessGrant.load_from_response(res.body["access_grants"])
|
33
33
|
end
|
34
34
|
end
|
35
35
|
end
|
@@ -15,15 +15,15 @@ module Seam
|
|
15
15
|
end
|
16
16
|
|
17
17
|
def get(access_method_id:)
|
18
|
-
@client.post("/access_methods/get", {access_method_id: access_method_id}.compact)
|
18
|
+
res = @client.post("/access_methods/get", {access_method_id: access_method_id}.compact)
|
19
19
|
|
20
|
-
|
20
|
+
Seam::Resources::AccessMethod.load_from_response(res.body["access_method"])
|
21
21
|
end
|
22
22
|
|
23
23
|
def list(access_grant_id:)
|
24
|
-
@client.post("/access_methods/list", {access_grant_id: access_grant_id}.compact)
|
24
|
+
res = @client.post("/access_methods/list", {access_grant_id: access_grant_id}.compact)
|
25
25
|
|
26
|
-
|
26
|
+
Seam::Resources::AccessMethod.load_from_response(res.body["access_methods"])
|
27
27
|
end
|
28
28
|
end
|
29
29
|
end
|
@@ -8,8 +8,8 @@ module Seam
|
|
8
8
|
@defaults = defaults
|
9
9
|
end
|
10
10
|
|
11
|
-
def create(accepted_providers: nil, automatically_manage_new_devices: nil, custom_metadata: nil, custom_redirect_failure_url: nil, custom_redirect_url: nil, customer_id: nil, device_selection_mode: nil, provider_category: nil, wait_for_device_creation: nil)
|
12
|
-
res = @client.post("/connect_webviews/create", {accepted_providers: accepted_providers, automatically_manage_new_devices: automatically_manage_new_devices, custom_metadata: custom_metadata, custom_redirect_failure_url: custom_redirect_failure_url, custom_redirect_url: custom_redirect_url, customer_id: customer_id, device_selection_mode: device_selection_mode, provider_category: provider_category, wait_for_device_creation: wait_for_device_creation}.compact)
|
11
|
+
def create(accepted_capabilities: nil, accepted_providers: nil, automatically_manage_new_devices: nil, custom_metadata: nil, custom_redirect_failure_url: nil, custom_redirect_url: nil, customer_id: nil, device_selection_mode: nil, provider_category: nil, wait_for_device_creation: nil)
|
12
|
+
res = @client.post("/connect_webviews/create", {accepted_capabilities: accepted_capabilities, accepted_providers: accepted_providers, automatically_manage_new_devices: automatically_manage_new_devices, custom_metadata: custom_metadata, custom_redirect_failure_url: custom_redirect_failure_url, custom_redirect_url: custom_redirect_url, customer_id: customer_id, device_selection_mode: device_selection_mode, provider_category: provider_category, wait_for_device_creation: wait_for_device_creation}.compact)
|
13
13
|
|
14
14
|
Seam::Resources::ConnectWebview.load_from_response(res.body["connect_webview"])
|
15
15
|
end
|
@@ -108,8 +108,8 @@ module Seam
|
|
108
108
|
nil
|
109
109
|
end
|
110
110
|
|
111
|
-
def update_climate_preset(climate_preset_key:, device_id:,
|
112
|
-
@client.post("/thermostats/update_climate_preset", {climate_preset_key: climate_preset_key, device_id: device_id,
|
111
|
+
def update_climate_preset(climate_preset_key:, device_id:, cooling_set_point_celsius: nil, cooling_set_point_fahrenheit: nil, fan_mode_setting: nil, heating_set_point_celsius: nil, heating_set_point_fahrenheit: nil, hvac_mode_setting: nil, manual_override_allowed: nil, name: nil)
|
112
|
+
@client.post("/thermostats/update_climate_preset", {climate_preset_key: climate_preset_key, device_id: device_id, cooling_set_point_celsius: cooling_set_point_celsius, cooling_set_point_fahrenheit: cooling_set_point_fahrenheit, fan_mode_setting: fan_mode_setting, heating_set_point_celsius: heating_set_point_celsius, heating_set_point_fahrenheit: heating_set_point_fahrenheit, hvac_mode_setting: hvac_mode_setting, manual_override_allowed: manual_override_allowed, name: name}.compact)
|
113
113
|
|
114
114
|
nil
|
115
115
|
end
|
@@ -0,0 +1,11 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Seam
|
4
|
+
module Resources
|
5
|
+
class AccessGrant < BaseResource
|
6
|
+
attr_accessor :access_grant_id, :access_method_ids, :display_name, :location_ids, :requested_access_methods, :space_ids, :user_identity_id, :workspace_id
|
7
|
+
|
8
|
+
date_accessor :created_at
|
9
|
+
end
|
10
|
+
end
|
11
|
+
end
|
@@ -0,0 +1,11 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Seam
|
4
|
+
module Resources
|
5
|
+
class AccessMethod < BaseResource
|
6
|
+
attr_accessor :access_method_id, :display_name, :instant_key_url, :is_card_encoding_required, :mode, :workspace_id
|
7
|
+
|
8
|
+
date_accessor :created_at, :issued_at
|
9
|
+
end
|
10
|
+
end
|
11
|
+
end
|
@@ -3,7 +3,7 @@
|
|
3
3
|
module Seam
|
4
4
|
module Resources
|
5
5
|
class ConnectWebview < BaseResource
|
6
|
-
attr_accessor :accepted_devices, :accepted_providers, :any_device_allowed, :any_provider_allowed, :automatically_manage_new_devices, :connect_webview_id, :connected_account_id, :custom_metadata, :custom_redirect_failure_url, :custom_redirect_url, :device_selection_mode, :login_successful, :selected_provider, :status, :url, :wait_for_device_creation, :workspace_id
|
6
|
+
attr_accessor :accepted_capabilities, :accepted_devices, :accepted_providers, :any_device_allowed, :any_provider_allowed, :automatically_manage_new_devices, :connect_webview_id, :connected_account_id, :custom_metadata, :custom_redirect_failure_url, :custom_redirect_url, :device_selection_mode, :login_successful, :selected_provider, :status, :url, :wait_for_device_creation, :workspace_id
|
7
7
|
|
8
8
|
date_accessor :authorized_at, :created_at
|
9
9
|
end
|
@@ -6,6 +6,8 @@ require_relative "resource_warning"
|
|
6
6
|
require_relative "resource_errors_support"
|
7
7
|
require_relative "resource_warnings_support"
|
8
8
|
require_relative "access_code"
|
9
|
+
require_relative "access_grant"
|
10
|
+
require_relative "access_method"
|
9
11
|
require_relative "acs_access_group"
|
10
12
|
require_relative "acs_credential"
|
11
13
|
require_relative "acs_credential_pool"
|
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.29.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-
|
11
|
+
date: 2025-06-11 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: faraday
|
@@ -241,6 +241,8 @@ files:
|
|
241
241
|
- lib/seam/routes/clients/webhooks.rb
|
242
242
|
- lib/seam/routes/clients/workspaces.rb
|
243
243
|
- lib/seam/routes/resources/access_code.rb
|
244
|
+
- lib/seam/routes/resources/access_grant.rb
|
245
|
+
- lib/seam/routes/resources/access_method.rb
|
244
246
|
- lib/seam/routes/resources/acs_access_group.rb
|
245
247
|
- lib/seam/routes/resources/acs_credential.rb
|
246
248
|
- lib/seam/routes/resources/acs_credential_pool.rb
|