@seamapi/types 1.965.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.
- package/dist/connect.cjs +94 -17
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +511 -0
- package/dist/index.cjs +94 -17
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/acs/acs-credential.d.ts +10 -0
- package/lib/seam/connect/models/acs/acs-credential.js +4 -0
- package/lib/seam/connect/models/acs/acs-credential.js.map +1 -1
- package/lib/seam/connect/models/acs/acs-entrance.d.ts +5 -0
- package/lib/seam/connect/models/acs/acs-entrance.js +4 -0
- package/lib/seam/connect/models/acs/acs-entrance.js.map +1 -1
- package/lib/seam/connect/models/action-attempts/action-attempt.d.ts +39 -0
- package/lib/seam/connect/models/action-attempts/encode-credential.d.ts +14 -0
- package/lib/seam/connect/models/action-attempts/scan-credential.d.ts +18 -0
- package/lib/seam/connect/models/action-attempts/scan-to-assign-credential.d.ts +7 -0
- package/lib/seam/connect/models/devices/capability-properties/index.d.ts +7 -0
- package/lib/seam/connect/models/devices/capability-properties/thermostat.d.ts +7 -0
- package/lib/seam/connect/models/devices/device.d.ts +9 -0
- package/lib/seam/connect/models/devices/phone.d.ts +10 -0
- package/lib/seam/connect/models/devices/phone.js +8 -0
- package/lib/seam/connect/models/devices/phone.js.map +1 -1
- package/lib/seam/connect/models/devices/unmanaged-device.d.ts +7 -0
- package/lib/seam/connect/models/phones/phone-session.d.ts +36 -0
- package/lib/seam/connect/models/thermostats/thermostat-schedule.d.ts +5 -0
- package/lib/seam/connect/models/thermostats/thermostat-schedule.js +4 -0
- package/lib/seam/connect/models/thermostats/thermostat-schedule.js.map +1 -1
- package/lib/seam/connect/openapi.js +88 -14
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +436 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/models/acs/acs-credential.ts +4 -0
- package/src/lib/seam/connect/models/acs/acs-entrance.ts +4 -0
- package/src/lib/seam/connect/models/devices/phone.ts +8 -0
- package/src/lib/seam/connect/models/thermostats/thermostat-schedule.ts +4 -0
- package/src/lib/seam/connect/openapi.ts +97 -14
- package/src/lib/seam/connect/route-types.ts +436 -0
|
@@ -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: ({
|
|
@@ -83315,6 +83603,8 @@ export type Routes = {
|
|
|
83315
83603
|
errors: {
|
|
83316
83604
|
error_code: string;
|
|
83317
83605
|
message: string;
|
|
83606
|
+
/** Date and time at which Seam created the error. */
|
|
83607
|
+
created_at: string;
|
|
83318
83608
|
}[];
|
|
83319
83609
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
83320
83610
|
warnings: ({
|
|
@@ -83484,6 +83774,8 @@ export type Routes = {
|
|
|
83484
83774
|
errors: {
|
|
83485
83775
|
error_code: string;
|
|
83486
83776
|
message: string;
|
|
83777
|
+
/** Date and time at which Seam created the error. */
|
|
83778
|
+
created_at: string;
|
|
83487
83779
|
}[];
|
|
83488
83780
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
83489
83781
|
warnings: ({
|
|
@@ -83591,6 +83883,8 @@ export type Routes = {
|
|
|
83591
83883
|
error_code: string;
|
|
83592
83884
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
83593
83885
|
message: string;
|
|
83886
|
+
/** Date and time at which Seam created the error. */
|
|
83887
|
+
created_at: string;
|
|
83594
83888
|
}[];
|
|
83595
83889
|
/** Warnings associated with the [entrance](https://docs.seam.co/low-level-apis/access-systems/retrieving-entrance-details). */
|
|
83596
83890
|
warnings: ({
|
|
@@ -85085,6 +85379,8 @@ export type Routes = {
|
|
|
85085
85379
|
error_code: string;
|
|
85086
85380
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
85087
85381
|
message: string;
|
|
85382
|
+
/** Date and time at which Seam created the error. */
|
|
85383
|
+
created_at: string;
|
|
85088
85384
|
}[];
|
|
85089
85385
|
} | null) | undefined;
|
|
85090
85386
|
/** ID of the active [thermostat schedule](https://docs.seam.co/capability-guides/thermostats/creating-and-managing-thermostat-schedules). */
|
|
@@ -85603,6 +85899,8 @@ export type Routes = {
|
|
|
85603
85899
|
error_code: string;
|
|
85604
85900
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
85605
85901
|
message: string;
|
|
85902
|
+
/** Date and time at which Seam created the error. */
|
|
85903
|
+
created_at: string;
|
|
85606
85904
|
}[];
|
|
85607
85905
|
/** Warnings associated with the [entrance](https://docs.seam.co/low-level-apis/access-systems/retrieving-entrance-details). */
|
|
85608
85906
|
warnings: ({
|
|
@@ -86626,6 +86924,8 @@ export type Routes = {
|
|
|
86626
86924
|
errors: {
|
|
86627
86925
|
error_code: string;
|
|
86628
86926
|
message: string;
|
|
86927
|
+
/** Date and time at which Seam created the error. */
|
|
86928
|
+
created_at: string;
|
|
86629
86929
|
}[];
|
|
86630
86930
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
86631
86931
|
warnings: ({
|
|
@@ -86758,6 +87058,8 @@ export type Routes = {
|
|
|
86758
87058
|
errors: {
|
|
86759
87059
|
error_code: string;
|
|
86760
87060
|
message: string;
|
|
87061
|
+
/** Date and time at which Seam created the error. */
|
|
87062
|
+
created_at: string;
|
|
86761
87063
|
}[];
|
|
86762
87064
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
86763
87065
|
warnings: ({
|
|
@@ -86956,6 +87258,8 @@ export type Routes = {
|
|
|
86956
87258
|
errors: {
|
|
86957
87259
|
error_code: string;
|
|
86958
87260
|
message: string;
|
|
87261
|
+
/** Date and time at which Seam created the error. */
|
|
87262
|
+
created_at: string;
|
|
86959
87263
|
}[];
|
|
86960
87264
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
86961
87265
|
warnings: ({
|
|
@@ -87088,6 +87392,8 @@ export type Routes = {
|
|
|
87088
87392
|
errors: {
|
|
87089
87393
|
error_code: string;
|
|
87090
87394
|
message: string;
|
|
87395
|
+
/** Date and time at which Seam created the error. */
|
|
87396
|
+
created_at: string;
|
|
87091
87397
|
}[];
|
|
87092
87398
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
87093
87399
|
warnings: ({
|
|
@@ -87298,6 +87604,8 @@ export type Routes = {
|
|
|
87298
87604
|
errors: {
|
|
87299
87605
|
error_code: string;
|
|
87300
87606
|
message: string;
|
|
87607
|
+
/** Date and time at which Seam created the error. */
|
|
87608
|
+
created_at: string;
|
|
87301
87609
|
}[];
|
|
87302
87610
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
87303
87611
|
warnings: ({
|
|
@@ -88328,6 +88636,8 @@ export type Routes = {
|
|
|
88328
88636
|
errors: {
|
|
88329
88637
|
error_code: string;
|
|
88330
88638
|
message: string;
|
|
88639
|
+
/** Date and time at which Seam created the error. */
|
|
88640
|
+
created_at: string;
|
|
88331
88641
|
}[];
|
|
88332
88642
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
88333
88643
|
warnings: ({
|
|
@@ -88460,6 +88770,8 @@ export type Routes = {
|
|
|
88460
88770
|
errors: {
|
|
88461
88771
|
error_code: string;
|
|
88462
88772
|
message: string;
|
|
88773
|
+
/** Date and time at which Seam created the error. */
|
|
88774
|
+
created_at: string;
|
|
88463
88775
|
}[];
|
|
88464
88776
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
88465
88777
|
warnings: ({
|
|
@@ -88658,6 +88970,8 @@ export type Routes = {
|
|
|
88658
88970
|
errors: {
|
|
88659
88971
|
error_code: string;
|
|
88660
88972
|
message: string;
|
|
88973
|
+
/** Date and time at which Seam created the error. */
|
|
88974
|
+
created_at: string;
|
|
88661
88975
|
}[];
|
|
88662
88976
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
88663
88977
|
warnings: ({
|
|
@@ -88790,6 +89104,8 @@ export type Routes = {
|
|
|
88790
89104
|
errors: {
|
|
88791
89105
|
error_code: string;
|
|
88792
89106
|
message: string;
|
|
89107
|
+
/** Date and time at which Seam created the error. */
|
|
89108
|
+
created_at: string;
|
|
88793
89109
|
}[];
|
|
88794
89110
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
88795
89111
|
warnings: ({
|
|
@@ -89000,6 +89316,8 @@ export type Routes = {
|
|
|
89000
89316
|
errors: {
|
|
89001
89317
|
error_code: string;
|
|
89002
89318
|
message: string;
|
|
89319
|
+
/** Date and time at which Seam created the error. */
|
|
89320
|
+
created_at: string;
|
|
89003
89321
|
}[];
|
|
89004
89322
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
89005
89323
|
warnings: ({
|
|
@@ -90136,6 +90454,8 @@ export type Routes = {
|
|
|
90136
90454
|
errors: {
|
|
90137
90455
|
error_code: string;
|
|
90138
90456
|
message: string;
|
|
90457
|
+
/** Date and time at which Seam created the error. */
|
|
90458
|
+
created_at: string;
|
|
90139
90459
|
}[];
|
|
90140
90460
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
90141
90461
|
warnings: ({
|
|
@@ -90268,6 +90588,8 @@ export type Routes = {
|
|
|
90268
90588
|
errors: {
|
|
90269
90589
|
error_code: string;
|
|
90270
90590
|
message: string;
|
|
90591
|
+
/** Date and time at which Seam created the error. */
|
|
90592
|
+
created_at: string;
|
|
90271
90593
|
}[];
|
|
90272
90594
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
90273
90595
|
warnings: ({
|
|
@@ -90466,6 +90788,8 @@ export type Routes = {
|
|
|
90466
90788
|
errors: {
|
|
90467
90789
|
error_code: string;
|
|
90468
90790
|
message: string;
|
|
90791
|
+
/** Date and time at which Seam created the error. */
|
|
90792
|
+
created_at: string;
|
|
90469
90793
|
}[];
|
|
90470
90794
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
90471
90795
|
warnings: ({
|
|
@@ -90598,6 +90922,8 @@ export type Routes = {
|
|
|
90598
90922
|
errors: {
|
|
90599
90923
|
error_code: string;
|
|
90600
90924
|
message: string;
|
|
90925
|
+
/** Date and time at which Seam created the error. */
|
|
90926
|
+
created_at: string;
|
|
90601
90927
|
}[];
|
|
90602
90928
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
90603
90929
|
warnings: ({
|
|
@@ -90808,6 +91134,8 @@ export type Routes = {
|
|
|
90808
91134
|
errors: {
|
|
90809
91135
|
error_code: string;
|
|
90810
91136
|
message: string;
|
|
91137
|
+
/** Date and time at which Seam created the error. */
|
|
91138
|
+
created_at: string;
|
|
90811
91139
|
}[];
|
|
90812
91140
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
90813
91141
|
warnings: ({
|
|
@@ -92611,6 +92939,8 @@ export type Routes = {
|
|
|
92611
92939
|
error_code: string;
|
|
92612
92940
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
92613
92941
|
message: string;
|
|
92942
|
+
/** Date and time at which Seam created the error. */
|
|
92943
|
+
created_at: string;
|
|
92614
92944
|
}[];
|
|
92615
92945
|
} | null) | undefined;
|
|
92616
92946
|
/** ID of the active [thermostat schedule](https://docs.seam.co/capability-guides/thermostats/creating-and-managing-thermostat-schedules). */
|
|
@@ -93317,6 +93647,8 @@ export type Routes = {
|
|
|
93317
93647
|
errors: {
|
|
93318
93648
|
error_code: string;
|
|
93319
93649
|
message: string;
|
|
93650
|
+
/** Date and time at which Seam created the error. */
|
|
93651
|
+
created_at: string;
|
|
93320
93652
|
}[];
|
|
93321
93653
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
93322
93654
|
warnings: ({
|
|
@@ -93449,6 +93781,8 @@ export type Routes = {
|
|
|
93449
93781
|
errors: {
|
|
93450
93782
|
error_code: string;
|
|
93451
93783
|
message: string;
|
|
93784
|
+
/** Date and time at which Seam created the error. */
|
|
93785
|
+
created_at: string;
|
|
93452
93786
|
}[];
|
|
93453
93787
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
93454
93788
|
warnings: ({
|
|
@@ -93647,6 +93981,8 @@ export type Routes = {
|
|
|
93647
93981
|
errors: {
|
|
93648
93982
|
error_code: string;
|
|
93649
93983
|
message: string;
|
|
93984
|
+
/** Date and time at which Seam created the error. */
|
|
93985
|
+
created_at: string;
|
|
93650
93986
|
}[];
|
|
93651
93987
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
93652
93988
|
warnings: ({
|
|
@@ -93779,6 +94115,8 @@ export type Routes = {
|
|
|
93779
94115
|
errors: {
|
|
93780
94116
|
error_code: string;
|
|
93781
94117
|
message: string;
|
|
94118
|
+
/** Date and time at which Seam created the error. */
|
|
94119
|
+
created_at: string;
|
|
93782
94120
|
}[];
|
|
93783
94121
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
93784
94122
|
warnings: ({
|
|
@@ -93989,6 +94327,8 @@ export type Routes = {
|
|
|
93989
94327
|
errors: {
|
|
93990
94328
|
error_code: string;
|
|
93991
94329
|
message: string;
|
|
94330
|
+
/** Date and time at which Seam created the error. */
|
|
94331
|
+
created_at: string;
|
|
93992
94332
|
}[];
|
|
93993
94333
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
93994
94334
|
warnings: ({
|
|
@@ -95023,6 +95363,8 @@ export type Routes = {
|
|
|
95023
95363
|
errors: {
|
|
95024
95364
|
error_code: string;
|
|
95025
95365
|
message: string;
|
|
95366
|
+
/** Date and time at which Seam created the error. */
|
|
95367
|
+
created_at: string;
|
|
95026
95368
|
}[];
|
|
95027
95369
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
95028
95370
|
warnings: ({
|
|
@@ -95155,6 +95497,8 @@ export type Routes = {
|
|
|
95155
95497
|
errors: {
|
|
95156
95498
|
error_code: string;
|
|
95157
95499
|
message: string;
|
|
95500
|
+
/** Date and time at which Seam created the error. */
|
|
95501
|
+
created_at: string;
|
|
95158
95502
|
}[];
|
|
95159
95503
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
95160
95504
|
warnings: ({
|
|
@@ -95353,6 +95697,8 @@ export type Routes = {
|
|
|
95353
95697
|
errors: {
|
|
95354
95698
|
error_code: string;
|
|
95355
95699
|
message: string;
|
|
95700
|
+
/** Date and time at which Seam created the error. */
|
|
95701
|
+
created_at: string;
|
|
95356
95702
|
}[];
|
|
95357
95703
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
95358
95704
|
warnings: ({
|
|
@@ -95485,6 +95831,8 @@ export type Routes = {
|
|
|
95485
95831
|
errors: {
|
|
95486
95832
|
error_code: string;
|
|
95487
95833
|
message: string;
|
|
95834
|
+
/** Date and time at which Seam created the error. */
|
|
95835
|
+
created_at: string;
|
|
95488
95836
|
}[];
|
|
95489
95837
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
95490
95838
|
warnings: ({
|
|
@@ -95695,6 +96043,8 @@ export type Routes = {
|
|
|
95695
96043
|
errors: {
|
|
95696
96044
|
error_code: string;
|
|
95697
96045
|
message: string;
|
|
96046
|
+
/** Date and time at which Seam created the error. */
|
|
96047
|
+
created_at: string;
|
|
95698
96048
|
}[];
|
|
95699
96049
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
95700
96050
|
warnings: ({
|
|
@@ -97517,6 +97867,8 @@ export type Routes = {
|
|
|
97517
97867
|
error_code: string;
|
|
97518
97868
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
97519
97869
|
message: string;
|
|
97870
|
+
/** Date and time at which Seam created the error. */
|
|
97871
|
+
created_at: string;
|
|
97520
97872
|
}[];
|
|
97521
97873
|
} | null) | undefined;
|
|
97522
97874
|
/** ID of the active [thermostat schedule](https://docs.seam.co/capability-guides/thermostats/creating-and-managing-thermostat-schedules). */
|
|
@@ -98964,6 +99316,8 @@ export type Routes = {
|
|
|
98964
99316
|
error_code: string;
|
|
98965
99317
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
98966
99318
|
message: string;
|
|
99319
|
+
/** Date and time at which Seam created the error. */
|
|
99320
|
+
created_at: string;
|
|
98967
99321
|
}[];
|
|
98968
99322
|
} | null) | undefined;
|
|
98969
99323
|
/** ID of the active [thermostat schedule](https://docs.seam.co/capability-guides/thermostats/creating-and-managing-thermostat-schedules). */
|
|
@@ -99666,6 +100020,8 @@ export type Routes = {
|
|
|
99666
100020
|
errors: {
|
|
99667
100021
|
error_code: string;
|
|
99668
100022
|
message: string;
|
|
100023
|
+
/** Date and time at which Seam created the error. */
|
|
100024
|
+
created_at: string;
|
|
99669
100025
|
}[];
|
|
99670
100026
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
99671
100027
|
warnings: ({
|
|
@@ -99798,6 +100154,8 @@ export type Routes = {
|
|
|
99798
100154
|
errors: {
|
|
99799
100155
|
error_code: string;
|
|
99800
100156
|
message: string;
|
|
100157
|
+
/** Date and time at which Seam created the error. */
|
|
100158
|
+
created_at: string;
|
|
99801
100159
|
}[];
|
|
99802
100160
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
99803
100161
|
warnings: ({
|
|
@@ -99996,6 +100354,8 @@ export type Routes = {
|
|
|
99996
100354
|
errors: {
|
|
99997
100355
|
error_code: string;
|
|
99998
100356
|
message: string;
|
|
100357
|
+
/** Date and time at which Seam created the error. */
|
|
100358
|
+
created_at: string;
|
|
99999
100359
|
}[];
|
|
100000
100360
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
100001
100361
|
warnings: ({
|
|
@@ -100128,6 +100488,8 @@ export type Routes = {
|
|
|
100128
100488
|
errors: {
|
|
100129
100489
|
error_code: string;
|
|
100130
100490
|
message: string;
|
|
100491
|
+
/** Date and time at which Seam created the error. */
|
|
100492
|
+
created_at: string;
|
|
100131
100493
|
}[];
|
|
100132
100494
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
100133
100495
|
warnings: ({
|
|
@@ -100338,6 +100700,8 @@ export type Routes = {
|
|
|
100338
100700
|
errors: {
|
|
100339
100701
|
error_code: string;
|
|
100340
100702
|
message: string;
|
|
100703
|
+
/** Date and time at which Seam created the error. */
|
|
100704
|
+
created_at: string;
|
|
100341
100705
|
}[];
|
|
100342
100706
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
100343
100707
|
warnings: ({
|
|
@@ -101215,6 +101579,8 @@ export type Routes = {
|
|
|
101215
101579
|
error_code: string;
|
|
101216
101580
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
101217
101581
|
message: string;
|
|
101582
|
+
/** Date and time at which Seam created the error. */
|
|
101583
|
+
created_at: string;
|
|
101218
101584
|
}[];
|
|
101219
101585
|
};
|
|
101220
101586
|
};
|
|
@@ -101272,6 +101638,8 @@ export type Routes = {
|
|
|
101272
101638
|
error_code: string;
|
|
101273
101639
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
101274
101640
|
message: string;
|
|
101641
|
+
/** Date and time at which Seam created the error. */
|
|
101642
|
+
created_at: string;
|
|
101275
101643
|
}[];
|
|
101276
101644
|
};
|
|
101277
101645
|
};
|
|
@@ -101317,6 +101685,8 @@ export type Routes = {
|
|
|
101317
101685
|
error_code: string;
|
|
101318
101686
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
101319
101687
|
message: string;
|
|
101688
|
+
/** Date and time at which Seam created the error. */
|
|
101689
|
+
created_at: string;
|
|
101320
101690
|
}[];
|
|
101321
101691
|
}[];
|
|
101322
101692
|
};
|
|
@@ -101567,6 +101937,8 @@ export type Routes = {
|
|
|
101567
101937
|
errors: {
|
|
101568
101938
|
error_code: string;
|
|
101569
101939
|
message: string;
|
|
101940
|
+
/** Date and time at which Seam created the error. */
|
|
101941
|
+
created_at: string;
|
|
101570
101942
|
}[];
|
|
101571
101943
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
101572
101944
|
warnings: ({
|
|
@@ -101699,6 +102071,8 @@ export type Routes = {
|
|
|
101699
102071
|
errors: {
|
|
101700
102072
|
error_code: string;
|
|
101701
102073
|
message: string;
|
|
102074
|
+
/** Date and time at which Seam created the error. */
|
|
102075
|
+
created_at: string;
|
|
101702
102076
|
}[];
|
|
101703
102077
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
101704
102078
|
warnings: ({
|
|
@@ -101897,6 +102271,8 @@ export type Routes = {
|
|
|
101897
102271
|
errors: {
|
|
101898
102272
|
error_code: string;
|
|
101899
102273
|
message: string;
|
|
102274
|
+
/** Date and time at which Seam created the error. */
|
|
102275
|
+
created_at: string;
|
|
101900
102276
|
}[];
|
|
101901
102277
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
101902
102278
|
warnings: ({
|
|
@@ -102029,6 +102405,8 @@ export type Routes = {
|
|
|
102029
102405
|
errors: {
|
|
102030
102406
|
error_code: string;
|
|
102031
102407
|
message: string;
|
|
102408
|
+
/** Date and time at which Seam created the error. */
|
|
102409
|
+
created_at: string;
|
|
102032
102410
|
}[];
|
|
102033
102411
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
102034
102412
|
warnings: ({
|
|
@@ -102239,6 +102617,8 @@ export type Routes = {
|
|
|
102239
102617
|
errors: {
|
|
102240
102618
|
error_code: string;
|
|
102241
102619
|
message: string;
|
|
102620
|
+
/** Date and time at which Seam created the error. */
|
|
102621
|
+
created_at: string;
|
|
102242
102622
|
}[];
|
|
102243
102623
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
102244
102624
|
warnings: ({
|
|
@@ -103296,6 +103676,8 @@ export type Routes = {
|
|
|
103296
103676
|
errors: {
|
|
103297
103677
|
error_code: string;
|
|
103298
103678
|
message: string;
|
|
103679
|
+
/** Date and time at which Seam created the error. */
|
|
103680
|
+
created_at: string;
|
|
103299
103681
|
}[];
|
|
103300
103682
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
103301
103683
|
warnings: ({
|
|
@@ -103428,6 +103810,8 @@ export type Routes = {
|
|
|
103428
103810
|
errors: {
|
|
103429
103811
|
error_code: string;
|
|
103430
103812
|
message: string;
|
|
103813
|
+
/** Date and time at which Seam created the error. */
|
|
103814
|
+
created_at: string;
|
|
103431
103815
|
}[];
|
|
103432
103816
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
103433
103817
|
warnings: ({
|
|
@@ -103626,6 +104010,8 @@ export type Routes = {
|
|
|
103626
104010
|
errors: {
|
|
103627
104011
|
error_code: string;
|
|
103628
104012
|
message: string;
|
|
104013
|
+
/** Date and time at which Seam created the error. */
|
|
104014
|
+
created_at: string;
|
|
103629
104015
|
}[];
|
|
103630
104016
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
103631
104017
|
warnings: ({
|
|
@@ -103758,6 +104144,8 @@ export type Routes = {
|
|
|
103758
104144
|
errors: {
|
|
103759
104145
|
error_code: string;
|
|
103760
104146
|
message: string;
|
|
104147
|
+
/** Date and time at which Seam created the error. */
|
|
104148
|
+
created_at: string;
|
|
103761
104149
|
}[];
|
|
103762
104150
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
103763
104151
|
warnings: ({
|
|
@@ -103968,6 +104356,8 @@ export type Routes = {
|
|
|
103968
104356
|
errors: {
|
|
103969
104357
|
error_code: string;
|
|
103970
104358
|
message: string;
|
|
104359
|
+
/** Date and time at which Seam created the error. */
|
|
104360
|
+
created_at: string;
|
|
103971
104361
|
}[];
|
|
103972
104362
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
103973
104363
|
warnings: ({
|
|
@@ -105137,6 +105527,8 @@ export type Routes = {
|
|
|
105137
105527
|
errors: {
|
|
105138
105528
|
error_code: string;
|
|
105139
105529
|
message: string;
|
|
105530
|
+
/** Date and time at which Seam created the error. */
|
|
105531
|
+
created_at: string;
|
|
105140
105532
|
}[];
|
|
105141
105533
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
105142
105534
|
warnings: ({
|
|
@@ -105269,6 +105661,8 @@ export type Routes = {
|
|
|
105269
105661
|
errors: {
|
|
105270
105662
|
error_code: string;
|
|
105271
105663
|
message: string;
|
|
105664
|
+
/** Date and time at which Seam created the error. */
|
|
105665
|
+
created_at: string;
|
|
105272
105666
|
}[];
|
|
105273
105667
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
105274
105668
|
warnings: ({
|
|
@@ -105467,6 +105861,8 @@ export type Routes = {
|
|
|
105467
105861
|
errors: {
|
|
105468
105862
|
error_code: string;
|
|
105469
105863
|
message: string;
|
|
105864
|
+
/** Date and time at which Seam created the error. */
|
|
105865
|
+
created_at: string;
|
|
105470
105866
|
}[];
|
|
105471
105867
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
105472
105868
|
warnings: ({
|
|
@@ -105599,6 +105995,8 @@ export type Routes = {
|
|
|
105599
105995
|
errors: {
|
|
105600
105996
|
error_code: string;
|
|
105601
105997
|
message: string;
|
|
105998
|
+
/** Date and time at which Seam created the error. */
|
|
105999
|
+
created_at: string;
|
|
105602
106000
|
}[];
|
|
105603
106001
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
105604
106002
|
warnings: ({
|
|
@@ -105809,6 +106207,8 @@ export type Routes = {
|
|
|
105809
106207
|
errors: {
|
|
105810
106208
|
error_code: string;
|
|
105811
106209
|
message: string;
|
|
106210
|
+
/** Date and time at which Seam created the error. */
|
|
106211
|
+
created_at: string;
|
|
105812
106212
|
}[];
|
|
105813
106213
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
105814
106214
|
warnings: ({
|
|
@@ -108191,6 +108591,8 @@ export type Routes = {
|
|
|
108191
108591
|
error_code: string;
|
|
108192
108592
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
108193
108593
|
message: string;
|
|
108594
|
+
/** Date and time at which Seam created the error. */
|
|
108595
|
+
created_at: string;
|
|
108194
108596
|
}[];
|
|
108195
108597
|
} | null) | undefined;
|
|
108196
108598
|
/** ID of the active [thermostat schedule](https://docs.seam.co/capability-guides/thermostats/creating-and-managing-thermostat-schedules). */
|
|
@@ -109640,6 +110042,8 @@ export type Routes = {
|
|
|
109640
110042
|
error_code: string;
|
|
109641
110043
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
109642
110044
|
message: string;
|
|
110045
|
+
/** Date and time at which Seam created the error. */
|
|
110046
|
+
created_at: string;
|
|
109643
110047
|
}[];
|
|
109644
110048
|
} | null) | undefined;
|
|
109645
110049
|
/** ID of the active [thermostat schedule](https://docs.seam.co/capability-guides/thermostats/creating-and-managing-thermostat-schedules). */
|
|
@@ -110172,6 +110576,8 @@ export type Routes = {
|
|
|
110172
110576
|
error_code: string;
|
|
110173
110577
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
110174
110578
|
message: string;
|
|
110579
|
+
/** Date and time at which Seam created the error. */
|
|
110580
|
+
created_at: string;
|
|
110175
110581
|
}[];
|
|
110176
110582
|
/** Warnings associated with the [entrance](https://docs.seam.co/low-level-apis/access-systems/retrieving-entrance-details). */
|
|
110177
110583
|
warnings: ({
|
|
@@ -112351,6 +112757,8 @@ export type Routes = {
|
|
|
112351
112757
|
error_code: string;
|
|
112352
112758
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
112353
112759
|
message: string;
|
|
112760
|
+
/** Date and time at which Seam created the error. */
|
|
112761
|
+
created_at: string;
|
|
112354
112762
|
}[];
|
|
112355
112763
|
} | null) | undefined;
|
|
112356
112764
|
/** ID of the active [thermostat schedule](https://docs.seam.co/capability-guides/thermostats/creating-and-managing-thermostat-schedules). */
|
|
@@ -112869,6 +113277,8 @@ export type Routes = {
|
|
|
112869
113277
|
error_code: string;
|
|
112870
113278
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
112871
113279
|
message: string;
|
|
113280
|
+
/** Date and time at which Seam created the error. */
|
|
113281
|
+
created_at: string;
|
|
112872
113282
|
}[];
|
|
112873
113283
|
/** Warnings associated with the [entrance](https://docs.seam.co/low-level-apis/access-systems/retrieving-entrance-details). */
|
|
112874
113284
|
warnings: ({
|
|
@@ -113799,6 +114209,8 @@ export type Routes = {
|
|
|
113799
114209
|
errors: {
|
|
113800
114210
|
error_code: string;
|
|
113801
114211
|
message: string;
|
|
114212
|
+
/** Date and time at which Seam created the error. */
|
|
114213
|
+
created_at: string;
|
|
113802
114214
|
}[];
|
|
113803
114215
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
113804
114216
|
warnings: ({
|
|
@@ -113931,6 +114343,8 @@ export type Routes = {
|
|
|
113931
114343
|
errors: {
|
|
113932
114344
|
error_code: string;
|
|
113933
114345
|
message: string;
|
|
114346
|
+
/** Date and time at which Seam created the error. */
|
|
114347
|
+
created_at: string;
|
|
113934
114348
|
}[];
|
|
113935
114349
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
113936
114350
|
warnings: ({
|
|
@@ -114129,6 +114543,8 @@ export type Routes = {
|
|
|
114129
114543
|
errors: {
|
|
114130
114544
|
error_code: string;
|
|
114131
114545
|
message: string;
|
|
114546
|
+
/** Date and time at which Seam created the error. */
|
|
114547
|
+
created_at: string;
|
|
114132
114548
|
}[];
|
|
114133
114549
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
114134
114550
|
warnings: ({
|
|
@@ -114261,6 +114677,8 @@ export type Routes = {
|
|
|
114261
114677
|
errors: {
|
|
114262
114678
|
error_code: string;
|
|
114263
114679
|
message: string;
|
|
114680
|
+
/** Date and time at which Seam created the error. */
|
|
114681
|
+
created_at: string;
|
|
114264
114682
|
}[];
|
|
114265
114683
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
114266
114684
|
warnings: ({
|
|
@@ -114471,6 +114889,8 @@ export type Routes = {
|
|
|
114471
114889
|
errors: {
|
|
114472
114890
|
error_code: string;
|
|
114473
114891
|
message: string;
|
|
114892
|
+
/** Date and time at which Seam created the error. */
|
|
114893
|
+
created_at: string;
|
|
114474
114894
|
}[];
|
|
114475
114895
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
114476
114896
|
warnings: ({
|
|
@@ -120096,6 +120516,8 @@ export type Routes = {
|
|
|
120096
120516
|
errors: {
|
|
120097
120517
|
error_code: string;
|
|
120098
120518
|
message: string;
|
|
120519
|
+
/** Date and time at which Seam created the error. */
|
|
120520
|
+
created_at: string;
|
|
120099
120521
|
}[];
|
|
120100
120522
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
120101
120523
|
warnings: ({
|
|
@@ -120229,6 +120651,8 @@ export type Routes = {
|
|
|
120229
120651
|
errors: {
|
|
120230
120652
|
error_code: string;
|
|
120231
120653
|
message: string;
|
|
120654
|
+
/** Date and time at which Seam created the error. */
|
|
120655
|
+
created_at: string;
|
|
120232
120656
|
}[];
|
|
120233
120657
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
120234
120658
|
warnings: ({
|
|
@@ -121158,6 +121582,8 @@ export type Routes = {
|
|
|
121158
121582
|
error_code: string;
|
|
121159
121583
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
121160
121584
|
message: string;
|
|
121585
|
+
/** Date and time at which Seam created the error. */
|
|
121586
|
+
created_at: string;
|
|
121161
121587
|
}[];
|
|
121162
121588
|
}[] | undefined;
|
|
121163
121589
|
noise_thresholds?: {
|
|
@@ -121486,6 +121912,8 @@ export type Routes = {
|
|
|
121486
121912
|
errors: {
|
|
121487
121913
|
error_code: string;
|
|
121488
121914
|
message: string;
|
|
121915
|
+
/** Date and time at which Seam created the error. */
|
|
121916
|
+
created_at: string;
|
|
121489
121917
|
}[];
|
|
121490
121918
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
121491
121919
|
warnings: ({
|
|
@@ -121618,6 +122046,8 @@ export type Routes = {
|
|
|
121618
122046
|
errors: {
|
|
121619
122047
|
error_code: string;
|
|
121620
122048
|
message: string;
|
|
122049
|
+
/** Date and time at which Seam created the error. */
|
|
122050
|
+
created_at: string;
|
|
121621
122051
|
}[];
|
|
121622
122052
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
121623
122053
|
warnings: ({
|
|
@@ -121816,6 +122246,8 @@ export type Routes = {
|
|
|
121816
122246
|
errors: {
|
|
121817
122247
|
error_code: string;
|
|
121818
122248
|
message: string;
|
|
122249
|
+
/** Date and time at which Seam created the error. */
|
|
122250
|
+
created_at: string;
|
|
121819
122251
|
}[];
|
|
121820
122252
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
121821
122253
|
warnings: ({
|
|
@@ -121948,6 +122380,8 @@ export type Routes = {
|
|
|
121948
122380
|
errors: {
|
|
121949
122381
|
error_code: string;
|
|
121950
122382
|
message: string;
|
|
122383
|
+
/** Date and time at which Seam created the error. */
|
|
122384
|
+
created_at: string;
|
|
121951
122385
|
}[];
|
|
121952
122386
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
121953
122387
|
warnings: ({
|
|
@@ -122158,6 +122592,8 @@ export type Routes = {
|
|
|
122158
122592
|
errors: {
|
|
122159
122593
|
error_code: string;
|
|
122160
122594
|
message: string;
|
|
122595
|
+
/** Date and time at which Seam created the error. */
|
|
122596
|
+
created_at: string;
|
|
122161
122597
|
}[];
|
|
122162
122598
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
122163
122599
|
warnings: ({
|