seam 2.0.0a2 → 2.0.0b1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Gemfile.lock +49 -53
- data/README.md +323 -3
- data/Rakefile +4 -1
- data/lib/seam/auth.rb +118 -0
- data/lib/seam/base_resource.rb +63 -0
- data/lib/seam/deep_hash_accessor.rb +37 -0
- data/lib/seam/default_endpoint.rb +5 -0
- data/lib/seam/helpers/action_attempt.rb +45 -0
- data/lib/seam/http.rb +52 -0
- data/lib/seam/http_multi_workspace.rb +62 -0
- data/lib/seam/http_single_workspace.rb +42 -0
- data/lib/seam/options.rb +64 -0
- data/lib/seam/parse_options.rb +23 -0
- data/lib/seam/request.rb +82 -51
- data/lib/seam/routes/clients/access_codes.rb +74 -0
- data/lib/seam/routes/clients/access_codes_simulate.rb +18 -0
- data/lib/seam/routes/clients/access_codes_unmanaged.rb +42 -0
- data/lib/seam/routes/clients/acs.rb +44 -0
- data/lib/seam/routes/clients/acs_access_groups.rb +48 -0
- data/lib/seam/routes/clients/acs_access_groups_unmanaged.rb +24 -0
- data/lib/seam/routes/clients/acs_credential_pools.rb +18 -0
- data/lib/seam/routes/clients/acs_credential_provisioning_automations.rb +18 -0
- data/lib/seam/routes/clients/acs_credentials.rb +60 -0
- data/lib/seam/routes/clients/acs_credentials_unmanaged.rb +24 -0
- data/lib/seam/routes/clients/acs_encoders.rb +36 -0
- data/lib/seam/routes/clients/acs_entrances.rb +36 -0
- data/lib/seam/routes/clients/acs_systems.rb +30 -0
- data/lib/seam/routes/clients/acs_users.rb +78 -0
- data/lib/seam/routes/clients/acs_users_unmanaged.rb +24 -0
- data/lib/seam/routes/clients/action_attempts.rb +28 -0
- data/lib/seam/routes/clients/client_sessions.rb +54 -0
- data/lib/seam/routes/clients/connect_webviews.rb +36 -0
- data/lib/seam/routes/clients/connected_accounts.rb +36 -0
- data/lib/seam/routes/clients/devices.rb +50 -0
- data/lib/seam/routes/clients/devices_simulate.rb +30 -0
- data/lib/seam/routes/clients/devices_unmanaged.rb +30 -0
- data/lib/seam/routes/clients/events.rb +24 -0
- data/lib/seam/routes/clients/index.rb +38 -0
- data/lib/seam/routes/clients/locks.rb +42 -0
- data/lib/seam/routes/clients/networks.rb +24 -0
- data/lib/seam/routes/clients/noise_sensors.rb +26 -0
- data/lib/seam/routes/clients/noise_sensors_noise_thresholds.rb +42 -0
- data/lib/seam/routes/clients/noise_sensors_simulate.rb +18 -0
- data/lib/seam/routes/clients/phones.rb +28 -0
- data/lib/seam/routes/clients/phones_simulate.rb +18 -0
- data/lib/seam/routes/clients/thermostats.rb +108 -0
- data/lib/seam/routes/clients/thermostats_schedules.rb +42 -0
- data/lib/seam/routes/clients/user_identities.rb +88 -0
- data/lib/seam/routes/clients/user_identities_enrollment_automations.rb +36 -0
- data/lib/seam/routes/clients/webhooks.rb +42 -0
- data/lib/seam/routes/clients/workspaces.rb +40 -0
- data/lib/seam/routes/resources/access_code.rb +14 -0
- data/lib/seam/routes/resources/acs_access_group.rb +11 -0
- data/lib/seam/routes/resources/acs_credential.rb +14 -0
- data/lib/seam/routes/resources/acs_credential_pool.rb +11 -0
- data/lib/seam/routes/resources/acs_credential_provisioning_automation.rb +11 -0
- data/lib/seam/routes/resources/acs_entrance.rb +13 -0
- data/lib/seam/routes/resources/acs_system.rb +14 -0
- data/lib/seam/routes/resources/acs_user.rb +14 -0
- data/lib/seam/routes/resources/action_attempt.rb +9 -0
- data/lib/seam/routes/resources/client_session.rb +11 -0
- data/lib/seam/routes/resources/connect_webview.rb +11 -0
- data/lib/seam/routes/resources/connected_account.rb +14 -0
- data/lib/seam/routes/resources/device.rb +14 -0
- data/lib/seam/routes/resources/device_provider.rb +9 -0
- data/lib/seam/routes/resources/enrollment_automation.rb +11 -0
- data/lib/seam/routes/resources/event.rb +11 -0
- data/lib/seam/routes/resources/index.rb +33 -0
- data/lib/seam/routes/resources/network.rb +11 -0
- data/lib/seam/routes/resources/noise_threshold.rb +9 -0
- data/lib/seam/routes/resources/phone.rb +14 -0
- data/lib/seam/routes/resources/resource_error.rb +11 -0
- data/lib/seam/routes/resources/resource_errors_support.rb +11 -0
- data/lib/seam/routes/resources/resource_warning.rb +11 -0
- data/lib/seam/routes/resources/resource_warnings_support.rb +11 -0
- data/lib/seam/routes/resources/service_health.rb +9 -0
- data/lib/seam/routes/resources/thermostat_schedule.rb +13 -0
- data/lib/seam/routes/resources/unmanaged_access_code.rb +14 -0
- data/lib/seam/routes/resources/unmanaged_device.rb +14 -0
- data/lib/seam/routes/resources/user_identity.rb +11 -0
- data/lib/seam/routes/resources/webhook.rb +9 -0
- data/lib/seam/routes/resources/workspace.rb +9 -0
- data/lib/seam/routes/routes.rb +94 -0
- data/lib/seam/token.rb +53 -0
- data/lib/seam/version.rb +1 -1
- data/lib/seam/wait_for_action_attempt.rb +32 -0
- data/lib/seam/webhook.rb +23 -0
- data/lib/seam.rb +19 -68
- metadata +115 -70
- data/lib/seam/client.rb +0 -129
- data/lib/seam/clients/access_codes.rb +0 -95
- data/lib/seam/clients/access_codes_simulate.rb +0 -17
- data/lib/seam/clients/access_codes_unmanaged.rb +0 -57
- data/lib/seam/clients/acs.rb +0 -35
- data/lib/seam/clients/acs_access_groups.rb +0 -57
- data/lib/seam/clients/acs_credential_pools.rb +0 -17
- data/lib/seam/clients/acs_credential_provisioning_automations.rb +0 -17
- data/lib/seam/clients/acs_credentials.rb +0 -77
- data/lib/seam/clients/acs_entrances.rb +0 -47
- data/lib/seam/clients/acs_systems.rb +0 -27
- data/lib/seam/clients/acs_users.rb +0 -117
- data/lib/seam/clients/action_attempts.rb +0 -30
- data/lib/seam/clients/base_client.rb +0 -21
- data/lib/seam/clients/client_sessions.rb +0 -77
- data/lib/seam/clients/connect_webviews.rb +0 -47
- data/lib/seam/clients/connected_accounts.rb +0 -47
- data/lib/seam/clients/devices.rb +0 -65
- data/lib/seam/clients/devices_simulate.rb +0 -17
- data/lib/seam/clients/devices_unmanaged.rb +0 -37
- data/lib/seam/clients/events.rb +0 -27
- data/lib/seam/clients/locks.rb +0 -53
- data/lib/seam/clients/networks.rb +0 -27
- data/lib/seam/clients/noise_sensors.rb +0 -15
- data/lib/seam/clients/noise_sensors_noise_thresholds.rb +0 -57
- data/lib/seam/clients/noise_sensors_simulate.rb +0 -17
- data/lib/seam/clients/phones.rb +0 -31
- data/lib/seam/clients/phones_simulate.rb +0 -17
- data/lib/seam/clients/thermostats.rb +0 -106
- data/lib/seam/clients/thermostats_climate_setting_schedules.rb +0 -57
- data/lib/seam/clients/user_identities.rb +0 -131
- data/lib/seam/clients/user_identities_enrollment_automations.rb +0 -47
- data/lib/seam/clients/webhooks.rb +0 -57
- data/lib/seam/clients/workspaces.rb +0 -50
- data/lib/seam/resources/access_code.rb +0 -12
- data/lib/seam/resources/acs_access_group.rb +0 -9
- data/lib/seam/resources/acs_credential.rb +0 -12
- data/lib/seam/resources/acs_credential_pool.rb +0 -9
- data/lib/seam/resources/acs_credential_provisioning_automation.rb +0 -9
- data/lib/seam/resources/acs_entrance.rb +0 -9
- data/lib/seam/resources/acs_system.rb +0 -9
- data/lib/seam/resources/acs_user.rb +0 -9
- data/lib/seam/resources/action_attempt.rb +0 -46
- data/lib/seam/resources/base_resource.rb +0 -58
- data/lib/seam/resources/client_session.rb +0 -9
- data/lib/seam/resources/climate_setting_schedule.rb +0 -11
- data/lib/seam/resources/connect_webview.rb +0 -9
- data/lib/seam/resources/connected_account.rb +0 -12
- data/lib/seam/resources/device.rb +0 -12
- data/lib/seam/resources/device_provider.rb +0 -7
- data/lib/seam/resources/enrollment_automation.rb +0 -9
- data/lib/seam/resources/event.rb +0 -9
- data/lib/seam/resources/network.rb +0 -9
- data/lib/seam/resources/noise_threshold.rb +0 -7
- data/lib/seam/resources/phone.rb +0 -12
- data/lib/seam/resources/resource_error.rb +0 -9
- data/lib/seam/resources/resource_errors_support.rb +0 -9
- data/lib/seam/resources/resource_warning.rb +0 -9
- data/lib/seam/resources/resource_warnings_support.rb +0 -9
- data/lib/seam/resources/service_health.rb +0 -7
- data/lib/seam/resources/unmanaged_access_code.rb +0 -12
- data/lib/seam/resources/unmanaged_device.rb +0 -12
- data/lib/seam/resources/user_identity.rb +0 -9
- data/lib/seam/resources/webhook.rb +0 -7
- data/lib/seam/resources/workspace.rb +0 -7
data/lib/seam/version.rb
CHANGED
@@ -0,0 +1,32 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Seam
|
4
|
+
class ActionAttemptError < StandardError
|
5
|
+
attr_reader :action_attempt
|
6
|
+
|
7
|
+
def initialize(message, action_attempt)
|
8
|
+
super(message)
|
9
|
+
@action_attempt = action_attempt
|
10
|
+
end
|
11
|
+
|
12
|
+
def name
|
13
|
+
self.class.name
|
14
|
+
end
|
15
|
+
end
|
16
|
+
|
17
|
+
class ActionAttemptFailedError < ActionAttemptError
|
18
|
+
attr_reader :code
|
19
|
+
|
20
|
+
def initialize(action_attempt)
|
21
|
+
super(action_attempt.error.message, action_attempt)
|
22
|
+
@code = action_attempt.error.type
|
23
|
+
end
|
24
|
+
end
|
25
|
+
|
26
|
+
class ActionAttemptTimeoutError < ActionAttemptError
|
27
|
+
def initialize(action_attempt, timeout)
|
28
|
+
message = "Timed out waiting for action attempt after #{timeout}s"
|
29
|
+
super(message, action_attempt)
|
30
|
+
end
|
31
|
+
end
|
32
|
+
end
|
data/lib/seam/webhook.rb
ADDED
@@ -0,0 +1,23 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require "svix/webhook"
|
4
|
+
require "svix/errors"
|
5
|
+
require_relative "base_resource"
|
6
|
+
require_relative "routes/resources/event"
|
7
|
+
|
8
|
+
module Seam
|
9
|
+
WebhookVerificationError = Svix::WebhookVerificationError
|
10
|
+
|
11
|
+
class Webhook
|
12
|
+
def initialize(secret)
|
13
|
+
@webhook = Svix::Webhook.new(secret)
|
14
|
+
end
|
15
|
+
|
16
|
+
def verify(payload, headers)
|
17
|
+
normalized_headers = headers.transform_keys(&:downcase)
|
18
|
+
res = @webhook.verify(payload, normalized_headers)
|
19
|
+
|
20
|
+
Seam::Resources::SeamEvent.load_from_response(res)
|
21
|
+
end
|
22
|
+
end
|
23
|
+
end
|
data/lib/seam.rb
CHANGED
@@ -1,74 +1,25 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
|
-
require_relative "seam/version"
|
4
|
-
require_relative "seam/lts_version"
|
5
|
-
require_relative "seam/request"
|
6
3
|
require_relative "seam/logger"
|
7
|
-
require_relative "seam/
|
8
|
-
require_relative "seam/
|
9
|
-
require_relative "seam/
|
10
|
-
require_relative "seam/
|
11
|
-
require_relative "seam/resources/resource_warning"
|
12
|
-
require_relative "seam/resources/resource_errors_support"
|
13
|
-
require_relative "seam/resources/resource_warnings_support"
|
14
|
-
require_relative "seam/resources/access_code"
|
15
|
-
require_relative "seam/resources/acs_access_group"
|
16
|
-
require_relative "seam/resources/acs_credential"
|
17
|
-
require_relative "seam/resources/acs_credential_pool"
|
18
|
-
require_relative "seam/resources/acs_credential_provisioning_automation"
|
19
|
-
require_relative "seam/resources/acs_entrance"
|
20
|
-
require_relative "seam/resources/acs_system"
|
21
|
-
require_relative "seam/resources/acs_user"
|
22
|
-
require_relative "seam/resources/action_attempt"
|
23
|
-
require_relative "seam/resources/client_session"
|
24
|
-
require_relative "seam/resources/climate_setting_schedule"
|
25
|
-
require_relative "seam/resources/connect_webview"
|
26
|
-
require_relative "seam/resources/connected_account"
|
27
|
-
require_relative "seam/resources/device"
|
28
|
-
require_relative "seam/resources/device_provider"
|
29
|
-
require_relative "seam/resources/enrollment_automation"
|
30
|
-
require_relative "seam/resources/event"
|
31
|
-
require_relative "seam/resources/network"
|
32
|
-
require_relative "seam/resources/noise_threshold"
|
33
|
-
require_relative "seam/resources/phone"
|
34
|
-
require_relative "seam/resources/service_health"
|
35
|
-
require_relative "seam/resources/unmanaged_access_code"
|
36
|
-
require_relative "seam/resources/unmanaged_device"
|
37
|
-
require_relative "seam/resources/user_identity"
|
38
|
-
require_relative "seam/resources/webhook"
|
39
|
-
require_relative "seam/resources/workspace"
|
40
|
-
require_relative "seam/clients/access_codes"
|
41
|
-
require_relative "seam/clients/access_codes_simulate"
|
42
|
-
require_relative "seam/clients/access_codes_unmanaged"
|
43
|
-
require_relative "seam/clients/acs_access_groups"
|
44
|
-
require_relative "seam/clients/acs"
|
45
|
-
require_relative "seam/clients/acs_credential_pools"
|
46
|
-
require_relative "seam/clients/acs_credential_provisioning_automations"
|
47
|
-
require_relative "seam/clients/acs_credentials"
|
48
|
-
require_relative "seam/clients/acs_entrances"
|
49
|
-
require_relative "seam/clients/acs_systems"
|
50
|
-
require_relative "seam/clients/acs_users"
|
51
|
-
require_relative "seam/clients/action_attempts"
|
52
|
-
require_relative "seam/clients/client_sessions"
|
53
|
-
require_relative "seam/clients/connect_webviews"
|
54
|
-
require_relative "seam/clients/connected_accounts"
|
55
|
-
require_relative "seam/clients/devices"
|
56
|
-
require_relative "seam/clients/devices_simulate"
|
57
|
-
require_relative "seam/clients/devices_unmanaged"
|
58
|
-
require_relative "seam/clients/events"
|
59
|
-
require_relative "seam/clients/locks"
|
60
|
-
require_relative "seam/clients/networks"
|
61
|
-
require_relative "seam/clients/noise_sensors_noise_thresholds"
|
62
|
-
require_relative "seam/clients/noise_sensors"
|
63
|
-
require_relative "seam/clients/noise_sensors_simulate"
|
64
|
-
require_relative "seam/clients/phones"
|
65
|
-
require_relative "seam/clients/phones_simulate"
|
66
|
-
require_relative "seam/clients/thermostats_climate_setting_schedules"
|
67
|
-
require_relative "seam/clients/thermostats"
|
68
|
-
require_relative "seam/clients/user_identities"
|
69
|
-
require_relative "seam/clients/user_identities_enrollment_automations"
|
70
|
-
require_relative "seam/clients/webhooks"
|
71
|
-
require_relative "seam/clients/workspaces"
|
4
|
+
require_relative "seam/http"
|
5
|
+
require_relative "seam/http_multi_workspace"
|
6
|
+
require_relative "seam/wait_for_action_attempt"
|
7
|
+
require_relative "seam/webhook"
|
72
8
|
|
73
9
|
module Seam
|
10
|
+
def self.new(**args)
|
11
|
+
Http.new(**args)
|
12
|
+
end
|
13
|
+
|
14
|
+
def self.from_api_key(api_key, endpoint: nil, wait_for_action_attempt: false)
|
15
|
+
Http.from_api_key(api_key, endpoint: endpoint, wait_for_action_attempt: wait_for_action_attempt)
|
16
|
+
end
|
17
|
+
|
18
|
+
def self.from_personal_access_token(personal_access_token, workspace_id, endpoint: nil, wait_for_action_attempt: false)
|
19
|
+
Http.from_personal_access_token(personal_access_token, workspace_id, endpoint: endpoint, wait_for_action_attempt: wait_for_action_attempt)
|
20
|
+
end
|
21
|
+
|
22
|
+
def self.lts_version
|
23
|
+
Seam::LTS_VERSION
|
24
|
+
end
|
74
25
|
end
|
metadata
CHANGED
@@ -1,29 +1,57 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: seam
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.0.
|
4
|
+
version: 2.0.0b1
|
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: 2024-
|
11
|
+
date: 2024-11-12 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
|
-
name:
|
14
|
+
name: faraday
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
16
16
|
requirements:
|
17
17
|
- - "~>"
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: '
|
19
|
+
version: '2.7'
|
20
20
|
type: :runtime
|
21
21
|
prerelease: false
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
23
23
|
requirements:
|
24
24
|
- - "~>"
|
25
25
|
- !ruby/object:Gem::Version
|
26
|
-
version: '
|
26
|
+
version: '2.7'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: faraday-retry
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - "~>"
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '2.2'
|
34
|
+
type: :runtime
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - "~>"
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '2.2'
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: svix
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - "~>"
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '1.30'
|
48
|
+
type: :runtime
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - "~>"
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '1.30'
|
27
55
|
- !ruby/object:Gem::Dependency
|
28
56
|
name: bundler
|
29
57
|
requirement: !ruby/object:Gem::Requirement
|
@@ -162,75 +190,92 @@ files:
|
|
162
190
|
- README.md
|
163
191
|
- Rakefile
|
164
192
|
- lib/seam.rb
|
165
|
-
- lib/seam/
|
166
|
-
- lib/seam/
|
167
|
-
- lib/seam/
|
168
|
-
- lib/seam/
|
169
|
-
- lib/seam/
|
170
|
-
- lib/seam/
|
171
|
-
- lib/seam/
|
172
|
-
- lib/seam/
|
173
|
-
- lib/seam/clients/acs_credentials.rb
|
174
|
-
- lib/seam/clients/acs_entrances.rb
|
175
|
-
- lib/seam/clients/acs_systems.rb
|
176
|
-
- lib/seam/clients/acs_users.rb
|
177
|
-
- lib/seam/clients/action_attempts.rb
|
178
|
-
- lib/seam/clients/base_client.rb
|
179
|
-
- lib/seam/clients/client_sessions.rb
|
180
|
-
- lib/seam/clients/connect_webviews.rb
|
181
|
-
- lib/seam/clients/connected_accounts.rb
|
182
|
-
- lib/seam/clients/devices.rb
|
183
|
-
- lib/seam/clients/devices_simulate.rb
|
184
|
-
- lib/seam/clients/devices_unmanaged.rb
|
185
|
-
- lib/seam/clients/events.rb
|
186
|
-
- lib/seam/clients/locks.rb
|
187
|
-
- lib/seam/clients/networks.rb
|
188
|
-
- lib/seam/clients/noise_sensors.rb
|
189
|
-
- lib/seam/clients/noise_sensors_noise_thresholds.rb
|
190
|
-
- lib/seam/clients/noise_sensors_simulate.rb
|
191
|
-
- lib/seam/clients/phones.rb
|
192
|
-
- lib/seam/clients/phones_simulate.rb
|
193
|
-
- lib/seam/clients/thermostats.rb
|
194
|
-
- lib/seam/clients/thermostats_climate_setting_schedules.rb
|
195
|
-
- lib/seam/clients/user_identities.rb
|
196
|
-
- lib/seam/clients/user_identities_enrollment_automations.rb
|
197
|
-
- lib/seam/clients/webhooks.rb
|
198
|
-
- lib/seam/clients/workspaces.rb
|
193
|
+
- lib/seam/auth.rb
|
194
|
+
- lib/seam/base_resource.rb
|
195
|
+
- lib/seam/deep_hash_accessor.rb
|
196
|
+
- lib/seam/default_endpoint.rb
|
197
|
+
- lib/seam/helpers/action_attempt.rb
|
198
|
+
- lib/seam/http.rb
|
199
|
+
- lib/seam/http_multi_workspace.rb
|
200
|
+
- lib/seam/http_single_workspace.rb
|
199
201
|
- lib/seam/logger.rb
|
200
202
|
- lib/seam/lts_version.rb
|
203
|
+
- lib/seam/options.rb
|
204
|
+
- lib/seam/parse_options.rb
|
201
205
|
- lib/seam/request.rb
|
202
|
-
- lib/seam/
|
203
|
-
- lib/seam/
|
204
|
-
- lib/seam/
|
205
|
-
- lib/seam/
|
206
|
-
- lib/seam/
|
207
|
-
- lib/seam/
|
208
|
-
- lib/seam/
|
209
|
-
- lib/seam/
|
210
|
-
- lib/seam/
|
211
|
-
- lib/seam/
|
212
|
-
- lib/seam/
|
213
|
-
- lib/seam/
|
214
|
-
- lib/seam/
|
215
|
-
- lib/seam/
|
216
|
-
- lib/seam/
|
217
|
-
- lib/seam/
|
218
|
-
- lib/seam/
|
219
|
-
- lib/seam/
|
220
|
-
- lib/seam/
|
221
|
-
- lib/seam/
|
222
|
-
- lib/seam/
|
223
|
-
- lib/seam/
|
224
|
-
- lib/seam/
|
225
|
-
- lib/seam/
|
226
|
-
- lib/seam/
|
227
|
-
- lib/seam/
|
228
|
-
- lib/seam/
|
229
|
-
- lib/seam/
|
230
|
-
- lib/seam/
|
231
|
-
- lib/seam/
|
232
|
-
- lib/seam/
|
206
|
+
- lib/seam/routes/clients/access_codes.rb
|
207
|
+
- lib/seam/routes/clients/access_codes_simulate.rb
|
208
|
+
- lib/seam/routes/clients/access_codes_unmanaged.rb
|
209
|
+
- lib/seam/routes/clients/acs.rb
|
210
|
+
- lib/seam/routes/clients/acs_access_groups.rb
|
211
|
+
- lib/seam/routes/clients/acs_access_groups_unmanaged.rb
|
212
|
+
- lib/seam/routes/clients/acs_credential_pools.rb
|
213
|
+
- lib/seam/routes/clients/acs_credential_provisioning_automations.rb
|
214
|
+
- lib/seam/routes/clients/acs_credentials.rb
|
215
|
+
- lib/seam/routes/clients/acs_credentials_unmanaged.rb
|
216
|
+
- lib/seam/routes/clients/acs_encoders.rb
|
217
|
+
- lib/seam/routes/clients/acs_entrances.rb
|
218
|
+
- lib/seam/routes/clients/acs_systems.rb
|
219
|
+
- lib/seam/routes/clients/acs_users.rb
|
220
|
+
- lib/seam/routes/clients/acs_users_unmanaged.rb
|
221
|
+
- lib/seam/routes/clients/action_attempts.rb
|
222
|
+
- lib/seam/routes/clients/client_sessions.rb
|
223
|
+
- lib/seam/routes/clients/connect_webviews.rb
|
224
|
+
- lib/seam/routes/clients/connected_accounts.rb
|
225
|
+
- lib/seam/routes/clients/devices.rb
|
226
|
+
- lib/seam/routes/clients/devices_simulate.rb
|
227
|
+
- lib/seam/routes/clients/devices_unmanaged.rb
|
228
|
+
- lib/seam/routes/clients/events.rb
|
229
|
+
- lib/seam/routes/clients/index.rb
|
230
|
+
- lib/seam/routes/clients/locks.rb
|
231
|
+
- lib/seam/routes/clients/networks.rb
|
232
|
+
- lib/seam/routes/clients/noise_sensors.rb
|
233
|
+
- lib/seam/routes/clients/noise_sensors_noise_thresholds.rb
|
234
|
+
- lib/seam/routes/clients/noise_sensors_simulate.rb
|
235
|
+
- lib/seam/routes/clients/phones.rb
|
236
|
+
- lib/seam/routes/clients/phones_simulate.rb
|
237
|
+
- lib/seam/routes/clients/thermostats.rb
|
238
|
+
- lib/seam/routes/clients/thermostats_schedules.rb
|
239
|
+
- lib/seam/routes/clients/user_identities.rb
|
240
|
+
- lib/seam/routes/clients/user_identities_enrollment_automations.rb
|
241
|
+
- lib/seam/routes/clients/webhooks.rb
|
242
|
+
- lib/seam/routes/clients/workspaces.rb
|
243
|
+
- lib/seam/routes/resources/access_code.rb
|
244
|
+
- lib/seam/routes/resources/acs_access_group.rb
|
245
|
+
- lib/seam/routes/resources/acs_credential.rb
|
246
|
+
- lib/seam/routes/resources/acs_credential_pool.rb
|
247
|
+
- lib/seam/routes/resources/acs_credential_provisioning_automation.rb
|
248
|
+
- lib/seam/routes/resources/acs_entrance.rb
|
249
|
+
- lib/seam/routes/resources/acs_system.rb
|
250
|
+
- lib/seam/routes/resources/acs_user.rb
|
251
|
+
- lib/seam/routes/resources/action_attempt.rb
|
252
|
+
- lib/seam/routes/resources/client_session.rb
|
253
|
+
- lib/seam/routes/resources/connect_webview.rb
|
254
|
+
- lib/seam/routes/resources/connected_account.rb
|
255
|
+
- lib/seam/routes/resources/device.rb
|
256
|
+
- lib/seam/routes/resources/device_provider.rb
|
257
|
+
- lib/seam/routes/resources/enrollment_automation.rb
|
258
|
+
- lib/seam/routes/resources/event.rb
|
259
|
+
- lib/seam/routes/resources/index.rb
|
260
|
+
- lib/seam/routes/resources/network.rb
|
261
|
+
- lib/seam/routes/resources/noise_threshold.rb
|
262
|
+
- lib/seam/routes/resources/phone.rb
|
263
|
+
- lib/seam/routes/resources/resource_error.rb
|
264
|
+
- lib/seam/routes/resources/resource_errors_support.rb
|
265
|
+
- lib/seam/routes/resources/resource_warning.rb
|
266
|
+
- lib/seam/routes/resources/resource_warnings_support.rb
|
267
|
+
- lib/seam/routes/resources/service_health.rb
|
268
|
+
- lib/seam/routes/resources/thermostat_schedule.rb
|
269
|
+
- lib/seam/routes/resources/unmanaged_access_code.rb
|
270
|
+
- lib/seam/routes/resources/unmanaged_device.rb
|
271
|
+
- lib/seam/routes/resources/user_identity.rb
|
272
|
+
- lib/seam/routes/resources/webhook.rb
|
273
|
+
- lib/seam/routes/resources/workspace.rb
|
274
|
+
- lib/seam/routes/routes.rb
|
275
|
+
- lib/seam/token.rb
|
233
276
|
- lib/seam/version.rb
|
277
|
+
- lib/seam/wait_for_action_attempt.rb
|
278
|
+
- lib/seam/webhook.rb
|
234
279
|
homepage: https://github.com/seamapi/ruby-next
|
235
280
|
licenses:
|
236
281
|
- MIT
|
data/lib/seam/client.rb
DELETED
@@ -1,129 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
|
3
|
-
module Seam
|
4
|
-
class Client
|
5
|
-
attr_accessor :api_key, :base_uri, :debug, :wait_for_action_attempt
|
6
|
-
|
7
|
-
def self.lts_version
|
8
|
-
Seam::LTS_VERSION
|
9
|
-
end
|
10
|
-
|
11
|
-
def initialize(api_key: nil, base_uri: nil, wait_for_action_attempt: false, debug: false)
|
12
|
-
@api_key = api_key || ENV["SEAM_API_KEY"]
|
13
|
-
@base_uri = base_uri || ENV["SEAM_API_URL"] || ENV["SEAM_ENDPOINT"] || "https://connect.getseam.com"
|
14
|
-
@debug = debug
|
15
|
-
@wait_for_action_attempt = wait_for_action_attempt
|
16
|
-
|
17
|
-
raise ArgumentError, "SEAM_API_KEY not found in environment, and api_key not provided" if @api_key.to_s.empty?
|
18
|
-
|
19
|
-
if ENV["SEAM_API_URL"]
|
20
|
-
warn "Using the SEAM_API_URL environment variable is deprecated. " \
|
21
|
-
"Support will be removed in a later major version. Use SEAM_ENDPOINT instead."
|
22
|
-
end
|
23
|
-
end
|
24
|
-
|
25
|
-
def lts_version
|
26
|
-
Seam::LTS_VERSION
|
27
|
-
end
|
28
|
-
|
29
|
-
def access_codes
|
30
|
-
@access_codes ||= Seam::Clients::AccessCodes.new(self)
|
31
|
-
end
|
32
|
-
|
33
|
-
def acs
|
34
|
-
@acs ||= Seam::Clients::Acs.new(self)
|
35
|
-
end
|
36
|
-
|
37
|
-
def action_attempts
|
38
|
-
@action_attempts ||= Seam::Clients::ActionAttempts.new(self)
|
39
|
-
end
|
40
|
-
|
41
|
-
def client_sessions
|
42
|
-
@client_sessions ||= Seam::Clients::ClientSessions.new(self)
|
43
|
-
end
|
44
|
-
|
45
|
-
def connect_webviews
|
46
|
-
@connect_webviews ||= Seam::Clients::ConnectWebviews.new(self)
|
47
|
-
end
|
48
|
-
|
49
|
-
def connected_accounts
|
50
|
-
@connected_accounts ||= Seam::Clients::ConnectedAccounts.new(self)
|
51
|
-
end
|
52
|
-
|
53
|
-
def devices
|
54
|
-
@devices ||= Seam::Clients::Devices.new(self)
|
55
|
-
end
|
56
|
-
|
57
|
-
def events
|
58
|
-
@events ||= Seam::Clients::Events.new(self)
|
59
|
-
end
|
60
|
-
|
61
|
-
def locks
|
62
|
-
@locks ||= Seam::Clients::Locks.new(self)
|
63
|
-
end
|
64
|
-
|
65
|
-
def networks
|
66
|
-
@networks ||= Seam::Clients::Networks.new(self)
|
67
|
-
end
|
68
|
-
|
69
|
-
def noise_sensors
|
70
|
-
@noise_sensors ||= Seam::Clients::NoiseSensors.new(self)
|
71
|
-
end
|
72
|
-
|
73
|
-
def phones
|
74
|
-
@phones ||= Seam::Clients::Phones.new(self)
|
75
|
-
end
|
76
|
-
|
77
|
-
def thermostats
|
78
|
-
@thermostats ||= Seam::Clients::Thermostats.new(self)
|
79
|
-
end
|
80
|
-
|
81
|
-
def user_identities
|
82
|
-
@user_identities ||= Seam::Clients::UserIdentities.new(self)
|
83
|
-
end
|
84
|
-
|
85
|
-
def webhooks
|
86
|
-
@webhooks ||= Seam::Clients::Webhooks.new(self)
|
87
|
-
end
|
88
|
-
|
89
|
-
def workspaces
|
90
|
-
@workspaces ||= Seam::Clients::Workspaces.new(self)
|
91
|
-
end
|
92
|
-
|
93
|
-
def health
|
94
|
-
request_seam(:get, "/health")
|
95
|
-
end
|
96
|
-
|
97
|
-
# @deprecated Please use {#devices.unmanaged} instead.
|
98
|
-
def unmanaged_devices
|
99
|
-
warn "[DEPRECATION] 'unmanaged_devices' is deprecated. Please use 'devices.unmanaged' instead."
|
100
|
-
|
101
|
-
@unmanaged_devices ||= Seam::Clients::DevicesUnmanaged.new(self)
|
102
|
-
end
|
103
|
-
|
104
|
-
# @deprecated Please use {#access_codes.unmanaged} instead.
|
105
|
-
def unmanaged_access_codes
|
106
|
-
warn "[DEPRECATION] 'unmanaged_access_codes' is deprecated. Please use 'access_codes.unmanaged' instead."
|
107
|
-
|
108
|
-
@unmanaged_access_codes ||= Seam::Clients::AccessCodesUnmanaged.new(self)
|
109
|
-
end
|
110
|
-
|
111
|
-
def request_seam_object(method, path, klass, inner_object, config = {})
|
112
|
-
response = request_seam(method, path, config)
|
113
|
-
|
114
|
-
data = response[inner_object]
|
115
|
-
|
116
|
-
klass.load_from_response(data, self)
|
117
|
-
end
|
118
|
-
|
119
|
-
def request_seam(method, path, config = {})
|
120
|
-
Seam::Request.new(
|
121
|
-
api_key: api_key,
|
122
|
-
base_uri: base_uri,
|
123
|
-
debug: debug
|
124
|
-
).perform(
|
125
|
-
method, path, config
|
126
|
-
)
|
127
|
-
end
|
128
|
-
end
|
129
|
-
end
|
@@ -1,95 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
|
3
|
-
module Seam
|
4
|
-
module Clients
|
5
|
-
class AccessCodes < BaseClient
|
6
|
-
def simulate
|
7
|
-
@simulate ||= Seam::Clients::AccessCodesSimulate.new(self)
|
8
|
-
end
|
9
|
-
|
10
|
-
def unmanaged
|
11
|
-
@unmanaged ||= Seam::Clients::AccessCodesUnmanaged.new(self)
|
12
|
-
end
|
13
|
-
|
14
|
-
def create(device_id:, allow_external_modification: nil, attempt_for_offline_device: nil, code: nil, common_code_key: nil, ends_at: nil, is_external_modification_allowed: nil, is_offline_access_code: nil, is_one_time_use: nil, max_time_rounding: nil, name: nil, prefer_native_scheduling: nil, starts_at: nil, sync: nil, use_backup_access_code_pool: nil, use_offline_access_code: nil)
|
15
|
-
request_seam_object(
|
16
|
-
:post,
|
17
|
-
"/access_codes/create",
|
18
|
-
Seam::AccessCode,
|
19
|
-
"access_code",
|
20
|
-
body: {device_id: device_id, allow_external_modification: allow_external_modification, attempt_for_offline_device: attempt_for_offline_device, code: code, common_code_key: common_code_key, ends_at: ends_at, is_external_modification_allowed: is_external_modification_allowed, is_offline_access_code: is_offline_access_code, is_one_time_use: is_one_time_use, max_time_rounding: max_time_rounding, name: name, prefer_native_scheduling: prefer_native_scheduling, starts_at: starts_at, sync: sync, use_backup_access_code_pool: use_backup_access_code_pool, use_offline_access_code: use_offline_access_code}.compact
|
21
|
-
)
|
22
|
-
end
|
23
|
-
|
24
|
-
def create_multiple(device_ids:, allow_external_modification: nil, attempt_for_offline_device: nil, behavior_when_code_cannot_be_shared: nil, code: nil, ends_at: nil, is_external_modification_allowed: nil, is_offline_access_code: nil, is_one_time_use: nil, max_time_rounding: nil, name: nil, prefer_native_scheduling: nil, preferred_code_length: nil, starts_at: nil, use_backup_access_code_pool: nil, use_offline_access_code: nil)
|
25
|
-
request_seam_object(
|
26
|
-
:post,
|
27
|
-
"/access_codes/create_multiple",
|
28
|
-
Seam::AccessCode,
|
29
|
-
"access_codes",
|
30
|
-
body: {device_ids: device_ids, allow_external_modification: allow_external_modification, attempt_for_offline_device: attempt_for_offline_device, behavior_when_code_cannot_be_shared: behavior_when_code_cannot_be_shared, code: code, ends_at: ends_at, is_external_modification_allowed: is_external_modification_allowed, is_offline_access_code: is_offline_access_code, is_one_time_use: is_one_time_use, max_time_rounding: max_time_rounding, name: name, prefer_native_scheduling: prefer_native_scheduling, preferred_code_length: preferred_code_length, starts_at: starts_at, use_backup_access_code_pool: use_backup_access_code_pool, use_offline_access_code: use_offline_access_code}.compact
|
31
|
-
)
|
32
|
-
end
|
33
|
-
|
34
|
-
def delete(access_code_id:, device_id: nil, sync: nil)
|
35
|
-
request_seam(
|
36
|
-
:post,
|
37
|
-
"/access_codes/delete",
|
38
|
-
body: {access_code_id: access_code_id, device_id: device_id, sync: sync}.compact
|
39
|
-
)
|
40
|
-
|
41
|
-
nil
|
42
|
-
end
|
43
|
-
|
44
|
-
def generate_code(device_id:)
|
45
|
-
request_seam_object(
|
46
|
-
:post,
|
47
|
-
"/access_codes/generate_code",
|
48
|
-
Seam::AccessCode,
|
49
|
-
"generated_code",
|
50
|
-
body: {device_id: device_id}.compact
|
51
|
-
)
|
52
|
-
end
|
53
|
-
|
54
|
-
def get(access_code_id: nil, code: nil, device_id: nil)
|
55
|
-
request_seam_object(
|
56
|
-
:post,
|
57
|
-
"/access_codes/get",
|
58
|
-
Seam::AccessCode,
|
59
|
-
"access_code",
|
60
|
-
body: {access_code_id: access_code_id, code: code, device_id: device_id}.compact
|
61
|
-
)
|
62
|
-
end
|
63
|
-
|
64
|
-
def list(access_code_ids: nil, device_id: nil, user_identifier_key: nil)
|
65
|
-
request_seam_object(
|
66
|
-
:post,
|
67
|
-
"/access_codes/list",
|
68
|
-
Seam::AccessCode,
|
69
|
-
"access_codes",
|
70
|
-
body: {access_code_ids: access_code_ids, device_id: device_id, user_identifier_key: user_identifier_key}.compact
|
71
|
-
)
|
72
|
-
end
|
73
|
-
|
74
|
-
def pull_backup_access_code(access_code_id:)
|
75
|
-
request_seam_object(
|
76
|
-
:post,
|
77
|
-
"/access_codes/pull_backup_access_code",
|
78
|
-
Seam::AccessCode,
|
79
|
-
"backup_access_code",
|
80
|
-
body: {access_code_id: access_code_id}.compact
|
81
|
-
)
|
82
|
-
end
|
83
|
-
|
84
|
-
def update(access_code_id:, allow_external_modification: nil, attempt_for_offline_device: nil, code: nil, device_id: nil, ends_at: nil, is_external_modification_allowed: nil, is_managed: nil, is_offline_access_code: nil, is_one_time_use: nil, max_time_rounding: nil, name: nil, prefer_native_scheduling: nil, starts_at: nil, sync: nil, type: nil, use_backup_access_code_pool: nil, use_offline_access_code: nil)
|
85
|
-
request_seam(
|
86
|
-
:post,
|
87
|
-
"/access_codes/update",
|
88
|
-
body: {access_code_id: access_code_id, allow_external_modification: allow_external_modification, attempt_for_offline_device: attempt_for_offline_device, code: code, device_id: device_id, ends_at: ends_at, is_external_modification_allowed: is_external_modification_allowed, is_managed: is_managed, is_offline_access_code: is_offline_access_code, is_one_time_use: is_one_time_use, max_time_rounding: max_time_rounding, name: name, prefer_native_scheduling: prefer_native_scheduling, starts_at: starts_at, sync: sync, type: type, use_backup_access_code_pool: use_backup_access_code_pool, use_offline_access_code: use_offline_access_code}.compact
|
89
|
-
)
|
90
|
-
|
91
|
-
nil
|
92
|
-
end
|
93
|
-
end
|
94
|
-
end
|
95
|
-
end
|
@@ -1,17 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
|
3
|
-
module Seam
|
4
|
-
module Clients
|
5
|
-
class AccessCodesSimulate < BaseClient
|
6
|
-
def create_unmanaged_access_code(code:, device_id:, name:)
|
7
|
-
request_seam_object(
|
8
|
-
:post,
|
9
|
-
"/access_codes/simulate/create_unmanaged_access_code",
|
10
|
-
Seam::UnmanagedAccessCode,
|
11
|
-
"access_code",
|
12
|
-
body: {code: code, device_id: device_id, name: name}.compact
|
13
|
-
)
|
14
|
-
end
|
15
|
-
end
|
16
|
-
end
|
17
|
-
end
|