@seamapi/types 1.393.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";
@@ -5196,6 +5332,7 @@ declare const acs_user: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extend
5196
5332
  acs_access_group_id: string | null;
5197
5333
  };
5198
5334
  }>]>, "many">>;
5335
+ last_successful_sync_at: z.ZodNullable<z.ZodString>;
5199
5336
  }, {
5200
5337
  full_name: z.ZodOptional<z.ZodString>;
5201
5338
  email: z.ZodOptional<z.ZodString>;
@@ -5252,6 +5389,7 @@ declare const acs_user: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extend
5252
5389
  is_managed: true;
5253
5390
  acs_system_id: string;
5254
5391
  acs_user_id: string;
5392
+ last_successful_sync_at: string | null;
5255
5393
  email?: string | undefined;
5256
5394
  user_identity_id?: string | undefined;
5257
5395
  external_type?: "pti_user" | "brivo_user" | "hid_credential_manager_user" | "salto_site_user" | "latch_user" | "dormakaba_community_user" | "salto_space_user" | undefined;
@@ -5372,6 +5510,7 @@ declare const acs_user: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extend
5372
5510
  is_managed: true;
5373
5511
  acs_system_id: string;
5374
5512
  acs_user_id: string;
5513
+ last_successful_sync_at: string | null;
5375
5514
  email?: string | undefined;
5376
5515
  user_identity_id?: string | undefined;
5377
5516
  external_type?: "pti_user" | "brivo_user" | "hid_credential_manager_user" | "salto_site_user" | "latch_user" | "dormakaba_community_user" | "salto_space_user" | undefined;
@@ -5813,6 +5952,7 @@ declare const unmanaged_acs_user: z.ZodObject<z.objectUtil.extendShape<z.objectU
5813
5952
  acs_access_group_id: string | null;
5814
5953
  };
5815
5954
  }>]>, "many">>;
