seam 2.142.0 → 2.145.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/Gemfile.lock +2 -2
- data/README.md +11 -7
- data/lib/seam/base_resource.rb +24 -3
- data/lib/seam/resources/access_code.rb +682 -43
- data/lib/seam/resources/access_grant.rb +189 -25
- data/lib/seam/resources/access_method.rb +105 -3
- data/lib/seam/resources/acs_access_group.rb +52 -0
- data/lib/seam/resources/acs_credential.rb +153 -6
- data/lib/seam/resources/acs_encoder.rb +2 -0
- data/lib/seam/resources/acs_entrance.rb +105 -0
- data/lib/seam/resources/acs_system.rb +278 -6
- data/lib/seam/resources/acs_user.rb +201 -0
- data/lib/seam/resources/action_attempt.rb +1457 -279
- data/lib/seam/resources/connect_webview.rb +15 -1
- data/lib/seam/resources/connected_account.rb +285 -41
- data/lib/seam/resources/device.rb +929 -14
- data/lib/seam/resources/device_provider.rb +74 -0
- data/lib/seam/resources/event.rb +5205 -316
- data/lib/seam/resources/phone.rb +4 -1
- data/lib/seam/resources/unmanaged_access_code.rb +677 -43
- data/lib/seam/resources/unmanaged_access_grant.rb +189 -25
- data/lib/seam/resources/unmanaged_access_method.rb +105 -3
- data/lib/seam/resources/unmanaged_device.rb +827 -14
- data/lib/seam/resources/unmanaged_user_identity.rb +67 -0
- data/lib/seam/resources/user_identity.rb +67 -0
- data/lib/seam/resources/workspace.rb +3 -0
- data/lib/seam/routes/access_codes.rb +1 -1
- data/lib/seam/routes/access_grants.rb +2 -2
- data/lib/seam/routes/access_methods.rb +1 -1
- data/lib/seam/routes/acs_encoders.rb +1 -1
- data/lib/seam/routes/acs_entrances.rb +2 -2
- data/lib/seam/routes/action_attempts.rb +1 -1
- data/lib/seam/routes/connect_webviews.rb +3 -3
- data/lib/seam/routes/connected_accounts.rb +3 -3
- data/lib/seam/routes/customers.rb +1 -1
- data/lib/seam/routes/devices.rb +3 -3
- data/lib/seam/routes/devices_unmanaged.rb +2 -2
- data/lib/seam/routes/events.rb +1 -1
- data/lib/seam/routes/locks.rb +1 -1
- data/lib/seam/routes/noise_sensors.rb +1 -1
- data/lib/seam/routes/spaces.rb +3 -3
- data/lib/seam/routes/thermostats.rb +1 -1
- data/lib/seam/routes/user_identities.rb +1 -1
- data/lib/seam/version.rb +1 -1
- data/lib/seam/webhook.rb +5 -2
- metadata +1 -1
|
@@ -65,6 +65,71 @@ module Seam
|
|
|
65
65
|
attr_accessor :can_unlock_with_code
|
|
66
66
|
# Name of the device provider.
|
|
67
67
|
# @return [String]
|
|
68
|
+
# Known values:
|
|
69
|
+
# - `hotek`
|
|
70
|
+
# - `dormakaba_community`
|
|
71
|
+
# - `legic_connect`
|
|
72
|
+
# - `akuvox`
|
|
73
|
+
# - `august`
|
|
74
|
+
# - `avigilon_alta`
|
|
75
|
+
# - `brivo`
|
|
76
|
+
# - `butterflymx`
|
|
77
|
+
# - `schlage`
|
|
78
|
+
# - `smartthings`
|
|
79
|
+
# - `yale`
|
|
80
|
+
# - `genie`
|
|
81
|
+
# - `doorking`
|
|
82
|
+
# - `salto`
|
|
83
|
+
# - `salto_ks`
|
|
84
|
+
# - `salto_ks_accept`
|
|
85
|
+
# - `lockly`
|
|
86
|
+
# - `ttlock`
|
|
87
|
+
# - `linear`
|
|
88
|
+
# - `noiseaware`
|
|
89
|
+
# - `nuki`
|
|
90
|
+
# - `igloo`
|
|
91
|
+
# - `kwikset`
|
|
92
|
+
# - `minut`
|
|
93
|
+
# - `my_2n`
|
|
94
|
+
# - `controlbyweb`
|
|
95
|
+
# - `nest`
|
|
96
|
+
# - `igloohome`
|
|
97
|
+
# - `ecobee`
|
|
98
|
+
# - `four_suites`
|
|
99
|
+
# - `dormakaba_oracode`
|
|
100
|
+
# - `pti`
|
|
101
|
+
# - `wyze`
|
|
102
|
+
# - `seam_passport`
|
|
103
|
+
# - `visionline`
|
|
104
|
+
# - `assa_abloy_credential_service`
|
|
105
|
+
# - `tedee`
|
|
106
|
+
# - `honeywell_resideo`
|
|
107
|
+
# - `first_alert`
|
|
108
|
+
# - `latch`
|
|
109
|
+
# - `akiles`
|
|
110
|
+
# - `assa_abloy_vostio`
|
|
111
|
+
# - `assa_abloy_vostio_credential_service`
|
|
112
|
+
# - `tado`
|
|
113
|
+
# - `salto_space`
|
|
114
|
+
# - `sensi`
|
|
115
|
+
# - `keynest`
|
|
116
|
+
# - `korelock`
|
|
117
|
+
# - `keyincode`
|
|
118
|
+
# - `dormakaba_ambiance`
|
|
119
|
+
# - `ultraloq`
|
|
120
|
+
# - `yacan`
|
|
121
|
+
# - `dusaw`
|
|
122
|
+
# - `sifely`
|
|
123
|
+
# - `thirty_three_lock`
|
|
124
|
+
# - `ring`
|
|
125
|
+
# - `ical`
|
|
126
|
+
# - `lodgify`
|
|
127
|
+
# - `hostaway`
|
|
128
|
+
# - `guesty`
|
|
129
|
+
# - `acuity_scheduling`
|
|
130
|
+
# - `omnitec`
|
|
131
|
+
# - `kisi`
|
|
132
|
+
# - `aqara`
|
|
68
133
|
attr_accessor :device_provider_name
|
|
69
134
|
# Display name for the device provider.
|
|
70
135
|
# @return [String]
|
|
@@ -74,6 +139,15 @@ module Seam
|
|
|
74
139
|
attr_accessor :image_url
|
|
75
140
|
# List of provider categories to which the device provider belongs, such as `stable`, `consumer_smartlocks`, `thermostats`, and so on.
|
|
76
141
|
# @return [Array<String>]
|
|
142
|
+
# Known values:
|
|
143
|
+
# - `stable`
|
|
144
|
+
# - `consumer_smartlocks`
|
|
145
|
+
# - `beta`
|
|
146
|
+
# - `thermostats`
|
|
147
|
+
# - `noise_sensors`
|
|
148
|
+
# - `access_control_systems`
|
|
149
|
+
# - `cameras`
|
|
150
|
+
# - `connectors`
|
|
77
151
|
attr_accessor :provider_categories
|
|
78
152
|
end
|
|
79
153
|
end
|