@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
|
@@ -273,6 +273,8 @@ export type Routes = {
|
|
|
273
273
|
errors: {
|
|
274
274
|
error_code: string
|
|
275
275
|
message: string
|
|
276
|
+
/** Date and time at which Seam created the error. */
|
|
277
|
+
created_at: string
|
|
276
278
|
}[]
|
|
277
279
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
278
280
|
warnings: (
|
|
@@ -453,6 +455,8 @@ export type Routes = {
|
|
|
453
455
|
errors: {
|
|
454
456
|
error_code: string
|
|
455
457
|
message: string
|
|
458
|
+
/** Date and time at which Seam created the error. */
|
|
459
|
+
created_at: string
|
|
456
460
|
}[]
|
|
457
461
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
458
462
|
warnings: (
|
|
@@ -708,6 +712,8 @@ export type Routes = {
|
|
|
708
712
|
errors: {
|
|
709
713
|
error_code: string
|
|
710
714
|
message: string
|
|
715
|
+
/** Date and time at which Seam created the error. */
|
|
716
|
+
created_at: string
|
|
711
717
|
}[]
|
|
712
718
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
713
719
|
warnings: (
|
|
@@ -884,6 +890,8 @@ export type Routes = {
|
|
|
884
890
|
errors: {
|
|
885
891
|
error_code: string
|
|
886
892
|
message: string
|
|
893
|
+
/** Date and time at which Seam created the error. */
|
|
894
|
+
created_at: string
|
|
887
895
|
}[]
|
|
888
896
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
889
897
|
warnings: (
|
|
@@ -1150,6 +1158,8 @@ export type Routes = {
|
|
|
1150
1158
|
errors: {
|
|
1151
1159
|
error_code: string
|
|
1152
1160
|
message: string
|
|
1161
|
+
/** Date and time at which Seam created the error. */
|
|
1162
|
+
created_at: string
|
|
1153
1163
|
}[]
|
|
1154
1164
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
1155
1165
|
warnings: (
|
|
@@ -3335,6 +3345,8 @@ export type Routes = {
|
|
|
3335
3345
|
errors: {
|
|
3336
3346
|
error_code: string
|
|
3337
3347
|
message: string
|
|
3348
|
+
/** Date and time at which Seam created the error. */
|
|
3349
|
+
created_at: string
|
|
3338
3350
|
}[]
|
|
3339
3351
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
3340
3352
|
warnings: (
|
|
@@ -3515,6 +3527,8 @@ export type Routes = {
|
|
|
3515
3527
|
errors: {
|
|
3516
3528
|
error_code: string
|
|
3517
3529
|
message: string
|
|
3530
|
+
/** Date and time at which Seam created the error. */
|
|
3531
|
+
created_at: string
|
|
3518
3532
|
}[]
|
|
3519
3533
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
3520
3534
|
warnings: (
|
|
@@ -3770,6 +3784,8 @@ export type Routes = {
|
|
|
3770
3784
|
errors: {
|
|
3771
3785
|
error_code: string
|
|
3772
3786
|
message: string
|
|
3787
|
+
/** Date and time at which Seam created the error. */
|
|
3788
|
+
created_at: string
|
|
3773
3789
|
}[]
|
|
3774
3790
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
3775
3791
|
warnings: (
|
|
@@ -3946,6 +3962,8 @@ export type Routes = {
|
|
|
3946
3962
|
errors: {
|
|
3947
3963
|
error_code: string
|
|
3948
3964
|
message: string
|
|
3965
|
+
/** Date and time at which Seam created the error. */
|
|
3966
|
+
created_at: string
|
|
3949
3967
|
}[]
|
|
3950
3968
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
3951
3969
|
warnings: (
|
|
@@ -4212,6 +4230,8 @@ export type Routes = {
|
|
|
4212
4230
|
errors: {
|
|
4213
4231
|
error_code: string
|
|
4214
4232
|
message: string
|
|
4233
|
+
/** Date and time at which Seam created the error. */
|
|
4234
|
+
created_at: string
|
|
4215
4235
|
}[]
|
|
4216
4236
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
4217
4237
|
warnings: (
|
|
@@ -8017,6 +8037,8 @@ export type Routes = {
|
|
|
8017
8037
|
errors: {
|
|
8018
8038
|
error_code: string
|
|
8019
8039
|
message: string
|
|
8040
|
+
/** Date and time at which Seam created the error. */
|
|
8041
|
+
created_at: string
|
|
8020
8042
|
}[]
|
|
8021
8043
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
8022
8044
|
warnings: (
|
|
@@ -8197,6 +8219,8 @@ export type Routes = {
|
|
|
8197
8219
|
errors: {
|
|
8198
8220
|
error_code: string
|
|
8199
8221
|
message: string
|
|
8222
|
+
/** Date and time at which Seam created the error. */
|
|
8223
|
+
created_at: string
|
|
8200
8224
|
}[]
|
|
8201
8225
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
8202
8226
|
warnings: (
|
|
@@ -8452,6 +8476,8 @@ export type Routes = {
|
|
|
8452
8476
|
errors: {
|
|
8453
8477
|
error_code: string
|
|
8454
8478
|
message: string
|
|
8479
|
+
/** Date and time at which Seam created the error. */
|
|
8480
|
+
created_at: string
|
|
8455
8481
|
}[]
|
|
8456
8482
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
8457
8483
|
warnings: (
|
|
@@ -8628,6 +8654,8 @@ export type Routes = {
|
|
|
8628
8654
|
errors: {
|
|
8629
8655
|
error_code: string
|
|
8630
8656
|
message: string
|
|
8657
|
+
/** Date and time at which Seam created the error. */
|
|
8658
|
+
created_at: string
|
|
8631
8659
|
}[]
|
|
8632
8660
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
8633
8661
|
warnings: (
|
|
@@ -8894,6 +8922,8 @@ export type Routes = {
|
|
|
8894
8922
|
errors: {
|
|
8895
8923
|
error_code: string
|
|
8896
8924
|
message: string
|
|
8925
|
+
/** Date and time at which Seam created the error. */
|
|
8926
|
+
created_at: string
|
|
8897
8927
|
}[]
|
|
8898
8928
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
8899
8929
|
warnings: (
|
|
@@ -10947,6 +10977,8 @@ export type Routes = {
|
|
|
10947
10977
|
errors: {
|
|
10948
10978
|
error_code: string
|
|
10949
10979
|
message: string
|
|
10980
|
+
/** Date and time at which Seam created the error. */
|
|
10981
|
+
created_at: string
|
|
10950
10982
|
}[]
|
|
10951
10983
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
10952
10984
|
warnings: (
|
|
@@ -11127,6 +11159,8 @@ export type Routes = {
|
|
|
11127
11159
|
errors: {
|
|
11128
11160
|
error_code: string
|
|
11129
11161
|
message: string
|
|
11162
|
+
/** Date and time at which Seam created the error. */
|
|
11163
|
+
created_at: string
|
|
11130
11164
|
}[]
|
|
11131
11165
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
11132
11166
|
warnings: (
|
|
@@ -11382,6 +11416,8 @@ export type Routes = {
|
|
|
11382
11416
|
errors: {
|
|
11383
11417
|
error_code: string
|
|
11384
11418
|
message: string
|
|
11419
|
+
/** Date and time at which Seam created the error. */
|
|
11420
|
+
created_at: string
|
|
11385
11421
|
}[]
|
|
11386
11422
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
11387
11423
|
warnings: (
|
|
@@ -11558,6 +11594,8 @@ export type Routes = {
|
|
|
11558
11594
|
errors: {
|
|
11559
11595
|
error_code: string
|
|
11560
11596
|
message: string
|
|
11597
|
+
/** Date and time at which Seam created the error. */
|
|
11598
|
+
created_at: string
|
|
11561
11599
|
}[]
|
|
11562
11600
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
11563
11601
|
warnings: (
|
|
@@ -11824,6 +11862,8 @@ export type Routes = {
|
|
|
11824
11862
|
errors: {
|
|
11825
11863
|
error_code: string
|
|
11826
11864
|
message: string
|
|
11865
|
+
/** Date and time at which Seam created the error. */
|
|
11866
|
+
created_at: string
|
|
11827
11867
|
}[]
|
|
11828
11868
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
11829
11869
|
warnings: (
|
|
@@ -14691,6 +14731,8 @@ export type Routes = {
|
|
|
14691
14731
|
error_code: string
|
|
14692
14732
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
14693
14733
|
message: string
|
|
14734
|
+
/** Date and time at which Seam created the error. */
|
|
14735
|
+
created_at: string
|
|
14694
14736
|
}[]
|
|
14695
14737
|
} | null)
|
|
14696
14738
|
| undefined
|
|
@@ -15288,6 +15330,8 @@ export type Routes = {
|
|
|
15288
15330
|
error_code: string
|
|
15289
15331
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
15290
15332
|
message: string
|
|
15333
|
+
/** Date and time at which Seam created the error. */
|
|
15334
|
+
created_at: string
|
|
15291
15335
|
}[]
|
|
15292
15336
|
/** Warnings associated with the [entrance](https://docs.seam.co/low-level-apis/access-systems/retrieving-entrance-details). */
|
|
15293
15337
|
warnings: (
|
|
@@ -17488,6 +17532,8 @@ export type Routes = {
|
|
|
17488
17532
|
errors: {
|
|
17489
17533
|
error_code: string
|
|
17490
17534
|
message: string
|
|
17535
|
+
/** Date and time at which Seam created the error. */
|
|
17536
|
+
created_at: string
|
|
17491
17537
|
}[]
|
|
17492
17538
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
17493
17539
|
warnings: (
|
|
@@ -17668,6 +17714,8 @@ export type Routes = {
|
|
|
17668
17714
|
errors: {
|
|
17669
17715
|
error_code: string
|
|
17670
17716
|
message: string
|
|
17717
|
+
/** Date and time at which Seam created the error. */
|
|
17718
|
+
created_at: string
|
|
17671
17719
|
}[]
|
|
17672
17720
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
17673
17721
|
warnings: (
|
|
@@ -17923,6 +17971,8 @@ export type Routes = {
|
|
|
17923
17971
|
errors: {
|
|
17924
17972
|
error_code: string
|
|
17925
17973
|
message: string
|
|
17974
|
+
/** Date and time at which Seam created the error. */
|
|
17975
|
+
created_at: string
|
|
17926
17976
|
}[]
|
|
17927
17977
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
17928
17978
|
warnings: (
|
|
@@ -18099,6 +18149,8 @@ export type Routes = {
|
|
|
18099
18149
|
errors: {
|
|
18100
18150
|
error_code: string
|
|
18101
18151
|
message: string
|
|
18152
|
+
/** Date and time at which Seam created the error. */
|
|
18153
|
+
created_at: string
|
|
18102
18154
|
}[]
|
|
18103
18155
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
18104
18156
|
warnings: (
|
|
@@ -18365,6 +18417,8 @@ export type Routes = {
|
|
|
18365
18417
|
errors: {
|
|
18366
18418
|
error_code: string
|
|
18367
18419
|
message: string
|
|
18420
|
+
/** Date and time at which Seam created the error. */
|
|
18421
|
+
created_at: string
|
|
18368
18422
|
}[]
|
|
18369
18423
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
18370
18424
|
warnings: (
|
|
@@ -19536,6 +19590,8 @@ export type Routes = {
|
|
|
19536
19590
|
errors: {
|
|
19537
19591
|
error_code: string
|
|
19538
19592
|
message: string
|
|
19593
|
+
/** Date and time at which Seam created the error. */
|
|
19594
|
+
created_at: string
|
|
19539
19595
|
}[]
|
|
19540
19596
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
19541
19597
|
warnings: (
|
|
@@ -19716,6 +19772,8 @@ export type Routes = {
|
|
|
19716
19772
|
errors: {
|
|
19717
19773
|
error_code: string
|
|
19718
19774
|
message: string
|
|
19775
|
+
/** Date and time at which Seam created the error. */
|
|
19776
|
+
created_at: string
|
|
19719
19777
|
}[]
|
|
19720
19778
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
19721
19779
|
warnings: (
|
|
@@ -19971,6 +20029,8 @@ export type Routes = {
|
|
|
19971
20029
|
errors: {
|
|
19972
20030
|
error_code: string
|
|
19973
20031
|
message: string
|
|
20032
|
+
/** Date and time at which Seam created the error. */
|
|
20033
|
+
created_at: string
|
|
19974
20034
|
}[]
|
|
19975
20035
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
19976
20036
|
warnings: (
|
|
@@ -20147,6 +20207,8 @@ export type Routes = {
|
|
|
20147
20207
|
errors: {
|
|
20148
20208
|
error_code: string
|
|
20149
20209
|
message: string
|
|
20210
|
+
/** Date and time at which Seam created the error. */
|
|
20211
|
+
created_at: string
|
|
20150
20212
|
}[]
|
|
20151
20213
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
20152
20214
|
warnings: (
|
|
@@ -20413,6 +20475,8 @@ export type Routes = {
|
|
|
20413
20475
|
errors: {
|
|
20414
20476
|
error_code: string
|
|
20415
20477
|
message: string
|
|
20478
|
+
/** Date and time at which Seam created the error. */
|
|
20479
|
+
created_at: string
|
|
20416
20480
|
}[]
|
|
20417
20481
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
20418
20482
|
warnings: (
|
|
@@ -22908,6 +22972,8 @@ export type Routes = {
|
|
|
22908
22972
|
error_code: string
|
|
22909
22973
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
22910
22974
|
message: string
|
|
22975
|
+
/** Date and time at which Seam created the error. */
|
|
22976
|
+
created_at: string
|
|
22911
22977
|
}[]
|
|
22912
22978
|
} | null)
|
|
22913
22979
|
| undefined
|
|
@@ -23505,6 +23571,8 @@ export type Routes = {
|
|
|
23505
23571
|
error_code: string
|
|
23506
23572
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
23507
23573
|
message: string
|
|
23574
|
+
/** Date and time at which Seam created the error. */
|
|
23575
|
+
created_at: string
|
|
23508
23576
|
}[]
|
|
23509
23577
|
/** Warnings associated with the [entrance](https://docs.seam.co/low-level-apis/access-systems/retrieving-entrance-details). */
|
|
23510
23578
|
warnings: (
|
|
@@ -24190,6 +24258,8 @@ export type Routes = {
|
|
|
24190
24258
|
errors: {
|
|
24191
24259
|
error_code: string
|
|
24192
24260
|
message: string
|
|
24261
|
+
/** Date and time at which Seam created the error. */
|
|
24262
|
+
created_at: string
|
|
24193
24263
|
}[]
|
|
24194
24264
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
24195
24265
|
warnings: (
|
|
@@ -24705,6 +24775,8 @@ export type Routes = {
|
|
|
24705
24775
|
errors: {
|
|
24706
24776
|
error_code: string
|
|
24707
24777
|
message: string
|
|
24778
|
+
/** Date and time at which Seam created the error. */
|
|
24779
|
+
created_at: string
|
|
24708
24780
|
}[]
|
|
24709
24781
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
24710
24782
|
warnings: (
|
|
@@ -24885,6 +24957,8 @@ export type Routes = {
|
|
|
24885
24957
|
errors: {
|
|
24886
24958
|
error_code: string
|
|
24887
24959
|
message: string
|
|
24960
|
+
/** Date and time at which Seam created the error. */
|
|
24961
|
+
created_at: string
|
|
24888
24962
|
}[]
|
|
24889
24963
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
24890
24964
|
warnings: (
|
|
@@ -25140,6 +25214,8 @@ export type Routes = {
|
|
|
25140
25214
|
errors: {
|
|
25141
25215
|
error_code: string
|
|
25142
25216
|
message: string
|
|
25217
|
+
/** Date and time at which Seam created the error. */
|
|
25218
|
+
created_at: string
|
|
25143
25219
|
}[]
|
|
25144
25220
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
25145
25221
|
warnings: (
|
|
@@ -25316,6 +25392,8 @@ export type Routes = {
|
|
|
25316
25392
|
errors: {
|
|
25317
25393
|
error_code: string
|
|
25318
25394
|
message: string
|
|
25395
|
+
/** Date and time at which Seam created the error. */
|
|
25396
|
+
created_at: string
|
|
25319
25397
|
}[]
|
|
25320
25398
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
25321
25399
|
warnings: (
|
|
@@ -25582,6 +25660,8 @@ export type Routes = {
|
|
|
25582
25660
|
errors: {
|
|
25583
25661
|
error_code: string
|
|
25584
25662
|
message: string
|
|
25663
|
+
/** Date and time at which Seam created the error. */
|
|
25664
|
+
created_at: string
|
|
25585
25665
|
}[]
|
|
25586
25666
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
25587
25667
|
warnings: (
|
|
@@ -27289,6 +27369,8 @@ export type Routes = {
|
|
|
27289
27369
|
error_code: string
|
|
27290
27370
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
27291
27371
|
message: string
|
|
27372
|
+
/** Date and time at which Seam created the error. */
|
|
27373
|
+
created_at: string
|
|
27292
27374
|
}[]
|
|
27293
27375
|
/** Warnings associated with the [entrance](https://docs.seam.co/low-level-apis/access-systems/retrieving-entrance-details). */
|
|
27294
27376
|
warnings: (
|
|
@@ -28400,6 +28482,8 @@ export type Routes = {
|
|
|
28400
28482
|
errors: {
|
|
28401
28483
|
error_code: string
|
|
28402
28484
|
message: string
|
|
28485
|
+
/** Date and time at which Seam created the error. */
|
|
28486
|
+
created_at: string
|
|
28403
28487
|
}[]
|
|
28404
28488
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
28405
28489
|
warnings: (
|
|
@@ -28648,6 +28732,8 @@ export type Routes = {
|
|
|
28648
28732
|
errors: {
|
|
28649
28733
|
error_code: string
|
|
28650
28734
|
message: string
|
|
28735
|
+
/** Date and time at which Seam created the error. */
|
|
28736
|
+
created_at: string
|
|
28651
28737
|
}[]
|
|
28652
28738
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
28653
28739
|
warnings: (
|
|
@@ -28843,6 +28929,8 @@ export type Routes = {
|
|
|
28843
28929
|
errors: {
|
|
28844
28930
|
error_code: string
|
|
28845
28931
|
message: string
|
|
28932
|
+
/** Date and time at which Seam created the error. */
|
|
28933
|
+
created_at: string
|
|
28846
28934
|
}[]
|
|
28847
28935
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
28848
28936
|
warnings: (
|
|
@@ -29043,6 +29131,8 @@ export type Routes = {
|
|
|
29043
29131
|
errors: {
|
|
29044
29132
|
error_code: string
|
|
29045
29133
|
message: string
|
|
29134
|
+
/** Date and time at which Seam created the error. */
|
|
29135
|
+
created_at: string
|
|
29046
29136
|
}[]
|
|
29047
29137
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
29048
29138
|
warnings: (
|
|
@@ -29251,6 +29341,8 @@ export type Routes = {
|
|
|
29251
29341
|
errors: {
|
|
29252
29342
|
error_code: string
|
|
29253
29343
|
message: string
|
|
29344
|
+
/** Date and time at which Seam created the error. */
|
|
29345
|
+
created_at: string
|
|
29254
29346
|
}[]
|
|
29255
29347
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
29256
29348
|
warnings: (
|
|
@@ -29398,6 +29490,8 @@ export type Routes = {
|
|
|
29398
29490
|
error_code: string
|
|
29399
29491
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
29400
29492
|
message: string
|
|
29493
|
+
/** Date and time at which Seam created the error. */
|
|
29494
|
+
created_at: string
|
|
29401
29495
|
}[]
|
|
29402
29496
|
/** Warnings associated with the [entrance](https://docs.seam.co/low-level-apis/access-systems/retrieving-entrance-details). */
|
|
29403
29497
|
warnings: (
|
|
@@ -29703,6 +29797,8 @@ export type Routes = {
|
|
|
29703
29797
|
errors: {
|
|
29704
29798
|
error_code: string
|
|
29705
29799
|
message: string
|
|
29800
|
+
/** Date and time at which Seam created the error. */
|
|
29801
|
+
created_at: string
|
|
29706
29802
|
}[]
|
|
29707
29803
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
29708
29804
|
warnings: (
|
|
@@ -29884,6 +29980,8 @@ export type Routes = {
|
|
|
29884
29980
|
errors: {
|
|
29885
29981
|
error_code: string
|
|
29886
29982
|
message: string
|
|
29983
|
+
/** Date and time at which Seam created the error. */
|
|
29984
|
+
created_at: string
|
|
29887
29985
|
}[]
|
|
29888
29986
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
29889
29987
|
warnings: (
|
|
@@ -30082,6 +30180,8 @@ export type Routes = {
|
|
|
30082
30180
|
errors: {
|
|
30083
30181
|
error_code: string
|
|
30084
30182
|
message: string
|
|
30183
|
+
/** Date and time at which Seam created the error. */
|
|
30184
|
+
created_at: string
|
|
30085
30185
|
}[]
|
|
30086
30186
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
30087
30187
|
warnings: (
|
|
@@ -30272,6 +30372,8 @@ export type Routes = {
|
|
|
30272
30372
|
errors: {
|
|
30273
30373
|
error_code: string
|
|
30274
30374
|
message: string
|
|
30375
|
+
/** Date and time at which Seam created the error. */
|
|
30376
|
+
created_at: string
|
|
30275
30377
|
}[]
|
|
30276
30378
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
30277
30379
|
warnings: (
|
|
@@ -30620,6 +30722,8 @@ export type Routes = {
|
|
|
30620
30722
|
errors: {
|
|
30621
30723
|
error_code: string
|
|
30622
30724
|
message: string
|
|
30725
|
+
/** Date and time at which Seam created the error. */
|
|
30726
|
+
created_at: string
|
|
30623
30727
|
}[]
|
|
30624
30728
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
30625
30729
|
warnings: (
|
|
@@ -30800,6 +30904,8 @@ export type Routes = {
|
|
|
30800
30904
|
errors: {
|
|
30801
30905
|
error_code: string
|
|
30802
30906
|
message: string
|
|
30907
|
+
/** Date and time at which Seam created the error. */
|
|
30908
|
+
created_at: string
|
|
30803
30909
|
}[]
|
|
30804
30910
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
30805
30911
|
warnings: (
|
|
@@ -31055,6 +31161,8 @@ export type Routes = {
|
|
|
31055
31161
|
errors: {
|
|
31056
31162
|
error_code: string
|
|
31057
31163
|
message: string
|
|
31164
|
+
/** Date and time at which Seam created the error. */
|
|
31165
|
+
created_at: string
|
|
31058
31166
|
}[]
|
|
31059
31167
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
31060
31168
|
warnings: (
|
|
@@ -31231,6 +31339,8 @@ export type Routes = {
|
|
|
31231
31339
|
errors: {
|
|
31232
31340
|
error_code: string
|
|
31233
31341
|
message: string
|
|
31342
|
+
/** Date and time at which Seam created the error. */
|
|
31343
|
+
created_at: string
|
|
31234
31344
|
}[]
|
|
31235
31345
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
31236
31346
|
warnings: (
|
|
@@ -31497,6 +31607,8 @@ export type Routes = {
|
|
|
31497
31607
|
errors: {
|
|
31498
31608
|
error_code: string
|
|
31499
31609
|
message: string
|
|
31610
|
+
/** Date and time at which Seam created the error. */
|
|
31611
|
+
created_at: string
|
|
31500
31612
|
}[]
|
|
31501
31613
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
31502
31614
|
warnings: (
|
|
@@ -32763,6 +32875,8 @@ export type Routes = {
|
|
|
32763
32875
|
errors: {
|
|
32764
32876
|
error_code: string
|
|
32765
32877
|
message: string
|
|
32878
|
+
/** Date and time at which Seam created the error. */
|
|
32879
|
+
created_at: string
|
|
32766
32880
|
}[]
|
|
32767
32881
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
32768
32882
|
warnings: (
|
|
@@ -32943,6 +33057,8 @@ export type Routes = {
|
|
|
32943
33057
|
errors: {
|
|
32944
33058
|
error_code: string
|
|
32945
33059
|
message: string
|
|
33060
|
+
/** Date and time at which Seam created the error. */
|
|
33061
|
+
created_at: string
|
|
32946
33062
|
}[]
|
|
32947
33063
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
32948
33064
|
warnings: (
|
|
@@ -33198,6 +33314,8 @@ export type Routes = {
|
|
|
33198
33314
|
errors: {
|
|
33199
33315
|
error_code: string
|
|
33200
33316
|
message: string
|
|
33317
|
+
/** Date and time at which Seam created the error. */
|
|
33318
|
+
created_at: string
|
|
33201
33319
|
}[]
|
|
33202
33320
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
33203
33321
|
warnings: (
|
|
@@ -33374,6 +33492,8 @@ export type Routes = {
|
|
|
33374
33492
|
errors: {
|
|
33375
33493
|
error_code: string
|
|
33376
33494
|
message: string
|
|
33495
|
+
/** Date and time at which Seam created the error. */
|
|
33496
|
+
created_at: string
|
|
33377
33497
|
}[]
|
|
33378
33498
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
33379
33499
|
warnings: (
|
|
@@ -33640,6 +33760,8 @@ export type Routes = {
|
|
|
33640
33760
|
errors: {
|
|
33641
33761
|
error_code: string
|
|
33642
33762
|
message: string
|
|
33763
|
+
/** Date and time at which Seam created the error. */
|
|
33764
|
+
created_at: string
|
|
33643
33765
|
}[]
|
|
33644
33766
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
33645
33767
|
warnings: (
|
|
@@ -34798,6 +34920,8 @@ export type Routes = {
|
|
|
34798
34920
|
errors: {
|
|
34799
34921
|
error_code: string
|
|
34800
34922
|
message: string
|
|
34923
|
+
/** Date and time at which Seam created the error. */
|
|
34924
|
+
created_at: string
|
|
34801
34925
|
}[]
|
|
34802
34926
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
34803
34927
|
warnings: (
|
|
@@ -34978,6 +35102,8 @@ export type Routes = {
|
|
|
34978
35102
|
errors: {
|
|
34979
35103
|
error_code: string
|
|
34980
35104
|
message: string
|
|
35105
|
+
/** Date and time at which Seam created the error. */
|
|
35106
|
+
created_at: string
|
|
34981
35107
|
}[]
|
|
34982
35108
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
34983
35109
|
warnings: (
|
|
@@ -35233,6 +35359,8 @@ export type Routes = {
|
|
|
35233
35359
|
errors: {
|
|
35234
35360
|
error_code: string
|
|
35235
35361
|
message: string
|
|
35362
|
+
/** Date and time at which Seam created the error. */
|
|
35363
|
+
created_at: string
|
|
35236
35364
|
}[]
|
|
35237
35365
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
35238
35366
|
warnings: (
|
|
@@ -35409,6 +35537,8 @@ export type Routes = {
|
|
|
35409
35537
|
errors: {
|
|
35410
35538
|
error_code: string
|
|
35411
35539
|
message: string
|
|
35540
|
+
/** Date and time at which Seam created the error. */
|
|
35541
|
+
created_at: string
|
|
35412
35542
|
}[]
|
|
35413
35543
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
35414
35544
|
warnings: (
|
|
@@ -35675,6 +35805,8 @@ export type Routes = {
|
|
|
35675
35805
|
errors: {
|
|
35676
35806
|
error_code: string
|
|
35677
35807
|
message: string
|
|
35808
|
+
/** Date and time at which Seam created the error. */
|
|
35809
|
+
created_at: string
|
|
35678
35810
|
}[]
|
|
35679
35811
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
35680
35812
|
warnings: (
|
|
@@ -36711,6 +36843,8 @@ export type Routes = {
|
|
|
36711
36843
|
error_code: string
|
|
36712
36844
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
36713
36845
|
message: string
|
|
36846
|
+
/** Date and time at which Seam created the error. */
|
|
36847
|
+
created_at: string
|
|
36714
36848
|
}[]
|
|
36715
36849
|
/** Warnings associated with the [entrance](https://docs.seam.co/low-level-apis/access-systems/retrieving-entrance-details). */
|
|
36716
36850
|
warnings: (
|
|
@@ -36999,6 +37133,8 @@ export type Routes = {
|
|
|
36999
37133
|
error_code: string
|
|
37000
37134
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
37001
37135
|
message: string
|
|
37136
|
+
/** Date and time at which Seam created the error. */
|
|
37137
|
+
created_at: string
|
|
37002
37138
|
}[]
|
|
37003
37139
|
/** Warnings associated with the [entrance](https://docs.seam.co/low-level-apis/access-systems/retrieving-entrance-details). */
|
|
37004
37140
|
warnings: (
|
|
@@ -37304,6 +37440,8 @@ export type Routes = {
|
|
|
37304
37440
|
errors: {
|
|
37305
37441
|
error_code: string
|
|
37306
37442
|
message: string
|
|
37443
|
+
/** Date and time at which Seam created the error. */
|
|
37444
|
+
created_at: string
|
|
37307
37445
|
}[]
|
|
37308
37446
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
37309
37447
|
warnings: (
|
|
@@ -37650,6 +37788,8 @@ export type Routes = {
|
|
|
37650
37788
|
errors: {
|
|
37651
37789
|
error_code: string
|
|
37652
37790
|
message: string
|
|
37791
|
+
/** Date and time at which Seam created the error. */
|
|
37792
|
+
created_at: string
|
|
37653
37793
|
}[]
|
|
37654
37794
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
37655
37795
|
warnings: (
|
|
@@ -37830,6 +37970,8 @@ export type Routes = {
|
|
|
37830
37970
|
errors: {
|
|
37831
37971
|
error_code: string
|
|
37832
37972
|
message: string
|
|
37973
|
+
/** Date and time at which Seam created the error. */
|
|
37974
|
+
created_at: string
|
|
37833
37975
|
}[]
|
|
37834
37976
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
37835
37977
|
warnings: (
|
|
@@ -38085,6 +38227,8 @@ export type Routes = {
|
|
|
38085
38227
|
errors: {
|
|
38086
38228
|
error_code: string
|
|
38087
38229
|
message: string
|
|
38230
|
+
/** Date and time at which Seam created the error. */
|
|
38231
|
+
created_at: string
|
|
38088
38232
|
}[]
|
|
38089
38233
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
38090
38234
|
warnings: (
|
|
@@ -38261,6 +38405,8 @@ export type Routes = {
|
|
|
38261
38405
|
errors: {
|
|
38262
38406
|
error_code: string
|
|
38263
38407
|
message: string
|
|
38408
|
+
/** Date and time at which Seam created the error. */
|
|
38409
|
+
created_at: string
|
|
38264
38410
|
}[]
|
|
38265
38411
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
38266
38412
|
warnings: (
|
|
@@ -38527,6 +38673,8 @@ export type Routes = {
|
|
|
38527
38673
|
errors: {
|
|
38528
38674
|
error_code: string
|
|
38529
38675
|
message: string
|
|
38676
|
+
/** Date and time at which Seam created the error. */
|
|
38677
|
+
created_at: string
|
|
38530
38678
|
}[]
|
|
38531
38679
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
38532
38680
|
warnings: (
|
|
@@ -41148,6 +41296,8 @@ export type Routes = {
|
|
|
41148
41296
|
error_code: string
|
|
41149
41297
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
41150
41298
|
message: string
|
|
41299
|
+
/** Date and time at which Seam created the error. */
|
|
41300
|
+
created_at: string
|
|
41151
41301
|
}[]
|
|
41152
41302
|
/** Warnings associated with the [entrance](https://docs.seam.co/low-level-apis/access-systems/retrieving-entrance-details). */
|
|
41153
41303
|
warnings: (
|
|
@@ -42336,6 +42486,8 @@ export type Routes = {
|
|
|
42336
42486
|
errors: {
|
|
42337
42487
|
error_code: string
|
|
42338
42488
|
message: string
|
|
42489
|
+
/** Date and time at which Seam created the error. */
|
|
42490
|
+
created_at: string
|
|
42339
42491
|
}[]
|
|
42340
42492
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
42341
42493
|
warnings: (
|
|
@@ -42516,6 +42668,8 @@ export type Routes = {
|
|
|
42516
42668
|
errors: {
|
|
42517
42669
|
error_code: string
|
|
42518
42670
|
message: string
|
|
42671
|
+
/** Date and time at which Seam created the error. */
|
|
42672
|
+
created_at: string
|
|
42519
42673
|
}[]
|
|
42520
42674
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
42521
42675
|
warnings: (
|
|
@@ -42771,6 +42925,8 @@ export type Routes = {
|
|
|
42771
42925
|
errors: {
|
|
42772
42926
|
error_code: string
|
|
42773
42927
|
message: string
|
|
42928
|
+
/** Date and time at which Seam created the error. */
|
|
42929
|
+
created_at: string
|
|
42774
42930
|
}[]
|
|
42775
42931
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
42776
42932
|
warnings: (
|
|
@@ -42947,6 +43103,8 @@ export type Routes = {
|
|
|
42947
43103
|
errors: {
|
|
42948
43104
|
error_code: string
|
|
42949
43105
|
message: string
|
|
43106
|
+
/** Date and time at which Seam created the error. */
|
|
43107
|
+
created_at: string
|
|
42950
43108
|
}[]
|
|
42951
43109
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
42952
43110
|
warnings: (
|
|
@@ -43213,6 +43371,8 @@ export type Routes = {
|
|
|
43213
43371
|
errors: {
|
|
43214
43372
|
error_code: string
|
|
43215
43373
|
message: string
|
|
43374
|
+
/** Date and time at which Seam created the error. */
|
|
43375
|
+
created_at: string
|
|
43216
43376
|
}[]
|
|
43217
43377
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
43218
43378
|
warnings: (
|
|
@@ -44361,6 +44521,8 @@ export type Routes = {
|
|
|
44361
44521
|
errors: {
|
|
44362
44522
|
error_code: string
|
|
44363
44523
|
message: string
|
|
44524
|
+
/** Date and time at which Seam created the error. */
|
|
44525
|
+
created_at: string
|
|
44364
44526
|
}[]
|
|
44365
44527
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
44366
44528
|
warnings: (
|
|
@@ -44541,6 +44703,8 @@ export type Routes = {
|
|
|
44541
44703
|
errors: {
|
|
44542
44704
|
error_code: string
|
|
44543
44705
|
message: string
|
|
44706
|
+
/** Date and time at which Seam created the error. */
|
|
44707
|
+
created_at: string
|
|
44544
44708
|
}[]
|
|
44545
44709
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
44546
44710
|
warnings: (
|
|
@@ -44796,6 +44960,8 @@ export type Routes = {
|
|
|
44796
44960
|
errors: {
|
|
44797
44961
|
error_code: string
|
|
44798
44962
|
message: string
|
|
44963
|
+
/** Date and time at which Seam created the error. */
|
|
44964
|
+
created_at: string
|
|
44799
44965
|
}[]
|
|
44800
44966
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
44801
44967
|
warnings: (
|
|
@@ -44972,6 +45138,8 @@ export type Routes = {
|
|
|
44972
45138
|
errors: {
|
|
44973
45139
|
error_code: string
|
|
44974
45140
|
message: string
|
|
45141
|
+
/** Date and time at which Seam created the error. */
|
|
45142
|
+
created_at: string
|
|
44975
45143
|
}[]
|
|
44976
45144
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
44977
45145
|
warnings: (
|
|
@@ -45238,6 +45406,8 @@ export type Routes = {
|
|
|
45238
45406
|
errors: {
|
|
45239
45407
|
error_code: string
|
|
45240
45408
|
message: string
|
|
45409
|
+
/** Date and time at which Seam created the error. */
|
|
45410
|
+
created_at: string
|
|
45241
45411
|
}[]
|
|
45242
45412
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
45243
45413
|
warnings: (
|
|
@@ -49998,6 +50168,8 @@ export type Routes = {
|
|
|
49998
50168
|
error_code: string
|
|
49999
50169
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
50000
50170
|
message: string
|
|
50171
|
+
/** Date and time at which Seam created the error. */
|
|
50172
|
+
created_at: string
|
|
50001
50173
|
}[]
|
|
50002
50174
|
} | null)
|
|
50003
50175
|
| undefined
|
|
@@ -52085,6 +52257,8 @@ export type Routes = {
|
|
|
52085
52257
|
error_code: string
|
|
52086
52258
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
52087
52259
|
message: string
|
|
52260
|
+
/** Date and time at which Seam created the error. */
|
|
52261
|
+
created_at: string
|
|
52088
52262
|
}[]
|
|
52089
52263
|
} | null)
|
|
52090
52264
|
| undefined
|
|
@@ -63613,6 +63787,8 @@ export type Routes = {
|
|
|
63613
63787
|
errors: {
|
|
63614
63788
|
error_code: string
|
|
63615
63789
|
message: string
|
|
63790
|
+
/** Date and time at which Seam created the error. */
|
|
63791
|
+
created_at: string
|
|
63616
63792
|
}[]
|
|
63617
63793
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
63618
63794
|
warnings: (
|
|
@@ -63793,6 +63969,8 @@ export type Routes = {
|
|
|
63793
63969
|
errors: {
|
|
63794
63970
|
error_code: string
|
|
63795
63971
|
message: string
|
|
63972
|
+
/** Date and time at which Seam created the error. */
|
|
63973
|
+
created_at: string
|
|
63796
63974
|
}[]
|
|
63797
63975
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
63798
63976
|
warnings: (
|
|
@@ -64048,6 +64226,8 @@ export type Routes = {
|
|
|
64048
64226
|
errors: {
|
|
64049
64227
|
error_code: string
|
|
64050
64228
|
message: string
|
|
64229
|
+
/** Date and time at which Seam created the error. */
|
|
64230
|
+
created_at: string
|
|
64051
64231
|
}[]
|
|
64052
64232
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
64053
64233
|
warnings: (
|
|
@@ -64224,6 +64404,8 @@ export type Routes = {
|
|
|
64224
64404
|
errors: {
|
|
64225
64405
|
error_code: string
|
|
64226
64406
|
message: string
|
|
64407
|
+
/** Date and time at which Seam created the error. */
|
|
64408
|
+
created_at: string
|
|
64227
64409
|
}[]
|
|
64228
64410
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
64229
64411
|
warnings: (
|
|
@@ -64490,6 +64672,8 @@ export type Routes = {
|
|
|
64490
64672
|
errors: {
|
|
64491
64673
|
error_code: string
|
|
64492
64674
|
message: string
|
|
64675
|
+
/** Date and time at which Seam created the error. */
|
|
64676
|
+
created_at: string
|
|
64493
64677
|
}[]
|
|
64494
64678
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
64495
64679
|
warnings: (
|
|
@@ -66685,6 +66869,8 @@ export type Routes = {
|
|
|
66685
66869
|
error_code: string
|
|
66686
66870
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
66687
66871
|
message: string
|
|
66872
|
+
/** Date and time at which Seam created the error. */
|
|
66873
|
+
created_at: string
|
|
66688
66874
|
}[]
|
|
66689
66875
|
} | null)
|
|
66690
66876
|
| undefined
|
|
@@ -68528,6 +68714,8 @@ export type Routes = {
|
|
|
68528
68714
|
error_code: string
|
|
68529
68715
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
68530
68716
|
message: string
|
|
68717
|
+
/** Date and time at which Seam created the error. */
|
|
68718
|
+
created_at: string
|
|
68531
68719
|
}[]
|
|
68532
68720
|
} | null)
|
|
68533
68721
|
| undefined
|
|
@@ -70568,6 +70756,8 @@ export type Routes = {
|
|
|
70568
70756
|
error_code: string
|
|
70569
70757
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
70570
70758
|
message: string
|
|
70759
|
+
/** Date and time at which Seam created the error. */
|
|
70760
|
+
created_at: string
|
|
70571
70761
|
}[]
|
|
70572
70762
|
} | null)
|
|
70573
70763
|
| undefined
|
|
@@ -72410,6 +72600,8 @@ export type Routes = {
|
|
|
72410
72600
|
error_code: string
|
|
72411
72601
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
72412
72602
|
message: string
|
|
72603
|
+
/** Date and time at which Seam created the error. */
|
|
72604
|
+
created_at: string
|
|
72413
72605
|
}[]
|
|
72414
72606
|
} | null)
|
|
72415
72607
|
| undefined
|
|
@@ -73223,6 +73415,8 @@ export type Routes = {
|
|
|
73223
73415
|
errors: {
|
|
73224
73416
|
error_code: string
|
|
73225
73417
|
message: string
|
|
73418
|
+
/** Date and time at which Seam created the error. */
|
|
73419
|
+
created_at: string
|
|
73226
73420
|
}[]
|
|
73227
73421
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
73228
73422
|
warnings: (
|
|
@@ -73403,6 +73597,8 @@ export type Routes = {
|
|
|
73403
73597
|
errors: {
|
|
73404
73598
|
error_code: string
|
|
73405
73599
|
message: string
|
|
73600
|
+
/** Date and time at which Seam created the error. */
|
|
73601
|
+
created_at: string
|
|
73406
73602
|
}[]
|
|
73407
73603
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
73408
73604
|
warnings: (
|
|
@@ -73658,6 +73854,8 @@ export type Routes = {
|
|
|
73658
73854
|
errors: {
|
|
73659
73855
|
error_code: string
|
|
73660
73856
|
message: string
|
|
73857
|
+
/** Date and time at which Seam created the error. */
|
|
73858
|
+
created_at: string
|
|
73661
73859
|
}[]
|
|
73662
73860
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
73663
73861
|
warnings: (
|
|
@@ -73834,6 +74032,8 @@ export type Routes = {
|
|
|
73834
74032
|
errors: {
|
|
73835
74033
|
error_code: string
|
|
73836
74034
|
message: string
|
|
74035
|
+
/** Date and time at which Seam created the error. */
|
|
74036
|
+
created_at: string
|
|
73837
74037
|
}[]
|
|
73838
74038
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
73839
74039
|
warnings: (
|
|
@@ -74100,6 +74300,8 @@ export type Routes = {
|
|
|
74100
74300
|
errors: {
|
|
74101
74301
|
error_code: string
|
|
74102
74302
|
message: string
|
|
74303
|
+
/** Date and time at which Seam created the error. */
|
|
74304
|
+
created_at: string
|
|
74103
74305
|
}[]
|
|
74104
74306
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
74105
74307
|
warnings: (
|
|
@@ -75249,6 +75451,8 @@ export type Routes = {
|
|
|
75249
75451
|
errors: {
|
|
75250
75452
|
error_code: string
|
|
75251
75453
|
message: string
|
|
75454
|
+
/** Date and time at which Seam created the error. */
|
|
75455
|
+
created_at: string
|
|
75252
75456
|
}[]
|
|
75253
75457
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
75254
75458
|
warnings: (
|
|
@@ -75429,6 +75633,8 @@ export type Routes = {
|
|
|
75429
75633
|
errors: {
|
|
75430
75634
|
error_code: string
|
|
75431
75635
|
message: string
|
|
75636
|
+
/** Date and time at which Seam created the error. */
|
|
75637
|
+
created_at: string
|
|
75432
75638
|
}[]
|
|
75433
75639
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
75434
75640
|
warnings: (
|
|
@@ -75684,6 +75890,8 @@ export type Routes = {
|
|
|
75684
75890
|
errors: {
|
|
75685
75891
|
error_code: string
|
|
75686
75892
|
message: string
|
|
75893
|
+
/** Date and time at which Seam created the error. */
|
|
75894
|
+
created_at: string
|
|
75687
75895
|
}[]
|
|
75688
75896
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
75689
75897
|
warnings: (
|
|
@@ -75860,6 +76068,8 @@ export type Routes = {
|
|
|
75860
76068
|
errors: {
|
|
75861
76069
|
error_code: string
|
|
75862
76070
|
message: string
|
|
76071
|
+
/** Date and time at which Seam created the error. */
|
|
76072
|
+
created_at: string
|
|
75863
76073
|
}[]
|
|
75864
76074
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
75865
76075
|
warnings: (
|
|
@@ -76126,6 +76336,8 @@ export type Routes = {
|
|
|
76126
76336
|
errors: {
|
|
76127
76337
|
error_code: string
|
|
76128
76338
|
message: string
|
|
76339
|
+
/** Date and time at which Seam created the error. */
|
|
76340
|
+
created_at: string
|
|
76129
76341
|
}[]
|
|
76130
76342
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
76131
76343
|
warnings: (
|
|
@@ -77273,6 +77485,8 @@ export type Routes = {
|
|
|
77273
77485
|
errors: {
|
|
77274
77486
|
error_code: string
|
|
77275
77487
|
message: string
|
|
77488
|
+
/** Date and time at which Seam created the error. */
|
|
77489
|
+
created_at: string
|
|
77276
77490
|
}[]
|
|
77277
77491
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
77278
77492
|
warnings: (
|
|
@@ -77453,6 +77667,8 @@ export type Routes = {
|
|
|
77453
77667
|
errors: {
|
|
77454
77668
|
error_code: string
|
|
77455
77669
|
message: string
|
|
77670
|
+
/** Date and time at which Seam created the error. */
|
|
77671
|
+
created_at: string
|
|
77456
77672
|
}[]
|
|
77457
77673
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
77458
77674
|
warnings: (
|
|
@@ -77708,6 +77924,8 @@ export type Routes = {
|
|
|
77708
77924
|
errors: {
|
|
77709
77925
|
error_code: string
|
|
77710
77926
|
message: string
|
|
77927
|
+
/** Date and time at which Seam created the error. */
|
|
77928
|
+
created_at: string
|
|
77711
77929
|
}[]
|
|
77712
77930
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
77713
77931
|
warnings: (
|
|
@@ -77884,6 +78102,8 @@ export type Routes = {
|
|
|
77884
78102
|
errors: {
|
|
77885
78103
|
error_code: string
|
|
77886
78104
|
message: string
|
|
78105
|
+
/** Date and time at which Seam created the error. */
|
|
78106
|
+
created_at: string
|
|
77887
78107
|
}[]
|
|
77888
78108
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
77889
78109
|
warnings: (
|
|
@@ -78150,6 +78370,8 @@ export type Routes = {
|
|
|
78150
78370
|
errors: {
|
|
78151
78371
|
error_code: string
|
|
78152
78372
|
message: string
|
|
78373
|
+
/** Date and time at which Seam created the error. */
|
|
78374
|
+
created_at: string
|
|
78153
78375
|
}[]
|
|
78154
78376
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
78155
78377
|
warnings: (
|
|
@@ -79299,6 +79521,8 @@ export type Routes = {
|
|
|
79299
79521
|
errors: {
|
|
79300
79522
|
error_code: string
|
|
79301
79523
|
message: string
|
|
79524
|
+
/** Date and time at which Seam created the error. */
|
|
79525
|
+
created_at: string
|
|
79302
79526
|
}[]
|
|
79303
79527
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
79304
79528
|
warnings: (
|
|
@@ -79479,6 +79703,8 @@ export type Routes = {
|
|
|
79479
79703
|
errors: {
|
|
79480
79704
|
error_code: string
|
|
79481
79705
|
message: string
|
|
79706
|
+
/** Date and time at which Seam created the error. */
|
|
79707
|
+
created_at: string
|
|
79482
79708
|
}[]
|
|
79483
79709
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
79484
79710
|
warnings: (
|
|
@@ -79734,6 +79960,8 @@ export type Routes = {
|
|
|
79734
79960
|
errors: {
|
|
79735
79961
|
error_code: string
|
|
79736
79962
|
message: string
|
|
79963
|
+
/** Date and time at which Seam created the error. */
|
|
79964
|
+
created_at: string
|
|
79737
79965
|
}[]
|
|
79738
79966
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
79739
79967
|
warnings: (
|
|
@@ -79910,6 +80138,8 @@ export type Routes = {
|
|
|
79910
80138
|
errors: {
|
|
79911
80139
|
error_code: string
|
|
79912
80140
|
message: string
|
|
80141
|
+
/** Date and time at which Seam created the error. */
|
|
80142
|
+
created_at: string
|
|
79913
80143
|
}[]
|
|
79914
80144
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
79915
80145
|
warnings: (
|
|
@@ -80176,6 +80406,8 @@ export type Routes = {
|
|
|
80176
80406
|
errors: {
|
|
80177
80407
|
error_code: string
|
|
80178
80408
|
message: string
|
|
80409
|
+
/** Date and time at which Seam created the error. */
|
|
80410
|
+
created_at: string
|
|
80179
80411
|
}[]
|
|
80180
80412
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
80181
80413
|
warnings: (
|
|
@@ -82453,6 +82685,8 @@ export type Routes = {
|
|
|
82453
82685
|
error_code: string
|
|
82454
82686
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
82455
82687
|
message: string
|
|
82688
|
+
/** Date and time at which Seam created the error. */
|
|
82689
|
+
created_at: string
|
|
82456
82690
|
}[]
|
|
82457
82691
|
} | null)
|
|
82458
82692
|
| undefined
|
|
@@ -84295,6 +84529,8 @@ export type Routes = {
|
|
|
84295
84529
|
error_code: string
|
|
84296
84530
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
84297
84531
|
message: string
|
|
84532
|
+
/** Date and time at which Seam created the error. */
|
|
84533
|
+
created_at: string
|
|
84298
84534
|
}[]
|
|
84299
84535
|
} | null)
|
|
84300
84536
|
| undefined
|
|
@@ -85118,6 +85354,8 @@ export type Routes = {
|
|
|
85118
85354
|
errors: {
|
|
85119
85355
|
error_code: string
|
|
85120
85356
|
message: string
|
|
85357
|
+
/** Date and time at which Seam created the error. */
|
|
85358
|
+
created_at: string
|
|
85121
85359
|
}[]
|
|
85122
85360
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
85123
85361
|
warnings: (
|
|
@@ -85298,6 +85536,8 @@ export type Routes = {
|
|
|
85298
85536
|
errors: {
|
|
85299
85537
|
error_code: string
|
|
85300
85538
|
message: string
|
|
85539
|
+
/** Date and time at which Seam created the error. */
|
|
85540
|
+
created_at: string
|
|
85301
85541
|
}[]
|
|
85302
85542
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
85303
85543
|
warnings: (
|
|
@@ -85553,6 +85793,8 @@ export type Routes = {
|
|
|
85553
85793
|
errors: {
|
|
85554
85794
|
error_code: string
|
|
85555
85795
|
message: string
|
|
85796
|
+
/** Date and time at which Seam created the error. */
|
|
85797
|
+
created_at: string
|
|
85556
85798
|
}[]
|
|
85557
85799
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
85558
85800
|
warnings: (
|
|
@@ -85729,6 +85971,8 @@ export type Routes = {
|
|
|
85729
85971
|
errors: {
|
|
85730
85972
|
error_code: string
|
|
85731
85973
|
message: string
|
|
85974
|
+
/** Date and time at which Seam created the error. */
|
|
85975
|
+
created_at: string
|
|
85732
85976
|
}[]
|
|
85733
85977
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
85734
85978
|
warnings: (
|
|
@@ -85995,6 +86239,8 @@ export type Routes = {
|
|
|
85995
86239
|
errors: {
|
|
85996
86240
|
error_code: string
|
|
85997
86241
|
message: string
|
|
86242
|
+
/** Date and time at which Seam created the error. */
|
|
86243
|
+
created_at: string
|
|
85998
86244
|
}[]
|
|
85999
86245
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
86000
86246
|
warnings: (
|
|
@@ -87163,6 +87409,8 @@ export type Routes = {
|
|
|
87163
87409
|
errors: {
|
|
87164
87410
|
error_code: string
|
|
87165
87411
|
message: string
|
|
87412
|
+
/** Date and time at which Seam created the error. */
|
|
87413
|
+
created_at: string
|
|
87166
87414
|
}[]
|
|
87167
87415
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
87168
87416
|
warnings: (
|
|
@@ -87343,6 +87591,8 @@ export type Routes = {
|
|
|
87343
87591
|
errors: {
|
|
87344
87592
|
error_code: string
|
|
87345
87593
|
message: string
|
|
87594
|
+
/** Date and time at which Seam created the error. */
|
|
87595
|
+
created_at: string
|
|
87346
87596
|
}[]
|
|
87347
87597
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
87348
87598
|
warnings: (
|
|
@@ -87598,6 +87848,8 @@ export type Routes = {
|
|
|
87598
87848
|
errors: {
|
|
87599
87849
|
error_code: string
|
|
87600
87850
|
message: string
|
|
87851
|
+
/** Date and time at which Seam created the error. */
|
|
87852
|
+
created_at: string
|
|
87601
87853
|
}[]
|
|
87602
87854
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
87603
87855
|
warnings: (
|
|
@@ -87774,6 +88026,8 @@ export type Routes = {
|
|
|
87774
88026
|
errors: {
|
|
87775
88027
|
error_code: string
|
|
87776
88028
|
message: string
|
|
88029
|
+
/** Date and time at which Seam created the error. */
|
|
88030
|
+
created_at: string
|
|
87777
88031
|
}[]
|
|
87778
88032
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
87779
88033
|
warnings: (
|
|
@@ -88040,6 +88294,8 @@ export type Routes = {
|
|
|
88040
88294
|
errors: {
|
|
88041
88295
|
error_code: string
|
|
88042
88296
|
message: string
|
|
88297
|
+
/** Date and time at which Seam created the error. */
|
|
88298
|
+
created_at: string
|
|
88043
88299
|
}[]
|
|
88044
88300
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
88045
88301
|
warnings: (
|
|
@@ -89264,6 +89520,8 @@ export type Routes = {
|
|
|
89264
89520
|
errors: {
|
|
89265
89521
|
error_code: string
|
|
89266
89522
|
message: string
|
|
89523
|
+
/** Date and time at which Seam created the error. */
|
|
89524
|
+
created_at: string
|
|
89267
89525
|
}[]
|
|
89268
89526
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
89269
89527
|
warnings: (
|
|
@@ -89444,6 +89702,8 @@ export type Routes = {
|
|
|
89444
89702
|
errors: {
|
|
89445
89703
|
error_code: string
|
|
89446
89704
|
message: string
|
|
89705
|
+
/** Date and time at which Seam created the error. */
|
|
89706
|
+
created_at: string
|
|
89447
89707
|
}[]
|
|
89448
89708
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
89449
89709
|
warnings: (
|
|
@@ -89699,6 +89959,8 @@ export type Routes = {
|
|
|
89699
89959
|
errors: {
|
|
89700
89960
|
error_code: string
|
|
89701
89961
|
message: string
|
|
89962
|
+
/** Date and time at which Seam created the error. */
|
|
89963
|
+
created_at: string
|
|
89702
89964
|
}[]
|
|
89703
89965
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
89704
89966
|
warnings: (
|
|
@@ -89875,6 +90137,8 @@ export type Routes = {
|
|
|
89875
90137
|
errors: {
|
|
89876
90138
|
error_code: string
|
|
89877
90139
|
message: string
|
|
90140
|
+
/** Date and time at which Seam created the error. */
|
|
90141
|
+
created_at: string
|
|
89878
90142
|
}[]
|
|
89879
90143
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
89880
90144
|
warnings: (
|
|
@@ -90141,6 +90405,8 @@ export type Routes = {
|
|
|
90141
90405
|
errors: {
|
|
90142
90406
|
error_code: string
|
|
90143
90407
|
message: string
|
|
90408
|
+
/** Date and time at which Seam created the error. */
|
|
90409
|
+
created_at: string
|
|
90144
90410
|
}[]
|
|
90145
90411
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
90146
90412
|
warnings: (
|
|
@@ -91117,6 +91383,8 @@ export type Routes = {
|
|
|
91117
91383
|
error_code: string
|
|
91118
91384
|
/** Detailed description of the error. */
|
|
91119
91385
|
message: string
|
|
91386
|
+
/** Date and time at which Seam created the error. */
|
|
91387
|
+
created_at: string
|
|
91120
91388
|
}[]
|
|
91121
91389
|
/** Warnings associated with the phone. */
|
|
91122
91390
|
warnings: {
|
|
@@ -91124,6 +91392,8 @@ export type Routes = {
|
|
|
91124
91392
|
warning_code: string
|
|
91125
91393
|
/** Detailed description of the warning. */
|
|
91126
91394
|
message: string
|
|
91395
|
+
/** Date and time at which Seam created the warning. */
|
|
91396
|
+
created_at: string
|
|
91127
91397
|
}[]
|
|
91128
91398
|
/** Type of the phone device, such as `ios_phone` or `android_phone`. */
|
|
91129
91399
|
device_type: 'ios_phone' | 'android_phone'
|
|
@@ -91200,6 +91470,8 @@ export type Routes = {
|
|
|
91200
91470
|
error_code: string
|
|
91201
91471
|
/** Detailed description of the error. */
|
|
91202
91472
|
message: string
|
|
91473
|
+
/** Date and time at which Seam created the error. */
|
|
91474
|
+
created_at: string
|
|
91203
91475
|
}[]
|
|
91204
91476
|
/** Warnings associated with the phone. */
|
|
91205
91477
|
warnings: {
|
|
@@ -91207,6 +91479,8 @@ export type Routes = {
|
|
|
91207
91479
|
warning_code: string
|
|
91208
91480
|
/** Detailed description of the warning. */
|
|
91209
91481
|
message: string
|
|
91482
|
+
/** Date and time at which Seam created the warning. */
|
|
91483
|
+
created_at: string
|
|
91210
91484
|
}[]
|
|
91211
91485
|
/** Type of the phone device, such as `ios_phone` or `android_phone`. */
|
|
91212
91486
|
device_type: 'ios_phone' | 'android_phone'
|
|
@@ -91310,6 +91584,8 @@ export type Routes = {
|
|
|
91310
91584
|
error_code: string
|
|
91311
91585
|
/** Detailed description of the error. */
|
|
91312
91586
|
message: string
|
|
91587
|
+
/** Date and time at which Seam created the error. */
|
|
91588
|
+
created_at: string
|
|
91313
91589
|
}[]
|
|
91314
91590
|
/** Warnings associated with the phone. */
|
|
91315
91591
|
warnings: {
|
|
@@ -91317,6 +91593,8 @@ export type Routes = {
|
|
|
91317
91593
|
warning_code: string
|
|
91318
91594
|
/** Detailed description of the warning. */
|
|
91319
91595
|
message: string
|
|
91596
|
+
/** Date and time at which Seam created the warning. */
|
|
91597
|
+
created_at: string
|
|
91320
91598
|
}[]
|
|
91321
91599
|
/** Type of the phone device, such as `ios_phone` or `android_phone`. */
|
|
91322
91600
|
device_type: 'ios_phone' | 'android_phone'
|
|
@@ -93263,6 +93541,8 @@ export type Routes = {
|
|
|
93263
93541
|
errors: {
|
|
93264
93542
|
error_code: string
|
|
93265
93543
|
message: string
|
|
93544
|
+
/** Date and time at which Seam created the error. */
|
|
93545
|
+
created_at: string
|
|
93266
93546
|
}[]
|
|
93267
93547
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
93268
93548
|
warnings: (
|
|
@@ -93443,6 +93723,8 @@ export type Routes = {
|
|
|
93443
93723
|
errors: {
|
|
93444
93724
|
error_code: string
|
|
93445
93725
|
message: string
|
|
93726
|
+
/** Date and time at which Seam created the error. */
|
|
93727
|
+
created_at: string
|
|
93446
93728
|
}[]
|
|
93447
93729
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
93448
93730
|
warnings: (
|
|
@@ -93698,6 +93980,8 @@ export type Routes = {
|
|
|
93698
93980
|
errors: {
|
|
93699
93981
|
error_code: string
|
|
93700
93982
|
message: string
|
|
93983
|
+
/** Date and time at which Seam created the error. */
|
|
93984
|
+
created_at: string
|
|
93701
93985
|
}[]
|
|
93702
93986
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
93703
93987
|
warnings: (
|
|
@@ -93874,6 +94158,8 @@ export type Routes = {
|
|
|
93874
94158
|
errors: {
|
|
93875
94159
|
error_code: string
|
|
93876
94160
|
message: string
|
|
94161
|
+
/** Date and time at which Seam created the error. */
|
|
94162
|
+
created_at: string
|
|
93877
94163
|
}[]
|
|
93878
94164
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
93879
94165
|
warnings: (
|
|
@@ -94140,6 +94426,8 @@ export type Routes = {
|
|
|
94140
94426
|
errors: {
|
|
94141
94427
|
error_code: string
|
|
94142
94428
|
message: string
|
|
94429
|
+
/** Date and time at which Seam created the error. */
|
|
94430
|
+
created_at: string
|
|
94143
94431
|
}[]
|
|
94144
94432
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
94145
94433
|
warnings: (
|
|
@@ -101422,6 +101710,32 @@ export type Routes = {
|
|
|
101422
101710
|
}
|
|
101423
101711
|
maxDuration: undefined
|
|
101424
101712
|
}
|
|
101713
|
+
'/seam/mcp/v1/create_ro_token': {
|
|
101714
|
+
route: '/seam/mcp/v1/create_ro_token'
|
|
101715
|
+
method: 'POST'
|
|
101716
|
+
queryParams: {}
|
|
101717
|
+
jsonBody: {
|
|
101718
|
+
/** ID of the workspace the token will be bound to. */
|
|
101719
|
+
workspace_id: string
|
|
101720
|
+
/** Identity of the automation minting the token (e.g. an agent session ID), recorded for auditing. */
|
|
101721
|
+
created_by?: string | undefined
|
|
101722
|
+
}
|
|
101723
|
+
commonParams: {}
|
|
101724
|
+
formData: {}
|
|
101725
|
+
jsonResponse: {
|
|
101726
|
+
support_read_only_token: {
|
|
101727
|
+
/** Support read-only token to use as a Bearer token. */
|
|
101728
|
+
token: string
|
|
101729
|
+
/** ID of the workspace the token is bound to. */
|
|
101730
|
+
workspace_id: string
|
|
101731
|
+
/** Date and time at which the token was created. */
|
|
101732
|
+
created_at: string
|
|
101733
|
+
/** Date and time at which the token expires. Tokens live for one hour. */
|
|
101734
|
+
expires_at: string
|
|
101735
|
+
}
|
|
101736
|
+
}
|
|
101737
|
+
maxDuration: undefined
|
|
101738
|
+
}
|
|
101425
101739
|
'/seam/mobile_sdk/v1/acs/credentials/list': {
|
|
101426
101740
|
route: '/seam/mobile_sdk/v1/acs/credentials/list'
|
|
101427
101741
|
method: 'GET' | 'POST'
|
|
@@ -101491,6 +101805,8 @@ export type Routes = {
|
|
|
101491
101805
|
errors: {
|
|
101492
101806
|
error_code: string
|
|
101493
101807
|
message: string
|
|
101808
|
+
/** Date and time at which Seam created the error. */
|
|
101809
|
+
created_at: string
|
|
101494
101810
|
}[]
|
|
101495
101811
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
101496
101812
|
warnings: (
|
|
@@ -101695,6 +102011,8 @@ export type Routes = {
|
|
|
101695
102011
|
errors: {
|
|
101696
102012
|
error_code: string
|
|
101697
102013
|
message: string
|
|
102014
|
+
/** Date and time at which Seam created the error. */
|
|
102015
|
+
created_at: string
|
|
101698
102016
|
}[]
|
|
101699
102017
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
101700
102018
|
warnings: (
|
|
@@ -101821,6 +102139,8 @@ export type Routes = {
|
|
|
101821
102139
|
error_code: string
|
|
101822
102140
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
101823
102141
|
message: string
|
|
102142
|
+
/** Date and time at which Seam created the error. */
|
|
102143
|
+
created_at: string
|
|
101824
102144
|
}[]
|
|
101825
102145
|
/** Warnings associated with the [entrance](https://docs.seam.co/low-level-apis/access-systems/retrieving-entrance-details). */
|
|
101826
102146
|
warnings: (
|
|
@@ -103807,6 +104127,8 @@ export type Routes = {
|
|
|
103807
104127
|
error_code: string
|
|
103808
104128
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
103809
104129
|
message: string
|
|
104130
|
+
/** Date and time at which Seam created the error. */
|
|
104131
|
+
created_at: string
|
|
103810
104132
|
}[]
|
|
103811
104133
|
} | null)
|
|
103812
104134
|
| undefined
|
|
@@ -104404,6 +104726,8 @@ export type Routes = {
|
|
|
104404
104726
|
error_code: string
|
|
104405
104727
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
104406
104728
|
message: string
|
|
104729
|
+
/** Date and time at which Seam created the error. */
|
|
104730
|
+
created_at: string
|
|
104407
104731
|
}[]
|
|
104408
104732
|
/** Warnings associated with the [entrance](https://docs.seam.co/low-level-apis/access-systems/retrieving-entrance-details). */
|
|
104409
104733
|
warnings: (
|
|
@@ -105642,6 +105966,8 @@ export type Routes = {
|
|
|
105642
105966
|
errors: {
|
|
105643
105967
|
error_code: string
|
|
105644
105968
|
message: string
|
|
105969
|
+
/** Date and time at which Seam created the error. */
|
|
105970
|
+
created_at: string
|
|
105645
105971
|
}[]
|
|
105646
105972
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
105647
105973
|
warnings: (
|
|
@@ -105822,6 +106148,8 @@ export type Routes = {
|
|
|
105822
106148
|
errors: {
|
|
105823
106149
|
error_code: string
|
|
105824
106150
|
message: string
|
|
106151
|
+
/** Date and time at which Seam created the error. */
|
|
106152
|
+
created_at: string
|
|
105825
106153
|
}[]
|
|
105826
106154
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
105827
106155
|
warnings: (
|
|
@@ -106077,6 +106405,8 @@ export type Routes = {
|
|
|
106077
106405
|
errors: {
|
|
106078
106406
|
error_code: string
|
|
106079
106407
|
message: string
|
|
106408
|
+
/** Date and time at which Seam created the error. */
|
|
106409
|
+
created_at: string
|
|
106080
106410
|
}[]
|
|
106081
106411
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
106082
106412
|
warnings: (
|
|
@@ -106253,6 +106583,8 @@ export type Routes = {
|
|
|
106253
106583
|
errors: {
|
|
106254
106584
|
error_code: string
|
|
106255
106585
|
message: string
|
|
106586
|
+
/** Date and time at which Seam created the error. */
|
|
106587
|
+
created_at: string
|
|
106256
106588
|
}[]
|
|
106257
106589
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
106258
106590
|
warnings: (
|
|
@@ -106519,6 +106851,8 @@ export type Routes = {
|
|
|
106519
106851
|
errors: {
|
|
106520
106852
|
error_code: string
|
|
106521
106853
|
message: string
|
|
106854
|
+
/** Date and time at which Seam created the error. */
|
|
106855
|
+
created_at: string
|
|
106522
106856
|
}[]
|
|
106523
106857
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
106524
106858
|
warnings: (
|
|
@@ -107672,6 +108006,8 @@ export type Routes = {
|
|
|
107672
108006
|
errors: {
|
|
107673
108007
|
error_code: string
|
|
107674
108008
|
message: string
|
|
108009
|
+
/** Date and time at which Seam created the error. */
|
|
108010
|
+
created_at: string
|
|
107675
108011
|
}[]
|
|
107676
108012
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
107677
108013
|
warnings: (
|
|
@@ -107852,6 +108188,8 @@ export type Routes = {
|
|
|
107852
108188
|
errors: {
|
|
107853
108189
|
error_code: string
|
|
107854
108190
|
message: string
|
|
108191
|
+
/** Date and time at which Seam created the error. */
|
|
108192
|
+
created_at: string
|
|
107855
108193
|
}[]
|
|
107856
108194
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
107857
108195
|
warnings: (
|
|
@@ -108107,6 +108445,8 @@ export type Routes = {
|
|
|
108107
108445
|
errors: {
|
|
108108
108446
|
error_code: string
|
|
108109
108447
|
message: string
|
|
108448
|
+
/** Date and time at which Seam created the error. */
|
|
108449
|
+
created_at: string
|
|
108110
108450
|
}[]
|
|
108111
108451
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
108112
108452
|
warnings: (
|
|
@@ -108283,6 +108623,8 @@ export type Routes = {
|
|
|
108283
108623
|
errors: {
|
|
108284
108624
|
error_code: string
|
|
108285
108625
|
message: string
|
|
108626
|
+
/** Date and time at which Seam created the error. */
|
|
108627
|
+
created_at: string
|
|
108286
108628
|
}[]
|
|
108287
108629
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
108288
108630
|
warnings: (
|
|
@@ -108549,6 +108891,8 @@ export type Routes = {
|
|
|
108549
108891
|
errors: {
|
|
108550
108892
|
error_code: string
|
|
108551
108893
|
message: string
|
|
108894
|
+
/** Date and time at which Seam created the error. */
|
|
108895
|
+
created_at: string
|
|
108552
108896
|
}[]
|
|
108553
108897
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
108554
108898
|
warnings: (
|
|
@@ -109814,6 +110158,8 @@ export type Routes = {
|
|
|
109814
110158
|
errors: {
|
|
109815
110159
|
error_code: string
|
|
109816
110160
|
message: string
|
|
110161
|
+
/** Date and time at which Seam created the error. */
|
|
110162
|
+
created_at: string
|
|
109817
110163
|
}[]
|
|
109818
110164
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
109819
110165
|
warnings: (
|
|
@@ -109994,6 +110340,8 @@ export type Routes = {
|
|
|
109994
110340
|
errors: {
|
|
109995
110341
|
error_code: string
|
|
109996
110342
|
message: string
|
|
110343
|
+
/** Date and time at which Seam created the error. */
|
|
110344
|
+
created_at: string
|
|
109997
110345
|
}[]
|
|
109998
110346
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
109999
110347
|
warnings: (
|
|
@@ -110249,6 +110597,8 @@ export type Routes = {
|
|
|
110249
110597
|
errors: {
|
|
110250
110598
|
error_code: string
|
|
110251
110599
|
message: string
|
|
110600
|
+
/** Date and time at which Seam created the error. */
|
|
110601
|
+
created_at: string
|
|
110252
110602
|
}[]
|
|
110253
110603
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
110254
110604
|
warnings: (
|
|
@@ -110425,6 +110775,8 @@ export type Routes = {
|
|
|
110425
110775
|
errors: {
|
|
110426
110776
|
error_code: string
|
|
110427
110777
|
message: string
|
|
110778
|
+
/** Date and time at which Seam created the error. */
|
|
110779
|
+
created_at: string
|
|
110428
110780
|
}[]
|
|
110429
110781
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
110430
110782
|
warnings: (
|
|
@@ -110691,6 +111043,8 @@ export type Routes = {
|
|
|
110691
111043
|
errors: {
|
|
110692
111044
|
error_code: string
|
|
110693
111045
|
message: string
|
|
111046
|
+
/** Date and time at which Seam created the error. */
|
|
111047
|
+
created_at: string
|
|
110694
111048
|
}[]
|
|
110695
111049
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
110696
111050
|
warnings: (
|
|
@@ -112901,6 +113255,8 @@ export type Routes = {
|
|
|
112901
113255
|
error_code: string
|
|
112902
113256
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
112903
113257
|
message: string
|
|
113258
|
+
/** Date and time at which Seam created the error. */
|
|
113259
|
+
created_at: string
|
|
112904
113260
|
}[]
|
|
112905
113261
|
} | null)
|
|
112906
113262
|
| undefined
|
|
@@ -113718,6 +114074,8 @@ export type Routes = {
|
|
|
113718
114074
|
errors: {
|
|
113719
114075
|
error_code: string
|
|
113720
114076
|
message: string
|
|
114077
|
+
/** Date and time at which Seam created the error. */
|
|
114078
|
+
created_at: string
|
|
113721
114079
|
}[]
|
|
113722
114080
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
113723
114081
|
warnings: (
|
|
@@ -113898,6 +114256,8 @@ export type Routes = {
|
|
|
113898
114256
|
errors: {
|
|
113899
114257
|
error_code: string
|
|
113900
114258
|
message: string
|
|
114259
|
+
/** Date and time at which Seam created the error. */
|
|
114260
|
+
created_at: string
|
|
113901
114261
|
}[]
|
|
113902
114262
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
113903
114263
|
warnings: (
|
|
@@ -114153,6 +114513,8 @@ export type Routes = {
|
|
|
114153
114513
|
errors: {
|
|
114154
114514
|
error_code: string
|
|
114155
114515
|
message: string
|
|
114516
|
+
/** Date and time at which Seam created the error. */
|
|
114517
|
+
created_at: string
|
|
114156
114518
|
}[]
|
|
114157
114519
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
114158
114520
|
warnings: (
|
|
@@ -114329,6 +114691,8 @@ export type Routes = {
|
|
|
114329
114691
|
errors: {
|
|
114330
114692
|
error_code: string
|
|
114331
114693
|
message: string
|
|
114694
|
+
/** Date and time at which Seam created the error. */
|
|
114695
|
+
created_at: string
|
|
114332
114696
|
}[]
|
|
114333
114697
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
114334
114698
|
warnings: (
|
|
@@ -114595,6 +114959,8 @@ export type Routes = {
|
|
|
114595
114959
|
errors: {
|
|
114596
114960
|
error_code: string
|
|
114597
114961
|
message: string
|
|
114962
|
+
/** Date and time at which Seam created the error. */
|
|
114963
|
+
created_at: string
|
|
114598
114964
|
}[]
|
|
114599
114965
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
114600
114966
|
warnings: (
|
|
@@ -115752,6 +116118,8 @@ export type Routes = {
|
|
|
115752
116118
|
errors: {
|
|
115753
116119
|
error_code: string
|
|
115754
116120
|
message: string
|
|
116121
|
+
/** Date and time at which Seam created the error. */
|
|
116122
|
+
created_at: string
|
|
115755
116123
|
}[]
|
|
115756
116124
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
115757
116125
|
warnings: (
|
|
@@ -115932,6 +116300,8 @@ export type Routes = {
|
|
|
115932
116300
|
errors: {
|
|
115933
116301
|
error_code: string
|
|
115934
116302
|
message: string
|
|
116303
|
+
/** Date and time at which Seam created the error. */
|
|
116304
|
+
created_at: string
|
|
115935
116305
|
}[]
|
|
115936
116306
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
115937
116307
|
warnings: (
|
|
@@ -116187,6 +116557,8 @@ export type Routes = {
|
|
|
116187
116557
|
errors: {
|
|
116188
116558
|
error_code: string
|
|
116189
116559
|
message: string
|
|
116560
|
+
/** Date and time at which Seam created the error. */
|
|
116561
|
+
created_at: string
|
|
116190
116562
|
}[]
|
|
116191
116563
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
116192
116564
|
warnings: (
|
|
@@ -116363,6 +116735,8 @@ export type Routes = {
|
|
|
116363
116735
|
errors: {
|
|
116364
116736
|
error_code: string
|
|
116365
116737
|
message: string
|
|
116738
|
+
/** Date and time at which Seam created the error. */
|
|
116739
|
+
created_at: string
|
|
116366
116740
|
}[]
|
|
116367
116741
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
116368
116742
|
warnings: (
|
|
@@ -116629,6 +117003,8 @@ export type Routes = {
|
|
|
116629
117003
|
errors: {
|
|
116630
117004
|
error_code: string
|
|
116631
117005
|
message: string
|
|
117006
|
+
/** Date and time at which Seam created the error. */
|
|
117007
|
+
created_at: string
|
|
116632
117008
|
}[]
|
|
116633
117009
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
116634
117010
|
warnings: (
|
|
@@ -118933,6 +119309,8 @@ export type Routes = {
|
|
|
118933
119309
|
error_code: string
|
|
118934
119310
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
118935
119311
|
message: string
|
|
119312
|
+
/** Date and time at which Seam created the error. */
|
|
119313
|
+
created_at: string
|
|
118936
119314
|
}[]
|
|
118937
119315
|
} | null)
|
|
118938
119316
|
| undefined
|
|
@@ -120775,6 +121153,8 @@ export type Routes = {
|
|
|
120775
121153
|
error_code: string
|
|
120776
121154
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
120777
121155
|
message: string
|
|
121156
|
+
/** Date and time at which Seam created the error. */
|
|
121157
|
+
created_at: string
|
|
120778
121158
|
}[]
|
|
120779
121159
|
} | null)
|
|
120780
121160
|
| undefined
|
|
@@ -121588,6 +121968,8 @@ export type Routes = {
|
|
|
121588
121968
|
errors: {
|
|
121589
121969
|
error_code: string
|
|
121590
121970
|
message: string
|
|
121971
|
+
/** Date and time at which Seam created the error. */
|
|
121972
|
+
created_at: string
|
|
121591
121973
|
}[]
|
|
121592
121974
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
121593
121975
|
warnings: (
|
|
@@ -121768,6 +122150,8 @@ export type Routes = {
|
|
|
121768
122150
|
errors: {
|
|
121769
122151
|
error_code: string
|
|
121770
122152
|
message: string
|
|
122153
|
+
/** Date and time at which Seam created the error. */
|
|
122154
|
+
created_at: string
|
|
121771
122155
|
}[]
|
|
121772
122156
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
121773
122157
|
warnings: (
|
|
@@ -122023,6 +122407,8 @@ export type Routes = {
|
|
|
122023
122407
|
errors: {
|
|
122024
122408
|
error_code: string
|
|
122025
122409
|
message: string
|
|
122410
|
+
/** Date and time at which Seam created the error. */
|
|
122411
|
+
created_at: string
|
|
122026
122412
|
}[]
|
|
122027
122413
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
122028
122414
|
warnings: (
|
|
@@ -122199,6 +122585,8 @@ export type Routes = {
|
|
|
122199
122585
|
errors: {
|
|
122200
122586
|
error_code: string
|
|
122201
122587
|
message: string
|
|
122588
|
+
/** Date and time at which Seam created the error. */
|
|
122589
|
+
created_at: string
|
|
122202
122590
|
}[]
|
|
122203
122591
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
122204
122592
|
warnings: (
|
|
@@ -122465,6 +122853,8 @@ export type Routes = {
|
|
|
122465
122853
|
errors: {
|
|
122466
122854
|
error_code: string
|
|
122467
122855
|
message: string
|
|
122856
|
+
/** Date and time at which Seam created the error. */
|
|
122857
|
+
created_at: string
|
|
122468
122858
|
}[]
|
|
122469
122859
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
122470
122860
|
warnings: (
|
|
@@ -123427,6 +123817,8 @@ export type Routes = {
|
|
|
123427
123817
|
error_code: string
|
|
123428
123818
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
123429
123819
|
message: string
|
|
123820
|
+
/** Date and time at which Seam created the error. */
|
|
123821
|
+
created_at: string
|
|
123430
123822
|
}[]
|
|
123431
123823
|
}
|
|
123432
123824
|
}
|
|
@@ -123484,6 +123876,8 @@ export type Routes = {
|
|
|
123484
123876
|
error_code: string
|
|
123485
123877
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
123486
123878
|
message: string
|
|
123879
|
+
/** Date and time at which Seam created the error. */
|
|
123880
|
+
created_at: string
|
|
123487
123881
|
}[]
|
|
123488
123882
|
}
|
|
123489
123883
|
}
|
|
@@ -123529,6 +123923,8 @@ export type Routes = {
|
|
|
123529
123923
|
error_code: string
|
|
123530
123924
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
123531
123925
|
message: string
|
|
123926
|
+
/** Date and time at which Seam created the error. */
|
|
123927
|
+
created_at: string
|
|
123532
123928
|
}[]
|
|
123533
123929
|
}[]
|
|
123534
123930
|
}
|
|
@@ -123817,6 +124213,8 @@ export type Routes = {
|
|
|
123817
124213
|
errors: {
|
|
123818
124214
|
error_code: string
|
|
123819
124215
|
message: string
|
|
124216
|
+
/** Date and time at which Seam created the error. */
|
|
124217
|
+
created_at: string
|
|
123820
124218
|
}[]
|
|
123821
124219
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
123822
124220
|
warnings: (
|
|
@@ -123997,6 +124395,8 @@ export type Routes = {
|
|
|
123997
124395
|
errors: {
|
|
123998
124396
|
error_code: string
|
|
123999
124397
|
message: string
|
|
124398
|
+
/** Date and time at which Seam created the error. */
|
|
124399
|
+
created_at: string
|
|
124000
124400
|
}[]
|
|
124001
124401
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
124002
124402
|
warnings: (
|
|
@@ -124252,6 +124652,8 @@ export type Routes = {
|
|
|
124252
124652
|
errors: {
|
|
124253
124653
|
error_code: string
|
|
124254
124654
|
message: string
|
|
124655
|
+
/** Date and time at which Seam created the error. */
|
|
124656
|
+
created_at: string
|
|
124255
124657
|
}[]
|
|
124256
124658
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
124257
124659
|
warnings: (
|
|
@@ -124428,6 +124830,8 @@ export type Routes = {
|
|
|
124428
124830
|
errors: {
|
|
124429
124831
|
error_code: string
|
|
124430
124832
|
message: string
|
|
124833
|
+
/** Date and time at which Seam created the error. */
|
|
124834
|
+
created_at: string
|
|
124431
124835
|
}[]
|
|
124432
124836
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
124433
124837
|
warnings: (
|
|
@@ -124694,6 +125098,8 @@ export type Routes = {
|
|
|
124694
125098
|
errors: {
|
|
124695
125099
|
error_code: string
|
|
124696
125100
|
message: string
|
|
125101
|
+
/** Date and time at which Seam created the error. */
|
|
125102
|
+
created_at: string
|
|
124697
125103
|
}[]
|
|
124698
125104
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
124699
125105
|
warnings: (
|
|
@@ -125879,6 +126285,8 @@ export type Routes = {
|
|
|
125879
126285
|
errors: {
|
|
125880
126286
|
error_code: string
|
|
125881
126287
|
message: string
|
|
126288
|
+
/** Date and time at which Seam created the error. */
|
|
126289
|
+
created_at: string
|
|
125882
126290
|
}[]
|
|
125883
126291
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
125884
126292
|
warnings: (
|
|
@@ -126059,6 +126467,8 @@ export type Routes = {
|
|
|
126059
126467
|
errors: {
|
|
126060
126468
|
error_code: string
|
|
126061
126469
|
message: string
|
|
126470
|
+
/** Date and time at which Seam created the error. */
|
|
126471
|
+
created_at: string
|
|
126062
126472
|
}[]
|
|
126063
126473
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
126064
126474
|
warnings: (
|
|
@@ -126314,6 +126724,8 @@ export type Routes = {
|
|
|
126314
126724
|
errors: {
|
|
126315
126725
|
error_code: string
|
|
126316
126726
|
message: string
|
|
126727
|
+
/** Date and time at which Seam created the error. */
|
|
126728
|
+
created_at: string
|
|
126317
126729
|
}[]
|
|
126318
126730
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
126319
126731
|
warnings: (
|
|
@@ -126490,6 +126902,8 @@ export type Routes = {
|
|
|
126490
126902
|
errors: {
|
|
126491
126903
|
error_code: string
|
|
126492
126904
|
message: string
|
|
126905
|
+
/** Date and time at which Seam created the error. */
|
|
126906
|
+
created_at: string
|
|
126493
126907
|
}[]
|
|
126494
126908
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
126495
126909
|
warnings: (
|
|
@@ -126756,6 +127170,8 @@ export type Routes = {
|
|
|
126756
127170
|
errors: {
|
|
126757
127171
|
error_code: string
|
|
126758
127172
|
message: string
|
|
127173
|
+
/** Date and time at which Seam created the error. */
|
|
127174
|
+
created_at: string
|
|
126759
127175
|
}[]
|
|
126760
127176
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
126761
127177
|
warnings: (
|
|
@@ -128058,6 +128474,8 @@ export type Routes = {
|
|
|
128058
128474
|
errors: {
|
|
128059
128475
|
error_code: string
|
|
128060
128476
|
message: string
|
|
128477
|
+
/** Date and time at which Seam created the error. */
|
|
128478
|
+
created_at: string
|
|
128061
128479
|
}[]
|
|
128062
128480
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
128063
128481
|
warnings: (
|
|
@@ -128238,6 +128656,8 @@ export type Routes = {
|
|
|
128238
128656
|
errors: {
|
|
128239
128657
|
error_code: string
|
|
128240
128658
|
message: string
|
|
128659
|
+
/** Date and time at which Seam created the error. */
|
|
128660
|
+
created_at: string
|
|
128241
128661
|
}[]
|
|
128242
128662
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
128243
128663
|
warnings: (
|
|
@@ -128493,6 +128913,8 @@ export type Routes = {
|
|
|
128493
128913
|
errors: {
|
|
128494
128914
|
error_code: string
|
|
128495
128915
|
message: string
|
|
128916
|
+
/** Date and time at which Seam created the error. */
|
|
128917
|
+
created_at: string
|
|
128496
128918
|
}[]
|
|
128497
128919
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
128498
128920
|
warnings: (
|
|
@@ -128669,6 +129091,8 @@ export type Routes = {
|
|
|
128669
129091
|
errors: {
|
|
128670
129092
|
error_code: string
|
|
128671
129093
|
message: string
|
|
129094
|
+
/** Date and time at which Seam created the error. */
|
|
129095
|
+
created_at: string
|
|
128672
129096
|
}[]
|
|
128673
129097
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
128674
129098
|
warnings: (
|
|
@@ -128935,6 +129359,8 @@ export type Routes = {
|
|
|
128935
129359
|
errors: {
|
|
128936
129360
|
error_code: string
|
|
128937
129361
|
message: string
|
|
129362
|
+
/** Date and time at which Seam created the error. */
|
|
129363
|
+
created_at: string
|
|
128938
129364
|
}[]
|
|
128939
129365
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
128940
129366
|
warnings: (
|
|
@@ -131753,6 +132179,8 @@ export type Routes = {
|
|
|
131753
132179
|
error_code: string
|
|
131754
132180
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
131755
132181
|
message: string
|
|
132182
|
+
/** Date and time at which Seam created the error. */
|
|
132183
|
+
created_at: string
|
|
131756
132184
|
}[]
|
|
131757
132185
|
} | null)
|
|
131758
132186
|
| undefined
|
|
@@ -133597,6 +134025,8 @@ export type Routes = {
|
|
|
133597
134025
|
error_code: string
|
|
133598
134026
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
133599
134027
|
message: string
|
|
134028
|
+
/** Date and time at which Seam created the error. */
|
|
134029
|
+
created_at: string
|
|
133600
134030
|
}[]
|
|
133601
134031
|
} | null)
|
|
133602
134032
|
| undefined
|
|
@@ -134202,6 +134632,8 @@ export type Routes = {
|
|
|
134202
134632
|
error_code: string
|
|
134203
134633
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
134204
134634
|
message: string
|
|
134635
|
+
/** Date and time at which Seam created the error. */
|
|
134636
|
+
created_at: string
|
|
134205
134637
|
}[]
|
|
134206
134638
|
/** Warnings associated with the [entrance](https://docs.seam.co/low-level-apis/access-systems/retrieving-entrance-details). */
|
|
134207
134639
|
warnings: (
|
|
@@ -136963,6 +137395,8 @@ export type Routes = {
|
|
|
136963
137395
|
error_code: string
|
|
136964
137396
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
136965
137397
|
message: string
|
|
137398
|
+
/** Date and time at which Seam created the error. */
|
|
137399
|
+
created_at: string
|
|
136966
137400
|
}[]
|
|
136967
137401
|
} | null)
|
|
136968
137402
|
| undefined
|
|
@@ -137560,6 +137994,8 @@ export type Routes = {
|
|
|
137560
137994
|
error_code: string
|
|
137561
137995
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
137562
137996
|
message: string
|
|
137997
|
+
/** Date and time at which Seam created the error. */
|
|
137998
|
+
created_at: string
|
|
137563
137999
|
}[]
|
|
137564
138000
|
/** Warnings associated with the [entrance](https://docs.seam.co/low-level-apis/access-systems/retrieving-entrance-details). */
|
|
137565
138001
|
warnings: (
|
|
@@ -138729,6 +139165,8 @@ export type Routes = {
|
|
|
138729
139165
|
errors: {
|
|
138730
139166
|
error_code: string
|
|
138731
139167
|
message: string
|
|
139168
|
+
/** Date and time at which Seam created the error. */
|
|
139169
|
+
created_at: string
|
|
138732
139170
|
}[]
|
|
138733
139171
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
138734
139172
|
warnings: (
|
|
@@ -138921,6 +139359,8 @@ export type Routes = {
|
|
|
138921
139359
|
errors: {
|
|
138922
139360
|
error_code: string
|
|
138923
139361
|
message: string
|
|
139362
|
+
/** Date and time at which Seam created the error. */
|
|
139363
|
+
created_at: string
|
|
138924
139364
|
}[]
|
|
138925
139365
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
138926
139366
|
warnings: (
|
|
@@ -139192,6 +139632,8 @@ export type Routes = {
|
|
|
139192
139632
|
errors: {
|
|
139193
139633
|
error_code: string
|
|
139194
139634
|
message: string
|
|
139635
|
+
/** Date and time at which Seam created the error. */
|
|
139636
|
+
created_at: string
|
|
139195
139637
|
}[]
|
|
139196
139638
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
139197
139639
|
warnings: (
|
|
@@ -139372,6 +139814,8 @@ export type Routes = {
|
|
|
139372
139814
|
errors: {
|
|
139373
139815
|
error_code: string
|
|
139374
139816
|
message: string
|
|
139817
|
+
/** Date and time at which Seam created the error. */
|
|
139818
|
+
created_at: string
|
|
139375
139819
|
}[]
|
|
139376
139820
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
139377
139821
|
warnings: (
|
|
@@ -139638,6 +140082,8 @@ export type Routes = {
|
|
|
139638
140082
|
errors: {
|
|
139639
140083
|
error_code: string
|
|
139640
140084
|
message: string
|
|
140085
|
+
/** Date and time at which Seam created the error. */
|
|
140086
|
+
created_at: string
|
|
139641
140087
|
}[]
|
|
139642
140088
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
139643
140089
|
warnings: (
|
|
@@ -146062,6 +146508,8 @@ export type Routes = {
|
|
|
146062
146508
|
errors: {
|
|
146063
146509
|
error_code: string
|
|
146064
146510
|
message: string
|
|
146511
|
+
/** Date and time at which Seam created the error. */
|
|
146512
|
+
created_at: string
|
|
146065
146513
|
}[]
|
|
146066
146514
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
146067
146515
|
warnings: (
|
|
@@ -146234,6 +146682,8 @@ export type Routes = {
|
|
|
146234
146682
|
errors: {
|
|
146235
146683
|
error_code: string
|
|
146236
146684
|
message: string
|
|
146685
|
+
/** Date and time at which Seam created the error. */
|
|
146686
|
+
created_at: string
|
|
146237
146687
|
}[]
|
|
146238
146688
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
146239
146689
|
warnings: (
|
|
@@ -147279,6 +147729,8 @@ export type Routes = {
|
|
|
147279
147729
|
error_code: string
|
|
147280
147730
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
147281
147731
|
message: string
|
|
147732
|
+
/** Date and time at which Seam created the error. */
|
|
147733
|
+
created_at: string
|
|
147282
147734
|
}[]
|
|
147283
147735
|
}[]
|
|
147284
147736
|
| undefined
|
|
@@ -147654,6 +148106,8 @@ export type Routes = {
|
|
|
147654
148106
|
errors: {
|
|
147655
148107
|
error_code: string
|
|
147656
148108
|
message: string
|
|
148109
|
+
/** Date and time at which Seam created the error. */
|
|
148110
|
+
created_at: string
|
|
147657
148111
|
}[]
|
|
147658
148112
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
147659
148113
|
warnings: (
|
|
@@ -147834,6 +148288,8 @@ export type Routes = {
|
|
|
147834
148288
|
errors: {
|
|
147835
148289
|
error_code: string
|
|
147836
148290
|
message: string
|
|
148291
|
+
/** Date and time at which Seam created the error. */
|
|
148292
|
+
created_at: string
|
|
147837
148293
|
}[]
|
|
147838
148294
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
147839
148295
|
warnings: (
|
|
@@ -148089,6 +148545,8 @@ export type Routes = {
|
|
|
148089
148545
|
errors: {
|
|
148090
148546
|
error_code: string
|
|
148091
148547
|
message: string
|
|
148548
|
+
/** Date and time at which Seam created the error. */
|
|
148549
|
+
created_at: string
|
|
148092
148550
|
}[]
|
|
148093
148551
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
148094
148552
|
warnings: (
|
|
@@ -148265,6 +148723,8 @@ export type Routes = {
|
|
|
148265
148723
|
errors: {
|
|
148266
148724
|
error_code: string
|
|
148267
148725
|
message: string
|
|
148726
|
+
/** Date and time at which Seam created the error. */
|
|
148727
|
+
created_at: string
|
|
148268
148728
|
}[]
|
|
148269
148729
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
148270
148730
|
warnings: (
|
|
@@ -148531,6 +148991,8 @@ export type Routes = {
|
|
|
148531
148991
|
errors: {
|
|
148532
148992
|
error_code: string
|
|
148533
148993
|
message: string
|
|
148994
|
+
/** Date and time at which Seam created the error. */
|
|
148995
|
+
created_at: string
|
|
148534
148996
|
}[]
|
|
148535
148997
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
148536
148998
|
warnings: (
|