@seamapi/types 1.965.0 → 1.967.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 +187 -18
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +537 -0
- package/dist/index.cjs +187 -18
- 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 +180 -14
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +462 -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 +196 -14
- package/src/lib/seam/connect/route-types.ts +462 -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: ({
|
|
@@ -83262,6 +83550,32 @@ export type Routes = {
|
|
|
83262
83550
|
};
|
|
83263
83551
|
maxDuration: undefined;
|
|
83264
83552
|
};
|
|
83553
|
+
'/seam/mcp/v1/create_ro_token': {
|
|
83554
|
+
route: '/seam/mcp/v1/create_ro_token';
|
|
83555
|
+
method: 'POST';
|
|
83556
|
+
queryParams: {};
|
|
83557
|
+
jsonBody: {
|
|
83558
|
+
/** ID of the workspace the token will be bound to. */
|
|
83559
|
+
workspace_id: string;
|
|
83560
|
+
/** Identity of the automation minting the token (e.g. an agent session ID), recorded for auditing. */
|
|
83561
|
+
created_by?: string | undefined;
|
|
83562
|
+
};
|
|
83563
|
+
commonParams: {};
|
|
83564
|
+
formData: {};
|
|
83565
|
+
jsonResponse: {
|
|
83566
|
+
support_read_only_token: {
|
|
83567
|
+
/** Support read-only token to use as a Bearer token. */
|
|
83568
|
+
token: string;
|
|
83569
|
+
/** ID of the workspace the token is bound to. */
|
|
83570
|
+
workspace_id: string;
|
|
83571
|
+
/** Date and time at which the token was created. */
|
|
83572
|
+
created_at: string;
|
|
83573
|
+
/** Date and time at which the token expires. Tokens live for one hour. */
|
|
83574
|
+
expires_at: string;
|
|
83575
|
+
};
|
|
83576
|
+
};
|
|
83577
|
+
maxDuration: undefined;
|
|
83578
|
+
};
|
|
83265
83579
|
'/seam/mobile_sdk/v1/acs/credentials/list': {
|
|
83266
83580
|
route: '/seam/mobile_sdk/v1/acs/credentials/list';
|
|
83267
83581
|
method: 'GET' | 'POST';
|
|
@@ -83315,6 +83629,8 @@ export type Routes = {
|
|
|
83315
83629
|
errors: {
|
|
83316
83630
|
error_code: string;
|
|
83317
83631
|
message: string;
|
|
83632
|
+
/** Date and time at which Seam created the error. */
|
|
83633
|
+
created_at: string;
|
|
83318
83634
|
}[];
|
|
83319
83635
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
83320
83636
|
warnings: ({
|
|
@@ -83484,6 +83800,8 @@ export type Routes = {
|
|
|
83484
83800
|
errors: {
|
|
83485
83801
|
error_code: string;
|
|
83486
83802
|
message: string;
|
|
83803
|
+
/** Date and time at which Seam created the error. */
|
|
83804
|
+
created_at: string;
|
|
83487
83805
|
}[];
|
|
83488
83806
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
83489
83807
|
warnings: ({
|
|
@@ -83591,6 +83909,8 @@ export type Routes = {
|
|
|
83591
83909
|
error_code: string;
|
|
83592
83910
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
83593
83911
|
message: string;
|
|
83912
|
+
/** Date and time at which Seam created the error. */
|
|
83913
|
+
created_at: string;
|
|
83594
83914
|
}[];
|
|
83595
83915
|
/** Warnings associated with the [entrance](https://docs.seam.co/low-level-apis/access-systems/retrieving-entrance-details). */
|
|
83596
83916
|
warnings: ({
|
|
@@ -85085,6 +85405,8 @@ export type Routes = {
|
|
|
85085
85405
|
error_code: string;
|
|
85086
85406
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
85087
85407
|
message: string;
|
|
85408
|
+
/** Date and time at which Seam created the error. */
|
|
85409
|
+
created_at: string;
|
|
85088
85410
|
}[];
|
|
85089
85411
|
} | null) | undefined;
|
|
85090
85412
|
/** ID of the active [thermostat schedule](https://docs.seam.co/capability-guides/thermostats/creating-and-managing-thermostat-schedules). */
|
|
@@ -85603,6 +85925,8 @@ export type Routes = {
|
|
|
85603
85925
|
error_code: string;
|
|
85604
85926
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
85605
85927
|
message: string;
|
|
85928
|
+
/** Date and time at which Seam created the error. */
|
|
85929
|
+
created_at: string;
|
|
85606
85930
|
}[];
|
|
85607
85931
|
/** Warnings associated with the [entrance](https://docs.seam.co/low-level-apis/access-systems/retrieving-entrance-details). */
|
|
85608
85932
|
warnings: ({
|
|
@@ -86626,6 +86950,8 @@ export type Routes = {
|
|
|
86626
86950
|
errors: {
|
|
86627
86951
|
error_code: string;
|
|
86628
86952
|
message: string;
|
|
86953
|
+
/** Date and time at which Seam created the error. */
|
|
86954
|
+
created_at: string;
|
|
86629
86955
|
}[];
|
|
86630
86956
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
86631
86957
|
warnings: ({
|
|
@@ -86758,6 +87084,8 @@ export type Routes = {
|
|
|
86758
87084
|
errors: {
|
|
86759
87085
|
error_code: string;
|
|
86760
87086
|
message: string;
|
|
87087
|
+
/** Date and time at which Seam created the error. */
|
|
87088
|
+
created_at: string;
|
|
86761
87089
|
}[];
|
|
86762
87090
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
86763
87091
|
warnings: ({
|
|
@@ -86956,6 +87284,8 @@ export type Routes = {
|
|
|
86956
87284
|
errors: {
|
|
86957
87285
|
error_code: string;
|
|
86958
87286
|
message: string;
|
|
87287
|
+
/** Date and time at which Seam created the error. */
|
|
87288
|
+
created_at: string;
|
|
86959
87289
|
}[];
|
|
86960
87290
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
86961
87291
|
warnings: ({
|
|
@@ -87088,6 +87418,8 @@ export type Routes = {
|
|
|
87088
87418
|
errors: {
|
|
87089
87419
|
error_code: string;
|
|
87090
87420
|
message: string;
|
|
87421
|
+
/** Date and time at which Seam created the error. */
|
|
87422
|
+
created_at: string;
|
|
87091
87423
|
}[];
|
|
87092
87424
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
87093
87425
|
warnings: ({
|
|
@@ -87298,6 +87630,8 @@ export type Routes = {
|
|
|
87298
87630
|
errors: {
|
|
87299
87631
|
error_code: string;
|
|
87300
87632
|
message: string;
|
|
87633
|
+
/** Date and time at which Seam created the error. */
|
|
87634
|
+
created_at: string;
|
|
87301
87635
|
}[];
|
|
87302
87636
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
87303
87637
|
warnings: ({
|
|
@@ -88328,6 +88662,8 @@ export type Routes = {
|
|
|
88328
88662
|
errors: {
|
|
88329
88663
|
error_code: string;
|
|
88330
88664
|
message: string;
|
|
88665
|
+
/** Date and time at which Seam created the error. */
|
|
88666
|
+
created_at: string;
|
|
88331
88667
|
}[];
|
|
88332
88668
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
88333
88669
|
warnings: ({
|
|
@@ -88460,6 +88796,8 @@ export type Routes = {
|
|
|
88460
88796
|
errors: {
|
|
88461
88797
|
error_code: string;
|
|
88462
88798
|
message: string;
|
|
88799
|
+
/** Date and time at which Seam created the error. */
|
|
88800
|
+
created_at: string;
|
|
88463
88801
|
}[];
|
|
88464
88802
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
88465
88803
|
warnings: ({
|
|
@@ -88658,6 +88996,8 @@ export type Routes = {
|
|
|
88658
88996
|
errors: {
|
|
88659
88997
|
error_code: string;
|
|
88660
88998
|
message: string;
|
|
88999
|
+
/** Date and time at which Seam created the error. */
|
|
89000
|
+
created_at: string;
|
|
88661
89001
|
}[];
|
|
88662
89002
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
88663
89003
|
warnings: ({
|
|
@@ -88790,6 +89130,8 @@ export type Routes = {
|
|
|
88790
89130
|
errors: {
|
|
88791
89131
|
error_code: string;
|
|
88792
89132
|
message: string;
|
|
89133
|
+
/** Date and time at which Seam created the error. */
|
|
89134
|
+
created_at: string;
|
|
88793
89135
|
}[];
|
|
88794
89136
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
88795
89137
|
warnings: ({
|
|
@@ -89000,6 +89342,8 @@ export type Routes = {
|
|
|
89000
89342
|
errors: {
|
|
89001
89343
|
error_code: string;
|
|
89002
89344
|
message: string;
|
|
89345
|
+
/** Date and time at which Seam created the error. */
|
|
89346
|
+
created_at: string;
|
|
89003
89347
|
}[];
|
|
89004
89348
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
89005
89349
|
warnings: ({
|
|
@@ -90136,6 +90480,8 @@ export type Routes = {
|
|
|
90136
90480
|
errors: {
|
|
90137
90481
|
error_code: string;
|
|
90138
90482
|
message: string;
|
|
90483
|
+
/** Date and time at which Seam created the error. */
|
|
90484
|
+
created_at: string;
|
|
90139
90485
|
}[];
|
|
90140
90486
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
90141
90487
|
warnings: ({
|
|
@@ -90268,6 +90614,8 @@ export type Routes = {
|
|
|
90268
90614
|
errors: {
|
|
90269
90615
|
error_code: string;
|
|
90270
90616
|
message: string;
|
|
90617
|
+
/** Date and time at which Seam created the error. */
|
|
90618
|
+
created_at: string;
|
|
90271
90619
|
}[];
|
|
90272
90620
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
90273
90621
|
warnings: ({
|
|
@@ -90466,6 +90814,8 @@ export type Routes = {
|
|
|
90466
90814
|
errors: {
|
|
90467
90815
|
error_code: string;
|
|
90468
90816
|
message: string;
|
|
90817
|
+
/** Date and time at which Seam created the error. */
|
|
90818
|
+
created_at: string;
|
|
90469
90819
|
}[];
|
|
90470
90820
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
90471
90821
|
warnings: ({
|
|
@@ -90598,6 +90948,8 @@ export type Routes = {
|
|
|
90598
90948
|
errors: {
|
|
90599
90949
|
error_code: string;
|
|
90600
90950
|
message: string;
|
|
90951
|
+
/** Date and time at which Seam created the error. */
|
|
90952
|
+
created_at: string;
|
|
90601
90953
|
}[];
|
|
90602
90954
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
90603
90955
|
warnings: ({
|
|
@@ -90808,6 +91160,8 @@ export type Routes = {
|
|
|
90808
91160
|
errors: {
|
|
90809
91161
|
error_code: string;
|
|
90810
91162
|
message: string;
|
|
91163
|
+
/** Date and time at which Seam created the error. */
|
|
91164
|
+
created_at: string;
|
|
90811
91165
|
}[];
|
|
90812
91166
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
90813
91167
|
warnings: ({
|
|
@@ -92611,6 +92965,8 @@ export type Routes = {
|
|
|
92611
92965
|
error_code: string;
|
|
92612
92966
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
92613
92967
|
message: string;
|
|
92968
|
+
/** Date and time at which Seam created the error. */
|
|
92969
|
+
created_at: string;
|
|
92614
92970
|
}[];
|
|
92615
92971
|
} | null) | undefined;
|
|
92616
92972
|
/** ID of the active [thermostat schedule](https://docs.seam.co/capability-guides/thermostats/creating-and-managing-thermostat-schedules). */
|
|
@@ -93317,6 +93673,8 @@ export type Routes = {
|
|
|
93317
93673
|
errors: {
|
|
93318
93674
|
error_code: string;
|
|
93319
93675
|
message: string;
|
|
93676
|
+
/** Date and time at which Seam created the error. */
|
|
93677
|
+
created_at: string;
|
|
93320
93678
|
}[];
|
|
93321
93679
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
93322
93680
|
warnings: ({
|
|
@@ -93449,6 +93807,8 @@ export type Routes = {
|
|
|
93449
93807
|
errors: {
|
|
93450
93808
|
error_code: string;
|
|
93451
93809
|
message: string;
|
|
93810
|
+
/** Date and time at which Seam created the error. */
|
|
93811
|
+
created_at: string;
|
|
93452
93812
|
}[];
|
|
93453
93813
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
93454
93814
|
warnings: ({
|
|
@@ -93647,6 +94007,8 @@ export type Routes = {
|
|
|
93647
94007
|
errors: {
|
|
93648
94008
|
error_code: string;
|
|
93649
94009
|
message: string;
|
|
94010
|
+
/** Date and time at which Seam created the error. */
|
|
94011
|
+
created_at: string;
|
|
93650
94012
|
}[];
|
|
93651
94013
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
93652
94014
|
warnings: ({
|
|
@@ -93779,6 +94141,8 @@ export type Routes = {
|
|
|
93779
94141
|
errors: {
|
|
93780
94142
|
error_code: string;
|
|
93781
94143
|
message: string;
|
|
94144
|
+
/** Date and time at which Seam created the error. */
|
|
94145
|
+
created_at: string;
|
|
93782
94146
|
}[];
|
|
93783
94147
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
93784
94148
|
warnings: ({
|
|
@@ -93989,6 +94353,8 @@ export type Routes = {
|
|
|
93989
94353
|
errors: {
|
|
93990
94354
|
error_code: string;
|
|
93991
94355
|
message: string;
|
|
94356
|
+
/** Date and time at which Seam created the error. */
|
|
94357
|
+
created_at: string;
|
|
93992
94358
|
}[];
|
|
93993
94359
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
93994
94360
|
warnings: ({
|
|
@@ -95023,6 +95389,8 @@ export type Routes = {
|
|
|
95023
95389
|
errors: {
|
|
95024
95390
|
error_code: string;
|
|
95025
95391
|
message: string;
|
|
95392
|
+
/** Date and time at which Seam created the error. */
|
|
95393
|
+
created_at: string;
|
|
95026
95394
|
}[];
|
|
95027
95395
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
95028
95396
|
warnings: ({
|
|
@@ -95155,6 +95523,8 @@ export type Routes = {
|
|
|
95155
95523
|
errors: {
|
|
95156
95524
|
error_code: string;
|
|
95157
95525
|
message: string;
|
|
95526
|
+
/** Date and time at which Seam created the error. */
|
|
95527
|
+
created_at: string;
|
|
95158
95528
|
}[];
|
|
95159
95529
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
95160
95530
|
warnings: ({
|
|
@@ -95353,6 +95723,8 @@ export type Routes = {
|
|
|
95353
95723
|
errors: {
|
|
95354
95724
|
error_code: string;
|
|
95355
95725
|
message: string;
|
|
95726
|
+
/** Date and time at which Seam created the error. */
|
|
95727
|
+
created_at: string;
|
|
95356
95728
|
}[];
|
|
95357
95729
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
95358
95730
|
warnings: ({
|
|
@@ -95485,6 +95857,8 @@ export type Routes = {
|
|
|
95485
95857
|
errors: {
|
|
95486
95858
|
error_code: string;
|
|
95487
95859
|
message: string;
|
|
95860
|
+
/** Date and time at which Seam created the error. */
|
|
95861
|
+
created_at: string;
|
|
95488
95862
|
}[];
|
|
95489
95863
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
95490
95864
|
warnings: ({
|
|
@@ -95695,6 +96069,8 @@ export type Routes = {
|
|
|
95695
96069
|
errors: {
|
|
95696
96070
|
error_code: string;
|
|
95697
96071
|
message: string;
|
|
96072
|
+
/** Date and time at which Seam created the error. */
|
|
96073
|
+
created_at: string;
|
|
95698
96074
|
}[];
|
|
95699
96075
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
95700
96076
|
warnings: ({
|
|
@@ -97517,6 +97893,8 @@ export type Routes = {
|
|
|
97517
97893
|
error_code: string;
|
|
97518
97894
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
97519
97895
|
message: string;
|
|
97896
|
+
/** Date and time at which Seam created the error. */
|
|
97897
|
+
created_at: string;
|
|
97520
97898
|
}[];
|
|
97521
97899
|
} | null) | undefined;
|
|
97522
97900
|
/** ID of the active [thermostat schedule](https://docs.seam.co/capability-guides/thermostats/creating-and-managing-thermostat-schedules). */
|
|
@@ -98964,6 +99342,8 @@ export type Routes = {
|
|
|
98964
99342
|
error_code: string;
|
|
98965
99343
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
98966
99344
|
message: string;
|
|
99345
|
+
/** Date and time at which Seam created the error. */
|
|
99346
|
+
created_at: string;
|
|
98967
99347
|
}[];
|
|
98968
99348
|
} | null) | undefined;
|
|
98969
99349
|
/** ID of the active [thermostat schedule](https://docs.seam.co/capability-guides/thermostats/creating-and-managing-thermostat-schedules). */
|
|
@@ -99666,6 +100046,8 @@ export type Routes = {
|
|
|
99666
100046
|
errors: {
|
|
99667
100047
|
error_code: string;
|
|
99668
100048
|
message: string;
|
|
100049
|
+
/** Date and time at which Seam created the error. */
|
|
100050
|
+
created_at: string;
|
|
99669
100051
|
}[];
|
|
99670
100052
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
99671
100053
|
warnings: ({
|
|
@@ -99798,6 +100180,8 @@ export type Routes = {
|
|
|
99798
100180
|
errors: {
|
|
99799
100181
|
error_code: string;
|
|
99800
100182
|
message: string;
|
|
100183
|
+
/** Date and time at which Seam created the error. */
|
|
100184
|
+
created_at: string;
|
|
99801
100185
|
}[];
|
|
99802
100186
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
99803
100187
|
warnings: ({
|
|
@@ -99996,6 +100380,8 @@ export type Routes = {
|
|
|
99996
100380
|
errors: {
|
|
99997
100381
|
error_code: string;
|
|
99998
100382
|
message: string;
|
|
100383
|
+
/** Date and time at which Seam created the error. */
|
|
100384
|
+
created_at: string;
|
|
99999
100385
|
}[];
|
|
100000
100386
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
100001
100387
|
warnings: ({
|
|
@@ -100128,6 +100514,8 @@ export type Routes = {
|
|
|
100128
100514
|
errors: {
|
|
100129
100515
|
error_code: string;
|
|
100130
100516
|
message: string;
|
|
100517
|
+
/** Date and time at which Seam created the error. */
|
|
100518
|
+
created_at: string;
|
|
100131
100519
|
}[];
|
|
100132
100520
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
100133
100521
|
warnings: ({
|
|
@@ -100338,6 +100726,8 @@ export type Routes = {
|
|
|
100338
100726
|
errors: {
|
|
100339
100727
|
error_code: string;
|
|
100340
100728
|
message: string;
|
|
100729
|
+
/** Date and time at which Seam created the error. */
|
|
100730
|
+
created_at: string;
|
|
100341
100731
|
}[];
|
|
100342
100732
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
100343
100733
|
warnings: ({
|
|
@@ -101215,6 +101605,8 @@ export type Routes = {
|
|
|
101215
101605
|
error_code: string;
|
|
101216
101606
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
101217
101607
|
message: string;
|
|
101608
|
+
/** Date and time at which Seam created the error. */
|
|
101609
|
+
created_at: string;
|
|
101218
101610
|
}[];
|
|
101219
101611
|
};
|
|
101220
101612
|
};
|
|
@@ -101272,6 +101664,8 @@ export type Routes = {
|
|
|
101272
101664
|
error_code: string;
|
|
101273
101665
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
101274
101666
|
message: string;
|
|
101667
|
+
/** Date and time at which Seam created the error. */
|
|
101668
|
+
created_at: string;
|
|
101275
101669
|
}[];
|
|
101276
101670
|
};
|
|
101277
101671
|
};
|
|
@@ -101317,6 +101711,8 @@ export type Routes = {
|
|
|
101317
101711
|
error_code: string;
|
|
101318
101712
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
101319
101713
|
message: string;
|
|
101714
|
+
/** Date and time at which Seam created the error. */
|
|
101715
|
+
created_at: string;
|
|
101320
101716
|
}[];
|
|
101321
101717
|
}[];
|
|
101322
101718
|
};
|
|
@@ -101567,6 +101963,8 @@ export type Routes = {
|
|
|
101567
101963
|
errors: {
|
|
101568
101964
|
error_code: string;
|
|
101569
101965
|
message: string;
|
|
101966
|
+
/** Date and time at which Seam created the error. */
|
|
101967
|
+
created_at: string;
|
|
101570
101968
|
}[];
|
|
101571
101969
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
101572
101970
|
warnings: ({
|
|
@@ -101699,6 +102097,8 @@ export type Routes = {
|
|
|
101699
102097
|
errors: {
|
|
101700
102098
|
error_code: string;
|
|
101701
102099
|
message: string;
|
|
102100
|
+
/** Date and time at which Seam created the error. */
|
|
102101
|
+
created_at: string;
|
|
101702
102102
|
}[];
|
|
101703
102103
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
101704
102104
|
warnings: ({
|
|
@@ -101897,6 +102297,8 @@ export type Routes = {
|
|
|
101897
102297
|
errors: {
|
|
101898
102298
|
error_code: string;
|
|
101899
102299
|
message: string;
|
|
102300
|
+
/** Date and time at which Seam created the error. */
|
|
102301
|
+
created_at: string;
|
|
101900
102302
|
}[];
|
|
101901
102303
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
101902
102304
|
warnings: ({
|
|
@@ -102029,6 +102431,8 @@ export type Routes = {
|
|
|
102029
102431
|
errors: {
|
|
102030
102432
|
error_code: string;
|
|
102031
102433
|
message: string;
|
|
102434
|
+
/** Date and time at which Seam created the error. */
|
|
102435
|
+
created_at: string;
|
|
102032
102436
|
}[];
|
|
102033
102437
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
102034
102438
|
warnings: ({
|
|
@@ -102239,6 +102643,8 @@ export type Routes = {
|
|
|
102239
102643
|
errors: {
|
|
102240
102644
|
error_code: string;
|
|
102241
102645
|
message: string;
|
|
102646
|
+
/** Date and time at which Seam created the error. */
|
|
102647
|
+
created_at: string;
|
|
102242
102648
|
}[];
|
|
102243
102649
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
102244
102650
|
warnings: ({
|
|
@@ -103296,6 +103702,8 @@ export type Routes = {
|
|
|
103296
103702
|
errors: {
|
|
103297
103703
|
error_code: string;
|
|
103298
103704
|
message: string;
|
|
103705
|
+
/** Date and time at which Seam created the error. */
|
|
103706
|
+
created_at: string;
|
|
103299
103707
|
}[];
|
|
103300
103708
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
103301
103709
|
warnings: ({
|
|
@@ -103428,6 +103836,8 @@ export type Routes = {
|
|
|
103428
103836
|
errors: {
|
|
103429
103837
|
error_code: string;
|
|
103430
103838
|
message: string;
|
|
103839
|
+
/** Date and time at which Seam created the error. */
|
|
103840
|
+
created_at: string;
|
|
103431
103841
|
}[];
|
|
103432
103842
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
103433
103843
|
warnings: ({
|
|
@@ -103626,6 +104036,8 @@ export type Routes = {
|
|
|
103626
104036
|
errors: {
|
|
103627
104037
|
error_code: string;
|
|
103628
104038
|
message: string;
|
|
104039
|
+
/** Date and time at which Seam created the error. */
|
|
104040
|
+
created_at: string;
|
|
103629
104041
|
}[];
|
|
103630
104042
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
103631
104043
|
warnings: ({
|
|
@@ -103758,6 +104170,8 @@ export type Routes = {
|
|
|
103758
104170
|
errors: {
|
|
103759
104171
|
error_code: string;
|
|
103760
104172
|
message: string;
|
|
104173
|
+
/** Date and time at which Seam created the error. */
|
|
104174
|
+
created_at: string;
|
|
103761
104175
|
}[];
|
|
103762
104176
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
103763
104177
|
warnings: ({
|
|
@@ -103968,6 +104382,8 @@ export type Routes = {
|
|
|
103968
104382
|
errors: {
|
|
103969
104383
|
error_code: string;
|
|
103970
104384
|
message: string;
|
|
104385
|
+
/** Date and time at which Seam created the error. */
|
|
104386
|
+
created_at: string;
|
|
103971
104387
|
}[];
|
|
103972
104388
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
103973
104389
|
warnings: ({
|
|
@@ -105137,6 +105553,8 @@ export type Routes = {
|
|
|
105137
105553
|
errors: {
|
|
105138
105554
|
error_code: string;
|
|
105139
105555
|
message: string;
|
|
105556
|
+
/** Date and time at which Seam created the error. */
|
|
105557
|
+
created_at: string;
|
|
105140
105558
|
}[];
|
|
105141
105559
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
105142
105560
|
warnings: ({
|
|
@@ -105269,6 +105687,8 @@ export type Routes = {
|
|
|
105269
105687
|
errors: {
|
|
105270
105688
|
error_code: string;
|
|
105271
105689
|
message: string;
|
|
105690
|
+
/** Date and time at which Seam created the error. */
|
|
105691
|
+
created_at: string;
|
|
105272
105692
|
}[];
|
|
105273
105693
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
105274
105694
|
warnings: ({
|
|
@@ -105467,6 +105887,8 @@ export type Routes = {
|
|
|
105467
105887
|
errors: {
|
|
105468
105888
|
error_code: string;
|
|
105469
105889
|
message: string;
|
|
105890
|
+
/** Date and time at which Seam created the error. */
|
|
105891
|
+
created_at: string;
|
|
105470
105892
|
}[];
|
|
105471
105893
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
105472
105894
|
warnings: ({
|
|
@@ -105599,6 +106021,8 @@ export type Routes = {
|
|
|
105599
106021
|
errors: {
|
|
105600
106022
|
error_code: string;
|
|
105601
106023
|
message: string;
|
|
106024
|
+
/** Date and time at which Seam created the error. */
|
|
106025
|
+
created_at: string;
|
|
105602
106026
|
}[];
|
|
105603
106027
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
105604
106028
|
warnings: ({
|
|
@@ -105809,6 +106233,8 @@ export type Routes = {
|
|
|
105809
106233
|
errors: {
|
|
105810
106234
|
error_code: string;
|
|
105811
106235
|
message: string;
|
|
106236
|
+
/** Date and time at which Seam created the error. */
|
|
106237
|
+
created_at: string;
|
|
105812
106238
|
}[];
|
|
105813
106239
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
105814
106240
|
warnings: ({
|
|
@@ -108191,6 +108617,8 @@ export type Routes = {
|
|
|
108191
108617
|
error_code: string;
|
|
108192
108618
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
108193
108619
|
message: string;
|
|
108620
|
+
/** Date and time at which Seam created the error. */
|
|
108621
|
+
created_at: string;
|
|
108194
108622
|
}[];
|
|
108195
108623
|
} | null) | undefined;
|
|
108196
108624
|
/** ID of the active [thermostat schedule](https://docs.seam.co/capability-guides/thermostats/creating-and-managing-thermostat-schedules). */
|
|
@@ -109640,6 +110068,8 @@ export type Routes = {
|
|
|
109640
110068
|
error_code: string;
|
|
109641
110069
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
109642
110070
|
message: string;
|
|
110071
|
+
/** Date and time at which Seam created the error. */
|
|
110072
|
+
created_at: string;
|
|
109643
110073
|
}[];
|
|
109644
110074
|
} | null) | undefined;
|
|
109645
110075
|
/** ID of the active [thermostat schedule](https://docs.seam.co/capability-guides/thermostats/creating-and-managing-thermostat-schedules). */
|
|
@@ -110172,6 +110602,8 @@ export type Routes = {
|
|
|
110172
110602
|
error_code: string;
|
|
110173
110603
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
110174
110604
|
message: string;
|
|
110605
|
+
/** Date and time at which Seam created the error. */
|
|
110606
|
+
created_at: string;
|
|
110175
110607
|
}[];
|
|
110176
110608
|
/** Warnings associated with the [entrance](https://docs.seam.co/low-level-apis/access-systems/retrieving-entrance-details). */
|
|
110177
110609
|
warnings: ({
|
|
@@ -112351,6 +112783,8 @@ export type Routes = {
|
|
|
112351
112783
|
error_code: string;
|
|
112352
112784
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
112353
112785
|
message: string;
|
|
112786
|
+
/** Date and time at which Seam created the error. */
|
|
112787
|
+
created_at: string;
|
|
112354
112788
|
}[];
|
|
112355
112789
|
} | null) | undefined;
|
|
112356
112790
|
/** ID of the active [thermostat schedule](https://docs.seam.co/capability-guides/thermostats/creating-and-managing-thermostat-schedules). */
|
|
@@ -112869,6 +113303,8 @@ export type Routes = {
|
|
|
112869
113303
|
error_code: string;
|
|
112870
113304
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
112871
113305
|
message: string;
|
|
113306
|
+
/** Date and time at which Seam created the error. */
|
|
113307
|
+
created_at: string;
|
|
112872
113308
|
}[];
|
|
112873
113309
|
/** Warnings associated with the [entrance](https://docs.seam.co/low-level-apis/access-systems/retrieving-entrance-details). */
|
|
112874
113310
|
warnings: ({
|
|
@@ -113799,6 +114235,8 @@ export type Routes = {
|
|
|
113799
114235
|
errors: {
|
|
113800
114236
|
error_code: string;
|
|
113801
114237
|
message: string;
|
|
114238
|
+
/** Date and time at which Seam created the error. */
|
|
114239
|
+
created_at: string;
|
|
113802
114240
|
}[];
|
|
113803
114241
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
113804
114242
|
warnings: ({
|
|
@@ -113931,6 +114369,8 @@ export type Routes = {
|
|
|
113931
114369
|
errors: {
|
|
113932
114370
|
error_code: string;
|
|
113933
114371
|
message: string;
|
|
114372
|
+
/** Date and time at which Seam created the error. */
|
|
114373
|
+
created_at: string;
|
|
113934
114374
|
}[];
|
|
113935
114375
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
113936
114376
|
warnings: ({
|
|
@@ -114129,6 +114569,8 @@ export type Routes = {
|
|
|
114129
114569
|
errors: {
|
|
114130
114570
|
error_code: string;
|
|
114131
114571
|
message: string;
|
|
114572
|
+
/** Date and time at which Seam created the error. */
|
|
114573
|
+
created_at: string;
|
|
114132
114574
|
}[];
|
|
114133
114575
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
114134
114576
|
warnings: ({
|
|
@@ -114261,6 +114703,8 @@ export type Routes = {
|
|
|
114261
114703
|
errors: {
|
|
114262
114704
|
error_code: string;
|
|
114263
114705
|
message: string;
|
|
114706
|
+
/** Date and time at which Seam created the error. */
|
|
114707
|
+
created_at: string;
|
|
114264
114708
|
}[];
|
|
114265
114709
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
114266
114710
|
warnings: ({
|
|
@@ -114471,6 +114915,8 @@ export type Routes = {
|
|
|
114471
114915
|
errors: {
|
|
114472
114916
|
error_code: string;
|
|
114473
114917
|
message: string;
|
|
114918
|
+
/** Date and time at which Seam created the error. */
|
|
114919
|
+
created_at: string;
|
|
114474
114920
|
}[];
|
|
114475
114921
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
114476
114922
|
warnings: ({
|
|
@@ -120096,6 +120542,8 @@ export type Routes = {
|
|
|
120096
120542
|
errors: {
|
|
120097
120543
|
error_code: string;
|
|
120098
120544
|
message: string;
|
|
120545
|
+
/** Date and time at which Seam created the error. */
|
|
120546
|
+
created_at: string;
|
|
120099
120547
|
}[];
|
|
120100
120548
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
120101
120549
|
warnings: ({
|
|
@@ -120229,6 +120677,8 @@ export type Routes = {
|
|
|
120229
120677
|
errors: {
|
|
120230
120678
|
error_code: string;
|
|
120231
120679
|
message: string;
|
|
120680
|
+
/** Date and time at which Seam created the error. */
|
|
120681
|
+
created_at: string;
|
|
120232
120682
|
}[];
|
|
120233
120683
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
120234
120684
|
warnings: ({
|
|
@@ -121158,6 +121608,8 @@ export type Routes = {
|
|
|
121158
121608
|
error_code: string;
|
|
121159
121609
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
121160
121610
|
message: string;
|
|
121611
|
+
/** Date and time at which Seam created the error. */
|
|
121612
|
+
created_at: string;
|
|
121161
121613
|
}[];
|
|
121162
121614
|
}[] | undefined;
|
|
121163
121615
|
noise_thresholds?: {
|
|
@@ -121486,6 +121938,8 @@ export type Routes = {
|
|
|
121486
121938
|
errors: {
|
|
121487
121939
|
error_code: string;
|
|
121488
121940
|
message: string;
|
|
121941
|
+
/** Date and time at which Seam created the error. */
|
|
121942
|
+
created_at: string;
|
|
121489
121943
|
}[];
|
|
121490
121944
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
121491
121945
|
warnings: ({
|
|
@@ -121618,6 +122072,8 @@ export type Routes = {
|
|
|
121618
122072
|
errors: {
|
|
121619
122073
|
error_code: string;
|
|
121620
122074
|
message: string;
|
|
122075
|
+
/** Date and time at which Seam created the error. */
|
|
122076
|
+
created_at: string;
|
|
121621
122077
|
}[];
|
|
121622
122078
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
121623
122079
|
warnings: ({
|
|
@@ -121816,6 +122272,8 @@ export type Routes = {
|
|
|
121816
122272
|
errors: {
|
|
121817
122273
|
error_code: string;
|
|
121818
122274
|
message: string;
|
|
122275
|
+
/** Date and time at which Seam created the error. */
|
|
122276
|
+
created_at: string;
|
|
121819
122277
|
}[];
|
|
121820
122278
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
121821
122279
|
warnings: ({
|
|
@@ -121948,6 +122406,8 @@ export type Routes = {
|
|
|
121948
122406
|
errors: {
|
|
121949
122407
|
error_code: string;
|
|
121950
122408
|
message: string;
|
|
122409
|
+
/** Date and time at which Seam created the error. */
|
|
122410
|
+
created_at: string;
|
|
121951
122411
|
}[];
|
|
121952
122412
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
121953
122413
|
warnings: ({
|
|
@@ -122158,6 +122618,8 @@ export type Routes = {
|
|
|
122158
122618
|
errors: {
|
|
122159
122619
|
error_code: string;
|
|
122160
122620
|
message: string;
|
|
122621
|
+
/** Date and time at which Seam created the error. */
|
|
122622
|
+
created_at: string;
|
|
122161
122623
|
}[];
|
|
122162
122624
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
122163
122625
|
warnings: ({
|