@seamapi/types 1.394.0 → 1.395.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.
@@ -116,6 +116,22 @@ declare const access_code_error: z.ZodDiscriminatedUnion<"error_code", [z.ZodObj
116
116
  message: z.ZodString;
117
117
  is_access_code_error: z.ZodLiteral<true>;
118
118
  created_at: z.ZodOptional<z.ZodString>;
119
+ }, {
120
+ error_code: z.ZodLiteral<"no_space_for_access_code_on_device">;
121
+ }>, "strip", z.ZodTypeAny, {
122
+ message: string;
123
+ error_code: "no_space_for_access_code_on_device";
124
+ is_access_code_error: true;
125
+ created_at?: string | undefined;
126
+ }, {
127
+ message: string;
128
+ error_code: "no_space_for_access_code_on_device";
129
+ is_access_code_error: true;
130
+ created_at?: string | undefined;
131
+ }>, z.ZodObject<z.objectUtil.extendShape<{
132
+ message: z.ZodString;
133
+ is_access_code_error: z.ZodLiteral<true>;
134
+ created_at: z.ZodOptional<z.ZodString>;
119
135
  }, {
120
136
  error_code: z.ZodLiteral<"igloohome_bridge_too_many_pending_jobs">;
121
137
  }>, "strip", z.ZodTypeAny, {
@@ -164,6 +180,22 @@ declare const access_code_error: z.ZodDiscriminatedUnion<"error_code", [z.ZodObj
164
180
  message: z.ZodString;
165
181
  is_access_code_error: z.ZodLiteral<true>;
166
182
  created_at: z.ZodOptional<z.ZodString>;
183
+ }, {
184
+ error_code: z.ZodLiteral<"schlage_lock_exceeds_maximum_number_of_access_codes">;
185
+ }>, "strip", z.ZodTypeAny, {
186
+ message: string;
187
+ error_code: "schlage_lock_exceeds_maximum_number_of_access_codes";
188
+ is_access_code_error: true;
189
+ created_at?: string | undefined;
190
+ }, {
191
+ message: string;
192
+ error_code: "schlage_lock_exceeds_maximum_number_of_access_codes";
193
+ is_access_code_error: true;
194
+ created_at?: string | undefined;
195
+ }>, z.ZodObject<z.objectUtil.extendShape<{
196
+ message: z.ZodString;
197
+ is_access_code_error: z.ZodLiteral<true>;
198
+ created_at: z.ZodOptional<z.ZodString>;
167
199
  }, {
168
200
  error_code: z.ZodLiteral<"kwikset_unable_to_confirm_code">;
169
201
  }>, "strip", z.ZodTypeAny, {
@@ -670,6 +702,22 @@ declare const access_code: z.ZodObject<{
670
702
  message: z.ZodString;
671
703
  is_access_code_error: z.ZodLiteral<true>;
672
704
  created_at: z.ZodOptional<z.ZodString>;
705
+ }, {
706
+ error_code: z.ZodLiteral<"no_space_for_access_code_on_device">;
707
+ }>, "strip", z.ZodTypeAny, {
708
+ message: string;
709
+ error_code: "no_space_for_access_code_on_device";
710
+ is_access_code_error: true;
711
+ created_at?: string | undefined;
712
+ }, {
713
+ message: string;
714
+ error_code: "no_space_for_access_code_on_device";
715
+ is_access_code_error: true;
716
+ created_at?: string | undefined;
717
+ }>, z.ZodObject<z.objectUtil.extendShape<{
718
+ message: z.ZodString;
719
+ is_access_code_error: z.ZodLiteral<true>;
720
+ created_at: z.ZodOptional<z.ZodString>;
673
721
  }, {
674
722
  error_code: z.ZodLiteral<"igloohome_bridge_too_many_pending_jobs">;
675
723
  }>, "strip", z.ZodTypeAny, {
@@ -718,6 +766,22 @@ declare const access_code: z.ZodObject<{
718
766
  message: z.ZodString;
719
767
  is_access_code_error: z.ZodLiteral<true>;
720
768
  created_at: z.ZodOptional<z.ZodString>;
769
+ }, {
770
+ error_code: z.ZodLiteral<"schlage_lock_exceeds_maximum_number_of_access_codes">;
771
+ }>, "strip", z.ZodTypeAny, {
772
+ message: string;
773
+ error_code: "schlage_lock_exceeds_maximum_number_of_access_codes";
774
+ is_access_code_error: true;
775
+ created_at?: string | undefined;
776
+ }, {
777
+ message: string;
778
+ error_code: "schlage_lock_exceeds_maximum_number_of_access_codes";
779
+ is_access_code_error: true;
780
+ created_at?: string | undefined;
781
+ }>, z.ZodObject<z.objectUtil.extendShape<{
782
+ message: z.ZodString;
783
+ is_access_code_error: z.ZodLiteral<true>;
784
+ created_at: z.ZodOptional<z.ZodString>;
721
785
  }, {
722
786
  error_code: z.ZodLiteral<"kwikset_unable_to_confirm_code">;
723
787
  }>, "strip", z.ZodTypeAny, {
@@ -1587,6 +1651,11 @@ declare const access_code: z.ZodObject<{
1587
1651
  error_code: "duplicate_code_attempt_prevented";
1588
1652
  is_access_code_error: true;
1589
1653
  created_at?: string | undefined;
1654
+ } | {
1655
+ message: string;
1656
+ error_code: "no_space_for_access_code_on_device";
1657
+ is_access_code_error: true;
1658
+ created_at?: string | undefined;
1590
1659
  } | {
1591
1660
  message: string;
1592
1661
  error_code: "igloohome_bridge_too_many_pending_jobs";
@@ -1612,6 +1681,11 @@ declare const access_code: z.ZodObject<{
1612
1681
  error_code: "igloohome_offline_access_code_no_variance_available";
1613
1682
  is_access_code_error: true;
1614
1683
  created_at?: string | undefined;
1684
+ } | {
1685
+ message: string;
1686
+ error_code: "schlage_lock_exceeds_maximum_number_of_access_codes";
1687
+ is_access_code_error: true;
1688
+ created_at?: string | undefined;
1615
1689
  } | {
1616
1690
  message: string;
1617
1691
  error_code: "august_lock_invalid_code_length";
@@ -1876,6 +1950,11 @@ declare const access_code: z.ZodObject<{
1876
1950
  error_code: "duplicate_code_attempt_prevented";
1877
1951
  is_access_code_error: true;
1878
1952
  created_at?: string | undefined;
1953
+ } | {
1954
+ message: string;
1955
+ error_code: "no_space_for_access_code_on_device";
1956
+ is_access_code_error: true;
1957
+ created_at?: string | undefined;
1879
1958
  } | {
1880
1959
  message: string;
1881
1960
  error_code: "igloohome_bridge_too_many_pending_jobs";
@@ -1901,6 +1980,11 @@ declare const access_code: z.ZodObject<{
1901
1980
  error_code: "igloohome_offline_access_code_no_variance_available";
1902
1981
  is_access_code_error: true;
1903
1982
  created_at?: string | undefined;
1983
+ } | {
1984
+ message: string;
1985
+ error_code: "schlage_lock_exceeds_maximum_number_of_access_codes";
1986
+ is_access_code_error: true;
1987
+ created_at?: string | undefined;
1904
1988
  } | {
1905
1989
  message: string;
1906
1990
  error_code: "august_lock_invalid_code_length";
@@ -2153,6 +2237,22 @@ declare const unmanaged_access_code: z.ZodObject<z.objectUtil.extendShape<Pick<{
2153
2237
  message: z.ZodString;
2154
2238
  is_access_code_error: z.ZodLiteral<true>;
2155
2239
  created_at: z.ZodOptional<z.ZodString>;
2240
+ }, {
2241
+ error_code: z.ZodLiteral<"no_space_for_access_code_on_device">;
2242
+ }>, "strip", z.ZodTypeAny, {
2243
+ message: string;
2244
+ error_code: "no_space_for_access_code_on_device";
2245
+ is_access_code_error: true;
2246
+ created_at?: string | undefined;
2247
+ }, {
2248
+ message: string;
2249
+ error_code: "no_space_for_access_code_on_device";
2250
+ is_access_code_error: true;
2251
+ created_at?: string | undefined;
2252
+ }>, z.ZodObject<z.objectUtil.extendShape<{
2253
+ message: z.ZodString;
2254
+ is_access_code_error: z.ZodLiteral<true>;
2255
+ created_at: z.ZodOptional<z.ZodString>;
2156
2256
  }, {
2157
2257
  error_code: z.ZodLiteral<"igloohome_bridge_too_many_pending_jobs">;
2158
2258
  }>, "strip", z.ZodTypeAny, {
@@ -2201,6 +2301,22 @@ declare const unmanaged_access_code: z.ZodObject<z.objectUtil.extendShape<Pick<{
2201
2301
  message: z.ZodString;
2202
2302
  is_access_code_error: z.ZodLiteral<true>;
2203
2303
  created_at: z.ZodOptional<z.ZodString>;
2304
+ }, {
2305
+ error_code: z.ZodLiteral<"schlage_lock_exceeds_maximum_number_of_access_codes">;
2306
+ }>, "strip", z.ZodTypeAny, {
2307
+ message: string;
2308
+ error_code: "schlage_lock_exceeds_maximum_number_of_access_codes";
2309
+ is_access_code_error: true;
2310
+ created_at?: string | undefined;
2311
+ }, {
2312
+ message: string;
2313
+ error_code: "schlage_lock_exceeds_maximum_number_of_access_codes";
2314
+ is_access_code_error: true;
2315
+ created_at?: string | undefined;
2316
+ }>, z.ZodObject<z.objectUtil.extendShape<{
2317
+ message: z.ZodString;
2318
+ is_access_code_error: z.ZodLiteral<true>;
2319
+ created_at: z.ZodOptional<z.ZodString>;
2204
2320
  }, {
2205
2321
  error_code: z.ZodLiteral<"kwikset_unable_to_confirm_code">;
2206
2322
  }>, "strip", z.ZodTypeAny, {
@@ -3073,6 +3189,11 @@ declare const unmanaged_access_code: z.ZodObject<z.objectUtil.extendShape<Pick<{
3073
3189
  error_code: "duplicate_code_attempt_prevented";
3074
3190
  is_access_code_error: true;
3075
3191
  created_at?: string | undefined;
3192
+ } | {
3193
+ message: string;
3194
+ error_code: "no_space_for_access_code_on_device";
3195
+ is_access_code_error: true;
3196
+ created_at?: string | undefined;
3076
3197
  } | {
3077
3198
  message: string;
3078
3199
  error_code: "igloohome_bridge_too_many_pending_jobs";
@@ -3098,6 +3219,11 @@ declare const unmanaged_access_code: z.ZodObject<z.objectUtil.extendShape<Pick<{
3098
3219
  error_code: "igloohome_offline_access_code_no_variance_available";
3099
3220
  is_access_code_error: true;
3100
3221
  created_at?: string | undefined;
3222
+ } | {
3223
+ message: string;
3224
+ error_code: "schlage_lock_exceeds_maximum_number_of_access_codes";
3225
+ is_access_code_error: true;
3226
+ created_at?: string | undefined;
3101
3227
  } | {
3102
3228
  message: string;
3103
3229
  error_code: "august_lock_invalid_code_length";
@@ -3353,6 +3479,11 @@ declare const unmanaged_access_code: z.ZodObject<z.objectUtil.extendShape<Pick<{
3353
3479
  error_code: "duplicate_code_attempt_prevented";
3354
3480
  is_access_code_error: true;
3355
3481
  created_at?: string | undefined;
3482
+ } | {
3483
+ message: string;
3484
+ error_code: "no_space_for_access_code_on_device";
3485
+ is_access_code_error: true;
3486
+ created_at?: string | undefined;
3356
3487
  } | {
3357
3488
  message: string;
3358
3489
  error_code: "igloohome_bridge_too_many_pending_jobs";
@@ -3378,6 +3509,11 @@ declare const unmanaged_access_code: z.ZodObject<z.objectUtil.extendShape<Pick<{
3378
3509
  error_code: "igloohome_offline_access_code_no_variance_available";
3379
3510
  is_access_code_error: true;
3380
3511
  created_at?: string | undefined;
3512
+ } | {
3513
+ message: string;
3514
+ error_code: "schlage_lock_exceeds_maximum_number_of_access_codes";
3515
+ is_access_code_error: true;
3516
+ created_at?: string | undefined;
3381
3517
  } | {
3382
3518
  message: string;
3383
3519
  error_code: "august_lock_invalid_code_length";
@@ -53213,6 +53349,15 @@ interface Routes {
53213
53349
  created_at?: string | undefined;
53214
53350
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
53215
53351
  error_code: 'duplicate_code_attempt_prevented';
53352
+ } | {
53353
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
53354
+ message: string;
53355
+ /** Indicates that this is an access code error. */
53356
+ is_access_code_error: true;
53357
+ /** Date and time at which Seam created the error. */
53358
+ created_at?: string | undefined;
53359
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
53360
+ error_code: 'no_space_for_access_code_on_device';
53216
53361
  } | {
53217
53362
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
53218
53363
  message: string;
@@ -53240,6 +53385,15 @@ interface Routes {
53240
53385
  created_at?: string | undefined;
53241
53386
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
53242
53387
  error_code: 'igloohome_offline_access_code_no_variance_available';
53388
+ } | {
53389
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
53390
+ message: string;
53391
+ /** Indicates that this is an access code error. */
53392
+ is_access_code_error: true;
53393
+ /** Date and time at which Seam created the error. */
53394
+ created_at?: string | undefined;
53395
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
53396
+ error_code: 'schlage_lock_exceeds_maximum_number_of_access_codes';
53243
53397
  } | {
53244
53398
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
53245
53399
  message: string;
@@ -53694,6 +53848,15 @@ interface Routes {
53694
53848
  created_at?: string | undefined;
53695
53849
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
53696
53850
  error_code: 'duplicate_code_attempt_prevented';
53851
+ } | {
53852
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
53853
+ message: string;
53854
+ /** Indicates that this is an access code error. */
53855
+ is_access_code_error: true;
53856
+ /** Date and time at which Seam created the error. */
53857
+ created_at?: string | undefined;
53858
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
53859
+ error_code: 'no_space_for_access_code_on_device';
53697
53860
  } | {
53698
53861
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
53699
53862
  message: string;
@@ -53721,6 +53884,15 @@ interface Routes {
53721
53884
  created_at?: string | undefined;
53722
53885
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
53723
53886
  error_code: 'igloohome_offline_access_code_no_variance_available';
53887
+ } | {
53888
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
53889
+ message: string;
53890
+ /** Indicates that this is an access code error. */
53891
+ is_access_code_error: true;
53892
+ /** Date and time at which Seam created the error. */
53893
+ created_at?: string | undefined;
53894
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
53895
+ error_code: 'schlage_lock_exceeds_maximum_number_of_access_codes';
53724
53896
  } | {
53725
53897
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
53726
53898
  message: string;
@@ -55294,6 +55466,15 @@ interface Routes {
55294
55466
  created_at?: string | undefined;
55295
55467
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
55296
55468
  error_code: 'duplicate_code_attempt_prevented';
55469
+ } | {
55470
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
55471
+ message: string;
55472
+ /** Indicates that this is an access code error. */
55473
+ is_access_code_error: true;
55474
+ /** Date and time at which Seam created the error. */
55475
+ created_at?: string | undefined;
55476
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
55477
+ error_code: 'no_space_for_access_code_on_device';
55297
55478
  } | {
55298
55479
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
55299
55480
  message: string;
@@ -55321,6 +55502,15 @@ interface Routes {
55321
55502
  created_at?: string | undefined;
55322
55503
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
55323
55504
  error_code: 'igloohome_offline_access_code_no_variance_available';
55505
+ } | {
55506
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
55507
+ message: string;
55508
+ /** Indicates that this is an access code error. */
55509
+ is_access_code_error: true;
55510
+ /** Date and time at which Seam created the error. */
55511
+ created_at?: string | undefined;
55512
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
55513
+ error_code: 'schlage_lock_exceeds_maximum_number_of_access_codes';
55324
55514
  } | {
55325
55515
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
55326
55516
  message: string;
@@ -55755,6 +55945,15 @@ interface Routes {
55755
55945
  created_at?: string | undefined;
55756
55946
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
55757
55947
  error_code: 'duplicate_code_attempt_prevented';
55948
+ } | {
55949
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
55950
+ message: string;
55951
+ /** Indicates that this is an access code error. */
55952
+ is_access_code_error: true;
55953
+ /** Date and time at which Seam created the error. */
55954
+ created_at?: string | undefined;
55955
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
55956
+ error_code: 'no_space_for_access_code_on_device';
55758
55957
  } | {
55759
55958
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
55760
55959
  message: string;
@@ -55782,6 +55981,15 @@ interface Routes {
55782
55981
  created_at?: string | undefined;
55783
55982
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
55784
55983
  error_code: 'igloohome_offline_access_code_no_variance_available';
55984
+ } | {
55985
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
55986
+ message: string;
55987
+ /** Indicates that this is an access code error. */
55988
+ is_access_code_error: true;
55989
+ /** Date and time at which Seam created the error. */
55990
+ created_at?: string | undefined;
55991
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
55992
+ error_code: 'schlage_lock_exceeds_maximum_number_of_access_codes';
55785
55993
  } | {
55786
55994
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
55787
55995
  message: string;
@@ -56224,6 +56432,15 @@ interface Routes {
56224
56432
  created_at?: string | undefined;
56225
56433
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
56226
56434
  error_code: 'duplicate_code_attempt_prevented';
56435
+ } | {
56436
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
56437
+ message: string;
56438
+ /** Indicates that this is an access code error. */
56439
+ is_access_code_error: true;
56440
+ /** Date and time at which Seam created the error. */
56441
+ created_at?: string | undefined;
56442
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
56443
+ error_code: 'no_space_for_access_code_on_device';
56227
56444
  } | {
56228
56445
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
56229
56446
  message: string;
@@ -56251,6 +56468,15 @@ interface Routes {
56251
56468
  created_at?: string | undefined;
56252
56469
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
56253
56470
  error_code: 'igloohome_offline_access_code_no_variance_available';
56471
+ } | {
56472
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
56473
+ message: string;
56474
+ /** Indicates that this is an access code error. */
56475
+ is_access_code_error: true;
56476
+ /** Date and time at which Seam created the error. */
56477
+ created_at?: string | undefined;
56478
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
56479
+ error_code: 'schlage_lock_exceeds_maximum_number_of_access_codes';
56254
56480
  } | {
56255
56481
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
56256
56482
  message: string;
@@ -56671,6 +56897,15 @@ interface Routes {
56671
56897
  created_at?: string | undefined;
56672
56898
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
56673
56899
  error_code: 'duplicate_code_attempt_prevented';
56900
+ } | {
56901
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
56902
+ message: string;
56903
+ /** Indicates that this is an access code error. */
56904
+ is_access_code_error: true;
56905
+ /** Date and time at which Seam created the error. */
56906
+ created_at?: string | undefined;
56907
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
56908
+ error_code: 'no_space_for_access_code_on_device';
56674
56909
  } | {
56675
56910
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
56676
56911
  message: string;
@@ -56698,6 +56933,15 @@ interface Routes {
56698
56933
  created_at?: string | undefined;
56699
56934
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
56700
56935
  error_code: 'igloohome_offline_access_code_no_variance_available';
56936
+ } | {
56937
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
56938
+ message: string;
56939
+ /** Indicates that this is an access code error. */
56940
+ is_access_code_error: true;
56941
+ /** Date and time at which Seam created the error. */
56942
+ created_at?: string | undefined;
56943
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
56944
+ error_code: 'schlage_lock_exceeds_maximum_number_of_access_codes';
56701
56945
  } | {
56702
56946
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
56703
56947
  message: string;
@@ -57147,6 +57391,15 @@ interface Routes {
57147
57391
  created_at?: string | undefined;
57148
57392
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
57149
57393
  error_code: 'duplicate_code_attempt_prevented';
57394
+ } | {
57395
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
57396
+ message: string;
57397
+ /** Indicates that this is an access code error. */
57398
+ is_access_code_error: true;
57399
+ /** Date and time at which Seam created the error. */
57400
+ created_at?: string | undefined;
57401
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
57402
+ error_code: 'no_space_for_access_code_on_device';
57150
57403
  } | {
57151
57404
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
57152
57405
  message: string;
@@ -57174,6 +57427,15 @@ interface Routes {
57174
57427
  created_at?: string | undefined;
57175
57428
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
57176
57429
  error_code: 'igloohome_offline_access_code_no_variance_available';
57430
+ } | {
57431
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
57432
+ message: string;
57433
+ /** Indicates that this is an access code error. */
57434
+ is_access_code_error: true;
57435
+ /** Date and time at which Seam created the error. */
57436
+ created_at?: string | undefined;
57437
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
57438
+ error_code: 'schlage_lock_exceeds_maximum_number_of_access_codes';
57177
57439
  } | {
57178
57440
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
57179
57441
  message: string;
@@ -58731,6 +58993,15 @@ interface Routes {
58731
58993
  created_at?: string | undefined;
58732
58994
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
58733
58995
  error_code: 'duplicate_code_attempt_prevented';
58996
+ } | {
58997
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
58998
+ message: string;
58999
+ /** Indicates that this is an access code error. */
59000
+ is_access_code_error: true;
59001
+ /** Date and time at which Seam created the error. */
59002
+ created_at?: string | undefined;
59003
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
59004
+ error_code: 'no_space_for_access_code_on_device';
58734
59005
  } | {
58735
59006
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
58736
59007
  message: string;
@@ -58758,6 +59029,15 @@ interface Routes {
58758
59029
  created_at?: string | undefined;
58759
59030
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
58760
59031
  error_code: 'igloohome_offline_access_code_no_variance_available';
59032
+ } | {
59033
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
59034
+ message: string;
59035
+ /** Indicates that this is an access code error. */
59036
+ is_access_code_error: true;
59037
+ /** Date and time at which Seam created the error. */
59038
+ created_at?: string | undefined;
59039
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
59040
+ error_code: 'schlage_lock_exceeds_maximum_number_of_access_codes';
58761
59041
  } | {
58762
59042
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
58763
59043
  message: string;
@@ -59168,6 +59448,15 @@ interface Routes {
59168
59448
  created_at?: string | undefined;
59169
59449
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
59170
59450
  error_code: 'duplicate_code_attempt_prevented';
59451
+ } | {
59452
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
59453
+ message: string;
59454
+ /** Indicates that this is an access code error. */
59455
+ is_access_code_error: true;
59456
+ /** Date and time at which Seam created the error. */
59457
+ created_at?: string | undefined;
59458
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
59459
+ error_code: 'no_space_for_access_code_on_device';
59171
59460
  } | {
59172
59461
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
59173
59462
  message: string;
@@ -59195,6 +59484,15 @@ interface Routes {
59195
59484
  created_at?: string | undefined;
59196
59485
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
59197
59486
  error_code: 'igloohome_offline_access_code_no_variance_available';
59487
+ } | {
59488
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
59489
+ message: string;
59490
+ /** Indicates that this is an access code error. */
59491
+ is_access_code_error: true;
59492
+ /** Date and time at which Seam created the error. */
59493
+ created_at?: string | undefined;
59494
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
59495
+ error_code: 'schlage_lock_exceeds_maximum_number_of_access_codes';
59198
59496
  } | {
59199
59497
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
59200
59498
  message: string;