seam 2.82.0 → 2.83.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: e435ce51efa440bda7fbed6c37acf167b12f035d8f551c3b9d2ddeb8b4451e24
|
|
4
|
+
data.tar.gz: 1e928904947f315c48e30a02c8871d11367338f0432aa11621de0b5cbca633df
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 35db724a219ade17ec4658bbcfa51787a0092817927458c917ce6afd705264df9d450a663fe92311277769fed7525f8d04c4357e6d0ecd7b25acc8bf8bdb1460
|
|
7
|
+
data.tar.gz: ba760ce3ed2f6d30046d6840258a49c46209e2a484648f2958612abaa8f8eb9065ad0e924fe2f95438d80a4437dd6ba356e60b70ae4041b4412f4a9ee15c8535
|
data/Gemfile.lock
CHANGED
|
@@ -8,6 +8,10 @@ module Seam
|
|
|
8
8
|
@defaults = defaults
|
|
9
9
|
end
|
|
10
10
|
|
|
11
|
+
def simulate
|
|
12
|
+
@simulate ||= Seam::Clients::ConnectedAccountsSimulate.new(client: @client, defaults: @defaults)
|
|
13
|
+
end
|
|
14
|
+
|
|
11
15
|
def delete(connected_account_id:, sync: nil)
|
|
12
16
|
@client.post("/connected_accounts/delete", {connected_account_id: connected_account_id, sync: sync}.compact)
|
|
13
17
|
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
3
|
+
module Seam
|
|
4
|
+
module Clients
|
|
5
|
+
class ConnectedAccountsSimulate
|
|
6
|
+
def initialize(client:, defaults:)
|
|
7
|
+
@client = client
|
|
8
|
+
@defaults = defaults
|
|
9
|
+
end
|
|
10
|
+
|
|
11
|
+
def disconnect(connected_account_id:)
|
|
12
|
+
@client.post("/connected_accounts/simulate/disconnect", {connected_account_id: connected_account_id}.compact)
|
|
13
|
+
|
|
14
|
+
nil
|
|
15
|
+
end
|
|
16
|
+
end
|
|
17
|
+
end
|
|
18
|
+
end
|
|
@@ -19,6 +19,7 @@ require_relative "action_attempts"
|
|
|
19
19
|
require_relative "client_sessions"
|
|
20
20
|
require_relative "connect_webviews"
|
|
21
21
|
require_relative "connected_accounts"
|
|
22
|
+
require_relative "connected_accounts_simulate"
|
|
22
23
|
require_relative "customers"
|
|
23
24
|
require_relative "devices"
|
|
24
25
|
require_relative "devices_simulate"
|
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.83.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-
|
|
11
|
+
date: 2025-11-06 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: faraday
|
|
@@ -222,6 +222,7 @@ files:
|
|
|
222
222
|
- lib/seam/routes/clients/client_sessions.rb
|
|
223
223
|
- lib/seam/routes/clients/connect_webviews.rb
|
|
224
224
|
- lib/seam/routes/clients/connected_accounts.rb
|
|
225
|
+
- lib/seam/routes/clients/connected_accounts_simulate.rb
|
|
225
226
|
- lib/seam/routes/clients/customers.rb
|
|
226
227
|
- lib/seam/routes/clients/devices.rb
|
|
227
228
|
- lib/seam/routes/clients/devices_simulate.rb
|