@seamapi/types 1.964.0 → 1.966.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/connect.cjs +102 -19
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +518 -2
- package/dist/index.cjs +102 -19
- 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 +96 -16
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +443 -2
- 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 +105 -16
- package/src/lib/seam/connect/route-types.ts +638 -193
|
@@ -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: (
|
|
@@ -101051,201 +101339,203 @@ export type Routes = {
|
|
|
101051
101339
|
formData: {}
|
|
101052
101340
|
jsonResponse: {
|
|
101053
101341
|
/** Represents an Access Grant. Access Grants enable you to grant a user identity access to spaces, entrances, and devices through one or more access methods, such as mobile keys, plastic cards, and PIN codes. You can create an Access Grant for an existing user identity, or you can create a new user identity *while* creating the new Access Grant. */
|
|
101054
|
-
access_grant
|
|
101055
|
-
|
|
101056
|
-
|
|
101057
|
-
|
|
101058
|
-
|
|
101059
|
-
|
|
101060
|
-
|
|
101061
|
-
|
|
101062
|
-
|
|
101063
|
-
|
|
101064
|
-
|
|
101065
|
-
|
|
101066
|
-
|
|
101067
|
-
|
|
101068
|
-
|
|
101069
|
-
|
|
101070
|
-
|
|
101071
|
-
|
|
101072
|
-
|
|
101073
|
-
|
|
101074
|
-
|
|
101075
|
-
|
|
101076
|
-
|
|
101077
|
-
|
|
101078
|
-
|
|
101079
|
-
|
|
101080
|
-
|
|
101081
|
-
|
|
101082
|
-
|
|
101083
|
-
|
|
101084
|
-
|
|
101085
|
-
|
|
101086
|
-
|
|
101087
|
-
|
|
101088
|
-
|
|
101089
|
-
|
|
101090
|
-
|
|
101091
|
-
|
|
101092
|
-
|
|
101093
|
-
|
|
101094
|
-
|
|
101095
|
-
|
|
101096
|
-
|
|
101097
|
-
|
|
101098
|
-
|
|
101099
|
-
|
|
101100
|
-
|
|
101101
|
-
|
|
101102
|
-
|
|
101103
|
-
|
|
101104
|
-
|
|
101105
|
-
|
|
101106
|
-
|
|
101107
|
-
|
|
101108
|
-
|
|
101109
|
-
|
|
101110
|
-
|
|
101111
|
-
|
|
101112
|
-
|
|
101113
|
-
|
|
101114
|
-
|
|
101115
|
-
|
|
101116
|
-
|
|
101117
|
-
|
|
101118
|
-
|
|
101119
|
-
|
|
101120
|
-
|
|
101121
|
-
|
|
101122
|
-
|
|
101123
|
-
|
|
101124
|
-
|
|
101125
|
-
|
|
101126
|
-
|
|
101127
|
-
|
|
101128
|
-
|
|
101129
|
-
|
|
101130
|
-
|
|
101131
|
-
|
|
101132
|
-
|
|
101133
|
-
|
|
101134
|
-
|
|
101135
|
-
|
|
101136
|
-
|
|
101137
|
-
|
|
101138
|
-
|
|
101139
|
-
|
|
101140
|
-
|
|
101141
|
-
|
|
101142
|
-
|
|
101143
|
-
|
|
101144
|
-
|
|
101145
|
-
|
|
101146
|
-
|
|
101147
|
-
|
|
101148
|
-
|
|
101149
|
-
|
|
101150
|
-
|
|
101151
|
-
|
|
101152
|
-
|
|
101153
|
-
|
|
101154
|
-
|
|
101155
|
-
|
|
101156
|
-
|
|
101157
|
-
|
|
101158
|
-
|
|
101159
|
-
|
|
101160
|
-
|
|
101161
|
-
|
|
101162
|
-
|
|
101163
|
-
|
|
101164
|
-
|
|
101165
|
-
|
|
101166
|
-
|
|
101167
|
-
|
|
101168
|
-
|
|
101169
|
-
|
|
101170
|
-
|
|
101171
|
-
|
|
101172
|
-
|
|
101173
|
-
|
|
101174
|
-
|
|
101175
|
-
|
|
101176
|
-
|
|
101177
|
-
|
|
101178
|
-
|
|
101179
|
-
|
|
101180
|
-
|
|
101181
|
-
|
|
101182
|
-
|
|
101183
|
-
|
|
101184
|
-
|
|
101185
|
-
|
|
101186
|
-
|
|
101187
|
-
|
|
101188
|
-
|
|
101189
|
-
|
|
101190
|
-
|
|
101191
|
-
|
|
101192
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
101193
|
-
message: string
|
|
101194
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
101195
|
-
error_code: 'cannot_create_requested_access_methods'
|
|
101196
|
-
/** IDs of the devices that did not receive an access code at grant creation. Use these to identify which specific devices failed when the message reports a partial failure. */
|
|
101197
|
-
missing_device_ids?: string[] | undefined
|
|
101198
|
-
}[]
|
|
101199
|
-
/** ID of the customization profile associated with the Access Grant. */
|
|
101200
|
-
customization_profile_id?: string | undefined
|
|
101201
|
-
/** List of pending mutations for the access grant. This shows updates that are in progress. */
|
|
101202
|
-
pending_mutations: (
|
|
101203
|
-
| {
|
|
101204
|
-
/** Date and time at which the mutation was created. */
|
|
101205
|
-
created_at: string
|
|
101206
|
-
/** Detailed description of the mutation. */
|
|
101207
|
-
message: string
|
|
101208
|
-
/** Mutation code to indicate that Seam is in the process of updating the spaces (devices) associated with this access grant. */
|
|
101209
|
-
mutation_code: 'updating_spaces'
|
|
101210
|
-
/** Previous location configuration. */
|
|
101211
|
-
from: {
|
|
101212
|
-
/** Previous device IDs where access codes existed. */
|
|
101213
|
-
device_ids: string[]
|
|
101214
|
-
}
|
|
101215
|
-
/** New location configuration. */
|
|
101216
|
-
to: {
|
|
101217
|
-
/** New device IDs where access codes should be created. */
|
|
101218
|
-
device_ids: string[]
|
|
101219
|
-
/** Common code key to ensure PIN code reuse across devices. */
|
|
101220
|
-
common_code_key?: (string | null) | undefined
|
|
101221
|
-
}
|
|
101222
|
-
}
|
|
101223
|
-
| {
|
|
101224
|
-
/** Date and time at which the mutation was created. */
|
|
101342
|
+
access_grant?:
|
|
101343
|
+
| {
|
|
101344
|
+
/** ID of the Seam workspace associated with the Access Grant. */
|
|
101345
|
+
workspace_id: string
|
|
101346
|
+
/** ID of the Access Grant. */
|
|
101347
|
+
access_grant_id: string
|
|
101348
|
+
/** Unique key for the access grant within the workspace. */
|
|
101349
|
+
access_grant_key?: string | undefined
|
|
101350
|
+
/** Reservation key for the access grant. */
|
|
101351
|
+
reservation_key?: string | undefined
|
|
101352
|
+
/** ID of user identity to which the Access Grant gives access. */
|
|
101353
|
+
user_identity_id: string
|
|
101354
|
+
/**
|
|
101355
|
+
* @deprecated Use `space_ids`.*/
|
|
101356
|
+
location_ids: string[]
|
|
101357
|
+
/** IDs of the spaces to which the Access Grant gives access. */
|
|
101358
|
+
space_ids: string[]
|
|
101359
|
+
/** Access methods that the user requested for the Access Grant. */
|
|
101360
|
+
requested_access_methods: {
|
|
101361
|
+
/** Display name of the access method. */
|
|
101362
|
+
display_name: string
|
|
101363
|
+
/** Access method mode. Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
101364
|
+
mode: 'code' | 'card' | 'mobile_key' | 'cloud_key'
|
|
101365
|
+
/** Specific PIN code to use for this access method. Only applicable when mode is 'code'. */
|
|
101366
|
+
code?: string | undefined
|
|
101367
|
+
/** Maximum number of times the instant key can be used. Only applicable when mode is 'mobile_key'. Defaults to 1 if not specified. */
|
|
101368
|
+
instant_key_max_use_count?: number | undefined
|
|
101369
|
+
/** Date and time at which the requested access method was added to the Access Grant. */
|
|
101370
|
+
created_at: string
|
|
101371
|
+
/** IDs of the access methods created for the requested access method. */
|
|
101372
|
+
created_access_method_ids: string[]
|
|
101373
|
+
}[]
|
|
101374
|
+
/** IDs of the access methods created for the Access Grant. */
|
|
101375
|
+
access_method_ids: string[]
|
|
101376
|
+
/** Client Session Token. Only returned if the Access Grant has a mobile_key access method. */
|
|
101377
|
+
client_session_token?: string | undefined
|
|
101378
|
+
/** Name of the Access Grant. If not provided, the display name will be computed. */
|
|
101379
|
+
name: string | null
|
|
101380
|
+
/** Display name of the Access Grant. */
|
|
101381
|
+
display_name: string
|
|
101382
|
+
/** Instant Key URL. Only returned if the Access Grant has a single mobile_key access_method. */
|
|
101383
|
+
instant_key_url?: string | undefined
|
|
101384
|
+
/** Date and time at which the Access Grant was created. */
|
|
101385
|
+
created_at: string
|
|
101386
|
+
/** Date and time at which the Access Grant starts. */
|
|
101387
|
+
starts_at: string
|
|
101388
|
+
/** Date and time at which the Access Grant ends. */
|
|
101389
|
+
ends_at: string | null
|
|
101390
|
+
/** Warnings associated with the [access grant](https://docs.seam.co/use-cases/granting-access). */
|
|
101391
|
+
warnings: (
|
|
101392
|
+
| {
|
|
101393
|
+
/** Date and time at which Seam created the warning. */
|
|
101394
|
+
created_at: string
|
|
101395
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
101396
|
+
message: string
|
|
101397
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
101398
|
+
warning_code: 'being_deleted'
|
|
101399
|
+
}
|
|
101400
|
+
| {
|
|
101401
|
+
/** Date and time at which Seam created the warning. */
|
|
101402
|
+
created_at: string
|
|
101403
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
101404
|
+
message: string
|
|
101405
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
101406
|
+
warning_code: 'underprovisioned_access'
|
|
101407
|
+
}
|
|
101408
|
+
| {
|
|
101409
|
+
/** Date and time at which Seam created the warning. */
|
|
101410
|
+
created_at: string
|
|
101411
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
101412
|
+
message: string
|
|
101413
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
101414
|
+
warning_code: 'overprovisioned_access'
|
|
101415
|
+
/** Devices whose access codes could not be revoked during reconciliation. Present when the provider does not support revoking an offline access code (e.g. Dormakaba oracode with exhausted override budget). */
|
|
101416
|
+
failed_devices?:
|
|
101417
|
+
| {
|
|
101418
|
+
/** Device whose access code could not be revoked. */
|
|
101419
|
+
device_id: string
|
|
101420
|
+
/** Reason the access code could not be revoked (e.g. `offline_access_code_not_revocable`). */
|
|
101421
|
+
error_code: string
|
|
101422
|
+
/** Human-readable description of why revocation failed. */
|
|
101423
|
+
message: string
|
|
101424
|
+
}[]
|
|
101425
|
+
| undefined
|
|
101426
|
+
}
|
|
101427
|
+
| {
|
|
101428
|
+
/** Date and time at which Seam created the warning. */
|
|
101429
|
+
created_at: string
|
|
101430
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
101431
|
+
message: string
|
|
101432
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
101433
|
+
warning_code: 'updating_access_times'
|
|
101434
|
+
/** IDs of the access methods being updated. */
|
|
101435
|
+
access_method_ids: string[]
|
|
101436
|
+
}
|
|
101437
|
+
| {
|
|
101438
|
+
/** Date and time at which Seam created the warning. */
|
|
101439
|
+
created_at: string
|
|
101440
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
101441
|
+
message: string
|
|
101442
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
101443
|
+
warning_code: 'requested_code_unavailable'
|
|
101444
|
+
/** ID of the device where the requested code was unavailable. */
|
|
101445
|
+
device_id: string
|
|
101446
|
+
/** The originally requested PIN code that was unavailable. */
|
|
101447
|
+
original_code: string
|
|
101448
|
+
/** The new PIN code that was assigned instead. */
|
|
101449
|
+
new_code: string
|
|
101450
|
+
}
|
|
101451
|
+
| {
|
|
101452
|
+
/** Date and time at which Seam created the warning. */
|
|
101453
|
+
created_at: string
|
|
101454
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
101455
|
+
message: string
|
|
101456
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
101457
|
+
warning_code: 'device_does_not_support_access_codes'
|
|
101458
|
+
/** ID of the device that does not support access codes. */
|
|
101459
|
+
device_id: string
|
|
101460
|
+
}
|
|
101461
|
+
| {
|
|
101462
|
+
/** Date and time at which Seam created the warning. */
|
|
101463
|
+
created_at: string
|
|
101464
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
101465
|
+
message: string
|
|
101466
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
101467
|
+
warning_code: 'device_time_constraints_violated'
|
|
101468
|
+
/** ID of the device whose time constraints the access grant violates. */
|
|
101469
|
+
device_id: string
|
|
101470
|
+
/** Specific reason why the grant's times are not programmable on the device. */
|
|
101471
|
+
reason:
|
|
101472
|
+
| 'duration_exceeds_max'
|
|
101473
|
+
| 'times_do_not_match_slots'
|
|
101474
|
+
| 'ongoing_not_supported'
|
|
101475
|
+
}
|
|
101476
|
+
)[]
|
|
101477
|
+
/** Errors associated with the [access grant](https://docs.seam.co/use-cases/granting-access). */
|
|
101478
|
+
errors: {
|
|
101479
|
+
/** Date and time at which Seam created the error. */
|
|
101225
101480
|
created_at: string
|
|
101226
|
-
/** Detailed description of the
|
|
101481
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
101227
101482
|
message: string
|
|
101228
|
-
/**
|
|
101229
|
-
|
|
101230
|
-
/** IDs of the access
|
|
101231
|
-
|
|
101232
|
-
|
|
101233
|
-
|
|
101234
|
-
|
|
101235
|
-
|
|
101236
|
-
|
|
101237
|
-
|
|
101238
|
-
|
|
101239
|
-
|
|
101240
|
-
|
|
101241
|
-
|
|
101242
|
-
|
|
101243
|
-
|
|
101244
|
-
|
|
101245
|
-
|
|
101246
|
-
|
|
101247
|
-
|
|
101248
|
-
|
|
101483
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
101484
|
+
error_code: 'cannot_create_requested_access_methods'
|
|
101485
|
+
/** IDs of the devices that did not receive an access code at grant creation. Use these to identify which specific devices failed when the message reports a partial failure. */
|
|
101486
|
+
missing_device_ids?: string[] | undefined
|
|
101487
|
+
}[]
|
|
101488
|
+
/** ID of the customization profile associated with the Access Grant. */
|
|
101489
|
+
customization_profile_id?: string | undefined
|
|
101490
|
+
/** List of pending mutations for the access grant. This shows updates that are in progress. */
|
|
101491
|
+
pending_mutations: (
|
|
101492
|
+
| {
|
|
101493
|
+
/** Date and time at which the mutation was created. */
|
|
101494
|
+
created_at: string
|
|
101495
|
+
/** Detailed description of the mutation. */
|
|
101496
|
+
message: string
|
|
101497
|
+
/** Mutation code to indicate that Seam is in the process of updating the spaces (devices) associated with this access grant. */
|
|
101498
|
+
mutation_code: 'updating_spaces'
|
|
101499
|
+
/** Previous location configuration. */
|
|
101500
|
+
from: {
|
|
101501
|
+
/** Previous device IDs where access codes existed. */
|
|
101502
|
+
device_ids: string[]
|
|
101503
|
+
}
|
|
101504
|
+
/** New location configuration. */
|
|
101505
|
+
to: {
|
|
101506
|
+
/** New device IDs where access codes should be created. */
|
|
101507
|
+
device_ids: string[]
|
|
101508
|
+
/** Common code key to ensure PIN code reuse across devices. */
|
|
101509
|
+
common_code_key?: (string | null) | undefined
|
|
101510
|
+
}
|
|
101511
|
+
}
|
|
101512
|
+
| {
|
|
101513
|
+
/** Date and time at which the mutation was created. */
|
|
101514
|
+
created_at: string
|
|
101515
|
+
/** Detailed description of the mutation. */
|
|
101516
|
+
message: string
|
|
101517
|
+
/** Mutation code to indicate that Seam is in the process of updating the access times for this access grant. */
|
|
101518
|
+
mutation_code: 'updating_access_times'
|
|
101519
|
+
/** IDs of the access methods being updated. */
|
|
101520
|
+
access_method_ids: string[]
|
|
101521
|
+
/** Previous access time configuration. */
|
|
101522
|
+
from: {
|
|
101523
|
+
/** Previous start time for access. */
|
|
101524
|
+
starts_at: string | null
|
|
101525
|
+
/** Previous end time for access. */
|
|
101526
|
+
ends_at: string | null
|
|
101527
|
+
}
|
|
101528
|
+
/** New access time configuration. */
|
|
101529
|
+
to: {
|
|
101530
|
+
/** New start time for access. */
|
|
101531
|
+
starts_at: string | null
|
|
101532
|
+
/** New end time for access. */
|
|
101533
|
+
ends_at: string | null
|
|
101534
|
+
}
|
|
101535
|
+
}
|
|
101536
|
+
)[]
|
|
101537
|
+
}
|
|
101538
|
+
| undefined
|
|
101249
101539
|
spaces: {
|
|
101250
101540
|
space_key: string
|
|
101251
101541
|
child_space_keys?: string[] | undefined
|
|
@@ -101298,6 +101588,13 @@ export type Routes = {
|
|
|
101298
101588
|
/** List of unique identifiers for the spaces the staff member is associated with. */
|
|
101299
101589
|
space_keys?: string[] | undefined
|
|
101300
101590
|
user_identity_id?: string | undefined
|
|
101591
|
+
access_grant?:
|
|
101592
|
+
| {
|
|
101593
|
+
starts_at: string
|
|
101594
|
+
ends_at: string | null
|
|
101595
|
+
created_at: string
|
|
101596
|
+
}
|
|
101597
|
+
| undefined
|
|
101301
101598
|
}[]
|
|
101302
101599
|
/** Information about the current page of results. */
|
|
101303
101600
|
pagination: {
|
|
@@ -101482,6 +101779,8 @@ export type Routes = {
|
|
|
101482
101779
|
errors: {
|
|
101483
101780
|
error_code: string
|
|
101484
101781
|
message: string
|
|
101782
|
+
/** Date and time at which Seam created the error. */
|
|
101783
|
+
created_at: string
|
|
101485
101784
|
}[]
|
|
101486
101785
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
101487
101786
|
warnings: (
|
|
@@ -101686,6 +101985,8 @@ export type Routes = {
|
|
|
101686
101985
|
errors: {
|
|
101687
101986
|
error_code: string
|
|
101688
101987
|
message: string
|
|
101988
|
+
/** Date and time at which Seam created the error. */
|
|
101989
|
+
created_at: string
|
|
101689
101990
|
}[]
|
|
101690
101991
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
101691
101992
|
warnings: (
|
|
@@ -101812,6 +102113,8 @@ export type Routes = {
|
|
|
101812
102113
|
error_code: string
|
|
101813
102114
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
101814
102115
|
message: string
|
|
102116
|
+
/** Date and time at which Seam created the error. */
|
|
102117
|
+
created_at: string
|
|
101815
102118
|
}[]
|
|
101816
102119
|
/** Warnings associated with the [entrance](https://docs.seam.co/low-level-apis/access-systems/retrieving-entrance-details). */
|
|
101817
102120
|
warnings: (
|
|
@@ -103798,6 +104101,8 @@ export type Routes = {
|
|
|
103798
104101
|
error_code: string
|
|
103799
104102
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
103800
104103
|
message: string
|
|
104104
|
+
/** Date and time at which Seam created the error. */
|
|
104105
|
+
created_at: string
|
|
103801
104106
|
}[]
|
|
103802
104107
|
} | null)
|
|
103803
104108
|
| undefined
|
|
@@ -104395,6 +104700,8 @@ export type Routes = {
|
|
|
104395
104700
|
error_code: string
|
|
104396
104701
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
104397
104702
|
message: string
|
|
104703
|
+
/** Date and time at which Seam created the error. */
|
|
104704
|
+
created_at: string
|
|
104398
104705
|
}[]
|
|
104399
104706
|
/** Warnings associated with the [entrance](https://docs.seam.co/low-level-apis/access-systems/retrieving-entrance-details). */
|
|
104400
104707
|
warnings: (
|
|
@@ -105633,6 +105940,8 @@ export type Routes = {
|
|
|
105633
105940
|
errors: {
|
|
105634
105941
|
error_code: string
|
|
105635
105942
|
message: string
|
|
105943
|
+
/** Date and time at which Seam created the error. */
|
|
105944
|
+
created_at: string
|
|
105636
105945
|
}[]
|
|
105637
105946
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
105638
105947
|
warnings: (
|
|
@@ -105813,6 +106122,8 @@ export type Routes = {
|
|
|
105813
106122
|
errors: {
|
|
105814
106123
|
error_code: string
|
|
105815
106124
|
message: string
|
|
106125
|
+
/** Date and time at which Seam created the error. */
|
|
106126
|
+
created_at: string
|
|
105816
106127
|
}[]
|
|
105817
106128
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
105818
106129
|
warnings: (
|
|
@@ -106068,6 +106379,8 @@ export type Routes = {
|
|
|
106068
106379
|
errors: {
|
|
106069
106380
|
error_code: string
|
|
106070
106381
|
message: string
|
|
106382
|
+
/** Date and time at which Seam created the error. */
|
|
106383
|
+
created_at: string
|
|
106071
106384
|
}[]
|
|
106072
106385
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
106073
106386
|
warnings: (
|
|
@@ -106244,6 +106557,8 @@ export type Routes = {
|
|
|
106244
106557
|
errors: {
|
|
106245
106558
|
error_code: string
|
|
106246
106559
|
message: string
|
|
106560
|
+
/** Date and time at which Seam created the error. */
|
|
106561
|
+
created_at: string
|
|
106247
106562
|
}[]
|
|
106248
106563
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
106249
106564
|
warnings: (
|
|
@@ -106510,6 +106825,8 @@ export type Routes = {
|
|
|
106510
106825
|
errors: {
|
|
106511
106826
|
error_code: string
|
|
106512
106827
|
message: string
|
|
106828
|
+
/** Date and time at which Seam created the error. */
|
|
106829
|
+
created_at: string
|
|
106513
106830
|
}[]
|
|
106514
106831
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
106515
106832
|
warnings: (
|
|
@@ -107663,6 +107980,8 @@ export type Routes = {
|
|
|
107663
107980
|
errors: {
|
|
107664
107981
|
error_code: string
|
|
107665
107982
|
message: string
|
|
107983
|
+
/** Date and time at which Seam created the error. */
|
|
107984
|
+
created_at: string
|
|
107666
107985
|
}[]
|
|
107667
107986
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
107668
107987
|
warnings: (
|
|
@@ -107843,6 +108162,8 @@ export type Routes = {
|
|
|
107843
108162
|
errors: {
|
|
107844
108163
|
error_code: string
|
|
107845
108164
|
message: string
|
|
108165
|
+
/** Date and time at which Seam created the error. */
|
|
108166
|
+
created_at: string
|
|
107846
108167
|
}[]
|
|
107847
108168
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
107848
108169
|
warnings: (
|
|
@@ -108098,6 +108419,8 @@ export type Routes = {
|
|
|
108098
108419
|
errors: {
|
|
108099
108420
|
error_code: string
|
|
108100
108421
|
message: string
|
|
108422
|
+
/** Date and time at which Seam created the error. */
|
|
108423
|
+
created_at: string
|
|
108101
108424
|
}[]
|
|
108102
108425
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
108103
108426
|
warnings: (
|
|
@@ -108274,6 +108597,8 @@ export type Routes = {
|
|
|
108274
108597
|
errors: {
|
|
108275
108598
|
error_code: string
|
|
108276
108599
|
message: string
|
|
108600
|
+
/** Date and time at which Seam created the error. */
|
|
108601
|
+
created_at: string
|
|
108277
108602
|
}[]
|
|
108278
108603
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
108279
108604
|
warnings: (
|
|
@@ -108540,6 +108865,8 @@ export type Routes = {
|
|
|
108540
108865
|
errors: {
|
|
108541
108866
|
error_code: string
|
|
108542
108867
|
message: string
|
|
108868
|
+
/** Date and time at which Seam created the error. */
|
|
108869
|
+
created_at: string
|
|
108543
108870
|
}[]
|
|
108544
108871
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
108545
108872
|
warnings: (
|
|
@@ -109805,6 +110132,8 @@ export type Routes = {
|
|
|
109805
110132
|
errors: {
|
|
109806
110133
|
error_code: string
|
|
109807
110134
|
message: string
|
|
110135
|
+
/** Date and time at which Seam created the error. */
|
|
110136
|
+
created_at: string
|
|
109808
110137
|
}[]
|
|
109809
110138
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
109810
110139
|
warnings: (
|
|
@@ -109985,6 +110314,8 @@ export type Routes = {
|
|
|
109985
110314
|
errors: {
|
|
109986
110315
|
error_code: string
|
|
109987
110316
|
message: string
|
|
110317
|
+
/** Date and time at which Seam created the error. */
|
|
110318
|
+
created_at: string
|
|
109988
110319
|
}[]
|
|
109989
110320
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
109990
110321
|
warnings: (
|
|
@@ -110240,6 +110571,8 @@ export type Routes = {
|
|
|
110240
110571
|
errors: {
|
|
110241
110572
|
error_code: string
|
|
110242
110573
|
message: string
|
|
110574
|
+
/** Date and time at which Seam created the error. */
|
|
110575
|
+
created_at: string
|
|
110243
110576
|
}[]
|
|
110244
110577
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
110245
110578
|
warnings: (
|
|
@@ -110416,6 +110749,8 @@ export type Routes = {
|
|
|
110416
110749
|
errors: {
|
|
110417
110750
|
error_code: string
|
|
110418
110751
|
message: string
|
|
110752
|
+
/** Date and time at which Seam created the error. */
|
|
110753
|
+
created_at: string
|
|
110419
110754
|
}[]
|
|
110420
110755
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
110421
110756
|
warnings: (
|
|
@@ -110682,6 +111017,8 @@ export type Routes = {
|
|
|
110682
111017
|
errors: {
|
|
110683
111018
|
error_code: string
|
|
110684
111019
|
message: string
|
|
111020
|
+
/** Date and time at which Seam created the error. */
|
|
111021
|
+
created_at: string
|
|
110685
111022
|
}[]
|
|
110686
111023
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
110687
111024
|
warnings: (
|
|
@@ -112892,6 +113229,8 @@ export type Routes = {
|
|
|
112892
113229
|
error_code: string
|
|
112893
113230
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
112894
113231
|
message: string
|
|
113232
|
+
/** Date and time at which Seam created the error. */
|
|
113233
|
+
created_at: string
|
|
112895
113234
|
}[]
|
|
112896
113235
|
} | null)
|
|
112897
113236
|
| undefined
|
|
@@ -113709,6 +114048,8 @@ export type Routes = {
|
|
|
113709
114048
|
errors: {
|
|
113710
114049
|
error_code: string
|
|
113711
114050
|
message: string
|
|
114051
|
+
/** Date and time at which Seam created the error. */
|
|
114052
|
+
created_at: string
|
|
113712
114053
|
}[]
|
|
113713
114054
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
113714
114055
|
warnings: (
|
|
@@ -113889,6 +114230,8 @@ export type Routes = {
|
|
|
113889
114230
|
errors: {
|
|
113890
114231
|
error_code: string
|
|
113891
114232
|
message: string
|
|
114233
|
+
/** Date and time at which Seam created the error. */
|
|
114234
|
+
created_at: string
|
|
113892
114235
|
}[]
|
|
113893
114236
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
113894
114237
|
warnings: (
|
|
@@ -114144,6 +114487,8 @@ export type Routes = {
|
|
|
114144
114487
|
errors: {
|
|
114145
114488
|
error_code: string
|
|
114146
114489
|
message: string
|
|
114490
|
+
/** Date and time at which Seam created the error. */
|
|
114491
|
+
created_at: string
|
|
114147
114492
|
}[]
|
|
114148
114493
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
114149
114494
|
warnings: (
|
|
@@ -114320,6 +114665,8 @@ export type Routes = {
|
|
|
114320
114665
|
errors: {
|
|
114321
114666
|
error_code: string
|
|
114322
114667
|
message: string
|
|
114668
|
+
/** Date and time at which Seam created the error. */
|
|
114669
|
+
created_at: string
|
|
114323
114670
|
}[]
|
|
114324
114671
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
114325
114672
|
warnings: (
|
|
@@ -114586,6 +114933,8 @@ export type Routes = {
|
|
|
114586
114933
|
errors: {
|
|
114587
114934
|
error_code: string
|
|
114588
114935
|
message: string
|
|
114936
|
+
/** Date and time at which Seam created the error. */
|
|
114937
|
+
created_at: string
|
|
114589
114938
|
}[]
|
|
114590
114939
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
114591
114940
|
warnings: (
|
|
@@ -115743,6 +116092,8 @@ export type Routes = {
|
|
|
115743
116092
|
errors: {
|
|
115744
116093
|
error_code: string
|
|
115745
116094
|
message: string
|
|
116095
|
+
/** Date and time at which Seam created the error. */
|
|
116096
|
+
created_at: string
|
|
115746
116097
|
}[]
|
|
115747
116098
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
115748
116099
|
warnings: (
|
|
@@ -115923,6 +116274,8 @@ export type Routes = {
|
|
|
115923
116274
|
errors: {
|
|
115924
116275
|
error_code: string
|
|
115925
116276
|
message: string
|
|
116277
|
+
/** Date and time at which Seam created the error. */
|
|
116278
|
+
created_at: string
|
|
115926
116279
|
}[]
|
|
115927
116280
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
115928
116281
|
warnings: (
|
|
@@ -116178,6 +116531,8 @@ export type Routes = {
|
|
|
116178
116531
|
errors: {
|
|
116179
116532
|
error_code: string
|
|
116180
116533
|
message: string
|
|
116534
|
+
/** Date and time at which Seam created the error. */
|
|
116535
|
+
created_at: string
|
|
116181
116536
|
}[]
|
|
116182
116537
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
116183
116538
|
warnings: (
|
|
@@ -116354,6 +116709,8 @@ export type Routes = {
|
|
|
116354
116709
|
errors: {
|
|
116355
116710
|
error_code: string
|
|
116356
116711
|
message: string
|
|
116712
|
+
/** Date and time at which Seam created the error. */
|
|
116713
|
+
created_at: string
|
|
116357
116714
|
}[]
|
|
116358
116715
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
116359
116716
|
warnings: (
|
|
@@ -116620,6 +116977,8 @@ export type Routes = {
|
|
|
116620
116977
|
errors: {
|
|
116621
116978
|
error_code: string
|
|
116622
116979
|
message: string
|
|
116980
|
+
/** Date and time at which Seam created the error. */
|
|
116981
|
+
created_at: string
|
|
116623
116982
|
}[]
|
|
116624
116983
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
116625
116984
|
warnings: (
|
|
@@ -118924,6 +119283,8 @@ export type Routes = {
|
|
|
118924
119283
|
error_code: string
|
|
118925
119284
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
118926
119285
|
message: string
|
|
119286
|
+
/** Date and time at which Seam created the error. */
|
|
119287
|
+
created_at: string
|
|
118927
119288
|
}[]
|
|
118928
119289
|
} | null)
|
|
118929
119290
|
| undefined
|
|
@@ -120766,6 +121127,8 @@ export type Routes = {
|
|
|
120766
121127
|
error_code: string
|
|
120767
121128
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
120768
121129
|
message: string
|
|
121130
|
+
/** Date and time at which Seam created the error. */
|
|
121131
|
+
created_at: string
|
|
120769
121132
|
}[]
|
|
120770
121133
|
} | null)
|
|
120771
121134
|
| undefined
|
|
@@ -121579,6 +121942,8 @@ export type Routes = {
|
|
|
121579
121942
|
errors: {
|
|
121580
121943
|
error_code: string
|
|
121581
121944
|
message: string
|
|
121945
|
+
/** Date and time at which Seam created the error. */
|
|
121946
|
+
created_at: string
|
|
121582
121947
|
}[]
|
|
121583
121948
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
121584
121949
|
warnings: (
|
|
@@ -121759,6 +122124,8 @@ export type Routes = {
|
|
|
121759
122124
|
errors: {
|
|
121760
122125
|
error_code: string
|
|
121761
122126
|
message: string
|
|
122127
|
+
/** Date and time at which Seam created the error. */
|
|
122128
|
+
created_at: string
|
|
121762
122129
|
}[]
|
|
121763
122130
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
121764
122131
|
warnings: (
|
|
@@ -122014,6 +122381,8 @@ export type Routes = {
|
|
|
122014
122381
|
errors: {
|
|
122015
122382
|
error_code: string
|
|
122016
122383
|
message: string
|
|
122384
|
+
/** Date and time at which Seam created the error. */
|
|
122385
|
+
created_at: string
|
|
122017
122386
|
}[]
|
|
122018
122387
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
122019
122388
|
warnings: (
|
|
@@ -122190,6 +122559,8 @@ export type Routes = {
|
|
|
122190
122559
|
errors: {
|
|
122191
122560
|
error_code: string
|
|
122192
122561
|
message: string
|
|
122562
|
+
/** Date and time at which Seam created the error. */
|
|
122563
|
+
created_at: string
|
|
122193
122564
|
}[]
|
|
122194
122565
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
122195
122566
|
warnings: (
|
|
@@ -122456,6 +122827,8 @@ export type Routes = {
|
|
|
122456
122827
|
errors: {
|
|
122457
122828
|
error_code: string
|
|
122458
122829
|
message: string
|
|
122830
|
+
/** Date and time at which Seam created the error. */
|
|
122831
|
+
created_at: string
|
|
122459
122832
|
}[]
|
|
122460
122833
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
122461
122834
|
warnings: (
|
|
@@ -123418,6 +123791,8 @@ export type Routes = {
|
|
|
123418
123791
|
error_code: string
|
|
123419
123792
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
123420
123793
|
message: string
|
|
123794
|
+
/** Date and time at which Seam created the error. */
|
|
123795
|
+
created_at: string
|
|
123421
123796
|
}[]
|
|
123422
123797
|
}
|
|
123423
123798
|
}
|
|
@@ -123475,6 +123850,8 @@ export type Routes = {
|
|
|
123475
123850
|
error_code: string
|
|
123476
123851
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
123477
123852
|
message: string
|
|
123853
|
+
/** Date and time at which Seam created the error. */
|
|
123854
|
+
created_at: string
|
|
123478
123855
|
}[]
|
|
123479
123856
|
}
|
|
123480
123857
|
}
|
|
@@ -123520,6 +123897,8 @@ export type Routes = {
|
|
|
123520
123897
|
error_code: string
|
|
123521
123898
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
123522
123899
|
message: string
|
|
123900
|
+
/** Date and time at which Seam created the error. */
|
|
123901
|
+
created_at: string
|
|
123523
123902
|
}[]
|
|
123524
123903
|
}[]
|
|
123525
123904
|
}
|
|
@@ -123808,6 +124187,8 @@ export type Routes = {
|
|
|
123808
124187
|
errors: {
|
|
123809
124188
|
error_code: string
|
|
123810
124189
|
message: string
|
|
124190
|
+
/** Date and time at which Seam created the error. */
|
|
124191
|
+
created_at: string
|
|
123811
124192
|
}[]
|
|
123812
124193
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
123813
124194
|
warnings: (
|
|
@@ -123988,6 +124369,8 @@ export type Routes = {
|
|
|
123988
124369
|
errors: {
|
|
123989
124370
|
error_code: string
|
|
123990
124371
|
message: string
|
|
124372
|
+
/** Date and time at which Seam created the error. */
|
|
124373
|
+
created_at: string
|
|
123991
124374
|
}[]
|
|
123992
124375
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
123993
124376
|
warnings: (
|
|
@@ -124243,6 +124626,8 @@ export type Routes = {
|
|
|
124243
124626
|
errors: {
|
|
124244
124627
|
error_code: string
|
|
124245
124628
|
message: string
|
|
124629
|
+
/** Date and time at which Seam created the error. */
|
|
124630
|
+
created_at: string
|
|
124246
124631
|
}[]
|
|
124247
124632
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
124248
124633
|
warnings: (
|
|
@@ -124419,6 +124804,8 @@ export type Routes = {
|
|
|
124419
124804
|
errors: {
|
|
124420
124805
|
error_code: string
|
|
124421
124806
|
message: string
|
|
124807
|
+
/** Date and time at which Seam created the error. */
|
|
124808
|
+
created_at: string
|
|
124422
124809
|
}[]
|
|
124423
124810
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
124424
124811
|
warnings: (
|
|
@@ -124685,6 +125072,8 @@ export type Routes = {
|
|
|
124685
125072
|
errors: {
|
|
124686
125073
|
error_code: string
|
|
124687
125074
|
message: string
|
|
125075
|
+
/** Date and time at which Seam created the error. */
|
|
125076
|
+
created_at: string
|
|
124688
125077
|
}[]
|
|
124689
125078
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
124690
125079
|
warnings: (
|
|
@@ -125870,6 +126259,8 @@ export type Routes = {
|
|
|
125870
126259
|
errors: {
|
|
125871
126260
|
error_code: string
|
|
125872
126261
|
message: string
|
|
126262
|
+
/** Date and time at which Seam created the error. */
|
|
126263
|
+
created_at: string
|
|
125873
126264
|
}[]
|
|
125874
126265
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
125875
126266
|
warnings: (
|
|
@@ -126050,6 +126441,8 @@ export type Routes = {
|
|
|
126050
126441
|
errors: {
|
|
126051
126442
|
error_code: string
|
|
126052
126443
|
message: string
|
|
126444
|
+
/** Date and time at which Seam created the error. */
|
|
126445
|
+
created_at: string
|
|
126053
126446
|
}[]
|
|
126054
126447
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
126055
126448
|
warnings: (
|
|
@@ -126305,6 +126698,8 @@ export type Routes = {
|
|
|
126305
126698
|
errors: {
|
|
126306
126699
|
error_code: string
|
|
126307
126700
|
message: string
|
|
126701
|
+
/** Date and time at which Seam created the error. */
|
|
126702
|
+
created_at: string
|
|
126308
126703
|
}[]
|
|
126309
126704
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
126310
126705
|
warnings: (
|
|
@@ -126481,6 +126876,8 @@ export type Routes = {
|
|
|
126481
126876
|
errors: {
|
|
126482
126877
|
error_code: string
|
|
126483
126878
|
message: string
|
|
126879
|
+
/** Date and time at which Seam created the error. */
|
|
126880
|
+
created_at: string
|
|
126484
126881
|
}[]
|
|
126485
126882
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
126486
126883
|
warnings: (
|
|
@@ -126747,6 +127144,8 @@ export type Routes = {
|
|
|
126747
127144
|
errors: {
|
|
126748
127145
|
error_code: string
|
|
126749
127146
|
message: string
|
|
127147
|
+
/** Date and time at which Seam created the error. */
|
|
127148
|
+
created_at: string
|
|
126750
127149
|
}[]
|
|
126751
127150
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
126752
127151
|
warnings: (
|
|
@@ -128049,6 +128448,8 @@ export type Routes = {
|
|
|
128049
128448
|
errors: {
|
|
128050
128449
|
error_code: string
|
|
128051
128450
|
message: string
|
|
128451
|
+
/** Date and time at which Seam created the error. */
|
|
128452
|
+
created_at: string
|
|
128052
128453
|
}[]
|
|
128053
128454
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
128054
128455
|
warnings: (
|
|
@@ -128229,6 +128630,8 @@ export type Routes = {
|
|
|
128229
128630
|
errors: {
|
|
128230
128631
|
error_code: string
|
|
128231
128632
|
message: string
|
|
128633
|
+
/** Date and time at which Seam created the error. */
|
|
128634
|
+
created_at: string
|
|
128232
128635
|
}[]
|
|
128233
128636
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
128234
128637
|
warnings: (
|
|
@@ -128484,6 +128887,8 @@ export type Routes = {
|
|
|
128484
128887
|
errors: {
|
|
128485
128888
|
error_code: string
|
|
128486
128889
|
message: string
|
|
128890
|
+
/** Date and time at which Seam created the error. */
|
|
128891
|
+
created_at: string
|
|
128487
128892
|
}[]
|
|
128488
128893
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
128489
128894
|
warnings: (
|
|
@@ -128660,6 +129065,8 @@ export type Routes = {
|
|
|
128660
129065
|
errors: {
|
|
128661
129066
|
error_code: string
|
|
128662
129067
|
message: string
|
|
129068
|
+
/** Date and time at which Seam created the error. */
|
|
129069
|
+
created_at: string
|
|
128663
129070
|
}[]
|
|
128664
129071
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
128665
129072
|
warnings: (
|
|
@@ -128926,6 +129333,8 @@ export type Routes = {
|
|
|
128926
129333
|
errors: {
|
|
128927
129334
|
error_code: string
|
|
128928
129335
|
message: string
|
|
129336
|
+
/** Date and time at which Seam created the error. */
|
|
129337
|
+
created_at: string
|
|
128929
129338
|
}[]
|
|
128930
129339
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
128931
129340
|
warnings: (
|
|
@@ -131744,6 +132153,8 @@ export type Routes = {
|
|
|
131744
132153
|
error_code: string
|
|
131745
132154
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
131746
132155
|
message: string
|
|
132156
|
+
/** Date and time at which Seam created the error. */
|
|
132157
|
+
created_at: string
|
|
131747
132158
|
}[]
|
|
131748
132159
|
} | null)
|
|
131749
132160
|
| undefined
|
|
@@ -133588,6 +133999,8 @@ export type Routes = {
|
|
|
133588
133999
|
error_code: string
|
|
133589
134000
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
133590
134001
|
message: string
|
|
134002
|
+
/** Date and time at which Seam created the error. */
|
|
134003
|
+
created_at: string
|
|
133591
134004
|
}[]
|
|
133592
134005
|
} | null)
|
|
133593
134006
|
| undefined
|
|
@@ -134193,6 +134606,8 @@ export type Routes = {
|
|
|
134193
134606
|
error_code: string
|
|
134194
134607
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
134195
134608
|
message: string
|
|
134609
|
+
/** Date and time at which Seam created the error. */
|
|
134610
|
+
created_at: string
|
|
134196
134611
|
}[]
|
|
134197
134612
|
/** Warnings associated with the [entrance](https://docs.seam.co/low-level-apis/access-systems/retrieving-entrance-details). */
|
|
134198
134613
|
warnings: (
|
|
@@ -136954,6 +137369,8 @@ export type Routes = {
|
|
|
136954
137369
|
error_code: string
|
|
136955
137370
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
136956
137371
|
message: string
|
|
137372
|
+
/** Date and time at which Seam created the error. */
|
|
137373
|
+
created_at: string
|
|
136957
137374
|
}[]
|
|
136958
137375
|
} | null)
|
|
136959
137376
|
| undefined
|
|
@@ -137551,6 +137968,8 @@ export type Routes = {
|
|
|
137551
137968
|
error_code: string
|
|
137552
137969
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
137553
137970
|
message: string
|
|
137971
|
+
/** Date and time at which Seam created the error. */
|
|
137972
|
+
created_at: string
|
|
137554
137973
|
}[]
|
|
137555
137974
|
/** Warnings associated with the [entrance](https://docs.seam.co/low-level-apis/access-systems/retrieving-entrance-details). */
|
|
137556
137975
|
warnings: (
|
|
@@ -138720,6 +139139,8 @@ export type Routes = {
|
|
|
138720
139139
|
errors: {
|
|
138721
139140
|
error_code: string
|
|
138722
139141
|
message: string
|
|
139142
|
+
/** Date and time at which Seam created the error. */
|
|
139143
|
+
created_at: string
|
|
138723
139144
|
}[]
|
|
138724
139145
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
138725
139146
|
warnings: (
|
|
@@ -138912,6 +139333,8 @@ export type Routes = {
|
|
|
138912
139333
|
errors: {
|
|
138913
139334
|
error_code: string
|
|
138914
139335
|
message: string
|
|
139336
|
+
/** Date and time at which Seam created the error. */
|
|
139337
|
+
created_at: string
|
|
138915
139338
|
}[]
|
|
138916
139339
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
138917
139340
|
warnings: (
|
|
@@ -139183,6 +139606,8 @@ export type Routes = {
|
|
|
139183
139606
|
errors: {
|
|
139184
139607
|
error_code: string
|
|
139185
139608
|
message: string
|
|
139609
|
+
/** Date and time at which Seam created the error. */
|
|
139610
|
+
created_at: string
|
|
139186
139611
|
}[]
|
|
139187
139612
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
139188
139613
|
warnings: (
|
|
@@ -139363,6 +139788,8 @@ export type Routes = {
|
|
|
139363
139788
|
errors: {
|
|
139364
139789
|
error_code: string
|
|
139365
139790
|
message: string
|
|
139791
|
+
/** Date and time at which Seam created the error. */
|
|
139792
|
+
created_at: string
|
|
139366
139793
|
}[]
|
|
139367
139794
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
139368
139795
|
warnings: (
|
|
@@ -139629,6 +140056,8 @@ export type Routes = {
|
|
|
139629
140056
|
errors: {
|
|
139630
140057
|
error_code: string
|
|
139631
140058
|
message: string
|
|
140059
|
+
/** Date and time at which Seam created the error. */
|
|
140060
|
+
created_at: string
|
|
139632
140061
|
}[]
|
|
139633
140062
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
139634
140063
|
warnings: (
|
|
@@ -146053,6 +146482,8 @@ export type Routes = {
|
|
|
146053
146482
|
errors: {
|
|
146054
146483
|
error_code: string
|
|
146055
146484
|
message: string
|
|
146485
|
+
/** Date and time at which Seam created the error. */
|
|
146486
|
+
created_at: string
|
|
146056
146487
|
}[]
|
|
146057
146488
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
146058
146489
|
warnings: (
|
|
@@ -146225,6 +146656,8 @@ export type Routes = {
|
|
|
146225
146656
|
errors: {
|
|
146226
146657
|
error_code: string
|
|
146227
146658
|
message: string
|
|
146659
|
+
/** Date and time at which Seam created the error. */
|
|
146660
|
+
created_at: string
|
|
146228
146661
|
}[]
|
|
146229
146662
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
146230
146663
|
warnings: (
|
|
@@ -147270,6 +147703,8 @@ export type Routes = {
|
|
|
147270
147703
|
error_code: string
|
|
147271
147704
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
147272
147705
|
message: string
|
|
147706
|
+
/** Date and time at which Seam created the error. */
|
|
147707
|
+
created_at: string
|
|
147273
147708
|
}[]
|
|
147274
147709
|
}[]
|
|
147275
147710
|
| undefined
|
|
@@ -147645,6 +148080,8 @@ export type Routes = {
|
|
|
147645
148080
|
errors: {
|
|
147646
148081
|
error_code: string
|
|
147647
148082
|
message: string
|
|
148083
|
+
/** Date and time at which Seam created the error. */
|
|
148084
|
+
created_at: string
|
|
147648
148085
|
}[]
|
|
147649
148086
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
147650
148087
|
warnings: (
|
|
@@ -147825,6 +148262,8 @@ export type Routes = {
|
|
|
147825
148262
|
errors: {
|
|
147826
148263
|
error_code: string
|
|
147827
148264
|
message: string
|
|
148265
|
+
/** Date and time at which Seam created the error. */
|
|
148266
|
+
created_at: string
|
|
147828
148267
|
}[]
|
|
147829
148268
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
147830
148269
|
warnings: (
|
|
@@ -148080,6 +148519,8 @@ export type Routes = {
|
|
|
148080
148519
|
errors: {
|
|
148081
148520
|
error_code: string
|
|
148082
148521
|
message: string
|
|
148522
|
+
/** Date and time at which Seam created the error. */
|
|
148523
|
+
created_at: string
|
|
148083
148524
|
}[]
|
|
148084
148525
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
148085
148526
|
warnings: (
|
|
@@ -148256,6 +148697,8 @@ export type Routes = {
|
|
|
148256
148697
|
errors: {
|
|
148257
148698
|
error_code: string
|
|
148258
148699
|
message: string
|
|
148700
|
+
/** Date and time at which Seam created the error. */
|
|
148701
|
+
created_at: string
|
|
148259
148702
|
}[]
|
|
148260
148703
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
148261
148704
|
warnings: (
|
|
@@ -148522,6 +148965,8 @@ export type Routes = {
|
|
|
148522
148965
|
errors: {
|
|
148523
148966
|
error_code: string
|
|
148524
148967
|
message: string
|
|
148968
|
+
/** Date and time at which Seam created the error. */
|
|
148969
|
+
created_at: string
|
|
148525
148970
|
}[]
|
|
148526
148971
|
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
148527
148972
|
warnings: (
|