@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.
Files changed (29) hide show
  1. package/lib/seam/connect/models/acs/acs-credential.d.ts +96 -0
  2. package/lib/seam/connect/models/acs/acs-credential.js +13 -0
  3. package/lib/seam/connect/models/acs/acs-credential.js.map +1 -1
  4. package/lib/seam/connect/models/action-attempts/action-attempt.d.ts +239 -0
  5. package/lib/seam/connect/models/action-attempts/encode-credential.d.ts +86 -0
  6. package/lib/seam/connect/models/action-attempts/scan-credential.d.ts +110 -0
  7. package/lib/seam/connect/models/action-attempts/scan-to-assign-credential.d.ts +43 -0
  8. package/lib/seam/connect/models/devices/device-metadata.d.ts +28 -0
  9. package/lib/seam/connect/models/devices/device-metadata.js +21 -0
  10. package/lib/seam/connect/models/devices/device-metadata.js.map +1 -1
  11. package/lib/seam/connect/models/devices/device-provider.d.ts +2 -1
  12. package/lib/seam/connect/models/devices/device-provider.js +2 -1
  13. package/lib/seam/connect/models/devices/device-provider.js.map +1 -1
  14. package/lib/seam/connect/models/devices/device-type.d.ts +1 -0
  15. package/lib/seam/connect/models/devices/device-type.js +1 -0
  16. package/lib/seam/connect/models/devices/device-type.js.map +1 -1
  17. package/lib/seam/connect/models/devices/device.d.ts +43 -3
  18. package/lib/seam/connect/models/devices/unmanaged-device.d.ts +31 -3
  19. package/lib/seam/connect/models/phones/phone-session.d.ts +98 -0
  20. package/lib/seam/connect/openapi.js +324 -0
  21. package/lib/seam/connect/openapi.js.map +1 -1
  22. package/lib/seam/connect/route-types.d.ts +2356 -189
  23. package/package.json +1 -1
  24. package/src/lib/seam/connect/models/acs/acs-credential.ts +16 -0
  25. package/src/lib/seam/connect/models/devices/device-metadata.ts +22 -0
  26. package/src/lib/seam/connect/models/devices/device-provider.ts +2 -1
  27. package/src/lib/seam/connect/models/devices/device-type.ts +1 -0
  28. package/src/lib/seam/connect/openapi.ts +370 -0
  29. package/src/lib/seam/connect/route-types.ts +2794 -382
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@seamapi/types",
3
- "version": "1.998.0",
3
+ "version": "1.1000.0",
4
4
  "description": "TypeScript types for the Seam API.",
5
5
  "type": "module",
6
6
  "main": "index.js",
@@ -108,6 +108,20 @@ const needs_to_be_reissued = common_acs_credential_warning
108
108
  'Access permissions for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) have changed. [Reissue](https://docs.seam.co/low-level-apis/access-systems/working-with-card-encoders-and-scanners/creating-and-encoding-card-based-credentials) (re-encode) the credential. This issue may affect the proper functioning of the credential.',
109
109
  )
110
110
 
111
+ const requested_code_unavailable = common_acs_credential_warning
112
+ .extend({
113
+ warning_code: z
114
+ .literal('requested_code_unavailable')
115
+ .describe(warning_code_description),
116
+ original_code: z
117
+ .string()
118
+ .describe('The originally requested PIN code that could not be used.'),
119
+ new_code: z.string().describe('The PIN code that was assigned instead.'),
120
+ })
121
+ .describe(
122
+ 'Indicates that the requested PIN code could not be used, so the access system assigned a different code. Give the guest the assigned code.',
123
+ )
124
+
111
125
  const acs_credential_warning = z
112
126
  .discriminatedUnion('warning_code', [
113
127
  waiting_to_be_issued,
@@ -116,6 +130,7 @@ const acs_credential_warning = z
116
130
  being_deleted,
117
131
  unknown_issue_with_acs_credential,
118
132
  needs_to_be_reissued,
133
+ requested_code_unavailable,
119
134
  ])
