@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
package/dist/connect.cjs
CHANGED
|
@@ -1313,7 +1313,14 @@ var common_device_error = zod.z.object({
|
|
|
1313
1313
|
var error_code_description2 = "Unique identifier of the type of error. Enables quick recognition and categorization of the issue.";
|
|
1314
1314
|
var device_offline = common_device_error.extend({
|
|
1315
1315
|
error_code: zod.z.literal("device_offline").describe(error_code_description2)
|
|
1316
|
-
}).describe(
|
|
1316
|
+
}).describe(
|
|
1317
|
+
`
|
|
1318
|
+
---
|
|
1319
|
+
deprecated: Use \`device_disconnected\` instead.
|
|
1320
|
+
---
|
|
1321
|
+
Indicates that the device is offline.
|
|
1322
|
+
`
|
|
1323
|
+
);
|
|
1317
1324
|
var device_removed = common_device_error.extend({
|
|
1318
1325
|
error_code: zod.z.literal("device_removed").describe(error_code_description2)
|
|
1319
1326
|
}).describe("Indicates that the device has been removed.");
|
|
@@ -1350,6 +1357,7 @@ var august_lock_missing_bridge = common_device_error.extend({
|
|
|
1350
1357
|
error_code: zod.z.literal("august_lock_missing_bridge").describe(error_code_description2)
|
|
1351
1358
|
}).describe(`
|
|
1352
1359
|
---
|
|
1360
|
+
deprecated: Use \`hub_disconnected\` instead.
|
|
1353
1361
|
variant_group_key: locks
|
|
1354
1362
|
---
|
|
1355
1363
|
Indicates that the lock is not connected to a bridge.
|
|
@@ -1369,6 +1377,9 @@ var salto_ks_subscription_limit_exceeded2 = common_device_error.extend({
|
|
|
1369
1377
|
var ttlock_lock_not_paired_to_gateway = common_device_error.extend({
|
|
1370
1378
|
error_code: zod.z.literal("ttlock_lock_not_paired_to_gateway").describe(error_code_description2)
|
|
1371
1379
|
}).describe(`
|
|
1380
|
+
---
|
|
1381
|
+
deprecated: Use \`hub_disconnected\` instead.
|
|
1382
|
+
---
|
|
1372
1383
|
Indicates that the lock is not paired with a gateway.
|
|
1373
1384
|
`);
|
|
1374
1385
|
var missing_device_credentials = common_device_error.extend({
|
|
@@ -1388,6 +1399,9 @@ var subscription_required = common_device_error.extend({
|
|
|
1388
1399
|
var lockly_missing_wifi_bridge = common_device_error.extend({
|
|
1389
1400
|
error_code: zod.z.literal("lockly_missing_wifi_bridge").describe(error_code_description2)
|
|
1390
1401
|
}).describe(`
|
|
1402
|
+
---
|
|
1403
|
+
deprecated: Use \`hub_disconnected\` instead.
|
|
1404
|
+
---
|
|
1391
1405
|
Indicates that the Lockly lock is not connected to a Wi-Fi bridge.
|
|
1392
1406
|
`);
|
|
1393
1407
|
var device_error = zod.z.discriminatedUnion("error_code", [
|
|
@@ -1477,6 +1491,9 @@ var salto_ks_lock_access_code_support_removed = common_device_warning.extend({
|
|
|
1477
1491
|
var wyze_device_missing_gateway = common_device_warning.extend({
|
|
1478
1492
|
warning_code: zod.z.literal("wyze_device_missing_gateway").describe(warning_code_description2)
|
|
1479
1493
|
}).describe(`
|
|
1494
|
+
---
|
|
1495
|
+
deprecated: Use \`hub_disconnected\` device error instead.
|
|
1496
|
+
---
|
|
1480
1497
|
Indicates that the Wyze Lock is not connected to a gateway.
|
|
1481
1498
|
`);
|
|
1482
1499
|
var third_party_integration_detected = common_device_warning.extend({
|
|
@@ -2029,6 +2046,7 @@ var DEVICE_PROVIDERS = {
|
|
|
2029
2046
|
ICAL: "ical",
|
|
2030
2047
|
LODGIFY: "lodgify",
|
|
2031
2048
|
HOSTAWAY: "hostaway",
|
|
2049
|
+
GUESTY: "guesty",
|
|
2032
2050
|
ACUITY_SCHEDULING: "acuity_scheduling",
|
|
2033
2051
|
OMNITEC: "omnitec"
|
|
2034
2052
|
};
|
|
@@ -2106,7 +2124,7 @@ var PROVIDER_CATEGORY_MAP = {
|
|
|
2106
2124
|
"hotek"
|
|
2107
2125
|
],
|
|
2108
2126
|
cameras: ["ring"],
|
|
2109
|
-
connectors: ["ical", "lodgify", "hostaway", "acuity_scheduling"],
|
|
2127
|
+
connectors: ["ical", "lodgify", "hostaway", "guesty", "acuity_scheduling"],
|
|
2110
2128
|
internal_beta: ALL_DEVICE_PROVIDERS
|
|
2111
2129
|
};
|
|
2112
2130
|
var PROVIDER_CATEGORIES = Object.keys(PROVIDER_CATEGORY_MAP);
|
|
@@ -7754,6 +7772,7 @@ var openapi = {
|
|
|
7754
7772
|
"x-variant-group-key": "locks"
|
|
7755
7773
|
},
|
|
7756
7774
|
{
|
|
7775
|
+
deprecated: true,
|
|
7757
7776
|
description: "Indicates that the device is offline.",
|
|
7758
7777
|
properties: {
|
|
7759
7778
|
created_at: {
|
|
@@ -7782,7 +7801,8 @@ var openapi = {
|
|
|
7782
7801
|
"created_at",
|
|
7783
7802
|
"error_code"
|
|
7784
7803
|
],
|
|
7785
|
-
type: "object"
|
|
7804
|
+
type: "object",
|
|
7805
|
+
"x-deprecated": "Use `device_disconnected` instead."
|
|
7786
7806
|
},
|
|
7787
7807
|
{
|
|
7788
7808
|
description: "Indicates that the device has been removed.",
|
|
@@ -7942,6 +7962,7 @@ var openapi = {
|
|
|
7942
7962
|
"x-variant-group-key": "locks"
|
|
7943
7963
|
},
|
|
7944
7964
|
{
|
|
7965
|
+
deprecated: true,
|
|
7945
7966
|
description: "Indicates that the lock is not connected to a bridge.",
|
|
7946
7967
|
properties: {
|
|
7947
7968
|
created_at: {
|
|
@@ -7971,10 +7992,12 @@ var openapi = {
|
|
|
7971
7992
|
"error_code"
|
|
7972
7993
|
],
|
|
7973
7994
|
type: "object",
|
|
7995
|
+
"x-deprecated": "Use `hub_disconnected` instead.",
|
|
7974
7996
|
"x-variant-group-key": "locks"
|
|
7975
7997
|
},
|
|
7976
7998
|
{
|
|
7977
|
-
|
|
7999
|
+
deprecated: true,
|
|
8000
|
+
description: "Indicates that the lock is not paired with a gateway.",
|
|
7978
8001
|
properties: {
|
|
7979
8002
|
created_at: {
|
|
7980
8003
|
description: "Date and time at which Seam created the error.",
|
|
@@ -8002,7 +8025,8 @@ var openapi = {
|
|
|
8002
8025
|
"created_at",
|
|
8003
8026
|
"error_code"
|
|
8004
8027
|
],
|
|
8005
|
-
type: "object"
|
|
8028
|
+
type: "object",
|
|
8029
|
+
"x-deprecated": "Use `hub_disconnected` instead."
|
|
8006
8030
|
},
|
|
8007
8031
|
{
|
|
8008
8032
|
description: "Indicates that device credentials are missing.",
|
|
@@ -8099,7 +8123,8 @@ var openapi = {
|
|
|
8099
8123
|
type: "object"
|
|
8100
8124
|
},
|
|
8101
8125
|
{
|
|
8102
|
-
|
|
8126
|
+
deprecated: true,
|
|
8127
|
+
description: "Indicates that the Lockly lock is not connected to a Wi-Fi bridge.",
|
|
8103
8128
|
properties: {
|
|
8104
8129
|
created_at: {
|
|
8105
8130
|
description: "Date and time at which Seam created the error.",
|
|
@@ -8127,7 +8152,8 @@ var openapi = {
|
|
|
8127
8152
|
"created_at",
|
|
8128
8153
|
"error_code"
|
|
8129
8154
|
],
|
|
8130
|
-
type: "object"
|
|
8155
|
+
type: "object",
|
|
8156
|
+
"x-deprecated": "Use `hub_disconnected` instead."
|
|
8131
8157
|
},
|
|
8132
8158
|
{
|
|
8133
8159
|
description: "Indicates that the Seam API cannot communicate with [Seam Bridge](https://docs.seam.co/latest/capability-guides/seam-bridge), for example, if the Seam Bridge executable has stopped or if the computer running the Seam Bridge executable is offline. See also [Troubleshooting Your Access Control System](https://docs.seam.co/latest/capability-guides/access-systems/troubleshooting-your-access-control-system#acs_system.errors.seam_bridge_disconnected).",
|
|
@@ -18156,6 +18182,7 @@ var openapi = {
|
|
|
18156
18182
|
"x-variant-group-key": "locks"
|
|
18157
18183
|
},
|
|
18158
18184
|
{
|
|
18185
|
+
deprecated: true,
|
|
18159
18186
|
description: "Indicates that the device is offline.",
|
|
18160
18187
|
properties: {
|
|
18161
18188
|
created_at: {
|
|
@@ -18184,7 +18211,8 @@ var openapi = {
|
|
|
18184
18211
|
"created_at",
|
|
18185
18212
|
"error_code"
|
|
18186
18213
|
],
|
|
18187
|
-
type: "object"
|
|
18214
|
+
type: "object",
|
|
18215
|
+
"x-deprecated": "Use `device_disconnected` instead."
|
|
18188
18216
|
},
|
|
18189
18217
|
{
|
|
18190
18218
|
description: "Indicates that the device has been removed.",
|
|
@@ -18344,6 +18372,7 @@ var openapi = {
|
|
|
18344
18372
|
"x-variant-group-key": "locks"
|
|
18345
18373
|
},
|
|
18346
18374
|
{
|
|
18375
|
+
deprecated: true,
|
|
18347
18376
|
description: "Indicates that the lock is not connected to a bridge.",
|
|
18348
18377
|
properties: {
|
|
18349
18378
|
created_at: {
|
|
@@ -18373,10 +18402,12 @@ var openapi = {
|
|
|
18373
18402
|
"error_code"
|
|
18374
18403
|
],
|
|
18375
18404
|
type: "object",
|
|
18405
|
+
"x-deprecated": "Use `hub_disconnected` instead.",
|
|
18376
18406
|
"x-variant-group-key": "locks"
|
|
18377
18407
|
},
|
|
18378
18408
|
{
|
|
18379
|
-
|
|
18409
|
+
deprecated: true,
|
|
18410
|
+
description: "Indicates that the lock is not paired with a gateway.",
|
|
18380
18411
|
properties: {
|
|
18381
18412
|
created_at: {
|
|
18382
18413
|
description: "Date and time at which Seam created the error.",
|
|
@@ -18404,7 +18435,8 @@ var openapi = {
|
|
|
18404
18435
|
"created_at",
|
|
18405
18436
|
"error_code"
|
|
18406
18437
|
],
|
|
18407
|
-
type: "object"
|
|
18438
|
+
type: "object",
|
|
18439
|
+
"x-deprecated": "Use `hub_disconnected` instead."
|
|
18408
18440
|
},
|
|
18409
18441
|
{
|
|
18410
18442
|
description: "Indicates that device credentials are missing.",
|
|
@@ -18501,7 +18533,8 @@ var openapi = {
|
|
|
18501
18533
|
type: "object"
|
|
18502
18534
|
},
|
|
18503
18535
|
{
|
|
18504
|
-
|
|
18536
|
+
deprecated: true,
|
|
18537
|
+
description: "Indicates that the Lockly lock is not connected to a Wi-Fi bridge.",
|
|
18505
18538
|
properties: {
|
|
18506
18539
|
created_at: {
|
|
18507
18540
|
description: "Date and time at which Seam created the error.",
|
|
@@ -18529,7 +18562,8 @@ var openapi = {
|
|
|
18529
18562
|
"created_at",
|
|
18530
18563
|
"error_code"
|
|
18531
18564
|
],
|
|
18532
|
-
type: "object"
|
|
18565
|
+
type: "object",
|
|
18566
|
+
"x-deprecated": "Use `hub_disconnected` instead."
|
|
18533
18567
|
},
|
|
18534
18568
|
{
|
|
18535
18569
|
description: "Indicates that the Seam API cannot communicate with [Seam Bridge](https://docs.seam.co/latest/capability-guides/seam-bridge), for example, if the Seam Bridge executable has stopped or if the computer running the Seam Bridge executable is offline. See also [Troubleshooting Your Access Control System](https://docs.seam.co/latest/capability-guides/access-systems/troubleshooting-your-access-control-system#acs_system.errors.seam_bridge_disconnected).",
|
|
@@ -21071,7 +21105,8 @@ var openapi = {
|
|
|
21071
21105
|
"x-variant-group-key": "access_codes"
|
|
21072
21106
|
},
|
|
21073
21107
|
{
|
|
21074
|
-
|
|
21108
|
+
deprecated: true,
|
|
21109
|
+
description: "Indicates that the Wyze Lock is not connected to a gateway.",
|
|
21075
21110
|
properties: {
|
|
21076
21111
|
created_at: {
|
|
21077
21112
|
description: "Date and time at which Seam created the warning.",
|
|
@@ -21089,7 +21124,8 @@ var openapi = {
|
|
|
21089
21124
|
}
|
|
21090
21125
|
},
|
|
21091
21126
|
required: ["message", "created_at", "warning_code"],
|
|
21092
|
-
type: "object"
|
|
21127
|
+
type: "object",
|
|
21128
|
+
"x-deprecated": "Use `hub_disconnected` device error instead."
|
|
21093
21129
|
},
|
|
21094
21130
|
{
|
|
21095
21131
|
description: "Indicates that a third-party integration has been detected.",
|
|
@@ -21685,6 +21721,7 @@ var openapi = {
|
|
|
21685
21721
|
"ical",
|
|
21686
21722
|
"lodgify",
|
|
21687
21723
|
"hostaway",
|
|
21724
|
+
"guesty",
|
|
21688
21725
|
"acuity_scheduling",
|
|
21689
21726
|
"omnitec"
|
|
21690
21727
|
],
|
|
@@ -32178,6 +32215,7 @@ var openapi = {
|
|
|
32178
32215
|
"x-variant-group-key": "locks"
|
|
32179
32216
|
},
|
|
32180
32217
|
{
|
|
32218
|
+
deprecated: true,
|
|
32181
32219
|
description: "Indicates that the device is offline.",
|
|
32182
32220
|
properties: {
|
|
32183
32221
|
created_at: {
|
|
@@ -32206,7 +32244,8 @@ var openapi = {
|
|
|
32206
32244
|
"created_at",
|
|
32207
32245
|
"error_code"
|
|
32208
32246
|
],
|
|
32209
|
-
type: "object"
|
|
32247
|
+
type: "object",
|
|
32248
|
+
"x-deprecated": "Use `device_disconnected` instead."
|
|
32210
32249
|
},
|
|
32211
32250
|
{
|
|
32212
32251
|
description: "Indicates that the device has been removed.",
|
|
@@ -32366,6 +32405,7 @@ var openapi = {
|
|
|
32366
32405
|
"x-variant-group-key": "locks"
|
|
32367
32406
|
},
|
|
32368
32407
|
{
|
|
32408
|
+
deprecated: true,
|
|
32369
32409
|
description: "Indicates that the lock is not connected to a bridge.",
|
|
32370
32410
|
properties: {
|
|
32371
32411
|
created_at: {
|
|
@@ -32395,10 +32435,12 @@ var openapi = {
|
|
|
32395
32435
|
"error_code"
|
|
32396
32436
|
],
|
|
32397
32437
|
type: "object",
|
|
32438
|
+
"x-deprecated": "Use `hub_disconnected` instead.",
|
|
32398
32439
|
"x-variant-group-key": "locks"
|
|
32399
32440
|
},
|
|
32400
32441
|
{
|
|
32401
|
-
|
|
32442
|
+
deprecated: true,
|
|
32443
|
+
description: "Indicates that the lock is not paired with a gateway.",
|
|
32402
32444
|
properties: {
|
|
32403
32445
|
created_at: {
|
|
32404
32446
|
description: "Date and time at which Seam created the error.",
|
|
@@ -32426,7 +32468,8 @@ var openapi = {
|
|
|
32426
32468
|
"created_at",
|
|
32427
32469
|
"error_code"
|
|
32428
32470
|
],
|
|
32429
|
-
type: "object"
|
|
32471
|
+
type: "object",
|
|
32472
|
+
"x-deprecated": "Use `hub_disconnected` instead."
|
|
32430
32473
|
},
|
|
32431
32474
|
{
|
|
32432
32475
|
description: "Indicates that device credentials are missing.",
|
|
@@ -32523,7 +32566,8 @@ var openapi = {
|
|
|
32523
32566
|
type: "object"
|
|
32524
32567
|
},
|
|
32525
32568
|
{
|
|
32526
|
-
|
|
32569
|
+
deprecated: true,
|
|
32570
|
+
description: "Indicates that the Lockly lock is not connected to a Wi-Fi bridge.",
|
|
32527
32571
|
properties: {
|
|
32528
32572
|
created_at: {
|
|
32529
32573
|
description: "Date and time at which Seam created the error.",
|
|
@@ -32551,7 +32595,8 @@ var openapi = {
|
|
|
32551
32595
|
"created_at",
|
|
32552
32596
|
"error_code"
|
|
32553
32597
|
],
|
|
32554
|
-
type: "object"
|
|
32598
|
+
type: "object",
|
|
32599
|
+
"x-deprecated": "Use `hub_disconnected` instead."
|
|
32555
32600
|
},
|
|
32556
32601
|
{
|
|
32557
32602
|
description: "Indicates that the Seam API cannot communicate with [Seam Bridge](https://docs.seam.co/latest/capability-guides/seam-bridge), for example, if the Seam Bridge executable has stopped or if the computer running the Seam Bridge executable is offline. See also [Troubleshooting Your Access Control System](https://docs.seam.co/latest/capability-guides/access-systems/troubleshooting-your-access-control-system#acs_system.errors.seam_bridge_disconnected).",
|
|
@@ -34840,6 +34885,7 @@ var openapi = {
|
|
|
34840
34885
|
"x-variant-group-key": "locks"
|
|
34841
34886
|
},
|
|
34842
34887
|
{
|
|
34888
|
+
deprecated: true,
|
|
34843
34889
|
description: "Indicates that the device is offline.",
|
|
34844
34890
|
properties: {
|
|
34845
34891
|
created_at: {
|
|
@@ -34868,7 +34914,8 @@ var openapi = {
|
|
|
34868
34914
|
"created_at",
|
|
34869
34915
|
"error_code"
|
|
34870
34916
|
],
|
|
34871
|
-
type: "object"
|
|
34917
|
+
type: "object",
|
|
34918
|
+
"x-deprecated": "Use `device_disconnected` instead."
|
|
34872
34919
|
},
|
|
34873
34920
|
{
|
|
34874
34921
|
description: "Indicates that the device has been removed.",
|
|
@@ -35028,6 +35075,7 @@ var openapi = {
|
|
|
35028
35075
|
"x-variant-group-key": "locks"
|
|
35029
35076
|
},
|
|
35030
35077
|
{
|
|
35078
|
+
deprecated: true,
|
|
35031
35079
|
description: "Indicates that the lock is not connected to a bridge.",
|
|
35032
35080
|
properties: {
|
|
35033
35081
|
created_at: {
|
|
@@ -35057,10 +35105,12 @@ var openapi = {
|
|
|
35057
35105
|
"error_code"
|
|
35058
35106
|
],
|
|
35059
35107
|
type: "object",
|
|
35108
|
+
"x-deprecated": "Use `hub_disconnected` instead.",
|
|
35060
35109
|
"x-variant-group-key": "locks"
|
|
35061
35110
|
},
|
|
35062
35111
|
{
|
|
35063
|
-
|
|
35112
|
+
deprecated: true,
|
|
35113
|
+
description: "Indicates that the lock is not paired with a gateway.",
|
|
35064
35114
|
properties: {
|
|
35065
35115
|
created_at: {
|
|
35066
35116
|
description: "Date and time at which Seam created the error.",
|
|
@@ -35088,7 +35138,8 @@ var openapi = {
|
|
|
35088
35138
|
"created_at",
|
|
35089
35139
|
"error_code"
|
|
35090
35140
|
],
|
|
35091
|
-
type: "object"
|
|
35141
|
+
type: "object",
|
|
35142
|
+
"x-deprecated": "Use `hub_disconnected` instead."
|
|
35092
35143
|
},
|
|
35093
35144
|
{
|
|
35094
35145
|
description: "Indicates that device credentials are missing.",
|
|
@@ -35185,7 +35236,8 @@ var openapi = {
|
|
|
35185
35236
|
type: "object"
|
|
35186
35237
|
},
|
|
35187
35238
|
{
|
|
35188
|
-
|
|
35239
|
+
deprecated: true,
|
|
35240
|
+
description: "Indicates that the Lockly lock is not connected to a Wi-Fi bridge.",
|
|
35189
35241
|
properties: {
|
|
35190
35242
|
created_at: {
|
|
35191
35243
|
description: "Date and time at which Seam created the error.",
|
|
@@ -35213,7 +35265,8 @@ var openapi = {
|
|
|
35213
35265
|
"created_at",
|
|
35214
35266
|
"error_code"
|
|
35215
35267
|
],
|
|
35216
|
-
type: "object"
|
|
35268
|
+
type: "object",
|
|
35269
|
+
"x-deprecated": "Use `hub_disconnected` instead."
|
|
35217
35270
|
},
|
|
35218
35271
|
{
|
|
35219
35272
|
description: "Indicates that the Seam API cannot communicate with [Seam Bridge](https://docs.seam.co/latest/capability-guides/seam-bridge), for example, if the Seam Bridge executable has stopped or if the computer running the Seam Bridge executable is offline. See also [Troubleshooting Your Access Control System](https://docs.seam.co/latest/capability-guides/access-systems/troubleshooting-your-access-control-system#acs_system.errors.seam_bridge_disconnected).",
|
|
@@ -35476,7 +35529,8 @@ var openapi = {
|
|
|
35476
35529
|
"x-variant-group-key": "access_codes"
|
|
35477
35530
|
},
|
|
35478
35531
|
{
|
|
35479
|
-
|
|
35532
|
+
deprecated: true,
|
|
35533
|
+
description: "Indicates that the Wyze Lock is not connected to a gateway.",
|
|
35480
35534
|
properties: {
|
|
35481
35535
|
created_at: {
|
|
35482
35536
|
description: "Date and time at which Seam created the warning.",
|
|
@@ -35494,7 +35548,8 @@ var openapi = {
|
|
|
35494
35548
|
}
|
|
35495
35549
|
},
|
|
35496
35550
|
required: ["message", "created_at", "warning_code"],
|
|
35497
|
-
type: "object"
|
|
35551
|
+
type: "object",
|
|
35552
|
+
"x-deprecated": "Use `hub_disconnected` device error instead."
|
|
35498
35553
|
},
|
|
35499
35554
|
{
|
|
35500
35555
|
description: "Indicates that a third-party integration has been detected.",
|
|
@@ -52895,6 +52950,7 @@ var openapi = {
|
|
|
52895
52950
|
"ical",
|
|
52896
52951
|
"lodgify",
|
|
52897
52952
|
"hostaway",
|
|
52953
|
+
"guesty",
|
|
52898
52954
|
"acuity_scheduling",
|
|
52899
52955
|
"omnitec",
|
|
52900
52956
|
"yale_access",
|
|
@@ -56888,6 +56944,7 @@ var openapi = {
|
|
|
56888
56944
|
"ical",
|
|
56889
56945
|
"lodgify",
|
|
56890
56946
|
"hostaway",
|
|
56947
|
+
"guesty",
|
|
56891
56948
|
"acuity_scheduling",
|
|
56892
56949
|
"omnitec"
|
|
56893
56950
|
],
|
|
@@ -57385,6 +57442,7 @@ var openapi = {
|
|
|
57385
57442
|
"ical",
|
|
57386
57443
|
"lodgify",
|
|
57387
57444
|
"hostaway",
|
|
57445
|
+
"guesty",
|
|
57388
57446
|
"acuity_scheduling",
|
|
57389
57447
|
"omnitec"
|
|
57390
57448
|
],
|
|
@@ -59026,7 +59084,7 @@ var openapi = {
|
|
|
59026
59084
|
},
|
|
59027
59085
|
"/devices/simulate/connect_to_hub": {
|
|
59028
59086
|
post: {
|
|
59029
|
-
description: "Simulates bringing the Wi\u2011Fi hub (bridge) back online for a device.\nOnly applicable for sandbox workspaces and currently\nimplemented for August and TTLock locks.\nThis will clear the
|
|
59087
|
+
description: "Simulates bringing the Wi\u2011Fi 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.",
|
|
59030
59088
|
operationId: "devicesSimulateConnectToHubPost",
|
|
59031
59089
|
requestBody: {
|
|
59032
59090
|
content: {
|
|
@@ -59128,7 +59186,7 @@ var openapi = {
|
|
|
59128
59186
|
},
|
|
59129
59187
|
"/devices/simulate/disconnect_from_hub": {
|
|
59130
59188
|
post: {
|
|
59131
|
-
description: "Simulates taking the Wi\u2011Fi hub (bridge) offline for a device.\nOnly applicable for sandbox workspaces and currently\nimplemented for August, TTLock, and IglooHome devices.\nThis will set the
|
|
59189
|
+
description: "Simulates taking the Wi\u2011Fi 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.",
|
|
59132
59190
|
operationId: "devicesSimulateDisconnectFromHubPost",
|
|
59133
59191
|
requestBody: {
|
|
59134
59192
|
content: {
|
|
@@ -59633,6 +59691,7 @@ var openapi = {
|
|
|
59633
59691
|
"ical",
|
|
59634
59692
|
"lodgify",
|
|
59635
59693
|
"hostaway",
|
|
59694
|
+
"guesty",
|
|
59636
59695
|
"acuity_scheduling",
|
|
59637
59696
|
"omnitec"
|
|
59638
59697
|
],
|
|
@@ -60129,6 +60188,7 @@ var openapi = {
|
|
|
60129
60188
|
"ical",
|
|
60130
60189
|
"lodgify",
|
|
60131
60190
|
"hostaway",
|
|
60191
|
+
"guesty",
|
|
60132
60192
|
"acuity_scheduling",
|
|
60133
60193
|
"omnitec"
|
|
60134
60194
|
],
|
|
@@ -68508,6 +68568,7 @@ var openapi = {
|
|
|
68508
68568
|
"ical",
|
|
68509
68569
|
"lodgify",
|
|
68510
68570
|
"hostaway",
|
|
68571
|
+
"guesty",
|
|
68511
68572
|
"acuity_scheduling"
|
|
68512
68573
|
],
|
|
68513
68574
|
type: "string"
|