@seamapi/types 1.998.0 → 1.1000.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/lib/seam/connect/models/acs/acs-credential.d.ts +96 -0
- package/lib/seam/connect/models/acs/acs-credential.js +13 -0
- package/lib/seam/connect/models/acs/acs-credential.js.map +1 -1
- package/lib/seam/connect/models/action-attempts/action-attempt.d.ts +239 -0
- package/lib/seam/connect/models/action-attempts/encode-credential.d.ts +86 -0
- package/lib/seam/connect/models/action-attempts/scan-credential.d.ts +110 -0
- package/lib/seam/connect/models/action-attempts/scan-to-assign-credential.d.ts +43 -0
- package/lib/seam/connect/models/devices/device-metadata.d.ts +28 -0
- package/lib/seam/connect/models/devices/device-metadata.js +21 -0
- package/lib/seam/connect/models/devices/device-metadata.js.map +1 -1
- package/lib/seam/connect/models/devices/device-provider.d.ts +2 -1
- package/lib/seam/connect/models/devices/device-provider.js +2 -1
- package/lib/seam/connect/models/devices/device-provider.js.map +1 -1
- package/lib/seam/connect/models/devices/device-type.d.ts +1 -0
- package/lib/seam/connect/models/devices/device-type.js +1 -0
- package/lib/seam/connect/models/devices/device-type.js.map +1 -1
- package/lib/seam/connect/models/devices/device.d.ts +43 -3
- package/lib/seam/connect/models/devices/unmanaged-device.d.ts +31 -3
- package/lib/seam/connect/models/phones/phone-session.d.ts +98 -0
- package/lib/seam/connect/openapi.js +324 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +2356 -189
- package/package.json +1 -1
- package/src/lib/seam/connect/models/acs/acs-credential.ts +16 -0
- package/src/lib/seam/connect/models/devices/device-metadata.ts +22 -0
- package/src/lib/seam/connect/models/devices/device-provider.ts +2 -1
- package/src/lib/seam/connect/models/devices/device-type.ts +1 -0
- package/src/lib/seam/connect/openapi.ts +370 -0
- package/src/lib/seam/connect/route-types.ts +2794 -382
|
@@ -281,6 +281,17 @@ export type Routes = {
|
|
|
281
281
|
message: string;
|
|
282
282
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
283
283
|
warning_code: 'needs_to_be_reissued';
|
|
284
|
+
} | {
|
|
285
|
+
/** Date and time at which Seam created the warning. */
|
|
286
|
+
created_at: string;
|
|
287
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
288
|
+
message: string;
|
|
289
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
290
|
+
warning_code: 'requested_code_unavailable';
|
|
291
|
+
/** The originally requested PIN code that could not be used. */
|
|
292
|
+
original_code: string;
|
|
293
|
+
/** The PIN code that was assigned instead. */
|
|
294
|
+
new_code: string;
|
|
284
295
|
})[];
|
|
285
296
|
/** Indicates whether the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
286
297
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -420,6 +431,17 @@ export type Routes = {
|
|
|
420
431
|
message: string;
|
|
421
432
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
422
433
|
warning_code: 'needs_to_be_reissued';
|
|
434
|
+
} | {
|
|
435
|
+
/** Date and time at which Seam created the warning. */
|
|
436
|
+
created_at: string;
|
|
437
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
438
|
+
message: string;
|
|
439
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
440
|
+
warning_code: 'requested_code_unavailable';
|
|
441
|
+
/** The originally requested PIN code that could not be used. */
|
|
442
|
+
original_code: string;
|
|
443
|
+
/** The PIN code that was assigned instead. */
|
|
444
|
+
new_code: string;
|
|
423
445
|
})[];
|
|
424
446
|
/** Indicates whether the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
425
447
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -625,6 +647,17 @@ export type Routes = {
|
|
|
625
647
|
message: string;
|
|
626
648
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
627
649
|
warning_code: 'needs_to_be_reissued';
|
|
650
|
+
} | {
|
|
651
|
+
/** Date and time at which Seam created the warning. */
|
|
652
|
+
created_at: string;
|
|
653
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
654
|
+
message: string;
|
|
655
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
656
|
+
warning_code: 'requested_code_unavailable';
|
|
657
|
+
/** The originally requested PIN code that could not be used. */
|
|
658
|
+
original_code: string;
|
|
659
|
+
/** The PIN code that was assigned instead. */
|
|
660
|
+
new_code: string;
|
|
628
661
|
})[];
|
|
629
662
|
/** Indicates whether the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
630
663
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -764,6 +797,17 @@ export type Routes = {
|
|
|
764
797
|
message: string;
|
|
765
798
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
766
799
|
warning_code: 'needs_to_be_reissued';
|
|
800
|
+
} | {
|
|
801
|
+
/** Date and time at which Seam created the warning. */
|
|
802
|
+
created_at: string;
|
|
803
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
804
|
+
message: string;
|
|
805
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
806
|
+
warning_code: 'requested_code_unavailable';
|
|
807
|
+
/** The originally requested PIN code that could not be used. */
|
|
808
|
+
original_code: string;
|
|
809
|
+
/** The PIN code that was assigned instead. */
|
|
810
|
+
new_code: string;
|
|
767
811
|
})[];
|
|
768
812
|
/** Indicates whether the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
769
813
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -981,6 +1025,17 @@ export type Routes = {
|
|
|
981
1025
|
message: string;
|
|
982
1026
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
983
1027
|
warning_code: 'needs_to_be_reissued';
|
|
1028
|
+
} | {
|
|
1029
|
+
/** Date and time at which Seam created the warning. */
|
|
1030
|
+
created_at: string;
|
|
1031
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
1032
|
+
message: string;
|
|
1033
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
1034
|
+
warning_code: 'requested_code_unavailable';
|
|
1035
|
+
/** The originally requested PIN code that could not be used. */
|
|
1036
|
+
original_code: string;
|
|
1037
|
+
/** The PIN code that was assigned instead. */
|
|
1038
|
+
new_code: string;
|
|
984
1039
|
})[];
|
|
985
1040
|
/** Indicates whether the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
986
1041
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -2968,6 +3023,17 @@ export type Routes = {
|
|
|
2968
3023
|
message: string;
|
|
2969
3024
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
2970
3025
|
warning_code: 'needs_to_be_reissued';
|
|
3026
|
+
} | {
|
|
3027
|
+
/** Date and time at which Seam created the warning. */
|
|
3028
|
+
created_at: string;
|
|
3029
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
3030
|
+
message: string;
|
|
3031
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
3032
|
+
warning_code: 'requested_code_unavailable';
|
|
3033
|
+
/** The originally requested PIN code that could not be used. */
|
|
3034
|
+
original_code: string;
|
|
3035
|
+
/** The PIN code that was assigned instead. */
|
|
3036
|
+
new_code: string;
|
|
2971
3037
|
})[];
|
|
2972
3038
|
/** Indicates whether the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
2973
3039
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -3107,6 +3173,17 @@ export type Routes = {
|
|
|
3107
3173
|
message: string;
|
|
3108
3174
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
3109
3175
|
warning_code: 'needs_to_be_reissued';
|
|
3176
|
+
} | {
|
|
3177
|
+
/** Date and time at which Seam created the warning. */
|
|
3178
|
+
created_at: string;
|
|
3179
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
3180
|
+
message: string;
|
|
3181
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
3182
|
+
warning_code: 'requested_code_unavailable';
|
|
3183
|
+
/** The originally requested PIN code that could not be used. */
|
|
3184
|
+
original_code: string;
|
|
3185
|
+
/** The PIN code that was assigned instead. */
|
|
3186
|
+
new_code: string;
|
|
3110
3187
|
})[];
|
|
3111
3188
|
/** Indicates whether the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
3112
3189
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -3312,6 +3389,17 @@ export type Routes = {
|
|
|
3312
3389
|
message: string;
|
|
3313
3390
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
3314
3391
|
warning_code: 'needs_to_be_reissued';
|
|
3392
|
+
} | {
|
|
3393
|
+
/** Date and time at which Seam created the warning. */
|
|
3394
|
+
created_at: string;
|
|
3395
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
3396
|
+
message: string;
|
|
3397
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
3398
|
+
warning_code: 'requested_code_unavailable';
|
|
3399
|
+
/** The originally requested PIN code that could not be used. */
|
|
3400
|
+
original_code: string;
|
|
3401
|
+
/** The PIN code that was assigned instead. */
|
|
3402
|
+
new_code: string;
|
|
3315
3403
|
})[];
|
|
3316
3404
|
/** Indicates whether the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
3317
3405
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -3451,6 +3539,17 @@ export type Routes = {
|
|
|
3451
3539
|
message: string;
|
|
3452
3540
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
3453
3541
|
warning_code: 'needs_to_be_reissued';
|
|
3542
|
+
} | {
|
|
3543
|
+
/** Date and time at which Seam created the warning. */
|
|
3544
|
+
created_at: string;
|
|
3545
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
3546
|
+
message: string;
|
|
3547
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
3548
|
+
warning_code: 'requested_code_unavailable';
|
|
3549
|
+
/** The originally requested PIN code that could not be used. */
|
|
3550
|
+
original_code: string;
|
|
3551
|
+
/** The PIN code that was assigned instead. */
|
|
3552
|
+
new_code: string;
|
|
3454
3553
|
})[];
|
|
3455
3554
|
/** Indicates whether the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
3456
3555
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -3668,6 +3767,17 @@ export type Routes = {
|
|
|
3668
3767
|
message: string;
|
|
3669
3768
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
3670
3769
|
warning_code: 'needs_to_be_reissued';
|
|
3770
|
+
} | {
|
|
3771
|
+
/** Date and time at which Seam created the warning. */
|
|
3772
|
+
created_at: string;
|
|
3773
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
3774
|
+
message: string;
|
|
3775
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
3776
|
+
warning_code: 'requested_code_unavailable';
|
|
3777
|
+
/** The originally requested PIN code that could not be used. */
|
|
3778
|
+
original_code: string;
|
|
3779
|
+
/** The PIN code that was assigned instead. */
|
|
3780
|
+
new_code: string;
|
|
3671
3781
|
})[];
|
|
3672
3782
|
/** Indicates whether the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
3673
3783
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -7094,6 +7204,17 @@ export type Routes = {
|
|
|
7094
7204
|
message: string;
|
|
7095
7205
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
7096
7206
|
warning_code: 'needs_to_be_reissued';
|
|
7207
|
+
} | {
|
|
7208
|
+
/** Date and time at which Seam created the warning. */
|
|
7209
|
+
created_at: string;
|
|
7210
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
7211
|
+
message: string;
|
|
7212
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
7213
|
+
warning_code: 'requested_code_unavailable';
|
|
7214
|
+
/** The originally requested PIN code that could not be used. */
|
|
7215
|
+
original_code: string;
|
|
7216
|
+
/** The PIN code that was assigned instead. */
|
|
7217
|
+
new_code: string;
|
|
7097
7218
|
})[];
|
|
7098
7219
|
/** Indicates whether the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
7099
7220
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -7233,6 +7354,17 @@ export type Routes = {
|
|
|
7233
7354
|
message: string;
|
|
7234
7355
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
7235
7356
|
warning_code: 'needs_to_be_reissued';
|
|
7357
|
+
} | {
|
|
7358
|
+
/** Date and time at which Seam created the warning. */
|
|
7359
|
+
created_at: string;
|
|
7360
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
7361
|
+
message: string;
|
|
7362
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
7363
|
+
warning_code: 'requested_code_unavailable';
|
|
7364
|
+
/** The originally requested PIN code that could not be used. */
|
|
7365
|
+
original_code: string;
|
|
7366
|
+
/** The PIN code that was assigned instead. */
|
|
7367
|
+
new_code: string;
|
|
7236
7368
|
})[];
|
|
7237
7369
|
/** Indicates whether the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
7238
7370
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -7438,6 +7570,17 @@ export type Routes = {
|
|
|
7438
7570
|
message: string;
|
|
7439
7571
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
7440
7572
|
warning_code: 'needs_to_be_reissued';
|
|
7573
|
+
} | {
|
|
7574
|
+
/** Date and time at which Seam created the warning. */
|
|
7575
|
+
created_at: string;
|
|
7576
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
7577
|
+
message: string;
|
|
7578
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
7579
|
+
warning_code: 'requested_code_unavailable';
|
|
7580
|
+
/** The originally requested PIN code that could not be used. */
|
|
7581
|
+
original_code: string;
|
|
7582
|
+
/** The PIN code that was assigned instead. */
|
|
7583
|
+
new_code: string;
|
|
7441
7584
|
})[];
|
|
7442
7585
|
/** Indicates whether the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
7443
7586
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -7577,6 +7720,17 @@ export type Routes = {
|
|
|
7577
7720
|
message: string;
|
|
7578
7721
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
7579
7722
|
warning_code: 'needs_to_be_reissued';
|
|
7723
|
+
} | {
|
|
7724
|
+
/** Date and time at which Seam created the warning. */
|
|
7725
|
+
created_at: string;
|
|
7726
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
7727
|
+
message: string;
|
|
7728
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
7729
|
+
warning_code: 'requested_code_unavailable';
|
|
7730
|
+
/** The originally requested PIN code that could not be used. */
|
|
7731
|
+
original_code: string;
|
|
7732
|
+
/** The PIN code that was assigned instead. */
|
|
7733
|
+
new_code: string;
|
|
7580
7734
|
})[];
|
|
7581
7735
|
/** Indicates whether the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
7582
7736
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -7794,6 +7948,17 @@ export type Routes = {
|
|
|
7794
7948
|
message: string;
|
|
7795
7949
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
7796
7950
|
warning_code: 'needs_to_be_reissued';
|
|
7951
|
+
} | {
|
|
7952
|
+
/** Date and time at which Seam created the warning. */
|
|
7953
|
+
created_at: string;
|
|
7954
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
7955
|
+
message: string;
|
|
7956
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
7957
|
+
warning_code: 'requested_code_unavailable';
|
|
7958
|
+
/** The originally requested PIN code that could not be used. */
|
|
7959
|
+
original_code: string;
|
|
7960
|
+
/** The PIN code that was assigned instead. */
|
|
7961
|
+
new_code: string;
|
|
7797
7962
|
})[];
|
|
7798
7963
|
/** Indicates whether the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
7799
7964
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -9646,6 +9811,17 @@ export type Routes = {
|
|
|
9646
9811
|
message: string;
|
|
9647
9812
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
9648
9813
|
warning_code: 'needs_to_be_reissued';
|
|
9814
|
+
} | {
|
|
9815
|
+
/** Date and time at which Seam created the warning. */
|
|
9816
|
+
created_at: string;
|
|
9817
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
9818
|
+
message: string;
|
|
9819
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
9820
|
+
warning_code: 'requested_code_unavailable';
|
|
9821
|
+
/** The originally requested PIN code that could not be used. */
|
|
9822
|
+
original_code: string;
|
|
9823
|
+
/** The PIN code that was assigned instead. */
|
|
9824
|
+
new_code: string;
|
|
9649
9825
|
})[];
|
|
9650
9826
|
/** Indicates whether the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
9651
9827
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -9785,6 +9961,17 @@ export type Routes = {
|
|
|
9785
9961
|
message: string;
|
|
9786
9962
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
9787
9963
|
warning_code: 'needs_to_be_reissued';
|
|
9964
|
+
} | {
|
|
9965
|
+
/** Date and time at which Seam created the warning. */
|
|
9966
|
+
created_at: string;
|
|
9967
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
9968
|
+
message: string;
|
|
9969
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
9970
|
+
warning_code: 'requested_code_unavailable';
|
|
9971
|
+
/** The originally requested PIN code that could not be used. */
|
|
9972
|
+
original_code: string;
|
|
9973
|
+
/** The PIN code that was assigned instead. */
|
|
9974
|
+
new_code: string;
|
|
9788
9975
|
})[];
|
|
9789
9976
|
/** Indicates whether the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
9790
9977
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -9990,6 +10177,17 @@ export type Routes = {
|
|
|
9990
10177
|
message: string;
|
|
9991
10178
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
9992
10179
|
warning_code: 'needs_to_be_reissued';
|
|
10180
|
+
} | {
|
|
10181
|
+
/** Date and time at which Seam created the warning. */
|
|
10182
|
+
created_at: string;
|
|
10183
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
10184
|
+
message: string;
|
|
10185
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
10186
|
+
warning_code: 'requested_code_unavailable';
|
|
10187
|
+
/** The originally requested PIN code that could not be used. */
|
|
10188
|
+
original_code: string;
|
|
10189
|
+
/** The PIN code that was assigned instead. */
|
|
10190
|
+
new_code: string;
|
|
9993
10191
|
})[];
|
|
9994
10192
|
/** Indicates whether the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
9995
10193
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -10129,6 +10327,17 @@ export type Routes = {
|
|
|
10129
10327
|
message: string;
|
|
10130
10328
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
10131
10329
|
warning_code: 'needs_to_be_reissued';
|
|
10330
|
+
} | {
|
|
10331
|
+
/** Date and time at which Seam created the warning. */
|
|
10332
|
+
created_at: string;
|
|
10333
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
10334
|
+
message: string;
|
|
10335
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
10336
|
+
warning_code: 'requested_code_unavailable';
|
|
10337
|
+
/** The originally requested PIN code that could not be used. */
|
|
10338
|
+
original_code: string;
|
|
10339
|
+
/** The PIN code that was assigned instead. */
|
|
10340
|
+
new_code: string;
|
|
10132
10341
|
})[];
|
|
10133
10342
|
/** Indicates whether the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
10134
10343
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -10346,6 +10555,17 @@ export type Routes = {
|
|
|
10346
10555
|
message: string;
|
|
10347
10556
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
10348
10557
|
warning_code: 'needs_to_be_reissued';
|
|
10558
|
+
} | {
|
|
10559
|
+
/** Date and time at which Seam created the warning. */
|
|
10560
|
+
created_at: string;
|
|
10561
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
10562
|
+
message: string;
|
|
10563
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
10564
|
+
warning_code: 'requested_code_unavailable';
|
|
10565
|
+
/** The originally requested PIN code that could not be used. */
|
|
10566
|
+
original_code: string;
|
|
10567
|
+
/** The PIN code that was assigned instead. */
|
|
10568
|
+
new_code: string;
|
|
10349
10569
|
})[];
|
|
10350
10570
|
/** Indicates whether the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
10351
10571
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -11689,7 +11909,7 @@ export type Routes = {
|
|
|
11689
11909
|
/** ID of the device. */
|
|
11690
11910
|
device_id: string;
|
|
11691
11911
|
/** Type of the device. */
|
|
11692
|
-
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_lock' | 'kisi_lock' | 'aqara_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone') | 'ring_camera';
|
|
11912
|
+
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'yacan_lock' | 'keyincode_lock' | 'omnitec_lock' | 'kisi_lock' | 'aqara_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone') | 'ring_camera';
|
|
11693
11913
|
/** IDs of the spaces the device is in. */
|
|
11694
11914
|
space_ids: string[];
|
|
11695
11915
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -12320,6 +12540,17 @@ export type Routes = {
|
|
|
12320
12540
|
/** IANA timezone for the Ultraloq device. */
|
|
12321
12541
|
time_zone?: ((string | null) | undefined) | undefined;
|
|
12322
12542
|
} | undefined;
|
|
12543
|
+
/** Metadata for a Yacan device. */
|
|
12544
|
+
yacan_metadata?: {
|
|
12545
|
+
/** Device ID for a Yacan device. */
|
|
12546
|
+
device_id?: (string | undefined) | undefined;
|
|
12547
|
+
/** Device name for a Yacan device. */
|
|
12548
|
+
device_name?: (string | undefined) | undefined;
|
|
12549
|
+
/** Device type for a Yacan device. */
|
|
12550
|
+
device_type?: (string | undefined) | undefined;
|
|
12551
|
+
/** Serial number for a Yacan device. */
|
|
12552
|
+
serial_number?: (string | undefined) | undefined;
|
|
12553
|
+
} | undefined;
|
|
12323
12554
|
/** Metadata for a Ring device. */
|
|
12324
12555
|
ring_metadata?: {
|
|
12325
12556
|
/** Device ID for a Ring device. */
|
|
@@ -15153,6 +15384,17 @@ export type Routes = {
|
|
|
15153
15384
|
message: string;
|
|
15154
15385
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
15155
15386
|
warning_code: 'needs_to_be_reissued';
|
|
15387
|
+
} | {
|
|
15388
|
+
/** Date and time at which Seam created the warning. */
|
|
15389
|
+
created_at: string;
|
|
15390
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
15391
|
+
message: string;
|
|
15392
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
15393
|
+
warning_code: 'requested_code_unavailable';
|
|
15394
|
+
/** The originally requested PIN code that could not be used. */
|
|
15395
|
+
original_code: string;
|
|
15396
|
+
/** The PIN code that was assigned instead. */
|
|
15397
|
+
new_code: string;
|
|
15156
15398
|
})[];
|
|
15157
15399
|
/** Indicates whether the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
15158
15400
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -15292,6 +15534,17 @@ export type Routes = {
|
|
|
15292
15534
|
message: string;
|
|
15293
15535
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
15294
15536
|
warning_code: 'needs_to_be_reissued';
|
|
15537
|
+
} | {
|
|
15538
|
+
/** Date and time at which Seam created the warning. */
|
|
15539
|
+
created_at: string;
|
|
15540
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
15541
|
+
message: string;
|
|
15542
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
15543
|
+
warning_code: 'requested_code_unavailable';
|
|
15544
|
+
/** The originally requested PIN code that could not be used. */
|
|
15545
|
+
original_code: string;
|
|
15546
|
+
/** The PIN code that was assigned instead. */
|
|
15547
|
+
new_code: string;
|
|
15295
15548
|
})[];
|
|
15296
15549
|
/** Indicates whether the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
15297
15550
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -15497,6 +15750,17 @@ export type Routes = {
|
|
|
15497
15750
|
message: string;
|
|
15498
15751
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
15499
15752
|
warning_code: 'needs_to_be_reissued';
|
|
15753
|
+
} | {
|
|
15754
|
+
/** Date and time at which Seam created the warning. */
|
|
15755
|
+
created_at: string;
|
|
15756
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
15757
|
+
message: string;
|
|
15758
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
15759
|
+
warning_code: 'requested_code_unavailable';
|
|
15760
|
+
/** The originally requested PIN code that could not be used. */
|
|
15761
|
+
original_code: string;
|
|
15762
|
+
/** The PIN code that was assigned instead. */
|
|
15763
|
+
new_code: string;
|
|
15500
15764
|
})[];
|
|
15501
15765
|
/** Indicates whether the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
15502
15766
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -15636,6 +15900,17 @@ export type Routes = {
|
|
|
15636
15900
|
message: string;
|
|
15637
15901
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
15638
15902
|
warning_code: 'needs_to_be_reissued';
|
|
15903
|
+
} | {
|
|
15904
|
+
/** Date and time at which Seam created the warning. */
|
|
15905
|
+
created_at: string;
|
|
15906
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
15907
|
+
message: string;
|
|
15908
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
15909
|
+
warning_code: 'requested_code_unavailable';
|
|
15910
|
+
/** The originally requested PIN code that could not be used. */
|
|
15911
|
+
original_code: string;
|
|
15912
|
+
/** The PIN code that was assigned instead. */
|
|
15913
|
+
new_code: string;
|
|
15639
15914
|
})[];
|
|
15640
15915
|
/** Indicates whether the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
15641
15916
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -15853,6 +16128,17 @@ export type Routes = {
|
|
|
15853
16128
|
message: string;
|
|
15854
16129
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
15855
16130
|
warning_code: 'needs_to_be_reissued';
|
|
16131
|
+
} | {
|
|
16132
|
+
/** Date and time at which Seam created the warning. */
|
|
16133
|
+
created_at: string;
|
|
16134
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
16135
|
+
message: string;
|
|
16136
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
16137
|
+
warning_code: 'requested_code_unavailable';
|
|
16138
|
+
/** The originally requested PIN code that could not be used. */
|
|
16139
|
+
original_code: string;
|
|
16140
|
+
/** The PIN code that was assigned instead. */
|
|
16141
|
+
new_code: string;
|
|
15856
16142
|
})[];
|
|
15857
16143
|
/** Indicates whether the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
15858
16144
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -16913,6 +17199,17 @@ export type Routes = {
|
|
|
16913
17199
|
message: string;
|
|
16914
17200
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
16915
17201
|
warning_code: 'needs_to_be_reissued';
|
|
17202
|
+
} | {
|
|
17203
|
+
/** Date and time at which Seam created the warning. */
|
|
17204
|
+
created_at: string;
|
|
17205
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
17206
|
+
message: string;
|
|
17207
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
17208
|
+
warning_code: 'requested_code_unavailable';
|
|
17209
|
+
/** The originally requested PIN code that could not be used. */
|
|
17210
|
+
original_code: string;
|
|
17211
|
+
/** The PIN code that was assigned instead. */
|
|
17212
|
+
new_code: string;
|
|
16916
17213
|
})[];
|
|
16917
17214
|
/** Indicates whether the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
16918
17215
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -17052,6 +17349,17 @@ export type Routes = {
|
|
|
17052
17349
|
message: string;
|
|
17053
17350
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
17054
17351
|
warning_code: 'needs_to_be_reissued';
|
|
17352
|
+
} | {
|
|
17353
|
+
/** Date and time at which Seam created the warning. */
|
|
17354
|
+
created_at: string;
|
|
17355
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
17356
|
+
message: string;
|
|
17357
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
17358
|
+
warning_code: 'requested_code_unavailable';
|
|
17359
|
+
/** The originally requested PIN code that could not be used. */
|
|
17360
|
+
original_code: string;
|
|
17361
|
+
/** The PIN code that was assigned instead. */
|
|
17362
|
+
new_code: string;
|
|
17055
17363
|
})[];
|
|
17056
17364
|
/** Indicates whether the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
17057
17365
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -17257,6 +17565,17 @@ export type Routes = {
|
|
|
17257
17565
|
message: string;
|
|
17258
17566
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
17259
17567
|
warning_code: 'needs_to_be_reissued';
|
|
17568
|
+
} | {
|
|
17569
|
+
/** Date and time at which Seam created the warning. */
|
|
17570
|
+
created_at: string;
|
|
17571
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
17572
|
+
message: string;
|
|
17573
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
17574
|
+
warning_code: 'requested_code_unavailable';
|
|
17575
|
+
/** The originally requested PIN code that could not be used. */
|
|
17576
|
+
original_code: string;
|
|
17577
|
+
/** The PIN code that was assigned instead. */
|
|
17578
|
+
new_code: string;
|
|
17260
17579
|
})[];
|
|
17261
17580
|
/** Indicates whether the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
17262
17581
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -17396,6 +17715,17 @@ export type Routes = {
|
|
|
17396
17715
|
message: string;
|
|
17397
17716
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
17398
17717
|
warning_code: 'needs_to_be_reissued';
|
|
17718
|
+
} | {
|
|
17719
|
+
/** Date and time at which Seam created the warning. */
|
|
17720
|
+
created_at: string;
|
|
17721
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
17722
|
+
message: string;
|
|
17723
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
17724
|
+
warning_code: 'requested_code_unavailable';
|
|
17725
|
+
/** The originally requested PIN code that could not be used. */
|
|
17726
|
+
original_code: string;
|
|
17727
|
+
/** The PIN code that was assigned instead. */
|
|
17728
|
+
new_code: string;
|
|
17399
17729
|
})[];
|
|
17400
17730
|
/** Indicates whether the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
17401
17731
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -17613,6 +17943,17 @@ export type Routes = {
|
|
|
17613
17943
|
message: string;
|
|
17614
17944
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
17615
17945
|
warning_code: 'needs_to_be_reissued';
|
|
17946
|
+
} | {
|
|
17947
|
+
/** Date and time at which Seam created the warning. */
|
|
17948
|
+
created_at: string;
|
|
17949
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
17950
|
+
message: string;
|
|
17951
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
17952
|
+
warning_code: 'requested_code_unavailable';
|
|
17953
|
+
/** The originally requested PIN code that could not be used. */
|
|
17954
|
+
original_code: string;
|
|
17955
|
+
/** The PIN code that was assigned instead. */
|
|
17956
|
+
new_code: string;
|
|
17616
17957
|
})[];
|
|
17617
17958
|
/** Indicates whether the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
17618
17959
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -18614,7 +18955,7 @@ export type Routes = {
|
|
|
18614
18955
|
/** ID of the device. */
|
|
18615
18956
|
device_id: string;
|
|
18616
18957
|
/** Type of the device. */
|
|
18617
|
-
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_lock' | 'kisi_lock' | 'aqara_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone') | 'ring_camera';
|
|
18958
|
+
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'yacan_lock' | 'keyincode_lock' | 'omnitec_lock' | 'kisi_lock' | 'aqara_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone') | 'ring_camera';
|
|
18618
18959
|
/** IDs of the spaces the device is in. */
|
|
18619
18960
|
space_ids: string[];
|
|
18620
18961
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -19245,6 +19586,17 @@ export type Routes = {
|
|
|
19245
19586
|
/** IANA timezone for the Ultraloq device. */
|
|
19246
19587
|
time_zone?: ((string | null) | undefined) | undefined;
|
|
19247
19588
|
} | undefined;
|
|
19589
|
+
/** Metadata for a Yacan device. */
|
|
19590
|
+
yacan_metadata?: {
|
|
19591
|
+
/** Device ID for a Yacan device. */
|
|
19592
|
+
device_id?: (string | undefined) | undefined;
|
|
19593
|
+
/** Device name for a Yacan device. */
|
|
19594
|
+
device_name?: (string | undefined) | undefined;
|
|
19595
|
+
/** Device type for a Yacan device. */
|
|
19596
|
+
device_type?: (string | undefined) | undefined;
|
|
19597
|
+
/** Serial number for a Yacan device. */
|
|
19598
|
+
serial_number?: (string | undefined) | undefined;
|
|
19599
|
+
} | undefined;
|
|
19248
19600
|
/** Metadata for a Ring device. */
|
|
19249
19601
|
ring_metadata?: {
|
|
19250
19602
|
/** Device ID for a Ring device. */
|
|
@@ -20748,6 +21100,17 @@ export type Routes = {
|
|
|
20748
21100
|
message: string;
|
|
20749
21101
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
20750
21102
|
warning_code: 'needs_to_be_reissued';
|
|
21103
|
+
} | {
|
|
21104
|
+
/** Date and time at which Seam created the warning. */
|
|
21105
|
+
created_at: string;
|
|
21106
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
21107
|
+
message: string;
|
|
21108
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
21109
|
+
warning_code: 'requested_code_unavailable';
|
|
21110
|
+
/** The originally requested PIN code that could not be used. */
|
|
21111
|
+
original_code: string;
|
|
21112
|
+
/** The PIN code that was assigned instead. */
|
|
21113
|
+
new_code: string;
|
|
20751
21114
|
})[];
|
|
20752
21115
|
/** Indicates whether the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
20753
21116
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -21214,6 +21577,17 @@ export type Routes = {
|
|
|
21214
21577
|
message: string;
|
|
21215
21578
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
21216
21579
|
warning_code: 'needs_to_be_reissued';
|
|
21580
|
+
} | {
|
|
21581
|
+
/** Date and time at which Seam created the warning. */
|
|
21582
|
+
created_at: string;
|
|
21583
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
21584
|
+
message: string;
|
|
21585
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
21586
|
+
warning_code: 'requested_code_unavailable';
|
|
21587
|
+
/** The originally requested PIN code that could not be used. */
|
|
21588
|
+
original_code: string;
|
|
21589
|
+
/** The PIN code that was assigned instead. */
|
|
21590
|
+
new_code: string;
|
|
21217
21591
|
})[];
|
|
21218
21592
|
/** Indicates whether the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
21219
21593
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -21353,6 +21727,17 @@ export type Routes = {
|
|
|
21353
21727
|
message: string;
|
|
21354
21728
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
21355
21729
|
warning_code: 'needs_to_be_reissued';
|
|
21730
|
+
} | {
|
|
21731
|
+
/** Date and time at which Seam created the warning. */
|
|
21732
|
+
created_at: string;
|
|
21733
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
21734
|
+
message: string;
|
|
21735
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
21736
|
+
warning_code: 'requested_code_unavailable';
|
|
21737
|
+
/** The originally requested PIN code that could not be used. */
|
|
21738
|
+
original_code: string;
|
|
21739
|
+
/** The PIN code that was assigned instead. */
|
|
21740
|
+
new_code: string;
|
|
21356
21741
|
})[];
|
|
21357
21742
|
/** Indicates whether the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
21358
21743
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -21558,6 +21943,17 @@ export type Routes = {
|
|
|
21558
21943
|
message: string;
|
|
21559
21944
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
21560
21945
|
warning_code: 'needs_to_be_reissued';
|
|
21946
|
+
} | {
|
|
21947
|
+
/** Date and time at which Seam created the warning. */
|
|
21948
|
+
created_at: string;
|
|
21949
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
21950
|
+
message: string;
|
|
21951
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
21952
|
+
warning_code: 'requested_code_unavailable';
|
|
21953
|
+
/** The originally requested PIN code that could not be used. */
|
|
21954
|
+
original_code: string;
|
|
21955
|
+
/** The PIN code that was assigned instead. */
|
|
21956
|
+
new_code: string;
|
|
21561
21957
|
})[];
|
|
21562
21958
|
/** Indicates whether the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
21563
21959
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -21697,6 +22093,17 @@ export type Routes = {
|
|
|
21697
22093
|
message: string;
|
|
21698
22094
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
21699
22095
|
warning_code: 'needs_to_be_reissued';
|
|
22096
|
+
} | {
|
|
22097
|
+
/** Date and time at which Seam created the warning. */
|
|
22098
|
+
created_at: string;
|
|
22099
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
22100
|
+
message: string;
|
|
22101
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
22102
|
+
warning_code: 'requested_code_unavailable';
|
|
22103
|
+
/** The originally requested PIN code that could not be used. */
|
|
22104
|
+
original_code: string;
|
|
22105
|
+
/** The PIN code that was assigned instead. */
|
|
22106
|
+
new_code: string;
|
|
21700
22107
|
})[];
|
|
21701
22108
|
/** Indicates whether the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
21702
22109
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -21914,6 +22321,17 @@ export type Routes = {
|
|
|
21914
22321
|
message: string;
|
|
21915
22322
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
21916
22323
|
warning_code: 'needs_to_be_reissued';
|
|
22324
|
+
} | {
|
|
22325
|
+
/** Date and time at which Seam created the warning. */
|
|
22326
|
+
created_at: string;
|
|
22327
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
22328
|
+
message: string;
|
|
22329
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
22330
|
+
warning_code: 'requested_code_unavailable';
|
|
22331
|
+
/** The originally requested PIN code that could not be used. */
|
|
22332
|
+
original_code: string;
|
|
22333
|
+
/** The PIN code that was assigned instead. */
|
|
22334
|
+
new_code: string;
|
|
21917
22335
|
})[];
|
|
21918
22336
|
/** Indicates whether the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
21919
22337
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -24438,6 +24856,17 @@ export type Routes = {
|
|
|
24438
24856
|
message: string;
|
|
24439
24857
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
24440
24858
|
warning_code: 'needs_to_be_reissued';
|
|
24859
|
+
} | {
|
|
24860
|
+
/** Date and time at which Seam created the warning. */
|
|
24861
|
+
created_at: string;
|
|
24862
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
24863
|
+
message: string;
|
|
24864
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
24865
|
+
warning_code: 'requested_code_unavailable';
|
|
24866
|
+
/** The originally requested PIN code that could not be used. */
|
|
24867
|
+
original_code: string;
|
|
24868
|
+
/** The PIN code that was assigned instead. */
|
|
24869
|
+
new_code: string;
|
|
24441
24870
|
})[];
|
|
24442
24871
|
/** Indicates whether the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
24443
24872
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -24650,6 +25079,17 @@ export type Routes = {
|
|
|
24650
25079
|
message: string;
|
|
24651
25080
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
24652
25081
|
warning_code: 'needs_to_be_reissued';
|
|
25082
|
+
} | {
|
|
25083
|
+
/** Date and time at which Seam created the warning. */
|
|
25084
|
+
created_at: string;
|
|
25085
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
25086
|
+
message: string;
|
|
25087
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
25088
|
+
warning_code: 'requested_code_unavailable';
|
|
25089
|
+
/** The originally requested PIN code that could not be used. */
|
|
25090
|
+
original_code: string;
|
|
25091
|
+
/** The PIN code that was assigned instead. */
|
|
25092
|
+
new_code: string;
|
|
24653
25093
|
})[];
|
|
24654
25094
|
/** Indicates whether the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
24655
25095
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -24819,6 +25259,17 @@ export type Routes = {
|
|
|
24819
25259
|
message: string;
|
|
24820
25260
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
24821
25261
|
warning_code: 'needs_to_be_reissued';
|
|
25262
|
+
} | {
|
|
25263
|
+
/** Date and time at which Seam created the warning. */
|
|
25264
|
+
created_at: string;
|
|
25265
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
25266
|
+
message: string;
|
|
25267
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
25268
|
+
warning_code: 'requested_code_unavailable';
|
|
25269
|
+
/** The originally requested PIN code that could not be used. */
|
|
25270
|
+
original_code: string;
|
|
25271
|
+
/** The PIN code that was assigned instead. */
|
|
25272
|
+
new_code: string;
|
|
24822
25273
|
})[];
|
|
24823
25274
|
/** Indicates whether the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
24824
25275
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -24993,6 +25444,17 @@ export type Routes = {
|
|
|
24993
25444
|
message: string;
|
|
24994
25445
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
24995
25446
|
warning_code: 'needs_to_be_reissued';
|
|
25447
|
+
} | {
|
|
25448
|
+
/** Date and time at which Seam created the warning. */
|
|
25449
|
+
created_at: string;
|
|
25450
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
25451
|
+
message: string;
|
|
25452
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
25453
|
+
warning_code: 'requested_code_unavailable';
|
|
25454
|
+
/** The originally requested PIN code that could not be used. */
|
|
25455
|
+
original_code: string;
|
|
25456
|
+
/** The PIN code that was assigned instead. */
|
|
25457
|
+
new_code: string;
|
|
24996
25458
|
})[];
|
|
24997
25459
|
/** Indicates whether the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
24998
25460
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -25169,6 +25631,17 @@ export type Routes = {
|
|
|
25169
25631
|
message: string;
|
|
25170
25632
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
25171
25633
|
warning_code: 'needs_to_be_reissued';
|
|
25634
|
+
} | {
|
|
25635
|
+
/** Date and time at which Seam created the warning. */
|
|
25636
|
+
created_at: string;
|
|
25637
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
25638
|
+
message: string;
|
|
25639
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
25640
|
+
warning_code: 'requested_code_unavailable';
|
|
25641
|
+
/** The originally requested PIN code that could not be used. */
|
|
25642
|
+
original_code: string;
|
|
25643
|
+
/** The PIN code that was assigned instead. */
|
|
25644
|
+
new_code: string;
|
|
25172
25645
|
})[];
|
|
25173
25646
|
/** Indicates whether the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
25174
25647
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -25562,6 +26035,17 @@ export type Routes = {
|
|
|
25562
26035
|
message: string;
|
|
25563
26036
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
25564
26037
|
warning_code: 'needs_to_be_reissued';
|
|
26038
|
+
} | {
|
|
26039
|
+
/** Date and time at which Seam created the warning. */
|
|
26040
|
+
created_at: string;
|
|
26041
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
26042
|
+
message: string;
|
|
26043
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
26044
|
+
warning_code: 'requested_code_unavailable';
|
|
26045
|
+
/** The originally requested PIN code that could not be used. */
|
|
26046
|
+
original_code: string;
|
|
26047
|
+
/** The PIN code that was assigned instead. */
|
|
26048
|
+
new_code: string;
|
|
25565
26049
|
})[];
|
|
25566
26050
|
/** Indicates whether the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
25567
26051
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -25717,6 +26201,17 @@ export type Routes = {
|
|
|
25717
26201
|
message: string;
|
|
25718
26202
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
25719
26203
|
warning_code: 'needs_to_be_reissued';
|
|
26204
|
+
} | {
|
|
26205
|
+
/** Date and time at which Seam created the warning. */
|
|
26206
|
+
created_at: string;
|
|
26207
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
26208
|
+
message: string;
|
|
26209
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
26210
|
+
warning_code: 'requested_code_unavailable';
|
|
26211
|
+
/** The originally requested PIN code that could not be used. */
|
|
26212
|
+
original_code: string;
|
|
26213
|
+
/** The PIN code that was assigned instead. */
|
|
26214
|
+
new_code: string;
|
|
25720
26215
|
})[];
|
|
25721
26216
|
/** Indicates whether the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
25722
26217
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -25884,170 +26379,192 @@ export type Routes = {
|
|
|
25884
26379
|
message: string;
|
|
25885
26380
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
25886
26381
|
warning_code: 'needs_to_be_reissued';
|
|
25887
|
-
})[];
|
|
25888
|
-
/** Indicates whether the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
25889
|
-
is_multi_phone_sync_credential?: boolean | undefined;
|
|
25890
|
-
/** Indicates whether the latest state of the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) has been synced from Seam to the provider. */
|
|
25891
|
-
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
25892
|
-
/** Date and time at which the state of the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) was most recently synced from Seam to the provider. */
|
|
25893
|
-
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
25894
|
-
/** Visionline-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
25895
|
-
visionline_metadata?: {
|
|
25896
|
-
/** Card function type in the Visionline access system. */
|
|
25897
|
-
card_function_type?: (('guest' | 'staff') | undefined) | undefined;
|
|
25898
|
-
/** IDs of the credentials to which you want to join. */
|
|
25899
|
-
joiner_acs_credential_ids?: (string[] | undefined) | undefined;
|
|
25900
|
-
/** Guest entrance IDs in the Visionline access system. */
|
|
25901
|
-
guest_acs_entrance_ids?: (string[] | undefined) | undefined;
|
|
25902
|
-
/** Common entrance IDs in the Visionline access system. */
|
|
25903
|
-
common_acs_entrance_ids?: (string[] | undefined) | undefined;
|
|
25904
|
-
/** Indicates whether the credential is valid. */
|
|
25905
|
-
is_valid?: (boolean | undefined) | undefined;
|
|
25906
|
-
/** Indicates whether the credential should auto-join. For an auto-join credential, Seam automatically issues an override card if there are no other cards and a joiner card if there are existing cards on the doors. */
|
|
25907
|
-
auto_join?: (boolean | undefined) | undefined;
|
|
25908
|
-
/** ID of the card in the Visionline access system. */
|
|
25909
|
-
card_id?: (string | undefined) | undefined;
|
|
25910
|
-
/** ID of the credential in the Visionline access system. */
|
|
25911
|
-
credential_id?: (string | undefined) | undefined;
|
|
25912
|
-
} | undefined;
|
|
25913
|
-
/** Vostio-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
25914
|
-
assa_abloy_vostio_metadata?: {
|
|
25915
|
-
/** Indicates whether the credential should auto-join. For an auto-join credential, Seam automatically issues an override card if there are no other cards and a joiner card if there are existing cards on the doors. */
|
|
25916
|
-
auto_join?: (boolean | undefined) | undefined;
|
|
25917
|
-
/** IDs of the guest entrances to override in the Vostio access system. */
|
|
25918
|
-
override_guest_acs_entrance_ids?: (string[] | undefined) | undefined;
|
|
25919
|
-
/** Key ID in the Vostio access system. */
|
|
25920
|
-
key_id?: (string | undefined) | undefined;
|
|
25921
|
-
/** Key issuing request ID in the Vostio access system. */
|
|
25922
|
-
key_issuing_request_id?: (string | undefined) | undefined;
|
|
25923
|
-
/** Names of the doors to which to grant access in the Vostio access system. */
|
|
25924
|
-
door_names?: (string[] | undefined) | undefined;
|
|
25925
|
-
/** Endpoint ID in the Vostio access system. */
|
|
25926
|
-
endpoint_id?: (string | undefined) | undefined;
|
|
25927
|
-
} | undefined;
|
|
25928
|
-
/** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
25929
|
-
akiles_metadata?: {
|
|
25930
|
-
/** ID of the Akiles member PIN. */
|
|
25931
|
-
member_pin_id?: (string | undefined) | undefined;
|
|
25932
|
-
} | undefined;
|
|
25933
|
-
is_managed: false;
|
|
25934
|
-
}[];
|
|
25935
|
-
};
|
|
25936
|
-
maxDuration: undefined;
|
|
25937
|
-
};
|
|
25938
|
-
'/acs/credentials/update': {
|
|
25939
|
-
route: '/acs/credentials/update';
|
|
25940
|
-
method: 'PATCH' | 'POST';
|
|
25941
|
-
queryParams: {};
|
|
25942
|
-
jsonBody: {
|
|
25943
|
-
/** ID of the credential that you want to update. */
|
|
25944
|
-
acs_credential_id: string;
|
|
25945
|
-
/** Replacement access (PIN) code for the credential that you want to update. */
|
|
25946
|
-
code?: string | undefined;
|
|
25947
|
-
/** Replacement date and time at which the validity of the credential ends, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. Must be a time in the future and after the `starts_at` value that you set when creating the credential. */
|
|
25948
|
-
ends_at?: string | undefined;
|
|
25949
|
-
};
|
|
25950
|
-
commonParams: {};
|
|
25951
|
-
formData: {};
|
|
25952
|
-
jsonResponse: {
|
|
25953
|
-
/** Means by which an [access control system user](https://docs.seam.co/low-level-apis/access-systems/user-management) gains access at an [entrance](https://docs.seam.co/low-level-apis/access-systems/retrieving-entrance-details). The `acs_credential` object represents a [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) that provides an ACS user access within an [access control system](https://docs.seam.co/low-level-apis/access-systems).
|
|
25954
|
-
|
|
25955
|
-
An access control system generally uses digital means of access to authorize a user trying to get through a specific entrance. Examples of credentials include plastic key cards, mobile keys, biometric identifiers, and PIN codes. The electronic nature of these credentials, as well as the fact that access is centralized, enables both the rapid provisioning and rescinding of access and the ability to compile access audit logs.
|
|
25956
|
-
|
|
25957
|
-
For each `acs_credential`, you define the access method. You can also specify additional properties, such as a PIN code, depending on the credential type.
|
|
25958
|
-
|
|
25959
|
-
For granting a person access to a space, [Access Grants](https://docs.seam.co/use-cases/granting-access) are the default and recommended approach. Use the lower-level ACS credential API directly only when you specifically need to manage individual credentials. */
|
|
25960
|
-
acs_credential: {
|
|
25961
|
-
/** ID of the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
25962
|
-
acs_credential_id: string;
|
|
25963
|
-
/** ID of the [ACS user](https://docs.seam.co/low-level-apis/access-systems/user-management) to whom the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
25964
|
-
acs_user_id?: string | undefined;
|
|
25965
|
-
/** ID of the [user identity](https://docs.seam.co/api/user_identities) to whom the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
25966
|
-
user_identity_id?: string | undefined;
|
|
25967
|
-
/** ID of the [connected account](https://docs.seam.co/core-concepts/connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
25968
|
-
connected_account_id: string;
|
|
25969
|
-
/** ID of the credential pool to which the credential belongs. */
|
|
25970
|
-
acs_credential_pool_id?: string | undefined;
|
|
25971
|
-
/** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
25972
|
-
acs_system_id: string;
|
|
25973
|
-
/** ID of the parent [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
25974
|
-
parent_acs_credential_id?: string | undefined;
|
|
25975
|
-
/** Display name that corresponds to the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) type. */
|
|
25976
|
-
display_name: string;
|
|
25977
|
-
/** Access (PIN) code for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
25978
|
-
code?: (string | undefined) | null;
|
|
25979
|
-
/** Indicates whether the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) can only be used once. If `true`, the code becomes invalid after the first use. */
|
|
25980
|
-
is_one_time_use?: boolean | undefined;
|
|
25981
|
-
/** Number of the card associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
25982
|
-
card_number?: (string | undefined) | null;
|
|
25983
|
-
/** Indicates whether the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) has been encoded onto a card. */
|
|
25984
|
-
is_issued?: boolean | undefined;
|
|
25985
|
-
/** Date and time at which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) was encoded onto a card. */
|
|
25986
|
-
issued_at?: (string | undefined) | null;
|
|
25987
|
-
/** Access method for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
25988
|
-
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
25989
|
-
/** Brand-specific terminology for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
25990
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access' | 'dormakaba_ambiance_credential' | 'hotek_card' | 'salto_ks_tag' | 'avigilon_alta_credential' | 'kisi_credential' | 'akiles_credential') | undefined;
|
|
25991
|
-
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) type. */
|
|
25992
|
-
external_type_display_name?: string | undefined;
|
|
25993
|
-
/** Date and time at which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) was created. */
|
|
25994
|
-
created_at: string;
|
|
25995
|
-
/** ID of the workspace that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
25996
|
-
workspace_id: string;
|
|
25997
|
-
/** Date and time at which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) validity starts, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
|
|
25998
|
-
starts_at?: string | undefined;
|
|
25999
|
-
/** Date and time at which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) validity ends, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. Must be a time in the future and after `starts_at`. */
|
|
26000
|
-
ends_at?: string | undefined;
|
|
26001
|
-
/** Errors associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
26002
|
-
errors: {
|
|
26003
|
-
error_code: string;
|
|
26004
|
-
message: string;
|
|
26005
|
-
/** Date and time at which Seam created the error. */
|
|
26006
|
-
created_at: string;
|
|
26007
|
-
}[];
|
|
26008
|
-
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
26009
|
-
warnings: ({
|
|
26010
|
-
/** Date and time at which Seam created the warning. */
|
|
26011
|
-
created_at: string;
|
|
26012
|
-
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
26013
|
-
message: string;
|
|
26014
|
-
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
26015
|
-
warning_code: 'waiting_to_be_issued';
|
|
26016
26382
|
} | {
|
|
26017
26383
|
/** Date and time at which Seam created the warning. */
|
|
26018
26384
|
created_at: string;
|
|
26019
26385
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
26020
26386
|
message: string;
|
|
26021
26387
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
26022
|
-
warning_code: '
|
|
26023
|
-
|
|
26024
|
-
|
|
26025
|
-
|
|
26026
|
-
|
|
26027
|
-
|
|
26028
|
-
|
|
26029
|
-
|
|
26030
|
-
|
|
26031
|
-
|
|
26032
|
-
|
|
26033
|
-
|
|
26034
|
-
|
|
26035
|
-
|
|
26036
|
-
|
|
26037
|
-
|
|
26038
|
-
/**
|
|
26039
|
-
|
|
26040
|
-
/**
|
|
26041
|
-
|
|
26042
|
-
/**
|
|
26043
|
-
|
|
26044
|
-
|
|
26045
|
-
|
|
26046
|
-
|
|
26047
|
-
|
|
26048
|
-
|
|
26049
|
-
|
|
26050
|
-
|
|
26388
|
+
warning_code: 'requested_code_unavailable';
|
|
26389
|
+
/** The originally requested PIN code that could not be used. */
|
|
26390
|
+
original_code: string;
|
|
26391
|
+
/** The PIN code that was assigned instead. */
|
|
26392
|
+
new_code: string;
|
|
26393
|
+
})[];
|
|
26394
|
+
/** Indicates whether the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
26395
|
+
is_multi_phone_sync_credential?: boolean | undefined;
|
|
26396
|
+
/** Indicates whether the latest state of the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) has been synced from Seam to the provider. */
|
|
26397
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
26398
|
+
/** Date and time at which the state of the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) was most recently synced from Seam to the provider. */
|
|
26399
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
26400
|
+
/** Visionline-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
26401
|
+
visionline_metadata?: {
|
|
26402
|
+
/** Card function type in the Visionline access system. */
|
|
26403
|
+
card_function_type?: (('guest' | 'staff') | undefined) | undefined;
|
|
26404
|
+
/** IDs of the credentials to which you want to join. */
|
|
26405
|
+
joiner_acs_credential_ids?: (string[] | undefined) | undefined;
|
|
26406
|
+
/** Guest entrance IDs in the Visionline access system. */
|
|
26407
|
+
guest_acs_entrance_ids?: (string[] | undefined) | undefined;
|
|
26408
|
+
/** Common entrance IDs in the Visionline access system. */
|
|
26409
|
+
common_acs_entrance_ids?: (string[] | undefined) | undefined;
|
|
26410
|
+
/** Indicates whether the credential is valid. */
|
|
26411
|
+
is_valid?: (boolean | undefined) | undefined;
|
|
26412
|
+
/** Indicates whether the credential should auto-join. For an auto-join credential, Seam automatically issues an override card if there are no other cards and a joiner card if there are existing cards on the doors. */
|
|
26413
|
+
auto_join?: (boolean | undefined) | undefined;
|
|
26414
|
+
/** ID of the card in the Visionline access system. */
|
|
26415
|
+
card_id?: (string | undefined) | undefined;
|
|
26416
|
+
/** ID of the credential in the Visionline access system. */
|
|
26417
|
+
credential_id?: (string | undefined) | undefined;
|
|
26418
|
+
} | undefined;
|
|
26419
|
+
/** Vostio-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
26420
|
+
assa_abloy_vostio_metadata?: {
|
|
26421
|
+
/** Indicates whether the credential should auto-join. For an auto-join credential, Seam automatically issues an override card if there are no other cards and a joiner card if there are existing cards on the doors. */
|
|
26422
|
+
auto_join?: (boolean | undefined) | undefined;
|
|
26423
|
+
/** IDs of the guest entrances to override in the Vostio access system. */
|
|
26424
|
+
override_guest_acs_entrance_ids?: (string[] | undefined) | undefined;
|
|
26425
|
+
/** Key ID in the Vostio access system. */
|
|
26426
|
+
key_id?: (string | undefined) | undefined;
|
|
26427
|
+
/** Key issuing request ID in the Vostio access system. */
|
|
26428
|
+
key_issuing_request_id?: (string | undefined) | undefined;
|
|
26429
|
+
/** Names of the doors to which to grant access in the Vostio access system. */
|
|
26430
|
+
door_names?: (string[] | undefined) | undefined;
|
|
26431
|
+
/** Endpoint ID in the Vostio access system. */
|
|
26432
|
+
endpoint_id?: (string | undefined) | undefined;
|
|
26433
|
+
} | undefined;
|
|
26434
|
+
/** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
26435
|
+
akiles_metadata?: {
|
|
26436
|
+
/** ID of the Akiles member PIN. */
|
|
26437
|
+
member_pin_id?: (string | undefined) | undefined;
|
|
26438
|
+
} | undefined;
|
|
26439
|
+
is_managed: false;
|
|
26440
|
+
}[];
|
|
26441
|
+
};
|
|
26442
|
+
maxDuration: undefined;
|
|
26443
|
+
};
|
|
26444
|
+
'/acs/credentials/update': {
|
|
26445
|
+
route: '/acs/credentials/update';
|
|
26446
|
+
method: 'PATCH' | 'POST';
|
|
26447
|
+
queryParams: {};
|
|
26448
|
+
jsonBody: {
|
|
26449
|
+
/** ID of the credential that you want to update. */
|
|
26450
|
+
acs_credential_id: string;
|
|
26451
|
+
/** Replacement access (PIN) code for the credential that you want to update. */
|
|
26452
|
+
code?: string | undefined;
|
|
26453
|
+
/** Replacement date and time at which the validity of the credential ends, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. Must be a time in the future and after the `starts_at` value that you set when creating the credential. */
|
|
26454
|
+
ends_at?: string | undefined;
|
|
26455
|
+
};
|
|
26456
|
+
commonParams: {};
|
|
26457
|
+
formData: {};
|
|
26458
|
+
jsonResponse: {
|
|
26459
|
+
/** Means by which an [access control system user](https://docs.seam.co/low-level-apis/access-systems/user-management) gains access at an [entrance](https://docs.seam.co/low-level-apis/access-systems/retrieving-entrance-details). The `acs_credential` object represents a [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) that provides an ACS user access within an [access control system](https://docs.seam.co/low-level-apis/access-systems).
|
|
26460
|
+
|
|
26461
|
+
An access control system generally uses digital means of access to authorize a user trying to get through a specific entrance. Examples of credentials include plastic key cards, mobile keys, biometric identifiers, and PIN codes. The electronic nature of these credentials, as well as the fact that access is centralized, enables both the rapid provisioning and rescinding of access and the ability to compile access audit logs.
|
|
26462
|
+
|
|
26463
|
+
For each `acs_credential`, you define the access method. You can also specify additional properties, such as a PIN code, depending on the credential type.
|
|
26464
|
+
|
|
26465
|
+
For granting a person access to a space, [Access Grants](https://docs.seam.co/use-cases/granting-access) are the default and recommended approach. Use the lower-level ACS credential API directly only when you specifically need to manage individual credentials. */
|
|
26466
|
+
acs_credential: {
|
|
26467
|
+
/** ID of the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
26468
|
+
acs_credential_id: string;
|
|
26469
|
+
/** ID of the [ACS user](https://docs.seam.co/low-level-apis/access-systems/user-management) to whom the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
26470
|
+
acs_user_id?: string | undefined;
|
|
26471
|
+
/** ID of the [user identity](https://docs.seam.co/api/user_identities) to whom the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
26472
|
+
user_identity_id?: string | undefined;
|
|
26473
|
+
/** ID of the [connected account](https://docs.seam.co/core-concepts/connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
26474
|
+
connected_account_id: string;
|
|
26475
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
26476
|
+
acs_credential_pool_id?: string | undefined;
|
|
26477
|
+
/** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
26478
|
+
acs_system_id: string;
|
|
26479
|
+
/** ID of the parent [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
26480
|
+
parent_acs_credential_id?: string | undefined;
|
|
26481
|
+
/** Display name that corresponds to the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) type. */
|
|
26482
|
+
display_name: string;
|
|
26483
|
+
/** Access (PIN) code for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
26484
|
+
code?: (string | undefined) | null;
|
|
26485
|
+
/** Indicates whether the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) can only be used once. If `true`, the code becomes invalid after the first use. */
|
|
26486
|
+
is_one_time_use?: boolean | undefined;
|
|
26487
|
+
/** Number of the card associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
26488
|
+
card_number?: (string | undefined) | null;
|
|
26489
|
+
/** Indicates whether the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) has been encoded onto a card. */
|
|
26490
|
+
is_issued?: boolean | undefined;
|
|
26491
|
+
/** Date and time at which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) was encoded onto a card. */
|
|
26492
|
+
issued_at?: (string | undefined) | null;
|
|
26493
|
+
/** Access method for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
26494
|
+
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
26495
|
+
/** Brand-specific terminology for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
26496
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access' | 'dormakaba_ambiance_credential' | 'hotek_card' | 'salto_ks_tag' | 'avigilon_alta_credential' | 'kisi_credential' | 'akiles_credential') | undefined;
|
|
26497
|
+
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) type. */
|
|
26498
|
+
external_type_display_name?: string | undefined;
|
|
26499
|
+
/** Date and time at which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) was created. */
|
|
26500
|
+
created_at: string;
|
|
26501
|
+
/** ID of the workspace that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
26502
|
+
workspace_id: string;
|
|
26503
|
+
/** Date and time at which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) validity starts, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
|
|
26504
|
+
starts_at?: string | undefined;
|
|
26505
|
+
/** Date and time at which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) validity ends, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. Must be a time in the future and after `starts_at`. */
|
|
26506
|
+
ends_at?: string | undefined;
|
|
26507
|
+
/** Errors associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
26508
|
+
errors: {
|
|
26509
|
+
error_code: string;
|
|
26510
|
+
message: string;
|
|
26511
|
+
/** Date and time at which Seam created the error. */
|
|
26512
|
+
created_at: string;
|
|
26513
|
+
}[];
|
|
26514
|
+
/** Warnings associated with the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
26515
|
+
warnings: ({
|
|
26516
|
+
/** Date and time at which Seam created the warning. */
|
|
26517
|
+
created_at: string;
|
|
26518
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
26519
|
+
message: string;
|
|
26520
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
26521
|
+
warning_code: 'waiting_to_be_issued';
|
|
26522
|
+
} | {
|
|
26523
|
+
/** Date and time at which Seam created the warning. */
|
|
26524
|
+
created_at: string;
|
|
26525
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
26526
|
+
message: string;
|
|
26527
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
26528
|
+
warning_code: 'schedule_externally_modified';
|
|
26529
|
+
} | {
|
|
26530
|
+
/** Date and time at which Seam created the warning. */
|
|
26531
|
+
created_at: string;
|
|
26532
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
26533
|
+
message: string;
|
|
26534
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
26535
|
+
warning_code: 'schedule_modified';
|
|
26536
|
+
} | {
|
|
26537
|
+
/** Date and time at which Seam created the warning. */
|
|
26538
|
+
created_at: string;
|
|
26539
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
26540
|
+
message: string;
|
|
26541
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
26542
|
+
warning_code: 'being_deleted';
|
|
26543
|
+
} | {
|
|
26544
|
+
/** Date and time at which Seam created the warning. */
|
|
26545
|
+
created_at: string;
|
|
26546
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
26547
|
+
message: string;
|
|
26548
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
26549
|
+
warning_code: 'unknown_issue_with_acs_credential';
|
|
26550
|
+
} | {
|
|
26551
|
+
/** Date and time at which Seam created the warning. */
|
|
26552
|
+
created_at: string;
|
|
26553
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
26554
|
+
message: string;
|
|
26555
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
26556
|
+
warning_code: 'needs_to_be_reissued';
|
|
26557
|
+
} | {
|
|
26558
|
+
/** Date and time at which Seam created the warning. */
|
|
26559
|
+
created_at: string;
|
|
26560
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
26561
|
+
message: string;
|
|
26562
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
26563
|
+
warning_code: 'requested_code_unavailable';
|
|
26564
|
+
/** The originally requested PIN code that could not be used. */
|
|
26565
|
+
original_code: string;
|
|
26566
|
+
/** The PIN code that was assigned instead. */
|
|
26567
|
+
new_code: string;
|
|
26051
26568
|
})[];
|
|
26052
26569
|
/** Indicates whether the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
26053
26570
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -26348,6 +26865,17 @@ export type Routes = {
|
|
|
26348
26865
|
message: string;
|
|
26349
26866
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
26350
26867
|
warning_code: 'needs_to_be_reissued';
|
|
26868
|
+
} | {
|
|
26869
|
+
/** Date and time at which Seam created the warning. */
|
|
26870
|
+
created_at: string;
|
|
26871
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
26872
|
+
message: string;
|
|
26873
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
26874
|
+
warning_code: 'requested_code_unavailable';
|
|
26875
|
+
/** The originally requested PIN code that could not be used. */
|
|
26876
|
+
original_code: string;
|
|
26877
|
+
/** The PIN code that was assigned instead. */
|
|
26878
|
+
new_code: string;
|
|
26351
26879
|
})[];
|
|
26352
26880
|
/** Indicates whether the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
26353
26881
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -26487,6 +27015,17 @@ export type Routes = {
|
|
|
26487
27015
|
message: string;
|
|
26488
27016
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
26489
27017
|
warning_code: 'needs_to_be_reissued';
|
|
27018
|
+
} | {
|
|
27019
|
+
/** Date and time at which Seam created the warning. */
|
|
27020
|
+
created_at: string;
|
|
27021
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
27022
|
+
message: string;
|
|
27023
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
27024
|
+
warning_code: 'requested_code_unavailable';
|
|
27025
|
+
/** The originally requested PIN code that could not be used. */
|
|
27026
|
+
original_code: string;
|
|
27027
|
+
/** The PIN code that was assigned instead. */
|
|
27028
|
+
new_code: string;
|
|
26490
27029
|
})[];
|
|
26491
27030
|
/** Indicates whether the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
26492
27031
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -26692,6 +27231,17 @@ export type Routes = {
|
|
|
26692
27231
|
message: string;
|
|
26693
27232
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
26694
27233
|
warning_code: 'needs_to_be_reissued';
|
|
27234
|
+
} | {
|
|
27235
|
+
/** Date and time at which Seam created the warning. */
|
|
27236
|
+
created_at: string;
|
|
27237
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
27238
|
+
message: string;
|
|
27239
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
27240
|
+
warning_code: 'requested_code_unavailable';
|
|
27241
|
+
/** The originally requested PIN code that could not be used. */
|
|
27242
|
+
original_code: string;
|
|
27243
|
+
/** The PIN code that was assigned instead. */
|
|
27244
|
+
new_code: string;
|
|
26695
27245
|
})[];
|
|
26696
27246
|
/** Indicates whether the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
26697
27247
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -26831,6 +27381,17 @@ export type Routes = {
|
|
|
26831
27381
|
message: string;
|
|
26832
27382
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
26833
27383
|
warning_code: 'needs_to_be_reissued';
|
|
27384
|
+
} | {
|
|
27385
|
+
/** Date and time at which Seam created the warning. */
|
|
27386
|
+
created_at: string;
|
|
27387
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
27388
|
+
message: string;
|
|
27389
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
27390
|
+
warning_code: 'requested_code_unavailable';
|
|
27391
|
+
/** The originally requested PIN code that could not be used. */
|
|
27392
|
+
original_code: string;
|
|
27393
|
+
/** The PIN code that was assigned instead. */
|
|
27394
|
+
new_code: string;
|
|
26834
27395
|
})[];
|
|
26835
27396
|
/** Indicates whether the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
26836
27397
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -27048,6 +27609,17 @@ export type Routes = {
|
|
|
27048
27609
|
message: string;
|
|
27049
27610
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
27050
27611
|
warning_code: 'needs_to_be_reissued';
|
|
27612
|
+
} | {
|
|
27613
|
+
/** Date and time at which Seam created the warning. */
|
|
27614
|
+
created_at: string;
|
|
27615
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
27616
|
+
message: string;
|
|
27617
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
27618
|
+
warning_code: 'requested_code_unavailable';
|
|
27619
|
+
/** The originally requested PIN code that could not be used. */
|
|
27620
|
+
original_code: string;
|
|
27621
|
+
/** The PIN code that was assigned instead. */
|
|
27622
|
+
new_code: string;
|
|
27051
27623
|
})[];
|
|
27052
27624
|
/** Indicates whether the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
27053
27625
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -28200,6 +28772,17 @@ export type Routes = {
|
|
|
28200
28772
|
message: string;
|
|
28201
28773
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
28202
28774
|
warning_code: 'needs_to_be_reissued';
|
|
28775
|
+
} | {
|
|
28776
|
+
/** Date and time at which Seam created the warning. */
|
|
28777
|
+
created_at: string;
|
|
28778
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
28779
|
+
message: string;
|
|
28780
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
28781
|
+
warning_code: 'requested_code_unavailable';
|
|
28782
|
+
/** The originally requested PIN code that could not be used. */
|
|
28783
|
+
original_code: string;
|
|
28784
|
+
/** The PIN code that was assigned instead. */
|
|
28785
|
+
new_code: string;
|
|
28203
28786
|
})[];
|
|
28204
28787
|
/** Indicates whether the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
28205
28788
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -28339,6 +28922,17 @@ export type Routes = {
|
|
|
28339
28922
|
message: string;
|
|
28340
28923
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
28341
28924
|
warning_code: 'needs_to_be_reissued';
|
|
28925
|
+
} | {
|
|
28926
|
+
/** Date and time at which Seam created the warning. */
|
|
28927
|
+
created_at: string;
|
|
28928
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
28929
|
+
message: string;
|
|
28930
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
28931
|
+
warning_code: 'requested_code_unavailable';
|
|
28932
|
+
/** The originally requested PIN code that could not be used. */
|
|
28933
|
+
original_code: string;
|
|
28934
|
+
/** The PIN code that was assigned instead. */
|
|
28935
|
+
new_code: string;
|
|
28342
28936
|
})[];
|
|
28343
28937
|
/** Indicates whether the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
28344
28938
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -28544,6 +29138,17 @@ export type Routes = {
|
|
|
28544
29138
|
message: string;
|
|
28545
29139
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
28546
29140
|
warning_code: 'needs_to_be_reissued';
|
|
29141
|
+
} | {
|
|
29142
|
+
/** Date and time at which Seam created the warning. */
|
|
29143
|
+
created_at: string;
|
|
29144
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
29145
|
+
message: string;
|
|
29146
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
29147
|
+
warning_code: 'requested_code_unavailable';
|
|
29148
|
+
/** The originally requested PIN code that could not be used. */
|
|
29149
|
+
original_code: string;
|
|
29150
|
+
/** The PIN code that was assigned instead. */
|
|
29151
|
+
new_code: string;
|
|
28547
29152
|
})[];
|
|
28548
29153
|
/** Indicates whether the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
28549
29154
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -28683,6 +29288,17 @@ export type Routes = {
|
|
|
28683
29288
|
message: string;
|
|
28684
29289
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
28685
29290
|
warning_code: 'needs_to_be_reissued';
|
|
29291
|
+
} | {
|
|
29292
|
+
/** Date and time at which Seam created the warning. */
|
|
29293
|
+
created_at: string;
|
|
29294
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
29295
|
+
message: string;
|
|
29296
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
29297
|
+
warning_code: 'requested_code_unavailable';
|
|
29298
|
+
/** The originally requested PIN code that could not be used. */
|
|
29299
|
+
original_code: string;
|
|
29300
|
+
/** The PIN code that was assigned instead. */
|
|
29301
|
+
new_code: string;
|
|
28686
29302
|
})[];
|
|
28687
29303
|
/** Indicates whether the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
28688
29304
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -28900,6 +29516,17 @@ export type Routes = {
|
|
|
28900
29516
|
message: string;
|
|
28901
29517
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
28902
29518
|
warning_code: 'needs_to_be_reissued';
|
|
29519
|
+
} | {
|
|
29520
|
+
/** Date and time at which Seam created the warning. */
|
|
29521
|
+
created_at: string;
|
|
29522
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
29523
|
+
message: string;
|
|
29524
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
29525
|
+
warning_code: 'requested_code_unavailable';
|
|
29526
|
+
/** The originally requested PIN code that could not be used. */
|
|
29527
|
+
original_code: string;
|
|
29528
|
+
/** The PIN code that was assigned instead. */
|
|
29529
|
+
new_code: string;
|
|
28903
29530
|
})[];
|
|
28904
29531
|
/** Indicates whether the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
28905
29532
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -29948,6 +30575,17 @@ export type Routes = {
|
|
|
29948
30575
|
message: string;
|
|
29949
30576
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
29950
30577
|
warning_code: 'needs_to_be_reissued';
|
|
30578
|
+
} | {
|
|
30579
|
+
/** Date and time at which Seam created the warning. */
|
|
30580
|
+
created_at: string;
|
|
30581
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
30582
|
+
message: string;
|
|
30583
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
30584
|
+
warning_code: 'requested_code_unavailable';
|
|
30585
|
+
/** The originally requested PIN code that could not be used. */
|
|
30586
|
+
original_code: string;
|
|
30587
|
+
/** The PIN code that was assigned instead. */
|
|
30588
|
+
new_code: string;
|
|
29951
30589
|
})[];
|
|
29952
30590
|
/** Indicates whether the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
29953
30591
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -30087,6 +30725,17 @@ export type Routes = {
|
|
|
30087
30725
|
message: string;
|
|
30088
30726
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
30089
30727
|
warning_code: 'needs_to_be_reissued';
|
|
30728
|
+
} | {
|
|
30729
|
+
/** Date and time at which Seam created the warning. */
|
|
30730
|
+
created_at: string;
|
|
30731
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
30732
|
+
message: string;
|
|
30733
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
30734
|
+
warning_code: 'requested_code_unavailable';
|
|
30735
|
+
/** The originally requested PIN code that could not be used. */
|
|
30736
|
+
original_code: string;
|
|
30737
|
+
/** The PIN code that was assigned instead. */
|
|
30738
|
+
new_code: string;
|
|
30090
30739
|
})[];
|
|
30091
30740
|
/** Indicates whether the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
30092
30741
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -30292,6 +30941,17 @@ export type Routes = {
|
|
|
30292
30941
|
message: string;
|
|
30293
30942
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
30294
30943
|
warning_code: 'needs_to_be_reissued';
|
|
30944
|
+
} | {
|
|
30945
|
+
/** Date and time at which Seam created the warning. */
|
|
30946
|
+
created_at: string;
|
|
30947
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
30948
|
+
message: string;
|
|
30949
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
30950
|
+
warning_code: 'requested_code_unavailable';
|
|
30951
|
+
/** The originally requested PIN code that could not be used. */
|
|
30952
|
+
original_code: string;
|
|
30953
|
+
/** The PIN code that was assigned instead. */
|
|
30954
|
+
new_code: string;
|
|
30295
30955
|
})[];
|
|
30296
30956
|
/** Indicates whether the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
30297
30957
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -30431,6 +31091,17 @@ export type Routes = {
|
|
|
30431
31091
|
message: string;
|
|
30432
31092
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
30433
31093
|
warning_code: 'needs_to_be_reissued';
|
|
31094
|
+
} | {
|
|
31095
|
+
/** Date and time at which Seam created the warning. */
|
|
31096
|
+
created_at: string;
|
|
31097
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
31098
|
+
message: string;
|
|
31099
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
31100
|
+
warning_code: 'requested_code_unavailable';
|
|
31101
|
+
/** The originally requested PIN code that could not be used. */
|
|
31102
|
+
original_code: string;
|
|
31103
|
+
/** The PIN code that was assigned instead. */
|
|
31104
|
+
new_code: string;
|
|
30434
31105
|
})[];
|
|
30435
31106
|
/** Indicates whether the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
30436
31107
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -30648,6 +31319,17 @@ export type Routes = {
|
|
|
30648
31319
|
message: string;
|
|
30649
31320
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
30650
31321
|
warning_code: 'needs_to_be_reissued';
|
|
31322
|
+
} | {
|
|
31323
|
+
/** Date and time at which Seam created the warning. */
|
|
31324
|
+
created_at: string;
|
|
31325
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
31326
|
+
message: string;
|
|
31327
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
31328
|
+
warning_code: 'requested_code_unavailable';
|
|
31329
|
+
/** The originally requested PIN code that could not be used. */
|
|
31330
|
+
original_code: string;
|
|
31331
|
+
/** The PIN code that was assigned instead. */
|
|
31332
|
+
new_code: string;
|
|
30651
31333
|
})[];
|
|
30652
31334
|
/** Indicates whether the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
30653
31335
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -32118,6 +32800,17 @@ export type Routes = {
|
|
|
32118
32800
|
message: string;
|
|
32119
32801
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
32120
32802
|
warning_code: 'needs_to_be_reissued';
|
|
32803
|
+
} | {
|
|
32804
|
+
/** Date and time at which Seam created the warning. */
|
|
32805
|
+
created_at: string;
|
|
32806
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
32807
|
+
message: string;
|
|
32808
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
32809
|
+
warning_code: 'requested_code_unavailable';
|
|
32810
|
+
/** The originally requested PIN code that could not be used. */
|
|
32811
|
+
original_code: string;
|
|
32812
|
+
/** The PIN code that was assigned instead. */
|
|
32813
|
+
new_code: string;
|
|
32121
32814
|
})[];
|
|
32122
32815
|
/** Indicates whether the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
32123
32816
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -32416,6 +33109,17 @@ export type Routes = {
|
|
|
32416
33109
|
message: string;
|
|
32417
33110
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
32418
33111
|
warning_code: 'needs_to_be_reissued';
|
|
33112
|
+
} | {
|
|
33113
|
+
/** Date and time at which Seam created the warning. */
|
|
33114
|
+
created_at: string;
|
|
33115
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
33116
|
+
message: string;
|
|
33117
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
33118
|
+
warning_code: 'requested_code_unavailable';
|
|
33119
|
+
/** The originally requested PIN code that could not be used. */
|
|
33120
|
+
original_code: string;
|
|
33121
|
+
/** The PIN code that was assigned instead. */
|
|
33122
|
+
new_code: string;
|
|
32419
33123
|
})[];
|
|
32420
33124
|
/** Indicates whether the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
32421
33125
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -32555,6 +33259,17 @@ export type Routes = {
|
|
|
32555
33259
|
message: string;
|
|
32556
33260
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
32557
33261
|
warning_code: 'needs_to_be_reissued';
|
|
33262
|
+
} | {
|
|
33263
|
+
/** Date and time at which Seam created the warning. */
|
|
33264
|
+
created_at: string;
|
|
33265
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
33266
|
+
message: string;
|
|
33267
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
33268
|
+
warning_code: 'requested_code_unavailable';
|
|
33269
|
+
/** The originally requested PIN code that could not be used. */
|
|
33270
|
+
original_code: string;
|
|
33271
|
+
/** The PIN code that was assigned instead. */
|
|
33272
|
+
new_code: string;
|
|
32558
33273
|
})[];
|
|
32559
33274
|
/** Indicates whether the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
32560
33275
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -32760,6 +33475,17 @@ export type Routes = {
|
|
|
32760
33475
|
message: string;
|
|
32761
33476
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
32762
33477
|
warning_code: 'needs_to_be_reissued';
|
|
33478
|
+
} | {
|
|
33479
|
+
/** Date and time at which Seam created the warning. */
|
|
33480
|
+
created_at: string;
|
|
33481
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
33482
|
+
message: string;
|
|
33483
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
33484
|
+
warning_code: 'requested_code_unavailable';
|
|
33485
|
+
/** The originally requested PIN code that could not be used. */
|
|
33486
|
+
original_code: string;
|
|
33487
|
+
/** The PIN code that was assigned instead. */
|
|
33488
|
+
new_code: string;
|
|
32763
33489
|
})[];
|
|
32764
33490
|
/** Indicates whether the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
32765
33491
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -32899,6 +33625,17 @@ export type Routes = {
|
|
|
32899
33625
|
message: string;
|
|
32900
33626
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
32901
33627
|
warning_code: 'needs_to_be_reissued';
|
|
33628
|
+
} | {
|
|
33629
|
+
/** Date and time at which Seam created the warning. */
|
|
33630
|
+
created_at: string;
|
|
33631
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
33632
|
+
message: string;
|
|
33633
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
33634
|
+
warning_code: 'requested_code_unavailable';
|
|
33635
|
+
/** The originally requested PIN code that could not be used. */
|
|
33636
|
+
original_code: string;
|
|
33637
|
+
/** The PIN code that was assigned instead. */
|
|
33638
|
+
new_code: string;
|
|
32902
33639
|
})[];
|
|
32903
33640
|
/** Indicates whether the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
32904
33641
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -33116,6 +33853,17 @@ export type Routes = {
|
|
|
33116
33853
|
message: string;
|
|
33117
33854
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
33118
33855
|
warning_code: 'needs_to_be_reissued';
|
|
33856
|
+
} | {
|
|
33857
|
+
/** Date and time at which Seam created the warning. */
|
|
33858
|
+
created_at: string;
|
|
33859
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
33860
|
+
message: string;
|
|
33861
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
33862
|
+
warning_code: 'requested_code_unavailable';
|
|
33863
|
+
/** The originally requested PIN code that could not be used. */
|
|
33864
|
+
original_code: string;
|
|
33865
|
+
/** The PIN code that was assigned instead. */
|
|
33866
|
+
new_code: string;
|
|
33119
33867
|
})[];
|
|
33120
33868
|
/** Indicates whether the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
33121
33869
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -36514,6 +37262,17 @@ export type Routes = {
|
|
|
36514
37262
|
message: string;
|
|
36515
37263
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
36516
37264
|
warning_code: 'needs_to_be_reissued';
|
|
37265
|
+
} | {
|
|
37266
|
+
/** Date and time at which Seam created the warning. */
|
|
37267
|
+
created_at: string;
|
|
37268
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
37269
|
+
message: string;
|
|
37270
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
37271
|
+
warning_code: 'requested_code_unavailable';
|
|
37272
|
+
/** The originally requested PIN code that could not be used. */
|
|
37273
|
+
original_code: string;
|
|
37274
|
+
/** The PIN code that was assigned instead. */
|
|
37275
|
+
new_code: string;
|
|
36517
37276
|
})[];
|
|
36518
37277
|
/** Indicates whether the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
36519
37278
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -36653,6 +37412,17 @@ export type Routes = {
|
|
|
36653
37412
|
message: string;
|
|
36654
37413
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
36655
37414
|
warning_code: 'needs_to_be_reissued';
|
|
37415
|
+
} | {
|
|
37416
|
+
/** Date and time at which Seam created the warning. */
|
|
37417
|
+
created_at: string;
|
|
37418
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
37419
|
+
message: string;
|
|
37420
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
37421
|
+
warning_code: 'requested_code_unavailable';
|
|
37422
|
+
/** The originally requested PIN code that could not be used. */
|
|
37423
|
+
original_code: string;
|
|
37424
|
+
/** The PIN code that was assigned instead. */
|
|
37425
|
+
new_code: string;
|
|
36656
37426
|
})[];
|
|
36657
37427
|
/** Indicates whether the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
36658
37428
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -36858,6 +37628,17 @@ export type Routes = {
|
|
|
36858
37628
|
message: string;
|
|
36859
37629
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
36860
37630
|
warning_code: 'needs_to_be_reissued';
|
|
37631
|
+
} | {
|
|
37632
|
+
/** Date and time at which Seam created the warning. */
|
|
37633
|
+
created_at: string;
|
|
37634
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
37635
|
+
message: string;
|
|
37636
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
37637
|
+
warning_code: 'requested_code_unavailable';
|
|
37638
|
+
/** The originally requested PIN code that could not be used. */
|
|
37639
|
+
original_code: string;
|
|
37640
|
+
/** The PIN code that was assigned instead. */
|
|
37641
|
+
new_code: string;
|
|
36861
37642
|
})[];
|
|
36862
37643
|
/** Indicates whether the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
36863
37644
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -36997,6 +37778,17 @@ export type Routes = {
|
|
|
36997
37778
|
message: string;
|
|
36998
37779
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
36999
37780
|
warning_code: 'needs_to_be_reissued';
|
|
37781
|
+
} | {
|
|
37782
|
+
/** Date and time at which Seam created the warning. */
|
|
37783
|
+
created_at: string;
|
|
37784
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
37785
|
+
message: string;
|
|
37786
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
37787
|
+
warning_code: 'requested_code_unavailable';
|
|
37788
|
+
/** The originally requested PIN code that could not be used. */
|
|
37789
|
+
original_code: string;
|
|
37790
|
+
/** The PIN code that was assigned instead. */
|
|
37791
|
+
new_code: string;
|
|
37000
37792
|
})[];
|
|
37001
37793
|
/** Indicates whether the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
37002
37794
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -37214,6 +38006,17 @@ export type Routes = {
|
|
|
37214
38006
|
message: string;
|
|
37215
38007
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
37216
38008
|
warning_code: 'needs_to_be_reissued';
|
|
38009
|
+
} | {
|
|
38010
|
+
/** Date and time at which Seam created the warning. */
|
|
38011
|
+
created_at: string;
|
|
38012
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
38013
|
+
message: string;
|
|
38014
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
38015
|
+
warning_code: 'requested_code_unavailable';
|
|
38016
|
+
/** The originally requested PIN code that could not be used. */
|
|
38017
|
+
original_code: string;
|
|
38018
|
+
/** The PIN code that was assigned instead. */
|
|
38019
|
+
new_code: string;
|
|
37217
38020
|
})[];
|
|
37218
38021
|
/** Indicates whether the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
37219
38022
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -38254,6 +39057,17 @@ export type Routes = {
|
|
|
38254
39057
|
message: string;
|
|
38255
39058
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
38256
39059
|
warning_code: 'needs_to_be_reissued';
|
|
39060
|
+
} | {
|
|
39061
|
+
/** Date and time at which Seam created the warning. */
|
|
39062
|
+
created_at: string;
|
|
39063
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
39064
|
+
message: string;
|
|
39065
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
39066
|
+
warning_code: 'requested_code_unavailable';
|
|
39067
|
+
/** The originally requested PIN code that could not be used. */
|
|
39068
|
+
original_code: string;
|
|
39069
|
+
/** The PIN code that was assigned instead. */
|
|
39070
|
+
new_code: string;
|
|
38257
39071
|
})[];
|
|
38258
39072
|
/** Indicates whether the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
38259
39073
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -38393,6 +39207,17 @@ export type Routes = {
|
|
|
38393
39207
|
message: string;
|
|
38394
39208
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
38395
39209
|
warning_code: 'needs_to_be_reissued';
|
|
39210
|
+
} | {
|
|
39211
|
+
/** Date and time at which Seam created the warning. */
|
|
39212
|
+
created_at: string;
|
|
39213
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
39214
|
+
message: string;
|
|
39215
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
39216
|
+
warning_code: 'requested_code_unavailable';
|
|
39217
|
+
/** The originally requested PIN code that could not be used. */
|
|
39218
|
+
original_code: string;
|
|
39219
|
+
/** The PIN code that was assigned instead. */
|
|
39220
|
+
new_code: string;
|
|
38396
39221
|
})[];
|
|
38397
39222
|
/** Indicates whether the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
38398
39223
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -38598,6 +39423,17 @@ export type Routes = {
|
|
|
38598
39423
|
message: string;
|
|
38599
39424
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
38600
39425
|
warning_code: 'needs_to_be_reissued';
|
|
39426
|
+
} | {
|
|
39427
|
+
/** Date and time at which Seam created the warning. */
|
|
39428
|
+
created_at: string;
|
|
39429
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
39430
|
+
message: string;
|
|
39431
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
39432
|
+
warning_code: 'requested_code_unavailable';
|
|
39433
|
+
/** The originally requested PIN code that could not be used. */
|
|
39434
|
+
original_code: string;
|
|
39435
|
+
/** The PIN code that was assigned instead. */
|
|
39436
|
+
new_code: string;
|
|
38601
39437
|
})[];
|
|
38602
39438
|
/** Indicates whether the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
38603
39439
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -38737,6 +39573,17 @@ export type Routes = {
|
|
|
38737
39573
|
message: string;
|
|
38738
39574
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
38739
39575
|
warning_code: 'needs_to_be_reissued';
|
|
39576
|
+
} | {
|
|
39577
|
+
/** Date and time at which Seam created the warning. */
|
|
39578
|
+
created_at: string;
|
|
39579
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
39580
|
+
message: string;
|
|
39581
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
39582
|
+
warning_code: 'requested_code_unavailable';
|
|
39583
|
+
/** The originally requested PIN code that could not be used. */
|
|
39584
|
+
original_code: string;
|
|
39585
|
+
/** The PIN code that was assigned instead. */
|
|
39586
|
+
new_code: string;
|
|
38740
39587
|
})[];
|
|
38741
39588
|
/** Indicates whether the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
38742
39589
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -38954,6 +39801,17 @@ export type Routes = {
|
|
|
38954
39801
|
message: string;
|
|
38955
39802
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
38956
39803
|
warning_code: 'needs_to_be_reissued';
|
|
39804
|
+
} | {
|
|
39805
|
+
/** Date and time at which Seam created the warning. */
|
|
39806
|
+
created_at: string;
|
|
39807
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
39808
|
+
message: string;
|
|
39809
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
39810
|
+
warning_code: 'requested_code_unavailable';
|
|
39811
|
+
/** The originally requested PIN code that could not be used. */
|
|
39812
|
+
original_code: string;
|
|
39813
|
+
/** The PIN code that was assigned instead. */
|
|
39814
|
+
new_code: string;
|
|
38957
39815
|
})[];
|
|
38958
39816
|
/** Indicates whether the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
38959
39817
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -40128,7 +40986,7 @@ export type Routes = {
|
|
|
40128
40986
|
/** Associate the Connect Webview, the connected account, and all resources under the connected account with a customer. If the connected account already exists, it will be associated with the customer. If the connected account already exists, but is already associated with a customer, the Connect Webview will show an error. */
|
|
40129
40987
|
customer_key?: string | undefined;
|
|
40130
40988
|
/** Accepted device provider keys as an alternative to `provider_category`. Use this parameter to specify accepted providers explicitly. See [Customize the Brands to Display in Your Connect Webviews](https://docs.seam.co/core-concepts/connect-webviews/customizing-connect-webviews#customize-the-brands-to-display-in-your-connect-webviews). To list all provider keys, use [`/devices/list_device_providers`](https://docs.seam.co/api/devices/list_device_providers) with no filters. */
|
|
40131
|
-
accepted_providers?: ('hotek' | 'dormakaba_community' | 'legic_connect' | 'akuvox' | 'august' | 'avigilon_alta' | 'brivo' | 'butterflymx' | 'schlage' | 'smartthings' | 'yale' | 'genie' | 'doorking' | 'salto' | 'salto_ks' | 'salto_ks_accept' | 'lockly' | 'ttlock' | 'linear' | 'noiseaware' | 'nuki' | 'igloo' | 'kwikset' | 'minut' | 'my_2n' | 'controlbyweb' | 'nest' | 'igloohome' | 'ecobee' | 'four_suites' | 'dormakaba_oracode' | 'pti' | 'wyze' | 'seam_passport' | 'visionline' | 'assa_abloy_credential_service' | 'tedee' | 'honeywell_resideo' | 'first_alert' | 'latch' | 'akiles' | 'assa_abloy_vostio' | 'assa_abloy_vostio_credential_service' | 'tado' | 'salto_space' | 'sensi' | 'keynest' | 'korelock' | 'keyincode' | 'dormakaba_ambiance' | 'ultraloq' | 'dusaw' | 'sifely' | 'thirty_three_lock' | 'ring' | 'ical' | 'lodgify' | 'hostaway' | 'guesty' | 'acuity_scheduling' | 'omnitec' | 'kisi' | 'aqara' | 'yale_access' | 'hid_cm' | 'google_nest' | 'slack')[] | undefined;
|
|
40989
|
+
accepted_providers?: ('hotek' | 'dormakaba_community' | 'legic_connect' | 'akuvox' | 'august' | 'avigilon_alta' | 'brivo' | 'butterflymx' | 'schlage' | 'smartthings' | 'yale' | 'genie' | 'doorking' | 'salto' | 'salto_ks' | 'salto_ks_accept' | 'lockly' | 'ttlock' | 'linear' | 'noiseaware' | 'nuki' | 'igloo' | 'kwikset' | 'minut' | 'my_2n' | 'controlbyweb' | 'nest' | 'igloohome' | 'ecobee' | 'four_suites' | 'dormakaba_oracode' | 'pti' | 'wyze' | 'seam_passport' | 'visionline' | 'assa_abloy_credential_service' | 'tedee' | 'honeywell_resideo' | 'first_alert' | 'latch' | 'akiles' | 'assa_abloy_vostio' | 'assa_abloy_vostio_credential_service' | 'tado' | 'salto_space' | 'sensi' | 'keynest' | 'korelock' | 'keyincode' | 'dormakaba_ambiance' | 'ultraloq' | 'yacan' | 'dusaw' | 'sifely' | 'thirty_three_lock' | 'ring' | 'ical' | 'lodgify' | 'hostaway' | 'guesty' | 'acuity_scheduling' | 'omnitec' | 'kisi' | 'aqara' | 'yale_access' | 'hid_cm' | 'google_nest' | 'slack')[] | undefined;
|
|
40132
40990
|
/** Specifies the category of providers that you want to include. To list all providers within a category, use [`/devices/list_device_providers`](https://docs.seam.co/api/devices/list_device_providers) with the desired `provider_category` filter. */
|
|
40133
40991
|
provider_category?: ('stable' | 'consumer_smartlocks' | 'beta' | 'thermostats' | 'noise_sensors' | 'access_control_systems' | 'cameras' | 'connectors' | 'internal_beta') | undefined;
|
|
40134
40992
|
/** Custom metadata that you want to associate with the Connect Webview. Supports up to 50 JSON key:value pairs. [Adding custom metadata to a Connect Webview](https://docs.seam.co/core-concepts/connect-webviews/attaching-custom-data-to-the-connect-webview) enables you to store custom information, like customer details or internal IDs from your application. The custom metadata is then transferred to any [connected accounts](https://docs.seam.co/core-concepts/connected-accounts) that were connected using the Connect Webview, making it easy to find and filter these resources in your [workspace](https://docs.seam.co/core-concepts/workspaces). You can also [filter Connect Webviews by custom metadata](https://docs.seam.co/core-concepts/connect-webviews/filtering-connect-webviews-by-custom-metadata). */
|
|
@@ -41957,7 +42815,7 @@ export type Routes = {
|
|
|
41957
42815
|
/** ID of the device. */
|
|
41958
42816
|
device_id: string;
|
|
41959
42817
|
/** Type of the device. */
|
|
41960
|
-
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_lock' | 'kisi_lock' | 'aqara_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone') | 'ring_camera';
|
|
42818
|
+
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'yacan_lock' | 'keyincode_lock' | 'omnitec_lock' | 'kisi_lock' | 'aqara_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone') | 'ring_camera';
|
|
41961
42819
|
/** IDs of the spaces the device is in. */
|
|
41962
42820
|
space_ids: string[];
|
|
41963
42821
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -42588,6 +43446,17 @@ export type Routes = {
|
|
|
42588
43446
|
/** IANA timezone for the Ultraloq device. */
|
|
42589
43447
|
time_zone?: ((string | null) | undefined) | undefined;
|
|
42590
43448
|
} | undefined;
|
|
43449
|
+
/** Metadata for a Yacan device. */
|
|
43450
|
+
yacan_metadata?: {
|
|
43451
|
+
/** Device ID for a Yacan device. */
|
|
43452
|
+
device_id?: (string | undefined) | undefined;
|
|
43453
|
+
/** Device name for a Yacan device. */
|
|
43454
|
+
device_name?: (string | undefined) | undefined;
|
|
43455
|
+
/** Device type for a Yacan device. */
|
|
43456
|
+
device_type?: (string | undefined) | undefined;
|
|
43457
|
+
/** Serial number for a Yacan device. */
|
|
43458
|
+
serial_number?: (string | undefined) | undefined;
|
|
43459
|
+
} | undefined;
|
|
42591
43460
|
/** Metadata for a Ring device. */
|
|
42592
43461
|
ring_metadata?: {
|
|
42593
43462
|
/** Device ID for a Ring device. */
|
|
@@ -43450,11 +44319,11 @@ export type Routes = {
|
|
|
43450
44319
|
/** ID of the Connect Webview for which you want to list devices. */
|
|
43451
44320
|
connect_webview_id?: string | undefined;
|
|
43452
44321
|
/** Device type for which you want to list devices. */
|
|
43453
|
-
device_type?: (('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_lock' | 'kisi_lock' | 'aqara_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone') | 'ring_camera') | undefined;
|
|
44322
|
+
device_type?: (('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'yacan_lock' | 'keyincode_lock' | 'omnitec_lock' | 'kisi_lock' | 'aqara_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone') | 'ring_camera') | undefined;
|
|
43454
44323
|
/** Array of device types for which you want to list devices. */
|
|
43455
|
-
device_types?: (('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_lock' | 'kisi_lock' | 'aqara_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone') | 'ring_camera')[] | undefined;
|
|
44324
|
+
device_types?: (('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'yacan_lock' | 'keyincode_lock' | 'omnitec_lock' | 'kisi_lock' | 'aqara_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone') | 'ring_camera')[] | undefined;
|
|
43456
44325
|
/** Manufacturer for which you want to list devices. */
|
|
43457
|
-
manufacturer?: ('akuvox' | 'august' | 'avigilon_alta' | 'brivo' | 'butterflymx' | 'doorking' | 'four_suites' | 'genie' | 'igloo' | 'keywe' | 'kwikset' | 'linear' | 'lockly' | 'nuki' | 'philia' | 'salto' | 'samsung' | 'schlage' | 'seam' | 'unknown' | 'wyze' | 'yale' | 'two_n' | 'ttlock' | 'igloohome' | 'controlbyweb' | 'dormakaba_oracode' | 'tedee' | 'keyincode' | 'akiles' | 'aqara' | 'ecobee' | 'honeywell_resideo' | 'keynest' | 'korelock' | 'minut' | 'nest' | 'noiseaware' | 'sensi' | 'smartthings' | 'tado' | 'ultraloq' | 'ring' | 'ical' | 'lodgify' | 'hostaway' | 'guesty' | 'acuity_scheduling' | 'omnitec' | 'kisi' | 'slack') | undefined;
|
|
44326
|
+
manufacturer?: ('akuvox' | 'august' | 'avigilon_alta' | 'brivo' | 'butterflymx' | 'doorking' | 'four_suites' | 'genie' | 'igloo' | 'keywe' | 'kwikset' | 'linear' | 'lockly' | 'nuki' | 'philia' | 'salto' | 'samsung' | 'schlage' | 'seam' | 'unknown' | 'wyze' | 'yale' | 'two_n' | 'ttlock' | 'igloohome' | 'controlbyweb' | 'dormakaba_oracode' | 'tedee' | 'keyincode' | 'akiles' | 'aqara' | 'ecobee' | 'honeywell_resideo' | 'keynest' | 'korelock' | 'minut' | 'nest' | 'noiseaware' | 'sensi' | 'smartthings' | 'tado' | 'ultraloq' | 'ring' | 'ical' | 'lodgify' | 'hostaway' | 'guesty' | 'acuity_scheduling' | 'omnitec' | 'kisi' | 'slack' | 'yacan') | undefined;
|
|
43458
44327
|
/** Array of device IDs for which you want to list devices. */
|
|
43459
44328
|
device_ids?: string[] | undefined;
|
|
43460
44329
|
/** Numerical limit on the number of devices to return. */
|
|
@@ -43487,7 +44356,7 @@ export type Routes = {
|
|
|
43487
44356
|
/** ID of the device. */
|
|
43488
44357
|
device_id: string;
|
|
43489
44358
|
/** Type of the device. */
|
|
43490
|
-
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_lock' | 'kisi_lock' | 'aqara_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone') | 'ring_camera';
|
|
44359
|
+
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'yacan_lock' | 'keyincode_lock' | 'omnitec_lock' | 'kisi_lock' | 'aqara_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone') | 'ring_camera';
|
|
43491
44360
|
/** IDs of the spaces the device is in. */
|
|
43492
44361
|
space_ids: string[];
|
|
43493
44362
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -44118,6 +44987,17 @@ export type Routes = {
|
|
|
44118
44987
|
/** IANA timezone for the Ultraloq device. */
|
|
44119
44988
|
time_zone?: ((string | null) | undefined) | undefined;
|
|
44120
44989
|
} | undefined;
|
|
44990
|
+
/** Metadata for a Yacan device. */
|
|
44991
|
+
yacan_metadata?: {
|
|
44992
|
+
/** Device ID for a Yacan device. */
|
|
44993
|
+
device_id?: (string | undefined) | undefined;
|
|
44994
|
+
/** Device name for a Yacan device. */
|
|
44995
|
+
device_name?: (string | undefined) | undefined;
|
|
44996
|
+
/** Device type for a Yacan device. */
|
|
44997
|
+
device_type?: (string | undefined) | undefined;
|
|
44998
|
+
/** Serial number for a Yacan device. */
|
|
44999
|
+
serial_number?: (string | undefined) | undefined;
|
|
45000
|
+
} | undefined;
|
|
44121
45001
|
/** Metadata for a Ring device. */
|
|
44122
45002
|
ring_metadata?: {
|
|
44123
45003
|
/** Device ID for a Ring device. */
|
|
@@ -44987,7 +45867,7 @@ export type Routes = {
|
|
|
44987
45867
|
jsonResponse: {
|
|
44988
45868
|
device_providers: {
|
|
44989
45869
|
/** Name of the device provider. */
|
|
44990
|
-
device_provider_name: 'hotek' | 'dormakaba_community' | 'legic_connect' | 'akuvox' | 'august' | 'avigilon_alta' | 'brivo' | 'butterflymx' | 'schlage' | 'smartthings' | 'yale' | 'genie' | 'doorking' | 'salto' | 'salto_ks' | 'salto_ks_accept' | 'lockly' | 'ttlock' | 'linear' | 'noiseaware' | 'nuki' | 'igloo' | 'kwikset' | 'minut' | 'my_2n' | 'controlbyweb' | 'nest' | 'igloohome' | 'ecobee' | 'four_suites' | 'dormakaba_oracode' | 'pti' | 'wyze' | 'seam_passport' | 'visionline' | 'assa_abloy_credential_service' | 'tedee' | 'honeywell_resideo' | 'first_alert' | 'latch' | 'akiles' | 'assa_abloy_vostio' | 'assa_abloy_vostio_credential_service' | 'tado' | 'salto_space' | 'sensi' | 'keynest' | 'korelock' | 'keyincode' | 'dormakaba_ambiance' | 'ultraloq' | 'dusaw' | 'sifely' | 'thirty_three_lock' | 'ring' | 'ical' | 'lodgify' | 'hostaway' | 'guesty' | 'acuity_scheduling' | 'omnitec' | 'kisi' | 'aqara';
|
|
45870
|
+
device_provider_name: 'hotek' | 'dormakaba_community' | 'legic_connect' | 'akuvox' | 'august' | 'avigilon_alta' | 'brivo' | 'butterflymx' | 'schlage' | 'smartthings' | 'yale' | 'genie' | 'doorking' | 'salto' | 'salto_ks' | 'salto_ks_accept' | 'lockly' | 'ttlock' | 'linear' | 'noiseaware' | 'nuki' | 'igloo' | 'kwikset' | 'minut' | 'my_2n' | 'controlbyweb' | 'nest' | 'igloohome' | 'ecobee' | 'four_suites' | 'dormakaba_oracode' | 'pti' | 'wyze' | 'seam_passport' | 'visionline' | 'assa_abloy_credential_service' | 'tedee' | 'honeywell_resideo' | 'first_alert' | 'latch' | 'akiles' | 'assa_abloy_vostio' | 'assa_abloy_vostio_credential_service' | 'tado' | 'salto_space' | 'sensi' | 'keynest' | 'korelock' | 'keyincode' | 'dormakaba_ambiance' | 'ultraloq' | 'yacan' | 'dusaw' | 'sifely' | 'thirty_three_lock' | 'ring' | 'ical' | 'lodgify' | 'hostaway' | 'guesty' | 'acuity_scheduling' | 'omnitec' | 'kisi' | 'aqara';
|
|
44991
45871
|
/** Display name for the device provider. */
|
|
44992
45872
|
display_name: string;
|
|
44993
45873
|
/** Image URL for the device provider. */
|
|
@@ -45165,7 +46045,7 @@ export type Routes = {
|
|
|
45165
46045
|
/** ID of the device. */
|
|
45166
46046
|
device_id: string;
|
|
45167
46047
|
/** Type of the device. */
|
|
45168
|
-
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_lock' | 'kisi_lock' | 'aqara_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone') | 'ring_camera';
|
|
46048
|
+
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'yacan_lock' | 'keyincode_lock' | 'omnitec_lock' | 'kisi_lock' | 'aqara_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone') | 'ring_camera';
|
|
45169
46049
|
/** Unique identifier for the account associated with the device. */
|
|
45170
46050
|
connected_account_id: string;
|
|
45171
46051
|
/** Location information for the device. */
|
|
@@ -45659,11 +46539,11 @@ export type Routes = {
|
|
|
45659
46539
|
/** ID of the Connect Webview for which you want to list devices. */
|
|
45660
46540
|
connect_webview_id?: string | undefined;
|
|
45661
46541
|
/** Device type for which you want to list devices. */
|
|
45662
|
-
device_type?: (('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_lock' | 'kisi_lock' | 'aqara_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone') | 'ring_camera') | undefined;
|
|
46542
|
+
device_type?: (('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'yacan_lock' | 'keyincode_lock' | 'omnitec_lock' | 'kisi_lock' | 'aqara_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone') | 'ring_camera') | undefined;
|
|
45663
46543
|
/** Array of device types for which you want to list devices. */
|
|
45664
|
-
device_types?: (('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_lock' | 'kisi_lock' | 'aqara_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone') | 'ring_camera')[] | undefined;
|
|
46544
|
+
device_types?: (('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'yacan_lock' | 'keyincode_lock' | 'omnitec_lock' | 'kisi_lock' | 'aqara_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone') | 'ring_camera')[] | undefined;
|
|
45665
46545
|
/** Manufacturer for which you want to list devices. */
|
|
45666
|
-
manufacturer?: ('akuvox' | 'august' | 'avigilon_alta' | 'brivo' | 'butterflymx' | 'doorking' | 'four_suites' | 'genie' | 'igloo' | 'keywe' | 'kwikset' | 'linear' | 'lockly' | 'nuki' | 'philia' | 'salto' | 'samsung' | 'schlage' | 'seam' | 'unknown' | 'wyze' | 'yale' | 'two_n' | 'ttlock' | 'igloohome' | 'controlbyweb' | 'dormakaba_oracode' | 'tedee' | 'keyincode' | 'akiles' | 'aqara' | 'ecobee' | 'honeywell_resideo' | 'keynest' | 'korelock' | 'minut' | 'nest' | 'noiseaware' | 'sensi' | 'smartthings' | 'tado' | 'ultraloq' | 'ring' | 'ical' | 'lodgify' | 'hostaway' | 'guesty' | 'acuity_scheduling' | 'omnitec' | 'kisi' | 'slack') | undefined;
|
|
46546
|
+
manufacturer?: ('akuvox' | 'august' | 'avigilon_alta' | 'brivo' | 'butterflymx' | 'doorking' | 'four_suites' | 'genie' | 'igloo' | 'keywe' | 'kwikset' | 'linear' | 'lockly' | 'nuki' | 'philia' | 'salto' | 'samsung' | 'schlage' | 'seam' | 'unknown' | 'wyze' | 'yale' | 'two_n' | 'ttlock' | 'igloohome' | 'controlbyweb' | 'dormakaba_oracode' | 'tedee' | 'keyincode' | 'akiles' | 'aqara' | 'ecobee' | 'honeywell_resideo' | 'keynest' | 'korelock' | 'minut' | 'nest' | 'noiseaware' | 'sensi' | 'smartthings' | 'tado' | 'ultraloq' | 'ring' | 'ical' | 'lodgify' | 'hostaway' | 'guesty' | 'acuity_scheduling' | 'omnitec' | 'kisi' | 'slack' | 'yacan') | undefined;
|
|
45667
46547
|
/** Array of device IDs for which you want to list devices. */
|
|
45668
46548
|
device_ids?: string[] | undefined;
|
|
45669
46549
|
/** Timestamp by which to limit returned devices. Returns devices created before this timestamp. */
|
|
@@ -45685,7 +46565,7 @@ export type Routes = {
|
|
|
45685
46565
|
/** ID of the device. */
|
|
45686
46566
|
device_id: string;
|
|
45687
46567
|
/** Type of the device. */
|
|
45688
|
-
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_lock' | 'kisi_lock' | 'aqara_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone') | 'ring_camera';
|
|
46568
|
+
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'yacan_lock' | 'keyincode_lock' | 'omnitec_lock' | 'kisi_lock' | 'aqara_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone') | 'ring_camera';
|
|
45689
46569
|
/** Unique identifier for the account associated with the device. */
|
|
45690
46570
|
connected_account_id: string;
|
|
45691
46571
|
/** Location information for the device. */
|
|
@@ -53075,6 +53955,17 @@ export type Routes = {
|
|
|
53075
53955
|
message: string;
|
|
53076
53956
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
53077
53957
|
warning_code: 'needs_to_be_reissued';
|
|
53958
|
+
} | {
|
|
53959
|
+
/** Date and time at which Seam created the warning. */
|
|
53960
|
+
created_at: string;
|
|
53961
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
53962
|
+
message: string;
|
|
53963
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
53964
|
+
warning_code: 'requested_code_unavailable';
|
|
53965
|
+
/** The originally requested PIN code that could not be used. */
|
|
53966
|
+
original_code: string;
|
|
53967
|
+
/** The PIN code that was assigned instead. */
|
|
53968
|
+
new_code: string;
|
|
53078
53969
|
})[];
|
|
53079
53970
|
/** Indicates whether the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
53080
53971
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -53214,6 +54105,17 @@ export type Routes = {
|
|
|
53214
54105
|
message: string;
|
|
53215
54106
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
53216
54107
|
warning_code: 'needs_to_be_reissued';
|
|
54108
|
+
} | {
|
|
54109
|
+
/** Date and time at which Seam created the warning. */
|
|
54110
|
+
created_at: string;
|
|
54111
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
54112
|
+
message: string;
|
|
54113
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
54114
|
+
warning_code: 'requested_code_unavailable';
|
|
54115
|
+
/** The originally requested PIN code that could not be used. */
|
|
54116
|
+
original_code: string;
|
|
54117
|
+
/** The PIN code that was assigned instead. */
|
|
54118
|
+
new_code: string;
|
|
53217
54119
|
})[];
|
|
53218
54120
|
/** Indicates whether the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
53219
54121
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -53419,6 +54321,17 @@ export type Routes = {
|
|
|
53419
54321
|
message: string;
|
|
53420
54322
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
53421
54323
|
warning_code: 'needs_to_be_reissued';
|
|
54324
|
+
} | {
|
|
54325
|
+
/** Date and time at which Seam created the warning. */
|
|
54326
|
+
created_at: string;
|
|
54327
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
54328
|
+
message: string;
|
|
54329
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
54330
|
+
warning_code: 'requested_code_unavailable';
|
|
54331
|
+
/** The originally requested PIN code that could not be used. */
|
|
54332
|
+
original_code: string;
|
|
54333
|
+
/** The PIN code that was assigned instead. */
|
|
54334
|
+
new_code: string;
|
|
53422
54335
|
})[];
|
|
53423
54336
|
/** Indicates whether the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
53424
54337
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -53558,6 +54471,17 @@ export type Routes = {
|
|
|
53558
54471
|
message: string;
|
|
53559
54472
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
53560
54473
|
warning_code: 'needs_to_be_reissued';
|
|
54474
|
+
} | {
|
|
54475
|
+
/** Date and time at which Seam created the warning. */
|
|
54476
|
+
created_at: string;
|
|
54477
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
54478
|
+
message: string;
|
|
54479
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
54480
|
+
warning_code: 'requested_code_unavailable';
|
|
54481
|
+
/** The originally requested PIN code that could not be used. */
|
|
54482
|
+
original_code: string;
|
|
54483
|
+
/** The PIN code that was assigned instead. */
|
|
54484
|
+
new_code: string;
|
|
53561
54485
|
})[];
|
|
53562
54486
|
/** Indicates whether the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
53563
54487
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -53775,6 +54699,17 @@ export type Routes = {
|
|
|
53775
54699
|
message: string;
|
|
53776
54700
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
53777
54701
|
warning_code: 'needs_to_be_reissued';
|
|
54702
|
+
} | {
|
|
54703
|
+
/** Date and time at which Seam created the warning. */
|
|
54704
|
+
created_at: string;
|
|
54705
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
54706
|
+
message: string;
|
|
54707
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
54708
|
+
warning_code: 'requested_code_unavailable';
|
|
54709
|
+
/** The originally requested PIN code that could not be used. */
|
|
54710
|
+
original_code: string;
|
|
54711
|
+
/** The PIN code that was assigned instead. */
|
|
54712
|
+
new_code: string;
|
|
53778
54713
|
})[];
|
|
53779
54714
|
/** Indicates whether the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
53780
54715
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -54588,7 +55523,7 @@ export type Routes = {
|
|
|
54588
55523
|
/** ID of the device. */
|
|
54589
55524
|
device_id: string;
|
|
54590
55525
|
/** Type of the device. */
|
|
54591
|
-
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_lock' | 'kisi_lock' | 'aqara_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone') | 'ring_camera';
|
|
55526
|
+
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'yacan_lock' | 'keyincode_lock' | 'omnitec_lock' | 'kisi_lock' | 'aqara_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone') | 'ring_camera';
|
|
54592
55527
|
/** IDs of the spaces the device is in. */
|
|
54593
55528
|
space_ids: string[];
|
|
54594
55529
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -55219,6 +56154,17 @@ export type Routes = {
|
|
|
55219
56154
|
/** IANA timezone for the Ultraloq device. */
|
|
55220
56155
|
time_zone?: ((string | null) | undefined) | undefined;
|
|
55221
56156
|
} | undefined;
|
|
56157
|
+
/** Metadata for a Yacan device. */
|
|
56158
|
+
yacan_metadata?: {
|
|
56159
|
+
/** Device ID for a Yacan device. */
|
|
56160
|
+
device_id?: (string | undefined) | undefined;
|
|
56161
|
+
/** Device name for a Yacan device. */
|
|
56162
|
+
device_name?: (string | undefined) | undefined;
|
|
56163
|
+
/** Device type for a Yacan device. */
|
|
56164
|
+
device_type?: (string | undefined) | undefined;
|
|
56165
|
+
/** Serial number for a Yacan device. */
|
|
56166
|
+
serial_number?: (string | undefined) | undefined;
|
|
56167
|
+
} | undefined;
|
|
55222
56168
|
/** Metadata for a Ring device. */
|
|
55223
56169
|
ring_metadata?: {
|
|
55224
56170
|
/** Device ID for a Ring device. */
|
|
@@ -56068,7 +57014,7 @@ export type Routes = {
|
|
|
56068
57014
|
/** ID of the device. */
|
|
56069
57015
|
device_id: string;
|
|
56070
57016
|
/** Type of the device. */
|
|
56071
|
-
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_lock' | 'kisi_lock' | 'aqara_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone') | 'ring_camera';
|
|
57017
|
+
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'yacan_lock' | 'keyincode_lock' | 'omnitec_lock' | 'kisi_lock' | 'aqara_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone') | 'ring_camera';
|
|
56072
57018
|
/** IDs of the spaces the device is in. */
|
|
56073
57019
|
space_ids: string[];
|
|
56074
57020
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -56699,6 +57645,17 @@ export type Routes = {
|
|
|
56699
57645
|
/** IANA timezone for the Ultraloq device. */
|
|
56700
57646
|
time_zone?: ((string | null) | undefined) | undefined;
|
|
56701
57647
|
} | undefined;
|
|
57648
|
+
/** Metadata for a Yacan device. */
|
|
57649
|
+
yacan_metadata?: {
|
|
57650
|
+
/** Device ID for a Yacan device. */
|
|
57651
|
+
device_id?: (string | undefined) | undefined;
|
|
57652
|
+
/** Device name for a Yacan device. */
|
|
57653
|
+
device_name?: (string | undefined) | undefined;
|
|
57654
|
+
/** Device type for a Yacan device. */
|
|
57655
|
+
device_type?: (string | undefined) | undefined;
|
|
57656
|
+
/** Serial number for a Yacan device. */
|
|
57657
|
+
serial_number?: (string | undefined) | undefined;
|
|
57658
|
+
} | undefined;
|
|
56702
57659
|
/** Metadata for a Ring device. */
|
|
56703
57660
|
ring_metadata?: {
|
|
56704
57661
|
/** Device ID for a Ring device. */
|
|
@@ -57559,11 +58516,11 @@ export type Routes = {
|
|
|
57559
58516
|
/** ID of the Connect Webview for which you want to list devices. */
|
|
57560
58517
|
connect_webview_id?: string | undefined;
|
|
57561
58518
|
/** Device type of the locks that you want to list. */
|
|
57562
|
-
device_type?: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_lock' | 'kisi_lock' | 'aqara_lock') | undefined;
|
|
58519
|
+
device_type?: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'yacan_lock' | 'keyincode_lock' | 'omnitec_lock' | 'kisi_lock' | 'aqara_lock') | undefined;
|
|
57563
58520
|
/** Device types of the locks that you want to list. */
|
|
57564
|
-
device_types?: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_lock' | 'kisi_lock' | 'aqara_lock')[] | undefined;
|
|
58521
|
+
device_types?: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'yacan_lock' | 'keyincode_lock' | 'omnitec_lock' | 'kisi_lock' | 'aqara_lock')[] | undefined;
|
|
57565
58522
|
/** Manufacturer of the locks that you want to list. */
|
|
57566
|
-
manufacturer?: ('akuvox' | 'august' | 'brivo' | 'butterflymx' | 'avigilon_alta' | 'doorking' | 'genie' | 'igloo' | 'linear' | 'lockly' | 'kwikset' | 'nuki' | 'salto' | 'schlage' | 'seam' | 'wyze' | 'yale' | 'two_n' | 'controlbyweb' | 'ttlock' | 'igloohome' | 'four_suites' | 'dormakaba_oracode' | 'tedee' | 'keyincode' | 'akiles' | 'aqara' | 'korelock' | 'smartthings' | 'ultraloq' | 'omnitec' | 'kisi') | undefined;
|
|
58523
|
+
manufacturer?: ('akuvox' | 'august' | 'brivo' | 'butterflymx' | 'avigilon_alta' | 'doorking' | 'genie' | 'igloo' | 'linear' | 'lockly' | 'kwikset' | 'nuki' | 'salto' | 'schlage' | 'seam' | 'wyze' | 'yale' | 'two_n' | 'controlbyweb' | 'ttlock' | 'igloohome' | 'four_suites' | 'dormakaba_oracode' | 'tedee' | 'keyincode' | 'akiles' | 'aqara' | 'korelock' | 'smartthings' | 'ultraloq' | 'omnitec' | 'kisi' | 'yacan') | undefined;
|
|
57567
58524
|
};
|
|
57568
58525
|
formData: {};
|
|
57569
58526
|
jsonResponse: {
|
|
@@ -57571,7 +58528,7 @@ export type Routes = {
|
|
|
57571
58528
|
/** ID of the device. */
|
|
57572
58529
|
device_id: string;
|
|
57573
58530
|
/** Type of the device. */
|
|
57574
|
-
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_lock' | 'kisi_lock' | 'aqara_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone') | 'ring_camera';
|
|
58531
|
+
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'yacan_lock' | 'keyincode_lock' | 'omnitec_lock' | 'kisi_lock' | 'aqara_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone') | 'ring_camera';
|
|
57575
58532
|
/** IDs of the spaces the device is in. */
|
|
57576
58533
|
space_ids: string[];
|
|
57577
58534
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -58202,6 +59159,17 @@ export type Routes = {
|
|
|
58202
59159
|
/** IANA timezone for the Ultraloq device. */
|
|
58203
59160
|
time_zone?: ((string | null) | undefined) | undefined;
|
|
58204
59161
|
} | undefined;
|
|
59162
|
+
/** Metadata for a Yacan device. */
|
|
59163
|
+
yacan_metadata?: {
|
|
59164
|
+
/** Device ID for a Yacan device. */
|
|
59165
|
+
device_id?: (string | undefined) | undefined;
|
|
59166
|
+
/** Device name for a Yacan device. */
|
|
59167
|
+
device_name?: (string | undefined) | undefined;
|
|
59168
|
+
/** Device type for a Yacan device. */
|
|
59169
|
+
device_type?: (string | undefined) | undefined;
|
|
59170
|
+
/** Serial number for a Yacan device. */
|
|
59171
|
+
serial_number?: (string | undefined) | undefined;
|
|
59172
|
+
} | undefined;
|
|
58205
59173
|
/** Metadata for a Ring device. */
|
|
58206
59174
|
ring_metadata?: {
|
|
58207
59175
|
/** Device ID for a Ring device. */
|
|
@@ -59050,7 +60018,7 @@ export type Routes = {
|
|
|
59050
60018
|
/** ID of the device. */
|
|
59051
60019
|
device_id: string;
|
|
59052
60020
|
/** Type of the device. */
|
|
59053
|
-
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_lock' | 'kisi_lock' | 'aqara_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone') | 'ring_camera';
|
|
60021
|
+
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'yacan_lock' | 'keyincode_lock' | 'omnitec_lock' | 'kisi_lock' | 'aqara_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone') | 'ring_camera';
|
|
59054
60022
|
/** IDs of the spaces the device is in. */
|
|
59055
60023
|
space_ids: string[];
|
|
59056
60024
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -59681,6 +60649,17 @@ export type Routes = {
|
|
|
59681
60649
|
/** IANA timezone for the Ultraloq device. */
|
|
59682
60650
|
time_zone?: ((string | null) | undefined) | undefined;
|
|
59683
60651
|
} | undefined;
|
|
60652
|
+
/** Metadata for a Yacan device. */
|
|
60653
|
+
yacan_metadata?: {
|
|
60654
|
+
/** Device ID for a Yacan device. */
|
|
60655
|
+
device_id?: (string | undefined) | undefined;
|
|
60656
|
+
/** Device name for a Yacan device. */
|
|
60657
|
+
device_name?: (string | undefined) | undefined;
|
|
60658
|
+
/** Device type for a Yacan device. */
|
|
60659
|
+
device_type?: (string | undefined) | undefined;
|
|
60660
|
+
/** Serial number for a Yacan device. */
|
|
60661
|
+
serial_number?: (string | undefined) | undefined;
|
|
60662
|
+
} | undefined;
|
|
59684
60663
|
/** Metadata for a Ring device. */
|
|
59685
60664
|
ring_metadata?: {
|
|
59686
60665
|
/** Device ID for a Ring device. */
|
|
@@ -60774,6 +61753,17 @@ export type Routes = {
|
|
|
60774
61753
|
message: string;
|
|
60775
61754
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
60776
61755
|
warning_code: 'needs_to_be_reissued';
|
|
61756
|
+
} | {
|
|
61757
|
+
/** Date and time at which Seam created the warning. */
|
|
61758
|
+
created_at: string;
|
|
61759
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
61760
|
+
message: string;
|
|
61761
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
61762
|
+
warning_code: 'requested_code_unavailable';
|
|
61763
|
+
/** The originally requested PIN code that could not be used. */
|
|
61764
|
+
original_code: string;
|
|
61765
|
+
/** The PIN code that was assigned instead. */
|
|
61766
|
+
new_code: string;
|
|
60777
61767
|
})[];
|
|
60778
61768
|
/** Indicates whether the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
60779
61769
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -60913,6 +61903,17 @@ export type Routes = {
|
|
|
60913
61903
|
message: string;
|
|
60914
61904
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
60915
61905
|
warning_code: 'needs_to_be_reissued';
|
|
61906
|
+
} | {
|
|
61907
|
+
/** Date and time at which Seam created the warning. */
|
|
61908
|
+
created_at: string;
|
|
61909
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
61910
|
+
message: string;
|
|
61911
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
61912
|
+
warning_code: 'requested_code_unavailable';
|
|
61913
|
+
/** The originally requested PIN code that could not be used. */
|
|
61914
|
+
original_code: string;
|
|
61915
|
+
/** The PIN code that was assigned instead. */
|
|
61916
|
+
new_code: string;
|
|
60916
61917
|
})[];
|
|
60917
61918
|
/** Indicates whether the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
60918
61919
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -61118,6 +62119,17 @@ export type Routes = {
|
|
|
61118
62119
|
message: string;
|
|
61119
62120
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
61120
62121
|
warning_code: 'needs_to_be_reissued';
|
|
62122
|
+
} | {
|
|
62123
|
+
/** Date and time at which Seam created the warning. */
|
|
62124
|
+
created_at: string;
|
|
62125
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
62126
|
+
message: string;
|
|
62127
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
62128
|
+
warning_code: 'requested_code_unavailable';
|
|
62129
|
+
/** The originally requested PIN code that could not be used. */
|
|
62130
|
+
original_code: string;
|
|
62131
|
+
/** The PIN code that was assigned instead. */
|
|
62132
|
+
new_code: string;
|
|
61121
62133
|
})[];
|
|
61122
62134
|
/** Indicates whether the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
61123
62135
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -61257,6 +62269,17 @@ export type Routes = {
|
|
|
61257
62269
|
message: string;
|
|
61258
62270
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
61259
62271
|
warning_code: 'needs_to_be_reissued';
|
|
62272
|
+
} | {
|
|
62273
|
+
/** Date and time at which Seam created the warning. */
|
|
62274
|
+
created_at: string;
|
|
62275
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
62276
|
+
message: string;
|
|
62277
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
62278
|
+
warning_code: 'requested_code_unavailable';
|
|
62279
|
+
/** The originally requested PIN code that could not be used. */
|
|
62280
|
+
original_code: string;
|
|
62281
|
+
/** The PIN code that was assigned instead. */
|
|
62282
|
+
new_code: string;
|
|
61260
62283
|
})[];
|
|
61261
62284
|
/** Indicates whether the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
61262
62285
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -61474,6 +62497,17 @@ export type Routes = {
|
|
|
61474
62497
|
message: string;
|
|
61475
62498
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
61476
62499
|
warning_code: 'needs_to_be_reissued';
|
|
62500
|
+
} | {
|
|
62501
|
+
/** Date and time at which Seam created the warning. */
|
|
62502
|
+
created_at: string;
|
|
62503
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
62504
|
+
message: string;
|
|
62505
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
62506
|
+
warning_code: 'requested_code_unavailable';
|
|
62507
|
+
/** The originally requested PIN code that could not be used. */
|
|
62508
|
+
original_code: string;
|
|
62509
|
+
/** The PIN code that was assigned instead. */
|
|
62510
|
+
new_code: string;
|
|
61477
62511
|
})[];
|
|
61478
62512
|
/** Indicates whether the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
61479
62513
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -62515,6 +63549,17 @@ export type Routes = {
|
|
|
62515
63549
|
message: string;
|
|
62516
63550
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
62517
63551
|
warning_code: 'needs_to_be_reissued';
|
|
63552
|
+
} | {
|
|
63553
|
+
/** Date and time at which Seam created the warning. */
|
|
63554
|
+
created_at: string;
|
|
63555
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
63556
|
+
message: string;
|
|
63557
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
63558
|
+
warning_code: 'requested_code_unavailable';
|
|
63559
|
+
/** The originally requested PIN code that could not be used. */
|
|
63560
|
+
original_code: string;
|
|
63561
|
+
/** The PIN code that was assigned instead. */
|
|
63562
|
+
new_code: string;
|
|
62518
63563
|
})[];
|
|
62519
63564
|
/** Indicates whether the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
62520
63565
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -62654,6 +63699,17 @@ export type Routes = {
|
|
|
62654
63699
|
message: string;
|
|
62655
63700
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
62656
63701
|
warning_code: 'needs_to_be_reissued';
|
|
63702
|
+
} | {
|
|
63703
|
+
/** Date and time at which Seam created the warning. */
|
|
63704
|
+
created_at: string;
|
|
63705
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
63706
|
+
message: string;
|
|
63707
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
63708
|
+
warning_code: 'requested_code_unavailable';
|
|
63709
|
+
/** The originally requested PIN code that could not be used. */
|
|
63710
|
+
original_code: string;
|
|
63711
|
+
/** The PIN code that was assigned instead. */
|
|
63712
|
+
new_code: string;
|
|
62657
63713
|
})[];
|
|
62658
63714
|
/** Indicates whether the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
62659
63715
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -62859,6 +63915,17 @@ export type Routes = {
|
|
|
62859
63915
|
message: string;
|
|
62860
63916
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
62861
63917
|
warning_code: 'needs_to_be_reissued';
|
|
63918
|
+
} | {
|
|
63919
|
+
/** Date and time at which Seam created the warning. */
|
|
63920
|
+
created_at: string;
|
|
63921
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
63922
|
+
message: string;
|
|
63923
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
63924
|
+
warning_code: 'requested_code_unavailable';
|
|
63925
|
+
/** The originally requested PIN code that could not be used. */
|
|
63926
|
+
original_code: string;
|
|
63927
|
+
/** The PIN code that was assigned instead. */
|
|
63928
|
+
new_code: string;
|
|
62862
63929
|
})[];
|
|
62863
63930
|
/** Indicates whether the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
62864
63931
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -62998,6 +64065,17 @@ export type Routes = {
|
|
|
62998
64065
|
message: string;
|
|
62999
64066
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
63000
64067
|
warning_code: 'needs_to_be_reissued';
|
|
64068
|
+
} | {
|
|
64069
|
+
/** Date and time at which Seam created the warning. */
|
|
64070
|
+
created_at: string;
|
|
64071
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
64072
|
+
message: string;
|
|
64073
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
64074
|
+
warning_code: 'requested_code_unavailable';
|
|
64075
|
+
/** The originally requested PIN code that could not be used. */
|
|
64076
|
+
original_code: string;
|
|
64077
|
+
/** The PIN code that was assigned instead. */
|
|
64078
|
+
new_code: string;
|
|
63001
64079
|
})[];
|
|
63002
64080
|
/** Indicates whether the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
63003
64081
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -63215,6 +64293,17 @@ export type Routes = {
|
|
|
63215
64293
|
message: string;
|
|
63216
64294
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
63217
64295
|
warning_code: 'needs_to_be_reissued';
|
|
64296
|
+
} | {
|
|
64297
|
+
/** Date and time at which Seam created the warning. */
|
|
64298
|
+
created_at: string;
|
|
64299
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
64300
|
+
message: string;
|
|
64301
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
64302
|
+
warning_code: 'requested_code_unavailable';
|
|
64303
|
+
/** The originally requested PIN code that could not be used. */
|
|
64304
|
+
original_code: string;
|
|
64305
|
+
/** The PIN code that was assigned instead. */
|
|
64306
|
+
new_code: string;
|
|
63218
64307
|
})[];
|
|
63219
64308
|
/** Indicates whether the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
63220
64309
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -64254,6 +65343,17 @@ export type Routes = {
|
|
|
64254
65343
|
message: string;
|
|
64255
65344
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
64256
65345
|
warning_code: 'needs_to_be_reissued';
|
|
65346
|
+
} | {
|
|
65347
|
+
/** Date and time at which Seam created the warning. */
|
|
65348
|
+
created_at: string;
|
|
65349
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
65350
|
+
message: string;
|
|
65351
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
65352
|
+
warning_code: 'requested_code_unavailable';
|
|
65353
|
+
/** The originally requested PIN code that could not be used. */
|
|
65354
|
+
original_code: string;
|
|
65355
|
+
/** The PIN code that was assigned instead. */
|
|
65356
|
+
new_code: string;
|
|
64257
65357
|
})[];
|
|
64258
65358
|
/** Indicates whether the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
64259
65359
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -64393,6 +65493,17 @@ export type Routes = {
|
|
|
64393
65493
|
message: string;
|
|
64394
65494
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
64395
65495
|
warning_code: 'needs_to_be_reissued';
|
|
65496
|
+
} | {
|
|
65497
|
+
/** Date and time at which Seam created the warning. */
|
|
65498
|
+
created_at: string;
|
|
65499
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
65500
|
+
message: string;
|
|
65501
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
65502
|
+
warning_code: 'requested_code_unavailable';
|
|
65503
|
+
/** The originally requested PIN code that could not be used. */
|
|
65504
|
+
original_code: string;
|
|
65505
|
+
/** The PIN code that was assigned instead. */
|
|
65506
|
+
new_code: string;
|
|
64396
65507
|
})[];
|
|
64397
65508
|
/** Indicates whether the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
64398
65509
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -64598,6 +65709,17 @@ export type Routes = {
|
|
|
64598
65709
|
message: string;
|
|
64599
65710
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
64600
65711
|
warning_code: 'needs_to_be_reissued';
|
|
65712
|
+
} | {
|
|
65713
|
+
/** Date and time at which Seam created the warning. */
|
|
65714
|
+
created_at: string;
|
|
65715
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
65716
|
+
message: string;
|
|
65717
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
65718
|
+
warning_code: 'requested_code_unavailable';
|
|
65719
|
+
/** The originally requested PIN code that could not be used. */
|
|
65720
|
+
original_code: string;
|
|
65721
|
+
/** The PIN code that was assigned instead. */
|
|
65722
|
+
new_code: string;
|
|
64601
65723
|
})[];
|
|
64602
65724
|
/** Indicates whether the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
64603
65725
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -64737,6 +65859,17 @@ export type Routes = {
|
|
|
64737
65859
|
message: string;
|
|
64738
65860
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
64739
65861
|
warning_code: 'needs_to_be_reissued';
|
|
65862
|
+
} | {
|
|
65863
|
+
/** Date and time at which Seam created the warning. */
|
|
65864
|
+
created_at: string;
|
|
65865
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
65866
|
+
message: string;
|
|
65867
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
65868
|
+
warning_code: 'requested_code_unavailable';
|
|
65869
|
+
/** The originally requested PIN code that could not be used. */
|
|
65870
|
+
original_code: string;
|
|
65871
|
+
/** The PIN code that was assigned instead. */
|
|
65872
|
+
new_code: string;
|
|
64740
65873
|
})[];
|
|
64741
65874
|
/** Indicates whether the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
64742
65875
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -64954,6 +66087,17 @@ export type Routes = {
|
|
|
64954
66087
|
message: string;
|
|
64955
66088
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
64956
66089
|
warning_code: 'needs_to_be_reissued';
|
|
66090
|
+
} | {
|
|
66091
|
+
/** Date and time at which Seam created the warning. */
|
|
66092
|
+
created_at: string;
|
|
66093
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
66094
|
+
message: string;
|
|
66095
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
66096
|
+
warning_code: 'requested_code_unavailable';
|
|
66097
|
+
/** The originally requested PIN code that could not be used. */
|
|
66098
|
+
original_code: string;
|
|
66099
|
+
/** The PIN code that was assigned instead. */
|
|
66100
|
+
new_code: string;
|
|
64957
66101
|
})[];
|
|
64958
66102
|
/** Indicates whether the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
64959
66103
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -65995,6 +67139,17 @@ export type Routes = {
|
|
|
65995
67139
|
message: string;
|
|
65996
67140
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
65997
67141
|
warning_code: 'needs_to_be_reissued';
|
|
67142
|
+
} | {
|
|
67143
|
+
/** Date and time at which Seam created the warning. */
|
|
67144
|
+
created_at: string;
|
|
67145
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
67146
|
+
message: string;
|
|
67147
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
67148
|
+
warning_code: 'requested_code_unavailable';
|
|
67149
|
+
/** The originally requested PIN code that could not be used. */
|
|
67150
|
+
original_code: string;
|
|
67151
|
+
/** The PIN code that was assigned instead. */
|
|
67152
|
+
new_code: string;
|
|
65998
67153
|
})[];
|
|
65999
67154
|
/** Indicates whether the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
66000
67155
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -66134,6 +67289,17 @@ export type Routes = {
|
|
|
66134
67289
|
message: string;
|
|
66135
67290
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
66136
67291
|
warning_code: 'needs_to_be_reissued';
|
|
67292
|
+
} | {
|
|
67293
|
+
/** Date and time at which Seam created the warning. */
|
|
67294
|
+
created_at: string;
|
|
67295
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
67296
|
+
message: string;
|
|
67297
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
67298
|
+
warning_code: 'requested_code_unavailable';
|
|
67299
|
+
/** The originally requested PIN code that could not be used. */
|
|
67300
|
+
original_code: string;
|
|
67301
|
+
/** The PIN code that was assigned instead. */
|
|
67302
|
+
new_code: string;
|
|
66137
67303
|
})[];
|
|
66138
67304
|
/** Indicates whether the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
66139
67305
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -66339,6 +67505,17 @@ export type Routes = {
|
|
|
66339
67505
|
message: string;
|
|
66340
67506
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
66341
67507
|
warning_code: 'needs_to_be_reissued';
|
|
67508
|
+
} | {
|
|
67509
|
+
/** Date and time at which Seam created the warning. */
|
|
67510
|
+
created_at: string;
|
|
67511
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
67512
|
+
message: string;
|
|
67513
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
67514
|
+
warning_code: 'requested_code_unavailable';
|
|
67515
|
+
/** The originally requested PIN code that could not be used. */
|
|
67516
|
+
original_code: string;
|
|
67517
|
+
/** The PIN code that was assigned instead. */
|
|
67518
|
+
new_code: string;
|
|
66342
67519
|
})[];
|
|
66343
67520
|
/** Indicates whether the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
66344
67521
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -66478,6 +67655,17 @@ export type Routes = {
|
|
|
66478
67655
|
message: string;
|
|
66479
67656
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
66480
67657
|
warning_code: 'needs_to_be_reissued';
|
|
67658
|
+
} | {
|
|
67659
|
+
/** Date and time at which Seam created the warning. */
|
|
67660
|
+
created_at: string;
|
|
67661
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
67662
|
+
message: string;
|
|
67663
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
67664
|
+
warning_code: 'requested_code_unavailable';
|
|
67665
|
+
/** The originally requested PIN code that could not be used. */
|
|
67666
|
+
original_code: string;
|
|
67667
|
+
/** The PIN code that was assigned instead. */
|
|
67668
|
+
new_code: string;
|
|
66481
67669
|
})[];
|
|
66482
67670
|
/** Indicates whether the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
66483
67671
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -66695,6 +67883,17 @@ export type Routes = {
|
|
|
66695
67883
|
message: string;
|
|
66696
67884
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
66697
67885
|
warning_code: 'needs_to_be_reissued';
|
|
67886
|
+
} | {
|
|
67887
|
+
/** Date and time at which Seam created the warning. */
|
|
67888
|
+
created_at: string;
|
|
67889
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
67890
|
+
message: string;
|
|
67891
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
67892
|
+
warning_code: 'requested_code_unavailable';
|
|
67893
|
+
/** The originally requested PIN code that could not be used. */
|
|
67894
|
+
original_code: string;
|
|
67895
|
+
/** The PIN code that was assigned instead. */
|
|
67896
|
+
new_code: string;
|
|
66698
67897
|
})[];
|
|
66699
67898
|
/** Indicates whether the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
66700
67899
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -67515,7 +68714,7 @@ export type Routes = {
|
|
|
67515
68714
|
/** ID of the device. */
|
|
67516
68715
|
device_id: string;
|
|
67517
68716
|
/** Type of the device. */
|
|
67518
|
-
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_lock' | 'kisi_lock' | 'aqara_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone') | 'ring_camera';
|
|
68717
|
+
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'yacan_lock' | 'keyincode_lock' | 'omnitec_lock' | 'kisi_lock' | 'aqara_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone') | 'ring_camera';
|
|
67519
68718
|
/** IDs of the spaces the device is in. */
|
|
67520
68719
|
space_ids: string[];
|
|
67521
68720
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -68146,6 +69345,17 @@ export type Routes = {
|
|
|
68146
69345
|
/** IANA timezone for the Ultraloq device. */
|
|
68147
69346
|
time_zone?: ((string | null) | undefined) | undefined;
|
|
68148
69347
|
} | undefined;
|
|
69348
|
+
/** Metadata for a Yacan device. */
|
|
69349
|
+
yacan_metadata?: {
|
|
69350
|
+
/** Device ID for a Yacan device. */
|
|
69351
|
+
device_id?: (string | undefined) | undefined;
|
|
69352
|
+
/** Device name for a Yacan device. */
|
|
69353
|
+
device_name?: (string | undefined) | undefined;
|
|
69354
|
+
/** Device type for a Yacan device. */
|
|
69355
|
+
device_type?: (string | undefined) | undefined;
|
|
69356
|
+
/** Serial number for a Yacan device. */
|
|
69357
|
+
serial_number?: (string | undefined) | undefined;
|
|
69358
|
+
} | undefined;
|
|
68149
69359
|
/** Metadata for a Ring device. */
|
|
68150
69360
|
ring_metadata?: {
|
|
68151
69361
|
/** Device ID for a Ring device. */
|
|
@@ -68994,7 +70204,7 @@ export type Routes = {
|
|
|
68994
70204
|
/** ID of the device. */
|
|
68995
70205
|
device_id: string;
|
|
68996
70206
|
/** Type of the device. */
|
|
68997
|
-
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_lock' | 'kisi_lock' | 'aqara_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone') | 'ring_camera';
|
|
70207
|
+
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'yacan_lock' | 'keyincode_lock' | 'omnitec_lock' | 'kisi_lock' | 'aqara_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone') | 'ring_camera';
|
|
68998
70208
|
/** IDs of the spaces the device is in. */
|
|
68999
70209
|
space_ids: string[];
|
|
69000
70210
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -69625,6 +70835,17 @@ export type Routes = {
|
|
|
69625
70835
|
/** IANA timezone for the Ultraloq device. */
|
|
69626
70836
|
time_zone?: ((string | null) | undefined) | undefined;
|
|
69627
70837
|
} | undefined;
|
|
70838
|
+
/** Metadata for a Yacan device. */
|
|
70839
|
+
yacan_metadata?: {
|
|
70840
|
+
/** Device ID for a Yacan device. */
|
|
70841
|
+
device_id?: (string | undefined) | undefined;
|
|
70842
|
+
/** Device name for a Yacan device. */
|
|
70843
|
+
device_name?: (string | undefined) | undefined;
|
|
70844
|
+
/** Device type for a Yacan device. */
|
|
70845
|
+
device_type?: (string | undefined) | undefined;
|
|
70846
|
+
/** Serial number for a Yacan device. */
|
|
70847
|
+
serial_number?: (string | undefined) | undefined;
|
|
70848
|
+
} | undefined;
|
|
69628
70849
|
/** Metadata for a Ring device. */
|
|
69629
70850
|
ring_metadata?: {
|
|
69630
70851
|
/** Device ID for a Ring device. */
|
|
@@ -70728,6 +71949,17 @@ export type Routes = {
|
|
|
70728
71949
|
message: string;
|
|
70729
71950
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
70730
71951
|
warning_code: 'needs_to_be_reissued';
|
|
71952
|
+
} | {
|
|
71953
|
+
/** Date and time at which Seam created the warning. */
|
|
71954
|
+
created_at: string;
|
|
71955
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
71956
|
+
message: string;
|
|
71957
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
71958
|
+
warning_code: 'requested_code_unavailable';
|
|
71959
|
+
/** The originally requested PIN code that could not be used. */
|
|
71960
|
+
original_code: string;
|
|
71961
|
+
/** The PIN code that was assigned instead. */
|
|
71962
|
+
new_code: string;
|
|
70731
71963
|
})[];
|
|
70732
71964
|
/** Indicates whether the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
70733
71965
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -70867,6 +72099,17 @@ export type Routes = {
|
|
|
70867
72099
|
message: string;
|
|
70868
72100
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
70869
72101
|
warning_code: 'needs_to_be_reissued';
|
|
72102
|
+
} | {
|
|
72103
|
+
/** Date and time at which Seam created the warning. */
|
|
72104
|
+
created_at: string;
|
|
72105
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
72106
|
+
message: string;
|
|
72107
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
72108
|
+
warning_code: 'requested_code_unavailable';
|
|
72109
|
+
/** The originally requested PIN code that could not be used. */
|
|
72110
|
+
original_code: string;
|
|
72111
|
+
/** The PIN code that was assigned instead. */
|
|
72112
|
+
new_code: string;
|
|
70870
72113
|
})[];
|
|
70871
72114
|
/** Indicates whether the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
70872
72115
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -71072,6 +72315,17 @@ export type Routes = {
|
|
|
71072
72315
|
message: string;
|
|
71073
72316
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
71074
72317
|
warning_code: 'needs_to_be_reissued';
|
|
72318
|
+
} | {
|
|
72319
|
+
/** Date and time at which Seam created the warning. */
|
|
72320
|
+
created_at: string;
|
|
72321
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
72322
|
+
message: string;
|
|
72323
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
72324
|
+
warning_code: 'requested_code_unavailable';
|
|
72325
|
+
/** The originally requested PIN code that could not be used. */
|
|
72326
|
+
original_code: string;
|
|
72327
|
+
/** The PIN code that was assigned instead. */
|
|
72328
|
+
new_code: string;
|
|
71075
72329
|
})[];
|
|
71076
72330
|
/** Indicates whether the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
71077
72331
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -71211,6 +72465,17 @@ export type Routes = {
|
|
|
71211
72465
|
message: string;
|
|
71212
72466
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
71213
72467
|
warning_code: 'needs_to_be_reissued';
|
|
72468
|
+
} | {
|
|
72469
|
+
/** Date and time at which Seam created the warning. */
|
|
72470
|
+
created_at: string;
|
|
72471
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
72472
|
+
message: string;
|
|
72473
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
72474
|
+
warning_code: 'requested_code_unavailable';
|
|
72475
|
+
/** The originally requested PIN code that could not be used. */
|
|
72476
|
+
original_code: string;
|
|
72477
|
+
/** The PIN code that was assigned instead. */
|
|
72478
|
+
new_code: string;
|
|
71214
72479
|
})[];
|
|
71215
72480
|
/** Indicates whether the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
71216
72481
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -71428,6 +72693,17 @@ export type Routes = {
|
|
|
71428
72693
|
message: string;
|
|
71429
72694
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
71430
72695
|
warning_code: 'needs_to_be_reissued';
|
|
72696
|
+
} | {
|
|
72697
|
+
/** Date and time at which Seam created the warning. */
|
|
72698
|
+
created_at: string;
|
|
72699
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
72700
|
+
message: string;
|
|
72701
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
72702
|
+
warning_code: 'requested_code_unavailable';
|
|
72703
|
+
/** The originally requested PIN code that could not be used. */
|
|
72704
|
+
original_code: string;
|
|
72705
|
+
/** The PIN code that was assigned instead. */
|
|
72706
|
+
new_code: string;
|
|
71431
72707
|
})[];
|
|
71432
72708
|
/** Indicates whether the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
71433
72709
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -72488,6 +73764,17 @@ export type Routes = {
|
|
|
72488
73764
|
message: string;
|
|
72489
73765
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
72490
73766
|
warning_code: 'needs_to_be_reissued';
|
|
73767
|
+
} | {
|
|
73768
|
+
/** Date and time at which Seam created the warning. */
|
|
73769
|
+
created_at: string;
|
|
73770
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
73771
|
+
message: string;
|
|
73772
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
73773
|
+
warning_code: 'requested_code_unavailable';
|
|
73774
|
+
/** The originally requested PIN code that could not be used. */
|
|
73775
|
+
original_code: string;
|
|
73776
|
+
/** The PIN code that was assigned instead. */
|
|
73777
|
+
new_code: string;
|
|
72491
73778
|
})[];
|
|
72492
73779
|
/** Indicates whether the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
72493
73780
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -72627,6 +73914,17 @@ export type Routes = {
|
|
|
72627
73914
|
message: string;
|
|
72628
73915
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
72629
73916
|
warning_code: 'needs_to_be_reissued';
|
|
73917
|
+
} | {
|
|
73918
|
+
/** Date and time at which Seam created the warning. */
|
|
73919
|
+
created_at: string;
|
|
73920
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
73921
|
+
message: string;
|
|
73922
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
73923
|
+
warning_code: 'requested_code_unavailable';
|
|
73924
|
+
/** The originally requested PIN code that could not be used. */
|
|
73925
|
+
original_code: string;
|
|
73926
|
+
/** The PIN code that was assigned instead. */
|
|
73927
|
+
new_code: string;
|
|
72630
73928
|
})[];
|
|
72631
73929
|
/** Indicates whether the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
72632
73930
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -72832,6 +74130,17 @@ export type Routes = {
|
|
|
72832
74130
|
message: string;
|
|
72833
74131
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
72834
74132
|
warning_code: 'needs_to_be_reissued';
|
|
74133
|
+
} | {
|
|
74134
|
+
/** Date and time at which Seam created the warning. */
|
|
74135
|
+
created_at: string;
|
|
74136
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
74137
|
+
message: string;
|
|
74138
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
74139
|
+
warning_code: 'requested_code_unavailable';
|
|
74140
|
+
/** The originally requested PIN code that could not be used. */
|
|
74141
|
+
original_code: string;
|
|
74142
|
+
/** The PIN code that was assigned instead. */
|
|
74143
|
+
new_code: string;
|
|
72835
74144
|
})[];
|
|
72836
74145
|
/** Indicates whether the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
72837
74146
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -72971,6 +74280,17 @@ export type Routes = {
|
|
|
72971
74280
|
message: string;
|
|
72972
74281
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
72973
74282
|
warning_code: 'needs_to_be_reissued';
|
|
74283
|
+
} | {
|
|
74284
|
+
/** Date and time at which Seam created the warning. */
|
|
74285
|
+
created_at: string;
|
|
74286
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
74287
|
+
message: string;
|
|
74288
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
74289
|
+
warning_code: 'requested_code_unavailable';
|
|
74290
|
+
/** The originally requested PIN code that could not be used. */
|
|
74291
|
+
original_code: string;
|
|
74292
|
+
/** The PIN code that was assigned instead. */
|
|
74293
|
+
new_code: string;
|
|
72974
74294
|
})[];
|
|
72975
74295
|
/** Indicates whether the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
72976
74296
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -73188,6 +74508,17 @@ export type Routes = {
|
|
|
73188
74508
|
message: string;
|
|
73189
74509
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
73190
74510
|
warning_code: 'needs_to_be_reissued';
|
|
74511
|
+
} | {
|
|
74512
|
+
/** Date and time at which Seam created the warning. */
|
|
74513
|
+
created_at: string;
|
|
74514
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
74515
|
+
message: string;
|
|
74516
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
74517
|
+
warning_code: 'requested_code_unavailable';
|
|
74518
|
+
/** The originally requested PIN code that could not be used. */
|
|
74519
|
+
original_code: string;
|
|
74520
|
+
/** The PIN code that was assigned instead. */
|
|
74521
|
+
new_code: string;
|
|
73191
74522
|
})[];
|
|
73192
74523
|
/** Indicates whether the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
73193
74524
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -74304,6 +75635,17 @@ export type Routes = {
|
|
|
74304
75635
|
message: string;
|
|
74305
75636
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
74306
75637
|
warning_code: 'needs_to_be_reissued';
|
|
75638
|
+
} | {
|
|
75639
|
+
/** Date and time at which Seam created the warning. */
|
|
75640
|
+
created_at: string;
|
|
75641
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
75642
|
+
message: string;
|
|
75643
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
75644
|
+
warning_code: 'requested_code_unavailable';
|
|
75645
|
+
/** The originally requested PIN code that could not be used. */
|
|
75646
|
+
original_code: string;
|
|
75647
|
+
/** The PIN code that was assigned instead. */
|
|
75648
|
+
new_code: string;
|
|
74307
75649
|
})[];
|
|
74308
75650
|
/** Indicates whether the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
74309
75651
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -74443,6 +75785,17 @@ export type Routes = {
|
|
|
74443
75785
|
message: string;
|
|
74444
75786
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
74445
75787
|
warning_code: 'needs_to_be_reissued';
|
|
75788
|
+
} | {
|
|
75789
|
+
/** Date and time at which Seam created the warning. */
|
|
75790
|
+
created_at: string;
|
|
75791
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
75792
|
+
message: string;
|
|
75793
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
75794
|
+
warning_code: 'requested_code_unavailable';
|
|
75795
|
+
/** The originally requested PIN code that could not be used. */
|
|
75796
|
+
original_code: string;
|
|
75797
|
+
/** The PIN code that was assigned instead. */
|
|
75798
|
+
new_code: string;
|
|
74446
75799
|
})[];
|
|
74447
75800
|
/** Indicates whether the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
74448
75801
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -74648,6 +76001,17 @@ export type Routes = {
|
|
|
74648
76001
|
message: string;
|
|
74649
76002
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
74650
76003
|
warning_code: 'needs_to_be_reissued';
|
|
76004
|
+
} | {
|
|
76005
|
+
/** Date and time at which Seam created the warning. */
|
|
76006
|
+
created_at: string;
|
|
76007
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
76008
|
+
message: string;
|
|
76009
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
76010
|
+
warning_code: 'requested_code_unavailable';
|
|
76011
|
+
/** The originally requested PIN code that could not be used. */
|
|
76012
|
+
original_code: string;
|
|
76013
|
+
/** The PIN code that was assigned instead. */
|
|
76014
|
+
new_code: string;
|
|
74651
76015
|
})[];
|
|
74652
76016
|
/** Indicates whether the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
74653
76017
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -74787,6 +76151,17 @@ export type Routes = {
|
|
|
74787
76151
|
message: string;
|
|
74788
76152
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
74789
76153
|
warning_code: 'needs_to_be_reissued';
|
|
76154
|
+
} | {
|
|
76155
|
+
/** Date and time at which Seam created the warning. */
|
|
76156
|
+
created_at: string;
|
|
76157
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
76158
|
+
message: string;
|
|
76159
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
76160
|
+
warning_code: 'requested_code_unavailable';
|
|
76161
|
+
/** The originally requested PIN code that could not be used. */
|
|
76162
|
+
original_code: string;
|
|
76163
|
+
/** The PIN code that was assigned instead. */
|
|
76164
|
+
new_code: string;
|
|
74790
76165
|
})[];
|
|
74791
76166
|
/** Indicates whether the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
74792
76167
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -75004,6 +76379,17 @@ export type Routes = {
|
|
|
75004
76379
|
message: string;
|
|
75005
76380
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
75006
76381
|
warning_code: 'needs_to_be_reissued';
|
|
76382
|
+
} | {
|
|
76383
|
+
/** Date and time at which Seam created the warning. */
|
|
76384
|
+
created_at: string;
|
|
76385
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
76386
|
+
message: string;
|
|
76387
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
76388
|
+
warning_code: 'requested_code_unavailable';
|
|
76389
|
+
/** The originally requested PIN code that could not be used. */
|
|
76390
|
+
original_code: string;
|
|
76391
|
+
/** The PIN code that was assigned instead. */
|
|
76392
|
+
new_code: string;
|
|
75007
76393
|
})[];
|
|
75008
76394
|
/** Indicates whether the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
75009
76395
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -77901,6 +79287,17 @@ export type Routes = {
|
|
|
77901
79287
|
message: string;
|
|
77902
79288
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
77903
79289
|
warning_code: 'needs_to_be_reissued';
|
|
79290
|
+
} | {
|
|
79291
|
+
/** Date and time at which Seam created the warning. */
|
|
79292
|
+
created_at: string;
|
|
79293
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
79294
|
+
message: string;
|
|
79295
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
79296
|
+
warning_code: 'requested_code_unavailable';
|
|
79297
|
+
/** The originally requested PIN code that could not be used. */
|
|
79298
|
+
original_code: string;
|
|
79299
|
+
/** The PIN code that was assigned instead. */
|
|
79300
|
+
new_code: string;
|
|
77904
79301
|
})[];
|
|
77905
79302
|
/** Indicates whether the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
77906
79303
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -78040,6 +79437,17 @@ export type Routes = {
|
|
|
78040
79437
|
message: string;
|
|
78041
79438
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
78042
79439
|
warning_code: 'needs_to_be_reissued';
|
|
79440
|
+
} | {
|
|
79441
|
+
/** Date and time at which Seam created the warning. */
|
|
79442
|
+
created_at: string;
|
|
79443
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
79444
|
+
message: string;
|
|
79445
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
79446
|
+
warning_code: 'requested_code_unavailable';
|
|
79447
|
+
/** The originally requested PIN code that could not be used. */
|
|
79448
|
+
original_code: string;
|
|
79449
|
+
/** The PIN code that was assigned instead. */
|
|
79450
|
+
new_code: string;
|
|
78043
79451
|
})[];
|
|
78044
79452
|
/** Indicates whether the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
78045
79453
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -78245,6 +79653,17 @@ export type Routes = {
|
|
|
78245
79653
|
message: string;
|
|
78246
79654
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
78247
79655
|
warning_code: 'needs_to_be_reissued';
|
|
79656
|
+
} | {
|
|
79657
|
+
/** Date and time at which Seam created the warning. */
|
|
79658
|
+
created_at: string;
|
|
79659
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
79660
|
+
message: string;
|
|
79661
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
79662
|
+
warning_code: 'requested_code_unavailable';
|
|
79663
|
+
/** The originally requested PIN code that could not be used. */
|
|
79664
|
+
original_code: string;
|
|
79665
|
+
/** The PIN code that was assigned instead. */
|
|
79666
|
+
new_code: string;
|
|
78248
79667
|
})[];
|
|
78249
79668
|
/** Indicates whether the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
78250
79669
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -78384,6 +79803,17 @@ export type Routes = {
|
|
|
78384
79803
|
message: string;
|
|
78385
79804
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
78386
79805
|
warning_code: 'needs_to_be_reissued';
|
|
79806
|
+
} | {
|
|
79807
|
+
/** Date and time at which Seam created the warning. */
|
|
79808
|
+
created_at: string;
|
|
79809
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
79810
|
+
message: string;
|
|
79811
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
79812
|
+
warning_code: 'requested_code_unavailable';
|
|
79813
|
+
/** The originally requested PIN code that could not be used. */
|
|
79814
|
+
original_code: string;
|
|
79815
|
+
/** The PIN code that was assigned instead. */
|
|
79816
|
+
new_code: string;
|
|
78387
79817
|
})[];
|
|
78388
79818
|
/** Indicates whether the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
78389
79819
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -78601,6 +80031,17 @@ export type Routes = {
|
|
|
78601
80031
|
message: string;
|
|
78602
80032
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
78603
80033
|
warning_code: 'needs_to_be_reissued';
|
|
80034
|
+
} | {
|
|
80035
|
+
/** Date and time at which Seam created the warning. */
|
|
80036
|
+
created_at: string;
|
|
80037
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
80038
|
+
message: string;
|
|
80039
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
80040
|
+
warning_code: 'requested_code_unavailable';
|
|
80041
|
+
/** The originally requested PIN code that could not be used. */
|
|
80042
|
+
original_code: string;
|
|
80043
|
+
/** The PIN code that was assigned instead. */
|
|
80044
|
+
new_code: string;
|
|
78604
80045
|
})[];
|
|
78605
80046
|
/** Indicates whether the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
78606
80047
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -84911,6 +86352,17 @@ export type Routes = {
|
|
|
84911
86352
|
message: string;
|
|
84912
86353
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
84913
86354
|
warning_code: 'needs_to_be_reissued';
|
|
86355
|
+
} | {
|
|
86356
|
+
/** Date and time at which Seam created the warning. */
|
|
86357
|
+
created_at: string;
|
|
86358
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
86359
|
+
message: string;
|
|
86360
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
86361
|
+
warning_code: 'requested_code_unavailable';
|
|
86362
|
+
/** The originally requested PIN code that could not be used. */
|
|
86363
|
+
original_code: string;
|
|
86364
|
+
/** The PIN code that was assigned instead. */
|
|
86365
|
+
new_code: string;
|
|
84914
86366
|
})[];
|
|
84915
86367
|
/** Indicates whether the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
84916
86368
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -85089,6 +86541,17 @@ export type Routes = {
|
|
|
85089
86541
|
message: string;
|
|
85090
86542
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
85091
86543
|
warning_code: 'needs_to_be_reissued';
|
|
86544
|
+
} | {
|
|
86545
|
+
/** Date and time at which Seam created the warning. */
|
|
86546
|
+
created_at: string;
|
|
86547
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
86548
|
+
message: string;
|
|
86549
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
86550
|
+
warning_code: 'requested_code_unavailable';
|
|
86551
|
+
/** The originally requested PIN code that could not be used. */
|
|
86552
|
+
original_code: string;
|
|
86553
|
+
/** The PIN code that was assigned instead. */
|
|
86554
|
+
new_code: string;
|
|
85092
86555
|
})[];
|
|
85093
86556
|
/** Indicates whether the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
85094
86557
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -85725,7 +87188,7 @@ export type Routes = {
|
|
|
85725
87188
|
/** ID of the device. */
|
|
85726
87189
|
device_id: string;
|
|
85727
87190
|
/** Type of the device. */
|
|
85728
|
-
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_lock' | 'kisi_lock' | 'aqara_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone') | 'ring_camera';
|
|
87191
|
+
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'yacan_lock' | 'keyincode_lock' | 'omnitec_lock' | 'kisi_lock' | 'aqara_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone') | 'ring_camera';
|
|
85729
87192
|
/** IDs of the spaces the device is in. */
|
|
85730
87193
|
space_ids: string[];
|
|
85731
87194
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -86356,6 +87819,17 @@ export type Routes = {
|
|
|
86356
87819
|
/** IANA timezone for the Ultraloq device. */
|
|
86357
87820
|
time_zone?: ((string | null) | undefined) | undefined;
|
|
86358
87821
|
} | undefined;
|
|
87822
|
+
/** Metadata for a Yacan device. */
|
|
87823
|
+
yacan_metadata?: {
|
|
87824
|
+
/** Device ID for a Yacan device. */
|
|
87825
|
+
device_id?: (string | undefined) | undefined;
|
|
87826
|
+
/** Device name for a Yacan device. */
|
|
87827
|
+
device_name?: (string | undefined) | undefined;
|
|
87828
|
+
/** Device type for a Yacan device. */
|
|
87829
|
+
device_type?: (string | undefined) | undefined;
|
|
87830
|
+
/** Serial number for a Yacan device. */
|
|
87831
|
+
serial_number?: (string | undefined) | undefined;
|
|
87832
|
+
} | undefined;
|
|
86359
87833
|
/** Metadata for a Ring device. */
|
|
86360
87834
|
ring_metadata?: {
|
|
86361
87835
|
/** Device ID for a Ring device. */
|
|
@@ -88320,6 +89794,17 @@ export type Routes = {
|
|
|
88320
89794
|
message: string;
|
|
88321
89795
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
88322
89796
|
warning_code: 'needs_to_be_reissued';
|
|
89797
|
+
} | {
|
|
89798
|
+
/** Date and time at which Seam created the warning. */
|
|
89799
|
+
created_at: string;
|
|
89800
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
89801
|
+
message: string;
|
|
89802
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
89803
|
+
warning_code: 'requested_code_unavailable';
|
|
89804
|
+
/** The originally requested PIN code that could not be used. */
|
|
89805
|
+
original_code: string;
|
|
89806
|
+
/** The PIN code that was assigned instead. */
|
|
89807
|
+
new_code: string;
|
|
88323
89808
|
})[];
|
|
88324
89809
|
/** Indicates whether the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
88325
89810
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -88459,6 +89944,17 @@ export type Routes = {
|
|
|
88459
89944
|
message: string;
|
|
88460
89945
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
88461
89946
|
warning_code: 'needs_to_be_reissued';
|
|
89947
|
+
} | {
|
|
89948
|
+
/** Date and time at which Seam created the warning. */
|
|
89949
|
+
created_at: string;
|
|
89950
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
89951
|
+
message: string;
|
|
89952
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
89953
|
+
warning_code: 'requested_code_unavailable';
|
|
89954
|
+
/** The originally requested PIN code that could not be used. */
|
|
89955
|
+
original_code: string;
|
|
89956
|
+
/** The PIN code that was assigned instead. */
|
|
89957
|
+
new_code: string;
|
|
88462
89958
|
})[];
|
|
88463
89959
|
/** Indicates whether the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
88464
89960
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -88664,6 +90160,17 @@ export type Routes = {
|
|
|
88664
90160
|
message: string;
|
|
88665
90161
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
88666
90162
|
warning_code: 'needs_to_be_reissued';
|
|
90163
|
+
} | {
|
|
90164
|
+
/** Date and time at which Seam created the warning. */
|
|
90165
|
+
created_at: string;
|
|
90166
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
90167
|
+
message: string;
|
|
90168
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
90169
|
+
warning_code: 'requested_code_unavailable';
|
|
90170
|
+
/** The originally requested PIN code that could not be used. */
|
|
90171
|
+
original_code: string;
|
|
90172
|
+
/** The PIN code that was assigned instead. */
|
|
90173
|
+
new_code: string;
|
|
88667
90174
|
})[];
|
|
88668
90175
|
/** Indicates whether the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
88669
90176
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -88803,6 +90310,17 @@ export type Routes = {
|
|
|
88803
90310
|
message: string;
|
|
88804
90311
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
88805
90312
|
warning_code: 'needs_to_be_reissued';
|
|
90313
|
+
} | {
|
|
90314
|
+
/** Date and time at which Seam created the warning. */
|
|
90315
|
+
created_at: string;
|
|
90316
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
90317
|
+
message: string;
|
|
90318
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
90319
|
+
warning_code: 'requested_code_unavailable';
|
|
90320
|
+
/** The originally requested PIN code that could not be used. */
|
|
90321
|
+
original_code: string;
|
|
90322
|
+
/** The PIN code that was assigned instead. */
|
|
90323
|
+
new_code: string;
|
|
88806
90324
|
})[];
|
|
88807
90325
|
/** Indicates whether the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
88808
90326
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -89020,6 +90538,17 @@ export type Routes = {
|
|
|
89020
90538
|
message: string;
|
|
89021
90539
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
89022
90540
|
warning_code: 'needs_to_be_reissued';
|
|
90541
|
+
} | {
|
|
90542
|
+
/** Date and time at which Seam created the warning. */
|
|
90543
|
+
created_at: string;
|
|
90544
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
90545
|
+
message: string;
|
|
90546
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
90547
|
+
warning_code: 'requested_code_unavailable';
|
|
90548
|
+
/** The originally requested PIN code that could not be used. */
|
|
90549
|
+
original_code: string;
|
|
90550
|
+
/** The PIN code that was assigned instead. */
|
|
90551
|
+
new_code: string;
|
|
89023
90552
|
})[];
|
|
89024
90553
|
/** Indicates whether the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
89025
90554
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -90065,6 +91594,17 @@ export type Routes = {
|
|
|
90065
91594
|
message: string;
|
|
90066
91595
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
90067
91596
|
warning_code: 'needs_to_be_reissued';
|
|
91597
|
+
} | {
|
|
91598
|
+
/** Date and time at which Seam created the warning. */
|
|
91599
|
+
created_at: string;
|
|
91600
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
91601
|
+
message: string;
|
|
91602
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
91603
|
+
warning_code: 'requested_code_unavailable';
|
|
91604
|
+
/** The originally requested PIN code that could not be used. */
|
|
91605
|
+
original_code: string;
|
|
91606
|
+
/** The PIN code that was assigned instead. */
|
|
91607
|
+
new_code: string;
|
|
90068
91608
|
})[];
|
|
90069
91609
|
/** Indicates whether the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
90070
91610
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -90204,6 +91744,17 @@ export type Routes = {
|
|
|
90204
91744
|
message: string;
|
|
90205
91745
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
90206
91746
|
warning_code: 'needs_to_be_reissued';
|
|
91747
|
+
} | {
|
|
91748
|
+
/** Date and time at which Seam created the warning. */
|
|
91749
|
+
created_at: string;
|
|
91750
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
91751
|
+
message: string;
|
|
91752
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
91753
|
+
warning_code: 'requested_code_unavailable';
|
|
91754
|
+
/** The originally requested PIN code that could not be used. */
|
|
91755
|
+
original_code: string;
|
|
91756
|
+
/** The PIN code that was assigned instead. */
|
|
91757
|
+
new_code: string;
|
|
90207
91758
|
})[];
|
|
90208
91759
|
/** Indicates whether the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
90209
91760
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -90409,6 +91960,17 @@ export type Routes = {
|
|
|
90409
91960
|
message: string;
|
|
90410
91961
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
90411
91962
|
warning_code: 'needs_to_be_reissued';
|
|
91963
|
+
} | {
|
|
91964
|
+
/** Date and time at which Seam created the warning. */
|
|
91965
|
+
created_at: string;
|
|
91966
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
91967
|
+
message: string;
|
|
91968
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
91969
|
+
warning_code: 'requested_code_unavailable';
|
|
91970
|
+
/** The originally requested PIN code that could not be used. */
|
|
91971
|
+
original_code: string;
|
|
91972
|
+
/** The PIN code that was assigned instead. */
|
|
91973
|
+
new_code: string;
|
|
90412
91974
|
})[];
|
|
90413
91975
|
/** Indicates whether the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
90414
91976
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -90548,6 +92110,17 @@ export type Routes = {
|
|
|
90548
92110
|
message: string;
|
|
90549
92111
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
90550
92112
|
warning_code: 'needs_to_be_reissued';
|
|
92113
|
+
} | {
|
|
92114
|
+
/** Date and time at which Seam created the warning. */
|
|
92115
|
+
created_at: string;
|
|
92116
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
92117
|
+
message: string;
|
|
92118
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
92119
|
+
warning_code: 'requested_code_unavailable';
|
|
92120
|
+
/** The originally requested PIN code that could not be used. */
|
|
92121
|
+
original_code: string;
|
|
92122
|
+
/** The PIN code that was assigned instead. */
|
|
92123
|
+
new_code: string;
|
|
90551
92124
|
})[];
|
|
90552
92125
|
/** Indicates whether the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
90553
92126
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -90765,6 +92338,17 @@ export type Routes = {
|
|
|
90765
92338
|
message: string;
|
|
90766
92339
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
90767
92340
|
warning_code: 'needs_to_be_reissued';
|
|
92341
|
+
} | {
|
|
92342
|
+
/** Date and time at which Seam created the warning. */
|
|
92343
|
+
created_at: string;
|
|
92344
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
92345
|
+
message: string;
|
|
92346
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
92347
|
+
warning_code: 'requested_code_unavailable';
|
|
92348
|
+
/** The originally requested PIN code that could not be used. */
|
|
92349
|
+
original_code: string;
|
|
92350
|
+
/** The PIN code that was assigned instead. */
|
|
92351
|
+
new_code: string;
|
|
90768
92352
|
})[];
|
|
90769
92353
|
/** Indicates whether the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
90770
92354
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -91916,6 +93500,17 @@ export type Routes = {
|
|
|
91916
93500
|
message: string;
|
|
91917
93501
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
91918
93502
|
warning_code: 'needs_to_be_reissued';
|
|
93503
|
+
} | {
|
|
93504
|
+
/** Date and time at which Seam created the warning. */
|
|
93505
|
+
created_at: string;
|
|
93506
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
93507
|
+
message: string;
|
|
93508
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
93509
|
+
warning_code: 'requested_code_unavailable';
|
|
93510
|
+
/** The originally requested PIN code that could not be used. */
|
|
93511
|
+
original_code: string;
|
|
93512
|
+
/** The PIN code that was assigned instead. */
|
|
93513
|
+
new_code: string;
|
|
91919
93514
|
})[];
|
|
91920
93515
|
/** Indicates whether the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
91921
93516
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -92055,6 +93650,17 @@ export type Routes = {
|
|
|
92055
93650
|
message: string;
|
|
92056
93651
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
92057
93652
|
warning_code: 'needs_to_be_reissued';
|
|
93653
|
+
} | {
|
|
93654
|
+
/** Date and time at which Seam created the warning. */
|
|
93655
|
+
created_at: string;
|
|
93656
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
93657
|
+
message: string;
|
|
93658
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
93659
|
+
warning_code: 'requested_code_unavailable';
|
|
93660
|
+
/** The originally requested PIN code that could not be used. */
|
|
93661
|
+
original_code: string;
|
|
93662
|
+
/** The PIN code that was assigned instead. */
|
|
93663
|
+
new_code: string;
|
|
92058
93664
|
})[];
|
|
92059
93665
|
/** Indicates whether the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
92060
93666
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -92260,6 +93866,17 @@ export type Routes = {
|
|
|
92260
93866
|
message: string;
|
|
92261
93867
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
92262
93868
|
warning_code: 'needs_to_be_reissued';
|
|
93869
|
+
} | {
|
|
93870
|
+
/** Date and time at which Seam created the warning. */
|
|
93871
|
+
created_at: string;
|
|
93872
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
93873
|
+
message: string;
|
|
93874
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
93875
|
+
warning_code: 'requested_code_unavailable';
|
|
93876
|
+
/** The originally requested PIN code that could not be used. */
|
|
93877
|
+
original_code: string;
|
|
93878
|
+
/** The PIN code that was assigned instead. */
|
|
93879
|
+
new_code: string;
|
|
92263
93880
|
})[];
|
|
92264
93881
|
/** Indicates whether the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
92265
93882
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -92399,6 +94016,17 @@ export type Routes = {
|
|
|
92399
94016
|
message: string;
|
|
92400
94017
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
92401
94018
|
warning_code: 'needs_to_be_reissued';
|
|
94019
|
+
} | {
|
|
94020
|
+
/** Date and time at which Seam created the warning. */
|
|
94021
|
+
created_at: string;
|
|
94022
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
94023
|
+
message: string;
|
|
94024
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
94025
|
+
warning_code: 'requested_code_unavailable';
|
|
94026
|
+
/** The originally requested PIN code that could not be used. */
|
|
94027
|
+
original_code: string;
|
|
94028
|
+
/** The PIN code that was assigned instead. */
|
|
94029
|
+
new_code: string;
|
|
92402
94030
|
})[];
|
|
92403
94031
|
/** Indicates whether the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
92404
94032
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -92616,6 +94244,17 @@ export type Routes = {
|
|
|
92616
94244
|
message: string;
|
|
92617
94245
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
92618
94246
|
warning_code: 'needs_to_be_reissued';
|
|
94247
|
+
} | {
|
|
94248
|
+
/** Date and time at which Seam created the warning. */
|
|
94249
|
+
created_at: string;
|
|
94250
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
94251
|
+
message: string;
|
|
94252
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
94253
|
+
warning_code: 'requested_code_unavailable';
|
|
94254
|
+
/** The originally requested PIN code that could not be used. */
|
|
94255
|
+
original_code: string;
|
|
94256
|
+
/** The PIN code that was assigned instead. */
|
|
94257
|
+
new_code: string;
|
|
92619
94258
|
})[];
|
|
92620
94259
|
/** Indicates whether the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
92621
94260
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -93444,7 +95083,7 @@ export type Routes = {
|
|
|
93444
95083
|
/** ID of the device. */
|
|
93445
95084
|
device_id: string;
|
|
93446
95085
|
/** Type of the device. */
|
|
93447
|
-
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_lock' | 'kisi_lock' | 'aqara_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone') | 'ring_camera';
|
|
95086
|
+
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'yacan_lock' | 'keyincode_lock' | 'omnitec_lock' | 'kisi_lock' | 'aqara_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone') | 'ring_camera';
|
|
93448
95087
|
/** IDs of the spaces the device is in. */
|
|
93449
95088
|
space_ids: string[];
|
|
93450
95089
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -94075,6 +95714,17 @@ export type Routes = {
|
|
|
94075
95714
|
/** IANA timezone for the Ultraloq device. */
|
|
94076
95715
|
time_zone?: ((string | null) | undefined) | undefined;
|
|
94077
95716
|
} | undefined;
|
|
95717
|
+
/** Metadata for a Yacan device. */
|
|
95718
|
+
yacan_metadata?: {
|
|
95719
|
+
/** Device ID for a Yacan device. */
|
|
95720
|
+
device_id?: (string | undefined) | undefined;
|
|
95721
|
+
/** Device name for a Yacan device. */
|
|
95722
|
+
device_name?: (string | undefined) | undefined;
|
|
95723
|
+
/** Device type for a Yacan device. */
|
|
95724
|
+
device_type?: (string | undefined) | undefined;
|
|
95725
|
+
/** Serial number for a Yacan device. */
|
|
95726
|
+
serial_number?: (string | undefined) | undefined;
|
|
95727
|
+
} | undefined;
|
|
94078
95728
|
/** Metadata for a Ring device. */
|
|
94079
95729
|
ring_metadata?: {
|
|
94080
95730
|
/** Device ID for a Ring device. */
|
|
@@ -95172,6 +96822,17 @@ export type Routes = {
|
|
|
95172
96822
|
message: string;
|
|
95173
96823
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
95174
96824
|
warning_code: 'needs_to_be_reissued';
|
|
96825
|
+
} | {
|
|
96826
|
+
/** Date and time at which Seam created the warning. */
|
|
96827
|
+
created_at: string;
|
|
96828
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
96829
|
+
message: string;
|
|
96830
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
96831
|
+
warning_code: 'requested_code_unavailable';
|
|
96832
|
+
/** The originally requested PIN code that could not be used. */
|
|
96833
|
+
original_code: string;
|
|
96834
|
+
/** The PIN code that was assigned instead. */
|
|
96835
|
+
new_code: string;
|
|
95175
96836
|
})[];
|
|
95176
96837
|
/** Indicates whether the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
95177
96838
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -95311,6 +96972,17 @@ export type Routes = {
|
|
|
95311
96972
|
message: string;
|
|
95312
96973
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
95313
96974
|
warning_code: 'needs_to_be_reissued';
|
|
96975
|
+
} | {
|
|
96976
|
+
/** Date and time at which Seam created the warning. */
|
|
96977
|
+
created_at: string;
|
|
96978
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
96979
|
+
message: string;
|
|
96980
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
96981
|
+
warning_code: 'requested_code_unavailable';
|
|
96982
|
+
/** The originally requested PIN code that could not be used. */
|
|
96983
|
+
original_code: string;
|
|
96984
|
+
/** The PIN code that was assigned instead. */
|
|
96985
|
+
new_code: string;
|
|
95314
96986
|
})[];
|
|
95315
96987
|
/** Indicates whether the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
95316
96988
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -95516,6 +97188,17 @@ export type Routes = {
|
|
|
95516
97188
|
message: string;
|
|
95517
97189
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
95518
97190
|
warning_code: 'needs_to_be_reissued';
|
|
97191
|
+
} | {
|
|
97192
|
+
/** Date and time at which Seam created the warning. */
|
|
97193
|
+
created_at: string;
|
|
97194
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
97195
|
+
message: string;
|
|
97196
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
97197
|
+
warning_code: 'requested_code_unavailable';
|
|
97198
|
+
/** The originally requested PIN code that could not be used. */
|
|
97199
|
+
original_code: string;
|
|
97200
|
+
/** The PIN code that was assigned instead. */
|
|
97201
|
+
new_code: string;
|
|
95519
97202
|
})[];
|
|
95520
97203
|
/** Indicates whether the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
95521
97204
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -95655,6 +97338,17 @@ export type Routes = {
|
|
|
95655
97338
|
message: string;
|
|
95656
97339
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
95657
97340
|
warning_code: 'needs_to_be_reissued';
|
|
97341
|
+
} | {
|
|
97342
|
+
/** Date and time at which Seam created the warning. */
|
|
97343
|
+
created_at: string;
|
|
97344
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
97345
|
+
message: string;
|
|
97346
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
97347
|
+
warning_code: 'requested_code_unavailable';
|
|
97348
|
+
/** The originally requested PIN code that could not be used. */
|
|
97349
|
+
original_code: string;
|
|
97350
|
+
/** The PIN code that was assigned instead. */
|
|
97351
|
+
new_code: string;
|
|
95658
97352
|
})[];
|
|
95659
97353
|
/** Indicates whether the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
95660
97354
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -95872,6 +97566,17 @@ export type Routes = {
|
|
|
95872
97566
|
message: string;
|
|
95873
97567
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
95874
97568
|
warning_code: 'needs_to_be_reissued';
|
|
97569
|
+
} | {
|
|
97570
|
+
/** Date and time at which Seam created the warning. */
|
|
97571
|
+
created_at: string;
|
|
97572
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
97573
|
+
message: string;
|
|
97574
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
97575
|
+
warning_code: 'requested_code_unavailable';
|
|
97576
|
+
/** The originally requested PIN code that could not be used. */
|
|
97577
|
+
original_code: string;
|
|
97578
|
+
/** The PIN code that was assigned instead. */
|
|
97579
|
+
new_code: string;
|
|
95875
97580
|
})[];
|
|
95876
97581
|
/** Indicates whether the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
95877
97582
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -96921,6 +98626,17 @@ export type Routes = {
|
|
|
96921
98626
|
message: string;
|
|
96922
98627
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
96923
98628
|
warning_code: 'needs_to_be_reissued';
|
|
98629
|
+
} | {
|
|
98630
|
+
/** Date and time at which Seam created the warning. */
|
|
98631
|
+
created_at: string;
|
|
98632
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
98633
|
+
message: string;
|
|
98634
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
98635
|
+
warning_code: 'requested_code_unavailable';
|
|
98636
|
+
/** The originally requested PIN code that could not be used. */
|
|
98637
|
+
original_code: string;
|
|
98638
|
+
/** The PIN code that was assigned instead. */
|
|
98639
|
+
new_code: string;
|
|
96924
98640
|
})[];
|
|
96925
98641
|
/** Indicates whether the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
96926
98642
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -97060,6 +98776,17 @@ export type Routes = {
|
|
|
97060
98776
|
message: string;
|
|
97061
98777
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
97062
98778
|
warning_code: 'needs_to_be_reissued';
|
|
98779
|
+
} | {
|
|
98780
|
+
/** Date and time at which Seam created the warning. */
|
|
98781
|
+
created_at: string;
|
|
98782
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
98783
|
+
message: string;
|
|
98784
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
98785
|
+
warning_code: 'requested_code_unavailable';
|
|
98786
|
+
/** The originally requested PIN code that could not be used. */
|
|
98787
|
+
original_code: string;
|
|
98788
|
+
/** The PIN code that was assigned instead. */
|
|
98789
|
+
new_code: string;
|
|
97063
98790
|
})[];
|
|
97064
98791
|
/** Indicates whether the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
97065
98792
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -97265,6 +98992,17 @@ export type Routes = {
|
|
|
97265
98992
|
message: string;
|
|
97266
98993
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
97267
98994
|
warning_code: 'needs_to_be_reissued';
|
|
98995
|
+
} | {
|
|
98996
|
+
/** Date and time at which Seam created the warning. */
|
|
98997
|
+
created_at: string;
|
|
98998
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
98999
|
+
message: string;
|
|
99000
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
99001
|
+
warning_code: 'requested_code_unavailable';
|
|
99002
|
+
/** The originally requested PIN code that could not be used. */
|
|
99003
|
+
original_code: string;
|
|
99004
|
+
/** The PIN code that was assigned instead. */
|
|
99005
|
+
new_code: string;
|
|
97268
99006
|
})[];
|
|
97269
99007
|
/** Indicates whether the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
97270
99008
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -97404,6 +99142,17 @@ export type Routes = {
|
|
|
97404
99142
|
message: string;
|
|
97405
99143
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
97406
99144
|
warning_code: 'needs_to_be_reissued';
|
|
99145
|
+
} | {
|
|
99146
|
+
/** Date and time at which Seam created the warning. */
|
|
99147
|
+
created_at: string;
|
|
99148
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
99149
|
+
message: string;
|
|
99150
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
99151
|
+
warning_code: 'requested_code_unavailable';
|
|
99152
|
+
/** The originally requested PIN code that could not be used. */
|
|
99153
|
+
original_code: string;
|
|
99154
|
+
/** The PIN code that was assigned instead. */
|
|
99155
|
+
new_code: string;
|
|
97407
99156
|
})[];
|
|
97408
99157
|
/** Indicates whether the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
97409
99158
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -97621,6 +99370,17 @@ export type Routes = {
|
|
|
97621
99370
|
message: string;
|
|
97622
99371
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
97623
99372
|
warning_code: 'needs_to_be_reissued';
|
|
99373
|
+
} | {
|
|
99374
|
+
/** Date and time at which Seam created the warning. */
|
|
99375
|
+
created_at: string;
|
|
99376
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
99377
|
+
message: string;
|
|
99378
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
99379
|
+
warning_code: 'requested_code_unavailable';
|
|
99380
|
+
/** The originally requested PIN code that could not be used. */
|
|
99381
|
+
original_code: string;
|
|
99382
|
+
/** The PIN code that was assigned instead. */
|
|
99383
|
+
new_code: string;
|
|
97624
99384
|
})[];
|
|
97625
99385
|
/** Indicates whether the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
97626
99386
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -98441,7 +100201,7 @@ export type Routes = {
|
|
|
98441
100201
|
/** ID of the device. */
|
|
98442
100202
|
device_id: string;
|
|
98443
100203
|
/** Type of the device. */
|
|
98444
|
-
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_lock' | 'kisi_lock' | 'aqara_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone') | 'ring_camera';
|
|
100204
|
+
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'yacan_lock' | 'keyincode_lock' | 'omnitec_lock' | 'kisi_lock' | 'aqara_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone') | 'ring_camera';
|
|
98445
100205
|
/** IDs of the spaces the device is in. */
|
|
98446
100206
|
space_ids: string[];
|
|
98447
100207
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -99072,6 +100832,17 @@ export type Routes = {
|
|
|
99072
100832
|
/** IANA timezone for the Ultraloq device. */
|
|
99073
100833
|
time_zone?: ((string | null) | undefined) | undefined;
|
|
99074
100834
|
} | undefined;
|
|
100835
|
+
/** Metadata for a Yacan device. */
|
|
100836
|
+
yacan_metadata?: {
|
|
100837
|
+
/** Device ID for a Yacan device. */
|
|
100838
|
+
device_id?: (string | undefined) | undefined;
|
|
100839
|
+
/** Device name for a Yacan device. */
|
|
100840
|
+
device_name?: (string | undefined) | undefined;
|
|
100841
|
+
/** Device type for a Yacan device. */
|
|
100842
|
+
device_type?: (string | undefined) | undefined;
|
|
100843
|
+
/** Serial number for a Yacan device. */
|
|
100844
|
+
serial_number?: (string | undefined) | undefined;
|
|
100845
|
+
} | undefined;
|
|
99075
100846
|
/** Metadata for a Ring device. */
|
|
99076
100847
|
ring_metadata?: {
|
|
99077
100848
|
/** Device ID for a Ring device. */
|
|
@@ -99920,7 +101691,7 @@ export type Routes = {
|
|
|
99920
101691
|
/** ID of the device. */
|
|
99921
101692
|
device_id: string;
|
|
99922
101693
|
/** Type of the device. */
|
|
99923
|
-
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_lock' | 'kisi_lock' | 'aqara_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone') | 'ring_camera';
|
|
101694
|
+
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'yacan_lock' | 'keyincode_lock' | 'omnitec_lock' | 'kisi_lock' | 'aqara_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone') | 'ring_camera';
|
|
99924
101695
|
/** IDs of the spaces the device is in. */
|
|
99925
101696
|
space_ids: string[];
|
|
99926
101697
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -100551,6 +102322,17 @@ export type Routes = {
|
|
|
100551
102322
|
/** IANA timezone for the Ultraloq device. */
|
|
100552
102323
|
time_zone?: ((string | null) | undefined) | undefined;
|
|
100553
102324
|
} | undefined;
|
|
102325
|
+
/** Metadata for a Yacan device. */
|
|
102326
|
+
yacan_metadata?: {
|
|
102327
|
+
/** Device ID for a Yacan device. */
|
|
102328
|
+
device_id?: (string | undefined) | undefined;
|
|
102329
|
+
/** Device name for a Yacan device. */
|
|
102330
|
+
device_name?: (string | undefined) | undefined;
|
|
102331
|
+
/** Device type for a Yacan device. */
|
|
102332
|
+
device_type?: (string | undefined) | undefined;
|
|
102333
|
+
/** Serial number for a Yacan device. */
|
|
102334
|
+
serial_number?: (string | undefined) | undefined;
|
|
102335
|
+
} | undefined;
|
|
100554
102336
|
/** Metadata for a Ring device. */
|
|
100555
102337
|
ring_metadata?: {
|
|
100556
102338
|
/** Device ID for a Ring device. */
|
|
@@ -101644,6 +103426,17 @@ export type Routes = {
|
|
|
101644
103426
|
message: string;
|
|
101645
103427
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
101646
103428
|
warning_code: 'needs_to_be_reissued';
|
|
103429
|
+
} | {
|
|
103430
|
+
/** Date and time at which Seam created the warning. */
|
|
103431
|
+
created_at: string;
|
|
103432
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
103433
|
+
message: string;
|
|
103434
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
103435
|
+
warning_code: 'requested_code_unavailable';
|
|
103436
|
+
/** The originally requested PIN code that could not be used. */
|
|
103437
|
+
original_code: string;
|
|
103438
|
+
/** The PIN code that was assigned instead. */
|
|
103439
|
+
new_code: string;
|
|
101647
103440
|
})[];
|
|
101648
103441
|
/** Indicates whether the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
101649
103442
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -101783,6 +103576,17 @@ export type Routes = {
|
|
|
101783
103576
|
message: string;
|
|
101784
103577
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
101785
103578
|
warning_code: 'needs_to_be_reissued';
|
|
103579
|
+
} | {
|
|
103580
|
+
/** Date and time at which Seam created the warning. */
|
|
103581
|
+
created_at: string;
|
|
103582
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
103583
|
+
message: string;
|
|
103584
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
103585
|
+
warning_code: 'requested_code_unavailable';
|
|
103586
|
+
/** The originally requested PIN code that could not be used. */
|
|
103587
|
+
original_code: string;
|
|
103588
|
+
/** The PIN code that was assigned instead. */
|
|
103589
|
+
new_code: string;
|
|
101786
103590
|
})[];
|
|
101787
103591
|
/** Indicates whether the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
101788
103592
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -101988,6 +103792,17 @@ export type Routes = {
|
|
|
101988
103792
|
message: string;
|
|
101989
103793
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
101990
103794
|
warning_code: 'needs_to_be_reissued';
|
|
103795
|
+
} | {
|
|
103796
|
+
/** Date and time at which Seam created the warning. */
|
|
103797
|
+
created_at: string;
|
|
103798
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
103799
|
+
message: string;
|
|
103800
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
103801
|
+
warning_code: 'requested_code_unavailable';
|
|
103802
|
+
/** The originally requested PIN code that could not be used. */
|
|
103803
|
+
original_code: string;
|
|
103804
|
+
/** The PIN code that was assigned instead. */
|
|
103805
|
+
new_code: string;
|
|
101991
103806
|
})[];
|
|
101992
103807
|
/** Indicates whether the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
101993
103808
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -102127,6 +103942,17 @@ export type Routes = {
|
|
|
102127
103942
|
message: string;
|
|
102128
103943
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
102129
103944
|
warning_code: 'needs_to_be_reissued';
|
|
103945
|
+
} | {
|
|
103946
|
+
/** Date and time at which Seam created the warning. */
|
|
103947
|
+
created_at: string;
|
|
103948
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
103949
|
+
message: string;
|
|
103950
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
103951
|
+
warning_code: 'requested_code_unavailable';
|
|
103952
|
+
/** The originally requested PIN code that could not be used. */
|
|
103953
|
+
original_code: string;
|
|
103954
|
+
/** The PIN code that was assigned instead. */
|
|
103955
|
+
new_code: string;
|
|
102130
103956
|
})[];
|
|
102131
103957
|
/** Indicates whether the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
102132
103958
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -102344,6 +104170,17 @@ export type Routes = {
|
|
|
102344
104170
|
message: string;
|
|
102345
104171
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
102346
104172
|
warning_code: 'needs_to_be_reissued';
|
|
104173
|
+
} | {
|
|
104174
|
+
/** Date and time at which Seam created the warning. */
|
|
104175
|
+
created_at: string;
|
|
104176
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
104177
|
+
message: string;
|
|
104178
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
104179
|
+
warning_code: 'requested_code_unavailable';
|
|
104180
|
+
/** The originally requested PIN code that could not be used. */
|
|
104181
|
+
original_code: string;
|
|
104182
|
+
/** The PIN code that was assigned instead. */
|
|
104183
|
+
new_code: string;
|
|
102347
104184
|
})[];
|
|
102348
104185
|
/** Indicates whether the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
102349
104186
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -103594,6 +105431,17 @@ export type Routes = {
|
|
|
103594
105431
|
message: string;
|
|
103595
105432
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
103596
105433
|
warning_code: 'needs_to_be_reissued';
|
|
105434
|
+
} | {
|
|
105435
|
+
/** Date and time at which Seam created the warning. */
|
|
105436
|
+
created_at: string;
|
|
105437
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
105438
|
+
message: string;
|
|
105439
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
105440
|
+
warning_code: 'requested_code_unavailable';
|
|
105441
|
+
/** The originally requested PIN code that could not be used. */
|
|
105442
|
+
original_code: string;
|
|
105443
|
+
/** The PIN code that was assigned instead. */
|
|
105444
|
+
new_code: string;
|
|
103597
105445
|
})[];
|
|
103598
105446
|
/** Indicates whether the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
103599
105447
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -103733,6 +105581,17 @@ export type Routes = {
|
|
|
103733
105581
|
message: string;
|
|
103734
105582
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
103735
105583
|
warning_code: 'needs_to_be_reissued';
|
|
105584
|
+
} | {
|
|
105585
|
+
/** Date and time at which Seam created the warning. */
|
|
105586
|
+
created_at: string;
|
|
105587
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
105588
|
+
message: string;
|
|
105589
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
105590
|
+
warning_code: 'requested_code_unavailable';
|
|
105591
|
+
/** The originally requested PIN code that could not be used. */
|
|
105592
|
+
original_code: string;
|
|
105593
|
+
/** The PIN code that was assigned instead. */
|
|
105594
|
+
new_code: string;
|
|
103736
105595
|
})[];
|
|
103737
105596
|
/** Indicates whether the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
103738
105597
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -103938,6 +105797,17 @@ export type Routes = {
|
|
|
103938
105797
|
message: string;
|
|
103939
105798
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
103940
105799
|
warning_code: 'needs_to_be_reissued';
|
|
105800
|
+
} | {
|
|
105801
|
+
/** Date and time at which Seam created the warning. */
|
|
105802
|
+
created_at: string;
|
|
105803
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
105804
|
+
message: string;
|
|
105805
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
105806
|
+
warning_code: 'requested_code_unavailable';
|
|
105807
|
+
/** The originally requested PIN code that could not be used. */
|
|
105808
|
+
original_code: string;
|
|
105809
|
+
/** The PIN code that was assigned instead. */
|
|
105810
|
+
new_code: string;
|
|
103941
105811
|
})[];
|
|
103942
105812
|
/** Indicates whether the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
103943
105813
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -104077,6 +105947,17 @@ export type Routes = {
|
|
|
104077
105947
|
message: string;
|
|
104078
105948
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
104079
105949
|
warning_code: 'needs_to_be_reissued';
|
|
105950
|
+
} | {
|
|
105951
|
+
/** Date and time at which Seam created the warning. */
|
|
105952
|
+
created_at: string;
|
|
105953
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
105954
|
+
message: string;
|
|
105955
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
105956
|
+
warning_code: 'requested_code_unavailable';
|
|
105957
|
+
/** The originally requested PIN code that could not be used. */
|
|
105958
|
+
original_code: string;
|
|
105959
|
+
/** The PIN code that was assigned instead. */
|
|
105960
|
+
new_code: string;
|
|
104080
105961
|
})[];
|
|
104081
105962
|
/** Indicates whether the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
104082
105963
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -104294,6 +106175,17 @@ export type Routes = {
|
|
|
104294
106175
|
message: string;
|
|
104295
106176
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
104296
106177
|
warning_code: 'needs_to_be_reissued';
|
|
106178
|
+
} | {
|
|
106179
|
+
/** Date and time at which Seam created the warning. */
|
|
106180
|
+
created_at: string;
|
|
106181
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
106182
|
+
message: string;
|
|
106183
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
106184
|
+
warning_code: 'requested_code_unavailable';
|
|
106185
|
+
/** The originally requested PIN code that could not be used. */
|
|
106186
|
+
original_code: string;
|
|
106187
|
+
/** The PIN code that was assigned instead. */
|
|
106188
|
+
new_code: string;
|
|
104297
106189
|
})[];
|
|
104298
106190
|
/** Indicates whether the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
104299
106191
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -105366,6 +107258,17 @@ export type Routes = {
|
|
|
105366
107258
|
message: string;
|
|
105367
107259
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
105368
107260
|
warning_code: 'needs_to_be_reissued';
|
|
107261
|
+
} | {
|
|
107262
|
+
/** Date and time at which Seam created the warning. */
|
|
107263
|
+
created_at: string;
|
|
107264
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
107265
|
+
message: string;
|
|
107266
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
107267
|
+
warning_code: 'requested_code_unavailable';
|
|
107268
|
+
/** The originally requested PIN code that could not be used. */
|
|
107269
|
+
original_code: string;
|
|
107270
|
+
/** The PIN code that was assigned instead. */
|
|
107271
|
+
new_code: string;
|
|
105369
107272
|
})[];
|
|
105370
107273
|
/** Indicates whether the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
105371
107274
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -105505,6 +107408,17 @@ export type Routes = {
|
|
|
105505
107408
|
message: string;
|
|
105506
107409
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
105507
107410
|
warning_code: 'needs_to_be_reissued';
|
|
107411
|
+
} | {
|
|
107412
|
+
/** Date and time at which Seam created the warning. */
|
|
107413
|
+
created_at: string;
|
|
107414
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
107415
|
+
message: string;
|
|
107416
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
107417
|
+
warning_code: 'requested_code_unavailable';
|
|
107418
|
+
/** The originally requested PIN code that could not be used. */
|
|
107419
|
+
original_code: string;
|
|
107420
|
+
/** The PIN code that was assigned instead. */
|
|
107421
|
+
new_code: string;
|
|
105508
107422
|
})[];
|
|
105509
107423
|
/** Indicates whether the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
105510
107424
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -105710,6 +107624,17 @@ export type Routes = {
|
|
|
105710
107624
|
message: string;
|
|
105711
107625
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
105712
107626
|
warning_code: 'needs_to_be_reissued';
|
|
107627
|
+
} | {
|
|
107628
|
+
/** Date and time at which Seam created the warning. */
|
|
107629
|
+
created_at: string;
|
|
107630
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
107631
|
+
message: string;
|
|
107632
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
107633
|
+
warning_code: 'requested_code_unavailable';
|
|
107634
|
+
/** The originally requested PIN code that could not be used. */
|
|
107635
|
+
original_code: string;
|
|
107636
|
+
/** The PIN code that was assigned instead. */
|
|
107637
|
+
new_code: string;
|
|
105713
107638
|
})[];
|
|
105714
107639
|
/** Indicates whether the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
105715
107640
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -105849,6 +107774,17 @@ export type Routes = {
|
|
|
105849
107774
|
message: string;
|
|
105850
107775
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
105851
107776
|
warning_code: 'needs_to_be_reissued';
|
|
107777
|
+
} | {
|
|
107778
|
+
/** Date and time at which Seam created the warning. */
|
|
107779
|
+
created_at: string;
|
|
107780
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
107781
|
+
message: string;
|
|
107782
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
107783
|
+
warning_code: 'requested_code_unavailable';
|
|
107784
|
+
/** The originally requested PIN code that could not be used. */
|
|
107785
|
+
original_code: string;
|
|
107786
|
+
/** The PIN code that was assigned instead. */
|
|
107787
|
+
new_code: string;
|
|
105852
107788
|
})[];
|
|
105853
107789
|
/** Indicates whether the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
105854
107790
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -106066,6 +108002,17 @@ export type Routes = {
|
|
|
106066
108002
|
message: string;
|
|
106067
108003
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
106068
108004
|
warning_code: 'needs_to_be_reissued';
|
|
108005
|
+
} | {
|
|
108006
|
+
/** Date and time at which Seam created the warning. */
|
|
108007
|
+
created_at: string;
|
|
108008
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
108009
|
+
message: string;
|
|
108010
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
108011
|
+
warning_code: 'requested_code_unavailable';
|
|
108012
|
+
/** The originally requested PIN code that could not be used. */
|
|
108013
|
+
original_code: string;
|
|
108014
|
+
/** The PIN code that was assigned instead. */
|
|
108015
|
+
new_code: string;
|
|
106069
108016
|
})[];
|
|
106070
108017
|
/** Indicates whether the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
106071
108018
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -107250,6 +109197,17 @@ export type Routes = {
|
|
|
107250
109197
|
message: string;
|
|
107251
109198
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
107252
109199
|
warning_code: 'needs_to_be_reissued';
|
|
109200
|
+
} | {
|
|
109201
|
+
/** Date and time at which Seam created the warning. */
|
|
109202
|
+
created_at: string;
|
|
109203
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
109204
|
+
message: string;
|
|
109205
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
109206
|
+
warning_code: 'requested_code_unavailable';
|
|
109207
|
+
/** The originally requested PIN code that could not be used. */
|
|
109208
|
+
original_code: string;
|
|
109209
|
+
/** The PIN code that was assigned instead. */
|
|
109210
|
+
new_code: string;
|
|
107253
109211
|
})[];
|
|
107254
109212
|
/** Indicates whether the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
107255
109213
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -107389,6 +109347,17 @@ export type Routes = {
|
|
|
107389
109347
|
message: string;
|
|
107390
109348
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
107391
109349
|
warning_code: 'needs_to_be_reissued';
|
|
109350
|
+
} | {
|
|
109351
|
+
/** Date and time at which Seam created the warning. */
|
|
109352
|
+
created_at: string;
|
|
109353
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
109354
|
+
message: string;
|
|
109355
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
109356
|
+
warning_code: 'requested_code_unavailable';
|
|
109357
|
+
/** The originally requested PIN code that could not be used. */
|
|
109358
|
+
original_code: string;
|
|
109359
|
+
/** The PIN code that was assigned instead. */
|
|
109360
|
+
new_code: string;
|
|
107392
109361
|
})[];
|
|
107393
109362
|
/** Indicates whether the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
107394
109363
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -107594,6 +109563,17 @@ export type Routes = {
|
|
|
107594
109563
|
message: string;
|
|
107595
109564
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
107596
109565
|
warning_code: 'needs_to_be_reissued';
|
|
109566
|
+
} | {
|
|
109567
|
+
/** Date and time at which Seam created the warning. */
|
|
109568
|
+
created_at: string;
|
|
109569
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
109570
|
+
message: string;
|
|
109571
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
109572
|
+
warning_code: 'requested_code_unavailable';
|
|
109573
|
+
/** The originally requested PIN code that could not be used. */
|
|
109574
|
+
original_code: string;
|
|
109575
|
+
/** The PIN code that was assigned instead. */
|
|
109576
|
+
new_code: string;
|
|
107597
109577
|
})[];
|
|
107598
109578
|
/** Indicates whether the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
107599
109579
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -107733,6 +109713,17 @@ export type Routes = {
|
|
|
107733
109713
|
message: string;
|
|
107734
109714
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
107735
109715
|
warning_code: 'needs_to_be_reissued';
|
|
109716
|
+
} | {
|
|
109717
|
+
/** Date and time at which Seam created the warning. */
|
|
109718
|
+
created_at: string;
|
|
109719
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
109720
|
+
message: string;
|
|
109721
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
109722
|
+
warning_code: 'requested_code_unavailable';
|
|
109723
|
+
/** The originally requested PIN code that could not be used. */
|
|
109724
|
+
original_code: string;
|
|
109725
|
+
/** The PIN code that was assigned instead. */
|
|
109726
|
+
new_code: string;
|
|
107736
109727
|
})[];
|
|
107737
109728
|
/** Indicates whether the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
107738
109729
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -107950,6 +109941,17 @@ export type Routes = {
|
|
|
107950
109941
|
message: string;
|
|
107951
109942
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
107952
109943
|
warning_code: 'needs_to_be_reissued';
|
|
109944
|
+
} | {
|
|
109945
|
+
/** Date and time at which Seam created the warning. */
|
|
109946
|
+
created_at: string;
|
|
109947
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
109948
|
+
message: string;
|
|
109949
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
109950
|
+
warning_code: 'requested_code_unavailable';
|
|
109951
|
+
/** The originally requested PIN code that could not be used. */
|
|
109952
|
+
original_code: string;
|
|
109953
|
+
/** The PIN code that was assigned instead. */
|
|
109954
|
+
new_code: string;
|
|
107953
109955
|
})[];
|
|
107954
109956
|
/** Indicates whether the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
107955
109957
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -109357,7 +111359,7 @@ export type Routes = {
|
|
|
109357
111359
|
/** ID of the device. */
|
|
109358
111360
|
device_id: string;
|
|
109359
111361
|
/** Type of the device. */
|
|
109360
|
-
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_lock' | 'kisi_lock' | 'aqara_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone') | 'ring_camera';
|
|
111362
|
+
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'yacan_lock' | 'keyincode_lock' | 'omnitec_lock' | 'kisi_lock' | 'aqara_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone') | 'ring_camera';
|
|
109361
111363
|
/** IDs of the spaces the device is in. */
|
|
109362
111364
|
space_ids: string[];
|
|
109363
111365
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -109988,6 +111990,17 @@ export type Routes = {
|
|
|
109988
111990
|
/** IANA timezone for the Ultraloq device. */
|
|
109989
111991
|
time_zone?: ((string | null) | undefined) | undefined;
|
|
109990
111992
|
} | undefined;
|
|
111993
|
+
/** Metadata for a Yacan device. */
|
|
111994
|
+
yacan_metadata?: {
|
|
111995
|
+
/** Device ID for a Yacan device. */
|
|
111996
|
+
device_id?: (string | undefined) | undefined;
|
|
111997
|
+
/** Device name for a Yacan device. */
|
|
111998
|
+
device_name?: (string | undefined) | undefined;
|
|
111999
|
+
/** Device type for a Yacan device. */
|
|
112000
|
+
device_type?: (string | undefined) | undefined;
|
|
112001
|
+
/** Serial number for a Yacan device. */
|
|
112002
|
+
serial_number?: (string | undefined) | undefined;
|
|
112003
|
+
} | undefined;
|
|
109991
112004
|
/** Metadata for a Ring device. */
|
|
109992
112005
|
ring_metadata?: {
|
|
109993
112006
|
/** Device ID for a Ring device. */
|
|
@@ -110838,7 +112851,7 @@ export type Routes = {
|
|
|
110838
112851
|
/** ID of the device. */
|
|
110839
112852
|
device_id: string;
|
|
110840
112853
|
/** Type of the device. */
|
|
110841
|
-
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_lock' | 'kisi_lock' | 'aqara_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone') | 'ring_camera';
|
|
112854
|
+
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'yacan_lock' | 'keyincode_lock' | 'omnitec_lock' | 'kisi_lock' | 'aqara_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone') | 'ring_camera';
|
|
110842
112855
|
/** IDs of the spaces the device is in. */
|
|
110843
112856
|
space_ids: string[];
|
|
110844
112857
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -111469,6 +113482,17 @@ export type Routes = {
|
|
|
111469
113482
|
/** IANA timezone for the Ultraloq device. */
|
|
111470
113483
|
time_zone?: ((string | null) | undefined) | undefined;
|
|
111471
113484
|
} | undefined;
|
|
113485
|
+
/** Metadata for a Yacan device. */
|
|
113486
|
+
yacan_metadata?: {
|
|
113487
|
+
/** Device ID for a Yacan device. */
|
|
113488
|
+
device_id?: (string | undefined) | undefined;
|
|
113489
|
+
/** Device name for a Yacan device. */
|
|
113490
|
+
device_name?: (string | undefined) | undefined;
|
|
113491
|
+
/** Device type for a Yacan device. */
|
|
113492
|
+
device_type?: (string | undefined) | undefined;
|
|
113493
|
+
/** Serial number for a Yacan device. */
|
|
113494
|
+
serial_number?: (string | undefined) | undefined;
|
|
113495
|
+
} | undefined;
|
|
111472
113496
|
/** Metadata for a Ring device. */
|
|
111473
113497
|
ring_metadata?: {
|
|
111474
113498
|
/** Device ID for a Ring device. */
|
|
@@ -113624,7 +115648,7 @@ export type Routes = {
|
|
|
113624
115648
|
/** ID of the device. */
|
|
113625
115649
|
device_id: string;
|
|
113626
115650
|
/** Type of the device. */
|
|
113627
|
-
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_lock' | 'kisi_lock' | 'aqara_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone') | 'ring_camera';
|
|
115651
|
+
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'yacan_lock' | 'keyincode_lock' | 'omnitec_lock' | 'kisi_lock' | 'aqara_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone') | 'ring_camera';
|
|
113628
115652
|
/** IDs of the spaces the device is in. */
|
|
113629
115653
|
space_ids: string[];
|
|
113630
115654
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -114255,6 +116279,17 @@ export type Routes = {
|
|
|
114255
116279
|
/** IANA timezone for the Ultraloq device. */
|
|
114256
116280
|
time_zone?: ((string | null) | undefined) | undefined;
|
|
114257
116281
|
} | undefined;
|
|
116282
|
+
/** Metadata for a Yacan device. */
|
|
116283
|
+
yacan_metadata?: {
|
|
116284
|
+
/** Device ID for a Yacan device. */
|
|
116285
|
+
device_id?: (string | undefined) | undefined;
|
|
116286
|
+
/** Device name for a Yacan device. */
|
|
116287
|
+
device_name?: (string | undefined) | undefined;
|
|
116288
|
+
/** Device type for a Yacan device. */
|
|
116289
|
+
device_type?: (string | undefined) | undefined;
|
|
116290
|
+
/** Serial number for a Yacan device. */
|
|
116291
|
+
serial_number?: (string | undefined) | undefined;
|
|
116292
|
+
} | undefined;
|
|
114258
116293
|
/** Metadata for a Ring device. */
|
|
114259
116294
|
ring_metadata?: {
|
|
114260
116295
|
/** Device ID for a Ring device. */
|
|
@@ -116137,6 +118172,17 @@ export type Routes = {
|
|
|
116137
118172
|
message: string;
|
|
116138
118173
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
116139
118174
|
warning_code: 'needs_to_be_reissued';
|
|
118175
|
+
} | {
|
|
118176
|
+
/** Date and time at which Seam created the warning. */
|
|
118177
|
+
created_at: string;
|
|
118178
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
118179
|
+
message: string;
|
|
118180
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
118181
|
+
warning_code: 'requested_code_unavailable';
|
|
118182
|
+
/** The originally requested PIN code that could not be used. */
|
|
118183
|
+
original_code: string;
|
|
118184
|
+
/** The PIN code that was assigned instead. */
|
|
118185
|
+
new_code: string;
|
|
116140
118186
|
})[];
|
|
116141
118187
|
/** Indicates whether the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
116142
118188
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -116276,6 +118322,17 @@ export type Routes = {
|
|
|
116276
118322
|
message: string;
|
|
116277
118323
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
116278
118324
|
warning_code: 'needs_to_be_reissued';
|
|
118325
|
+
} | {
|
|
118326
|
+
/** Date and time at which Seam created the warning. */
|
|
118327
|
+
created_at: string;
|
|
118328
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
118329
|
+
message: string;
|
|
118330
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
118331
|
+
warning_code: 'requested_code_unavailable';
|
|
118332
|
+
/** The originally requested PIN code that could not be used. */
|
|
118333
|
+
original_code: string;
|
|
118334
|
+
/** The PIN code that was assigned instead. */
|
|
118335
|
+
new_code: string;
|
|
116279
118336
|
})[];
|
|
116280
118337
|
/** Indicates whether the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
116281
118338
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -116481,6 +118538,17 @@ export type Routes = {
|
|
|
116481
118538
|
message: string;
|
|
116482
118539
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
116483
118540
|
warning_code: 'needs_to_be_reissued';
|
|
118541
|
+
} | {
|
|
118542
|
+
/** Date and time at which Seam created the warning. */
|
|
118543
|
+
created_at: string;
|
|
118544
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
118545
|
+
message: string;
|
|
118546
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
118547
|
+
warning_code: 'requested_code_unavailable';
|
|
118548
|
+
/** The originally requested PIN code that could not be used. */
|
|
118549
|
+
original_code: string;
|
|
118550
|
+
/** The PIN code that was assigned instead. */
|
|
118551
|
+
new_code: string;
|
|
116484
118552
|
})[];
|
|
116485
118553
|
/** Indicates whether the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
116486
118554
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -116620,6 +118688,17 @@ export type Routes = {
|
|
|
116620
118688
|
message: string;
|
|
116621
118689
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
116622
118690
|
warning_code: 'needs_to_be_reissued';
|
|
118691
|
+
} | {
|
|
118692
|
+
/** Date and time at which Seam created the warning. */
|
|
118693
|
+
created_at: string;
|
|
118694
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
118695
|
+
message: string;
|
|
118696
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
118697
|
+
warning_code: 'requested_code_unavailable';
|
|
118698
|
+
/** The originally requested PIN code that could not be used. */
|
|
118699
|
+
original_code: string;
|
|
118700
|
+
/** The PIN code that was assigned instead. */
|
|
118701
|
+
new_code: string;
|
|
116623
118702
|
})[];
|
|
116624
118703
|
/** Indicates whether the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
116625
118704
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -116837,6 +118916,17 @@ export type Routes = {
|
|
|
116837
118916
|
message: string;
|
|
116838
118917
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
116839
118918
|
warning_code: 'needs_to_be_reissued';
|
|
118919
|
+
} | {
|
|
118920
|
+
/** Date and time at which Seam created the warning. */
|
|
118921
|
+
created_at: string;
|
|
118922
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
118923
|
+
message: string;
|
|
118924
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
118925
|
+
warning_code: 'requested_code_unavailable';
|
|
118926
|
+
/** The originally requested PIN code that could not be used. */
|
|
118927
|
+
original_code: string;
|
|
118928
|
+
/** The PIN code that was assigned instead. */
|
|
118929
|
+
new_code: string;
|
|
116840
118930
|
})[];
|
|
116841
118931
|
/** Indicates whether the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
116842
118932
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -118089,7 +120179,7 @@ export type Routes = {
|
|
|
118089
120179
|
/** ID of the device. */
|
|
118090
120180
|
device_id: string;
|
|
118091
120181
|
/** Type of the device. */
|
|
118092
|
-
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_lock' | 'kisi_lock' | 'aqara_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone') | 'ring_camera';
|
|
120182
|
+
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'yacan_lock' | 'keyincode_lock' | 'omnitec_lock' | 'kisi_lock' | 'aqara_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone') | 'ring_camera';
|
|
118093
120183
|
/** Unique identifier for the account associated with the device. */
|
|
118094
120184
|
connected_account_id: string;
|
|
118095
120185
|
/** Location information for the device. */
|
|
@@ -122471,6 +124561,17 @@ export type Routes = {
|
|
|
122471
124561
|
message: string;
|
|
122472
124562
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
122473
124563
|
warning_code: 'needs_to_be_reissued';
|
|
124564
|
+
} | {
|
|
124565
|
+
/** Date and time at which Seam created the warning. */
|
|
124566
|
+
created_at: string;
|
|
124567
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
124568
|
+
message: string;
|
|
124569
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
124570
|
+
warning_code: 'requested_code_unavailable';
|
|
124571
|
+
/** The originally requested PIN code that could not be used. */
|
|
124572
|
+
original_code: string;
|
|
124573
|
+
/** The PIN code that was assigned instead. */
|
|
124574
|
+
new_code: string;
|
|
122474
124575
|
})[];
|
|
122475
124576
|
/** Indicates whether the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
122476
124577
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -122611,6 +124712,17 @@ export type Routes = {
|
|
|
122611
124712
|
message: string;
|
|
122612
124713
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
122613
124714
|
warning_code: 'needs_to_be_reissued';
|
|
124715
|
+
} | {
|
|
124716
|
+
/** Date and time at which Seam created the warning. */
|
|
124717
|
+
created_at: string;
|
|
124718
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
124719
|
+
message: string;
|
|
124720
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
124721
|
+
warning_code: 'requested_code_unavailable';
|
|
124722
|
+
/** The originally requested PIN code that could not be used. */
|
|
124723
|
+
original_code: string;
|
|
124724
|
+
/** The PIN code that was assigned instead. */
|
|
124725
|
+
new_code: string;
|
|
122614
124726
|
})[];
|
|
122615
124727
|
/** Indicates whether the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
122616
124728
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -123881,6 +125993,17 @@ export type Routes = {
|
|
|
123881
125993
|
message: string;
|
|
123882
125994
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
123883
125995
|
warning_code: 'needs_to_be_reissued';
|
|
125996
|
+
} | {
|
|
125997
|
+
/** Date and time at which Seam created the warning. */
|
|
125998
|
+
created_at: string;
|
|
125999
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
126000
|
+
message: string;
|
|
126001
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
126002
|
+
warning_code: 'requested_code_unavailable';
|
|
126003
|
+
/** The originally requested PIN code that could not be used. */
|
|
126004
|
+
original_code: string;
|
|
126005
|
+
/** The PIN code that was assigned instead. */
|
|
126006
|
+
new_code: string;
|
|
123884
126007
|
})[];
|
|
123885
126008
|
/** Indicates whether the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
123886
126009
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -124020,6 +126143,17 @@ export type Routes = {
|
|
|
124020
126143
|
message: string;
|
|
124021
126144
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
124022
126145
|
warning_code: 'needs_to_be_reissued';
|
|
126146
|
+
} | {
|
|
126147
|
+
/** Date and time at which Seam created the warning. */
|
|
126148
|
+
created_at: string;
|
|
126149
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
126150
|
+
message: string;
|
|
126151
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
126152
|
+
warning_code: 'requested_code_unavailable';
|
|
126153
|
+
/** The originally requested PIN code that could not be used. */
|
|
126154
|
+
original_code: string;
|
|
126155
|
+
/** The PIN code that was assigned instead. */
|
|
126156
|
+
new_code: string;
|
|
124023
126157
|
})[];
|
|
124024
126158
|
/** Indicates whether the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
124025
126159
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -124225,6 +126359,17 @@ export type Routes = {
|
|
|
124225
126359
|
message: string;
|
|
124226
126360
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
124227
126361
|
warning_code: 'needs_to_be_reissued';
|
|
126362
|
+
} | {
|
|
126363
|
+
/** Date and time at which Seam created the warning. */
|
|
126364
|
+
created_at: string;
|
|
126365
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
126366
|
+
message: string;
|
|
126367
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
126368
|
+
warning_code: 'requested_code_unavailable';
|
|
126369
|
+
/** The originally requested PIN code that could not be used. */
|
|
126370
|
+
original_code: string;
|
|
126371
|
+
/** The PIN code that was assigned instead. */
|
|
126372
|
+
new_code: string;
|
|
124228
126373
|
})[];
|
|
124229
126374
|
/** Indicates whether the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
124230
126375
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -124364,6 +126509,17 @@ export type Routes = {
|
|
|
124364
126509
|
message: string;
|
|
124365
126510
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
124366
126511
|
warning_code: 'needs_to_be_reissued';
|
|
126512
|
+
} | {
|
|
126513
|
+
/** Date and time at which Seam created the warning. */
|
|
126514
|
+
created_at: string;
|
|
126515
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
126516
|
+
message: string;
|
|
126517
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
126518
|
+
warning_code: 'requested_code_unavailable';
|
|
126519
|
+
/** The originally requested PIN code that could not be used. */
|
|
126520
|
+
original_code: string;
|
|
126521
|
+
/** The PIN code that was assigned instead. */
|
|
126522
|
+
new_code: string;
|
|
124367
126523
|
})[];
|
|
124368
126524
|
/** Indicates whether the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
124369
126525
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -124581,6 +126737,17 @@ export type Routes = {
|
|
|
124581
126737
|
message: string;
|
|
124582
126738
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
124583
126739
|
warning_code: 'needs_to_be_reissued';
|
|
126740
|
+
} | {
|
|
126741
|
+
/** Date and time at which Seam created the warning. */
|
|
126742
|
+
created_at: string;
|
|
126743
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
126744
|
+
message: string;
|
|
126745
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
126746
|
+
warning_code: 'requested_code_unavailable';
|
|
126747
|
+
/** The originally requested PIN code that could not be used. */
|
|
126748
|
+
original_code: string;
|
|
126749
|
+
/** The PIN code that was assigned instead. */
|
|
126750
|
+
new_code: string;
|
|
124584
126751
|
})[];
|
|
124585
126752
|
/** Indicates whether the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
124586
126753
|
is_multi_phone_sync_credential?: boolean | undefined;
|