seam 2.0.0a1 → 2.0.0.prerelease.1

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.
Files changed (76) hide show
  1. checksums.yaml +4 -4
  2. data/Gemfile.lock +34 -2
  3. data/README.md +4 -1
  4. data/Rakefile +1 -1
  5. data/lib/seam/client.rb +129 -0
  6. data/lib/seam/clients/access_codes.rb +95 -0
  7. data/lib/seam/clients/access_codes_simulate.rb +17 -0
  8. data/lib/seam/clients/access_codes_unmanaged.rb +57 -0
  9. data/lib/seam/clients/acs.rb +35 -0
  10. data/lib/seam/clients/acs_access_groups.rb +57 -0
  11. data/lib/seam/clients/acs_credential_pools.rb +17 -0
  12. data/lib/seam/clients/acs_credential_provisioning_automations.rb +17 -0
  13. data/lib/seam/clients/acs_credentials.rb +77 -0
  14. data/lib/seam/clients/acs_entrances.rb +47 -0
  15. data/lib/seam/clients/acs_systems.rb +27 -0
  16. data/lib/seam/clients/acs_users.rb +117 -0
  17. data/lib/seam/clients/action_attempts.rb +30 -0
  18. data/lib/seam/clients/base_client.rb +21 -0
  19. data/lib/seam/clients/client_sessions.rb +77 -0
  20. data/lib/seam/clients/connect_webviews.rb +47 -0
  21. data/lib/seam/clients/connected_accounts.rb +47 -0
  22. data/lib/seam/clients/devices.rb +65 -0
  23. data/lib/seam/clients/devices_simulate.rb +17 -0
  24. data/lib/seam/clients/devices_unmanaged.rb +37 -0
  25. data/lib/seam/clients/events.rb +27 -0
  26. data/lib/seam/clients/locks.rb +53 -0
  27. data/lib/seam/clients/networks.rb +27 -0
  28. data/lib/seam/clients/noise_sensors.rb +15 -0
  29. data/lib/seam/clients/noise_sensors_noise_thresholds.rb +57 -0
  30. data/lib/seam/clients/noise_sensors_simulate.rb +17 -0
  31. data/lib/seam/clients/phones.rb +31 -0
  32. data/lib/seam/clients/phones_simulate.rb +17 -0
  33. data/lib/seam/clients/thermostats.rb +106 -0
  34. data/lib/seam/clients/thermostats_climate_setting_schedules.rb +57 -0
  35. data/lib/seam/clients/user_identities.rb +131 -0
  36. data/lib/seam/clients/user_identities_enrollment_automations.rb +47 -0
  37. data/lib/seam/clients/webhooks.rb +57 -0
  38. data/lib/seam/clients/workspaces.rb +50 -0
  39. data/lib/seam/logger.rb +12 -0
  40. data/lib/seam/lts_version.rb +5 -0
  41. data/lib/seam/request.rb +73 -0
  42. data/lib/seam/resources/access_code.rb +12 -0
  43. data/lib/seam/resources/acs_access_group.rb +9 -0
  44. data/lib/seam/resources/acs_credential.rb +12 -0
  45. data/lib/seam/resources/acs_credential_pool.rb +9 -0
  46. data/lib/seam/resources/acs_credential_provisioning_automation.rb +9 -0
  47. data/lib/seam/resources/acs_entrance.rb +9 -0
  48. data/lib/seam/resources/acs_system.rb +9 -0
  49. data/lib/seam/resources/acs_user.rb +9 -0
  50. data/lib/seam/resources/action_attempt.rb +46 -0
  51. data/lib/seam/resources/base_resource.rb +58 -0
  52. data/lib/seam/resources/client_session.rb +9 -0
  53. data/lib/seam/resources/climate_setting_schedule.rb +11 -0
  54. data/lib/seam/resources/connect_webview.rb +9 -0
  55. data/lib/seam/resources/connected_account.rb +12 -0
  56. data/lib/seam/resources/device.rb +12 -0
  57. data/lib/seam/resources/device_provider.rb +7 -0
  58. data/lib/seam/resources/enrollment_automation.rb +9 -0
  59. data/lib/seam/resources/event.rb +9 -0
  60. data/lib/seam/resources/network.rb +9 -0
  61. data/lib/seam/resources/noise_threshold.rb +7 -0
  62. data/lib/seam/resources/phone.rb +12 -0
  63. data/lib/seam/resources/resource_error.rb +9 -0
  64. data/lib/seam/resources/resource_errors_support.rb +9 -0
  65. data/lib/seam/resources/resource_warning.rb +9 -0
  66. data/lib/seam/resources/resource_warnings_support.rb +9 -0
  67. data/lib/seam/resources/service_health.rb +7 -0
  68. data/lib/seam/resources/unmanaged_access_code.rb +12 -0
  69. data/lib/seam/resources/unmanaged_device.rb +12 -0
  70. data/lib/seam/resources/user_identity.rb +9 -0
  71. data/lib/seam/resources/webhook.rb +7 -0
  72. data/lib/seam/resources/workspace.rb +7 -0
  73. data/lib/seam/version.rb +1 -1
  74. data/lib/seam.rb +68 -2
  75. metadata +98 -3
  76. data/lib/seam/todo.rb +0 -9
