seam 1.1.3 → 2.0.0a2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (92) hide show
  1. checksums.yaml +5 -5
  2. data/Gemfile +4 -2
  3. data/Gemfile.lock +137 -0
  4. data/LICENSE.txt +16 -18
  5. data/README.md +118 -115
  6. data/Rakefile +23 -0
  7. data/lib/seam/client.rb +129 -0
  8. data/lib/seam/clients/access_codes.rb +95 -0
  9. data/lib/seam/clients/access_codes_simulate.rb +17 -0
  10. data/lib/seam/clients/access_codes_unmanaged.rb +57 -0
  11. data/lib/seam/clients/acs.rb +35 -0
  12. data/lib/seam/clients/acs_access_groups.rb +57 -0
  13. data/lib/seam/clients/acs_credential_pools.rb +17 -0
  14. data/lib/seam/clients/acs_credential_provisioning_automations.rb +17 -0
  15. data/lib/seam/clients/acs_credentials.rb +77 -0
  16. data/lib/seam/clients/acs_entrances.rb +47 -0
  17. data/lib/seam/clients/acs_systems.rb +27 -0
  18. data/lib/seam/clients/acs_users.rb +117 -0
  19. data/lib/seam/clients/action_attempts.rb +30 -0
  20. data/lib/seam/clients/base_client.rb +21 -0
  21. data/lib/seam/clients/client_sessions.rb +77 -0
  22. data/lib/seam/clients/connect_webviews.rb +47 -0
  23. data/lib/seam/clients/connected_accounts.rb +47 -0
  24. data/lib/seam/clients/devices.rb +65 -0
  25. data/lib/seam/clients/devices_simulate.rb +17 -0
  26. data/lib/seam/clients/devices_unmanaged.rb +37 -0
  27. data/lib/seam/clients/events.rb +27 -0
  28. data/lib/seam/clients/locks.rb +53 -0
  29. data/lib/seam/clients/networks.rb +27 -0
  30. data/lib/seam/clients/noise_sensors.rb +15 -0
  31. data/lib/seam/clients/noise_sensors_noise_thresholds.rb +57 -0
  32. data/lib/seam/clients/noise_sensors_simulate.rb +17 -0
  33. data/lib/seam/clients/phones.rb +31 -0
  34. data/lib/seam/clients/phones_simulate.rb +17 -0
  35. data/lib/seam/clients/thermostats.rb +106 -0
  36. data/lib/seam/clients/thermostats_climate_setting_schedules.rb +57 -0
  37. data/lib/seam/clients/user_identities.rb +131 -0
  38. data/lib/seam/clients/user_identities_enrollment_automations.rb +47 -0
  39. data/lib/seam/clients/webhooks.rb +57 -0
  40. data/lib/seam/clients/workspaces.rb +50 -0
  41. data/lib/seam/logger.rb +12 -0
  42. data/lib/seam/lts_version.rb +5 -0
  43. data/lib/seam/request.rb +73 -0
  44. data/lib/seam/resources/access_code.rb +12 -0
  45. data/lib/seam/resources/acs_access_group.rb +9 -0
  46. data/lib/seam/resources/acs_credential.rb +12 -0
  47. data/lib/seam/resources/acs_credential_pool.rb +9 -0
  48. data/lib/seam/resources/acs_credential_provisioning_automation.rb +9 -0
  49. data/lib/seam/resources/acs_entrance.rb +9 -0
  50. data/lib/seam/resources/acs_system.rb +9 -0
  51. data/lib/seam/resources/acs_user.rb +9 -0
  52. data/lib/seam/resources/action_attempt.rb +46 -0
  53. data/lib/seam/resources/base_resource.rb +58 -0
  54. data/lib/seam/resources/client_session.rb +9 -0
  55. data/lib/seam/resources/climate_setting_schedule.rb +11 -0
  56. data/lib/seam/resources/connect_webview.rb +9 -0
  57. data/lib/seam/resources/connected_account.rb +12 -0
  58. data/lib/seam/resources/device.rb +12 -0
  59. data/lib/seam/resources/device_provider.rb +7 -0
  60. data/lib/seam/resources/enrollment_automation.rb +9 -0
  61. data/lib/seam/resources/event.rb +9 -0
  62. data/lib/seam/resources/network.rb +9 -0
  63. data/lib/seam/resources/noise_threshold.rb +7 -0
  64. data/lib/seam/resources/phone.rb +12 -0
  65. data/lib/seam/resources/resource_error.rb +9 -0
  66. data/lib/seam/resources/resource_errors_support.rb +9 -0
  67. data/lib/seam/resources/resource_warning.rb +9 -0
  68. data/lib/seam/resources/resource_warnings_support.rb +9 -0
  69. data/lib/seam/resources/service_health.rb +7 -0
  70. data/lib/seam/resources/unmanaged_access_code.rb +12 -0
  71. data/lib/seam/resources/unmanaged_device.rb +12 -0
  72. data/lib/seam/resources/user_identity.rb +9 -0
  73. data/lib/seam/resources/webhook.rb +7 -0
  74. data/lib/seam/resources/workspace.rb +7 -0
  75. data/lib/seam/version.rb +3 -1
  76. data/lib/seam.rb +71 -13
  77. metadata +147 -82
  78. data/.gitignore +0 -18
  79. data/lib/seam/effort.rb +0 -86
  80. data/lib/seam/flow.rb +0 -53
  81. data/lib/seam/in_memory.rb +0 -13
  82. data/lib/seam/persistence.rb +0 -43
  83. data/lib/seam/step.rb +0 -33
  84. data/lib/seam/wait_worker.rb +0 -30
  85. data/lib/seam/worker.rb +0 -166
  86. data/seam.gemspec +0 -30
  87. data/spec/seam/effort_spec.rb +0 -43
  88. data/spec/seam/flow_spec.rb +0 -173
  89. data/spec/seam/step_spec.rb +0 -34
  90. data/spec/seam/wait_worker_spec.rb +0 -179
  91. data/spec/seam/worker_spec.rb +0 -973
  92. data/spec/spec_helper.rb +0 -8
