@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
@@ -235,6 +235,8 @@ export type Routes = {
235
235
  errors: {
236
236
  error_code: string;
237
237
  message: string;
238
+ /** Date and time at which Seam created the error. */
239
+ created_at: string;
238
240
  }[];
239
241
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
240
242
  warnings: ({
@@ -367,6 +369,8 @@ export type Routes = {
367
369
  errors: {
368
370
  error_code: string;
369
371
  message: string;
372
+ /** Date and time at which Seam created the error. */
373
+ created_at: string;
370
374
  }[];
371
375
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
372
376
  warnings: ({
@@ -565,6 +569,8 @@ export type Routes = {
565
569
  errors: {
566
570
  error_code: string;
567
571
  message: string;
572
+ /** Date and time at which Seam created the error. */
573
+ created_at: string;
568
574
  }[];
569
575
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
570
576
  warnings: ({
@@ -697,6 +703,8 @@ export type Routes = {
697
703
  errors: {
698
704
  error_code: string;
699
705
  message: string;
706
+ /** Date and time at which Seam created the error. */
707
+ created_at: string;
700
708
  }[];
701
709
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
702
710
  warnings: ({
@@ -907,6 +915,8 @@ export type Routes = {
907
915
  errors: {
908
916
  error_code: string;
909
917
  message: string;
918
+ /** Date and time at which Seam created the error. */
919
+ created_at: string;
910
920
  }[];
911
921
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
912
922
  warnings: ({
@@ -2875,6 +2885,8 @@ export type Routes = {
2875
2885
  errors: {
2876
2886
  error_code: string;
2877
2887
  message: string;
2888
+ /** Date and time at which Seam created the error. */
2889
+ created_at: string;
2878
2890
  }[];
2879
2891
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
2880
2892
  warnings: ({
@@ -3007,6 +3019,8 @@ export type Routes = {
3007
3019
  errors: {
3008
3020
  error_code: string;
3009
3021
  message: string;
3022
+ /** Date and time at which Seam created the error. */
3023
+ created_at: string;
3010
3024
  }[];
3011
3025
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
3012
3026
  warnings: ({
@@ -3205,6 +3219,8 @@ export type Routes = {
3205
3219
  errors: {
3206
3220
  error_code: string;
3207
3221
  message: string;
3222
+ /** Date and time at which Seam created the error. */
3223
+ created_at: string;
3208
3224
  }[];
3209
3225
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
3210
3226
  warnings: ({
@@ -3337,6 +3353,8 @@ export type Routes = {
3337
3353
  errors: {
3338
3354
  error_code: string;
3339
3355
  message: string;
3356
+ /** Date and time at which Seam created the error. */
3357
+ created_at: string;
3340
3358
  }[];
3341
3359
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
3342
3360
  warnings: ({
@@ -3547,6 +3565,8 @@ export type Routes = {
3547
3565
  errors: {
3548
3566
  error_code: string;
3549
3567
  message: string;
3568
+ /** Date and time at which Seam created the error. */
3569
+ created_at: string;
3550
3570
  }[];
3551
3571
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
3552
3572
  warnings: ({
@@ -6948,6 +6968,8 @@ export type Routes = {
6948
6968
  errors: {
6949
6969
  error_code: string;
6950
6970
  message: string;
6971
+ /** Date and time at which Seam created the error. */
6972
+ created_at: string;
6951
6973
  }[];
6952
6974
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
6953
6975
  warnings: ({
@@ -7080,6 +7102,8 @@ export type Routes = {
7080
7102
  errors: {
7081
7103
  error_code: string;
7082
7104
  message: string;
7105
+ /** Date and time at which Seam created the error. */
7106
+ created_at: string;
7083
7107
  }[];
7084
7108
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
7085
7109
  warnings: ({
@@ -7278,6 +7302,8 @@ export type Routes = {
7278
7302
  errors: {
7279
7303
  error_code: string;
7280
7304
  message: string;
7305
+ /** Date and time at which Seam created the error. */
7306
+ created_at: string;
7281
7307
  }[];
7282
7308
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
7283
7309
  warnings: ({
@@ -7410,6 +7436,8 @@ export type Routes = {
7410
7436
  errors: {
7411
7437
  error_code: string;
7412
7438
  message: string;
7439
+ /** Date and time at which Seam created the error. */
7440
+ created_at: string;
7413
7441
  }[];
7414
7442
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
7415
7443
  warnings: ({
@@ -7620,6 +7648,8 @@ export type Routes = {
7620
7648
  errors: {
7621
7649
  error_code: string;
7622
7650
  message: string;
7651
+ /** Date and time at which Seam created the error. */
7652
+ created_at: string;
7623
7653
  }[];
7624
7654
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
7625
7655
  warnings: ({
@@ -9468,6 +9498,8 @@ export type Routes = {
9468
9498
  errors: {
9469
9499
  error_code: string;
9470
9500
  message: string;
9501
+ /** Date and time at which Seam created the error. */
9502
+ created_at: string;
9471
9503
  }[];
9472
9504
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
9473
9505
  warnings: ({
@@ -9600,6 +9632,8 @@ export type Routes = {
9600
9632
  errors: {
9601
9633
  error_code: string;
9602
9634
  message: string;
9635
+ /** Date and time at which Seam created the error. */
9636
+ created_at: string;
9603
9637
  }[];
9604
9638
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
9605
9639
  warnings: ({
@@ -9798,6 +9832,8 @@ export type Routes = {
9798
9832
  errors: {
9799
9833
  error_code: string;
9800
9834
  message: string;
9835
+ /** Date and time at which Seam created the error. */
9836
+ created_at: string;
9801
9837
  }[];
9802
9838
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
9803
9839
  warnings: ({
@@ -9930,6 +9966,8 @@ export type Routes = {
9930
9966
  errors: {
9931
9967
  error_code: string;
9932
9968
  message: string;
9969
+ /** Date and time at which Seam created the error. */
9970
+ created_at: string;
9933
9971
  }[];
9934
9972
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
9935
9973
  warnings: ({
@@ -10140,6 +10178,8 @@ export type Routes = {
10140
10178
  errors: {
10141
10179
  error_code: string;
10142
10180
  message: string;
10181
+ /** Date and time at which Seam created the error. */
10182
+ created_at: string;
10143
10183
  }[];
10144
10184
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
10145
10185
  warnings: ({
@@ -12458,6 +12498,8 @@ export type Routes = {
12458
12498
  error_code: string;
12459
12499
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
12460
12500
  message: string;
12501
+ /** Date and time at which Seam created the error. */
12502
+ created_at: string;
12461
12503
  }[];
12462
12504
  } | null) | undefined;
12463
12505
  /** ID of the active [thermostat schedule](https://docs.seam.co/capability-guides/thermostats/creating-and-managing-thermostat-schedules). */
@@ -12976,6 +13018,8 @@ export type Routes = {
12976
13018
  error_code: string;
12977
13019
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
12978
13020
  message: string;
13021
+ /** Date and time at which Seam created the error. */
13022
+ created_at: string;
12979
13023
  }[];
12980
13024
  /** Warnings associated with the [entrance](https://docs.seam.co/low-level-apis/access-systems/retrieving-entrance-details). */
12981
13025
  warnings: ({
@@ -14868,6 +14912,8 @@ export type Routes = {
14868
14912
  errors: {
14869
14913
  error_code: string;
14870
14914
  message: string;
14915
+ /** Date and time at which Seam created the error. */
14916
+ created_at: string;
14871
14917
  }[];
14872
14918
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
14873
14919
  warnings: ({
@@ -15000,6 +15046,8 @@ export type Routes = {
15000
15046
  errors: {
15001
15047
  error_code: string;
15002
15048
  message: string;
15049
+ /** Date and time at which Seam created the error. */
15050
+ created_at: string;
15003
15051
  }[];
15004
15052
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
15005
15053
  warnings: ({
@@ -15198,6 +15246,8 @@ export type Routes = {
15198
15246
  errors: {
15199
15247
  error_code: string;
15200
15248
  message: string;
15249
+ /** Date and time at which Seam created the error. */
15250
+ created_at: string;
15201
15251
  }[];
15202
15252
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
15203
15253
  warnings: ({
@@ -15330,6 +15380,8 @@ export type Routes = {
15330
15380
  errors: {
15331
15381
  error_code: string;
15332
15382
  message: string;
15383
+ /** Date and time at which Seam created the error. */
15384
+ created_at: string;
15333
15385
  }[];
15334
15386
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
15335
15387
  warnings: ({
@@ -15540,6 +15592,8 @@ export type Routes = {
15540
15592
  errors: {
15541
15593
  error_code: string;
15542
15594
  message: string;
15595
+ /** Date and time at which Seam created the error. */
15596
+ created_at: string;
15543
15597
  }[];
15544
15598
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
15545
15599
  warnings: ({
@@ -16585,6 +16639,8 @@ export type Routes = {
16585
16639
  errors: {
16586
16640
  error_code: string;
16587
16641
  message: string;
16642
+ /** Date and time at which Seam created the error. */
16643
+ created_at: string;
16588
16644
  }[];
16589
16645
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
16590
16646
  warnings: ({
@@ -16717,6 +16773,8 @@ export type Routes = {
16717
16773
  errors: {
16718
16774
  error_code: string;
16719
16775
  message: string;
16776
+ /** Date and time at which Seam created the error. */
16777
+ created_at: string;
16720
16778
  }[];
16721
16779
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
16722
16780
  warnings: ({
@@ -16915,6 +16973,8 @@ export type Routes = {
16915
16973
  errors: {
16916
16974
  error_code: string;
16917
16975
  message: string;
16976
+ /** Date and time at which Seam created the error. */
16977
+ created_at: string;
16918
16978
  }[];
16919
16979
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
16920
16980
  warnings: ({
@@ -17047,6 +17107,8 @@ export type Routes = {
17047
17107
  errors: {
17048
17108
  error_code: string;
17049
17109
  message: string;
17110
+ /** Date and time at which Seam created the error. */
17111
+ created_at: string;
17050
17112
  }[];
17051
17113
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
17052
17114
  warnings: ({
@@ -17257,6 +17319,8 @@ export type Routes = {
17257
17319
  errors: {
17258
17320
  error_code: string;
17259
17321
  message: string;
17322
+ /** Date and time at which Seam created the error. */
17323
+ created_at: string;
17260
17324
  }[];
17261
17325
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
17262
17326
  warnings: ({
@@ -19233,6 +19297,8 @@ export type Routes = {
19233
19297
  error_code: string;
19234
19298
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
19235
19299
  message: string;
19300
+ /** Date and time at which Seam created the error. */
19301
+ created_at: string;
19236
19302
  }[];
19237
19303
  } | null) | undefined;
19238
19304
  /** ID of the active [thermostat schedule](https://docs.seam.co/capability-guides/thermostats/creating-and-managing-thermostat-schedules). */
@@ -19751,6 +19817,8 @@ export type Routes = {
19751
19817
  error_code: string;
19752
19818
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
19753
19819
  message: string;
19820
+ /** Date and time at which Seam created the error. */
19821
+ created_at: string;
19754
19822
  }[];
19755
19823
  /** Warnings associated with the [entrance](https://docs.seam.co/low-level-apis/access-systems/retrieving-entrance-details). */
19756
19824
  warnings: ({
@@ -20327,6 +20395,8 @@ export type Routes = {
20327
20395
  errors: {
20328
20396
  error_code: string;
20329
20397
  message: string;
20398
+ /** Date and time at which Seam created the error. */
20399
+ created_at: string;
20330
20400
  }[];
20331
20401
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
20332
20402
  warnings: ({
@@ -20773,6 +20843,8 @@ export type Routes = {
20773
20843
  errors: {
20774
20844
  error_code: string;
20775
20845
  message: string;
20846
+ /** Date and time at which Seam created the error. */
20847
+ created_at: string;
20776
20848
  }[];
20777
20849
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
20778
20850
  warnings: ({
@@ -20905,6 +20977,8 @@ export type Routes = {
20905
20977
  errors: {
20906
20978
  error_code: string;
20907
20979
  message: string;
20980
+ /** Date and time at which Seam created the error. */
20981
+ created_at: string;
20908
20982
  }[];
20909
20983
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
20910
20984
  warnings: ({
@@ -21103,6 +21177,8 @@ export type Routes = {
21103
21177
  errors: {
21104
21178
  error_code: string;
21105
21179
  message: string;
21180
+ /** Date and time at which Seam created the error. */
21181
+ created_at: string;
21106
21182
  }[];
21107
21183
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
21108
21184
  warnings: ({
@@ -21235,6 +21311,8 @@ export type Routes = {
21235
21311
  errors: {
21236
21312
  error_code: string;
21237
21313
  message: string;
21314
+ /** Date and time at which Seam created the error. */
21315
+ created_at: string;
21238
21316
  }[];
21239
21317
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
21240
21318
  warnings: ({
@@ -21445,6 +21523,8 @@ export type Routes = {
21445
21523
  errors: {
21446
21524
  error_code: string;
21447
21525
  message: string;
21526
+ /** Date and time at which Seam created the error. */
21527
+ created_at: string;
21448
21528
  }[];
21449
21529
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
21450
21530
  warnings: ({
@@ -22985,6 +23065,8 @@ export type Routes = {
22985
23065
  error_code: string;
22986
23066
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
22987
23067
  message: string;
23068
+ /** Date and time at which Seam created the error. */
23069
+ created_at: string;
22988
23070
  }[];
22989
23071
  /** Warnings associated with the [entrance](https://docs.seam.co/low-level-apis/access-systems/retrieving-entrance-details). */
22990
23072
  warnings: ({
@@ -23925,6 +24007,8 @@ export type Routes = {
23925
24007
  errors: {
23926
24008
  error_code: string;
23927
24009
  message: string;
24010
+ /** Date and time at which Seam created the error. */
24011
+ created_at: string;
23928
24012
  }[];
23929
24013
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
23930
24014
  warnings: ({
@@ -24130,6 +24214,8 @@ export type Routes = {
24130
24214
  errors: {
24131
24215
  error_code: string;
24132
24216
  message: string;
24217
+ /** Date and time at which Seam created the error. */
24218
+ created_at: string;
24133
24219
  }[];
24134
24220
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
24135
24221
  warnings: ({
@@ -24292,6 +24378,8 @@ export type Routes = {
24292
24378
  errors: {
24293
24379
  error_code: string;
24294
24380
  message: string;
24381
+ /** Date and time at which Seam created the error. */
24382
+ created_at: string;
24295
24383
  }[];
24296
24384
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
24297
24385
  warnings: ({
@@ -24459,6 +24547,8 @@ export type Routes = {
24459
24547
  errors: {
24460
24548
  error_code: string;
24461
24549
  message: string;
24550
+ /** Date and time at which Seam created the error. */
24551
+ created_at: string;
24462
24552
  }[];
24463
24553
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
24464
24554
  warnings: ({
@@ -24628,6 +24718,8 @@ export type Routes = {
24628
24718
  errors: {
24629
24719
  error_code: string;
24630
24720
  message: string;
24721
+ /** Date and time at which Seam created the error. */
24722
+ created_at: string;
24631
24723
  }[];
24632
24724
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
24633
24725
  warnings: ({
@@ -24758,6 +24850,8 @@ export type Routes = {
24758
24850
  error_code: string;
24759
24851
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
24760
24852
  message: string;
24853
+ /** Date and time at which Seam created the error. */
24854
+ created_at: string;
24761
24855
  }[];
24762
24856
  /** Warnings associated with the [entrance](https://docs.seam.co/low-level-apis/access-systems/retrieving-entrance-details). */
24763
24857
  warnings: ({
@@ -24996,6 +25090,8 @@ export type Routes = {
24996
25090
  errors: {
24997
25091
  error_code: string;
24998
25092
  message: string;
25093
+ /** Date and time at which Seam created the error. */
25094
+ created_at: string;
24999
25095
  }[];
25000
25096
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
25001
25097
  warnings: ({
@@ -25144,6 +25240,8 @@ export type Routes = {
25144
25240
  errors: {
25145
25241
  error_code: string;
25146
25242
  message: string;
25243
+ /** Date and time at which Seam created the error. */
25244
+ created_at: string;
25147
25245
  }[];
25148
25246
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
25149
25247
  warnings: ({
@@ -25304,6 +25402,8 @@ export type Routes = {
25304
25402
  errors: {
25305
25403
  error_code: string;
25306
25404
  message: string;
25405
+ /** Date and time at which Seam created the error. */
25406
+ created_at: string;
25307
25407
  }[];
25308
25408
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
25309
25409
  warnings: ({
@@ -25461,6 +25561,8 @@ export type Routes = {
25461
25561
  errors: {
25462
25562
  error_code: string;
25463
25563
  message: string;
25564
+ /** Date and time at which Seam created the error. */
25565
+ created_at: string;
25464
25566
  }[];
25465
25567
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
25466
25568
  warnings: ({
@@ -25754,6 +25856,8 @@ export type Routes = {
25754
25856
  errors: {
25755
25857
  error_code: string;
25756
25858
  message: string;
25859
+ /** Date and time at which Seam created the error. */
25860
+ created_at: string;
25757
25861
  }[];
25758
25862
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
25759
25863
  warnings: ({
@@ -25886,6 +25990,8 @@ export type Routes = {
25886
25990
  errors: {
25887
25991
  error_code: string;
25888
25992
  message: string;
25993
+ /** Date and time at which Seam created the error. */
25994
+ created_at: string;
25889
25995
  }[];
25890
25996
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
25891
25997
  warnings: ({
@@ -26084,6 +26190,8 @@ export type Routes = {
26084
26190
  errors: {
26085
26191
  error_code: string;
26086
26192
  message: string;
26193
+ /** Date and time at which Seam created the error. */
26194
+ created_at: string;
26087
26195
  }[];
26088
26196
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
26089
26197
  warnings: ({
@@ -26216,6 +26324,8 @@ export type Routes = {
26216
26324
  errors: {
26217
26325
  error_code: string;
26218
26326
  message: string;
26327
+ /** Date and time at which Seam created the error. */
26328
+ created_at: string;
26219
26329
  }[];
26220
26330
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
26221
26331
  warnings: ({
@@ -26426,6 +26536,8 @@ export type Routes = {
26426
26536
  errors: {
26427
26537
  error_code: string;
26428
26538
  message: string;
26539
+ /** Date and time at which Seam created the error. */
26540
+ created_at: string;
26429
26541
  }[];
26430
26542
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
26431
26543
  warnings: ({
@@ -27563,6 +27675,8 @@ export type Routes = {
27563
27675
  errors: {
27564
27676
  error_code: string;
27565
27677
  message: string;
27678
+ /** Date and time at which Seam created the error. */
27679
+ created_at: string;
27566
27680
  }[];
27567
27681
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
27568
27682
  warnings: ({
@@ -27695,6 +27809,8 @@ export type Routes = {
27695
27809
  errors: {
27696
27810
  error_code: string;
27697
27811
  message: string;
27812
+ /** Date and time at which Seam created the error. */
27813
+ created_at: string;
27698
27814
  }[];
27699
27815
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
27700
27816
  warnings: ({
@@ -27893,6 +28009,8 @@ export type Routes = {
27893
28009
  errors: {
27894
28010
  error_code: string;
27895
28011
  message: string;
28012
+ /** Date and time at which Seam created the error. */
28013
+ created_at: string;
27896
28014
  }[];
27897
28015
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
27898
28016
  warnings: ({
@@ -28025,6 +28143,8 @@ export type Routes = {
28025
28143
  errors: {
28026
28144
  error_code: string;
28027
28145
  message: string;
28146
+ /** Date and time at which Seam created the error. */
28147
+ created_at: string;
28028
28148
  }[];
28029
28149
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
28030
28150
  warnings: ({
@@ -28235,6 +28355,8 @@ export type Routes = {
28235
28355
  errors: {
28236
28356
  error_code: string;
28237
28357
  message: string;
28358
+ /** Date and time at which Seam created the error. */
28359
+ created_at: string;
28238
28360
  }[];
28239
28361
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
28240
28362
  warnings: ({
@@ -29268,6 +29390,8 @@ export type Routes = {
29268
29390
  errors: {
29269
29391
  error_code: string;
29270
29392
  message: string;
29393
+ /** Date and time at which Seam created the error. */
29394
+ created_at: string;
29271
29395
  }[];
29272
29396
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
29273
29397
  warnings: ({
@@ -29400,6 +29524,8 @@ export type Routes = {
29400
29524
  errors: {
29401
29525
  error_code: string;
29402
29526
  message: string;
29527
+ /** Date and time at which Seam created the error. */
29528
+ created_at: string;
29403
29529
  }[];
29404
29530
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
29405
29531
  warnings: ({
@@ -29598,6 +29724,8 @@ export type Routes = {
29598
29724
  errors: {
29599
29725
  error_code: string;
29600
29726
  message: string;
29727
+ /** Date and time at which Seam created the error. */
29728
+ created_at: string;
29601
29729
  }[];
29602
29730
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
29603
29731
  warnings: ({
@@ -29730,6 +29858,8 @@ export type Routes = {
29730
29858
  errors: {
29731
29859
  error_code: string;
29732
29860
  message: string;
29861
+ /** Date and time at which Seam created the error. */
29862
+ created_at: string;
29733
29863
  }[];
29734
29864
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
29735
29865
  warnings: ({
@@ -29940,6 +30070,8 @@ export type Routes = {
29940
30070
  errors: {
29941
30071
  error_code: string;
29942
30072
  message: string;
30073
+ /** Date and time at which Seam created the error. */
30074
+ created_at: string;
29943
30075
  }[];
29944
30076
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
29945
30077
  warnings: ({
@@ -30882,6 +31014,8 @@ export type Routes = {
30882
31014
  error_code: string;
30883
31015
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
30884
31016
  message: string;
31017
+ /** Date and time at which Seam created the error. */
31018
+ created_at: string;
30885
31019
  }[];
30886
31020
  /** Warnings associated with the [entrance](https://docs.seam.co/low-level-apis/access-systems/retrieving-entrance-details). */
30887
31021
  warnings: ({
@@ -31119,6 +31253,8 @@ export type Routes = {
31119
31253
  error_code: string;
31120
31254
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
31121
31255
  message: string;
31256
+ /** Date and time at which Seam created the error. */
31257
+ created_at: string;
31122
31258
  }[];
31123
31259
  /** Warnings associated with the [entrance](https://docs.seam.co/low-level-apis/access-systems/retrieving-entrance-details). */
31124
31260
  warnings: ({
@@ -31357,6 +31493,8 @@ export type Routes = {
31357
31493
  errors: {
31358
31494
  error_code: string;
31359
31495
  message: string;
31496
+ /** Date and time at which Seam created the error. */
31497
+ created_at: string;
31360
31498
  }[];
31361
31499
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
31362
31500
  warnings: ({
@@ -31648,6 +31786,8 @@ export type Routes = {
31648
31786
  errors: {
31649
31787
  error_code: string;
31650
31788
  message: string;
31789
+ /** Date and time at which Seam created the error. */
31790
+ created_at: string;
31651
31791
  }[];
31652
31792
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
31653
31793
  warnings: ({
@@ -31780,6 +31920,8 @@ export type Routes = {
31780
31920
  errors: {
31781
31921
  error_code: string;
31782
31922
  message: string;
31923
+ /** Date and time at which Seam created the error. */
31924
+ created_at: string;
31783
31925
  }[];
31784
31926
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
31785
31927
  warnings: ({
@@ -31978,6 +32120,8 @@ export type Routes = {
31978
32120
  errors: {
31979
32121
  error_code: string;
31980
32122
  message: string;
32123
+ /** Date and time at which Seam created the error. */
32124
+ created_at: string;
31981
32125
  }[];
31982
32126
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
31983
32127
  warnings: ({
@@ -32110,6 +32254,8 @@ export type Routes = {
32110
32254
  errors: {
32111
32255
  error_code: string;
32112
32256
  message: string;
32257
+ /** Date and time at which Seam created the error. */
32258
+ created_at: string;
32113
32259
  }[];
32114
32260
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
32115
32261
  warnings: ({
@@ -32320,6 +32466,8 @@ export type Routes = {
32320
32466
  errors: {
32321
32467
  error_code: string;
32322
32468
  message: string;
32469
+ /** Date and time at which Seam created the error. */
32470
+ created_at: string;
32323
32471
  }[];
32324
32472
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
32325
32473
  warnings: ({
@@ -34571,6 +34719,8 @@ export type Routes = {
34571
34719
  error_code: string;
34572
34720
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
34573
34721
  message: string;
34722
+ /** Date and time at which Seam created the error. */
34723
+ created_at: string;
34574
34724
  }[];
34575
34725
  /** Warnings associated with the [entrance](https://docs.seam.co/low-level-apis/access-systems/retrieving-entrance-details). */
34576
34726
  warnings: ({
@@ -35588,6 +35738,8 @@ export type Routes = {
35588
35738
  errors: {
35589
35739
  error_code: string;
35590
35740
  message: string;
35741
+ /** Date and time at which Seam created the error. */
35742
+ created_at: string;
35591
35743
  }[];
35592
35744
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
35593
35745
  warnings: ({
@@ -35720,6 +35872,8 @@ export type Routes = {
35720
35872
  errors: {
35721
35873
  error_code: string;
35722
35874
  message: string;
35875
+ /** Date and time at which Seam created the error. */
35876
+ created_at: string;
35723
35877
  }[];
35724
35878
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
35725
35879
  warnings: ({
@@ -35918,6 +36072,8 @@ export type Routes = {
35918
36072
  errors: {
35919
36073
  error_code: string;
35920
36074
  message: string;
36075
+ /** Date and time at which Seam created the error. */
36076
+ created_at: string;
35921
36077
  }[];
35922
36078
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
35923
36079
  warnings: ({
@@ -36050,6 +36206,8 @@ export type Routes = {
36050
36206
  errors: {
36051
36207
  error_code: string;
36052
36208
  message: string;
36209
+ /** Date and time at which Seam created the error. */
36210
+ created_at: string;
36053
36211
  }[];
36054
36212
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
36055
36213
  warnings: ({
@@ -36260,6 +36418,8 @@ export type Routes = {
36260
36418
  errors: {
36261
36419
  error_code: string;
36262
36420
  message: string;
36421
+ /** Date and time at which Seam created the error. */
36422
+ created_at: string;
36263
36423
  }[];
36264
36424
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
36265
36425
  warnings: ({
@@ -37285,6 +37445,8 @@ export type Routes = {
37285
37445
  errors: {
37286
37446
  error_code: string;
37287
37447
  message: string;
37448
+ /** Date and time at which Seam created the error. */
37449
+ created_at: string;
37288
37450
  }[];
37289
37451
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
37290
37452
  warnings: ({
@@ -37417,6 +37579,8 @@ export type Routes = {
37417
37579
  errors: {
37418
37580
  error_code: string;
37419
37581
  message: string;
37582
+ /** Date and time at which Seam created the error. */
37583
+ created_at: string;
37420
37584
  }[];
37421
37585
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
37422
37586
  warnings: ({
@@ -37615,6 +37779,8 @@ export type Routes = {
37615
37779
  errors: {
37616
37780
  error_code: string;
37617
37781
  message: string;
37782
+ /** Date and time at which Seam created the error. */
37783
+ created_at: string;
37618
37784
  }[];
37619
37785
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
37620
37786
  warnings: ({
@@ -37747,6 +37913,8 @@ export type Routes = {
37747
37913
  errors: {
37748
37914
  error_code: string;
37749
37915
  message: string;
37916
+ /** Date and time at which Seam created the error. */
37917
+ created_at: string;
37750
37918
  }[];
37751
37919
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
37752
37920
  warnings: ({
@@ -37957,6 +38125,8 @@ export type Routes = {
37957
38125
  errors: {
37958
38126
  error_code: string;
37959
38127
  message: string;
38128
+ /** Date and time at which Seam created the error. */
38129
+ created_at: string;
37960
38130
  }[];
37961
38131
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
37962
38132
  warnings: ({
@@ -41927,6 +42097,8 @@ export type Routes = {
41927
42097
  error_code: string;
41928
42098
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
41929
42099
  message: string;
42100
+ /** Date and time at which Seam created the error. */
42101
+ created_at: string;
41930
42102
  }[];
41931
42103
  } | null) | undefined;
41932
42104
  /** ID of the active [thermostat schedule](https://docs.seam.co/capability-guides/thermostats/creating-and-managing-thermostat-schedules). */
@@ -43425,6 +43597,8 @@ export type Routes = {
43425
43597
  error_code: string;
43426
43598
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
43427
43599
  message: string;
43600
+ /** Date and time at which Seam created the error. */
43601
+ created_at: string;
43428
43602
  }[];
43429
43603
  } | null) | undefined;
43430
43604
  /** ID of the active [thermostat schedule](https://docs.seam.co/capability-guides/thermostats/creating-and-managing-thermostat-schedules). */
@@ -52036,6 +52210,8 @@ export type Routes = {
52036
52210
  errors: {
52037
52211
  error_code: string;
52038
52212
  message: string;
52213
+ /** Date and time at which Seam created the error. */
52214
+ created_at: string;
52039
52215
  }[];
52040
52216
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
52041
52217
  warnings: ({
@@ -52168,6 +52344,8 @@ export type Routes = {
52168
52344
  errors: {
52169
52345
  error_code: string;
52170
52346
  message: string;
52347
+ /** Date and time at which Seam created the error. */
52348
+ created_at: string;
52171
52349
  }[];
52172
52350
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
52173
52351
  warnings: ({
@@ -52366,6 +52544,8 @@ export type Routes = {
52366
52544
  errors: {
52367
52545
  error_code: string;
52368
52546
  message: string;
52547
+ /** Date and time at which Seam created the error. */
52548
+ created_at: string;
52369
52549
  }[];
52370
52550
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
52371
52551
  warnings: ({
@@ -52498,6 +52678,8 @@ export type Routes = {
52498
52678
  errors: {
52499
52679
  error_code: string;
52500
52680
  message: string;
52681
+ /** Date and time at which Seam created the error. */
52682
+ created_at: string;
52501
52683
  }[];
52502
52684
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
52503
52685
  warnings: ({
@@ -52708,6 +52890,8 @@ export type Routes = {
52708
52890
  errors: {
52709
52891
  error_code: string;
52710
52892
  message: string;
52893
+ /** Date and time at which Seam created the error. */
52894
+ created_at: string;
52711
52895
  }[];
52712
52896
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
52713
52897
  warnings: ({
@@ -54496,6 +54680,8 @@ export type Routes = {
54496
54680
  error_code: string;
54497
54681
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
54498
54682
  message: string;
54683
+ /** Date and time at which Seam created the error. */
54684
+ created_at: string;
54499
54685
  }[];
54500
54686
  } | null) | undefined;
54501
54687
  /** ID of the active [thermostat schedule](https://docs.seam.co/capability-guides/thermostats/creating-and-managing-thermostat-schedules). */
@@ -55944,6 +56130,8 @@ export type Routes = {
55944
56130
  error_code: string;
55945
56131
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
55946
56132
  message: string;
56133
+ /** Date and time at which Seam created the error. */
56134
+ created_at: string;
55947
56135
  }[];
55948
56136
  } | null) | undefined;
55949
56137
  /** ID of the active [thermostat schedule](https://docs.seam.co/capability-guides/thermostats/creating-and-managing-thermostat-schedules). */
@@ -57442,6 +57630,8 @@ export type Routes = {
57442
57630
  error_code: string;
57443
57631
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
57444
57632
  message: string;
57633
+ /** Date and time at which Seam created the error. */
57634
+ created_at: string;
57445
57635
  }[];
57446
57636
  } | null) | undefined;
57447
57637
  /** ID of the active [thermostat schedule](https://docs.seam.co/capability-guides/thermostats/creating-and-managing-thermostat-schedules). */
@@ -58889,6 +59079,8 @@ export type Routes = {
58889
59079
  error_code: string;
58890
59080
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
58891
59081
  message: string;
59082
+ /** Date and time at which Seam created the error. */
59083
+ created_at: string;
58892
59084
  }[];
58893
59085
  } | null) | undefined;
58894
59086
  /** ID of the active [thermostat schedule](https://docs.seam.co/capability-guides/thermostats/creating-and-managing-thermostat-schedules). */
@@ -59591,6 +59783,8 @@ export type Routes = {
59591
59783
  errors: {
59592
59784
  error_code: string;
59593
59785
  message: string;
59786
+ /** Date and time at which Seam created the error. */
59787
+ created_at: string;
59594
59788
  }[];
59595
59789
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
59596
59790
  warnings: ({
@@ -59723,6 +59917,8 @@ export type Routes = {
59723
59917
  errors: {
59724
59918
  error_code: string;
59725
59919
  message: string;
59920
+ /** Date and time at which Seam created the error. */
59921
+ created_at: string;
59726
59922
  }[];
59727
59923
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
59728
59924
  warnings: ({
@@ -59921,6 +60117,8 @@ export type Routes = {
59921
60117
  errors: {
59922
60118
  error_code: string;
59923
60119
  message: string;
60120
+ /** Date and time at which Seam created the error. */
60121
+ created_at: string;
59924
60122
  }[];
59925
60123
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
59926
60124
  warnings: ({
@@ -60053,6 +60251,8 @@ export type Routes = {
60053
60251
  errors: {
60054
60252
  error_code: string;
60055
60253
  message: string;
60254
+ /** Date and time at which Seam created the error. */
60255
+ created_at: string;
60056
60256
  }[];
60057
60257
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
60058
60258
  warnings: ({
@@ -60263,6 +60463,8 @@ export type Routes = {
60263
60463
  errors: {
60264
60464
  error_code: string;
60265
60465
  message: string;
60466
+ /** Date and time at which Seam created the error. */
60467
+ created_at: string;
60266
60468
  }[];
60267
60469
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
60268
60470
  warnings: ({
@@ -61289,6 +61491,8 @@ export type Routes = {
61289
61491
  errors: {
61290
61492
  error_code: string;
61291
61493
  message: string;
61494
+ /** Date and time at which Seam created the error. */
61495
+ created_at: string;
61292
61496
  }[];
61293
61497
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
61294
61498
  warnings: ({
@@ -61421,6 +61625,8 @@ export type Routes = {
61421
61625
  errors: {
61422
61626
  error_code: string;
61423
61627
  message: string;
61628
+ /** Date and time at which Seam created the error. */
61629
+ created_at: string;
61424
61630
  }[];
61425
61631
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
61426
61632
  warnings: ({
@@ -61619,6 +61825,8 @@ export type Routes = {
61619
61825
  errors: {
61620
61826
  error_code: string;
61621
61827
  message: string;
61828
+ /** Date and time at which Seam created the error. */
61829
+ created_at: string;
61622
61830
  }[];
61623
61831
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
61624
61832
  warnings: ({
@@ -61751,6 +61959,8 @@ export type Routes = {
61751
61959
  errors: {
61752
61960
  error_code: string;
61753
61961
  message: string;
61962
+ /** Date and time at which Seam created the error. */
61963
+ created_at: string;
61754
61964
  }[];
61755
61965
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
61756
61966
  warnings: ({
@@ -61961,6 +62171,8 @@ export type Routes = {
61961
62171
  errors: {
61962
62172
  error_code: string;
61963
62173
  message: string;
62174
+ /** Date and time at which Seam created the error. */
62175
+ created_at: string;
61964
62176
  }[];
61965
62177
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
61966
62178
  warnings: ({
@@ -62985,6 +63197,8 @@ export type Routes = {
62985
63197
  errors: {
62986
63198
  error_code: string;
62987
63199
  message: string;
63200
+ /** Date and time at which Seam created the error. */
63201
+ created_at: string;
62988
63202
  }[];
62989
63203
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
62990
63204
  warnings: ({
@@ -63117,6 +63331,8 @@ export type Routes = {
63117
63331
  errors: {
63118
63332
  error_code: string;
63119
63333
  message: string;
63334
+ /** Date and time at which Seam created the error. */
63335
+ created_at: string;
63120
63336
  }[];
63121
63337
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
63122
63338
  warnings: ({
@@ -63315,6 +63531,8 @@ export type Routes = {
63315
63531
  errors: {
63316
63532
  error_code: string;
63317
63533
  message: string;
63534
+ /** Date and time at which Seam created the error. */
63535
+ created_at: string;
63318
63536
  }[];
63319
63537
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
63320
63538
  warnings: ({
@@ -63447,6 +63665,8 @@ export type Routes = {
63447
63665
  errors: {
63448
63666
  error_code: string;
63449
63667
  message: string;
63668
+ /** Date and time at which Seam created the error. */
63669
+ created_at: string;
63450
63670
  }[];
63451
63671
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
63452
63672
  warnings: ({
@@ -63657,6 +63877,8 @@ export type Routes = {
63657
63877
  errors: {
63658
63878
  error_code: string;
63659
63879
  message: string;
63880
+ /** Date and time at which Seam created the error. */
63881
+ created_at: string;
63660
63882
  }[];
63661
63883
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
63662
63884
  warnings: ({
@@ -64683,6 +64905,8 @@ export type Routes = {
64683
64905
  errors: {
64684
64906
  error_code: string;
64685
64907
  message: string;
64908
+ /** Date and time at which Seam created the error. */
64909
+ created_at: string;
64686
64910
  }[];
64687
64911
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
64688
64912
  warnings: ({
@@ -64815,6 +65039,8 @@ export type Routes = {
64815
65039
  errors: {
64816
65040
  error_code: string;
64817
65041
  message: string;
65042
+ /** Date and time at which Seam created the error. */
65043
+ created_at: string;
64818
65044
  }[];
64819
65045
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
64820
65046
  warnings: ({
@@ -65013,6 +65239,8 @@ export type Routes = {
65013
65239
  errors: {
65014
65240
  error_code: string;
65015
65241
  message: string;
65242
+ /** Date and time at which Seam created the error. */
65243
+ created_at: string;
65016
65244
  }[];
65017
65245
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
65018
65246
  warnings: ({
@@ -65145,6 +65373,8 @@ export type Routes = {
65145
65373
  errors: {
65146
65374
  error_code: string;
65147
65375
  message: string;
65376
+ /** Date and time at which Seam created the error. */
65377
+ created_at: string;
65148
65378
  }[];
65149
65379
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
65150
65380
  warnings: ({
@@ -65355,6 +65585,8 @@ export type Routes = {
65355
65585
  errors: {
65356
65586
  error_code: string;
65357
65587
  message: string;
65588
+ /** Date and time at which Seam created the error. */
65589
+ created_at: string;
65358
65590
  }[];
65359
65591
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
65360
65592
  warnings: ({
@@ -67177,6 +67409,8 @@ export type Routes = {
67177
67409
  error_code: string;
67178
67410
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
67179
67411
  message: string;
67412
+ /** Date and time at which Seam created the error. */
67413
+ created_at: string;
67180
67414
  }[];
67181
67415
  } | null) | undefined;
67182
67416
  /** ID of the active [thermostat schedule](https://docs.seam.co/capability-guides/thermostats/creating-and-managing-thermostat-schedules). */
@@ -68624,6 +68858,8 @@ export type Routes = {
68624
68858
  error_code: string;
68625
68859
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
68626
68860
  message: string;
68861
+ /** Date and time at which Seam created the error. */
68862
+ created_at: string;
68627
68863
  }[];
68628
68864
  } | null) | undefined;
68629
68865
  /** ID of the active [thermostat schedule](https://docs.seam.co/capability-guides/thermostats/creating-and-managing-thermostat-schedules). */
@@ -69336,6 +69572,8 @@ export type Routes = {
69336
69572
  errors: {
69337
69573
  error_code: string;
69338
69574
  message: string;
69575
+ /** Date and time at which Seam created the error. */
69576
+ created_at: string;
69339
69577
  }[];
69340
69578
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
69341
69579
  warnings: ({
@@ -69468,6 +69706,8 @@ export type Routes = {
69468
69706
  errors: {
69469
69707
  error_code: string;
69470
69708
  message: string;
69709
+ /** Date and time at which Seam created the error. */
69710
+ created_at: string;
69471
69711
  }[];
69472
69712
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
69473
69713
  warnings: ({
@@ -69666,6 +69906,8 @@ export type Routes = {
69666
69906
  errors: {
69667
69907
  error_code: string;
69668
69908
  message: string;
69909
+ /** Date and time at which Seam created the error. */
69910
+ created_at: string;
69669
69911
  }[];
69670
69912
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
69671
69913
  warnings: ({
@@ -69798,6 +70040,8 @@ export type Routes = {
69798
70040
  errors: {
69799
70041
  error_code: string;
69800
70042
  message: string;
70043
+ /** Date and time at which Seam created the error. */
70044
+ created_at: string;
69801
70045
  }[];
69802
70046
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
69803
70047
  warnings: ({
@@ -70008,6 +70252,8 @@ export type Routes = {
70008
70252
  errors: {
70009
70253
  error_code: string;
70010
70254
  message: string;
70255
+ /** Date and time at which Seam created the error. */
70256
+ created_at: string;
70011
70257
  }[];
70012
70258
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
70013
70259
  warnings: ({
@@ -71053,6 +71299,8 @@ export type Routes = {
71053
71299
  errors: {
71054
71300
  error_code: string;
71055
71301
  message: string;
71302
+ /** Date and time at which Seam created the error. */
71303
+ created_at: string;
71056
71304
  }[];
71057
71305
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
71058
71306
  warnings: ({
@@ -71185,6 +71433,8 @@ export type Routes = {
71185
71433
  errors: {
71186
71434
  error_code: string;
71187
71435
  message: string;
71436
+ /** Date and time at which Seam created the error. */
71437
+ created_at: string;
71188
71438
  }[];
71189
71439
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
71190
71440
  warnings: ({
@@ -71383,6 +71633,8 @@ export type Routes = {
71383
71633
  errors: {
71384
71634
  error_code: string;
71385
71635
  message: string;
71636
+ /** Date and time at which Seam created the error. */
71637
+ created_at: string;
71386
71638
  }[];
71387
71639
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
71388
71640
  warnings: ({
@@ -71515,6 +71767,8 @@ export type Routes = {
71515
71767
  errors: {
71516
71768
  error_code: string;
71517
71769
  message: string;
71770
+ /** Date and time at which Seam created the error. */
71771
+ created_at: string;
71518
71772
  }[];
71519
71773
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
71520
71774
  warnings: ({
@@ -71725,6 +71979,8 @@ export type Routes = {
71725
71979
  errors: {
71726
71980
  error_code: string;
71727
71981
  message: string;
71982
+ /** Date and time at which Seam created the error. */
71983
+ created_at: string;
71728
71984
  }[];
71729
71985
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
71730
71986
  warnings: ({
@@ -72826,6 +73082,8 @@ export type Routes = {
72826
73082
  errors: {
72827
73083
  error_code: string;
72828
73084
  message: string;
73085
+ /** Date and time at which Seam created the error. */
73086
+ created_at: string;
72829
73087
  }[];
72830
73088
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
72831
73089
  warnings: ({
@@ -72958,6 +73216,8 @@ export type Routes = {
72958
73216
  errors: {
72959
73217
  error_code: string;
72960
73218
  message: string;
73219
+ /** Date and time at which Seam created the error. */
73220
+ created_at: string;
72961
73221
  }[];
72962
73222
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
72963
73223
  warnings: ({
@@ -73156,6 +73416,8 @@ export type Routes = {
73156
73416
  errors: {
73157
73417
  error_code: string;
73158
73418
  message: string;
73419
+ /** Date and time at which Seam created the error. */
73420
+ created_at: string;
73159
73421
  }[];
73160
73422
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
73161
73423
  warnings: ({
@@ -73288,6 +73550,8 @@ export type Routes = {
73288
73550
  errors: {
73289
73551
  error_code: string;
73290
73552
  message: string;
73553
+ /** Date and time at which Seam created the error. */
73554
+ created_at: string;
73291
73555
  }[];
73292
73556
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
73293
73557
  warnings: ({
@@ -73498,6 +73762,8 @@ export type Routes = {
73498
73762
  errors: {
73499
73763
  error_code: string;
73500
73764
  message: string;
73765
+ /** Date and time at which Seam created the error. */
73766
+ created_at: string;
73501
73767
  }[];
73502
73768
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
73503
73769
  warnings: ({
@@ -74389,6 +74655,8 @@ export type Routes = {
74389
74655
  error_code: string;
74390
74656
  /** Detailed description of the error. */
74391
74657
  message: string;
74658
+ /** Date and time at which Seam created the error. */
74659
+ created_at: string;
74392
74660
  }[];
74393
74661
  /** Warnings associated with the phone. */
74394
74662
  warnings: {
@@ -74396,6 +74664,8 @@ export type Routes = {
74396
74664
  warning_code: string;
74397
74665
  /** Detailed description of the warning. */
74398
74666
  message: string;
74667
+ /** Date and time at which Seam created the warning. */
74668
+ created_at: string;
74399
74669
  }[];
74400
74670
  /** Type of the phone device, such as `ios_phone` or `android_phone`. */
74401
74671
  device_type: 'ios_phone' | 'android_phone';
@@ -74463,6 +74733,8 @@ export type Routes = {
74463
74733
  error_code: string;
74464
74734
  /** Detailed description of the error. */
74465
74735
  message: string;
74736
+ /** Date and time at which Seam created the error. */
74737
+ created_at: string;
74466
74738
  }[];
74467
74739
  /** Warnings associated with the phone. */
74468
74740
  warnings: {
@@ -74470,6 +74742,8 @@ export type Routes = {
74470
74742
  warning_code: string;
74471
74743
  /** Detailed description of the warning. */
74472
74744
  message: string;
74745
+ /** Date and time at which Seam created the warning. */
74746
+ created_at: string;
74473
74747
  }[];
74474
74748
  /** Type of the phone device, such as `ios_phone` or `android_phone`. */
74475
74749
  device_type: 'ios_phone' | 'android_phone';
@@ -74564,6 +74838,8 @@ export type Routes = {
74564
74838
  error_code: string;
74565
74839
  /** Detailed description of the error. */
74566
74840
  message: string;
74841
+ /** Date and time at which Seam created the error. */
74842
+ created_at: string;
74567
74843
  }[];
74568
74844
  /** Warnings associated with the phone. */
74569
74845
  warnings: {
@@ -74571,6 +74847,8 @@ export type Routes = {
74571
74847
  warning_code: string;
74572
74848
  /** Detailed description of the warning. */
74573
74849
  message: string;
74850
+ /** Date and time at which Seam created the warning. */
74851
+ created_at: string;
74574
74852
  }[];
74575
74853
  /** Type of the phone device, such as `ios_phone` or `android_phone`. */
74576
74854
  device_type: 'ios_phone' | 'android_phone';
@@ -76366,6 +76644,8 @@ export type Routes = {
76366
76644
  errors: {
76367
76645
  error_code: string;
76368
76646
  message: string;
76647
+ /** Date and time at which Seam created the error. */
76648
+ created_at: string;
76369
76649
  }[];
76370
76650
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
76371
76651
  warnings: ({
@@ -76498,6 +76778,8 @@ export type Routes = {
76498
76778
  errors: {
76499
76779
  error_code: string;
76500
76780
  message: string;
76781
+ /** Date and time at which Seam created the error. */
76782
+ created_at: string;
76501
76783
  }[];
76502
76784
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
76503
76785
  warnings: ({
@@ -76696,6 +76978,8 @@ export type Routes = {
76696
76978
  errors: {
76697
76979
  error_code: string;
76698
76980
  message: string;
76981
+ /** Date and time at which Seam created the error. */
76982
+ created_at: string;
76699
76983
  }[];
76700
76984
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
76701
76985
  warnings: ({
@@ -76828,6 +77112,8 @@ export type Routes = {
76828
77112
  errors: {
76829
77113
  error_code: string;
76830
77114
  message: string;
77115
+ /** Date and time at which Seam created the error. */
77116
+ created_at: string;
76831
77117
  }[];
76832
77118
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
76833
77119
  warnings: ({
@@ -77038,6 +77324,8 @@ export type Routes = {
77038
77324
  errors: {
77039
77325
  error_code: string;
77040
77326
  message: string;
77327
+ /** Date and time at which Seam created the error. */
77328
+ created_at: string;
77041
77329
  }[];
77042
77330
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
77043
77331
  warnings: ({
@@ -82911,7 +83199,7 @@ export type Routes = {
82911
83199
  formData: {};
82912
83200
  jsonResponse: {
82913
83201
  /** 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. */
82914
- access_grant: {
83202
+ access_grant?: {
82915
83203
  /** ID of the Seam workspace associated with the Access Grant. */
82916
83204
  workspace_id: string;
82917
83205
  /** ID of the Access Grant. */
@@ -83089,7 +83377,7 @@ export type Routes = {
83089
83377
  ends_at: string | null;
83090
83378
  };
83091
83379
  })[];
83092
- };
83380
+ } | undefined;
83093
83381
  spaces: {
83094
83382
  space_key: string;
83095
83383
  child_space_keys?: string[] | undefined;
@@ -83142,6 +83430,11 @@ export type Routes = {
83142
83430
  /** List of unique identifiers for the spaces the staff member is associated with. */
83143
83431
  space_keys?: string[] | undefined;
83144
83432
  user_identity_id?: string | undefined;
83433
+ access_grant?: {
83434
+ starts_at: string;
83435
+ ends_at: string | null;
83436
+ created_at: string;
83437
+ } | undefined;
83145
83438
  }[];
83146
83439
  /** Information about the current page of results. */
83147
83440
  pagination: {
@@ -83310,6 +83603,8 @@ export type Routes = {
83310
83603
  errors: {
83311
83604
  error_code: string;
83312
83605
  message: string;
83606
+ /** Date and time at which Seam created the error. */
83607
+ created_at: string;
83313
83608
  }[];
83314
83609
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
83315
83610
  warnings: ({
@@ -83479,6 +83774,8 @@ export type Routes = {
83479
83774
  errors: {
83480
83775
  error_code: string;
83481
83776
  message: string;
83777
+ /** Date and time at which Seam created the error. */
83778
+ created_at: string;
83482
83779
  }[];
83483
83780
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
83484
83781
  warnings: ({
@@ -83586,6 +83883,8 @@ export type Routes = {
83586
83883
  error_code: string;
83587
83884
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
83588
83885
  message: string;
83886
+ /** Date and time at which Seam created the error. */
83887
+ created_at: string;
83589
83888
  }[];
83590
83889
  /** Warnings associated with the [entrance](https://docs.seam.co/low-level-apis/access-systems/retrieving-entrance-details). */
83591
83890
  warnings: ({
@@ -85080,6 +85379,8 @@ export type Routes = {
85080
85379
  error_code: string;
85081
85380
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
85082
85381
  message: string;
85382
+ /** Date and time at which Seam created the error. */
85383
+ created_at: string;
85083
85384
  }[];
85084
85385
  } | null) | undefined;
85085
85386
  /** ID of the active [thermostat schedule](https://docs.seam.co/capability-guides/thermostats/creating-and-managing-thermostat-schedules). */
@@ -85598,6 +85899,8 @@ export type Routes = {
85598
85899
  error_code: string;
85599
85900
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
85600
85901
  message: string;
85902
+ /** Date and time at which Seam created the error. */
85903
+ created_at: string;
85601
85904
  }[];
85602
85905
  /** Warnings associated with the [entrance](https://docs.seam.co/low-level-apis/access-systems/retrieving-entrance-details). */
85603
85906
  warnings: ({
@@ -86621,6 +86924,8 @@ export type Routes = {
86621
86924
  errors: {
86622
86925
  error_code: string;
86623
86926
  message: string;
86927
+ /** Date and time at which Seam created the error. */
86928
+ created_at: string;
86624
86929
  }[];
86625
86930
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
86626
86931
  warnings: ({
@@ -86753,6 +87058,8 @@ export type Routes = {
86753
87058
  errors: {
86754
87059
  error_code: string;
86755
87060
  message: string;
87061
+ /** Date and time at which Seam created the error. */
87062
+ created_at: string;
86756
87063
  }[];
86757
87064
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
86758
87065
  warnings: ({
@@ -86951,6 +87258,8 @@ export type Routes = {
86951
87258
  errors: {
86952
87259
  error_code: string;
86953
87260
  message: string;
87261
+ /** Date and time at which Seam created the error. */
87262
+ created_at: string;
86954
87263
  }[];
86955
87264
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
86956
87265
  warnings: ({
@@ -87083,6 +87392,8 @@ export type Routes = {
87083
87392
  errors: {
87084
87393
  error_code: string;
87085
87394
  message: string;
87395
+ /** Date and time at which Seam created the error. */
87396
+ created_at: string;
87086
87397
  }[];
87087
87398
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
87088
87399
  warnings: ({
@@ -87293,6 +87604,8 @@ export type Routes = {
87293
87604
  errors: {
87294
87605
  error_code: string;
87295
87606
  message: string;
87607
+ /** Date and time at which Seam created the error. */
87608
+ created_at: string;
87296
87609
  }[];
87297
87610
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
87298
87611
  warnings: ({
@@ -88323,6 +88636,8 @@ export type Routes = {
88323
88636
  errors: {
88324
88637
  error_code: string;
88325
88638
  message: string;
88639
+ /** Date and time at which Seam created the error. */
88640
+ created_at: string;
88326
88641
  }[];
88327
88642
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
88328
88643
  warnings: ({
@@ -88455,6 +88770,8 @@ export type Routes = {
88455
88770
  errors: {
88456
88771
  error_code: string;
88457
88772
  message: string;
88773
+ /** Date and time at which Seam created the error. */
88774
+ created_at: string;
88458
88775
  }[];
88459
88776
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
88460
88777
  warnings: ({
@@ -88653,6 +88970,8 @@ export type Routes = {
88653
88970
  errors: {
88654
88971
  error_code: string;
88655
88972
  message: string;
88973
+ /** Date and time at which Seam created the error. */
88974
+ created_at: string;
88656
88975
  }[];
88657
88976
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
88658
88977
  warnings: ({
@@ -88785,6 +89104,8 @@ export type Routes = {
88785
89104
  errors: {
88786
89105
  error_code: string;
88787
89106
  message: string;
89107
+ /** Date and time at which Seam created the error. */
89108
+ created_at: string;
88788
89109
  }[];
88789
89110
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
88790
89111
  warnings: ({
@@ -88995,6 +89316,8 @@ export type Routes = {
88995
89316
  errors: {
88996
89317
  error_code: string;
88997
89318
  message: string;
89319
+ /** Date and time at which Seam created the error. */
89320
+ created_at: string;
88998
89321
  }[];
88999
89322
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
89000
89323
  warnings: ({
@@ -90131,6 +90454,8 @@ export type Routes = {
90131
90454
  errors: {
90132
90455
  error_code: string;
90133
90456
  message: string;
90457
+ /** Date and time at which Seam created the error. */
90458
+ created_at: string;
90134
90459
  }[];
90135
90460
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
90136
90461
  warnings: ({
@@ -90263,6 +90588,8 @@ export type Routes = {
90263
90588
  errors: {
90264
90589
  error_code: string;
90265
90590
  message: string;
90591
+ /** Date and time at which Seam created the error. */
90592
+ created_at: string;
90266
90593
  }[];
90267
90594
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
90268
90595
  warnings: ({
@@ -90461,6 +90788,8 @@ export type Routes = {
90461
90788
  errors: {
90462
90789
  error_code: string;
90463
90790
  message: string;
90791
+ /** Date and time at which Seam created the error. */
90792
+ created_at: string;
90464
90793
  }[];
90465
90794
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
90466
90795
  warnings: ({
@@ -90593,6 +90922,8 @@ export type Routes = {
90593
90922
  errors: {
90594
90923
  error_code: string;
90595
90924
  message: string;
90925
+ /** Date and time at which Seam created the error. */
90926
+ created_at: string;
90596
90927
  }[];
90597
90928
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
90598
90929
  warnings: ({
@@ -90803,6 +91134,8 @@ export type Routes = {
90803
91134
  errors: {
90804
91135
  error_code: string;
90805
91136
  message: string;
91137
+ /** Date and time at which Seam created the error. */
91138
+ created_at: string;
90806
91139
  }[];
90807
91140
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
90808
91141
  warnings: ({
@@ -92606,6 +92939,8 @@ export type Routes = {
92606
92939
  error_code: string;
92607
92940
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
92608
92941
  message: string;
92942
+ /** Date and time at which Seam created the error. */
92943
+ created_at: string;
92609
92944
  }[];
92610
92945
  } | null) | undefined;
92611
92946
  /** ID of the active [thermostat schedule](https://docs.seam.co/capability-guides/thermostats/creating-and-managing-thermostat-schedules). */
@@ -93312,6 +93647,8 @@ export type Routes = {
93312
93647
  errors: {
93313
93648
  error_code: string;
93314
93649
  message: string;
93650
+ /** Date and time at which Seam created the error. */
93651
+ created_at: string;
93315
93652
  }[];
93316
93653
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
93317
93654
  warnings: ({
@@ -93444,6 +93781,8 @@ export type Routes = {
93444
93781
  errors: {
93445
93782
  error_code: string;
93446
93783
  message: string;
93784
+ /** Date and time at which Seam created the error. */
93785
+ created_at: string;
93447
93786
  }[];
93448
93787
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
93449
93788
  warnings: ({
@@ -93642,6 +93981,8 @@ export type Routes = {
93642
93981
  errors: {
93643
93982
  error_code: string;
93644
93983
  message: string;
93984
+ /** Date and time at which Seam created the error. */
93985
+ created_at: string;
93645
93986
  }[];
93646
93987
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
93647
93988
  warnings: ({
@@ -93774,6 +94115,8 @@ export type Routes = {
93774
94115
  errors: {
93775
94116
  error_code: string;
93776
94117
  message: string;
94118
+ /** Date and time at which Seam created the error. */
94119
+ created_at: string;
93777
94120
  }[];
93778
94121
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
93779
94122
  warnings: ({
@@ -93984,6 +94327,8 @@ export type Routes = {
93984
94327
  errors: {
93985
94328
  error_code: string;
93986
94329
  message: string;
94330
+ /** Date and time at which Seam created the error. */
94331
+ created_at: string;
93987
94332
  }[];
93988
94333
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
93989
94334
  warnings: ({
@@ -95018,6 +95363,8 @@ export type Routes = {
95018
95363
  errors: {
95019
95364
  error_code: string;
95020
95365
  message: string;
95366
+ /** Date and time at which Seam created the error. */
95367
+ created_at: string;
95021
95368
  }[];
95022
95369
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
95023
95370
  warnings: ({
@@ -95150,6 +95497,8 @@ export type Routes = {
95150
95497
  errors: {
95151
95498
  error_code: string;
95152
95499
  message: string;
95500
+ /** Date and time at which Seam created the error. */
95501
+ created_at: string;
95153
95502
  }[];
95154
95503
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
95155
95504
  warnings: ({
@@ -95348,6 +95697,8 @@ export type Routes = {
95348
95697
  errors: {
95349
95698
  error_code: string;
95350
95699
  message: string;
95700
+ /** Date and time at which Seam created the error. */
95701
+ created_at: string;
95351
95702
  }[];
95352
95703
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
95353
95704
  warnings: ({
@@ -95480,6 +95831,8 @@ export type Routes = {
95480
95831
  errors: {
95481
95832
  error_code: string;
95482
95833
  message: string;
95834
+ /** Date and time at which Seam created the error. */
95835
+ created_at: string;
95483
95836
  }[];
95484
95837
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
95485
95838
  warnings: ({
@@ -95690,6 +96043,8 @@ export type Routes = {
95690
96043
  errors: {
95691
96044
  error_code: string;
95692
96045
  message: string;
96046
+ /** Date and time at which Seam created the error. */
96047
+ created_at: string;
95693
96048
  }[];
95694
96049
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
95695
96050
  warnings: ({
@@ -97512,6 +97867,8 @@ export type Routes = {
97512
97867
  error_code: string;
97513
97868
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
97514
97869
  message: string;
97870
+ /** Date and time at which Seam created the error. */
97871
+ created_at: string;
97515
97872
  }[];
97516
97873
  } | null) | undefined;
97517
97874
  /** ID of the active [thermostat schedule](https://docs.seam.co/capability-guides/thermostats/creating-and-managing-thermostat-schedules). */
@@ -98959,6 +99316,8 @@ export type Routes = {
98959
99316
  error_code: string;
98960
99317
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
98961
99318
  message: string;
99319
+ /** Date and time at which Seam created the error. */
99320
+ created_at: string;
98962
99321
  }[];
98963
99322
  } | null) | undefined;
98964
99323
  /** ID of the active [thermostat schedule](https://docs.seam.co/capability-guides/thermostats/creating-and-managing-thermostat-schedules). */
@@ -99661,6 +100020,8 @@ export type Routes = {
99661
100020
  errors: {
99662
100021
  error_code: string;
99663
100022
  message: string;
100023
+ /** Date and time at which Seam created the error. */
100024
+ created_at: string;
99664
100025
  }[];
99665
100026
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
99666
100027
  warnings: ({
@@ -99793,6 +100154,8 @@ export type Routes = {
99793
100154
  errors: {
99794
100155
  error_code: string;
99795
100156
  message: string;
100157
+ /** Date and time at which Seam created the error. */
100158
+ created_at: string;
99796
100159
  }[];
99797
100160
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
99798
100161
  warnings: ({
@@ -99991,6 +100354,8 @@ export type Routes = {
99991
100354
  errors: {
99992
100355
  error_code: string;
99993
100356
  message: string;
100357
+ /** Date and time at which Seam created the error. */
100358
+ created_at: string;
99994
100359
  }[];
99995
100360
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
99996
100361
  warnings: ({
@@ -100123,6 +100488,8 @@ export type Routes = {
100123
100488
  errors: {
100124
100489
  error_code: string;
100125
100490
  message: string;
100491
+ /** Date and time at which Seam created the error. */
100492
+ created_at: string;
100126
100493
  }[];
100127
100494
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
100128
100495
  warnings: ({
@@ -100333,6 +100700,8 @@ export type Routes = {
100333
100700
  errors: {
100334
100701
  error_code: string;
100335
100702
  message: string;
100703
+ /** Date and time at which Seam created the error. */
100704
+ created_at: string;
100336
100705
  }[];
100337
100706
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
100338
100707
  warnings: ({
@@ -101210,6 +101579,8 @@ export type Routes = {
101210
101579
  error_code: string;
101211
101580
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
101212
101581
  message: string;
101582
+ /** Date and time at which Seam created the error. */
101583
+ created_at: string;
101213
101584
  }[];
101214
101585
  };
101215
101586
  };
@@ -101267,6 +101638,8 @@ export type Routes = {
101267
101638
  error_code: string;
101268
101639
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
101269
101640
  message: string;
101641
+ /** Date and time at which Seam created the error. */
101642
+ created_at: string;
101270
101643
  }[];
101271
101644
  };
101272
101645
  };
@@ -101312,6 +101685,8 @@ export type Routes = {
101312
101685
  error_code: string;
101313
101686
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
101314
101687
  message: string;
101688
+ /** Date and time at which Seam created the error. */
101689
+ created_at: string;
101315
101690
  }[];
101316
101691
  }[];
101317
101692
  };
@@ -101562,6 +101937,8 @@ export type Routes = {
101562
101937
  errors: {
101563
101938
  error_code: string;
101564
101939
  message: string;
101940
+ /** Date and time at which Seam created the error. */
101941
+ created_at: string;
101565
101942
  }[];
101566
101943
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
101567
101944
  warnings: ({
@@ -101694,6 +102071,8 @@ export type Routes = {
101694
102071
  errors: {
101695
102072
  error_code: string;
101696
102073
  message: string;
102074
+ /** Date and time at which Seam created the error. */
102075
+ created_at: string;
101697
102076
  }[];
101698
102077
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
101699
102078
  warnings: ({
@@ -101892,6 +102271,8 @@ export type Routes = {
101892
102271
  errors: {
101893
102272
  error_code: string;
101894
102273
  message: string;
102274
+ /** Date and time at which Seam created the error. */
102275
+ created_at: string;
101895
102276
  }[];
101896
102277
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
101897
102278
  warnings: ({
@@ -102024,6 +102405,8 @@ export type Routes = {
102024
102405
  errors: {
102025
102406
  error_code: string;
102026
102407
  message: string;
102408
+ /** Date and time at which Seam created the error. */
102409
+ created_at: string;
102027
102410
  }[];
102028
102411
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
102029
102412
  warnings: ({
@@ -102234,6 +102617,8 @@ export type Routes = {
102234
102617
  errors: {
102235
102618
  error_code: string;
102236
102619
  message: string;
102620
+ /** Date and time at which Seam created the error. */
102621
+ created_at: string;
102237
102622
  }[];
102238
102623
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
102239
102624
  warnings: ({
@@ -103291,6 +103676,8 @@ export type Routes = {
103291
103676
  errors: {
103292
103677
  error_code: string;
103293
103678
  message: string;
103679
+ /** Date and time at which Seam created the error. */
103680
+ created_at: string;
103294
103681
  }[];
103295
103682
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
103296
103683
  warnings: ({
@@ -103423,6 +103810,8 @@ export type Routes = {
103423
103810
  errors: {
103424
103811
  error_code: string;
103425
103812
  message: string;
103813
+ /** Date and time at which Seam created the error. */
103814
+ created_at: string;
103426
103815
  }[];
103427
103816
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
103428
103817
  warnings: ({
@@ -103621,6 +104010,8 @@ export type Routes = {
103621
104010
  errors: {
103622
104011
  error_code: string;
103623
104012
  message: string;
104013
+ /** Date and time at which Seam created the error. */
104014
+ created_at: string;
103624
104015
  }[];
103625
104016
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
103626
104017
  warnings: ({
@@ -103753,6 +104144,8 @@ export type Routes = {
103753
104144
  errors: {
103754
104145
  error_code: string;
103755
104146
  message: string;
104147
+ /** Date and time at which Seam created the error. */
104148
+ created_at: string;
103756
104149
  }[];
103757
104150
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
103758
104151
  warnings: ({
@@ -103963,6 +104356,8 @@ export type Routes = {
103963
104356
  errors: {
103964
104357
  error_code: string;
103965
104358
  message: string;
104359
+ /** Date and time at which Seam created the error. */
104360
+ created_at: string;
103966
104361
  }[];
103967
104362
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
103968
104363
  warnings: ({
@@ -105132,6 +105527,8 @@ export type Routes = {
105132
105527
  errors: {
105133
105528
  error_code: string;
105134
105529
  message: string;
105530
+ /** Date and time at which Seam created the error. */
105531
+ created_at: string;
105135
105532
  }[];
105136
105533
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
105137
105534
  warnings: ({
@@ -105264,6 +105661,8 @@ export type Routes = {
105264
105661
  errors: {
105265
105662
  error_code: string;
105266
105663
  message: string;
105664
+ /** Date and time at which Seam created the error. */
105665
+ created_at: string;
105267
105666
  }[];
105268
105667
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
105269
105668
  warnings: ({
@@ -105462,6 +105861,8 @@ export type Routes = {
105462
105861
  errors: {
105463
105862
  error_code: string;
105464
105863
  message: string;
105864
+ /** Date and time at which Seam created the error. */
105865
+ created_at: string;
105465
105866
  }[];
105466
105867
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
105467
105868
  warnings: ({
@@ -105594,6 +105995,8 @@ export type Routes = {
105594
105995
  errors: {
105595
105996
  error_code: string;
105596
105997
  message: string;
105998
+ /** Date and time at which Seam created the error. */
105999
+ created_at: string;
105597
106000
  }[];
105598
106001
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
105599
106002
  warnings: ({
@@ -105804,6 +106207,8 @@ export type Routes = {
105804
106207
  errors: {
105805
106208
  error_code: string;
105806
106209
  message: string;
106210
+ /** Date and time at which Seam created the error. */
106211
+ created_at: string;
105807
106212
  }[];
105808
106213
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
105809
106214
  warnings: ({
@@ -108186,6 +108591,8 @@ export type Routes = {
108186
108591
  error_code: string;
108187
108592
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
108188
108593
  message: string;
108594
+ /** Date and time at which Seam created the error. */
108595
+ created_at: string;
108189
108596
  }[];
108190
108597
  } | null) | undefined;
108191
108598
  /** ID of the active [thermostat schedule](https://docs.seam.co/capability-guides/thermostats/creating-and-managing-thermostat-schedules). */
@@ -109635,6 +110042,8 @@ export type Routes = {
109635
110042
  error_code: string;
109636
110043
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
109637
110044
  message: string;
110045
+ /** Date and time at which Seam created the error. */
110046
+ created_at: string;
109638
110047
  }[];
109639
110048
  } | null) | undefined;
109640
110049
  /** ID of the active [thermostat schedule](https://docs.seam.co/capability-guides/thermostats/creating-and-managing-thermostat-schedules). */
@@ -110167,6 +110576,8 @@ export type Routes = {
110167
110576
  error_code: string;
110168
110577
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
110169
110578
  message: string;
110579
+ /** Date and time at which Seam created the error. */
110580
+ created_at: string;
110170
110581
  }[];
110171
110582
  /** Warnings associated with the [entrance](https://docs.seam.co/low-level-apis/access-systems/retrieving-entrance-details). */
110172
110583
  warnings: ({
@@ -112346,6 +112757,8 @@ export type Routes = {
112346
112757
  error_code: string;
112347
112758
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
112348
112759
  message: string;
112760
+ /** Date and time at which Seam created the error. */
112761
+ created_at: string;
112349
112762
  }[];
112350
112763
  } | null) | undefined;
112351
112764
  /** ID of the active [thermostat schedule](https://docs.seam.co/capability-guides/thermostats/creating-and-managing-thermostat-schedules). */
@@ -112864,6 +113277,8 @@ export type Routes = {
112864
113277
  error_code: string;
112865
113278
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
112866
113279
  message: string;
113280
+ /** Date and time at which Seam created the error. */
113281
+ created_at: string;
112867
113282
  }[];
112868
113283
  /** Warnings associated with the [entrance](https://docs.seam.co/low-level-apis/access-systems/retrieving-entrance-details). */
112869
113284
  warnings: ({
@@ -113794,6 +114209,8 @@ export type Routes = {
113794
114209
  errors: {
113795
114210
  error_code: string;
113796
114211
  message: string;
114212
+ /** Date and time at which Seam created the error. */
114213
+ created_at: string;
113797
114214
  }[];
113798
114215
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
113799
114216
  warnings: ({
@@ -113926,6 +114343,8 @@ export type Routes = {
113926
114343
  errors: {
113927
114344
  error_code: string;
113928
114345
  message: string;
114346
+ /** Date and time at which Seam created the error. */
114347
+ created_at: string;
113929
114348
  }[];
113930
114349
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
113931
114350
  warnings: ({
@@ -114124,6 +114543,8 @@ export type Routes = {
114124
114543
  errors: {
114125
114544
  error_code: string;
114126
114545
  message: string;
114546
+ /** Date and time at which Seam created the error. */
114547
+ created_at: string;
114127
114548
  }[];
114128
114549
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
114129
114550
  warnings: ({
@@ -114256,6 +114677,8 @@ export type Routes = {
114256
114677
  errors: {
114257
114678
  error_code: string;
114258
114679
  message: string;
114680
+ /** Date and time at which Seam created the error. */
114681
+ created_at: string;
114259
114682
  }[];
114260
114683
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
114261
114684
  warnings: ({
@@ -114466,6 +114889,8 @@ export type Routes = {
114466
114889
  errors: {
114467
114890
  error_code: string;
114468
114891
  message: string;
114892
+ /** Date and time at which Seam created the error. */
114893
+ created_at: string;
114469
114894
  }[];
114470
114895
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
114471
114896
  warnings: ({
@@ -120091,6 +120516,8 @@ export type Routes = {
120091
120516
  errors: {
120092
120517
  error_code: string;
120093
120518
  message: string;
120519
+ /** Date and time at which Seam created the error. */
120520
+ created_at: string;
120094
120521
  }[];
120095
120522
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
120096
120523
  warnings: ({
@@ -120224,6 +120651,8 @@ export type Routes = {
120224
120651
  errors: {
120225
120652
  error_code: string;
120226
120653
  message: string;
120654
+ /** Date and time at which Seam created the error. */
120655
+ created_at: string;
120227
120656
  }[];
120228
120657
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
120229
120658
  warnings: ({
@@ -121153,6 +121582,8 @@ export type Routes = {
121153
121582
  error_code: string;
121154
121583
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
121155
121584
  message: string;
121585
+ /** Date and time at which Seam created the error. */
121586
+ created_at: string;
121156
121587
  }[];
121157
121588
  }[] | undefined;
121158
121589
  noise_thresholds?: {
@@ -121481,6 +121912,8 @@ export type Routes = {
121481
121912
  errors: {
121482
121913
  error_code: string;
121483
121914
  message: string;
121915
+ /** Date and time at which Seam created the error. */
121916
+ created_at: string;
121484
121917
  }[];
121485
121918
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
121486
121919
  warnings: ({
@@ -121613,6 +122046,8 @@ export type Routes = {
121613
122046
  errors: {
121614
122047
  error_code: string;
121615
122048
  message: string;
122049
+ /** Date and time at which Seam created the error. */
122050
+ created_at: string;
121616
122051
  }[];
121617
122052
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
121618
122053
  warnings: ({
@@ -121811,6 +122246,8 @@ export type Routes = {
121811
122246
  errors: {
121812
122247
  error_code: string;
121813
122248
  message: string;
122249
+ /** Date and time at which Seam created the error. */
122250
+ created_at: string;
121814
122251
  }[];
121815
122252
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
121816
122253
  warnings: ({
@@ -121943,6 +122380,8 @@ export type Routes = {
121943
122380
  errors: {
121944
122381
  error_code: string;
121945
122382
  message: string;
122383
+ /** Date and time at which Seam created the error. */
122384
+ created_at: string;
121946
122385
  }[];
121947
122386
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
121948
122387
  warnings: ({
@@ -122153,6 +122592,8 @@ export type Routes = {
122153
122592
  errors: {
122154
122593
  error_code: string;
122155
122594
  message: string;
122595
+ /** Date and time at which Seam created the error. */
122596
+ created_at: string;
122156
122597
  }[];
122157
122598
  /** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
122158
122599
  warnings: ({