@@ -0,0 +1,9 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Seam
4
+ class AcsSystem < BaseResource
5
+ attr_accessor :acs_system_id, :can_add_acs_users_to_acs_access_groups, :can_automate_enrollment, :can_create_acs_access_groups, :can_remove_acs_users_from_acs_access_groups, :connected_account_ids, :external_type, :external_type_display_name, :image_alt_text, :image_url, :name, :system_type, :system_type_display_name, :workspace_id
6
+
7
+ date_accessor :created_at
8
+ end
9
+ end
@@ -0,0 +1,9 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Seam
4
+ class AcsUser < BaseResource
5
+ attr_accessor :access_schedule, :acs_system_id, :acs_user_id, :display_name, :email, :email_address, :external_type, :external_type_display_name, :full_name, :hid_acs_system_id, :is_suspended, :phone_number, :user_identity_email_address, :user_identity_full_name, :user_identity_id, :user_identity_phone_number, :workspace_id
6
+
7
+ date_accessor :created_at
8
+ end
9
+ end
@@ -0,0 +1,46 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Seam
4
+ class ActionAttempt < BaseResource
5
+ attr_accessor :action_attempt_id, :action_type, :error, :result, :status
6
+
7
+ def decide_and_wait(wait_for_action_attempt)
8
+ wait_decision = wait_for_action_attempt.nil? ? @client.wait_for_action_attempt : wait_for_action_attempt
9
+
10
+ if wait_decision == true
11
+ wait_until_finished
12
+ elsif wait_decision.is_a?(Hash)
13
+ wait_until_finished(timeout: wait_decision[:timeout], polling_interval: wait_decision[:polling_interval])
14
+ end
15
+ end
16
+
17
+ def wait_until_finished(timeout: 5.0, polling_interval: 0.5)
18
+ time_waiting = 0.0
19
+
20
+ while @status == "pending"
21
+ sleep(polling_interval)
22
+ time_waiting += polling_interval
23
+
24
+ raise "Timed out waiting for action attempt to be finished" if time_waiting > timeout
25
+
26
+ update!
27
+
28
+ raise "Action Attempt failed: #{error["message"]}" if @status == "failed"
29
+ end
30
+
31
+ self
32
+ end
33
+
34
+ def update!
35
+ response = @client.request_seam(
36
+ :post,
37
+ "/action_attempts/get",
38
+ body: {
39
+ action_attempt_id: action_attempt_id
40
+ }
41
+ )
42
+
43
+ update_from_response(response["action_attempt"])
44
+ end
45
+ end
46
+ end
@@ -0,0 +1,58 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Seam
4
+ class BaseResource
5
+ attr_accessor :data, :client
6
+
7
+ def initialize(data, client = nil)
8
+ @data = data
9
+ @client = client
10
+
11
+ @data.each do |key, value|
12
+ instance_variable_set(:"@#{key}", value)
13
+ end
14
+ end
15
+
16
+ def update_from_response(data)
17
+ @data = data
18
+ @data.each do |key, value|
19
+ instance_variable_set(:"@#{key}", value)
20
+ end
21
+ end
22
+
23
+ def self.load_from_response(data, client = nil)
24
+ if data.is_a?(Array)
25
+ data.map { |d| new(d, client) }
26
+ else
27
+ new(data, client)
28
+ end
29
+ end
30
+
31
+ def inspect
32
+ "<#{self.class.name}:#{"0x00%x" % (object_id << 1)}\n" + # rubocop:disable Style/StringConcatenation, Style/FormatString
33
+ instance_variables
34
+ .map { |k| k.to_s.sub("@", "") }
35
+ .filter { |k| k != "data" and k != "client" and respond_to? k }
36
+ .map { |k| " #{k}=#{send(k).inspect}" }
37
+ .join("\n") + ">"
38
+ end
39
+
40
+ def self.date_accessor(*attrs)
41
+ attrs.each do |attr|
42
+ define_method(attr) do
43
+ value = instance_variable_get(:"@#{attr}")
44
+
45
+ raise "No value for #{attr} set" if value.nil?
46
+
47
+ parse_datetime(value)
48
+ end
49
+ end
50
+ end
51
+
52
+ protected
53
+
54
+ def parse_datetime(value)
55
+ Time.parse(value)
56
+ end
57
+ end
58
+ end
@@ -0,0 +1,9 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Seam
4
+ class ClientSession < BaseResource
5
+ attr_accessor :client_session_id, :connect_webview_ids, :connected_account_ids, :device_count, :token, :user_identifier_key, :user_identity_ids, :workspace_id
6
+
7
+ date_accessor :created_at
8
+ end
9
+ end
@@ -0,0 +1,11 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Seam
4
+ class ClimateSettingSchedule < BaseResource
5
+ attr_accessor :automatic_cooling_enabled, :automatic_heating_enabled, :climate_setting_schedule_id, :cooling_set_point_celsius, :cooling_set_point_fahrenheit, :device_id, :heating_set_point_celsius, :heating_set_point_fahrenheit, :hvac_mode_setting, :manual_override_allowed, :name, :schedule_ends_at, :schedule_starts_at, :schedule_type
6
+
7
+ date_accessor :created_at
8
+
9
+ include Seam::ResourceErrorsSupport
10
+ end
11
+ end
@@ -0,0 +1,9 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Seam
4
+ class ConnectWebview < BaseResource
5
+ 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
+
7
+ date_accessor :authorized_at, :created_at
8
+ end
9
+ end
@@ -0,0 +1,12 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Seam
4
+ class ConnectedAccount < BaseResource
5
+ attr_accessor :account_type, :account_type_display_name, :automatically_manage_new_devices, :connected_account_id, :custom_metadata, :user_identifier
6
+
7
+ date_accessor :created_at
8
+
9
+ include Seam::ResourceErrorsSupport
10
+ include Seam::ResourceWarningsSupport
11
+ end
12
+ end
@@ -0,0 +1,12 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Seam
4
+ class Device < BaseResource
5
+ attr_accessor :can_program_offline_access_codes, :can_program_online_access_codes, :can_remotely_lock, :can_remotely_unlock, :can_simulate_removal, :capabilities_supported, :connected_account_id, :custom_metadata, :device_id, :device_type, :display_name, :is_managed, :location, :nickname, :properties, :workspace_id
6
+
7
+ date_accessor :created_at
8
+
9
+ include Seam::ResourceErrorsSupport
10
+ include Seam::ResourceWarningsSupport
11
+ end
12
+ end
@@ -0,0 +1,7 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Seam
4
+ class DeviceProvider < BaseResource
5
+ attr_accessor :device_provider_name, :display_name, :image_url, :provider_categories
6
+ end
7
+ end
@@ -0,0 +1,9 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Seam
4
+ class EnrollmentAutomation < BaseResource
5
+ attr_accessor :credential_manager_acs_system_id, :enrollment_automation_id, :user_identity_id, :workspace_id
6
+
7
+ date_accessor :created_at
8
+ end
9
+ end
@@ -0,0 +1,9 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Seam
4
+ class Event < BaseResource
5
+ attr_accessor :action_attempt_id, :device_id, :event_id, :event_type, :workspace_id
6
+
7
+ date_accessor :created_at, :occurred_at
8
+ end
9
+ end
@@ -0,0 +1,9 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Seam
4
+ class Network < BaseResource
5
+ attr_accessor :display_name, :network_id, :workspace_id
6
+
7
+ date_accessor :created_at
8
+ end
9
+ end
@@ -0,0 +1,7 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Seam
4
+ class NoiseThreshold < BaseResource
5
+ attr_accessor :device_id, :ends_daily_at, :name, :noise_threshold_decibels, :noise_threshold_id, :noise_threshold_nrs, :starts_daily_at
6
+ end
7
+ end
@@ -0,0 +1,12 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Seam
4
+ class Phone < BaseResource
5
+ attr_accessor :can_program_offline_access_codes, :can_program_online_access_codes, :can_remotely_lock, :can_remotely_unlock, :can_simulate_removal, :capabilities_supported, :custom_metadata, :device_id, :device_type, :display_name, :is_managed, :location, :nickname, :properties, :workspace_id
6
+
7
+ date_accessor :created_at
8
+
9
+ include Seam::ResourceErrorsSupport
10
+ include Seam::ResourceWarningsSupport
11
+ end
12
+ end
@@ -0,0 +1,9 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Seam
4
+ class ResourceError < BaseResource
5
+ attr_accessor :error_code, :message
6
+
7
+ date_accessor :created_at
8
+ end
9
+ end
@@ -0,0 +1,9 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Seam
4
+ module ResourceErrorsSupport
5
+ def errors
6
+ @errors_converted ||= @errors.is_a?(Array) ? Seam::ResourceError.load_from_response(@errors) : []
7
+ end
8
+ end
9
+ end
@@ -0,0 +1,9 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Seam
4
+ class ResourceWarning < BaseResource
5
+ attr_accessor :warning_code, :message
6
+
7
+ date_accessor :created_at
8
+ end
9
+ end
@@ -0,0 +1,9 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Seam
4
+ module ResourceWarningsSupport
5
+ def warnings
6
+ @warnings_converted ||= @warnings.is_a?(Array) ? Seam::ResourceWarning.load_from_response(@warnings) : []
7
+ end
8
+ end
9
+ end
@@ -0,0 +1,7 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Seam
4
+ class ServiceHealth < BaseResource
5
+ attr_accessor :description, :service, :status
6
+ end
7
+ end
@@ -0,0 +1,12 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Seam
4
+ class UnmanagedAccessCode < BaseResource
5
+ attr_accessor :access_code_id, :code, :device_id, :is_managed, :name, :status, :type
6
+
7
+ date_accessor :created_at, :ends_at, :starts_at
8
+
9
+ include Seam::ResourceErrorsSupport
10
+ include Seam::ResourceWarningsSupport
11
+ end
12
+ end
@@ -0,0 +1,12 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Seam
4
+ class UnmanagedDevice < BaseResource
5
+ attr_accessor :can_program_offline_access_codes, :can_program_online_access_codes, :can_remotely_lock, :can_remotely_unlock, :can_simulate_removal, :capabilities_supported, :connected_account_id, :device_id, :device_type, :is_managed, :properties, :workspace_id
6
+
7
+ date_accessor :created_at
8
+
9
+ include Seam::ResourceErrorsSupport
10
+ include Seam::ResourceWarningsSupport
11
+ end
12
+ end
@@ -0,0 +1,9 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Seam
4
+ class UserIdentity < BaseResource
5
+ attr_accessor :display_name, :email_address, :full_name, :phone_number, :user_identity_id, :user_identity_key, :workspace_id
6
+
7
+ date_accessor :created_at
8
+ end
9
+ end
@@ -0,0 +1,7 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Seam
4
+ class Webhook < BaseResource
5
+ attr_accessor :event_types, :secret, :url, :webhook_id
6
+ end
7
+ end
@@ -0,0 +1,7 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Seam
4
+ class Workspace < BaseResource
5
+ attr_accessor :connect_partner_name, :is_sandbox, :name, :workspace_id
6
+ end
7
+ 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.0.0a1"
4
+ VERSION = "2.0.0.prerelease.1"
5
5
  end
