@seamapi/types 1.998.0 → 1.1000.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/lib/seam/connect/models/acs/acs-credential.d.ts +96 -0
- package/lib/seam/connect/models/acs/acs-credential.js +13 -0
- package/lib/seam/connect/models/acs/acs-credential.js.map +1 -1
- package/lib/seam/connect/models/action-attempts/action-attempt.d.ts +239 -0
- package/lib/seam/connect/models/action-attempts/encode-credential.d.ts +86 -0
- package/lib/seam/connect/models/action-attempts/scan-credential.d.ts +110 -0
- package/lib/seam/connect/models/action-attempts/scan-to-assign-credential.d.ts +43 -0
- package/lib/seam/connect/models/devices/device-metadata.d.ts +28 -0
- package/lib/seam/connect/models/devices/device-metadata.js +21 -0
- package/lib/seam/connect/models/devices/device-metadata.js.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-type.d.ts +1 -0
- package/lib/seam/connect/models/devices/device-type.js +1 -0
- package/lib/seam/connect/models/devices/device-type.js.map +1 -1
- package/lib/seam/connect/models/devices/device.d.ts +43 -3
- package/lib/seam/connect/models/devices/unmanaged-device.d.ts +31 -3
- package/lib/seam/connect/models/phones/phone-session.d.ts +98 -0
- package/lib/seam/connect/openapi.js +324 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +2356 -189
- package/package.json +1 -1
- package/src/lib/seam/connect/models/acs/acs-credential.ts +16 -0
- package/src/lib/seam/connect/models/devices/device-metadata.ts +22 -0
- package/src/lib/seam/connect/models/devices/device-provider.ts +2 -1
- package/src/lib/seam/connect/models/devices/device-type.ts +1 -0
- package/src/lib/seam/connect/openapi.ts +370 -0
- package/src/lib/seam/connect/route-types.ts +2794 -382
|
@@ -3265,6 +3265,41 @@ const openapi = {
|
|
|
3265
3265
|
required: ['created_at', 'message', 'warning_code'],
|
|
3266
3266
|
type: 'object',
|
|
3267
3267
|
},
|
|
3268
|
+
{
|
|
3269
|
+
description: 'Indicates that the requested PIN code could not be used, so the access system assigned a different code. Give the guest the assigned code.',
|
|
3270
|
+
properties: {
|
|
3271
|
+
created_at: {
|
|
3272
|
+
description: 'Date and time at which Seam created the warning.',
|
|
3273
|
+
format: 'date-time',
|
|
3274
|
+
type: 'string',
|
|
3275
|
+
},
|
|
3276
|
+
message: {
|
|
3277
|
+
description: 'Detailed description of the warning. Provides insights into the issue and potentially how to rectify it.',
|
|
3278
|
+
type: 'string',
|
|
3279
|
+
},
|
|
3280
|
+
new_code: {
|
|
3281
|
+
description: 'The PIN code that was assigned instead.',
|
|
3282
|
+
type: 'string',
|
|
3283
|
+
},
|
|
3284
|
+
original_code: {
|
|
3285
|
+
description: 'The originally requested PIN code that could not be used.',
|
|
3286
|
+
type: 'string',
|
|
3287
|
+
},
|
|
3288
|
+
warning_code: {
|
|
3289
|
+
description: 'Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.',
|
|
3290
|
+
enum: ['requested_code_unavailable'],
|
|
3291
|
+
type: 'string',
|
|
3292
|
+
},
|
|
3293
|
+
},
|
|
3294
|
+
required: [
|
|
3295
|
+
'created_at',
|
|
3296
|
+
'message',
|
|
3297
|
+
'warning_code',
|
|
3298
|
+
'original_code',
|
|
3299
|
+
'new_code',
|
|
3300
|
+
],
|
|
3301
|
+
type: 'object',
|
|
3302
|
+
},
|
|
3268
3303
|
],
|
|
3269
3304
|
},
|
|
3270
3305
|
type: 'array',
|
|
@@ -5959,6 +5994,41 @@ const openapi = {
|
|
|
5959
5994
|
],
|
|
5960
5995
|
type: 'object',
|
|
5961
5996
|
},
|
|
5997
|
+
{
|
|
5998
|
+
description: 'Indicates that the requested PIN code could not be used, so the access system assigned a different code. Give the guest the assigned code.',
|
|
5999
|
+
properties: {
|
|
6000
|
+
created_at: {
|
|
6001
|
+
description: 'Date and time at which Seam created the warning.',
|
|
6002
|
+
format: 'date-time',
|
|
6003
|
+
type: 'string',
|
|
6004
|
+
},
|
|
6005
|
+
message: {
|
|
6006
|
+
description: 'Detailed description of the warning. Provides insights into the issue and potentially how to rectify it.',
|
|
6007
|
+
type: 'string',
|
|
6008
|
+
},
|
|
6009
|
+
new_code: {
|
|
6010
|
+
description: 'The PIN code that was assigned instead.',
|
|
6011
|
+
type: 'string',
|
|
6012
|
+
},
|
|
6013
|
+
original_code: {
|
|
6014
|
+
description: 'The originally requested PIN code that could not be used.',
|
|
6015
|
+
type: 'string',
|
|
6016
|
+
},
|
|
6017
|
+
warning_code: {
|
|
6018
|
+
description: 'Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.',
|
|
6019
|
+
enum: ['requested_code_unavailable'],
|
|
6020
|
+
type: 'string',
|
|
6021
|
+
},
|
|
6022
|
+
},
|
|
6023
|
+
required: [
|
|
6024
|
+
'created_at',
|
|
6025
|
+
'message',
|
|
6026
|
+
'warning_code',
|
|
6027
|
+
'original_code',
|
|
6028
|
+
'new_code',
|
|
6029
|
+
],
|
|
6030
|
+
type: 'object',
|
|
6031
|
+
},
|
|
5962
6032
|
],
|
|
5963
6033
|
},
|
|
5964
6034
|
type: 'array',
|
|
@@ -6368,6 +6438,41 @@ const openapi = {
|
|
|
6368
6438
|
],
|
|
6369
6439
|
type: 'object',
|
|
6370
6440
|
},
|
|
6441
|
+
{
|
|
6442
|
+
description: 'Indicates that the requested PIN code could not be used, so the access system assigned a different code. Give the guest the assigned code.',
|
|
6443
|
+
properties: {
|
|
6444
|
+
created_at: {
|
|
6445
|
+
description: 'Date and time at which Seam created the warning.',
|
|
6446
|
+
format: 'date-time',
|
|
6447
|
+
type: 'string',
|
|
6448
|
+
},
|
|
6449
|
+
message: {
|
|
6450
|
+
description: 'Detailed description of the warning. Provides insights into the issue and potentially how to rectify it.',
|
|
6451
|
+
type: 'string',
|
|
6452
|
+
},
|
|
6453
|
+
new_code: {
|
|
6454
|
+
description: 'The PIN code that was assigned instead.',
|
|
6455
|
+
type: 'string',
|
|
6456
|
+
},
|
|
6457
|
+
original_code: {
|
|
6458
|
+
description: 'The originally requested PIN code that could not be used.',
|
|
6459
|
+
type: 'string',
|
|
6460
|
+
},
|
|
6461
|
+
warning_code: {
|
|
6462
|
+
description: 'Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.',
|
|
6463
|
+
enum: ['requested_code_unavailable'],
|
|
6464
|
+
type: 'string',
|
|
6465
|
+
},
|
|
6466
|
+
},
|
|
6467
|
+
required: [
|
|
6468
|
+
'created_at',
|
|
6469
|
+
'message',
|
|
6470
|
+
'warning_code',
|
|
6471
|
+
'original_code',
|
|
6472
|
+
'new_code',
|
|
6473
|
+
],
|
|
6474
|
+
type: 'object',
|
|
6475
|
+
},
|
|
6371
6476
|
],
|
|
6372
6477
|
},
|
|
6373
6478
|
type: 'array',
|
|
@@ -7005,6 +7110,41 @@ const openapi = {
|
|
|
7005
7110
|
],
|
|
7006
7111
|
type: 'object',
|
|
7007
7112
|
},
|
|
7113
|
+
{
|
|
7114
|
+
description: 'Indicates that the requested PIN code could not be used, so the access system assigned a different code. Give the guest the assigned code.',
|
|
7115
|
+
properties: {
|
|
7116
|
+
created_at: {
|
|
7117
|
+
description: 'Date and time at which Seam created the warning.',
|
|
7118
|
+
format: 'date-time',
|
|
7119
|
+
type: 'string',
|
|
7120
|
+
},
|
|
7121
|
+
message: {
|
|
7122
|
+
description: 'Detailed description of the warning. Provides insights into the issue and potentially how to rectify it.',
|
|
7123
|
+
type: 'string',
|
|
7124
|
+
},
|
|
7125
|
+
new_code: {
|
|
7126
|
+
description: 'The PIN code that was assigned instead.',
|
|
7127
|
+
type: 'string',
|
|
7128
|
+
},
|
|
7129
|
+
original_code: {
|
|
7130
|
+
description: 'The originally requested PIN code that could not be used.',
|
|
7131
|
+
type: 'string',
|
|
7132
|
+
},
|
|
7133
|
+
warning_code: {
|
|
7134
|
+
description: 'Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.',
|
|
7135
|
+
enum: ['requested_code_unavailable'],
|
|
7136
|
+
type: 'string',
|
|
7137
|
+
},
|
|
7138
|
+
},
|
|
7139
|
+
required: [
|
|
7140
|
+
'created_at',
|
|
7141
|
+
'message',
|
|
7142
|
+
'warning_code',
|
|
7143
|
+
'original_code',
|
|
7144
|
+
'new_code',
|
|
7145
|
+
],
|
|
7146
|
+
type: 'object',
|
|
7147
|
+
},
|
|
7008
7148
|
],
|
|
7009
7149
|
},
|
|
7010
7150
|
type: 'array',
|
|
@@ -7412,6 +7552,41 @@ const openapi = {
|
|
|
7412
7552
|
],
|
|
7413
7553
|
type: 'object',
|
|
7414
7554
|
},
|
|
7555
|
+
{
|
|
7556
|
+
description: 'Indicates that the requested PIN code could not be used, so the access system assigned a different code. Give the guest the assigned code.',
|
|
7557
|
+
properties: {
|
|
7558
|
+
created_at: {
|
|
7559
|
+
description: 'Date and time at which Seam created the warning.',
|
|
7560
|
+
format: 'date-time',
|
|
7561
|
+
type: 'string',
|
|
7562
|
+
},
|
|
7563
|
+
message: {
|
|
7564
|
+
description: 'Detailed description of the warning. Provides insights into the issue and potentially how to rectify it.',
|
|
7565
|
+
type: 'string',
|
|
7566
|
+
},
|
|
7567
|
+
new_code: {
|
|
7568
|
+
description: 'The PIN code that was assigned instead.',
|
|
7569
|
+
type: 'string',
|
|
7570
|
+
},
|
|
7571
|
+
original_code: {
|
|
7572
|
+
description: 'The originally requested PIN code that could not be used.',
|
|
7573
|
+
type: 'string',
|
|
7574
|
+
},
|
|
7575
|
+
warning_code: {
|
|
7576
|
+
description: 'Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.',
|
|
7577
|
+
enum: ['requested_code_unavailable'],
|
|
7578
|
+
type: 'string',
|
|
7579
|
+
},
|
|
7580
|
+
},
|
|
7581
|
+
required: [
|
|
7582
|
+
'created_at',
|
|
7583
|
+
'message',
|
|
7584
|
+
'warning_code',
|
|
7585
|
+
'original_code',
|
|
7586
|
+
'new_code',
|
|
7587
|
+
],
|
|
7588
|
+
type: 'object',
|
|
7589
|
+
},
|
|
7415
7590
|
],
|
|
7416
7591
|
},
|
|
7417
7592
|
type: 'array',
|
|
@@ -8054,6 +8229,41 @@ const openapi = {
|
|
|
8054
8229
|
required: ['created_at', 'message', 'warning_code'],
|
|
8055
8230
|
type: 'object',
|
|
8056
8231
|
},
|
|
8232
|
+
{
|
|
8233
|
+
description: 'Indicates that the requested PIN code could not be used, so the access system assigned a different code. Give the guest the assigned code.',
|
|
8234
|
+
properties: {
|
|
8235
|
+
created_at: {
|
|
8236
|
+
description: 'Date and time at which Seam created the warning.',
|
|
8237
|
+
format: 'date-time',
|
|
8238
|
+
type: 'string',
|
|
8239
|
+
},
|
|
8240
|
+
message: {
|
|
8241
|
+
description: 'Detailed description of the warning. Provides insights into the issue and potentially how to rectify it.',
|
|
8242
|
+
type: 'string',
|
|
8243
|
+
},
|
|
8244
|
+
new_code: {
|
|
8245
|
+
description: 'The PIN code that was assigned instead.',
|
|
8246
|
+
type: 'string',
|
|
8247
|
+
},
|
|
8248
|
+
original_code: {
|
|
8249
|
+
description: 'The originally requested PIN code that could not be used.',
|
|
8250
|
+
type: 'string',
|
|
8251
|
+
},
|
|
8252
|
+
warning_code: {
|
|
8253
|
+
description: 'Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.',
|
|
8254
|
+
enum: ['requested_code_unavailable'],
|
|
8255
|
+
type: 'string',
|
|
8256
|
+
},
|
|
8257
|
+
},
|
|
8258
|
+
required: [
|
|
8259
|
+
'created_at',
|
|
8260
|
+
'message',
|
|
8261
|
+
'warning_code',
|
|
8262
|
+
'original_code',
|
|
8263
|
+
'new_code',
|
|
8264
|
+
],
|
|
8265
|
+
type: 'object',
|
|
8266
|
+
},
|
|
8057
8267
|
],
|
|
8058
8268
|
},
|
|
8059
8269
|
type: 'array',
|
|
@@ -11674,6 +11884,7 @@ const openapi = {
|
|
|
11674
11884
|
'tedee_lock',
|
|
11675
11885
|
'akiles_lock',
|
|
11676
11886
|
'ultraloq_lock',
|
|
11887
|
+
'yacan_lock',
|
|
11677
11888
|
'keyincode_lock',
|
|
11678
11889
|
'omnitec_lock',
|
|
11679
11890
|
'kisi_lock',
|
|
@@ -13693,6 +13904,28 @@ const openapi = {
|
|
|
13693
13904
|
},
|
|
13694
13905
|
type: 'object',
|
|
13695
13906
|
},
|
|
13907
|
+
yacan_metadata: {
|
|
13908
|
+
description: 'Metadata for a Yacan device.',
|
|
13909
|
+
properties: {
|
|
13910
|
+
device_id: {
|
|
13911
|
+
description: 'Device ID for a Yacan device.',
|
|
13912
|
+
type: 'string',
|
|
13913
|
+
},
|
|
13914
|
+
device_name: {
|
|
13915
|
+
description: 'Device name for a Yacan device.',
|
|
13916
|
+
type: 'string',
|
|
13917
|
+
},
|
|
13918
|
+
device_type: {
|
|
13919
|
+
description: 'Device type for a Yacan device.',
|
|
13920
|
+
type: 'string',
|
|
13921
|
+
},
|
|
13922
|
+
serial_number: {
|
|
13923
|
+
description: 'Serial number for a Yacan device.',
|
|
13924
|
+
type: 'string',
|
|
13925
|
+
},
|
|
13926
|
+
},
|
|
13927
|
+
type: 'object',
|
|
13928
|
+
},
|
|
13696
13929
|
},
|
|
13697
13930
|
type: 'object',
|
|
13698
13931
|
'x-property-group-key': 'provider_metadata',
|
|
@@ -15535,6 +15768,7 @@ const openapi = {
|
|
|
15535
15768
|
'keyincode',
|
|
15536
15769
|
'dormakaba_ambiance',
|
|
15537
15770
|
'ultraloq',
|
|
15771
|
+
'yacan',
|
|
15538
15772
|
'dusaw',
|
|
15539
15773
|
'sifely',
|
|
15540
15774
|
'thirty_three_lock',
|
|
@@ -26092,6 +26326,41 @@ const openapi = {
|
|
|
26092
26326
|
],
|
|
26093
26327
|
type: 'object',
|
|
26094
26328
|
},
|
|
26329
|
+
{
|
|
26330
|
+
description: 'Indicates that the requested PIN code could not be used, so the access system assigned a different code. Give the guest the assigned code.',
|
|
26331
|
+
properties: {
|
|
26332
|
+
created_at: {
|
|
26333
|
+
description: 'Date and time at which Seam created the warning.',
|
|
26334
|
+
format: 'date-time',
|
|
26335
|
+
type: 'string',
|
|
26336
|
+
},
|
|
26337
|
+
message: {
|
|
26338
|
+
description: 'Detailed description of the warning. Provides insights into the issue and potentially how to rectify it.',
|
|
26339
|
+
type: 'string',
|
|
26340
|
+
},
|
|
26341
|
+
new_code: {
|
|
26342
|
+
description: 'The PIN code that was assigned instead.',
|
|
26343
|
+
type: 'string',
|
|
26344
|
+
},
|
|
26345
|
+
original_code: {
|
|
26346
|
+
description: 'The originally requested PIN code that could not be used.',
|
|
26347
|
+
type: 'string',
|
|
26348
|
+
},
|
|
26349
|
+
warning_code: {
|
|
26350
|
+
description: 'Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.',
|
|
26351
|
+
enum: ['requested_code_unavailable'],
|
|
26352
|
+
type: 'string',
|
|
26353
|
+
},
|
|
26354
|
+
},
|
|
26355
|
+
required: [
|
|
26356
|
+
'created_at',
|
|
26357
|
+
'message',
|
|
26358
|
+
'warning_code',
|
|
26359
|
+
'original_code',
|
|
26360
|
+
'new_code',
|
|
26361
|
+
],
|
|
26362
|
+
type: 'object',
|
|
26363
|
+
},
|
|
26095
26364
|
],
|
|
26096
26365
|
},
|
|
26097
26366
|
type: 'array',
|
|
@@ -29616,6 +29885,41 @@ const openapi = {
|
|
|
29616
29885
|
required: ['created_at', 'message', 'warning_code'],
|
|
29617
29886
|
type: 'object',
|
|
29618
29887
|
},
|
|
29888
|
+
{
|
|
29889
|
+
description: 'Indicates that the requested PIN code could not be used, so the access system assigned a different code. Give the guest the assigned code.',
|
|
29890
|
+
properties: {
|
|
29891
|
+
created_at: {
|
|
29892
|
+
description: 'Date and time at which Seam created the warning.',
|
|
29893
|
+
format: 'date-time',
|
|
29894
|
+
type: 'string',
|
|
29895
|
+
},
|
|
29896
|
+
message: {
|
|
29897
|
+
description: 'Detailed description of the warning. Provides insights into the issue and potentially how to rectify it.',
|
|
29898
|
+
type: 'string',
|
|
29899
|
+
},
|
|
29900
|
+
new_code: {
|
|
29901
|
+
description: 'The PIN code that was assigned instead.',
|
|
29902
|
+
type: 'string',
|
|
29903
|
+
},
|
|
29904
|
+
original_code: {
|
|
29905
|
+
description: 'The originally requested PIN code that could not be used.',
|
|
29906
|
+
type: 'string',
|
|
29907
|
+
},
|
|
29908
|
+
warning_code: {
|
|
29909
|
+
description: 'Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.',
|
|
29910
|
+
enum: ['requested_code_unavailable'],
|
|
29911
|
+
type: 'string',
|
|
29912
|
+
},
|
|
29913
|
+
},
|
|
29914
|
+
required: [
|
|
29915
|
+
'created_at',
|
|
29916
|
+
'message',
|
|
29917
|
+
'warning_code',
|
|
29918
|
+
'original_code',
|
|
29919
|
+
'new_code',
|
|
29920
|
+
],
|
|
29921
|
+
type: 'object',
|
|
29922
|
+
},
|
|
29619
29923
|
],
|
|
29620
29924
|
},
|
|
29621
29925
|
type: 'array',
|
|
@@ -30599,6 +30903,7 @@ const openapi = {
|
|
|
30599
30903
|
'tedee_lock',
|
|
30600
30904
|
'akiles_lock',
|
|
30601
30905
|
'ultraloq_lock',
|
|
30906
|
+
'yacan_lock',
|
|
30602
30907
|
'keyincode_lock',
|
|
30603
30908
|
'omnitec_lock',
|
|
30604
30909
|
'kisi_lock',
|
|
@@ -45653,6 +45958,7 @@ const openapi = {
|
|
|
45653
45958
|
'keyincode',
|
|
45654
45959
|
'dormakaba_ambiance',
|
|
45655
45960
|
'ultraloq',
|
|
45961
|
+
'yacan',
|
|
45656
45962
|
'dusaw',
|
|
45657
45963
|
'sifely',
|
|
45658
45964
|
'thirty_three_lock',
|
|
@@ -49668,6 +49974,7 @@ const openapi = {
|
|
|
49668
49974
|
'tedee_lock',
|
|
49669
49975
|
'akiles_lock',
|
|
49670
49976
|
'ultraloq_lock',
|
|
49977
|
+
'yacan_lock',
|
|
49671
49978
|
'keyincode_lock',
|
|
49672
49979
|
'omnitec_lock',
|
|
49673
49980
|
'kisi_lock',
|
|
@@ -49746,6 +50053,7 @@ const openapi = {
|
|
|
49746
50053
|
'tedee_lock',
|
|
49747
50054
|
'akiles_lock',
|
|
49748
50055
|
'ultraloq_lock',
|
|
50056
|
+
'yacan_lock',
|
|
49749
50057
|
'keyincode_lock',
|
|
49750
50058
|
'omnitec_lock',
|
|
49751
50059
|
'kisi_lock',
|
|
@@ -49847,6 +50155,7 @@ const openapi = {
|
|
|
49847
50155
|
'omnitec',
|
|
49848
50156
|
'kisi',
|
|
49849
50157
|
'slack',
|
|
50158
|
+
'yacan',
|
|
49850
50159
|
],
|
|
49851
50160
|
type: 'string',
|
|
49852
50161
|
},
|
|
@@ -50119,6 +50428,7 @@ const openapi = {
|
|
|
50119
50428
|
'tedee_lock',
|
|
50120
50429
|
'akiles_lock',
|
|
50121
50430
|
'ultraloq_lock',
|
|
50431
|
+
'yacan_lock',
|
|
50122
50432
|
'keyincode_lock',
|
|
50123
50433
|
'omnitec_lock',
|
|
50124
50434
|
'kisi_lock',
|
|
@@ -50193,6 +50503,7 @@ const openapi = {
|
|
|
50193
50503
|
'tedee_lock',
|
|
50194
50504
|
'akiles_lock',
|
|
50195
50505
|
'ultraloq_lock',
|
|
50506
|
+
'yacan_lock',
|
|
50196
50507
|
'keyincode_lock',
|
|
50197
50508
|
'omnitec_lock',
|
|
50198
50509
|
'kisi_lock',
|
|
@@ -50354,6 +50665,7 @@ const openapi = {
|
|
|
50354
50665
|
'omnitec',
|
|
50355
50666
|
'kisi',
|
|
50356
50667
|
'slack',
|
|
50668
|
+
'yacan',
|
|
50357
50669
|
],
|
|
50358
50670
|
type: 'string',
|
|
50359
50671
|
},
|
|
@@ -52439,6 +52751,7 @@ const openapi = {
|
|
|
52439
52751
|
'tedee_lock',
|
|
52440
52752
|
'akiles_lock',
|
|
52441
52753
|
'ultraloq_lock',
|
|
52754
|
+
'yacan_lock',
|
|
52442
52755
|
'keyincode_lock',
|
|
52443
52756
|
'omnitec_lock',
|
|
52444
52757
|
'kisi_lock',
|
|
@@ -52517,6 +52830,7 @@ const openapi = {
|
|
|
52517
52830
|
'tedee_lock',
|
|
52518
52831
|
'akiles_lock',
|
|
52519
52832
|
'ultraloq_lock',
|
|
52833
|
+
'yacan_lock',
|
|
52520
52834
|
'keyincode_lock',
|
|
52521
52835
|
'omnitec_lock',
|
|
52522
52836
|
'kisi_lock',
|
|
@@ -52618,6 +52932,7 @@ const openapi = {
|
|
|
52618
52932
|
'omnitec',
|
|
52619
52933
|
'kisi',
|
|
52620
52934
|
'slack',
|
|
52935
|
+
'yacan',
|
|
52621
52936
|
],
|
|
52622
52937
|
type: 'string',
|
|
52623
52938
|
},
|
|
@@ -52843,6 +53158,7 @@ const openapi = {
|
|
|
52843
53158
|
'tedee_lock',
|
|
52844
53159
|
'akiles_lock',
|
|
52845
53160
|
'ultraloq_lock',
|
|
53161
|
+
'yacan_lock',
|
|
52846
53162
|
'keyincode_lock',
|
|
52847
53163
|
'omnitec_lock',
|
|
52848
53164
|
'kisi_lock',
|
|
@@ -52917,6 +53233,7 @@ const openapi = {
|
|
|
52917
53233
|
'tedee_lock',
|
|
52918
53234
|
'akiles_lock',
|
|
52919
53235
|
'ultraloq_lock',
|
|
53236
|
+
'yacan_lock',
|
|
52920
53237
|
'keyincode_lock',
|
|
52921
53238
|
'omnitec_lock',
|
|
52922
53239
|
'kisi_lock',
|
|
@@ -53078,6 +53395,7 @@ const openapi = {
|
|
|
53078
53395
|
'omnitec',
|
|
53079
53396
|
'kisi',
|
|
53080
53397
|
'slack',
|
|
53398
|
+
'yacan',
|
|
53081
53399
|
],
|
|
53082
53400
|
type: 'string',
|
|
53083
53401
|
},
|
|
@@ -55103,6 +55421,7 @@ const openapi = {
|
|
|
55103
55421
|
'tedee_lock',
|
|
55104
55422
|
'akiles_lock',
|
|
55105
55423
|
'ultraloq_lock',
|
|
55424
|
+
'yacan_lock',
|
|
55106
55425
|
'keyincode_lock',
|
|
55107
55426
|
'omnitec_lock',
|
|
55108
55427
|
'kisi_lock',
|
|
@@ -55145,6 +55464,7 @@ const openapi = {
|
|
|
55145
55464
|
'tedee_lock',
|
|
55146
55465
|
'akiles_lock',
|
|
55147
55466
|
'ultraloq_lock',
|
|
55467
|
+
'yacan_lock',
|
|
55148
55468
|
'keyincode_lock',
|
|
55149
55469
|
'omnitec_lock',
|
|
55150
55470
|
'kisi_lock',
|
|
@@ -55193,6 +55513,7 @@ const openapi = {
|
|
|
55193
55513
|
'ultraloq',
|
|
55194
55514
|
'omnitec',
|
|
55195
55515
|
'kisi',
|
|
55516
|
+
'yacan',
|
|
55196
55517
|
],
|
|
55197
55518
|
type: 'string',
|
|
55198
55519
|
},
|
|
@@ -55290,6 +55611,7 @@ const openapi = {
|
|
|
55290
55611
|
'tedee_lock',
|
|
55291
55612
|
'akiles_lock',
|
|
55292
55613
|
'ultraloq_lock',
|
|
55614
|
+
'yacan_lock',
|
|
55293
55615
|
'keyincode_lock',
|
|
55294
55616
|
'omnitec_lock',
|
|
55295
55617
|
'kisi_lock',
|
|
@@ -55328,6 +55650,7 @@ const openapi = {
|
|
|
55328
55650
|
'tedee_lock',
|
|
55329
55651
|
'akiles_lock',
|
|
55330
55652
|
'ultraloq_lock',
|
|
55653
|
+
'yacan_lock',
|
|
55331
55654
|
'keyincode_lock',
|
|
55332
55655
|
'omnitec_lock',
|
|
55333
55656
|
'kisi_lock',
|
|
@@ -55372,6 +55695,7 @@ const openapi = {
|
|
|
55372
55695
|
'ultraloq',
|
|
55373
55696
|
'omnitec',
|
|
55374
55697
|
'kisi',
|
|
55698
|
+
'yacan',
|
|
55375
55699
|
],
|
|
55376
55700
|
type: 'string',
|
|
55377
55701
|
},
|