120
135
  .describe(
121
136
  'Warning associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials).',
@@ -132,6 +147,7 @@ const _acs_credential_warning_map = z.object({
132
147
  .optional()
133
148
  .nullable(),
134
149
  needs_to_be_reissued: needs_to_be_reissued.optional().nullable(),
150
+ requested_code_unavailable: requested_code_unavailable.optional().nullable(),
135
151
  })
136
152
 
137
153
  export type AcsCredentialWarningMap = z.infer<
@@ -1101,6 +1101,28 @@ export const device_metadata = z
1101
1101
  .partial()
1102
1102
  .describe(`Metadata for an Ultraloq device.`),
1103
1103
 
1104
+ yacan_metadata: z
1105
+ .object({
1106
+ device_id: z
1107
+ .string()
1108
+ .optional()
1109
+ .describe(`Device ID for a Yacan device.`),
1110
+ device_name: z
1111
+ .string()
1112
+ .optional()
1113
+ .describe(`Device name for a Yacan device.`),
1114
+ device_type: z
1115
+ .string()
1116
+ .optional()
1117
+ .describe(`Device type for a Yacan device.`),
1118
+ serial_number: z
1119
+ .string()
1120
+ .optional()
1121
+ .describe(`Serial number for a Yacan device.`),
1122
+ })
1123
+ .partial()
1124
+ .describe(`Metadata for a Yacan device.`),
1125
+
1104
1126
  ring_metadata: z
1105
1127
  .object({
1106
1128
  device_id: z
@@ -55,6 +55,7 @@ export const DEVICE_PROVIDERS = {
55
55
  KEYINCODE: 'keyincode',
56
56
  DORMAKABA_AMBIANCE: 'dormakaba_ambiance',
57
57
  ULTRALOQ: 'ultraloq',
58
+ YACAN: 'yacan',
58
59
  DUSAW: 'dusaw',
59
60
  SIFELY: 'sifely',
60
61
  THIRTY_THREE_LOCK: 'thirty_three_lock',
@@ -146,7 +147,7 @@ export const PROVIDER_CATEGORY_MAP = {
146
147
  'thirty_three_lock',
147
148
  ],
148
149
 
149
- beta: ['salto_ks_accept', 'aqara'],
150
+ beta: ['salto_ks_accept', 'aqara', 'yacan'],
150
151
 
151
152
  thermostats: ['ecobee', 'nest', 'sensi', 'honeywell_resideo', 'first_alert'],
152
153
  noise_sensors: ['minut', 'noiseaware'],
@@ -28,6 +28,7 @@ export const LOCK_DEVICE_TYPE = {
28
28
  TEDEE_LOCK: 'tedee_lock',
29
29
  AKILES_LOCK: 'akiles_lock',
30
30
  ULTRALOQ_LOCK: 'ultraloq_lock',
31
+ YACAN_LOCK: 'yacan_lock',
31
32
  KEYINCODE_LOCK: 'keyincode_lock',
32
33
  OMNITEC_LOCK: 'omnitec_lock',
33
34
  KISI_LOCK: 'kisi_lock',
@@ -3701,6 +3701,46 @@ const openapi: OpenAPISpec = {
3701
3701
  required: ['created_at', 'message', 'warning_code'],
3702
3702
  type: 'object',
3703
3703
  },
3704
+ {
3705
+ description:
3706
+ 'Indicates that the requested PIN code could not be used, so the access system assigned a different code. Give the guest the assigned code.',
3707
+ properties: {
3708
+ created_at: {
3709
+ description:
3710
+ 'Date and time at which Seam created the warning.',
3711
+ format: 'date-time',
3712
+ type: 'string',
3713
+ },
3714
+ message: {
3715
+ description:
3716
+ 'Detailed description of the warning. Provides insights into the issue and potentially how to rectify it.',
3717
+ type: 'string',
3718
+ },
3719
+ new_code: {
3720
+ description: 'The PIN code that was assigned instead.',
3721
+ type: 'string',
3722
+ },
3723
+ original_code: {
3724
+ description:
3725
+ 'The originally requested PIN code that could not be used.',
3726
+ type: 'string',
3727
+ },
3728
+ warning_code: {
3729
+ description:
3730
+ 'Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.',
3731
+ enum: ['requested_code_unavailable'],
3732
+ type: 'string',
3733
+ },
3734
+ },
3735
+ required: [
3736
+ 'created_at',
3737
+ 'message',
3738
+ 'warning_code',
3739
+ 'original_code',
3740
+ 'new_code',
3741
+ ],
3742
+ type: 'object',
3743
+ },
3704
3744
  ],
3705
3745
  },
3706
3746
  type: 'array',
@@ -6767,6 +6807,47 @@ const openapi: OpenAPISpec = {
6767
6807
  ],
6768
6808
  type: 'object',
6769
6809
  },
6810
+ {
6811
+ description:
6812
+ 'Indicates that the requested PIN code could not be used, so the access system assigned a different code. Give the guest the assigned code.',
6813
+ properties: {
6814
+ created_at: {
6815
+ description:
6816
+ 'Date and time at which Seam created the warning.',
6817
+ format: 'date-time',
6818
+ type: 'string',
6819
+ },
6820
+ message: {
6821
+ description:
6822
+ 'Detailed description of the warning. Provides insights into the issue and potentially how to rectify it.',
6823
+ type: 'string',
6824
+ },
6825
+ new_code: {
6826
+ description:
6827
+ 'The PIN code that was assigned instead.',
6828
+ type: 'string',
6829
+ },
6830
+ original_code: {
6831
+ description:
6832
+ 'The originally requested PIN code that could not be used.',
6833
+ type: 'string',
6834
+ },
6835
+ warning_code: {
6836
+ description:
6837
+ 'Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.',
6838
+ enum: ['requested_code_unavailable'],
6839
+ type: 'string',
6840
+ },
6841
+ },
6842
+ required: [
6843
+ 'created_at',
6844
+ 'message',
6845
+ 'warning_code',
6846
+ 'original_code',
6847
+ 'new_code',
6848
+ ],
6849
+ type: 'object',
6850
+ },
6770
6851
  ],
6771
6852
  },