data/lib/seam.rb CHANGED
@@ -1,8 +1,74 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  require_relative "seam/version"
4
- require_relative "seam/todo"
4
+ require_relative "seam/lts_version"
5
+ require_relative "seam/request"
6
+ require_relative "seam/logger"
7
+ require_relative "seam/client"
8
+ require_relative "seam/clients/base_client"
9
+ require_relative "seam/resources/base_resource"
10
+ require_relative "seam/resources/resource_error"
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"
5
72
 
6
73
  module Seam
7
- # TODO
8
74
  end
metadata CHANGED
@@ -1,15 +1,29 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: seam
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.0.0a1
4
+ version: 2.0.0.prerelease.1
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-04-18 00:00:00.000000000 Z
11
+ date: 2024-05-06 00:00:00.000000000 Z
12
12
  dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: http
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '5.2'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '5.2'
13
27
  - !ruby/object:Gem::Dependency
14
28
  name: bundler
15
29
  requirement: !ruby/object:Gem::Requirement
@@ -122,6 +136,20 @@ dependencies:
122
136
  - - "~>"
123
137
  - !ruby/object:Gem::Version
124
138
  version: '1.3'
139
+ - !ruby/object:Gem::Dependency
140
+ name: webmock
141
+ requirement: !ruby/object:Gem::Requirement
142
+ requirements:
143
+ - - "~>"
144
+ - !ruby/object:Gem::Version
145
+ version: 3.0.0
146
+ type: :development
147
+ prerelease: false
148
+ version_requirements: !ruby/object:Gem::Requirement
149
+ requirements:
150
+ - - "~>"
151
+ - !ruby/object:Gem::Version
152
+ version: 3.0.0
125
153
  description: SDK for the Seam API written in Ruby.
