@seamapi/types 1.411.1 → 1.412.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.
@@ -1310,6 +1310,22 @@ declare const access_code: z.ZodObject<{
1310
1310
  created_at: string;
1311
1311
  error_code: "subscription_required";
1312
1312
  is_device_error: true;
1313
+ }> | z.ZodObject<z.objectUtil.extendShape<{
1314
+ message: z.ZodString;
1315
+ is_device_error: z.ZodLiteral<true>;
1316
+ created_at: z.ZodString;
1317
+ }, {
1318
+ error_code: z.ZodLiteral<"lockly_missing_wifi_bridge">;
1319
+ }>, "strip", z.ZodTypeAny, {
1320
+ message: string;
1321
+ created_at: string;
1322
+ error_code: "lockly_missing_wifi_bridge";
1323
+ is_device_error: true;
1324
+ }, {
1325
+ message: string;
1326
+ created_at: string;
1327
+ error_code: "lockly_missing_wifi_bridge";
1328
+ is_device_error: true;
1313
1329
  }>)[]]>, "many">;
1314
1330
  warnings: z.ZodArray<z.ZodDiscriminatedUnion<"warning_code", [z.ZodObject<z.objectUtil.extendShape<{
1315
1331
  message: z.ZodString;
@@ -1584,6 +1600,11 @@ declare const access_code: z.ZodObject<{
1584
1600
  created_at: string;
1585
1601
  error_code: "subscription_required";
1586
1602
  is_device_error: true;
1603
+ } | {
1604
+ message: string;
1605
+ created_at: string;
1606
+ error_code: "lockly_missing_wifi_bridge";
1607
+ is_device_error: true;
1587
1608
  } | {
1588
1609
  message: string;
1589
1610
  error_code: "smartthings_failed_to_set_access_code";
@@ -1878,6 +1899,11 @@ declare const access_code: z.ZodObject<{
1878
1899
  created_at: string;
1879
1900
  error_code: "subscription_required";
1880
1901
  is_device_error: true;
1902
+ } | {
1903
+ message: string;
1904
+ created_at: string;
1905
+ error_code: "lockly_missing_wifi_bridge";
1906
+ is_device_error: true;
1881
1907
  } | {
1882
1908
  message: string;
1883
1909
  error_code: "smartthings_failed_to_set_access_code";
@@ -2819,6 +2845,22 @@ declare const unmanaged_access_code: z.ZodObject<z.objectUtil.extendShape<Pick<{
2819
2845
  created_at: string;
2820
2846
  error_code: "subscription_required";
2821
2847
  is_device_error: true;
2848
+ }> | z.ZodObject<z.objectUtil.extendShape<{
2849
+ message: z.ZodString;
2850
+ is_device_error: z.ZodLiteral<true>;
2851
+ created_at: z.ZodString;
2852
+ }, {
2853
+ error_code: z.ZodLiteral<"lockly_missing_wifi_bridge">;
2854
+ }>, "strip", z.ZodTypeAny, {
2855
+ message: string;
2856
+ created_at: string;
2857
+ error_code: "lockly_missing_wifi_bridge";
2858
+ is_device_error: true;
2859
+ }, {
2860
+ message: string;
2861
+ created_at: string;
2862
+ error_code: "lockly_missing_wifi_bridge";
2863
+ is_device_error: true;
2822
2864
  }>)[]]>, "many">;
2823
2865
  warnings: z.ZodArray<z.ZodDiscriminatedUnion<"warning_code", [z.ZodObject<z.objectUtil.extendShape<{
2824
2866
  message: z.ZodString;
@@ -3096,6 +3138,11 @@ declare const unmanaged_access_code: z.ZodObject<z.objectUtil.extendShape<Pick<{
3096
3138
  created_at: string;
3097
3139
  error_code: "subscription_required";
3098
3140
  is_device_error: true;
3141
+ } | {
3142
+ message: string;
3143
+ created_at: string;
3144
+ error_code: "lockly_missing_wifi_bridge";
3145
+ is_device_error: true;
3099
3146
  } | {
3100
3147
  message: string;
3101
3148
  error_code: "smartthings_failed_to_set_access_code";
@@ -3381,6 +3428,11 @@ declare const unmanaged_access_code: z.ZodObject<z.objectUtil.extendShape<Pick<{
3381
3428
  created_at: string;
3382
3429
  error_code: "subscription_required";
3383
3430
  is_device_error: true;
3431
+ } | {
3432
+ message: string;
3433
+ created_at: string;
3434
+ error_code: "lockly_missing_wifi_bridge";
3435
+ is_device_error: true;
3384
3436
  } | {
3385
3437
  message: string;
3386
3438
  error_code: "smartthings_failed_to_set_access_code";
@@ -11283,6 +11335,22 @@ declare const device_error: z.ZodDiscriminatedUnion<"error_code", [z.ZodObject<z
11283
11335
  created_at: string;
11284
11336
  error_code: "subscription_required";
11285
11337
  is_device_error: true;
11338
+ }>, z.ZodObject<z.objectUtil.extendShape<{
11339
+ message: z.ZodString;
11340
+ is_device_error: z.ZodLiteral<true>;
11341
+ created_at: z.ZodString;
11342
+ }, {
11343
+ error_code: z.ZodLiteral<"lockly_missing_wifi_bridge">;
11344
+ }>, "strip", z.ZodTypeAny, {
11345
+ message: string;
11346
+ created_at: string;
11347
+ error_code: "lockly_missing_wifi_bridge";
11348
+ is_device_error: true;
11349
+ }, {
11350
+ message: string;
11351
+ created_at: string;
11352
+ error_code: "lockly_missing_wifi_bridge";
11353
+ is_device_error: true;
11286
11354
  }>]>;
11287
11355
  type DeviceError = z.infer<typeof device_error>;
11288
11356
  declare const device_warning: z.ZodDiscriminatedUnion<"warning_code", [z.ZodObject<z.objectUtil.extendShape<{
@@ -13732,6 +13800,22 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
13732
13800
  created_at: string;
13733
13801
  error_code: "subscription_required";
13734
13802
  is_device_error: true;
13803
+ }>, z.ZodObject<z.objectUtil.extendShape<{
13804
+ message: z.ZodString;
13805
+ is_device_error: z.ZodLiteral<true>;
13806
+ created_at: z.ZodString;
13807
+ }, {
13808
+ error_code: z.ZodLiteral<"lockly_missing_wifi_bridge">;
13809
+ }>, "strip", z.ZodTypeAny, {
13810
+ message: string;
13811
+ created_at: string;
13812
+ error_code: "lockly_missing_wifi_bridge";
13813
+ is_device_error: true;
13814
+ }, {
13815
+ message: string;
13816
+ created_at: string;
13817
+ error_code: "lockly_missing_wifi_bridge";
13818
+ is_device_error: true;
13735
13819
  }>, ...(z.ZodObject<z.objectUtil.extendShape<{
13736
13820
  created_at: z.ZodString;
13737
13821
  message: z.ZodString;
@@ -14199,6 +14283,11 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
14199
14283
  created_at: string;
14200
14284
  error_code: "subscription_required";
14201
14285
  is_device_error: true;
14286
+ } | {
14287
+ message: string;
14288
+ created_at: string;
14289
+ error_code: "lockly_missing_wifi_bridge";
14290
+ is_device_error: true;
14202
14291
  })[];
14203
14292
  connected_account_id: string;
14204
14293
  warnings: ({
@@ -14803,6 +14892,11 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
14803
14892
  created_at: string;
14804
14893
  error_code: "subscription_required";
14805
14894
  is_device_error: true;
14895
+ } | {
14896
+ message: string;
14897
+ created_at: string;
14898
+ error_code: "lockly_missing_wifi_bridge";
14899
+ is_device_error: true;
14806
14900
  })[];
14807
14901
  connected_account_id: string;
14808
14902
  warnings: ({
@@ -17633,6 +17727,22 @@ declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.objectUti
17633
17727
  created_at: string;
17634
17728
  error_code: "subscription_required";
17635
17729
  is_device_error: true;
17730
+ }>, z.ZodObject<z.objectUtil.extendShape<{
17731
+ message: z.ZodString;
17732
+ is_device_error: z.ZodLiteral<true>;
17733
+ created_at: z.ZodString;
17734
+ }, {
17735
+ error_code: z.ZodLiteral<"lockly_missing_wifi_bridge">;
17736
+ }>, "strip", z.ZodTypeAny, {
17737
+ message: string;
17738
+ created_at: string;
17739
+ error_code: "lockly_missing_wifi_bridge";
17740
+ is_device_error: true;
17741
+ }, {
17742
+ message: string;
17743
+ created_at: string;
17744
+ error_code: "lockly_missing_wifi_bridge";
17745
+ is_device_error: true;
17636
17746
  }>, ...(z.ZodObject<z.objectUtil.extendShape<{
17637
17747
  created_at: z.ZodString;
17638
17748
  message: z.ZodString;
@@ -18248,6 +18358,11 @@ declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.objectUti
18248
18358
  created_at: string;
18249
18359
  error_code: "subscription_required";
18250
18360
  is_device_error: true;
18361
+ } | {
18362
+ message: string;
18363
+ created_at: string;
18364
+ error_code: "lockly_missing_wifi_bridge";
18365
+ is_device_error: true;
18251
18366
  })[];
18252
18367
  connected_account_id: string;
18253
18368
  warnings: ({
@@ -18469,6 +18584,11 @@ declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.objectUti
18469
18584
  created_at: string;
18470
18585
  error_code: "subscription_required";
18471
18586
  is_device_error: true;
18587
+ } | {
18588
+ message: string;
18589
+ created_at: string;
18590
+ error_code: "lockly_missing_wifi_bridge";
18591
+ is_device_error: true;
18472
18592
  })[];
18473
18593
  connected_account_id: string;
18474
18594
  warnings: ({
@@ -58301,6 +58421,12 @@ interface Routes {
58301
58421
  created_at: string;
58302
58422
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
58303
58423
  error_code: 'subscription_required';
58424
+ } | {
58425
+ message: string;
58426
+ is_device_error: true;
58427
+ created_at: string;
58428
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
58429
+ error_code: 'lockly_missing_wifi_bridge';
58304
58430
  } | {
58305
58431
  /** Date and time at which Seam created the error. */
58306
58432
  created_at: string;
@@ -58797,6 +58923,12 @@ interface Routes {
58797
58923
  created_at: string;
58798
58924
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
58799
58925
  error_code: 'subscription_required';
58926
+ } | {
58927
+ message: string;
58928
+ is_device_error: true;
58929
+ created_at: string;
58930
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
58931
+ error_code: 'lockly_missing_wifi_bridge';
58800
58932
  } | {
58801
58933
  /** Date and time at which Seam created the error. */
58802
58934
  created_at: string;
@@ -60413,6 +60545,12 @@ interface Routes {
60413
60545
  created_at: string;
60414
60546
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
60415
60547
  error_code: 'subscription_required';
60548
+ } | {
60549
+ message: string;
60550
+ is_device_error: true;
60551
+ created_at: string;
60552
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
60553
+ error_code: 'lockly_missing_wifi_bridge';
60416
60554
  } | {
60417
60555
  /** Date and time at which Seam created the error. */
60418
60556
  created_at: string;
@@ -60890,6 +61028,12 @@ interface Routes {
60890
61028
  created_at: string;
60891
61029
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
60892
61030
  error_code: 'subscription_required';
61031
+ } | {
61032
+ message: string;
61033
+ is_device_error: true;
61034
+ created_at: string;
61035
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
61036
+ error_code: 'lockly_missing_wifi_bridge';
60893
61037
  } | {
60894
61038
  /** Date and time at which Seam created the error. */
60895
61039
  created_at: string;
@@ -61374,6 +61518,12 @@ interface Routes {
61374
61518
  created_at: string;
61375
61519
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
61376
61520
  error_code: 'subscription_required';
61521
+ } | {
61522
+ message: string;
61523
+ is_device_error: true;
61524
+ created_at: string;
61525
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
61526
+ error_code: 'lockly_missing_wifi_bridge';
61377
61527
  } | {
61378
61528
  /** Date and time at which Seam created the error. */
61379
61529
  created_at: string;
@@ -61836,6 +61986,12 @@ interface Routes {
61836
61986
  created_at: string;
61837
61987
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
61838
61988
  error_code: 'subscription_required';
61989
+ } | {
61990
+ message: string;
61991
+ is_device_error: true;
61992
+ created_at: string;
61993
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
61994
+ error_code: 'lockly_missing_wifi_bridge';
61839
61995
  } | {
61840
61996
  /** Date and time at which Seam created the error. */
61841
61997
  created_at: string;
@@ -62331,6 +62487,12 @@ interface Routes {
62331
62487
  created_at: string;
62332
62488
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
62333
62489
  error_code: 'subscription_required';
62490
+ } | {
62491
+ message: string;
62492
+ is_device_error: true;
62493
+ created_at: string;
62494
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
62495
+ error_code: 'lockly_missing_wifi_bridge';
62334
62496
  } | {
62335
62497
  /** Date and time at which Seam created the error. */
62336
62498
  created_at: string;
@@ -63934,6 +64096,12 @@ interface Routes {
63934
64096
  created_at: string;
63935
64097
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
63936
64098
  error_code: 'subscription_required';
64099
+ } | {
64100
+ message: string;
64101
+ is_device_error: true;
64102
+ created_at: string;
64103
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
64104
+ error_code: 'lockly_missing_wifi_bridge';
63937
64105
  } | {
63938
64106
  /** Date and time at which Seam created the error. */
63939
64107
  created_at: string;
@@ -64386,6 +64554,12 @@ interface Routes {
64386
64554
  created_at: string;
64387
64555
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
64388
64556
  error_code: 'subscription_required';
64557
+ } | {
64558
+ message: string;
64559
+ is_device_error: true;
64560
+ created_at: string;
64561
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
64562
+ error_code: 'lockly_missing_wifi_bridge';
64389
64563
  } | {
64390
64564
  /** Date and time at which Seam created the error. */
64391
64565
  created_at: string;
@@ -77642,6 +77816,12 @@ interface Routes {
77642
77816
  created_at: string;
77643
77817
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
77644
77818
  error_code: 'subscription_required';
77819
+ } | {
77820
+ message: string;
77821
+ is_device_error: true;
77822
+ created_at: string;
77823
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
77824
+ error_code: 'lockly_missing_wifi_bridge';
77645
77825
  } | {
77646
77826
  /** Date and time at which Seam created the error. */
77647
77827
  created_at: string;
@@ -78890,6 +79070,12 @@ interface Routes {
78890
79070
  created_at: string;
78891
79071
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
78892
79072
  error_code: 'subscription_required';
79073
+ } | {
79074
+ message: string;
79075
+ is_device_error: true;
79076
+ created_at: string;
79077
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
79078
+ error_code: 'lockly_missing_wifi_bridge';
78893
79079
  } | {
78894
79080
  /** Date and time at which Seam created the error. */
78895
79081
  created_at: string;
@@ -79212,6 +79398,12 @@ interface Routes {
79212
79398
  created_at: string;
79213
79399
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
79214
79400
  error_code: 'subscription_required';
79401
+ } | {
79402
+ message: string;
79403
+ is_device_error: true;
79404
+ created_at: string;
79405
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
79406
+ error_code: 'lockly_missing_wifi_bridge';
79215
79407
  } | {
79216
79408
  /** Date and time at which Seam created the error. */
79217
79409
  created_at: string;
@@ -79553,6 +79745,12 @@ interface Routes {
79553
79745
  created_at: string;
79554
79746
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
79555
79747
  error_code: 'subscription_required';
79748
+ } | {
79749
+ message: string;
79750
+ is_device_error: true;
79751
+ created_at: string;
79752
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
79753
+ error_code: 'lockly_missing_wifi_bridge';
79556
79754
  } | {
79557
79755
  /** Date and time at which Seam created the error. */
79558
79756
  created_at: string;
@@ -83693,6 +83891,12 @@ interface Routes {
83693
83891
  created_at: string;
83694
83892
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
83695
83893
  error_code: 'subscription_required';
83894
+ } | {
83895
+ message: string;
83896
+ is_device_error: true;
83897
+ created_at: string;
83898
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
83899
+ error_code: 'lockly_missing_wifi_bridge';
83696
83900
  } | {
83697
83901
  /** Date and time at which Seam created the error. */
83698
83902
  created_at: string;
@@ -84897,6 +85101,12 @@ interface Routes {
84897
85101
  created_at: string;
84898
85102
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
84899
85103
  error_code: 'subscription_required';
85104
+ } | {
85105
+ message: string;
85106
+ is_device_error: true;
85107
+ created_at: string;
85108
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
85109
+ error_code: 'lockly_missing_wifi_bridge';
84900
85110
  } | {
84901
85111
  /** Date and time at which Seam created the error. */
84902
85112
  created_at: string;
@@ -86145,6 +86355,12 @@ interface Routes {
86145
86355
  created_at: string;
86146
86356
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
86147
86357
  error_code: 'subscription_required';
86358
+ } | {
86359
+ message: string;
86360
+ is_device_error: true;
86361
+ created_at: string;
86362
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
86363
+ error_code: 'lockly_missing_wifi_bridge';
86148
86364
  } | {
86149
86365
  /** Date and time at which Seam created the error. */
86150
86366
  created_at: string;
@@ -87348,6 +87564,12 @@ interface Routes {
87348
87564
  created_at: string;
87349
87565
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
87350
87566
  error_code: 'subscription_required';
87567
+ } | {
87568
+ message: string;
87569
+ is_device_error: true;
87570
+ created_at: string;
87571
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
87572
+ error_code: 'lockly_missing_wifi_bridge';
87351
87573
  } | {
87352
87574
  /** Date and time at which Seam created the error. */
87353
87575
  created_at: string;
@@ -93101,6 +93323,12 @@ interface Routes {
93101
93323
  created_at: string;
93102
93324
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
93103
93325
  error_code: 'subscription_required';
93326
+ } | {
93327
+ message: string;
93328
+ is_device_error: true;
93329
+ created_at: string;
93330
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
93331
+ error_code: 'lockly_missing_wifi_bridge';
93104
93332
  } | {
93105
93333
  /** Date and time at which Seam created the error. */
93106
93334
  created_at: string;
@@ -94304,6 +94532,12 @@ interface Routes {
94304
94532
  created_at: string;
94305
94533
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
94306
94534
  error_code: 'subscription_required';
94535
+ } | {
94536
+ message: string;
94537
+ is_device_error: true;
94538
+ created_at: string;
94539
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
94540
+ error_code: 'lockly_missing_wifi_bridge';
94307
94541
  } | {
94308
94542
  /** Date and time at which Seam created the error. */
94309
94543
  created_at: string;
@@ -103526,6 +103760,12 @@ interface Routes {
103526
103760
  created_at: string;
103527
103761
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
103528
103762
  error_code: 'subscription_required';
103763
+ } | {
103764
+ message: string;
103765
+ is_device_error: true;
103766
+ created_at: string;
103767
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
103768
+ error_code: 'lockly_missing_wifi_bridge';
103529
103769
  } | {
103530
103770
  /** Date and time at which Seam created the error. */
103531
103771
  created_at: string;
@@ -107022,6 +107262,12 @@ interface Routes {
107022
107262
  created_at: string;
107023
107263
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
107024
107264
  error_code: 'subscription_required';
107265
+ } | {
107266
+ message: string;
107267
+ is_device_error: true;
107268
+ created_at: string;
107269
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
107270
+ error_code: 'lockly_missing_wifi_bridge';
107025
107271
  } | {
107026
107272
  /** Date and time at which Seam created the error. */
107027
107273
  created_at: string;
@@ -108225,6 +108471,12 @@ interface Routes {
108225
108471
  created_at: string;
108226
108472
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
108227
108473
  error_code: 'subscription_required';
108474
+ } | {
108475
+ message: string;
108476
+ is_device_error: true;
108477
+ created_at: string;
108478
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
108479
+ error_code: 'lockly_missing_wifi_bridge';
108228
108480
  } | {
108229
108481
  /** Date and time at which Seam created the error. */
108230
108482
  created_at: string;
@@ -115140,6 +115392,12 @@ interface Routes {
115140
115392
  created_at: string;
115141
115393
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
115142
115394
  error_code: 'subscription_required';
115395
+ } | {
115396
+ message: string;
115397
+ is_device_error: true;
115398
+ created_at: string;
115399
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
115400
+ error_code: 'lockly_missing_wifi_bridge';
115143
115401
  } | {
115144
115402
  /** Date and time at which Seam created the error. */
115145
115403
  created_at: string;
@@ -116345,6 +116603,12 @@ interface Routes {
116345
116603
  created_at: string;
116346
116604
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
116347
116605
  error_code: 'subscription_required';
116606
+ } | {
116607
+ message: string;
116608
+ is_device_error: true;
116609
+ created_at: string;
116610
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
116611
+ error_code: 'lockly_missing_wifi_bridge';
116348
116612
  } | {
116349
116613
  /** Date and time at which Seam created the error. */
116350
116614
  created_at: string;
@@ -2332,6 +2332,22 @@ export declare const access_code: z.ZodObject<{
2332
2332
  created_at: string;
2333
2333
  error_code: "subscription_required";
2334
2334
  is_device_error: true;
2335
+ }> | z.ZodObject<z.objectUtil.extendShape<{
2336
+ message: z.ZodString;
2337
+ is_device_error: z.ZodLiteral<true>;
2338
+ created_at: z.ZodString;
2339
+ }, {
2340
+ error_code: z.ZodLiteral<"lockly_missing_wifi_bridge">;
2341
+ }>, "strip", z.ZodTypeAny, {
2342
+ message: string;
2343
+ created_at: string;
2344
+ error_code: "lockly_missing_wifi_bridge";
2345
+ is_device_error: true;
2346
+ }, {
2347
+ message: string;
2348
+ created_at: string;
2349
+ error_code: "lockly_missing_wifi_bridge";
2350
+ is_device_error: true;
2335
2351
  }>)[]]>, "many">;
2336
2352
  warnings: z.ZodArray<z.ZodDiscriminatedUnion<"warning_code", [z.ZodObject<z.objectUtil.extendShape<{
2337
2353
  message: z.ZodString;
@@ -2606,6 +2622,11 @@ export declare const access_code: z.ZodObject<{
2606
2622
  created_at: string;
2607
2623
  error_code: "subscription_required";
2608
2624
  is_device_error: true;
2625
+ } | {
2626
+ message: string;
2627
+ created_at: string;
2628
+ error_code: "lockly_missing_wifi_bridge";
2629
+ is_device_error: true;
2609
2630
  } | {
2610
2631
  message: string;
2611
2632
  error_code: "smartthings_failed_to_set_access_code";
@@ -2900,6 +2921,11 @@ export declare const access_code: z.ZodObject<{
2900
2921
  created_at: string;
2901
2922
  error_code: "subscription_required";
2902
2923
  is_device_error: true;
2924
+ } | {
2925
+ message: string;
2926
+ created_at: string;
2927
+ error_code: "lockly_missing_wifi_bridge";
2928
+ is_device_error: true;
2903
2929
  } | {
2904
2930
  message: string;
2905
2931
  error_code: "smartthings_failed_to_set_access_code";
@@ -749,6 +749,22 @@ export declare const unmanaged_access_code: z.ZodObject<z.objectUtil.extendShape
749
749
  created_at: string;
750
750
  error_code: "subscription_required";
751
751
  is_device_error: true;
752
+ }> | z.ZodObject<z.objectUtil.extendShape<{
753
+ message: z.ZodString;
754
+ is_device_error: z.ZodLiteral<true>;
755
+ created_at: z.ZodString;
756
+ }, {
757
+ error_code: z.ZodLiteral<"lockly_missing_wifi_bridge">;
758
+ }>, "strip", z.ZodTypeAny, {
759
+ message: string;
760
+ created_at: string;
761
+ error_code: "lockly_missing_wifi_bridge";
762
+ is_device_error: true;
763
+ }, {
764
+ message: string;
765
+ created_at: string;
766
+ error_code: "lockly_missing_wifi_bridge";
767
+ is_device_error: true;
752
768
  }>)[]]>, "many">;
753
769
  warnings: z.ZodArray<z.ZodDiscriminatedUnion<"warning_code", [z.ZodObject<z.objectUtil.extendShape<{
754
770
  message: z.ZodString;
@@ -1026,6 +1042,11 @@ export declare const unmanaged_access_code: z.ZodObject<z.objectUtil.extendShape
1026
1042
  created_at: string;
1027
1043
  error_code: "subscription_required";
1028
1044
  is_device_error: true;
1045
+ } | {
1046
+ message: string;
1047
+ created_at: string;
1048
+ error_code: "lockly_missing_wifi_bridge";
1049
+ is_device_error: true;
1029
1050
  } | {
1030
1051
  message: string;
1031
1052
  error_code: "smartthings_failed_to_set_access_code";
@@ -1311,6 +1332,11 @@ export declare const unmanaged_access_code: z.ZodObject<z.objectUtil.extendShape
1311
1332
  created_at: string;
1312
1333
  error_code: "subscription_required";
1313
1334
  is_device_error: true;
1335
+ } | {
1336
+ message: string;
1337
+ created_at: string;
1338
+ error_code: "lockly_missing_wifi_bridge";
1339
+ is_device_error: true;
1314
1340
  } | {
1315
1341
  message: string;
1316
1342
  error_code: "smartthings_failed_to_set_access_code";