@@ -0,0 +1,77 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Seam
4
+ module Clients
5
+ class ClientSessions < BaseClient
6
+ def create(connect_webview_ids: nil, connected_account_ids: nil, expires_at: nil, user_identifier_key: nil, user_identity_ids: nil)
7
+ request_seam_object(
8
+ :post,
9
+ "/client_sessions/create",
10
+ Seam::ClientSession,
11
+ "client_session",
12
+ body: {connect_webview_ids: connect_webview_ids, connected_account_ids: connected_account_ids, expires_at: expires_at, user_identifier_key: user_identifier_key, user_identity_ids: user_identity_ids}.compact
13
+ )
14
+ end
15
+
16
+ def delete(client_session_id:)
17
+ request_seam(
18
+ :post,
19
+ "/client_sessions/delete",
20
+ body: {client_session_id: client_session_id}.compact
21
+ )
22
+
23
+ nil
24
+ end
25
+
26
+ def get(client_session_id: nil, user_identifier_key: nil)
27
+ request_seam_object(
28
+ :post,
29
+ "/client_sessions/get",
30
+ Seam::ClientSession,
31
+ "client_session",
32
+ body: {client_session_id: client_session_id, user_identifier_key: user_identifier_key}.compact
33
+ )
34
+ end
35
+
36
+ def get_or_create(connect_webview_ids: nil, connected_account_ids: nil, expires_at: nil, user_identifier_key: nil, user_identity_ids: nil)
37
+ request_seam_object(
38
+ :post,
39
+ "/client_sessions/get_or_create",
40
+ Seam::ClientSession,
41
+ "client_session",
42
+ body: {connect_webview_ids: connect_webview_ids, connected_account_ids: connected_account_ids, expires_at: expires_at, user_identifier_key: user_identifier_key, user_identity_ids: user_identity_ids}.compact
43
+ )
44
+ end
45
+
46
+ def grant_access(client_session_id: nil, connect_webview_ids: nil, connected_account_ids: nil, user_identifier_key: nil, user_identity_ids: nil)
47
+ request_seam(
48
+ :post,
49
+ "/client_sessions/grant_access",
50
+ body: {client_session_id: client_session_id, connect_webview_ids: connect_webview_ids, connected_account_ids: connected_account_ids, user_identifier_key: user_identifier_key, user_identity_ids: user_identity_ids}.compact
51
+ )
52
+
53
+ nil
54
+ end
55
+
56
+ def list(client_session_id: nil, connect_webview_id: nil, user_identifier_key: nil, user_identity_id: nil, without_user_identifier_key: nil)
57
+ request_seam_object(
58
+ :post,
59
+ "/client_sessions/list",
60
+ Seam::ClientSession,
61
+ "client_sessions",
62
+ body: {client_session_id: client_session_id, connect_webview_id: connect_webview_id, user_identifier_key: user_identifier_key, user_identity_id: user_identity_id, without_user_identifier_key: without_user_identifier_key}.compact
63
+ )
64
+ end
65
+
66
+ def revoke(client_session_id:)
67
+ request_seam(
68
+ :post,
69
+ "/client_sessions/revoke",
70
+ body: {client_session_id: client_session_id}.compact
71
+ )
72
+
73
+ nil
74
+ end
75
+ end
76
+ end
77
+ end
@@ -0,0 +1,47 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Seam
4
+ module Clients
5
+ class ConnectWebviews < BaseClient
6
+ def create(accepted_providers: nil, automatically_manage_new_devices: nil, custom_metadata: nil, custom_redirect_failure_url: nil, custom_redirect_url: nil, device_selection_mode: nil, provider_category: nil, wait_for_device_creation: nil)
7
+ request_seam_object(
8
+ :post,
9
+ "/connect_webviews/create",
10
+ Seam::ConnectWebview,
11
+ "connect_webview",
12
+ body: {accepted_providers: accepted_providers, automatically_manage_new_devices: automatically_manage_new_devices, custom_metadata: custom_metadata, custom_redirect_failure_url: custom_redirect_failure_url, custom_redirect_url: custom_redirect_url, device_selection_mode: device_selection_mode, provider_category: provider_category, wait_for_device_creation: wait_for_device_creation}.compact
13
+ )
14
+ end
15
+
16
+ def delete(connect_webview_id:)
17
+ request_seam(
18
+ :post,
19
+ "/connect_webviews/delete",
20
+ body: {connect_webview_id: connect_webview_id}.compact
21
+ )
22
+
23
+ nil
24
+ end
25
+
26
+ def get(connect_webview_id:)
27
+ request_seam_object(
28
+ :post,
29
+ "/connect_webviews/get",
30
+ Seam::ConnectWebview,
31
+ "connect_webview",
32
+ body: {connect_webview_id: connect_webview_id}.compact
33
+ )
34
+ end
35
+
36
+ def list(custom_metadata_has: nil, user_identifier_key: nil)
37
+ request_seam_object(
38
+ :post,
39
+ "/connect_webviews/list",
40
+ Seam::ConnectWebview,
41
+ "connect_webviews",
42
+ body: {custom_metadata_has: custom_metadata_has, user_identifier_key: user_identifier_key}.compact
43
+ )
44
+ end
45
+ end
46
+ end
47
+ end
@@ -0,0 +1,47 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Seam
4
+ module Clients
5
+ class ConnectedAccounts < BaseClient
6
+ def delete(connected_account_id:, sync: nil)
7
+ request_seam(
8
+ :post,
9
+ "/connected_accounts/delete",
10
+ body: {connected_account_id: connected_account_id, sync: sync}.compact
11
+ )
12
+
13
+ nil
14
+ end
15
+
16
+ def get(connected_account_id: nil, email: nil)
17
+ request_seam_object(
18
+ :post,
19
+ "/connected_accounts/get",
20
+ Seam::ConnectedAccount,
21
+ "connected_account",
22
+ body: {connected_account_id: connected_account_id, email: email}.compact
23
+ )
24
+ end
25
+
26
+ def list(custom_metadata_has: nil)
27
+ request_seam_object(
28
+ :post,
29
+ "/connected_accounts/list",
30
+ Seam::ConnectedAccount,
31
+ "connected_accounts",
32
+ body: {custom_metadata_has: custom_metadata_has}.compact
33
+ )
34
+ end
35
+
36
+ def update(connected_account_id:, automatically_manage_new_devices: nil, custom_metadata: nil)
37
+ request_seam_object(
38
+ :post,
39
+ "/connected_accounts/update",
40
+ Seam::ConnectedAccount,
41
+ "connected_account",
42
+ body: {connected_account_id: connected_account_id, automatically_manage_new_devices: automatically_manage_new_devices, custom_metadata: custom_metadata}.compact
43
+ )
44
+ end
45
+ end
46
+ end
47
+ end
@@ -0,0 +1,65 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Seam
4
+ module Clients
5
+ class Devices < BaseClient
6
+ def simulate
7
+ @simulate ||= Seam::Clients::DevicesSimulate.new(self)
8
+ end
9
+
10
+ def unmanaged
11
+ @unmanaged ||= Seam::Clients::DevicesUnmanaged.new(self)
12
+ end
13
+
14
+ def delete(device_id:)
15
+ request_seam(
16
+ :post,
17
+ "/devices/delete",
18
+ body: {device_id: device_id}.compact
19
+ )
20
+
21
+ nil
22
+ end
23
+
24
+ def get(device_id: nil, name: nil)
25
+ request_seam_object(
26
+ :post,
27
+ "/devices/get",
28
+ Seam::Device,
29
+ "device",
30
+ body: {device_id: device_id, name: name}.compact
31
+ )
32
+ end
33
+
34
+ def list(connect_webview_id: nil, connected_account_id: nil, connected_account_ids: nil, created_before: nil, custom_metadata_has: nil, device_ids: nil, device_types: nil, exclude_if: nil, include_if: nil, limit: nil, manufacturer: nil, user_identifier_key: nil)
35
+ request_seam_object(
36
+ :post,
37
+ "/devices/list",
38
+ Seam::Device,
39
+ "devices",
40
+ body: {connect_webview_id: connect_webview_id, connected_account_id: connected_account_id, connected_account_ids: connected_account_ids, created_before: created_before, custom_metadata_has: custom_metadata_has, device_ids: device_ids, device_types: device_types, exclude_if: exclude_if, include_if: include_if, limit: limit, manufacturer: manufacturer, user_identifier_key: user_identifier_key}.compact
41
+ )
42
+ end
43
+
44
+ def list_device_providers(provider_category: nil)
45
+ request_seam_object(
46
+ :post,
47
+ "/devices/list_device_providers",
48
+ Seam::DeviceProvider,
49
+ "device_providers",
50
+ body: {provider_category: provider_category}.compact
51
+ )
52
+ end
53
+
54
+ def update(device_id:, custom_metadata: nil, is_managed: nil, name: nil, properties: nil)
55
+ request_seam(
56
+ :post,
57
+ "/devices/update",
58
+ body: {device_id: device_id, custom_metadata: custom_metadata, is_managed: is_managed, name: name, properties: properties}.compact
59
+ )
60
+
61
+ nil
62
+ end
63
+ end
64
+ end
65
+ end
@@ -0,0 +1,17 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Seam
4
+ module Clients
5
+ class DevicesSimulate < BaseClient
6
+ def remove(device_id:)
7
+ request_seam(
8
+ :post,
9
+ "/devices/simulate/remove",
10
+ body: {device_id: device_id}.compact
11
+ )
12
+
13
+ nil
14
+ end
15
+ end
16
+ end
17
+ end
@@ -0,0 +1,37 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Seam
4
+ module Clients
5
+ class DevicesUnmanaged < BaseClient
6
+ def get(device_id: nil, name: nil)
7
+ request_seam_object(
8
+ :post,
9
+ "/devices/unmanaged/get",
10
+ Seam::UnmanagedDevice,
11
+ "device",
12
+ body: {device_id: device_id, name: name}.compact
13
+ )
14
+ end
15
+
16
+ def list(connect_webview_id: nil, connected_account_id: nil, connected_account_ids: nil, created_before: nil, custom_metadata_has: nil, device_ids: nil, device_types: nil, exclude_if: nil, include_if: nil, limit: nil, manufacturer: nil, user_identifier_key: nil)
17
+ request_seam_object(
18
+ :post,
19
+ "/devices/unmanaged/list",
20
+ Seam::UnmanagedDevice,
21
+ "devices",
22
+ body: {connect_webview_id: connect_webview_id, connected_account_id: connected_account_id, connected_account_ids: connected_account_ids, created_before: created_before, custom_metadata_has: custom_metadata_has, device_ids: device_ids, device_types: device_types, exclude_if: exclude_if, include_if: include_if, limit: limit, manufacturer: manufacturer, user_identifier_key: user_identifier_key}.compact
23
+ )
24
+ end
25
+
26
+ def update(device_id:, is_managed:)
27
+ request_seam(
28
+ :post,
29
+ "/devices/unmanaged/update",
30
+ body: {device_id: device_id, is_managed: is_managed}.compact
31
+ )
32
+
33
+ nil
34
+ end
35
+ end
36
+ end
37
+ end
@@ -0,0 +1,27 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Seam
4
+ module Clients
5
+ class Events < BaseClient
6
+ def get(device_id: nil, event_id: nil, event_type: nil)
7
+ request_seam_object(
8
+ :post,
9
+ "/events/get",
10
+ Seam::Event,
11
+ "event",
12
+ body: {device_id: device_id, event_id: event_id, event_type: event_type}.compact
13
+ )
14
+ end
15
+
16
+ def list(access_code_id: nil, access_code_ids: nil, between: nil, connected_account_id: nil, device_id: nil, device_ids: nil, event_type: nil, event_types: nil, limit: nil, since: nil)
17
+ request_seam_object(
18
+ :post,
19
+ "/events/list",
20
+ Seam::Event,
21
+ "events",
22
+ body: {access_code_id: access_code_id, access_code_ids: access_code_ids, between: between, connected_account_id: connected_account_id, device_id: device_id, device_ids: device_ids, event_type: event_type, event_types: event_types, limit: limit, since: since}.compact
23
+ )
24
+ end
25
+ end
26
+ end
27
+ end
@@ -0,0 +1,53 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Seam
4
+ module Clients
5
+ class Locks < BaseClient
6
+ def get(device_id: nil, name: nil)
7
+ request_seam_object(
8
+ :post,
9
+ "/locks/get",
10
+ Seam::Device,
11
+ "device",
12
+ body: {device_id: device_id, name: name}.compact
13
+ )
14
+ end
15
+
16
+ def list(connect_webview_id: nil, connected_account_id: nil, connected_account_ids: nil, created_before: nil, custom_metadata_has: nil, device_ids: nil, device_types: nil, exclude_if: nil, include_if: nil, limit: nil, manufacturer: nil, user_identifier_key: nil)
17
+ request_seam_object(
18
+ :post,
19
+ "/locks/list",
20
+ Seam::Device,
21
+ "devices",
22
+ body: {connect_webview_id: connect_webview_id, connected_account_id: connected_account_id, connected_account_ids: connected_account_ids, created_before: created_before, custom_metadata_has: custom_metadata_has, device_ids: device_ids, device_types: device_types, exclude_if: exclude_if, include_if: include_if, limit: limit, manufacturer: manufacturer, user_identifier_key: user_identifier_key}.compact
23
+ )
24
+ end
25
+
26
+ def lock_door(device_id:, sync: nil, wait_for_action_attempt: nil)
27
+ action_attempt = request_seam_object(
28
+ :post,
29
+ "/locks/lock_door",
30
+ Seam::ActionAttempt,
31
+ "action_attempt",
32
+ body: {device_id: device_id, sync: sync}.compact
33
+ )
34
+
35
+ action_attempt.decide_and_wait(wait_for_action_attempt)
36
+ action_attempt
37
+ end
38
+
39
+ def unlock_door(device_id:, sync: nil, wait_for_action_attempt: nil)
40
+ action_attempt = request_seam_object(
41
+ :post,
42
+ "/locks/unlock_door",
43
+ Seam::ActionAttempt,
44
+ "action_attempt",
45
+ body: {device_id: device_id, sync: sync}.compact
46
+ )
47
+
48
+ action_attempt.decide_and_wait(wait_for_action_attempt)
49
+ action_attempt
50
+ end
51
+ end
52
+ end
53
+ end
@@ -0,0 +1,27 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Seam
4
+ module Clients
5
+ class Networks < BaseClient
6
+ def get(network_id:)
7
+ request_seam_object(
8
+ :post,
9
+ "/networks/get",
10
+ Seam::Network,
11
+ "network",
12
+ body: {network_id: network_id}.compact
13
+ )
14
+ end
15
+
16
+ def list
17
+ request_seam_object(
18
+ :post,
19
+ "/networks/list",
20
+ Seam::Network,
21
+ "networks",
22
+ body: {}.compact
23
+ )
24
+ end
25
+ end
26
+ end
27
+ end
@@ -0,0 +1,15 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Seam
4
+ module Clients
5
+ class NoiseSensors < BaseClient
6
+ def noise_thresholds
7
+ @noise_thresholds ||= Seam::Clients::NoiseSensorsNoiseThresholds.new(self)
8
+ end
9
+
10
+ def simulate
11
+ @simulate ||= Seam::Clients::NoiseSensorsSimulate.new(self)
12
+ end
13
+ end
14
+ end
15
+ end
@@ -0,0 +1,57 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Seam
4
+ module Clients
5
+ class NoiseSensorsNoiseThresholds < BaseClient
6
+ def create(device_id:, ends_daily_at:, starts_daily_at:, name: nil, noise_threshold_decibels: nil, noise_threshold_nrs: nil, sync: nil)
7
+ request_seam_object(
8
+ :post,
9
+ "/noise_sensors/noise_thresholds/create",
10
+ Seam::NoiseThreshold,
11
+ "noise_threshold",
12
+ body: {device_id: device_id, ends_daily_at: ends_daily_at, starts_daily_at: starts_daily_at, name: name, noise_threshold_decibels: noise_threshold_decibels, noise_threshold_nrs: noise_threshold_nrs, sync: sync}.compact
13
+ )
14
+ end
15
+
16
+ def delete(device_id:, noise_threshold_id:, sync: nil)
17
+ request_seam(
18
+ :post,
19
+ "/noise_sensors/noise_thresholds/delete",
20
+ body: {device_id: device_id, noise_threshold_id: noise_threshold_id, sync: sync}.compact
21
+ )
22
+
23
+ nil
24
+ end
25
+
26
+ def get(noise_threshold_id:)
27
+ request_seam_object(
28
+ :post,
29
+ "/noise_sensors/noise_thresholds/get",
30
+ Seam::NoiseThreshold,
31
+ "noise_threshold",
32
+ body: {noise_threshold_id: noise_threshold_id}.compact
33
+ )
34
+ end
35
+
36
+ def list(device_id:, is_programmed: nil)
37
+ request_seam_object(
38
+ :post,
39
+ "/noise_sensors/noise_thresholds/list",
40
+ Seam::NoiseThreshold,
41
+ "noise_thresholds",
42
+ body: {device_id: device_id, is_programmed: is_programmed}.compact
43
+ )
44
+ end
45
+
46
+ def update(device_id:, noise_threshold_id:, ends_daily_at: nil, name: nil, noise_threshold_decibels: nil, noise_threshold_nrs: nil, starts_daily_at: nil, sync: nil)
47
+ request_seam(
48
+ :post,
49
+ "/noise_sensors/noise_thresholds/update",
50
+ body: {device_id: device_id, noise_threshold_id: noise_threshold_id, ends_daily_at: ends_daily_at, name: name, noise_threshold_decibels: noise_threshold_decibels, noise_threshold_nrs: noise_threshold_nrs, starts_daily_at: starts_daily_at, sync: sync}.compact
51
+ )
52
+
53
+ nil
54
+ end
55
+ end
56
+ end
57
+ end
@@ -0,0 +1,17 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Seam
4
+ module Clients
5
+ class NoiseSensorsSimulate < BaseClient
6
+ def trigger_noise_threshold(device_id:)
7
+ request_seam(
8
+ :post,
9
+ "/noise_sensors/simulate/trigger_noise_threshold",
10
+ body: {device_id: device_id}.compact
11
+ )
12
+
13
+ nil
14
+ end
15
+ end
16
+ end
17
+ end
@@ -0,0 +1,31 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Seam
4
+ module Clients
5
+ class Phones < BaseClient
6
+ def simulate
7
+ @simulate ||= Seam::Clients::PhonesSimulate.new(self)
8
+ end
9
+
10
+ def deactivate(device_id:)
11
+ request_seam(
12
+ :post,
13
+ "/phones/deactivate",
14
+ body: {device_id: device_id}.compact
15
+ )
16
+
17
+ nil
18
+ end
19
+
20
+ def list(owner_user_identity_id: nil)
21
+ request_seam_object(
22
+ :post,
23
+ "/phones/list",
24
+ Seam::Phone,
25
+ "phones",
26
+ body: {owner_user_identity_id: owner_user_identity_id}.compact
27
+ )
28
+ end
29
+ end
30
+ end
31
+ end
@@ -0,0 +1,17 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Seam
4
+ module Clients
5
+ class PhonesSimulate < BaseClient
6
+ def create_sandbox_phone(user_identity_id:, assa_abloy_metadata: nil, custom_sdk_installation_id: nil, phone_metadata: nil)
7
+ request_seam_object(
8
+ :post,
9
+ "/phones/simulate/create_sandbox_phone",
10
+ Seam::Phone,
11
+ "phone",
12
+ body: {user_identity_id: user_identity_id, assa_abloy_metadata: assa_abloy_metadata, custom_sdk_installation_id: custom_sdk_installation_id, phone_metadata: phone_metadata}.compact
13
+ )
14
+ end
15
+ end
16
+ end
17
+ end
@@ -0,0 +1,106 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Seam
4
+ module Clients
5
+ class Thermostats < BaseClient
6
+ def climate_setting_schedules
7
+ @climate_setting_schedules ||= Seam::Clients::ThermostatsClimateSettingSchedules.new(self)
8
+ end
9
+
10
+ def cool(device_id:, cooling_set_point_celsius: nil, cooling_set_point_fahrenheit: nil, sync: nil, wait_for_action_attempt: nil)
11
+ action_attempt = request_seam_object(
12
+ :post,
13
+ "/thermostats/cool",
14
+ Seam::ActionAttempt,
15
+ "action_attempt",
16
+ body: {device_id: device_id, cooling_set_point_celsius: cooling_set_point_celsius, cooling_set_point_fahrenheit: cooling_set_point_fahrenheit, sync: sync}.compact
17
+ )
18
+
19
+ action_attempt.decide_and_wait(wait_for_action_attempt)
20
+ action_attempt
21
+ end
22
+
23
+ def get(device_id: nil, name: nil)
24
+ request_seam_object(
25
+ :post,
26
+ "/thermostats/get",
27
+ Seam::Device,
28
+ "thermostat",
29
+ body: {device_id: device_id, name: name}.compact
30
+ )
31
+ end
32
+
33
+ def heat(device_id:, heating_set_point_celsius: nil, heating_set_point_fahrenheit: nil, sync: nil, wait_for_action_attempt: nil)
34
+ action_attempt = request_seam_object(
35
+ :post,
36
+ "/thermostats/heat",
37
+ Seam::ActionAttempt,
38
+ "action_attempt",
39
+ body: {device_id: device_id, heating_set_point_celsius: heating_set_point_celsius, heating_set_point_fahrenheit: heating_set_point_fahrenheit, sync: sync}.compact
40
+ )
41
+
42
+ action_attempt.decide_and_wait(wait_for_action_attempt)
43
+ action_attempt
44
+ end
45
+
46
+ def heat_cool(device_id:, cooling_set_point_celsius: nil, cooling_set_point_fahrenheit: nil, heating_set_point_celsius: nil, heating_set_point_fahrenheit: nil, sync: nil, wait_for_action_attempt: nil)
47
+ action_attempt = request_seam_object(
48
+ :post,
49
+ "/thermostats/heat_cool",
50
+ Seam::ActionAttempt,
51
+ "action_attempt",
52
+ body: {device_id: device_id, cooling_set_point_celsius: cooling_set_point_celsius, cooling_set_point_fahrenheit: cooling_set_point_fahrenheit, heating_set_point_celsius: heating_set_point_celsius, heating_set_point_fahrenheit: heating_set_point_fahrenheit, sync: sync}.compact
53
+ )
54
+
55
+ action_attempt.decide_and_wait(wait_for_action_attempt)
56
+ action_attempt
57
+ end
58
+
59
+ def list(connect_webview_id: nil, connected_account_id: nil, connected_account_ids: nil, created_before: nil, custom_metadata_has: nil, device_ids: nil, device_types: nil, exclude_if: nil, include_if: nil, limit: nil, manufacturer: nil, user_identifier_key: nil)
60
+ request_seam_object(
61
+ :post,
62
+ "/thermostats/list",
63
+ Seam::Device,
64
+ "thermostats",
65
+ body: {connect_webview_id: connect_webview_id, connected_account_id: connected_account_id, connected_account_ids: connected_account_ids, created_before: created_before, custom_metadata_has: custom_metadata_has, device_ids: device_ids, device_types: device_types, exclude_if: exclude_if, include_if: include_if, limit: limit, manufacturer: manufacturer, user_identifier_key: user_identifier_key}.compact
66
+ )
67
+ end
68
+
69
+ def off(device_id:, sync: nil, wait_for_action_attempt: nil)
70
+ action_attempt = request_seam_object(
71
+ :post,
72
+ "/thermostats/off",
73
+ Seam::ActionAttempt,
74
+ "action_attempt",
75
+ body: {device_id: device_id, sync: sync}.compact
76
+ )
77
+
78
+ action_attempt.decide_and_wait(wait_for_action_attempt)
79
+ action_attempt
80
+ end
81
+
82
+ def set_fan_mode(device_id:, fan_mode: nil, fan_mode_setting: nil, sync: nil, wait_for_action_attempt: nil)
83
+ action_attempt = request_seam_object(
84
+ :post,
85
+ "/thermostats/set_fan_mode",
86
+ Seam::ActionAttempt,
87
+ "action_attempt",
88
+ body: {device_id: device_id, fan_mode: fan_mode, fan_mode_setting: fan_mode_setting, sync: sync}.compact
89
+ )
90
+
91
+ action_attempt.decide_and_wait(wait_for_action_attempt)
92
+ action_attempt
93
+ end
94
+
95
+ def update(default_climate_setting:, device_id:)
96
+ request_seam(
97
+ :post,
98
+ "/thermostats/update",
99
+ body: {default_climate_setting: default_climate_setting, device_id: device_id}.compact
100
+ )
101
+
102
+ nil
103
+ end
104
+ end
105
+ end
106
+ end