6772
6853
  type: 'array',
@@ -7245,6 +7326,47 @@ const openapi: OpenAPISpec = {
7245
7326
  ],
7246
7327
  type: 'object',
7247
7328
  },
7329
+ {
7330
+ description:
7331
+ 'Indicates that the requested PIN code could not be used, so the access system assigned a different code. Give the guest the assigned code.',
7332
+ properties: {
7333
+ created_at: {
7334
+ description:
7335
+ 'Date and time at which Seam created the warning.',
7336
+ format: 'date-time',
7337
+ type: 'string',
7338
+ },
7339
+ message: {
7340
+ description:
7341
+ 'Detailed description of the warning. Provides insights into the issue and potentially how to rectify it.',
7342
+ type: 'string',
7343
+ },
7344
+ new_code: {
7345
+ description:
7346
+ 'The PIN code that was assigned instead.',
7347
+ type: 'string',
7348
+ },
7349
+ original_code: {
7350
+ description:
7351
+ 'The originally requested PIN code that could not be used.',
7352
+ type: 'string',
7353
+ },
7354
+ warning_code: {
7355
+ description:
7356
+ 'Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.',
7357
+ enum: ['requested_code_unavailable'],
7358
+ type: 'string',
7359
+ },
7360
+ },
7361
+ required: [
7362
+ 'created_at',
7363
+ 'message',
7364
+ 'warning_code',
7365
+ 'original_code',
7366
+ 'new_code',
7367
+ ],
7368
+ type: 'object',
7369
+ },
7248
7370
  ],
7249
7371
  },
7250
7372
  type: 'array',
@@ -7982,6 +8104,47 @@ const openapi: OpenAPISpec = {
7982
8104
  ],
7983
8105
  type: 'object',
7984
8106
  },
