seamapi 1.11.0 → 1.11.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Gemfile.lock +1 -1
- data/lib/seam/clients/connect_webviews.rb +4 -2
- data/lib/seam/resources/connect_webview.rb +2 -1
- data/lib/seam/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2c601dcd309faf4aeb50a8b4377db31937845e530176bec334d346b9d183b02e
|
4
|
+
data.tar.gz: 654b5bc26e34c8ae78d2e8663c2a44ae9d0a296104d1512381fdc4695d3cf8c1
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1debdb9f4af1644ea78bea1cbb231247fe276a80ee1b4d34d1827ab5e5902986b82c79f657c2ec6f96c02305acfa5cc3456fe1e9ca7e9617cb45def900fc4506
|
7
|
+
data.tar.gz: eb1fc2dad41081fac11dc83ff10aa899f7fde67a7888a7af4c0d0456e0f9899ee7a9c6cfbef0d9dd620c90ff84826b67fc08ee3cadf9947f05071c95342bf545
|
data/Gemfile.lock
CHANGED
@@ -30,7 +30,8 @@ module Seam
|
|
30
30
|
custom_metadata: nil,
|
31
31
|
automatically_manage_new_devices: nil,
|
32
32
|
device_selection_mode: nil,
|
33
|
-
provider_category: nil
|
33
|
+
provider_category: nil,
|
34
|
+
wait_for_device_creation: nil
|
34
35
|
)
|
35
36
|
request_seam_object(
|
36
37
|
:post,
|
@@ -44,7 +45,8 @@ module Seam
|
|
44
45
|
automatically_manage_new_devices: automatically_manage_new_devices,
|
45
46
|
device_selection_mode: device_selection_mode,
|
46
47
|
custom_metadata: custom_metadata,
|
47
|
-
provider_category: provider_category
|
48
|
+
provider_category: provider_category,
|
49
|
+
wait_for_device_creation: wait_for_device_creation
|
48
50
|
}.compact
|
49
51
|
)
|
50
52
|
end
|
@@ -4,7 +4,8 @@ module Seam
|
|
4
4
|
class ConnectWebview < BaseResource
|
5
5
|
attr_accessor :connect_webview_id, :connected_account_id, :custom_redirect_url, :custom_redirect_failure_url, :url,
|
6
6
|
:workspace_id, :device_selection_mode, :accepted_providers, :selected_provider, :accepted_devices,
|
7
|
-
:any_provider_allowed, :any_device_allowed, :login_successful, :status, :custom_metadata
|
7
|
+
:any_provider_allowed, :any_device_allowed, :login_successful, :status, :custom_metadata,
|
8
|
+
:automatically_manage_new_devices, :wait_for_device_creation
|
8
9
|
|
9
10
|
date_accessor :created_at
|
10
11
|
end
|
data/lib/seam/version.rb
CHANGED