@seamapi/types 1.999.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/phones/phone-session.d.ts +98 -0
- package/lib/seam/connect/openapi.js +280 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +1980 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/models/acs/acs-credential.ts +16 -0
- package/src/lib/seam/connect/openapi.ts +326 -0
- package/src/lib/seam/connect/route-types.ts +2160 -0
|
@@ -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;
|
|
@@ -15164,6 +15384,17 @@ export type Routes = {
|
|
|
15164
15384
|
message: string;
|
|
15165
15385
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
15166
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;
|
|
15167
15398
|
})[];
|
|
15168
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). */
|
|
15169
15400
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -15303,6 +15534,17 @@ export type Routes = {
|
|
|
15303
15534
|
message: string;
|
|
15304
15535
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
15305
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;
|
|
15306
15548
|
})[];
|
|
15307
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). */
|
|
15308
15550
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -15508,6 +15750,17 @@ export type Routes = {
|
|
|
15508
15750
|
message: string;
|
|
15509
15751
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
15510
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;
|
|
15511
15764
|
})[];
|
|
15512
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). */
|
|
15513
15766
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -15647,6 +15900,17 @@ export type Routes = {
|
|
|
15647
15900
|
message: string;
|
|
15648
15901
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
15649
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;
|
|
15650
15914
|
})[];
|
|
15651
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). */
|
|
15652
15916
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -15864,6 +16128,17 @@ export type Routes = {
|
|
|
15864
16128
|
message: string;
|
|
15865
16129
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
15866
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;
|
|
15867
16142
|
})[];
|
|
15868
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). */
|
|
15869
16144
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -16924,6 +17199,17 @@ export type Routes = {
|
|
|
16924
17199
|
message: string;
|
|
16925
17200
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
16926
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;
|
|
16927
17213
|
})[];
|
|
16928
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). */
|
|
16929
17215
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -17063,6 +17349,17 @@ export type Routes = {
|
|
|
17063
17349
|
message: string;
|
|
17064
17350
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
17065
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;
|
|
17066
17363
|
})[];
|
|
17067
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). */
|
|
17068
17365
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -17268,6 +17565,17 @@ export type Routes = {
|
|
|
17268
17565
|
message: string;
|
|
17269
17566
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
17270
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;
|
|
17271
17579
|
})[];
|
|
17272
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). */
|
|
17273
17581
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -17407,6 +17715,17 @@ export type Routes = {
|
|
|
17407
17715
|
message: string;
|
|
17408
17716
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
17409
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;
|
|
17410
17729
|
})[];
|
|
17411
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). */
|
|
17412
17731
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -17624,6 +17943,17 @@ export type Routes = {
|
|
|
17624
17943
|
message: string;
|
|
17625
17944
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
17626
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;
|
|
17627
17957
|
})[];
|
|
17628
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). */
|
|
17629
17959
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -20770,6 +21100,17 @@ export type Routes = {
|
|
|
20770
21100
|
message: string;
|
|
20771
21101
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
20772
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;
|
|
20773
21114
|
})[];
|
|
20774
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). */
|
|
20775
21116
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -21236,6 +21577,17 @@ export type Routes = {
|
|
|
21236
21577
|
message: string;
|
|
21237
21578
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
21238
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;
|
|
21239
21591
|
})[];
|
|
21240
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). */
|
|
21241
21593
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -21375,6 +21727,17 @@ export type Routes = {
|
|
|
21375
21727
|
message: string;
|
|
21376
21728
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
21377
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;
|
|
21378
21741
|
})[];
|
|
21379
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). */
|
|
21380
21743
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -21580,6 +21943,17 @@ export type Routes = {
|
|
|
21580
21943
|
message: string;
|
|
21581
21944
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
21582
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;
|
|
21583
21957
|
})[];
|
|
21584
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). */
|
|
21585
21959
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -21719,6 +22093,17 @@ export type Routes = {
|
|
|
21719
22093
|
message: string;
|
|
21720
22094
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
21721
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;
|
|
21722
22107
|
})[];
|
|
21723
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). */
|
|
21724
22109
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -21936,6 +22321,17 @@ export type Routes = {
|
|
|
21936
22321
|
message: string;
|
|
21937
22322
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
21938
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;
|
|
21939
22335
|
})[];
|
|
21940
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). */
|
|
21941
22337
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -24460,6 +24856,17 @@ export type Routes = {
|
|
|
24460
24856
|
message: string;
|
|
24461
24857
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
24462
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;
|
|
24463
24870
|
})[];
|
|
24464
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). */
|
|
24465
24872
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -24672,6 +25079,17 @@ export type Routes = {
|
|
|
24672
25079
|
message: string;
|
|
24673
25080
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
24674
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;
|
|
24675
25093
|
})[];
|
|
24676
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). */
|
|
24677
25095
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -24841,6 +25259,17 @@ export type Routes = {
|
|
|
24841
25259
|
message: string;
|
|
24842
25260
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
24843
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;
|
|
24844
25273
|
})[];
|
|
24845
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). */
|
|
24846
25275
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -25015,6 +25444,17 @@ export type Routes = {
|
|
|
25015
25444
|
message: string;
|
|
25016
25445
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
25017
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;
|
|
25018
25458
|
})[];
|
|
25019
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). */
|
|
25020
25460
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -25191,6 +25631,17 @@ export type Routes = {
|
|
|
25191
25631
|
message: string;
|
|
25192
25632
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
25193
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;
|
|
25194
25645
|
})[];
|
|
25195
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). */
|
|
25196
25647
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -25584,6 +26035,17 @@ export type Routes = {
|
|
|
25584
26035
|
message: string;
|
|
25585
26036
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
25586
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;
|
|
25587
26049
|
})[];
|
|
25588
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). */
|
|
25589
26051
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -25739,6 +26201,17 @@ export type Routes = {
|
|
|
25739
26201
|
message: string;
|
|
25740
26202
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
25741
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;
|
|
25742
26215
|
})[];
|
|
25743
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). */
|
|
25744
26217
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -25906,6 +26379,17 @@ export type Routes = {
|
|
|
25906
26379
|
message: string;
|
|
25907
26380
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
25908
26381
|
warning_code: 'needs_to_be_reissued';
|
|
26382
|
+
} | {
|
|
26383
|
+
/** Date and time at which Seam created the warning. */
|
|
26384
|
+
created_at: string;
|
|
26385
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
26386
|
+
message: string;
|
|
26387
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
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;
|
|
25909
26393
|
})[];
|
|
25910
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). */
|
|
25911
26395
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -26070,6 +26554,17 @@ export type Routes = {
|
|
|
26070
26554
|
message: string;
|
|
26071
26555
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
26072
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;
|
|
26073
26568
|
})[];
|
|
26074
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). */
|
|
26075
26570
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -26370,6 +26865,17 @@ export type Routes = {
|
|
|
26370
26865
|
message: string;
|
|
26371
26866
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
26372
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;
|
|
26373
26879
|
})[];
|
|
26374
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). */
|
|
26375
26881
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -26509,6 +27015,17 @@ export type Routes = {
|
|
|
26509
27015
|
message: string;
|
|
26510
27016
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
26511
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;
|
|
26512
27029
|
})[];
|
|
26513
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). */
|
|
26514
27031
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -26714,6 +27231,17 @@ export type Routes = {
|
|
|
26714
27231
|
message: string;
|
|
26715
27232
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
26716
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;
|
|
26717
27245
|
})[];
|
|
26718
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). */
|
|
26719
27247
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -26853,6 +27381,17 @@ export type Routes = {
|
|
|
26853
27381
|
message: string;
|
|
26854
27382
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
26855
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;
|
|
26856
27395
|
})[];
|
|
26857
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). */
|
|
26858
27397
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -27070,6 +27609,17 @@ export type Routes = {
|
|
|
27070
27609
|
message: string;
|
|
27071
27610
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
27072
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;
|
|
27073
27623
|
})[];
|
|
27074
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). */
|
|
27075
27625
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -28222,6 +28772,17 @@ export type Routes = {
|
|
|
28222
28772
|
message: string;
|
|
28223
28773
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
28224
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;
|
|
28225
28786
|
})[];
|
|
28226
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). */
|
|
28227
28788
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -28361,6 +28922,17 @@ export type Routes = {
|
|
|
28361
28922
|
message: string;
|
|
28362
28923
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
28363
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;
|
|
28364
28936
|
})[];
|
|
28365
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). */
|
|
28366
28938
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -28566,6 +29138,17 @@ export type Routes = {
|
|
|
28566
29138
|
message: string;
|
|
28567
29139
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
28568
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;
|
|
28569
29152
|
})[];
|
|
28570
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). */
|
|
28571
29154
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -28705,6 +29288,17 @@ export type Routes = {
|
|
|
28705
29288
|
message: string;
|
|
28706
29289
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
28707
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;
|
|
28708
29302
|
})[];
|
|
28709
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). */
|
|
28710
29304
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -28922,6 +29516,17 @@ export type Routes = {
|
|
|
28922
29516
|
message: string;
|
|
28923
29517
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
28924
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;
|
|
28925
29530
|
})[];
|
|
28926
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). */
|
|
28927
29532
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -29970,6 +30575,17 @@ export type Routes = {
|
|
|
29970
30575
|
message: string;
|
|
29971
30576
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
29972
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;
|
|
29973
30589
|
})[];
|
|
29974
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). */
|
|
29975
30591
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -30109,6 +30725,17 @@ export type Routes = {
|
|
|
30109
30725
|
message: string;
|
|
30110
30726
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
30111
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;
|
|
30112
30739
|
})[];
|
|
30113
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). */
|
|
30114
30741
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -30314,6 +30941,17 @@ export type Routes = {
|
|
|
30314
30941
|
message: string;
|
|
30315
30942
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
30316
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;
|
|
30317
30955
|
})[];
|
|
30318
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). */
|
|
30319
30957
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -30453,6 +31091,17 @@ export type Routes = {
|
|
|
30453
31091
|
message: string;
|
|
30454
31092
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
30455
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;
|
|
30456
31105
|
})[];
|
|
30457
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). */
|
|
30458
31107
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -30670,6 +31319,17 @@ export type Routes = {
|
|
|
30670
31319
|
message: string;
|
|
30671
31320
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
30672
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;
|
|
30673
31333
|
})[];
|
|
30674
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). */
|
|
30675
31335
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -32140,6 +32800,17 @@ export type Routes = {
|
|
|
32140
32800
|
message: string;
|
|
32141
32801
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
32142
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;
|
|
32143
32814
|
})[];
|
|
32144
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). */
|
|
32145
32816
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -32438,6 +33109,17 @@ export type Routes = {
|
|
|
32438
33109
|
message: string;
|
|
32439
33110
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
32440
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;
|
|
32441
33123
|
})[];
|
|
32442
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). */
|
|
32443
33125
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -32577,6 +33259,17 @@ export type Routes = {
|
|
|
32577
33259
|
message: string;
|
|
32578
33260
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
32579
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;
|
|
32580
33273
|
})[];
|
|
32581
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). */
|
|
32582
33275
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -32782,6 +33475,17 @@ export type Routes = {
|
|
|
32782
33475
|
message: string;
|
|
32783
33476
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
32784
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;
|
|
32785
33489
|
})[];
|
|
32786
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). */
|
|
32787
33491
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -32921,6 +33625,17 @@ export type Routes = {
|
|
|
32921
33625
|
message: string;
|
|
32922
33626
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
32923
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;
|
|
32924
33639
|
})[];
|
|
32925
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). */
|
|
32926
33641
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -33138,6 +33853,17 @@ export type Routes = {
|
|
|
33138
33853
|
message: string;
|
|
33139
33854
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
33140
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;
|
|
33141
33867
|
})[];
|
|
33142
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). */
|
|
33143
33869
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -36536,6 +37262,17 @@ export type Routes = {
|
|
|
36536
37262
|
message: string;
|
|
36537
37263
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
36538
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;
|
|
36539
37276
|
})[];
|
|
36540
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). */
|
|
36541
37278
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -36675,6 +37412,17 @@ export type Routes = {
|
|
|
36675
37412
|
message: string;
|
|
36676
37413
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
36677
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;
|
|
36678
37426
|
})[];
|
|
36679
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). */
|
|
36680
37428
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -36880,6 +37628,17 @@ export type Routes = {
|
|
|
36880
37628
|
message: string;
|
|
36881
37629
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
36882
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;
|
|
36883
37642
|
})[];
|
|
36884
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). */
|
|
36885
37644
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -37019,6 +37778,17 @@ export type Routes = {
|
|
|
37019
37778
|
message: string;
|
|
37020
37779
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
37021
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;
|
|
37022
37792
|
})[];
|
|
37023
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). */
|
|
37024
37794
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -37236,6 +38006,17 @@ export type Routes = {
|
|
|
37236
38006
|
message: string;
|
|
37237
38007
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
37238
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;
|
|
37239
38020
|
})[];
|
|
37240
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). */
|
|
37241
38022
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -38276,6 +39057,17 @@ export type Routes = {
|
|
|
38276
39057
|
message: string;
|
|
38277
39058
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
38278
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;
|
|
38279
39071
|
})[];
|
|
38280
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). */
|
|
38281
39073
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -38415,6 +39207,17 @@ export type Routes = {
|
|
|
38415
39207
|
message: string;
|
|
38416
39208
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
38417
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;
|
|
38418
39221
|
})[];
|
|
38419
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). */
|
|
38420
39223
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -38620,6 +39423,17 @@ export type Routes = {
|
|
|
38620
39423
|
message: string;
|
|
38621
39424
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
38622
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;
|
|
38623
39437
|
})[];
|
|
38624
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). */
|
|
38625
39439
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -38759,6 +39573,17 @@ export type Routes = {
|
|
|
38759
39573
|
message: string;
|
|
38760
39574
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
38761
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;
|
|
38762
39587
|
})[];
|
|
38763
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). */
|
|
38764
39589
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -38976,6 +39801,17 @@ export type Routes = {
|
|
|
38976
39801
|
message: string;
|
|
38977
39802
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
38978
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;
|
|
38979
39815
|
})[];
|
|
38980
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). */
|
|
38981
39817
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -53119,6 +53955,17 @@ export type Routes = {
|
|
|
53119
53955
|
message: string;
|
|
53120
53956
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
53121
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;
|
|
53122
53969
|
})[];
|
|
53123
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). */
|
|
53124
53971
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -53258,6 +54105,17 @@ export type Routes = {
|
|
|
53258
54105
|
message: string;
|
|
53259
54106
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
53260
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;
|
|
53261
54119
|
})[];
|
|
53262
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). */
|
|
53263
54121
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -53463,6 +54321,17 @@ export type Routes = {
|
|
|
53463
54321
|
message: string;
|
|
53464
54322
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
53465
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;
|
|
53466
54335
|
})[];
|
|
53467
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). */
|
|
53468
54337
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -53602,6 +54471,17 @@ export type Routes = {
|
|
|
53602
54471
|
message: string;
|
|
53603
54472
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
53604
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;
|
|
53605
54485
|
})[];
|
|
53606
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). */
|
|
53607
54487
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -53819,6 +54699,17 @@ export type Routes = {
|
|
|
53819
54699
|
message: string;
|
|
53820
54700
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
53821
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;
|
|
53822
54713
|
})[];
|
|
53823
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). */
|
|
53824
54715
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -60862,6 +61753,17 @@ export type Routes = {
|
|
|
60862
61753
|
message: string;
|
|
60863
61754
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
60864
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;
|
|
60865
61767
|
})[];
|
|
60866
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). */
|
|
60867
61769
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -61001,6 +61903,17 @@ export type Routes = {
|
|
|
61001
61903
|
message: string;
|
|
61002
61904
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
61003
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;
|
|
61004
61917
|
})[];
|
|
61005
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). */
|
|
61006
61919
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -61206,6 +62119,17 @@ export type Routes = {
|
|
|
61206
62119
|
message: string;
|
|
61207
62120
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
61208
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;
|
|
61209
62133
|
})[];
|
|
61210
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). */
|
|
61211
62135
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -61345,6 +62269,17 @@ export type Routes = {
|
|
|
61345
62269
|
message: string;
|
|
61346
62270
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
61347
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;
|
|
61348
62283
|
})[];
|
|
61349
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). */
|
|
61350
62285
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -61562,6 +62497,17 @@ export type Routes = {
|
|
|
61562
62497
|
message: string;
|
|
61563
62498
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
61564
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;
|
|
61565
62511
|
})[];
|
|
61566
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). */
|
|
61567
62513
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -62603,6 +63549,17 @@ export type Routes = {
|
|
|
62603
63549
|
message: string;
|
|
62604
63550
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
62605
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;
|
|
62606
63563
|
})[];
|
|
62607
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). */
|
|
62608
63565
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -62742,6 +63699,17 @@ export type Routes = {
|
|
|
62742
63699
|
message: string;
|
|
62743
63700
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
62744
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;
|
|
62745
63713
|
})[];
|
|
62746
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). */
|
|
62747
63715
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -62947,6 +63915,17 @@ export type Routes = {
|
|
|
62947
63915
|
message: string;
|
|
62948
63916
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
62949
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;
|
|
62950
63929
|
})[];
|
|
62951
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). */
|
|
62952
63931
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -63086,6 +64065,17 @@ export type Routes = {
|
|
|
63086
64065
|
message: string;
|
|
63087
64066
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
63088
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;
|
|
63089
64079
|
})[];
|
|
63090
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). */
|
|
63091
64081
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -63303,6 +64293,17 @@ export type Routes = {
|
|
|
63303
64293
|
message: string;
|
|
63304
64294
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
63305
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;
|
|
63306
64307
|
})[];
|
|
63307
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). */
|
|
63308
64309
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -64342,6 +65343,17 @@ export type Routes = {
|
|
|
64342
65343
|
message: string;
|
|
64343
65344
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
64344
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;
|
|
64345
65357
|
})[];
|
|
64346
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). */
|
|
64347
65359
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -64481,6 +65493,17 @@ export type Routes = {
|
|
|
64481
65493
|
message: string;
|
|
64482
65494
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
64483
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;
|
|
64484
65507
|
})[];
|
|
64485
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). */
|
|
64486
65509
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -64686,6 +65709,17 @@ export type Routes = {
|
|
|
64686
65709
|
message: string;
|
|
64687
65710
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
64688
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;
|
|
64689
65723
|
})[];
|
|
64690
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). */
|
|
64691
65725
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -64825,6 +65859,17 @@ export type Routes = {
|
|
|
64825
65859
|
message: string;
|
|
64826
65860
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
64827
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;
|
|
64828
65873
|
})[];
|
|
64829
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). */
|
|
64830
65875
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -65042,6 +66087,17 @@ export type Routes = {
|
|
|
65042
66087
|
message: string;
|
|
65043
66088
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
65044
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;
|
|
65045
66101
|
})[];
|
|
65046
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). */
|
|
65047
66103
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -66083,6 +67139,17 @@ export type Routes = {
|
|
|
66083
67139
|
message: string;
|
|
66084
67140
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
66085
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;
|
|
66086
67153
|
})[];
|
|
66087
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). */
|
|
66088
67155
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -66222,6 +67289,17 @@ export type Routes = {
|
|
|
66222
67289
|
message: string;
|
|
66223
67290
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
66224
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;
|
|
66225
67303
|
})[];
|
|
66226
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). */
|
|
66227
67305
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -66427,6 +67505,17 @@ export type Routes = {
|
|
|
66427
67505
|
message: string;
|
|
66428
67506
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
66429
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;
|
|
66430
67519
|
})[];
|
|
66431
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). */
|
|
66432
67521
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -66566,6 +67655,17 @@ export type Routes = {
|
|
|
66566
67655
|
message: string;
|
|
66567
67656
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
66568
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;
|
|
66569
67669
|
})[];
|
|
66570
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). */
|
|
66571
67671
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -66783,6 +67883,17 @@ export type Routes = {
|
|
|
66783
67883
|
message: string;
|
|
66784
67884
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
66785
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;
|
|
66786
67897
|
})[];
|
|
66787
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). */
|
|
66788
67899
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -70838,6 +71949,17 @@ export type Routes = {
|
|
|
70838
71949
|
message: string;
|
|
70839
71950
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
70840
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;
|
|
70841
71963
|
})[];
|
|
70842
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). */
|
|
70843
71965
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -70977,6 +72099,17 @@ export type Routes = {
|
|
|
70977
72099
|
message: string;
|
|
70978
72100
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
70979
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;
|
|
70980
72113
|
})[];
|
|
70981
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). */
|
|
70982
72115
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -71182,6 +72315,17 @@ export type Routes = {
|
|
|
71182
72315
|
message: string;
|
|
71183
72316
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
71184
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;
|
|
71185
72329
|
})[];
|
|
71186
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). */
|
|
71187
72331
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -71321,6 +72465,17 @@ export type Routes = {
|
|
|
71321
72465
|
message: string;
|
|
71322
72466
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
71323
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;
|
|
71324
72479
|
})[];
|
|
71325
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). */
|
|
71326
72481
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -71538,6 +72693,17 @@ export type Routes = {
|
|
|
71538
72693
|
message: string;
|
|
71539
72694
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
71540
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;
|
|
71541
72707
|
})[];
|
|
71542
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). */
|
|
71543
72709
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -72598,6 +73764,17 @@ export type Routes = {
|
|
|
72598
73764
|
message: string;
|
|
72599
73765
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
72600
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;
|
|
72601
73778
|
})[];
|
|
72602
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). */
|
|
72603
73780
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -72737,6 +73914,17 @@ export type Routes = {
|
|
|
72737
73914
|
message: string;
|
|
72738
73915
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
72739
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;
|
|
72740
73928
|
})[];
|
|
72741
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). */
|
|
72742
73930
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -72942,6 +74130,17 @@ export type Routes = {
|
|
|
72942
74130
|
message: string;
|
|
72943
74131
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
72944
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;
|
|
72945
74144
|
})[];
|
|
72946
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). */
|
|
72947
74146
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -73081,6 +74280,17 @@ export type Routes = {
|
|
|
73081
74280
|
message: string;
|
|
73082
74281
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
73083
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;
|
|
73084
74294
|
})[];
|
|
73085
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). */
|
|
73086
74296
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -73298,6 +74508,17 @@ export type Routes = {
|
|
|
73298
74508
|
message: string;
|
|
73299
74509
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
73300
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;
|
|
73301
74522
|
})[];
|
|
73302
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). */
|
|
73303
74524
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -74414,6 +75635,17 @@ export type Routes = {
|
|
|
74414
75635
|
message: string;
|
|
74415
75636
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
74416
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;
|
|
74417
75649
|
})[];
|
|
74418
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). */
|
|
74419
75651
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -74553,6 +75785,17 @@ export type Routes = {
|
|
|
74553
75785
|
message: string;
|
|
74554
75786
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
74555
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;
|
|
74556
75799
|
})[];
|
|
74557
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). */
|
|
74558
75801
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -74758,6 +76001,17 @@ export type Routes = {
|
|
|
74758
76001
|
message: string;
|
|
74759
76002
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
74760
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;
|
|
74761
76015
|
})[];
|
|
74762
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). */
|
|
74763
76017
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -74897,6 +76151,17 @@ export type Routes = {
|
|
|
74897
76151
|
message: string;
|
|
74898
76152
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
74899
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;
|
|
74900
76165
|
})[];
|
|
74901
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). */
|
|
74902
76167
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -75114,6 +76379,17 @@ export type Routes = {
|
|
|
75114
76379
|
message: string;
|
|
75115
76380
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
75116
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;
|
|
75117
76393
|
})[];
|
|
75118
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). */
|
|
75119
76395
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -78011,6 +79287,17 @@ export type Routes = {
|
|
|
78011
79287
|
message: string;
|
|
78012
79288
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
78013
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;
|
|
78014
79301
|
})[];
|
|
78015
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). */
|
|
78016
79303
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -78150,6 +79437,17 @@ export type Routes = {
|
|
|
78150
79437
|
message: string;
|
|
78151
79438
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
78152
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;
|
|
78153
79451
|
})[];
|
|
78154
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). */
|
|
78155
79453
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -78355,6 +79653,17 @@ export type Routes = {
|
|
|
78355
79653
|
message: string;
|
|
78356
79654
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
78357
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;
|
|
78358
79667
|
})[];
|
|
78359
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). */
|
|
78360
79669
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -78494,6 +79803,17 @@ export type Routes = {
|
|
|
78494
79803
|
message: string;
|
|
78495
79804
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
78496
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;
|
|
78497
79817
|
})[];
|
|
78498
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). */
|
|
78499
79819
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -78711,6 +80031,17 @@ export type Routes = {
|
|
|
78711
80031
|
message: string;
|
|
78712
80032
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
78713
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;
|
|
78714
80045
|
})[];
|
|
78715
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). */
|
|
78716
80047
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -85021,6 +86352,17 @@ export type Routes = {
|
|
|
85021
86352
|
message: string;
|
|
85022
86353
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
85023
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;
|
|
85024
86366
|
})[];
|
|
85025
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). */
|
|
85026
86368
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -85199,6 +86541,17 @@ export type Routes = {
|
|
|
85199
86541
|
message: string;
|
|
85200
86542
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
85201
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;
|
|
85202
86555
|
})[];
|
|
85203
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). */
|
|
85204
86557
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -88441,6 +89794,17 @@ export type Routes = {
|
|
|
88441
89794
|
message: string;
|
|
88442
89795
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
88443
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;
|
|
88444
89808
|
})[];
|
|
88445
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). */
|
|
88446
89810
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -88580,6 +89944,17 @@ export type Routes = {
|
|
|
88580
89944
|
message: string;
|
|
88581
89945
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
88582
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;
|
|
88583
89958
|
})[];
|
|
88584
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). */
|
|
88585
89960
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -88785,6 +90160,17 @@ export type Routes = {
|
|
|
88785
90160
|
message: string;
|
|
88786
90161
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
88787
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;
|
|
88788
90174
|
})[];
|
|
88789
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). */
|
|
88790
90176
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -88924,6 +90310,17 @@ export type Routes = {
|
|
|
88924
90310
|
message: string;
|
|
88925
90311
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
88926
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;
|
|
88927
90324
|
})[];
|
|
88928
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). */
|
|
88929
90326
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -89141,6 +90538,17 @@ export type Routes = {
|
|
|
89141
90538
|
message: string;
|
|
89142
90539
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
89143
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;
|
|
89144
90552
|
})[];
|
|
89145
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). */
|
|
89146
90554
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -90186,6 +91594,17 @@ export type Routes = {
|
|
|
90186
91594
|
message: string;
|
|
90187
91595
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
90188
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;
|
|
90189
91608
|
})[];
|
|
90190
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). */
|
|
90191
91610
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -90325,6 +91744,17 @@ export type Routes = {
|
|
|
90325
91744
|
message: string;
|
|
90326
91745
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
90327
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;
|
|
90328
91758
|
})[];
|
|
90329
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). */
|
|
90330
91760
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -90530,6 +91960,17 @@ export type Routes = {
|
|
|
90530
91960
|
message: string;
|
|
90531
91961
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
90532
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;
|
|
90533
91974
|
})[];
|
|
90534
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). */
|
|
90535
91976
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -90669,6 +92110,17 @@ export type Routes = {
|
|
|
90669
92110
|
message: string;
|
|
90670
92111
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
90671
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;
|
|
90672
92124
|
})[];
|
|
90673
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). */
|
|
90674
92126
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -90886,6 +92338,17 @@ export type Routes = {
|
|
|
90886
92338
|
message: string;
|
|
90887
92339
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
90888
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;
|
|
90889
92352
|
})[];
|
|
90890
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). */
|
|
90891
92354
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -92037,6 +93500,17 @@ export type Routes = {
|
|
|
92037
93500
|
message: string;
|
|
92038
93501
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
92039
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;
|
|
92040
93514
|
})[];
|
|
92041
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). */
|
|
92042
93516
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -92176,6 +93650,17 @@ export type Routes = {
|
|
|
92176
93650
|
message: string;
|
|
92177
93651
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
92178
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;
|
|
92179
93664
|
})[];
|
|
92180
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). */
|
|
92181
93666
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -92381,6 +93866,17 @@ export type Routes = {
|
|
|
92381
93866
|
message: string;
|
|
92382
93867
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
92383
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;
|
|
92384
93880
|
})[];
|
|
92385
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). */
|
|
92386
93882
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -92520,6 +94016,17 @@ export type Routes = {
|
|
|
92520
94016
|
message: string;
|
|
92521
94017
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
92522
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;
|
|
92523
94030
|
})[];
|
|
92524
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). */
|
|
92525
94032
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -92737,6 +94244,17 @@ export type Routes = {
|
|
|
92737
94244
|
message: string;
|
|
92738
94245
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
92739
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;
|
|
92740
94258
|
})[];
|
|
92741
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). */
|
|
92742
94260
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -95304,6 +96822,17 @@ export type Routes = {
|
|
|
95304
96822
|
message: string;
|
|
95305
96823
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
95306
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;
|
|
95307
96836
|
})[];
|
|
95308
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). */
|
|
95309
96838
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -95443,6 +96972,17 @@ export type Routes = {
|
|
|
95443
96972
|
message: string;
|
|
95444
96973
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
95445
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;
|
|
95446
96986
|
})[];
|
|
95447
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). */
|
|
95448
96988
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -95648,6 +97188,17 @@ export type Routes = {
|
|
|
95648
97188
|
message: string;
|
|
95649
97189
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
95650
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;
|
|
95651
97202
|
})[];
|
|
95652
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). */
|
|
95653
97204
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -95787,6 +97338,17 @@ export type Routes = {
|
|
|
95787
97338
|
message: string;
|
|
95788
97339
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
95789
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;
|
|
95790
97352
|
})[];
|
|
95791
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). */
|
|
95792
97354
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -96004,6 +97566,17 @@ export type Routes = {
|
|
|
96004
97566
|
message: string;
|
|
96005
97567
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
96006
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;
|
|
96007
97580
|
})[];
|
|
96008
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). */
|
|
96009
97582
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -97053,6 +98626,17 @@ export type Routes = {
|
|
|
97053
98626
|
message: string;
|
|
97054
98627
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
97055
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;
|
|
97056
98640
|
})[];
|
|
97057
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). */
|
|
97058
98642
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -97192,6 +98776,17 @@ export type Routes = {
|
|
|
97192
98776
|
message: string;
|
|
97193
98777
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
97194
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;
|
|
97195
98790
|
})[];
|
|
97196
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). */
|
|
97197
98792
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -97397,6 +98992,17 @@ export type Routes = {
|
|
|
97397
98992
|
message: string;
|
|
97398
98993
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
97399
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;
|
|
97400
99006
|
})[];
|
|
97401
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). */
|
|
97402
99008
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -97536,6 +99142,17 @@ export type Routes = {
|
|
|
97536
99142
|
message: string;
|
|
97537
99143
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
97538
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;
|
|
97539
99156
|
})[];
|
|
97540
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). */
|
|
97541
99158
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -97753,6 +99370,17 @@ export type Routes = {
|
|
|
97753
99370
|
message: string;
|
|
97754
99371
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
97755
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;
|
|
97756
99384
|
})[];
|
|
97757
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). */
|
|
97758
99386
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -101798,6 +103426,17 @@ export type Routes = {
|
|
|
101798
103426
|
message: string;
|
|
101799
103427
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
101800
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;
|
|
101801
103440
|
})[];
|
|
101802
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). */
|
|
101803
103442
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -101937,6 +103576,17 @@ export type Routes = {
|
|
|
101937
103576
|
message: string;
|
|
101938
103577
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
101939
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;
|
|
101940
103590
|
})[];
|
|
101941
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). */
|
|
101942
103592
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -102142,6 +103792,17 @@ export type Routes = {
|
|
|
102142
103792
|
message: string;
|
|
102143
103793
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
102144
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;
|
|
102145
103806
|
})[];
|
|
102146
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). */
|
|
102147
103808
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -102281,6 +103942,17 @@ export type Routes = {
|
|
|
102281
103942
|
message: string;
|
|
102282
103943
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
102283
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;
|
|
102284
103956
|
})[];
|
|
102285
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). */
|
|
102286
103958
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -102498,6 +104170,17 @@ export type Routes = {
|
|
|
102498
104170
|
message: string;
|
|
102499
104171
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
102500
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;
|
|
102501
104184
|
})[];
|
|
102502
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). */
|
|
102503
104186
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -103748,6 +105431,17 @@ export type Routes = {
|
|
|
103748
105431
|
message: string;
|
|
103749
105432
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
103750
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;
|
|
103751
105445
|
})[];
|
|
103752
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). */
|
|
103753
105447
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -103887,6 +105581,17 @@ export type Routes = {
|
|
|
103887
105581
|
message: string;
|
|
103888
105582
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
103889
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;
|
|
103890
105595
|
})[];
|
|
103891
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). */
|
|
103892
105597
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -104092,6 +105797,17 @@ export type Routes = {
|
|
|
104092
105797
|
message: string;
|
|
104093
105798
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
104094
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;
|
|
104095
105811
|
})[];
|
|
104096
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). */
|
|
104097
105813
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -104231,6 +105947,17 @@ export type Routes = {
|
|
|
104231
105947
|
message: string;
|
|
104232
105948
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
104233
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;
|
|
104234
105961
|
})[];
|
|
104235
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). */
|
|
104236
105963
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -104448,6 +106175,17 @@ export type Routes = {
|
|
|
104448
106175
|
message: string;
|
|
104449
106176
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
104450
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;
|
|
104451
106189
|
})[];
|
|
104452
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). */
|
|
104453
106191
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -105520,6 +107258,17 @@ export type Routes = {
|
|
|
105520
107258
|
message: string;
|
|
105521
107259
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
105522
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;
|
|
105523
107272
|
})[];
|
|
105524
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). */
|
|
105525
107274
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -105659,6 +107408,17 @@ export type Routes = {
|
|
|
105659
107408
|
message: string;
|
|
105660
107409
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
105661
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;
|
|
105662
107422
|
})[];
|
|
105663
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). */
|
|
105664
107424
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -105864,6 +107624,17 @@ export type Routes = {
|
|
|
105864
107624
|
message: string;
|
|
105865
107625
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
105866
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;
|
|
105867
107638
|
})[];
|
|
105868
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). */
|
|
105869
107640
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -106003,6 +107774,17 @@ export type Routes = {
|
|
|
106003
107774
|
message: string;
|
|
106004
107775
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
106005
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;
|
|
106006
107788
|
})[];
|
|
106007
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). */
|
|
106008
107790
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -106220,6 +108002,17 @@ export type Routes = {
|
|
|
106220
108002
|
message: string;
|
|
106221
108003
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
106222
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;
|
|
106223
108016
|
})[];
|
|
106224
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). */
|
|
106225
108018
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -107404,6 +109197,17 @@ export type Routes = {
|
|
|
107404
109197
|
message: string;
|
|
107405
109198
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
107406
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;
|
|
107407
109211
|
})[];
|
|
107408
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). */
|
|
107409
109213
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -107543,6 +109347,17 @@ export type Routes = {
|
|
|
107543
109347
|
message: string;
|
|
107544
109348
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
107545
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;
|
|
107546
109361
|
})[];
|
|
107547
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). */
|
|
107548
109363
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -107748,6 +109563,17 @@ export type Routes = {
|
|
|
107748
109563
|
message: string;
|
|
107749
109564
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
107750
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;
|
|
107751
109577
|
})[];
|
|
107752
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). */
|
|
107753
109579
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -107887,6 +109713,17 @@ export type Routes = {
|
|
|
107887
109713
|
message: string;
|
|
107888
109714
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
107889
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;
|
|
107890
109727
|
})[];
|
|
107891
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). */
|
|
107892
109729
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -108104,6 +109941,17 @@ export type Routes = {
|
|
|
108104
109941
|
message: string;
|
|
108105
109942
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
108106
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;
|
|
108107
109955
|
})[];
|
|
108108
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). */
|
|
108109
109957
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -116324,6 +118172,17 @@ export type Routes = {
|
|
|
116324
118172
|
message: string;
|
|
116325
118173
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
116326
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;
|
|
116327
118186
|
})[];
|
|
116328
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). */
|
|
116329
118188
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -116463,6 +118322,17 @@ export type Routes = {
|
|
|
116463
118322
|
message: string;
|
|
116464
118323
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
116465
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;
|
|
116466
118336
|
})[];
|
|
116467
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). */
|
|
116468
118338
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -116668,6 +118538,17 @@ export type Routes = {
|
|
|
116668
118538
|
message: string;
|
|
116669
118539
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
116670
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;
|
|
116671
118552
|
})[];
|
|
116672
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). */
|
|
116673
118554
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -116807,6 +118688,17 @@ export type Routes = {
|
|
|
116807
118688
|
message: string;
|
|
116808
118689
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
116809
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;
|
|
116810
118702
|
})[];
|
|
116811
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). */
|
|
116812
118704
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -117024,6 +118916,17 @@ export type Routes = {
|
|
|
117024
118916
|
message: string;
|
|
117025
118917
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
117026
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;
|
|
117027
118930
|
})[];
|
|
117028
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). */
|
|
117029
118932
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -122658,6 +124561,17 @@ export type Routes = {
|
|
|
122658
124561
|
message: string;
|
|
122659
124562
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
122660
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;
|
|
122661
124575
|
})[];
|
|
122662
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). */
|
|
122663
124577
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -122798,6 +124712,17 @@ export type Routes = {
|
|
|
122798
124712
|
message: string;
|
|
122799
124713
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
122800
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;
|
|
122801
124726
|
})[];
|
|
122802
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). */
|
|
122803
124728
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -124068,6 +125993,17 @@ export type Routes = {
|
|
|
124068
125993
|
message: string;
|
|
124069
125994
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
124070
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;
|
|
124071
126007
|
})[];
|
|
124072
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). */
|
|
124073
126009
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -124207,6 +126143,17 @@ export type Routes = {
|
|
|
124207
126143
|
message: string;
|
|
124208
126144
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
124209
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;
|
|
124210
126157
|
})[];
|
|
124211
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). */
|
|
124212
126159
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -124412,6 +126359,17 @@ export type Routes = {
|
|
|
124412
126359
|
message: string;
|
|
124413
126360
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
124414
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;
|
|
124415
126373
|
})[];
|
|
124416
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). */
|
|
124417
126375
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -124551,6 +126509,17 @@ export type Routes = {
|
|
|
124551
126509
|
message: string;
|
|
124552
126510
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
124553
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;
|
|
124554
126523
|
})[];
|
|
124555
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). */
|
|
124556
126525
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -124768,6 +126737,17 @@ export type Routes = {
|
|
|
124768
126737
|
message: string;
|
|
124769
126738
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
124770
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;
|
|
124771
126751
|
})[];
|
|
124772
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). */
|
|
124773
126753
|
is_multi_phone_sync_credential?: boolean | undefined;
|