8107
+ {
8108
+ description:
8109
+ 'Indicates that the requested PIN code could not be used, so the access system assigned a different code. Give the guest the assigned code.',
8110
+ properties: {
8111
+ created_at: {
8112
+ description:
8113
+ 'Date and time at which Seam created the warning.',
8114
+ format: 'date-time',
8115
+ type: 'string',
8116
+ },
8117
+ message: {
8118
+ description:
8119
+ 'Detailed description of the warning. Provides insights into the issue and potentially how to rectify it.',
8120
+ type: 'string',
8121
+ },
8122
+ new_code: {
8123
+ description:
8124
+ 'The PIN code that was assigned instead.',
8125
+ type: 'string',
8126
+ },
8127
+ original_code: {
8128
+ description:
8129
+ 'The originally requested PIN code that could not be used.',
8130
+ type: 'string',
8131
+ },
8132
+ warning_code: {
8133
+ description:
8134
+ 'Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.',
8135
+ enum: ['requested_code_unavailable'],
8136
+ type: 'string',
8137
+ },
8138
+ },
8139
+ required: [
8140
+ 'created_at',
8141
+ 'message',
8142
+ 'warning_code',
8143
+ 'original_code',
8144
+ 'new_code',
8145
+ ],
8146
+ type: 'object',
8147
+ },
7985
8148
  ],
7986
8149
  },
7987
8150
  type: 'array',
@@ -8457,6 +8620,47 @@ const openapi: OpenAPISpec = {
8457
8620
  ],
8458
8621
  type: 'object',
8459
8622
  },
8623
+ {
8624
+ description:
8625
+ 'Indicates that the requested PIN code could not be used, so the access system assigned a different code. Give the guest the assigned code.',
8626
+ properties: {
8627
+ created_at: {
8628
+ description:
8629
+ 'Date and time at which Seam created the warning.',
8630
+ format: 'date-time',
8631
+ type: 'string',
8632
+ },
8633
+ message: {
8634
+ description:
8635
+ 'Detailed description of the warning. Provides insights into the issue and potentially how to rectify it.',
8636
+ type: 'string',
8637
+ },
8638
+ new_code: {
8639
+ description:
8640
+ 'The PIN code that was assigned instead.',
8641
+ type: 'string',
8642
+ },
8643
+ original_code: {
8644
+ description:
8645
+ 'The originally requested PIN code that could not be used.',
8646
+ type: 'string',
8647
+ },
8648
+ warning_code: {
8649
+ description:
8650
+ 'Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.',
8651
+ enum: ['requested_code_unavailable'],
8652
+ type: 'string',
8653
+ },
8654
+ },
8655
+ required: [
8656
+ 'created_at',
8657
+ 'message',
8658
+ 'warning_code',
8659
+ 'original_code',
8660
+ 'new_code',
8661
+ ],
8662
+ type: 'object',
8663
+ },
8460
8664
  ],
8461
8665
  },
8462
8666
  type: 'array',
@@ -9206,6 +9410,47 @@ const openapi: OpenAPISpec = {
9206
9410
  required: ['created_at', 'message', 'warning_code'],
9207
9411
  type: 'object',
9208
9412
  },
9413
+ {
9414
+ description:
9415
+ 'Indicates that the requested PIN code could not be used, so the access system assigned a different code. Give the guest the assigned code.',
9416
+ properties: {
9417
+ created_at: {
9418
+ description:
9419
+ 'Date and time at which Seam created the warning.',
9420
+ format: 'date-time',
9421
+ type: 'string',
9422
+ },
9423
+ message: {
9424
+ description:
9425
+ 'Detailed description of the warning. Provides insights into the issue and potentially how to rectify it.',
9426
+ type: 'string',
9427
+ },
9428
+ new_code: {
9429
+ description:
9430
+ 'The PIN code that was assigned instead.',
9431
+ type: 'string',
9432
+ },
9433
+ original_code: {
9434
+ description:
9435
+ 'The originally requested PIN code that could not be used.',
9436
+ type: 'string',
9437
+ },
9438
+ warning_code: {
9439
+ description:
9440
+ 'Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.',
9441
+ enum: ['requested_code_unavailable'],
9442
+ type: 'string',
9443
+ },
9444
+ },
9445
+ required: [
9446
+ 'created_at',
9447
+ 'message',
9448
+ 'warning_code',
9449
+ 'original_code',
9450
+ 'new_code',
9451
+ ],
9452
+ type: 'object',
9453
+ },
9209
9454
  ],