5955
+ last_successful_sync_at: z.ZodNullable<z.ZodString>;
5816
5956
  }, {
5817
5957
  full_name: z.ZodOptional<z.ZodString>;
5818
5958
  email: z.ZodOptional<z.ZodString>;
@@ -5869,6 +6009,7 @@ declare const unmanaged_acs_user: z.ZodObject<z.objectUtil.extendShape<z.objectU
5869
6009
  is_managed: false;
5870
6010
  acs_system_id: string;
5871
6011
  acs_user_id: string;
6012
+ last_successful_sync_at: string | null;
5872
6013
  email?: string | undefined;
5873
6014
  user_identity_id?: string | undefined;
5874
6015
  external_type?: "pti_user" | "brivo_user" | "hid_credential_manager_user" | "salto_site_user" | "latch_user" | "dormakaba_community_user" | "salto_space_user" | undefined;
@@ -5989,6 +6130,7 @@ declare const unmanaged_acs_user: z.ZodObject<z.objectUtil.extendShape<z.objectU
5989
6130
  is_managed: false;
5990
6131
  acs_system_id: string;
5991
6132
  acs_user_id: string;
6133
+ last_successful_sync_at: string | null;
5992
6134
  email?: string | undefined;
5993
6135
  user_identity_id?: string | undefined;
5994
6136
  external_type?: "pti_user" | "brivo_user" | "hid_credential_manager_user" | "salto_site_user" | "latch_user" | "dormakaba_community_user" | "salto_space_user" | undefined;
@@ -22297,6 +22439,13 @@ declare const _default: {
22297
22439
  description: string;
22298
22440
  type: string;
22299
22441
  };
22442
+ last_successful_sync_at: {
22443
+ description: string;
22444
+ format: string;
22445
+ nullable: boolean;
22446
+ type: string;
22447
+ 'x-undocumented': string;
22448
+ };
22300
22449
  pending_mutations: {
22301
22450
  description: string;
22302
22451
  items: {
@@ -30223,6 +30372,13 @@ declare const _default: {
30223
30372
  description: string;
30224
30373
  type: string;
30225
30374
  };
30375
+ last_successful_sync_at: {
30376
+ description: string;
30377
+ format: string;
30378
+ nullable: boolean;
30379
+ type: string;
30380
+ 'x-undocumented': string;
30381
+ };
30226
30382
  pending_mutations: {
30227
30383
  description: string;
30228
30384
  items: {
@@ -53193,6 +53349,15 @@ interface Routes {
53193
53349
  created_at?: string | undefined;
53194
53350
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
53195
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';
53196
53361
  } | {
53197
53362
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
53198
53363
  message: string;
@@ -53220,6 +53385,15 @@ interface Routes {
53220
53385
  created_at?: string | undefined;
53221
53386
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
53222
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';
53223
53397
  } | {
53224
53398
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
53225
53399
  message: string;
@@ -53674,6 +53848,15 @@ interface Routes {
53674
53848
  created_at?: string | undefined;
53675
53849
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
53676
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';
53677
53860
  } | {
53678
53861
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
53679
53862
  message: string;
@@ -53701,6 +53884,15 @@ interface Routes {
53701
53884
  created_at?: string | undefined;
53702
53885
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
53703
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';
53704
53896
  } | {
53705
53897
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
53706
53898
  message: string;
@@ -55274,6 +55466,15 @@ interface Routes {
55274
55466
  created_at?: string | undefined;
55275
55467
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
55276
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';
55277
55478
  } | {
55278
55479
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
55279
55480
  message: string;
@@ -55301,6 +55502,15 @@ interface Routes {
55301
55502
  created_at?: string | undefined;
55302
55503
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
55303
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';
55304
55514
  } | {
55305
55515
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
55306
55516
  message: string;
@@ -55735,6 +55945,15 @@ interface Routes {
55735
55945
  created_at?: string | undefined;
55736
55946
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
55737
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';
55738
55957
  } | {
55739
55958
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
55740
55959
  message: string;
@@ -55762,6 +55981,15 @@ interface Routes {
55762
55981
  created_at?: string | undefined;
55763
55982
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
55764
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';
55765
55993
  } | {
55766
55994
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
55767
55995
  message: string;
@@ -56204,6 +56432,15 @@ interface Routes {
56204
56432
  created_at?: string | undefined;
56205
56433
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
56206
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';
56207
56444
  } | {
56208
56445
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
56209
56446
  message: string;
@@ -56231,6 +56468,15 @@ interface Routes {
56231
56468
  created_at?: string | undefined;
56232
56469
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
56233
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';
56234
56480
  } | {
56235
56481
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
56236
56482
  message: string;
@@ -56651,6 +56897,15 @@ interface Routes {
56651
56897
  created_at?: string | undefined;
56652
56898
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
56653
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';
56654
56909
  } | {
56655
56910
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
56656
56911
  message: string;
@@ -56678,6 +56933,15 @@ interface Routes {
56678
56933
  created_at?: string | undefined;
56679
56934
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
56680
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';
56681
56945
  } | {
56682
56946
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
56683
56947
  message: string;
@@ -57127,6 +57391,15 @@ interface Routes {
57127
57391
  created_at?: string | undefined;
57128
57392
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
57129
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';
57130
57403
  } | {
57131
57404
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
57132
57405
  message: string;
@@ -57154,6 +57427,15 @@ interface Routes {
57154
57427
  created_at?: string | undefined;
57155
57428
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
57156
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';
57157
57439
  } | {
57158
57440
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
57159
57441
  message: string;
@@ -58711,6 +58993,15 @@ interface Routes {
58711
58993
  created_at?: string | undefined;
58712
58994
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
58713
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';
58714
59005
  } | {
58715
59006
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
58716
59007
  message: string;
@@ -58738,6 +59029,15 @@ interface Routes {
58738
59029
  created_at?: string | undefined;
58739
59030
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
58740
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';
58741
59041
  } | {
58742
59042
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
58743
59043
  message: string;
@@ -59148,6 +59448,15 @@ interface Routes {
59148
59448
  created_at?: string | undefined;
59149
59449
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
59150
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';
59151
59460
  } | {
59152
59461
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
59153
59462
  message: string;
@@ -59175,6 +59484,15 @@ interface Routes {
59175
59484
  created_at?: string | undefined;
59176
59485
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
59177
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';
59178
59496
  } | {
59179
59497
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
59180
59498
  message: string;
@@ -61050,6 +61368,8 @@ interface Routes {
61050
61368
  acs_access_group_id: string | null;
61051
61369
  };
61052
61370
  }> | undefined;
61371
+ /** The last time an internal sync job completed for this ACS user. */
61372
+ last_successful_sync_at: string | null;
61053
61373
  /** Full name of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management). */
61054
61374
  full_name?: string | undefined;
61055
61375
  /**
@@ -67028,6 +67348,8 @@ interface Routes {
67028
67348
  acs_access_group_id: string | null;
67029
67349
  };
67030
67350
  }> | undefined;
67351
+ /** The last time an internal sync job completed for this ACS user. */
67352
+ last_successful_sync_at: string | null;
67031
67353
  /** Full name of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management). */
67032
67354
  full_name?: string | undefined;
67033
67355
  /**
@@ -67238,6 +67560,8 @@ interface Routes {
67238
67560
  acs_access_group_id: string | null;
67239
67561
  };
67240
67562
  }> | undefined;
67563
+ /** The last time an internal sync job completed for this ACS user. */
67564
+ last_successful_sync_at: string | null;
67241
67565
  /** Full name of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management). */
67242
67566
  full_name?: string | undefined;
67243
67567
  /**
@@ -67444,6 +67768,8 @@ interface Routes {
67444
67768
  acs_access_group_id: string | null;
67445
67769
  };
67446
67770
  }> | undefined;
67771
+ /** The last time an internal sync job completed for this ACS user. */
67772
+ last_successful_sync_at: string | null;
67447
67773
  /** Full name of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management). */
67448
67774
  full_name?: string | undefined;
67449
67775
  /**
@@ -67759,6 +68085,8 @@ interface Routes {
67759
68085
  acs_access_group_id: string | null;
67760
68086
  };
67761
68087
  }> | undefined;
68088
+ /** The last time an internal sync job completed for this ACS user. */
68089
+ last_successful_sync_at: string | null;
67762
68090
  /** Full name of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management). */
67763
68091
  full_name?: string | undefined;
67764
68092
  /**
@@ -67955,6 +68283,8 @@ interface Routes {
67955
68283
  acs_access_group_id: string | null;
67956
68284
  };
67957
68285
  }> | undefined;
68286
+ /** The last time an internal sync job completed for this ACS user. */
68287
+ last_successful_sync_at: string | null;
67958
68288
  /** Full name of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management). */
67959
68289
  full_name?: string | undefined;
67960
68290
  /**
@@ -105473,6 +105803,8 @@ interface Routes {
105473
105803
  acs_access_group_id: string | null;
105474
105804
  };
105475
105805
  }> | undefined;
105806
+ /** The last time an internal sync job completed for this ACS user. */
105807
+ last_successful_sync_at: string | null;
105476
105808
  /** Full name of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management). */
105477
105809
  full_name?: string | undefined;
105478
105810
  /**