126
154
  email: engineering@getseam.com
127
155
  executables: []
@@ -134,7 +162,74 @@ files:
134
162
  - README.md
135
163
  - Rakefile
136
164
  - lib/seam.rb
137
- - lib/seam/todo.rb
165
+ - lib/seam/client.rb
166
+ - lib/seam/clients/access_codes.rb
167
+ - lib/seam/clients/access_codes_simulate.rb
168
+ - lib/seam/clients/access_codes_unmanaged.rb
169
+ - lib/seam/clients/acs.rb
170
+ - lib/seam/clients/acs_access_groups.rb
171
+ - lib/seam/clients/acs_credential_pools.rb
172
+ - lib/seam/clients/acs_credential_provisioning_automations.rb
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
199
+ - lib/seam/logger.rb
200
+ - lib/seam/lts_version.rb
201
+ - lib/seam/request.rb
202
+ - lib/seam/resources/access_code.rb
203
+ - lib/seam/resources/acs_access_group.rb
204
+ - lib/seam/resources/acs_credential.rb
205
+ - lib/seam/resources/acs_credential_pool.rb
206
+ - lib/seam/resources/acs_credential_provisioning_automation.rb
207
+ - lib/seam/resources/acs_entrance.rb
208
+ - lib/seam/resources/acs_system.rb
209
+ - lib/seam/resources/acs_user.rb
210
+ - lib/seam/resources/action_attempt.rb
211
+ - lib/seam/resources/base_resource.rb
212
+ - lib/seam/resources/client_session.rb
213
+ - lib/seam/resources/climate_setting_schedule.rb
214
+ - lib/seam/resources/connect_webview.rb
215
+ - lib/seam/resources/connected_account.rb
216
+ - lib/seam/resources/device.rb
217
+ - lib/seam/resources/device_provider.rb
218
+ - lib/seam/resources/enrollment_automation.rb
219
+ - lib/seam/resources/event.rb
220
+ - lib/seam/resources/network.rb
221
+ - lib/seam/resources/noise_threshold.rb
222
+ - lib/seam/resources/phone.rb
223
+ - lib/seam/resources/resource_error.rb
224
+ - lib/seam/resources/resource_errors_support.rb
225
+ - lib/seam/resources/resource_warning.rb
226
+ - lib/seam/resources/resource_warnings_support.rb
227
+ - lib/seam/resources/service_health.rb
228
+ - lib/seam/resources/unmanaged_access_code.rb
229
+ - lib/seam/resources/unmanaged_device.rb
230
+ - lib/seam/resources/user_identity.rb
231
+ - lib/seam/resources/webhook.rb
232
+ - lib/seam/resources/workspace.rb
138
233
  - lib/seam/version.rb
139
234
  homepage: https://github.com/seamapi/ruby-next
140
235
  licenses:
data/lib/seam/todo.rb DELETED
@@ -1,9 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- module Seam
4
- class Todo
5
- def todo
6
- "TODO"
7
- end
8
- end
9
- end