9210
9455
  },
9211
9456
  type: 'array',
@@ -13194,6 +13439,7 @@ const openapi: OpenAPISpec = {
13194
13439
  'tedee_lock',
13195
13440
  'akiles_lock',
13196
13441
  'ultraloq_lock',
13442
+ 'yacan_lock',
13197
13443
  'keyincode_lock',
13198
13444
  'omnitec_lock',
13199
13445
  'kisi_lock',
@@ -15438,6 +15684,28 @@ const openapi: OpenAPISpec = {
15438
15684
  },
15439
15685
  type: 'object',
15440
15686
  },
15687
+ yacan_metadata: {
15688
+ description: 'Metadata for a Yacan device.',
15689
+ properties: {
15690
+ device_id: {
15691
+ description: 'Device ID for a Yacan device.',
15692
+ type: 'string',
15693
+ },
15694
+ device_name: {
15695
+ description: 'Device name for a Yacan device.',
15696
+ type: 'string',
15697
+ },
15698
+ device_type: {
15699
+ description: 'Device type for a Yacan device.',
15700
+ type: 'string',
15701
+ },
15702
+ serial_number: {
15703
+ description: 'Serial number for a Yacan device.',
15704
+ type: 'string',
15705
+ },
15706
+ },
15707
+ type: 'object',
15708
+ },
15441
15709
  },
15442
15710
  type: 'object',
15443
15711
  'x-property-group-key': 'provider_metadata',
@@ -17576,6 +17844,7 @@ const openapi: OpenAPISpec = {
17576
17844
  'keyincode',
17577
17845
  'dormakaba_ambiance',
17578
17846
  'ultraloq',
17847
+ 'yacan',
17579
17848
  'dusaw',
17580
17849
  'sifely',
17581
17850
  'thirty_three_lock',
@@ -29117,6 +29386,47 @@ const openapi: OpenAPISpec = {
29117
29386
  ],
29118
29387
  type: 'object',
29119
29388
  },
29389
+ {
29390
+ description:
29391
+ 'Indicates that the requested PIN code could not be used, so the access system assigned a different code. Give the guest the assigned code.',
29392
+ properties: {
29393
+ created_at: {
29394
+ description:
29395
+ 'Date and time at which Seam created the warning.',
29396
+ format: 'date-time',
29397
+ type: 'string',
29398
+ },
29399
+ message: {
29400
+ description:
29401
+ 'Detailed description of the warning. Provides insights into the issue and potentially how to rectify it.',
29402
+ type: 'string',
29403
+ },
29404
+ new_code: {
29405
+ description:
29406
+ 'The PIN code that was assigned instead.',
29407
+ type: 'string',
29408
+ },
29409
+ original_code: {
29410
+ description:
29411
+ 'The originally requested PIN code that could not be used.',
29412
+ type: 'string',
29413
+ },
29414
+ warning_code: {
29415
+ description:
29416
+ 'Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.',
29417
+ enum: ['requested_code_unavailable'],
29418
+ type: 'string',
29419
+ },
29420
+ },
29421
+ required: [
29422
+ 'created_at',
29423
+ 'message',
29424
+ 'warning_code',
29425
+ 'original_code',
29426
+ 'new_code',
29427
+ ],
29428
+ type: 'object',
29429
+ },
29120
29430
  ],
29121
29431
  },
29122
29432
  type: 'array',
@@ -33096,6 +33406,46 @@ const openapi: OpenAPISpec = {
33096
33406
  required: ['created_at', 'message', 'warning_code'],
33097
33407
  type: 'object',
33098
33408
  },
