@seamapi/types 1.689.0 → 1.691.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 +105 -2
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +506 -0
- package/dist/index.cjs +105 -2
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/batch.d.ts +116 -0
- package/lib/seam/connect/models/devices/device.d.ts +116 -0
- package/lib/seam/connect/models/devices/device.js +23 -0
- package/lib/seam/connect/models/devices/device.js.map +1 -1
- package/lib/seam/connect/models/devices/unmanaged-device.d.ts +42 -0
- package/lib/seam/connect/openapi.js +86 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +280 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/models/devices/device.ts +27 -0
- package/src/lib/seam/connect/openapi.ts +102 -0
- package/src/lib/seam/connect/route-types.ts +320 -0
|
@@ -13383,6 +13383,31 @@ export default {
|
|
|
13383
13383
|
required: ['message', 'created_at', 'warning_code'],
|
|
13384
13384
|
type: 'object',
|
|
13385
13385
|
},
|
|
13386
|
+
{
|
|
13387
|
+
description:
|
|
13388
|
+
'Indicates that Seam does not know the time zone of the Ultraloq device. Set a time zone to enable time-bound access codes.',
|
|
13389
|
+
properties: {
|
|
13390
|
+
created_at: {
|
|
13391
|
+
description:
|
|
13392
|
+
'Date and time at which Seam created the warning.',
|
|
13393
|
+
format: 'date-time',
|
|
13394
|
+
type: 'string',
|
|
13395
|
+
},
|
|
13396
|
+
message: {
|
|
13397
|
+
description:
|
|
13398
|
+
'Detailed description of the warning. Provides insights into the issue and potentially how to rectify it.',
|
|
13399
|
+
type: 'string',
|
|
13400
|
+
},
|
|
13401
|
+
warning_code: {
|
|
13402
|
+
description:
|
|
13403
|
+
'Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.',
|
|
13404
|
+
enum: ['ultraloq_time_zone_unknown'],
|
|
13405
|
+
type: 'string',
|
|
13406
|
+
},
|
|
13407
|
+
},
|
|
13408
|
+
required: ['message', 'created_at', 'warning_code'],
|
|
13409
|
+
type: 'object',
|
|
13410
|
+
},
|
|
13386
13411
|
{
|
|
13387
13412
|
description:
|
|
13388
13413
|
'Indicates that a hub or relay must be connected to unlock additional capabilities such as remote unlock.',
|
|
@@ -13435,6 +13460,32 @@ export default {
|
|
|
13435
13460
|
type: 'object',
|
|
13436
13461
|
'x-variant-group-key': 'locks',
|
|
13437
13462
|
},
|
|
13463
|
+
{
|
|
13464
|
+
description:
|
|
13465
|
+
'Indicates that the accessory keypad exists, but is not linked to the Igloohome Bridge. Online access code programming will fail until the keypad is linked to the Igloohome Bridge in the Igloohome app.',
|
|
13466
|
+
properties: {
|
|
13467
|
+
created_at: {
|
|
13468
|
+
description:
|
|
13469
|
+
'Date and time at which Seam created the warning.',
|
|
13470
|
+
format: 'date-time',
|
|
13471
|
+
type: 'string',
|
|
13472
|
+
},
|
|
13473
|
+
message: {
|
|
13474
|
+
description:
|
|
13475
|
+
'Detailed description of the warning. Provides insights into the issue and potentially how to rectify it.',
|
|
13476
|
+
type: 'string',
|
|
13477
|
+
},
|
|
13478
|
+
warning_code: {
|
|
13479
|
+
description:
|
|
13480
|
+
'Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.',
|
|
13481
|
+
enum: ['accessory_keypad_setup_required'],
|
|
13482
|
+
type: 'string',
|
|
13483
|
+
},
|
|
13484
|
+
},
|
|
13485
|
+
required: ['message', 'created_at', 'warning_code'],
|
|
13486
|
+
type: 'object',
|
|
13487
|
+
'x-variant-group-key': 'locks',
|
|
13488
|
+
},
|
|
13438
13489
|
],
|
|
13439
13490
|
},
|
|
13440
13491
|
type: 'array',
|
|
@@ -25993,6 +26044,31 @@ export default {
|
|
|
25993
26044
|
required: ['message', 'created_at', 'warning_code'],
|
|
25994
26045
|
type: 'object',
|
|
25995
26046
|
},
|
|
26047
|
+
{
|
|
26048
|
+
description:
|
|
26049
|
+
'Indicates that Seam does not know the time zone of the Ultraloq device. Set a time zone to enable time-bound access codes.',
|
|
26050
|
+
properties: {
|
|
26051
|
+
created_at: {
|
|
26052
|
+
description:
|
|
26053
|
+
'Date and time at which Seam created the warning.',
|
|
26054
|
+
format: 'date-time',
|
|
26055
|
+
type: 'string',
|
|
26056
|
+
},
|
|
26057
|
+
message: {
|
|
26058
|
+
description:
|
|
26059
|
+
'Detailed description of the warning. Provides insights into the issue and potentially how to rectify it.',
|
|
26060
|
+
type: 'string',
|
|
26061
|
+
},
|
|
26062
|
+
warning_code: {
|
|
26063
|
+
description:
|
|
26064
|
+
'Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.',
|
|
26065
|
+
enum: ['ultraloq_time_zone_unknown'],
|
|
26066
|
+
type: 'string',
|
|
26067
|
+
},
|
|
26068
|
+
},
|
|
26069
|
+
required: ['message', 'created_at', 'warning_code'],
|
|
26070
|
+
type: 'object',
|
|
26071
|
+
},
|
|
25996
26072
|
{
|
|
25997
26073
|
description:
|
|
25998
26074
|
'Indicates that a hub or relay must be connected to unlock additional capabilities such as remote unlock.',
|
|
@@ -26045,6 +26121,32 @@ export default {
|
|
|
26045
26121
|
type: 'object',
|
|
26046
26122
|
'x-variant-group-key': 'locks',
|
|
26047
26123
|
},
|
|
26124
|
+
{
|
|
26125
|
+
description:
|
|
26126
|
+
'Indicates that the accessory keypad exists, but is not linked to the Igloohome Bridge. Online access code programming will fail until the keypad is linked to the Igloohome Bridge in the Igloohome app.',
|
|
26127
|
+
properties: {
|
|
26128
|
+
created_at: {
|
|
26129
|
+
description:
|
|
26130
|
+
'Date and time at which Seam created the warning.',
|
|
26131
|
+
format: 'date-time',
|
|
26132
|
+
type: 'string',
|
|
26133
|
+
},
|
|
26134
|
+
message: {
|
|
26135
|
+
description:
|
|
26136
|
+
'Detailed description of the warning. Provides insights into the issue and potentially how to rectify it.',
|
|
26137
|
+
type: 'string',
|
|
26138
|
+
},
|
|
26139
|
+
warning_code: {
|
|
26140
|
+
description:
|
|
26141
|
+
'Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.',
|
|
26142
|
+
enum: ['accessory_keypad_setup_required'],
|
|
26143
|
+
type: 'string',
|
|
26144
|
+
},
|
|
26145
|
+
},
|
|
26146
|
+
required: ['message', 'created_at', 'warning_code'],
|
|
26147
|
+
type: 'object',
|
|
26148
|
+
'x-variant-group-key': 'locks',
|
|
26149
|
+
},
|
|
26048
26150
|
],
|
|
26049
26151
|
},
|
|
26050
26152
|
type: 'array',
|