seam 1.1.3 → 2.0.0a2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -5
- data/Gemfile +4 -2
- data/Gemfile.lock +137 -0
- data/LICENSE.txt +16 -18
- data/README.md +118 -115
- data/Rakefile +23 -0
- data/lib/seam/client.rb +129 -0
- data/lib/seam/clients/access_codes.rb +95 -0
- data/lib/seam/clients/access_codes_simulate.rb +17 -0
- data/lib/seam/clients/access_codes_unmanaged.rb +57 -0
- data/lib/seam/clients/acs.rb +35 -0
- data/lib/seam/clients/acs_access_groups.rb +57 -0
- data/lib/seam/clients/acs_credential_pools.rb +17 -0
- data/lib/seam/clients/acs_credential_provisioning_automations.rb +17 -0
- data/lib/seam/clients/acs_credentials.rb +77 -0
- data/lib/seam/clients/acs_entrances.rb +47 -0
- data/lib/seam/clients/acs_systems.rb +27 -0
- data/lib/seam/clients/acs_users.rb +117 -0
- data/lib/seam/clients/action_attempts.rb +30 -0
- data/lib/seam/clients/base_client.rb +21 -0
- data/lib/seam/clients/client_sessions.rb +77 -0
- data/lib/seam/clients/connect_webviews.rb +47 -0
- data/lib/seam/clients/connected_accounts.rb +47 -0
- data/lib/seam/clients/devices.rb +65 -0
- data/lib/seam/clients/devices_simulate.rb +17 -0
- data/lib/seam/clients/devices_unmanaged.rb +37 -0
- data/lib/seam/clients/events.rb +27 -0
- data/lib/seam/clients/locks.rb +53 -0
- data/lib/seam/clients/networks.rb +27 -0
- data/lib/seam/clients/noise_sensors.rb +15 -0
- data/lib/seam/clients/noise_sensors_noise_thresholds.rb +57 -0
- data/lib/seam/clients/noise_sensors_simulate.rb +17 -0
- data/lib/seam/clients/phones.rb +31 -0
- data/lib/seam/clients/phones_simulate.rb +17 -0
- data/lib/seam/clients/thermostats.rb +106 -0
- data/lib/seam/clients/thermostats_climate_setting_schedules.rb +57 -0
- data/lib/seam/clients/user_identities.rb +131 -0
- data/lib/seam/clients/user_identities_enrollment_automations.rb +47 -0
- data/lib/seam/clients/webhooks.rb +57 -0
- data/lib/seam/clients/workspaces.rb +50 -0
- data/lib/seam/logger.rb +12 -0
- data/lib/seam/lts_version.rb +5 -0
- data/lib/seam/request.rb +73 -0
- data/lib/seam/resources/access_code.rb +12 -0
- data/lib/seam/resources/acs_access_group.rb +9 -0
- data/lib/seam/resources/acs_credential.rb +12 -0
- data/lib/seam/resources/acs_credential_pool.rb +9 -0
- data/lib/seam/resources/acs_credential_provisioning_automation.rb +9 -0
- data/lib/seam/resources/acs_entrance.rb +9 -0
- data/lib/seam/resources/acs_system.rb +9 -0
- data/lib/seam/resources/acs_user.rb +9 -0
- data/lib/seam/resources/action_attempt.rb +46 -0
- data/lib/seam/resources/base_resource.rb +58 -0
- data/lib/seam/resources/client_session.rb +9 -0
- data/lib/seam/resources/climate_setting_schedule.rb +11 -0
- data/lib/seam/resources/connect_webview.rb +9 -0
- data/lib/seam/resources/connected_account.rb +12 -0
- data/lib/seam/resources/device.rb +12 -0
- data/lib/seam/resources/device_provider.rb +7 -0
- data/lib/seam/resources/enrollment_automation.rb +9 -0
- data/lib/seam/resources/event.rb +9 -0
- data/lib/seam/resources/network.rb +9 -0
- data/lib/seam/resources/noise_threshold.rb +7 -0
- data/lib/seam/resources/phone.rb +12 -0
- data/lib/seam/resources/resource_error.rb +9 -0
- data/lib/seam/resources/resource_errors_support.rb +9 -0
- data/lib/seam/resources/resource_warning.rb +9 -0
- data/lib/seam/resources/resource_warnings_support.rb +9 -0
- data/lib/seam/resources/service_health.rb +7 -0
- data/lib/seam/resources/unmanaged_access_code.rb +12 -0
- data/lib/seam/resources/unmanaged_device.rb +12 -0
- data/lib/seam/resources/user_identity.rb +9 -0
- data/lib/seam/resources/webhook.rb +7 -0
- data/lib/seam/resources/workspace.rb +7 -0
- data/lib/seam/version.rb +3 -1
- data/lib/seam.rb +71 -13
- metadata +147 -82
- data/.gitignore +0 -18
- data/lib/seam/effort.rb +0 -86
- data/lib/seam/flow.rb +0 -53
- data/lib/seam/in_memory.rb +0 -13
- data/lib/seam/persistence.rb +0 -43
- data/lib/seam/step.rb +0 -33
- data/lib/seam/wait_worker.rb +0 -30
- data/lib/seam/worker.rb +0 -166
- data/seam.gemspec +0 -30
- data/spec/seam/effort_spec.rb +0 -43
- data/spec/seam/flow_spec.rb +0 -173
- data/spec/seam/step_spec.rb +0 -34
- data/spec/seam/wait_worker_spec.rb +0 -179
- data/spec/seam/worker_spec.rb +0 -973
- data/spec/spec_helper.rb +0 -8
@@ -0,0 +1,95 @@
|
|
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
|
@@ -0,0 +1,17 @@
|
|
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
|
@@ -0,0 +1,57 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Seam
|
4
|
+
module Clients
|
5
|
+
class AccessCodesUnmanaged < BaseClient
|
6
|
+
def convert_to_managed(access_code_id:, allow_external_modification: nil, force: nil, is_external_modification_allowed: nil, sync: nil)
|
7
|
+
request_seam(
|
8
|
+
:post,
|
9
|
+
"/access_codes/unmanaged/convert_to_managed",
|
10
|
+
body: {access_code_id: access_code_id, allow_external_modification: allow_external_modification, force: force, is_external_modification_allowed: is_external_modification_allowed, sync: sync}.compact
|
11
|
+
)
|
12
|
+
|
13
|
+
nil
|
14
|
+
end
|
15
|
+
|
16
|
+
def delete(access_code_id:, sync: nil)
|
17
|
+
request_seam(
|
18
|
+
:post,
|
19
|
+
"/access_codes/unmanaged/delete",
|
20
|
+
body: {access_code_id: access_code_id, sync: sync}.compact
|
21
|
+
)
|
22
|
+
|
23
|
+
nil
|
24
|
+
end
|
25
|
+
|
26
|
+
def get(access_code_id: nil, code: nil, device_id: nil)
|
27
|
+
request_seam_object(
|
28
|
+
:post,
|
29
|
+
"/access_codes/unmanaged/get",
|
30
|
+
Seam::UnmanagedAccessCode,
|
31
|
+
"access_code",
|
32
|
+
body: {access_code_id: access_code_id, code: code, device_id: device_id}.compact
|
33
|
+
)
|
34
|
+
end
|
35
|
+
|
36
|
+
def list(device_id:, user_identifier_key: nil)
|
37
|
+
request_seam_object(
|
38
|
+
:post,
|
39
|
+
"/access_codes/unmanaged/list",
|
40
|
+
Seam::UnmanagedAccessCode,
|
41
|
+
"access_codes",
|
42
|
+
body: {device_id: device_id, user_identifier_key: user_identifier_key}.compact
|
43
|
+
)
|
44
|
+
end
|
45
|
+
|
46
|
+
def update(access_code_id:, is_managed:, allow_external_modification: nil, force: nil, is_external_modification_allowed: nil)
|
47
|
+
request_seam(
|
48
|
+
:post,
|
49
|
+
"/access_codes/unmanaged/update",
|
50
|
+
body: {access_code_id: access_code_id, is_managed: is_managed, allow_external_modification: allow_external_modification, force: force, is_external_modification_allowed: is_external_modification_allowed}.compact
|
51
|
+
)
|
52
|
+
|
53
|
+
nil
|
54
|
+
end
|
55
|
+
end
|
56
|
+
end
|
57
|
+
end
|
@@ -0,0 +1,35 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Seam
|
4
|
+
module Clients
|
5
|
+
class Acs < BaseClient
|
6
|
+
def access_groups
|
7
|
+
@access_groups ||= Seam::Clients::AcsAccessGroups.new(self)
|
8
|
+
end
|
9
|
+
|
10
|
+
def credential_pools
|
11
|
+
@credential_pools ||= Seam::Clients::AcsCredentialPools.new(self)
|
12
|
+
end
|
13
|
+
|
14
|
+
def credential_provisioning_automations
|
15
|
+
@credential_provisioning_automations ||= Seam::Clients::AcsCredentialProvisioningAutomations.new(self)
|
16
|
+
end
|
17
|
+
|
18
|
+
def credentials
|
19
|
+
@credentials ||= Seam::Clients::AcsCredentials.new(self)
|
20
|
+
end
|
21
|
+
|
22
|
+
def entrances
|
23
|
+
@entrances ||= Seam::Clients::AcsEntrances.new(self)
|
24
|
+
end
|
25
|
+
|
26
|
+
def systems
|
27
|
+
@systems ||= Seam::Clients::AcsSystems.new(self)
|
28
|
+
end
|
29
|
+
|
30
|
+
def users
|
31
|
+
@users ||= Seam::Clients::AcsUsers.new(self)
|
32
|
+
end
|
33
|
+
end
|
34
|
+
end
|
35
|
+
end
|
@@ -0,0 +1,57 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Seam
|
4
|
+
module Clients
|
5
|
+
class AcsAccessGroups < BaseClient
|
6
|
+
def add_user(acs_access_group_id:, acs_user_id:)
|
7
|
+
request_seam(
|
8
|
+
:post,
|
9
|
+
"/acs/access_groups/add_user",
|
10
|
+
body: {acs_access_group_id: acs_access_group_id, acs_user_id: acs_user_id}.compact
|
11
|
+
)
|
12
|
+
|
13
|
+
nil
|
14
|
+
end
|
15
|
+
|
16
|
+
def get(acs_access_group_id:)
|
17
|
+
request_seam_object(
|
18
|
+
:post,
|
19
|
+
"/acs/access_groups/get",
|
20
|
+
Seam::AcsAccessGroup,
|
21
|
+
"acs_access_group",
|
22
|
+
body: {acs_access_group_id: acs_access_group_id}.compact
|
23
|
+
)
|
24
|
+
end
|
25
|
+
|
26
|
+
def list(acs_system_id: nil, acs_user_id: nil)
|
27
|
+
request_seam_object(
|
28
|
+
:post,
|
29
|
+
"/acs/access_groups/list",
|
30
|
+
Seam::AcsAccessGroup,
|
31
|
+
"acs_access_groups",
|
32
|
+
body: {acs_system_id: acs_system_id, acs_user_id: acs_user_id}.compact
|
33
|
+
)
|
34
|
+
end
|
35
|
+
|
36
|
+
def list_users(acs_access_group_id:)
|
37
|
+
request_seam_object(
|
38
|
+
:post,
|
39
|
+
"/acs/access_groups/list_users",
|
40
|
+
Seam::AcsUser,
|
41
|
+
"acs_users",
|
42
|
+
body: {acs_access_group_id: acs_access_group_id}.compact
|
43
|
+
)
|
44
|
+
end
|
45
|
+
|
46
|
+
def remove_user(acs_access_group_id:, acs_user_id:)
|
47
|
+
request_seam(
|
48
|
+
:post,
|
49
|
+
"/acs/access_groups/remove_user",
|
50
|
+
body: {acs_access_group_id: acs_access_group_id, acs_user_id: acs_user_id}.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 AcsCredentialPools < BaseClient
|
6
|
+
def list(acs_system_id:)
|
7
|
+
request_seam_object(
|
8
|
+
:post,
|
9
|
+
"/acs/credential_pools/list",
|
10
|
+
Seam::AcsCredentialPool,
|
11
|
+
"acs_credential_pools",
|
12
|
+
body: {acs_system_id: acs_system_id}.compact
|
13
|
+
)
|
14
|
+
end
|
15
|
+
end
|
16
|
+
end
|
17
|
+
end
|
@@ -0,0 +1,17 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Seam
|
4
|
+
module Clients
|
5
|
+
class AcsCredentialProvisioningAutomations < BaseClient
|
6
|
+
def launch(credential_manager_acs_system_id:, user_identity_id:, acs_credential_pool_id: nil, create_credential_manager_user: nil, credential_manager_acs_user_id: nil)
|
7
|
+
request_seam_object(
|
8
|
+
:post,
|
9
|
+
"/acs/credential_provisioning_automations/launch",
|
10
|
+
Seam::AcsCredentialProvisioningAutomation,
|
11
|
+
"acs_credential_provisioning_automation",
|
12
|
+
body: {credential_manager_acs_system_id: credential_manager_acs_system_id, user_identity_id: user_identity_id, acs_credential_pool_id: acs_credential_pool_id, create_credential_manager_user: create_credential_manager_user, credential_manager_acs_user_id: credential_manager_acs_user_id}.compact
|
13
|
+
)
|
14
|
+
end
|
15
|
+
end
|
16
|
+
end
|
17
|
+
end
|
@@ -0,0 +1,77 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Seam
|
4
|
+
module Clients
|
5
|
+
class AcsCredentials < BaseClient
|
6
|
+
def assign(acs_credential_id:, acs_user_id:)
|
7
|
+
request_seam(
|
8
|
+
:post,
|
9
|
+
"/acs/credentials/assign",
|
10
|
+
body: {acs_credential_id: acs_credential_id, acs_user_id: acs_user_id}.compact
|
11
|
+
)
|
12
|
+
|
13
|
+
nil
|
14
|
+
end
|
15
|
+
|
16
|
+
def create(access_method:, acs_user_id:, allowed_acs_entrance_ids: nil, code: nil, credential_manager_acs_system_id: nil, ends_at: nil, is_multi_phone_sync_credential: nil, starts_at: nil, visionline_metadata: nil)
|
17
|
+
request_seam_object(
|
18
|
+
:post,
|
19
|
+
"/acs/credentials/create",
|
20
|
+
Seam::AcsCredential,
|
21
|
+
"acs_credential",
|
22
|
+
body: {access_method: access_method, acs_user_id: acs_user_id, allowed_acs_entrance_ids: allowed_acs_entrance_ids, code: code, credential_manager_acs_system_id: credential_manager_acs_system_id, ends_at: ends_at, is_multi_phone_sync_credential: is_multi_phone_sync_credential, starts_at: starts_at, visionline_metadata: visionline_metadata}.compact
|
23
|
+
)
|
24
|
+
end
|
25
|
+
|
26
|
+
def delete(acs_credential_id:)
|
27
|
+
request_seam(
|
28
|
+
:post,
|
29
|
+
"/acs/credentials/delete",
|
30
|
+
body: {acs_credential_id: acs_credential_id}.compact
|
31
|
+
)
|
32
|
+
|
33
|
+
nil
|
34
|
+
end
|
35
|
+
|
36
|
+
def get(acs_credential_id:)
|
37
|
+
request_seam_object(
|
38
|
+
:post,
|
39
|
+
"/acs/credentials/get",
|
40
|
+
Seam::AcsCredential,
|
41
|
+
"acs_credential",
|
42
|
+
body: {acs_credential_id: acs_credential_id}.compact
|
43
|
+
)
|
44
|
+
end
|
45
|
+
|
46
|
+
def list(acs_user_id: nil, acs_system_id: nil, user_identity_id: nil, is_multi_phone_sync_credential: nil)
|
47
|
+
request_seam_object(
|
48
|
+
:post,
|
49
|
+
"/acs/credentials/list",
|
50
|
+
Seam::AcsCredential,
|
51
|
+
"acs_credentials",
|
52
|
+
body: {acs_user_id: acs_user_id, acs_system_id: acs_system_id, user_identity_id: user_identity_id, is_multi_phone_sync_credential: is_multi_phone_sync_credential}.compact
|
53
|
+
)
|
54
|
+
end
|
55
|
+
|
56
|
+
def unassign(acs_credential_id:, acs_user_id:)
|
57
|
+
request_seam(
|
58
|
+
:post,
|
59
|
+
"/acs/credentials/unassign",
|
60
|
+
body: {acs_credential_id: acs_credential_id, acs_user_id: acs_user_id}.compact
|
61
|
+
)
|
62
|
+
|
63
|
+
nil
|
64
|
+
end
|
65
|
+
|
66
|
+
def update(acs_credential_id:, code:)
|
67
|
+
request_seam(
|
68
|
+
:post,
|
69
|
+
"/acs/credentials/update",
|
70
|
+
body: {acs_credential_id: acs_credential_id, code: code}.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 AcsEntrances < BaseClient
|
6
|
+
def get(acs_entrance_id:)
|
7
|
+
request_seam_object(
|
8
|
+
:post,
|
9
|
+
"/acs/entrances/get",
|
10
|
+
Seam::AcsEntrance,
|
11
|
+
"acs_entrance",
|
12
|
+
body: {acs_entrance_id: acs_entrance_id}.compact
|
13
|
+
)
|
14
|
+
end
|
15
|
+
|
16
|
+
def grant_access(acs_entrance_id:, acs_user_id:)
|
17
|
+
request_seam(
|
18
|
+
:post,
|
19
|
+
"/acs/entrances/grant_access",
|
20
|
+
body: {acs_entrance_id: acs_entrance_id, acs_user_id: acs_user_id}.compact
|
21
|
+
)
|
22
|
+
|
23
|
+
nil
|
24
|
+
end
|
25
|
+
|
26
|
+
def list(acs_credential_id: nil, acs_system_id: nil)
|
27
|
+
request_seam_object(
|
28
|
+
:post,
|
29
|
+
"/acs/entrances/list",
|
30
|
+
Seam::AcsEntrance,
|
31
|
+
"acs_entrances",
|
32
|
+
body: {acs_credential_id: acs_credential_id, acs_system_id: acs_system_id}.compact
|
33
|
+
)
|
34
|
+
end
|
35
|
+
|
36
|
+
def list_credentials_with_access(acs_entrance_id:, include_if: nil)
|
37
|
+
request_seam_object(
|
38
|
+
:post,
|
39
|
+
"/acs/entrances/list_credentials_with_access",
|
40
|
+
Seam::AcsCredential,
|
41
|
+
"acs_credentials",
|
42
|
+
body: {acs_entrance_id: acs_entrance_id, include_if: include_if}.compact
|
43
|
+
)
|
44
|
+
end
|
45
|
+
end
|
46
|
+
end
|
47
|
+
end
|
@@ -0,0 +1,27 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Seam
|
4
|
+
module Clients
|
5
|
+
class AcsSystems < BaseClient
|
6
|
+
def get(acs_system_id:)
|
7
|
+
request_seam_object(
|
8
|
+
:post,
|
9
|
+
"/acs/systems/get",
|
10
|
+
Seam::AcsSystem,
|
11
|
+
"acs_system",
|
12
|
+
body: {acs_system_id: acs_system_id}.compact
|
13
|
+
)
|
14
|
+
end
|
15
|
+
|
16
|
+
def list(connected_account_id: nil)
|
17
|
+
request_seam_object(
|
18
|
+
:post,
|
19
|
+
"/acs/systems/list",
|
20
|
+
Seam::AcsSystem,
|
21
|
+
"acs_systems",
|
22
|
+
body: {connected_account_id: connected_account_id}.compact
|
23
|
+
)
|
24
|
+
end
|
25
|
+
end
|
26
|
+
end
|
27
|
+
end
|
@@ -0,0 +1,117 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Seam
|
4
|
+
module Clients
|
5
|
+
class AcsUsers < BaseClient
|
6
|
+
def add_to_access_group(acs_access_group_id:, acs_user_id:)
|
7
|
+
request_seam(
|
8
|
+
:post,
|
9
|
+
"/acs/users/add_to_access_group",
|
10
|
+
body: {acs_access_group_id: acs_access_group_id, acs_user_id: acs_user_id}.compact
|
11
|
+
)
|
12
|
+
|
13
|
+
nil
|
14
|
+
end
|
15
|
+
|
16
|
+
def create(acs_system_id:, access_schedule: nil, acs_access_group_ids: nil, email: nil, email_address: nil, full_name: nil, phone_number: nil, user_identity_id: nil)
|
17
|
+
request_seam_object(
|
18
|
+
:post,
|
19
|
+
"/acs/users/create",
|
20
|
+
Seam::AcsUser,
|
21
|
+
"acs_user",
|
22
|
+
body: {acs_system_id: acs_system_id, access_schedule: access_schedule, acs_access_group_ids: acs_access_group_ids, email: email, email_address: email_address, full_name: full_name, phone_number: phone_number, user_identity_id: user_identity_id}.compact
|
23
|
+
)
|
24
|
+
end
|
25
|
+
|
26
|
+
def delete(acs_user_id:)
|
27
|
+
request_seam(
|
28
|
+
:post,
|
29
|
+
"/acs/users/delete",
|
30
|
+
body: {acs_user_id: acs_user_id}.compact
|
31
|
+
)
|
32
|
+
|
33
|
+
nil
|
34
|
+
end
|
35
|
+
|
36
|
+
def get(acs_user_id:)
|
37
|
+
request_seam_object(
|
38
|
+
:post,
|
39
|
+
"/acs/users/get",
|
40
|
+
Seam::AcsUser,
|
41
|
+
"acs_user",
|
42
|
+
body: {acs_user_id: acs_user_id}.compact
|
43
|
+
)
|
44
|
+
end
|
45
|
+
|
46
|
+
def list(acs_system_id: nil, user_identity_email_address: nil, user_identity_id: nil, user_identity_phone_number: nil)
|
47
|
+
request_seam_object(
|
48
|
+
:post,
|
49
|
+
"/acs/users/list",
|
50
|
+
Seam::AcsUser,
|
51
|
+
"acs_users",
|
52
|
+
body: {acs_system_id: acs_system_id, user_identity_email_address: user_identity_email_address, user_identity_id: user_identity_id, user_identity_phone_number: user_identity_phone_number}.compact
|
53
|
+
)
|
54
|
+
end
|
55
|
+
|
56
|
+
def list_accessible_entrances(acs_user_id:)
|
57
|
+
request_seam_object(
|
58
|
+
:post,
|
59
|
+
"/acs/users/list_accessible_entrances",
|
60
|
+
Seam::AcsEntrance,
|
61
|
+
"acs_entrances",
|
62
|
+
body: {acs_user_id: acs_user_id}.compact
|
63
|
+
)
|
64
|
+
end
|
65
|
+
|
66
|
+
def remove_from_access_group(acs_access_group_id:, acs_user_id:)
|
67
|
+
request_seam(
|
68
|
+
:post,
|
69
|
+
"/acs/users/remove_from_access_group",
|
70
|
+
body: {acs_access_group_id: acs_access_group_id, acs_user_id: acs_user_id}.compact
|
71
|
+
)
|
72
|
+
|
73
|
+
nil
|
74
|
+
end
|
75
|
+
|
76
|
+
def revoke_access_to_all_entrances(acs_user_id:)
|
77
|
+
request_seam(
|
78
|
+
:post,
|
79
|
+
"/acs/users/revoke_access_to_all_entrances",
|
80
|
+
body: {acs_user_id: acs_user_id}.compact
|
81
|
+
)
|
82
|
+
|
83
|
+
nil
|
84
|
+
end
|
85
|
+
|
86
|
+
def suspend(acs_user_id:)
|
87
|
+
request_seam(
|
88
|
+
:post,
|
89
|
+
"/acs/users/suspend",
|
90
|
+
body: {acs_user_id: acs_user_id}.compact
|
91
|
+
)
|
92
|
+
|
93
|
+
nil
|
94
|
+
end
|
95
|
+
|
96
|
+
def unsuspend(acs_user_id:)
|
97
|
+
request_seam(
|
98
|
+
:post,
|
99
|
+
"/acs/users/unsuspend",
|
100
|
+
body: {acs_user_id: acs_user_id}.compact
|
101
|
+
)
|
102
|
+
|
103
|
+
nil
|
104
|
+
end
|
105
|
+
|
106
|
+
def update(acs_user_id:, access_schedule: nil, email: nil, email_address: nil, full_name: nil, hid_acs_system_id: nil, phone_number: nil)
|
107
|
+
request_seam(
|
108
|
+
:post,
|
109
|
+
"/acs/users/update",
|
110
|
+
body: {acs_user_id: acs_user_id, access_schedule: access_schedule, email: email, email_address: email_address, full_name: full_name, hid_acs_system_id: hid_acs_system_id, phone_number: phone_number}.compact
|
111
|
+
)
|
112
|
+
|
113
|
+
nil
|
114
|
+
end
|
115
|
+
end
|
116
|
+
end
|
117
|
+
end
|
@@ -0,0 +1,30 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Seam
|
4
|
+
module Clients
|
5
|
+
class ActionAttempts < BaseClient
|
6
|
+
def get(action_attempt_id:, wait_for_action_attempt: nil)
|
7
|
+
action_attempt = request_seam_object(
|
8
|
+
:post,
|
9
|
+
"/action_attempts/get",
|
10
|
+
Seam::ActionAttempt,
|
11
|
+
"action_attempt",
|
12
|
+
body: {action_attempt_id: action_attempt_id}.compact
|
13
|
+
)
|
14
|
+
|
15
|
+
action_attempt.decide_and_wait(wait_for_action_attempt)
|
16
|
+
action_attempt
|
17
|
+
end
|
18
|
+
|
19
|
+
def list(action_attempt_ids:)
|
20
|
+
request_seam_object(
|
21
|
+
:post,
|
22
|
+
"/action_attempts/list",
|
23
|
+
Seam::ActionAttempt,
|
24
|
+
"action_attempts",
|
25
|
+
body: {action_attempt_ids: action_attempt_ids}.compact
|
26
|
+
)
|
27
|
+
end
|
28
|
+
end
|
29
|
+
end
|
30
|
+
end
|
@@ -0,0 +1,21 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Seam
|
4
|
+
module Clients
|
5
|
+
class BaseClient
|
6
|
+
attr_accessor :client
|
7
|
+
|
8
|
+
def initialize(client)
|
9
|
+
@client = client
|
10
|
+
end
|
11
|
+
|
12
|
+
def request_seam_object(*attrs)
|
13
|
+
client.request_seam_object(*attrs)
|
14
|
+
end
|
15
|
+
|
16
|
+
def request_seam(*attrs)
|
17
|
+
client.request_seam(*attrs)
|
18
|
+
end
|
19
|
+
end
|
20
|
+
end
|
21
|
+
end
|