@seamapi/types 1.964.0 → 1.966.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (36) hide show
  1. package/dist/connect.cjs +102 -19
  2. package/dist/connect.cjs.map +1 -1
  3. package/dist/connect.d.cts +518 -2
  4. package/dist/index.cjs +102 -19
  5. package/dist/index.cjs.map +1 -1
  6. package/lib/seam/connect/models/acs/acs-credential.d.ts +10 -0
  7. package/lib/seam/connect/models/acs/acs-credential.js +4 -0
  8. package/lib/seam/connect/models/acs/acs-credential.js.map +1 -1
  9. package/lib/seam/connect/models/acs/acs-entrance.d.ts +5 -0
  10. package/lib/seam/connect/models/acs/acs-entrance.js +4 -0
  11. package/lib/seam/connect/models/acs/acs-entrance.js.map +1 -1
  12. package/lib/seam/connect/models/action-attempts/action-attempt.d.ts +39 -0
  13. package/lib/seam/connect/models/action-attempts/encode-credential.d.ts +14 -0
  14. package/lib/seam/connect/models/action-attempts/scan-credential.d.ts +18 -0
  15. package/lib/seam/connect/models/action-attempts/scan-to-assign-credential.d.ts +7 -0
  16. package/lib/seam/connect/models/devices/capability-properties/index.d.ts +7 -0
  17. package/lib/seam/connect/models/devices/capability-properties/thermostat.d.ts +7 -0
  18. package/lib/seam/connect/models/devices/device.d.ts +9 -0
  19. package/lib/seam/connect/models/devices/phone.d.ts +10 -0
  20. package/lib/seam/connect/models/devices/phone.js +8 -0
  21. package/lib/seam/connect/models/devices/phone.js.map +1 -1
  22. package/lib/seam/connect/models/devices/unmanaged-device.d.ts +7 -0
  23. package/lib/seam/connect/models/phones/phone-session.d.ts +36 -0
  24. package/lib/seam/connect/models/thermostats/thermostat-schedule.d.ts +5 -0
  25. package/lib/seam/connect/models/thermostats/thermostat-schedule.js +4 -0
  26. package/lib/seam/connect/models/thermostats/thermostat-schedule.js.map +1 -1
  27. package/lib/seam/connect/openapi.js +96 -16
  28. package/lib/seam/connect/openapi.js.map +1 -1
  29. package/lib/seam/connect/route-types.d.ts +443 -2
  30. package/package.json +1 -1
  31. package/src/lib/seam/connect/models/acs/acs-credential.ts +4 -0
  32. package/src/lib/seam/connect/models/acs/acs-entrance.ts +4 -0
  33. package/src/lib/seam/connect/models/devices/phone.ts +8 -0
  34. package/src/lib/seam/connect/models/thermostats/thermostat-schedule.ts +4 -0
  35. package/src/lib/seam/connect/openapi.ts +105 -16
  36. package/src/lib/seam/connect/route-types.ts +638 -193