33409
+ {
33410
+ description:
33411
+ 'Indicates that the requested PIN code could not be used, so the access system assigned a different code. Give the guest the assigned code.',
33412
+ properties: {
33413
+ created_at: {
33414
+ description:
33415
+ 'Date and time at which Seam created the warning.',
33416
+ format: 'date-time',
33417
+ type: 'string',
33418
+ },
33419
+ message: {
33420
+ description:
33421
+ 'Detailed description of the warning. Provides insights into the issue and potentially how to rectify it.',
33422
+ type: 'string',
33423
+ },
33424
+ new_code: {
33425
+ description: 'The PIN code that was assigned instead.',
33426
+ type: 'string',
33427
+ },
33428
+ original_code: {
33429
+ description:
33430
+ 'The originally requested PIN code that could not be used.',
33431
+ type: 'string',
33432
+ },
33433
+ warning_code: {
33434
+ description:
33435
+ 'Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.',
33436
+ enum: ['requested_code_unavailable'],
33437
+ type: 'string',
33438
+ },
33439
+ },
33440
+ required: [
33441
+ 'created_at',
33442
+ 'message',
33443
+ 'warning_code',
33444
+ 'original_code',
33445
+ 'new_code',
33446
+ ],
33447
+ type: 'object',
33448
+ },
33099
33449
  ],
33100
33450
  },
33101
33451
  type: 'array',
