seam 2.13.0 → 2.14.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: 49bddb7eb76b33ba7e2102d562200171f7bc91964477fade88190270ad2e26e3
4
- data.tar.gz: 62d56f5e6d6b638ec9b0b10d805637c619aa8b1b5b2ffb1ae3d0030e948ef21a
3
+ metadata.gz: 2a60c6478db6e246c0582da070d68e3180cf4521ec8839531b6a5fb830506abc
4
+ data.tar.gz: e7b716c5a4a2779817057560a00521eff857b9013f1cd849392772393cbc00f5
5
5
  SHA512:
6
- metadata.gz: b13755f11f5c9b22ecb542d8c95dbbdb267d2202a890b7451f94c671fa565f15d559088428d0c3e9ded017d7b3778950c32adaf57d5d7e6b0d0f97db19a7142a
7
- data.tar.gz: 514dce5a98b2248a34f4a472e81d28326a8b92cdcde70e36ddbb6ef4502da12c7c8dbf1489a5f67f37eda3df7a9ff3900452e0a38615c50eef235aed433f9e7c
6
+ metadata.gz: 6738a32b5c67115dcc3d35cdfadbc9b0f55c39a67f3e452a1d561d745e8cdde4cf05bce2f0a8a829336ef624678f24479f649878b6e19169cfc778777a4c4427
7
+ data.tar.gz: 58cd48938ba19caf0a7326379f0bfe70a59cfaffa08a3c480c403a4c96c3fd21416be3826d63e17170da24af20d09e9a99b62009c91f8f1d06f08decf3aee897
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- seam (2.13.0)
4
+ seam (2.14.0)
5
5
  faraday (~> 2.7)
6
6
  faraday-retry (~> 2.2)
7
7
  svix (~> 1.30)
@@ -8,18 +8,6 @@ module Seam
8
8
  @defaults = defaults
9
9
  end
10
10
 
11
- def access_code_lock(access_code_id:, device_id:)
12
- @client.post("/devices/simulate/access_code_lock", {access_code_id: access_code_id, device_id: device_id}.compact)
13
-
14
- nil
15
- end
16
-
17
- def access_code_unlock(access_code_id:, device_id:)
18
- @client.post("/devices/simulate/access_code_unlock", {access_code_id: access_code_id, device_id: device_id}.compact)
19
-
20
- nil
21
- end
22
-
23
11
  def connect(device_id:)
24
12
  @client.post("/devices/simulate/connect", {device_id: device_id}.compact)
25
13
 
@@ -10,8 +10,8 @@ module Seam
10
10
  @defaults = defaults
11
11
  end
12
12
 
13
- def create(name:, company_name: nil, connect_partner_name: nil, is_sandbox: nil, webview_logo_shape: nil, webview_primary_button_color: nil, webview_primary_button_text_color: nil)
14
- res = @client.post("/workspaces/create", {name: name, company_name: company_name, connect_partner_name: connect_partner_name, is_sandbox: is_sandbox, webview_logo_shape: webview_logo_shape, webview_primary_button_color: webview_primary_button_color, webview_primary_button_text_color: webview_primary_button_text_color}.compact)
13
+ def create(name:, company_name: nil, connect_partner_name: nil, is_sandbox: nil, webview_logo_shape: nil, webview_primary_button_color: nil, webview_primary_button_text_color: nil, webview_success_message: nil)
14
+ res = @client.post("/workspaces/create", {name: name, company_name: company_name, connect_partner_name: connect_partner_name, is_sandbox: is_sandbox, webview_logo_shape: webview_logo_shape, webview_primary_button_color: webview_primary_button_color, webview_primary_button_text_color: webview_primary_button_text_color, webview_success_message: webview_success_message}.compact)
15
15
 
16
16
  Seam::Resources::Workspace.load_from_response(res.body["workspace"])
17
17
  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.13.0"
4
+ VERSION = "2.14.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.13.0
4
+ version: 2.14.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-03-26 00:00:00.000000000 Z
11
+ date: 2025-03-31 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: faraday