@seamapi/types 1.866.0 → 1.868.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.
- package/dist/connect.cjs +89 -28
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +6 -5
- package/dist/index.cjs +89 -28
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/devices/device-provider.d.ts +2 -1
- package/lib/seam/connect/models/devices/device-provider.js +2 -1
- package/lib/seam/connect/models/devices/device-provider.js.map +1 -1
- package/lib/seam/connect/models/devices/device.js +16 -1
- package/lib/seam/connect/models/devices/device.js.map +1 -1
- package/lib/seam/connect/openapi.js +55 -12
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +5 -5
- package/package.json +1 -1
- package/src/lib/seam/connect/models/devices/device-provider.ts +2 -1
- package/src/lib/seam/connect/models/devices/device.ts +18 -1
- package/src/lib/seam/connect/openapi.ts +57 -12
- package/src/lib/seam/connect/route-types.ts +5 -0
|
@@ -34342,7 +34342,7 @@ export type Routes = {
|
|
|
34342
34342
|
/** Associate the Connect Webview, the connected account, and all resources under the connected account with a customer. If the connected account already exists, it will be associated with the customer. If the connected account already exists, but is already associated with a customer, the Connect Webview will show an error. */
|
|
34343
34343
|
customer_key?: string | undefined;
|
|
34344
34344
|
/** Accepted device provider keys as an alternative to `provider_category`. Use this parameter to specify accepted providers explicitly. See [Customize the Brands to Display in Your Connect Webviews](https://docs.seam.co/latest/core-concepts/connect-webviews/customizing-connect-webviews#customize-the-brands-to-display-in-your-connect-webviews). To list all provider keys, use [`/devices/list_device_providers`](https://docs.seam.co/latest/api/devices/list_device_providers) with no filters. */
|
|
34345
|
-
accepted_providers?: ('hotek' | 'dormakaba_community' | 'legic_connect' | 'akuvox' | 'august' | 'avigilon_alta' | 'brivo' | 'butterflymx' | 'schlage' | 'smartthings' | 'yale' | 'genie' | 'doorking' | 'salto' | 'salto_ks' | 'lockly' | 'ttlock' | 'linear' | 'noiseaware' | 'nuki' | 'igloo' | 'kwikset' | 'minut' | 'my_2n' | 'controlbyweb' | 'nest' | 'igloohome' | 'ecobee' | 'four_suites' | 'dormakaba_oracode' | 'pti' | 'wyze' | 'seam_passport' | 'visionline' | 'assa_abloy_credential_service' | 'tedee' | 'honeywell_resideo' | 'first_alert' | 'latch' | 'akiles' | 'assa_abloy_vostio' | 'assa_abloy_vostio_credential_service' | 'tado' | 'salto_space' | 'sensi' | 'keynest' | 'korelock' | 'dormakaba_ambiance' | 'ultraloq' | 'ring' | 'ical' | 'lodgify' | 'hostaway' | 'acuity_scheduling' | 'omnitec' | 'yale_access' | 'hid_cm' | 'google_nest')[] | undefined;
|
|
34345
|
+
accepted_providers?: ('hotek' | 'dormakaba_community' | 'legic_connect' | 'akuvox' | 'august' | 'avigilon_alta' | 'brivo' | 'butterflymx' | 'schlage' | 'smartthings' | 'yale' | 'genie' | 'doorking' | 'salto' | 'salto_ks' | 'lockly' | 'ttlock' | 'linear' | 'noiseaware' | 'nuki' | 'igloo' | 'kwikset' | 'minut' | 'my_2n' | 'controlbyweb' | 'nest' | 'igloohome' | 'ecobee' | 'four_suites' | 'dormakaba_oracode' | 'pti' | 'wyze' | 'seam_passport' | 'visionline' | 'assa_abloy_credential_service' | 'tedee' | 'honeywell_resideo' | 'first_alert' | 'latch' | 'akiles' | 'assa_abloy_vostio' | 'assa_abloy_vostio_credential_service' | 'tado' | 'salto_space' | 'sensi' | 'keynest' | 'korelock' | 'dormakaba_ambiance' | 'ultraloq' | 'ring' | 'ical' | 'lodgify' | 'hostaway' | 'guesty' | 'acuity_scheduling' | 'omnitec' | 'yale_access' | 'hid_cm' | 'google_nest')[] | undefined;
|
|
34346
34346
|
/** Specifies the category of providers that you want to include. To list all providers within a category, use [`/devices/list_device_providers`](https://docs.seam.co/latest/api/devices/list_device_providers) with the desired `provider_category` filter. */
|
|
34347
34347
|
provider_category?: ('stable' | 'consumer_smartlocks' | 'beta' | 'thermostats' | 'noise_sensors' | 'access_control_systems' | 'cameras' | 'connectors' | 'internal_beta') | undefined;
|
|
34348
34348
|
/** Custom metadata that you want to associate with the Connect Webview. Supports up to 50 JSON key:value pairs. [Adding custom metadata to a Connect Webview](https://docs.seam.co/latest/core-concepts/connect-webviews/attaching-custom-data-to-the-connect-webview) enables you to store custom information, like customer details or internal IDs from your application. The custom metadata is then transferred to any [connected accounts](https://docs.seam.co/latest/core-concepts/connected-accounts) that were connected using the Connect Webview, making it easy to find and filter these resources in your [workspace](https://docs.seam.co/latest/core-concepts/workspaces). You can also [filter Connect Webviews by custom metadata](https://docs.seam.co/latest/core-concepts/connect-webviews/filtering-connect-webviews-by-custom-metadata). */
|
|
@@ -37400,7 +37400,7 @@ export type Routes = {
|
|
|
37400
37400
|
/** Array of device types for which you want to list devices. */
|
|
37401
37401
|
device_types?: (('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone') | 'ring_camera')[] | undefined;
|
|
37402
37402
|
/** Manufacturer for which you want to list devices. */
|
|
37403
|
-
manufacturer?: ('akuvox' | 'august' | 'avigilon_alta' | 'brivo' | 'butterflymx' | 'doorking' | 'four_suites' | 'genie' | 'igloo' | 'keywe' | 'kwikset' | 'linear' | 'lockly' | 'nuki' | 'philia' | 'salto' | 'samsung' | 'schlage' | 'seam' | 'unknown' | 'wyze' | 'yale' | 'two_n' | 'ttlock' | 'igloohome' | 'controlbyweb' | 'dormakaba_oracode' | 'tedee' | 'keyincode' | 'akiles' | 'ecobee' | 'honeywell_resideo' | 'keynest' | 'korelock' | 'minut' | 'nest' | 'noiseaware' | 'sensi' | 'smartthings' | 'tado' | 'ultraloq' | 'ring' | 'ical' | 'lodgify' | 'hostaway' | 'acuity_scheduling' | 'omnitec') | undefined;
|
|
37403
|
+
manufacturer?: ('akuvox' | 'august' | 'avigilon_alta' | 'brivo' | 'butterflymx' | 'doorking' | 'four_suites' | 'genie' | 'igloo' | 'keywe' | 'kwikset' | 'linear' | 'lockly' | 'nuki' | 'philia' | 'salto' | 'samsung' | 'schlage' | 'seam' | 'unknown' | 'wyze' | 'yale' | 'two_n' | 'ttlock' | 'igloohome' | 'controlbyweb' | 'dormakaba_oracode' | 'tedee' | 'keyincode' | 'akiles' | 'ecobee' | 'honeywell_resideo' | 'keynest' | 'korelock' | 'minut' | 'nest' | 'noiseaware' | 'sensi' | 'smartthings' | 'tado' | 'ultraloq' | 'ring' | 'ical' | 'lodgify' | 'hostaway' | 'guesty' | 'acuity_scheduling' | 'omnitec') | undefined;
|
|
37404
37404
|
/** Array of device IDs for which you want to list devices. */
|
|
37405
37405
|
device_ids?: string[] | undefined;
|
|
37406
37406
|
/** Numerical limit on the number of devices to return. */
|
|
@@ -38799,7 +38799,7 @@ export type Routes = {
|
|
|
38799
38799
|
formData: {};
|
|
38800
38800
|
jsonResponse: {
|
|
38801
38801
|
device_providers: {
|
|
38802
|
-
device_provider_name: 'hotek' | 'dormakaba_community' | 'legic_connect' | 'akuvox' | 'august' | 'avigilon_alta' | 'brivo' | 'butterflymx' | 'schlage' | 'smartthings' | 'yale' | 'genie' | 'doorking' | 'salto' | 'salto_ks' | 'lockly' | 'ttlock' | 'linear' | 'noiseaware' | 'nuki' | 'igloo' | 'kwikset' | 'minut' | 'my_2n' | 'controlbyweb' | 'nest' | 'igloohome' | 'ecobee' | 'four_suites' | 'dormakaba_oracode' | 'pti' | 'wyze' | 'seam_passport' | 'visionline' | 'assa_abloy_credential_service' | 'tedee' | 'honeywell_resideo' | 'first_alert' | 'latch' | 'akiles' | 'assa_abloy_vostio' | 'assa_abloy_vostio_credential_service' | 'tado' | 'salto_space' | 'sensi' | 'keynest' | 'korelock' | 'dormakaba_ambiance' | 'ultraloq' | 'ring' | 'ical' | 'lodgify' | 'hostaway' | 'acuity_scheduling' | 'omnitec';
|
|
38802
|
+
device_provider_name: 'hotek' | 'dormakaba_community' | 'legic_connect' | 'akuvox' | 'august' | 'avigilon_alta' | 'brivo' | 'butterflymx' | 'schlage' | 'smartthings' | 'yale' | 'genie' | 'doorking' | 'salto' | 'salto_ks' | 'lockly' | 'ttlock' | 'linear' | 'noiseaware' | 'nuki' | 'igloo' | 'kwikset' | 'minut' | 'my_2n' | 'controlbyweb' | 'nest' | 'igloohome' | 'ecobee' | 'four_suites' | 'dormakaba_oracode' | 'pti' | 'wyze' | 'seam_passport' | 'visionline' | 'assa_abloy_credential_service' | 'tedee' | 'honeywell_resideo' | 'first_alert' | 'latch' | 'akiles' | 'assa_abloy_vostio' | 'assa_abloy_vostio_credential_service' | 'tado' | 'salto_space' | 'sensi' | 'keynest' | 'korelock' | 'dormakaba_ambiance' | 'ultraloq' | 'ring' | 'ical' | 'lodgify' | 'hostaway' | 'guesty' | 'acuity_scheduling' | 'omnitec';
|
|
38803
38803
|
display_name: string;
|
|
38804
38804
|
image_url: string;
|
|
38805
38805
|
provider_categories: ('stable' | 'consumer_smartlocks' | 'beta' | 'thermostats' | 'noise_sensors' | 'access_control_systems' | 'cameras' | 'connectors')[];
|
|
@@ -39412,7 +39412,7 @@ export type Routes = {
|
|
|
39412
39412
|
/** Array of device types for which you want to list devices. */
|
|
39413
39413
|
device_types?: (('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone') | 'ring_camera')[] | undefined;
|
|
39414
39414
|
/** Manufacturer for which you want to list devices. */
|
|
39415
|
-
manufacturer?: ('akuvox' | 'august' | 'avigilon_alta' | 'brivo' | 'butterflymx' | 'doorking' | 'four_suites' | 'genie' | 'igloo' | 'keywe' | 'kwikset' | 'linear' | 'lockly' | 'nuki' | 'philia' | 'salto' | 'samsung' | 'schlage' | 'seam' | 'unknown' | 'wyze' | 'yale' | 'two_n' | 'ttlock' | 'igloohome' | 'controlbyweb' | 'dormakaba_oracode' | 'tedee' | 'keyincode' | 'akiles' | 'ecobee' | 'honeywell_resideo' | 'keynest' | 'korelock' | 'minut' | 'nest' | 'noiseaware' | 'sensi' | 'smartthings' | 'tado' | 'ultraloq' | 'ring' | 'ical' | 'lodgify' | 'hostaway' | 'acuity_scheduling' | 'omnitec') | undefined;
|
|
39415
|
+
manufacturer?: ('akuvox' | 'august' | 'avigilon_alta' | 'brivo' | 'butterflymx' | 'doorking' | 'four_suites' | 'genie' | 'igloo' | 'keywe' | 'kwikset' | 'linear' | 'lockly' | 'nuki' | 'philia' | 'salto' | 'samsung' | 'schlage' | 'seam' | 'unknown' | 'wyze' | 'yale' | 'two_n' | 'ttlock' | 'igloohome' | 'controlbyweb' | 'dormakaba_oracode' | 'tedee' | 'keyincode' | 'akiles' | 'ecobee' | 'honeywell_resideo' | 'keynest' | 'korelock' | 'minut' | 'nest' | 'noiseaware' | 'sensi' | 'smartthings' | 'tado' | 'ultraloq' | 'ring' | 'ical' | 'lodgify' | 'hostaway' | 'guesty' | 'acuity_scheduling' | 'omnitec') | undefined;
|
|
39416
39416
|
/** Array of device IDs for which you want to list devices. */
|
|
39417
39417
|
device_ids?: string[] | undefined;
|
|
39418
39418
|
/** Timestamp by which to limit returned devices. Returns devices created before this timestamp. */
|
|
@@ -68988,7 +68988,7 @@ export type Routes = {
|
|
|
68988
68988
|
queryParams: {};
|
|
68989
68989
|
jsonBody: {
|
|
68990
68990
|
/** Type of connector to create */
|
|
68991
|
-
connector_type: 'mock' | 'mews' | 'rms' | 'cloudbeds' | 'smoobu' | 'zonal' | 'ical' | 'lodgify' | 'hostaway' | 'acuity_scheduling';
|
|
68991
|
+
connector_type: 'mock' | 'mews' | 'rms' | 'cloudbeds' | 'smoobu' | 'zonal' | 'ical' | 'lodgify' | 'hostaway' | 'guesty' | 'acuity_scheduling';
|
|
68992
68992
|
/** Key identifying the customer */
|
|
68993
68993
|
customer_key?: string | undefined;
|
|
68994
68994
|
/** Instance-specific configuration for the connector */
|
package/package.json
CHANGED
|
@@ -57,6 +57,7 @@ export const DEVICE_PROVIDERS = {
|
|
|
57
57
|
ICAL: 'ical',
|
|
58
58
|
LODGIFY: 'lodgify',
|
|
59
59
|
HOSTAWAY: 'hostaway',
|
|
60
|
+
GUESTY: 'guesty',
|
|
60
61
|
ACUITY_SCHEDULING: 'acuity_scheduling',
|
|
61
62
|
OMNITEC: 'omnitec',
|
|
62
63
|
} as const
|
|
@@ -149,7 +150,7 @@ export const PROVIDER_CATEGORY_MAP = {
|
|
|
149
150
|
|
|
150
151
|
cameras: ['ring'],
|
|
151
152
|
|
|
152
|
-
connectors: ['ical', 'lodgify', 'hostaway', 'acuity_scheduling'],
|
|
153
|
+
connectors: ['ical', 'lodgify', 'hostaway', 'guesty', 'acuity_scheduling'],
|
|
153
154
|
|
|
154
155
|
internal_beta: ALL_DEVICE_PROVIDERS,
|
|
155
156
|
} as const satisfies Record<string, readonly DeviceProviderName[]>
|
|
@@ -61,7 +61,14 @@ const device_offline = common_device_error
|
|
|
61
61
|
.extend({
|
|
62
62
|
error_code: z.literal('device_offline').describe(error_code_description),
|
|
63
63
|
})
|
|
64
|
-
.describe(
|
|
64
|
+
.describe(
|
|
65
|
+
`
|
|
66
|
+
---
|
|
67
|
+
deprecated: Use \`device_disconnected\` instead.
|
|
68
|
+
---
|
|
69
|
+
Indicates that the device is offline.
|
|
70
|
+
`,
|
|
71
|
+
)
|
|
65
72
|
|
|
66
73
|
const device_removed = common_device_error
|
|
67
74
|
.extend({
|
|
@@ -127,6 +134,7 @@ const august_lock_missing_bridge = common_device_error.extend({
|
|
|
127
134
|
.describe(error_code_description),
|
|
128
135
|
}).describe(`
|
|
129
136
|
---
|
|
137
|
+
deprecated: Use \`hub_disconnected\` instead.
|
|
130
138
|
variant_group_key: locks
|
|
131
139
|
---
|
|
132
140
|
Indicates that the lock is not connected to a bridge.
|
|
@@ -156,6 +164,9 @@ const ttlock_lock_not_paired_to_gateway = common_device_error.extend({
|
|
|
156
164
|
.literal('ttlock_lock_not_paired_to_gateway')
|
|
157
165
|
.describe(error_code_description),
|
|
158
166
|
}).describe(`
|
|
167
|
+
---
|
|
168
|
+
deprecated: Use \`hub_disconnected\` instead.
|
|
169
|
+
---
|
|
159
170
|
Indicates that the lock is not paired with a gateway.
|
|
160
171
|
`)
|
|
161
172
|
|
|
@@ -191,6 +202,9 @@ const lockly_missing_wifi_bridge = common_device_error.extend({
|
|
|
191
202
|
.literal('lockly_missing_wifi_bridge')
|
|
192
203
|
.describe(error_code_description),
|
|
193
204
|
}).describe(`
|
|
205
|
+
---
|
|
206
|
+
deprecated: Use \`hub_disconnected\` instead.
|
|
207
|
+
---
|
|
194
208
|
Indicates that the Lockly lock is not connected to a Wi-Fi bridge.
|
|
195
209
|
`)
|
|
196
210
|
|
|
@@ -325,6 +339,9 @@ const wyze_device_missing_gateway = common_device_warning.extend({
|
|
|
325
339
|
.literal('wyze_device_missing_gateway')
|
|
326
340
|
.describe(warning_code_description),
|
|
327
341
|
}).describe(`
|
|
342
|
+
---
|
|
343
|
+
deprecated: Use \`hub_disconnected\` device error instead.
|
|
344
|
+
---
|
|
328
345
|
Indicates that the Wyze Lock is not connected to a gateway.
|
|
329
346
|
`)
|
|
330
347
|
|
|
@@ -812,6 +812,7 @@ const openapi: OpenAPISpec = {
|
|
|
812
812
|
'x-variant-group-key': 'locks',
|
|
813
813
|
},
|
|
814
814
|
{
|
|
815
|
+
deprecated: true,
|
|
815
816
|
description: 'Indicates that the device is offline.',
|
|
816
817
|
properties: {
|
|
817
818
|
created_at: {
|
|
@@ -845,6 +846,7 @@ const openapi: OpenAPISpec = {
|
|
|
845
846
|
'error_code',
|
|
846
847
|
],
|
|
847
848
|
type: 'object',
|
|
849
|
+
'x-deprecated': 'Use `device_disconnected` instead.',
|
|
848
850
|
},
|
|
849
851
|
{
|
|
850
852
|
description: 'Indicates that the device has been removed.',
|
|
@@ -1026,6 +1028,7 @@ const openapi: OpenAPISpec = {
|
|
|
1026
1028
|
'x-variant-group-key': 'locks',
|
|
1027
1029
|
},
|
|
1028
1030
|
{
|
|
1031
|
+
deprecated: true,
|
|
1029
1032
|
description:
|
|
1030
1033
|
'Indicates that the lock is not connected to a bridge.',
|
|
1031
1034
|
properties: {
|
|
@@ -1060,11 +1063,13 @@ const openapi: OpenAPISpec = {
|
|
|
1060
1063
|
'error_code',
|
|
1061
1064
|
],
|
|
1062
1065
|
type: 'object',
|
|
1066
|
+
'x-deprecated': 'Use `hub_disconnected` instead.',
|
|
1063
1067
|
'x-variant-group-key': 'locks',
|
|
1064
1068
|
},
|
|
1065
1069
|
{
|
|
1070
|
+
deprecated: true,
|
|
1066
1071
|
description:
|
|
1067
|
-
'
|
|
1072
|
+
'Indicates that the lock is not paired with a gateway.',
|
|
1068
1073
|
properties: {
|
|
1069
1074
|
created_at: {
|
|
1070
1075
|
description:
|
|
@@ -1097,6 +1102,7 @@ const openapi: OpenAPISpec = {
|
|
|
1097
1102
|
'error_code',
|
|
1098
1103
|
],
|
|
1099
1104
|
type: 'object',
|
|
1105
|
+
'x-deprecated': 'Use `hub_disconnected` instead.',
|
|
1100
1106
|
},
|
|
1101
1107
|
{
|
|
1102
1108
|
description: 'Indicates that device credentials are missing.',
|
|
@@ -1206,8 +1212,9 @@ const openapi: OpenAPISpec = {
|
|
|
1206
1212
|
type: 'object',
|
|
1207
1213
|
},
|
|
1208
1214
|
{
|
|
1215
|
+
deprecated: true,
|
|
1209
1216
|
description:
|
|
1210
|
-
'
|
|
1217
|
+
'Indicates that the Lockly lock is not connected to a Wi-Fi bridge.',
|
|
1211
1218
|
properties: {
|
|
1212
1219
|
created_at: {
|
|
1213
1220
|
description:
|
|
@@ -1240,6 +1247,7 @@ const openapi: OpenAPISpec = {
|
|
|
1240
1247
|
'error_code',
|
|
1241
1248
|
],
|
|
1242
1249
|
type: 'object',
|
|
1250
|
+
'x-deprecated': 'Use `hub_disconnected` instead.',
|
|
1243
1251
|
},
|
|
1244
1252
|
{
|
|
1245
1253
|
description:
|
|
@@ -12520,6 +12528,7 @@ const openapi: OpenAPISpec = {
|
|
|
12520
12528
|
'x-variant-group-key': 'locks',
|
|
12521
12529
|
},
|
|
12522
12530
|
{
|
|
12531
|
+
deprecated: true,
|
|
12523
12532
|
description: 'Indicates that the device is offline.',
|
|
12524
12533
|
properties: {
|
|
12525
12534
|
created_at: {
|
|
@@ -12553,6 +12562,7 @@ const openapi: OpenAPISpec = {
|
|
|
12553
12562
|
'error_code',
|
|
12554
12563
|
],
|
|
12555
12564
|
type: 'object',
|
|
12565
|
+
'x-deprecated': 'Use `device_disconnected` instead.',
|
|
12556
12566
|
},
|
|
12557
12567
|
{
|
|
12558
12568
|
description: 'Indicates that the device has been removed.',
|
|
@@ -12734,6 +12744,7 @@ const openapi: OpenAPISpec = {
|
|
|
12734
12744
|
'x-variant-group-key': 'locks',
|
|
12735
12745
|
},
|
|
12736
12746
|
{
|
|
12747
|
+
deprecated: true,
|
|
12737
12748
|
description:
|
|
12738
12749
|
'Indicates that the lock is not connected to a bridge.',
|
|
12739
12750
|
properties: {
|
|
@@ -12768,11 +12779,13 @@ const openapi: OpenAPISpec = {
|
|
|
12768
12779
|
'error_code',
|
|
12769
12780
|
],
|
|
12770
12781
|
type: 'object',
|
|
12782
|
+
'x-deprecated': 'Use `hub_disconnected` instead.',
|
|
12771
12783
|
'x-variant-group-key': 'locks',
|
|
12772
12784
|
},
|
|
12773
12785
|
{
|
|
12786
|
+
deprecated: true,
|
|
12774
12787
|
description:
|
|
12775
|
-
'
|
|
12788
|
+
'Indicates that the lock is not paired with a gateway.',
|
|
12776
12789
|
properties: {
|
|
12777
12790
|
created_at: {
|
|
12778
12791
|
description:
|
|
@@ -12805,6 +12818,7 @@ const openapi: OpenAPISpec = {
|
|
|
12805
12818
|
'error_code',
|
|
12806
12819
|
],
|
|
12807
12820
|
type: 'object',
|
|
12821
|
+
'x-deprecated': 'Use `hub_disconnected` instead.',
|
|
12808
12822
|
},
|
|
12809
12823
|
{
|
|
12810
12824
|
description: 'Indicates that device credentials are missing.',
|
|
@@ -12914,8 +12928,9 @@ const openapi: OpenAPISpec = {
|
|
|
12914
12928
|
type: 'object',
|
|
12915
12929
|
},
|
|
12916
12930
|
{
|
|
12931
|
+
deprecated: true,
|
|
12917
12932
|
description:
|
|
12918
|
-
'
|
|
12933
|
+
'Indicates that the Lockly lock is not connected to a Wi-Fi bridge.',
|
|
12919
12934
|
properties: {
|
|
12920
12935
|
created_at: {
|
|
12921
12936
|
description:
|
|
@@ -12948,6 +12963,7 @@ const openapi: OpenAPISpec = {
|
|
|
12948
12963
|
'error_code',
|
|
12949
12964
|
],
|
|
12950
12965
|
type: 'object',
|
|
12966
|
+
'x-deprecated': 'Use `hub_disconnected` instead.',
|
|
12951
12967
|
},
|
|
12952
12968
|
{
|
|
12953
12969
|
description:
|
|
@@ -15784,8 +15800,9 @@ const openapi: OpenAPISpec = {
|
|
|
15784
15800
|
'x-variant-group-key': 'access_codes',
|
|
15785
15801
|
},
|
|
15786
15802
|
{
|
|
15803
|
+
deprecated: true,
|
|
15787
15804
|
description:
|
|
15788
|
-
'
|
|
15805
|
+
'Indicates that the Wyze Lock is not connected to a gateway.',
|
|
15789
15806
|
properties: {
|
|
15790
15807
|
created_at: {
|
|
15791
15808
|
description:
|
|
@@ -15807,6 +15824,8 @@ const openapi: OpenAPISpec = {
|
|
|
15807
15824
|
},
|
|
15808
15825
|
required: ['message', 'created_at', 'warning_code'],
|
|
15809
15826
|
type: 'object',
|
|
15827
|
+
'x-deprecated':
|
|
15828
|
+
'Use `hub_disconnected` device error instead.',
|
|
15810
15829
|
},
|
|
15811
15830
|
{
|
|
15812
15831
|
description:
|
|
@@ -16489,6 +16508,7 @@ const openapi: OpenAPISpec = {
|
|
|
16489
16508
|
'ical',
|
|
16490
16509
|
'lodgify',
|
|
16491
16510
|
'hostaway',
|
|
16511
|
+
'guesty',
|
|
16492
16512
|
'acuity_scheduling',
|
|
16493
16513
|
'omnitec',
|
|
16494
16514
|
],
|
|
@@ -28030,6 +28050,7 @@ const openapi: OpenAPISpec = {
|
|
|
28030
28050
|
'x-variant-group-key': 'locks',
|
|
28031
28051
|
},
|
|
28032
28052
|
{
|
|
28053
|
+
deprecated: true,
|
|
28033
28054
|
description: 'Indicates that the device is offline.',
|
|
28034
28055
|
properties: {
|
|
28035
28056
|
created_at: {
|
|
@@ -28063,6 +28084,7 @@ const openapi: OpenAPISpec = {
|
|
|
28063
28084
|
'error_code',
|
|
28064
28085
|
],
|
|
28065
28086
|
type: 'object',
|
|
28087
|
+
'x-deprecated': 'Use `device_disconnected` instead.',
|
|
28066
28088
|
},
|
|
28067
28089
|
{
|
|
28068
28090
|
description: 'Indicates that the device has been removed.',
|
|
@@ -28244,6 +28266,7 @@ const openapi: OpenAPISpec = {
|
|
|
28244
28266
|
'x-variant-group-key': 'locks',
|
|
28245
28267
|
},
|
|
28246
28268
|
{
|
|
28269
|
+
deprecated: true,
|
|
28247
28270
|
description:
|
|
28248
28271
|
'Indicates that the lock is not connected to a bridge.',
|
|
28249
28272
|
properties: {
|
|
@@ -28278,11 +28301,13 @@ const openapi: OpenAPISpec = {
|
|
|
28278
28301
|
'error_code',
|
|
28279
28302
|
],
|
|
28280
28303
|
type: 'object',
|
|
28304
|
+
'x-deprecated': 'Use `hub_disconnected` instead.',
|
|
28281
28305
|
'x-variant-group-key': 'locks',
|
|
28282
28306
|
},
|
|
28283
28307
|
{
|
|
28308
|
+
deprecated: true,
|
|
28284
28309
|
description:
|
|
28285
|
-
'
|
|
28310
|
+
'Indicates that the lock is not paired with a gateway.',
|
|
28286
28311
|
properties: {
|
|
28287
28312
|
created_at: {
|
|
28288
28313
|
description:
|
|
@@ -28315,6 +28340,7 @@ const openapi: OpenAPISpec = {
|
|
|
28315
28340
|
'error_code',
|
|
28316
28341
|
],
|
|
28317
28342
|
type: 'object',
|
|
28343
|
+
'x-deprecated': 'Use `hub_disconnected` instead.',
|
|
28318
28344
|
},
|
|
28319
28345
|
{
|
|
28320
28346
|
description: 'Indicates that device credentials are missing.',
|
|
@@ -28424,8 +28450,9 @@ const openapi: OpenAPISpec = {
|
|
|
28424
28450
|
type: 'object',
|
|
28425
28451
|
},
|
|
28426
28452
|
{
|
|
28453
|
+
deprecated: true,
|
|
28427
28454
|
description:
|
|
28428
|
-
'
|
|
28455
|
+
'Indicates that the Lockly lock is not connected to a Wi-Fi bridge.',
|
|
28429
28456
|
properties: {
|
|
28430
28457
|
created_at: {
|
|
28431
28458
|
description:
|
|
@@ -28458,6 +28485,7 @@ const openapi: OpenAPISpec = {
|
|
|
28458
28485
|
'error_code',
|
|
28459
28486
|
],
|
|
28460
28487
|
type: 'object',
|
|
28488
|
+
'x-deprecated': 'Use `hub_disconnected` instead.',
|
|
28461
28489
|
},
|
|
28462
28490
|
{
|
|
28463
28491
|
description:
|
|
@@ -31030,6 +31058,7 @@ const openapi: OpenAPISpec = {
|
|
|
31030
31058
|
'x-variant-group-key': 'locks',
|
|
31031
31059
|
},
|
|
31032
31060
|
{
|
|
31061
|
+
deprecated: true,
|
|
31033
31062
|
description: 'Indicates that the device is offline.',
|
|
31034
31063
|
properties: {
|
|
31035
31064
|
created_at: {
|
|
@@ -31063,6 +31092,7 @@ const openapi: OpenAPISpec = {
|
|
|
31063
31092
|
'error_code',
|
|
31064
31093
|
],
|
|
31065
31094
|
type: 'object',
|
|
31095
|
+
'x-deprecated': 'Use `device_disconnected` instead.',
|
|
31066
31096
|
},
|
|
31067
31097
|
{
|
|
31068
31098
|
description: 'Indicates that the device has been removed.',
|
|
@@ -31244,6 +31274,7 @@ const openapi: OpenAPISpec = {
|
|
|
31244
31274
|
'x-variant-group-key': 'locks',
|
|
31245
31275
|
},
|
|
31246
31276
|
{
|
|
31277
|
+
deprecated: true,
|
|
31247
31278
|
description:
|
|
31248
31279
|
'Indicates that the lock is not connected to a bridge.',
|
|
31249
31280
|
properties: {
|
|
@@ -31278,11 +31309,13 @@ const openapi: OpenAPISpec = {
|
|
|
31278
31309
|
'error_code',
|
|
31279
31310
|
],
|
|
31280
31311
|
type: 'object',
|
|
31312
|
+
'x-deprecated': 'Use `hub_disconnected` instead.',
|
|
31281
31313
|
'x-variant-group-key': 'locks',
|
|
31282
31314
|
},
|
|
31283
31315
|
{
|
|
31316
|
+
deprecated: true,
|
|
31284
31317
|
description:
|
|
31285
|
-
'
|
|
31318
|
+
'Indicates that the lock is not paired with a gateway.',
|
|
31286
31319
|
properties: {
|
|
31287
31320
|
created_at: {
|
|
31288
31321
|
description:
|
|
@@ -31315,6 +31348,7 @@ const openapi: OpenAPISpec = {
|
|
|
31315
31348
|
'error_code',
|
|
31316
31349
|
],
|
|
31317
31350
|
type: 'object',
|
|
31351
|
+
'x-deprecated': 'Use `hub_disconnected` instead.',
|
|
31318
31352
|
},
|
|
31319
31353
|
{
|
|
31320
31354
|
description: 'Indicates that device credentials are missing.',
|
|
@@ -31424,8 +31458,9 @@ const openapi: OpenAPISpec = {
|
|
|
31424
31458
|
type: 'object',
|
|
31425
31459
|
},
|
|
31426
31460
|
{
|
|
31461
|
+
deprecated: true,
|
|
31427
31462
|
description:
|
|
31428
|
-
'
|
|
31463
|
+
'Indicates that the Lockly lock is not connected to a Wi-Fi bridge.',
|
|
31429
31464
|
properties: {
|
|
31430
31465
|
created_at: {
|
|
31431
31466
|
description:
|
|
@@ -31458,6 +31493,7 @@ const openapi: OpenAPISpec = {
|
|
|
31458
31493
|
'error_code',
|
|
31459
31494
|
],
|
|
31460
31495
|
type: 'object',
|
|
31496
|
+
'x-deprecated': 'Use `hub_disconnected` instead.',
|
|
31461
31497
|
},
|
|
31462
31498
|
{
|
|
31463
31499
|
description:
|
|
@@ -31750,8 +31786,9 @@ const openapi: OpenAPISpec = {
|
|
|
31750
31786
|
'x-variant-group-key': 'access_codes',
|
|
31751
31787
|
},
|
|
31752
31788
|
{
|
|
31789
|
+
deprecated: true,
|
|
31753
31790
|
description:
|
|
31754
|
-
'
|
|
31791
|
+
'Indicates that the Wyze Lock is not connected to a gateway.',
|
|
31755
31792
|
properties: {
|
|
31756
31793
|
created_at: {
|
|
31757
31794
|
description:
|
|
@@ -31773,6 +31810,8 @@ const openapi: OpenAPISpec = {
|
|
|
31773
31810
|
},
|
|
31774
31811
|
required: ['message', 'created_at', 'warning_code'],
|
|
31775
31812
|
type: 'object',
|
|
31813
|
+
'x-deprecated':
|
|
31814
|
+
'Use `hub_disconnected` device error instead.',
|
|
31776
31815
|
},
|
|
31777
31816
|
{
|
|
31778
31817
|
description:
|
|
@@ -50586,6 +50625,7 @@ const openapi: OpenAPISpec = {
|
|
|
50586
50625
|
'ical',
|
|
50587
50626
|
'lodgify',
|
|
50588
50627
|
'hostaway',
|
|
50628
|
+
'guesty',
|
|
50589
50629
|
'acuity_scheduling',
|
|
50590
50630
|
'omnitec',
|
|
50591
50631
|
'yale_access',
|
|
@@ -54929,6 +54969,7 @@ const openapi: OpenAPISpec = {
|
|
|
54929
54969
|
'ical',
|
|
54930
54970
|
'lodgify',
|
|
54931
54971
|
'hostaway',
|
|
54972
|
+
'guesty',
|
|
54932
54973
|
'acuity_scheduling',
|
|
54933
54974
|
'omnitec',
|
|
54934
54975
|
],
|
|
@@ -55450,6 +55491,7 @@ const openapi: OpenAPISpec = {
|
|
|
55450
55491
|
'ical',
|
|
55451
55492
|
'lodgify',
|
|
55452
55493
|
'hostaway',
|
|
55494
|
+
'guesty',
|
|
55453
55495
|
'acuity_scheduling',
|
|
55454
55496
|
'omnitec',
|
|
55455
55497
|
],
|
|
@@ -57105,7 +57147,7 @@ const openapi: OpenAPISpec = {
|
|
|
57105
57147
|
'/devices/simulate/connect_to_hub': {
|
|
57106
57148
|
post: {
|
|
57107
57149
|
description:
|
|
57108
|
-
'Simulates bringing the Wi‑Fi hub (bridge) back online for a device.\nOnly applicable for sandbox workspaces and currently\nimplemented for August and TTLock locks.\nThis will clear the
|
|
57150
|
+
'Simulates bringing the Wi‑Fi hub (bridge) back online for a device.\nOnly applicable for sandbox workspaces and currently\nimplemented for August and TTLock locks.\nThis will clear the `hub_disconnected` error on the device.',
|
|
57109
57151
|
operationId: 'devicesSimulateConnectToHubPost',
|
|
57110
57152
|
requestBody: {
|
|
57111
57153
|
content: {
|
|
@@ -57211,7 +57253,7 @@ const openapi: OpenAPISpec = {
|
|
|
57211
57253
|
'/devices/simulate/disconnect_from_hub': {
|
|
57212
57254
|
post: {
|
|
57213
57255
|
description:
|
|
57214
|
-
'Simulates taking the Wi‑Fi hub (bridge) offline for a device.\nOnly applicable for sandbox workspaces and currently\nimplemented for August, TTLock, and IglooHome devices.\nThis will set the
|
|
57256
|
+
'Simulates taking the Wi‑Fi hub (bridge) offline for a device.\nOnly applicable for sandbox workspaces and currently\nimplemented for August, TTLock, and IglooHome devices.\nThis will set the `hub_disconnected` error on the device, or mark the\nIglooHome bridge offline in sandbox.',
|
|
57215
57257
|
operationId: 'devicesSimulateDisconnectFromHubPost',
|
|
57216
57258
|
requestBody: {
|
|
57217
57259
|
content: {
|
|
@@ -57729,6 +57771,7 @@ const openapi: OpenAPISpec = {
|
|
|
57729
57771
|
'ical',
|
|
57730
57772
|
'lodgify',
|
|
57731
57773
|
'hostaway',
|
|
57774
|
+
'guesty',
|
|
57732
57775
|
'acuity_scheduling',
|
|
57733
57776
|
'omnitec',
|
|
57734
57777
|
],
|
|
@@ -58249,6 +58292,7 @@ const openapi: OpenAPISpec = {
|
|
|
58249
58292
|
'ical',
|
|
58250
58293
|
'lodgify',
|
|
58251
58294
|
'hostaway',
|
|
58295
|
+
'guesty',
|
|
58252
58296
|
'acuity_scheduling',
|
|
58253
58297
|
'omnitec',
|
|
58254
58298
|
],
|
|
@@ -66948,6 +66992,7 @@ const openapi: OpenAPISpec = {
|
|
|
66948
66992
|
'ical',
|
|
66949
66993
|
'lodgify',
|
|
66950
66994
|
'hostaway',
|
|
66995
|
+
'guesty',
|
|
66951
66996
|
'acuity_scheduling',
|
|
66952
66997
|
],
|
|
66953
66998
|
type: 'string',
|
|
@@ -39936,6 +39936,7 @@ export type Routes = {
|
|
|
39936
39936
|
| 'ical'
|
|
39937
39937
|
| 'lodgify'
|
|
39938
39938
|
| 'hostaway'
|
|
39939
|
+
| 'guesty'
|
|
39939
39940
|
| 'acuity_scheduling'
|
|
39940
39941
|
| 'omnitec'
|
|
39941
39942
|
| 'yale_access'
|
|
@@ -43693,6 +43694,7 @@ export type Routes = {
|
|
|
43693
43694
|
| 'ical'
|
|
43694
43695
|
| 'lodgify'
|
|
43695
43696
|
| 'hostaway'
|
|
43697
|
+
| 'guesty'
|
|
43696
43698
|
| 'acuity_scheduling'
|
|
43697
43699
|
| 'omnitec'
|
|
43698
43700
|
)
|
|
@@ -45537,6 +45539,7 @@ export type Routes = {
|
|
|
45537
45539
|
| 'ical'
|
|
45538
45540
|
| 'lodgify'
|
|
45539
45541
|
| 'hostaway'
|
|
45542
|
+
| 'guesty'
|
|
45540
45543
|
| 'acuity_scheduling'
|
|
45541
45544
|
| 'omnitec'
|
|
45542
45545
|
display_name: string
|
|
@@ -47692,6 +47695,7 @@ export type Routes = {
|
|
|
47692
47695
|
| 'ical'
|
|
47693
47696
|
| 'lodgify'
|
|
47694
47697
|
| 'hostaway'
|
|
47698
|
+
| 'guesty'
|
|
47695
47699
|
| 'acuity_scheduling'
|
|
47696
47700
|
| 'omnitec'
|
|
47697
47701
|
)
|
|
@@ -82945,6 +82949,7 @@ export type Routes = {
|
|
|
82945
82949
|
| 'ical'
|
|
82946
82950
|
| 'lodgify'
|
|
82947
82951
|
| 'hostaway'
|
|
82952
|
+
| 'guesty'
|
|
82948
82953
|
| 'acuity_scheduling'
|
|
82949
82954
|
/** Key identifying the customer */
|
|
82950
82955
|
customer_key?: string | undefined
|