@@ -4718,11 +4718,14 @@ declare const acs_credential: z.ZodObject<{
4718
4718
  errors: z.ZodArray<z.ZodObject<{
4719
4719
  error_code: z.ZodString;
4720
4720
  message: z.ZodString;
4721
+ created_at: z.ZodString;
4721
4722
  }, "strip", z.ZodTypeAny, {
4722
4723
  message: string;
4724
+ created_at: string;
4723
4725
  error_code: string;
4724
4726
  }, {
4725
4727
  message: string;
4728
+ created_at: string;
4726
4729
  error_code: string;
4727
4730
  }>, "many">;
4728
4731
  warnings: z.ZodArray<z.ZodDiscriminatedUnion<"warning_code", [z.ZodObject<{
@@ -4865,6 +4868,7 @@ declare const acs_credential: z.ZodObject<{
4865
4868
  created_at: string;
4866
4869
  errors: {
4867
4870
  message: string;
4871
+ created_at: string;
4868
4872
  error_code: string;
4869
4873
  }[];
4870
4874
  connected_account_id: string;
@@ -4937,6 +4941,7 @@ declare const acs_credential: z.ZodObject<{
4937
4941
  created_at: string;
4938
4942
  errors: {
4939
4943
  message: string;
4944
+ created_at: string;
4940
4945
  error_code: string;
4941
4946
  }[];
4942
4947
  connected_account_id: string;
@@ -5028,11 +5033,14 @@ declare const unmanaged_acs_credential: z.ZodObject<{
5028
5033
  errors: z.ZodArray<z.ZodObject<{
5029
5034
  error_code: z.ZodString;
5030
5035
  message: z.ZodString;
5036
+ created_at: z.ZodString;
5031
5037
  }, "strip", z.ZodTypeAny, {
5032
5038
  message: string;
5039
+ created_at: string;
5033
5040
  error_code: string;
5034
5041
  }, {
5035
5042
  message: string;
5043
+ created_at: string;
5036
5044
  error_code: string;
5037
5045
  }>, "many">;
5038
5046
  warnings: z.ZodArray<z.ZodDiscriminatedUnion<"warning_code", [z.ZodObject<{
@@ -5175,6 +5183,7 @@ declare const unmanaged_acs_credential: z.ZodObject<{
5175
5183
  created_at: string;
5176
5184
  errors: {
5177
5185
  message: string;
5186
+ created_at: string;
5178
5187
  error_code: string;
5179
5188
  }[];
5180
5189
  connected_account_id: string;
@@ -5247,6 +5256,7 @@ declare const unmanaged_acs_credential: z.ZodObject<{
5247
5256
  created_at: string;
5248
5257
  errors: {
5249
5258
  message: string;
5259
+ created_at: string;
5250
5260
  error_code: string;
5251
5261
  }[];
5252
5262
  connected_account_id: string;
@@ -5374,11 +5384,14 @@ declare const acs_entrance: z.ZodObject<{
5374
5384
  errors: z.ZodArray<z.ZodObject<{
5375
5385
  error_code: z.ZodString;
5376
5386
  message: z.ZodString;
5387
+ created_at: z.ZodString;
5377
5388
  }, "strip", z.ZodTypeAny, {
5378
5389
  message: string;
5390
+ created_at: string;
5379
5391
  error_code: string;
5380
5392
  }, {
5381
5393
  message: string;
5394
+ created_at: string;
5382
5395
  error_code: string;
5383
5396
  }>, "many">;
5384
5397
  warnings: z.ZodArray<z.ZodDiscriminatedUnion<"warning_code", [z.ZodObject<{
@@ -5637,6 +5650,7 @@ declare const acs_entrance: z.ZodObject<{
5637
5650
  created_at: string;
5638
5651
  errors: {
5639
5652
  message: string;
5653
+ created_at: string;
5640
5654
  error_code: string;
5641
5655
  }[];
5642
5656
  connected_account_id: string;
@@ -5739,6 +5753,7 @@ declare const acs_entrance: z.ZodObject<{
5739
5753
  created_at: string;
5740
5754
  errors: {
5741
5755
  message: string;
5756
+ created_at: string;
5742
5757
  error_code: string;
5743
5758
  }[];
5744
5759
  connected_account_id: string;
@@ -8001,11 +8016,14 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<{
8001
8016
  errors: z.ZodArray<z.ZodObject<{
8002
8017
  error_code: z.ZodString;
8003
8018
  message: z.ZodString;
8019
+ created_at: z.ZodString;
8004
8020
  }, "strip", z.ZodTypeAny, {
8005
8021
  message: string;
8022
+ created_at: string;
8006
8023
  error_code: string;
8007
8024
  }, {
8008
8025
  message: string;
8026
+ created_at: string;
8009
8027
  error_code: string;
8010
8028
  }>, "many">;
8011
8029
  warnings: z.ZodArray<z.ZodDiscriminatedUnion<"warning_code", [z.ZodObject<{
@@ -8148,6 +8166,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<{
8148
8166
  created_at: string;
8149
8167
  errors: {
8150
8168
  message: string;
8169
+ created_at: string;
8151
8170
  error_code: string;
8152
8171
  }[];
8153
8172
  connected_account_id: string;
@@ -8220,6 +8239,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<{
8220
8239
  created_at: string;
8221
8240
  errors: {
8222
8241
  message: string;
8242
+ created_at: string;
8223
8243
  error_code: string;
8224
8244
  }[];
8225
8245
  connected_account_id: string;
@@ -8310,11 +8330,14 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<{
8310
8330
  errors: z.ZodArray<z.ZodObject<{
8311
8331
  error_code: z.ZodString;
8312
8332
  message: z.ZodString;
8333
+ created_at: z.ZodString;
8313
8334
  }, "strip", z.ZodTypeAny, {
8314
8335
  message: string;
8336
+ created_at: string;
8315
8337
  error_code: string;
8316
8338
  }, {
8317
8339
  message: string;
8340
+ created_at: string;
8318
8341
  error_code: string;
8319
8342
  }>, "many">;
8320
8343
  warnings: z.ZodArray<z.ZodDiscriminatedUnion<"warning_code", [z.ZodObject<{
@@ -8457,6 +8480,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<{
8457
8480
  created_at: string;
8458
8481
  errors: {
8459
8482
  message: string;
8483
+ created_at: string;
8460
8484
  error_code: string;
8461
8485
  }[];
8462
8486
  connected_account_id: string;
@@ -8529,6 +8553,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<{
8529
8553
  created_at: string;
8530
8554
  errors: {
8531
8555
  message: string;
8556
+ created_at: string;
8532
8557
  error_code: string;
8533
8558
  }[];
8534
8559
  connected_account_id: string;
@@ -8638,6 +8663,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<{
8638
8663
  created_at: string;
8639
8664
  errors: {
8640
8665
  message: string;
8666
+ created_at: string;
8641
8667
  error_code: string;
8642
8668
  }[];
8643
8669
  connected_account_id: string;
@@ -8710,6 +8736,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<{
8710
8736
  created_at: string;
8711
8737
  errors: {
8712
8738
  message: string;
8739
+ created_at: string;
8713
8740
  error_code: string;
8714
8741
  }[];
8715
8742
  connected_account_id: string;
@@ -8809,6 +8836,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<{
8809
8836
  created_at: string;
8810
8837
  errors: {
8811
8838
  message: string;
8839
+ created_at: string;
8812
8840
  error_code: string;
8813
8841
  }[];
8814
8842
  connected_account_id: string;
@@ -8881,6 +8909,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<{
8881
8909
  created_at: string;
8882
8910
  errors: {
8883
8911
  message: string;
8912
+ created_at: string;
8884
8913
  error_code: string;
8885
8914
  }[];
8886
8915
  connected_account_id: string;
@@ -8985,6 +9014,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<{
8985
9014
  created_at: string;
8986
9015
  errors: {
8987
9016
  message: string;
9017
+ created_at: string;
8988
9018
  error_code: string;
8989
9019
  }[];
8990
9020
  connected_account_id: string;
@@ -9057,6 +9087,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<{
9057
9087
  created_at: string;
9058
9088
  errors: {
9059
9089
  message: string;
9090
+ created_at: string;
9060
9091
  error_code: string;
9061
9092
  }[];
9062
9093
  connected_account_id: string;
@@ -9162,6 +9193,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<{
9162
9193
  created_at: string;
9163
9194
  errors: {
9164
9195
  message: string;
9196
+ created_at: string;
9165
9197
  error_code: string;
9166
9198
  }[];
9167
9199
  connected_account_id: string;
@@ -9234,6 +9266,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<{
9234
9266
  created_at: string;
9235
9267
  errors: {
9236
9268
  message: string;
9269
+ created_at: string;
9237
9270
  error_code: string;
9238
9271
  }[];
9239
9272
  connected_account_id: string;
@@ -9464,11 +9497,14 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<{
9464
9497
  errors: z.ZodArray<z.ZodObject<{
9465
9498
  error_code: z.ZodString;
9466
9499
  message: z.ZodString;
9500
+ created_at: z.ZodString;
9467
9501
  }, "strip", z.ZodTypeAny, {
9468
9502
  message: string;
9503
+ created_at: string;
9469
9504
  error_code: string;
9470
9505
  }, {
9471
9506
  message: string;
9507
+ created_at: string;
9472
9508
  error_code: string;
9473
9509
  }>, "many">;
9474
9510
  warnings: z.ZodArray<z.ZodDiscriminatedUnion<"warning_code", [z.ZodObject<{
@@ -9611,6 +9647,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<{
9611
9647
  created_at: string;
9612
9648
  errors: {
9613
9649
  message: string;
9650
+ created_at: string;
9614
9651
  error_code: string;
9615
9652
  }[];
9616
9653
  connected_account_id: string;
@@ -9683,6 +9720,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<{
9683
9720
  created_at: string;
9684
9721
  errors: {
9685
9722
  message: string;
9723
+ created_at: string;
9686
9724
  error_code: string;
9687
9725
  }[];
9688
9726
  connected_account_id: string;
@@ -9773,11 +9811,14 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<{
9773
9811
  errors: z.ZodArray<z.ZodObject<{
9774
9812
  error_code: z.ZodString;
9775
9813
  message: z.ZodString;
9814
+ created_at: z.ZodString;
9776
9815
  }, "strip", z.ZodTypeAny, {
9777
9816
  message: string;
9817
+ created_at: string;
9778
9818
  error_code: string;
9779
9819
  }, {
9780
9820
  message: string;
9821
+ created_at: string;
9781
9822
  error_code: string;
9782
9823
  }>, "many">;
9783
9824
  warnings: z.ZodArray<z.ZodDiscriminatedUnion<"warning_code", [z.ZodObject<{
@@ -9920,6 +9961,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<{
9920
9961
  created_at: string;
9921
9962
  errors: {
9922
9963
  message: string;
9964
+ created_at: string;
9923
9965
  error_code: string;
9924
9966
  }[];
9925
9967
  connected_account_id: string;
@@ -9992,6 +10034,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<{
9992
10034
  created_at: string;
9993
10035
  errors: {
9994
10036
  message: string;
10037
+ created_at: string;
9995
10038
  error_code: string;
9996
10039
  }[];
9997
10040
  connected_account_id: string;
@@ -10069,6 +10112,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<{
10069
10112
  created_at: string;
10070
10113
  errors: {
10071
10114
  message: string;
10115
+ created_at: string;
10072
10116
  error_code: string;
10073
10117
  }[];
10074
10118
  connected_account_id: string;
@@ -10141,6 +10185,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<{
10141
10185
  created_at: string;
10142
10186
  errors: {
10143
10187
  message: string;
10188
+ created_at: string;
10144
10189
  error_code: string;
10145
10190
  }[];
10146
10191
  connected_account_id: string;
@@ -10219,6 +10264,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<{
10219
10264
  created_at: string;
10220
10265
  errors: {
10221
10266
  message: string;
10267
+ created_at: string;
10222
10268
  error_code: string;
10223
10269
  }[];
10224
10270
  connected_account_id: string;
@@ -10291,6 +10337,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<{
10291
10337
  created_at: string;
10292
10338
  errors: {
10293
10339
  message: string;
10340
+ created_at: string;
10294
10341
  error_code: string;
10295
10342
  }[];
10296
10343
  connected_account_id: string;
@@ -10580,11 +10627,14 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<{
10580
10627
  errors: z.ZodArray<z.ZodObject<{
10581
10628
  error_code: z.ZodString;
10582
10629
  message: z.ZodString;
10630
+ created_at: z.ZodString;
10583
10631
  }, "strip", z.ZodTypeAny, {
10584
10632
  message: string;
10633
+ created_at: string;
10585
10634
  error_code: string;
10586
10635
  }, {
10587
10636
  message: string;
10637
+ created_at: string;
10588
10638
  error_code: string;
10589
10639
  }>, "many">;
10590
10640
  warnings: z.ZodArray<z.ZodDiscriminatedUnion<"warning_code", [z.ZodObject<{
@@ -10727,6 +10777,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<{
10727
10777
  created_at: string;
10728
10778
  errors: {
10729
10779
  message: string;
10780
+ created_at: string;
10730
10781
  error_code: string;
10731
10782
  }[];
10732
10783
  connected_account_id: string;
@@ -10799,6 +10850,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<{
10799
10850
  created_at: string;
10800
10851
  errors: {
10801
10852
  message: string;
10853
+ created_at: string;
10802
10854
  error_code: string;
10803
10855
  }[];
10804
10856
  connected_account_id: string;
@@ -10876,6 +10928,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<{
10876
10928
  created_at: string;
10877
10929
  errors: {
10878
10930
  message: string;
10931
+ created_at: string;
10879
10932
  error_code: string;
10880
10933
  }[];
10881
10934
  connected_account_id: string;
@@ -10954,6 +11007,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<{
10954
11007
  created_at: string;
10955
11008
  errors: {
10956
11009
  message: string;
11010
+ created_at: string;
10957
11011
  error_code: string;
10958
11012
  }[];
10959
11013
  connected_account_id: string;
@@ -16831,11 +16885,14 @@ declare const device: z.ZodObject<{
16831
16885
  errors: z.ZodArray<z.ZodObject<{
16832
16886
  error_code: z.ZodString;
16833
16887
  message: z.ZodString;
16888
+ created_at: z.ZodString;
16834
16889
  }, "strip", z.ZodTypeAny, {
16835
16890
  message: string;
16891
+ created_at: string;
16836
16892
  error_code: string;
16837
16893
  }, {
16838
16894
  message: string;
16895
+ created_at: string;
16839
16896
  error_code: string;
16840
16897
  }>, "many">;
16841
16898
  }, "strip", z.ZodTypeAny, {
@@ -16849,6 +16906,7 @@ declare const device: z.ZodObject<{
16849
16906
  ends_at: string;
16850
16907
  errors: {
16851
16908
  message: string;
16909
+ created_at: string;
16852
16910
  error_code: string;
16853
16911
  }[];
16854
16912
  max_override_period_minutes?: number | null | undefined;
@@ -16864,6 +16922,7 @@ declare const device: z.ZodObject<{
16864
16922
  ends_at: string;
16865
16923
  errors: {
16866
16924
  message: string;
16925
+ created_at: string;
16867
16926
  error_code: string;
16868
16927
  }[];
16869
16928
  max_override_period_minutes?: number | null | undefined;
@@ -17051,6 +17110,7 @@ declare const device: z.ZodObject<{
17051
17110
  ends_at: string;
17052
17111
  errors: {
17053
17112
  message: string;
17113
+ created_at: string;
17054
17114
  error_code: string;
17055
17115
  }[];
17056
17116
  max_override_period_minutes?: number | null | undefined;
@@ -17184,6 +17244,7 @@ declare const device: z.ZodObject<{
17184
17244
  ends_at: string;
17185
17245
  errors: {
17186
17246
  message: string;
17247
+ created_at: string;
17187
17248
  error_code: string;
17188
17249
  }[];
17189
17250
  max_override_period_minutes?: number | null | undefined;
@@ -18696,6 +18757,7 @@ declare const device: z.ZodObject<{
18696
18757
  ends_at: string;
18697
18758
  errors: {
18698
18759
  message: string;
18760
+ created_at: string;
18699
18761
  error_code: string;
18700
18762
  }[];
18701
18763
  max_override_period_minutes?: number | null | undefined;
@@ -19481,6 +19543,7 @@ declare const device: z.ZodObject<{
19481
19543
  ends_at: string;
19482
19544
  errors: {
19483
19545
  message: string;
19546
+ created_at: string;
19484
19547
  error_code: string;
19485
19548
  }[];
19486
19549
  max_override_period_minutes?: number | null | undefined;
@@ -21907,11 +21970,14 @@ declare const unmanaged_device: z.ZodObject<Pick<{
21907
21970
  errors: z.ZodArray<z.ZodObject<{
21908
21971
  error_code: z.ZodString;
21909
21972
  message: z.ZodString;
21973
+ created_at: z.ZodString;
21910
21974
  }, "strip", z.ZodTypeAny, {
21911
21975
  message: string;
21976
+ created_at: string;
21912
21977
  error_code: string;
21913
21978
  }, {
21914
21979
  message: string;
21980
+ created_at: string;
21915
21981
  error_code: string;
21916
21982
  }>, "many">;
21917
21983
  }, "strip", z.ZodTypeAny, {
@@ -21925,6 +21991,7 @@ declare const unmanaged_device: z.ZodObject<Pick<{
21925
21991
  ends_at: string;
21926
21992
  errors: {
21927
21993
  message: string;
21994
+ created_at: string;
21928
21995
  error_code: string;
21929
21996
  }[];
21930
21997
  max_override_period_minutes?: number | null | undefined;
@@ -21940,6 +22007,7 @@ declare const unmanaged_device: z.ZodObject<Pick<{
21940
22007
  ends_at: string;
21941
22008
  errors: {
21942
22009
  message: string;
22010
+ created_at: string;
21943
22011
  error_code: string;
21944
22012
  }[];
21945
22013
  max_override_period_minutes?: number | null | undefined;
@@ -22127,6 +22195,7 @@ declare const unmanaged_device: z.ZodObject<Pick<{
22127
22195
  ends_at: string;
22128
22196
  errors: {
22129
22197
  message: string;
22198
+ created_at: string;
22130
22199
  error_code: string;
22131
22200
  }[];
22132
22201
  max_override_period_minutes?: number | null | undefined;
@@ -22260,6 +22329,7 @@ declare const unmanaged_device: z.ZodObject<Pick<{
22260
22329
  ends_at: string;
22261
22330
  errors: {
22262
22331
  message: string;
22332
+ created_at: string;
22263
22333
  error_code: string;
22264
22334
  }[];
22265
22335
  max_override_period_minutes?: number | null | undefined;
@@ -29760,11 +29830,14 @@ declare const thermostat_schedule: z.ZodObject<{
29760
29830
  errors: z.ZodArray<z.ZodObject<{
29761
29831
  error_code: z.ZodString;
29762
29832
  message: z.ZodString;
29833
+ created_at: z.ZodString;
29763
29834
  }, "strip", z.ZodTypeAny, {
29764
29835
  message: string;
29836
+ created_at: string;
29765
29837
  error_code: string;
29766
29838
  }, {
29767
29839
  message: string;
29840
+ created_at: string;
29768
29841
  error_code: string;
29769
29842
  }>, "many">;
29770
29843
  }, "strip", z.ZodTypeAny, {
@@ -29778,6 +29851,7 @@ declare const thermostat_schedule: z.ZodObject<{
29778
29851
  ends_at: string;
29779
29852
  errors: {
29780
29853
  message: string;
29854
+ created_at: string;
29781
29855
  error_code: string;
29782
29856
  }[];
29783
29857
  max_override_period_minutes?: number | null | undefined;
@@ -29793,6 +29867,7 @@ declare const thermostat_schedule: z.ZodObject<{
29793
29867
  ends_at: string;
29794
29868
  errors: {
29795
29869
  message: string;
29870
+ created_at: string;
29796
29871
  error_code: string;
29797
29872
  }[];
29798
29873
  max_override_period_minutes?: number | null | undefined;
@@ -30279,6 +30354,8 @@ type Routes = {
30279
30354
  errors: {
30280
30355
  error_code: string;
30281
30356
  message: string;
30357
+ /** Date and time at which Seam created the error. */
30358
+ created_at: string;
30282
30359
  }[];
30283
30360
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
30284
30361
  warnings: ({
@@ -30411,6 +30488,8 @@ type Routes = {
30411
30488
  errors: {
30412
30489
  error_code: string;
30413
30490
  message: string;
30491
+ /** Date and time at which Seam created the error. */
30492
+ created_at: string;
30414
30493
  }[];
30415
30494
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
30416
30495
  warnings: ({
@@ -30609,6 +30688,8 @@ type Routes = {
30609
30688
  errors: {
30610
30689
  error_code: string;
30611
30690
  message: string;
30691
+ /** Date and time at which Seam created the error. */
30692
+ created_at: string;
30612
30693
  }[];
30613
30694
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
30614
30695
  warnings: ({
@@ -30741,6 +30822,8 @@ type Routes = {
30741
30822
  errors: {
30742
30823
  error_code: string;
30743
30824
  message: string;
30825
+ /** Date and time at which Seam created the error. */
30826
+ created_at: string;
30744
30827
  }[];
30745
30828
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
30746
30829
  warnings: ({
@@ -30951,6 +31034,8 @@ type Routes = {
30951
31034
  errors: {
30952
31035
  error_code: string;
30953
31036
  message: string;
31037
+ /** Date and time at which Seam created the error. */
31038
+ created_at: string;
30954
31039
  }[];
30955
31040
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
30956
31041
  warnings: ({
@@ -32919,6 +33004,8 @@ type Routes = {
32919
33004
  errors: {
32920
33005
  error_code: string;
32921
33006
  message: string;
33007
+ /** Date and time at which Seam created the error. */
33008
+ created_at: string;
32922
33009
  }[];
32923
33010
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
32924
33011
  warnings: ({
@@ -33051,6 +33138,8 @@ type Routes = {
33051
33138
  errors: {
33052
33139
  error_code: string;
33053
33140
  message: string;
33141
+ /** Date and time at which Seam created the error. */
33142
+ created_at: string;
33054
33143
  }[];
33055
33144
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
33056
33145
  warnings: ({
@@ -33249,6 +33338,8 @@ type Routes = {
33249
33338
  errors: {
33250
33339
  error_code: string;
33251
33340
  message: string;
33341
+ /** Date and time at which Seam created the error. */
33342
+ created_at: string;
33252
33343
  }[];
33253
33344
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
33254
33345
  warnings: ({
@@ -33381,6 +33472,8 @@ type Routes = {
33381
33472
  errors: {
33382
33473
  error_code: string;
33383
33474
  message: string;
33475
+ /** Date and time at which Seam created the error. */
33476
+ created_at: string;
33384
33477
  }[];
33385
33478
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
33386
33479
  warnings: ({
@@ -33591,6 +33684,8 @@ type Routes = {
33591
33684
  errors: {
33592
33685
  error_code: string;
33593
33686
  message: string;
33687
+ /** Date and time at which Seam created the error. */
33688
+ created_at: string;
33594
33689
  }[];
33595
33690
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
33596
33691
  warnings: ({
@@ -36992,6 +37087,8 @@ type Routes = {
36992
37087
  errors: {
36993
37088
  error_code: string;
36994
37089
  message: string;
37090
+ /** Date and time at which Seam created the error. */
37091
+ created_at: string;
36995
37092
  }[];
36996
37093
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
36997
37094
  warnings: ({
@@ -37124,6 +37221,8 @@ type Routes = {
37124
37221
  errors: {
37125
37222
  error_code: string;
37126
37223
  message: string;
37224
+ /** Date and time at which Seam created the error. */
37225
+ created_at: string;
37127
37226
  }[];
37128
37227
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
37129
37228
  warnings: ({
@@ -37322,6 +37421,8 @@ type Routes = {
37322
37421
  errors: {
37323
37422
  error_code: string;
37324
37423
  message: string;
37424
+ /** Date and time at which Seam created the error. */
37425
+ created_at: string;
37325
37426
  }[];
37326
37427
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
37327
37428
  warnings: ({
@@ -37454,6 +37555,8 @@ type Routes = {
37454
37555
  errors: {
37455
37556
  error_code: string;
37456
37557
  message: string;
37558
+ /** Date and time at which Seam created the error. */
37559
+ created_at: string;
37457
37560
  }[];
37458
37561
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
37459
37562
  warnings: ({
@@ -37664,6 +37767,8 @@ type Routes = {
37664
37767
  errors: {
37665
37768
  error_code: string;
37666
37769
  message: string;
37770
+ /** Date and time at which Seam created the error. */
37771
+ created_at: string;
37667
37772
  }[];
37668
37773
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
37669
37774
  warnings: ({
@@ -39512,6 +39617,8 @@ type Routes = {
39512
39617
  errors: {
39513
39618
  error_code: string;
39514
39619
  message: string;
39620
+ /** Date and time at which Seam created the error. */
39621
+ created_at: string;
39515
39622
  }[];
39516
39623
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
39517
39624
  warnings: ({
@@ -39644,6 +39751,8 @@ type Routes = {
39644
39751
  errors: {
39645
39752
  error_code: string;
39646
39753
  message: string;
39754
+ /** Date and time at which Seam created the error. */
39755
+ created_at: string;
39647
39756
  }[];
39648
39757
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
39649
39758
  warnings: ({
@@ -39842,6 +39951,8 @@ type Routes = {
39842
39951
  errors: {
39843
39952
  error_code: string;
39844
39953
  message: string;
39954
+ /** Date and time at which Seam created the error. */
39955
+ created_at: string;
39845
39956
  }[];
39846
39957
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
39847
39958
  warnings: ({
@@ -39974,6 +40085,8 @@ type Routes = {
39974
40085
  errors: {
39975
40086
  error_code: string;
39976
40087
  message: string;
40088
+ /** Date and time at which Seam created the error. */
40089
+ created_at: string;
39977
40090
  }[];
39978
40091
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
39979
40092
  warnings: ({
@@ -40184,6 +40297,8 @@ type Routes = {
40184
40297
  errors: {
40185
40298
  error_code: string;
40186
40299
  message: string;
40300
+ /** Date and time at which Seam created the error. */
40301
+ created_at: string;
40187
40302
  }[];
40188
40303
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
40189
40304
  warnings: ({
@@ -42502,6 +42617,8 @@ type Routes = {
42502
42617
  error_code: string;
42503
42618
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
42504
42619
  message: string;
42620
+ /** Date and time at which Seam created the error. */
42621
+ created_at: string;
42505
42622
  }[];
42506
42623
  } | null) | undefined;
42507
42624
  /** ID of the active [thermostat schedule](https://docs.seam.co/capability-guides/thermostats/creating-and-managing-thermostat-schedules). */
@@ -43020,6 +43137,8 @@ type Routes = {
43020
43137
  error_code: string;
43021
43138
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
43022
43139
  message: string;
43140
+ /** Date and time at which Seam created the error. */
43141
+ created_at: string;
43023
43142
  }[];
43024
43143
  /** Warnings associated with the [entrance](https://docs.seam.co/low-level-apis/access-systems/retrieving-entrance-details). */
43025
43144
  warnings: ({
@@ -44912,6 +45031,8 @@ type Routes = {
44912
45031
  errors: {
44913
45032
  error_code: string;
44914
45033
  message: string;
45034
+ /** Date and time at which Seam created the error. */
45035
+ created_at: string;
44915
45036
  }[];
44916
45037
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
44917
45038
  warnings: ({
@@ -45044,6 +45165,8 @@ type Routes = {
45044
45165
  errors: {
45045
45166
  error_code: string;
45046
45167
  message: string;
45168
+ /** Date and time at which Seam created the error. */
45169
+ created_at: string;
45047
45170
  }[];
45048
45171
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
45049
45172
  warnings: ({
@@ -45242,6 +45365,8 @@ type Routes = {
45242
45365
  errors: {
45243
45366
  error_code: string;
45244
45367
  message: string;
45368
+ /** Date and time at which Seam created the error. */
45369
+ created_at: string;
45245
45370
  }[];
45246
45371
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
45247
45372
  warnings: ({
@@ -45374,6 +45499,8 @@ type Routes = {
45374
45499
  errors: {
45375
45500
  error_code: string;
45376
45501
  message: string;
45502
+ /** Date and time at which Seam created the error. */
45503
+ created_at: string;
45377
45504
  }[];
45378
45505
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
45379
45506
  warnings: ({
@@ -45584,6 +45711,8 @@ type Routes = {
45584
45711
  errors: {
45585
45712
  error_code: string;
45586
45713
  message: string;
45714
+ /** Date and time at which Seam created the error. */
45715
+ created_at: string;
45587
45716
  }[];
45588
45717
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
45589
45718
  warnings: ({
@@ -46629,6 +46758,8 @@ type Routes = {
46629
46758
  errors: {
46630
46759
  error_code: string;
46631
46760
  message: string;
46761
+ /** Date and time at which Seam created the error. */
46762
+ created_at: string;
46632
46763
  }[];
46633
46764
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
46634
46765
  warnings: ({
@@ -46761,6 +46892,8 @@ type Routes = {
46761
46892
  errors: {
46762
46893
  error_code: string;
46763
46894
  message: string;
46895
+ /** Date and time at which Seam created the error. */
46896
+ created_at: string;
46764
46897
  }[];
46765
46898
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
46766
46899
  warnings: ({
@@ -46959,6 +47092,8 @@ type Routes = {
46959
47092
  errors: {
46960
47093
  error_code: string;
46961
47094
  message: string;
47095
+ /** Date and time at which Seam created the error. */
47096
+ created_at: string;
46962
47097
  }[];
46963
47098
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
46964
47099
  warnings: ({
@@ -47091,6 +47226,8 @@ type Routes = {
47091
47226
  errors: {
47092
47227
  error_code: string;
47093
47228
  message: string;
47229
+ /** Date and time at which Seam created the error. */
47230
+ created_at: string;
47094
47231
  }[];
47095
47232
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
47096
47233
  warnings: ({
@@ -47301,6 +47438,8 @@ type Routes = {
47301
47438
  errors: {
47302
47439
  error_code: string;
47303
47440
  message: string;
47441
+ /** Date and time at which Seam created the error. */
47442
+ created_at: string;
47304
47443
  }[];
47305
47444
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
47306
47445
  warnings: ({
@@ -49277,6 +49416,8 @@ type Routes = {
49277
49416
  error_code: string;
49278
49417
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
49279
49418
  message: string;
49419
+ /** Date and time at which Seam created the error. */
49420
+ created_at: string;
49280
49421
  }[];
49281
49422
  } | null) | undefined;
49282
49423
  /** ID of the active [thermostat schedule](https://docs.seam.co/capability-guides/thermostats/creating-and-managing-thermostat-schedules). */
@@ -49795,6 +49936,8 @@ type Routes = {
49795
49936
  error_code: string;
49796
49937
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
49797
49938
  message: string;
49939
+ /** Date and time at which Seam created the error. */
49940
+ created_at: string;
49798
49941
  }[];
49799
49942
  /** Warnings associated with the [entrance](https://docs.seam.co/low-level-apis/access-systems/retrieving-entrance-details). */
49800
49943
  warnings: ({
@@ -50371,6 +50514,8 @@ type Routes = {
50371
50514
  errors: {
50372
50515
  error_code: string;
50373
50516
  message: string;
50517
+ /** Date and time at which Seam created the error. */
50518
+ created_at: string;
50374
50519
  }[];
50375
50520
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
50376
50521
  warnings: ({
@@ -50817,6 +50962,8 @@ type Routes = {
50817
50962
  errors: {
50818
50963
  error_code: string;
50819
50964
  message: string;
50965
+ /** Date and time at which Seam created the error. */
50966
+ created_at: string;
50820
50967
  }[];
50821
50968
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
50822
50969
  warnings: ({
@@ -50949,6 +51096,8 @@ type Routes = {
50949
51096
  errors: {
50950
51097
  error_code: string;
50951
51098
  message: string;
51099
+ /** Date and time at which Seam created the error. */
51100
+ created_at: string;
50952
51101
  }[];
50953
51102
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
50954
51103
  warnings: ({
@@ -51147,6 +51296,8 @@ type Routes = {
51147
51296
  errors: {
51148
51297
  error_code: string;
51149
51298
  message: string;
51299
+ /** Date and time at which Seam created the error. */
51300
+ created_at: string;
51150
51301
  }[];
51151
51302
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
51152
51303
  warnings: ({
@@ -51279,6 +51430,8 @@ type Routes = {
51279
51430
  errors: {
51280
51431
  error_code: string;
51281
51432
  message: string;
51433
+ /** Date and time at which Seam created the error. */
51434
+ created_at: string;
51282
51435
  }[];
51283
51436
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
51284
51437
  warnings: ({
@@ -51489,6 +51642,8 @@ type Routes = {
51489
51642
  errors: {
51490
51643
  error_code: string;
51491
51644
  message: string;
51645
+ /** Date and time at which Seam created the error. */
51646
+ created_at: string;
51492
51647
  }[];
51493
51648
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
51494
51649
  warnings: ({
@@ -53029,6 +53184,8 @@ type Routes = {
53029
53184
  error_code: string;
53030
53185
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
53031
53186
  message: string;
53187
+ /** Date and time at which Seam created the error. */
53188
+ created_at: string;
53032
53189
  }[];
53033
53190
  /** Warnings associated with the [entrance](https://docs.seam.co/low-level-apis/access-systems/retrieving-entrance-details). */
53034
53191
  warnings: ({
@@ -53969,6 +54126,8 @@ type Routes = {
53969
54126
  errors: {
53970
54127
  error_code: string;
53971
54128
  message: string;
54129
+ /** Date and time at which Seam created the error. */
54130
+ created_at: string;
53972
54131
  }[];
53973
54132
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
53974
54133
  warnings: ({
@@ -54174,6 +54333,8 @@ type Routes = {
54174
54333
  errors: {
54175
54334
  error_code: string;
54176
54335
  message: string;
54336
+ /** Date and time at which Seam created the error. */
54337
+ created_at: string;
54177
54338
  }[];
54178
54339
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
54179
54340
  warnings: ({
@@ -54336,6 +54497,8 @@ type Routes = {
54336
54497
  errors: {
54337
54498
  error_code: string;
54338
54499
  message: string;
54500
+ /** Date and time at which Seam created the error. */
54501
+ created_at: string;
54339
54502
  }[];
54340
54503
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
54341
54504
  warnings: ({
@@ -54503,6 +54666,8 @@ type Routes = {
54503
54666
  errors: {
54504
54667
  error_code: string;
54505
54668
  message: string;
54669
+ /** Date and time at which Seam created the error. */
54670
+ created_at: string;
54506
54671
  }[];
54507
54672
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
54508
54673
  warnings: ({
@@ -54672,6 +54837,8 @@ type Routes = {
54672
54837
  errors: {
54673
54838
  error_code: string;
54674
54839
  message: string;
54840
+ /** Date and time at which Seam created the error. */
54841
+ created_at: string;
54675
54842
  }[];
54676
54843
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
54677
54844
  warnings: ({
@@ -54802,6 +54969,8 @@ type Routes = {
54802
54969
  error_code: string;
54803
54970
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
54804
54971
  message: string;
54972
+ /** Date and time at which Seam created the error. */
54973
+ created_at: string;
54805
54974
  }[];
54806
54975
  /** Warnings associated with the [entrance](https://docs.seam.co/low-level-apis/access-systems/retrieving-entrance-details). */
54807
54976
  warnings: ({
@@ -55040,6 +55209,8 @@ type Routes = {
55040
55209
  errors: {
55041
55210
  error_code: string;
55042
55211
  message: string;
55212
+ /** Date and time at which Seam created the error. */
55213
+ created_at: string;
55043
55214
  }[];
55044
55215
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
55045
55216
  warnings: ({
@@ -55188,6 +55359,8 @@ type Routes = {
55188
55359
  errors: {
55189
55360
  error_code: string;
55190
55361
  message: string;
55362
+ /** Date and time at which Seam created the error. */
55363
+ created_at: string;
55191
55364
  }[];
55192
55365
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
55193
55366
  warnings: ({
@@ -55348,6 +55521,8 @@ type Routes = {
55348
55521
  errors: {
55349
55522
  error_code: string;
55350
55523
  message: string;
55524
+ /** Date and time at which Seam created the error. */
55525
+ created_at: string;
55351
55526
  }[];
55352
55527
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
55353
55528
  warnings: ({
@@ -55505,6 +55680,8 @@ type Routes = {
55505
55680
  errors: {
55506
55681
  error_code: string;
55507
55682
  message: string;
55683
+ /** Date and time at which Seam created the error. */
55684
+ created_at: string;
55508
55685
  }[];
55509
55686
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
55510
55687
  warnings: ({
@@ -55798,6 +55975,8 @@ type Routes = {
55798
55975
  errors: {
55799
55976
  error_code: string;
55800
55977
  message: string;
55978
+ /** Date and time at which Seam created the error. */
55979
+ created_at: string;
55801
55980
  }[];
55802
55981
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
55803
55982
  warnings: ({
@@ -55930,6 +56109,8 @@ type Routes = {
55930
56109
  errors: {
55931
56110
  error_code: string;
55932
56111
  message: string;
56112
+ /** Date and time at which Seam created the error. */
56113
+ created_at: string;
55933
56114
  }[];
55934
56115
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
55935
56116
  warnings: ({
@@ -56128,6 +56309,8 @@ type Routes = {
56128
56309
  errors: {
56129
56310
  error_code: string;
56130
56311
  message: string;
56312
+ /** Date and time at which Seam created the error. */
56313
+ created_at: string;
56131
56314
  }[];
56132
56315
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
56133
56316
  warnings: ({
@@ -56260,6 +56443,8 @@ type Routes = {
56260
56443
  errors: {
56261
56444
  error_code: string;
56262
56445
  message: string;
56446
+ /** Date and time at which Seam created the error. */
56447
+ created_at: string;
56263
56448
  }[];
56264
56449
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
56265
56450
  warnings: ({
@@ -56470,6 +56655,8 @@ type Routes = {
56470
56655
  errors: {
56471
56656
  error_code: string;
56472
56657
  message: string;
56658
+ /** Date and time at which Seam created the error. */
56659
+ created_at: string;
56473
56660
  }[];
56474
56661
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
56475
56662
  warnings: ({
@@ -57607,6 +57794,8 @@ type Routes = {
57607
57794
  errors: {
57608
57795
  error_code: string;
57609
57796
  message: string;
57797
+ /** Date and time at which Seam created the error. */
57798
+ created_at: string;
57610
57799
  }[];
57611
57800
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
57612
57801
  warnings: ({
@@ -57739,6 +57928,8 @@ type Routes = {
57739
57928
  errors: {
57740
57929
  error_code: string;
57741
57930
  message: string;
57931
+ /** Date and time at which Seam created the error. */
57932
+ created_at: string;
57742
57933
  }[];
57743
57934
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
57744
57935
  warnings: ({
@@ -57937,6 +58128,8 @@ type Routes = {
57937
58128
  errors: {
57938
58129
  error_code: string;
57939
58130
  message: string;
58131
+ /** Date and time at which Seam created the error. */
58132
+ created_at: string;
57940
58133
  }[];
57941
58134
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
57942
58135
  warnings: ({
@@ -58069,6 +58262,8 @@ type Routes = {
58069
58262
  errors: {
58070
58263
  error_code: string;
58071
58264
  message: string;
58265
+ /** Date and time at which Seam created the error. */
58266
+ created_at: string;
58072
58267
  }[];
58073
58268
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
58074
58269
  warnings: ({
@@ -58279,6 +58474,8 @@ type Routes = {
58279
58474
  errors: {
58280
58475
  error_code: string;
58281
58476
  message: string;
58477
+ /** Date and time at which Seam created the error. */
58478
+ created_at: string;
58282
58479
  }[];
58283
58480
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
58284
58481
  warnings: ({
@@ -59312,6 +59509,8 @@ type Routes = {
59312
59509
  errors: {
59313
59510
  error_code: string;
59314
59511
  message: string;
59512
+ /** Date and time at which Seam created the error. */
59513
+ created_at: string;
59315
59514
  }[];
59316
59515
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
59317
59516
  warnings: ({
@@ -59444,6 +59643,8 @@ type Routes = {
59444
59643
  errors: {
59445
59644
  error_code: string;
59446
59645
  message: string;
59646
+ /** Date and time at which Seam created the error. */
59647
+ created_at: string;
59447
59648
  }[];
59448
59649
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
59449
59650
  warnings: ({
@@ -59642,6 +59843,8 @@ type Routes = {
59642
59843
  errors: {
59643
59844
  error_code: string;
59644
59845
  message: string;
59846
+ /** Date and time at which Seam created the error. */
59847
+ created_at: string;
59645
59848
  }[];
59646
59849
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
59647
59850
  warnings: ({
@@ -59774,6 +59977,8 @@ type Routes = {
59774
59977
  errors: {
59775
59978
  error_code: string;
59776
59979
  message: string;
59980
+ /** Date and time at which Seam created the error. */
59981
+ created_at: string;
59777
59982
  }[];
59778
59983
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
59779
59984
  warnings: ({
@@ -59984,6 +60189,8 @@ type Routes = {
59984
60189
  errors: {
59985
60190
  error_code: string;
59986
60191
  message: string;
60192
+ /** Date and time at which Seam created the error. */
60193
+ created_at: string;
59987
60194
  }[];
59988
60195
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
59989
60196
  warnings: ({
@@ -60926,6 +61133,8 @@ type Routes = {
60926
61133
  error_code: string;
60927
61134
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
60928
61135
  message: string;
61136
+ /** Date and time at which Seam created the error. */
61137
+ created_at: string;
60929
61138
  }[];
60930
61139
  /** Warnings associated with the [entrance](https://docs.seam.co/low-level-apis/access-systems/retrieving-entrance-details). */
60931
61140
  warnings: ({
@@ -61163,6 +61372,8 @@ type Routes = {
61163
61372
  error_code: string;
61164
61373
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
61165
61374
  message: string;
61375
+ /** Date and time at which Seam created the error. */
61376
+ created_at: string;
61166
61377
  }[];
61167
61378
  /** Warnings associated with the [entrance](https://docs.seam.co/low-level-apis/access-systems/retrieving-entrance-details). */
61168
61379
  warnings: ({
@@ -61401,6 +61612,8 @@ type Routes = {
61401
61612
  errors: {
61402
61613
  error_code: string;
61403
61614
  message: string;
61615
+ /** Date and time at which Seam created the error. */
61616
+ created_at: string;
61404
61617
  }[];
61405
61618
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
61406
61619
  warnings: ({
@@ -61692,6 +61905,8 @@ type Routes = {
61692
61905
  errors: {
61693
61906
  error_code: string;
61694
61907
  message: string;
61908
+ /** Date and time at which Seam created the error. */
61909
+ created_at: string;
61695
61910
  }[];
61696
61911
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
61697
61912
  warnings: ({
@@ -61824,6 +62039,8 @@ type Routes = {
61824
62039
  errors: {
61825
62040
  error_code: string;
61826
62041
  message: string;
62042
+ /** Date and time at which Seam created the error. */
62043
+ created_at: string;
61827
62044
  }[];
61828
62045
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
61829
62046
  warnings: ({
@@ -62022,6 +62239,8 @@ type Routes = {
62022
62239
  errors: {
62023
62240
  error_code: string;
62024
62241
  message: string;
62242
+ /** Date and time at which Seam created the error. */
62243
+ created_at: string;
62025
62244
  }[];
62026
62245
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
62027
62246
  warnings: ({
@@ -62154,6 +62373,8 @@ type Routes = {
62154
62373
  errors: {
62155
62374
  error_code: string;
62156
62375
  message: string;
62376
+ /** Date and time at which Seam created the error. */
62377
+ created_at: string;
62157
62378
  }[];
62158
62379
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
62159
62380
  warnings: ({
@@ -62364,6 +62585,8 @@ type Routes = {
62364
62585
  errors: {
62365
62586
  error_code: string;
62366
62587
  message: string;
62588
+ /** Date and time at which Seam created the error. */
62589
+ created_at: string;
62367
62590
  }[];
62368
62591
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
62369
62592
  warnings: ({
@@ -64615,6 +64838,8 @@ type Routes = {
64615
64838
  error_code: string;
64616
64839
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
64617
64840
  message: string;
64841
+ /** Date and time at which Seam created the error. */
64842
+ created_at: string;
64618
64843
  }[];
64619
64844
  /** Warnings associated with the [entrance](https://docs.seam.co/low-level-apis/access-systems/retrieving-entrance-details). */
64620
64845
  warnings: ({
@@ -65632,6 +65857,8 @@ type Routes = {
65632
65857
  errors: {
65633
65858
  error_code: string;
65634
65859
  message: string;
65860
+ /** Date and time at which Seam created the error. */
65861
+ created_at: string;
65635
65862
  }[];
65636
65863
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
65637
65864
  warnings: ({
@@ -65764,6 +65991,8 @@ type Routes = {
65764
65991
  errors: {
65765
65992
  error_code: string;
65766
65993
  message: string;
65994
+ /** Date and time at which Seam created the error. */
65995
+ created_at: string;
65767
65996
  }[];
65768
65997
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
65769
65998
  warnings: ({
@@ -65962,6 +66191,8 @@ type Routes = {
65962
66191
  errors: {
65963
66192
  error_code: string;
65964
66193
  message: string;
66194
+ /** Date and time at which Seam created the error. */
66195
+ created_at: string;
65965
66196
  }[];
65966
66197
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
65967
66198
  warnings: ({
@@ -66094,6 +66325,8 @@ type Routes = {
66094
66325
  errors: {
66095
66326
  error_code: string;
66096
66327
  message: string;
66328
+ /** Date and time at which Seam created the error. */
66329
+ created_at: string;
66097
66330
  }[];
66098
66331
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
66099
66332
  warnings: ({
@@ -66304,6 +66537,8 @@ type Routes = {
66304
66537
  errors: {
66305
66538
  error_code: string;
66306
66539
  message: string;
66540
+ /** Date and time at which Seam created the error. */
66541
+ created_at: string;
66307
66542
  }[];
66308
66543
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
66309
66544
  warnings: ({
@@ -67329,6 +67564,8 @@ type Routes = {
67329
67564
  errors: {
67330
67565
  error_code: string;
67331
67566
  message: string;
67567
+ /** Date and time at which Seam created the error. */
67568
+ created_at: string;
67332
67569
  }[];
67333
67570
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
67334
67571
  warnings: ({
@@ -67461,6 +67698,8 @@ type Routes = {
67461
67698
  errors: {
67462
67699
  error_code: string;
67463
67700
  message: string;
67701
+ /** Date and time at which Seam created the error. */
67702
+ created_at: string;
67464
67703
  }[];
67465
67704
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
67466
67705
  warnings: ({
@@ -67659,6 +67898,8 @@ type Routes = {
67659
67898
  errors: {
67660
67899
  error_code: string;
67661
67900
  message: string;
67901
+ /** Date and time at which Seam created the error. */
67902
+ created_at: string;
67662
67903
  }[];
67663
67904
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
67664
67905
  warnings: ({
@@ -67791,6 +68032,8 @@ type Routes = {
67791
68032
  errors: {
67792
68033
  error_code: string;
67793
68034
  message: string;
68035
+ /** Date and time at which Seam created the error. */
68036
+ created_at: string;
67794
68037
  }[];
67795
68038
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
67796
68039
  warnings: ({
@@ -68001,6 +68244,8 @@ type Routes = {
68001
68244
  errors: {
68002
68245
  error_code: string;
68003
68246
  message: string;
68247
+ /** Date and time at which Seam created the error. */
68248
+ created_at: string;
68004
68249
  }[];
68005
68250
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
68006
68251
  warnings: ({
@@ -71971,6 +72216,8 @@ type Routes = {
71971
72216
  error_code: string;
71972
72217
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
71973
72218
  message: string;
72219
+ /** Date and time at which Seam created the error. */
72220
+ created_at: string;
71974
72221
  }[];
71975
72222
  } | null) | undefined;
71976
72223
  /** ID of the active [thermostat schedule](https://docs.seam.co/capability-guides/thermostats/creating-and-managing-thermostat-schedules). */
@@ -73469,6 +73716,8 @@ type Routes = {
73469
73716
  error_code: string;
73470
73717
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
73471
73718
  message: string;
73719
+ /** Date and time at which Seam created the error. */
73720
+ created_at: string;
73472
73721
  }[];
73473
73722
  } | null) | undefined;
73474
73723
  /** ID of the active [thermostat schedule](https://docs.seam.co/capability-guides/thermostats/creating-and-managing-thermostat-schedules). */
@@ -82080,6 +82329,8 @@ type Routes = {
82080
82329
  errors: {
82081
82330
  error_code: string;
82082
82331
  message: string;
82332
+ /** Date and time at which Seam created the error. */
82333
+ created_at: string;
82083
82334
  }[];
82084
82335
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
82085
82336
  warnings: ({
@@ -82212,6 +82463,8 @@ type Routes = {
82212
82463
  errors: {
82213
82464
  error_code: string;
82214
82465
  message: string;
82466
+ /** Date and time at which Seam created the error. */
82467
+ created_at: string;
82215
82468
  }[];
82216
82469
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
82217
82470
  warnings: ({
@@ -82410,6 +82663,8 @@ type Routes = {
82410
82663
  errors: {
82411
82664
  error_code: string;
82412
82665
  message: string;
82666
+ /** Date and time at which Seam created the error. */
82667
+ created_at: string;
82413
82668
  }[];
82414
82669
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
82415
82670
  warnings: ({
@@ -82542,6 +82797,8 @@ type Routes = {
82542
82797
  errors: {
82543
82798
  error_code: string;
82544
82799
  message: string;
82800
+ /** Date and time at which Seam created the error. */
82801
+ created_at: string;
82545
82802
  }[];
82546
82803
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
82547
82804
  warnings: ({
@@ -82752,6 +83009,8 @@ type Routes = {
82752
83009
  errors: {
82753
83010
  error_code: string;
82754
83011
  message: string;
83012
+ /** Date and time at which Seam created the error. */
83013
+ created_at: string;
82755
83014
  }[];
82756
83015
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
82757
83016
  warnings: ({
@@ -84540,6 +84799,8 @@ type Routes = {
84540
84799
  error_code: string;
84541
84800
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
84542
84801
  message: string;
84802
+ /** Date and time at which Seam created the error. */
84803
+ created_at: string;
84543
84804
  }[];
84544
84805
  } | null) | undefined;
84545
84806
  /** ID of the active [thermostat schedule](https://docs.seam.co/capability-guides/thermostats/creating-and-managing-thermostat-schedules). */
@@ -85988,6 +86249,8 @@ type Routes = {
85988
86249
  error_code: string;
85989
86250
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
85990
86251
  message: string;
86252
+ /** Date and time at which Seam created the error. */
86253
+ created_at: string;
85991
86254
  }[];
85992
86255
  } | null) | undefined;
85993
86256
  /** ID of the active [thermostat schedule](https://docs.seam.co/capability-guides/thermostats/creating-and-managing-thermostat-schedules). */
@@ -87486,6 +87749,8 @@ type Routes = {
87486
87749
  error_code: string;
87487
87750
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
87488
87751
  message: string;
87752
+ /** Date and time at which Seam created the error. */
87753
+ created_at: string;
87489
87754
  }[];
87490
87755
  } | null) | undefined;
87491
87756
  /** ID of the active [thermostat schedule](https://docs.seam.co/capability-guides/thermostats/creating-and-managing-thermostat-schedules). */
@@ -88933,6 +89198,8 @@ type Routes = {
88933
89198
  error_code: string;
88934
89199
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
88935
89200
  message: string;
89201
+ /** Date and time at which Seam created the error. */
89202
+ created_at: string;
88936
89203
  }[];
88937
89204
  } | null) | undefined;
88938
89205
  /** ID of the active [thermostat schedule](https://docs.seam.co/capability-guides/thermostats/creating-and-managing-thermostat-schedules). */
@@ -89635,6 +89902,8 @@ type Routes = {
89635
89902
  errors: {
89636
89903
  error_code: string;
89637
89904
  message: string;
89905
+ /** Date and time at which Seam created the error. */
89906
+ created_at: string;
89638
89907
  }[];
89639
89908
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
89640
89909
  warnings: ({
@@ -89767,6 +90036,8 @@ type Routes = {
89767
90036
  errors: {
89768
90037
  error_code: string;
89769
90038
  message: string;
90039
+ /** Date and time at which Seam created the error. */
90040
+ created_at: string;
89770
90041
  }[];
89771
90042
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
89772
90043
  warnings: ({
@@ -89965,6 +90236,8 @@ type Routes = {
89965
90236
  errors: {
89966
90237
  error_code: string;
89967
90238
  message: string;
90239
+ /** Date and time at which Seam created the error. */
90240
+ created_at: string;
89968
90241
  }[];
89969
90242
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
89970
90243
  warnings: ({
@@ -90097,6 +90370,8 @@ type Routes = {
90097
90370
  errors: {
90098
90371
  error_code: string;
90099
90372
  message: string;
90373
+ /** Date and time at which Seam created the error. */
90374
+ created_at: string;
90100
90375
  }[];
90101
90376
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
90102
90377
  warnings: ({
@@ -90307,6 +90582,8 @@ type Routes = {
90307
90582
  errors: {
90308
90583
  error_code: string;
90309
90584
  message: string;
90585
+ /** Date and time at which Seam created the error. */
90586
+ created_at: string;
90310
90587
  }[];
90311
90588
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
90312
90589
  warnings: ({
@@ -91333,6 +91610,8 @@ type Routes = {
91333
91610
  errors: {
91334
91611
  error_code: string;
91335
91612
  message: string;
91613
+ /** Date and time at which Seam created the error. */
91614
+ created_at: string;
91336
91615
  }[];
91337
91616
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
91338
91617
  warnings: ({
@@ -91465,6 +91744,8 @@ type Routes = {
91465
91744
  errors: {
91466
91745
  error_code: string;
91467
91746
  message: string;
91747
+ /** Date and time at which Seam created the error. */
91748
+ created_at: string;
91468
91749
  }[];
91469
91750
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
91470
91751
  warnings: ({
@@ -91663,6 +91944,8 @@ type Routes = {
91663
91944
  errors: {
91664
91945
  error_code: string;
91665
91946
  message: string;
91947
+ /** Date and time at which Seam created the error. */
91948
+ created_at: string;
91666
91949
  }[];
91667
91950
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
91668
91951
  warnings: ({
@@ -91795,6 +92078,8 @@ type Routes = {
91795
92078
  errors: {
91796
92079
  error_code: string;
91797
92080
  message: string;
92081
+ /** Date and time at which Seam created the error. */
92082
+ created_at: string;
91798
92083
  }[];
91799
92084
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
91800
92085
  warnings: ({
@@ -92005,6 +92290,8 @@ type Routes = {
92005
92290
  errors: {
92006
92291
  error_code: string;
92007
92292
  message: string;
92293
+ /** Date and time at which Seam created the error. */
92294
+ created_at: string;
92008
92295
  }[];
92009
92296
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
92010
92297
  warnings: ({
@@ -93029,6 +93316,8 @@ type Routes = {
93029
93316
  errors: {
93030
93317
  error_code: string;
93031
93318
  message: string;
93319
+ /** Date and time at which Seam created the error. */
93320
+ created_at: string;
93032
93321
  }[];
93033
93322
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
93034
93323
  warnings: ({
@@ -93161,6 +93450,8 @@ type Routes = {
93161
93450
  errors: {
93162
93451
  error_code: string;
93163
93452
  message: string;
93453
+ /** Date and time at which Seam created the error. */
93454
+ created_at: string;
93164
93455
  }[];
93165
93456
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
93166
93457
  warnings: ({
@@ -93359,6 +93650,8 @@ type Routes = {
93359
93650
  errors: {
93360
93651
  error_code: string;
93361
93652
  message: string;
93653
+ /** Date and time at which Seam created the error. */
93654
+ created_at: string;
93362
93655
  }[];
93363
93656
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
93364
93657
  warnings: ({
@@ -93491,6 +93784,8 @@ type Routes = {
93491
93784
  errors: {
93492
93785
  error_code: string;
93493
93786
  message: string;
93787
+ /** Date and time at which Seam created the error. */
93788
+ created_at: string;
93494
93789
  }[];
93495
93790
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
93496
93791
  warnings: ({
@@ -93701,6 +93996,8 @@ type Routes = {
93701
93996
  errors: {
93702
93997
  error_code: string;
93703
93998
  message: string;
93999
+ /** Date and time at which Seam created the error. */
94000
+ created_at: string;
93704
94001
  }[];
93705
94002
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
93706
94003
  warnings: ({
@@ -94727,6 +95024,8 @@ type Routes = {
94727
95024
  errors: {
94728
95025
  error_code: string;
94729
95026
  message: string;
95027
+ /** Date and time at which Seam created the error. */
95028
+ created_at: string;
94730
95029
  }[];
94731
95030
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
94732
95031
  warnings: ({
@@ -94859,6 +95158,8 @@ type Routes = {
94859
95158
  errors: {
94860
95159
  error_code: string;
94861
95160
  message: string;
95161
+ /** Date and time at which Seam created the error. */
95162
+ created_at: string;
94862
95163
  }[];
94863
95164
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
94864
95165
  warnings: ({
@@ -95057,6 +95358,8 @@ type Routes = {
95057
95358
  errors: {
95058
95359
  error_code: string;
95059
95360
  message: string;
95361
+ /** Date and time at which Seam created the error. */
95362
+ created_at: string;
95060
95363
  }[];
95061
95364
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
95062
95365
  warnings: ({
@@ -95189,6 +95492,8 @@ type Routes = {
95189
95492
  errors: {
95190
95493
  error_code: string;
95191
95494
  message: string;
95495
+ /** Date and time at which Seam created the error. */
95496
+ created_at: string;
95192
95497
  }[];
95193
95498
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
95194
95499
  warnings: ({
@@ -95399,6 +95704,8 @@ type Routes = {
95399
95704
  errors: {
95400
95705
  error_code: string;
95401
95706
  message: string;
95707
+ /** Date and time at which Seam created the error. */
95708
+ created_at: string;
95402
95709
  }[];
95403
95710
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
95404
95711
  warnings: ({
@@ -97221,6 +97528,8 @@ type Routes = {
97221
97528
  error_code: string;
97222
97529
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
97223
97530
  message: string;
97531
+ /** Date and time at which Seam created the error. */
97532
+ created_at: string;
97224
97533
  }[];
97225
97534
  } | null) | undefined;
97226
97535
  /** ID of the active [thermostat schedule](https://docs.seam.co/capability-guides/thermostats/creating-and-managing-thermostat-schedules). */
@@ -98668,6 +98977,8 @@ type Routes = {
98668
98977
  error_code: string;
98669
98978
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
98670
98979
  message: string;
98980
+ /** Date and time at which Seam created the error. */
98981
+ created_at: string;
98671
98982
  }[];
98672
98983
  } | null) | undefined;
98673
98984
  /** ID of the active [thermostat schedule](https://docs.seam.co/capability-guides/thermostats/creating-and-managing-thermostat-schedules). */
@@ -99380,6 +99691,8 @@ type Routes = {
99380
99691
  errors: {
99381
99692
  error_code: string;
99382
99693
  message: string;
99694
+ /** Date and time at which Seam created the error. */
99695
+ created_at: string;
99383
99696
  }[];
99384
99697
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
99385
99698
  warnings: ({
@@ -99512,6 +99825,8 @@ type Routes = {
99512
99825
  errors: {
99513
99826
  error_code: string;
99514
99827
  message: string;
99828
+ /** Date and time at which Seam created the error. */
99829
+ created_at: string;
99515
99830
  }[];
99516
99831
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
99517
99832
  warnings: ({
@@ -99710,6 +100025,8 @@ type Routes = {
99710
100025
  errors: {
99711
100026
  error_code: string;
99712
100027
  message: string;
100028
+ /** Date and time at which Seam created the error. */
100029
+ created_at: string;
99713
100030
  }[];
99714
100031
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
99715
100032
  warnings: ({
@@ -99842,6 +100159,8 @@ type Routes = {
99842
100159
  errors: {
99843
100160
  error_code: string;
99844
100161
  message: string;
100162
+ /** Date and time at which Seam created the error. */
100163
+ created_at: string;
99845
100164
  }[];
99846
100165
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
99847
100166
  warnings: ({
@@ -100052,6 +100371,8 @@ type Routes = {
100052
100371
  errors: {
100053
100372
  error_code: string;
100054
100373
  message: string;
100374
+ /** Date and time at which Seam created the error. */
100375
+ created_at: string;
100055
100376
  }[];
100056
100377
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
100057
100378
  warnings: ({
@@ -101097,6 +101418,8 @@ type Routes = {
101097
101418
  errors: {
101098
101419
  error_code: string;
101099
101420
  message: string;
101421
+ /** Date and time at which Seam created the error. */
101422
+ created_at: string;
101100
101423
  }[];
101101
101424
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
101102
101425
  warnings: ({
@@ -101229,6 +101552,8 @@ type Routes = {
101229
101552
  errors: {
101230
101553
  error_code: string;
101231
101554
  message: string;
101555
+ /** Date and time at which Seam created the error. */
101556
+ created_at: string;
101232
101557
  }[];
101233
101558
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
101234
101559
  warnings: ({
@@ -101427,6 +101752,8 @@ type Routes = {
101427
101752
  errors: {
101428
101753
  error_code: string;
101429
101754
  message: string;
101755
+ /** Date and time at which Seam created the error. */
101756
+ created_at: string;
101430
101757
  }[];
101431
101758
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
101432
101759
  warnings: ({
@@ -101559,6 +101886,8 @@ type Routes = {
101559
101886
  errors: {
101560
101887
  error_code: string;
101561
101888
  message: string;
101889
+ /** Date and time at which Seam created the error. */
101890
+ created_at: string;
101562
101891
  }[];
101563
101892
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
101564
101893
  warnings: ({
@@ -101769,6 +102098,8 @@ type Routes = {
101769
102098
  errors: {
101770
102099
  error_code: string;
101771
102100
  message: string;
102101
+ /** Date and time at which Seam created the error. */
102102
+ created_at: string;
101772
102103
  }[];
101773
102104
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
101774
102105
  warnings: ({
@@ -102870,6 +103201,8 @@ type Routes = {
102870
103201
  errors: {
102871
103202
  error_code: string;
102872
103203
  message: string;
103204
+ /** Date and time at which Seam created the error. */
103205
+ created_at: string;
102873
103206
  }[];
102874
103207
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
102875
103208
  warnings: ({
@@ -103002,6 +103335,8 @@ type Routes = {
103002
103335
  errors: {
103003
103336
  error_code: string;
103004
103337
  message: string;
103338
+ /** Date and time at which Seam created the error. */
103339
+ created_at: string;
103005
103340
  }[];
103006
103341
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
103007
103342
  warnings: ({
@@ -103200,6 +103535,8 @@ type Routes = {
103200
103535
  errors: {
103201
103536
  error_code: string;
103202
103537
  message: string;
103538
+ /** Date and time at which Seam created the error. */
103539
+ created_at: string;
103203
103540
  }[];
103204
103541
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
103205
103542
  warnings: ({
@@ -103332,6 +103669,8 @@ type Routes = {
103332
103669
  errors: {
103333
103670
  error_code: string;
103334
103671
  message: string;
103672
+ /** Date and time at which Seam created the error. */
103673
+ created_at: string;
103335
103674
  }[];
103336
103675
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
103337
103676
  warnings: ({
@@ -103542,6 +103881,8 @@ type Routes = {
103542
103881
  errors: {
103543
103882
  error_code: string;
103544
103883
  message: string;
103884
+ /** Date and time at which Seam created the error. */
103885
+ created_at: string;
103545
103886
  }[];
103546
103887
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
103547
103888
  warnings: ({
@@ -104433,6 +104774,8 @@ type Routes = {
104433
104774
  error_code: string;
104434
104775
  /** Detailed description of the error. */
104435
104776
  message: string;
104777
+ /** Date and time at which Seam created the error. */
104778
+ created_at: string;
104436
104779
  }[];
104437
104780
  /** Warnings associated with the phone. */
104438
104781
  warnings: {
@@ -104440,6 +104783,8 @@ type Routes = {
104440
104783
  warning_code: string;
104441
104784
  /** Detailed description of the warning. */
104442
104785
  message: string;
104786
+ /** Date and time at which Seam created the warning. */
104787
+ created_at: string;
104443
104788
  }[];
104444
104789
  /** Type of the phone device, such as `ios_phone` or `android_phone`. */
104445
104790
  device_type: 'ios_phone' | 'android_phone';
@@ -104507,6 +104852,8 @@ type Routes = {
104507
104852
  error_code: string;
104508
104853
  /** Detailed description of the error. */
104509
104854
  message: string;
104855
+ /** Date and time at which Seam created the error. */
104856
+ created_at: string;
104510
104857
  }[];
104511
104858
  /** Warnings associated with the phone. */
104512
104859
  warnings: {
@@ -104514,6 +104861,8 @@ type Routes = {
104514
104861
  warning_code: string;
104515
104862
  /** Detailed description of the warning. */
104516
104863
  message: string;
104864
+ /** Date and time at which Seam created the warning. */
104865
+ created_at: string;
104517
104866
  }[];
104518
104867
  /** Type of the phone device, such as `ios_phone` or `android_phone`. */
104519
104868
  device_type: 'ios_phone' | 'android_phone';
@@ -104608,6 +104957,8 @@ type Routes = {
104608
104957
  error_code: string;
104609
104958
  /** Detailed description of the error. */
104610
104959
  message: string;
104960
+ /** Date and time at which Seam created the error. */
104961
+ created_at: string;
104611
104962
  }[];
104612
104963
  /** Warnings associated with the phone. */
104613
104964
  warnings: {
@@ -104615,6 +104966,8 @@ type Routes = {
104615
104966
  warning_code: string;
104616
104967
  /** Detailed description of the warning. */
104617
104968
  message: string;
104969
+ /** Date and time at which Seam created the warning. */
104970
+ created_at: string;
104618
104971
  }[];
104619
104972
  /** Type of the phone device, such as `ios_phone` or `android_phone`. */
104620
104973
  device_type: 'ios_phone' | 'android_phone';
@@ -106410,6 +106763,8 @@ type Routes = {
106410
106763
  errors: {
106411
106764
  error_code: string;
106412
106765
  message: string;
106766
+ /** Date and time at which Seam created the error. */
106767
+ created_at: string;
106413
106768
  }[];
106414
106769
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
106415
106770
  warnings: ({
@@ -106542,6 +106897,8 @@ type Routes = {
106542
106897
  errors: {
106543
106898
  error_code: string;
106544
106899
  message: string;
106900
+ /** Date and time at which Seam created the error. */
106901
+ created_at: string;
106545
106902
  }[];
106546
106903
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
106547
106904
  warnings: ({
@@ -106740,6 +107097,8 @@ type Routes = {
106740
107097
  errors: {
106741
107098
  error_code: string;
106742
107099
  message: string;
107100
+ /** Date and time at which Seam created the error. */
107101
+ created_at: string;
106743
107102
  }[];
106744
107103
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
106745
107104
  warnings: ({
@@ -106872,6 +107231,8 @@ type Routes = {
106872
107231
  errors: {
106873
107232
  error_code: string;
106874
107233
  message: string;
107234
+ /** Date and time at which Seam created the error. */
107235
+ created_at: string;
106875
107236
  }[];
106876
107237
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
106877
107238
  warnings: ({
@@ -107082,6 +107443,8 @@ type Routes = {
107082
107443
  errors: {
107083
107444
  error_code: string;
107084
107445
  message: string;
107446
+ /** Date and time at which Seam created the error. */
107447
+ created_at: string;
107085
107448
  }[];
107086
107449
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
107087
107450
  warnings: ({
@@ -112955,7 +113318,7 @@ type Routes = {
112955
113318
  formData: {};
112956
113319
  jsonResponse: {
112957
113320
  /** Represents an Access Grant. Access Grants enable you to grant a user identity access to spaces, entrances, and devices through one or more access methods, such as mobile keys, plastic cards, and PIN codes. You can create an Access Grant for an existing user identity, or you can create a new user identity *while* creating the new Access Grant. */
112958
- access_grant: {
113321
+ access_grant?: {
112959
113322
  /** ID of the Seam workspace associated with the Access Grant. */
112960
113323
  workspace_id: string;
112961
113324
  /** ID of the Access Grant. */
@@ -113133,7 +113496,7 @@ type Routes = {
113133
113496
  ends_at: string | null;
113134
113497
  };
113135
113498
  })[];
113136
- };
113499
+ } | undefined;
113137
113500
  spaces: {
113138
113501
  space_key: string;
113139
113502
  child_space_keys?: string[] | undefined;
@@ -113186,6 +113549,11 @@ type Routes = {
113186
113549
  /** List of unique identifiers for the spaces the staff member is associated with. */
113187
113550
  space_keys?: string[] | undefined;
113188
113551
  user_identity_id?: string | undefined;
113552
+ access_grant?: {
113553
+ starts_at: string;
113554
+ ends_at: string | null;
113555
+ created_at: string;
113556
+ } | undefined;
113189
113557
  }[];
113190
113558
  /** Information about the current page of results. */
113191
113559
  pagination: {
@@ -113354,6 +113722,8 @@ type Routes = {
113354
113722
  errors: {
113355
113723
  error_code: string;
113356
113724
  message: string;
113725
+ /** Date and time at which Seam created the error. */
113726
+ created_at: string;
113357
113727
  }[];
113358
113728
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
113359
113729
  warnings: ({
@@ -113523,6 +113893,8 @@ type Routes = {
113523
113893
  errors: {
113524
113894
  error_code: string;
113525
113895
  message: string;
113896
+ /** Date and time at which Seam created the error. */
113897
+ created_at: string;
113526
113898
  }[];
113527
113899
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
113528
113900
  warnings: ({
@@ -113630,6 +114002,8 @@ type Routes = {
113630
114002
  error_code: string;
113631
114003
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
113632
114004
  message: string;
114005
+ /** Date and time at which Seam created the error. */
114006
+ created_at: string;
113633
114007
  }[];
113634
114008
  /** Warnings associated with the [entrance](https://docs.seam.co/low-level-apis/access-systems/retrieving-entrance-details). */
113635
114009
  warnings: ({
@@ -115124,6 +115498,8 @@ type Routes = {
115124
115498
  error_code: string;
115125
115499
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
115126
115500
  message: string;
115501
+ /** Date and time at which Seam created the error. */
115502
+ created_at: string;
115127
115503
  }[];
115128
115504
  } | null) | undefined;
115129
115505
  /** ID of the active [thermostat schedule](https://docs.seam.co/capability-guides/thermostats/creating-and-managing-thermostat-schedules). */
@@ -115642,6 +116018,8 @@ type Routes = {
115642
116018
  error_code: string;
115643
116019
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
115644
116020
  message: string;
116021
+ /** Date and time at which Seam created the error. */
116022
+ created_at: string;
115645
116023
  }[];
115646
116024
  /** Warnings associated with the [entrance](https://docs.seam.co/low-level-apis/access-systems/retrieving-entrance-details). */
115647
116025
  warnings: ({
@@ -116665,6 +117043,8 @@ type Routes = {
116665
117043
  errors: {
116666
117044
  error_code: string;
116667
117045
  message: string;
117046
+ /** Date and time at which Seam created the error. */
117047
+ created_at: string;
116668
117048
  }[];
116669
117049
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
116670
117050
  warnings: ({
@@ -116797,6 +117177,8 @@ type Routes = {
116797
117177
  errors: {
116798
117178
  error_code: string;
116799
117179
  message: string;
117180
+ /** Date and time at which Seam created the error. */
117181
+ created_at: string;
116800
117182
  }[];
116801
117183
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
116802
117184
  warnings: ({
@@ -116995,6 +117377,8 @@ type Routes = {
116995
117377
  errors: {
116996
117378
  error_code: string;
116997
117379
  message: string;
117380
+ /** Date and time at which Seam created the error. */
117381
+ created_at: string;
116998
117382
  }[];
116999
117383
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
117000
117384
  warnings: ({
@@ -117127,6 +117511,8 @@ type Routes = {
117127
117511
  errors: {
117128
117512
  error_code: string;
117129
117513
  message: string;
117514
+ /** Date and time at which Seam created the error. */
117515
+ created_at: string;
117130
117516
  }[];
117131
117517
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
117132
117518
  warnings: ({
@@ -117337,6 +117723,8 @@ type Routes = {
117337
117723
  errors: {
117338
117724
  error_code: string;
117339
117725
  message: string;
117726
+ /** Date and time at which Seam created the error. */
117727
+ created_at: string;
117340
117728
  }[];
117341
117729
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
117342
117730
  warnings: ({
@@ -118367,6 +118755,8 @@ type Routes = {
118367
118755
  errors: {
118368
118756
  error_code: string;
118369
118757
  message: string;
118758
+ /** Date and time at which Seam created the error. */
118759
+ created_at: string;
118370
118760
  }[];
118371
118761
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
118372
118762
  warnings: ({
@@ -118499,6 +118889,8 @@ type Routes = {
118499
118889
  errors: {
118500
118890
  error_code: string;
118501
118891
  message: string;
118892
+ /** Date and time at which Seam created the error. */
118893
+ created_at: string;
118502
118894
  }[];
118503
118895
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
118504
118896
  warnings: ({
@@ -118697,6 +119089,8 @@ type Routes = {
118697
119089
  errors: {
118698
119090
  error_code: string;
118699
119091
  message: string;
119092
+ /** Date and time at which Seam created the error. */
119093
+ created_at: string;
118700
119094
  }[];
118701
119095
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
118702
119096
  warnings: ({
@@ -118829,6 +119223,8 @@ type Routes = {
118829
119223
  errors: {
118830
119224
  error_code: string;
118831
119225
  message: string;
119226
+ /** Date and time at which Seam created the error. */
119227
+ created_at: string;
118832
119228
  }[];
118833
119229
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
118834
119230
  warnings: ({
@@ -119039,6 +119435,8 @@ type Routes = {
119039
119435
  errors: {
119040
119436
  error_code: string;
119041
119437
  message: string;
119438
+ /** Date and time at which Seam created the error. */
119439
+ created_at: string;
119042
119440
  }[];
119043
119441
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
119044
119442
  warnings: ({
@@ -120175,6 +120573,8 @@ type Routes = {
120175
120573
  errors: {
120176
120574
  error_code: string;
120177
120575
  message: string;
120576
+ /** Date and time at which Seam created the error. */
120577
+ created_at: string;
120178
120578
  }[];
120179
120579
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
120180
120580
  warnings: ({
@@ -120307,6 +120707,8 @@ type Routes = {
120307
120707
  errors: {
120308
120708
  error_code: string;
120309
120709
  message: string;
120710
+ /** Date and time at which Seam created the error. */
120711
+ created_at: string;
120310
120712
  }[];
120311
120713
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
120312
120714
  warnings: ({
@@ -120505,6 +120907,8 @@ type Routes = {
120505
120907
  errors: {
120506
120908
  error_code: string;
120507
120909
  message: string;
120910
+ /** Date and time at which Seam created the error. */
120911
+ created_at: string;
120508
120912
  }[];
120509
120913
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
120510
120914
  warnings: ({
@@ -120637,6 +121041,8 @@ type Routes = {
120637
121041
  errors: {
120638
121042
  error_code: string;
120639
121043
  message: string;
121044
+ /** Date and time at which Seam created the error. */
121045
+ created_at: string;
120640
121046
  }[];
120641
121047
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
120642
121048
  warnings: ({
@@ -120847,6 +121253,8 @@ type Routes = {
120847
121253
  errors: {
120848
121254
  error_code: string;
120849
121255
  message: string;
121256
+ /** Date and time at which Seam created the error. */
121257
+ created_at: string;
120850
121258
  }[];
120851
121259
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
120852
121260
  warnings: ({
@@ -122650,6 +123058,8 @@ type Routes = {
122650
123058
  error_code: string;
122651
123059
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
122652
123060
  message: string;
123061
+ /** Date and time at which Seam created the error. */
123062
+ created_at: string;
122653
123063
  }[];
122654
123064
  } | null) | undefined;
122655
123065
  /** ID of the active [thermostat schedule](https://docs.seam.co/capability-guides/thermostats/creating-and-managing-thermostat-schedules). */
@@ -123356,6 +123766,8 @@ type Routes = {
123356
123766
  errors: {
123357
123767
  error_code: string;
123358
123768
  message: string;
123769
+ /** Date and time at which Seam created the error. */
123770
+ created_at: string;
123359
123771
  }[];
123360
123772
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
123361
123773
  warnings: ({
@@ -123488,6 +123900,8 @@ type Routes = {
123488
123900
  errors: {
123489
123901
  error_code: string;
123490
123902
  message: string;
123903
+ /** Date and time at which Seam created the error. */
123904
+ created_at: string;
123491
123905
  }[];
123492
123906
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
123493
123907
  warnings: ({
@@ -123686,6 +124100,8 @@ type Routes = {
123686
124100
  errors: {
123687
124101
  error_code: string;
123688
124102
  message: string;
124103
+ /** Date and time at which Seam created the error. */
124104
+ created_at: string;
123689
124105
  }[];
123690
124106
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
123691
124107
  warnings: ({
@@ -123818,6 +124234,8 @@ type Routes = {
123818
124234
  errors: {
123819
124235
  error_code: string;
123820
124236
  message: string;
124237
+ /** Date and time at which Seam created the error. */
124238
+ created_at: string;
123821
124239
  }[];
123822
124240
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
123823
124241
  warnings: ({
@@ -124028,6 +124446,8 @@ type Routes = {
124028
124446
  errors: {
124029
124447
  error_code: string;
124030
124448
  message: string;
124449
+ /** Date and time at which Seam created the error. */
124450
+ created_at: string;
124031
124451
  }[];
124032
124452
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
124033
124453
  warnings: ({
@@ -125062,6 +125482,8 @@ type Routes = {
125062
125482
  errors: {
125063
125483
  error_code: string;
125064
125484
  message: string;
125485
+ /** Date and time at which Seam created the error. */
125486
+ created_at: string;
125065
125487
  }[];
125066
125488
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
125067
125489
  warnings: ({
@@ -125194,6 +125616,8 @@ type Routes = {
125194
125616
  errors: {
125195
125617
  error_code: string;
125196
125618
  message: string;
125619
+ /** Date and time at which Seam created the error. */
125620
+ created_at: string;
125197
125621
  }[];
125198
125622
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
125199
125623
  warnings: ({
@@ -125392,6 +125816,8 @@ type Routes = {
125392
125816
  errors: {
125393
125817
  error_code: string;
125394
125818
  message: string;
125819
+ /** Date and time at which Seam created the error. */
125820
+ created_at: string;
125395
125821
  }[];
125396
125822
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
125397
125823
  warnings: ({
@@ -125524,6 +125950,8 @@ type Routes = {
125524
125950
  errors: {
125525
125951
  error_code: string;
125526
125952
  message: string;
125953
+ /** Date and time at which Seam created the error. */
125954
+ created_at: string;
125527
125955
  }[];
125528
125956
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
125529
125957
  warnings: ({
@@ -125734,6 +126162,8 @@ type Routes = {
125734
126162
  errors: {
125735
126163
  error_code: string;
125736
126164
  message: string;
126165
+ /** Date and time at which Seam created the error. */
126166
+ created_at: string;
125737
126167
  }[];
125738
126168
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
125739
126169
  warnings: ({
@@ -127556,6 +127986,8 @@ type Routes = {
127556
127986
  error_code: string;
127557
127987
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
127558
127988
  message: string;
127989
+ /** Date and time at which Seam created the error. */
127990
+ created_at: string;
127559
127991
  }[];
127560
127992
  } | null) | undefined;
127561
127993
  /** ID of the active [thermostat schedule](https://docs.seam.co/capability-guides/thermostats/creating-and-managing-thermostat-schedules). */
@@ -129003,6 +129435,8 @@ type Routes = {
129003
129435
  error_code: string;
129004
129436
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
129005
129437
  message: string;
129438
+ /** Date and time at which Seam created the error. */
129439
+ created_at: string;
129006
129440
  }[];
129007
129441
  } | null) | undefined;
129008
129442
  /** ID of the active [thermostat schedule](https://docs.seam.co/capability-guides/thermostats/creating-and-managing-thermostat-schedules). */
@@ -129705,6 +130139,8 @@ type Routes = {
129705
130139
  errors: {
129706
130140
  error_code: string;
129707
130141
  message: string;
130142
+ /** Date and time at which Seam created the error. */
130143
+ created_at: string;
129708
130144
  }[];
129709
130145
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
129710
130146
  warnings: ({
@@ -129837,6 +130273,8 @@ type Routes = {
129837
130273
  errors: {
129838
130274
  error_code: string;
129839
130275
  message: string;
130276
+ /** Date and time at which Seam created the error. */
130277
+ created_at: string;
129840
130278
  }[];
129841
130279
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
129842
130280
  warnings: ({
@@ -130035,6 +130473,8 @@ type Routes = {
130035
130473
  errors: {
130036
130474
  error_code: string;
130037
130475
  message: string;
130476
+ /** Date and time at which Seam created the error. */
130477
+ created_at: string;
130038
130478
  }[];
130039
130479
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
130040
130480
  warnings: ({
@@ -130167,6 +130607,8 @@ type Routes = {
130167
130607
  errors: {
130168
130608
  error_code: string;
130169
130609
  message: string;
130610
+ /** Date and time at which Seam created the error. */
130611
+ created_at: string;
130170
130612
  }[];
130171
130613
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
130172
130614
  warnings: ({
@@ -130377,6 +130819,8 @@ type Routes = {
130377
130819
  errors: {
130378
130820
  error_code: string;
130379
130821
  message: string;
130822
+ /** Date and time at which Seam created the error. */
130823
+ created_at: string;
130380
130824
  }[];
130381
130825
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
130382
130826
  warnings: ({
@@ -131254,6 +131698,8 @@ type Routes = {
131254
131698
  error_code: string;
131255
131699
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
131256
131700
  message: string;
131701
+ /** Date and time at which Seam created the error. */
131702
+ created_at: string;
131257
131703
  }[];
131258
131704
  };
131259
131705
  };
@@ -131311,6 +131757,8 @@ type Routes = {
131311
131757
  error_code: string;
131312
131758
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
131313
131759
  message: string;
131760
+ /** Date and time at which Seam created the error. */
131761
+ created_at: string;
131314
131762
  }[];
131315
131763
  };
131316
131764
  };
@@ -131356,6 +131804,8 @@ type Routes = {
131356
131804
  error_code: string;
131357
131805
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
131358
131806
  message: string;
131807
+ /** Date and time at which Seam created the error. */
131808
+ created_at: string;
131359
131809
  }[];
131360
131810
  }[];
131361
131811
  };
@@ -131606,6 +132056,8 @@ type Routes = {
131606
132056
  errors: {
131607
132057
  error_code: string;
131608
132058
  message: string;
132059
+ /** Date and time at which Seam created the error. */
132060
+ created_at: string;
131609
132061
  }[];
131610
132062
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
131611
132063
  warnings: ({
@@ -131738,6 +132190,8 @@ type Routes = {
131738
132190
  errors: {
131739
132191
  error_code: string;
131740
132192
  message: string;
132193
+ /** Date and time at which Seam created the error. */
132194
+ created_at: string;
131741
132195
  }[];
131742
132196
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
131743
132197
  warnings: ({
@@ -131936,6 +132390,8 @@ type Routes = {
131936
132390
  errors: {
131937
132391
  error_code: string;
131938
132392
  message: string;
132393
+ /** Date and time at which Seam created the error. */
132394
+ created_at: string;
131939
132395
  }[];
131940
132396
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
131941
132397
  warnings: ({
@@ -132068,6 +132524,8 @@ type Routes = {
132068
132524
  errors: {
132069
132525
  error_code: string;
132070
132526
  message: string;
132527
+ /** Date and time at which Seam created the error. */
132528
+ created_at: string;
132071
132529
  }[];
132072
132530
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
132073
132531
  warnings: ({
@@ -132278,6 +132736,8 @@ type Routes = {
132278
132736
  errors: {
132279
132737
  error_code: string;
132280
132738
  message: string;
132739
+ /** Date and time at which Seam created the error. */
132740
+ created_at: string;
132281
132741
  }[];
132282
132742
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
132283
132743
  warnings: ({
@@ -133335,6 +133795,8 @@ type Routes = {
133335
133795
  errors: {
133336
133796
  error_code: string;
133337
133797
  message: string;
133798
+ /** Date and time at which Seam created the error. */
133799
+ created_at: string;
133338
133800
  }[];
133339
133801
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
133340
133802
  warnings: ({
@@ -133467,6 +133929,8 @@ type Routes = {
133467
133929
  errors: {
133468
133930
  error_code: string;
133469
133931
  message: string;
133932
+ /** Date and time at which Seam created the error. */
133933
+ created_at: string;
133470
133934
  }[];
133471
133935
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
133472
133936
  warnings: ({
@@ -133665,6 +134129,8 @@ type Routes = {
133665
134129
  errors: {
133666
134130
  error_code: string;
133667
134131
  message: string;
134132
+ /** Date and time at which Seam created the error. */
134133
+ created_at: string;
133668
134134
  }[];
133669
134135
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
133670
134136
  warnings: ({
@@ -133797,6 +134263,8 @@ type Routes = {
133797
134263
  errors: {
133798
134264
  error_code: string;
133799
134265
  message: string;
134266
+ /** Date and time at which Seam created the error. */
134267
+ created_at: string;
133800
134268
  }[];
133801
134269
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
133802
134270
  warnings: ({
@@ -134007,6 +134475,8 @@ type Routes = {
134007
134475
  errors: {
134008
134476
  error_code: string;
134009
134477
  message: string;
134478
+ /** Date and time at which Seam created the error. */
134479
+ created_at: string;
134010
134480
  }[];
134011
134481
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
134012
134482
  warnings: ({
@@ -135176,6 +135646,8 @@ type Routes = {
135176
135646
  errors: {
135177
135647
  error_code: string;
135178
135648
  message: string;
135649
+ /** Date and time at which Seam created the error. */
135650
+ created_at: string;
135179
135651
  }[];
135180
135652
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
135181
135653
  warnings: ({
@@ -135308,6 +135780,8 @@ type Routes = {
135308
135780
  errors: {
135309
135781
  error_code: string;
135310
135782
  message: string;
135783
+ /** Date and time at which Seam created the error. */
135784
+ created_at: string;
135311
135785
  }[];
135312
135786
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
135313
135787
  warnings: ({
@@ -135506,6 +135980,8 @@ type Routes = {
135506
135980
  errors: {
135507
135981
  error_code: string;
135508
135982
  message: string;
135983
+ /** Date and time at which Seam created the error. */
135984
+ created_at: string;
135509
135985
  }[];
135510
135986
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
135511
135987
  warnings: ({
@@ -135638,6 +136114,8 @@ type Routes = {
135638
136114
  errors: {
135639
136115
  error_code: string;
135640
136116
  message: string;
136117
+ /** Date and time at which Seam created the error. */
136118
+ created_at: string;
135641
136119
  }[];
135642
136120
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
135643
136121
  warnings: ({
@@ -135848,6 +136326,8 @@ type Routes = {
135848
136326
  errors: {
135849
136327
  error_code: string;
135850
136328
  message: string;
136329
+ /** Date and time at which Seam created the error. */
136330
+ created_at: string;
135851
136331
  }[];
135852
136332
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
135853
136333
  warnings: ({
@@ -138230,6 +138710,8 @@ type Routes = {
138230
138710
  error_code: string;
138231
138711
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
138232
138712
  message: string;
138713
+ /** Date and time at which Seam created the error. */
138714
+ created_at: string;
138233
138715
  }[];
138234
138716
  } | null) | undefined;
138235
138717
  /** ID of the active [thermostat schedule](https://docs.seam.co/capability-guides/thermostats/creating-and-managing-thermostat-schedules). */
@@ -139679,6 +140161,8 @@ type Routes = {
139679
140161
  error_code: string;
139680
140162
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
139681
140163
  message: string;
140164
+ /** Date and time at which Seam created the error. */
140165
+ created_at: string;
139682
140166
  }[];
139683
140167
  } | null) | undefined;
139684
140168
  /** ID of the active [thermostat schedule](https://docs.seam.co/capability-guides/thermostats/creating-and-managing-thermostat-schedules). */
@@ -140211,6 +140695,8 @@ type Routes = {
140211
140695
  error_code: string;
140212
140696
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
140213
140697
  message: string;
140698
+ /** Date and time at which Seam created the error. */
140699
+ created_at: string;
140214
140700
  }[];
140215
140701
  /** Warnings associated with the [entrance](https://docs.seam.co/low-level-apis/access-systems/retrieving-entrance-details). */
140216
140702
  warnings: ({
@@ -142390,6 +142876,8 @@ type Routes = {
142390
142876
  error_code: string;
142391
142877
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
142392
142878
  message: string;
142879
+ /** Date and time at which Seam created the error. */
142880
+ created_at: string;
142393
142881
  }[];
142394
142882
  } | null) | undefined;
142395
142883
  /** ID of the active [thermostat schedule](https://docs.seam.co/capability-guides/thermostats/creating-and-managing-thermostat-schedules). */
@@ -142908,6 +143396,8 @@ type Routes = {
142908
143396
  error_code: string;
142909
143397
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
142910
143398
  message: string;
143399
+ /** Date and time at which Seam created the error. */
143400
+ created_at: string;
142911
143401
  }[];
142912
143402
  /** Warnings associated with the [entrance](https://docs.seam.co/low-level-apis/access-systems/retrieving-entrance-details). */
142913
143403
  warnings: ({
@@ -143838,6 +144328,8 @@ type Routes = {
143838
144328
  errors: {
143839
144329
  error_code: string;
143840
144330
  message: string;
144331
+ /** Date and time at which Seam created the error. */
144332
+ created_at: string;
143841
144333
  }[];
143842
144334
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
143843
144335
  warnings: ({
@@ -143970,6 +144462,8 @@ type Routes = {
143970
144462
  errors: {
143971
144463
  error_code: string;
143972
144464
  message: string;
144465
+ /** Date and time at which Seam created the error. */
144466
+ created_at: string;
143973
144467
  }[];
143974
144468
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
143975
144469
  warnings: ({
@@ -144168,6 +144662,8 @@ type Routes = {
144168
144662
  errors: {
144169
144663
  error_code: string;
144170
144664
  message: string;
144665
+ /** Date and time at which Seam created the error. */
144666
+ created_at: string;
144171
144667
  }[];
144172
144668
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
144173
144669
  warnings: ({
@@ -144300,6 +144796,8 @@ type Routes = {
144300
144796
  errors: {
144301
144797
  error_code: string;
144302
144798
  message: string;
144799
+ /** Date and time at which Seam created the error. */
144800
+ created_at: string;
144303
144801
  }[];
144304
144802
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
144305
144803
  warnings: ({
@@ -144510,6 +145008,8 @@ type Routes = {
144510
145008
  errors: {
144511
145009
  error_code: string;
144512
145010
  message: string;
145011
+ /** Date and time at which Seam created the error. */
145012
+ created_at: string;
144513
145013
  }[];
144514
145014
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
144515
145015
  warnings: ({
@@ -150135,6 +150635,8 @@ type Routes = {
150135
150635
  errors: {
150136
150636
  error_code: string;
150137
150637
  message: string;
150638
+ /** Date and time at which Seam created the error. */
150639
+ created_at: string;
150138
150640
  }[];
150139
150641
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
150140
150642
  warnings: ({
@@ -150268,6 +150770,8 @@ type Routes = {
150268
150770
  errors: {
150269
150771
  error_code: string;
150270
150772
  message: string;
150773
+ /** Date and time at which Seam created the error. */
150774
+ created_at: string;
150271
150775
  }[];
150272
150776
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
150273
150777
  warnings: ({
@@ -151197,6 +151701,8 @@ type Routes = {
151197
151701
  error_code: string;
151198
151702
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
151199
151703
  message: string;
151704
+ /** Date and time at which Seam created the error. */
151705
+ created_at: string;
151200
151706
  }[];
151201
151707
  }[] | undefined;
151202
151708
  noise_thresholds?: {
@@ -151525,6 +152031,8 @@ type Routes = {
151525
152031
  errors: {
151526
152032
  error_code: string;
151527
152033
  message: string;
152034
+ /** Date and time at which Seam created the error. */
152035
+ created_at: string;
151528
152036
  }[];
151529
152037
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
151530
152038
  warnings: ({
@@ -151657,6 +152165,8 @@ type Routes = {
151657
152165
  errors: {
151658
152166
  error_code: string;
151659
152167
  message: string;
152168
+ /** Date and time at which Seam created the error. */
152169
+ created_at: string;
151660
152170
  }[];
151661
152171
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
151662
152172
  warnings: ({
@@ -151855,6 +152365,8 @@ type Routes = {
151855
152365
  errors: {
151856
152366
  error_code: string;
151857
152367
  message: string;
152368
+ /** Date and time at which Seam created the error. */
152369
+ created_at: string;
151858
152370
  }[];
151859
152371
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
151860
152372
  warnings: ({
@@ -151987,6 +152499,8 @@ type Routes = {
151987
152499
  errors: {
151988
152500
  error_code: string;
151989
152501
  message: string;
152502
+ /** Date and time at which Seam created the error. */
152503
+ created_at: string;
151990
152504
  }[];
151991
152505
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
151992
152506
  warnings: ({
@@ -152197,6 +152711,8 @@ type Routes = {
152197
152711
  errors: {
152198
152712
  error_code: string;
152199
152713
  message: string;
152714
+ /** Date and time at which Seam created the error. */
152715
+ created_at: string;
152200
152716
  }[];
152201
152717
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
152202
152718
  warnings: ({