@seamapi/types 1.868.0 → 1.870.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.
@@ -330,6 +330,38 @@ const openapi: OpenAPISpec = {
330
330
  type: 'object',
331
331
  },
332
332
  {
333
+ description:
334
+ 'Indicates that the provider cannot confirm whether the access code was set or removed on the device.',
335
+ properties: {
336
+ created_at: {
337
+ description:
338
+ 'Date and time at which Seam created the error.',
339
+ format: 'date-time',
340
+ type: 'string',
341
+ },
342
+ error_code: {
343
+ description:
344
+ 'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
345
+ enum: ['access_code_state_unconfirmed'],
346
+ type: 'string',
347
+ },
348
+ is_access_code_error: {
349
+ description:
350
+ 'Indicates that this is an access code error.',
351
+ enum: [true],
352
+ type: 'boolean',
353
+ },
354
+ message: {
355
+ description:
356
+ 'Detailed description of the error. Provides insights into the issue and potentially how to rectify it.',
357
+ type: 'string',
358
+ },
359
+ },
360
+ required: ['message', 'is_access_code_error', 'error_code'],
361
+ type: 'object',
362
+ },
363
+ {
364
+ deprecated: true,
333
365
  description:
334
366
  'Unable to confirm that the access code is set on Kwikset device.',
335
367
  properties: {
@@ -359,8 +391,11 @@ const openapi: OpenAPISpec = {
359
391
  },
360
392
  required: ['message', 'is_access_code_error', 'error_code'],
361
393
  type: 'object',
394
+ 'x-deprecated':
395
+ 'Use `access_code_state_unconfirmed` instead.',
362
396
  },
363
397
  {
398
+ deprecated: true,
364
399
  description:
365
400
  'Unable to confirm the deletion of the access code on Kwikset device.',
366
401
  properties: {
@@ -390,6 +425,8 @@ const openapi: OpenAPISpec = {
390
425
  },
391
426
  required: ['message', 'is_access_code_error', 'error_code'],
392
427
  type: 'object',
428
+ 'x-deprecated':
429
+ 'Use `access_code_state_unconfirmed` instead.',
393
430
  },
394
431
  {
395
432
  description:
@@ -543,6 +580,7 @@ const openapi: OpenAPISpec = {
543
580
  type: 'object',
544
581
  },
545
582
  {
583
+ deprecated: true,
546
584
  description: 'Duplicate access code name detected.',
547
585
  properties: {
548
586
  created_at: {
@@ -571,8 +609,10 @@ const openapi: OpenAPISpec = {
571
609
  },
572
610
  required: ['message', 'is_access_code_error', 'error_code'],
573
611
  type: 'object',
612
+ 'x-deprecated': 'Use `duplicate_code_on_device` instead.',
574
613
  },
575
614
  {
615
+ deprecated: true,
576
616
  description: 'Potential duplicate access code detected.',
577
617
  properties: {
578
618
  created_at: {
@@ -601,6 +641,7 @@ const openapi: OpenAPISpec = {
601
641
  },
602
642
  required: ['message', 'is_access_code_error', 'error_code'],
603
643
  type: 'object',
644
+ 'x-deprecated': 'Use `duplicate_code_on_device` instead.',
604
645
  },
605
646
  {
606
647
  description:
@@ -1671,6 +1712,7 @@ const openapi: OpenAPISpec = {
1671
1712
  type: 'object',
1672
1713
  },
1673
1714
  {
1715
+ deprecated: true,
1674
1716
  description: 'Duplicate access code detected.',
1675
1717
  properties: {
1676
1718
  created_at: {
@@ -1693,6 +1735,8 @@ const openapi: OpenAPISpec = {
1693
1735
  },
1694
1736
  required: ['message', 'warning_code'],
1695
1737
  type: 'object',
1738
+ 'x-deprecated':
1739
+ 'Use `duplicate_code_on_device` error instead.',
1696
1740
  },
1697
1741
  {
1698
1742
  description:
@@ -1941,6 +1985,32 @@ const openapi: OpenAPISpec = {
1941
1985
  type: 'object',
1942
1986
  },
1943
1987
  {
1988
+ description:
1989
+ 'Indicates that the access code is disabled or inactive on the device. The code exists but will not grant access until re-enabled.',
1990
+ properties: {
1991
+ created_at: {
1992
+ description:
1993
+ 'Date and time at which Seam created the warning.',
1994
+ format: 'date-time',
1995
+ type: 'string',
1996
+ },
1997
+ message: {
1998
+ description:
1999
+ 'Detailed description of the warning. Provides insights into the issue and potentially how to rectify it.',
2000
+ type: 'string',
2001
+ },
2002
+ warning_code: {
2003
+ description:
2004
+ 'Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.',
2005
+ enum: ['access_code_inactive'],
2006
+ type: 'string',
2007
+ },
2008
+ },
2009
+ required: ['message', 'warning_code'],
2010
+ type: 'object',
2011
+ },
2012
+ {
2013
+ deprecated: true,
1944
2014
  description:
1945
2015
  'Access code is disabled on Ultraloq device. Re-enable through the Ultraloq mobile app.',
1946
2016
  properties: {
@@ -1964,6 +2034,7 @@ const openapi: OpenAPISpec = {
1964
2034
  },
1965
2035
  required: ['message', 'warning_code'],
1966
2036
  type: 'object',
2037
+ 'x-deprecated': 'Use `access_code_inactive` instead.',
1967
2038
  },
1968
2039
  {
1969
2040
  description:
@@ -27568,6 +27639,38 @@ const openapi: OpenAPISpec = {
27568
27639
  type: 'object',
27569
27640
  },
27570
27641
  {
27642
+ description:
27643
+ 'Indicates that the provider cannot confirm whether the access code was set or removed on the device.',
27644
+ properties: {
27645
+ created_at: {
27646
+ description:
27647
+ 'Date and time at which Seam created the error.',
27648
+ format: 'date-time',
27649
+ type: 'string',
27650
+ },
27651
+ error_code: {
27652
+ description:
27653
+ 'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
27654
+ enum: ['access_code_state_unconfirmed'],
27655
+ type: 'string',
27656
+ },
27657
+ is_access_code_error: {
27658
+ description:
27659
+ 'Indicates that this is an access code error.',
27660
+ enum: [true],
27661
+ type: 'boolean',
27662
+ },
27663
+ message: {
27664
+ description:
27665
+ 'Detailed description of the error. Provides insights into the issue and potentially how to rectify it.',
27666
+ type: 'string',
27667
+ },
27668
+ },
27669
+ required: ['message', 'is_access_code_error', 'error_code'],
27670
+ type: 'object',
27671
+ },
27672
+ {
27673
+ deprecated: true,
27571
27674
  description:
27572
27675
  'Unable to confirm that the access code is set on Kwikset device.',
27573
27676
  properties: {
@@ -27597,8 +27700,11 @@ const openapi: OpenAPISpec = {
27597
27700
  },
27598
27701
  required: ['message', 'is_access_code_error', 'error_code'],
27599
27702
  type: 'object',
27703
+ 'x-deprecated':
27704
+ 'Use `access_code_state_unconfirmed` instead.',
27600
27705
  },
27601
27706
  {
27707
+ deprecated: true,
27602
27708
  description:
27603
27709
  'Unable to confirm the deletion of the access code on Kwikset device.',
27604
27710
  properties: {
@@ -27628,6 +27734,8 @@ const openapi: OpenAPISpec = {
27628
27734
  },
27629
27735
  required: ['message', 'is_access_code_error', 'error_code'],
27630
27736
  type: 'object',
27737
+ 'x-deprecated':
27738
+ 'Use `access_code_state_unconfirmed` instead.',
27631
27739
  },
27632
27740
  {
27633
27741
  description:
@@ -27781,6 +27889,7 @@ const openapi: OpenAPISpec = {
27781
27889
  type: 'object',
27782
27890
  },
27783
27891
  {
27892
+ deprecated: true,
27784
27893
  description: 'Duplicate access code name detected.',
27785
27894
  properties: {
27786
27895
  created_at: {
@@ -27809,8 +27918,10 @@ const openapi: OpenAPISpec = {
27809
27918
  },
27810
27919
  required: ['message', 'is_access_code_error', 'error_code'],
27811
27920
  type: 'object',
27921
+ 'x-deprecated': 'Use `duplicate_code_on_device` instead.',
27812
27922
  },
27813
27923
  {
27924
+ deprecated: true,
27814
27925
  description: 'Potential duplicate access code detected.',
27815
27926
  properties: {
27816
27927
  created_at: {
@@ -27839,6 +27950,7 @@ const openapi: OpenAPISpec = {
27839
27950
  },
27840
27951
  required: ['message', 'is_access_code_error', 'error_code'],
27841
27952
  type: 'object',
27953
+ 'x-deprecated': 'Use `duplicate_code_on_device` instead.',
27842
27954
  },
27843
27955
  {
27844
27956
  description:
@@ -28598,6 +28710,7 @@ const openapi: OpenAPISpec = {
28598
28710
  type: 'object',
28599
28711
  },
28600
28712
  {
28713
+ deprecated: true,
28601
28714
  description: 'Duplicate access code detected.',
28602
28715
  properties: {
28603
28716
  created_at: {
@@ -28620,6 +28733,8 @@ const openapi: OpenAPISpec = {
28620
28733
  },
28621
28734
  required: ['message', 'warning_code'],
28622
28735
  type: 'object',
28736
+ 'x-deprecated':
28737
+ 'Use `duplicate_code_on_device` error instead.',
28623
28738
  },
28624
28739
  {
28625
28740
  description:
@@ -28868,6 +28983,32 @@ const openapi: OpenAPISpec = {
28868
28983
  type: 'object',
28869
28984
  },
28870
28985
  {
28986
+ description:
28987
+ 'Indicates that the access code is disabled or inactive on the device. The code exists but will not grant access until re-enabled.',
28988
+ properties: {
28989
+ created_at: {
28990
+ description:
28991
+ 'Date and time at which Seam created the warning.',
28992
+ format: 'date-time',
28993
+ type: 'string',
28994
+ },
28995
+ message: {
28996
+ description:
28997
+ 'Detailed description of the warning. Provides insights into the issue and potentially how to rectify it.',
28998
+ type: 'string',
28999
+ },
29000
+ warning_code: {
29001
+ description:
29002
+ 'Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.',
29003
+ enum: ['access_code_inactive'],
29004
+ type: 'string',
29005
+ },
29006
+ },
29007
+ required: ['message', 'warning_code'],
29008
+ type: 'object',
29009
+ },
29010
+ {
29011
+ deprecated: true,
28871
29012
  description:
28872
29013
  'Access code is disabled on Ultraloq device. Re-enable through the Ultraloq mobile app.',
28873
29014
  properties: {
@@ -28891,6 +29032,7 @@ const openapi: OpenAPISpec = {
28891
29032
  },
28892
29033
  required: ['message', 'warning_code'],
28893
29034
  type: 'object',
29035
+ 'x-deprecated': 'Use `access_code_inactive` instead.',
28894
29036
  },
28895
29037
  {
28896
29038
  description:
@@ -1904,6 +1904,16 @@ export type Routes = {
1904
1904
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
1905
1905
  error_code: 'no_space_for_access_code_on_device'
1906
1906
  }
1907
+ | {
1908
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
1909
+ message: string
1910
+ /** Indicates that this is an access code error. */
1911
+ is_access_code_error: true
1912
+ /** Date and time at which Seam created the error. */
1913
+ created_at?: string | undefined
1914
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
1915
+ error_code: 'access_code_state_unconfirmed'
1916
+ }
1907
1917
  | {
1908
1918
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
1909
1919
  message: string
@@ -2289,6 +2299,14 @@ export type Routes = {
2289
2299
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
2290
2300
  warning_code: 'kwikset_unable_to_confirm_code'
2291
2301
  }
2302
+ | {
2303
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
2304
+ message: string
2305
+ /** Date and time at which Seam created the warning. */
2306
+ created_at?: string | undefined
2307
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
2308
+ warning_code: 'access_code_inactive'
2309
+ }
2292
2310
  | {
2293
2311
  /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
2294
2312
  message: string
@@ -2581,6 +2599,16 @@ export type Routes = {
2581
2599
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
2582
2600
  error_code: 'no_space_for_access_code_on_device'
2583
2601
  }
2602
+ | {
2603
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
2604
+ message: string
2605
+ /** Indicates that this is an access code error. */
2606
+ is_access_code_error: true
2607
+ /** Date and time at which Seam created the error. */
2608
+ created_at?: string | undefined
2609
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
2610
+ error_code: 'access_code_state_unconfirmed'
2611
+ }
2584
2612
  | {
2585
2613
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
2586
2614
  message: string
@@ -2966,6 +2994,14 @@ export type Routes = {
2966
2994
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
2967
2995
  warning_code: 'kwikset_unable_to_confirm_code'
2968
2996
  }
2997
+ | {
2998
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
2999
+ message: string
3000
+ /** Date and time at which Seam created the warning. */
3001
+ created_at?: string | undefined
3002
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
3003
+ warning_code: 'access_code_inactive'
3004
+ }
2969
3005
  | {
2970
3006
  /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
2971
3007
  message: string
@@ -5030,6 +5066,16 @@ export type Routes = {
5030
5066
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
5031
5067
  error_code: 'no_space_for_access_code_on_device'
5032
5068
  }
5069
+ | {
5070
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
5071
+ message: string
5072
+ /** Indicates that this is an access code error. */
5073
+ is_access_code_error: true
5074
+ /** Date and time at which Seam created the error. */
5075
+ created_at?: string | undefined
5076
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
5077
+ error_code: 'access_code_state_unconfirmed'
5078
+ }
5033
5079
  | {
5034
5080
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
5035
5081
  message: string
@@ -5415,6 +5461,14 @@ export type Routes = {
5415
5461
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
5416
5462
  warning_code: 'kwikset_unable_to_confirm_code'
5417
5463
  }
5464
+ | {
5465
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
5466
+ message: string
5467
+ /** Date and time at which Seam created the warning. */
5468
+ created_at?: string | undefined
5469
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
5470
+ warning_code: 'access_code_inactive'
5471
+ }
5418
5472
  | {
5419
5473
  /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
5420
5474
  message: string
@@ -5794,6 +5848,16 @@ export type Routes = {
5794
5848
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
5795
5849
  error_code: 'no_space_for_access_code_on_device'
5796
5850
  }
5851
+ | {
5852
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
5853
+ message: string
5854
+ /** Indicates that this is an access code error. */
5855
+ is_access_code_error: true
5856
+ /** Date and time at which Seam created the error. */
5857
+ created_at?: string | undefined
5858
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
5859
+ error_code: 'access_code_state_unconfirmed'
5860
+ }
5797
5861
  | {
5798
5862
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
5799
5863
  message: string
@@ -6179,6 +6243,14 @@ export type Routes = {
6179
6243
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
6180
6244
  warning_code: 'kwikset_unable_to_confirm_code'
6181
6245
  }
6246
+ | {
6247
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
6248
+ message: string
6249
+ /** Date and time at which Seam created the warning. */
6250
+ created_at?: string | undefined
6251
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
6252
+ warning_code: 'access_code_inactive'
6253
+ }
6182
6254
  | {
6183
6255
  /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
6184
6256
  message: string
@@ -6460,6 +6532,16 @@ export type Routes = {
6460
6532
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
6461
6533
  error_code: 'no_space_for_access_code_on_device'
6462
6534
  }
6535
+ | {
6536
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
6537
+ message: string
6538
+ /** Indicates that this is an access code error. */
6539
+ is_access_code_error: true
6540
+ /** Date and time at which Seam created the error. */
6541
+ created_at?: string | undefined
6542
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
6543
+ error_code: 'access_code_state_unconfirmed'
6544
+ }
6463
6545
  | {
6464
6546
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
6465
6547
  message: string
@@ -6845,6 +6927,14 @@ export type Routes = {
6845
6927
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
6846
6928
  warning_code: 'kwikset_unable_to_confirm_code'
6847
6929
  }
6930
+ | {
6931
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
6932
+ message: string
6933
+ /** Date and time at which Seam created the warning. */
6934
+ created_at?: string | undefined
6935
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
6936
+ warning_code: 'access_code_inactive'
6937
+ }
6848
6938
  | {
6849
6939
  /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
6850
6940
  message: string
@@ -7103,6 +7193,16 @@ export type Routes = {
7103
7193
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
7104
7194
  error_code: 'no_space_for_access_code_on_device'
7105
7195
  }
7196
+ | {
7197
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
7198
+ message: string
7199
+ /** Indicates that this is an access code error. */
7200
+ is_access_code_error: true
7201
+ /** Date and time at which Seam created the error. */
7202
+ created_at?: string | undefined
7203
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
7204
+ error_code: 'access_code_state_unconfirmed'
7205
+ }
7106
7206
  | {
7107
7207
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
7108
7208
  message: string
@@ -7488,6 +7588,14 @@ export type Routes = {
7488
7588
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
7489
7589
  warning_code: 'kwikset_unable_to_confirm_code'
7490
7590
  }
7591
+ | {
7592
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
7593
+ message: string
7594
+ /** Date and time at which Seam created the warning. */
7595
+ created_at?: string | undefined
7596
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
7597
+ warning_code: 'access_code_inactive'
7598
+ }
7491
7599
  | {
7492
7600
  /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
7493
7601
  message: string
@@ -7781,6 +7889,16 @@ export type Routes = {
7781
7889
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
7782
7890
  error_code: 'no_space_for_access_code_on_device'
7783
7891
  }
7892
+ | {
7893
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
7894
+ message: string
7895
+ /** Indicates that this is an access code error. */
7896
+ is_access_code_error: true
7897
+ /** Date and time at which Seam created the error. */
7898
+ created_at?: string | undefined
7899
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
7900
+ error_code: 'access_code_state_unconfirmed'
7901
+ }
7784
7902
  | {
7785
7903
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
7786
7904
  message: string
@@ -8166,6 +8284,14 @@ export type Routes = {
8166
8284
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
8167
8285
  warning_code: 'kwikset_unable_to_confirm_code'
8168
8286
  }
8287
+ | {
8288
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
8289
+ message: string
8290
+ /** Date and time at which Seam created the warning. */
8291
+ created_at?: string | undefined
8292
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
8293
+ warning_code: 'access_code_inactive'
8294
+ }
8169
8295
  | {
8170
8296
  /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
8171
8297
  message: string
@@ -10134,6 +10260,16 @@ export type Routes = {
10134
10260
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
10135
10261
  error_code: 'no_space_for_access_code_on_device'
10136
10262
  }
10263
+ | {
10264
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
10265
+ message: string
10266
+ /** Indicates that this is an access code error. */
10267
+ is_access_code_error: true
10268
+ /** Date and time at which Seam created the error. */
10269
+ created_at?: string | undefined
10270
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
10271
+ error_code: 'access_code_state_unconfirmed'
10272
+ }
10137
10273
  | {
10138
10274
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
10139
10275
  message: string
@@ -10519,6 +10655,14 @@ export type Routes = {
10519
10655
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
10520
10656
  warning_code: 'kwikset_unable_to_confirm_code'
10521
10657
  }
10658
+ | {
10659
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
10660
+ message: string
10661
+ /** Date and time at which Seam created the warning. */
10662
+ created_at?: string | undefined
10663
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
10664
+ warning_code: 'access_code_inactive'
10665
+ }
10522
10666
  | {
10523
10667
  /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
10524
10668
  message: string
@@ -10691,6 +10835,16 @@ export type Routes = {
10691
10835
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
10692
10836
  error_code: 'no_space_for_access_code_on_device'
10693
10837
  }
10838
+ | {
10839
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
10840
+ message: string
10841
+ /** Indicates that this is an access code error. */
10842
+ is_access_code_error: true
10843
+ /** Date and time at which Seam created the error. */
10844
+ created_at?: string | undefined
10845
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
10846
+ error_code: 'access_code_state_unconfirmed'
10847
+ }
10694
10848
  | {
10695
10849
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
10696
10850
  message: string
@@ -11076,6 +11230,14 @@ export type Routes = {
11076
11230
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
11077
11231
  warning_code: 'kwikset_unable_to_confirm_code'
11078
11232
  }
11233
+ | {
11234
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
11235
+ message: string
11236
+ /** Date and time at which Seam created the warning. */
11237
+ created_at?: string | undefined
11238
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
11239
+ warning_code: 'access_code_inactive'
11240
+ }
11079
11241
  | {
11080
11242
  /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
11081
11243
  message: string
@@ -128368,6 +128530,16 @@ export type Routes = {
128368
128530
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
128369
128531
  error_code: 'no_space_for_access_code_on_device'
128370
128532
  }
128533
+ | {
128534
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
128535
+ message: string
128536
+ /** Indicates that this is an access code error. */
128537
+ is_access_code_error: true
128538
+ /** Date and time at which Seam created the error. */
128539
+ created_at?: string | undefined
128540
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
128541
+ error_code: 'access_code_state_unconfirmed'
128542
+ }
128371
128543
  | {
128372
128544
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
128373
128545
  message: string
@@ -128753,6 +128925,14 @@ export type Routes = {
128753
128925
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
128754
128926
  warning_code: 'kwikset_unable_to_confirm_code'
128755
128927
  }
128928
+ | {
128929
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
128930
+ message: string
128931
+ /** Date and time at which Seam created the warning. */
128932
+ created_at?: string | undefined
128933
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
128934
+ warning_code: 'access_code_inactive'
128935
+ }
128756
128936
  | {
128757
128937
  /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
128758
128938
  message: string
@@ -128911,6 +129091,16 @@ export type Routes = {
128911
129091
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
128912
129092
  error_code: 'no_space_for_access_code_on_device'
128913
129093
  }
129094
+ | {
129095
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
129096
+ message: string
129097
+ /** Indicates that this is an access code error. */
129098
+ is_access_code_error: true
129099
+ /** Date and time at which Seam created the error. */
129100
+ created_at?: string | undefined
129101
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
129102
+ error_code: 'access_code_state_unconfirmed'
129103
+ }
128914
129104
  | {
128915
129105
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
128916
129106
  message: string
@@ -129296,6 +129486,14 @@ export type Routes = {
129296
129486
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
129297
129487
  warning_code: 'kwikset_unable_to_confirm_code'
129298
129488
  }
129489
+ | {
129490
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
129491
+ message: string
129492
+ /** Date and time at which Seam created the warning. */
129493
+ created_at?: string | undefined
129494
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
129495
+ warning_code: 'access_code_inactive'
129496
+ }
129299
129497
  | {
129300
129498
  /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
129301
129499
  message: string