@@ -34200,6 +34550,7 @@ const openapi: OpenAPISpec = {
34200
34550
  'tedee_lock',
34201
34551
  'akiles_lock',
34202
34552
  'ultraloq_lock',
34553
+ 'yacan_lock',
34203
34554
  'keyincode_lock',
34204
34555
  'omnitec_lock',
34205
34556
  'kisi_lock',
@@ -50273,6 +50624,7 @@ const openapi: OpenAPISpec = {
50273
50624
  'keyincode',
50274
50625
  'dormakaba_ambiance',
50275
50626
  'ultraloq',
50627
+ 'yacan',
50276
50628
  'dusaw',
50277
50629
  'sifely',
50278
50630
  'thirty_three_lock',
@@ -54662,6 +55014,7 @@ const openapi: OpenAPISpec = {
54662
55014
  'tedee_lock',
54663
55015
  'akiles_lock',
54664
55016
  'ultraloq_lock',
55017
+ 'yacan_lock',
54665
55018
  'keyincode_lock',
54666
55019
  'omnitec_lock',
54667
55020
  'kisi_lock',
@@ -54741,6 +55094,7 @@ const openapi: OpenAPISpec = {
54741
55094
  'tedee_lock',
54742
55095
  'akiles_lock',
54743
55096
  'ultraloq_lock',
55097
+ 'yacan_lock',
54744
55098
  'keyincode_lock',
54745
55099
  'omnitec_lock',
54746
55100
  'kisi_lock',
@@ -54842,6 +55196,7 @@ const openapi: OpenAPISpec = {
54842
55196
  'omnitec',
54843
55197
  'kisi',
54844
55198
  'slack',
55199
+ 'yacan',
54845
55200
  ],
54846
55201
  type: 'string',
54847
55202
  },
@@ -55131,6 +55486,7 @@ const openapi: OpenAPISpec = {
55131
55486
  'tedee_lock',
55132
55487
  'akiles_lock',
55133
55488
  'ultraloq_lock',
55489
+ 'yacan_lock',
55134
55490
  'keyincode_lock',
55135
55491
  'omnitec_lock',
55136
55492
  'kisi_lock',
@@ -55208,6 +55564,7 @@ const openapi: OpenAPISpec = {
55208
55564
  'tedee_lock',
55209
55565
  'akiles_lock',
55210
55566
  'ultraloq_lock',
55567
+ 'yacan_lock',
55211
55568
  'keyincode_lock',
55212
55569
  'omnitec_lock',
55213
55570
  'kisi_lock',
@@ -55373,6 +55730,7 @@ const openapi: OpenAPISpec = {
55373
55730
  'omnitec',
55374
55731
  'kisi',
55375
55732
  'slack',
55733
+ 'yacan',
55376
55734
  ],
55377
55735
  type: 'string',
55378
55736
  },
@@ -57488,6 +57846,7 @@ const openapi: OpenAPISpec = {
57488
57846
  'tedee_lock',
57489
57847
  'akiles_lock',
57490
57848
  'ultraloq_lock',
57849
+ 'yacan_lock',
57491
57850
  'keyincode_lock',
57492
57851
  'omnitec_lock',
57493
57852
  'kisi_lock',
@@ -57567,6 +57926,7 @@ const openapi: OpenAPISpec = {
57567
57926
  'tedee_lock',
57568
57927
  'akiles_lock',
57569
57928
  'ultraloq_lock',
57929
+ 'yacan_lock',
57570
57930
  'keyincode_lock',
57571
57931
  'omnitec_lock',
57572
57932
  'kisi_lock',
@@ -57668,6 +58028,7 @@ const openapi: OpenAPISpec = {
57668
58028
  'omnitec',
57669
58029
  'kisi',
57670
58030
  'slack',
58031
+ 'yacan',
57671
58032
  ],
57672
58033
  type: 'string',
57673
58034
  },
@@ -57906,6 +58267,7 @@ const openapi: OpenAPISpec = {
57906
58267
  'tedee_lock',
57907
58268
  'akiles_lock',
57908
58269
  'ultraloq_lock',
58270
+ 'yacan_lock',
57909
58271
  'keyincode_lock',
57910
58272
  'omnitec_lock',
57911
58273
  'kisi_lock',
@@ -57983,6 +58345,7 @@ const openapi: OpenAPISpec = {
57983
58345
  'tedee_lock',
57984
58346
  'akiles_lock',
57985
58347
  'ultraloq_lock',
58348
+ 'yacan_lock',
57986
58349
  'keyincode_lock',
57987
58350
  'omnitec_lock',
57988
58351
  'kisi_lock',
@@ -58148,6 +58511,7 @@ const openapi: OpenAPISpec = {
58148
58511
  'omnitec',
58149
58512
  'kisi',
58150
58513
  'slack',
58514
+ 'yacan',
58151
58515
  ],
58152
58516
  type: 'string',
58153
58517
  },
@@ -60261,6 +60625,7 @@ const openapi: OpenAPISpec = {
60261
60625
  'tedee_lock',
60262
60626
  'akiles_lock',
60263
60627
  'ultraloq_lock',
60628
+ 'yacan_lock',
60264
60629
  'keyincode_lock',
60265
60630
  'omnitec_lock',
60266
60631
  'kisi_lock',
@@ -60303,6 +60668,7 @@ const openapi: OpenAPISpec = {
60303
60668
  'tedee_lock',
60304
60669
  'akiles_lock',
60305
60670
  'ultraloq_lock',
60671
+ 'yacan_lock',
60306
60672
  'keyincode_lock',
60307
60673
  'omnitec_lock',
60308
60674
  'kisi_lock',
@@ -60351,6 +60717,7 @@ const openapi: OpenAPISpec = {
60351
60717
  'ultraloq',
60352
60718
  'omnitec',
60353
60719
  'kisi',
60720
+ 'yacan',
60354
60721
  ],
60355
60722
  type: 'string',
60356
60723
  },
@@ -60453,6 +60820,7 @@ const openapi: OpenAPISpec = {
60453
60820
  'tedee_lock',
60454
60821
  'akiles_lock',
60455
60822
  'ultraloq_lock',
60823
+ 'yacan_lock',
60456
60824
  'keyincode_lock',
60457
60825
  'omnitec_lock',
60458
60826
  'kisi_lock',
@@ -60492,6 +60860,7 @@ const openapi: OpenAPISpec = {
60492
60860
  'tedee_lock',
60493
60861
  'akiles_lock',
60494
60862
  'ultraloq_lock',
60863
+ 'yacan_lock',
60495
60864
  'keyincode_lock',
60496
60865
  'omnitec_lock',
60497
60866
  'kisi_lock',
@@ -60537,6 +60906,7 @@ const openapi: OpenAPISpec = {
60537
60906
  'ultraloq',
60538
60907
  'omnitec',
60539
60908
  'kisi',
60909
+ 'yacan',
60540
60910
  ],
60541
60911
  type: 'string',
60542
60912
  },